This package is now a ESM only package. To import fetch you either have to use
import fetch from 'node-fetch';
// Or if you are still using commonjs or want to lazy
// import fetch then the async import works fine
import('node-fetch')
res.blob().stream()
now returns a whatwg ReadableStream instad
See CHANGELOG for details.