-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.45 KB
/
package.json
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
35
36
37
38
39
40
41
42
43
44
{
"name": "okos-telegram",
"version": "1.0.0",
"description": "Okos - AI Assistant Telegram Bot using LangGraph and Ollama or Cloud LLM Providers",
"author": {
"name": "Johnny Bui",
"url": "https://github.com/johnnybui"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build:ollama": "docker compose -f ./docker-compose-ollama.yml build",
"build:cloud": "docker compose -f ./docker-compose-cloud.yml build",
"up:ollama": "docker compose -f ./docker-compose-ollama.yml up -d",
"up:cloud": "docker compose -f ./docker-compose-cloud.yml up -d",
"down:ollama": "docker compose -f ./docker-compose-ollama.yml down",
"down:cloud": "docker compose -f ./docker-compose-cloud.yml down"
},
"dependencies": {
"@langchain/community": "^0.3.18",
"@langchain/core": "^0.3.23",
"@langchain/google-genai": "^0.1.5",
"@langchain/groq": "^0.1.2",
"@langchain/langgraph": "^0.2.33",
"@langchain/ollama": "^0.1.3",
"@langchain/openai": "^0.3.14",
"axios": "^1.7.9",
"dotenv": "^16.3.1",
"duck-duck-scrape": "^2.2.6",
"express": "^4.21.2",
"groq-sdk": "^0.9.1",
"ioredis": "^5.3.2",
"node-telegram-bot-api": "^0.64.0",
"typescript": "^5.7.2"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@types/node-telegram-bot-api": "^0.64.1",
"tsx": "^4.19.2"
}
}