-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "poc-cousinear",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"description": "A proof-of-concept of a Discord bot able to connect into a voice channel, strip down each voice data, and run through a speech-to-text converter.",
"repository": "https://github.com/Pantotone/poc-cousinear",
"author": "Pantotone",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup src",
"start": "node dist/index.js"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.0",
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2.1.24",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "*"
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.1",
"axios": "^1.6.5",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"http": "^0.0.1-security",
"libsodium-wrappers": "^0.7.13",
"microsoft-cognitiveservices-speech-sdk": "^1.34.0",
"prism-media": "^1.3.5",
"socket.io": "^4.7.4"
}
}