-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.05 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
{
"name": "@viccalexander/smart-commit",
"version": "1.2.0",
"description": "LLM-powered git commit message generator",
"bin": {
"git-smart-commit": "./bin/git-smart-commit",
"smart-commit": "./bin/git-smart-commit"
},
"scripts": {
"postinstall": "echo '\n✅ smart-commit installed!\n\nCommands:\n git smart-commit - Create a commit\n smart-commit - Run flags (--setup, --dry-run, etc.)\n\n(First run will walk you through a quick setup)\n'"
},
"keywords": [
"git",
"commit",
"llm",
"cli",
"commit-message",
"anthropic",
"openai",
"gpt",
"claude"
],
"author": "Vicc Alexander",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vicc/smart-commit.git"
},
"bugs": {
"url": "https://github.com/vicc/smart-commit/issues"
},
"homepage": "https://github.com/vicc/smart-commit#readme",
"engines": {
"node": ">=12.0.0"
},
"os": [
"darwin",
"linux"
],
"preferGlobal": true,
"files": [
"bin/",
"README.md",
"LICENSE"
]
}