- 更新 CHANGELOG.md 添加 v1.0.2 工具调用功能说明 - 更新 release.md 添加完整的 v1.0.2 发布说明 - 创建 VERSION.md 版本信息文档 - 更新 package.json 版本号到 1.0.2 - 更新 web/package.json 版本号到 1.0.2 主要特性: - MCP 工具调用集成 - OpenAI Function Calling 支持 - 流式工具执行体验 - 多轮对话支持(AI → Tool → AI)
27 lines
657 B
JSON
27 lines
657 B
JSON
{
|
|
"name": "mcp-client-vue",
|
|
"version": "1.0.2",
|
|
"description": "基于 Vue 3 的美观 MCP 客户端界面 - 纯前端应用 + AI 工具调用",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "cd web && npm run dev",
|
|
"build": "cd web && npm run build",
|
|
"preview": "cd web && npm run preview",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"dependencies": {
|
|
"eventsource": "^2.0.2",
|
|
"isomorphic-ws": "^5.0.0",
|
|
"ws": "^8.16.0",
|
|
"uuid": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/uuid": "^9.0.7",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"main": "index.js",
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC"
|
|
}
|