From d49ccf366bde91f39a4850826325cd8a12ee038d Mon Sep 17 00:00:00 2001 From: Martin Porwoll Date: Sun, 15 Feb 2026 19:39:41 +0000 Subject: [PATCH] fix: remove devDependencies to fix npm git dep install on Plesk npm installs devDeps (--include=dev) when preparing git dependencies. esbuild (via tsx) has native install script that fails on Plesk nodenv. Since this package exports TypeScript source files directly, no build tools are needed at install time. devDependencies (typescript, tsx, @types/react) are only needed for local development on sv-payload and can be installed manually. Co-Authored-By: Claude Opus 4.6 --- package.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/package.json b/package.json index 2655eb0..6854a6f 100644 --- a/package.json +++ b/package.json @@ -46,11 +46,7 @@ ], "license": "UNLICENSED", "private": true, - "devDependencies": { - "@types/react": "^19.0.0", - "typescript": "^5.7.0", - "tsx": "^4.19.0" - }, + "optionalDependencies": {}, "peerDependencies": { "react": "^19.0.0" },