yamlover 0.3.6 → 0.3.7
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/bin/yamlover.js +7 -0
- package/dist/client/assets/{decoded-CFkcuQ1f.js → decoded-BOcSNNro.js} +1 -1
- package/dist/client/assets/{djvu-B3wuFWwI.js → djvu-BlBoGQOr.js} +1 -1
- package/dist/client/assets/{docx-putHYXzO.js → docx-DHMG3jBZ.js} +1 -1
- package/dist/client/assets/{heic-oIxhIbIW.js → heic-DyzDZBbr.js} +1 -1
- package/dist/client/assets/{imagemap-CUKUIcGe.js → imagemap-dBuJBDcO.js} +1 -1
- package/dist/client/assets/{index-wTjOzmSY.css → index-DAOxKLZS.css} +1 -1
- package/dist/client/assets/index-c8LVvQSJ.js +617 -0
- package/dist/client/assets/{map-CZS083CS.js → map-DZ0HIGla.js} +1 -1
- package/dist/client/assets/{paged-CjxSuuik.js → paged-WKVquIPj.js} +1 -1
- package/dist/client/assets/{panzoom-C7OuIIda.js → panzoom--sfux6SK.js} +1 -1
- package/dist/client/assets/{pdf-Dz3gUx0B.js → pdf-BVBH0bXQ.js} +1 -1
- package/dist/client/assets/{psd-C8yNwHFw.js → psd-CsYV_1P8.js} +1 -1
- package/dist/client/assets/{spreadsheet-DBv7aqoN.js → spreadsheet-m5FCnukV.js} +1 -1
- package/dist/client/assets/{tiff-73RKtIux.js → tiff-BX8kKhqw.js} +1 -1
- package/dist/client/index.html +2 -2
- package/dist/server.js +63980 -1323
- package/dist/wasm/avif_dec.wasm +0 -0
- package/dist/wasm/webp_dec.wasm +0 -0
- package/package.json +5 -2
- package/dist/client/assets/index-CQ3TGVSx.js +0 -617
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yamlover",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
4
4
|
"description": "Browse a yamlover tree in the web: npx yamlover <root> serves a React SPA over a directory.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,9 +37,11 @@
|
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": ">=22"
|
|
39
39
|
},
|
|
40
|
-
"comment:deps": "No runtime dependencies: the client deps are bundled into dist/client by `vite build` and the server deps (ignore/js-yaml/xxhash-wasm) into dist/server.js by esbuild. Everything below is build-/test-time only.",
|
|
40
|
+
"comment:deps": "No runtime dependencies: the client deps are bundled into dist/client by `vite build` and the server deps (ignore/js-yaml/xxhash-wasm, plus the thumbnail extractors jimp + ag-psd + @jsquash/webp + @jsquash/avif — dynamically imported so they stay out of the cold-start path) into dist/server.js by esbuild. The @jsquash codecs' .wasm is copied to dist/wasm by build.mjs (esbuild bundles only their JS glue). Everything below is build-/test-time only.",
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@asciidoctor/core": "^3.0.4",
|
|
43
|
+
"@jsquash/avif": "^2.1.1",
|
|
44
|
+
"@jsquash/webp": "^1.5.0",
|
|
43
45
|
"@testing-library/dom": "^10.4.0",
|
|
44
46
|
"@testing-library/react": "^16.1.0",
|
|
45
47
|
"@tmcw/togeojson": "^7.1.2",
|
|
@@ -55,6 +57,7 @@
|
|
|
55
57
|
"fflate": "^0.8.3",
|
|
56
58
|
"heic2any": "^0.0.4",
|
|
57
59
|
"ignore": "^6.0.2",
|
|
60
|
+
"jimp": "^1.6.1",
|
|
58
61
|
"js-yaml": "^4.1.0",
|
|
59
62
|
"jsdom": "^25.0.1",
|
|
60
63
|
"katex": "^0.16.47",
|