import * as license from "$/../LICENSE?raw";

export default (typeof license === "string"
  ? license
  : "default" in license
  ? license.default
  : JSON.stringify(license, null, 2)) as string;