-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
93 lines (93 loc) · 2.57 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "patreon-dl",
"version": "2.1.0",
"description": "Patreon Downloader",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && npx tsc -p tsconfig.json",
"lint": "npx eslint ./src",
"lint:fix": "npx eslint ./src --fix",
"doc": "npx typedoc"
},
"bin": {
"patreon-dl": "./bin/patreon-dl.js",
"patreon-dl-vimeo": "./bin/patreon-dl-vimeo.js"
},
"author": "Patrick Kan <[email protected]> (https://github.com/patrickkfkan)",
"repository": {
"type": "git",
"url": "https://github.com/patrickkfkan/patreon-dl.git"
},
"license": "MIT",
"directories": {
"dist": "./dist"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/capitalize": "^2.0.2",
"@types/command-line-args": "^5.2.2",
"@types/command-line-usage": "^5.0.4",
"@types/content-disposition": "^0.5.7",
"@types/dateformat": "^5.0.2",
"@types/deep-equal": "^1.0.4",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/fs-extra": "^9.0.0",
"@types/mime-types": "^2.1.3",
"@types/node": "^18.19.50",
"@types/prompt-sync": "^4.2.3",
"@types/semver": "^7.5.8",
"@types/speedometer": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^9.10.0",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.7",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.6.0"
},
"dependencies": {
"@patrickkfkan/cross-spawn": "^7.1.0",
"@types/cli-color": "^2.0.5",
"@types/deep-freeze": "^0.1.5",
"@types/jsdom": "^21.1.7",
"bgutils-js": "^2.0.1",
"bottleneck": "^2.19.5",
"capitalize": "^2.0.4",
"cheerio": "^1.0.0",
"cli-color": "^2.0.3",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"configparser": "^0.3.10",
"content-disposition": "^0.5.4",
"dateformat": "^5.0.3",
"deep-equal": "^2.2.3",
"deep-freeze": "^0.0.1",
"env-paths": "^3.0.0",
"escape-string-regexp": "^5.0.0",
"fast-copy": "^3.0.2",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^9.1.0",
"hasha": "^5.2.2",
"jsdom": "^25.0.0",
"make-dir": "^4.0.0",
"mime-types": "^2.1.35",
"minimatch": "^10.0.1",
"prompt-sync": "^4.2.0",
"sanitize-filename": "^1.6.3",
"semver": "^7.5.4",
"speedometer": "^1.1.0",
"string-argv": "^0.3.2",
"yargs-parser": "^21.1.1",
"youtubei.js": "^10.4.0"
},
"keywords": [
"patreon",
"download",
"downloader"
]
}