@dharshansr/gitgenius
Version:
AI-powered commit message generator with enhanced features
95 lines (94 loc) • 2.56 kB
JSON
{
"name": "@dharshansr/gitgenius",
"version": "1.1.1",
"description": "AI-powered commit message generator with enhanced features",
"type": "module",
"main": "dist/index.js",
"bin": {
"gitgenius": "dist/cli.js",
"gg": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPattern=unit",
"test:integration": "jest --testPathPattern=integration",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build && npm run test",
"release": "npm run build && npm publish",
"release:patch": "npm version patch && git push --follow-tags && npm publish",
"release:minor": "npm version minor && git push --follow-tags && npm publish",
"release:major": "npm version major && git push --follow-tags && npm publish",
"format": "prettier --write src/**/*.ts",
"validate": "npm run type-check && npm run lint && npm run test"
},
"keywords": [
"Ravindran Dharshan",
"gitgenius",
"DharshanSR",
"git",
"commit",
"ai",
"cli",
"commit-message",
"generator",
"typescript",
"openai",
"gemini",
"conventional-commits",
"developer-tools",
"productivity",
"automation",
"code-review",
"git-workflow"
],
"author": "Ravindran Dharshan <dharshanravindran8@gmail.com>",
"license": "MIT",
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"axios": "^1.6.2",
"chalk": "^5.3.0",
"clipboardy": "^4.0.0",
"commander": "^11.1.0",
"conf": "^14.0.0",
"dotenv": "^17.2.1",
"inquirer": "^9.2.12",
"ora": "^7.0.1",
"simple-git": "^3.20.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DharshanSR/gitgenius.git"
},
"bugs": {
"url": "https://github.com/DharshanSR/gitgenius/issues"
},
"homepage": "https://dharshansr.github.io/gitgenius/"
}