From 003aca3d4eed47e330c1a2929be38b6ba4df5a83 Mon Sep 17 00:00:00 2001 From: Hugo Bjork Date: Mon, 7 Sep 2026 17:25:49 +0200 Subject: [PATCH] fix: add repository.url to package.json (required for npm provenance) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit npm OIDC trusted publishing validates that package.json repository.url matches the GitHub repo from the signed provenance statement — ours was empty, causing E422 on publish. --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 2241a8f..c12f492 100644 --- a/package.json +++ b/package.json @@ -81,5 +81,9 @@ "*.{json,yml,yaml,md}": [ "prettier --write" ] + }, + "repository": { + "type": "git", + "url": "git+https://github.com/berget-ai/cli.git" } }