-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.08 KB
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
{
"name": "fetchforge",
"version": "1.0.0",
"description": "FetchForge - A modern self-hosted web download manager. Segmented concurrent downloads, resumable transfers, live progress via SSE, and a beautiful dashboard. Zero runtime dependencies.",
"type": "commonjs",
"main": "src/server.js",
"bin": {
"fetchforge": "src/cli.js",
"fetchforge-server": "src/server.js"
},
"scripts": {
"start": "node src/server.js",
"cli": "node src/cli.js",
"test": "node tests/test.js",
"check": "node --check src/server.js && node --check src/downloader.js && node --check src/store.js && node --check src/cli.js && node --check public/app.js"
},
"keywords": [
"download",
"download-manager",
"resume",
"segmented",
"http",
"cli",
"dashboard",
"self-hosted",
"zero-dependency",
"web"
],
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gitstq/FetchForge.git"
},
"files": [
"src",
"public",
"assets",
"README.md",
"LICENSE"
]
}