-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.86 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
{
"name": "kg6-codex",
"version": "1.0.3",
"description": "A modular, open-source AI Developer Assistant for automating and improving the software development lifecycle",
"main": "dist/index.js",
"bin": {
"ai-dev": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli/index.ts",
"start": "node dist/cli/index.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepare": "npm run build"
},
"keywords": [
"ai",
"developer-tools",
"code-review",
"git",
"github",
"llm",
"typescript",
"dart",
"flutter",
"python",
"java",
"testing",
"documentation",
"security-scan",
"openai",
"gemini",
"ollama"
],
"author": "kg6 team",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@google/generative-ai": "^0.2.1",
"@octokit/rest": "^20.0.2",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"glob": "^10.3.10",
"inquirer": "^9.2.12",
"langchain": "^0.0.208",
"marked": "^9.1.6",
"node-fetch": "^3.3.2",
"openai": "^4.20.1",
"ora": "^7.0.1",
"simple-git": "^3.19.1",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.8",
"@types/node": "^20.8.10",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/kg6-oss/kg6-codex.git"
},
"bugs": {
"url": "https://github.com/kg6-oss/kg6-codex/issues"
},
"homepage": "https://github.com/kg6-oss/kg6-codex#readme"
}