From 064e9df01f230d7c45c91298f3a2de983f514284 Mon Sep 17 00:00:00 2001 From: okxint Date: Sun, 22 Mar 2026 20:02:27 +0530 Subject: [PATCH] chore: add engines field to package.json Specify minimum Node.js version requirement (>=20.0.0) in package.json to prevent build issues for contributors using incompatible Node.js versions. Closes #367 --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 83921e7..bf158e9 100644 --- a/package.json +++ b/package.json @@ -37,5 +37,8 @@ "bugs": { "url": "https://github.com/NextCommunity/NextCommunity.github.io/issues" }, - "homepage": "https://github.com/NextCommunity/NextCommunity.github.io#readme" + "homepage": "https://github.com/NextCommunity/NextCommunity.github.io#readme", + "engines": { + "node": ">=20.0.0" + } }