-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
56 lines (56 loc) · 1.3 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
{
"name": "shoukaku",
"version": "5.0.0-dev",
"description": "A stable and updated wrapper around Lavalink",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "npm run build:ts && npm run build:docs",
"build:ts": "tsup --config tsup-config.json",
"build:docs": "typedoc --theme default --readme TypeDoc.md --name Shoukaku --out docs/ --entryPointStrategy expand src/.",
"lint": "eslint .",
"prepare": "npm run build:ts"
},
"keywords": [
"bot",
"music",
"lavalink",
"api",
"discord",
"lavalink.js",
"discord.js",
"lavalink-api",
"weeb-library"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
},
"author": "Saya",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shipgirlproject/Shoukaku.git"
},
"dependencies": {
"ws": "^8.18.0"
},
"devDependencies": {
"@shipgirl/eslint-config": "^0.4.0",
"@types/node": "^22.8.2",
"@types/ws": "^8.5.12",
"eslint": "^9.13.0",
"pkg-pr-new": "^0.0.30",
"tsup": "^8.3.5",
"typedoc": "^0.26.10",
"typescript": "^5.6.3"
}
}