-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1008 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
35
36
37
38
39
40
41
42
{
"name": "chat-p2p",
"version": "0.0.0",
"description": "A chat P2P",
"license": "MIT",
"homepage": "https://github.com/raulpy271/chat-p2p",
"repository": {
"type": "git",
"url": "git+https://github.com/raulpy271/chat-p2p.git"
},
"bugs": {
"url": "https://github.com/raulpy271/chat-p2p.git/issues"
},
"type": "module",
"scripts": {
"start": "electron src/main.js"
},
"files": [
"src",
"dist",
"!dist/test",
"!**/*.tsbuildinfo"
],
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^14.1.0",
"@chainsafe/libp2p-noise": "^16.0.0",
"@chainsafe/libp2p-yamux": "^7.0.0",
"@libp2p/bootstrap": "^11.0.6",
"@libp2p/identify": "^3.0.1",
"@libp2p/pubsub-peer-discovery": "^11.0.0",
"@libp2p/tcp": "^10.0.0",
"libp2p": "^2.0.0",
"uint8arrays": "^5.1.0"
},
"devDependencies": {
"electron": "^33.0.0",
"electronmon": "^2.0.3",
"nodemon": "^3.1.7",
"test-ipfs-example": "^1.1.0"
},
"private": true
}