From 392a89f33371b4bf1744fff52a4458a23749a83a Mon Sep 17 00:00:00 2001 From: Carlos Medeiros Date: Thu, 28 May 2026 11:27:01 +0100 Subject: [PATCH] fix: capitalize Zondax in package.json GitHub URLs Required for OIDC trusted publishing: npm's sigstore provenance verifier case-sensitively compares package.json's repository.url / bugs.url / homepage against the GitHub provenance attestation (`Zondax/ledger-casper-js`) and rejects publish with 422 if they don't match. --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 147cfce..8364e21 100644 --- a/package.json +++ b/package.json @@ -9,13 +9,13 @@ "Javascript", "Casper" ], - "homepage": "https://github.com/zondax/ledger-casper", + "homepage": "https://github.com/Zondax/ledger-casper", "bugs": { - "url": "https://github.com/zondax/ledger-casper/issues" + "url": "https://github.com/Zondax/ledger-casper/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/zondax/ledger-casper.git" + "url": "git+https://github.com/Zondax/ledger-casper.git" }, "license": "Apache-2.0", "author": "Zondax AG",