From 3ff5926a77fdb54ab7d3f7a1650acaa8d924acc4 Mon Sep 17 00:00:00 2001 From: John Nunemaker Date: Mon, 8 Jun 2026 09:18:27 -0400 Subject: [PATCH] Add publishConfig.access=public to package.json Scoped packages (@flippercloud/*) default to restricted on publish, requiring --access public on every npm publish. Setting publishConfig makes public access the default so the flag is never needed again. 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 903041e..b3f8b92 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,9 @@ }, "repository": "https://github.com/flippercloud/expressions", "license": "MIT", + "publishConfig": { + "access": "public" + }, "dependencies": { "ajv": "^8.12.0", "ajv-formats": "^2.1.1",