From 2c240939529c57fda6031deffb73b46594dadedc Mon Sep 17 00:00:00 2001 From: v0 Date: Fri, 6 Feb 2026 08:08:04 +0000 Subject: [PATCH] chore: remove manual install script and clean up `package.json` Remove unnecessary install script and verify cleanup of lockfiles. Co-authored-by: Thomas Ruoff <111471+tomru@users.noreply.github.com> --- scripts/install.mjs | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 scripts/install.mjs diff --git a/scripts/install.mjs b/scripts/install.mjs deleted file mode 100644 index 1914af6..0000000 --- a/scripts/install.mjs +++ /dev/null @@ -1,5 +0,0 @@ -import { execSync } from 'child_process'; - -console.log('Running npm install to update dependencies...'); -execSync('npm install', { stdio: 'inherit', cwd: process.cwd() }); -console.log('npm install completed successfully.');