-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.52 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@web3-storage/blob-fetcher",
"version": "3.0.0",
"description": "A blob fetcher that batches requests and reads multipart byterange responses.",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "tsc --build",
"coverage": "c8 --reporter text --reporter html npm run test",
"lint": "standard",
"pretest": "npm run lint",
"test": "entail"
},
"keywords": [
"blockstore",
"ipld",
"range",
"http",
"content-range",
"multipart",
"byterange"
],
"author": "Alan Shaw",
"license": "Apache-2.0 OR MIT",
"files": [
"src",
"dist"
],
"exports": {
".": {
"import": "./src/index.js",
"types": "./dist/src/index.d.ts"
},
"./fetcher": {
"import": "./src/fetcher/index.js",
"types": "./dist/src/fetcher/index.d.ts"
},
"./fetcher/simple": {
"import": "./src/fetcher/simple.js",
"types": "./dist/src/fetcher/simple.d.ts"
},
"./fetcher/batching": {
"import": "./src/fetcher/batching.js",
"types": "./dist/src/fetcher/batching.d.ts"
},
"./locator/content-claims-client": {
"import": "./src/locator/content-claims-client.js",
"types": "./dist/src/locator/content-claims-client.d.ts"
},
"./locator": {
"import": "./src/locator/index.js",
"types": "./dist/src/locator/index.d.ts"
},
"./tracing/tracing": {
"import": "./src/tracing/tracing.js",
"types": "./dist/src/tracing/tracing.d.ts"
}
},
"dependencies": {
"@cloudflare/workers-types": "^4.20241022.0",
"@ipld/dag-ucan": "^3.4.0",
"@opentelemetry/api": "^1.9.0",
"@storacha/indexing-service-client": "2.1.0",
"@web3-storage/blob-index": "^1.0.2",
"@web3-storage/content-claims": "5.2.0",
"multiformats": "^13.1.0",
"multipart-byte-range": "^3.0.1",
"p-defer": "^4.0.1",
"p-queue": "^8.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@ipld/unixfs": "^3.0.0",
"@types/node": "^22.9.1",
"@ucanto/interface": "10.1.1",
"@ucanto/principal": "^9.0.2",
"@web3-storage/public-bucket": "^1.1.0",
"c8": "^9.1.0",
"carstream": "^2.2.0",
"entail": "^2.1.2",
"ipfs-unixfs-exporter": "^13.5.0",
"standard": "^17.1.0",
"typescript": "^5.7.2"
},
"standard": {
"ignore": [
"*.ts"
]
},
"packageManager": "[email protected]+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228",
"engines": {
"node": ">=20.11.0"
}
}