You can export with the same format as requirements.txt
without the dev dependencies
uv export --no-hashes --no-header --no-annotate --only-dev --format requirements.txt > requirements-dev.txt
If you don't care about the dev dependencies being installed in prod just use
uv pip freeze > requirements.txt