-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 897 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 897 Bytes
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
{
"name": "ebikoplayer",
"version": "0.0.1",
"description": "Discord Bot to stream audio from local source or input stream to voice chat. ",
"main": "index.js",
"scripts": {
"deploy-commands": "bun run ./deploy-commands.ts",
"prestart": "bun run deploy-commands",
"start": "dotenvx run --env-file=.env.local -- tsx ./index.ts",
"predev": "bun run deploy-commands",
"dev": "tsx ./index.ts",
"prod": "tsx ./index.ts"
},
"author": "Bastian Ebiko Jesuiter",
"license": "ISC",
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.1",
"@dotenvx/dotenvx": "^0.32.0",
"@types/express": "^4.17.21",
"baojs": "^0.2.1",
"discord.js": "^14.14.1",
"express": "^4.19.2",
"libsodium-wrappers": "^0.7.13",
"node-microphone": "^0.1.6",
"tsx": "^4.7.2"
},
"devDependencies": {
"prettier": "^3.2.5"
}
}