{
  "name": "recap-ux",
  "version": "1.0.1",
  "description": "Lightweight, privacy-first usability testing for web prototypes. Drop-in heatmaps, scroll depth, and AI-ready session exports with zero cookies and zero backend.",
  "type": "module",
  "main": "./dist/recap.cjs.js",
  "module": "./dist/recap.esm.js",
  "browser": "./dist/recap.min.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/recap.esm.js",
      "require": "./dist/recap.cjs.js",
      "default": "./dist/recap.min.js"
    },
    "./react": {
      "types": "./dist/react.d.ts",
      "import": "./dist/react.esm.js",
      "require": "./dist/react.cjs.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "keywords": [
    "usability",
    "usability-testing",
    "ux-research",
    "heatmap",
    "click-tracking",
    "scroll-depth",
    "prototype",
    "user-testing",
    "privacy-first",
    "session-recording",
    "click-heatmap",
    "ux",
    "ui",
    "analytics",
    "gdpr"
  ],
  "author": {
    "name": "Tony Craig",
    "url": "https://www.npmjs.com/~tonyarbor"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tonyarbor/recap-ux.git"
  },
  "bugs": {
    "url": "https://github.com/tonyarbor/recap-ux/issues"
  },
  "homepage": "https://recap-ux.com",
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "dev": "vite",
    "build": "vite build && vite build --config vite.react.config.ts && tsc --emitDeclarationOnly",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src --ext .ts,.tsx",
    "format": "prettier --write \"src/**/*.{ts,tsx}\"",
    "prepublishOnly": "npm run typecheck && npm run test && npm run build"
  },
  "browserslist": [
    "last 2 Chrome versions",
    "last 2 Firefox versions",
    "last 2 Safari versions",
    "last 2 Edge versions"
  ],
  "devDependencies": {
    "@types/node": "^25.6.0",
    "@types/react": "^19.2.14",
    "@types/react-dom": "^19.2.3",
    "@vitest/coverage-v8": "^4.1.4",
    "eslint": "^9.39.4",
    "jsdom": "^24.1.3",
    "prettier": "^3.8.2",
    "terser": "^5.46.1",
    "typescript": "^6.0.2",
    "vite": "^6.4.2",
    "vitest": "^4.1.4"
  },
  "peerDependencies": {
    "react": ">=17.0.0",
    "react-dom": ">=17.0.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    },
    "react-dom": {
      "optional": true
    }
  },
  "publishConfig": {
    "access": "public"
  }
}
