react-simple-wysiwyg
Version:
Simple and lightweight React WYSIWYG editor
72 lines (71 loc) • 2.19 kB
JSON
{
"name": "react-simple-wysiwyg",
"version": "3.2.1",
"description": "Simple and lightweight React WYSIWYG editor",
"main": "lib/index.cjs.js",
"module": "lib/index.es.mjs",
"unpkg": "lib/index.umd.min.js",
"typings": "lib/index.d.ts",
"scripts": {
"start": "npm run build && npm start --prefix examples/typescript",
"build": "rm -rf lib && rollup -c",
"pages": "gh-pages -d examples/github.io",
"lint": "tsc --noEmit && eslint src examples",
"postversion": "git push && git push --tags",
"prepare": "npm install --prefix examples/typescript",
"prepack": "npm run build && npm run test",
"test": "npm run lint && spech",
"test:e2e": "npm test --prefix e2e/cra",
"test:full": "npm run test && npm run test:e2e"
},
"repository": "megahertz/react-simple-wysiwyg",
"files": [
"lib"
],
"keywords": [
"react",
"wysiwyg",
"editor",
"rich text"
],
"author": "Alexey Prokhorov",
"license": "MIT",
"bugs": "https://github.com/megahertz/react-simple-wysiwyg/issues",
"homepage": "https://github.com/megahertz/react-simple-wysiwyg#readme",
"devDependencies": {
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/react": "^19.0.10",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"eslint": "^8.50.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-tsc": "^2.0.0",
"gh-pages": "^6.3.0",
"prettier": "^3.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.34.9",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-styler": "^2.0.0",
"rollup-plugin-ts": "^3.4.5",
"spech": "^0.2.1",
"typescript": "^5.8.2"
},
"peerDependencies": {
"react": ">=16.8"
},
"prettier": {
"printWidth": 80,
"semi": true,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
}
}