-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
118 lines (118 loc) · 2.9 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
{
"name": "distube",
"version": "5.0.4",
"description": "A powerful Discord.js module for simplifying music commands and effortless playback of various sources with integrated audio filters.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"directories": {
"lib": "src",
"test": "tests"
},
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"docs": "typedoc",
"lint": "prettier --check . && eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write \"**/*.{ts,json,yml,yaml,md}\"",
"build": "tsup",
"type": "tsc --noEmit",
"update": "pnpm up -L \"!eslint\"",
"prepare": "husky",
"prepublishOnly": "pnpm run lint && pnpm run test",
"prepack": "pnpm run build"
},
"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": "https://github.com/skick1234/DisTube?sponsor",
"homepage": "https://distube.js.org/",
"dependencies": {
"tiny-typed-emitter": "^2.1.0",
"undici": "^6.20.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.17.0",
"@distube/youtube": "^1.0.4",
"@types/node": "^22.8.1",
"@types/tough-cookie": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.1.3",
"discord-api-types": "^0.37.103",
"discord.js": "^14.16.3",
"esbuild-plugin-version-injector": "^1.2.1",
"eslint": "^8.57.1",
"eslint-config-distube": "^1.7.1",
"husky": "^9.1.6",
"nano-staged": "^0.8.0",
"prettier": "^3.3.3",
"sodium-native": "^4.2.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typedoc": "^0.26.10",
"typedoc-material-theme": "^1.1.0",
"typedoc-plugin-extras": "^3.1.0",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.3"
},
"peerDependencies": {
"@discordjs/voice": "*",
"discord.js": "14"
},
"nano-staged": {
"*.ts": [
"prettier --write",
"eslint"
],
"*.{json,yml,yaml,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.17"
},
"pnpm": {
"overrides": {
"discord-api-types": "^0.37.103"
}
}
}