similiquedicta
Version:
A Plugin Architecture on top of Draft.JS
54 lines (53 loc) • 1.13 kB
JSON
{
"name": "@draft-js-plugins/editor",
"version": "4.1.2",
"sideEffects": false,
"description": "Editor for DraftJS Plugins",
"author": {
"name": "Nik Graf",
"email": "nik@nikgraf.com",
"url": "http://www.nikgraf.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",
"build:js": "yarn rollup --config ../../rollup.config.js",
"build:dts": "tsc -d",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"immutable": "~3.7.4",
"prop-types": "^15.8.1"
},
"peerDependencies": {
"draft-js": "^0.11.0",
"react": "^16.3.0 || ^17.0.0"
},
"devDependencies": {
"@types/draft-js": "^0.11.9"
},
"publishConfig": {
"access": "public"
}
}