UNPKG

@liveblocks/react-blocknote

Version:

An integration of BlockNote + React to enable collaboration, comments, live cursors, and more with Liveblocks.

116 lines (115 loc) 3.02 kB
{ "name": "@liveblocks/react-blocknote", "version": "3.2.1", "description": "An integration of BlockNote + React to enable collaboration, comments, live cursors, and more with Liveblocks.", "license": "Apache-2.0", "type": "module", "main": "./dist/index.cjs", "types": "./dist/index.d.cts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "module": "./dist/index.js", "default": "./dist/index.cjs" } }, "./styles.css": { "types": "./styles.css.d.cts", "default": "./styles.css" } }, "files": [ "dist/**", "**/*.css", "**/*.css.d.ts", "**/*.css.d.cts", "**/*.css.map", "README.md" ], "scripts": { "dev": "rollup --config rollup.config.js --watch", "build": "rollup --config rollup.config.js", "format": "eslint --fix src/; stylelint --fix src/styles/; prettier --write src/", "lint": "eslint src/; stylelint src/styles/", "lint:package": "publint --strict && attw --pack", "start": "npm run dev", "test": "vitest run", "test:watch": "vitest" }, "dependencies": { "@liveblocks/client": "3.2.1", "@liveblocks/core": "3.2.1", "@liveblocks/react": "3.2.1", "@liveblocks/react-tiptap": "3.2.1", "@liveblocks/react-ui": "3.2.1", "@liveblocks/yjs": "3.2.1", "@tiptap/core": "^2.7.2", "vitest-tsconfig-paths": "^3.4.1" }, "peerDependencies": { "@blocknote/core": "0.25.1 - 1.0.0", "@blocknote/react": "0.25.1 - 1.0.0", "@tiptap/core": "^2.7.2", "@types/react": "*", "@types/react-dom": "*", "react": "^18 || ^19 || ^19.0.0-rc", "react-dom": "^18 || ^19 || ^19.0.0-rc" }, "peerDependenciesMeta": { "@types/react": { "optional": true }, "@types/react-dom": { "optional": true } }, "devDependencies": { "@liveblocks/eslint-config": "*", "@liveblocks/jest-config": "*", "@liveblocks/rollup-config": "*", "@testing-library/jest-dom": "^5.16.5", "eslint-plugin-react": "^7.33.2", "eslint-plugin-react-hooks": "^4.6.0", "msw": "^1.3.5", "stylelint": "^15.10.2", "stylelint-config-standard": "^34.0.0", "stylelint-order": "^6.0.3", "stylelint-plugin-logical-css": "^0.13.2" }, "sideEffects": false, "bugs": { "url": "https://github.com/liveblocks/liveblocks/issues" }, "repository": { "type": "git", "url": "git+https://github.com/liveblocks/liveblocks.git", "directory": "packages/liveblocks-react-blocknote" }, "homepage": "https://liveblocks.io", "keywords": [ "blocknote", "prosemirror", "tiptap", "react", "comments", "threads", "liveblocks", "real-time", "toolkit", "multiplayer", "websockets", "collaboration", "collaborative", "presence", "crdts", "synchronize", "rooms", "documents", "conflict resolution" ] }