1{
2 "imports": {
3 "@hono/ua-blocker": "npm:@hono/ua-blocker@^0.1.9",
4 "hono": "npm:hono@^4.9.6",
5 "zod": "npm:zod@^4.1.5"
6 },
7 "tasks": {
8 "start": "deno run --allow-net --allow-env src/main.ts",
9 "dev": "DENO_ENV=dev deno run --env-file --watch --allow-net --allow-env src/main.ts"
10 },
11 "unstable": ["kv"],
12 "compilerOptions": {
13 "jsx": "precompile",
14 "jsxImportSource": "hono/jsx"
15 },
16 "fmt": {
17 "useTabs": false,
18 "lineWidth": 90,
19 "indentWidth": 4,
20 "semiColons": false,
21 "singleQuote": false,
22 "proseWrap": "preserve"
23 },
24 "deploy": {
25 "project": "bd2e7894-6133-473d-8093-f84066914d26",
26 "exclude": ["**/node_modules"],
27 "include": ["."],
28 "entrypoint": "src/main.ts"
29 }
30}