{
  "name": "@groeponline/pi-missions",
  "version": "0.6.0",
  "description": "Persistent mission orchestration for Pi: durable plans, task queues, evidence trails, SQLite state, resumable execution, and handoffs across agent sessions.",
  "type": "module",
  "private": false,
  "keywords": [
    "pi-package",
    "pi-extension",
    "pi-coding-agent",
    "groeponline",
    "missions",
    "coding-agent",
    "orchestration",
    "task-management",
    "sqlite",
    "cli",
    "persistent-agent",
    "workflow",
    "state-management",
    "task-queue",
    "resumable",
    "evidence",
    "agent-state"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/GroepOnline/pi-missions.git"
  },
  "homepage": "https://github.com/GroepOnline/pi-missions#readme",
  "bugs": {
    "url": "https://github.com/GroepOnline/pi-missions/issues"
  },
  "author": "GroepOnline",
  "license": "MIT",
  "pi": {
    "extensions": [
      "./dist/index.js"
    ],
    "image": "https://raw.githubusercontent.com/GroepOnline/pi-missions/main/docs/images/missions_banner.png"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "cross-env NODE_OPTIONS=--max-old-space-size=4096 tsup && node scripts/copy-build-assets.mjs",
    "check": "cross-env NODE_OPTIONS=--max-old-space-size=4096 tsc --noEmit",
    "lint": "cross-env NODE_OPTIONS=--max-old-space-size=4096 tsc --noEmit",
    "test": "cross-env NODE_OPTIONS=--max-old-space-size=4096 vitest run",
    "bench": "vitest bench",
    "prepublishOnly": "npm run build && npm run verify:pi-package",
    "db:init": "node dist/cli/index.js doctor",
    "test:coverage": "cross-env NODE_OPTIONS=--max-old-space-size=4096 vitest run --coverage",
    "smoke:ci": "node scripts/ci-smoke.mjs",
    "release": "node scripts/release.mjs",
    "verify:package": "node scripts/verify-package.mjs && node scripts/verify-pi-package-contract.mjs",
    "verify:release": "node scripts/release.mjs auto --dry-run",
    "verify:pi-package": "node scripts/verify-pi-package-contract.mjs"
  },
  "peerDependencies": {
    "@earendil-works/pi-ai": "*",
    "@earendil-works/pi-coding-agent": "*",
    "@earendil-works/pi-tui": "*"
  },
  "dependencies": {
    "@sinclair/typebox": "^0.31.28",
    "proper-lockfile": "^4.1.2"
  },
  "optionalDependencies": {
    "better-sqlite3": "^11.3.0"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.8",
    "@types/node": "^22.19.18",
    "@types/proper-lockfile": "^4.1.2",
    "@vitest/coverage-v8": "^4.1.7",
    "cross-env": "^10.1.0",
    "tsup": "^8.0.0",
    "typescript": "^5.6.0",
    "vitest": "^4.1.7"
  },
  "bin": {
    "pi-missions": "./dist/cli/index.js"
  },
  "engines": {
    "node": ">=22.5.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  }
}
