-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.5 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
{
"name": "@omerrgocmen/crewctl",
"version": "1.1.1",
"description": "CrewCtl — Zero-dependency Node.js orchestrator that runs installed CLI coding agents as one operator-led team.",
"keywords": [
"ai",
"agents",
"orchestrator",
"codex",
"claude",
"gemini",
"opencode",
"multi-agent",
"cli"
],
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/omergocmen/CrewCtl.git"
},
"homepage": "https://github.com/omergocmen/CrewCtl#readme",
"bugs": {
"url": "https://github.com/omergocmen/CrewCtl/issues"
},
"files": [
"orchestrator/src/",
"orchestrator/web/",
"orchestrator/roles/",
"orchestrator/skills/",
"orchestrator/config.default.json",
"orchestrator/README.md",
"orchestrator/LICENSE"
],
"bin": {
"crewctl": "orchestrator/src/cli.js"
},
"scripts": {
"start": "node orchestrator/src/server.js",
"cli": "node orchestrator/src/cli.js",
"doctor": "node orchestrator/src/doctor.js",
"test": "node orchestrator/test/ui-smoke.test.js && node orchestrator/test/cli.test.js && node orchestrator/test/server-flow.test.js && node orchestrator/test/skills.test.js && node orchestrator/test/schedule.test.js && node orchestrator/test/team-flow.test.js && node orchestrator/test/live-diff.test.js && node orchestrator/test/checkpoints.test.js",
"prepublishOnly": "npm test"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}