-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 971 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 971 Bytes
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
{
"name": "@mr-zwets/bchn-api-wrapper",
"version": "1.0.3",
"description": "a Typescript wrapper for interacting with the Bitcoin Cash Node (BCHN) API ",
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"author": "mr-zwets",
"scripts": {
"prepare": "pnpm build",
"build": "tsc",
"test": "vitest"
},
"license": "ISC",
"devDependencies": {
"@types/node": "^24.10.4",
"msw": "^2.12.4",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mr-zwets/bchn-api-wrapper.git"
},
"keywords": [
"bitcoin-cash",
"bitcoincash",
"bchn",
"bitcoind",
"rpc"
],
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/mr-zwets/bchn-api-wrapper/issues"
},
"homepage": "https://github.com/mr-zwets/bchn-api-wrapper#readme",
"packageManager": "pnpm@10.12.1"
}