chore: update Node.js version requirement to >=16

Node.js 14 reached end-of-life on 2023-04-30 and is no longer supported.
Current project dependencies (xo@0.57) require Node.js 15+ for ES2021
features like logical assignment operators (&&=).

This aligns the package.json engines field with actual compatibility.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Alexandr Kravchuk 2026-03-17 12:14:36 +01:00
parent 42f350494b
commit 7b60d8cf9e

View file

@ -18,7 +18,7 @@
"types": "./source/index.d.ts",
"sideEffects": false,
"engines": {
"node": "^12.17.0 || ^14.13 || >=16.0.0"
"node": ">=16.0.0"
},
"scripts": {
"test": "xo && c8 ava && tsd",