-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "ytdl-utils-cli",
"version": "1.0.5",
"description": "",
"main": "./dist/src/index.js",
"bin": {
"ytdl": "./dist/src/index.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"type": "commonjs",
"scripts": {
"build": "rm -rf ./dist && tsc -p .",
"local": "npm uninstall -g && npm run build && npm i -g"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WeetLeaf/ytdl-cli.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WeetLeaf/ytdl-cli/issues"
},
"homepage": "https://github.com/WeetLeaf/ytdl-cli#readme",
"dependencies": {
"@distube/ytdl-core": "4.16.12",
"@distube/ytpl": "^1.2.3",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"commander": "^14.0.0",
"conf": "^14.0.0",
"figlet": "^1.8.2",
"fluent-ffmpeg": "^2.1.2",
"readline": "^1.3.0",
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/clear": "^0.1.4",
"@types/cli-progress": "^3.11.5",
"@types/figlet": "^1.7.0",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^24.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}