-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 867 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 867 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
38
39
40
41
42
43
{
"name": "@syedfahadandrabi/commitcraft",
"version": "2.0.1",
"description": "Auto-generate commit messages from git diffs using AI",
"bin": {
"commitcraft": "./dist/bin/cli.js"
},
"main": "./dist/src/generate.js",
"types": "./dist/src/generate.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "node dist/bin/cli.js --help",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@google/generative-ai": "^0.21.0",
"chalk": "^5.3.0",
"ora": "^8.0.1"
},
"engines": {
"node": ">=18"
},
"keywords": [
"git",
"commit",
"ai",
"llm",
"cli",
"developer-tools"
],
"author": "Syed",
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/node": "^25.5.2",
"typescript": "^6.0.2"
}
}