forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 825 Bytes
/
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
{
"name": "slate-history",
"description": "An operation-based history implementation for Slate editors.",
"version": "0.57.2",
"license": "MIT",
"repository": "git://github.com/ianstormtaylor/slate.git",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"umd": "dist/slate-history.js",
"umdMin": "dist/slate-history.min.js",
"sideEffects": false,
"files": [
"dist/"
],
"dependencies": {
"immer": "^5.0.0",
"is-plain-object": "^3.0.0"
},
"devDependencies": {
"slate": "^0.57.2",
"slate-hyperscript": "^0.57.2"
},
"peerDependencies": {
"slate": ">=0.55.0"
},
"umdGlobals": {
"slate": "Slate"
},
"keywords": [
"editor",
"history",
"operation",
"redo",
"save",
"slate",
"stack",
"undo"
]
}