Initial commit: Calendar Plantempus project setup with TypeScript, ASP.NET Core, and event-driven architecture

This commit is contained in:
Janus Knudsen 2025-07-24 22:17:38 +02:00
commit f06c02121c
38 changed files with 8233 additions and 0 deletions

16
package.json Normal file
View file

@ -0,0 +1,16 @@
{
"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"
}
}