-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 KB
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
{
"name": "jukebot",
"description": "Simple Discord music bot.",
"main": "dist/app.js",
"version": "0.0.1",
"private": true,
"license": "",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/Desocode/jukebot.git"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "mocha --exit test/*.test.js",
"build": "tsc",
"start": "tsc -w --preserveWatchOutput",
"deploy": "gcloud app deploy",
"create-env": "printenv > .env"
},
"dependencies": {
"@discordjs/uws": "^10.149.0",
"@google-cloud/storage": "^4.1.3",
"bufferutil": "^4.0.1",
"discord.js": "^11.5.1",
"dotenv": "^8.2.0",
"erlpack": "github:discordapp/erlpack",
"express": "^4.17.1",
"ffbinaries": "^1.1.4",
"ffmpeg": "0.0.4",
"ffmpeg-static": "^4.0.1",
"libsodium-wrappers": "^0.7.6",
"node-opus": "^0.2.9",
"opusscript": "0.0.6",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"youtube-search": "^1.1.4",
"ytdl": "^0.13.1",
"ytdl-core-discord": "github:amishshah/ytdl-core-discord"
},
"devDependencies": {
"@types/express": "^4.17.1",
"mocha": "^6.1.4",
"supertest": "^4.0.2"
}
}