forked from raroque/boop-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) 路 1.96 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) 路 1.96 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
{
"name": "boop-agent",
"version": "0.1.0",
"private": true,
"description": "Text-an-agent starter: iMessage your Claude agent, it runs sub-agents, remembers you, and grows with integrations you add.",
"license": "MIT",
"type": "module",
"scripts": {
"setup": "tsx scripts/setup.ts",
"sendblue:sync": "node scripts/sendblue-sync.mjs",
"sendblue:webhook": "node scripts/sendblue-webhook.mjs",
"preflight": "node scripts/preflight.mjs",
"dev": "node scripts/dev.mjs",
"dev:parallel": "npm-run-all --parallel dev:server dev:convex dev:debug",
"dev:server": "npm run preflight && tsx watch server/index.ts",
"dev:convex": "convex dev",
"dev:debug": "vite --config debug/vite.config.ts",
"build:debug": "vite build --config debug/vite.config.ts",
"start": "npm run preflight && tsx server/index.ts",
"deploy:convex": "convex deploy",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"@composio/claude-agent-sdk": "^0.6.10",
"@composio/core": "^0.6.10",
"@hugeicons/core-free-icons": "^1.0.0",
"@hugeicons/react": "^1.0.0",
"@huggingface/transformers": "^4.2.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"convex": "^1.36.1",
"cors": "^2.8.5",
"croner": "^9.0.0",
"dotenv": "^16.4.0",
"express": "^5.0.0",
"react-force-graph-2d": "^1.27.0",
"ws": "^8.18.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/prompts": "^2.4.9",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.5.12",
"@vitejs/plugin-react": "^4.3.0",
"npm-run-all": "^4.1.5",
"prompts": "^2.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vite": "^6.0.0"
},
"engines": {
"node": ">=20"
}
}