linkylinky-chrome/package.json

60 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2021-08-14 12:53:48 +00:00
{
2021-08-17 18:52:51 +00:00
"name": "@odit/linkylinky-chrome",
2021-09-27 14:03:54 +00:00
"version": "0.3.1",
2021-08-17 18:52:51 +00:00
"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"
}
],
2021-08-17 18:18:12 +00:00
"scripts": {
2021-08-17 18:20:35 +00:00
"build": "npm run prebuild && npm run build:copy && npm run build:css",
2021-08-17 18:35:36 +00:00
"prebuild": "rimraf ./dist ./*.zip",
2021-08-17 18:47:05 +00:00
"build:copy": "cpx './src/*' './dist/'",
2021-08-17 18:18:12 +00:00
"build:css": "tailwindcss -o ./dist/tailwind.css --purge ./dist/index.html -m",
2021-08-17 18:35:36 +00:00
"build:package": "cross-zip dist linkylinky-chrome.zip",
2021-08-17 19:02:09 +00:00
"dev": "tailwindcss -o ./src/tailwind.css && live-server ./src",
2021-08-17 19:03:19 +00:00
"release": "release-it",
"cleanup": "rimraf ./dist ./linkylinky-chrome.zip ./src/tailwind.css"
2021-08-17 18:18:12 +00:00
},
2021-08-14 12:53:48 +00:00
"devDependencies": {
2021-08-17 18:18:12 +00:00
"cpx": "^1.5.0",
2021-08-17 18:35:36 +00:00
"cross-zip-cli": "^1.0.0",
2021-08-17 19:02:09 +00:00
"live-server": "^1.2.1",
2022-04-30 12:47:50 +00:00
"release-it": "^15.0.0",
2021-08-17 18:18:12 +00:00
"rimraf": "^3.0.2",
2022-04-13 18:19:59 +00:00
"tailwindcss": "^3.0.0"
2021-08-17 18:52:34 +00:00
},
"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"
}
2021-08-14 12:53:48 +00:00
}
}