localbox/deno.json
Index 9b12e23dbf v1.1
- minor: add checks for public dir & env vars
- feat: `deno compile` support
- fix: use .default ver of room as backup with moveTo event to prevent server crashes
- style: restructure all code into a /src/ folder
- style: deno format
- style: update README and package.json
- feat: clean up dependencies & use Deno.serve instead of Hono
- feat: "Today in 2019/2020/2021" party switcher
- minor: --port CLI config
- fix: API responding parties in incorrect format
2025-04-09 01:04:19 -05:00

13 lines
408 B
JSON

{
"imports": {
"@std/fs": "jsr:@std/fs@^1.0.14"
},
"tasks": {
"start": "deno run --watch --allow-net --allow-read --allow-env --env-file=.env --allow-write src/main.ts",
"build": "deno compile --allow-net --allow-read --allow-env --env-file=.env.build --allow-write --output Localbox src/main.ts"
},
"compilerOptions": {
"jsx": "precompile",
"jsxImportSource": "hono/jsx"
}
}