-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.08 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
{
"name": "flowcrew",
"version": "0.3.0",
"description": "FlowCrew is a Codex agent workflow dashboard and control plane with QA gates, retries, and run memory for long-running agent workflows.",
"main": "dist/index.js",
"bin": {
"flowcrew": "dist/cli.js"
},
"scripts": {
"postinstall": "(cd ui && npm install || true)",
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "cd ui && npm run build && cd .. && tsx src/index.ts",
"build:ui": "cd ui && npm run build",
"lint": "eslint .",
"test": "vitest run",
"config:compile": "node scripts/config-compile.mjs",
"config:lint": "node scripts/config-lint.mjs"
},
"keywords": [
"flowcrew",
"flow-crew",
"codex",
"codex-cli",
"claude-code",
"ai-agents",
"agent-orchestration",
"multi-agent",
"workflow-runner",
"workflow-automation",
"agent-observability",
"developer-tools",
"dag",
"qa-gates",
"run-memory"
],
"author": "cuibuaa",
"license": "MIT",
"type": "module",
"files": [
"dist",
"ui/dist",
"config",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22.5"
},
"dependencies": {
"@fastify/static": "^9.1.0",
"fastify": "^5.8.4",
"pino": "^10.3.1",
"string-width": "7.2.0",
"yaml": "^2.8.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^10.1.0",
"jsdom": "^29.1.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuibuaa/flow-crew.git"
},
"homepage": "https://github.com/cuibuaa/flow-crew#readme",
"bugs": {
"url": "https://github.com/cuibuaa/flow-crew/issues"
}
}