{
  "name": "graphql-stream-viewer-helper",
  "version": "0.1.2",
  "description": "Helper library for GraphQL Stream Viewer extension - enables live SSE event monitoring",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    },
    "./auto": {
      "import": "./dist/auto.js",
      "require": "./dist/auto.cjs",
      "types": "./dist/auto.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "bun build.ts",
    "dev": "bun build.ts --watch",
    "typecheck": "tsc --noEmit",
    "test": "bun test",
    "prepublishOnly": "bun run build"
  },
  "keywords": [
    "graphql",
    "sse",
    "server-sent-events",
    "devtools",
    "debugging",
    "monitoring",
    "chrome-extension"
  ],
  "author": "Austin Golding",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/GoldingAustin/stream-viewer"
  },
  "devDependencies": {
    "typescript": "latest"
  },
  "peerDependencies": {},
  "sideEffects": false
}
