{
  "name": "reforge-ai",
  "version": "0.3.1",
  "description": "Agentic orchestration and semantic enforcement for structured LLM output, with native JSON repair and deterministic retries.",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./openai-compatible": {
      "import": {
        "types": "./dist/providers/openai-compatible.d.ts",
        "default": "./dist/providers/openai-compatible.js"
      },
      "require": {
        "types": "./dist/providers/openai-compatible.d.cts",
        "default": "./dist/providers/openai-compatible.cjs"
      }
    },
    "./anthropic": {
      "import": {
        "types": "./dist/providers/anthropic.d.ts",
        "default": "./dist/providers/anthropic.js"
      },
      "require": {
        "types": "./dist/providers/anthropic.d.cts",
        "default": "./dist/providers/anthropic.cjs"
      }
    },
    "./openrouter": {
      "import": {
        "types": "./dist/providers/openrouter.d.ts",
        "default": "./dist/providers/openrouter.js"
      },
      "require": {
        "types": "./dist/providers/openrouter.d.cts",
        "default": "./dist/providers/openrouter.cjs"
      }
    },
    "./groq": {
      "import": {
        "types": "./dist/providers/groq.d.ts",
        "default": "./dist/providers/groq.js"
      },
      "require": {
        "types": "./dist/providers/groq.d.cts",
        "default": "./dist/providers/groq.cjs"
      }
    },
    "./together": {
      "import": {
        "types": "./dist/providers/together.d.ts",
        "default": "./dist/providers/together.js"
      },
      "require": {
        "types": "./dist/providers/together.d.cts",
        "default": "./dist/providers/together.cjs"
      }
    },
    "./google": {
      "import": {
        "types": "./dist/providers/google.d.ts",
        "default": "./dist/providers/google.js"
      },
      "require": {
        "types": "./dist/providers/google.d.cts",
        "default": "./dist/providers/google.cjs"
      }
    }
  },
  "typesVersions": {
    "*": {
      "openai-compatible": [
        "dist/providers/openai-compatible.d.ts"
      ],
      "anthropic": [
        "dist/providers/anthropic.d.ts"
      ],
      "openrouter": [
        "dist/providers/openrouter.d.ts"
      ],
      "groq": [
        "dist/providers/groq.d.ts"
      ],
      "together": [
        "dist/providers/together.d.ts"
      ],
      "google": [
        "dist/providers/google.d.ts"
      ]
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run test && npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Champion2005/reforge.git"
  },
  "homepage": "https://reforge-ai-97558.web.app",
  "bugs": {
    "url": "https://github.com/Champion2005/reforge/issues"
  },
  "keywords": [
    "json",
    "repair",
    "validation",
    "zod",
    "llm",
    "deterministic",
    "typescript",
    "agentic",
    "openai",
    "anthropic",
    "edge-runtime",
    "json-repair",
    "llm-output",
    "schema-validation",
    "genai"
  ],
  "author": "Champion2005",
  "license": "GPL-3.0-only",
  "engines": {
    "node": ">=16.0.0"
  },
  "peerDependencies": {
    "@anthropic-ai/sdk": "^0.30.0",
    "@google/generative-ai": "^0.21.0",
    "openai": "^4.0.0",
    "zod": "^3.22.0"
  },
  "peerDependenciesMeta": {
    "openai": {
      "optional": true
    },
    "@anthropic-ai/sdk": {
      "optional": true
    },
    "@google/generative-ai": {
      "optional": true
    }
  },
  "devDependencies": {
    "@vitest/coverage-v8": "^3.0.0",
    "tsup": "^8.0.0",
    "typescript": "^5.0.0",
    "vitest": "^3.0.0",
    "zod": "^3.22.0"
  }
}
