{
  "name": "@revenuecat/workflow-web-components-sdk",
  "version": "0.1.6",
  "description": "Typed, extensible postMessage transport bridge for RevenueCat embedded web components (Funnels web_view). Ships both the host and content sides of the bridge from one package.",
  "type": "module",
  "license": "MIT",
  "author": {
    "name": "RevenueCat, Inc."
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/RevenueCat/workflow-web-components-sdk.git"
  },
  "homepage": "https://github.com/RevenueCat/workflow-web-components-sdk#readme",
  "bugs": {
    "url": "https://github.com/RevenueCat/workflow-web-components-sdk/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": [
    "**/rc-sdk.js",
    "**/rc-host.iife.js"
  ],
  "exports": {
    ".": {
      "types": "./dist/host.d.ts",
      "import": "./dist/host.js"
    },
    "./content": {
      "types": "./dist/content.d.ts",
      "import": "./dist/content.js"
    }
  },
  "main": "./dist/host.js",
  "module": "./dist/host.js",
  "types": "./dist/host.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup && tsc -p tsconfig.build.json",
    "prepublishOnly": "npm run build",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:e2e": "playwright test",
    "demo": "node demo/server.mjs",
    "clean": "rm -rf dist"
  },
  "engines": {
    "node": ">=18"
  },
  "devDependencies": {
    "@playwright/test": "^1.61.1",
    "jsdom": "^29.1.1",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3",
    "vitest": "^4.1.9"
  }
}
