forked from github/plane
9369ee5008
* better variable names and comments * drag drop migrated * custom horizontal rule created * init transaction hijack * fixed code block with better contrast, keyboard tripple enter press disabled and syntax highlighting * fixed link selector closing on open behaviour * added better keymaps and syntax highlights * made drag and drop working for code blocks * fixed drag drop for code blocks * moved drag drop only to rich text editor * fixed drag and drop only for description * enabled drag handles for peek overview and main issues * got images to old state
60 lines
1.3 KiB
JSON
60 lines
1.3 KiB
JSON
{
|
|
"name": "@plane/rich-text-editor",
|
|
"version": "0.0.1",
|
|
"description": "Rich Text Editor that powers Plane",
|
|
"private": true,
|
|
"main": "./dist/index.mjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts",
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"import": "./dist/index.mjs",
|
|
"module": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"check-types": "tsc --noEmit"
|
|
},
|
|
"peerDependencies": {
|
|
"@tiptap/core": "^2.1.11",
|
|
"next": "12.3.2",
|
|
"next-themes": "^0.2.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "18.2.0"
|
|
},
|
|
"dependencies": {
|
|
"@plane/editor-core": "*",
|
|
"@tiptap/extension-horizontal-rule": "^2.1.11",
|
|
"@tiptap/extension-placeholder": "^2.1.11",
|
|
"@tiptap/suggestion": "^2.1.7",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^1.2.1",
|
|
"lucide-react": "^0.244.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "18.15.3",
|
|
"@types/react": "^18.2.35",
|
|
"@types/react-dom": "^18.2.14",
|
|
"eslint": "^7.32.0",
|
|
"postcss": "^8.4.29",
|
|
"react": "^18.2.0",
|
|
"tailwind-config-custom": "*",
|
|
"tsconfig": "*",
|
|
"tsup": "^7.2.0",
|
|
"typescript": "4.9.5"
|
|
},
|
|
"keywords": [
|
|
"editor",
|
|
"rich-text",
|
|
"markdown",
|
|
"nextjs",
|
|
"react"
|
|
]
|
|
}
|