2021-02-26 09:00:35 +08:00
|
|
|
{
|
|
|
|
"name": "@tiptap/react",
|
|
|
|
"description": "React components for tiptap",
|
2022-12-16 20:44:12 +08:00
|
|
|
"version": "2.0.0-beta.209",
|
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": {
|
|
|
|
".": {
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"import": "./dist/index.js",
|
|
|
|
"require": "./dist/index.cjs"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"main": "dist/index.cjs",
|
|
|
|
"module": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"type": "module",
|
2021-02-26 09:00:35 +08:00
|
|
|
"files": [
|
|
|
|
"src",
|
|
|
|
"dist"
|
|
|
|
],
|
2021-09-17 18:43:26 +08:00
|
|
|
"devDependencies": {
|
2022-12-16 20:44:12 +08:00
|
|
|
"@tiptap/core": "^2.0.0-beta.209",
|
2022-04-11 16:15:54 +08:00
|
|
|
"@types/react": "^18.0.1",
|
|
|
|
"@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": {
|
2022-09-11 17:11:31 +08:00
|
|
|
"@tiptap/core": "^2.0.0-beta.193",
|
2022-04-04 15:46:11 +08:00
|
|
|
"react": "^17.0.0 || ^18.0.0",
|
|
|
|
"react-dom": "^17.0.0 || ^18.0.0"
|
2021-02-26 09:00:35 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-12-16 20:44:12 +08:00
|
|
|
"@tiptap/extension-bubble-menu": "^2.0.0-beta.209",
|
|
|
|
"@tiptap/extension-floating-menu": "^2.0.0-beta.209",
|
2022-09-26 20:56:14 +08:00
|
|
|
"prosemirror-view": "^1.28.2"
|
2021-03-08 20:19:05 +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": {
|
|
|
|
"build": "tsup"
|
|
|
|
},
|
|
|
|
"tsup": {
|
|
|
|
"entry": [
|
|
|
|
"src/index.ts"
|
|
|
|
],
|
|
|
|
"dts": true,
|
|
|
|
"splitting": true,
|
|
|
|
"format": [
|
|
|
|
"esm",
|
|
|
|
"cjs"
|
|
|
|
]
|
|
|
|
}
|
2021-02-26 09:00:35 +08:00
|
|
|
}
|