From 52aa405f997b65edf372caa53bb19029673fb9bd Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 28 Jun 2026 15:06:04 +0000 Subject: [PATCH] Unpin Node version and drop deprecated @types/jszip Remove the engines.node "22.x" pin from package.json so Vercel uses the Node version from Project Settings and auto-updates to the latest, clearing the build warning and restoring build-cache reuse. Remove the redundant @types/jszip dependency; jszip ships its own type definitions, so the deprecated stub package is no longer needed. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_013HbRTvCwyQpr5onatZ44Sz --- package-lock.json | 14 -------------- package.json | 4 ---- 2 files changed, 18 deletions(-) diff --git a/package-lock.json b/package-lock.json index f2c9071..542e8e1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -36,7 +36,6 @@ "@radix-ui/react-tabs": "^1.1.13", "@radix-ui/react-toast": "^1.2.15", "@radix-ui/react-tooltip": "^1.2.8", - "@types/jszip": "^3.4.1", "@vercel/analytics": "^2.0.1", "@vercel/speed-insights": "^2.0.0", "bip32": "^5.0.1", @@ -86,9 +85,6 @@ "tailwindcss": "^4.1.18", "typescript": "6.0.3", "vitest": "^4.1.9" - }, - "engines": { - "node": "22.x" } }, "node_modules/@alloc/quick-lru": { @@ -7329,16 +7325,6 @@ "dev": true, "license": "MIT" }, - "node_modules/@types/jszip": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/@types/jszip/-/jszip-3.4.1.tgz", - "integrity": "sha512-TezXjmf3lj+zQ651r6hPqvSScqBLvyPI9FxdXBqpEwBijNGQ2NXpaFW/7joGzveYkKQUil7iiDHLo6LV71Pc0A==", - "deprecated": "This is a stub types definition. jszip provides its own type definitions, so you do not need this installed.", - "license": "MIT", - "dependencies": { - "jszip": "*" - } - }, "node_modules/@types/long": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", diff --git a/package.json b/package.json index 5a3ac52..ebf9ba9 100644 --- a/package.json +++ b/package.json @@ -14,9 +14,6 @@ "url": "https://github.com/BitSleuthAI/Analyzer/issues" }, "author": "BitSleuth", - "engines": { - "node": "22.x" - }, "scripts": { "dev": "next dev", "dev:clean": "rm -rf .next && next dev", @@ -60,7 +57,6 @@ "@radix-ui/react-tabs": "^1.1.13", "@radix-ui/react-toast": "^1.2.15", "@radix-ui/react-tooltip": "^1.2.8", - "@types/jszip": "^3.4.1", "@vercel/analytics": "^2.0.1", "@vercel/speed-insights": "^2.0.0", "bip32": "^5.0.1",