wasm-vips 0.0.16 → 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 +2 -3
- package/THIRD-PARTY-NOTICES.md +2 -1
- package/lib/vips-es6.js +206 -200
- package/lib/vips-heif.wasm +0 -0
- package/lib/vips-jxl.wasm +0 -0
- package/lib/vips-node.js +219 -214
- package/lib/vips-node.mjs +219 -215
- package/lib/vips-resvg.wasm +0 -0
- package/lib/vips.d.ts +323 -28
- package/lib/vips.js +206 -200
- package/lib/vips.wasm +0 -0
- package/package.json +3 -2
- package/versions.json +12 -11
package/README.md
CHANGED
|
@@ -110,11 +110,10 @@ Vips().then(vips => {
|
|
|
110
110
|
|
|
111
111
|
### Deno
|
|
112
112
|
|
|
113
|
-
On Deno,
|
|
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 '
|
|
116
|
+
import Vips from 'npm:wasm-vips';
|
|
118
117
|
|
|
119
118
|
const vips = await Vips();
|
|
120
119
|
```
|
package/THIRD-PARTY-NOTICES.md
CHANGED
|
@@ -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
|
-
|
|
|
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) |
|