-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1010 Bytes
/
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
34
35
36
37
38
39
{
"name": "git-gpt-commit",
"version": "1.0.2",
"description": "An AI-powered Git extension that generates commit messages using OpenAI's GPT-3, streamlining the commit process and improving developer productivity.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nooqta/git-commit-gpt.git"
},
"keywords": [
"git"
],
"author": "Anis Marrouchi",
"license": "MIT",
"bugs": {
"url": "https://github.com/nooqta/git-commit-gpt.git/issues"
},
"homepage": "https://github.com/nooqta/git-commit-gpt.git#readme",
"dependencies": {
"commander": "^10.0.1",
"dotenv": "^16.0.3",
"openai": "^3.2.1",
"prompts": "^2.4.2"
},
"bin": {
"git-gpt": "./index.js"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/runtime": "^7.21.0",
"jest": "^29.5.0"
}
}