forked from Theopsguide/gemini-code-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.32 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.32 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
{
"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/luketh/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"
}
}