Bug Description
There is a version conflict between the documentation and the actual project config.
DEVELOPMENT.md (Prerequisites table, line 11) says: Node.js >= 18
package.json (engines field) says: "node": ">=20.0.0"
A developer following the docs could install Node 18 or 19 and face cryptic
runtime errors or build failures because the actual requirement is Node 20+.
Steps to Reproduce
- Open
DEVELOPMENT.md → see Node.js >= 18
- Open
package.json → see "node": ">=20.0.0"
Expected Behavior
Both files should state Node.js >= 20.
Proposed Fix
Update DEVELOPMENT.md Prerequisites table:
| Tool |
Version |
Check |
| Node.js |
>= 20 |
node -v |
Checklist
Bug Description
There is a version conflict between the documentation and the actual project config.
DEVELOPMENT.md(Prerequisites table, line 11) says:Node.js >= 18package.json(engines field) says:"node": ">=20.0.0"A developer following the docs could install Node 18 or 19 and face cryptic
runtime errors or build failures because the actual requirement is Node 20+.
Steps to Reproduce
DEVELOPMENT.md→ seeNode.js >= 18package.json→ see"node": ">=20.0.0"Expected Behavior
Both files should state
Node.js >= 20.Proposed Fix
Update
DEVELOPMENT.mdPrerequisites table:node -vChecklist