55db09c973
Build / bun-build (push) Successful in 32s
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
22 lines
422 B
JSON
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"
|
|
}
|
|
}
|