-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 879 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 879 Bytes
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
{
"name": "codecli",
"version": "1.0.0",
"description": "AI-powered coding assistant CLI — Claude Code clone with Azure OpenAI, Ollama & Gemini",
"type": "module",
"main": "src/index.js",
"bin": {
"codecli": "./bin/codecli.js"
},
"scripts": {
"start": "node bin/codecli.js",
"dev": "node --watch bin/codecli.js",
"test": "node test/provider-setup.test.js"
},
"keywords": [
"cli",
"ai",
"coding",
"assistant",
"openai",
"ollama",
"gemini"
],
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"chalk": "^5.3.0",
"cli-highlight": "^2.1.11",
"commander": "^12.1.0",
"diff": "^7.0.0",
"glob": "^11.0.0",
"inquirer": "^12.3.0",
"marked": "^15.0.0",
"marked-terminal": "^7.2.0",
"ora": "^8.1.1",
"uuid": "^11.0.0",
"wrap-ansi": "^10.0.0"
}
}