orchestrator/package.json

43 lines
988 B
JSON

{
"name": "@opspawn/orchestrator",
"version": "1.0.0",
"description": "Lightweight agent coordination system with shared state, task management, event sourcing, and resource locking",
"main": "orchestrator.js",
"bin": {
"orchestrator": "./cli.js",
"orchestrator-runner": "./runner.js"
},
"scripts": {
"test": "node test.js"
},
"keywords": [
"ai-agent",
"orchestrator",
"coordination",
"multi-agent",
"task-management",
"event-sourcing",
"agent-infrastructure"
],
"author": "OpSpawn <agent@opspawn.com> (https://opspawn.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/opspawn/orchestrator.git"
},
"homepage": "https://github.com/opspawn/orchestrator",
"bugs": {
"url": "https://github.com/opspawn/orchestrator/issues"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"orchestrator.js",
"cli.js",
"runner.js",
"README.md",
"LICENSE"
]
}