Initial commit

This commit is contained in:
Niklas Korz 2025-03-20 19:35:00 +01:00
commit 8ed2c7d558
14 changed files with 494 additions and 0 deletions

16
deno.json Normal file
View file

@ -0,0 +1,16 @@
{
"tasks": {
"dev": "deno run -A --node-modules-dir npm:vite",
"build": "deno run -A --node-modules-dir npm:vite build",
"preview": "deno run -A --node-modules-dir npm:vite preview",
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
},
"compilerOptions": {
"lib": ["ES2024", "DOM", "DOM.Iterable"]
},
"imports": {
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
"vite": "npm:vite@^6.2.2",
"excalibur": "npm:excalibur@^0.30.3"
}
}