-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 743 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 743 Bytes
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
{
"name": "tg-translator-azure",
"version": "1.0.0",
"description": "A Telegram bot that translates text using Azure AI Translator API and tracks usage statistics.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "npx nodemon index.js",
"prod": "pm2 start index.js --name tg-translator-azure"
},
"repository": {
"type": "git",
"url": "https://github.com/mezbaulanam/tg-translator-azure.git"
},
"keywords": [
"telegram",
"bot",
"translator",
"azure",
"ai",
"translation"
],
"author": "Mezbaul Anam",
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"mongoose": "^8.7.1",
"node-telegram-bot-api": "^0.66.0"
}
}