similiquedicta
Version:
A Plugin Architecture on top of Draft.JS
61 lines (60 loc) • 1.37 kB
JSON
{
"name": "@draft-js-plugins/mention",
"version": "5.1.1",
"sideEffects": [
"*.css"
],
"description": "Mention Plugin for DraftJS",
"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 && 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": {
"@popperjs/core": "^2.11.2",
"@types/lodash": "^4.14.178",
"clsx": "^1.0.4",
"immutable": "~3.7.4",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"prop-types": "^15.8.1",
"react-popper": "^2.2.5"
},
"peerDependencies": {
"draft-js": "^0.10.1 || ^0.11.0",
"react": "^16.8.0 || ^17.0.0"
},
"devDependencies": {},
"publishConfig": {
"access": "public"
}
}