forked from kevinejohn/bsv-spv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.21 KB
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
{
"name": "bsv-spv",
"version": "1.0.8",
"description": "Stay in sync with latest bitcoin headers, blocks and mempool txs",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"test": "npm run test-cluster",
"test-cluster": "ts-node ./tests/cluster.ts",
"test-lister": "ts-node ./tests/lister.ts",
"build": "tsc",
"docs": "typedoc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/kevinejohn/bsv-spv.git"
},
"author": "Kevin Johnson",
"license": "MIT",
"keywords": [
"bitcoin",
"spv",
"headers"
],
"dependencies": {
"bsv-headers": "^1.0.2",
"bsv-minimal": "^2.0.0",
"bsv-p2p": "^2.0.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"levelup": "^5.1.1",
"lmdb": "^2.7.11",
"rocksdb": "^5.2.1",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.20",
"@types/levelup": "^5.1.4",
"@types/node": "^20.8.9",
"@types/rocksdb": "^3.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.25.2",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.2.2"
}
}