From ce92a218740e56f1e10854de3e92465954ff02e0 Mon Sep 17 00:00:00 2001 From: nonna Date: Wed, 11 Mar 2026 00:57:51 +0000 Subject: [PATCH] Fix MODULE_NOT_FOUND on npm start MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use explicit path to neu CLI binary instead of relying on .bin/ shim resolution, which fails when the shell PATH doesn't include node_modules/.bin/ — same fix applied to the Electron build. Co-Authored-By: Claude Sonnet 4.6 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2003550..8d1292a 100644 --- a/package.json +++ b/package.json @@ -3,8 +3,8 @@ "version": "1.0.0", "description": "Standalone PAI Voice audio widget — lightweight Neutralino.js build", "scripts": { - "start": "neu run", - "build": "neu build" + "start": "node node_modules/@neutralinojs/neu/bin/neu.js run", + "build": "node node_modules/@neutralinojs/neu/bin/neu.js build" }, "dependencies": { "@neutralinojs/neu": "^11.7.0"