UNPKG

@blocknote/server-util

Version:

A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.

91 lines 2.25 kB
{ "name": "@blocknote/server-util", "homepage": "https://github.com/TypeCellOS/BlockNote", "private": false, "sideEffects": [ "*.css" ], "repository": { "type": "git", "url": "git+https://github.com/TypeCellOS/BlockNote.git", "directory": "packages/server-util" }, "license": "MPL-2.0", "version": "0.47.0", "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-server-util.cjs", "module": "./dist/blocknote-server-util.js", "exports": { ".": { "types": "./types/src/index.d.ts", "import": "./dist/blocknote-server-util.js", "require": "./dist/blocknote-server-util.cjs" }, "./style.css": { "import": "./dist/style.css", "require": "./dist/style.css", "style": "./dist/style.css" } }, "dependencies": { "@blocknote/core": "0.47.0", "@blocknote/react": "0.47.0", "@tiptap/core": "^3.13.0", "@tiptap/pm": "^3.13.0", "jsdom": "^25.0.1", "y-prosemirror": "^1.3.7", "y-protocols": "^1.0.6", "yjs": "^13.6.27" }, "devDependencies": { "@types/jsdom": "^21.1.7", "@types/react": "^19.2.3", "@types/react-dom": "^19.2.3", "eslint": "^8.57.1", "react": "^19.2.3", "react-dom": "^19.2.3", "rollup-plugin-webpack-stats": "^0.2.6", "typescript": "^5.9.3", "vite": "^5.4.20", "vite-plugin-eslint": "^1.8.1", "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": "37614ab348dcc7faa830a9a88437b37197a2162d", "scripts": { "dev": "vite", "build": "tsc && vite build", "lint": "eslint src --max-warnings 0", "test": "vitest --run", "test-watch": "vitest watch" } }