forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 785 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 785 Bytes
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
{
"name": "slate-hyperscript",
"description": "A hyperscript helper for creating Slate documents.",
"version": "0.115.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/"
],
"devDependencies": {
"@babel/runtime": "^7.23.2",
"slate": "^0.117.0",
"source-map-loader": "^4.0.1"
},
"peerDependencies": {
"slate": ">=0.114.3"
},
"umdGlobals": {
"slate": "Slate"
},
"keywords": [
"deserialize",
"h",
"html",
"hyperscript",
"jsx",
"serialize",
"slate",
"xml"
]
}