-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
72 lines (72 loc) · 2.56 KB
/
deno.json
File metadata and controls
72 lines (72 loc) · 2.56 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@spcfxda/devkit",
"version": "0.2.18",
"exports": {
".": "./mod.ts"
},
"nodeModulesDir": "auto",
"tasks": {
"hooks:install": "deno run --allow-read=deno.json,.git/hooks/ --allow-write=.git/hooks/ jsr:@hongminhee/deno-task-hooks",
"hooks:pre-commit": "deno check *.ts && deno lint && deno fmt --check",
"bump": "deno fmt && deno run -A jsr:@mys/bump@1",
"test": "deno test --allow-env --allow-read --allow-write --allow-run --coverage --clean && deno coverage --html",
"test_update": "deno test --allow-env --allow-read --allow-write --allow-run -- --update",
"doc": "deno doc --html --name='DevKit CLI' --output=./documentation/ ./mod.ts",
"cli": "deno run --allow-env --allow-read --allow-sys --allow-ffi --allow-write --allow-run --allow-net --unstable-kv src/cli.ts",
"release": "deno compile --allow-env --allow-read --allow-sys --allow-ffi --allow-write --allow-run --allow-net --unstable-kv --target x86_64-unknown-linux-gnu --output ./release/usr/local/bin/devkit src/cli.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.14",
"@std/crypto": "jsr:@std/crypto@^1.0.5",
"@std/cli": "jsr:@std/cli@^1.0.22",
"@std/fmt": "jsr:@std/fmt@^1.0.8",
"@std/fs": "jsr:@std/fs@^1.0.19",
"@std/path": "jsr:@std/path@^1.1.2",
"@std/testing": "jsr:@std/testing@^1.0.15",
"@xcfx/node": "npm:@xcfx/node@^0.6.0",
"cive": "npm:cive@^0.8.1",
"cliffy/command": "https://deno.land/x/cliffy@v1.0.0-rc.4/command/mod.ts",
"cliffy/prompt": "https://deno.land/x/cliffy@v1.0.0-rc.4/prompt/mod.ts",
"cliffy/color": "https://deno.land/x/cliffy@v1.0.0-rc.4/ansi/colors.ts",
"cliffy/ansi": "https://deno.land/x/cliffy@v1.0.0-rc.4/ansi/mod.ts",
"cliffy/keycode": "https://deno.land/x/cliffy@v1.0.0-rc.4/keycode/mod.ts",
"cliffy/testing": "https://deno.land/x/cliffy@v1.0.0-rc.4/testing/mod.ts",
"viem": "https://esm.sh/viem@2.37.6",
"viem/accounts": "https://esm.sh/viem@2.37.6/accounts",
"bip39": "npm:bip39@^3.1.0",
"bip32": "npm:bip32@^5.0.0-rc.0",
"tiny-secp256k1": "npm:tiny-secp256k1@^2.2.4",
"stablelib/hex": "npm:@stablelib/hex@^2.0.1"
},
"fmt": {
"useTabs": true,
"lineWidth": 120,
"indentWidth": 4,
"semiColons": false,
"singleQuote": true,
"proseWrap": "preserve",
"include": [
"src/",
"cli.ts"
],
"exclude": [
"coverage"
]
},
"lint": {
"include": [
"src/"
],
"exclude": [
"documentation/",
"coverage/"
],
"rules": {
"tags": [
"recommended"
],
"include": [],
"exclude": []
}
}
}