16 lines
575 B
JSON
16 lines
575 B
JSON
|
|
{
|
||
|
|
"name": "calendar-plantempus",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "Professional calendar component with TypeScript",
|
||
|
|
"type": "module",
|
||
|
|
"scripts": {
|
||
|
|
"build": "node build.js",
|
||
|
|
"build-simple": "esbuild src/**/*.ts --outdir=js --format=esm --sourcemap=inline --target=es2020",
|
||
|
|
"watch": "esbuild src/**/*.ts --outdir=js --format=esm --sourcemap=inline --target=es2020 --watch",
|
||
|
|
"clean": "powershell -Command \"if (Test-Path js) { Remove-Item -Recurse -Force js }\""
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"esbuild": "^0.19.0",
|
||
|
|
"typescript": "^5.0.0"
|
||
|
|
}
|
||
|
|
}
|