feat: define dashboard model schema

This commit is contained in:
vince 2026-06-18 17:37:42 +02:00
parent 59baec9831
commit 7cfd5b4069
9 changed files with 714 additions and 2 deletions

View file

@ -7,7 +7,13 @@
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview --host 0.0.0.0",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json"
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"test": "vitest run"
},
"dependencies": {
"@sinclair/typebox": "^0.34.49",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1"
},
"devDependencies": {
"@sveltejs/adapter-node": "^5.5.4",
@ -17,6 +23,7 @@
"svelte": "^5.56.3",
"svelte-check": "^4.6.0",
"typescript": "^6.0.3",
"vite": "^8.0.16"
"vite": "^8.0.16",
"vitest": "^4.1.9"
}
}