Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix package.json engines and required Node version (#950)
Including "pnpm" in the engines field of your package.json for a library is generally not recommended, even if you use it for building the library. The engines field is typically used to specify runtime environments (such as Node.js versions) that are required to run the library, not the tools used to build or develop it. Most developers expect the engines field to list only the runtime requirements, not development tools like package managers.
- Loading branch information