Add Transcriber service package.json

This commit is contained in:
2025-07-14 10:33:36 -05:00
parent c5de3e98c0
commit 60daa2e316

View File

@ -0,0 +1,31 @@
{
"name": "discord-voice-transcriber",
"version": "2.0.0",
"description": "Workflow orchestrator and Discord message formatter for voice translations",
"main": "src/orchestrator.js",
"scripts": {
"start": "node src/orchestrator.js",
"dev": "nodemon src/orchestrator.js",
"test": "jest",
"healthcheck": "node src/healthcheck.js"
},
"dependencies": {
"discord.js": "^14.14.1",
"pg": "^8.11.3",
"redis": "^4.6.10",
"winston": "^3.11.0",
"dotenv": "^16.3.1",
"axios": "^1.6.2",
"moment": "^2.29.4",
"lodash": "^4.17.21"
},
"devDependencies": {
"nodemon": "^3.0.2",
"jest": "^29.7.0"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Discord Voice Translator",
"license": "MIT"
}