Files
gai/package.json
T
Mplan 55db09c973
Build / bun-build (push) Successful in 32s
feat(config): add interactive config editor and GitLab PR support (#4)
Revamp the configuration UI with an interactive editor that supports inline text editing, navigation, and field validation, replacing the previous sequential prompts. Add GitLab pull request creation support via the `glab` CLI, and extend back navigation to all interactive menus for a consistent user experience.

Reviewed-on: #4
2026-06-12 09:00:28 +08:00

22 lines
422 B
JSON

{
"name": "gai",
"version": "0.1.2",
"description": "AI-powered git commit message generator",
"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"
}
}