- 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
15 lines
530 B
JSON
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"
|
|
}
|
|
}
|