@liminis/editor 0.1.0-rc.1
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 +34 -0
- package/README.md +376 -0
- package/dist/annotations/anchor-align.d.ts +50 -0
- package/dist/annotations/anchor-align.js +74 -0
- package/dist/annotations/anchor-model.d.ts +81 -0
- package/dist/annotations/anchor-model.js +80 -0
- package/dist/annotations/anchor-resolver.d.ts +92 -0
- package/dist/annotations/anchor-resolver.js +231 -0
- package/dist/annotations/block-structure.d.ts +65 -0
- package/dist/annotations/block-structure.js +113 -0
- package/dist/annotations/types.d.ts +159 -0
- package/dist/annotations/types.js +50 -0
- package/dist/annotations.d.ts +25 -0
- package/dist/annotations.js +27 -0
- package/dist/app/App.d.ts +64 -0
- package/dist/app/App.js +180 -0
- package/dist/app/editor/AmbientCorrectionPlugin.d.ts +18 -0
- package/dist/app/editor/AmbientCorrectionPlugin.js +185 -0
- package/dist/app/editor/AnchorScrollPlugin.d.ts +16 -0
- package/dist/app/editor/AnchorScrollPlugin.js +134 -0
- package/dist/app/editor/AnnotationMarkerPlugin.d.ts +24 -0
- package/dist/app/editor/AnnotationMarkerPlugin.js +224 -0
- package/dist/app/editor/AnnotationPlugin.d.ts +42 -0
- package/dist/app/editor/AnnotationPlugin.js +135 -0
- package/dist/app/editor/AnnotationSurface.d.ts +34 -0
- package/dist/app/editor/AnnotationSurface.js +115 -0
- package/dist/app/editor/AssetContext.d.ts +20 -0
- package/dist/app/editor/AssetContext.js +81 -0
- package/dist/app/editor/BlockClickPlugin.d.ts +8 -0
- package/dist/app/editor/BlockClickPlugin.js +126 -0
- package/dist/app/editor/CodeBlockPlugin.d.ts +1 -0
- package/dist/app/editor/CodeBlockPlugin.js +219 -0
- package/dist/app/editor/CorrectionPanelPlugin.d.ts +14 -0
- package/dist/app/editor/CorrectionPanelPlugin.js +333 -0
- package/dist/app/editor/DragHandlePlugin.d.ts +1 -0
- package/dist/app/editor/DragHandlePlugin.js +300 -0
- package/dist/app/editor/Editor.d.ts +84 -0
- package/dist/app/editor/Editor.js +539 -0
- package/dist/app/editor/FrontmatterPlugin.d.ts +19 -0
- package/dist/app/editor/FrontmatterPlugin.js +301 -0
- package/dist/app/editor/ImageModal.d.ts +13 -0
- package/dist/app/editor/ImageModal.js +267 -0
- package/dist/app/editor/ImagePlugin.d.ts +3 -0
- package/dist/app/editor/ImagePlugin.js +187 -0
- package/dist/app/editor/LinkClickPlugin.d.ts +23 -0
- package/dist/app/editor/LinkClickPlugin.js +90 -0
- package/dist/app/editor/MarkdownShortcutsPlugin.d.ts +49 -0
- package/dist/app/editor/MarkdownShortcutsPlugin.js +373 -0
- package/dist/app/editor/OrderedTaskListPlugin.d.ts +21 -0
- package/dist/app/editor/OrderedTaskListPlugin.js +78 -0
- package/dist/app/editor/SearchPlugin.d.ts +1 -0
- package/dist/app/editor/SearchPlugin.js +379 -0
- package/dist/app/editor/SelectionContextMenuPlugin.d.ts +29 -0
- package/dist/app/editor/SelectionContextMenuPlugin.js +160 -0
- package/dist/app/editor/SlashMenu.d.ts +11 -0
- package/dist/app/editor/SlashMenu.js +494 -0
- package/dist/app/editor/SlashMenuPlugin.d.ts +1 -0
- package/dist/app/editor/SlashMenuPlugin.js +168 -0
- package/dist/app/editor/TableActionsPlugin.d.ts +1 -0
- package/dist/app/editor/TableActionsPlugin.js +398 -0
- package/dist/app/editor/TogglePlugin.d.ts +1 -0
- package/dist/app/editor/TogglePlugin.js +159 -0
- package/dist/app/editor/Toolbar.d.ts +10 -0
- package/dist/app/editor/Toolbar.js +263 -0
- package/dist/app/editor/WikiLinkExistencePlugin.d.ts +17 -0
- package/dist/app/editor/WikiLinkExistencePlugin.js +104 -0
- package/dist/app/editor/WikiLinkFormatPlugin.d.ts +17 -0
- package/dist/app/editor/WikiLinkFormatPlugin.js +203 -0
- package/dist/app/editor/annotation-marks.d.ts +177 -0
- package/dist/app/editor/annotation-marks.js +750 -0
- package/dist/app/editor/annotationCommands.d.ts +13 -0
- package/dist/app/editor/annotationCommands.js +11 -0
- package/dist/app/editor/c4/C4InteractiveRenderer.d.ts +35 -0
- package/dist/app/editor/c4/C4InteractiveRenderer.js +299 -0
- package/dist/app/editor/c4/edge-clipping.d.ts +24 -0
- package/dist/app/editor/c4/edge-clipping.js +139 -0
- package/dist/app/editor/c4/hooks/useC4DiagramDrag.d.ts +38 -0
- package/dist/app/editor/c4/hooks/useC4DiagramDrag.js +112 -0
- package/dist/app/editor/c4/layout.d.ts +25 -0
- package/dist/app/editor/c4/layout.js +839 -0
- package/dist/app/editor/c4/parser.d.ts +19 -0
- package/dist/app/editor/c4/parser.js +410 -0
- package/dist/app/editor/c4/render-to-string.d.ts +24 -0
- package/dist/app/editor/c4/render-to-string.js +34 -0
- package/dist/app/editor/c4/renderer.d.ts +64 -0
- package/dist/app/editor/c4/renderer.js +569 -0
- package/dist/app/editor/c4/types.d.ts +203 -0
- package/dist/app/editor/c4/types.js +43 -0
- package/dist/app/editor/correction-yaml.d.ts +10 -0
- package/dist/app/editor/correction-yaml.js +40 -0
- package/dist/app/editor/editorNodes.d.ts +9 -0
- package/dist/app/editor/editorNodes.js +36 -0
- package/dist/app/editor/index.d.ts +1 -0
- package/dist/app/editor/index.js +1 -0
- package/dist/app/editor/mark-overlap-resolver.d.ts +6 -0
- package/dist/app/editor/mark-overlap-resolver.js +45 -0
- package/dist/app/editor/nodes/C4Component.d.ts +14 -0
- package/dist/app/editor/nodes/C4Component.js +284 -0
- package/dist/app/editor/nodes/C4Node.d.ts +32 -0
- package/dist/app/editor/nodes/C4Node.js +112 -0
- package/dist/app/editor/nodes/CalloutNode.d.ts +23 -0
- package/dist/app/editor/nodes/CalloutNode.js +94 -0
- package/dist/app/editor/nodes/CustomLinkNode.d.ts +57 -0
- package/dist/app/editor/nodes/CustomLinkNode.js +209 -0
- package/dist/app/editor/nodes/CustomListItemNode.d.ts +46 -0
- package/dist/app/editor/nodes/CustomListItemNode.js +120 -0
- package/dist/app/editor/nodes/CustomListNode.d.ts +27 -0
- package/dist/app/editor/nodes/CustomListNode.js +54 -0
- package/dist/app/editor/nodes/DefinitionListNode.d.ts +44 -0
- package/dist/app/editor/nodes/DefinitionListNode.js +151 -0
- package/dist/app/editor/nodes/DiagramContextMenu.d.ts +45 -0
- package/dist/app/editor/nodes/DiagramContextMenu.js +116 -0
- package/dist/app/editor/nodes/EquationComponent.d.ts +17 -0
- package/dist/app/editor/nodes/EquationComponent.js +130 -0
- package/dist/app/editor/nodes/EquationNode.d.ts +43 -0
- package/dist/app/editor/nodes/EquationNode.js +179 -0
- package/dist/app/editor/nodes/FootnoteNode.d.ts +40 -0
- package/dist/app/editor/nodes/FootnoteNode.js +151 -0
- package/dist/app/editor/nodes/FrontmatterNode.d.ts +24 -0
- package/dist/app/editor/nodes/FrontmatterNode.js +88 -0
- package/dist/app/editor/nodes/HorizontalRuleNode.d.ts +17 -0
- package/dist/app/editor/nodes/HorizontalRuleNode.js +57 -0
- package/dist/app/editor/nodes/HtmlNode.d.ts +32 -0
- package/dist/app/editor/nodes/HtmlNode.js +121 -0
- package/dist/app/editor/nodes/ImageComponent.d.ts +11 -0
- package/dist/app/editor/nodes/ImageComponent.js +228 -0
- package/dist/app/editor/nodes/ImageNode.d.ts +53 -0
- package/dist/app/editor/nodes/ImageNode.js +183 -0
- package/dist/app/editor/nodes/ListItemParagraphBreakNode.d.ts +42 -0
- package/dist/app/editor/nodes/ListItemParagraphBreakNode.js +95 -0
- package/dist/app/editor/nodes/MermaidComponent.d.ts +11 -0
- package/dist/app/editor/nodes/MermaidComponent.js +216 -0
- package/dist/app/editor/nodes/MermaidNode.d.ts +27 -0
- package/dist/app/editor/nodes/MermaidNode.js +96 -0
- package/dist/app/editor/nodes/ToggleNode.d.ts +56 -0
- package/dist/app/editor/nodes/ToggleNode.js +237 -0
- package/dist/app/editor/nodes/diagram-context-menu.d.ts +11 -0
- package/dist/app/editor/nodes/diagram-context-menu.js +70 -0
- package/dist/app/editor/nodes/diagram-utils.d.ts +13 -0
- package/dist/app/editor/nodes/diagram-utils.js +29 -0
- package/dist/app/editor/nodes/index.d.ts +30 -0
- package/dist/app/editor/nodes/index.js +17 -0
- package/dist/app/editor/utils.d.ts +2 -0
- package/dist/app/editor/utils.js +17 -0
- package/dist/app/mapper/index.d.ts +3 -0
- package/dist/app/mapper/index.js +2 -0
- package/dist/app/mapper/lexicalToMdast.d.ts +62 -0
- package/dist/app/mapper/lexicalToMdast.js +1937 -0
- package/dist/app/mapper/mdastToLexical.d.ts +31 -0
- package/dist/app/mapper/mdastToLexical.js +1075 -0
- package/dist/contract.d.ts +8 -0
- package/dist/contract.js +8 -0
- package/dist/headless.d.ts +40 -0
- package/dist/headless.js +45 -0
- package/dist/host/context.d.ts +20 -0
- package/dist/host/context.js +24 -0
- package/dist/host/defaults.d.ts +21 -0
- package/dist/host/defaults.js +47 -0
- package/dist/host/messages.d.ts +26 -0
- package/dist/host/messages.js +47 -0
- package/dist/host/types.d.ts +75 -0
- package/dist/host/types.js +13 -0
- package/dist/index.d.ts +35 -0
- package/dist/index.js +51 -0
- package/dist/markdown/annotate-sentinels.d.ts +42 -0
- package/dist/markdown/annotate-sentinels.js +86 -0
- package/dist/markdown/parse.d.ts +56 -0
- package/dist/markdown/parse.js +516 -0
- package/dist/markdown/stringify.d.ts +7 -0
- package/dist/markdown/stringify.js +439 -0
- package/dist/markdown/vendor/mdast-util-wiki-link/LICENSE +21 -0
- package/dist/markdown/vendor/mdast-util-wiki-link/README.md +41 -0
- package/dist/markdown/vendor/mdast-util-wiki-link/from-markdown.d.ts +72 -0
- package/dist/markdown/vendor/mdast-util-wiki-link/from-markdown.js +127 -0
- package/dist/markdown/vendor/mdast-util-wiki-link/index.d.ts +8 -0
- package/dist/markdown/vendor/mdast-util-wiki-link/index.js +6 -0
- package/dist/markdown/vendor/mdast-util-wiki-link/to-markdown.d.ts +17 -0
- package/dist/markdown/vendor/mdast-util-wiki-link/to-markdown.js +33 -0
- package/dist/markdown.d.ts +28 -0
- package/dist/markdown.js +44 -0
- package/dist/mathjax-config.d.ts +89 -0
- package/dist/mathjax-config.js +133 -0
- package/dist/nodes.d.ts +34 -0
- package/dist/nodes.js +34 -0
- package/dist/stores/correctionStore.d.ts +15 -0
- package/dist/stores/correctionStore.js +12 -0
- package/dist/stores/editorStore.d.ts +16 -0
- package/dist/stores/editorStore.js +27 -0
- package/dist/styles.css +2477 -0
- package/dist/types.d.ts +296 -0
- package/dist/types.js +91 -0
- package/dist/utils/file-types.d.ts +10 -0
- package/dist/utils/file-types.js +46 -0
- package/docs/annotations.md +134 -0
- package/docs/decisions/README.md +72 -0
- package/docs/decisions/adr-002.md +27 -0
- package/docs/decisions/adr-007.md +27 -0
- package/docs/decisions/adr-010.md +26 -0
- package/docs/decisions/adr-024.md +124 -0
- package/docs/decisions/adr-024b.md +0 -0
- package/docs/decisions/adr-025.md +103 -0
- package/docs/decisions/adr-027.md +66 -0
- package/docs/decisions/adr-057.md +67 -0
- package/docs/decisions/adr-070.md +131 -0
- package/docs/decisions/adr-075.md +410 -0
- package/docs/decisions/adr-076.md +183 -0
- package/docs/decisions/adr-077.md +410 -0
- package/docs/decisions/adr-078.md +243 -0
- package/docs/decisions/adr-079.md +167 -0
- package/docs/decisions/adr-080.md +325 -0
- package/docs/decisions/adr-081.md +108 -0
- package/docs/decisions/adr-082.md +123 -0
- package/docs/decisions/adr-083.md +204 -0
- package/docs/decisions/adr-084.md +179 -0
- package/docs/editor-api.md +106 -0
- package/docs/markdown-pipeline.md +282 -0
- package/docs/provenance.md +106 -0
- package/docs/zusammen-editor-capability-map.md +232 -0
- package/package.json +175 -0
package/package.json
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@liminis/editor",
|
|
3
|
+
"version": "0.1.0-rc.1",
|
|
4
|
+
"//publishing": "Publishing is deliberate, never incidental. `private: true` was this package's guard until verveguy/liminis-editor#39 took the publish decision; it is gone because that decision was taken, not because it was tidied away. The guard is now `prepublishOnly` -> scripts/guard-publish.mjs, which refuses unless LIMINIS_ALLOW_PUBLISH=1 is set explicitly. That variable is set at step scope in .github/workflows/publish.yml and nowhere else, so a release is the only path that publishes. Note that `npm publish --dry-run` does NOT report a private package as blocked (npm 10.8.2), which is why the guard is a script rather than a flag.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"description": "Lexical-based markdown WYSIWYG editor with mdast round-trip and a host-injection seam",
|
|
7
|
+
"//packageManager": "Not cosmetic. This field used to live in the monorepo root manifest and did not travel with the package, so `pnpm/action-setup` had no version to read and CI failed before installing anything. It is also what pins the pnpm that resolves the lockfile.",
|
|
8
|
+
"packageManager": "pnpm@10.33.0",
|
|
9
|
+
"type": "module",
|
|
10
|
+
"main": "./src/index.ts",
|
|
11
|
+
"types": "./src/index.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./src/index.ts",
|
|
15
|
+
"default": "./src/index.ts"
|
|
16
|
+
},
|
|
17
|
+
"./markdown": {
|
|
18
|
+
"types": "./src/markdown.ts",
|
|
19
|
+
"default": "./src/markdown.ts"
|
|
20
|
+
},
|
|
21
|
+
"./annotations": {
|
|
22
|
+
"types": "./src/annotations.ts",
|
|
23
|
+
"default": "./src/annotations.ts"
|
|
24
|
+
},
|
|
25
|
+
"./headless": {
|
|
26
|
+
"types": "./src/headless.ts",
|
|
27
|
+
"default": "./src/headless.ts"
|
|
28
|
+
},
|
|
29
|
+
"./contract": {
|
|
30
|
+
"types": "./src/contract.ts",
|
|
31
|
+
"default": "./src/contract.ts"
|
|
32
|
+
},
|
|
33
|
+
"./nodes": {
|
|
34
|
+
"types": "./src/nodes.ts",
|
|
35
|
+
"default": "./src/nodes.ts"
|
|
36
|
+
},
|
|
37
|
+
"./styles.css": "./src/styles.css"
|
|
38
|
+
},
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public",
|
|
41
|
+
"main": "./dist/index.js",
|
|
42
|
+
"types": "./dist/index.d.ts",
|
|
43
|
+
"exports": {
|
|
44
|
+
".": {
|
|
45
|
+
"types": "./dist/index.d.ts",
|
|
46
|
+
"default": "./dist/index.js"
|
|
47
|
+
},
|
|
48
|
+
"./markdown": {
|
|
49
|
+
"types": "./dist/markdown.d.ts",
|
|
50
|
+
"default": "./dist/markdown.js"
|
|
51
|
+
},
|
|
52
|
+
"./annotations": {
|
|
53
|
+
"types": "./dist/annotations.d.ts",
|
|
54
|
+
"default": "./dist/annotations.js"
|
|
55
|
+
},
|
|
56
|
+
"./headless": {
|
|
57
|
+
"types": "./dist/headless.d.ts",
|
|
58
|
+
"default": "./dist/headless.js"
|
|
59
|
+
},
|
|
60
|
+
"./contract": {
|
|
61
|
+
"types": "./dist/contract.d.ts",
|
|
62
|
+
"default": "./dist/contract.js"
|
|
63
|
+
},
|
|
64
|
+
"./nodes": {
|
|
65
|
+
"types": "./dist/nodes.d.ts",
|
|
66
|
+
"default": "./dist/nodes.js"
|
|
67
|
+
},
|
|
68
|
+
"./styles.css": "./dist/styles.css"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"files": [
|
|
72
|
+
"dist",
|
|
73
|
+
"README.md",
|
|
74
|
+
"LICENSE",
|
|
75
|
+
"docs"
|
|
76
|
+
],
|
|
77
|
+
"scripts": {
|
|
78
|
+
"build": "pnpm run clean && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json --resolve-full-paths && node ./scripts/copy-assets.mjs",
|
|
79
|
+
"clean": "rm -rf dist",
|
|
80
|
+
"prepack": "pnpm run build",
|
|
81
|
+
"prepublishOnly": "node scripts/guard-publish.mjs",
|
|
82
|
+
"lint": "eslint src/ tests/",
|
|
83
|
+
"lint:fix": "eslint src/ tests/ --fix",
|
|
84
|
+
"typecheck": "tsc --noEmit",
|
|
85
|
+
"test": "vitest run",
|
|
86
|
+
"test:watch": "vitest",
|
|
87
|
+
"test:coverage": "vitest run --coverage",
|
|
88
|
+
"verify:package": "node scripts/verify-package.mjs",
|
|
89
|
+
"demo": "node scripts/run-demo.mjs",
|
|
90
|
+
"build:examples": "node scripts/build-examples.mjs",
|
|
91
|
+
"build:site": "node scripts/build-site.mjs"
|
|
92
|
+
},
|
|
93
|
+
"//peerDependencies": "Ranges are the compatibility contract, not the tested matrix. CI resolves one point version per range (currently react 19.2.x latest and lexical 0.44.x latest), so every caret range here has an untested lower half \u2014 narrowing `react` to the devDependency's `^19.2.5` would not change that, it would only reject working consumers. The react floor is not a claim, it is enforced: `tests/package-manifest-contract.test.ts` (\"imports no React API newer than the declared 19.2.0 peer floor\") scans every source file for post-19.0 named imports \u2014 `useEffectEvent`, `Activity`, `cacheSignal`, `ViewTransition`, `captureOwnerStack` \u2014 and fails if one appears. Reaching for a newer API therefore breaks CI until you raise the floor here too, which is the pairing this note would otherwise only assert. Raise a floor when the code actually starts needing a later API, not to mirror whatever CI happened to install.",
|
|
94
|
+
"peerDependencies": {
|
|
95
|
+
"@lexical/code": "^0.44.0",
|
|
96
|
+
"@lexical/code-prism": "^0.44.0",
|
|
97
|
+
"@lexical/link": "^0.44.0",
|
|
98
|
+
"@lexical/list": "^0.44.0",
|
|
99
|
+
"@lexical/mark": "^0.44.0",
|
|
100
|
+
"@lexical/markdown": "^0.44.0",
|
|
101
|
+
"@lexical/react": "^0.44.0",
|
|
102
|
+
"@lexical/rich-text": "^0.44.0",
|
|
103
|
+
"@lexical/selection": "^0.44.0",
|
|
104
|
+
"@lexical/table": "^0.44.0",
|
|
105
|
+
"@lexical/utils": "^0.44.0",
|
|
106
|
+
"lexical": "^0.44.0",
|
|
107
|
+
"react": "^19.2.0",
|
|
108
|
+
"react-dom": "^19.2.0"
|
|
109
|
+
},
|
|
110
|
+
"dependencies": {
|
|
111
|
+
"@dagrejs/dagre": "^3.0.0",
|
|
112
|
+
"@mathjax/src": "^4.1.1",
|
|
113
|
+
"lucide-react": "^1.11.0",
|
|
114
|
+
"mdast-util-definition-list": "^2.0.0",
|
|
115
|
+
"mdast-util-from-markdown": "^2.0.3",
|
|
116
|
+
"mdast-util-frontmatter": "^2.0.1",
|
|
117
|
+
"mdast-util-gfm": "^3.1.0",
|
|
118
|
+
"mdast-util-gfm-footnote": "^2.1.0",
|
|
119
|
+
"mdast-util-math": "^3.0.0",
|
|
120
|
+
"mdast-util-to-markdown": "^2.1.2",
|
|
121
|
+
"mermaid": "^11.14.0",
|
|
122
|
+
"micromark-extension-definition-list": "^2.0.1",
|
|
123
|
+
"micromark-extension-frontmatter": "^2.0.0",
|
|
124
|
+
"micromark-extension-gfm": "^3.0.0",
|
|
125
|
+
"micromark-extension-gfm-footnote": "^2.1.0",
|
|
126
|
+
"micromark-extension-math": "^3.1.0",
|
|
127
|
+
"micromark-extension-wiki-link": "^0.0.4",
|
|
128
|
+
"prismjs": "^1.30.0",
|
|
129
|
+
"yaml": "^2.8.3",
|
|
130
|
+
"zod": "^4.3.6",
|
|
131
|
+
"zustand": "^5.0.12"
|
|
132
|
+
},
|
|
133
|
+
"devDependencies": {
|
|
134
|
+
"@eslint/js": "^10.0.1",
|
|
135
|
+
"@lexical/code": "^0.44.0",
|
|
136
|
+
"@lexical/code-prism": "^0.44.0",
|
|
137
|
+
"@lexical/link": "^0.44.0",
|
|
138
|
+
"@lexical/list": "^0.44.0",
|
|
139
|
+
"@lexical/mark": "^0.44.0",
|
|
140
|
+
"@lexical/markdown": "^0.44.0",
|
|
141
|
+
"@lexical/react": "^0.44.0",
|
|
142
|
+
"@lexical/rich-text": "^0.44.0",
|
|
143
|
+
"@lexical/selection": "^0.44.0",
|
|
144
|
+
"@lexical/table": "^0.44.0",
|
|
145
|
+
"@lexical/utils": "^0.44.0",
|
|
146
|
+
"@testing-library/react": "^16.3.2",
|
|
147
|
+
"@types/mdast": "^4.0.4",
|
|
148
|
+
"@types/node": "^25.6.0",
|
|
149
|
+
"@types/react": "^19.2.14",
|
|
150
|
+
"@types/react-dom": "^19.2.3",
|
|
151
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
152
|
+
"@vitest/coverage-v8": "^4.1.5",
|
|
153
|
+
"diff": "^9.0.0",
|
|
154
|
+
"eslint": "^10.2.1",
|
|
155
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
156
|
+
"eslint-plugin-react-refresh": "^0.5.2",
|
|
157
|
+
"globals": "^17.5.0",
|
|
158
|
+
"happy-dom": "^20.9.0",
|
|
159
|
+
"lexical": "^0.44.0",
|
|
160
|
+
"react": "^19.2.5",
|
|
161
|
+
"react-dom": "^19.2.5",
|
|
162
|
+
"tsc-alias": "^1.9.1",
|
|
163
|
+
"typescript": "^6.0.3",
|
|
164
|
+
"typescript-eslint": "^8.59.0",
|
|
165
|
+
"vitest": "^4.1.5"
|
|
166
|
+
},
|
|
167
|
+
"repository": {
|
|
168
|
+
"type": "git",
|
|
169
|
+
"url": "git+https://github.com/verveguy/liminis-editor.git"
|
|
170
|
+
},
|
|
171
|
+
"bugs": {
|
|
172
|
+
"url": "https://github.com/verveguy/liminis-editor/issues"
|
|
173
|
+
},
|
|
174
|
+
"homepage": "https://github.com/verveguy/liminis-editor#readme"
|
|
175
|
+
}
|