This repository has been archived by the owner on Mar 26, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
{
"name": "discord.js-lavalink",
"version": "3.0.0",
"description": "A discord.js lavalink client",
"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/MrJacz/discord.js-lavalink.git"
},
"keywords": [
"bot",
"music",
"discord",
"api",
"lava",
"link",
"lavalink",
"lavalink.js",
"discord.js"
],
"author": "Jacz",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrJacz/discord.js-lavalink/issues"
},
"homepage": "https://github.com/MrJacz/discord.js-lavalink#readme",
"devDependencies": {
"@types/node": "^13.7.7",
"@types/ws": "^7.2.2",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"discord.js": "^12.0.1",
"eslint": "^6.8.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"typedoc": "^0.16.11",
"typescript": "^3.8.3"
},
"dependencies": {
"ws": "^7.2.1"
},
"peerDependencies": {
"discord.js": "^12.0.1"
},
"files": [
"dist",
"example/example-app.js"
],
"engines": {
"node": ">=10",
"npm": ">=5"
}
}