4572605f33
- Full README rewrite with all new commands, pipe support, aliases, global flags, and configuration examples - Bump version to 0.2.0, update description
22 lines
464 B
JSON
22 lines
464 B
JSON
{
|
|
"name": "gai",
|
|
"version": "0.2.0",
|
|
"description": "AI-powered git helper — commit messages, PRs, code review, changelogs, and more",
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"bin": {
|
|
"gai": "./index.ts"
|
|
},
|
|
"scripts": {
|
|
"gai": "bun run index.ts",
|
|
"build": "bun build --compile index.ts --outfile gai"
|
|
},
|
|
"private": false,
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
}
|
|
}
|