-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
37 lines (37 loc) · 1.3 KB
/
deno.json
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
{
"imports": {
"@deno/cache-dir": "jsr:@deno/[email protected]",
"@deno/graph": "jsr:@deno/graph@^0.87.0",
"@deno/import-map": "https://deno.land/x/[email protected]/mod.ts",
"@std/datetime": "jsr:@std/datetime@^0.225.0",
"@std/encoding": "jsr:@std/encoding@^1.0.0",
"@std/fs": "jsr:@std/fs@^1.0.0",
"@std/http": "jsr:@std/http@^1.0.0",
"@std/media-types": "jsr:@std/media-types@^1.0.0",
"@std/path": "jsr:@std/path@^1.0.0",
"esbuild": "https://deno.land/x/[email protected]/mod.js",
"hast-util-to-html": "npm:[email protected]",
"hastscript": "npm:[email protected]",
"zod": "./deps/zod.ts"
},
"scopes": {
"https://jsr.io/@deno/cache-dir/0.17.0/": {
"jsr:/@deno/graph@^0.86.0/types": "jsr:@deno/graph@^0.87.0/types",
"jsr:@deno/graph@^0.86.0": "jsr:@deno/graph@^0.87.0"
}
},
"exclude": [
"static"
],
"lint": {
"rules": {
"include": [
"verbatim-module-syntax"
]
}
},
"tasks": {
"cache": "deno cache --allow-import=deno.land:443,jsr.io:443 dump_kv.ts main.ts scripts/build.tsx",
"lint": "deno fmt --check && deno lint && deno check --all dump_kv.ts && deno check --all --allow-import=deno.land:443,jsr.io:443 main.ts && deno check --all --allow-import=deno.land:443,jsr.io:443 scripts/build.tsx"
}
}