You are using 16.10.0, but the message says it requires 16.0.0. Not 16.0.0 or greater. It requires exactly 16.0.0.
If it’s your package.json with the engines field causing this issue, change it to say 16.0.0 or greater:
"engines": {
"node": ">=16.0.0"
},