-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.46 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.46 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@oxgeneral/orch",
"version": "1.0.21",
"description": "AI agent runtime — orchestrate Claude, Cursor, Codex & OpenCode as one team. Multi-agent task automation with state machine, auto-retry, inter-agent messaging, goals and teams. Zero-config CLI + programmatic API.",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"orchestry": "./dist/cli.js",
"orch": "./dist/cli.js",
"ao": "./dist/cli.js"
},
"files": [
"dist",
"scripts",
"skills"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "tsx src/bin/cli.ts",
"build": "tsup",
"build:watch": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"postinstall": "node scripts/postinstall.cjs || true",
"benchmark": "tsx scripts/benchmark.ts",
"load-test": "tsx scripts/load-test.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai-agent",
"ai-agent-runtime",
"agent-orchestrator",
"agent-orchestration",
"multi-agent",
"ai-agents",
"ai-team",
"llm-orchestration",
"task-automation",
"claude",
"claude-code",
"codex",
"cursor",
"opencode",
"openai",
"llm",
"cli-tool",
"cli",
"developer-tools",
"devtools",
"typescript",
"automation",
"workflow",
"devops",
"git-worktree",
"state-machine",
"orchestrator"
],
"author": "Agents Organizations Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oxgeneral/ORCH.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"homepage": "https://github.com/oxgeneral/ORCH#readme",
"bugs": {
"url": "https://github.com/oxgeneral/ORCH/issues"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"ink": "^6.8.0",
"js-yaml": "^4.1.0",
"liquidjs": "^10.21.0",
"nanoid": "^5.1.5",
"react": "^19.2.4"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.17.0",
"@types/react": "^19.2.14",
"@vitest/coverage-v8": "^3.2.4",
"ink-testing-library": "^4.0.0",
"tsup": "^8.4.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}