-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
{
"name": "lavacoffee",
"version": "1.6.0",
"description": "A fast and rich-featured lavalink wrapper",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "index.d.ts",
"scripts": {
"esm": "gen-esm-wrapper . dist/index.mjs",
"dts": "dts-bundle --name \"lavacoffee\" --main dist --out index.d.ts",
"docs": "typedoc src/index.ts --excludePrivate --excludeInternal --excludeExternals",
"test": "tsc -p test.tsconfig.json && cpy package.json test/compiled && node test/compiled/test/index",
"build": "tsc && npm run dts && del-cli -f \"dist/**/*.d.ts\" && npm run esm"
},
"keywords": [
"bot",
"music",
"lavalink",
"api",
"voice",
"discord",
"lavalink.js",
"discord.js",
"eris",
"lavalink-api",
"lavalink-wrapper",
"lavalink-client"
],
"author": "Azusfin",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^16.7.2",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"@zhycorp/eslint-config": "^3.1.0",
"cpy-cli": "^3.1.1",
"debug": "^4.3.2",
"del-cli": "^4.0.1",
"discord.js": "^13.2.0",
"dts-bundle": "^0.7.3",
"eslint": "^7.32.0",
"gen-esm-wrapper": "^1.1.3",
"ms": "^2.1.3",
"typedoc": "^0.22.7",
"typescript": "^4.3.5"
},
"dependencies": {
"tiny-typed-emitter": "^2.1.0",
"undici": "^4.12.1",
"ws": "^8.4.0"
},
"files": [
"LICENSE",
"dist",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/Azusfin/lavacoffee"
},
"bugs": {
"url": "https://github.com/Azusfin/lavacoffee/issues"
},
"homepage": "https://azusfin.github.io/lavacoffee"
}