@cwdpk/cocommit
Version:
AI-powered git commit message generator CLI tool (CoCommit)
72 lines • 1.69 kB
JSON
{
"name": "@cwdpk/cocommit",
"version": "2.0.4",
"description": "AI-powered git commit message generator CLI tool (CoCommit)",
"main": "dist/cli.js",
"bin": {
"cocommit": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"start": "node dist/cli.js",
"prepare": "npm run build",
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"git",
"commit",
"ai",
"cli",
"automation",
"typescript",
"cocommit"
],
"author": "Deepak Suthar",
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"chalk": "^4.1.2",
"inquirer": "^8.2.6",
"ora": "^5.4.1",
"dotenv": "^16.3.1",
"ai": "^3.4.0",
"@ai-sdk/openai": "^0.0.66",
"@ai-sdk/anthropic": "^0.0.54",
"@ai-sdk/google": "^0.0.54",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/inquirer": "^8.2.10",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.8",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/codewithdpk/cocommit#readme",
"repository": {
"type": "git",
"url": "https://github.com/codewithdpk/cocommit.git"
},
"bugs": {
"url": "https://github.com/codewithdpk/cocommit/issues"
},
"links": {
"npm": "https://www.npmjs.com/package/@cwdpk/cocommit?activeTab=readme"
}
}