forked from dsherret/dax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
45 lines (45 loc) · 1.05 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
{
"name": "@david/dax",
"version": "0.0.0",
"nodeModulesDir": false,
"tasks": {
"test": "deno test -A",
"wasmbuild": "deno run -A https://deno.land/x/[email protected]/main.ts --sync --out ./src/lib"
},
"fmt": {
"proseWrap": "preserve",
"lineWidth": 120
},
"lint": {
"rules": {
"exclude": ["ban-types", "no-explicit-any", "no-this-alias"],
"include": [
"no-console",
"no-sync-fn-in-async-fn"
]
}
},
"exclude": [
".gitattributes",
".gitignore",
".github",
".rustfmt.toml",
".vscode",
"Cargo.toml",
"Cargo.lock",
"npm/",
"target/"
],
"exports": "./mod.ts",
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.1",
"@std/assert": "jsr:@std/assert@^0.221.0",
"@std/fmt": "jsr:@std/fmt@^0.221.0",
"@std/fs": "jsr:@std/[email protected]",
"@std/io": "jsr:@std/[email protected]",
"@std/path": "jsr:@std/[email protected]",
"@std/streams": "jsr:@std/[email protected]",
"which": "jsr:@david/[email protected]",
"which_runtime": "jsr:@david/[email protected]"
}
}