AIClient-2-API/package.json
hex2077 0c9d52f537 feat: 支持动态提供商配置组和前缀匹配机制
- 添加动态提供商配置组功能,支持通过后缀创建自定义配置组
- 实现前缀匹配机制,使自定义配置组能继承基础类型的配置和模型
- 更新代理、TLS Sidecar、健康检查等系统以支持前缀匹配
- 添加提供商组管理界面,支持创建和显示自定义配置组
- 改进提供商状态API,支持显示所有配置组及其状态
- 升级axios依赖至v1.14.0以获取安全更新
2026-04-03 22:42:26 +08:00

42 lines
1.2 KiB
JSON

{
"type": "module",
"dependencies": {
"@anthropic-ai/tokenizer": "^0.0.4",
"adm-zip": "^0.5.16",
"axios": "^1.14.0",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.5",
"google-auth-library": "^10.1.0",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.6",
"lodash": "^4.17.21",
"multer": "^2.0.2",
"open": "^10.2.0",
"socks-proxy-agent": "^8.0.5",
"undici": "^7.12.0",
"uuid": "^11.1.0",
"ws": "^8.19.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": {
"start": "node src/core/master.js",
"start:standalone": "node src/services/api-server.js",
"start:dev": "node src/core/master.js --dev",
"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"
}
}