forked from Tomato6966/lavalink-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.74 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
{
"name": "lavalink-client",
"version": "2.3.3",
"description": "Easy, flexible and feature-rich lavalink@v4 Client. Both for Beginners and Proficients.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.js",
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"clean": "node tools/cleanup",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "node -v",
"docs": "npx typedoc"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tomato6966/lavalink-client.git"
},
"keywords": [
"lavalink",
"client",
"lavalink-v4",
"music",
"discord",
"bot",
"advanced",
"typescript"
],
"author": {
"name": "Tomato6966",
"url": "https://github.com/tomato6966/"
},
"contributers": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/tomato6966/lavalink-client/issues"
},
"homepage": "https://lc4.gitbook.io/lavalink-client/",
"devDependencies": {
"@types/node": "^20.4.8",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"ts-loader": "^9.4.4",
"typedoc": "^0.25.4",
"typedoc-theme-hierarchy": "^4.1.2",
"typescript": "^5.1.6"
},
"dependencies": {
"tslib": "^2.6.1",
"ws": "^8.13.0"
},
"engines": {
"node": ">=18.0.0"
}
}