I tried master branch in our Webpack-based project. It fails to compile with this error:
This dependency was not found:
* zstddec/stream in ./node_modules/geotiff/dist-module/compression/zstd.js
Changing this import fixes the issue:
< import { ZSTDDecoder } from 'zstddec/stream';
> import { ZSTDDecoder } from 'zstddec';