From 019015f10daf14ea583540a94b7b6025fc015af5 Mon Sep 17 00:00:00 2001 From: Dmitry Prudnikov Date: Wed, 6 May 2026 17:26:14 +0300 Subject: [PATCH] fix(npm): add repository field for provenance verification npm publish --provenance requires package.json repository.url to match the GitHub repo URL. Without it: 'Error verifying sigstore provenance bundle: Failed to validate repository information'. --- package.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/package.json b/package.json index 63af95b..9ddb4c7 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,12 @@ "registry": "https://registry.npmjs.org" }, "description": "Shared UI package for StructuredID — proto clients, Vue 3 composables, Pinia stores, components.", + "repository": { + "type": "git", + "url": "git+https://github.com/structured-id/ui-core.git" + }, + "homepage": "https://github.com/structured-id/ui-core", + "bugs": "https://github.com/structured-id/ui-core/issues", "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts",