wasm-vips 0.0.4 → 0.0.6

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 CHANGED
@@ -10,7 +10,8 @@ pipeline executes at once, streaming the image in parallel from source to
10
10
  destination a section at a time. Because wasm-vips is parallel, it's quick,
11
11
  and because it doesn't need to keep entire images in memory, it's light.
12
12
 
13
- > **Note**: This library is still under early development. See: [#1](
13
+ > [!NOTE]
14
+ > This library is still under early development. See: [#1](
14
15
  https://github.com/kleisauke/wasm-vips/issues/1).
15
16
 
16
17
  ## Engine support
@@ -24,13 +25,12 @@ SIMD opcodes, this corresponds to Chrome 91, Node.js 16.4.0 and Deno 1.9.0.
24
25
  For Spidermonkey-based engines, the JavaScript engine used in Mozilla Firefox
25
26
  and whose version numbers are aligned, at least version 89 is required.
26
27
 
27
- JavaScriptCore-based (e.g. Safari, Bun) engines are currently not supported,
28
- you can follow the status in [this tracking bug](
29
- https://bugs.webkit.org/show_bug.cgi?id=222382).
28
+ For JavaScriptCore-based engines, the built-in JavaScript engine for WebKit,
29
+ at least version 615.1.17 is required. This corresponds to Safari 16.4.
30
30
 
31
31
  | ![Chrome](https://github.com/alrra/browser-logos/raw/main/src/chrome/chrome_32x32.png)<br>Chrome | ![Firefox](https://github.com/alrra/browser-logos/raw/main/src/firefox/firefox_32x32.png)<br>Firefox | ![Safari](https://github.com/alrra/browser-logos/raw/main/src/safari/safari_32x32.png)<br>Safari | ![Edge](https://github.com/alrra/browser-logos/raw/main/src/edge/edge_32x32.png)<br>Edge | ![Node.js](https://github.com/alrra/browser-logos/raw/main/src/node.js/node.js_32x32.png)<br>Node.js | ![Deno](https://github.com/alrra/browser-logos/raw/main/src/deno/deno_32x32.png)<br>Deno |
32
32
  |:---:|:---:|:---:|:---:|:---:|:---:|
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) | :x:<br>[Tracking bug](https://bugs.webkit.org/show_bug.cgi?id=222382) | :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) |
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) | :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
34
 
35
35
  ## Installation
36
36
 
@@ -79,7 +79,7 @@ Or, if you prefer to use ES6 modules:
79
79
  const vips = await Vips();
80
80
  </script>
81
81
  ```
82
- <sup>This won't work on Firefox due to <https://bugzil.la/1540913>.</sup>
82
+ <sup>This requires support for [`import()` in workers](https://caniuse.com/mdn-javascript_operators_import_worker_support).</sup>
83
83
 
84
84
  ### Node.js
85
85
 
@@ -0,0 +1,33 @@
1
+ # Third-party notices
2
+
3
+ This software contains third-party libraries
4
+ used under the terms of the following licences:
5
+
6
+ | Library | Used under the terms of |
7
+ |---------------|-----------------------------------------------------------------------------------------------------------|
8
+ | aom | BSD 2-Clause + [Alliance for Open Media Patent License 1.0](https://aomedia.org/license/patent-license/) |
9
+ | brotli | MIT Licence |
10
+ | cgif | MIT Licence |
11
+ | expat | MIT Licence |
12
+ | glib | LGPLv3 |
13
+ | highway | Apache-2.0 License, BSD 3-Clause |
14
+ | lcms | MIT Licence |
15
+ | libexif | LGPLv3 |
16
+ | libffi | MIT Licence |
17
+ | libheif | LGPLv3 |
18
+ | libimagequant | [BSD 2-Clause](https://github.com/lovell/libimagequant/blob/main/COPYRIGHT) |
19
+ | libjxl | BSD 3-Clause |
20
+ | libnsgif | MIT Licence |
21
+ | libspng | [BSD 2-Clause, libpng License](https://github.com/randy408/libspng/blob/master/LICENSE) |
22
+ | libtiff | [libtiff License](https://gitlab.com/libtiff/libtiff/blob/master/LICENSE.md) (BSD-like) |
23
+ | libvips | LGPLv3 |
24
+ | libwebp | New BSD License |
25
+ | mozjpeg | [zlib License, IJG License, BSD-3-Clause](https://github.com/mozilla/mozjpeg/blob/master/LICENSE.md) |
26
+ | resvg | MPL-2.0 License |
27
+ | zlib-ng | [zlib Licence](https://github.com/zlib-ng/zlib-ng/blob/develop/LICENSE.md) |
28
+
29
+ Use of libraries under the terms of the LGPLv3 is via the
30
+ "any later version" clause of the LGPLv2 or LGPLv2.1.
31
+
32
+ Please report any errors or omissions via
33
+ https://github.com/kleisauke/wasm-vips/issues/new