{
  "name": "@peekdev/mcp",
  "version": "0.1.0-alpha.24",
  "mcpName": "io.github.Cubenest/peek-mcp",
  "description": "local-first browser-session forensics + repro for AI coding agents. peek's native messaging host + stdio MCP server — owns ~/.peek/sessions.db (better-sqlite3) and bridges the browser extension, CLI, and AI tools to one local source of truth.",
  "keywords": [
    "peek",
    "mcp",
    "mcp-server",
    "model-context-protocol",
    "claude-code",
    "cursor",
    "browser",
    "rrweb",
    "ai-coding-agent"
  ],
  "license": "Apache-2.0",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/harry-harish"
  },
  "type": "module",
  "bin": {
    "peek-mcp": "./dist/index.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./db": {
      "types": "./dist/db/index.d.ts",
      "import": "./dist/db/index.js"
    },
    "./native-host": {
      "types": "./dist/native-host/index.d.ts",
      "import": "./dist/native-host/index.js"
    },
    "./mcp/playwright-repro": {
      "types": "./dist/mcp/playwright-repro.d.ts",
      "import": "./dist/mcp/playwright-repro.js"
    },
    "./mcp/event-blobs": {
      "types": "./dist/mcp/event-blobs.d.ts",
      "import": "./dist/mcp/event-blobs.js"
    }
  },
  "files": [
    "dist",
    "scripts/postinstall-guard.mjs",
    "src/db/migrations",
    "src/native-host/extension-ids.json",
    "NOTICE",
    "README.md"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "better-sqlite3": "^12.11.1",
    "zod": "^3.25.76",
    "@cubenest/rrweb-core": "0.1.0-alpha.7"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^22.10.0"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Cubenest/rrweb-stack",
    "directory": "packages/peek-mcp"
  },
  "bugs": {
    "url": "https://github.com/Cubenest/rrweb-stack/issues"
  },
  "homepage": "https://peek.cubenest.in",
  "engines": {
    "node": ">=22"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json && node ./scripts/postbuild.mjs",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "vitest run --passWithNoTests",
    "postinstall": "node ./scripts/postinstall-guard.mjs"
  }
}