{
  "name": "@mappedin/blue-dot",
  "version": "6.18.0-beta.0",
  "homepage": "https://developer.mappedin.com/",
  "private": false,
  "main": "lib/esm/index.js",
  "module": "lib/esm/index.js",
  "browser": "lib/esm/index.js",
  "types": "lib/esm/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/esm/index.d.ts",
      "import": "./lib/esm/index.js",
      "require": "./lib/esm/index.js"
    },
    "./rn": {
      "types": "./lib/rn/index-rn.d.ts",
      "import": "./lib/rn/index-rn.js",
      "require": "./lib/rn/index-rn.js"
    },
    "./react": {
      "types": "./lib/esm/react/index.d.ts",
      "import": "./lib/esm/react/index.js",
      "require": "./lib/esm/react/index.js"
    },
    "./debug": {
      "types": "./lib/esm/debug/index.d.ts",
      "import": "./lib/esm/debug/index.js",
      "require": "./lib/esm/debug/index.js"
    }
  },
  "typesVersions": {
    "*": {
      "rn": [
        "lib/rn/index-rn.d.ts"
      ],
      "debug": [
        "lib/esm/debug/index.d.ts"
      ]
    }
  },
  "files": [
    "lib",
    "README.md",
    "LICENSE.txt",
    "THIRD_PARTY_LICENSES.txt"
  ],
  "license": "SEE LICENSE IN LICENSE.txt",
  "dependencies": {
    "zod": "^4.0.0"
  },
  "peerDependencies": {
    "react": ">=16.8.0",
    "@mappedin/react-native-sdk": "^6.18.0",
    "@mappedin/mappedin-js": "^6.18.0",
    "@mappedin/react-sdk": "^6.18.0"
  },
  "peerDependenciesMeta": {
    "@mappedin/react-native-sdk": {
      "optional": true
    },
    "@mappedin/react-sdk": {
      "optional": true
    },
    "react": {
      "optional": true
    }
  },
  "devDependencies": {},
  "volta": {
    "extends": "../../package.json"
  },
  "scripts": {
    "start": "pnpm build && concurrently \"node scripts/build.mjs --watchChanges\" \"node scripts/start.mjs\"",
    "build:deps": "RN_BUILD=true npx turbo build --filter=@mappedin/blue-dot --ui stream",
    "build": "pnpm clean &&  tsc -b tsconfig.build.json && node scripts/build.mjs",
    "build:prod": "cross-env NODE_ENV=production RN_BUILD=true pnpm build",
    "build:rn": "cross-env RN_BUILD=true pnpm build",
    "types": "tsc -b",
    "version:ci": "pnpm version --no-commit-hooks --no-git-tag-version",
    "test": "jest --config jest.config.js",
    "test:cov": "pnpm test --coverage",
    "clean": "rm -rf lib/** && rm -rf examples/dist/**",
    "docs": "RN_BUILD=true npx turbo build --filter=@mappedin/blue-dot --ui stream && pnpm docs:build",
    "docs:build": "typedoc"
  }
}