Bump dependencies (#11)

* Bump dependencies
This commit is contained in:
Brian Beck 2025-10-19 09:15:21 -07:00 committed by GitHub
parent 97b02c33f6
commit 169aed6274
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
146 changed files with 6957 additions and 6111 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,18 @@
import * as Comlink from "comlink";
import {
combineColorAndAlphaImageUrls,
removeAlphaFromArrayBuffer,
convertGrayscaleImageUrlToMetallicRoughness,
convertArrayBufferAlphaToGrayscale,
} from "./imageUtils";
const exports = {
combineColorAndAlphaImageUrls,
removeAlphaFromArrayBuffer,
convertArrayBufferAlphaToGrayscale,
convertGrayscaleImageUrlToMetallicRoughness,
};
export type ImageFunctions = typeof exports;
Comlink.expose(exports);