Sets up calendar package with core infrastructure

Adds core calendar package components including:
- Base services for events, resources, and settings
- Calendar app and orchestrator
- Build and bundling configuration
- IndexedDB storage setup

Prepares foundational architecture for calendar functionality
This commit is contained in:
Janus C. H. Knudsen 2026-01-28 15:24:03 +01:00
parent 12e7594f30
commit ceb44446f0
97 changed files with 13858 additions and 1 deletions

21
test-package/package.json Normal file
View file

@ -0,0 +1,21 @@
{
"name": "test-package",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@novadi/core": "^0.6.0",
"calendar": "^0.1.6",
"dayjs": "^1.11.19"
},
"devDependencies": {
"esbuild": "^0.27.2",
"typescript": "^5.9.3"
}
}