-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.09 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.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
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
{
"name": "solomesh",
"version": "1.0.0",
"description": "Personal Claude assistant. Lightweight, secure, customizable.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"reset:admin": "tsx src/reset-admin.ts",
"deps:install": "npm --prefix container/agent-runner install && npm --prefix web install",
"deps:build": "npm --prefix container/agent-runner run build && npm --prefix web run build",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"dev:all": "npx concurrently --timestamp-format \"yyyy-MM-dd HH:mm:ss.SSS\" -n backend,frontend -c blue,green \"npm run dev\" \"npm run dev:web\"",
"dev:web": "cd web && npm run dev",
"build:web": "cd web && npm run build",
"build:all": "npm run build && npm run build:web"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.59",
"@hono/node-server": "^1.19.9",
"@larksuiteoapi/node-sdk": "^1.58.0",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^11.8.1",
"cron-parser": "^5.5.0",
"grammy": "^1.40.0",
"hono": "^4.11.9",
"node-pty": "^1.1.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"proxy-agent": "^6.5.0",
"ws": "^8.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.0",
"@types/ws": "^8.18.1",
"concurrently": "^9.2.1",
"prettier": "^3.8.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kexuejin/solomesh.git"
},
"homepage": "https://github.com/kexuejin/solomesh#readme",
"bugs": {
"url": "https://github.com/kexuejin/solomesh/issues"
},
"author": "kexuejin",
"keywords": [
"claude",
"claude-code",
"ai-agent",
"self-hosted",
"feishu",
"lark",
"telegram",
"chatbot",
"docker",
"mcp"
]
}