forked from draft-js-plugins/draft-js-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "draft-js-inline-toolbar-plugin",
"version": "3.0.1",
"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": "../node_modules/.bin/rimraf lib",
"build": "yarn clean && yarn build:js && yarn build:ts && yarn build:css",
"build:js": "../node_modules/.bin/rollup --config ../rollup.config.js",
"build:ts": "../node_modules/.bin/cpx src/*.d.ts lib/",
"build:css": "node ../scripts/build-css.js $(pwd)",
"prepublish": "yarn build"
},
"license": "MIT",
"dependencies": {
"draft-js-buttons": "^2.0.1"
},
"peerDependencies": {
"draft-js": "^0.10.1 || ^0.11.0",
"react": "^16.3.0"
}
}