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
114 lines (114 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.01 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "claude-flow",
"version": "1.0.71",
"description": "Advanced AI agent orchestration system for Claude Code",
"main": "cli.js",
"bin": {
"claude-flow": "./cli.js"
},
"scripts": {
"dev": "tsx src/cli/main.ts",
"build": "npm run build:ts && npm run build:binary",
"build:ts": "tsc",
"build:binary": "pkg dist/cli/main.js --targets node18-linux-x64,node18-macos-x64,node18-win-x64 --output bin/claude-flow",
"build:deno": "PATH=\"/home/codespace/.deno/bin:$PATH\" deno compile --allow-all --no-check --output=bin/claude-flow-deno src/cli/main.ts",
"build:simple": "npm run build:ts && pkg dist/cli/simple-cli.js --output bin/claude-flow-simple",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:deno": "deno task test",
"lint": "eslint src --ext .ts,.js",
"format": "prettier --write src",
"postinstall": "node scripts/install.js",
"prepublishOnly": "node scripts/prepare-publish.js",
"prepare-publish": "node scripts/prepare-publish.js"
},
"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": ">=18.0.0"
},
"files": [
"cli.js",
"bin/",
"dist/",
"src/",
".claude/",
"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": {
"@types/better-sqlite3": "^7.6.13",
"better-sqlite3": "^11.10.0",
"blessed": "^0.1.81",
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"fs-extra": "^11.2.0",
"helmet": "^7.1.0",
"inquirer": "^9.2.12",
"nanoid": "^5.0.4",
"node-pty": "^1.0.0",
"ora": "^7.0.1",
"ws": "^8.14.2"
},
"devDependencies": {
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.101",
"@types/blessed": "^0.1.25",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.5",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"pkg": "^5.8.1",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"pkg": {
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-win-x64"
],
"scripts": "dist/**/*.js",
"outputPath": "bin",
"options": [
"--experimental-specifier-resolution=node"
]
},
"type": "module"
}