This repository was archived by the owner on Jun 1, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.04 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.04 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
69
70
71
72
73
74
75
76
77
78
{
"name": "@distube/yt-dlp",
"version": "1.1.3",
"description": "yt-dlp plugin for DisTube.js.org",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write \"**/*.{ts,json,yml,yaml,md}\"",
"build": "tsup",
"build:check": "tsc --noEmit --incremental false",
"postinstall:prod": "node script/download",
"postinstall": "npm run build && node script/download && husky install",
"prepack": "yarn build && node script/prepack",
"postpack": "node script/postpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/distubejs/yt-dlp.git"
},
"keywords": [
"distube",
"plugin",
"yt-dlp",
"youtube-dl",
"discord.js",
"discord-music-bot"
],
"author": "Skick",
"license": "MIT",
"bugs": {
"url": "https://github.com/distubejs/yt-dlp/issues"
},
"homepage": "https://github.com/distubejs/yt-dlp#readme",
"dependencies": {
"dargs": "^7.0.0",
"execa": "^5.1.1",
"mkdirp": "^1.0.4",
"undici": "^5.7.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@discordjs/voice": "latest",
"@types/mkdirp": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"commitlint": "^17.0.3",
"discord.js": "latest",
"distube": "latest",
"eslint": "^8.19.0",
"eslint-config-distube": "^1.6.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-jsdoc": "^39.3.3",
"fromentries": "^1.3.2",
"husky": "^8.0.1",
"nano-staged": "^0.8.0",
"prettier": "^2.7.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4"
},
"peerDependencies": {
"distube": "3.x||4.x"
},
"nano-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.{js,json,yml,yaml,md}": "prettier --write"
},
"engines": {
"node": ">=12.0.0"
},
"packageManager": "yarn@3.2.0"
}