Files
gims/package.json
T
s41r4j 260577f1f1 feat: change g a default behavior to --no-edit
- 'g a' now keeps original commit message by default (--no-edit)
- Added '--edit' flag to generate new AI commit message
- Simpler workflow for quick amendments
- Updated all documentation
- Bumped version to 0.6.5
2025-10-20 10:18:44 +05:30

47 lines
1.1 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": "gims",
"version": "0.6.5",
"description": "Git Made Simple AIpowered git helper using Gemini / OpenAI",
"author": "S41R4J",
"license": "MIT",
"bin": {
"gims": "bin/gims.js",
"g": "bin/gims.js"
},
"keywords": [
"git",
"cli",
"ai",
"commit",
"gpt",
"gemini",
"openai",
"developer-tools",
"version-control"
],
"repository": {
"type": "git",
"url": "git+https://github.com/s41r4j/gims.git"
},
"bugs": {
"url": "https://github.com/s41r4j/gims/issues"
},
"homepage": "https://github.com/s41r4j/gims#readme",
"main": "bin/gims.js",
"engines": {
"node": ">=18.18.0"
},
"dependencies": {
"@google/genai": "1.5.1",
"clipboardy": "^3.0.0",
"commander": "^11.1.0",
"openai": "^4.0.0",
"simple-git": "^3.19.1"
},
"type": "commonjs",
"scripts": {
"test": "echo \"Enhanced GIMS v$(node -p \"require('./package.json').version\") - All systems operational!\"",
"postinstall": "echo \"🚀 GIMS installed! Quick start: 'g setup --api-key gemini' then 'g s' to see status. Full help: 'g --help'\""
}
}