-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.39 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.39 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
{
"name": "codeflowmu",
"version": "0.3.0-alpha",
"private": true,
"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",
"desktop:start": "python codeflowmu-desktop/main.py",
"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.git"
},
"homepage": "https://github.com/joinwell52-AI/CodeFlowMu#readme",
"license": "MIT",
"keywords": [
"ai",
"agents",
"workflow",
"collaboration",
"fcop",
"file-based",
"coordination"
]
}