-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "fetch-in-chunks",
"version": "1.3.0",
"description": "A utility for fetching large files in chunks with support for parallel downloads and progress tracking.",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"files": [
"index.js",
"index.d.ts"
],
"exports": {
".": {
"import": "./index.js",
"main": "./index.js",
"browser": "./index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"fix": "npx prettier . --write",
"start": "npx http-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomayac/fetch-in-chunks.git"
},
"keywords": [
"fetch",
"chunks",
"download",
"parallel",
"progress",
"abort"
],
"author": "Thomas Steiner ([email protected])",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tomayac/fetch-in-chunks/issues"
},
"homepage": "https://github.com/tomayac/fetch-in-chunks#readme",
"devDependencies": {
"http-server": "^14.1.1",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0"
}
}