UNPKG

gitcleancommit

Version:

A beautiful CLI tool for creating clean, conventional git commits with advanced spell checking and automatic integration

69 lines (68 loc) 1.69 kB
{ "name": "gitcleancommit", "version": "1.0.5", "description": "A beautiful CLI tool for creating clean, conventional git commits with advanced spell checking and automatic integration", "main": "dist/index.js", "type": "module", "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/index.js", "test": "echo \"Error: no test specified\" && exit 1", "prepublishOnly": "npm run build", "prepare": "npm run build", "setup": "node setup.js" }, "bin": { "gitclean": "dist/index.js" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "keywords": [ "git", "commit", "conventional-commits", "cli", "spell-check", "git-hooks", "clean-commits", "auto-correct", "spell-checker" ], "author": "Abhishek <abhishekworkhere@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/thissudhir/gitCleanCommit.git" }, "bugs": { "url": "https://github.com/thissudhir/gitCleanCommit/issues" }, "homepage": "https://github.com/thissudhir/gitCleanCommit#readme", "dependencies": { "boxen": "^8.0.1", "chalk": "^5.4.1", "commander": "^12.1.0", "figlet": "^1.8.1", "inquirer": "^12.7.0", "ora": "^8.2.0", "typo-js": "^1.2.4" }, "devDependencies": { "@types/figlet": "^1.7.0", "@types/inquirer": "^9.0.8", "@types/node": "^24.0.10", "@typescript-eslint/eslint-plugin": "^8.35.0", "@typescript-eslint/parser": "^8.35.0", "eslint": "^9.30.0", "husky": "^9.1.7", "prettier": "^3.6.2", "typescript": "^5.8.3" }, "engines": { "node": ">=18.0.0" } }