2021-02-26 09:00:35 +08:00
|
|
|
{
|
|
|
|
"name": "@tiptap/react",
|
|
|
|
"description": "React components for tiptap",
|
2024-11-17 22:02:34 +08:00
|
|
|
"version": "2.9.1",
|
2021-02-26 09:00:35 +08:00
|
|
|
"homepage": "https://tiptap.dev",
|
|
|
|
"keywords": [
|
|
|
|
"tiptap",
|
|
|
|
"tiptap react components"
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"funding": {
|
|
|
|
"type": "github",
|
|
|
|
"url": "https://github.com/sponsors/ueberdosis"
|
|
|
|
},
|
2023-01-25 17:19:51 +08:00
|
|
|
"exports": {
|
|
|
|
".": {
|
2024-09-26 20:51:00 +08:00
|
|
|
"types": "./dist/index.d.ts",
|
2023-01-25 17:19:51 +08:00
|
|
|
"import": "./dist/index.js",
|
|
|
|
"require": "./dist/index.cjs"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"main": "dist/index.cjs",
|
|
|
|
"module": "dist/index.js",
|
2023-02-08 18:12:43 +08:00
|
|
|
"umd": "dist/index.umd.js",
|
2024-09-26 20:51:00 +08:00
|
|
|
"types": "dist/index.d.ts",
|
2023-01-25 17:19:51 +08:00
|
|
|
"type": "module",
|
2021-02-26 09:00:35 +08:00
|
|
|
"files": [
|
|
|
|
"src",
|
|
|
|
"dist"
|
|
|
|
],
|
2023-03-30 18:36:15 +08:00
|
|
|
"dependencies": {
|
2024-11-17 22:02:34 +08:00
|
|
|
"@tiptap/extension-bubble-menu": "^2.9.1",
|
|
|
|
"@tiptap/extension-floating-menu": "^2.9.1",
|
2024-07-15 18:00:31 +08:00
|
|
|
"@types/use-sync-external-store": "^0.0.6",
|
2024-08-17 21:27:11 +08:00
|
|
|
"fast-deep-equal": "^3",
|
2024-11-20 17:46:29 +08:00
|
|
|
"use-sync-external-store": "^1"
|
2023-03-30 18:36:15 +08:00
|
|
|
},
|
2021-09-17 18:43:26 +08:00
|
|
|
"devDependencies": {
|
2024-11-17 22:02:34 +08:00
|
|
|
"@tiptap/core": "^2.9.1",
|
|
|
|
"@tiptap/pm": "^2.9.1",
|
2024-11-20 17:46:29 +08:00
|
|
|
"@types/react": "^18.0.0",
|
|
|
|
"@types/react-dom": "^18.0.0",
|
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
|
|
|
},
|
2021-02-26 09:00:35 +08:00
|
|
|
"peerDependencies": {
|
2024-09-17 21:43:04 +08:00
|
|
|
"@tiptap/core": "^2.7.0",
|
|
|
|
"@tiptap/pm": "^2.7.0",
|
2024-11-06 19:48:37 +08:00
|
|
|
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
|
|
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
2021-02-26 09:00:35 +08:00
|
|
|
},
|
2021-07-22 21:42:45 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
|
|
"directory": "packages/react"
|
2022-01-11 16:42:59 +08:00
|
|
|
},
|
2023-01-25 17:19:51 +08:00
|
|
|
"sideEffects": false,
|
|
|
|
"scripts": {
|
2023-02-08 18:12:43 +08:00
|
|
|
"clean": "rm -rf dist",
|
|
|
|
"build": "npm run clean && rollup -c"
|
2023-01-25 17:19:51 +08:00
|
|
|
}
|
2023-04-26 20:19:13 +08:00
|
|
|
}
|