-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.17 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
{
"name": "lazycommitt",
"version": "1.0.19",
"description": "Writes your git commit messages for you with AI using Groq",
"main": "index.js",
"scripts": {
"build": "pkgroll --minify",
"lint": "",
"type-check": "tsc",
"test": "tsx tests",
"prepack": "pnpm build && clean-pkg-json"
},
"keywords": [
"git",
"commit",
"ai",
"groq",
"github",
"cli"
],
"author": "Kartik Labhshetwar",
"license": "Apache-2.0",
"homepage": "https://lazycommit.vercel.app",
"repository": "KartikLabhshetwar/lazycommit",
"packageManager": "pnpm@10.15.0",
"type": "module",
"files": [
"dist"
],
"bin": {
"lazycommit": "./dist/cli.mjs",
"lzc": "./dist/cli.mjs"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@types/ini": "^4.1.1",
"@types/inquirer": "^9.0.9",
"@types/node": "^24.5.1",
"clean-pkg-json": "^1.3.0",
"cleye": "^1.3.4",
"execa": "^9.6.0",
"fs-fixture": "^2.8.1",
"groq-sdk": "^0.32.0",
"https-proxy-agent": "^7.0.6",
"ini": "^5.0.0",
"kolorist": "^1.8.0",
"manten": "^1.5.0",
"pkgroll": "^2.15.4",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}