forked from alibaba/open-code-review
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.35 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
{
"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/version.js",
"scripts/platform.js",
"imgs/"
],
"scripts": {
"postinstall": "node scripts/install.js",
"test:github-actions": "node scripts/github-actions/post-review-comments.test.js && node scripts/github-actions/check-translation-sync.test.js",
"test:update": "node scripts/version.test.js"
},
"repository": {
"type": "git",
"url": "git+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"
}