-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.77 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
{
"name": "codex-dynamic-workflows",
"version": "0.1.0",
"type": "module",
"description": "Claude Code-compatible dynamic workflows on OpenAI Codex, with a live visual run viewer.",
"license": "MIT",
"author": "six-ddc",
"homepage": "https://github.com/six-ddc/codex-dynamic-workflows#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/six-ddc/codex-dynamic-workflows.git"
},
"bugs": {
"url": "https://github.com/six-ddc/codex-dynamic-workflows/issues"
},
"keywords": [
"codex",
"claude-code",
"workflow",
"agents",
"orchestration",
"openai",
"cli"
],
"engines": {
"node": ">=22"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"codex-workflow": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"web"
],
"scripts": {
"build": "npm run build:web && tsc -p tsconfig.json",
"build:web": "tsc -p tsconfig.web.json && vite build --config vite.config.ts",
"prepare": "npm run build",
"serve": "npm run build && node dist/cli.js serve",
"test": "npm run build && npm run test:unit",
"test:unit": "tsx --test \"tests/*.test.ts\"",
"test:deepresearch": "tsx --test tests/deep-research-compat.test.ts",
"typecheck": "tsc -p tsconfig.test.json && tsc -p tsconfig.web.json"
},
"dependencies": {
"@openai/codex-sdk": "^0.137.0",
"ajv": "^8.17.1",
"typescript": "^5.7.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tsx": "^4.20.0",
"vite": "^8.0.16"
}
}