2023-09-08 13:11:40 +00:00
|
|
|
{
|
2023-09-20 06:49:35 +00:00
|
|
|
"name": "@plane/editor",
|
2023-09-08 13:11:40 +00:00
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "Rich Text Editor that powers Plane",
|
2023-09-21 12:34:38 +00:00
|
|
|
"main": "./dist/index.mjs",
|
|
|
|
"module": "./dist/index.mjs",
|
|
|
|
"types": "./dist/index.d.mts",
|
2023-09-08 13:11:40 +00:00
|
|
|
"files": [
|
2023-09-21 12:34:38 +00:00
|
|
|
"dist/**/*"
|
2023-09-08 13:11:40 +00:00
|
|
|
],
|
|
|
|
"exports": {
|
|
|
|
".": {
|
2023-09-21 12:34:38 +00:00
|
|
|
"types": "./dist/index.d.mts",
|
|
|
|
"import": "./dist/index.mjs",
|
|
|
|
"module": "./dist/index.mjs"
|
2023-09-08 13:11:40 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsup",
|
|
|
|
"dev": "tsup --watch",
|
|
|
|
"check-types": "tsc --noEmit"
|
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"react": "^18.2.0"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@blueprintjs/popover2": "^2.0.10",
|
|
|
|
"@tiptap/core": "^2.1.7",
|
|
|
|
"@tiptap/extension-code-block-lowlight": "^2.0.4",
|
2023-09-22 12:37:07 +00:00
|
|
|
"@tiptap/extension-color": "^2.1.11",
|
2023-09-08 13:11:40 +00:00
|
|
|
"@tiptap/extension-highlight": "^2.1.7",
|
|
|
|
"@tiptap/extension-horizontal-rule": "^2.1.7",
|
|
|
|
"@tiptap/extension-image": "^2.1.7",
|
|
|
|
"@tiptap/extension-link": "^2.1.7",
|
|
|
|
"@tiptap/extension-placeholder": "2.0.3",
|
|
|
|
"@tiptap/extension-table": "^2.1.6",
|
|
|
|
"@tiptap/extension-table-cell": "^2.1.6",
|
|
|
|
"@tiptap/extension-table-header": "^2.1.6",
|
|
|
|
"@tiptap/extension-table-row": "^2.1.6",
|
|
|
|
"@tiptap/extension-task-item": "^2.1.7",
|
|
|
|
"@tiptap/extension-task-list": "^2.1.7",
|
2023-09-22 12:37:07 +00:00
|
|
|
"@tiptap/extension-text-style": "^2.1.11",
|
2023-09-08 13:11:40 +00:00
|
|
|
"@tiptap/extension-underline": "^2.1.7",
|
|
|
|
"@tiptap/pm": "^2.1.7",
|
|
|
|
"@tiptap/react": "^2.1.7",
|
2023-09-19 08:12:54 +00:00
|
|
|
"@tiptap/starter-kit": "^2.1.10",
|
2023-09-08 13:11:40 +00:00
|
|
|
"@tiptap/suggestion": "^2.1.7",
|
|
|
|
"@types/node": "18.15.3",
|
|
|
|
"@types/react": "18.0.28",
|
|
|
|
"@types/react-dom": "18.0.11",
|
|
|
|
"clsx": "^1.2.1",
|
|
|
|
"eslint": "8.36.0",
|
|
|
|
"eslint-config-next": "13.2.4",
|
|
|
|
"eventsource-parser": "^0.1.0",
|
|
|
|
"lowlight": "^2.9.0",
|
|
|
|
"lucide-react": "^0.244.0",
|
|
|
|
"next": "12.3.2",
|
|
|
|
"next-themes": "^0.2.1",
|
|
|
|
"react": "18.2.0",
|
|
|
|
"react-dom": "18.2.0",
|
|
|
|
"react-markdown": "^8.0.7",
|
|
|
|
"tailwind-merge": "^1.14.0",
|
|
|
|
"tippy.js": "^6.3.7",
|
|
|
|
"tiptap-markdown": "^0.8.2",
|
|
|
|
"use-debounce": "^9.0.4"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/react": "^18.2.5",
|
|
|
|
"eslint": "^7.32.0",
|
|
|
|
"postcss": "^8.4.29",
|
|
|
|
"react": "^18.2.0",
|
2023-09-20 05:56:16 +00:00
|
|
|
"tailwind-config-custom": "*",
|
2023-09-08 13:11:40 +00:00
|
|
|
"tsconfig": "*",
|
|
|
|
"tsup": "^7.2.0",
|
|
|
|
"typescript": "4.9.5"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"editor",
|
|
|
|
"rich-text",
|
|
|
|
"markdown",
|
|
|
|
"nextjs",
|
|
|
|
"react"
|
2023-09-20 13:33:06 +00:00
|
|
|
]
|
2023-09-08 13:11:40 +00:00
|
|
|
}
|