working progress

This commit is contained in:
Sam Chau
2025-10-17 00:56:39 +10:30
commit 2440b36fae
18 changed files with 643 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"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"
}
}