-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathpackage.json
71 lines (71 loc) · 1.79 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "code-review-gpt",
"version": "0.5.0",
"description": "Your AI code reviewer. Improve code quality and catch bugs before you break production",
"bin": {
"code-review-gpt": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mattzcarey/code-review-gpt"
},
"scripts": {
"start": "bun run ./src/index.ts",
"review": "bun run ./src/index.ts review",
"configure": "bun run ./src/index.ts configure",
"test:llm": "bun run ./src/index.ts test",
"test": "bun test",
"build": "bun run ./scripts/build.ts",
"postbuild": "bun run ./scripts/shebang.ts && chmod +x ./dist/index.js",
"publish:build": "bun run build && bun publish --access public",
"check": "biome check .",
"format": "biome format --write ."
},
"keywords": [
"code-review",
"review",
"chatgpt",
"gpt",
"gpt3",
"openai",
"gpt4",
"vertexai",
"huggingface",
"ai",
"genai",
"llama"
],
"author": "Matt Carey",
"license": "MIT",
"dependencies": {
"@actions/github": "^5.1.1",
"@gitbeaker/rest": "^39.10.2",
"@inquirer/prompts": "^3.0.4",
"@inquirer/rawlist": "^1.2.9",
"@langchain/core": "^0.3.29",
"@langchain/openai": "^0.3.17",
"azure-devops-node-api": "^12.3.0",
"chalk": "^4.1.2",
"dotenv": "^16.3.1",
"glob": "^10.3.10",
"langchain": "^0.3.11",
"octokit": "^3.1.0",
"tslog": "^4.8.2",
"yargs": "^17.7.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.16",
"@types/inquirer": "^9.0.3",
"@types/yargs": "^17.0.33",
"dotenv-cli": "^7.2.1",
"npm-dts": "^1.3.12",
"typescript": "^5.1.6"
},
"files": [
"dist/*"
]
}