-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 899 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 899 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
{
"name": "git_commit_msg",
"version": "1.0.0",
"description": "A simple tool for generating git commit messages with AI",
"main": "src/index.ts",
"type": "module",
"bin": {
"git-commit-msg": "dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json --resolve-full-paths --resolve-full-extension .js",
"dev": "tsc -w & tsc-alias -w -p tsconfig.json --resolve-full-paths --resolve-full-extension .js",
"start": "dist/index.js"
},
"keywords": [],
"author": "Subrata Mondal",
"license": "ISC",
"packageManager": "[email protected]",
"devDependencies": {
"@types/node": "^25.5.0",
"@types/signale": "^1.4.7",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@google/genai": "^1.47.0",
"dotenv": "^17.3.1",
"execa": "^9.6.1",
"signale": "^1.4.0"
}
}