import { crawlWebsite } from "./lib/crawler" async function main() { const result = await crawlWebsite( "https://example.com" ) console.log( JSON.stringify( result, null, 2 ) ) } main()