-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.56 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.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
{
"name": "ade",
"version": "0.2.0",
"type": "module",
"scripts": {
"test": "bun test",
"test:watch": "bun test --watch",
"test:unit": "bun test tests/errors.test.ts tests/format.test.ts tests/api.test.ts tests/routing.test.ts tests/help.test.ts tests/escrow-keys.test.ts tests/commands.test.ts tests/addresses.test.ts tests/secrets.test.ts tests/keychain/keychain.test.ts tests/update.test.ts tests/version-sync.test.ts tests/integration.test.ts tests/watch.test.ts tests/scan.test.ts tests/batch-sell.test.ts",
"test:chain": "bun test tests/chain-view.test.ts",
"test:integration": "bun test tests/keychain/integration.test.ts",
"review": "bun scripts/review.ts",
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --compile --outfile ade",
"build:all": "bun run build:darwin-arm64 && bun run build:darwin-x64 && bun run build:linux-x64 && bun run build:windows-x64",
"build:darwin-arm64": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile dist/ade-darwin-arm64",
"build:darwin-x64": "bun build src/index.ts --compile --target=bun-darwin-x64 --outfile dist/ade-darwin-x64",
"build:linux-x64": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile dist/ade-linux-x64",
"build:windows-x64": "bun build src/index.ts --compile --target=bun-windows-x64 --outfile dist/ade-windows-x64.exe"
},
"dependencies": {
"@noble/ciphers": "^2.1.1",
"@noble/hashes": "^2.0.1",
"@noble/secp256k1": "^3.0.0",
"viem": "^2.21.0"
},
"devDependencies": {
"@types/bun": "^1.1.0"
}
}