A WASM version of Skottie (Lottie with Skia).
# Getting Started
To use the library, run `npm install skottiekit-wasm` and then simply include it:
const loadKit = SkottieKitInit({
locateFile: (file) => '/node_modules/skottiekit-wasm/bin/'+file,
});
// Load the animation Lottie JSON file.
const loadLottie = fetch('/path/to/lottie.json').then((resp) => resp.text());
Promise.all([loadKit, loadLottie]).then((values) => {
const [SkottieKit, lottieJSON] = values;
const animation = SkottieKit.MakeManagedAnimation(lottieJSON);
const duration = animation.duration() * 1000;
// Assumes there's a