forked from ruvnet/ruflo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.52 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
{
"name": "claude-flow",
"version": "1.0.49",
"description": "Advanced AI agent orchestration system for Claude Code",
"main": "src/cli/main.ts",
"bin": {
"claude-flow": "./bin/claude-flow"
},
"scripts": {
"postinstall": "node scripts/install.js",
"build": "PATH=\"/home/codespace/.deno/bin:$PATH\" deno compile --allow-all --no-check --output=bin/claude-flow src/cli/main.ts",
"build:simple": "PATH=\"/home/codespace/.deno/bin:$PATH\" deno compile --allow-all --no-check --output=bin/claude-flow-simple src/cli/simple-cli.ts",
"test": "deno task test"
},
"keywords": [
"claude",
"ai",
"agent",
"orchestration",
"mcp",
"workflow",
"automation"
],
"author": "rUv",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ruvnet/claude-code-flow.git"
},
"bugs": {
"url": "https://github.com/ruvnet/claude-code-flow/issues"
},
"homepage": "https://github.com/ruvnet/claude-code-flow#readme",
"engines": {
"node": ">=16.0.0"
},
"files": [
"bin/claude-flow",
"bin/claude-flow-swarm",
"bin/claude-flow-swarm-ui",
"bin/claude-flow-swarm-monitor",
"src/",
"swarm-demo.ts",
"swarm-demo-enhanced.ts",
"scripts/install.js",
"scripts/swarm-blessed-ui.js",
"scripts/swarm-simple.js",
"scripts/swarm-example.sh",
"README.md",
"LICENSE",
"deno.json",
"SWARM_TTY_SOLUTION.md",
"SWARM_VISIBILITY.md"
],
"dependencies": {
"blessed": "^0.1.81",
"node-pty": "^1.0.0"
}
}