{
  "name": "@notion-md-converter/types",
  "version": "0.12.1",
  "description": "Notion to Markdown Converter Types",
  "license": "MIT",
  "type": "module",
  "author": "malvageee (https://github.com/salvage0707)",
  "engines": {
    "node": ">=24.0.0"
  },
  "keywords": [
    "notion",
    "notion-api",
    "markdown",
    "md",
    "converter"
  ],
  "repository": {
    "url": "https://github.com/salvage0707/notion-md-converter.git",
    "type": "git",
    "directory": "packages/notion-md-converter-types"
  },
  "files": [
    "dist"
  ],
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "dependencies": {
    "@notionhq/client": "^2.2.16"
  },
  "devDependencies": {
    "@notion-md-converter/config": "0.12.1"
  },
  "scripts": {
    "dev": "rollup -c -w",
    "check-types": "tsc --noEmit",
    "build": "rollup -c",
    "build:size": "find dist -type f -exec ls -l {} \\; | awk '{total += $5} END {print \"Total size in KB:\", total/1024}'"
  }
}