'how can I get the required minimum node version for the pacakge I've made?

I've made the React UI library recently and I'd like to specify the required node version in pacakge.json.

// just like this!!
{
  "engines": {
    "node": ">=0.10.3 <15"
  }
}

I have no clues which node version my package need.

Should I write that the node version I worked on? which is 16.11.0?? :o

thank you in advance.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source