generated from libp2p/js-libp2p-example-fork-go-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.21 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
{
"name": "@libp2p/example-delegated-routing-example",
"version": "0.0.0",
"description": "How to use other libp2p nodes to perform delegated routing",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p-examples/tree/main/examples/js-libp2p-example-delegated-routing#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": {
"start": "vite",
"build": "vite build",
"server": "node ./server.js",
"test:firefox": "npm run build && playwright test --browser=firefox test",
"test:chrome": "npm run build && playwright test test",
"test": "npm run build && test-browser-example test"
},
"dependencies": {
"@helia/delegated-routing-v1-http-api-client": "^4.0.0",
"@helia/delegated-routing-v1-http-api-server": "^4.0.0",
"libp2p": "^2.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite": "^6.0.3"
},
"devDependencies": {
"@libp2p/peer-id": "^5.0.4",
"eslint-config-ipfs": "^7.0.2",
"helia": "^5.0.0",
"test-ipfs-example": "^1.0.0"
},
"private": true
}