forked from TimeForANinja/node-ytpl
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1007 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
43
44
45
{
"name": "@distube/ytpl",
"version": "1.2.1",
"description": "Anonymous YouTube playlist resolver. Made for distube.js.org",
"keywords": [
"youtube",
"playlist"
],
"bugs": {
"url": "https://github.com/distubejs/ytpl/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/distubejs/ytpl.git"
},
"license": "MIT",
"author": "Skick (https://github.com/skick1234)",
"contributors": [
"Tobias Kutscha (https://github.com/TimeForANinja)"
],
"main": "./lib/main.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": {
"undici": "^5.25.2"
},
"devDependencies": {
"dtslint": "^4.2.1",
"eslint": "^8.49.0",
"tslint": "^6.1.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=8"
}
}