-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "@fireblocks/hardhat-fireblocks",
"version": "1.3.6",
"description": "Hardhat plugin for integrating with Fireblocks",
"repository": "github:fireblocks/hardhat-fireblocks",
"author": "Fireblocks",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"publishConfig": {
"access": "public"
},
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin"
],
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json",
"lint": "tslint --config tslint.json --project tsconfig.json",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run build"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/fs-extra": "5.1.0",
"@types/mocha": "5.2.7",
"@types/node": "18.6.4",
"hardhat": "^2.10.1",
"prettier": "2.0.5",
"ts-node": "8.10.2",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "4.7.4"
},
"peerDependencies": {
"hardhat": "^2.6.0"
},
"dependencies": {
"@fireblocks/fireblocks-web3-provider": "^1.3.12",
"undici": "^5.28.4"
}
}