forked from libp2p/js-libp2p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.23 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
47
48
49
50
{
"name": "@libp2p/example-discovery-mechanisms",
"version": "0.0.0",
"description": "How to configure peer discovery mechanisms",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/examples/discovery-mechanisms#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/libp2p/js-libp2p.git"
},
"bugs": {
"url": "https://github.com/libp2p/js-libp2p/issues"
},
"type": "module",
"files": [
"src",
"dist",
"!dist/test",
"!**/*.tsbuildinfo"
],
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
}
},
"scripts": {
"lint": "aegir lint",
"start": "react-scripts start",
"test:example": "node test.js"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^13.0.0",
"@chainsafe/libp2p-yamux": "^5.0.0",
"@libp2p/bootstrap": "^9.0.0",
"@libp2p/floodsub": "^8.0.0",
"@libp2p/mdns": "^9.0.0",
"@libp2p/mplex": "^9.0.0",
"@libp2p/pubsub-peer-discovery": "^8.0.4",
"@libp2p/tcp": "^8.0.0",
"libp2p": "^0.46.0"
},
"devDependencies": {
"aegir": "^40.0.8",
"execa": "^8.0.1",
"p-wait-for": "^5.0.2",
"uint8arrays": "^4.0.4"
},
"private": true
}