tiptap/packages/react/package.json
bdbch d689e2d9c1
React context implementation for Tiptap (#4192)
* feat(react): add react context implementation

* chore(docs): updated react docs & demos for new context

* chore(docs): added slot docs

* chore(docs): fix typo

* chore(react): use correct editor package

* fix typo in react installation docs

* update react typings to latest version

* fix types

---------

Co-authored-by: bdbch <dominik@bdbch.com>
2023-07-11 18:20:43 +02:00

60 lines
1.4 KiB
JSON

{
"name": "@tiptap/react",
"description": "React components for tiptap",
"version": "2.1.0-rc.11",
"homepage": "https://tiptap.dev",
"keywords": [
"tiptap",
"tiptap react components"
],
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"exports": {
".": {
"types": "./dist/packages/react/src/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"umd": "dist/index.umd.js",
"types": "dist/packages/react/src/index.d.ts",
"type": "module",
"files": [
"src",
"dist"
],
"dependencies": {
"@tiptap/extension-bubble-menu": "^2.1.0-rc.11",
"@tiptap/extension-floating-menu": "^2.1.0-rc.11"
},
"devDependencies": {
"@tiptap/core": "^2.1.0-rc.11",
"@tiptap/pm": "^2.1.0-rc.11",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",
"@tiptap/pm": "^2.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ueberdosis/tiptap",
"directory": "packages/react"
},
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && rollup -c"
}
}