-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 966 Bytes
/
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
{
"name": "kick-dl",
"version": "2.0.0",
"description": "CLI tool for easily downloading VODs and Clips from kick.com",
"type": "module",
"private": false,
"author": "Julio Cesar Garcia <dev.juliogarciape@gmail.com>",
"license": "GPL-3.0-only",
"homepage": "https://github.com/juliogarciape/kick-dl#README",
"bin": {
"kick-dl": "./bin/cli.js"
},
"keywords": [
"kick.com",
"cli",
"ffmpeg",
"downloader",
"vod downloader",
"kick downloader",
"kick streaming",
"youtube-dl",
"twitch-dl"
],
"repository": {
"type": "git",
"url": "https://github.com/juliogarciape/kick-dl.git"
},
"bugs": {
"url": "https://github.com/juliogarciape/kick-dl/issues"
},
"engines": {
"node": ">=14.21.3"
},
"dependencies": {
"@inquirer/prompts": "^7.1.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ffmpeg-static": "^5.2.0",
"luxon": "^3.5.0",
"puppeteer": "^23.8.0"
}
}