- Overhaul content detection: expand all query/response classifiers with broader AI response patterns (news, music, books, TV, places, websites) - Add Nostr detection (isNostrQuery, isNostrLikeResponse) and App detection (isAppQuery, isAppLikeResponse) classifiers - Add bare domain extraction from AI text (e.g. "check out damus.io") - Add Apps tab with curated database of ~30 Nostr + Bitcoin ecosystem apps (clients, wallets, privacy tools, node software, dev tools) - Create AppsGrid + AppDetail components with search, filtering, how-to - Wire app extraction and Nostr detection into useContentPanel - Add PromptIndex badges for Apps and Nostr tabs - Chat UX: dedicated history button, settings modal (memory + advanced), fix collapsed chat v-if/v-else chain bug - Web search: add Brave Search API as primary backend, expand SearXNG pool - iOS HIG: comprehensive mobile UX rules in cursor rules + CLAUDE.md Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
34 lines
703 B
JSON
34 lines
703 B
JSON
{
|
|
"name": "aiui",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "The next-generation AI content surface UI",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "pnpm --filter @aiui/app dev",
|
|
"dev:core": "pnpm --filter @aiui/core dev",
|
|
"build": "turbo build",
|
|
"test": "turbo test",
|
|
"lint": "turbo lint",
|
|
"typecheck": "turbo typecheck",
|
|
"clean": "turbo clean"
|
|
},
|
|
"devDependencies": {
|
|
"turbo": "^2.8.12",
|
|
"typescript": "~5.8.0"
|
|
},
|
|
"packageManager": "pnpm@10.30.3",
|
|
"engines": {
|
|
"node": ">=20.0.0",
|
|
"pnpm": ">=10.0.0"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"esbuild"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"pdfjs-dist": "^5.5.207"
|
|
}
|
|
}
|