{
  "name": "vexo-analytics",
  "version": "1.12.0",
  "description": "The analytics tool for React Native.",
  "type": "commonjs",
  "main": "./lib/commonjs/index.js",
  "module": "./lib/module/index.js",
  "types": "./lib/typescript/commonjs/src/index.d.ts",
  "source": "./src/index.ts",
  "bin": {
    "vexo-upload-sourcemaps": "./scripts/upload-sourcemaps.js"
  },
  "exports": {
    ".": {
      "source": "./src/index.ts",
      "import": {
        "types": "./lib/typescript/module/src/index.d.ts",
        "default": "./lib/module/index.js"
      },
      "require": {
        "types": "./lib/typescript/commonjs/src/index.d.ts",
        "default": "./lib/commonjs/index.js"
      }
    },
    "./expo-router": {
      "source": "./src/expo-router.ts",
      "import": {
        "types": "./lib/typescript/module/src/expo-router.d.ts",
        "default": "./lib/module/expo-router.js"
      },
      "require": {
        "types": "./lib/typescript/commonjs/src/expo-router.d.ts",
        "default": "./lib/commonjs/expo-router.js"
      }
    },
    "./expo-router-legacy": {
      "source": "./src/expo-router-legacy.ts",
      "import": {
        "types": "./lib/typescript/module/src/expo-router-legacy.d.ts",
        "default": "./lib/module/expo-router-legacy.js"
      },
      "require": {
        "types": "./lib/typescript/commonjs/src/expo-router-legacy.d.ts",
        "default": "./lib/commonjs/expo-router-legacy.js"
      }
    },
    "./expo-updates": {
      "source": "./src/expo-updates.ts",
      "import": {
        "types": "./lib/typescript/module/src/expo-updates.d.ts",
        "default": "./lib/module/expo-updates.js"
      },
      "require": {
        "types": "./lib/typescript/commonjs/src/expo-updates.d.ts",
        "default": "./lib/commonjs/expo-updates.js"
      }
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "files": [
    "src",
    "lib",
    "scripts/upload-sourcemaps.js",
    "android",
    "ios",
    "RNVexoAnalytics.podspec",
    "!android/build",
    "!android/gradle",
    "!android/gradlew",
    "!android/gradlew.bat",
    "!ios/build",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__"
  ],
  "scripts": {
    "test": "jest",
    "typescript": "tsc --noEmit",
    "lint": "eslint \"**/*.{js,ts,tsx}\"",
    "prepare": "bob build",
    "check:package": "attw --pack . --profile node16 && publint --strict --pack npm && node scripts/check-exports.js",
    "verify:expo-router": "node scripts/verify-expo-router.js",
    "version": "node scripts/sync-version.js && git add src/version.js",
    "example": "yarn --cwd example",
    "bootstrap": "yarn example && yarn && yarn example pods"
  },
  "keywords": [
    "react-native",
    "ios",
    "android"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vexotech/vexo-analytics.git"
  },
  "author": "vexo <developer@vexo.co> (https://vexo.co)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/vexotech/vexo-analytics/issues"
  },
  "homepage": "https://github.com/vexotech/vexo-analytics#readme",
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "provenance": false
  },
  "codegenConfig": {
    "name": "RNVexoAnalyticsSpec",
    "type": "modules",
    "jsSrcsDir": "src/specs",
    "android": {
      "javaPackageName": "com.vexoanalytics"
    }
  },
  "dependencies": {
    "async-mutex": "^0.5.0",
    "react-native-url-polyfill": "^4.0.0",
    "react-native-uuid": "^2.0.4"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.5",
    "@arkweid/lefthook": "^0.7.7",
    "@babel/core": "^7.18.13",
    "@babel/eslint-parser": "^7.18.2",
    "@babel/preset-react": "^7.18.6",
    "@commitlint/config-conventional": "^17.0.2",
    "@react-native-community/eslint-config": "^3.0.2",
    "@react-native/babel-preset": "0.74.83",
    "@react-navigation/native": "^5.1.5",
    "@types/jest": "^28.1.2",
    "@types/react": "~18.2.6",
    "@types/react-native": "0.72.2",
    "commitlint": "^17.0.2",
    "eslint": "^8.4.1",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-react": "^7.32.2",
    "jest": "^28.1.1",
    "pod-install": "^0.1.0",
    "prettier": "^2.0.5",
    "publint": "^0.3.23",
    "react": "18.2.0",
    "react-native": "0.74.1",
    "react-native-builder-bob": "^0.43.0",
    "typescript": "^5.8.3"
  },
  "resolutions": {
    "@types/react": "17.0.21",
    "ip-address": "^10.3.1",
    "serialize-javascript": "^7.0.3",
    "tmp": "^0.2.6"
  },
  "peerDependencies": {
    "@react-navigation/native": ">= 5.1.5",
    "react": "*",
    "react-native": "*"
  },
  "peerDependenciesMeta": {
    "@react-navigation/native": {
      "optional": true
    }
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/lib/",
      "<rootDir>/dependencies"
    ],
    "collectCoverageFrom": [
      "src/vexo/**/*.js",
      "src/index.ts",
      "src/expo-*.ts",
      "src/version.js",
      "!src/**/__tests__/**"
    ],
    "coverageThreshold": {
      "global": {
        "lines": 79
      }
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ],
    "rules": {
      "subject-case": [
        2,
        "never",
        [
          "upper-case",
          "pascal-case",
          "start-case"
        ]
      ]
    }
  },
  "eslintConfig": {
    "root": true,
    "parser": "@babel/eslint-parser",
    "parserOptions": {
      "requireConfigFile": false,
      "ecmaFeatures": {
        "jsx": true
      },
      "babelOptions": {
        "presets": [
          "@babel/preset-react"
        ]
      }
    },
    "extends": [
      "eslint:recommended",
      "@react-native-community",
      "prettier",
      "plugin:react/recommended"
    ],
    "rules": {
      "prettier/prettier": [
        "error",
        {
          "quoteProps": "consistent",
          "singleQuote": true,
          "tabWidth": 2,
          "trailingComma": "es5",
          "useTabs": false,
          "jsxBracketSameLine": true
        }
      ],
      "react-hooks/exhaustive-deps": "off",
      "react/prop-types": "off",
      "react/display-name": "off"
    },
    "overrides": [
      {
        "files": [
          "*.ts",
          "*.tsx"
        ],
        "parser": "@typescript-eslint/parser"
      }
    ]
  },
  "eslintIgnore": [
    "node_modules/",
    "lib/",
    "dependencies/"
  ],
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "es5",
    "useTabs": false
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      [
        "commonjs",
        {
          "esm": true
        }
      ],
      [
        "module",
        {
          "esm": true
        }
      ],
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  }
}
