mjeditor
Version:
A modern, plugin-extensible rich text editor for React with beautiful custom dialogs, notification system, and comprehensive editing features. Built with Slate.js for maximum flexibility.
143 lines (142 loc) • 3.6 kB
JSON
{
"name": "mjeditor",
"version": "1.0.2",
"description": "A modern, plugin-extensible rich text editor for React with beautiful custom dialogs, notification system, and comprehensive editing features. Built with Slate.js for maximum flexibility.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"prepare": "npm run build",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"preview": "npm run build && npm pack --dry-run"
},
"keywords": [
"rich-text-editor",
"wysiwyg-editor",
"react-editor",
"slate-editor",
"text-editor",
"content-editor",
"markdown-editor",
"html-editor",
"ckeditor-alternative",
"quill-alternative",
"draft-js-alternative",
"prosemirror-alternative",
"custom-dialogs",
"modal-dialogs",
"notification-system",
"table-editor",
"image-editor",
"link-editor",
"emoji-picker",
"heading-editor",
"text-formatting",
"font-controls",
"color-picker",
"alignment-tools",
"list-editor",
"code-block",
"auto-save",
"theme-support",
"responsive-editor",
"typescript-editor",
"plugin-system",
"extensible-editor",
"modern-editor",
"professional-editor",
"content-management",
"document-editor",
"blog-editor",
"cms-editor"
],
"author": {
"name": "MJEditor Team",
"email": "support@mjeditor.dev",
"url": "https://mjeditor.dev"
},
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"slate": "^0.94.0",
"slate-history": "^0.93.0",
"slate-react": "^0.94.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^4.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^3.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-username/mjeditor.git",
"directory": "mj-editor-library"
},
"bugs": {
"url": "https://github.com/your-username/mjeditor/issues"
},
"homepage": "https://mjeditor.dev",
"documentation": "https://mjeditor.dev/docs",
"demo": "https://mjeditor.dev/demo",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/your-username"
},
"publishConfig": {
"access": "public"
},
"sideEffects": [
"**/*.css"
],
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}