-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "commit-by-ai",
"version": "1.0.5",
"description": "AI-powered commit message generator",
"type": "module",
"homepage": "https://github.com/yerofey/commit-by-ai",
"repository": {
"type": "git",
"url": "git+https://github.com/yerofey/commit-by-ai.git"
},
"author": "Yerofey S. <pm@yerofey.dev> (https://github.com/yerofey)",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && bun build cli.ts --outdir dist --target node && bun run dev:npm-lock",
"cli": "bun run cli.ts",
"dev:npm-lock": "npm i --package-lock-only"
},
"bin": {
"cba": "dist/cli.js"
},
"files": [
"dist",
"dist/cli.js"
],
"keywords": [
"commit",
"ai",
"git"
],
"dependencies": {
"@openrouter/ai-sdk-provider": "^1.2.0",
"ai": "^5.0.51",
"chalk": "^5.6.2",
"commander": "^14.0.1",
"dotenv": "^17.2.2",
"ora": "^9.0.0"
},
"devDependencies": {
"@types/commander": "^2.12.5",
"@types/dotenv": "^8.2.3",
"@types/node": "^24.5.2",
"typescript": "^5.9.2"
}
}