open-code-review/package.json
kite 4051c12ad1 chore(release): bump version to v1.0.0 and fix asset naming consistency
- 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
2026-05-21 10:57:13 +08:00

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"
}