forked from MenuDocs/erela.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.9 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
68
69
70
71
72
73
74
{
"name": "erela.js",
"version": "2.3.3",
"description": "An easy-to-use Lavalink client for NodeJS.",
"main": "dist/index.js",
"types": "typings/index.d.ts",
"files": [
"dist",
"typings"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts ./src",
"types": "dts-bundle --removeSource --name erela.js --main ./dist --out ../typings/index.d.ts --baseDir ./dist",
"docs": "typedoc --json ./docs.json --mode file --excludeProtected --excludePrivate --excludeExternals src/structures",
"publish:stable": "yarn build && yarn types && yarn publish --access=public",
"publish:beta": "yarn build && yarn types && yarn publish --tag beta --access=public"
},
"keywords": [
"lavalink",
"discord",
"music",
"bot",
"discord.js",
"eris"
],
"author": "MenuDocs (https://github.com/MenuDocs)",
"contributors": [
"Solaris9",
"Anish-Shobith",
"ayntee"
],
"license": "Apache-2.0",
"repository": "MenuDocs/erela.js",
"bugs": "https://github.com/MenuDocs/erela.js",
"devDependencies": {
"@types/node": "^14.6.0",
"@types/ws": "^6.0.4",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"dts-bundle": "^0.7.3",
"eslint": "^7.7.0",
"tslint": "^5.20.1",
"typedoc": "^0.19.2",
"typedoc-plugin-no-inherit": "^1.2.0",
"typescript": "^3.9.7"
},
"dependencies": {
"@discordjs/collection": "^0.1.6",
"petitio": "^1.1.0",
"ws": "^7.3.1"
},
"engines": {
"node": ">=14.0.0"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"object-curly-spacing": [
"error",
"always"
]
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
]
},
"homepage": "https://github.com/MenuDocs/erela.js#readme"
}