-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"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"
},
"author": "Swotch9399",
"devDependencies": {
"@types/node": "^16.6.1",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"dts-bundle": "^0.7.3",
"eslint": "^7.7.0",
"typedoc": "^0.21.5",
"typedoc-plugin-no-inherit": "^1.2.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@discordjs/collection": "^1.1.0",
"undici": "^5.10.0",
"ws": "^8.1.0"
},
"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"
]
}
}