crossnote 0.9.33 → 0.9.35
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/out/cjs/index.cjs +96 -96
- package/out/esm/index.mjs +99 -99
- package/out/types/src/lib/lru-cache.d.ts +7 -0
- package/out/types/src/notebook/index.d.ts +3 -0
- package/out/types/src/webview/components/MarkdownEditor.d.ts +2 -0
- package/out/types/src/webview/containers/preview.d.ts +2 -0
- package/out/types/test/notebook-delete-note.test.d.ts +1 -0
- package/out/types/test/runtime-compat.test.d.ts +1 -0
- package/out/types/tsconfig.tsbuildinfo +1 -1
- package/out/webview/backlinks.css +1 -1
- package/out/webview/graph-view.css +1 -1
- package/out/webview/preview.css +1 -1
- package/out/webview/preview.js +494 -819
- package/package.json +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crossnote",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.35",
|
|
4
4
|
"description": "A powerful markdown notebook tool",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown"
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"async-mutex": "^0.4.0",
|
|
79
79
|
"bit-field": "^1.9.0",
|
|
80
80
|
"case-anything": "^2.1.13",
|
|
81
|
-
"cheerio": "
|
|
81
|
+
"cheerio": "1.0.0",
|
|
82
82
|
"chrome-paths": "^1.0.1",
|
|
83
83
|
"classnames": "^2.3.2",
|
|
84
84
|
"copy-anything": "^3.0.5",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"d3-shape": "^3.2.0",
|
|
96
96
|
"d3-zoom": "^3.0.0",
|
|
97
97
|
"daisyui": "^3.7.3",
|
|
98
|
-
"dompurify": "^3.
|
|
98
|
+
"dompurify": "^3.4.14",
|
|
99
99
|
"esbuild-plugin-tailwindcss": "^1.1.1",
|
|
100
100
|
"escape-string-regexp": "^5.0.0",
|
|
101
101
|
"file-saver": "^2.0.5",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"mermaid": "^11.17.2",
|
|
123
123
|
"minisearch": "^6.1.0",
|
|
124
124
|
"mkdirp": "^3.0.1",
|
|
125
|
-
"monaco-editor": "^0.
|
|
125
|
+
"monaco-editor": "^0.55.0",
|
|
126
126
|
"node-tikzjax": "^1.0.5",
|
|
127
127
|
"object-hash": "^3.0.0",
|
|
128
128
|
"onml": "^2.1.0",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"react-contexify": "^6.0.0",
|
|
137
137
|
"react-dom": "^18.2.0",
|
|
138
138
|
"reading-time": "^1.5.0",
|
|
139
|
-
"sharp": "^0.
|
|
139
|
+
"sharp": "^0.34.3",
|
|
140
140
|
"simple-icons": "^9.13.0",
|
|
141
141
|
"slash": "^5.1.0",
|
|
142
142
|
"twemoji": "^13.1.0",
|
|
@@ -209,8 +209,8 @@
|
|
|
209
209
|
"jest": "^29.7.0",
|
|
210
210
|
"jest-environment-jsdom": "^30.3.0",
|
|
211
211
|
"jsdom": "^23.2.0",
|
|
212
|
-
"lint-staged": "^
|
|
213
|
-
"mathjax": "^4.1.
|
|
212
|
+
"lint-staged": "^15.5.2",
|
|
213
|
+
"mathjax": "^4.1.3",
|
|
214
214
|
"postcss": "^8.5.23",
|
|
215
215
|
"prettier": "^3.8.3",
|
|
216
216
|
"prettier-plugin-packagejson": "^3.0.2",
|
|
@@ -222,6 +222,6 @@
|
|
|
222
222
|
},
|
|
223
223
|
"packageManager": "pnpm@10.23.0",
|
|
224
224
|
"engines": {
|
|
225
|
-
"node": ">=18.
|
|
225
|
+
"node": ">=18.17.0"
|
|
226
226
|
}
|
|
227
227
|
}
|