From 4c396d9f60fb0c79b84ebb93e58aa711ea1f6415 Mon Sep 17 00:00:00 2001 From: Kenneth Date: Sat, 14 Mar 2026 01:32:17 +0000 Subject: [PATCH] Add repository field to package.json (#9) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Required for npm provenance verification — npm checks that the repository URL matches the GitHub repo publishing the package. Co-authored-by: Ona --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 00c25de..91ed034 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,10 @@ "access": "public" }, "description": "JSX factory for json-render. Write JSX, get Spec JSON.", + "repository": { + "type": "git", + "url": "https://github.com/kennethnym/jrx" + }, "type": "module", "module": "./dist/index.js", "types": "./dist/index.d.ts",