agent-ecosystem/agent-teams-controller/package.json
iliya 7a7e2e1f12 refactor: remove legacy teamctl CLI support and update package description
- Removed the legacy teamctl CLI integration, including the associated source code and references in the main module.
- Updated the package description to reflect the current functionality without legacy support.
- Cleaned up build scripts by removing unnecessary executable permissions and legacy file handling.
- Adjusted tests and documentation to remove references to the deprecated CLI.
2026-03-08 22:50:57 +02:00

19 lines
435 B
JSON

{
"name": "agent-teams-controller",
"version": "1.0.0",
"private": true,
"description": "Controller package for Claude agent teams operations",
"type": "commonjs",
"main": "src/index.js",
"files": [
"dist"
],
"scripts": {
"build": "node ./scripts/build.mjs",
"test": "vitest run --config vitest.config.js",
"test:watch": "vitest --config vitest.config.js"
},
"engines": {
"node": ">=20"
}
}