mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 11:49:02 +08:00
47 lines
1006 B
JSON
47 lines
1006 B
JSON
{
|
|
"name": "@tiptap/extension-dropcursor",
|
|
"description": "dropcursor extension for tiptap",
|
|
"version": "3.0.0-next.1",
|
|
"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"
|
|
],
|
|
"devDependencies": {
|
|
"@tiptap/core": "^3.0.0-next.1",
|
|
"@tiptap/pm": "^3.0.0-next.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@tiptap/core": "^3.0.0-next.1",
|
|
"@tiptap/pm": "^3.0.0-next.1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
"directory": "packages/extension-dropcursor"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup"
|
|
}
|
|
}
|