src/core/utils/update-notifier.ts (6 lines of code) (raw):
import updateNotifier from "update-notifier";
import { loadPackageJson } from "./json.js";
const pkg = loadPackageJson();
export function notifyOnUpdate() {
updateNotifier({ pkg }).notify();
}