{
  "name": "overlord-cli",
  "version": "0.2607081118.0",
  "description": "Overlord CLI — management, agent protocol, and runner for OpenOverlord",
  "type": "module",
  "engines": {
    "node": ">=24"
  },
  "bin": {
    "overlord": "bin/ovld.mjs",
    "ovld": "bin/ovld.mjs"
  },
  "files": [
    "bin/",
    "dist/index.js",
    "dist/index.js.map",
    "dist/connectors/**",
    "scripts/postinstall.mjs"
  ],
  "scripts": {
    "clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
    "build": "node scripts/build.mjs",
    "typecheck": "../node_modules/.bin/tsc --project tsconfig.build.json --noEmit",
    "test": "yarn build && tsx --test 'test/**/*.test.ts'",
    "test:e2e": "yarn build && OVLD_PROTOCOL_E2E=1 tsx --test 'test/e2e/**/*.e2e.test.ts'",
    "prepack": "yarn build",
    "postinstall": "node scripts/postinstall.mjs"
  },
  "devDependencies": {
    "@overlord/contract": "0.1.0",
    "@overlord/core": "0.1.0",
    "@overlord/database": "0.1.0",
    "esbuild": "^0.28.0",
    "smol-toml": "^1.6.1"
  },
  "keywords": [
    "overlord",
    "ai",
    "agents",
    "cli",
    "ovld"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cooperativ-labs/OpenOverlord.git",
    "directory": "cli"
  },
  "homepage": "https://github.com/cooperativ-labs/OpenOverlord/tree/main/cli#readme",
  "bugs": {
    "url": "https://github.com/cooperativ-labs/OpenOverlord/issues"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  }
}