@lofcz/platejs-core 52.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +11 -0
- package/dist/hotkeys-DI1HPO2Q.js +115 -0
- package/dist/hotkeys-DI1HPO2Q.js.map +1 -0
- package/dist/index-NTp--CEF.d.ts +4294 -0
- package/dist/index-NTp--CEF.d.ts.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +387 -0
- package/dist/index.js.map +1 -0
- package/dist/react/index.d.ts +2056 -0
- package/dist/react/index.d.ts.map +1 -0
- package/dist/react/index.js +2582 -0
- package/dist/react/index.js.map +1 -0
- package/dist/static/index.d.ts +2 -0
- package/dist/static/index.js +4 -0
- package/dist/static-CVN6JhaR.js +728 -0
- package/dist/static-CVN6JhaR.js.map +1 -0
- package/dist/withSlate-1B0SfAWG.js +2823 -0
- package/dist/withSlate-1B0SfAWG.js.map +1 -0
- package/package.json +85 -0
package/package.json
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lofcz/platejs-core",
|
|
3
|
+
"version": "52.3.4",
|
|
4
|
+
"description": "The core of Plate – a plugin system for slate",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"contentEditable",
|
|
7
|
+
"editor",
|
|
8
|
+
"framework",
|
|
9
|
+
"html",
|
|
10
|
+
"plate",
|
|
11
|
+
"plugin",
|
|
12
|
+
"rich text",
|
|
13
|
+
"slate",
|
|
14
|
+
"wysiwyg"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://platejs.org",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/udecode/plate/issues"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/lofcz/plate.git",
|
|
23
|
+
"directory": "packages/core"
|
|
24
|
+
},
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"sideEffects": false,
|
|
27
|
+
"exports": {
|
|
28
|
+
".": "./dist/index.js",
|
|
29
|
+
"./react": "./dist/react/index.js",
|
|
30
|
+
"./static": "./dist/static/index.js",
|
|
31
|
+
"./package.json": "./package.json"
|
|
32
|
+
},
|
|
33
|
+
"main": "./dist/index.js",
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"files": [
|
|
36
|
+
"dist/**/*"
|
|
37
|
+
],
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"clsx": "^2.1.1",
|
|
40
|
+
"html-entities": "^2.6.0",
|
|
41
|
+
"is-hotkey": "^0.2.0",
|
|
42
|
+
"jotai": "~2.8.4",
|
|
43
|
+
"jotai-optics": "0.4.0",
|
|
44
|
+
"jotai-x": "2.3.3",
|
|
45
|
+
"lodash": "^4.17.21",
|
|
46
|
+
"nanoid": "^5.1.5",
|
|
47
|
+
"optics-ts": "2.4.1",
|
|
48
|
+
"react-compiler-runtime": "^1.0.0",
|
|
49
|
+
"slate": "0.123.0",
|
|
50
|
+
"slate-dom": "0.123.0",
|
|
51
|
+
"slate-hyperscript": "0.100.0",
|
|
52
|
+
"slate-react": "0.123.0",
|
|
53
|
+
"use-deep-compare": "^1.3.0",
|
|
54
|
+
"zustand": "^5.0.5",
|
|
55
|
+
"zustand-x": "6.2.1",
|
|
56
|
+
"@platejs/slate": "npm:@lofcz/platejs-slate@52.3.4",
|
|
57
|
+
"@udecode/react-hotkeys": "npm:@lofcz/udecode-react-hotkeys@52.0.11",
|
|
58
|
+
"@udecode/utils": "npm:@lofcz/udecode-utils@52.3.4",
|
|
59
|
+
"@udecode/react-utils": "npm:@lofcz/udecode-react-utils@52.3.4"
|
|
60
|
+
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"react": ">=18.0.0",
|
|
63
|
+
"react-dom": ">=18.0.0"
|
|
64
|
+
},
|
|
65
|
+
"publishConfig": {
|
|
66
|
+
"access": "public"
|
|
67
|
+
},
|
|
68
|
+
"type": "module",
|
|
69
|
+
"module": "./dist/index.js",
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"mutative": "^1.1.0",
|
|
72
|
+
"@plate/scripts": "1.0.0"
|
|
73
|
+
},
|
|
74
|
+
"scripts": {
|
|
75
|
+
"brl": "plate-pkg p:brl",
|
|
76
|
+
"build": "plate-pkg p:build",
|
|
77
|
+
"build:watch": "plate-pkg p:build:watch",
|
|
78
|
+
"clean": "plate-pkg p:clean",
|
|
79
|
+
"lint": "plate-pkg p:lint",
|
|
80
|
+
"lint:fix": "plate-pkg p:lint:fix",
|
|
81
|
+
"test": "plate-pkg p:test",
|
|
82
|
+
"test:watch": "plate-pkg p:test:watch",
|
|
83
|
+
"typecheck": "plate-pkg p:typecheck"
|
|
84
|
+
}
|
|
85
|
+
}
|