lavalink-client 2.7.4 → 2.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +78 -26
- package/dist/index.d.ts +78 -26
- package/dist/index.js +532 -559
- package/dist/index.mjs +532 -559
- package/package.json +78 -78
package/package.json
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
2
|
+
"name": "lavalink-client",
|
|
3
|
+
"version": "2.7.5",
|
|
4
|
+
"description": "Easy, flexible and feature-rich lavalink@v4 Client. Both for Beginners and Proficients.",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"require": "./dist/index.js",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "tsup",
|
|
18
|
+
"lint": "eslint .",
|
|
19
|
+
"lint:fix": "npm run lint -- --fix",
|
|
20
|
+
"test": "node -v",
|
|
21
|
+
"prepublishOnly": "npm run build",
|
|
22
|
+
"prepare": "npm run build"
|
|
23
|
+
},
|
|
24
|
+
"directories": {
|
|
25
|
+
"lib": "src"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist"
|
|
32
|
+
],
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "git+https://github.com/tomato6966/lavalink-client.git"
|
|
36
|
+
},
|
|
37
|
+
"keywords": [
|
|
38
|
+
"lavalink",
|
|
39
|
+
"client",
|
|
40
|
+
"lavalink-v4",
|
|
41
|
+
"music",
|
|
42
|
+
"discord",
|
|
43
|
+
"bot",
|
|
44
|
+
"advanced",
|
|
45
|
+
"typescript"
|
|
46
|
+
],
|
|
47
|
+
"author": {
|
|
48
|
+
"name": "Tomato6966",
|
|
49
|
+
"url": "https://github.com/tomato6966/"
|
|
50
|
+
},
|
|
51
|
+
"contributors": [],
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"bugs": {
|
|
54
|
+
"url": "https://github.com/tomato6966/lavalink-client/issues"
|
|
55
|
+
},
|
|
56
|
+
"homepage": "https://tomato6966.github.io/lavalink-client/",
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@eslint/eslintrc": "^3.3.3",
|
|
59
|
+
"@eslint/js": "^9.39.1",
|
|
60
|
+
"@types/node": "^24.10.1",
|
|
61
|
+
"@types/ws": "^8.18.1",
|
|
62
|
+
"@typescript-eslint/eslint-plugin": "^8.48.0",
|
|
63
|
+
"@typescript-eslint/parser": "^8.48.0",
|
|
64
|
+
"eslint": "^9.39.1",
|
|
65
|
+
"tsup": "^8.5.1",
|
|
66
|
+
"typescript": "^5.9.3"
|
|
67
|
+
},
|
|
68
|
+
"dependencies": {
|
|
69
|
+
"tslib": "^2.8.1",
|
|
70
|
+
"ws": "^8.18.3"
|
|
71
|
+
},
|
|
72
|
+
"engines": {
|
|
73
|
+
"node": ">=18.0.0",
|
|
74
|
+
"bun": ">=1.1.27"
|
|
75
|
+
},
|
|
76
|
+
"pnpm": {
|
|
77
|
+
"onlyBuiltDependencies": [
|
|
78
|
+
"esbuild"
|
|
79
|
+
]
|
|
14
80
|
}
|
|
15
|
-
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build": "tsup",
|
|
18
|
-
"lint": "eslint .",
|
|
19
|
-
"lint:fix": "npm run lint -- --fix",
|
|
20
|
-
"test": "node -v",
|
|
21
|
-
"prepublishOnly": "npm run build",
|
|
22
|
-
"prepare": "npm run build"
|
|
23
|
-
},
|
|
24
|
-
"directories": {
|
|
25
|
-
"lib": "src"
|
|
26
|
-
},
|
|
27
|
-
"publishConfig": {
|
|
28
|
-
"access": "public"
|
|
29
|
-
},
|
|
30
|
-
"files": [
|
|
31
|
-
"dist"
|
|
32
|
-
],
|
|
33
|
-
"repository": {
|
|
34
|
-
"type": "git",
|
|
35
|
-
"url": "git+https://github.com/tomato6966/lavalink-client.git"
|
|
36
|
-
},
|
|
37
|
-
"keywords": [
|
|
38
|
-
"lavalink",
|
|
39
|
-
"client",
|
|
40
|
-
"lavalink-v4",
|
|
41
|
-
"music",
|
|
42
|
-
"discord",
|
|
43
|
-
"bot",
|
|
44
|
-
"advanced",
|
|
45
|
-
"typescript"
|
|
46
|
-
],
|
|
47
|
-
"author": {
|
|
48
|
-
"name": "Tomato6966",
|
|
49
|
-
"url": "https://github.com/tomato6966/"
|
|
50
|
-
},
|
|
51
|
-
"contributors": [],
|
|
52
|
-
"license": "MIT",
|
|
53
|
-
"bugs": {
|
|
54
|
-
"url": "https://github.com/tomato6966/lavalink-client/issues"
|
|
55
|
-
},
|
|
56
|
-
"homepage": "https://tomato6966.github.io/lavalink-client/",
|
|
57
|
-
"devDependencies": {
|
|
58
|
-
"@eslint/eslintrc": "^3.3.3",
|
|
59
|
-
"@eslint/js": "^9.39.1",
|
|
60
|
-
"@types/node": "^24.10.1",
|
|
61
|
-
"@types/ws": "^8.18.1",
|
|
62
|
-
"@typescript-eslint/eslint-plugin": "^8.48.0",
|
|
63
|
-
"@typescript-eslint/parser": "^8.48.0",
|
|
64
|
-
"eslint": "^9.39.1",
|
|
65
|
-
"tsup": "^8.5.1",
|
|
66
|
-
"typescript": "^5.9.3"
|
|
67
|
-
},
|
|
68
|
-
"dependencies": {
|
|
69
|
-
"tslib": "^2.8.1",
|
|
70
|
-
"ws": "^8.18.3"
|
|
71
|
-
},
|
|
72
|
-
"engines": {
|
|
73
|
-
"node": ">=18.0.0",
|
|
74
|
-
"bun": ">=1.1.27"
|
|
75
|
-
},
|
|
76
|
-
"pnpm": {
|
|
77
|
-
"onlyBuiltDependencies": [
|
|
78
|
-
"esbuild"
|
|
79
|
-
]
|
|
80
|
-
}
|
|
81
81
|
}
|