mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 11:49:02 +08:00
243c6ab0d2
* fix: bring back global rollup config * fix: add rollup build for packages except pm * fix: rollup global build * fix: fix memory leak on build * fix(character-count): revert files * fix: builds run individual per rollup and lerna * chore: remove old rollup * fix(blockquote): correct the main module path * fix(character count): bump version number
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "@tiptap/extension-collaboration",
|
|
"description": "collaboration extension for tiptap",
|
|
"version": "2.0.0-beta.213",
|
|
"homepage": "https://tiptap.dev",
|
|
"keywords": [
|
|
"tiptap",
|
|
"tiptap extension"
|
|
],
|
|
"license": "MIT",
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/ueberdosis"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/packages/extension-collaboration/src/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.js",
|
|
"umd": "dist/index.umd.js",
|
|
"types": "dist/packages/extension-collaboration/src/index.d.ts",
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"peerDependencies": {
|
|
"@tiptap/core": "^2.0.0-beta.209",
|
|
"@tiptap/pm": "^2.0.0-beta.209",
|
|
"y-prosemirror": "1.0.20"
|
|
},
|
|
"devDependencies": {
|
|
"@tiptap/core": "^2.0.0-beta.213",
|
|
"@tiptap/pm": "^2.0.0-beta.213",
|
|
"y-prosemirror": "1.0.20"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
"directory": "packages/extension-collaboration"
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -rf dist",
|
|
"build": "npm run clean && rollup -c"
|
|
}
|
|
} |