projectify-cli 2.0.3 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +5 -4
package/dist/index.js
CHANGED
|
@@ -18,7 +18,7 @@ const program = new commander_1.Command();
|
|
|
18
18
|
program
|
|
19
19
|
.name('projectify')
|
|
20
20
|
.description('Projectify - Autonomous Code Analysis & Visualization')
|
|
21
|
-
.version('2.0.
|
|
21
|
+
.version('2.0.4');
|
|
22
22
|
program
|
|
23
23
|
.argument('[path]', 'Project path to analyze', '.')
|
|
24
24
|
.option('--no-ai', 'Skip AI analysis')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "projectify-cli",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Project Analyzer using LangChain",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -36,9 +36,10 @@
|
|
|
36
36
|
"@babel/traverse": "^7.24.1",
|
|
37
37
|
"@google/generative-ai": "^0.24.1",
|
|
38
38
|
"@langchain/core": "^1.1.8",
|
|
39
|
+
"@langchain/google-genai": "^2.1.3",
|
|
39
40
|
"@langchain/langgraph": "^1.0.7",
|
|
40
41
|
"@langchain/ollama": "^1.1.0",
|
|
41
|
-
"@langchain/openai": "^
|
|
42
|
+
"@langchain/openai": "^1.2.0",
|
|
42
43
|
"@types/inquirer": "^8.2.12",
|
|
43
44
|
"chalk": "^4.1.2",
|
|
44
45
|
"commander": "^11.1.0",
|
|
@@ -46,7 +47,7 @@
|
|
|
46
47
|
"fs-extra": "^11.2.0",
|
|
47
48
|
"graphology": "^0.25.4",
|
|
48
49
|
"inquirer": "^8.2.7",
|
|
49
|
-
"langchain": "^
|
|
50
|
+
"langchain": "^1.2.3",
|
|
50
51
|
"ora": "^5.4.1",
|
|
51
52
|
"simple-git": "^3.30.0",
|
|
52
53
|
"type-fest": "^5.3.1"
|
|
@@ -60,4 +61,4 @@
|
|
|
60
61
|
"ts-node": "^10.9.2",
|
|
61
62
|
"typescript": "^5.4.5"
|
|
62
63
|
}
|
|
63
|
-
}
|
|
64
|
+
}
|