mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-01 01:19:03 +08:00
e46f8e3334
* chore:(core): migrate to tsup * chore: migrate blockquote and bold to tsup * chore: migrated bubble-menu and bullet-list to tsup * chore: migrated more packages to tsup * chore: migrate code and character extensions to tsup * chore: update package.json to simplify build for all packages * chore: move all packages to tsup as a build process * chore: change ci build task * chore: clean up and fix issues related to new build * fix: fix demo build * fix: fix demo build * fix: fix tsconfig files to reference only one source * fix: fix minor ts issues
58 lines
1.1 KiB
JSON
58 lines
1.1 KiB
JSON
{
|
|
"name": "@tiptap/extension-dropcursor",
|
|
"description": "dropcursor extension for tiptap",
|
|
"version": "2.0.0-beta.209",
|
|
"homepage": "https://tiptap.dev",
|
|
"keywords": [
|
|
"tiptap",
|
|
"tiptap extension"
|
|
],
|
|
"license": "MIT",
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/ueberdosis"
|
|
},
|
|
"type": "module",
|
|
"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",
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"peerDependencies": {
|
|
"@tiptap/core": "^2.0.0-beta.193",
|
|
"prosemirror-dropcursor": "1.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tiptap/core": "^2.0.0-beta.209",
|
|
"prosemirror-dropcursor": "1.5.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
"directory": "packages/extension-dropcursor"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup"
|
|
},
|
|
"tsup": {
|
|
"entry": [
|
|
"src/index.ts"
|
|
],
|
|
"dts": true,
|
|
"splitting": true,
|
|
"format": [
|
|
"esm",
|
|
"cjs"
|
|
]
|
|
}
|
|
}
|