Hi,
after using this module I found a way to solve the same thing with core functionalities on AJAX forms: https://julian.pustkuchen.com/en/drupal-8-reload-form-after-ajax-submit-...
It just needed these three lines. Perhaps you'd like to inform users on the module page on this more lightweight alternative?
$response = new AjaxResponse();
$command = new RedirectCommand(Url::fromRoute('<current>')->toString());
$response->addCommand($command);
return $response;
Still there might be cases, where this module is needed! I was able to get rid of the dependency this way. But thank you so much for providing this module, which helped me a lot getting started!