{
  "name": "@flopflip/react-broadcast",
  "version": "15.1.10",
  "description": "A feature toggle wrapper to use LaunchDarkly with React",
  "keywords": [
    "LaunchDarkly",
    "client",
    "feature-flags",
    "feature-toggles",
    "react"
  ],
  "homepage": "https://github.com/tdeekens/flopflip#readme",
  "bugs": {
    "url": "https://github.com/tdeekens/flopflip/issues"
  },
  "license": "MIT",
  "author": "Tobias Deekens <nerd@tdeekens.name>",
  "repository": {
    "type": "git",
    "url": "https://github.com/tdeekens/flopflip.git",
    "directory": "packages/react-broadcast"
  },
  "files": [
    "readme.md",
    "dist/**"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.js",
  "browser": "./dist/index.js",
  "typesVersions": {
    "*": {
      ".": [
        "dist/*.d.ts",
        "dist/*.d.cts"
      ]
    }
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@babel/runtime": "7.29.2",
    "use-sync-external-store": "1.6.0",
    "@flopflip/react": "15.1.10",
    "@flopflip/types": "15.1.10"
  },
  "devDependencies": {
    "@types/react": "19.2.14",
    "@types/react-dom": "19.2.3",
    "react": "19.2.6",
    "react-dom": "19.2.6",
    "tsup": "8.5.1",
    "@flopflip/combine-adapters": "15.1.10",
    "@flopflip/localstorage-adapter": "15.1.10",
    "@flopflip/memory-adapter": "15.1.10",
    "@flopflip/test-utils": "15.1.10",
    "@flopflip/tsconfig": "15.1.10"
  },
  "peerDependencies": {
    "react": "18.x || 19.x",
    "react-dom": "18.x || 19.x"
  },
  "scripts": {
    "build": "rimraf dist && tsup",
    "check-types": "tsc --noEmit",
    "test": "vitest --run",
    "test:watch": "vitest",
    "dev": "tsup --watch --clean=false"
  }
}