agent-orchestrator/packages/cli/package.json

82 lines
2.7 KiB
JSON

{
"name": "@aoagents/ao-cli",
"version": "0.9.0",
"description": "CLI for agent-orchestrator — the `ao` command",
"license": "MIT",
"type": "module",
"bin": {
"ao": "dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist",
"templates"
],
"repository": {
"type": "git",
"url": "https://github.com/ComposioHQ/agent-orchestrator.git",
"directory": "packages/cli"
},
"homepage": "https://github.com/ComposioHQ/agent-orchestrator",
"bugs": {
"url": "https://github.com/ComposioHQ/agent-orchestrator/issues"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc && node --input-type=commonjs -e \"require('fs').cpSync('src/assets','dist/assets',{recursive:true})\"",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@aoagents/ao-core": "workspace:*",
"@aoagents/ao-notifier-macos": "workspace:*",
"@aoagents/ao-plugin-agent-aider": "workspace:*",
"@aoagents/ao-plugin-agent-claude-code": "workspace:*",
"@aoagents/ao-plugin-agent-codex": "workspace:*",
"@aoagents/ao-plugin-agent-cursor": "workspace:*",
"@aoagents/ao-plugin-agent-grok": "workspace:*",
"@aoagents/ao-plugin-agent-kimicode": "workspace:*",
"@aoagents/ao-plugin-agent-opencode": "workspace:*",
"@aoagents/ao-plugin-notifier-composio": "workspace:*",
"@aoagents/ao-plugin-notifier-dashboard": "workspace:*",
"@aoagents/ao-plugin-notifier-desktop": "workspace:*",
"@aoagents/ao-plugin-notifier-discord": "workspace:*",
"@aoagents/ao-plugin-notifier-openclaw": "workspace:*",
"@aoagents/ao-plugin-notifier-slack": "workspace:*",
"@aoagents/ao-plugin-notifier-webhook": "workspace:*",
"@aoagents/ao-plugin-runtime-process": "workspace:*",
"@aoagents/ao-plugin-runtime-tmux": "workspace:*",
"@aoagents/ao-plugin-scm-github": "workspace:*",
"@aoagents/ao-plugin-terminal-iterm2": "workspace:*",
"@aoagents/ao-plugin-terminal-web": "workspace:*",
"@aoagents/ao-plugin-tracker-github": "workspace:*",
"@aoagents/ao-plugin-tracker-linear": "workspace:*",
"@aoagents/ao-plugin-workspace-clone": "workspace:*",
"@aoagents/ao-plugin-workspace-worktree": "workspace:*",
"@aoagents/ao-web": "workspace:*",
"@clack/prompts": "^0.9.1",
"@composio/core": "^0.9.0",
"chalk": "^5.4.0",
"commander": "^13.0.0",
"ora": "^8.1.0",
"yaml": "^2.7.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^25.2.3",
"@vitest/coverage-v8": "^3.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}