{
  "name": "@mcp-b/webmcp-types",
  "version": "3.0.0",
  "description": "Strict TypeScript type definitions for the WebMCP core API (document.modelContext)",
  "keywords": [
    "document-modelcontext",
    "model-context",
    "navigator-modelcontext",
    "types",
    "typescript",
    "web-standard",
    "webmcp"
  ],
  "homepage": "https://docs.mcp-b.ai/packages/webmcp-types",
  "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-types"
  },
  "files": [
    "dist",
    "src/common.ts",
    "src/index.ts",
    "src/json-schema.ts",
    "src/model-context.ts",
    "src/tool.ts"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts"
    }
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "devDependencies": {
    "@vitest/coverage-v8": "^4.1.7",
    "playwright": "^1.60.0",
    "typescript": "^5.8.3",
    "vite-plus": "^0.1.22",
    "vitest": "npm:@voidzero-dev/vite-plus-test@latest"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "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 && pnpm run test:conformance",
    "test:browser": "vp test run --config vitest.browser.config.ts --browser.headless",
    "test:browser:ui": "vp test --config vitest.browser.config.ts --browser",
    "test:conformance": "vp test run --config vitest.conformance.config.ts",
    "typecheck": "tsc --noEmit && vp test run --typecheck --silent"
  }
}