forked from udecode/plate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "@udecode/plate-basic-elements",
"version": "11.2.1",
"description": "Basic elements plugin for Plate",
"keywords": [
"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/nodes/basic-elements"
},
"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": {
"@udecode/plate-block-quote": "11.2.1",
"@udecode/plate-code-block": "11.2.1",
"@udecode/plate-core": "11.2.1",
"@udecode/plate-heading": "11.2.1",
"@udecode/plate-paragraph": "11.2.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": ">=0.66.1",
"slate-history": ">=0.66.0",
"slate-react": ">=0.74.2"
},
"publishConfig": {
"access": "public"
}
}