-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
32 lines (32 loc) · 900 Bytes
/
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
{
"tasks": {
"test": "deno test --allow-read='.' .",
"lint": "deno lint .",
"dev": "deno run -R modules/cli/main.ts",
"fences:check": "deno task dev check",
"fences:graph": "deno task dev graph",
"install": "deno install -gf --name='fences' --config=deno.json -A modules/cli/main.ts"
},
"lint": {
"rules": {
"include": [
"no-inferrable-types",
"explicit-function-return-type",
"eqeqeq",
"no-await-in-loop"
]
}
},
"imports": {
"@std/collections": "jsr:@std/collections@^1.0.9",
"@std/expect": "jsr:@std/expect@1",
"@std/fs": "jsr:@std/fs@1",
"@std/jsonc": "jsr:@std/jsonc@^1.0.1",
"@std/path": "jsr:@std/path@1",
"@std/testing": "jsr:@std/testing@1",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"@swc/wasm": "npm:@swc/wasm@^1.10.1",
"zod": "npm:zod@3"
},
"nodeModulesDir": "auto"
}