{
  "name": "notion-compat",
  "version": "8.0.6",
  "description": "Compatibility layer between the official Notion API and unofficial private API.",
  "license": "MIT",
  "author": "Travis Fischer <travis@transitivebullsh.it>",
  "repository": {
    "type": "git",
    "url": "NotionX/react-notion-x"
  },
  "source": "./src/index.ts",
  "files": [
    "build"
  ],
  "type": "module",
  "sideEffects": false,
  "types": "./build/index.d.mts",
  "exports": {
    ".": {
      "types": "./build/index.d.mts",
      "import": "./build/index.mjs",
      "default": "./build/index.mjs"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "p-queue": "^9.3.3",
    "notion-types": "8.0.6",
    "notion-utils": "8.0.6"
  },
  "devDependencies": {
    "@notionhq/client": "^2.3.0",
    "notion-client": "8.0.6"
  },
  "peerDependencies": {
    "@notionhq/client": "^2.2.0"
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "watch": "tsdown --watch --silent --onSuccess 'echo build successful'",
    "clean": "del build",
    "test": "run-s test:*",
    "test:typecheck": "tsc --noEmit"
  }
}