-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.54 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
{
"name": "gemini-code-flow",
"version": "0.1.0",
"description": "Gemini CLI adaptation of RuV's brilliant Claude Code Flow - all credit to the original genius at github.com/ruvnet",
"main": "dist/index.js",
"bin": {
"gemini-flow": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepare": "npm run build",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit"
},
"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.21.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "^16.4.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.0",
"ora": "^8.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.0",
"@types/inquirer": "^9.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"jest": "^29.0.0",
"ts-jest": "^29.4.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}