-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
29 lines (28 loc) · 833 Bytes
/
deno.json
File metadata and controls
29 lines (28 loc) · 833 Bytes
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
{
"tasks": {
"test": "deno test --allow-all",
"lint": "deno fmt --check && deno lint",
"start": {
"description": "Manage dev environment (dev-node, eth-rpc, stacks, anvil)",
"command": "deno run --allow-all mod.ts"
}
},
"imports": {
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.7",
"@std/fs": "jsr:@std/fs@^1.0.20",
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/path": "jsr:@std/path@^1.1.3",
"@polkadot-api/substrate-bindings": "npm:@polkadot-api/substrate-bindings"
},
"compilerOptions": {
"strict": true
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 4,
"semiColons": false,
"singleQuote": true,
"proseWrap": "preserve"
}
}