forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.19 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "slate",
"description": "A completely customizable framework for building rich text editors.",
"version": "0.47.8",
"license": "MIT",
"repository": "git://github.com/ianstormtaylor/slate.git",
"main": "lib/slate.js",
"module": "lib/slate.es.js",
"umd": "dist/slate.js",
"umdMin": "dist/slate.min.js",
"files": [
"dist/",
"lib/"
],
"dependencies": {
"debug": "^3.1.0",
"direction": "^0.1.5",
"esrever": "^0.2.0",
"is-plain-object": "^2.0.4",
"lodash": "^4.17.4",
"tiny-invariant": "^1.0.1",
"tiny-warning": "^0.0.3",
"type-of": "^2.0.1"
},
"peerDependencies": {
"immutable": ">=3.8.1 || >4.0.0-rc"
},
"devDependencies": {
"slate-dev-test-utils": "^0.0.1",
"slate-hyperscript": "^0.13.8"
},
"scripts": {
"clean": "rm -rf ./dist ./lib ./node_modules"
},
"umdGlobals": {
"immutable": "Immutable"
},
"keywords": [
"canvas",
"contenteditable",
"doc",
"docs",
"document",
"edit",
"editor",
"html",
"immutable",
"markdown",
"medium",
"paper",
"react",
"rich",
"rich-text",
"richtext",
"slate",
"text",
"wysiwyg",
"wysiwym"
]
}