forked from earlyaidopters/claudeclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.55 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
83
84
{
"name": "claudeclaw",
"version": "1.1.0",
"description": "Your personal local agent provider, delivered to your phone via Telegram",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"dev:web": "vite",
"build": "vite build && tsc",
"build:web": "vite build",
"build:server": "tsc",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "playwright test",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"migrate": "tsx scripts/migrate.ts",
"setup": "tsx scripts/setup.ts",
"provider:setup": "tsx scripts/provider-setup.ts",
"dashboard:open": "tsx scripts/open-dashboard.ts",
"status": "tsx scripts/status.ts",
"agent:create": "bash scripts/agent-create.sh",
"agent:start": "node dist/index.js --agent",
"uninstall": "bash scripts/uninstall.sh",
"build:warroom-client": "esbuild warroom/client.js --bundle --outfile=warroom/client.bundle.js --format=iife --global-name=PipecatWarRoom"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.21.0",
"@anthropic-ai/claude-agent-sdk": "^0.3.159",
"@google/genai": "^1.44.0",
"@hono/node-server": "^1.19.9",
"@monaco-editor/react": "^4.7.0",
"@slack/web-api": "^7.14.1",
"@types/three": "^0.184.0",
"@zed-industries/codex-acp": "^0.14.0",
"better-sqlite3": "^11.8.1",
"cron-parser": "^5.5.0",
"grammy": "^1.34.0",
"hono": "^4.12.3",
"js-yaml": "^4.1.1",
"monaco-editor": "^0.55.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"qrcode-terminal": "^0.12.0",
"three": "^0.184.0",
"whatsapp-web.js": "^1.34.6"
},
"devDependencies": {
"@pipecat-ai/client-js": "^1.7.0",
"@pipecat-ai/websocket-transport": "^1.6.2",
"@playwright/test": "^1.59.1",
"@preact/preset-vite": "^2.10.5",
"@preact/signals": "^2.9.0",
"@tailwindcss/vite": "^4.2.4",
"@types/better-sqlite3": "^7.6.12",
"@types/dompurify": "^3.0.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.0",
"@types/qrcode-terminal": "^0.12.2",
"@vitest/coverage-v8": "^2.0.0",
"dompurify": "^3.4.1",
"esbuild": "^0.28.0",
"lucide-preact": "^1.14.0",
"marked": "^18.0.2",
"preact": "^10.29.1",
"tailwindcss": "^4.2.4",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vite": "^5.4.21",
"vitest": "^2.0.0",
"wouter-preact": "^3.9.0"
},
"engines": {
"node": ">=20"
},
"vitest": {
"environment": "node",
"include": [
"src/**/*.test.ts"
]
}
}