Files
archy/packages/app/package.json
T
Dorian 2d056f9498 feat(chat): enhance chat functionality with web search and article integration
- Updated ChatMessage and ChatWindow components to support inline web search results and articles.
- Integrated new web search and RSS plugins into the chat system for real-time information retrieval.
- Enhanced useContentPanel to manage web search results alongside existing media types.
- Added ArticleOverlay component for displaying selected articles from search results.
- Improved UI elements and styles for better user interaction with web search features.

Made-with: Cursor
2026-03-02 21:29:50 +00:00

41 lines
1007 B
JSON

{
"name": "@aiui/app",
"version": "0.1.0",
"private": true,
"description": "AIUI reference application",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsx server/claude-proxy.ts & vite",
"dev:vite": "vite",
"dev:proxy": "tsx server/claude-proxy.ts",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run",
"lint": "eslint src/",
"typecheck": "vue-tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@aiui/core": "workspace:*",
"pinia": "latest",
"plyr": "^3.8.4",
"vue": "latest",
"vue-router": "latest"
},
"devDependencies": {
"@tailwindcss/vite": "latest",
"@vitejs/plugin-vue": "latest",
"duck-duck-scrape": "^2.2.7",
"eslint": "latest",
"rss-parser": "^3.13.0",
"tailwindcss": "latest",
"tsx": "^4.21.0",
"typescript": "~5.8.0",
"vite": "latest",
"vite-plugin-pwa": "^1.2.0",
"vitest": "latest",
"vue-tsc": "latest"
}
}