-
Notifications
You must be signed in to change notification settings - Fork 6
/
deno.jsonc
43 lines (43 loc) · 1.09 KB
/
deno.jsonc
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.7",
"@std/async": "jsr:@std/async@^1.0.8",
"@std/collections": "jsr:@std/collections@^1.0.9",
"@std/datetime": "jsr:@std/datetime@^0.225.2",
"@std/encoding": "jsr:@std/encoding@^1.0.5",
"@std/fmt": "jsr:@std/fmt@^1.0.3",
"@std/path": "jsr:@std/path@^1.0.8",
"shared/": "./pages/shared/",
"zod/": "https://deno.land/x/zod@v3.23.8/",
// "webgen/": "../WebGen/"
"webgen/": "https://raw.githubusercontent.com/lucsoft/WebGen/2d77f48/"
},
"lock": false,
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"deno.ns",
"deno.unstable"
]
},
"tasks": {
"start": "deno run -A serve.ts"
},
"lint": {
"exclude": [
"dist"
]
},
"fmt": {
"exclude": [
"dist",
"assets",
"static"
],
"indentWidth": 4,
"proseWrap": "never",
"lineWidth": 500
}
}