2025-02-18 19:35:46 +01:00
|
|
|
{
|
2025-03-17 12:33:59 -07:00
|
|
|
"name": "agent-chat-ui",
|
|
|
|
|
"readme": "https://github.com/langchain-ai/agent-chat-ui/blob/main/README.md",
|
|
|
|
|
"homepage": "https://agentchat.vercel.app",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/langchain-ai/agent-chat-ui.git"
|
|
|
|
|
},
|
2025-02-18 19:35:46 +01:00
|
|
|
"private": true,
|
|
|
|
|
"version": "0.0.0",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
2025-04-10 11:47:43 -07:00
|
|
|
"dev": "next dev",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "next start",
|
|
|
|
|
"lint": "next lint",
|
|
|
|
|
"lint:fix": "next lint --fix",
|
2025-02-27 14:08:24 -08:00
|
|
|
"format": "prettier --write .",
|
2025-04-10 11:47:43 -07:00
|
|
|
"format:check": "prettier --check ."
|
2025-02-18 19:35:46 +01:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-04-10 11:47:43 -07:00
|
|
|
"@langchain/core": "^0.3.44",
|
|
|
|
|
"@langchain/langgraph": "^0.2.63",
|
2025-04-10 11:49:31 -07:00
|
|
|
"@langchain/langgraph-sdk": "^0.0.66",
|
2025-02-26 17:09:16 -08:00
|
|
|
"@radix-ui/react-avatar": "^1.1.3",
|
2025-03-04 10:34:52 -08:00
|
|
|
"@radix-ui/react-dialog": "^1.1.6",
|
2025-03-04 17:38:33 +01:00
|
|
|
"@radix-ui/react-label": "^2.1.2",
|
2025-03-10 14:04:11 -07:00
|
|
|
"@radix-ui/react-separator": "^1.1.2",
|
2025-02-26 17:09:16 -08:00
|
|
|
"@radix-ui/react-slot": "^1.1.2",
|
2025-03-11 10:59:49 -07:00
|
|
|
"@radix-ui/react-switch": "^1.1.3",
|
2025-02-26 17:09:16 -08:00
|
|
|
"@radix-ui/react-tooltip": "^1.1.8",
|
|
|
|
|
"class-variance-authority": "^0.7.1",
|
|
|
|
|
"clsx": "^2.1.1",
|
2025-03-05 10:57:10 -08:00
|
|
|
"date-fns": "^4.1.0",
|
2025-02-18 19:35:46 +01:00
|
|
|
"esbuild": "^0.25.0",
|
|
|
|
|
"esbuild-plugin-tailwindcss": "^2.0.1",
|
2025-03-03 12:31:27 -08:00
|
|
|
"framer-motion": "^12.4.9",
|
2025-03-05 09:55:09 -08:00
|
|
|
"katex": "^0.16.21",
|
2025-03-10 14:04:11 -07:00
|
|
|
"lodash": "^4.17.21",
|
2025-02-26 17:09:16 -08:00
|
|
|
"lucide-react": "^0.476.0",
|
2025-03-04 13:37:42 -08:00
|
|
|
"next-themes": "^0.4.4",
|
2025-03-17 13:13:28 -07:00
|
|
|
"nuqs": "^2.4.1",
|
2025-02-27 14:08:24 -08:00
|
|
|
"prettier": "^3.5.2",
|
2025-02-26 17:09:16 -08:00
|
|
|
"react": "^19.0.0",
|
|
|
|
|
"react-dom": "^19.0.0",
|
2025-03-03 12:31:27 -08:00
|
|
|
"react-markdown": "^10.0.1",
|
2025-03-05 09:55:09 -08:00
|
|
|
"react-syntax-highlighter": "^15.5.0",
|
2025-03-05 18:02:46 -08:00
|
|
|
"recharts": "^2.15.1",
|
2025-03-05 09:55:09 -08:00
|
|
|
"rehype-katex": "^7.0.1",
|
2025-02-26 17:09:16 -08:00
|
|
|
"remark-gfm": "^4.0.1",
|
2025-03-05 09:55:09 -08:00
|
|
|
"remark-math": "^6.0.0",
|
2025-03-04 13:37:42 -08:00
|
|
|
"sonner": "^2.0.1",
|
2025-02-26 17:09:16 -08:00
|
|
|
"tailwind-merge": "^3.0.2",
|
|
|
|
|
"tailwindcss-animate": "^1.0.7",
|
2025-03-04 15:37:40 +01:00
|
|
|
"use-stick-to-bottom": "^1.0.46",
|
2025-02-18 19:35:46 +01:00
|
|
|
"uuid": "^11.0.5",
|
|
|
|
|
"zod": "^3.24.2"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@eslint/js": "^9.19.0",
|
2025-04-10 11:47:43 -07:00
|
|
|
"@tailwindcss/postcss": "^4.0.13",
|
2025-03-10 14:04:11 -07:00
|
|
|
"@types/lodash": "^4.17.16",
|
2025-02-26 17:09:16 -08:00
|
|
|
"@types/node": "^22.13.5",
|
2025-02-18 19:35:46 +01:00
|
|
|
"@types/react": "^19.0.8",
|
|
|
|
|
"@types/react-dom": "^19.0.3",
|
2025-03-05 09:55:09 -08:00
|
|
|
"@types/react-syntax-highlighter": "^15.5.13",
|
2025-02-26 17:09:16 -08:00
|
|
|
"autoprefixer": "^10.4.20",
|
2025-03-05 18:02:46 -08:00
|
|
|
"dotenv": "^16.4.7",
|
2025-02-18 19:35:46 +01:00
|
|
|
"eslint": "^9.19.0",
|
2025-04-10 11:47:43 -07:00
|
|
|
"eslint-config-next": "15.2.2",
|
2025-02-18 19:35:46 +01:00
|
|
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
|
|
|
"eslint-plugin-react-refresh": "^0.4.18",
|
|
|
|
|
"globals": "^15.14.0",
|
2025-04-10 11:47:43 -07:00
|
|
|
"next": "^15.2.3",
|
|
|
|
|
"postcss": "^8.5.3",
|
2025-03-04 10:34:52 -08:00
|
|
|
"tailwind-scrollbar": "^4.0.1",
|
2025-04-10 11:47:43 -07:00
|
|
|
"tailwindcss": "^4.0.13",
|
2025-02-18 19:35:46 +01:00
|
|
|
"typescript": "~5.7.2",
|
2025-04-10 11:47:43 -07:00
|
|
|
"typescript-eslint": "^8.22.0"
|
2025-02-26 17:09:16 -08:00
|
|
|
},
|
2025-03-05 18:02:46 -08:00
|
|
|
"overrides": {
|
2025-03-17 13:14:47 -07:00
|
|
|
"react-is": "^19.0.0-rc-69d4b800-20241021",
|
|
|
|
|
"@langchain/langgraph-checkpoint": "^0.0.16"
|
2025-03-05 18:02:46 -08:00
|
|
|
},
|
2025-04-09 13:36:05 -07:00
|
|
|
"packageManager": "pnpm@10.5.1"
|
2025-02-18 19:35:46 +01:00
|
|
|
}
|