-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 1.98 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
{
"name": "codex-flow",
"version": "0.2.4",
"description": "Dynamic workflow orchestration for Codex — split complex tasks into parallel, resumable, journaled Codex sub-agents.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Dmatut7/codex-flow.git"
},
"bugs": {
"url": "https://github.com/Dmatut7/codex-flow/issues"
},
"homepage": "https://github.com/Dmatut7/codex-flow#readme",
"keywords": [
"codex",
"codex-cli",
"codex-app",
"workflow",
"agent",
"agents",
"parallel",
"resume",
"journaling",
"orchestration",
"openai",
"codex-sdk",
"codex-workflow",
"dynamic-workflow",
"ai-agents",
"developer-tools",
"code-review",
"bug-triage",
"issue-triage",
"release-automation",
"agent-orchestration"
],
"bin": {
"codex-flow": "bin/codex-flow.mjs",
"dongt": "bin/codex-flow.mjs"
},
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs"
}
},
"files": [
"index.mjs",
"index.d.ts",
"bin",
"cli",
"engine",
"adapters",
"codex-skill",
"codex-skill-business-audit",
"codex-skill-parallel-fix",
"README.md",
"examples",
"docs",
"CONTRIBUTING.md",
"CHANGELOG.md",
"assets",
"ROADMAP.md",
"SECURITY.md",
".github"
],
"scripts": {
"test": "node --import tsx --test tests/*.test.ts",
"typecheck": "tsc --noEmit",
"example": "tsx examples/triage.workflow.ts",
"dongt": "tsx cli/main.ts",
"codex-flow": "tsx cli/main.ts",
"prepublishOnly": "npm run typecheck && npm test"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@openai/codex-sdk": "0.128.0",
"ajv": "^8.17.1",
"openai": "^6.9.1",
"tsx": "^4.20.6",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@types/node": "^24.10.1",
"typescript": "^5.9.3"
}
}