-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 983 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 983 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
{
"name": "@libp2p/example-custom-protocols",
"version": "0.0.0",
"description": "How to create custom protocols for your app",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p-example-custom-protocols#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/libp2p/js-libp2p-examples.git"
},
"bugs": {
"url": "https://github.com/libp2p/js-libp2p-examples/issues"
},
"type": "module",
"scripts": {
"test": "test-node-example test/*"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^16.0.0",
"@chainsafe/libp2p-yamux": "^7.0.0",
"@libp2p/tcp": "^10.0.0",
"@libp2p/websockets": "^10.0.0",
"@multiformats/multiaddr": "^12.1.5",
"@nodeutils/defaults-deep": "^1.1.0",
"it-length-prefixed-stream": "^1.1.4",
"it-pipe": "^3.0.1",
"libp2p": "^2.0.0",
"uint8arrays": "^5.1.0"
},
"devDependencies": {
"test-ipfs-example": "^1.1.0"
},
"private": true
}