-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 969 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
40
41
42
{
"name": "code-muse",
"version": "1.21.0",
"description": "AI-powered CLI tool for intelligent, detailed code reviews using LLM",
"author": "Pirate-Emperor",
"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": {
"": "file:",
"commander": "^12.1.0",
"openai": "^4.67.3",
"pr-reviewer": "file:",
"winston": "^3.15.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pirate-Emperor/CodeMuse.git"
},
"homepage": "https://github.com/Pirate-Emperor/CodeMuse/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"
}
}