-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 951 Bytes
/
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
{
"type": "module",
"name": "relay-demo",
"version": "1.0.0",
"description": "This project should demonstrate the functionality of a libp2p relay server.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sneaker1/relay-demo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sneaker1/relay-demo/issues"
},
"homepage": "https://github.com/sneaker1/relay-demo#readme",
"dependencies": {
"@chainsafe/libp2p-noise": "^8.0.0",
"@libp2p/bootstrap": "^2.0.0",
"@libp2p/kad-dht": "^3.0.4",
"@libp2p/mplex": "^5.0.0",
"@libp2p/peer-id": "^1.1.15",
"@libp2p/peer-id-factory": "^1.0.18",
"@libp2p/tcp": "^3.0.3",
"@libp2p/websockets": "^3.0.2",
"colors": "^1.4.0",
"it-pipe": "^2.0.4",
"it-to-buffer": "^2.0.2",
"libp2p": "^0.38.0"
}
}