-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "orfeu",
"version": "0.0.1",
"description": "A discord music bot made from the house of Hades",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node --experimental-specifier-resolution=node ./build/index.js",
"watch": "nodemon --experimental-specifier-resolution=node ./build/index.js",
"dev": "tsc-watch --onSuccess \"node ./build/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leviosar/orfeu.git"
},
"keywords": [
"discord",
"bot",
"music",
"ffmpeg"
],
"type": "module",
"author": "leviosar",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Leviosar/orfeu/issues"
},
"homepage": "https://github.com/Leviosar/orfeu#readme",
"dependencies": {
"@discordjs/opus": "^0.6.0",
"@discordjs/voice": "^0.6.0",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"ffmpeg-static": "^4.4.0",
"libsodium-wrappers": "^0.7.9",
"winston": "^3.3.3",
"ytdl-core": "^4.9.2",
"ytpl": "^2.2.3",
"ytsr": "^3.5.3"
},
"devDependencies": {
"@types/node": "^16.10.1",
"nodemon": "^2.0.13",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.3"
}
}