2020-09-10 17:42:55 +08:00
|
|
|
{
|
2020-09-10 17:54:47 +08:00
|
|
|
"name": "@tiptap/extension-hard-break",
|
2020-11-27 21:58:28 +08:00
|
|
|
"description": "hard break extension for tiptap",
|
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 extension"
|
|
|
|
],
|
2020-11-16 22:15:26 +08:00
|
|
|
"license": "MIT",
|
|
|
|
"funding": {
|
|
|
|
"type": "github",
|
|
|
|
"url": "https://github.com/sponsors/ueberdosis"
|
|
|
|
},
|
2022-11-24 23:06:42 +08:00
|
|
|
"type": "module",
|
|
|
|
"exports": {
|
|
|
|
".": {
|
2023-01-25 17:19:51 +08:00
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"import": "./dist/index.js",
|
|
|
|
"require": "./dist/index.cjs"
|
2022-11-24 23:06:42 +08:00
|
|
|
}
|
|
|
|
},
|
2023-01-25 17:19:51 +08:00
|
|
|
"main": "dist/index.cjs",
|
|
|
|
"module": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
2020-09-10 17:42:55 +08:00
|
|
|
"files": [
|
|
|
|
"src",
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"peerDependencies": {
|
2023-02-03 00:37:33 +08:00
|
|
|
"@tiptap/core": "^2.0.0-beta.209"
|
2021-07-22 21:42:45 +08:00
|
|
|
},
|
2022-12-05 16:13:53 +08:00
|
|
|
"devDependencies": {
|
2023-02-07 16:42:41 +08:00
|
|
|
"@tiptap/core": "^2.0.0-beta.213"
|
2022-12-05 16:13:53 +08:00
|
|
|
},
|
2021-07-22 21:42:45 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
|
|
"directory": "packages/extension-hard-break"
|
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-10 17:42:55 +08:00
|
|
|
}
|
|
|
|
}
|