Opus finding
@types/node pinned to non-existent major version 25
highbuild-releasehigh
- package.json:17
@types/node follows Node.js major versions; engines specifies node >=20, and @types/node majors that exist line up with Node majors (20, 22, 24). There is no @types/node@^25.6.0 published. Install will fail with ETARGET, and even if it resolved, the types would not match the supported Node 20+ runtime declared in `engines`.
Recommendation
Use a published major matching the engines field (e.g. ^20.x or ^22.x) consistent with `node: >=20`.