forked from distubejs/ytdl-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "@distube/ytdl-core",
"description": "DisTube fork of ytdl-core. YouTube video downloader in pure javascript.",
"keywords": [
"youtube",
"video",
"download",
"distube"
],
"version": "4.13.5",
"repository": {
"type": "git",
"url": "git://github.com/distubejs/ytdl-core.git"
},
"author": "Skick (https://github.com/skick1234)",
"contributors": [
"fent <[email protected]> (https://github.com/fent)",
"Tobias Kutscha (https://github.com/TimeForANinja)",
"Andrew Kelley (https://github.com/andrewrk)",
"Mauricio Allende (https://github.com/mallendeo)",
"Rodrigo Altamirano (https://github.com/raltamirano)",
"Jim Buck (https://github.com/JimmyBoh)",
"Pawel Rucinski (https://github.com/Roki100)",
"Alexander Paolini (https://github.com/Million900o)"
],
"main": "./lib/index.js",
"types": "./typings/index.d.ts",
"files": [
"lib",
"typings"
],
"scripts": {
"lint": "eslint ./",
"lint:fix": "eslint --fix ./",
"lint:typings": "tslint typings/index.d.ts",
"lint:typings:fix": "tslint --fix typings/index.d.ts"
},
"dependencies": {
"http-cookie-agent": "^6.0.5",
"m3u8stream": "^0.8.6",
"miniget": "^4.2.3",
"sax": "^1.4.1",
"tough-cookie": "^4.1.4",
"undici": "^6.19.2"
},
"devDependencies": {
"@types/node": "^20.14.10",
"eslint": "^8.57.0",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=16"
},
"license": "MIT",
"funding": "https://github.com/distubejs/ytdl-core?sponsor"
}