-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "cursor-telegram-bot",
"version": "1.1.0",
"description": "Telegram bot for managing Cursor AI background composers",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc && node dist/index.js",
"dev:watch": "tsc --watch",
"start": "node dist/index.js",
"start:30s": "tsc && node dist/bot-run-30s.js",
"smoke": "tsc && node dist/smoke.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"cursor",
"ai",
"telegram",
"bot",
"background-composer"
],
"author": "Hormold (Nikita Podelenko)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.19.7",
"jest": "^30.1.3",
"ts-jest": "^29.4.1",
"typescript": "^5.8.3"
},
"dependencies": {
"@ai-sdk/google": "^1.2.22",
"@ai-sdk/openai": "^1.3.23",
"@openrouter/ai-sdk-provider": "0.7.2",
"@types/better-sqlite3": "^7.6.13",
"ai": "4.3.17",
"better-sqlite3": "^12.2.0",
"dotenv": "^16.6.1",
"grammy": "^1.37.0",
"node-fetch": "^3.3.2",
"openai": "^4.104.0",
"sharp": "^0.33.5",
"zod": "^3.25.76"
}
}