{
  "name": "read-my-chatgpt",
  "version": "0.4.1",
  "description": "Local read-only MCP bridge for your ChatGPT web conversation history",
  "type": "module",
  "bin": {
    "read-my-chatgpt": "dist/index.js"
  },
  "files": [
    "dist",
    ".env.example",
    "CHANGELOG.md",
    "SECURITY.md",
    "THIRD_PARTY_NOTICES.md",
    "licenses"
  ],
  "scripts": {
    "clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
    "build": "npm run clean && tsc -p tsconfig.json",
    "postbuild": "node -e \"require('node:fs').chmodSync('dist/index.js', 0o755)\"",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts",
    "test": "tsx --test test/*.test.ts",
    "test:coverage": "node --import tsx --test --experimental-test-coverage --test-coverage-lines=70 --test-coverage-functions=65 --test-coverage-branches=60 test/*.test.ts",
    "test:package": "node scripts/verify-package.mjs",
    "test:obscura-download": "npm run build && node scripts/verify-obscura-download.mjs",
    "typecheck": "tsc -p tsconfig.test.json",
    "check": "npm run typecheck && npm run test:coverage && npm run build && npm run test:package",
    "smoke": "tsx src/smoke.ts",
    "smoke:stability": "tsx src/stability-smoke.ts",
    "prepack": "npm run build"
  },
  "engines": {
    "node": ">=22"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "conversation-history",
    "chatgpt",
    "read-only"
  ],
  "author": "Async23",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Async23/read-my-chatgpt.git"
  },
  "homepage": "https://github.com/Async23/read-my-chatgpt#readme",
  "bugs": {
    "url": "https://github.com/Async23/read-my-chatgpt/issues"
  },
  "license": "MIT",
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.30.0",
    "express": "^5.2.1",
    "ws": "^8.21.1",
    "zod": "^4.0.0"
  },
  "devDependencies": {
    "@types/express": "^5.0.6",
    "@types/node": "^24.0.0",
    "@types/ws": "^8.18.1",
    "tsx": "^4.20.0",
    "typescript": "^5.8.0"
  }
}
