forked from lightpohl/podcast-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.26 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": "podcast-dl",
"version": "10.2.0",
"description": "A CLI for downloading podcasts.",
"type": "module",
"bin": "./bin/bin.js",
"scripts": {
"build": "rimraf ./binaries && rimraf ./dist && node build.cjs",
"lint": "eslint ./bin"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"keywords": [
"podcast",
"podcasts",
"downloader",
"cli"
],
"engines": {
"node": ">=18.17.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lightpohl/podcast-dl.git"
},
"files": [
"bin"
],
"author": "Joshua Pohl",
"license": "MIT",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"pkg": "^5.8.0",
"prettier": "2.3.2",
"rimraf": "^3.0.2",
"webpack": "^5.75.0"
},
"dependencies": {
"command-exists": "^1.2.9",
"commander": "^12.1.0",
"dayjs": "^1.8.25",
"filenamify": "^6.0.0",
"global-agent": "^3.0.0",
"got": "^11.0.2",
"p-limit": "^4.0.0",
"pluralize": "^8.0.0",
"rss-parser": "^3.12.0",
"throttle-debounce": "^3.0.1"
}
}