{
  "name": "@ar-agents/mercadolibre",
  "version": "0.6.1",
  "description": "Independent open-source TypeScript SDK + Vercel AI SDK 6 toolkit for the Mercado Libre API. Not affiliated with Mercado Libre S.R.L. Wraps the agent-relevant API surface (items, categories, questions, orders, packs, claims, shipments, reputation, promotions, webhooks) with OAuth coalescing, /myfeeds replay, HITL gates on irreversible operations, and an opt-in ACP product feed generator. Community-built to fill the gap left when `mercadolibre/nodejs-sdk` was archived in February 2022. MERCADOLIBRE® is a registered trademark of Mercado Libre S.R.L.",
  "keywords": [
    "mercadolibre",
    "meli",
    "mla",
    "mlb",
    "mlm",
    "ai-sdk",
    "vercel-ai",
    "vercel-ai-sdk",
    "agent",
    "agents",
    "agentic",
    "argentina",
    "argentine",
    "ar",
    "latam",
    "ecommerce",
    "marketplace",
    "category-predictor",
    "items",
    "questions",
    "claims",
    "mediation",
    "mercado-envios",
    "reputation",
    "promotions",
    "webhooks",
    "missed-feeds",
    "edge-runtime",
    "oauth",
    "mcp"
  ],
  "license": "MIT",
  "author": "Nazareno Clemente <naza@naza.ar>",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/naza00000"
  },
  "homepage": "https://github.com/ar-agents/ar-agents/tree/main/packages/mercadolibre",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ar-agents/ar-agents.git",
    "directory": "packages/mercadolibre"
  },
  "bugs": {
    "url": "https://github.com/ar-agents/ar-agents/issues"
  },
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "ai-sdk": [
        "./dist/ai-sdk.d.ts"
      ],
      "testing": [
        "./dist/testing.d.ts"
      ],
      "feed": [
        "./dist/feed.d.ts"
      ]
    }
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./ai-sdk": {
      "import": {
        "types": "./dist/ai-sdk.d.ts",
        "default": "./dist/ai-sdk.js"
      },
      "require": {
        "types": "./dist/ai-sdk.d.cts",
        "default": "./dist/ai-sdk.cjs"
      }
    },
    "./testing": {
      "import": {
        "types": "./dist/testing.d.ts",
        "default": "./dist/testing.js"
      },
      "require": {
        "types": "./dist/testing.d.cts",
        "default": "./dist/testing.cjs"
      }
    },
    "./feed": {
      "import": {
        "types": "./dist/feed.d.ts",
        "default": "./dist/feed.js"
      },
      "require": {
        "types": "./dist/feed.d.cts",
        "default": "./dist/feed.cjs"
      }
    }
  },
  "files": [
    "dist",
    "cookbook",
    "postman",
    "README.md",
    "AGENTS.md",
    "CHANGELOG.md",
    "LICENSE",
    "SECURITY.md",
    "ARCHITECTURE.md",
    "MIGRATION.md",
    "GOVERNANCE.md",
    "POSITIONING.md",
    "README.es.md",
    "docs",
    "tools.manifest.json"
  ],
  "size-limit": [
    {
      "name": "ESM",
      "path": "dist/index.js",
      "limit": "60 KB",
      "ignore": [
        "node:crypto",
        "crypto"
      ]
    }
  ],
  "peerDependencies": {
    "ai": ">=6.0.0",
    "zod": ">=3.0.0"
  },
  "peerDependenciesMeta": {
    "ai": {
      "optional": true
    }
  },
  "devDependencies": {
    "@ai-sdk/anthropic": "^4.0.0",
    "@fast-check/vitest": "^0.2.1",
    "@types/node": "^20.19.39",
    "ai": "^7.0.0",
    "fast-check": "^4.7.0",
    "msw": "^2.6.0",
    "tsup": "^8.3.5",
    "tsx": "^4.19.0",
    "typescript": "^5.9.3",
    "vitest": "^2.1.8",
    "zod": "^4.4.3"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "dependencies": {
    "@ar-agents/core": "^0.4.0"
  },
  "scripts": {
    "build": "tsup",
    "test": "vitest run --exclude='test/integration/**' --exclude='test/bench/**'",
    "test:integration": "vitest run test/integration/",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "bench": "vitest bench --run test/bench/",
    "evals": "tsx evals/run.ts",
    "typecheck": "tsc --noEmit",
    "lint": "echo 'no lint configured yet'",
    "validate": "publint && attw --pack .",
    "size": "size-limit",
    "clean": "rm -rf dist"
  }
}