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.
19 lines
333 B
JSON
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:*"
|
|
}
|
|
}
|