-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeno.json
45 lines (45 loc) · 1.16 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
{
"lock": false,
"workspace": [
"./packages/db",
"./packages/denokv",
"./packages/ndk",
"./packages/nostrify",
"./packages/policies",
"./packages/types",
"./packages/welshman"
],
"tasks": {
"test": "deno test -A --junit-path=./deno-test.xml",
"check": "deno check packages/*/mod.ts"
},
"lint": {
"rules": {
"tags": ["recommended"],
"exclude": ["no-explicit-any"]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 120,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve"
},
"unstable": ["ffi", "kv"],
"imports": {
"@scure/base": "npm:@scure/base@^1.1.6",
"@scure/bip32": "npm:@scure/bip32@^1.4.0",
"@scure/bip39": "npm:@scure/bip39@^1.3.0",
"@std/assert": "jsr:@std/assert@^0.222.1",
"@std/crypto": "jsr:@std/crypto@^0.224.0",
"@std/encoding": "jsr:@std/encoding@^0.224.1",
"@std/testing": "jsr:@std/testing@^0.222.1",
"lru-cache": "npm:lru-cache@^10.2.0",
"mock-socket": "npm:[email protected]",
"nostr-tools": "npm:nostr-tools@^2.7.0",
"websocket-ts": "npm:websocket-ts@^2.1.5",
"zod": "npm:zod@^3.23.8"
}
}