{
  "name": "@blocknote/react",
  "homepage": "https://github.com/TypeCellOS/BlockNote",
  "private": false,
  "sideEffects": [
    "*.css"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TypeCellOS/BlockNote.git",
    "directory": "packages/react"
  },
  "license": "MPL-2.0",
  "version": "0.42.3",
  "files": [
    "dist",
    "types",
    "src"
  ],
  "keywords": [
    "react",
    "javascript",
    "editor",
    "typescript",
    "prosemirror",
    "wysiwyg",
    "rich-text-editor",
    "notion",
    "yjs",
    "block-based",
    "tiptap"
  ],
  "description": "A \"Notion-style\" block-based extensible text editor built on top of Prosemirror and Tiptap.",
  "type": "module",
  "source": "src/index.ts",
  "types": "./types/src/index.d.ts",
  "main": "./dist/blocknote-react.cjs",
  "module": "./dist/blocknote-react.js",
  "exports": {
    ".": {
      "types": "./types/src/index.d.ts",
      "import": "./dist/blocknote-react.js",
      "require": "./dist/blocknote-react.cjs"
    },
    "./style.css": {
      "import": "./dist/style.css",
      "require": "./dist/style.css",
      "style": "./dist/style.css"
    }
  },
  "dependencies": {
    "@blocknote/core": "0.42.3",
    "@emoji-mart/data": "^1.2.1",
    "@floating-ui/react": "^0.27.16",
    "@tiptap/core": "^3.11.0",
    "@tiptap/pm": "^3.11.0",
    "@tiptap/react": "^3.11.0",
    "emoji-mart": "^5.6.0",
    "lodash.merge": "^4.6.2",
    "react-icons": "^5.5.0"
  },
  "devDependencies": {
    "@types/emoji-mart": "^3.0.14",
    "@types/lodash.foreach": "^4.5.9",
    "@types/lodash.groupby": "^4.6.9",
    "@types/lodash.merge": "^4.6.9",
    "@types/react": "^19.2.2",
    "@types/react-dom": "^19.2.2",
    "@vitejs/plugin-react": "^4.7.0",
    "eslint": "^8.57.1",
    "react": "^19.2.0",
    "react-dom": "^19.2.0",
    "rimraf": "^5.0.10",
    "rollup-plugin-webpack-stats": "^0.2.6",
    "typescript": "^5.9.3",
    "vite": "^5.4.20",
    "vite-plugin-eslint": "^1.8.1",
    "vite-plugin-externalize-deps": "^0.8.0",
    "vitest": "^2.1.9"
  },
  "peerDependencies": {
    "react": "^18.0 || ^19.0 || >= 19.0.0-rc",
    "react-dom": "^18.0 || ^19.0 || >= 19.0.0-rc"
  },
  "eslintConfig": {
    "extends": [
      "../../.eslintrc.json"
    ]
  },
  "gitHead": "d5e8c96e2ad5f6832da60bc3c9acd3f6c16c25c5",
  "scripts": {
    "dev": "vite",
    "build": "tsc && vite build",
    "preview": "vite preview",
    "lint": "eslint src --max-warnings 0",
    "test": "vitest --run",
    "test:watch": "vitest --watch",
    "clean": "rimraf dist && rimraf types"
  }
}