forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 838 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-hyperscript",
"description": "A hyperscript helper for creating Slate documents.",
"version": "0.67.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-hyperscript.js",
"umdMin": "dist/slate-hyperscript.min.js",
"sideEffects": false,
"files": [
"dist/"
],
"dependencies": {
"is-plain-object": "^5.0.0"
},
"devDependencies": {
"@babel/runtime": "^7.7.4",
"slate": "^0.72.0",
"source-map-loader": "^0.2.4"
},
"peerDependencies": {
"slate": ">=0.65.3"
},
"umdGlobals": {
"slate": "Slate"
},
"keywords": [
"deserialize",
"h",
"html",
"hyperscript",
"jsx",
"serialize",
"slate",
"xml"
]
}