-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1 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
{
"name": "gremlin",
"version": "1.0.0",
"description": "Telegram bot for Kan task management - chase people about overdue tasks",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"survey": "tsx survey/server.ts"
},
"dependencies": {
"@a2a-js/sdk": "^0.3.13",
"@ai-sdk/anthropic": "^3.0.64",
"@modelcontextprotocol/sdk": "^1.26.0",
"@playwright/mcp": "^0.0.68",
"ai": "^6.0.141",
"better-sqlite3": "^11.3.0",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.42.0",
"grammy": "^1.21.1",
"node-cron": "^3.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.10.0",
"@types/node-cron": "^3.0.11",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^4.0.18"
}
}