mirror of
https://github.com/alibaba/open-code-review.git
synced 2026-07-09 17:28:58 +00:00
- Update package.json version to 1.0.0 for first public release - Fix urlPattern to include version in binary filename, matching Makefile output - Fix Makefile sha256sum target to output sha256sum.txt without version suffix
28 lines
821 B
JSON
28 lines
821 B
JSON
{
|
|
"name": "@alibaba/open-code-review",
|
|
"version": "1.0.0",
|
|
"description": "OpenCodeReview CLI — AI-powered code review tool",
|
|
"bin": {
|
|
"ocr": "bin/ocr.js"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "node scripts/install.js",
|
|
"prepublishOnly": "cp NPM-README.md README.md",
|
|
"postpublish": "git checkout README.md"
|
|
},
|
|
"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-v{version}-{os}-{arch}",
|
|
"checksumPattern": "https://github.com/alibaba/open-code-review/releases/download/v{version}/sha256sum.txt"
|
|
},
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"license": "Apache-2.0"
|
|
}
|