@@ -1,6 +1,6 @@
-import {readFileSync} from 'fs';
+import {readFile} from 'fs/promises';
-const pkg = JSON.parse(readFileSync(
+const pkg = JSON.parse(await readFile(
new URL('../package.json', import.meta.url)
));