From 67d861b940a9f02984b12e579fb013acc67f8c41 Mon Sep 17 00:00:00 2001 From: danshapiro Date: Fri, 29 May 2026 21:14:26 -0700 Subject: [PATCH] fix: include mcp/package.json in npm files array The compiled mcp/dist/index.js references ../package.json at runtime to read SERVER_VERSION. Since mcp/package.json was not listed in the root files array, npm installs excluded it, causing: Error: Cannot find module '.../mcp/package.json' This made the package un-runnable when installed via npx or npm install. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index e378851..783bb86 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ }, "files": [ "mcp/dist/", + "mcp/package.json", "skills/browsing/chrome-ws-lib.js", "skills/browsing/host-override.js", "skills/browsing/lib/",