2023-09-08 13:11:40 +00:00
|
|
|
{
|
2023-09-27 14:19:15 +00:00
|
|
|
"name": "@plane/rich-text-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": {
|
2023-10-02 08:45:16 +00:00
|
|
|
"@plane/editor-core": "*",
|
|
|
|
"@tiptap/core": "^2.1.11",
|
|
|
|
"@tiptap/extension-code-block-lowlight": "^2.1.11",
|
|
|
|
"@tiptap/extension-horizontal-rule": "^2.1.11",
|
|
|
|
"@tiptap/extension-placeholder": "^2.1.11",
|
2023-09-25 08:35:17 +00:00
|
|
|
"class-variance-authority": "^0.7.0",
|
2023-09-08 13:11:40 +00:00
|
|
|
"clsx": "^1.2.1",
|
2023-10-02 08:45:16 +00:00
|
|
|
"highlight.js": "^11.8.0",
|
|
|
|
"lowlight": "^3.0.0",
|
2023-09-08 13:11:40 +00:00
|
|
|
"lucide-react": "^0.244.0",
|
|
|
|
"next": "12.3.2",
|
|
|
|
"react": "18.2.0",
|
2023-10-02 08:45:16 +00:00
|
|
|
"react-dom": "18.2.0"
|
2023-09-08 13:11:40 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-09-30 11:50:59 +00:00
|
|
|
"@types/node": "18.15.3",
|
2023-09-08 13:11:40 +00:00
|
|
|
"@types/react": "^18.2.5",
|
2023-10-02 08:45:16 +00:00
|
|
|
"@types/react-dom": "18.0.11",
|
2023-09-08 13:11:40 +00:00
|
|
|
"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
|
|
|
}
|