-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "4shclaw",
"version": "0.1.0",
"description": "Personal 24/7 AI assistant with specialized agent teams",
"license": "AGPL-3.0-or-later",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"watch": "tsx watch src/dashboard/dev.ts",
"logs": "bash scripts/logs.sh",
"clean:sessions": "tsx src/clean-sessions.ts"
},
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "0.78.0",
"@huggingface/transformers": "3.8.1",
"better-sqlite3": "12.6.2",
"cron-parser": "5.5.0",
"dotenv": "17.3.1",
"fastify": "5.7.4",
"grammy": "1.40.1",
"js-yaml": "4.1.1",
"pino": "10.3.1",
"zod": "4.3.6"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "1.27.1",
"@types/better-sqlite3": "7.6.13",
"@types/js-yaml": "4.0.9",
"@types/node": "24.10.15",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.0.18"
}
}