-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 775 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 775 Bytes
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
{
"name": "auto-commit",
"version": "0.1.0",
"description": "Generate Conventional Commit messages with Gemma 4 31B through the Gemini API.",
"type": "module",
"bin": {
"auto-commit": "./dist/cli.js",
"autocommit": "./dist/autocommit.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "tsc --noEmit",
"start": "tsx src/cli.ts",
"test": "vitest run"
},
"keywords": [
"git",
"commit",
"gemini",
"gemma",
"conventional-commits"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@google/genai": "^1.33.0",
"dotenv": "^17.2.1"
},
"devDependencies": {
"@types/node": "^24.6.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}