{
  "name": "pi-crew",
  "version": "0.9.34",
  "description": "Pi extension for coordinated AI teams, workflows, worktrees, and async task orchestration",
  "author": "baphuongna",
  "license": "MIT",
  "engines": {
    "node": ">=22.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/baphuongna/pi-crew.git"
  },
  "homepage": "https://github.com/baphuongna/pi-crew#readme",
  "bugs": {
    "url": "https://github.com/baphuongna/pi-crew/issues"
  },
  "type": "module",
  "bin": {
    "pi-crew": "install.mjs"
  },
  "keywords": [
    "pi-package",
    "pi",
    "pi-coding-agent",
    "teams",
    "agents",
    "multi-agent",
    "orchestration"
  ],
  "files": [
    "*.ts",
    "*.mjs",
    "src/**/*.ts",
    "dist/",
    "agents/",
    "teams/",
    "workflows/",
    "skills/**/SKILL.md",
    "themes/",
    "assets/crew-vibes.ttf",
    "assets/runner-spritesheet.png",
    "scripts/postinstall.mjs",
    "scripts/install-crew-vibes-font.mjs",
    "scripts/build-crew-vibes-font.py",
    "README.md",
    "AGENTS.md",
    "docs/",
    "tsconfig.json",
    "schema.json",
    "types/",
    "CHANGELOG.md",
    "LICENSE",
    "NOTICE.md"
  ],
  "scripts": {
    "check": "npm run ci",
    "ci": "npm run typecheck && npm run lint && npm run format:check && npm run check:conflict-markers && npm run check:lazy-imports && npm run check:bundle-staleness && npm test && npm pack --dry-run",
    "check:lazy-imports": "node scripts/check-lazy-imports.mjs",
    "check:bundle-staleness": "node scripts/check-bundle-staleness.mjs",
    "check:conflict-markers": "node scripts/check-conflict-markers.mjs",
    "typecheck": "tsc --noEmit && node --experimental-strip-types -e \"await import('./index.ts'); console.log('strip-types import ok')\"",
    "lint": "biome check --linter-enabled=true --formatter-enabled=false --max-diagnostics=50 --diagnostic-level=error .",
    "format:check": "biome format .",
    "test": "npm run test:unit && npm run test:integration",
    "test:unit": "node scripts/test-runner.mjs --test-concurrency=4 --test-timeout=180000 --test-force-exit test/unit/*.test.ts",
    "test:watch": "tsx --watch --test --test-concurrency=4 --test-timeout=30000 --test-force-exit test/unit/*.test.ts",
    "test:integration": "node scripts/test-runner.mjs --test-concurrency=1 --test-timeout=300000 test/integration/*.test.ts",
    "test:smoke": "node scripts/test-runner.mjs --test-concurrency=1 --test-timeout=180000 test/smoke/*.smoke.ts",
    "build:bundle": "node scripts/build-bundle.mjs",
    "watch:bundle": "node scripts/watch-bundle.mjs",
    "build:bundle:once": "node scripts/watch-bundle.mjs --once",
    "postinstall": "node scripts/postinstall.mjs",
    "install:crew-font": "node scripts/install-crew-vibes-font.mjs",
    "build:crew-font": "python scripts/build-crew-vibes-font.py",
    "bench": "node scripts/run-bench.mjs",
    "bench:check": "node scripts/bench-check.mjs",
    "test:new": "tsx --test --test-concurrency=4 --test-timeout=30000 --test-force-exit test/unit/*.test.ts",
    "test:changed": "node scripts/test-changed.mjs",
    "bench:capture": "node scripts/run-bench.mjs && node -e \"require('node:fs').copyFileSync('test/bench/results.json','test/bench/baseline.json')\"",
    "profile:startup": "node scripts/profile-startup.mjs",
    "smoke:pi": "pi install .",
    "smoke:release": "node scripts/release-smoke.mjs"
  },
  "exports": {
    "./schema.json": "./schema.json",
    "./workflow": {
      "types": "./types/dwf.d.ts"
    }
  },
  "pi": {
    "extensions": [
      "./index.ts"
    ],
    "skills": [
      "./skills"
    ]
  },
  "peerDependencies": {
    "@earendil-works/pi-agent-core": "*",
    "@earendil-works/pi-ai": "*",
    "@earendil-works/pi-coding-agent": "*",
    "@earendil-works/pi-tui": "*"
  },
  "dependencies": {
    "@sinclair/typebox": "^0.34.50",
    "acorn": "^8.17.0",
    "ajv": "^8.20.0",
    "cli-highlight": "^2.1.11",
    "diff": "^5.2.0",
    "jiti": "^2.7.0",
    "yaml": "^2.9.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.5.3",
    "@earendil-works/pi-agent-core": "^0.77.0",
    "@earendil-works/pi-ai": "^0.77.0",
    "@earendil-works/pi-coding-agent": "^0.77.0",
    "@earendil-works/pi-tui": "^0.77.0",
    "@types/node": "^25.9.5",
    "esbuild": "^0.28.1",
    "tsx": "^4.23.0",
    "typescript": "^7.0.2"
  },
  "peerDependenciesMeta": {
    "@earendil-works/pi-agent-core": {
      "optional": true
    },
    "@earendil-works/pi-ai": {
      "optional": true
    },
    "@earendil-works/pi-coding-agent": {
      "optional": true
    },
    "@earendil-works/pi-tui": {
      "optional": true
    }
  },
  "readmeFilename": "README.md"
}
