-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.24 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
{
"name": "@libp2p/http-example-serving-websites-from-web-browsers",
"version": "1.0.0",
"description": "How to serve websites from web browsers using libp2p",
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"project": true,
"sourceType": "module"
}
},
"scripts": {
"start": "vite",
"build": "vite build",
"relay": "node ./src/relay.js",
"proxy": "node ./src/proxy.js",
"test": "npm run test:chrome",
"test:chrome": "npm run build && test-browser-example test",
"clean": "aegir clean",
"lint": "aegir lint",
"dep-check": "aegir dep-check"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^17.0.0",
"@chainsafe/libp2p-yamux": "^8.0.0",
"@libp2p/circuit-relay-v2": "^4.0.4",
"@libp2p/http": "^1.0.0",
"@libp2p/http-server": "^1.0.0",
"@libp2p/identify": "^4.0.4",
"@libp2p/ping": "^3.0.4",
"@libp2p/utils": "^7.0.4",
"@libp2p/webrtc": "^6.0.5",
"@libp2p/websockets": "^10.0.5",
"@multiformats/multiaddr": "^13.0.1",
"@multiformats/multiaddr-matcher": "^3.0.1",
"libp2p": "^3.0.5"
},
"devDependencies": {
"aegir": "^47.0.22",
"test-ipfs-example": "^1.3.3",
"vite": "^7.1.8"
},
"private": true,
"type": "module"
}