-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.67 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.67 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
{
"name": "coworker",
"version": "0.2.0",
"description": "Advanced Mastra AI coding agent with secure sandbox execution, comprehensive file management, and multi-language support for Python, JavaScript, and TypeScript development workflows",
"module": "index.ts",
"type": "module",
"private": true,
"author": "Array Ventures",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/Array-Ventures/coworker.git"
},
"scripts": {
"predev": "lsof -ti :4111 | xargs kill -9 2>/dev/null || true;",
"dev": "mastra dev",
"dev:app": "cd app && bun run dev",
"build": "mastra build",
"build:app": "cd app && bun run build",
"start": "mastra start",
"test": "bun test",
"test:watch": "bun test --watch"
},
"engines": {
"node": ">=22.13.0"
},
"dependencies": {
"@mastra/ai-sdk": "^1.0.5",
"@mastra/core": "^1.6.0",
"@mastra/e2b": "^0.0.3",
"@mastra/fastembed": "^1.0.0",
"@mastra/libsql": "^1.6.0",
"@mastra/loggers": "^1.0.2",
"@mastra/mcp": "^1.0.1",
"@mastra/memory": "^1.5.0",
"@mastra/observability": "^1.2.1",
"@mcp-ui/server": "^6.1.0",
"@modelcontextprotocol/ext-apps": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"@types/dompurify": "^3.2.0",
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"agent-browser": "^0.14.0",
"croner": "^10.0.1",
"dompurify": "^3.3.1",
"hono": "4.11.9",
"qrcode": "^1.5.4",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^24.10.9",
"@types/qrcode": "^1.5.6",
"mastra": "latest",
"typescript": "^5.9.3"
},
"overrides": {
"hono": "$hono"
}
}