-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.43 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "podcast-dl",
"version": "12.1.4",
"description": "A CLI for downloading podcasts.",
"type": "module",
"bin": "./bin/bin.js",
"scripts": {
"build": "rimraf ./binaries && rimraf ./dist && node build.cjs",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint ./bin",
"test": "vitest run",
"test:watch": "vitest"
},
"lint-staged": {
"*.{js,json,md}": [
"oxfmt --no-error-on-unmatched-pattern"
]
},
"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",
"lib"
],
"author": "Joshua Pohl",
"license": "MIT",
"devDependencies": {
"@yao-pkg/pkg": "^6.6.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"rimraf": "^3.0.2",
"rolldown": "^1.0.0-rc.10",
"vitest": "^3.2.4"
},
"dependencies": {
"command-exists": "^1.2.9",
"commander": "^12.1.0",
"dayjs": "^1.8.25",
"entities": "^2.0.3",
"filenamify": "^6.0.0",
"global-agent": "^3.0.0",
"got": "^11.0.2",
"p-limit": "^4.0.0",
"pluralize": "^8.0.0",
"throttle-debounce": "^3.0.1",
"xml2js": "^0.5.0"
}
}