-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 905 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 905 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
32
33
34
{
"name": "@dextel2/telegram-ai-bot",
"version": "1.0.0",
"description": "A Telegram bot powered by AI using Llama models.",
"main": "index.ts",
"scripts": {
"start": "npm run build && node dist/index.js",
"dev": "npx ts-node-dev src/index.ts",
"build": "rimraf ./dist && tsc",
"lint": "eslint . --ext .ts",
"docker:build": "docker build -t telegram-ai-bot .",
"docker:run": "docker-compose up -d",
"docker:stop": "docker-compose down",
"docker:logs": "docker-compose logs -f"
},
"dependencies": {
"@sentry/node": "^9.8.0",
"axios": "^1.8.4",
"dotenv": "^16.0.3",
"grammy": "^1.19.0",
"together-ai": "^0.13.0",
"winston": "^3.17.0"
},
"devDependencies": {
"rimraf": "^6.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT"
}