-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
42 lines (42 loc) · 996 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
33
34
35
36
37
38
39
40
41
42
{
"name": "@wok/helmet",
"version": "0.0.0",
"exports": {
".": "./src/mod.ts",
"./cli": "./src/cli.ts",
"./deps/typebox": "./src/deps/typebox.ts",
"./deps/k8s": "./src/deps/k8s.ts"
},
"publish": {
"include": ["./src", "./deno.json", "./README.md", "./LICENSE"],
"exclude": ["**/*.test.ts"]
},
"fmt": {
"lineWidth": 120,
"include": [
"src",
"examples"
]
},
"lint": {
"include": [
"src",
"examples"
],
"rules": {
"exclude": ["no-slow-types"]
}
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.10",
"@std/fmt": "jsr:@std/fmt@^1.0.4",
"@std/fs": "jsr:@std/fs@^1.0.9",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/semver": "jsr:@std/semver@^1.0.3",
"@std/streams": "jsr:@std/streams@^1.0.8",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"@wok/case": "jsr:@wok/case@^1.0.2",
"@wok/typebox": "jsr:@wok/typebox@^0.33.22",
"@wok/utils": "jsr:@wok/utils@^3.5.3"
}
}