-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.62 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.62 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "pr-commit-ai-agent",
"version": "1.0.0",
"description": "A CLI tool powered by AI to streamline Git workflows by generating commit messages, branch names, and pull requests.",
"keywords": [
"AI",
"CLI",
"Git",
"commit messages",
"pull requests",
"branch names",
"OpenAI",
"Anthropic",
"Ollama",
"DeepSeek",
"GitHub",
"automation",
"developer tools",
"semantic commits",
"GitHub CLI",
"AI assistant"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/meabed/pr-commit-ai-agent.git"
},
"license": "MIT",
"author": "Mohamed Meabed <mo.meabed@gmail.com>",
"bin": {
"ggpr": "./bin/run"
},
"directories": {
"lib": "src",
"bin": "bin"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "bun run build.ts",
"build:watch": "bun run build.ts --watch",
"clean": "rimraf dist",
"commit": "cz",
"commitlint": "commitlint --edit",
"compile": "bunx tsc",
"format": "bunx biome format .",
"format:fix": "bunx biome format --write .",
"lint": "bunx biome lint .",
"lint:fix": "bunx biome lint --write .",
"check": "bunx biome check .",
"check:fix": "bunx biome check --write .",
"prepare": "bunx husky",
"release": "bunx semantic-release",
"start": "bun run ./bin/run.ts",
"start:node": "node ./bin/run",
"test": "bun test",
"test:watch": "bun test --watch"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@ai-sdk/google": "^3.0.0",
"@ai-sdk/provider": "3.0.8",
"@anthropic-ai/sdk": "0.78.0",
"@types/bun": "^1.2.19",
"ai": "6.0.97",
"conf": "^15.0.0",
"consola": "3.4.2",
"dotenv": "17.3.1",
"execa": "^9.6.0",
"giget": "2.0.0",
"llm-cost": "^1.0.5",
"ollama-ai-provider": "1.2.0",
"openai": "6.22.0",
"picocolors": "1.1.1",
"simple-git": "3.32.1",
"uuid": "13.0.0",
"yargs": "18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.1.4",
"@commitlint/cli": "20.4.2",
"@commitlint/config-conventional": "20.4.2",
"@jest/globals": "30.2.0",
"@tsconfig/node22": "22.0.5",
"@types/jest": "30.0.0",
"@types/node": "25.3.0",
"@types/prompts": "2.4.9",
"@types/signale": "1.4.7",
"@types/yargs": "17.0.35",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.7",
"jest": "30.2.0",
"rimraf": "6.1.3",
"semantic-release": "25.0.3",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"tsup": "8.5.1",
"typescript": "5.9.3"
},
"packageManager": "bun"
}