-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
28 lines (26 loc) · 797 Bytes
/
deno.json
File metadata and controls
28 lines (26 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"compilerOptions": {
"strict": true
},
"tasks": {
"start": "deno run --allow-read --allow-write --allow-env --allow-ffi --allow-net main.ts"
},
"imports": {
"@/": "./src/",
"@db/sqlite": "jsr:@db/sqlite@^0.12.0",
"@dldc/zendb": "jsr:@dldc/zendb@^10.0.0",
"@dldc/zendb-db-sqlite": "jsr:@dldc/zendb-db-sqlite@^2.0.0",
"@std/encoding": "jsr:@std/encoding@^1.0.7",
"@std/fs": "jsr:@std/fs@^1.0.13",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/toml": "jsr:@std/toml@^1.0.2",
"@hono": "npm:hono@^4.7.2",
"@hono/valibot-validator": "npm:@hono/valibot-validator@^0.5.2",
"otplib": "npm:otplib@^12.0.1",
"valibot": "npm:valibot@^1.0.0-rc.2"
},
"fmt": {
"exclude": ["*.md", "*.json", ".vscode"],
"singleQuote": true
}
}