{
  "name": "@scrubbe-auth/location-tracker",
  "version": "1.0.2",
  "description": "Location and IP tracking for analytics with privacy controls",
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "rollup -c ../../rollup.config.js",
    "build:tsc": "tsc",
    "build:watch": "rollup -c ../../rollup.config.js --watch",
    "dev": "rollup -c ../../rollup.config.js --watch",
    "clean":  "node -e \"const fs=require('fs'); if(fs.existsSync('dist')) fs.rmSync('dist', {recursive: true, force: true});\"",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write src/**/*.{ts,js,json}",
    "typecheck": "tsc --noEmit",
    "prepare": "npm run build"
  },
  "peerDependencies": {
    "@scrubbe-auth/shared": "workspace:*"
  },
  "devDependencies": {
    "typescript": "^5.2.2"
  },
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/scrubbe-auth/analytics.git",
    "directory": "packages/location-tracker"
  },
  "bugs": {
    "url": "https://github.com/scrubbe-auth/analytics/issues"
  },
  "homepage": "https://github.com/scrubbe-auth/analytics/tree/main/packages/location-tracker#readme",
  "keywords": [
    "geolocation",
    "ip-geolocation",
    "location-tracking",
    "gps",
    "privacy",
    "gdpr",
    "analytics",
    "scrubbe-auth"
  ],
  "engines": {
    "node": ">=14.0.0"
  },
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not dead"
  ]
}