forked from lavacord/Lavacord
-
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",
"version": "1.1.8",
"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": {
"node-fetch": "^2.6.0",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/node": "^14.0.14",
"@types/node-fetch": "^2.5.7",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^7.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"typedoc": "^0.17.8",
"typescript": "^3.9.5"
},
"files": [
"dist",
"LICENCE"
],
"engines": {
"node": ">=10",
"npm": ">=5"
}
}