open-multi-agent/package.json

52 lines
1.1 KiB
JSON

{
"name": "@jackchen_me/open-multi-agent",
"version": "0.1.0",
"description": "Production-grade multi-agent orchestration framework. Model-agnostic, supports team collaboration, task scheduling, and inter-agent communication.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"agent",
"multi-agent",
"orchestration",
"llm",
"claude",
"openai",
"mcp",
"tool-use",
"agent-framework"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"@google/genai": "^1.48.0",
"openai": "^4.73.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.21.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}