-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 813 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 813 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
{
"name": "bitcoinrpc",
"version": "0.1.0",
"description": "Bitcoin Core RPC client",
"main": "dist/rpcclient.js",
"scripts": {
"build": "tsc --watch",
"test": "npx jest dist/tests",
"run": "node dist/rpcclient.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinyfog/bitcoinrpc.git"
},
"keywords": [
"bitcoin",
"typescript",
"rpc",
"javascript"
],
"author": "tinyfog",
"license": "MIT",
"bugs": {
"url": "https://github.com/tinyfog/bitcoinrpc/issues"
},
"homepage": "https://github.com/tinyfog/bitcoinrpc#readme",
"dependencies": {
"axios": "^1.3.4",
"tsc": "^2.0.4",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.14.1",
"jest": "^29.4.3"
}
}