-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
69 lines (69 loc) · 1.53 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
{
"name": "@discordx/lava-queue",
"version": "4.0.6",
"private": false,
"description": "Queue system for @discordx/lava-player",
"keywords": [
"bot",
"discord",
"discordx",
"javascript",
"lava-player",
"lavalink",
"music",
"queue",
"typescript",
"youtube"
],
"homepage": "https://github.com/discordx-ts/discordx/tree/main/packages/lava-queue#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 --format cjs,esm --dts",
"build:typedoc": "npx typedoc src/index.ts --out ../../docs/static/api/lava-queue"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@discordx/lava-player": "workspace:^",
"@types/lodash": "^4.17.14",
"discord.js": "^14.17.3",
"typescript": "5.7.3"
},
"peerDependencies": {
"@discordx/lava-player": ">=2.1.3",
"discord.js": ">=13"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "public"
}
}