forked from storacha/public-bucket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.46 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
{
"name": "@web3-storage/public-bucket",
"version": "1.2.0",
"description": "Server implementation of a bucket with multipart range support.",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "tsc --build",
"lint": "standard",
"pretest": "npm run lint",
"test": "entail",
"coverage": "c8 --reporter text --reporter html npm run test"
},
"author": "Alan Shaw",
"license": "Apache-2.0 OR MIT",
"files": [
"src",
"dist"
],
"exports": {
".": {
"import": "./src/index.js",
"types": "./dist/src/index.d.ts"
},
"./server": {
"import": "./src/server.js",
"types": "./dist/src/server.d.ts"
},
"./server/node": {
"import": "./src/server.node.js",
"types": "./dist/src/server.node.d.ts"
}
},
"dependencies": {
"@httpland/range-parser": "^1.2.0",
"multipart-byte-range": "^3.0.1",
"p-defer": "^4.0.1",
"uint8arraylist": "^2.4.8"
},
"devDependencies": {
"@types/node": "^20.12.12",
"buffer": "^6.0.3",
"c8": "^9.1.0",
"entail": "^2.1.2",
"standard": "^17.1.0",
"typescript": "^5.4.5",
"uint8arrays": "^5.1.0"
},
"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"
]
}
}