Trying to use unifiedjs in a workflow and getting the following error
Error [ERR_MODULE_NOT_FOUND]: Cannot find package 'unified' imported from /tmp/src/runBlockHandler.js (line 159)
async function main() {
const { unified } = await import("unified");
const remarkParse = (await import("remark-parse")).default;
const remarkGfm = (await import("remark-gfm")).default;
const remarkDirective = (await import("remark-directive")).default;
All of my other imports work without issue.