reddit-scraper/packages/cli/package.json
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

19 lines
333 B
JSON

{
"name": "@rta/cli",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "./src/index.ts",
"bin": {
"rta": "./src/cli.ts"
},
"scripts": {
"start": "bun run src/cli.ts",
"tui": "bun run src/index.ts"
},
"dependencies": {
"@opentui/core": "^0.1.74",
"@rta/core": "workspace:*"
}
}