forked from minhlucvan/crgpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.09 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "crgpt",
"version": "1.1.0",
"description": "CLI tool that leverages ChatGPT API to perform code reviews and providing suggestions for improving code quality.",
"keywords": [
"crgpt",
"code-review-chatgpt",
"code-review-tool",
"code-review-gpt",
"code-review-bot",
"chatgpt-code-review"
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"crgpt": "node ./dist/cli/crgpt.js",
"build:clean": "tsc --build --clean",
"build": "tsc"
},
"bin": {
"crgpt": "dist/cli/crgpt.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minhlucvan/crgpt.git"
},
"author": "minhlucvan",
"license": "MIT",
"bugs": {
"url": "https://github.com/minhlucvan/crgpt/issues"
},
"homepage": "https://github.com/minhlucvan/crgpt#readme",
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.15.11",
"typescript": "^5.0.2"
},
"dependencies": {
"@types/node-fetch": "2",
"commander": "^10.0.0",
"js-yaml": "^4.1.0",
"node-fetch": "2"
}
}