{
  "name": "cardan",
  "version": "0.21.0",
  "description": "Zero-dependency TypeScript AI and LLM SDK for OpenAI, Anthropic, Gemini, xAI, Groq, and Modal",
  "license": "MIT",
  "author": "cch137",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cch137/cardan.git"
  },
  "homepage": "https://github.com/cch137/cardan#readme",
  "bugs": {
    "url": "https://github.com/cch137/cardan/issues"
  },
  "keywords": [
    "llm",
    "ai",
    "ai-sdk",
    "llm-sdk",
    "llm-client",
    "llm-adapter",
    "multi-provider",
    "model-provider",
    "openai",
    "gpt",
    "responses-api",
    "anthropic",
    "claude",
    "gemini",
    "google-gemini",
    "xai",
    "grok",
    "groq",
    "modal",
    "streaming",
    "tool-calling",
    "function-calling",
    "structured-output",
    "json-schema",
    "zod",
    "embeddings",
    "vision",
    "reasoning",
    "web-search",
    "conversation",
    "agent",
    "failover",
    "rate-limit",
    "typescript",
    "node",
    "deno",
    "edge-runtime",
    "zero-dependency",
    "fetch"
  ],
  "type": "module",
  "sideEffects": false,
  "bin": {
    "cardan": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "tsdown",
    "typecheck": "tsc --noEmit",
    "test": "tsx --test test/*.test.ts",
    "release": "node ../../scripts/release/publish.mjs",
    "prepublishOnly": "npm run typecheck && npm test && npm run build"
  },
  "releaseConfig": {
    "checks": [
      "typecheck",
      "test"
    ],
    "requiredFiles": [
      "README.md",
      "LICENSE"
    ],
    "artifacts": [
      "dist/index.js",
      "dist/index.d.ts"
    ]
  },
  "peerDependencies": {
    "zod": "^4.0.0"
  },
  "peerDependenciesMeta": {
    "zod": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "tsdown": "^0.15.7",
    "tsx": "^4.20.0",
    "typescript": "^5.9.3",
    "zod": "^4.1.12"
  }
}
