eg:
npm install <package> --min-release-age 0
pnpm add <package> --minimum-release-age 0
uv add <package> --exclude-newer "0 days"
bun add <package> --minimum-release-age 0Next up, we're going to advise a minimum-release-age of 14 days, cause most other projects use 7 days.
And maybe more importantly: security tools and researchers.
$ pnpm add -D typescript@6.0.2
ERR_PNPM_NO_MATURE_MATCHING_VERSION No matching version found for typescript@6.0.2 published by Wed Mar 18 2026..
You could also set the config this way: pnpm config set minimumReleaseAge 10080 --global
You may be thinking about the project-specific config, which uses YAML.