mirror of
https://github.com/makeplane/plane.git
synced 2026-07-14 06:25:58 +02:00
* feat: math extension base setup * refactor: update math components * feat: feature flag math extension * refactor: rename * fix : handle selection * refactor: update styles * refactor: update types * refactor: math extension namings * refactor: math extension * refactor : remove flagged state * feat: feature flagged * feat: update upgrade modal * refactor : upgrade modal hook * fix : conflict * chore: enable for testing * refactor : math node view * refactor : changes files name * refactor : better name for katexDiv * refactor : rename content * fix :feature flag * refactor : add types * refactor: change files names * refactor : update extension name * refactor : math attribute * refactor : input rules * refactor : math commands * refactor : rename commands * refactor: input modal * refactor : add input types * refactor : create math input * refactor: mathematics extension * refactor : math extension names * styles : add shrink * refactor : math extension folder structure * refactor: extension rename * refactor : names * refactor: update types * refactor: comments * feat: copy paste markdown handler * feat: space feature flag * feat: handle copy paste * refactor: update math tags * fix: loading katex css and repeated validations * refactor: update math modal logic * refactor: update floating modal * refactor : remove unused code * chore : remove logs * feat: add transition in modal * refactor : remove unused attrs * feat: add check for last node * refactor : block math * fix : dev wiki * feat: handle preview * refactor : flags * refactor: editor container * refactor: update storage * refactor : remove hover logic * refactor : remove floating container * refactor: floating UI * refactor: remove onClick handler * refactor : add import comments * refactor: update storage type * refactor: update names * refactor: update default flagging * refactor :types * refactor : update storage method * refactor : update types * --wip-- [skip ci] * refactor: update disabled extension * refactor: remove core changes * refactor: remove rich disabled * refactor : remove wiki changes * feat: add check for editable editor * chore: update styles based on editable * refactor : update types * feat: fix block view padding * refactor: update upgrade modal text * feat: handle inline block styles * refactor: use call back for memo * refactor: update styles * refactor: update slash command * refactor: make input row bigger * refactor: update types * refactor : update upgrade content --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com> Co-authored-by: Palanikannan M <akashmalinimurugu@gmail.com>
110 lines
3.2 KiB
JSON
110 lines
3.2 KiB
JSON
{
|
|
"name": "@plane/editor",
|
|
"version": "0.28.0",
|
|
"description": "Core Editor that powers Plane",
|
|
"license": "AGPL-3.0",
|
|
"private": true,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "./dist/index.mjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs"
|
|
},
|
|
"./lib": {
|
|
"require": "./dist/lib.js",
|
|
"types": "./dist/lib.d.ts",
|
|
"import": "./dist/lib.mjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && tsup --minify",
|
|
"dev": "tsup --watch",
|
|
"check:lint": "eslint . --max-warnings 55",
|
|
"check:types": "tsc --noEmit",
|
|
"check:format": "prettier --check \"**/*.{ts,tsx,md,json,css,scss}\"",
|
|
"fix:lint": "eslint . --fix",
|
|
"fix:format": "prettier --write \"**/*.{ts,tsx,md,json,css,scss}\"",
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"peerDependencies": {
|
|
"nanoid": "^3.3.8",
|
|
"react": "^18.3.1",
|
|
"react-dom": "18.3.1"
|
|
},
|
|
"dependencies": {
|
|
"@floating-ui/dom": "^1.7.1",
|
|
"@floating-ui/react": "^0.26.4",
|
|
"@headlessui/react": "^1.7.3",
|
|
"@hocuspocus/provider": "^2.15.0",
|
|
"@plane/constants": "*",
|
|
"@plane/hooks": "*",
|
|
"@plane/types": "*",
|
|
"@plane/ui": "*",
|
|
"@plane/utils": "*",
|
|
"@tiptap/core": "^2.22.3",
|
|
"@tiptap/extension-blockquote": "^2.22.3",
|
|
"@tiptap/extension-character-count": "^2.22.3",
|
|
"@tiptap/extension-collaboration": "^2.22.3",
|
|
"@tiptap/extension-collaboration-cursor": "2.11.0",
|
|
"@tiptap/extension-document": "2.11.0",
|
|
"@tiptap/extension-emoji": "^2.22.3",
|
|
"@tiptap/extension-heading": "2.11.0",
|
|
"@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.11.0",
|
|
"@tiptap/extension-text-align": "^2.22.3",
|
|
"@tiptap/extension-text-style": "^2.22.3",
|
|
"@tiptap/extension-underline": "^2.22.3",
|
|
"@tiptap/html": "^2.22.3",
|
|
"@tiptap/pm": "^2.22.3",
|
|
"@tiptap/react": "^2.22.3",
|
|
"@tiptap/starter-kit": "^2.22.3",
|
|
"@tiptap/suggestion": "^2.22.3",
|
|
"highlight.js": "^11.8.0",
|
|
"jsx-dom-cjs": "^8.0.3",
|
|
"katex": "^0.16.22",
|
|
"linkifyjs": "^4.3.2",
|
|
"lowlight": "^3.0.0",
|
|
"lucide-react": "^0.469.0",
|
|
"prosemirror-codemark": "^0.4.2",
|
|
"prosemirror-model": "^1.25.1",
|
|
"prosemirror-safari-ime-span": "^1.0.2",
|
|
"prosemirror-utils": "^1.2.2",
|
|
"smooth-scroll-into-view-if-needed": "^2.0.2",
|
|
"tippy.js": "^6.3.7",
|
|
"tiptap-markdown": "^0.8.10",
|
|
"uuid": "^10.0.0",
|
|
"y-indexeddb": "^9.0.12",
|
|
"y-prosemirror": "^1.2.15",
|
|
"y-protocols": "^1.0.6",
|
|
"yjs": "^13.6.20"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "*",
|
|
"@plane/tailwind-config": "*",
|
|
"@plane/typescript-config": "*",
|
|
"@types/node": "18.15.3",
|
|
"@types/react": "^18.3.11",
|
|
"@types/react-dom": "^18.2.18",
|
|
"postcss": "^8.4.38",
|
|
"tsup": "8.4.0",
|
|
"typescript": "5.8.3"
|
|
},
|
|
"keywords": [
|
|
"editor",
|
|
"rich-text",
|
|
"markdown",
|
|
"nextjs",
|
|
"react"
|
|
]
|
|
}
|