UNPKG

@robota-sdk/team

Version:

Multi-agent teamwork functionality for Robota SDK - dynamic agent coordination and task delegation

95 lines 2.29 kB
{ "name": "@robota-sdk/team", "version": "2.0.9", "description": "Multi-agent teamwork functionality for Robota SDK - dynamic agent coordination and task delegation", "type": "module", "main": "dist/node/index.js", "module": "dist/node/index.mjs", "types": "dist/node/index.d.ts", "exports": { ".": { "types": "./dist/node/index.d.ts", "node": { "import": "./dist/node/index.mjs", "require": "./dist/node/index.js" }, "browser": { "import": "./dist/browser/index.js" }, "default": { "import": "./dist/node/index.mjs", "require": "./dist/node/index.js" } } }, "repository": { "type": "git", "url": "https://github.com/woojubb/robota.git", "directory": "packages/team" }, "homepage": "https://robota.io/", "bugs": { "url": "https://github.com/woojubb/robota/issues" }, "files": [ "dist", "README.md", "CHANGELOG.md" ], "keywords": [ "ai", "agent", "llm", "multi-agent", "teamwork", "task-delegation", "agent-coordination", "collaborative-ai", "dynamic-agents", "work-distribution", "agent-factory", "typescript", "robota", "sdk", "openai", "anthropic", "google-ai", "ai-integration" ], "author": "Robota SDK Team", "license": "MIT", "engines": { "node": ">=18.0.0" }, "dependencies": { "uuid": "^9.0.1", "zod": "^3.24.4", "@robota-sdk/agents": "2.0.9" }, "peerDependencies": {}, "devDependencies": { "@types/uuid": "^9.0.7", "rimraf": "^5.0.5", "tsup": "^8.0.1", "typescript": "^5.3.3", "vitest": "^1.6.1", "eslint": "^8.56.0", "@robota-sdk/agents": "2.0.9" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "scripts": { "build": "tsup", "build:check": "pnpm run typecheck && pnpm run build", "dev": "tsup --watch", "clean": "rimraf dist && rimraf tsconfig.tsbuildinfo", "typecheck": "tsc --noEmit -p tsconfig.build.json", "test": "vitest run --passWithNoTests", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "lint": "eslint src --ext .ts,.tsx", "lint:fix": "eslint src --ext .ts,.tsx --fix" } }