-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.34 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
{
"name": "codex-team-coordinator",
"version": "0.1.0",
"description": "Fail-closed local coordination for concurrent Codex tasks.",
"type": "module",
"private": true,
"engines": {
"node": ">=22.5.0"
},
"bin": {
"ctc": "./bin/ctc.js",
"ctc-mcp": "./bin/ctc-mcp.js"
},
"files": [
"bin/",
"src/",
"scripts/session-context-adapter.mjs",
"templates/",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"scripts": {
"test": "node --no-warnings --test test/*.test.js",
"test:unit": "node --no-warnings --test test/core.test.js",
"test:concurrency": "node --no-warnings --test test/concurrency.test.js",
"test:recovery": "node --no-warnings --test test/recovery.test.js",
"test:integration": "node --no-warnings --test test/integration.test.js",
"demo": "node --no-warnings demo/three-tasks.mjs",
"sync:plugin": "node --no-warnings scripts/sync-plugin.mjs",
"check": "node --no-warnings scripts/check-release.mjs",
"check:syntax": "node --no-warnings scripts/check-syntax.mjs",
"smoke:mcp": "node --no-warnings scripts/smoke-plugin-mcp.mjs",
"pack:dry-run": "npm pack --dry-run --json"
},
"license": "MIT",
"repository": "https://github.com/aermin/codex-team-coordinator",
"keywords": [
"codex",
"coordination",
"leases",
"mcp",
"worktree"
]
}