-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 848 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 848 Bytes
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
{
"name": "autoharness",
"version": "0.1.0",
"description": "Autonomous agent harness engineering — TypeScript (LLM-agnostic)",
"type": "module",
"main": "dist/agent.js",
"scripts": {
"build": "tsc",
"start": "tsx agent.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/anthropic": "latest",
"@ai-sdk/google": "latest",
"@ai-sdk/mcp": "^1.0.35",
"@ai-sdk/openai": "latest",
"@anthropic-ai/claude-agent-sdk": "latest",
"@browserbasehq/stagehand": "^3.2.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@octokit/rest": "^22.0.1",
"ai": "latest",
"dotenv": "^17.4.2",
"simple-git": "^3.36.0",
"zod": "latest"
},
"devDependencies": {
"@types/node": "latest",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=22.0.0"
}
}