Add templates/cli-component/package.json

This commit is contained in:
2025-07-02 21:17:43 +00:00
parent 2533cbbcab
commit 4f4a0d5ce6

View File

@ -0,0 +1,22 @@
{
"name": "<name-of-component>",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"author": "",
"dependencies": {},
"scripts": {
"start": "npx vite --open",
"build-prod": "npx vite build",
"build-dev": "npx vite build --mode development"
},
"devDependencies": {
"vite": "^4.4.9",
"@webprovisions/utilities": "^1.0.3",
"typescript": "^5.1.6"
},
"webprovisions": {
"type": "distribution"
}
}