From 214ba2ac96c6cb276e5206270c8505c65aeb794e Mon Sep 17 00:00:00 2001 From: Mark Amery Date: Mon, 11 Aug 2025 16:13:37 +0100 Subject: [PATCH] Fix broken repository URL in package.json GitHub hasn't supported the git protocol [since 2022](https://github.blog/security/application-security/improving-git-protocol-security-github/#no-more-unauthenticated-git), so this URL is broken. (This is a common error affecting many popular npm packages; I'm opening PRs on several projects to fix it. I encourage anyone reading this to check any packages they maintain and implement the same fix if appropriate!) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 98b48e686..b640c04d7 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ ], "repository": { "type": "git", - "url": "git://github.com/nodejs/readable-stream" + "url": "https://github.com/nodejs/readable-stream" }, "bugs": { "url": "https://github.com/nodejs/readable-stream/issues"