This repository was archived by the owner on Jan 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
223 lines (223 loc) · 8.88 KB
/
package.json
File metadata and controls
223 lines (223 loc) · 8.88 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
{
"name": "@clduab11/gemini-flow",
"version": "1.3.3",
"description": "Advanced AI coordination framework with MCP protocol integration",
"main": "index.js",
"type": "module",
"bin": {
"gemini-flow": "./bin/gemini-flow",
"gf": "./bin/gemini-flow"
},
"engines": {
"node": ">=18.0.0 <=24.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"build": "npm run build:cli",
"build:cli": "npx tsc --project tsconfig.cli.json || npx tsc --allowJs --target ES2020 --module ESNext --outDir dist src/cli/*.ts src/cli/**/*.ts",
"build:full": "npm run build:consensus && npm run build:benchmarks",
"frontend:dev": "cd frontend && npm run dev",
"frontend:build": "cd frontend && npm run build",
"frontend:preview": "cd frontend && npm run preview",
"frontend:install": "cd frontend && npm install",
"backend:dev": "cd backend && npm run dev",
"backend:start": "cd backend && npm start",
"backend:install": "cd backend && npm install",
"dev:full": "concurrently \"npm run backend:dev\" \"npm run frontend:dev\" --names \"backend,frontend\" --prefix-colors \"blue,green\"",
"build:consensus": "rollup -c rollup.consensus.config.js",
"build:benchmarks": "rollup -c rollup.benchmarks.config.js",
"lint": "eslint src --ext .js,.ts,.jsx,.tsx",
"lint:fix": "eslint src --ext .js,.ts,.jsx,.tsx --fix",
"typecheck": "tsc -p tsconfig.cli.json --noEmit",
"typecheck:full": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{js,ts,jsx,tsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{js,ts,jsx,tsx,json,md}\"",
"clean": "rm -rf dist .nyc_output",
"consensus:start": "node src/consensus/consensus-coordinator.js",
"swarm:init": "node src/swarm/swarm-initializer.js",
"benchmark:google-services": "node src/benchmarks/benchmark-runner.js --mode comprehensive",
"benchmark:quick": "node src/benchmarks/benchmark-runner.js --mode quick",
"benchmark:soak": "node src/benchmarks/benchmark-runner.js --mode soak",
"benchmark:spike": "node src/benchmarks/benchmark-runner.js --mode spike",
"benchmark:optimization": "node src/benchmarks/benchmark-runner.js --mode optimization",
"performance:analyze": "node src/benchmarks/performance-optimization-strategies.js",
"load-test:1k": "node src/benchmarks/load-testing-coordinator.js --scenario concurrent_1k",
"load-test:10k": "node src/benchmarks/load-testing-coordinator.js --scenario concurrent_10k",
"load-test:100k": "node src/benchmarks/load-testing-coordinator.js --scenario concurrent_100k",
"load-test:sustained": "node src/benchmarks/load-testing-coordinator.js --scenario sustained_24h",
"monitoring:start": "node src/monitoring/performance-monitor.js",
"grafana:import": "node scripts/import-grafana-dashboard.js",
"health-check": "node scripts/health-check.js",
"validate:google-services": "bash scripts/deployment/validate-google-services.sh",
"drain-queues": "node src/scripts/drain-queues.js",
"install:enterprise": "npm install --production && npm run build:enterprise",
"build:enterprise": "npm run build && npm run optimize:enterprise",
"optimize:enterprise": "node scripts/enterprise-optimization.js",
"deploy:staging": "npm run build && node scripts/deploy.js staging",
"deploy:production": "npm run build && node scripts/deploy.js production",
"docs:generate": "typedoc --out docs src",
"docs:serve": "http-server docs -p 8080",
"security:audit": "npm audit --audit-level moderate",
"docker:build": "docker build -t gemini-flow:latest .",
"docker:run": "docker run -p 3000:3000 -p 8080:8080 gemini-flow:latest",
"kubernetes:deploy": "kubectl apply -f k8s/",
"postinstall": "node scripts/postinstall.cjs || true",
"prepare": "husky install || true",
"mcp:smoke": "node scripts/mcp/smoke-check.mjs",
"codex:mcp": "MCP_SERVERS_CONFIG=.mcp-config.json codex -C ."
},
"keywords": [
"ai",
"coordination",
"consensus",
"distributed-systems",
"performance",
"benchmarking",
"google-services",
"load-testing",
"optimization",
"monitoring",
"grafana",
"prometheus",
"swarm-intelligence",
"byzantine-fault-tolerance",
"raft-consensus",
"microservices",
"scalability",
"real-time",
"websockets",
"streaming"
],
"author": "Gemini Flow Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/clduab11/gemini-flow.git"
},
"bugs": {
"url": "https://github.com/clduab11/gemini-flow/issues"
},
"homepage": "https://github.com/clduab11/gemini-flow#readme",
"dependencies": {
"@google-cloud/aiplatform": "^5.5.0",
"@google/generative-ai": "^0.24.1",
"@types/config": "^3.3.3",
"async": "^3.2.4",
"axios": "^1.6.0",
"bull": "^4.12.2",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"compression": "^1.7.4",
"config": "^3.3.9",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"eventemitter3": "^5.0.1",
"express": "^4.18.2",
"ffmpeg-static": "^5.2.0",
"google-auth-library": "^10.2.1",
"googleapis": "^118.0.0",
"helmet": "^7.1.0",
"inquirer": "^12.9.4",
"ioredis": "^5.3.2",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"node-fetch": "^3.3.2",
"ora": "^5.4.1",
"p-queue": "^7.4.1",
"p-retry": "^5.1.2",
"p-timeout": "^6.1.2",
"pino": "^8.16.1",
"pino-pretty": "^10.2.3",
"prom-client": "^15.0.0",
"rate-limiter-flexible": "^4.0.1",
"redis": "^4.6.10",
"rxjs": "^7.8.1",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4",
"uuid": "^9.0.1",
"winston": "^3.17.0",
"ws": "^8.14.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/preset-env": "^7.23.0",
"@babel/preset-typescript": "^7.23.0",
"@modelcontextprotocol/sdk": "^1.18.0",
"@modelcontextprotocol/server-filesystem": "^2025.8.21",
"@modelcontextprotocol/server-github": "^2025.4.8",
"@modelcontextprotocol/server-memory": "^2025.8.4",
"@modelcontextprotocol/server-puppeteer": "^2025.5.12",
"@modelcontextprotocol/server-redis": "^2025.4.25",
"@modelcontextprotocol/server-sequential-thinking": "^2025.7.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@supabase/mcp-server-supabase": "^0.5.3",
"@types/async": "^3.2.24",
"@types/bcryptjs": "^2.4.5",
"@types/express": "^4.17.20",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.14.201",
"@types/multer": "^1.4.9",
"@types/node": "^20.19.21",
"@types/uuid": "^9.0.6",
"@types/ws": "^8.5.8",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-security": "^1.7.1",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"mcp-omnisearch": "^0.0.15",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"rollup": "^4.3.0",
"rollup-plugin-visualizer": "^5.9.2",
"semantic-release": "^22.0.5",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
},
"optionalDependencies": {
"canvas": "^2.11.2",
"puppeteer": "^24.16.2",
"sharp": "^0.33.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test:unit && npm run lint"
}
},
"browserslist": [
"node >= 18"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/clduab11"
}
}