wcb/package.json
2023-11-10 21:56:12 +01:00

36 lines
1.2 KiB
JSON

{
"name": "web-component-base",
"version": "1.11.2",
"description": "Minimal base class for creating reactive custom elements easily",
"main": "index.d.ts",
"type": "module",
"scripts": {
"start": "npx simple-server .",
"build": "tsc --allowJs src/* --outDir dist --declaration --emitDeclarationOnly",
"clean": "rm -rf dist",
"copy:meta": "cp package.json ./dist && cp README.md ./dist && cp LICENSE ./dist",
"copy:source": "cp ./src/* ./dist",
"publish": "npm run clean && npm run build && npm run copy:meta && npm run copy:source && cd ./dist && npm publish --access public",
"publish:patch": "npm version patch && npm run publish",
"publish:minor": "npm version minor && npm run publish"
},
"repository": {
"type": "git",
"url": "https://git.sr.ht/~ayoayco/web-component-base"
},
"keywords": [
"web components",
"web component",
"custom elements",
"custom element"
],
"author": "Ayo Ayco",
"license": "MIT",
"bugs": {
"url": "https://todo.sr.ht/~ayoayco/web-component-base"
},
"homepage": "https://git.sr.ht/~ayoayco/web-component-base#readme",
"devDependencies": {
"typescript": "^5.2.2"
}
}