60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "@odit/linkylinky-chrome",
|
|
"version": "0.3.1",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"author": {
|
|
"name": "ODIT.Services",
|
|
"email": "info@odit.services",
|
|
"url": "https://odit.services"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Nicolai Ort",
|
|
"email": "info@nicolai-ort.com",
|
|
"url": "https://nicolai-ort.com"
|
|
}
|
|
],
|
|
"scripts": {
|
|
"build": "npm run prebuild && npm run build:copy && npm run build:css",
|
|
"prebuild": "rimraf ./dist ./*.zip",
|
|
"build:copy": "cpx './src/*' './dist/'",
|
|
"build:css": "tailwindcss -o ./dist/tailwind.css --purge ./dist/index.html -m",
|
|
"build:package": "cross-zip dist linkylinky-chrome.zip",
|
|
"dev": "tailwindcss -o ./src/tailwind.css && live-server ./src",
|
|
"release": "release-it",
|
|
"cleanup": "rimraf ./dist ./linkylinky-chrome.zip ./src/tailwind.css"
|
|
},
|
|
"devDependencies": {
|
|
"cpx": "^1.5.0",
|
|
"cross-zip-cli": "^1.0.0",
|
|
"live-server": "^1.2.1",
|
|
"release-it": "^15.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"tailwindcss": "^3.0.0"
|
|
},
|
|
"release-it": {
|
|
"git": {
|
|
"commit": true,
|
|
"requireCleanWorkingDir": false,
|
|
"commitMessage": "🚀RELEASE ${version}",
|
|
"git.commitArgs": [
|
|
"-S"
|
|
],
|
|
"git.tagArgs": [
|
|
"-S"
|
|
],
|
|
"push": true,
|
|
"tag": true,
|
|
"tagName": null,
|
|
"tagAnnotation": "${version}"
|
|
},
|
|
"npm": {
|
|
"publish": false
|
|
},
|
|
"hooks": {
|
|
"after:bump": "npx auto-changelog --commit-limit false -p -u --hide-credit && git add CHANGELOG.md"
|
|
}
|
|
}
|
|
}
|