-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdeno.json
37 lines (37 loc) · 1.26 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
{
"name": "@earthstar/willow",
"version": "0.6.1",
"exports": {
".": "./mod.universal.ts",
"./deno": "./mod.deno.ts",
"./browser": "./mod.browser.ts"
},
"publish": {
"exclude": ["!./dist", "./.github", "./.nova", "./debug", "./scripts"]
},
"tasks": {
"test": "deno test -A --unstable-kv src",
"test-watch": "deno test -A --unstable-kv src --watch",
"bundle": "deno run --allow-all scripts/build_web_bundle.ts"
},
"unstable": ["kv"],
"imports": {
"@earthstar/willow-utils": "jsr:@earthstar/willow-utils@^2.0.0",
"@korkje/fifo": "jsr:@korkje/fifo@^0.2.4",
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@^0.10.3",
"@std/assert": "jsr:@std/assert@^0.225.2",
"@std/async": "jsr:@std/async@^0.224.0",
"@std/bytes": "jsr:@std/bytes@^0.224.0",
"@std/collections": "jsr:@std/collections@^0.224.2",
"@std/crypto": "jsr:@std/crypto@^0.224.0",
"@std/data-structures": "jsr:@std/data-structures@^0.224.0",
"@std/encoding": "jsr:@std/encoding@^0.224.1",
"@std/fs": "jsr:@std/fs@^0.229.1",
"@std/path": "jsr:@std/path@^0.225.1",
"@std/streams": "jsr:@std/streams@^0.224.0",
"esbuild": "npm:esbuild@^0.21.3"
},
"compilerOptions": {
"lib": ["dom", "deno.window", "deno.unstable"]
}
}