-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.51 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
{
"name": "codeflowmu",
"version": "1.0.0-open",
"private": false,
"description": "CodeFlowMu - AI-powered collaborative workflow system",
"scripts": {
"start": "npm --prefix codeflowmu-shell start",
"daemon": "npm --prefix codeflowmu-shell run start:daemon",
"start:no-ui": "npm --prefix codeflowmu-shell run start:no-ui",
"shell:start": "npm --prefix codeflowmu-shell start",
"shell:build": "npm --prefix codeflowmu-shell run build",
"shell:test": "npm --prefix codeflowmu-shell test",
"shell:typecheck": "npm --prefix codeflowmu-shell run typecheck",
"protocol:install": "npm --prefix packages/codeflowmu-protocol install",
"runtime:install": "npm --prefix packages/codeflowmu-runtime install",
"install:all": "npm install && npm --prefix packages/codeflowmu-protocol install && npm --prefix packages/codeflowmu-runtime install && npm --prefix codeflowmu-shell install"
},
"workspaces": [
"packages/codeflowmu-protocol",
"packages/codeflowmu-runtime",
"codeflowmu-shell"
],
"repository": {
"type": "git",
"url": "https://github.com/joinwell52-AI/CodeFlowMu-open.git"
},
"homepage": "https://github.com/joinwell52-AI/CodeFlowMu-open#readme",
"license": "MIT",
"keywords": [
"ai",
"agents",
"workflow",
"collaboration",
"fcop",
"file-based",
"coordination"
],
"dependencies": {
"@google/genai": "^2.6.0",
"playwright": "^1.49.1"
},
"bugs": {
"url": "https://github.com/joinwell52-AI/CodeFlowMu-open/issues"
}
}