forked from zeropoolnetwork/zeropool-support-js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.38 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": "zkbob-support-js",
"version": "1.0.1",
"description": "zkBob basic web3 client (L1)",
"license": "MIT",
"author": "Dmitry Vdovin <voidxnull@gmail.com>",
"homepage": "https://github.com/zkBob/zkbob-support-js",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"build": "rm -rf lib/ && npx tsc --p tsconfig.json",
"build:node": "rm -rf node && npx tsc --p tsconfig.node.json"
},
"dependencies": {
"@ethereumjs/tx": "^3.2.1",
"@polkadot/api": "^7.11.1",
"@polkadot/keyring": "^8.4.1",
"@polkadot/util-crypto": "^8.4.1",
"@scure/bip32": "^1.3.1",
"@scure/bip39": "^1.2.1",
"@truffle/hdwallet-provider": "2.1.13",
"@types/bn.js": "^5.1.0",
"@waves/node-api-js": "^1.2.0",
"@waves/ts-lib-crypto": "^1.4.3",
"@waves/waves-transactions": "^4.1.8",
"bip39-light": "^1.0.7",
"bn.js": "^4.11.6",
"bs58": "^4.0.1",
"near-api-js": "^0.43.1",
"tronweb": "^5.3.0",
"tweetnacl": "^1.0.3",
"web3": "^1.3.1",
"web3-core": "^1.3.1",
"web3-eth-contract": "^1.3.1",
"web3-utils": "^1.3.6",
"promise-retry": "^2.0.1"
},
"devDependencies": {
"ts-patch": "^2.0.1",
"typescript": "^4.1.2",
"typescript-transform-paths": "^3.3.1",
"@types/promise-retry": "^1.1.3"
},
"resolutions": {
"@types/responselike": "1.0.0"
}
}