diff --git a/package.json b/package.json
index ffe80ae94892d75..60612c5fd180192 100644
--- a/package.json
+++ b/package.json
@@ -14,7 +14,7 @@
     "url": "git+https://github.com/mdn/content.git"
   },
   "engines": {
-    "node": ">=18.18.0"
+    "node": ">=18.20.0"
   },
   "type": "module",
   "scripts": {
diff --git a/scripts/up-to-date-check.js b/scripts/up-to-date-check.js
index 342fb1a14c7b632..a1928b8b0ed363e 100644
--- a/scripts/up-to-date-check.js
+++ b/scripts/up-to-date-check.js
@@ -1,5 +1,5 @@
-import yariPackageJson from "@mdn/yari/package.json" assert { type: "json" };
-import thisPackageJson from "../package.json" assert { type: "json" };
+import yariPackageJson from "@mdn/yari/package.json" with { type: "json" };
+import thisPackageJson from "../package.json" with { type: "json" };
 
 const availableYariVersion = thisPackageJson.dependencies["@mdn/yari"];
 const installedYariVersion = yariPackageJson.version;