Add package.json

This commit is contained in:
kodemaster-admin 2025-11-25 20:03:47 +00:00
parent 014b11ee68
commit a974c76479

22
package.json Normal file
View File

@ -0,0 +1,22 @@
{
"name": "git-ai-commit",
"description": "Build an AI-Powered Commit Message Generator challenge, from Vizh.ai",
"version": "1.0.0",
"main": "dist/index.js",
"bin": {
"git-ai-commit": "dist/index.js"
},
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}