-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
67 lines (67 loc) · 1.56 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
{
"name": "lavacord",
"version": "2.1.4-v4",
"description": "A simple by design lavalink wrapper made for any discord library.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepublishOnly": "yarn compile",
"lint": "eslint . -c eslint.config.js --fix",
"test": "eslint . -c eslint.config.js",
"compile": "tsc -p .",
"watch": "tsc -p . -w",
"docs": "typedoc --sort static-first --sort alphabetical"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lavacord/lavacord.git"
},
"keywords": [
"bot",
"music",
"discord",
"api",
"lava",
"link",
"lavalink",
"discord.js",
"eris"
],
"author": "Jacz",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lavacord/lavacord/issues"
},
"homepage": "https://github.com/MrJacz/lavacord#readme",
"dependencies": {
"lavalink-types": "^2.1.1",
"undici": "^7.2.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"typedoc": "^0.27.5",
"typescript": "^5.7.2"
},
"optionalDependencies": {
"discord.js": "14.x",
"eris": "0.18.x",
"detritus-client": "0.16.x",
"cloudstorm": "0.11.x",
"oceanic.js": "1.11.x"
},
"files": [
"dist",
"LICENSE"
],
"engines": {
"node": ">=20",
"npm": ">=8"
}
}