-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 732 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 732 Bytes
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
{
"name": "gen-commit",
"description": "A CLI tool to automatically generate commit messages using GPT-3",
"version": "1.0.3",
"main": "dist/index.js",
"repository": "github.com/Eroxl/Git-Auto-Message",
"author": "Eroxl <evan@erox.one>",
"license": "MIT",
"type": "commonjs",
"scripts": {
"start": "yarn tsc && node ./"
},
"bin": {
"gen-commit": "dist/index.js"
},
"dependencies": {
"@types/ink": "^2.0.3",
"@types/react": "^18.0.27",
"ink": "^3.2.0",
"ink-select-input": "^4.2.1",
"ink-spinner": "^4.0.3",
"ink-text-input": "^4.0.3",
"openai": "^3.1.0",
"react": "^18.2.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/node": "^18.13.0"
}
}