-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.04 KB
/
package.json
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
{
"name": "@vancura/diff-summarizer",
"author": "Vaclav Vancura (https://github.com/vancura)",
"version": "1.0.0",
"description": "A Git commit message generator powered by OpenAI GPT-4o and Anthropic Claude 3.5",
"type": "module",
"main": "diff-summarizer-claude35.mjs",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vancura/diff-summarizer.git"
},
"bugs": {
"url": "https://github.com/vancura/diff-summarizer/issues"
},
"homepage": "https://github.com/vancura/diff-summarizer#readme",
"scripts": {
"start": "node diff-summarizer-claude.mjs",
"format": "prettier --write ."
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"child_process": "^1.0.2",
"clipboardy": "^4.0.0",
"openai": "^4.47.2"
},
"devDependencies": {
"prettier": "^3.3.3",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-organize-imports": "^4.1.0"
}
}