-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.44 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
62
63
{
"name": "@raghavp/gen-commit",
"version": "2.0.2",
"description": "Auto-generate git commit messages using AI",
"type": "module",
"bin": {
"gencommit": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun run lint && bun build src/cli.ts --outdir dist --target node --format esm --minify --sourcemap=external && chmod +x dist/cli.js",
"dev": "bun --watch src/cli.ts",
"prepublishOnly": "bun run build",
"test": "bun test",
"link": "npm link",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/"
},
"keywords": [
"git",
"commit",
"ai",
"llm",
"cli",
"automation"
],
"author": {
"name": "Raghav Pillai",
"email": "me@raghav.sh"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/raghavpillai/gen-commit.git"
},
"bugs": {
"url": "https://github.com/raghavpillai/gen-commit/issues"
},
"homepage": "https://github.com/raghavpillai/gen-commit#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.45",
"@ai-sdk/google": "^2.0.36",
"@ai-sdk/openai": "^2.0.68",
"ai": "^5.0.95",
"zod": "^4.1.12"
},
"devDependencies": {
"@biomejs/biome": "^2.3.6",
"@types/bun": "latest",
"typescript": "^5.7.0"
}
}