Problem
Currently, following the install steps in README.md fails with yarn install if the current version of Node.JS is newer than major version 18.
As the repo seems to work with Node.JS v20, why not allow newer versions, but keep the minimum allowed version as v18?
Changes required
Change package.json line 7 to:
{
"engines": {
"node": ">18"
}
}
so that it includes newer versions of Node.JS.
Also nvmrc could be updated too.