groupchat/client/package.json
Jason Tudisco 01258fa958 feat: complete GroupChat app with AI tool calling, search, fetch, and UI
Full-stack real-time group chat with Rust/Axum backend and Riot.js frontend.

Features:
- Auth (register/login/JWT), rooms, invites, WebSocket messaging
- AI responses via OpenRouter with tool calling (Brave Search + web fetch)
- Real-time tool usage indicators (searching/reading page)
- Collapsible tool results in message bubbles
- AI stats bar (model, tokens, speed, response time) persisted to DB
- Room soft-delete, /clear command, dynamic model fetching
- Markdown rendering with code highlighting and copy buttons

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 18:50:52 -06:00

24 lines
506 B
JSON

{
"name": "groupchat-client",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"riot": "^9.4.4",
"@riotjs/compiler": "^9.4.4",
"@riotjs/route": "^9.0.2",
"markdown-it": "^14.1.0",
"highlight.js": "^11.10.0"
},
"devDependencies": {
"vite": "^5.4.0",
"@anthropic-ai/sdk": "^0.26.0",
"@nicolo-ribaudo/chokidar-2": "^2.1.8-no-fsevents.3"
}
}