crossnote 0.9.28 → 0.9.30
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 +286 -244
- package/out/esm/index.mjs +279 -237
- package/out/types/src/lib/js-sandbox.d.ts +6 -0
- package/out/types/src/markdown-engine/mathjax-config.d.ts +1 -0
- package/out/types/src/renderers/wavedrom-source.d.ts +1 -0
- package/out/types/src/utility.d.ts +1 -1
- package/out/types/test/browser/mathjax.spec.d.ts +1 -0
- package/out/types/test/browser/server.d.ts +5 -0
- package/out/types/test/browser/wavedrom.spec.d.ts +1 -0
- package/out/types/test/command-injection.test.d.ts +1 -0
- package/out/types/test/hash-in-path.test.d.ts +1 -0
- package/out/types/test/heading-emphasis.test.d.ts +1 -0
- package/out/types/test/wavedrom-parser.test.d.ts +1 -0
- package/out/types/test/wavedrom-source.test.d.ts +1 -0
- package/out/types/tsconfig.tsbuildinfo +1 -1
- package/out/webview/preview.js +230 -217
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crossnote",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.30",
|
|
4
4
|
"description": "A powerful markdown notebook tool",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown"
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"prepare": "husky",
|
|
44
44
|
"prepublish": "pnpm build",
|
|
45
45
|
"test": "jest --no-coverage",
|
|
46
|
+
"test:browser": "playwright test",
|
|
46
47
|
"test:coverage": "jest",
|
|
47
48
|
"typedoc": "typedoc src/index.ts"
|
|
48
49
|
},
|
|
@@ -67,6 +68,7 @@
|
|
|
67
68
|
"dependencies": {
|
|
68
69
|
"@headlessui/react": "^1.7.17",
|
|
69
70
|
"@heroicons/react": "^2.0.18",
|
|
71
|
+
"@jitl/quickjs-singlefile-cjs-release-sync": "^0.32.0",
|
|
70
72
|
"@mdi/js": "^7.2.96",
|
|
71
73
|
"@mdi/react": "^1.6.1",
|
|
72
74
|
"@monaco-editor/react": "^4.5.2",
|
|
@@ -103,6 +105,7 @@
|
|
|
103
105
|
"ignore": "^7.0.5",
|
|
104
106
|
"imagemagick-cli": "^0.5.0",
|
|
105
107
|
"jquery": "^3.7.1",
|
|
108
|
+
"json5": "^2.2.3",
|
|
106
109
|
"katex": "^0.16.47",
|
|
107
110
|
"less": "^4.2.0",
|
|
108
111
|
"markdown-it": "^14.1.1",
|
|
@@ -128,6 +131,7 @@
|
|
|
128
131
|
"plantuml-encoder": "^1.4.0",
|
|
129
132
|
"puppeteer-core": "^24.16.2",
|
|
130
133
|
"qiniu": "^7.9.0",
|
|
134
|
+
"quickjs-emscripten-core": "^0.32.0",
|
|
131
135
|
"react": "^18.2.0",
|
|
132
136
|
"react-contexify": "^6.0.0",
|
|
133
137
|
"react-dom": "^18.2.0",
|
|
@@ -135,7 +139,6 @@
|
|
|
135
139
|
"sharp": "^0.33.5",
|
|
136
140
|
"simple-icons": "^9.13.0",
|
|
137
141
|
"slash": "^5.1.0",
|
|
138
|
-
"sval": "^0.6.9",
|
|
139
142
|
"twemoji": "^13.1.0",
|
|
140
143
|
"type-fest": "^4.3.1",
|
|
141
144
|
"unstated-next": "^1.1.0",
|
|
@@ -151,6 +154,7 @@
|
|
|
151
154
|
"@babel/preset-react": "^7.26.3",
|
|
152
155
|
"@babel/preset-typescript": "^7.26.0",
|
|
153
156
|
"@eslint/js": "^10.0.1",
|
|
157
|
+
"@playwright/test": "^1.60.0",
|
|
154
158
|
"@simbathesailor/use-what-changed": "^2.0.0",
|
|
155
159
|
"@types/crypto-js": "^4.1.1",
|
|
156
160
|
"@types/d3-color": "^3.1.3",
|
|
@@ -206,6 +210,7 @@
|
|
|
206
210
|
"jest-environment-jsdom": "^30.3.0",
|
|
207
211
|
"jsdom": "^23.2.0",
|
|
208
212
|
"lint-staged": "^16.4.0",
|
|
213
|
+
"mathjax": "^4.1.2",
|
|
209
214
|
"postcss": "^8.4.29",
|
|
210
215
|
"prettier": "^3.8.3",
|
|
211
216
|
"prettier-plugin-packagejson": "^3.0.2",
|