Files
gai/package.json
Mplan 586487d897
Build / bun-build (push) Has been cancelled
feat: overhaul CLI with new AI commands and mole-style menu (#6)
Major CLI redesign introducing a mole-style interactive menu with grouped categories. Added new AI-powered subcommands: explain, review, changelog, and suggest. Includes streaming output, pipe support, and updated brand logo. Refactored codebase into command modules for maintainability.

Reviewed-on: #6
2026-06-17 00:17:31 +08:00

22 lines
464 B
JSON

{
"name": "gai",
"version": "0.1.3",
"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"
}
}