-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.57 KB
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
{
"name": "@aicodereview/ai-code-review",
"version": "1.0.0",
"description": "AI-powered code review tool for automated code review with multiple LLM providers",
"type": "module",
"main": "dist/index.js",
"bin": {
"code-review": "./dist/cli.js",
"code-review-github": "./dist/cli-github.js"
},
"files": [
"dist",
"examples",
"README.md",
"README.zh-CN.md",
"README-GITHUB.md",
"*.png"
],
"scripts": {
"build": "tsc && node scripts/postbuild.js",
"dev": "tsx src/cli.ts --pwd /Users/kp/Documents/sass/fe.rms-partner",
"start:ui": "cd ui && pnpm run dev",
"build:ui": "cd ui && pnpm run build",
"postinstall": "cd ui && pnpm install",
"release": "bash scripts/release.sh",
"changeset": "changeset",
"version": "changeset version",
"publish": "changeset publish"
},
"keywords": [
"code-review",
"deepseek",
"ai",
"git"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.69.0",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"commander": "^11.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"inquirer": "^9.2.12",
"inquirer-autocomplete-prompt": "^3.0.1",
"inquirer-search-list": "^1.2.6",
"open": "^10.1.0",
"openai": "^6.9.1",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.19.25",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}