-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.86 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "hoverboard",
"description": "An IPFS Bitswap Peer in Cloudflare Workers",
"version": "2.0.7",
"private": true,
"license": "Apache-2.0 OR MIT",
"type": "module",
"scripts": {
"build": "esbuild --bundle src/worker.js --format=esm --sourcemap --minify --outfile=dist/worker.mjs",
"build:debug": "esbuild --bundle src/worker.js --format=esm --outfile=dist/worker.mjs",
"deploy": "wrangler deploy",
"start": "wrangler dev",
"lint": "standard",
"pretest": "standard",
"test": "npm run build:debug && ava --serial --no-worker-threads",
"dial": "node example/dial.js"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230419.0",
"@helia/unixfs": "^4.0.0",
"@libp2p/websockets": "^9.0.8",
"@web3-storage/content-claims": "^5.0.0",
"@web3-storage/public-bucket": "^1.0.0",
"@web3-storage/upload-client": "^17.0.1",
"ava": "^6.1.3",
"carstream": "^2.2.0",
"dagula": "^8.0.0",
"esbuild": "^0.24.0",
"helia": "^5.0.0",
"miniflare": "^3.20240925.1",
"standard": "^17.1.0",
"typescript": "^5.0.4",
"wrangler": "^3.0.0"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^16.0.0",
"@chainsafe/libp2p-yamux": "^7.0.1",
"@ipld/dag-cbor": "^9.2.1",
"@libp2p/crypto": "^5.0.5",
"@libp2p/identify": "^3.0.8",
"@libp2p/mplex": "^11.0.8",
"@libp2p/peer-id": "^5.0.5",
"@multiformats/uri-to-multiaddr": "^8.0.0",
"@web3-storage/blob-fetcher": "^2.2.0",
"cf-libp2p-ws-transport": "^2.0.4",
"events": "^3.3.0",
"libp2p": "^2.1.8",
"lnmap": "^2.0.0",
"miniswap": "^4.0.1",
"multiformats": "^13.1.0",
"p-defer": "^4.0.0",
"uint8arrays": "^5.1.0"
},
"standard": {
"ignore": [
"test/fixture/peer.js"
]
},
"ava": {
"files": [
"test/**/*.test.js",
"!test/lib",
"!test/fixture"
]
}
}