md-editor-rt
Version:
Markdown editor for react, developed in jsx and typescript, dark theme、beautify content by prettier、render articles directly、paste or clip the picture and upload it...
117 lines (116 loc) • 3.03 kB
JSON
{
"name": "md-editor-rt",
"version": "5.8.0",
"license": "MIT",
"keywords": [
"react",
"nextjs",
"javascript",
"typescript",
"jsx",
"tsx",
"ssr",
"markdown",
"editor",
"theme",
"html"
],
"description": "Markdown editor for react, developed in jsx and typescript, dark theme、beautify content by prettier、render articles directly、paste or clip the picture and upload it...",
"author": {
"name": "zbf",
"url": "https://github.com/imzbf"
},
"homepage": "https://imzbf.github.io/md-editor-rt/",
"repository": {
"type": "git",
"url": "git+https://github.com/imzbf/md-editor-rt.git"
},
"bugs": {
"url": "https://github.com/imzbf/md-editor-rt/issues"
},
"files": [
"lib"
],
"type": "module",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.cjs",
"module": "./lib/es/index.mjs",
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "tsx ./scripts/dev",
"build": "tsx ./scripts/build",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/commands": "^6.8.1",
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/language": "^6.11.0",
"@codemirror/language-data": "^6.5.1",
"@codemirror/search": "^6.5.11",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.8",
"@lezer/highlight": "^1.2.1",
"@types/markdown-it": "^14.0.1",
"@vavt/copy2clipboard": "^1.0.1",
"@vavt/util": "^2.1.0",
"codemirror": "^6.0.1",
"lru-cache": "^11.0.1",
"lucide-react": "^0.454.0",
"markdown-it": "^14.0.0",
"markdown-it-image-figures": "^2.1.1",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"medium-zoom": "^1.1.0",
"xss": "^1.0.15"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/katex": "^0.16.7",
"@types/multiparty": "^4.2.1",
"@types/node": "^22.8.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vavt/markdown-theme": "^4.5.0",
"@vavt/vite-plugin-import-markdown": "^1.0.1",
"@vitejs/plugin-react": "^4.3.3",
"axios": "^1.7.7",
"cropperjs": "^1.6.2",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.13",
"globals": "^15.11.0",
"highlight.js": "^11.10.0",
"husky": "^9.1.7",
"katex": "^0.16.11",
"less": "^4.2.0",
"lint-staged": "^15.4.3",
"mermaid": "^11.3.0",
"multiparty": "^4.2.3",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"screenfull": "^6.0.2",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.10.0",
"vite": "^5.4.9"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}