forked from kevinejohn/bsv-p2p
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.05 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
{
"name": "p2p-cash",
"version": "1.1.7",
"description": "Communicate on the Bitcoin P2P network with minimal overhead or dependencies",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"test": "ts-node ./tests/index.ts",
"build": "tsc",
"docs": "typedoc",
"prepare": "yarn build && yarn docs"
},
"author": "Kevin Johnson <[email protected]>",
"contributors": [
"Andrew Johnson <[email protected]>",
"mainnet-pat"
],
"license": "MIT",
"dependencies": {
"@types/ws": "^8.5.4",
"async-mutex": "^0.4.0",
"bitcoin-minimal": "^1.1.5",
"isomorphic-ws": "^5.0.0",
"source-map-support": "^0.5.21",
"ws": "^8.12.0"
},
"devDependencies": {
"@types/node": "^18.11.6",
"ts-node": "^10.9.1",
"typedoc": "^0.23.18",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.8.4"
},
"keywords": [
"bitcoin",
"peer to peer"
],
"repository": {
"type": "git",
"url": "https://github.com/mainnet-pat/p2p-cash.git"
}
}