forked from ianstormtaylor/slate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 771 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
{
"name": "slate-hyperscript",
"description": "A hyperscript helper for creating Slate documents.",
"version": "0.62.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": "^3.0.0"
},
"devDependencies": {
"slate": "^0.63.0"
},
"peerDependencies": {
"slate": ">=0.55.0"
},
"umdGlobals": {
"slate": "Slate"
},
"keywords": [
"deserialize",
"h",
"html",
"hyperscript",
"jsx",
"serialize",
"slate",
"xml"
]
}