{
  "name": "notion-utils",
  "version": "8.0.8",
  "description": "Useful utilities for working with Notion data. Supports any JS environment including browsers.",
  "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.ts",
  "exports": {
    ".": {
      "types": "./build/index.d.ts",
      "import": "./build/index.js",
      "default": "./build/index.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "is-url-superb": "^6.1.0",
    "memoize": "^11.0.0",
    "normalize-url": "^9.0.1",
    "p-queue": "^9.3.3",
    "notion-types": "8.0.8"
  },
  "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",
    "test:unit": "vitest run"
  }
}