-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
58 lines (58 loc) · 1.56 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
{
"name": "kazagumo",
"version": "3.2.1",
"description": "A shoukaku wrapper with built-in queue support.",
"main": "dist/Index.js",
"types": "dist/Index.d.ts",
"homepage": "https://github.com/Takiyo0/Kazagumo",
"readme": "https://github.com/Takiyo0/Kazagumo#readme",
"bugs": {
"url": "https://github.com/Takiyo0/Kazagumo",
"email": "takiyotakahashi@gmail.com"
},
"engines": {
"node": ">=16.5.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:full": "npm run lint && npm run format && npm run build:docs && npm run build",
"build": "tsc",
"format": "prettier --write \"src/**/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"build:docs": "typedoc --readme README.md --out docs/ --entryPointStrategy expand src/."
},
"keywords": [
"lavalink",
"lavalink-client",
"shoukaku",
"kazagumo",
"lavalink-player",
"player",
"discord-player"
],
"author": "Takiyo",
"files": [
"dist/**/**/*"
],
"license": "ISC",
"devDependencies": {
"@types/events": "^3.0.0",
"@types/node": "^18.11.9",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"discord.js": "^14.15.3",
"events": "^3.3.0",
"kazagumo-spotify": "file:../kazagumo-spotify",
"prettier": "^3.1.1",
"rebuild": "^0.1.2",
"reinstall": "^2.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.25.4",
"typescript": "^5.3.3"
},
"dependencies": {
"shoukaku": "^4.1.0"
}
}