forked from davidffa/Vulkava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.09 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
{
"name": "vulkava",
"version": "1.5.9",
"description": "A lavalink wrapper in Node.JS",
"main": "./index.js",
"types": "./index.d.ts",
"author": "David Amorim",
"scripts": {
"build": "tsc",
"lint": "eslint lib *.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidffa/Vulkava.git"
},
"homepage": "https://vulkava.js.org",
"license": "MIT",
"dependencies": {
"undici": "^5.10.0",
"ws": "^8.8.1"
},
"devDependencies": {
"@swc/core": "^1.3.1",
"@swc/jest": "^0.2.22",
"@types/jest": "^29.0.2",
"@types/node": "^18.7.18",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"bugs": {
"url": "https://github.com/davidffa/Vulkava/issues"
},
"engines": {
"node": ">=14.x.x"
},
"keywords": [
"lavalink",
"lavalink-wrapper",
"discord-music",
"discord",
"discord-bot",
"bot",
"music-bot"
]
}