Files
schema/deno.json
T
2025-10-17 00:56:39 +10:30

17 lines
500 B
JSON

{
"imports": {
"@std/path": "jsr:@std/path@0.224.0",
"@db/sqlite": "jsr:@db/sqlite@^0.12.0",
"hono": "jsr:@hono/hono@^4.9.12",
"@/utils/logger": "./src/utils/logger/logger.ts",
"@/utils/config": "./src/utils/config/config.ts",
"@/utils/cache": "./src/utils/cache/cache.ts"
},
"tasks": {
"dev": "deno run --allow-net --allow-read --allow-env --allow-ffi --watch src/main.ts"
},
"compilerOptions": {
"jsx": "precompile",
"jsxImportSource": "hono/jsx"
}
}