-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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": "unamed-network",
"version": "0.0.1",
"description": "IPFS and WebRTC p2p network",
"type": "module",
"module": "lib/unamed-network.js",
"types": "index.d.ts",
"scripts": {
"clean": "rm -rf dist .cache .parcel-cache",
"web": "npm run clean && parcel serve index.html -p 8888 --no-hmr",
"build-web": "npm run clean && parcel build index.html --public-url ./",
"start": "node lib/node.js"
},
"targets": {
"module": false,
"main": false,
"types": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/pastleo/unamed-network.git"
},
"author": "PastLeo",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/pastleo/unamed-network/issues"
},
"homepage": "https://github.com/pastleo/unamed-network",
"peerDependencies": {
"debug": "^4.3.2",
"ipfs-core": "^0.13.0",
"ipfs-http-client": "^55.0.0",
"libp2p-websockets": "^0.16.2"
},
"devDependencies": {
"parcel": "^2.0.1",
"tsee": "^1.3.2"
},
"dependencies": {
"isomorphic-ws": "^4.0.1",
"k-bucket": "^5.1.0",
"libp2p-crypto": "^0.20.0",
"libp2p-webrtc-peer": "^10.0.1",
"multiaddr": "^10.0.1",
"multiaddr-to-uri": "^8.0.0",
"multiformats": "^9.4.10",
"uint8arrays": "^3.0.0",
"ws": "^8.3.0"
}
}