-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
67 lines (67 loc) · 1.83 KB
/
deno.json
File metadata and controls
67 lines (67 loc) · 1.83 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"workspace": [
"./core/*",
"./tool/*"
],
"tasks": {
"flow": "deno run -Pq tool/flow/flow.ts",
"forge": "deno run -Pq tool/forge/forge.ts",
"ok": "deno task -q flow --check --doc"
},
"compilerOptions": {
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true
},
"exclude": [
"**/__testdata__/**"
],
"lint": {
"rules": {
"tags": [
"recommended",
"workspace",
"jsr"
],
"include": [
"camelcase",
"default-param-last",
"eqeqeq",
"no-await-in-loop",
"no-console",
"no-eval",
"no-inferrable-types",
"no-non-null-assertion",
"no-self-compare",
"no-sync-fn-in-async-fn",
"no-throw-literal",
"no-useless-rename",
"single-var-declarator",
"triple-slash-reference"
]
}
},
"imports": {
"@b-fuze/deno-dom": "jsr:@b-fuze/deno-dom@^0.1.56",
"@cliffy/command": "jsr:@cliffy/command@^1.0.0",
"@cliffy/table": "jsr:@cliffy/table@^1.0.0",
"@octokit/openapi-types": "npm:@octokit/openapi-types@^27.0.0",
"@octokit/rest": "npm:@octokit/rest@^22.0.1",
"@sigma/deno-compile-extra": "jsr:@sigma/deno-compile-extra@^0.13.0",
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/async": "jsr:@std/async@^1.2.0",
"@std/cli": "jsr:@std/cli@^1.0.28",
"@std/collections": "jsr:@std/collections@^1.1.6",
"@std/encoding": "jsr:@std/encoding@^1.0.10",
"@std/fmt": "jsr:@std/fmt@^1.0.9",
"@std/fs": "jsr:@std/fs@^1.0.23",
"@std/html": "jsr:@std/html@^1.0.5",
"@std/http": "jsr:@std/http@^1.0.25",
"@std/path": "jsr:@std/path@^1.1.4",
"@std/semver": "jsr:@std/semver@^1.0.8",
"@std/streams": "jsr:@std/streams@^1.0.17",
"@std/testing": "jsr:@std/testing@^1.0.17"
},
"unstable": [
"kv"
]
}