{
  "name": "expo-osm-sdk",
  "version": "2.4.0",
  "description": "OpenStreetMap component for React Native with Expo",
  "main": "build/index.js",
  "types": "build/index.d.ts",
  "files": [
    "build",
    "android",
    "ios",
    "expo-module.config.json",
    "expo-plugin.js",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "BENCHMARKS.md",
    "docs"
  ],
  "exports": {
    ".": {
      "types": "./build/index.d.ts",
      "react-native": "./build/index.js",
      "default": "./build/index.js"
    },
    "./plugin": {
      "default": "./expo-plugin.js"
    }
  },
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "build:all": "npm run build",
    "clean": "rm -rf build",
    "prepare": "npm run build:all",
    "prepublishOnly": "npm run build:all",
    "test": "jest",
    "test:unit": "jest --testMatch='**/__tests__/**/*.test.(ts|tsx)'",
    "test:integration": "jest --testMatch='**/__tests__/integration/**/*.test.(ts|tsx)'",
    "test:performance": "jest --testMatch='**/__tests__/performance/**/*.test.(ts|tsx)'",
    "test:compatibility": "jest --testMatch='**/__tests__/integration/compatibility.test.(ts|tsx)'",
    "test:accuracy": "jest --testMatch='**/__tests__/utils/coordinate.test.(ts|tsx)'",
    "test:coverage": "jest --coverage",
    "test:watch": "jest --watch",
    "test:all": "node scripts/test-runner.js",
    "test:ci": "node scripts/test-runner.js --coverage",
    "benchmark": "npm run build && node --expose-gc scripts/benchmark.js",
    "lint": "eslint src/**/*.{ts,tsx}",
    "lint:fix": "eslint src/**/*.{ts,tsx} --fix",
    "format": "prettier --write src/**/*.{ts,tsx}",
    "type-check": "tsc --noEmit",
    "version": "npm run test:all && npm run build:all",
    "postversion": "git push && git push --tags",
    "dev": "npm run build:watch",
    "example": "cd example && npm start"
  },
  "keywords": [
    "expo",
    "expo-module",
    "expo-plugin",
    "development-build",
    "react-native",
    "openstreetmap",
    "osm",
    "maps",
    "maplibre",
    "mobile",
    "native",
    "ios",
    "android",
    "typescript",
    "gps",
    "location",
    "geofencing",
    "markers",
    "overlays"
  ],
  "author": {
    "name": "Saikat Maiti",
    "email": "mapdevsaikat@gmail.com",
    "url": "https://github.com/mapdevsaikat"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mapdevsaikat/expo-osm-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/mapdevsaikat/expo-osm-sdk/issues"
  },
  "homepage": "https://github.com/mapdevsaikat/expo-osm-sdk#readme",
  "dependencies": {},
  "devDependencies": {
    "@babel/core": "^7.28.0",
    "@babel/preset-env": "^7.28.0",
    "@babel/preset-react": "^7.27.1",
    "@babel/preset-typescript": "^7.27.1",
    "@testing-library/jest-native": "^5.4.3",
    "@testing-library/react-native": "^12.9.0",
    "@types/jest": "^30.0.0",
    "@types/react": "^18.3.0",
    "@types/react-native": "^0.73.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "babel-jest": "^30.0.4",
    "eslint": "^8.0.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-react": "^7.33.0",
    "eslint-plugin-react-native": "^4.1.0",
    "identity-obj-proxy": "^3.0.0",
    "jest": "^29.0.0",
    "jest-environment-jsdom": "^30.0.5",
    "node-fetch": "^2.7.0",
    "prettier": "^3.0.0",
    "react": "18.3.1",
    "react-native": "^0.74.0",
    "react-native-gesture-handler": "^2.15.0",
    "react-test-renderer": "18.3.1",
    "ts-jest": "^29.4.0",
    "typescript": "^5.0.0",
    "expo-modules-core": "^1.12.0"
  },
  "peerDependencies": {
    "@expo/config-plugins": ">=7.0.0",
    "expo": ">=49.0.0",
    "maplibre-gl": ">=3.0.0",
    "react": ">=18.0.0 <20.0.0",
    "react-native": ">=0.72.0"
  },
  "peerDependenciesMeta": {
    "expo": {
      "optional": false
    },
    "react": {
      "optional": false
    },
    "react-native": {
      "optional": false
    },
    "@expo/config-plugins": {
      "optional": true
    },
    "maplibre-gl": {
      "optional": true,
      "requiredForPlatform": "web"
    }
  },
  "engines": {
    "node": ">=22.0.0",
    "npm": ">=10.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "expo": {
    "name": "expo-osm-sdk",
    "slug": "expo-osm-sdk"
  },
  "react-native": {
    "android": {
      "sourceDir": "android"
    },
    "ios": {
      "podspecPath": "ios/ExpoOsmSdk.podspec"
    }
  }
}
