2020-09-04 19:44:27 +08:00
|
|
|
{
|
|
|
|
"name": "@tiptap/html",
|
2020-11-27 21:58:28 +08:00
|
|
|
"description": "utility package to render tiptap JSON as HTML",
|
2023-02-07 16:42:41 +08:00
|
|
|
"version": "2.0.0-beta.213",
|
2020-11-16 22:15:26 +08:00
|
|
|
"homepage": "https://tiptap.dev",
|
2020-11-17 05:40:37 +08:00
|
|
|
"keywords": [
|
|
|
|
"tiptap",
|
|
|
|
"tiptap utility"
|
|
|
|
],
|
2020-11-16 22:15:26 +08:00
|
|
|
"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",
|
2020-09-04 19:44:27 +08:00
|
|
|
"files": [
|
|
|
|
"src",
|
|
|
|
"dist"
|
|
|
|
],
|
2022-12-05 16:13:53 +08:00
|
|
|
"peerDependencies": {
|
2023-02-03 00:37:33 +08:00
|
|
|
"@tiptap/core": "^2.0.0-beta.209",
|
|
|
|
"@tiptap/pm": "^2.0.0-beta.209"
|
2022-12-05 16:13:53 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-02-07 16:42:41 +08:00
|
|
|
"@tiptap/core": "^2.0.0-beta.213",
|
|
|
|
"@tiptap/pm": "^2.0.0-beta.213"
|
2022-12-05 16:13:53 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-12-03 04:06:13 +08:00
|
|
|
"zeed-dom": "^0.9.19"
|
2021-07-22 21:42:45 +08:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
|
|
"directory": "packages/html"
|
2023-01-25 17:19:51 +08:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsup"
|
|
|
|
},
|
|
|
|
"tsup": {
|
|
|
|
"entry": [
|
|
|
|
"src/index.ts"
|
|
|
|
],
|
|
|
|
"dts": true,
|
|
|
|
"splitting": true,
|
|
|
|
"format": [
|
|
|
|
"esm",
|
|
|
|
"cjs"
|
|
|
|
]
|
2020-09-04 19:44:27 +08:00
|
|
|
}
|
|
|
|
}
|