mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-23 01:43:10 +08:00
7eaa34d0d1
* start experimenting with floating-ui * add options to floating-ui bubble menu plugin & fix smaller issues * add vue support for new floating-ui * start experimenting with floating-ui * adjust floating-menu plugin for floating-ui & update react component * add vue support for floating-menu with floating-ui * update tests for new floating-ui integration * added changeset file * move floating-ui dependency to peerDeps * add install notice to changelog * remove unnecessary code for destroying and removing component element in Vue suggestion.js * remove unnecessary code for destroying and removing component element in React suggestion.js * sync package-lock * widen range for peerDeps again
52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"name": "@tiptap/extension-bubble-menu",
|
|
"description": "bubble-menu extension for tiptap",
|
|
"version": "2.5.6",
|
|
"homepage": "https://tiptap.dev",
|
|
"keywords": [
|
|
"tiptap",
|
|
"tiptap extension"
|
|
],
|
|
"license": "MIT",
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/ueberdosis"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/packages/extension-bubble-menu/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/extension-bubble-menu/src/index.d.ts",
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
"directory": "packages/extension-bubble-menu"
|
|
},
|
|
"sideEffects": false,
|
|
"devDependencies": {
|
|
"@floating-ui/dom": "^1.0.0",
|
|
"@tiptap/core": "^2.5.7",
|
|
"@tiptap/pm": "^2.5.7"
|
|
},
|
|
"peerDependencies": {
|
|
"@floating-ui/dom": "^1.0.0",
|
|
"@tiptap/core": "^2.5.7",
|
|
"@tiptap/pm": "^2.5.7"
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -rf dist",
|
|
"build": "npm run clean && rollup -c"
|
|
}
|
|
}
|