-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
44 lines (44 loc) · 905 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
43
44
{
"name": "@wok/jetski",
"version": "0.0.0",
"exports": {
"./types": "./src/types.ts",
".": "./src/app.ts"
},
"publish": {
"include": ["./src", "./deno.json", "./README.md", "./LICENSE"]
},
"fmt": {
"include": [
"build.ts",
"src/",
"examples/"
],
"exclude": [
"**/.secrets/*"
],
"lineWidth": 120
},
"lint": {
"include": [
"src/",
"examples/"
],
"exclude": [
"**/.secrets/*"
],
"rules": {
"exclude": ["no-slow-types"]
}
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.10",
"@std/async": "jsr:@std/async@^1.0.9",
"@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/yaml": "jsr:@std/yaml@^1.0.5",
"@wok/typebox": "jsr:@wok/typebox@^0.33.22",
"@wok/utils": "jsr:@wok/utils@^3.5.3"
}
}