-
Notifications
You must be signed in to change notification settings - Fork 808
/
Copy pathpackage.json
89 lines (89 loc) · 2.13 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@udecode/plate-core",
"version": "40.2.8",
"description": "The core of Plate – a plugin system for slate",
"keywords": [
"contentEditable",
"editor",
"framework",
"html",
"plate",
"plugin",
"rich text",
"slate",
"wysiwyg"
],
"homepage": "https://platejs.org",
"bugs": {
"url": "https://github.com/udecode/plate/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/udecode/plate.git",
"directory": "packages/core"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"module": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.mjs",
"module": "./dist/react/index.mjs",
"require": "./dist/react/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"brl": "yarn p:brl",
"build": "yarn p:build",
"build:watch": "yarn p:build:watch",
"clean": "yarn p:clean",
"lint": "yarn p:lint",
"lint:fix": "yarn p:lint:fix",
"test": "yarn p:test",
"test:watch": "yarn p:test:watch",
"typecheck": "yarn p:typecheck"
},
"dependencies": {
"@udecode/react-hotkeys": "37.0.0",
"@udecode/react-utils": "40.2.8",
"@udecode/slate": "39.2.1",
"@udecode/slate-react": "40.2.8",
"@udecode/slate-utils": "40.2.7",
"@udecode/utils": "37.0.0",
"clsx": "^2.1.1",
"is-hotkey": "^0.2.0",
"jotai": "~2.8.4",
"jotai-optics": "0.4.0",
"jotai-x": "1.2.4",
"lodash": "^4.17.21",
"nanoid": "^3.3.7",
"optics-ts": "2.4.1",
"use-deep-compare": "^1.3.0",
"zustand": "^4.5.5",
"zustand-x": "^3.0.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": ">=0.103.0",
"slate-dom": ">=0.111.0",
"slate-history": ">=0.93.0",
"slate-hyperscript": ">=0.66.0",
"slate-react": ">=0.111.0"
},
"publishConfig": {
"access": "public"
}
}