重构Kiro服务从openai迁移至claude模块,更新相关文档和测试 修复Claude策略中内容提取逻辑,支持input_json_delta类型 优化系统提示词处理,当无系统消息时使用首个用户消息 更新README文档,添加健康检查端点和最新模型支持说明
30 lines
809 B
JSON
30 lines
809 B
JSON
{
|
|
"type": "module",
|
|
"dependencies": {
|
|
"axios": "^1.10.0",
|
|
"dotenv": "^16.4.5",
|
|
"google-auth-library": "^10.1.0",
|
|
"lodash": "^4.17.21",
|
|
"undici": "^7.12.0",
|
|
"uuid": "^11.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-env": "^7.28.0",
|
|
"@jest/globals": "^29.7.0",
|
|
"babel-jest": "^30.0.5",
|
|
"babel-plugin-transform-import-meta": "^2.3.3",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-node": "^29.7.0",
|
|
"supertest": "^6.3.3"
|
|
},
|
|
"scripts": {
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"test:verbose": "jest --verbose",
|
|
"test:silent": "jest --silent",
|
|
"test:unit": "node run-tests.js --unit",
|
|
"test:integration": "node run-tests.js --integration",
|
|
"test:summary": "node test-summary.js"
|
|
}
|
|
}
|