mirror of
https://github.com/lancedb/lancedb.git
synced 2026-05-14 10:30:40 +00:00
## Summary - Added `repository` field to all nodejs package.json files (main package + 7 platform-specific packages) - This fixes the npm publish E422 error where sigstore provenance verification fails because the repository.url was empty ## Root Cause Failing CI: https://github.com/lancedb/lancedb/actions/runs/21770794768/job/62821570260 npm's sigstore provenance verification requires the `repository.url` field in package.json to match the GitHub repository URL from the provenance bundle. The platform-specific packages (`@lancedb/lancedb-darwin-arm64`, etc.) were missing this field entirely, causing the publish to fail with: ``` npm error 422 Unprocessable Entity - Error verifying sigstore provenance bundle: Failed to validate repository information: package.json: "repository.url" is "", expected to match "https://github.com/lancedb/lancedb" from provenance ``` 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
358 B
JSON
18 lines
358 B
JSON
{
|
|
"name": "@lancedb/lancedb-linux-arm64-gnu",
|
|
"version": "0.26.1",
|
|
"os": ["linux"],
|
|
"cpu": ["arm64"],
|
|
"main": "lancedb.linux-arm64-gnu.node",
|
|
"files": ["lancedb.linux-arm64-gnu.node"],
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">= 18"
|
|
},
|
|
"libc": ["glibc"],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/lancedb/lancedb"
|
|
}
|
|
}
|