-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.97 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "webpeerjs",
"version": "0.2.7",
"type": "module",
"description": "WebPEER is a Decentralized P2P Network in the Browser",
"main": "./src/webpeer.js",
"module": "./src/webpeer.js",
"exports": {
".": {
"import": "./src/webpeer.js"
}
},
"files": [
"dist/",
"src/",
"LICENSE"
],
"scripts": {
"test": "cd test && cd project && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuzulul/webpeerjs.git"
},
"keywords": [
"webpeer",
"p2p",
"p2p-network",
"webpeer-network",
"ipfs",
"libp2p",
"peer",
"peer-to-peer",
"decentralized",
"browser-to-browser",
"distributed",
"serverless"
],
"author": {
"name": "Nuzulul Zulkarnain",
"url": "https://nuzulul.github.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nuzulul/webpeerjs/issues"
},
"homepage": "https://github.com/nuzulul/webpeerjs#readme",
"dependencies": {
"@chainsafe/libp2p-noise": "^17.0.0",
"@chainsafe/libp2p-yamux": "^8.0.1",
"@helia/delegated-routing-v1-http-api-client": "^8.0.1",
"@libp2p/circuit-relay-v2": "^4.2.7",
"@libp2p/dcutr": "^3.0.22",
"@libp2p/gossipsub": "^16.0.3",
"@libp2p/identify": "^4.1.8",
"@libp2p/kad-dht": "^16.3.3",
"@libp2p/logger": "^6.2.9",
"@libp2p/peer-id": "^6.0.11",
"@libp2p/ping": "^3.1.7",
"@libp2p/pubsub-peer-discovery": "^12.0.0",
"@libp2p/simple-metrics": "^2.0.17",
"@libp2p/webrtc": "^6.0.25",
"@libp2p/websockets": "^10.1.15",
"@libp2p/webtransport": "^6.0.30",
"@multiformats/multiaddr": "^13.0.3",
"datastore-idb": "^5.0.1",
"interface-datastore": "^10.0.1",
"it-length-prefixed": "^11.0.1",
"it-length-prefixed-stream": "^3.0.0",
"it-map": "^3.1.6",
"it-pipe": "^3.0.1",
"libp2p": "^3.3.4",
"multiformats": "^14.0.3",
"protons-runtime": "^7.0.0",
"signalingserver.js": "^0.0.7",
"uint8arrays": "^6.1.1"
}
}