-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.27 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
{
"name": "ttsbot",
"version": "1.0.3",
"description": "Discord text-to-speech bot using OpenAI TTS",
"main": "ttsbot.mjs",
"scripts": {
"start": "node --no-deprecation ttsbot.mjs",
"test": "npx --node-options=\"--experimental-vm-modules --no-warnings\" jest --detectOpenHandles --silent --coverage",
"lint": "npx oxlint .",
"test:gaps": "npm test 2>&1 | grep '|' | grep -vF '| 100 | 100 | 100 | 100 |'",
"smoke:docker": "node scripts/docker-health-smoke.mjs"
},
"keywords": [
"discord",
"text-to-speech",
"openai",
"tts"
],
"author": "Eliware",
"license": "ISC",
"dependencies": {
"@discordjs/opus": "^0.10.0",
"@discordjs/voice": "^0.19.2",
"@eliware/common": "^1.1.7",
"@eliware/discord": "^1.1.4",
"@eliware/openai": "^1.1.11",
"@eliware/resampler": "^1.1.3",
"discord.js": "^14.27.0",
"dotenv": "^17.4.2",
"openai": "^7.4.0",
"prism-media": "^1.3.5"
},
"devDependencies": {
"jest": "^30.4.2",
"oxlint": "^1.77.0"
},
"allowScripts": {
"@discordjs/opus@0.10.0": true
},
"type": "module",
"engines": {
"node": ">=26.0.0"
}
}