generated from ipfs-examples/example-fork-go-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.38 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
{
"name": "helia-remote-pinning",
"version": "0.0.0",
"description": "How to pin content to a remote IPFS pinning service using Helia",
"private": true,
"type": "module",
"scripts": {
"clean": "rimraf ./dist*",
"build": "vite build --config ./vite.config-publisher.js && vite build --config ./vite.config-resolver.js",
"bootstrapper": "node bootstrapper.js",
"pinning-service": "node pinning-service.js",
"publisher": "vite --config ./vite.config-publisher.js",
"resolver": "vite --config ./vite.config-resolver.js",
"test": "npm run build && test-browser-example test"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^16.0.0",
"@chainsafe/libp2p-yamux": "^7.0.1",
"@helia/pinning-service-api-server": "^1.0.0",
"@helia/remote-pinning": "^2.0.0",
"@libp2p/bootstrap": "^11.0.17",
"@libp2p/circuit-relay-v2": "^3.1.7",
"@libp2p/crypto": "^5.0.9",
"@libp2p/devtools-metrics": "^1.1.6",
"@libp2p/identify": "^3.0.15",
"@libp2p/kad-dht": "^14.2.0",
"@libp2p/tcp": "^10.0.15",
"@libp2p/websockets": "^9.1.2",
"helia": "^5.0.0",
"it-drain": "^3.0.7",
"libp2p": "^2.1.8",
"multiformats": "^13.3.1",
"uint8arrays": "^5.1.0"
},
"devDependencies": {
"@playwright/test": "^1.37.1",
"@vitejs/plugin-react": "^4.0.4",
"rimraf": "^6.0.1",
"test-ipfs-example": "^1.0.0",
"vite": "^6.0.9"
}
}