-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.25 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.25 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "claude-auto-commit",
"version": "0.1.4",
"description": "AI-powered Git commit message generator using Claude Code SDK",
"main": "src/claude-auto-commit.js",
"bin": {
"claude-auto-commit": "bin/claude-auto-commit"
},
"type": "module",
"scripts": {
"start": "node src/claude-auto-commit.js",
"commit": "node src/claude-auto-commit.js",
"dev": "node --watch src/claude-auto-commit.js",
"test": "node test/test.js"
},
"keywords": [
"claude",
"claude-code-sdk",
"git",
"commit",
"ai",
"automation",
"sdk"
],
"repository": {
"type": "git",
"url": "git+https://github.com/0xkaz/claude-auto-commit.git"
},
"author": "rakd",
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-code": "^1.0.22"
},
"devDependencies": {
"@types/node": "^20.0.0"
},
"engines": {
"node": ">=22.0.0"
},
"os": [
"darwin",
"linux"
],
"preferGlobal": true,
"files": [
"src/",
"bin/",
"scripts/",
"docs/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"directories": {
"doc": "docs"
},
"bugs": {
"url": "https://github.com/0xkaz/claude-auto-commit/issues"
},
"homepage": "https://github.com/0xkaz/claude-auto-commit#readme"
}