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
79 lines (79 loc) · 2.63 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.63 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
{
"name": "boop-agent",
"version": "0.2.0",
"private": true,
"description": "Text-an-agent starter: iMessage your Claude or Codex-backed agent, with sub-agents, memory, automations, and integrations.",
"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": "varlock run -- node scripts/dev.mjs",
"dev:parallel": "npm-run-all --parallel dev:server dev:convex dev:debug",
"dev:server": "npm run preflight && varlock run -- tsx watch --exclude 'scripts/**' --exclude 'debug/**' server/index.ts",
"dev:convex": "varlock run -- convex dev",
"dev:debug": "varlock run -- vite --config debug/vite.config.ts",
"build:debug": "vite build --config debug/vite.config.ts",
"codex:protocol": "codex app-server generate-ts --out server/runtimes/codex-app-server-protocol --experimental",
"start": "npm run preflight && varlock run -- tsx server/index.ts",
"deploy:convex": "convex deploy",
"env:check": "varlock load --show-all",
"env:scan": "varlock scan",
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.145",
"@composio/claude-agent-sdk": "^0.9.2",
"@composio/core": "^0.10.0",
"@hugeicons/core-free-icons": "^4.1.4",
"@hugeicons/react": "^1.0.0",
"@huggingface/transformers": "^4.2.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"@varlock/1password-plugin": "^1.1.0",
"better-sqlite3": "^12.9.0",
"convex": "^1.39.1",
"cors": "^2.8.5",
"croner": "^10.0.1",
"dotenv": "^17.4.2",
"express": "^5.0.0",
"react-force-graph-2d": "^1.27.0",
"varlock": "^1.2.0",
"ws": "8.20.1",
"zod": "^4.4.3"
},
"optionalDependencies": {
"patchright": "^1.59.4"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^25.9.1",
"@types/prompts": "^2.4.9",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.5.12",
"@vitejs/plugin-react": "^6.0.2",
"npm-run-all": "^4.1.5",
"playwright": "^1.59.1",
"prompts": "^2.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.0",
"typescript": "^6.0.3",
"vite": "^8.0.13",
"vitest": "^4.1.7"
},
"overrides": {
"ws": "8.20.1"
},
"engines": {
"node": ">=20"
}
}