-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 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
43
44
45
46
47
48
{
"name": "@web3-storage/public-r2-bucket",
"version": "1.5.2",
"description": "Cloudflare worker allowing read access (with byte range request support) to R2 buckets.",
"main": "src/worker.js",
"type": "module",
"scripts": {
"build": "esbuild src/worker.js --bundle --format=esm --external:node:buffer --external:node:events --external:node:async_hooks --outfile=dist/worker.mjs",
"lint": "standard",
"test": "npm run build && entail"
},
"author": "Alan Shaw",
"license": "Apache-2.0 OR MIT",
"files": [
"src"
],
"devDependencies": {
"@cloudflare/workers-types": "^4.20241230.0",
"buffer": "^6.0.3",
"byteranges": "^1.1.0",
"entail": "^2.2.1",
"esbuild": "^0.21.5",
"miniflare": "^3.20241230.0",
"standard": "^17.1.2",
"uint8arrays": "^5.1.0"
},
"dependencies": {
"@microlabs/otel-cf-workers": "1.0.0-rc.49",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/sdk-trace-base": "^1.30.0",
"@web3-storage/gateway-lib": "^5.1.2",
"@web3-storage/public-bucket": "^1.4.0",
"typescript": "^5.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3s-project/public-bucket.git"
},
"bugs": {
"url": "https://github.com/w3s-project/public-bucket/issues"
},
"homepage": "https://github.com/w3s-project/public-bucket#readme",
"standard": {
"ignore": [
"*.ts"
]
}
}