-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.97 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
{
"name": "molnia",
"version": "0.0.15",
"description": "Fast and lightweight library for downloading files",
"main": "molnia.js",
"types": "./types/molnia.d.ts",
"scripts": {
"start": "node molnia.js",
"build": "npm run build:linux && npm run build:mac && npm run build:mac:arm && npm run build:win",
"build:win": "pkg . -t node22-win-x64 -o ./build/win-x64/molnia.exe",
"build:mac": "pkg . -t node22-macos-x64 -o ./build/macos-x64/molnia",
"build:mac:arm": "pkg . -t node22-macos-arm64 -o ./build/macos-arm64/molnia",
"build:linux": "pkg . -t node22-linux-x64 -o ./build/linux-x64/molnia",
"lint": "eslint . && prettier --check .",
"fix": "eslint . --fix && prettier --write .",
"test": "npm run lint && node --test",
"test:mp4": "node molnia https://cdn.bitmovin.com/content/assets/art-of-motion-dash-hls-progressive/MI201109210084_mpeg-4_hd_high_1080p25_10mbits.mp4"
},
"bin": {
"molnia": "molnia.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitalygashkov/molnia.git"
},
"keywords": [
"downloader",
"lightweight",
"http",
"https",
"curl",
"wget"
],
"bugs": {
"url": "https://github.com/vitalygashkov/molnia/issues",
"email": "[email protected]"
},
"author": "Vitaly Gashkov <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"funding": [
{
"type": "individual",
"url": "https://boosty.to/vitalygashkov"
},
{
"type": "patreon",
"url": "https://www.patreon.com/vitalygashkov"
}
],
"engines": {
"node": "20 || 21 || 22"
},
"dependencies": {
"fastq": "^1.17.1",
"undici": "^6.21.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/node": "^22.9.0",
"@yao-pkg/pkg": "^6.1.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}