@blocknote/mantine
Version:
A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.
93 lines • 2.36 kB
JSON
{
"name": "@blocknote/mantine",
"homepage": "https://github.com/TypeCellOS/BlockNote",
"private": false,
"sideEffects": [
"*.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TypeCellOS/BlockNote.git",
"directory": "packages/mantine"
},
"license": "MPL-2.0",
"version": "0.51.4",
"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.tsx",
"types": "./types/src/index.d.ts",
"main": "./dist/blocknote-mantine.cjs",
"module": "./dist/blocknote-mantine.js",
"exports": {
".": {
"types": "./types/src/index.d.ts",
"import": "./dist/blocknote-mantine.js",
"require": "./dist/blocknote-mantine.cjs"
},
"./style.css": {
"import": "./src/style.css",
"require": "./src/style.css",
"style": "./src/style.css"
},
"./blocknoteStyles.css": {
"import": "./src/blocknoteStyles.css",
"require": "./src/blocknoteStyles.css",
"style": "./src/blocknoteStyles.css"
}
},
"dependencies": {
"@blocknote/core": "0.51.4",
"@blocknote/react": "0.51.4",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@types/react": "^19.2.3",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^8.57.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rimraf": "^5.0.10",
"rollup-plugin-webpack-stats": "^0.2.6",
"typescript": "^5.9.3",
"vite": "^8.0.8",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-externalize-deps": "^0.10.0"
},
"peerDependencies": {
"@mantine/core": "^8.3.11 || ^9.0.2",
"@mantine/hooks": "^8.3.11 || ^9.0.2",
"react": "^18.0 || ^19.0 || >= 19.0.0-rc",
"react-dom": "^18.0 || ^19.0 || >= 19.0.0-rc"
},
"eslintConfig": {
"extends": [
"../../.eslintrc.json"
]
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --max-warnings 0",
"clean": "rimraf dist && rimraf types"
}
}