forked from shipgirlproject/Shoukaku
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.37 KB
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": "shoukaku",
"version": "3.0.5",
"description": "A stable and updated wrapper around Lavalink",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsc && npm run build:esm && npm run build:docs",
"build:esm": "gen-esm-wrapper dist/index.js dist/index.mjs",
"build:docs": "typedoc --theme default --readme README.md --out docs/ --entryPointStrategy expand src/.",
"prepare": "tsc"
},
"keywords": [
"bot",
"music",
"lavalink",
"api",
"discord",
"lavalink.js",
"discord.js",
"lavalink-api",
"weeb-library"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"author": "Saya",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Deivu/Shoukaku"
},
"dependencies": {
"abort-controller": "^3.0.0",
"petitio": "^1.4.0",
"ws": "^8.6.0"
},
"devDependencies": {
"@augu/eslint-config": "^2.2.0",
"@types/node": "^17.0.35",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.16.0",
"gen-esm-wrapper": "^1.1.3",
"ts-node": "^10.8.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
}
}