From afd5be6826830c0ac4212f1362b4263036efda33 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sat, 29 Nov 2025 22:38:05 -0500 Subject: [PATCH] fix(packaging): Update bin path in package.json Changed the 'contribkit' bin path to remove the leading './' for consistency and compatibility with npm conventions. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a722e00..0132f84 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "bin": { - "contribkit": "./bin/contribkit.mjs" + "contribkit": "bin/contribkit.mjs" }, "files": [ "bin",