forked from udecode/plate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.18 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@udecode/plate-core",
"version": "6.4.1",
"description": "The core architecture of Plate – a plugin system for slate",
"keywords": [
"wysiwyg",
"rich text",
"editor",
"html",
"contentEditable",
"framework",
"slate",
"plate",
"plugin"
],
"homepage": "https://plate.udecode.io",
"bugs": {
"url": "https://github.com/udecode/plate/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/udecode/plate.git",
"directory": "packages/core"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc && yarn rollup",
"build:w": "yarn rollup -w",
"cti": "sh ../../cti.sh",
"rollup": "rollup -c=../../rollup.config.js",
"test": "jest"
},
"dependencies": {
"clsx": "^1.1.1",
"lodash": "^4.17.21",
"zustand": "^3.4.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": ">=0.66.1",
"slate-history": ">=0.66.0",
"slate-react": ">=0.66.1"
},
"publishConfig": {
"access": "public"
}
}