{
  "name": "@llm-ports/capabilities",
  "version": "0.1.0-alpha.32",
  "description": "Reusable cognitive operation factories for llm-ports: classify, score, draft, summarize, extract, plan, analyze. Configure once at definition time, call many times.",
  "license": "MIT",
  "author": "Babak Abbaschian",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "dependencies": {
    "@llm-ports/core": "0.1.0-alpha.32"
  },
  "peerDependencies": {
    "zod": ">=3.24.0 <5"
  },
  "devDependencies": {
    "tsup": "^8.3.0",
    "typescript": "^5.6.3",
    "vitest": "^2.1.4",
    "zod": "^3.25.76"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/baabakk/llm-ports.git",
    "directory": "packages/capabilities"
  },
  "homepage": "https://github.com/baabakk/llm-ports/tree/main/packages/capabilities#readme",
  "bugs": {
    "url": "https://github.com/baabakk/llm-ports/issues"
  },
  "keywords": [
    "llm",
    "ai",
    "typescript",
    "generative-ai",
    "llm-ports",
    "llm-capabilities",
    "capabilities",
    "classify",
    "score",
    "draft",
    "summarize",
    "extract",
    "plan",
    "analyze",
    "structured-output",
    "zod",
    "json-mode",
    "factory-pattern",
    "reusable-prompts",
    "production-llm"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}