-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
36 lines (36 loc) · 994 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
{
"name": "bitcoin-json-rpc",
"version": "1.4.0",
"description": "Bitcoin JSON RPC with type validation",
"type": "module",
"main": "dist/cjs/index.js",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "Andreas Brekken <[email protected]>",
"repository": "github:abrkn/bitcoin-json-rpc",
"license": "MIT",
"devDependencies": {
"@types/debug": "4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "12.12.35",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"dependencies": {
"axios": "^0.21.1",
"debug": ">=4.3.5",
"delay": ">=4.3.0 <6",
"zod": "^3.23.8"
}
}