- Add Anthropic SDK with DeepSeek-compatible API config - Streaming tool-use loop in WebSocket chat handler - GitHub-style markdown rendering with markdown-it - Tool status indicators and thinking states in chat UI - Fix Tailwind content path and CSS border utility Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "meitu-agent",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
|
|
"dev:server": "tsx watch server/index.ts",
|
|
"dev:client": "vite --config client/vite.config.ts",
|
|
"build": "vite build --config client/vite.config.ts",
|
|
"db:init": "tsx server/db/schema.ts"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.95.0",
|
|
"better-sqlite3": "^11.6.0",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.0",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.21.0",
|
|
"lucide-react": "^0.460.0",
|
|
"markdown-it": "^14.1.1",
|
|
"react": "^18.3.0",
|
|
"react-dom": "^18.3.0",
|
|
"tailwind-merge": "^2.6.0",
|
|
"ws": "^8.18.0",
|
|
"zod": "^3.23.0",
|
|
"zustand": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.0",
|
|
"@types/cors": "^2.8.0",
|
|
"@types/express": "^5.0.0",
|
|
"@types/markdown-it": "^14.1.2",
|
|
"@types/react": "^18.3.0",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@types/ws": "^8.5.0",
|
|
"@vitejs/plugin-react": "^4.3.0",
|
|
"autoprefixer": "^10.4.0",
|
|
"concurrently": "^9.1.0",
|
|
"postcss": "^8.4.0",
|
|
"tailwindcss": "^3.4.0",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.6.0",
|
|
"vite": "^5.4.0"
|
|
}
|
|
}
|