-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.83 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
{
"name": "erela.js",
"version": "2.3.3",
"description": "An easy-to-use Lavalink client for NodeJS.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"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": "Swotch9399",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Swotch9399/erela.js.git"
},
"bugs": "https://github.com/Swotch9399/erela.js",
"devDependencies": {
"@discordjs/collection": "^1.5.1",
"@types/node": "^20.3.3",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"dts-bundle": "^0.7.3",
"eslint": "^8.44.0",
"typedoc": "^0.24.8",
"typedoc-plugin-no-inherit": "^1.4.0",
"typescript": "^5.1.6"
},
"dependencies": {
"tslib": "^2.6.0",
"undici": "^5.22.1",
"ws": "^8.13.0"
},
"engines": {
"node": ">=16.6.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/Swotch9399/erela.js"
}