wasm-vips 0.0.4 → 0.0.5
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/README.md +3 -4
- package/lib/vips-es6.js +498 -286
- package/lib/vips-es6.worker.js +1 -1
- package/lib/vips-heif.wasm +0 -0
- package/lib/vips-jxl.wasm +0 -0
- package/lib/vips-node.js +520 -0
- package/lib/vips-node.mjs +518 -0
- package/lib/vips-node.worker.js +1 -0
- package/lib/vips-node.worker.mjs +1 -0
- package/lib/vips-resvg.wasm +0 -0
- package/lib/vips.d.ts +303 -146
- package/lib/vips.js +499 -287
- package/lib/vips.wasm +0 -0
- package/lib/vips.worker.js +1 -1
- package/package.json +12 -12
- package/lib/node-commonjs/vips.js +0 -308
- package/lib/node-commonjs/vips.worker.js +0 -1
- package/lib/node-es6/vips.mjs +0 -308
- package/lib/node-es6/vips.worker.js +0 -1
package/README.md
CHANGED
|
@@ -24,13 +24,12 @@ SIMD opcodes, this corresponds to Chrome 91, Node.js 16.4.0 and Deno 1.9.0.
|
|
|
24
24
|
For Spidermonkey-based engines, the JavaScript engine used in Mozilla Firefox
|
|
25
25
|
and whose version numbers are aligned, at least version 89 is required.
|
|
26
26
|
|
|
27
|
-
JavaScriptCore-based
|
|
28
|
-
|
|
29
|
-
https://bugs.webkit.org/show_bug.cgi?id=222382).
|
|
27
|
+
For JavaScriptCore-based engines, the built-in JavaScript engine for WebKit,
|
|
28
|
+
at least version 615.1.17 is required. This corresponds to Safari 16.4.
|
|
30
29
|
|
|
31
30
|
| <br>Chrome | <br>Firefox | <br>Safari | <br>Edge | <br>Node.js | <br>Deno |
|
|
32
31
|
|:---:|:---:|:---:|:---:|:---:|:---:|
|
|
33
|
-
| :heavy_check_mark:<br>[version 91+](https://www.chromestatus.com/feature/6533147810332672) | :heavy_check_mark:<br>[version 89+](https://bugzilla.mozilla.org/show_bug.cgi?id=1695585) | :
|
|
32
|
+
| :heavy_check_mark:<br>[version 91+](https://www.chromestatus.com/feature/6533147810332672) | :heavy_check_mark:<br>[version 89+](https://bugzilla.mozilla.org/show_bug.cgi?id=1695585) | :heavy_check_mark:<br>[version 16.4+](https://webkit.org/blog/13966/webkit-features-in-safari-16-4/#javascript-and-webassembly) | :heavy_check_mark:<br>[version 91+](https://www.chromestatus.com/feature/6533147810332672) | :heavy_check_mark:<br>[version 16.4+](https://github.com/nodejs/node/pull/38273) | :heavy_check_mark:<br>[version 1.9+](https://github.com/denoland/deno/pull/10152) |
|
|
34
33
|
|
|
35
34
|
## Installation
|
|
36
35
|
|