-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.62 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.62 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
{
"name": "@zcash/pczt-typescript",
"version": "0.1.0",
"description": "PCZT library for sending to shielded addresses from transparent wallets",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:ts && npm run build:native:prover && npm run build:prover-bin",
"build:ts": "tsc",
"build:native": "napi build --platform --release --features prover",
"build:native:prover": "napi build --platform --release --features prover",
"build:prover-bin": "cargo build --release --bin zcash-prover",
"build:debug": "napi build --platform",
"test": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:regtest": "vitest run tests/integration/regtest-real-blockchain.test.ts",
"validate:blockchain": "node validate-real-blockchain.js",
"docs": "typedoc src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"zcash",
"pczt",
"privacy",
"cryptocurrency",
"shielded",
"orchard",
"transparent"
],
"author": "",
"license": "MIT",
"dependencies": {
"@noble/hashes": "^1.3.0"
},
"devDependencies": {
"@napi-rs/cli": "^2.16.0",
"@types/node": "^20.0.0",
"@types/node-fetch": "^2.6.13",
"axios": "^1.13.2",
"bs58check": "^4.0.0",
"node-fetch": "^3.3.2",
"secp256k1": "^5.0.1",
"typedoc": "^0.25.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"napi": {
"name": "pczt-native",
"binaryName": "index",
"triples": {
"defaults": true
}
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}