From 19b10fc366e4c0d62a9a5316ba9283ca352d3c54 Mon Sep 17 00:00:00 2001 From: Ryan Rasti Date: Thu, 6 Aug 2026 21:26:06 -0700 Subject: [PATCH] fix: add repository field for provenance validation npm's sigstore provenance check requires package.json repository.url to match the GitHub repo the build ran from; without it the publish fails with E422 after signing. Co-Authored-By: Claude Fable 5 --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index f6b9cdb..d074abc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,10 @@ { "name": "typegres", "version": "0.3.1", + "repository": { + "type": "git", + "url": "git+https://github.com/ryanrasti/typegres.git" + }, "type": "module", "main": "./dist/index.mjs", "types": "./dist/index.d.mts",