{
  "name": "@openserv-labs/ai-cofounder",
  "version": "0.1.7",
  "description": "AI cofounder — multi-agent workspace manager built on Pi; orchestrates AI coding agents with tick-based scheduling, priority queues, inbox IPC, cron jobs, and optional Docker sandbox isolation.",
  "type": "module",
  "license": "MIT",
  "author": "OpenServ",
  "homepage": "https://github.com/openserv-labs/ai-cofounder#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/openserv-labs/ai-cofounder.git"
  },
  "bugs": {
    "url": "https://github.com/openserv-labs/ai-cofounder/issues"
  },
  "keywords": [
    "agent",
    "ai",
    "openserv",
    "multi-agent",
    "workspace",
    "llm",
    "orchestration"
  ],
  "engines": {
    "node": ">=20"
  },
  "main": "dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js"
    }
  },
  "bin": {
    "ai-cofounder": "dist/index.js"
  },
  "files": [
    "dist",
    "ui/dist",
    "examples",
    "docs",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "dev": "tsx src/index.ts",
    "build": "pnpm typecheck && node scripts/build.mjs && pnpm ui:build",
    "typecheck": "tsc -p tsconfig.build.json --noEmit",
    "clean": "rm -rf dist ui/dist",
    "lint": "eslint --fix src/ test/",
    "lint:check": "eslint src/ test/",
    "test": "vitest run",
    "test:watch": "vitest",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "ui:build": "pnpm -C ui build",
    "ui:lint": "pnpm -C ui lint",
    "ui:check": "pnpm -C ui check",
    "prepublishOnly": "pnpm clean && pnpm build",
    "pack:dry": "npm pack --dry-run"
  },
  "dependencies": {
    "@mariozechner/pi-agent-core": "0.67.68",
    "@mariozechner/pi-ai": "0.67.68",
    "@mariozechner/pi-coding-agent": "0.67.68",
    "@sinclair/typebox": "^0.34.0",
    "commander": "^13.1.0",
    "cron-parser": "^5.5.0",
    "dotenv": "^17.2.4",
    "proper-lockfile": "^4.1.2",
    "yaml": "^2.8.2"
  },
  "devDependencies": {
    "@types/node": "^22.13.4",
    "@types/proper-lockfile": "^4.1.4",
    "esbuild": "^0.28.0",
    "eslint": "^9.20.0",
    "prettier": "^3.8.1",
    "tsx": "^4.19.3",
    "typescript": "^5.8.2",
    "typescript-eslint": "^8.0.0",
    "vitest": "^4.0.18"
  }
}
