{
  "name": "@mcp-b/webmcp-polyfill",
  "version": "5.1.0",
  "description": "Strict WebMCP core runtime polyfill for document.modelContext (with deprecated navigator.modelContext alias)",
  "keywords": [
    "browser",
    "model-context",
    "navigator-modelcontext",
    "polyfill",
    "webmcp"
  ],
  "homepage": "https://docs.mcp-b.ai/packages/webmcp-polyfill/reference",
  "bugs": {
    "url": "https://github.com/WebMCP-org/npm-packages/issues"
  },
  "license": "MIT",
  "author": "Alex Nahas",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/WebMCP-org/npm-packages.git",
    "directory": "packages/webmcp-polyfill"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "sideEffects": [
    "./dist/index.iife.js"
  ],
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "browser": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./schema": {
      "types": "./dist/schema.d.ts",
      "import": "./dist/schema.js",
      "default": "./dist/schema.js"
    },
    "./iife": {
      "script": "./dist/index.iife.js",
      "default": "./dist/index.iife.js"
    }
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "dependencies": {
    "@standard-schema/spec": "^1.1.0",
    "@mcp-b/webmcp-types": "5.1.0"
  },
  "devDependencies": {
    "@vitest/coverage-v8": "4.1.8",
    "playwright": "^1.62.1",
    "typescript": "^5.8.3",
    "vite-plus": "0.1.24",
    "vitest": "npm:@voidzero-dev/vite-plus-test@0.1.24"
  },
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "vp pack",
    "check": "vp check --fix",
    "clean": "rm -rf dist",
    "format": "vp fmt --write",
    "lint": "vp lint --fix",
    "publish:dry": "pnpm publish --access public --dry-run",
    "publish:npm": "pnpm publish --access public",
    "test": "vp test run",
    "test:conformance": "vp test run conformance/polyfill-runtime.e2e.test.ts --browser.headless",
    "test:coverage": "vp test run --coverage",
    "typecheck": "tsc --noEmit"
  }
}