-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "lavalink",
"version": "2.13.0",
"description": "A Lavalink client for JavaScript.",
"main": "dist/src/index.js",
"types": "typings/src/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "pnpm prepare && env-cmd .env node --trace-warnings dist/test/index.js",
"start:cluster": "pnpm prepare && env-cmd .env node --trace-warnings dist/test/cluster.js",
"prepare": "rimraf typings dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lavalibs/lavalink.js.git"
},
"author": "Will Nelson <[email protected]>",
"maintainers": [
"DevYukine <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lavalibs/lavalink.js/issues"
},
"homepage": "https://github.com/lavalibs/lavalink.js#readme",
"devDependencies": {
"@spectacles/gateway": "^0.10.0",
"@spectacles/types": "^0.2.1",
"@types/backoff": "^2.5.1",
"@types/ws": "^6.0.4",
"env-cmd": "^10.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.1.2"
},
"dependencies": {
"backoff": "^2.5.0",
"ws": "^7.4.0"
}
}