-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.45 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
{
"name": "@nickcao/coco",
"version": "0.7.0",
"description": "A loop-engineering referee for AI coding agents (Codex / Claude Code): plan → implement → review → verify → human-merge, gated by a git-tree-hash-bound, epoch-scoped state machine, with ChatGPT-Pro (Oracle) as the review brain.",
"type": "module",
"license": "MIT",
"author": "nickcao",
"homepage": "https://github.com/xicv/coco#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xicv/coco.git"
},
"keywords": [
"ai",
"coding-agent",
"codex",
"claude-code",
"mcp",
"loop-engineering",
"referee",
"cli"
],
"bin": {
"coco": "dist/coco.js",
"coco-mcp": "dist/coco-mcp.js",
"coco-store": "dist/coco-store.js"
},
"files": [
"dist",
"skills"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"eval": "tsx src/bin/coco.ts eval",
"ci": "pnpm typecheck && pnpm test && pnpm eval && pnpm build",
"dev": "tsx src/bin/coco.ts",
"prepublishOnly": "pnpm run ci"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsdown": "^0.15.0",
"tsx": "^4.19.0",
"typescript": "^5.9.0",
"vitest": "^3.2.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"minimatch": "^10.2.5",
"yaml": "^2.9.0",
"zod": "^4.4.3"
}
}