-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.54 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "telegram-gpt-bot",
"version": "2.0.0",
"description": "Telegram bot powered by various large language models.",
"main": "src/hennos.js",
"scripts": {
"clean": "rimraf ./build",
"build": "npm-run-all clean prisma:generate lint tsc:emit",
"validate": "npm-run-all lint tsc:noemit",
"tsc:emit": "tsc",
"tsc:noemit": "tsc --noEmit",
"tsc:noemit:watch": "tsc --noEmit --watch",
"lint": "eslint --fix .",
"start": "npm run migrate:deploy && node build/hennos.js",
"start:cli": "node build/client/cli.js",
"script:email": "npm run build && node build/scripts/email.js",
"script:bsky": "npm run build && node build/scripts/bsky.js",
"script:token": "npm run build && node build/scripts/token.js",
"migrate:deploy": "prisma migrate deploy",
"migrate:reset": "prisma migrate reset",
"migrate:new": "prisma migrate dev --create-only",
"prisma:generate": "prisma generate",
"dev": "npm-run-all build start",
"test": "vitest run"
},
"author": "Mark Repka",
"license": "MIT",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@a2a-js/sdk": "^0.3.13",
"@anthropic-ai/sdk": "^0.106.0",
"@google/genai": "^2.10.0",
"@llamaindex/ollama": "^0.1.24",
"@llamaindex/openai": "^0.4.23",
"@llamaindex/readers": "^3.1.22",
"@modelcontextprotocol/sdk": "^1.29.0",
"@mozilla/readability": "^0.6.0",
"@prisma/client": "^6",
"@supabase/supabase-js": "^2.108.2",
"@temporalio/client": "^1.18.1",
"@temporalio/worker": "^1.18.1",
"@temporalio/workflow": "^1.18.1",
"@wise-old-man/utils": "^4.0.15",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"google-auth-library": "^10.9.0",
"googleapis": "^173.0.0",
"jsdom": "^29.1.1",
"llamaindex": "^0.12.1",
"mime-types": "^3.0.2",
"node-telegram-bot-api": "^1.1.2",
"ollama": "^0.6.3",
"openai": "^6.45.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"puppeteer": "^25.2.1",
"sqlite3": "^6.0.1",
"tiktoken": "^1.0.22",
"ws": "^8.21.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@temporalio/testing": "^1.18.1",
"@types/express": "^5.0.6",
"@types/jsdom": "^28.0.3",
"@types/mime-types": "^3.0.1",
"@types/node": "^24",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"eslint": "^8",
"nodemon": "^3.1.14",
"npm-run-all": "^4.1.5",
"prisma": "^6",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.1.9"
}
}