From 32ff796628b0c583fecfd0d061b2101647d8fff2 Mon Sep 17 00:00:00 2001 From: XananasX7 Date: Mon, 15 Jun 2026 18:58:08 +0000 Subject: [PATCH] chore: add npm bugs and homepage metadata, fix repository URL - Add bugs.url pointing to https://github.com/upstash/ratelimit-js/issues - Add homepage pointing to GitHub readme - Update repository.url from SSH to HTTPS format (git+https://) npm users and tooling can now navigate directly to the issue tracker and project homepage from the package page. --- package.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index aa815de..b8c0750 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ ], "repository": { "type": "git", - "url": "git@github.com:upstash/ratelimit-js.git" + "url": "git+https://github.com/upstash/ratelimit-js.git" }, "scripts": { "build": "tsup", @@ -31,5 +31,9 @@ "license": "MIT", "dependencies": { "@upstash/core-analytics": "^0.0.10" - } -} \ No newline at end of file + }, + "bugs": { + "url": "https://github.com/upstash/ratelimit-js/issues" + }, + "homepage": "https://github.com/upstash/ratelimit-js#readme" +}