-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.24 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.24 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": "klausbot",
"description": "Self-evolving personal assistant via Telegram backed by Claude Code",
"version": "0.1.0",
"bin": {
"klausbot": "./dist/index.js"
},
"dependencies": {
"@grammyjs/auto-chat-action": "0.1.1",
"@grammyjs/auto-retry": "2.0.2",
"@grammyjs/files": "1.2.0",
"@grammyjs/runner": "2.0.3",
"@grammyjs/transformer-throttler": "1.2.1",
"@inquirer/prompts": "8.2.0",
"@modelcontextprotocol/sdk": "1.26.0",
"better-sqlite3": "12.6.2",
"chrono-node": "2.9.0",
"commander": "14.0.3",
"croner": "10.0.1",
"dotenv": "17.2.3",
"drizzle-orm": "0.45.1",
"grammy": "1.39.3",
"markdown-it": "14.1.0",
"openai": "6.17.0",
"picocolors": "1.1.1",
"pino": "10.3.0",
"pino-pretty": "13.1.3",
"sqlite-vec": "0.1.7-alpha.2",
"zod": "4.3.6"
},
"devDependencies": {
"@ai-sdk/anthropic": "3.0.38",
"@types/better-sqlite3": "7.6.13",
"@types/markdown-it": "14.1.2",
"@types/node": "25.2.0",
"@vitest/coverage-v8": "4.0.18",
"ai": "6.0.75",
"drizzle-kit": "0.31.8",
"evalite": "1.0.0-beta.15",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"syncpack": "13.0.4",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"assistant",
"bot",
"claude",
"telegram"
],
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "tsup",
"check": "run-s check:*",
"check:format": "prettier --check .",
"check:lint": "run-s lint:*",
"check:typecheck": "tsc --noEmit",
"dev": "run-s build 'start {@}' --",
"eval": "evalite",
"eval:verify": "node --experimental-strip-types evals/verify-scores.ts",
"eval:watch": "evalite watch",
"format": "run-s format:*",
"format:prettier": "prettier --write .",
"format:syncpack": "syncpack format",
"lint": "run-s lint:*",
"lint:semver": "syncpack lint-semver-ranges",
"lint:syncpack": "syncpack lint",
"start": "node dist/index.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"update": "syncpack update && npm install"
},
"type": "module"
}