-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
43 lines (43 loc) · 1.5 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
38
39
40
41
42
43
{
"imports": {
"@deno/cache-dir": "jsr:@deno/cache-dir@0.13.2",
"@deno/graph": "jsr:@deno/graph@^0.84.0",
"@deno/import-map": "https://deno.land/x/import_map@v0.20.1/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/esbuild@v0.24.0/mod.js",
"hast-util-to-html": "npm:hast-util-to-html@9.0.3",
"hastscript": "npm:hastscript@8.0.0",
"type-fest": "npm:type-fest@^4.15.0",
"type-fest/": "npm:/type-fest@^4.15.0/source/",
"zod": "https://deno.land/x/zod@v3.23.3/mod.ts"
},
"scopes": {
"https://jsr.io/@deno/cache-dir/0.13.2/": {
"jsr:/@deno/graph@^0.73.1/types": "jsr:@deno/graph@^0.84.0/types",
"jsr:@deno/graph@^0.73.1": "jsr:@deno/graph@^0.84.0"
}
},
"exclude": [
"404.html",
"index.html",
"generated_import_map.json",
"dist",
"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"
}
}