git-suggest
Version:
A lightweight command-line tool that automatically generates contextual, high-quality Git commit messages based on your staged code changes. Powered by GitHub Copilot CLI, it helps you write smarter commits with less typing.
102 lines (100 loc) • 2.33 kB
JSON
{
"name": "git-suggest",
"version": "1.0.1",
"description": "A lightweight command-line tool that automatically generates contextual, high-quality Git commit messages based on your staged code changes. Powered by GitHub Copilot CLI, it helps you write smarter commits with less typing.",
"main": "dist/index.js",
"bin": {
"git-suggest": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "jest",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build",
"postinstall": "node dist/install.js"
},
"keywords": [
"git",
"commit",
"message",
"generator",
"cli",
"github",
"copilot",
"semantic",
"conventional",
"commits",
"automation",
"developer-tools",
"productivity",
"version-control",
"git-hooks",
"commit-helper",
"ai-powered",
"contextual",
"smart-commits",
"git-workflow",
"autocomplete",
"shell-integration",
"typescript",
"nodejs",
"cross-platform",
"conventional-commits",
"commit-automation",
"git-commit",
"ai-assistant",
"code-analysis",
"diff-analysis",
"commit-suggestions",
"git-tools",
"devtools",
"terminal",
"bash",
"zsh",
"fish",
"windows",
"macos",
"linux"
],
"author": "techuila <axlcuyugan05@gmail.com> (https://www.npmjs.com/~techuila)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/techuila/git-suggest.git"
},
"bugs": {
"url": "https://github.com/techuila/git-suggest/issues"
},
"homepage": "https://github.com/techuila/git-suggest#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"commander": "^11.1.0",
"chalk": "^4.1.2",
"inquirer": "^8.2.6",
"simple-git": "^3.20.0",
"ora": "^5.4.1",
"node-fetch": "^2.7.0",
"debounce": "^1.2.1"
},
"devDependencies": {
"@types/node": "^20.8.0",
"@types/inquirer": "^8.2.10",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"files": [
"dist/",
"scripts/",
"README.md",
"LICENSE"
]
}