-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
76 lines (76 loc) · 1.82 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
{
"name": "@discordx/music",
"version": "6.3.1",
"private": false,
"description": "Powerful Discord music player library using YTDL",
"keywords": [
"bot",
"discord",
"discordx",
"javascript",
"music",
"typescript",
"youtube"
],
"homepage": "https://github.com/discordx-ts/discordx/tree/main/packages/music#readme",
"bugs": {
"url": "https://github.com/discordx-ts/discordx/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discordx-ts/discordx.git"
},
"license": "Apache-2.0",
"contributors": [
"Vijay Meena <[email protected]> (https://github.com/vijayymmeena)"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"CHANGELOG.md",
"LICENSE.txt",
"README.md",
"SECURITY.md",
"package.json"
],
"scripts": {
"build": "tsup src/index.ts src/worker/index.ts --format cjs,esm --dts",
"build:typedoc": "npx typedoc src/index.ts --out ../../docs/static/api/music"
},
"dependencies": {
"@distube/ytdl-core": "^4.14.4",
"lodash": "^4.17.21",
"prism-media": "^1.3.5",
"youtube-sr": "^4.3.11",
"yt-search": "^2.12.1"
},
"devDependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.17.0",
"@discordx/importer": "workspace:^",
"@types/lodash": "^4.17.7",
"@types/yt-search": "^2.10.3",
"discord.js": "^14.16.2",
"ffmpeg-static": "^5.2.0",
"libsodium-wrappers": "^0.7.15",
"typescript": "5.6.2"
},
"peerDependencies": {
"@discordjs/voice": ">=0.11",
"@discordx/importer": "*",
"discord.js": ">=14 || ^14.0.0-dev"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "public"
}
}