{
  "name": "sortie-dogs",
  "version": "0.10.6",
  "description": "Bounded agent harness and validated orchestration loop plugin for OpenCode",
  "keywords": [
    "opencode",
    "opencode-plugin",
    "ai-orchestration",
    "multi-agent",
    "agent-harness",
    "harness-engineering",
    "coding-agent",
    "agentic-coding"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/zufall-upon/Sortie-dogs.git"
  },
  "bugs": {
    "url": "https://github.com/zufall-upon/Sortie-dogs/issues"
  },
  "homepage": "https://github.com/zufall-upon/Sortie-dogs#readme",
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  },
  "type": "module",
  "engines": {
    "node": ">=22.6.0"
  },
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./plugin": {
      "types": "./dist/plugin/opencode.d.ts",
      "import": "./dist/plugin/opencode.js"
    },
    "./plugin/stable": {
      "types": "./dist/plugin/legacy.d.ts",
      "import": "./dist/plugin/legacy.js"
    },
    "./server": {
      "types": "./dist/plugin/opencode.d.ts",
      "import": "./dist/plugin/opencode.js"
    },
    "./assets": {
      "types": "./dist/runtime-assets-v010.d.ts",
      "import": "./dist/runtime-assets-v010.js"
    }
  },
  "bin": {
    "sortie-dogs": "dist/cli/main.js"
  },
  "scripts": {
    "prebuild": "node --input-type=module --eval \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true });\"",
    "build": "tsc -p tsconfig.json",
    "postbuild": "node --input-type=module --eval \"import fs from 'node:fs'; const path = 'dist/cli/main.js'; const source = fs.readFileSync(path, 'utf8'); if (!source.startsWith('#!')) fs.writeFileSync(path, '#!/usr/bin/env node\\n' + source); if (process.platform !== 'win32') fs.chmodSync(path, 0o755);\"",
    "prepack": "npm run build",
    "pretest": "npm run build",
    "test": "node --experimental-strip-types --import ./test/setup.ts --test \"test/plugin.test.ts\" \"test/continuation.test.ts\" \"test/fast-lane.test.ts\"",
    "pretest:dispatch": "npm run build",
    "test:dispatch": "node --experimental-strip-types --import ./test/setup.ts --test --test-timeout=100000 --test-reporter=spec \"test/execution-plan.test.ts\" \"test/worktree-parallel-dispatch.test.ts\" \"test/acceptance-compiler.test.ts\" \"test/run-flight-ledger.test.ts\" \"test/evidence-capsule.test.ts\"",
    "pretest:integration": "npm run build",
    "test:integration": "node --experimental-strip-types --import ./test/setup.ts --test --test-timeout=1200000 --test-reporter=spec \"test/integration/worktree-parallel-dispatch.test.ts\"",
    "pretest:full": "npm run build",
    "test:full": "node --experimental-strip-types test/helpers/full-test-runner.ts"
  },
  "dependencies": {
    "ajv": "^8.17.1",
    "ajv-formats": "^3.0.1"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "typescript": "^5.9.0"
  }
}
