similiquedicta
Version:
A Plugin Architecture on top of Draft.JS
59 lines (58 loc) • 1.31 kB
JSON
{
"name": "@draft-js-plugins/linkify",
"version": "4.2.0",
"sideEffects": [
"*.css"
],
"description": "Linkify 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": {
"clsx": "^1.0.4",
"linkify-it": "^3.0.3",
"tlds": "^1.229.0"
},
"peerDependencies": {
"draft-js": "^0.10.1 || ^0.11.0",
"react": "^15.5.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.5.0 || ^16.0.0 || ^17.0.0"
},
"devDependencies": {
"@types/linkify-it": "^3.0.2"
},
"publishConfig": {
"access": "public"
}
}