-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.78 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
{
"name": "repo-harness",
"version": "0.12.0",
"description": "Installs, migrates, audits, and repairs repo-local agentic development harnesses",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Ancienttwo/repo-harness.git"
},
"type": "module",
"files": [
"agents/",
"assets/",
"docs/images/",
"docs/repo-harness-chatgpt-browser-engine.md",
"install.sh",
"install.ps1",
"interfaces/",
"references/handoff.md",
"references/workflow-packaging-rubric.md",
"scripts/",
"src/",
"AGENTS.md",
"CLAUDE.md",
"SKILL.md",
"README.md"
],
"bin": {
"repo-harness": "src/cli/index.ts",
"repo-harness-hook": "src/cli/hook-entry.ts"
},
"engines": {
"bun": ">=1.1.35"
},
"scripts": {
"benchmark:mcp-reader": "bun scripts/benchmark-general-repo-reader.ts",
"benchmark:skills": "bun scripts/run-skill-evals.ts",
"benchmark:harness": "bun scripts/run-harness-profile-benchmark.ts",
"test": "bun test",
"test:coverage": "bun test --coverage",
"check:type": "node node_modules/typescript/bin/tsc --noEmit",
"sync:hooks": "bun scripts/sync-hook-sources.ts --write",
"check:hooks": "bun scripts/sync-hook-sources.ts --check",
"sync:helpers": "bun scripts/sync-helper-sources.ts --write",
"check:helpers": "bun scripts/sync-helper-sources.ts --check",
"sync:reference-configs": "bun scripts/sync-reference-configs.ts --write",
"check:reference-configs": "bun scripts/sync-reference-configs.ts --check",
"check:state-boundaries": "bun scripts/check-state-boundaries.ts",
"check:ci": "bash scripts/check-ci.sh",
"check:release": "bash scripts/check-npm-release.sh",
"check:release-published": "bash scripts/check-release-published.sh",
"smoke:tarball-install": "bash scripts/check-tarball-install-smoke.sh",
"check:brain-manifest": "repo-harness run check-brain-manifest",
"check:context-files": "repo-harness run check-context-files",
"check:deploy-sql": "repo-harness run check-deploy-sql-order",
"check:architecture-sync": "repo-harness run check-architecture-sync",
"check:task-sync": "repo-harness run check-task-sync",
"check:task-workflow": "repo-harness run check-task-workflow --strict",
"prepublishOnly": "bash scripts/check-npm-release.sh",
"sync:brain-docs": "repo-harness run sync-brain-docs --all",
"sync:codex-installed": "bash scripts/sync-codex-installed-copies.sh"
},
"devDependencies": {
"@colbymchenry/codegraph": "1.4.1",
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"archctx-contracts": "0.2.2",
"typescript": "^7.0.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"commander": "^15.0.0",
"express": "^5.2.1"
}
}