forked from lavacord/discord.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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/discord.js",
"version": "0.0.7",
"description": "A simple to use lavalink wrapper for the discord.js 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lavacord/discord.js.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/discord.js/issues"
},
"homepage": "https://github.com/MrJacz/discord.js#readme",
"dependencies": {
"lavacord": "1.1.9"
},
"devDependencies": {
"@types/node": "^14.17.34",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"discord.js": "^12.5.3",
"eslint": "^7.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"typescript": "^3.9.10"
},
"peerDependencies": {
"discord.js": "^12.2.0"
},
"files": [
"dist",
"LICENCE"
],
"engines": {
"node": ">=10",
"npm": ">=5"
}
}