{
  "name": "@harness-engineering/intelligence",
  "version": "0.12.0",
  "description": "Intelligence pipeline for spec enrichment, complexity modeling, and pre-execution simulation",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "README.md"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "keywords": [
    "harness",
    "engineering",
    "intelligence",
    "enrichment",
    "complexity"
  ],
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Intense-Visions/harness-engineering.git",
    "directory": "packages/intelligence"
  },
  "bugs": {
    "url": "https://github.com/Intense-Visions/harness-engineering/issues"
  },
  "homepage": "https://github.com/Intense-Visions/harness-engineering/tree/main/packages/intelligence#readme",
  "dependencies": {
    "@anthropic-ai/sdk": "^0.95.1",
    "openai": "^6.0.0",
    "zod": "^3.25.76",
    "@harness-engineering/graph": "0.13.2",
    "@harness-engineering/types": "0.30.0"
  },
  "optionalDependencies": {
    "canary-test-cli": "^5.4.0"
  },
  "devDependencies": {
    "@types/node": "^22.19.15",
    "@vitest/coverage-v8": "^4.1.5",
    "tsup": "^8.5.1",
    "vitest": "^4.1.5"
  },
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts --tsconfig tsconfig.build.json",
    "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
    "lint": "eslint src",
    "typecheck": "tsc --noEmit",
    "clean": "node ../../scripts/clean.mjs dist",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage"
  }
}