@nuasite/cms 0.18.0 → 0.18.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/dist/editor.js +36614 -34786
- package/package.json +19 -19
- package/src/tsconfig.json +0 -2
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"directory": "packages/astro-cms"
|
|
15
15
|
},
|
|
16
16
|
"license": "Apache-2.0",
|
|
17
|
-
"version": "0.18.
|
|
17
|
+
"version": "0.18.1",
|
|
18
18
|
"module": "src/index.ts",
|
|
19
19
|
"types": "src/index.ts",
|
|
20
20
|
"type": "module",
|
|
@@ -26,24 +26,24 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@astrojs/compiler": "^3.0.
|
|
30
|
-
"@babel/parser": "^7.29.
|
|
29
|
+
"@astrojs/compiler": "^3.0.1",
|
|
30
|
+
"@babel/parser": "^7.29.2",
|
|
31
31
|
"node-html-parser": "^7.1.0",
|
|
32
|
-
"yaml": "^2.8.
|
|
32
|
+
"yaml": "^2.8.3"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@milkdown/core": "^7.19.
|
|
36
|
-
"@milkdown/ctx": "^7.19.
|
|
37
|
-
"@milkdown/plugin-listener": "^7.19.
|
|
38
|
-
"@milkdown/preset-commonmark": "^7.19.
|
|
39
|
-
"@milkdown/preset-gfm": "^7.19.
|
|
40
|
-
"@milkdown/prose": "^7.19.
|
|
41
|
-
"@milkdown/utils": "^7.19.
|
|
42
|
-
"@preact/signals": "^2.
|
|
43
|
-
"@tailwindcss/vite": "^4.2.
|
|
44
|
-
"@types/bun": "1.3.
|
|
35
|
+
"@milkdown/core": "^7.19.2",
|
|
36
|
+
"@milkdown/ctx": "^7.19.2",
|
|
37
|
+
"@milkdown/plugin-listener": "^7.19.2",
|
|
38
|
+
"@milkdown/preset-commonmark": "^7.19.2",
|
|
39
|
+
"@milkdown/preset-gfm": "^7.19.2",
|
|
40
|
+
"@milkdown/prose": "^7.19.2",
|
|
41
|
+
"@milkdown/utils": "^7.19.2",
|
|
42
|
+
"@preact/signals": "^2.9.0",
|
|
43
|
+
"@tailwindcss/vite": "^4.2.2",
|
|
44
|
+
"@types/bun": "1.3.11",
|
|
45
45
|
"clsx": "^2.1.1",
|
|
46
|
-
"marked": "^17.0.
|
|
46
|
+
"marked": "^17.0.5",
|
|
47
47
|
"preact": "^10.29.0",
|
|
48
48
|
"prosemirror-commands": "^1.7.1",
|
|
49
49
|
"prosemirror-inputrules": "^1.5.1",
|
|
@@ -53,13 +53,13 @@
|
|
|
53
53
|
"prosemirror-schema-list": "^1.5.1",
|
|
54
54
|
"prosemirror-state": "^1.4.4",
|
|
55
55
|
"prosemirror-transform": "^1.10.5",
|
|
56
|
-
"prosemirror-view": "^1.41.
|
|
56
|
+
"prosemirror-view": "^1.41.7",
|
|
57
57
|
"tailwind-merge": "^3.5.0"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"astro": "^6.
|
|
61
|
-
"typescript": "^
|
|
62
|
-
"vite": "^
|
|
60
|
+
"astro": "^6.1.1",
|
|
61
|
+
"typescript": "^6.0.2",
|
|
62
|
+
"vite": "^8.0.3",
|
|
63
63
|
"@aws-sdk/client-s3": "^3.0.0"
|
|
64
64
|
},
|
|
65
65
|
"peerDependenciesMeta": {
|
package/src/tsconfig.json
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
"compilerOptions": {
|
|
4
4
|
"outDir": "../dist/src",
|
|
5
5
|
"composite": true,
|
|
6
|
-
"baseUrl": ".",
|
|
7
6
|
"jsx": "react-jsx",
|
|
8
7
|
"jsxImportSource": "preact",
|
|
9
8
|
"lib": ["es2022", "DOM", "DOM.Iterable"],
|
|
@@ -15,7 +14,6 @@
|
|
|
15
14
|
"verbatimModuleSyntax": true,
|
|
16
15
|
"types": ["@types/bun"],
|
|
17
16
|
"paths": {
|
|
18
|
-
"~/*": ["*"],
|
|
19
17
|
"react": ["../../../node_modules/preact/compat/"],
|
|
20
18
|
"react/jsx-runtime": ["../../../node_modules/preact/jsx-runtime"],
|
|
21
19
|
"react-dom": ["../../../node_modules/preact/compat/"],
|