{
  "name": "allagents",
  "version": "1.16.0",
  "packageManager": "bun@1.4.0",
  "description": "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
  "type": "module",
  "bin": {
    "allagents": "dist/index.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "shx rm -rf dist && bun build ./src/cli/index.ts --outdir ./dist --target node && shx cp -r src/templates dist/",
    "docs:install": "bun install --cwd docs --frozen-lockfile",
    "docs:build": "bun run docs:install && bun run --cwd docs build",
    "dev": "bun run src/cli/index.ts",
    "test": "bun test",
    "test:watch": "bun test --watch",
    "test:coverage": "bun test --coverage",
    "test:e2e": "bun test tests/e2e",
    "bench:update": "bun run scripts/benchmark-update-noop.ts",
    "smoke:mcp-oauth": "bun run scripts/smoke-mcp-oauth.ts",
    "dev:mcp-server": "bun run scripts/dev-mcp-server.ts",
    "schema:generate": "bun run scripts/generate-workspace-schemas.ts",
    "schema:check": "bun run scripts/generate-workspace-schemas.ts --check",
    "typecheck": "tsc --noEmit",
    "lint": "biome lint src",
    "lint:fix": "biome lint --write src",
    "format": "biome format --write src",
    "check": "biome check src",
    "check:fix": "biome check --write src",
    "prepare": "bun run build",
    "release": "bun run scripts/release.ts",
    "release:next": "bun run scripts/release.ts next",
    "release:finalize": "bun run scripts/release.ts finalize",
    "prepublishOnly": "test \"$ALLOW_PUBLISH\" = '1' || (echo 'ERROR: Use the GitHub Actions Publish workflow' && exit 1)",
    "publish:latest": "bun run build && bun scripts/publish.ts latest",
    "publish:next": "bun run build && bun scripts/publish.ts next",
    "promote:latest": "bun scripts/tag-channel.ts latest"
  },
  "keywords": [
    "cli",
    "ai",
    "agents",
    "workspace",
    "plugins",
    "multi-repo",
    "claude",
    "copilot",
    "codex"
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/allagentsdev/allagents.git"
  },
  "homepage": "https://allagents.dev",
  "dependencies": {
    "@clack/prompts": "^1.8.1",
    "@modelcontextprotocol/sdk": "^1.30.0",
    "chalk": "^6.0.0",
    "cmd-ts": "^0.15.0",
    "execa": "^8.0.1",
    "fast-glob": "^3.3.3",
    "gray-matter": "^4.0.3",
    "js-yaml": "^5.4.1",
    "json5": "^2.2.3",
    "micromatch": "^4.0.8",
    "read-cmd-shim": "^4.0.0",
    "simple-git": "^3.36.0",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.5.13",
    "@types/bun": "1.4.2",
    "@types/js-yaml": "^4.0.9",
    "@types/micromatch": "^4.0.10",
    "@types/node": "^22.0.0",
    "ajv": "8.20.0",
    "shx": "^0.4.0",
    "typescript": "^7.0.2",
    "zod-to-json-schema": "3.25.2"
  },
  "engines": {
    "node": ">=22.0.0",
    "bun": ">=1.0.0"
  }
}
