require() of ES modules is not supported when importing node-fetch
// node-fetch v3 recently stopped support for the
// require way of importing it in favor of ES Modules.
// Old:
const fetch = require('node-fetch');
// New:
import fetch from "node-fetch";