mirror of
https://github.com/makeplane/plane.git
synced 2025-12-15 19:37:51 +01:00
100 lines
3.2 KiB
JSON
100 lines
3.2 KiB
JSON
{
|
|
"name": "@plane/editor",
|
|
"version": "1.2.0",
|
|
"description": "Core Editor that powers Plane",
|
|
"license": "AGPL-3.0",
|
|
"private": true,
|
|
"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",
|
|
"check:lint": "eslint . --cache --cache-location node_modules/.cache/eslint/ --max-warnings=1435",
|
|
"check:types": "tsc --noEmit",
|
|
"check:format": "prettier . --cache --check",
|
|
"fix:lint": "eslint . --cache --cache-location node_modules/.cache/eslint/ --fix --max-warnings=1435",
|
|
"fix:format": "prettier . --cache --write",
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "catalog:",
|
|
"react-dom": "catalog:"
|
|
},
|
|
"dependencies": {
|
|
"@floating-ui/dom": "^1.7.1",
|
|
"@floating-ui/react": "^0.26.4",
|
|
"@headlessui/react": "^1.7.3",
|
|
"@hocuspocus/provider": "2.15.2",
|
|
"@plane/constants": "workspace:*",
|
|
"@plane/hooks": "workspace:*",
|
|
"@plane/propel": "workspace:*",
|
|
"@plane/types": "workspace:*",
|
|
"@plane/ui": "workspace:*",
|
|
"@plane/utils": "workspace:*",
|
|
"@tiptap/core": "catalog:",
|
|
"@tiptap/extension-blockquote": "^2.22.3",
|
|
"@tiptap/extension-character-count": "^2.22.3",
|
|
"@tiptap/extension-collaboration": "^2.22.3",
|
|
"@tiptap/extension-document": "^2.22.3",
|
|
"@tiptap/extension-emoji": "^2.22.3",
|
|
"@tiptap/extension-heading": "^2.22.3",
|
|
"@tiptap/extension-image": "^2.22.3",
|
|
"@tiptap/extension-list-item": "^2.22.3",
|
|
"@tiptap/extension-mention": "^2.22.3",
|
|
"@tiptap/extension-placeholder": "^2.22.3",
|
|
"@tiptap/extension-task-item": "^2.22.3",
|
|
"@tiptap/extension-task-list": "^2.22.3",
|
|
"@tiptap/extension-text": "^2.22.3",
|
|
"@tiptap/extension-text-align": "^2.22.3",
|
|
"@tiptap/extension-text-style": "^2.22.3",
|
|
"@tiptap/extension-underline": "^2.22.3",
|
|
"@tiptap/html": "catalog:",
|
|
"@tiptap/pm": "^2.22.3",
|
|
"@tiptap/react": "^2.22.3",
|
|
"@tiptap/starter-kit": "^2.22.3",
|
|
"@tiptap/suggestion": "^2.22.3",
|
|
"buffer": "^6.0.3",
|
|
"emoji-regex": "^10.3.0",
|
|
"highlight.js": "^11.8.0",
|
|
"is-emoji-supported": "^0.0.5",
|
|
"jsx-dom-cjs": "^8.0.3",
|
|
"linkifyjs": "^4.3.2",
|
|
"lowlight": "^3.0.0",
|
|
"lucide-react": "catalog:",
|
|
"prosemirror-codemark": "^0.4.2",
|
|
"tippy.js": "^6.3.7",
|
|
"tiptap-markdown": "^0.8.10",
|
|
"uuid": "catalog:",
|
|
"y-indexeddb": "^9.0.12",
|
|
"y-prosemirror": "^1.2.15",
|
|
"y-protocols": "^1.0.6",
|
|
"yjs": "^13.6.20"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/tailwind-config": "workspace:*",
|
|
"@plane/typescript-config": "workspace:*",
|
|
"@types/node": "catalog:",
|
|
"@types/react": "catalog:",
|
|
"@types/react-dom": "catalog:",
|
|
"postcss": "^8.4.38",
|
|
"tsdown": "catalog:",
|
|
"typescript": "catalog:"
|
|
},
|
|
"keywords": [
|
|
"editor",
|
|
"rich-text",
|
|
"markdown",
|
|
"nextjs",
|
|
"react"
|
|
]
|
|
}
|