-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
65 lines (65 loc) · 1.82 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
56
57
58
59
60
61
62
63
64
65
{
"name": "@fireblocks/fireblocks-web3-provider",
"version": "1.3.12",
"description": "EIP-1193 Compatible Ethereum provider for Fireblocks",
"repository": "github:fireblocks/fireblocks-web3-provider",
"author": "Fireblocks",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"publishConfig": {
"access": "public"
},
"keywords": [
"ethereum",
"smart-contracts",
"wallet",
"fireblocks",
"jsonrpc",
"web3",
"crypto",
"cryptocurrency",
"dapp"
],
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json",
"lint": "tslint --config tslint.json --project tsconfig.json",
"test": "mocha --exit --exclude 'test/gasless/*.test.ts' --recursive 'test/**/*.test.ts'",
"test:gasless": "mocha --exit --recursive 'test/gasless/*.test.ts'",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run build",
"generate-types": "npx typechain --target=ethers-v6 --out-dir src/contracts 'src/abi/*.json'"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@typechain/ethers-v6": "^0.5.1",
"@types/chai": "4.3.1",
"@types/debug": "^4.1.7",
"@types/mocha": "9.1.1",
"@types/node-fetch": "^2.6.2",
"chai": "4.3.6",
"dotenv": "^16.0.3",
"mocha": "10.0.0",
"ts-node": "10.8.1",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"typechain": "^8.3.2",
"typescript": "4.7.4",
"web3": "^4.1.2"
},
"dependencies": {
"@ethersproject/units": "^5.7.0",
"axios": "^1.6.2",
"debug": "^4.3.7",
"ethers": "^6.13.4",
"fireblocks-sdk": "^5.33.0",
"https-proxy-agent": "^7.0.5",
"web3-providers-http": "1.8.0"
}
}