Just change this:
const Store = require('electron-store');
to this:
const Store = ( await import('electron-store') ).default;
The error is pretty much self explanatory and provides a the solution.