forked from skick1234/DisTube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.44 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "distube",
"version": "4.1.1",
"description": "A Discord.js module to simplify your music commands and play songs with audio filters on Discord without any API key.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"directories": {
"lib": "src",
"test": "tests"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"docs": "docgen -s src/**/*.ts -o docs.json -c pages/index.yml -g -j jsdoc.config.json",
"lint": "prettier --check . && eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write \"**/*.{ts,json,yml,yaml,md}\"",
"build": "tsup",
"build:check": "tsc --noEmit",
"update": "ncu -u && yarn up '**' -R",
"postinstall": "husky install",
"prepublishOnly": "yarn lint && yarn test",
"prepack": "yarn build && pinst --disable",
"postpack": "pinst --enable",
"dev:add-docs-to-worktree": "git worktree add --track -b docs docs origin/docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skick1234/DisTube.git"
},
"keywords": [
"youtube",
"music",
"discord",
"discordjs",
"bot",
"distube",
"queue",
"musicbot",
"discord-music-bot",
"music-bot",
"discord-js"
],
"author": "Skick (https://github.com/skick1234)",
"license": "MIT",
"bugs": {
"url": "https://github.com/skick1234/DisTube/issues"
},
"funding": [
{
"type": "individual",
"url": "https://paypal.me/Skickkk"
},
{
"type": "patreon",
"url": "https://patreon.com/DisTube"
}
],
"homepage": "https://distube.js.org/",
"dependencies": {
"@distube/ytdl-core": "^4.13.2",
"@distube/ytpl": "^1.2.1",
"@distube/ytsr": "^1.2.0",
"prism-media": "npm:@distube/prism-media@latest",
"tiny-typed-emitter": "^2.1.0",
"tough-cookie": "^4.1.3",
"tslib": "^2.6.2",
"undici": "^5.27.2"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-private-methods": "^7.22.5",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@discordjs/voice": "^0.16.0",
"@distubejs/docgen": "distubejs/docgen",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@types/tough-cookie": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"babel-jest": "^29.7.0",
"discord.js": "^14.13.0",
"eslint": "^8.53.0",
"eslint-config-distube": "^1.6.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-jsdoc": "^46.8.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jsdoc-babel": "^0.5.0",
"nano-staged": "^0.8.0",
"npm-check-updates": "^16.14.6",
"pinst": "^3.0.0",
"prettier": "^3.0.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@discordjs/opus": "*",
"@discordjs/voice": "*",
"discord.js": "14"
},
"peerDependenciesMeta": {
"@discordjs/opus": {
"optional": true
}
},
"nano-staged": {
"*.ts": [
"prettier --write",
"eslint"
],
"*.{json,yml,yaml,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=16.9.0"
},
"packageManager": "yarn@3.6.1"
}