{
  "name": "@sentry/react",
  "version": "11.0.0",
  "description": "Official Sentry SDK for React.js",
  "repository": "git://github.com/getsentry/sentry-javascript.git",
  "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/react",
  "author": "Sentry",
  "license": "MIT",
  "engines": {
    "node": ">=20.19.0 <22.0.0 || >=22.12.0 <23.0.0 || >=23.2.0"
  },
  "files": [
    "/build"
  ],
  "main": "build/cjs/index.js",
  "module": "build/esm/index.js",
  "types": "build/types/index.d.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "react-native": {
        "types": "./build/types/index.d.ts",
        "default": "./build/esm/index.js"
      },
      "import": {
        "types": "./build/types/index.d.ts",
        "default": "./build/esm/index.js"
      },
      "require": {
        "types": "./build/types/index.d.ts",
        "default": "./build/cjs/index.js"
      }
    },
    "./react-router": {
      "react-native": {
        "types": "./build/types/react-router.d.ts",
        "default": "./build/esm/react-router.js"
      },
      "import": {
        "types": "./build/types/react-router.d.ts",
        "default": "./build/esm/react-router.js"
      },
      "require": {
        "types": "./build/types/react-router.d.ts",
        "default": "./build/cjs/react-router.js"
      }
    }
  },
  "typesVersions": {
    "*": {
      "react-router": [
        "build/types/react-router.d.ts"
      ]
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@sentry/browser": "11.0.0",
    "@sentry/core": "11.0.0",
    "@sentry/conventions": "^0.23.0"
  },
  "peerDependencies": {
    "react": "17.x || 18.x || 19.x",
    "react-router": "6.x || 7.x || 8.x"
  },
  "peerDependenciesMeta": {
    "react-router": {
      "optional": true
    }
  },
  "devDependencies": {
    "@testing-library/react": "^15.0.5",
    "@testing-library/react-hooks": "^7.0.2",
    "@types/history-4": "npm:@types/history@4.7.8",
    "@types/history-5": "npm:@types/history@4.7.8",
    "@types/node-fetch": "^2.6.11",
    "@types/react": "17.0.3",
    "@types/react-router-4": "npm:@types/react-router@4.0.25",
    "@types/react-router-5": "npm:@types/react-router@5.1.20",
    "history-4": "npm:history@4.6.0",
    "history-5": "npm:history@4.9.0",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "react-router": "^7.18.3",
    "react-router-3": "npm:react-router@3.2.0",
    "react-router-4": "npm:react-router@4.1.0",
    "react-router-5": "npm:react-router@5.3.4",
    "react-router-6": "npm:react-router@6.30.4",
    "redux": "^4.0.5"
  },
  "scripts": {
    "build": "run-p build:transpile build:types",
    "build:dev": "yarn build",
    "build:transpile": "rollup -c rollup.npm.config.mjs",
    "build:types": "tsc -p tsconfig.types.json",
    "build:watch": "run-p build:transpile:watch",
    "build:dev:watch": "yarn build:watch",
    "build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch",
    "build:tarball": "npm pack",
    "circularDepCheck": "madge --circular src/index.ts && madge --circular src/react-router.ts",
    "clean": "rimraf build coverage sentry-react-*.tgz",
    "lint:fix": "oxlint . --fix --type-aware",
    "lint": "oxlint . --type-aware",
    "lint:types": "oxlint src --type-aware --type-check",
    "lint:es-compatibility": "es-check es2020 ./build/cjs/*.js && es-check es2020 ./build/esm/*.js --module",
    "test": "vitest run",
    "test:watch": "vitest --watch",
    "yalc:publish": "yalc publish --push --sig"
  },
  "volta": {
    "extends": "../../package.json"
  },
  "sideEffects": false
}
