From 6aab9e1b9aaf181893b6e5ac532202a0ccb285a7 Mon Sep 17 00:00:00 2001 From: maestrioai Date: Sun, 8 Mar 2026 23:28:42 +0000 Subject: [PATCH] chore: bump minimum Node.js requirement from 18 to 20 Node.js 18 is no longer maintained. Update the engines field and documentation to require Node.js 20+, which is the current LTS. --- README.md | 2 +- package.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 330dc40..751fc7d 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ jobs: ## Requirements -- Node.js 18 or higher +- Node.js 20 or higher - GitHub personal access token with `repo` scope - OpenAI API key for AI-powered features diff --git a/package.json b/package.json index d6a9276..4c709a3 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,9 @@ "README.md" ], "type": "module", + "engines": { + "node": ">=20" + }, "main": "./build/index.js", "types": "./build/index.d.ts", "scripts": {