-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeno.json
55 lines (55 loc) · 1.14 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"workspace": [
"./api",
"./auth",
"./event-emitter",
"./event-store",
"./inverse",
"./json-rpc",
"./process",
"./router",
"./testcontainers"
],
"imports": {
"@db/sqlite": "jsr:@db/[email protected]",
"@std/assert": "jsr:@std/[email protected]",
"@std/async": "jsr:@std/[email protected]",
"@std/fs": "jsr:@std/[email protected]",
"@std/net": "jsr:@std/[email protected]",
"@std/path": "jsr:@std/[email protected]",
"@std/testing": "jsr:@std/[email protected]",
"@std/text": "jsr:@std/[email protected]"
},
"exclude": [
".vscode"
],
"nodeModulesDir": "auto",
"lint": {
"rules": {
"exclude": [
"ban-types",
"no-explicit-any",
"require-await"
]
}
},
"fmt": {
"lineWidth": 165
},
"publish": {
"exclude": [
".eslint",
".github",
".vscode",
".gitignore",
"tests"
]
},
"tasks": {
"lint": "npx eslint -c eslint.config.mjs .",
"test": "deno run -A .tasks/test.ts && deno test -A --unstable-ffi",
"test:publish": "deno publish --dry-run",
"generate": "deno run -A .tasks/generate.ts",
"ncu": "npx ncu -u -p npm"
}
}