{
  "name": "@markdown-for-agents/web",
  "version": "1.3.4",
  "description": "Web Standard middleware — serve Markdown to AI agents from any runtime via content negotiation",
  "type": "module",
  "sideEffects": false,
  "engines": {
    "node": ">=22"
  },
  "files": [
    "dist",
    "LICENSE"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs"
    }
  },
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "dependencies": {
    "markdown-for-agents": "1.3.4"
  },
  "keywords": [
    "html",
    "markdown",
    "converter",
    "ai",
    "agents",
    "llm",
    "tokens",
    "middleware",
    "web",
    "fetch",
    "request",
    "response",
    "cloudflare-workers",
    "deno",
    "bun",
    "content-negotiation"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/KKonstantinov/markdown-for-agents.git",
    "directory": "packages/middleware/web"
  },
  "homepage": "https://github.com/KKonstantinov/markdown-for-agents/tree/main/packages/middleware/web#readme",
  "bugs": {
    "url": "https://github.com/KKonstantinov/markdown-for-agents/issues"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "license": "MIT",
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:integration": "vitest run test/integration",
    "typecheck": "tsgo --noEmit",
    "release:jsr": "npx jsr publish --allow-dirty"
  }
}