diff --git a/services/transcriber/package.json b/services/transcriber/package.json new file mode 100644 index 0000000..1075df2 --- /dev/null +++ b/services/transcriber/package.json @@ -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" +}