generated from odanado/typescript-nodejs-template
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
44 lines (44 loc) · 890 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
42
43
44
{
"name": "@cloud-cryptographic-wallet/ethers-adapter",
"version": "0.2.2",
"repository": {
"type": "git",
"url": "https://github.com/odanado/aws-kms-provider"
},
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"node": "./dist/index.cjs",
"default": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"engines": {
"node": ">=12"
},
"files": [
"README.md",
"dist",
"src",
"package.json"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup"
},
"dependencies": {
"@cloud-cryptographic-wallet/signer": "^0.0.5"
},
"devDependencies": {
"@ethersproject/abstract-provider": "^5.5.1",
"ethers": "^5.5.4",
"tsup": "^6.1.3"
},
"peerDependencies": {
"ethers": "^5.5.4"
}
}