-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.64 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.64 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
{
"name": "@agntk/agent-harness",
"version": "0.18.0",
"description": "A file-first agent operating system. Build AI agents by editing markdown files, not writing code.",
"repository": {
"type": "git",
"url": "git+https://github.com/Phoenixrr2113/agent-harness.git"
},
"homepage": "https://github.com/Phoenixrr2113/agent-harness#readme",
"bugs": {
"url": "https://github.com/Phoenixrr2113/agent-harness/issues"
},
"type": "module",
"bin": {
"harness": "./dist/cli/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"check:evals": "tsx scripts/check-default-evals.ts",
"clean": "rm -rf dist"
},
"files": [
"dist",
"defaults",
"templates",
"sources.yaml",
"NOTICE",
"CHANGELOG.md"
],
"keywords": [
"ai",
"agent",
"harness",
"autonomous",
"llm",
"openrouter",
"framework"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.66",
"@ai-sdk/mcp": "^1.0.32",
"@ai-sdk/openai": "^3.0.50",
"@inquirer/prompts": "^8.4.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"@openrouter/ai-sdk-provider": "^2.3.3",
"ai": "^6.0.146",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"dotenv": "^17.4.1",
"gray-matter": "^4.0.3",
"node-cron": "^4.2.1",
"yaml": "^2.8.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/node-cron": "^3.0.11",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}