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 <noreply@anthropic.com>
This commit is contained in:
Martin Porwoll 2026-02-15 19:39:41 +00:00
parent c1fd514ce8
commit d49ccf366b

View file

@ -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"
},