-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "zeropool-client-js",
"version": "0.9.7",
"description": "ZeroPool integration library",
"repository": "git@github.com:zeropoolnetwork/zeropool-client-js.git",
"author": "Dmitry Vdovin <voidxnull@gmail.com>",
"license": "(Apache-2.0 OR MIT)",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"check": "tsc --noEmit",
"build": "rm -rf lib/ && npx tsc",
"clean": "rm -rf lib/"
},
"dependencies": {
"@waves/ts-lib-crypto": "^1.4.4-beta.1",
"bn.js": "^5.2.1",
"comlink": "^4.4.1",
"ethereum-block-by-date": "^1.4.6",
"ethereumjs-util": "^7.1.5",
"hdwallet-babyjub": "0.0.2",
"idb": "^7.1.1",
"libzeropool-rs-wasm-plonk-web-mt": "file:../libzeropool-rs/libzeropool-rs-wasm/target/plonk-web-mt",
"libzeropool-rs-wasm-web": "0.9.2",
"libzeropool-rs-wasm-web-mt": "0.9.2",
"near-api-js": "^2.1.4",
"promise-throttle": "^1.1.2",
"regenerator-runtime": "^0.13.11",
"wasm-feature-detect": "^1.5.1",
"web3": "^1.8.2",
"web3-utils": "^1.8.2"
},
"devDependencies": {
"ts-loader": "^9.2.6",
"typescript": "^4.1.2",
"webpack": "^5.64.2",
"webpack-cli": "^4.9.1",
"webpack-manifest-plugin": "^5.0.0"
},
"resolutions": {
"@types/responselike": "1.0.0"
}
}