{
  "name": "occ-orchestrator",
  "version": "0.5.0",
  "description": "OCC (Orchestrator Chain Chimera) — YAML-first LLM orchestrator with auto-parallelism, 30 pre-tools, 6 providers",
  "type": "module",
  "engines": {
    "node": ">=20"
  },
  "main": "dist/index.js",
  "bin": {
    "occ": "dist/bin/occ.js"
  },
  "files": [
    "dist",
    "frontend-dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "build:frontend": "cd ../frontend-react && npm run build && rm -rf ../mcp-server/frontend-dist && cp -r dist ../mcp-server/frontend-dist",
    "build:all": "npm run build && npm run build:frontend",
    "dev": "node --watch dist/index.js",
    "start": "node dist/index.js",
    "rest": "node dist/rest.js",
    "occ": "node dist/bin/occ.js",
    "lint": "eslint src/",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "prepublishOnly": "npm run build:all"
  },
  "keywords": [
    "claude",
    "mcp",
    "ai-agents",
    "workflow-orchestration",
    "chain",
    "llm",
    "automation",
    "yaml",
    "typescript"
  ],
  "author": "lacausecrypto",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lacausecrypto/OCC.git"
  },
  "homepage": "https://github.com/lacausecrypto/OCC#readme",
  "bugs": {
    "url": "https://github.com/lacausecrypto/OCC/issues"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.7.0",
    "@types/node-cron": "^3.0.11",
    "better-sqlite3": "^12.8.0",
    "express": "^4.18.2",
    "express-rate-limit": "^8.3.2",
    "js-yaml": "^4.1.1",
    "node-cron": "^4.2.1",
    "playwright-core": "^1.58.2",
    "swagger-ui-express": "^5.0.1",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/better-sqlite3": "^7.6.13",
    "@types/express": "^4.17.21",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^20.11.0",
    "@types/supertest": "^7.2.0",
    "@types/swagger-ui-express": "^4.1.8",
    "@vitest/coverage-v8": "^4.1.2",
    "eslint": "^10.2.0",
    "supertest": "^7.2.2",
    "typescript": "^5.3.3",
    "typescript-eslint": "^8.58.0",
    "vitest": "^4.1.1"
  }
}
