import { getKind as getKind1 } from "npm:@denotest/dual-cjs-esm-dep"; // this should still be able to be resolved even though it's missing the // "@denotest/dual-cjs-esm" package because the above import will resolve it import { getKind as getKind2 } from "npm:@denotest/dual-cjs-esm-dep-missing"; console.log(getKind1()); console.log(getKind2());