@amnesia2k/git-aic 2.1.0 → 2.1.1
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/README.md +1 -1
- package/package.json +18 -4
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ bun install -g @amnesia2k/git-aic
|
|
|
79
79
|
|
|
80
80
|
Once installed, you can skip the manual setup and use the built-in configuration commands:
|
|
81
81
|
|
|
82
|
-
- `git-aic set-key
|
|
82
|
+
- `git-aic set-key your_gemini_api_key_here`
|
|
83
83
|
- `git-aic alias`
|
|
84
84
|
|
|
85
85
|
### 2. Local Development (Clone)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amnesia2k/git-aic",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.1",
|
|
5
5
|
"description": "Git AIC",
|
|
6
6
|
"main": "dist/bin/cli.js",
|
|
7
7
|
"publishConfig": {
|
|
@@ -21,15 +21,29 @@
|
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "tsc -p tsconfig.build.json",
|
|
23
23
|
"dev": "tsx bin/cli.ts",
|
|
24
|
-
"commit": "tsx bin/cli.ts"
|
|
24
|
+
"commit": "tsx bin/cli.ts",
|
|
25
|
+
"release": "npm run build && npm version patch && git push origin master --follow-tags && npm publish"
|
|
25
26
|
},
|
|
26
27
|
"keywords": [
|
|
27
28
|
"git",
|
|
28
29
|
"aic",
|
|
29
30
|
"ai",
|
|
30
|
-
"git-aic"
|
|
31
|
+
"git-aic",
|
|
32
|
+
"gemini",
|
|
33
|
+
"google-gemini",
|
|
34
|
+
"llm",
|
|
35
|
+
"conventional-commits",
|
|
36
|
+
"commit-generator",
|
|
37
|
+
"diff-explanations",
|
|
38
|
+
"productivity",
|
|
39
|
+
"cli",
|
|
40
|
+
"typescript"
|
|
31
41
|
],
|
|
32
|
-
"author":
|
|
42
|
+
"author": {
|
|
43
|
+
"name": "Olatilewa Olatoye",
|
|
44
|
+
"email": "tilewaolatoye17@gmail.com",
|
|
45
|
+
"url": "https://github.com/amnesia2k"
|
|
46
|
+
},
|
|
33
47
|
"license": "MIT",
|
|
34
48
|
"devDependencies": {
|
|
35
49
|
"@types/bun": "latest",
|