From 1fcac12480cf23d141ac8896572a9022c9a6a75f Mon Sep 17 00:00:00 2001 From: "Akihiko SHIRAI, Ph.D" Date: Sat, 7 Feb 2026 06:45:22 +0900 Subject: [PATCH] fix: relax Node.js engine requirement for Vercel compatibility Change engines.node from "^25.2.1" to ">=20.0.0" to support deployment on Vercel, which currently supports up to Node.js 20.x. The codebase builds and runs correctly on Node.js 20.x. Volta config is kept at 25.2.1 for local development. Co-Authored-By: Claude Opus 4.6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 72546d51..571f1f24 100644 --- a/package.json +++ b/package.json @@ -114,7 +114,7 @@ "web-streams-polyfill": "^4.2.0" }, "engines": { - "node": "^25.2.1" + "node": ">=20.0.0" }, "volta": { "node": "25.2.1",