-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.55 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.55 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
80
81
82
83
84
85
86
87
88
{
"name": "@mastersof-ai/harness",
"version": "0.2.0",
"description": "Agent runtime with full system prompt control. Define agents in markdown, run them in a terminal TUI or multi-user web UI. Powered by the Claude Agent SDK.",
"license": "MIT",
"author": "ChenPo LLC",
"repository": {
"type": "git",
"url": "git+https://github.com/mastersof-ai/harness.git"
},
"homepage": "https://github.com/mastersof-ai/harness#readme",
"bugs": {
"url": "https://github.com/mastersof-ai/harness/issues"
},
"keywords": [
"ai-agent",
"claude",
"agent-sdk",
"multi-agent",
"agent-runtime",
"tui",
"typescript",
"mcp",
"a2a-protocol",
"llm"
],
"engines": {
"node": ">=20"
},
"type": "module",
"bin": {
"mastersof-ai": "bin/mastersof-ai.js"
},
"files": [
"bin/",
"src/",
"defaults/"
],
"scripts": {
"start": "tsx src/index.tsx",
"dev": "tsx watch src/index.tsx",
"test": "tsx --test src/manifest.test.ts src/agent-context.test.ts src/path-safety.test.ts src/tools/index.test.ts src/prompt.test.ts src/types/ask-user.test.ts src/integration.test.ts",
"test:unit": "tsx --test src/manifest.test.ts src/agent-context.test.ts src/path-safety.test.ts src/tools/index.test.ts src/prompt.test.ts src/types/ask-user.test.ts",
"test:integration": "tsx --test src/integration.test.ts",
"lint": "biome check",
"lint:fix": "biome check --write",
"typecheck": "tsc --noEmit",
"check": "biome check && tsc --noEmit",
"knip": "npx knip",
"check:all": "biome check && tsc --noEmit && cd web && tsc -b && cd .. && npx knip"
},
"dependencies": {
"@a2a-js/sdk": "^0.3.13",
"@anthropic-ai/claude-agent-sdk": "^0.2.76",
"@dotenvx/dotenvx": "^1.52.0",
"@fastify/cors": "^11.2.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/websocket": "^11.2.0",
"@mozilla/readability": "^0.6.0",
"@types/express": "^5.0.6",
"archiver": "^7.0.1",
"express": "^5.2.1",
"fastify": "^5.8.2",
"ink": "^6.8.0",
"jsdom": "^28.1.0",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"react": "^19.2.4",
"tsx": "^4.20.0",
"turndown": "^7.2.2",
"yaml": "^2.7.0",
"zod": "^4.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@types/archiver": "^7.0.0",
"@types/jsdom": "^28.0.0",
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@types/turndown": "^5.0.6",
"@types/ws": "^8.18.1",
"lefthook": "^2.1.4",
"typescript": "^5.7.0"
}
}