This commit removes the Jest unit tests, configuration, and related dependencies that were added for the WhatsApp audio transcription feature. This is done as per your request due to potential issues with the test execution environment. The core functionality for audio transcription remains.
25 lines
552 B
JSON
25 lines
552 B
JSON
{
|
|
"name": "whatsapp-router",
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "nodemon --watch src --ext ts --exec \"ts-node src/index.ts\"",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@google/genai": "^1.4.0",
|
|
"axios": "^1.5.0",
|
|
"dotenv": "^16.5.0",
|
|
"express": "^4.18.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.11.19",
|
|
"nodemon": "^3.1.10",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|