mirror of
https://github.com/makeplane/plane.git
synced 2026-06-14 03:30:00 +00:00
3f57fefdb4
Centralize every external dependency version in the pnpm catalog (pnpm-workspace.yaml) and reference them via `catalog:` across all apps and packages. Packages that previously used differing versions were unified to the highest (notably @react-pdf/renderer ^3.4.5 -> ^4.3.0 in apps/web).
102 lines
3.1 KiB
JSON
102 lines
3.1 KiB
JSON
{
|
|
"name": "@plane/editor",
|
|
"version": "1.3.1",
|
|
"private": true,
|
|
"description": "Core Editor that powers Plane",
|
|
"keywords": [
|
|
"editor",
|
|
"markdown",
|
|
"nextjs",
|
|
"react",
|
|
"rich-text"
|
|
],
|
|
"license": "AGPL-3.0",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./lib": "./dist/lib.js",
|
|
"./package.json": "./package.json",
|
|
"./styles.css": "./dist/styles/index.css",
|
|
"./styles": "./dist/styles/index.css"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && tsdown",
|
|
"dev": "tsdown --watch --no-clean",
|
|
"check:lint": "oxlint --max-warnings=416 .",
|
|
"check:types": "tsc --noEmit",
|
|
"check:format": "oxfmt --check .",
|
|
"fix:lint": "oxlint --fix .",
|
|
"fix:format": "oxfmt .",
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"@floating-ui/dom": "catalog:",
|
|
"@floating-ui/react": "catalog:",
|
|
"@headlessui/react": "catalog:",
|
|
"@hocuspocus/provider": "catalog:",
|
|
"@plane/constants": "workspace:*",
|
|
"@plane/hooks": "workspace:*",
|
|
"@plane/propel": "workspace:*",
|
|
"@plane/types": "workspace:*",
|
|
"@plane/ui": "workspace:*",
|
|
"@plane/utils": "workspace:*",
|
|
"@tiptap/core": "catalog:",
|
|
"@tiptap/extension-blockquote": "catalog:",
|
|
"@tiptap/extension-character-count": "catalog:",
|
|
"@tiptap/extension-collaboration": "catalog:",
|
|
"@tiptap/extension-document": "catalog:",
|
|
"@tiptap/extension-emoji": "catalog:",
|
|
"@tiptap/extension-heading": "catalog:",
|
|
"@tiptap/extension-image": "catalog:",
|
|
"@tiptap/extension-list-item": "catalog:",
|
|
"@tiptap/extension-mention": "catalog:",
|
|
"@tiptap/extension-placeholder": "catalog:",
|
|
"@tiptap/extension-task-item": "catalog:",
|
|
"@tiptap/extension-task-list": "catalog:",
|
|
"@tiptap/extension-text": "catalog:",
|
|
"@tiptap/extension-text-align": "catalog:",
|
|
"@tiptap/extension-text-style": "catalog:",
|
|
"@tiptap/extension-underline": "catalog:",
|
|
"@tiptap/html": "catalog:",
|
|
"@tiptap/pm": "catalog:",
|
|
"@tiptap/react": "catalog:",
|
|
"@tiptap/starter-kit": "catalog:",
|
|
"@tiptap/suggestion": "catalog:",
|
|
"buffer": "catalog:",
|
|
"emoji-regex": "catalog:",
|
|
"highlight.js": "catalog:",
|
|
"is-emoji-supported": "catalog:",
|
|
"jsx-dom-cjs": "catalog:",
|
|
"linkifyjs": "catalog:",
|
|
"lodash-es": "catalog:",
|
|
"lowlight": "catalog:",
|
|
"lucide-react": "catalog:",
|
|
"prosemirror-codemark": "catalog:",
|
|
"tippy.js": "catalog:",
|
|
"tiptap-markdown": "catalog:",
|
|
"uuid": "catalog:",
|
|
"y-indexeddb": "catalog:",
|
|
"y-prosemirror": "catalog:",
|
|
"y-protocols": "catalog:",
|
|
"yjs": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/tailwind-config": "workspace:*",
|
|
"@plane/typescript-config": "workspace:*",
|
|
"@types/lodash-es": "catalog:",
|
|
"@types/node": "catalog:",
|
|
"@types/react": "catalog:",
|
|
"@types/react-dom": "catalog:",
|
|
"postcss": "catalog:",
|
|
"tsdown": "catalog:",
|
|
"typescript": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "catalog:",
|
|
"react-dom": "catalog:"
|
|
}
|
|
}
|