similiquedicta
Version:
A Plugin Architecture on top of Draft.JS
57 lines (56 loc) • 1.3 kB
JSON
{
"name": "@draft-js-plugins/side-toolbar",
"version": "5.0.0",
"sideEffects": [
"*.css"
],
"description": "Toolbar Plugin for DraftJS",
"author": {
"name": "Benjamin Kniffler",
"email": "benjamin@kniffler.com"
},
"repository": {
"type": "git",
"url": "https://github.com/draft-js-plugins/draft-js-plugins.git"
},
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"keywords": [
"editor",
"wysiwyg",
"draft",
"react",
"ux",
"components",
"widget",
"react-component"
],
"scripts": {
"clean": "yarn rimraf lib",
"build": "yarn build:js && yarn build:dts && yarn build:css",
"build:js": "yarn rollup --config ../../rollup.config.js",
"build:dts": "tsc -d",
"build:css": "node ../../scripts/build-css.js $(pwd)",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"@draft-js-plugins/buttons": "^4.0.0",
"@draft-js-plugins/utils": "^4.0.0",
"@popperjs/core": "^2.11.2",
"prop-types": "^15.8.1",
"react-popper": "^2.2.5"
},
"peerDependencies": {
"draft-js": "^0.11.0",
"react": "^16.8.0 || ^17.0.0",
"react-dom": " ^16.8.0 || ^17.0.0"
},
"publishConfig": {
"access": "public"
}
}