-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1002 Bytes
/
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": "@fortune-inc/lavaclient-queue",
"version": "1.0.3",
"description": "A lavaclient plugin that adds queue functionality",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"tsc": "tsc -p tsconfig.json",
"prepack": "npm run tsc",
"prepare": "npm run tsc",
"build": "npm run tsc",
"prepublishOnly": "npm run tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lavaclient/plugins.git"
},
"keywords": [
"lavaclient",
"lavalink"
],
"author": "MeLike2D",
"license": "MIT",
"bugs": {
"url": "https://github.com/lavaclient/plugins/issues"
},
"homepage": "https://lavaclient.js.org/",
"devDependencies": {
"@fortune-inc/lavaclient": "git+https://github.com/Fortune-Inc/Fortune-lavaclient.git",
"@types/node": "^14.0.24",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"rimraf": "^3.0.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@lavalink/encoding": "^0.1.1"
}
}