From db6a0324e4c170b132a9fd7fcfbcd9052ba29fc3 Mon Sep 17 00:00:00 2001 From: Liran Cohen Date: Wed, 4 Mar 2026 22:35:44 +0000 Subject: [PATCH] fix: add repository field to package.json for npm provenance npm OIDC trusted publishing generates provenance attestations that require package.json repository.url to match the source repository. Without this field, npm rejects the publish with E422: 'repository.url is "", expected to match https://github.com/enboxorg/gitd' --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 66c8e55..2914b28 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,10 @@ "version": "changeset version && bun install", "release": "bun run build && changeset publish" }, + "repository": { + "type": "git", + "url": "https://github.com/enboxorg/gitd" + }, "license": "Apache-2.0", "files": [ "dist",