This repository has been archived by the owner on Nov 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
86 lines (86 loc) · 2.12 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "erela.js",
"version": "2.4.0",
"description": "An easy-to-use Lavalink client for NodeJS.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [ "dist" ],
"scripts": {
"build": "tsc",
"types": "rtb --dist dist",
"lint": "eslint --ext .ts ./src",
"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",
"ci": "run-s lint build types"
},
"keywords": [
"lavalink",
"discord",
"music",
"bot",
"discord.js",
"eris"
],
"author": "MenuDocs (https://github.com/MenuDocs)",
"contributors": [
{
"name": "Solaris9",
"url": "https://mhargreaves.site"
},
{
"name": "Anish-Shobith",
"url": "https://anishshobithps.tech"
},
{
"name": "melike2d",
"email": "hi@2d.gay",
"url": "https://2d.gay"
},
{
"name": "ayntee"
}
],
"license": "Apache-2.0",
"repository": "MenuDocs/erela.js",
"bugs": "https://github.com/MenuDocs/erela.js",
"devDependencies": {
"@favware/rollup-type-bundler": "^1.0.11",
"@types/node": "v16",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"npm-run-all": "^4.1.5",
"typedoc": "^0.23.14",
"typedoc-plugin-no-inherit": "^1.4.0",
"typescript": "^4.8.3"
},
"dependencies": {
"@discordjs/collection": "^1.1.0",
"tslib": "^2.4.0",
"undici": "^5.10.0",
"ws": "^8.8.1"
},
"engines": {
"node": ">=16.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"
}