From 19c492429b54cf6af31a577caeecaba09ee9edc4 Mon Sep 17 00:00:00 2001 From: Inder Singh Date: Fri, 5 Jun 2026 23:01:26 +0000 Subject: [PATCH] chore(npm): default publish access to public MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Scoped packages publish as private by default — which is what produced the E402 ("must sign up for private packages") when `--access public` was omitted. `publishConfig.access: "public"` bakes it in, so a plain `npm publish` ships the package publicly with no flag to forget. Co-Authored-By: Claude Opus 4.8 (1M context) --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 81d89cd..38888ab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,9 @@ { "name": "@wastedcode/claudemux", "version": "0.2.0", + "publishConfig": { + "access": "public" + }, "description": "Drive long-lived Claude Code sessions from Node without writing tmux glue. await session.wait() actually returns when the agent is done.", "license": "MIT", "repository": {