rme 0.1.21 → 0.1.23
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/dist/index.mjs +436 -1301
- package/dist/index.mjs.map +4 -4
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rme",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn clear && yarn build-esbuild && yarn types",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"test": "vitest run",
|
|
13
13
|
"test:dev": "vitest dev",
|
|
14
14
|
"test:coverage": "vitest run --coverage",
|
|
15
|
+
"postinstall": "patch-package",
|
|
15
16
|
"prepublishOnly": "yarn build"
|
|
16
17
|
},
|
|
17
18
|
"license": "MIT",
|
|
@@ -55,6 +56,7 @@
|
|
|
55
56
|
"@vitest/coverage-v8": "^3.2.4",
|
|
56
57
|
"@vitest/ui": "^3.2.4",
|
|
57
58
|
"css-loader": "7.1.2",
|
|
59
|
+
"dedent": "^1.6.0",
|
|
58
60
|
"esbuild": "^0.24.0",
|
|
59
61
|
"esbuild-css-modules-plugin": "^3.1.2",
|
|
60
62
|
"esbuild-decorators": "^1.0.0",
|
|
@@ -75,6 +77,7 @@
|
|
|
75
77
|
"jest-remirror": "^2.1.5",
|
|
76
78
|
"jsdom": "^25.0.1",
|
|
77
79
|
"lint-staged": "15.2.10",
|
|
80
|
+
"patch-package": "^8.0.0",
|
|
78
81
|
"postcss": "8.4.47",
|
|
79
82
|
"prettier": "3.3.3",
|
|
80
83
|
"process": "^0.11.10",
|
|
@@ -167,6 +170,7 @@
|
|
|
167
170
|
"micromark-extension-gfm-strikethrough": "^1.0.7",
|
|
168
171
|
"nanoid": "^5.0.8",
|
|
169
172
|
"parse5": "^7.2.1",
|
|
173
|
+
"prosemirror-flat-list": "0.5.4",
|
|
170
174
|
"prosemirror-paste-rules": "^3.0.0",
|
|
171
175
|
"prosemirror-safari-ime-span": "^1.0.2",
|
|
172
176
|
"react": "^18.3.1",
|
|
@@ -174,13 +178,14 @@
|
|
|
174
178
|
"react-i18next": "^15.1.0",
|
|
175
179
|
"react-popper": "^2.3.0",
|
|
176
180
|
"remirror": "^2.0.39",
|
|
181
|
+
"remirror-extension-flat-list": "0.2.1",
|
|
177
182
|
"remixicon": "^4.5.0",
|
|
178
183
|
"styled-components": "^6.1.13",
|
|
179
184
|
"stylis": "^4.3.4",
|
|
180
185
|
"svgmoji": "^3.2.0",
|
|
181
186
|
"void-elements": "^3.1.0",
|
|
182
187
|
"yjs": "^13.6.24",
|
|
183
|
-
"zens": "^0.1.
|
|
188
|
+
"zens": "^0.1.1"
|
|
184
189
|
},
|
|
185
190
|
"packageManager": "yarn@4.8.0"
|
|
186
191
|
}
|