The current package.json restricts Node.js version to:
"engines": {
"node": ">=18.0.0 <=22.x.x"
}
This constraint prevents usage with the newer LTS 24 or the current version 25 of Node.js.
Can you update the engines.node field to allow higher versions (e.g., <=24.x.x / <=25.x.x or simply removing the upper bound)?