From aaf2b64c64a865a8c7933c4d3a02571d2872f3f3 Mon Sep 17 00:00:00 2001 From: Corey Martin Date: Fri, 27 Mar 2026 17:01:37 -0700 Subject: [PATCH] fix: update origin repository URL to js-sdk for npm provenance npm's sigstore provenance verification rejects publishes when package.json repository.url doesn't match the publishing repo. Origin was still pointing to webdev from before the migration. Co-Authored-By: Claude Opus 4.6 (1M context) --- packages/origin/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/origin/package.json b/packages/origin/package.json index 732420d1d..8cea36094 100644 --- a/packages/origin/package.json +++ b/packages/origin/package.json @@ -8,8 +8,8 @@ "license": "Apache-2.0", "repository": { "type": "git", - "url": "git+https://github.com/lightsparkdev/webdev.git", - "directory": "js/packages/origin" + "url": "git+https://github.com/lightsparkdev/js-sdk.git", + "directory": "packages/origin" }, "type": "module", "main": "./src/index.ts",