-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 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
{
"name": "nocommit",
"version": "0.0.10",
"description": "AI-powered CLI that writes your git commit messages using Google Gemini. Never write a commit message again.",
"type": "module",
"main": "dist/index.js",
"bin": {
"nocommit": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"type-check": "tsc --noEmit"
},
"keywords": [
"git",
"commit",
"ai",
"gemini",
"cli",
"automation",
"developer-tools",
"commit-message",
"ai-tools"
],
"author": {
"name": "Asim Sk",
"url": "https://github.com/asimar007"
},
"homepage": "https://nocommit.asimsk.site",
"repository": {
"type": "git",
"url": "git+https://github.com/asimar007/no-commit.git"
},
"bugs": {
"url": "https://github.com/asimar007/no-commit/issues"
},
"license": "MIT",
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^25.0.10",
"typescript": "^5.9.3"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@google/genai": "^1.38.0",
"commander": "^14.0.2",
"conf": "^15.0.2",
"execa": "^9.6.1",
"picocolors": "^1.1.1"
}
}