git-ai-shen 1.0.1 → 1.0.2
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/lib/core/ai-reviewer.js +0 -1
- package/package.json +9 -3
package/lib/core/ai-reviewer.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-ai-shen",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "智能Git提交工具,支持行级代码审查和AI生成提交信息",
|
|
5
5
|
"main": "bin/git-ai.js",
|
|
6
6
|
"bin": {
|
|
@@ -9,7 +9,12 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"start": "node bin/git-ai.js"
|
|
11
11
|
},
|
|
12
|
-
"keywords": [
|
|
12
|
+
"keywords": [
|
|
13
|
+
"git",
|
|
14
|
+
"ai",
|
|
15
|
+
"code-review",
|
|
16
|
+
"commit"
|
|
17
|
+
],
|
|
13
18
|
"author": "shenzhichao",
|
|
14
19
|
"license": "MIT",
|
|
15
20
|
"dependencies": {
|
|
@@ -17,7 +22,8 @@
|
|
|
17
22
|
"openai": "^4.0.0",
|
|
18
23
|
"chalk": "^4.1.2",
|
|
19
24
|
"inquirer": "^8.2.5",
|
|
20
|
-
"ignore": "^5.2.4"
|
|
25
|
+
"ignore": "^5.2.4",
|
|
26
|
+
"commander": "^11.0.0"
|
|
21
27
|
},
|
|
22
28
|
"engines": {
|
|
23
29
|
"node": ">=14.0.0"
|