Files
ai-portal/package.json
T
root f2d7037ca2 feat: add save feedback prompts, featured agent fields, dynamic Dify API config, and chat improvements
- Add success/error feedback messages near submit buttons in all admin forms
- Display success prompt for 1s before redirect after save
- Show API error details on save failure
- Add isFeatured/featuredOrder fields to Agent model and admin UI
- Add difyApiUrl/difyApiKey fields for per-agent Dify API configuration
- Show featured badge column in agent admin list
- Display featured agents on homepage sorted by order
- Refactor chat page streaming with AbortController and stable userId
- Improve Dify API proxy to use per-agent credentials
2026-05-08 20:15:54 +08:00

39 lines
888 B
JSON

{
"name": "nextapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@prisma/client": "^6.19.3",
"@tailwindcss/typography": "^0.5.19",
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^3.0.3",
"next": "15.2.4",
"next-auth": "^4.24.14",
"prisma": "^6.19.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^22.13.1",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"eslint": "^9.20.0",
"eslint-config-next": "15.2.4",
"tailwindcss": "^4.0.0",
"tsx": "^4.21.0",
"typescript": "^5.8.2"
}
}