-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.67 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "bitcoin-cli-ts",
"version": "28.0.0",
"description": "Auto-generated Bitcoin client library for bitcoind JSON-RPC API",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.js",
"engines": {
"node": ">=18"
},
"scripts": {
"tsc-check": "tsc --noEmit --skipLibCheck",
"eslint-check": "eslint \"{src,test}/**/*.ts\"",
"eslint-fix": "eslint \"{src,test}/**/*.ts\" --fix",
"prettier-check": "prettier --check .",
"prettier-write": "prettier --write .",
"check-code": "yarn eslint-check && yarn prettier-check && yarn tsc-check",
"check-code-fix": "yarn eslint-fix && yarn prettier-write",
"postinstall": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build": "yarn build:cjs && yarn build:esm && yarn build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"clean": "node tools/cleanup",
"package": "yarn build && yarn pack",
"test": "jest --no-cache",
"test:cov": "jest --coverage --no-cache --runInBand",
"addscope": "node tools/packagejson name @dolcalmi/bitcoin-cli-ts",
"plop": "plop"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"bitcoin",
"JSON-RPC",
"rpc",
"bitcoind",
"typescript",
"bitcoin-cli"
],
"license": "MIT",
"homepage": "https://github.com/dolcalmi/bitcoin-cli-ts",
"repository": {
"type": "git",
"url": "[email protected]:dolcalmi/bitcoin-cli-ts.git"
},
"bugs": {
"url": "https://github.com/dolcalmi/bitcoin-cli-ts/issues"
},
"dependencies": {
"json-bigint": "^1.0.0",
"json-rpc-2.0": "^1.7.0",
"undici": "^6.20.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@types/aes-js": "^3.1.3",
"@types/is-url": "^1.2.31",
"@types/jest": "^29.5.6",
"@types/json-bigint": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.2",
"jest": "^29.7.0",
"pinst": "^3.0.0",
"plop": "^4.0.0",
"prettier": "^3.0.3",
"process": "^0.11.10",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}