forked from rjchow/ethers-aws-kms-signer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 971 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
41
{
"name": "@dennisdang/ethers-aws-kms-signer",
"version": "1.0.3",
"description": "An Ethers.js compatible signer that connects to AWS KMS",
"license": "MIT",
"repository": "https://github.com/dangdennis/ethers-aws-kms-signer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"email": "dennis.dang@hey.com",
"name": "Dennis Dang",
"url": "https://github.com/dangdennis"
},
"files": [
"dist",
"src"
],
"keywords": [],
"scripts": {
"build": "tsc",
"check": "npx rome check src/",
"format": "npx rome format src/ --write",
"test": "npx vitest run"
},
"dependencies": {
"@aws-sdk/client-kms": "^3.378.0",
"@types/node": "^20.4.5",
"asn1.js": "^5.4.1",
"dotenv": "^16.3.1",
"ethers": "^6.6.5"
},
"devDependencies": {
"@types/asn1": "^0.2.0",
"rome": "^12.1.3",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"engines": {
"node": ">= 10.18"
}
}