forked from udecode/plate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "@udecode/slate-plugins-select",
"version": "1.0.0-next.37",
"description": "Slate plugins select",
"keywords": [],
"homepage": "https://github.com/udecode/slate-plugins/tree/main/packages/select#readme",
"bugs": {
"url": "https://github.com/udecode/slate-plugins/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/udecode/slate-plugins.git"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"cti": "sh ../../cti.sh",
"prebuild": "rimraf dist",
"build": "tsc && yarn rollup",
"build:w": "yarn rollup -w",
"rollup": "rollup -c=../../rollup.config.js",
"test": "jest"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": ">=0.60.0",
"slate-react": ">=0.60.0"
},
"dependencies": {
"@udecode/slate-plugins-common": "1.0.0-next.37",
"@udecode/slate-plugins-core": "1.0.0-next.36"
},
"publishConfig": {
"access": "public"
}
}