forked from zeropoolnetwork/zeropool-client-js
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 KB
/
package.json
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
{
"name": "zkbob-client-js",
"version": "6.0.1",
"description": "zkBob integration library",
"repository": "[email protected]:zkBob/libzkbob-client-js.git",
"author": "Dmitry Vdovin <[email protected]>",
"license": "(Apache-2.0 OR MIT)",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"check": "tsc --noEmit",
"codegen": "graphclient build --dir ./src",
"graphql-dev": "graphclient serve-dev --dir ./src",
"build": "rm -rf lib/ && npx tsc && webpack --config webpack.worker.conf.js",
"clean": "rm -rf lib/"
},
"dependencies": {
"@ethereumjs/util": "^8.0.2",
"@graphprotocol/client-cli": "3.0.0",
"@metamask/eth-sig-util": "5.0.0",
"@scure/bip32": "1.1.1",
"@scure/bip39": "1.1.0",
"bs58": "5.0.0",
"comlink": "^4.3.1",
"fast-sha256": "^1.3.0",
"graphql": "16.7.1",
"hdwallet-babyjub": "^0.0.2",
"idb": "^7.0.0",
"libzkbob-rs-wasm-web": "1.7.0-beta5",
"libzkbob-rs-wasm-web-mt": "1.7.0-beta5",
"promise-throttle": "^1.1.2",
"regenerator-runtime": "^0.13.9",
"tronweb": "^5.3.0",
"wasm-feature-detect": "^1.2.11",
"web3": "1.8.0",
"web3-utils": "1.8.0"
},
"devDependencies": {
"@types/ethereum-protocol": "^1.0.1",
"@types/node": "^20.3.3",
"@types/web3": "1.0.20",
"@types/promise-retry": "^1.1.3",
"ts-loader": "^9.2.6",
"typescript": "^5.1.6",
"webpack": "^5.64.2",
"webpack-cli": "^4.9.1"
},
"resolutions": {
"@types/responselike": "1.0.0"
}
}