crossnote 0.9.27 → 0.9.29
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 +197 -169
- package/out/esm/index.mjs +198 -170
- 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 -0
- 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/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 +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crossnote",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.29",
|
|
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
|
},
|
|
@@ -103,6 +104,7 @@
|
|
|
103
104
|
"ignore": "^7.0.5",
|
|
104
105
|
"imagemagick-cli": "^0.5.0",
|
|
105
106
|
"jquery": "^3.7.1",
|
|
107
|
+
"json5": "^2.2.3",
|
|
106
108
|
"katex": "^0.16.47",
|
|
107
109
|
"less": "^4.2.0",
|
|
108
110
|
"markdown-it": "^14.1.1",
|
|
@@ -151,6 +153,7 @@
|
|
|
151
153
|
"@babel/preset-react": "^7.26.3",
|
|
152
154
|
"@babel/preset-typescript": "^7.26.0",
|
|
153
155
|
"@eslint/js": "^10.0.1",
|
|
156
|
+
"@playwright/test": "^1.60.0",
|
|
154
157
|
"@simbathesailor/use-what-changed": "^2.0.0",
|
|
155
158
|
"@types/crypto-js": "^4.1.1",
|
|
156
159
|
"@types/d3-color": "^3.1.3",
|
|
@@ -206,6 +209,7 @@
|
|
|
206
209
|
"jest-environment-jsdom": "^30.3.0",
|
|
207
210
|
"jsdom": "^23.2.0",
|
|
208
211
|
"lint-staged": "^16.4.0",
|
|
212
|
+
"mathjax": "^4.1.2",
|
|
209
213
|
"postcss": "^8.4.29",
|
|
210
214
|
"prettier": "^3.8.3",
|
|
211
215
|
"prettier-plugin-packagejson": "^3.0.2",
|