lavalink-client 2.8.0 → 2.9.1

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.
Files changed (6) hide show
  1. package/README.md +726 -518
  2. package/dist/index.d.mts +2427 -1893
  3. package/dist/index.d.ts +2427 -1893
  4. package/dist/index.js +1776 -566
  5. package/dist/index.mjs +1773 -566
  6. package/package.json +79 -81
package/package.json CHANGED
@@ -1,81 +1,79 @@
1
- {
2
- "name": "lavalink-client",
3
- "version": "2.8.0",
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
- ]
80
- }
81
- }
1
+ {
2
+ "name": "lavalink-client",
3
+ "version": "2.9.1",
4
+ "description": "Easy, flexible and feature-rich lavalink@v4 Client. Both for Beginners and Proficients. - Supports NodeLink@v3 too.",
5
+ "keywords": [
6
+ "advanced",
7
+ "bot",
8
+ "client",
9
+ "discord",
10
+ "lavalink",
11
+ "lavalink-v4",
12
+ "music",
13
+ "typescript"
14
+ ],
15
+ "homepage": "https://tomato6966.github.io/lavalink-client/",
16
+ "bugs": {
17
+ "url": "https://github.com/tomato6966/lavalink-client/issues"
18
+ },
19
+ "license": "MIT",
20
+ "author": {
21
+ "name": "Tomato6966",
22
+ "url": "https://github.com/tomato6966/"
23
+ },
24
+ "contributors": [],
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/tomato6966/lavalink-client.git"
28
+ },
29
+ "directories": {
30
+ "lib": "src"
31
+ },
32
+ "files": [
33
+ "dist"
34
+ ],
35
+ "main": "./dist/index.js",
36
+ "module": "./dist/index.mjs",
37
+ "types": "./dist/index.d.ts",
38
+ "exports": {
39
+ ".": {
40
+ "types": "./dist/index.d.ts",
41
+ "require": "./dist/index.js",
42
+ "import": "./dist/index.mjs",
43
+ "default": "./dist/index.js"
44
+ }
45
+ },
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
49
+ "scripts": {
50
+ "build": "tsup",
51
+ "lint": "oxlint .",
52
+ "lint:fix": "npm run lint -- --fix",
53
+ "fmt": "oxfmt .",
54
+ "test": "node -v",
55
+ "prepublishOnly": "npm run fmt && npm run build",
56
+ "prepare": "npm run fmt && npm run build"
57
+ },
58
+ "dependencies": {
59
+ "tslib": "^2.8.1",
60
+ "ws": "^8.18.3"
61
+ },
62
+ "devDependencies": {
63
+ "@types/node": "^24.10.1",
64
+ "@types/ws": "^8.18.1",
65
+ "oxfmt": "^0.28.0",
66
+ "oxlint": "^1.43.0",
67
+ "tsup": "^8.5.1",
68
+ "typescript": "^5.9.3"
69
+ },
70
+ "engines": {
71
+ "bun": ">=1.1.27",
72
+ "node": ">=18.0.0"
73
+ },
74
+ "pnpm": {
75
+ "onlyBuiltDependencies": [
76
+ "esbuild"
77
+ ]
78
+ }
79
+ }