-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 927 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 927 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
31
32
33
34
35
36
37
38
39
40
{
"name": "pr-reviewer",
"version": "1.24.0",
"description": "CLI tool for automated PR reviews using LLM",
"author": "Tadeu Tupinambá <tadeu.tupiz@gmail.com>",
"scripts": {
"start": "node bin/index.js"
},
"main": "./src/send_to_llm.js",
"bin": {
"pr-reviewer": "./bin/index.js"
},
"keywords": [
"pr",
"review",
"git",
"llm",
"ai",
"code-review"
],
"license": "ISC",
"dependencies": {
"commander": "^12.1.0",
"openai": "^4.67.3",
"winston": "^3.15.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tupizz/pr-code-analyzer.git"
},
"homepage": "https://github.com/tupizz/pr-code-analyzer/blob/main/README.md",
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"prettier": "3.3.3"
}
}