-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (48 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
{
"name": "@conduitxyz/hardhat-gcp-kms-signer",
"version": "1.1.6",
"description": "Sign Hardhat deployment transactions using KMS key",
"repository": "github:conduitxyz/hardhat-gcp-kms-signer",
"author": "Conduit XYZ",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"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/",
"src/",
"LICENSE",
"README.md"
],
"dependencies": {
"@rumblefishdev/eth-signer-kms": "^2.1.0",
"@types/lodash": "^4.14.172",
"asn1.js": "^5.4.1",
"bn.js": "^5.2.1",
"ethers-gcp-kms-signer": "^1.1.6",
"ethers": "5.7.0"
},
"devDependencies": {
"@google-cloud/kms": "3.0.1",
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^5.2.6",
"@types/node": "^16.18.0",
"chai": "^4.2.0",
"hardhat": "2.9.6",
"ts-node": "^8.1.0",
"typescript": "4.7.3"
}
}