Nicholai 2bc680ca63 refactor: restructure into monorepo
Move flat src/ layout into packages/ monorepo:
- packages/core: scraping, embeddings, storage, clustering, analysis
- packages/cli: CLI and TUI interface
- packages/web: Next.js web dashboard

Add playwright screenshots, sqlite storage, and settings.
2026-01-24 00:12:14 -07:00

13 lines
302 B
TypeScript

export { RedditScraper, normalizeRedditUrl, parseSubredditFromUrl } from './reddit'
export { CommentFetcher } from './comments'
export type {
RedditPost,
RedditComment,
RedditListing,
RedditListingData,
RedditPostData,
RedditCommentData,
ScrapeOptions,
ScrapeProgress,
} from './types'