chore: initialize repo

This commit is contained in:
Lukas Wölfer
2026-03-02 19:54:48 +01:00
commit 759ea22b4d
8 changed files with 555 additions and 0 deletions

14
deno.json Normal file
View File

@@ -0,0 +1,14 @@
{
"tasks": {
"dev": "deno run --watch main.ts",
"serve": "deno run --allow-net --allow-read https://deno.land/std@0.200.0/http/file_server.ts .",
"bundle": "deno run --allow-read --allow-write=\"dist/\" --allow-net --allow-env build.ts"
},
"imports": {
"@deno/esbuild-plugin": "jsr:@deno/esbuild-plugin@^1.2.1",
"@std/assert": "jsr:@std/assert@1",
"esbuild": "npm:esbuild@^0.27.3",
"effect": "npm:effect@^3.19.19",
"lit": "npm:lit@^2.7.5"
}
}