From ce551fbdb013fe98dae0b5c28084b3e3a68602f4 Mon Sep 17 00:00:00 2001 From: Aaron Date: Thu, 19 Mar 2026 09:27:45 -0500 Subject: [PATCH] fix: Add `engines` field to WXT's `package.json` Includes the currently supported versions of NodeJS and Bun. This closes #2198 --- packages/wxt/package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/wxt/package.json b/packages/wxt/package.json index 38b4d0ca..c327ddc0 100644 --- a/packages/wxt/package.json +++ b/packages/wxt/package.json @@ -202,5 +202,9 @@ "types": "./dist/modules.d.mts", "default": "./dist/modules.mjs" } + }, + "engines": { + "node": ">=20.12.0", + "bun": ">=1.2.0" } }