generated from odanado/typescript-nodejs-template
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "aws-kms-ethers-signer",
"version": "0.1.3",
"repository": {
"type": "git",
"url": "https://github.com/odanado/aws-kms-provider"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"node": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"README.md",
"dist",
"src",
"package.json",
"yarn.lock"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsup"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@aws-sdk/client-kms": "^3.39.0",
"@ethersproject/abstract-provider": "^5.5.1",
"@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/hash": "^5.5.0",
"@ethersproject/keccak256": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/transactions": "^5.5.0",
"aws-kms-signer": "^0.5.3"
},
"devDependencies": {
"ethers": "^5.5.1"
}
}