forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 895 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
41
42
{
"name": "slate-history",
"description": "An operation-based history implementation for Slate editors.",
"version": "0.66.0",
"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": {
"is-plain-object": "^5.0.0"
},
"devDependencies": {
"@babel/runtime": "^7.7.4",
"lodash": "^4.17.21",
"slate": "^0.81.0",
"slate-hyperscript": "^0.77.0",
"source-map-loader": "^0.2.4"
},
"peerDependencies": {
"slate": ">=0.65.3"
},
"umdGlobals": {
"slate": "Slate"
},
"keywords": [
"editor",
"history",
"operation",
"redo",
"save",
"slate",
"stack",
"undo"
]
}