-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "@misaelabanto/commita",
"version": "0.3.0",
"description": "AI-powered git auto-commit tool that intelligently groups your changes and generates meaningful commit messages",
"module": "index.ts",
"type": "module",
"private": false,
"bin": {
"commita": "./index.ts"
},
"scripts": {
"dev": "bun run index.ts",
"build": "bun build index.ts --outdir dist --target bun",
"commita": "bun run index.ts"
},
"author": "Misael Abanto",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/misaelabanto/commita.git"
},
"homepage": "https://github.com/misaelabanto/commita#readme",
"dependencies": {
"@ai-sdk/google": "^2.0.28",
"@ai-sdk/openai": "^2.0.62",
"ai": "^5.0.87",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.7",
"minimatch": "^10.0.1",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/minimatch": "^5.1.2"
},
"peerDependencies": {
"typescript": "^5"
}
}