2019-12-08 04:02:22 +08:00
|
|
|
{
|
|
|
|
"name": "@tiptap/core",
|
2020-11-27 21:58:28 +08:00
|
|
|
"description": "headless rich text editor",
|
2022-12-16 20:44:12 +08:00
|
|
|
"version": "2.0.0-beta.209",
|
2020-11-16 22:15:26 +08:00
|
|
|
"homepage": "https://tiptap.dev",
|
2020-11-16 22:57:49 +08:00
|
|
|
"keywords": [
|
|
|
|
"tiptap",
|
|
|
|
"headless",
|
|
|
|
"wysiwyg",
|
2021-09-19 06:19:58 +08:00
|
|
|
"text editor",
|
|
|
|
"prosemirror"
|
2020-11-16 22:57:49 +08:00
|
|
|
],
|
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",
|
2019-12-08 04:02:22 +08:00
|
|
|
"files": [
|
|
|
|
"src",
|
|
|
|
"dist"
|
2019-12-08 07:16:44 +08:00
|
|
|
],
|
2022-12-05 16:13:53 +08:00
|
|
|
"peerDependencies": {
|
|
|
|
"prosemirror-commands": "^1.3.1",
|
|
|
|
"prosemirror-keymap": "^1.2.0",
|
|
|
|
"prosemirror-model": "^1.18.1",
|
|
|
|
"prosemirror-schema-list": "^1.2.2",
|
|
|
|
"prosemirror-state": "^1.4.1",
|
|
|
|
"prosemirror-transform": "^1.7.0",
|
|
|
|
"prosemirror-view": "^1.28.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-09-26 20:56:14 +08:00
|
|
|
"prosemirror-commands": "^1.3.1",
|
|
|
|
"prosemirror-keymap": "^1.2.0",
|
|
|
|
"prosemirror-model": "^1.18.1",
|
|
|
|
"prosemirror-schema-list": "^1.2.2",
|
|
|
|
"prosemirror-state": "^1.4.1",
|
|
|
|
"prosemirror-transform": "^1.7.0",
|
|
|
|
"prosemirror-view": "^1.28.2"
|
2021-07-22 21:42:45 +08:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
|
|
"directory": "packages/core"
|
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"
|
|
|
|
]
|
|
|
|
}
|
2022-06-20 19:22:53 +08:00
|
|
|
}
|