forked from fireblocks/fireblocks-defi-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 870 Bytes
/
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
{
"name": "fireblocks-defi-sdk",
"version": "1.2.15",
"description": "Fireblocks DeFi SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"devDependencies": {
"tslint": "^6.1.3",
"typescript": "^4.1.2",
"es5-ext": "0.10.50"
},
"repository": {
"type": "git",
"url": "https://github.com/fireblocks/fireblocks-defi-sdk.git"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"link": "npm run build && cd dist && npm link"
},
"overrides": {
"es5-ext": "0.10.50",
"parse-url": ""
},
"dependencies": {
"bn": "^1.0.5",
"bn.js": "^5.1.3",
"eth-sig-util": "^3.0.0",
"ethers": "^5.5.1",
"fireblocks-sdk": "^1.14.0",
"node-fetch": "^2.6.7",
"web3": "^1.8.0",
"web3-eth-contract": "^1.7.4"
},
"files": [
"dist/**/*",
"examples"
]
}