-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 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
{
"name": "privacycash",
"version": "1.1.20",
"description": "",
"main": "dist/index.js",
"repository": "https://github.com/Privacy-Cash/privacy-cash-sdk",
"exports": {
".": "./dist/index.js",
"./utils": "./dist/exportUtils.js"
},
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest run --exclude \"**/__tests__/e2e.test.ts,**/__tests__/e2espl.test.ts\"",
"teste2e": "vitest run e2e.test.ts",
"teste2espl": "vitest run e2espl.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@coral-xyz/anchor": "^0.31.1",
"@ethersproject/keccak256": "^5.8.0",
"@ethersproject/sha2": "^5.8.0",
"@lightprotocol/hasher.rs": "^0.2.1",
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.98.4",
"@types/bn.js": "^5.2.0",
"@types/snarkjs": "^0.7.9",
"bn.js": "^5.2.2",
"borsh": "^2.0.0",
"bs58": "^6.0.0",
"dotenv": "^17.2.2",
"ethers": "^6.15.0",
"ffjavascript": "^0.3.1",
"node-localstorage": "^3.0.5",
"snarkjs": "^0.7.5",
"tmp-promise": "^3.0.3",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/bn.js": "^5.1.5",
"@types/node": "^24.3.0",
"@types/node-localstorage": "^1.3.3",
"@types/snarkjs": "^0.7.9",
"@types/tmp": "^0.2.6",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}