-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
79 lines (79 loc) · 2.36 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
72
73
74
75
76
77
78
79
{
"name": "lavalink-client",
"version": "2.4.1",
"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 tool:clean && npm run build:all && npm run tool:fixbuild",
"build:bun": "bun run tool:clean && bun run build:all:bun && bun run tool:fixbuild",
"build:all:bun": "bun run build:cjs && bun run build:esm && bun run build:types",
"build:all": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc -p tools/config/tsconfig.cjs.json && tsc-alias -p tools/config/tsconfig.cjs.json",
"build:esm": "tsc -p tools/config/tsconfig.esm.json && tsc-alias -p tools/config/tsconfig.esm.json",
"build:types": "tsc -p tools/config/tsconfig.types.json && tsc-alias -p tools/config/tsconfig.types.json",
"tool:clean": "node tools/cleanup.js",
"tool:fixbuild": "node tools/fixup.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "node -v",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.js",
"default": "./dist/cjs/index.js"
},
"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://tomato6966.github.io/lavalink-client/",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.0",
"@types/node": "^22.5.5",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^9.11.0",
"tsc-alias": "^1.8.10",
"typescript": "^5.6.2"
},
"dependencies": {
"tslib": "^2.7.0",
"ws": "^8.18.0"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
}
}