localbox/deno.json
Index 1b98772fe6 v1.2
- feat: alpha hamster critter variant
- style: format client JS
- feat: improved login validation
- style: format & update footers
- fix: mods array not being populated by JWT contents
- style: restructure socket.io server into multiple files
- style: remove unused socket.io types
2025-05-03 19:00:02 -05:00

15 lines
530 B
JSON

{
"imports": {
"@/": "./src/",
"@std/fs": "jsr:@std/fs@^1.0.14"
},
"tasks": {
"start": "deno run --allow-net --allow-read --allow-env --env-file=.env --allow-write src/main.ts",
"dev": "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"
}
}