As mentionned in @keith comment, you should do this since node22:
import packageJson from "./package.json" with { type: "json" };
or for dynamic import:
const { default } = await import('./file.json', {with: {type: 'json' }});