-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
51 lines (51 loc) · 1.1 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.6.4",
"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": "^6.20.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@swc/core": "^1.7.36",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.13",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"bugs": {
"url": "https://github.com/davidffa/Vulkava/issues"
},
"engines": {
"node": ">=16.x.x"
},
"keywords": [
"lavalink",
"lavalink-wrapper",
"discord-music",
"discord",
"discord-bot",
"bot",
"music-bot"
]
}