-
Notifications
You must be signed in to change notification settings - Fork 497
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.21 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
{
"name": "@alibaba-group/open-code-review",
"version": "0.0.0",
"description": "OpenCodeReview CLI — AI-powered code review tool",
"bin": {
"ocr": "bin/ocr.js"
},
"files": [
"bin/ocr.js",
"scripts/install.js",
"scripts/update.js",
"scripts/platform.js",
"imgs/"
],
"scripts": {
"postinstall": "node scripts/install.js",
"test:github-actions": "node scripts/github-actions/post-review-comments.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/alibaba/open-code-review.git"
},
"publishConfig": {
"access": "public"
},
"ocrConfig": {
"urlPattern": "https://github.com/alibaba/open-code-review/releases/download/v{version}/opencodereview-{os}-{arch}",
"checksumPattern": "https://github.com/alibaba/open-code-review/releases/download/v{version}/sha256sum.txt"
},
"optionalDependencies": {
"@alibaba-group/ocr-darwin-arm64": "0.0.0",
"@alibaba-group/ocr-darwin-x64": "0.0.0",
"@alibaba-group/ocr-linux-arm64": "0.0.0",
"@alibaba-group/ocr-linux-x64": "0.0.0",
"@alibaba-group/ocr-win32-arm64": "0.0.0",
"@alibaba-group/ocr-win32-x64": "0.0.0"
},
"engines": {
"node": ">=14"
},
"license": "Apache-2.0"
}