From 3141c4a38d057693d985f6fd652b0301cc7fb744 Mon Sep 17 00:00:00 2001 From: soydachi Date: Sat, 29 Aug 2026 02:06:36 +0200 Subject: [PATCH] fix(pkg): bin paths without ./ prefix, git+ repository url MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit npm publish silently dropped both bin entries (invalid script name) — the published package would have had no `ai` command. Applied npm pkg fix; verified with npm pack --dry-run that bin survives. --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 993891e..f8f79dd 100644 --- a/package.json +++ b/package.json @@ -23,14 +23,14 @@ }, "repository": { "type": "git", - "url": "https://github.com/arcasilesgroup/ai-shell" + "url": "git+https://github.com/arcasilesgroup/ai-shell.git" }, "files": [ "dist" ], "bin": { - "ai": "./dist/cli.mjs", - "ai-shell": "./dist/cli.mjs" + "ai": "dist/cli.mjs", + "ai-shell": "dist/cli.mjs" }, "publishConfig": { "access": "public",