tiptap/packages/react/package.json

60 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "@tiptap/react",
"description": "React components for tiptap",
2023-10-11 21:55:10 +08:00
"version": "2.1.12",
"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": {
2023-10-11 21:55:10 +08:00
"@tiptap/extension-bubble-menu": "^2.1.12",
"@tiptap/extension-floating-menu": "^2.1.12"
},
2021-09-17 18:43:26 +08:00
"devDependencies": {
2023-10-11 21:55:10 +08:00
"@tiptap/core": "^2.1.12",
"@tiptap/pm": "^2.1.12",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
2022-04-04 15:46:11 +08:00
"react": "^18.0.0",
"react-dom": "^18.0.0"
2021-09-17 18:43:26 +08:00
},
"peerDependencies": {
2023-03-29 22:43:08 +08:00
"@tiptap/core": "^2.0.0",
"@tiptap/pm": "^2.0.0",
2022-04-04 15:46:11 +08:00
"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"
}
2023-04-26 20:19:13 +08:00
}