forked from RomanHotsiy/commitgpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 869 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
{
"name": "commitgpt",
"version": "1.0.5",
"description": "",
"main": "index.js",
"type": "module",
"bin": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "ts-node --esm index.ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RomanHotsiy/commitgpt.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/RomanHotsiy/commitgpt/issues"
},
"homepage": "https://github.com/RomanHotsiy/commitgpt#readme",
"dependencies": {
"enquirer": "^2.3.6",
"eventsource-parser": "^0.0.5",
"expiry-map": "^2.0.0",
"node-fetch": "^3.3.0",
"openai": "^3.2.1",
"ora": "^6.1.2",
"uuid": "^9.0.0",
"ws": "^8.12.1",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"ts-node": "^10.9.1"
}
}