From 9f529a7660e8689f0ca3537771379002e32f0e91 Mon Sep 17 00:00:00 2001 From: Yash Date: Sun, 22 Feb 2026 22:46:38 +0700 Subject: [PATCH] fix: add repository field to package.json - npm provenance verification requires repository.url to match the GitHub repo - Fixes 422 error during npm publish in release workflow --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 2759025..622466e 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,10 @@ "README.md", "LICENSE" ], + "repository": { + "type": "git", + "url": "https://github.com/butttons/dora" + }, "author": { "name": "butttons" },