-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.12 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.12 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
{
"name": "@codemaverick-143/codenarrator",
"version": "1.0.0",
"description": "AI-powered CLI tool that explains entire codebases in plain English using Gemini or OpenAI.",
"main": "bin/cli.js",
"bin": {
"codenarrator": "./bin/cli.js"
},
"type": "module",
"scripts": {
"start": "node ./bin/cli.js",
"test": "node test-models.js"
},
"engines": {
"node": ">=18"
},
"keywords": [
"cli",
"ai",
"gemini",
"openai",
"developer-tools",
"documentation",
"codebase",
"code-explainer",
"code-analysis",
"code-narration",
"explainhub"
],
"author": "Arpit Sarang <nexawebs.tech@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ExplainHub/CodeNarrator.git"
},
"bugs": {
"url": "https://github.com/ExplainHub/CodeNarrator/issues"
},
"homepage": "https://github.com/ExplainHub/CodeNarrator#readme",
"dependencies": {
"@google/generative-ai": "^0.24.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"glob": "^13.0.0",
"ora": "^8.2.0"
}
}