From f2fabaa3e87f3bad3f6a6cd886ba602fb09ea9b7 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 11 Jun 2026 00:09:35 +0000 Subject: [PATCH] Move tmp from dependencies to overrides tmp is a Node-only package that is not imported anywhere in the source. It is already brought in transitively via karma/karma-typescript dev tooling, so listing it as a direct runtime dependency unnecessarily pollutes the published dependency graph and can cause browser bundlers to pull in Node-only modules for consumers. https://claude.ai/code/session_01WQBhS3gh24pwaFgriCfpU8 --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index d4cec59..c2f9032 100644 --- a/package.json +++ b/package.json @@ -39,8 +39,7 @@ "url": "https://github.com/getditto/react-ditto.git" }, "dependencies": { - "lodash.isequal": "^4.5.0", - "tmp": "^0.2.6" + "lodash.isequal": "^4.5.0" }, "peerDependencies": { "@dittolive/ditto": "^5.0.0", @@ -55,7 +54,8 @@ }, "serialize-javascript": "7.0.4", "@babel/plugin-transform-modules-systemjs": "7.29.4", - "basic-ftp": "5.3.1" + "basic-ftp": "5.3.1", + "tmp": "^0.2.6" }, "devDependencies": { "@dittolive/ditto": "^5.0.0",