{
  "name": "@mcp-b/webmcp-polyfill",
  "version": "2.2.0",
  "description": "Strict WebMCP core runtime polyfill for navigator.modelContext",
  "keywords": [
    "webmcp",
    "model-context",
    "navigator-modelcontext",
    "polyfill",
    "browser"
  ],
  "homepage": "https://docs.mcp-b.ai/packages/webmcp-polyfill",
  "bugs": {
    "url": "https://github.com/WebMCP-org/npm-packages/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/WebMCP-org/npm-packages.git",
    "directory": "packages/webmcp-polyfill"
  },
  "license": "MIT",
  "author": "Alex Nahas",
  "sideEffects": true,
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./iife": {
      "script": "./dist/index.iife.js",
      "default": "./dist/index.iife.js"
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "browser": "./dist/index.iife.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@cfworker/json-schema": "^4.1.1",
    "@standard-schema/spec": "^1.1.0",
    "@mcp-b/webmcp-types": "2.2.0"
  },
  "devDependencies": {
    "@vitest/browser": "^4.0.18",
    "@vitest/browser-playwright": "^4.0.18",
    "@vitest/coverage-v8": "^4.0.18",
    "happy-dom": "^20.0.0",
    "playwright": "^1.58.0",
    "tsdown": "^0.15.10",
    "typescript": "^5.8.3",
    "vitest": "^4.0.18"
  },
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "pnpm --filter @mcp-b/webmcp-types build && tsdown",
    "check": "biome check --write .",
    "clean": "rm -rf dist .turbo",
    "format": "biome format --write .",
    "lint": "biome lint --write .",
    "publish:dry": "pnpm publish --access public --dry-run",
    "publish:npm": "pnpm publish --access public",
    "test": "vitest run",
    "test:browser": "vitest run --config vitest.browser.config.ts --browser.headless",
    "test:browser:ui": "vitest --config vitest.browser.config.ts --browser",
    "typecheck": "pnpm --filter @mcp-b/webmcp-types build && tsc --noEmit && vitest run --typecheck --silent"
  }
}