-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.01 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.01 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
{
"name": "harness-codex-plugin",
"version": "0.1.8",
"private": false,
"description": "Visual workbench for building, inspecting, and running structured multi-agent harnesses with task instances, capability registries, and artifact-based execution traces.",
"scripts": {
"dev": "next dev",
"demo": "DEMO_MODE=true SPECX_MODE=mock next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "npm run typecheck && tsx scripts/lint.ts",
"specx:verify": "tsx scripts/verify-specx-three-layer.ts",
"test:smoke": "tsx scripts/smoke.ts",
"plugin:verify": "python3 scripts/harness_cli.py verify-plugin .",
"plugin:verify-specs": "python3 scripts/harness_cli.py verify-specs .",
"plugin:explain": "python3 scripts/harness_cli.py explain .",
"db:reset": "tsx scripts/db-reset.ts",
"agent-reach:doctor": "PYTHONPATH=vendor/agent-reach python3 -m agent_reach.cli doctor",
"agent-reach:install": "PYTHONPATH=vendor/agent-reach python3 -m agent_reach.cli install --env=auto"
},
"keywords": [
"agents",
"multi-agent",
"workflow",
"orchestration",
"harness",
"runtime",
"artifacts",
"trace",
"spec"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EvanAI0331/harness-codex-plugin.git"
},
"homepage": "https://github.com/EvanAI0331/harness-codex-plugin",
"bugs": {
"url": "https://github.com/EvanAI0331/harness-codex-plugin/issues"
},
"dependencies": {
"@tailwindcss/postcss": "^4.2.2",
"ajv": "^8.18.0",
"next": "^16.2.6",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"reactflow": "^11.11.4",
"tailwindcss": "^4.2.2",
"zustand": "^5.0.12"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^10.2.1",
"eslint-config-next": "^16.2.6",
"tsx": "^4.20.6",
"typescript": "^6.0.3"
},
"overrides": {
"postcss": "^8.5.14"
}
}