wasm-vips 0.0.15 → 0.0.17

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
@@ -80,7 +80,7 @@ Or, if you prefer to use ES6 modules:
80
80
  const vips = await Vips();
81
81
  </script>
82
82
  ```
83
- <sup>This requires support for [`import()` in workers](https://caniuse.com/mdn-javascript_operators_import_worker_support).</sup>
83
+ <sup>This requires support for [ES6 modules in workers](https://caniuse.com/mdn-api_worker_worker_ecmascript_modules).</sup>
84
84
 
85
85
  ### Node.js
86
86
 
@@ -110,11 +110,10 @@ Vips().then(vips => {
110
110
 
111
111
  ### Deno
112
112
 
113
- On Deno, the web ES6 module can be reused and imported from a CDN such as
114
- [jsDelivr](https://www.jsdelivr.com/):
113
+ On Deno, wasm-vips can be imported by using the `npm:` specifier:
115
114
 
116
115
  ```js
117
- import Vips from 'https://cdn.jsdelivr.net/npm/wasm-vips/lib/vips-es6.js';
116
+ import Vips from 'npm:wasm-vips';
118
117
 
119
118
  const vips = await Vips();
120
119
  ```
@@ -19,8 +19,9 @@ used under the terms of the following licences:
19
19
  | libimagequant | [BSD 2-Clause](https://github.com/lovell/libimagequant/blob/main/COPYRIGHT) |
20
20
  | libjxl | BSD 3-Clause |
21
21
  | libnsgif | MIT Licence |
22
- | libspng | [BSD 2-Clause, libpng License](https://github.com/randy408/libspng/blob/master/LICENSE) |
22
+ | libpng | [libpng License](https://github.com/pnggroup/libpng/blob/master/LICENSE) |
23
23
  | libtiff | [libtiff License](https://gitlab.com/libtiff/libtiff/blob/master/LICENSE.md) (BSD-like) |
24
+ | libultrahdr | Apache-2.0 License |
24
25
  | libvips | LGPLv3 |
25
26
  | libwebp | New BSD License |
26
27
  | mozjpeg | [zlib License, IJG License, BSD-3-Clause](https://github.com/mozilla/mozjpeg/blob/master/LICENSE.md) |