gemini-code-flow
Version:
AI-powered development orchestration for Gemini CLI - adapted from Claude Code Flow by ruvnet
60 lines • 1.36 kB
JSON
{
"name": "gemini-code-flow",
"version": "0.1.0",
"description": "AI-powered development orchestration for Gemini CLI - adapted from Claude Code Flow by ruvnet",
"main": "dist/index.js",
"bin": {
"gemini-flow": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build"
},
"keywords": [
"gemini",
"ai",
"development",
"orchestration",
"sparc",
"code-generation",
"cli"
],
"author": "Luke Thompson",
"contributors": [
{
"name": "ruvnet",
"url": "https://github.com/ruvnet"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Theopsguide/gemini-code-flow"
},
"dependencies": {
"@google/generative-ai": "^0.1.0",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"inquirer": "^9.2.0",
"ora": "^7.0.0",
"fs-extra": "^11.1.0",
"dotenv": "^16.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/inquirer": "^9.0.0",
"@types/fs-extra": "^11.0.0",
"typescript": "^5.0.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}