-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.11 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@dirtroad/kms-signer",
"version": "0.1.2",
"description": "Dynamic KMS Signers",
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
},
"default": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.js"
}
}
},
"files": [
"lib/**/*"
],
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"dev": "nodemon --watch \"./src/**/*.*\" --exec npm run build",
"prepack": "npm run build",
"prettier": "npx prettier src tests --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix",
"build:watch": "nodemon --watch \"./src/**/*.*\" --exec npm run build",
"test": "jest --testTimeout=25000",
"test:watch": "jest --watch --testTimeout=25000"
},
"keywords": [],
"author": "Sawyer Cutler <sawyer@dirtroad.dev>",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-kms": "^3.347.0",
"asn1.js": "^5.4.1",
"bn.js": "^5.2.1",
"debug": "^4.3.4",
"ethers": "^6.4.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/debug": "^4.1.8",
"@types/jest": "^29.4.0",
"@types/node": "^20.2.5",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typescript": "^5.1.3"
}
}