From 7af7db476434eb7788b9c38b5b762017ebf7e2ea Mon Sep 17 00:00:00 2001 From: alvseven Date: Fri, 6 Mar 2026 16:20:48 -0300 Subject: [PATCH] Fix package.json: normalize bin path and repository URL Fixes npm publish warnings about invalid bin script name and repository URL. Co-Authored-By: Claude Opus 4.6 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ad90661..98cd3e4 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "author": "Blindpay (https://blindpay.com/)", "repository": { "type": "git", - "url": "https://github.com/blindpaylabs/blindpay-cli.git" + "url": "git+https://github.com/blindpaylabs/blindpay-cli.git" }, "homepage": "https://github.com/blindpaylabs/blindpay-cli#readme", "bugs": { @@ -24,7 +24,7 @@ "payin" ], "bin": { - "blindpay": "./dist/index.js" + "blindpay": "dist/index.js" }, "files": [ "dist",