forked from lavacord/Lavacord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.34 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
{
"name": "lavacord",
"version": "2.0.0",
"description": "A simple by design lavalink wrapper made for any discord library.",
"main": "dist/index",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "yarn compile",
"lint": "eslint --fix --ext ts src",
"test": "eslint --ext ts src",
"compile": "tsc -p .",
"watch": "tsc -p . -w",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lavacord/lavacord.git"
},
"keywords": [
"bot",
"music",
"discord",
"api",
"lava",
"link",
"lavalink",
"discord.js",
"eris",
"lavalink"
],
"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.0.0",
"undici": "^5.21.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/node": "^18.15.2",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"typedoc": "^0.23.26",
"typescript": "^4.9.5"
},
"files": [
"dist",
"LICENCE"
],
"engines": {
"node": ">=10",
"npm": ">=5"
}
}