{
  "name": "notion-utils",
  "version": "7.10.0",
  "type": "module",
  "description": "Useful utilities for working with Notion data. Supports any JS environment including browsers.",
  "repository": "NotionX/react-notion-x",
  "author": "Travis Fischer <travis@transitivebullsh.it>",
  "license": "MIT",
  "source": "./src/index.ts",
  "types": "./build/index.d.ts",
  "exports": {
    ".": {
      "types": "./build/index.d.ts",
      "import": "./build/index.js",
      "default": "./build/index.js"
    }
  },
  "sideEffects": false,
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "is-url-superb": "^6.1.0",
    "memoize": "^10.1.0",
    "normalize-url": "^8.0.1",
    "p-queue": "^8.1.0",
    "notion-types": "7.10.0"
  },
  "publishConfig": {
    "access": "public",
    "files": [
      "build"
    ]
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "watch": "tsup --watch --silent --onSuccess 'echo build successful'",
    "clean": "del build",
    "test": "run-s test:*",
    "test:typecheck": "tsc --noEmit",
    "test:unit": "vitest run"
  }
}