diff --git a/doc/languages-frameworks/index.md b/doc/languages-frameworks/index.md
index 12e54e2a76ab..2624b9afc5e4 100644
--- a/doc/languages-frameworks/index.md
+++ b/doc/languages-frameworks/index.md
@@ -98,6 +98,7 @@ scheme.section.md
swift.section.md
tcl.section.md
texlive.section.md
+typst.section.md
vim.section.md
neovim.section.md
```
diff --git a/doc/languages-frameworks/typst.section.md b/doc/languages-frameworks/typst.section.md
new file mode 100644
index 000000000000..1e025be04cc7
--- /dev/null
+++ b/doc/languages-frameworks/typst.section.md
@@ -0,0 +1,62 @@
+# Typst {#typst}
+
+Typst can be configured to include packages from [Typst Universe](https://typst.app/universe/) or custom packages.
+
+## Custom Environment {#typst-custom-environment}
+
+You can create a custom Typst environment with a selected set of packages from **Typst Universe** using the following code. It is also possible to specify a Typst package with a specific version (e.g., `cetz_0_3_0`). A package without a version number will always refer to its latest version.
+
+```nix
+typst.withPackages (p: with p; [
+ polylux_0_4_0
+ cetz_0_3_0
+])
+```
+
+### Handling Outdated Package Hashes {#typst-handling-outdated-package-hashes}
+
+Since **Typst Universe** does not provide a way to fetch a package with a specific hash, the package hashes in `nixpkgs` can sometimes be outdated. To resolve this issue, you can manually override the package source using the following approach:
+
+```nix
+typst.withPackages.override (old: {
+ typstPackages = old.typstPackages.extend (_: previous: {
+ polylux_0_4_0 = previous.polylux_0_4_0.overrideAttrs (oldPolylux: {
+ src = oldPolylux.src.overrideAttrs {
+ outputHash = YourUpToDatePolyluxHash;
+ };
+ });
+ });
+}) (p: with p; [
+ polylux_0_4_0
+ cetz_0_3_0
+])
+```
+
+## Custom Packages {#typst-custom-packages}
+
+`Nixpkgs` provides a helper function, `buildTypstPackage`, to build custom Typst packages that can be used within the Typst environment. However, all dependencies of the custom package must be explicitly specified in `typstDeps`.
+
+Here's how to define a custom Typst package:
+
+```nix
+{ buildTypstPackage, typstPackages, fetchzip }:
+
+buildTypstPackage (finalAttrs: {
+ pname = "my-typst-package";
+ version = "0.0.1";
+ src = fetchzip { ... };
+ typstDeps = with typstPackages; [ cetz_0_3_0 ];
+})
+```
+
+### Package Scope and Usage {#typst-package-scope-and-usage}
+
+By default, every custom package is scoped under `@preview`, as shown below:
+
+```typst
+#import "@preview/my-typst-package:0.0.1": *
+```
+
+Since `@preview` is intended for packages from **Typst Universe**, it is recommended to use this approach **only for temporary or experimental modifications over existing packages** from **Typst Universe**.
+
+On the other hand, **local packages**, packages scoped under `@local`, are **not** considered part of the Typst environment. This means that local packages must be manually linked to the Typst compiler if needed.
diff --git a/doc/redirects.json b/doc/redirects.json
index 4925709c92c6..46eb54c6c67b 100644
--- a/doc/redirects.json
+++ b/doc/redirects.json
@@ -413,6 +413,24 @@
"tester-testEqualArrayOrMap-return": [
"index.html#tester-testEqualArrayOrMap-return"
],
+ "typst": [
+ "index.html#typst",
+ "doc/languages-frameworks/typst.section.md#typst"
+ ],
+ "typst-custom-environment": [
+ "index.html#typst-custom-environment",
+ "doc/languages-frameworks/typst.section.md#typst-custom-environment"
+ ],
+ "typst-custom-packages": [
+ "index.html#typst-custom-packages",
+ "doc/languages-frameworks/typst.section.md#typst-custom-packages"
+ ],
+ "typst-handling-outdated-package-hashes": [
+ "index.html#typst-handling-outdated-package-hashes"
+ ],
+ "typst-package-scope-and-usage": [
+ "index.html#typst-package-scope-and-usage"
+ ],
"variables-specifying-dependencies": [
"index.html#variables-specifying-dependencies"
],
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 362e77baf983..93cf00af9963 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -4284,6 +4284,11 @@
name = "CherryKitten";
keys = [ { fingerprint = "264C FA1A 194C 585D F822 F673 C01A 7CBB A617 BD5F"; } ];
};
+ cherrypiejam = {
+ github = "cherrypiejam";
+ githubId = 46938348;
+ name = "Gongqi Huang";
+ };
chessai = {
email = "chessai1996@gmail.com";
github = "chessai";
@@ -6494,6 +6499,12 @@
githubId = 472846;
name = "Sebastian Krohn";
};
+ dramforever = {
+ name = "Vivian Wang";
+ email = "dramforever@live.com";
+ github = "dramforever";
+ githubId = 2818072;
+ };
drawbu = {
email = "nixpkgs@drawbu.dev";
github = "drawbu";
diff --git a/maintainers/scripts/update-typst-packages.py b/maintainers/scripts/update-typst-packages.py
new file mode 100755
index 000000000000..2264f97d7706
--- /dev/null
+++ b/maintainers/scripts/update-typst-packages.py
@@ -0,0 +1,226 @@
+#!/usr/bin/env nix-shell
+#!nix-shell -p "python3.withPackages (p: with p; [ tomli tomli-w packaging license-expression])" -i python3
+
+# This file is formatted with `ruff format`.
+
+import os
+import re
+import tomli
+import tomli_w
+import subprocess
+import concurrent.futures
+import argparse
+import tempfile
+import tarfile
+from string import punctuation
+from packaging.version import Version
+from urllib import request
+from collections import OrderedDict
+
+
+class TypstPackage:
+ def __init__(self, **kwargs):
+ self.pname = kwargs["pname"]
+ self.version = kwargs["version"]
+ self.meta = kwargs["meta"]
+ self.path = kwargs["path"]
+ self.repo = (
+ None
+ if "repository" not in self.meta["package"]
+ else self.meta["package"]["repository"]
+ )
+ self.description = self.meta["package"]["description"].rstrip(punctuation)
+ self.license = self.meta["package"]["license"]
+ self.params = "" if "params" not in kwargs else kwargs["params"]
+ self.deps = [] if "deps" not in kwargs else kwargs["deps"]
+
+ @classmethod
+ def package_name_full(cls, package_name, version):
+ version_number = map(lambda x: int(x), version.split("."))
+ version_nix = "_".join(map(lambda x: str(x), version_number))
+ return "_".join((package_name, version_nix))
+
+ def license_tokens(self):
+ import license_expression as le
+
+ try:
+ # FIXME: ad hoc conversion
+ exception_list = [("EUPL-1.2+", "EUPL-1.2")]
+
+ def sanitize_license_string(license_string, lookups):
+ if not lookups:
+ return license_string
+ return sanitize_license_string(
+ license_string.replace(lookups[0][0], lookups[0][1]), lookups[1:]
+ )
+
+ sanitized = sanitize_license_string(self.license, exception_list)
+ licensing = le.get_spdx_licensing()
+ parsed = licensing.parse(sanitized, validate=True)
+ return [s.key for s in licensing.license_symbols(parsed)]
+ except le.ExpressionError as e:
+ print(
+ f'Failed to parse license string "{self.license}" because of {str(e)}'
+ )
+ exit(1)
+
+ def source(self):
+ url = f"https://packages.typst.org/preview/{self.pname}-{self.version}.tar.gz"
+ cmd = [
+ "nix",
+ "store",
+ "prefetch-file",
+ "--unpack",
+ "--hash-type",
+ "sha256",
+ "--refresh",
+ "--extra-experimental-features",
+ "nix-command",
+ ]
+ result = subprocess.run(cmd + [url], capture_output=True, text=True)
+ hash = re.search(r"hash\s+\'(sha256-.{44})\'", result.stderr).groups()[0]
+ return url, hash
+
+ def to_name_full(self):
+ return self.package_name_full(self.pname, self.version)
+
+ def to_attrs(self):
+ deps = set()
+ excludes = list(map(
+ lambda e: os.path.join(self.path, e),
+ self.meta["package"]["exclude"] if "exclude" in self.meta["package"] else [],
+ ))
+ for root, _, files in os.walk(self.path):
+ for file in filter(lambda f: f.split(".")[-1] == "typ", files):
+ file_path = os.path.join(root, file)
+ if file_path in excludes:
+ continue
+ with open(file_path, "r") as f:
+ deps.update(
+ set(
+ re.findall(
+ r"^\s*#import\s+\"@preview/([\w|-]+):(\d+.\d+.\d+)\"",
+ f.read(),
+ re.MULTILINE,
+ )
+ )
+ )
+ self.deps = list(
+ filter(lambda p: p[0] != self.pname or p[1] != self.version, deps)
+ )
+ source_url, source_hash = self.source()
+
+ return dict(
+ url=source_url,
+ hash=source_hash,
+ typstDeps=[
+ self.package_name_full(p, v)
+ for p, v in sorted(self.deps, key=lambda x: (x[0], Version(x[1])))
+ ],
+ description=self.description,
+ license=self.license_tokens(),
+ ) | (dict(homepage=self.repo) if self.repo else dict())
+
+
+def generate_typst_packages(preview_dir, output_file):
+ package_tree = dict()
+
+ print("Parsing metadata... from", preview_dir)
+ for p in os.listdir(preview_dir):
+ package_dir = os.path.join(preview_dir, p)
+ for v in os.listdir(package_dir):
+ package_version_dir = os.path.join(package_dir, v)
+ with open(
+ os.path.join(package_version_dir, "typst.toml"), "rb"
+ ) as meta_file:
+ try:
+ package = TypstPackage(
+ pname=p,
+ version=v,
+ meta=tomli.load(meta_file),
+ path=package_version_dir,
+ )
+ if package.pname in package_tree:
+ package_tree[package.pname][v] = package
+ else:
+ package_tree[package.pname] = dict({v: package})
+ except tomli.TOMLDecodeError:
+ print("Invalid typst.toml:", package_version_dir)
+
+ with open(output_file, "wb") as typst_packages:
+
+ def generate_package(pname, package_subtree):
+ sorted_keys = sorted(package_subtree.keys(), key=Version, reverse=True)
+ print(f"Generating metadata for {pname}")
+ return {
+ pname: OrderedDict(
+ (k, package_subtree[k].to_attrs()) for k in sorted_keys
+ )
+ }
+
+ with concurrent.futures.ThreadPoolExecutor(max_workers=100) as executor:
+ sorted_packages = sorted(package_tree.items(), key=lambda x: x[0])
+ futures = list()
+ for pname, psubtree in sorted_packages:
+ futures.append(executor.submit(generate_package, pname, psubtree))
+ packages = OrderedDict(
+ (package, subtree)
+ for future in futures
+ for package, subtree in future.result().items()
+ )
+ print(f"Writing metadata... to {output_file}")
+ tomli_w.dump(packages, typst_packages)
+
+
+def main(args):
+ PREVIEW_DIR = "packages/preview"
+ TYPST_PACKAGE_TARBALL_URL = (
+ "https://github.com/typst/packages/archive/refs/heads/main.tar.gz"
+ )
+
+ directory = args.directory
+ if not directory:
+ tempdir = tempfile.mkdtemp()
+ print(tempdir)
+ typst_tarball = os.path.join(tempdir, "main.tar.gz")
+
+ print(
+ "Downloading Typst packages source from {} to {}".format(
+ TYPST_PACKAGE_TARBALL_URL, typst_tarball
+ )
+ )
+ with request.urlopen(
+ request.Request(TYPST_PACKAGE_TARBALL_URL), timeout=15.0
+ ) as response:
+ if response.status == 200:
+ with open(typst_tarball, "wb+") as f:
+ f.write(response.read())
+ else:
+ print("Download failed")
+ exit(1)
+ with tarfile.open(typst_tarball) as tar:
+ tar.extractall(path=tempdir, filter="data")
+ directory = os.path.join(tempdir, "packages-main")
+ directory = os.path.abspath(directory)
+
+ generate_typst_packages(
+ os.path.join(directory, PREVIEW_DIR),
+ args.output,
+ )
+
+ exit(0)
+
+
+if __name__ == "__main__":
+ parser = argparse.ArgumentParser()
+ parser.add_argument(
+ "-d", "--directory", help="Local Typst Universe repository", default=None
+ )
+ parser.add_argument(
+ "-o",
+ "--output",
+ help="Output file",
+ default=os.path.join(os.path.abspath("."), "typst-packages-from-universe.toml"),
+ )
+ args = parser.parse_args()
+ main(args)
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 9e36dc9e4f89..8c38bdb081f5 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -767,7 +767,7 @@ in
magic-wormhole-mailbox-server = runTest ./magic-wormhole-mailbox-server.nix;
magnetico = handleTest ./magnetico.nix { };
mailcatcher = runTest ./mailcatcher.nix;
- mailhog = handleTest ./mailhog.nix { };
+ mailhog = runTest ./mailhog.nix;
mailpit = runTest ./mailpit.nix;
mailman = runTest ./mailman.nix;
man = handleTest ./man.nix { };
@@ -830,7 +830,7 @@ in
mosquitto = runTest ./mosquitto.nix;
moosefs = handleTest ./moosefs.nix { };
movim = import ./web-apps/movim { inherit recurseIntoAttrs runTest; };
- mpd = handleTest ./mpd.nix { };
+ mpd = runTest ./mpd.nix;
mpv = runTest ./mpv.nix;
mtp = handleTest ./mtp.nix { };
multipass = handleTest ./multipass.nix { };
@@ -1176,7 +1176,7 @@ in
rustls-libssl = handleTest ./rustls-libssl.nix { };
rxe = handleTest ./rxe.nix { };
sabnzbd = handleTest ./sabnzbd.nix { };
- samba = handleTest ./samba.nix { };
+ samba = runTest ./samba.nix;
samba-wsdd = handleTest ./samba-wsdd.nix { };
sane = handleTest ./sane.nix { };
sanoid = handleTest ./sanoid.nix { };
diff --git a/nixos/tests/mailhog.nix b/nixos/tests/mailhog.nix
index 5192e3471e35..ceab93d3b2a8 100644
--- a/nixos/tests/mailhog.nix
+++ b/nixos/tests/mailhog.nix
@@ -1,30 +1,28 @@
-import ./make-test-python.nix (
- { lib, ... }:
- {
- name = "mailhog";
- meta.maintainers = with lib.maintainers; [
- jojosch
- RTUnreal
- ];
+{ lib, ... }:
+{
+ name = "mailhog";
+ meta.maintainers = with lib.maintainers; [
+ jojosch
+ RTUnreal
+ ];
- nodes.machine =
- { pkgs, ... }:
- {
- services.mailhog.enable = true;
- };
+ nodes.machine =
+ { pkgs, ... }:
+ {
+ services.mailhog.enable = true;
+ };
- testScript = ''
- start_all()
+ testScript = ''
+ start_all()
- machine.wait_for_unit("mailhog.service")
- machine.wait_for_open_port(1025)
- machine.wait_for_open_port(8025)
- # Test sendmail wrapper (this uses smtp, which tests the connection)
- machine.succeed('printf "To: root@example.com\r\n\r\nthis is the body of the email" | sendmail -t -i -f sender@example.com')
- res = machine.succeed(
- "curl --fail http://localhost:8025/api/v2/messages"
- )
- assert all(msg in res for msg in ["this is the body of the email", "sender@example.com", "root@example.com"])
- '';
- }
-)
+ machine.wait_for_unit("mailhog.service")
+ machine.wait_for_open_port(1025)
+ machine.wait_for_open_port(8025)
+ # Test sendmail wrapper (this uses smtp, which tests the connection)
+ machine.succeed('printf "To: root@example.com\r\n\r\nthis is the body of the email" | sendmail -f sender@example.com')
+ res = machine.succeed(
+ "curl --fail http://localhost:8025/api/v2/messages"
+ )
+ assert all(msg in res for msg in ["this is the body of the email", "sender@example.com", "root@example.com"])
+ '';
+}
diff --git a/nixos/tests/mpd.nix b/nixos/tests/mpd.nix
index 36215b780c5d..f80c6658c621 100644
--- a/nixos/tests/mpd.nix
+++ b/nixos/tests/mpd.nix
@@ -1,150 +1,148 @@
-import ./make-test-python.nix (
- { pkgs, lib, ... }:
- let
- track = pkgs.fetchurl {
- # Sourced from http://freemusicarchive.org/music/Blue_Wave_Theory/Surf_Music_Month_Challenge/Skyhawk_Beach_fade_in
+{ pkgs, lib, ... }:
+let
+ track = pkgs.fetchurl {
+ # Sourced from http://freemusicarchive.org/music/Blue_Wave_Theory/Surf_Music_Month_Challenge/Skyhawk_Beach_fade_in
- name = "Blue_Wave_Theory-Skyhawk_Beach.mp3";
- url = "https://freemusicarchive.org/file/music/ccCommunity/Blue_Wave_Theory/Surf_Music_Month_Challenge/Blue_Wave_Theory_-_04_-_Skyhawk_Beach.mp3";
- hash = "sha256-91VDWwrcP6Cw4rk72VHvZ8RGfRBrpRE8xo/02dcJhHc=";
- meta.license = lib.licenses.cc-by-sa-40;
- };
+ name = "Blue_Wave_Theory-Skyhawk_Beach.mp3";
+ url = "https://freemusicarchive.org/file/music/ccCommunity/Blue_Wave_Theory/Surf_Music_Month_Challenge/Blue_Wave_Theory_-_04_-_Skyhawk_Beach.mp3";
+ hash = "sha256-91VDWwrcP6Cw4rk72VHvZ8RGfRBrpRE8xo/02dcJhHc=";
+ meta.license = lib.licenses.cc-by-sa-40;
+ };
- defaultCfg = rec {
- user = "mpd";
- group = "mpd";
- dataDir = "/var/lib/mpd";
- musicDirectory = "${dataDir}/music";
- };
+ defaultCfg = rec {
+ user = "mpd";
+ group = "mpd";
+ dataDir = "/var/lib/mpd";
+ musicDirectory = "${dataDir}/music";
+ };
- defaultMpdCfg = {
- inherit (defaultCfg)
- dataDir
- musicDirectory
- user
- group
- ;
- enable = true;
- };
+ defaultMpdCfg = {
+ inherit (defaultCfg)
+ dataDir
+ musicDirectory
+ user
+ group
+ ;
+ enable = true;
+ };
- musicService =
- {
- user,
- group,
- musicDirectory,
- }:
- {
- description = "Sets up the music file(s) for MPD to use.";
- requires = [ "mpd.service" ];
- after = [ "mpd.service" ];
- wantedBy = [ "default.target" ];
- script = ''
- cp ${track} ${musicDirectory}
- '';
- serviceConfig = {
- User = user;
- Group = group;
- };
+ musicService =
+ {
+ user,
+ group,
+ musicDirectory,
+ }:
+ {
+ description = "Sets up the music file(s) for MPD to use.";
+ requires = [ "mpd.service" ];
+ after = [ "mpd.service" ];
+ wantedBy = [ "default.target" ];
+ script = ''
+ cp ${track} ${musicDirectory}
+ '';
+ serviceConfig = {
+ User = user;
+ Group = group;
};
-
- mkServer =
- { mpd, musicService }:
- {
- boot.kernelModules = [ "snd-dummy" ];
- services.mpd = mpd;
- systemd.services.musicService = musicService;
- };
- in
- {
- name = "mpd";
- meta = {
- maintainers = with lib.maintainers; [ emmanuelrosa ];
};
- nodes = {
- client = { ... }: { };
-
- serverALSA =
- { ... }:
- lib.mkMerge [
- (mkServer {
- mpd = defaultMpdCfg // {
- network.listenAddress = "any";
- extraConfig = ''
- audio_output {
- type "alsa"
- name "ALSA"
- mixer_type "null"
- }
- '';
- };
- musicService = musicService { inherit (defaultMpdCfg) user group musicDirectory; };
- })
- { networking.firewall.allowedTCPPorts = [ 6600 ]; }
- ];
-
- serverPulseAudio =
- { ... }:
- lib.mkMerge [
- (mkServer {
- mpd = defaultMpdCfg // {
- extraConfig = ''
- audio_output {
- type "pulse"
- name "The Pulse"
- }
- '';
- };
-
- musicService = musicService { inherit (defaultMpdCfg) user group musicDirectory; };
- })
- {
- services.pulseaudio = {
- enable = true;
- systemWide = true;
- tcp.enable = true;
- tcp.anonymousClients.allowAll = true;
- };
- systemd.services.mpd.environment.PULSE_SERVER = "localhost";
- }
- ];
+ mkServer =
+ { mpd, musicService }:
+ {
+ boot.kernelModules = [ "snd-dummy" ];
+ services.mpd = mpd;
+ systemd.services.musicService = musicService;
};
+in
+{
+ name = "mpd";
+ meta = {
+ maintainers = with lib.maintainers; [ emmanuelrosa ];
+ };
- testScript = ''
- mpc = "${lib.getExe pkgs.mpc} --wait"
+ nodes = {
+ client = { ... }: { };
- # Connects to the given server and attempts to play a tune.
- def play_some_music(server):
- server.wait_for_unit("mpd.service")
- server.succeed(f"{mpc} update")
- _, tracks = server.execute(f"{mpc} ls")
+ serverALSA =
+ { ... }:
+ lib.mkMerge [
+ (mkServer {
+ mpd = defaultMpdCfg // {
+ network.listenAddress = "any";
+ extraConfig = ''
+ audio_output {
+ type "alsa"
+ name "ALSA"
+ mixer_type "null"
+ }
+ '';
+ };
+ musicService = musicService { inherit (defaultMpdCfg) user group musicDirectory; };
+ })
+ { networking.firewall.allowedTCPPorts = [ 6600 ]; }
+ ];
- for track in tracks.splitlines():
- server.succeed(f"{mpc} add {track}")
+ serverPulseAudio =
+ { ... }:
+ lib.mkMerge [
+ (mkServer {
+ mpd = defaultMpdCfg // {
+ extraConfig = ''
+ audio_output {
+ type "pulse"
+ name "The Pulse"
+ }
+ '';
+ };
- _, added_tracks = server.execute(f"{mpc} playlist")
+ musicService = musicService { inherit (defaultMpdCfg) user group musicDirectory; };
+ })
+ {
+ services.pulseaudio = {
+ enable = true;
+ systemWide = true;
+ tcp.enable = true;
+ tcp.anonymousClients.allowAll = true;
+ };
+ systemd.services.mpd.environment.PULSE_SERVER = "localhost";
+ }
+ ];
+ };
- # Check we succeeded adding audio tracks to the playlist
- assert len(added_tracks.splitlines()) > 0
+ testScript = ''
+ mpc = "${lib.getExe pkgs.mpc} --wait"
- server.succeed(f"{mpc} play")
+ # Connects to the given server and attempts to play a tune.
+ def play_some_music(server):
+ server.wait_for_unit("mpd.service")
+ server.succeed(f"{mpc} update")
+ _, tracks = server.execute(f"{mpc} ls")
- _, output = server.execute(f"{mpc} status")
- # Assure audio track is playing
- assert "playing" in output
+ for track in tracks.splitlines():
+ server.succeed(f"{mpc} add {track}")
- server.succeed(f"{mpc} stop")
+ _, added_tracks = server.execute(f"{mpc} playlist")
+
+ # Check we succeeded adding audio tracks to the playlist
+ assert len(added_tracks.splitlines()) > 0
+
+ server.succeed(f"{mpc} play")
+
+ _, output = server.execute(f"{mpc} status")
+ # Assure audio track is playing
+ assert "playing" in output
+
+ server.succeed(f"{mpc} stop")
- play_some_music(serverALSA)
- play_some_music(serverPulseAudio)
+ play_some_music(serverALSA)
+ play_some_music(serverPulseAudio)
- client.wait_for_unit("multi-user.target")
- client.succeed(f"{mpc} -h serverALSA status")
+ client.wait_for_unit("multi-user.target")
+ client.succeed(f"{mpc} -h serverALSA status")
- # The PulseAudio-based server is configured not to accept external client connections
- # to perform the following test:
- client.fail(f"{mpc} -h serverPulseAudio status")
- '';
- }
-)
+ # The PulseAudio-based server is configured not to accept external client connections
+ # to perform the following test:
+ client.fail(f"{mpc} -h serverPulseAudio status")
+ '';
+}
diff --git a/nixos/tests/samba.nix b/nixos/tests/samba.nix
index 96f63730b613..b9f2f1384559 100644
--- a/nixos/tests/samba.nix
+++ b/nixos/tests/samba.nix
@@ -1,50 +1,48 @@
-import ./make-test-python.nix (
- { pkgs, lib, ... }:
- {
- name = "samba";
+{ lib, ... }:
+{
+ name = "samba";
- meta.maintainers = [ lib.maintainers.anthonyroussel ];
+ meta.maintainers = [ lib.maintainers.anthonyroussel ];
- nodes = {
- client =
- { ... }:
- {
- virtualisation.fileSystems = {
- "/public" = {
- fsType = "cifs";
- device = "//server/public";
- options = [ "guest" ];
+ nodes = {
+ client =
+ { ... }:
+ {
+ virtualisation.fileSystems = {
+ "/public" = {
+ fsType = "cifs";
+ device = "//server/public";
+ options = [ "guest" ];
+ };
+ };
+ };
+
+ server =
+ { ... }:
+ {
+ services.samba = {
+ enable = true;
+ openFirewall = true;
+ settings = {
+ "public" = {
+ "path" = "/public";
+ "read only" = true;
+ "browseable" = "yes";
+ "guest ok" = "yes";
+ "comment" = "Public samba share.";
};
};
};
+ };
+ };
- server =
- { ... }:
- {
- services.samba = {
- enable = true;
- openFirewall = true;
- settings = {
- "public" = {
- "path" = "/public";
- "read only" = true;
- "browseable" = "yes";
- "guest ok" = "yes";
- "comment" = "Public samba share.";
- };
- };
- };
- };
- };
+ testScript = ''
+ server.start()
+ server.wait_for_unit("samba.target")
+ server.succeed("mkdir -p /public; echo bar > /public/foo")
- testScript = ''
- server.start()
- server.wait_for_unit("samba.target")
- server.succeed("mkdir -p /public; echo bar > /public/foo")
-
- client.start()
- client.wait_for_unit("remote-fs.target")
- client.succeed("[[ $(cat /public/foo) = bar ]]")
- '';
- }
-)
+ client.start()
+ client.wait_for_unit("remote-fs.target")
+ client.succeed("[[ $(cat /public/foo) = bar ]]")
+ '';
+}
diff --git a/pkgs/applications/audio/plexamp/default.nix b/pkgs/applications/audio/plexamp/default.nix
index 874936c25042..8e94213d51b7 100644
--- a/pkgs/applications/audio/plexamp/default.nix
+++ b/pkgs/applications/audio/plexamp/default.nix
@@ -7,12 +7,12 @@
let
pname = "plexamp";
- version = "4.11.5";
+ version = "4.12.0";
src = fetchurl {
url = "https://plexamp.plex.tv/plexamp.plex.tv/desktop/Plexamp-${version}.AppImage";
name = "${pname}-${version}.AppImage";
- hash = "sha512-j8fPp6JcTB/PwsGgvEGqETZ83mGee1MwR4T9eFcNuoLRtlnudM7c3WDgxhpUdv5Nx3XkcMVnW1fntZYN2sIfzA==";
+ hash = "sha512-vIH6HPWjL0fzM8rXZhXYUH6qT3mca5WxicRRaQr9RHW511x8pNnRmdwtMDfKtyrhUiZFiE1XAfWBDXmuxbJW/g==";
};
appimageContents = appimageTools.extractType2 {
@@ -38,7 +38,7 @@ appimageTools.wrapType2 {
meta = with lib; {
description = "Beautiful Plex music player for audiophiles, curators, and hipsters";
homepage = "https://plexamp.com/";
- changelog = "https://forums.plex.tv/t/plexamp-release-notes/221280/77";
+ changelog = "https://forums.plex.tv/t/plexamp-release-notes/221280/78";
license = licenses.unfree;
maintainers = with maintainers; [
killercup
diff --git a/pkgs/applications/networking/instant-messengers/gajim/default.nix b/pkgs/applications/networking/instant-messengers/gajim/default.nix
index ae269d516e0f..4c7288d6a328 100644
--- a/pkgs/applications/networking/instant-messengers/gajim/default.nix
+++ b/pkgs/applications/networking/instant-messengers/gajim/default.nix
@@ -40,11 +40,11 @@
python3.pkgs.buildPythonApplication rec {
pname = "gajim";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
url = "https://gajim.org/downloads/${lib.versions.majorMinor version}/gajim-${version}.tar.gz";
- hash = "sha256-LuguvOkqFDHG46+J2Q0rXnRHRuiVdCG84FuZ8CeLDYE=";
+ hash = "sha256-1pPrc7lzxaLK1QbxslGYGS8xOxuT231RvZrdvWeGFOk=";
};
format = "pyproject";
diff --git a/pkgs/build-support/build-typst-package.nix b/pkgs/build-support/build-typst-package.nix
new file mode 100644
index 000000000000..47e35251be20
--- /dev/null
+++ b/pkgs/build-support/build-typst-package.nix
@@ -0,0 +1,60 @@
+{
+ lib,
+ stdenvNoCC,
+}:
+
+/**
+ `buildTypstPackage` is a helper builder for typst packages.
+
+ # Inputs
+
+ `attrs`
+ : attrs for stdenvNoCC.mkDerivation + typstDeps (a list of `buildTypstPackage` derivations)
+
+ # Example
+ ```nix
+ { buildTypstPackage, typstPackages }:
+
+ buildTypstPackage {
+ pname = "example";
+ version = "0.0.1";
+ src = ./.;
+ typstDeps = with typstPackages; [ oxifmt ];
+ }
+ ```
+*/
+
+lib.extendMkDerivation {
+ constructDrv = stdenvNoCC.mkDerivation;
+
+ excludeDrvArgNames = [
+ "typstDeps"
+ ];
+
+ extendDrvArgs =
+ finalAttrs:
+ {
+ typstDeps ? [ ],
+ ...
+ }@attrs:
+ {
+ name = "typst-package-${finalAttrs.pname}-${finalAttrs.version}";
+
+ installPhase =
+ let
+ outDir = "$out/lib/typst-packages/${finalAttrs.pname}/${finalAttrs.version}";
+ in
+ ''
+ runHook preInstall
+ mkdir -p ${outDir}
+ cp -r . ${outDir}
+ runHook postInstall
+ '';
+
+ propagatedBuildInputs = typstDeps;
+
+ passthru = {
+ inherit typstDeps;
+ };
+ };
+}
diff --git a/pkgs/by-name/al/alistral/package.nix b/pkgs/by-name/al/alistral/package.nix
index e6501719314c..12dfe62bb2bf 100644
--- a/pkgs/by-name/al/alistral/package.nix
+++ b/pkgs/by-name/al/alistral/package.nix
@@ -10,13 +10,13 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "alistral";
- version = "0.5.5";
+ version = "0.5.6";
src = fetchFromGitHub {
owner = "RustyNova016";
repo = "Alistral";
tag = "v${finalAttrs.version}";
- hash = "sha256-DrHoVAIPD/F6pY04QXVilXiwD/nWzeVquuHzRiq2sRY=";
+ hash = "sha256-6p2KMFTdC04lEhNQiu88ALBPrpQUF9JhXDacntoq4lE=";
};
# remove if updating to rust 1.85
@@ -27,7 +27,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
'';
useFetchCargoVendor = true;
- cargoHash = "sha256-Jyus5L0z0Z6Qf9vBcO6/h+py0JNKG1FS6qXONUM26BM=";
+ cargoHash = "sha256-2pi2hfQTLs2HAlgp1DQCMFp/nMJQfcuQFhGlrsWgy5E=";
env.RUSTC_BOOTSTRAP = 1;
diff --git a/pkgs/by-name/au/audacious-plugins/package.nix b/pkgs/by-name/au/audacious-plugins/package.nix
index 5614a0450e04..f8d739feb72e 100644
--- a/pkgs/by-name/au/audacious-plugins/package.nix
+++ b/pkgs/by-name/au/audacious-plugins/package.nix
@@ -110,9 +110,7 @@ stdenv.mkDerivation rec {
dontWrapQtApps = true;
postInstall = ''
- ln -s ${
- vgmstream.override { buildAudaciousPlugin = true; }
- }/lib/audacious/Input/* $out/lib/audacious/Input
+ ln -s ${vgmstream.audacious}/lib/audacious/Input/* $out/lib/audacious/Input
'';
meta = audacious-bare.meta // {
diff --git a/pkgs/by-name/br/broot/package.nix b/pkgs/by-name/br/broot/package.nix
index ad607142586c..a30c2cbcdec4 100644
--- a/pkgs/by-name/br/broot/package.nix
+++ b/pkgs/by-name/br/broot/package.nix
@@ -15,17 +15,17 @@
rustPlatform.buildRustPackage rec {
pname = "broot";
- version = "1.45.1";
+ version = "1.46.0";
src = fetchFromGitHub {
owner = "Canop";
repo = "broot";
rev = "v${version}";
- hash = "sha256-xLmVqYjQqjWMBm2A5OJl2wFIvxbWviX//J10BnKgWyk=";
+ hash = "sha256-m7TG3Bxqp87g9GPijy+daP4nYgCJkTmC95U+DgUcWGM=";
};
useFetchCargoVendor = true;
- cargoHash = "sha256-8QRqRAXyqWS13TxUlSawjh/Qo4Qs5yQtNlqXj0hMW0c=";
+ cargoHash = "sha256-elpzGgF9o7iV2YaQFFqQ9jafEuYVPImC808MWWFZ4gw=";
nativeBuildInputs = [
installShellFiles
diff --git a/pkgs/by-name/co/codex/package.nix b/pkgs/by-name/co/codex/package.nix
index 0722fd537422..2f35a543ccd3 100644
--- a/pkgs/by-name/co/codex/package.nix
+++ b/pkgs/by-name/co/codex/package.nix
@@ -2,22 +2,26 @@
lib,
buildNpmPackage,
fetchFromGitHub,
+ versionCheckHook,
}:
buildNpmPackage rec {
pname = "codex";
- version = "0.1.04160940"; # from codex-cli/package.json
+ version = "0.1.2504161510"; # from codex-cli/package.json
src = fetchFromGitHub {
owner = "openai";
repo = "codex";
- rev = "e8afebac157f2069fc7ae0e33fb44c85ebf48892";
- hash = "sha256-FW03PSmeyJPDPpWw4XEqKZQqEwjOV2VFVQWXmXBevYU=";
+ rev = "b0ccca555685b1534a0028cb7bfdcad8fe2e477a";
+ hash = "sha256-WTnP6HZfrMjUoUZL635cngpfvvjrA2Zvm74T2627GwA=";
};
sourceRoot = "${src.name}/codex-cli";
- npmDepsHash = "sha256-QdfO/p8oQnwIANeNRD0vD55v5lc9dHeaScpnpLqWdxc=";
+ npmDepsHash = "sha256-riVXC7T9zgUBUazH5Wq7+MjU1FepLkp9kHLSq+ZVqbs=";
+
+ doInstallCheck = true;
+ nativeInstallCheckInputs = [ versionCheckHook ];
meta = {
description = "Lightweight coding agent that runs in your terminal";
diff --git a/pkgs/by-name/cr/crosvm/package.nix b/pkgs/by-name/cr/crosvm/package.nix
index afe24ac2b1a3..6016103abd34 100644
--- a/pkgs/by-name/cr/crosvm/package.nix
+++ b/pkgs/by-name/cr/crosvm/package.nix
@@ -21,12 +21,12 @@
rustPlatform.buildRustPackage {
pname = "crosvm";
- version = "0-unstable-2025-04-07";
+ version = "0-unstable-2025-04-16";
src = fetchgit {
url = "https://chromium.googlesource.com/chromiumos/platform/crosvm";
- rev = "7cb0f63341ca728c2d0f53c94fadfd20dd307186";
- hash = "sha256-xEKOEEGyfrfCGzI2+brkVwHcKKKLctNU+adgzVNGses=";
+ rev = "28a224e3fb19ce9fe1ce2a32b952af4c96e10bea";
+ hash = "sha256-LRXtGSSFAhRoSIFLfAhYyrBVx1tsxHgpQIfyKTI2Awk=";
fetchSubmodules = true;
};
diff --git a/pkgs/by-name/gg/ggh/package.nix b/pkgs/by-name/gg/ggh/package.nix
new file mode 100644
index 000000000000..ecd85026f9ff
--- /dev/null
+++ b/pkgs/by-name/gg/ggh/package.nix
@@ -0,0 +1,38 @@
+{
+ lib,
+ buildGoModule,
+ fetchFromGitHub,
+ nix-update-script,
+}:
+
+buildGoModule (finalAttrs: {
+ pname = "ggh";
+ version = "0.1.4";
+
+ src = fetchFromGitHub {
+ owner = "byawitz";
+ repo = "ggh";
+ tag = "v${finalAttrs.version}";
+ hash = "sha256-itNx/AcLUQCH99ZCOXiXPWNg3mx+UhHepidqmzPY8Oc=";
+ };
+
+ vendorHash = "sha256-WPPjpxCD3WA3E7lx5+DPvG31p8djera5xRn980eaJT8=";
+
+ ldflags = [
+ "-s"
+ "-w"
+ "-X main.version=v${finalAttrs.version}"
+ ];
+
+ passthru.updateScript = nix-update-script { };
+
+ meta = {
+ description = "Recall your SSH sessions (also search your SSH config file)";
+ homepage = "https://github.com/byawitz/ggh";
+ changelog = "https://github.com/byawitz/ggh/releases/tag/v${finalAttrs.version}";
+ license = lib.licenses.asl20;
+ maintainers = [ lib.maintainers.ilarvne ];
+ platforms = lib.platforms.unix;
+ mainProgram = "ggh";
+ };
+})
diff --git a/pkgs/by-name/gi/gitlab-ci-local/package.nix b/pkgs/by-name/gi/gitlab-ci-local/package.nix
index 1dc740ba16f2..20f10ef517a4 100644
--- a/pkgs/by-name/gi/gitlab-ci-local/package.nix
+++ b/pkgs/by-name/gi/gitlab-ci-local/package.nix
@@ -5,6 +5,9 @@
nix-update-script,
gitlab-ci-local,
testers,
+ makeBinaryWrapper,
+ rsync,
+ gitMinimal,
}:
buildNpmPackage rec {
@@ -20,12 +23,26 @@ buildNpmPackage rec {
npmDepsHash = "sha256-fndSJd15sZ/sIFvh+MzNw25kuP9D9+Qc0mDqgnvjnPo=";
+ nativeBuildInputs = [
+ makeBinaryWrapper
+ ];
+
postPatch = ''
# remove cleanup which runs git commands
substituteInPlace package.json \
--replace-fail "npm run cleanup" "true"
'';
+ postInstall = ''
+ wrapProgram $out/bin/gitlab-ci-local \
+ --prefix PATH : "${
+ lib.makeBinPath [
+ rsync
+ gitMinimal
+ ]
+ }"
+ '';
+
passthru = {
updateScript = nix-update-script { };
tests.version = testers.testVersion {
diff --git a/pkgs/by-name/go/go-xmlstruct/package.nix b/pkgs/by-name/go/go-xmlstruct/package.nix
new file mode 100644
index 000000000000..e93841f889ec
--- /dev/null
+++ b/pkgs/by-name/go/go-xmlstruct/package.nix
@@ -0,0 +1,50 @@
+{
+ lib,
+ buildGoModule,
+ fetchFromGitHub,
+ nix-update-script,
+}:
+
+buildGoModule (finalAttrs: {
+ pname = "go-xmlstruct";
+ version = "1.10.0";
+
+ src = fetchFromGitHub {
+ owner = "twpayne";
+ repo = "go-xmlstruct";
+ tag = "v${finalAttrs.version}";
+ hash = "sha256-7nDxLvTu/l3bbkG/MYFWqO0KGNfVVwW9/WqvKvj0wOc=";
+ };
+
+ vendorHash = "sha256-dxnMWxcWu67FI833bFoxy+5s2ELp3gXisLiTACZRzGU=";
+
+ doInstallCheck = true;
+ installCheckPhase = ''
+ runHook preInstallCheck
+
+ # The --help flag doesn't actually exist in goxmlstruct, causing it to return exit code 2,
+ # but this error condition is the only way to get the usage information.
+ output=$($out/bin/goxmlstruct --help 2>&1 || true)
+
+ if ! echo "$output" | grep -q "Usage of $out/bin/goxmlstruct:"; then
+ echo "Expected usage information not found in output"
+ echo "Got: $output"
+ exit 1
+ fi
+
+ runHook postInstallCheck
+ '';
+
+ passthru = {
+ updateScript = nix-update-script { };
+ };
+
+ meta = {
+ description = "Generate Go structs from multiple XML documents";
+ mainProgram = "goxmlstruct";
+ homepage = "https://github.com/twpayne/go-xmlstruct";
+ changelog = "https://github.com/twpayne/go-xmlstruct/releases/tag/v${finalAttrs.version}";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ dvcorreia ];
+ };
+})
diff --git a/pkgs/by-name/he/hevi/deps.nix b/pkgs/by-name/he/hevi/deps.nix
new file mode 100644
index 000000000000..8875577d8775
--- /dev/null
+++ b/pkgs/by-name/he/hevi/deps.nix
@@ -0,0 +1,42 @@
+# generated by zon2nix (https://github.com/nix-community/zon2nix)
+
+{
+ linkFarm,
+ fetchzip,
+ fetchgit,
+}:
+
+linkFarm "zig-packages" [
+ {
+ name = "12204a4669fa6e8ebb1720e3581a24c1a7f538f2f4ee3ebc91a9e36285c89572d761";
+ path = fetchgit {
+ url = "https://github.com/MFAshby/zig-lsp-kit.git";
+ rev = "1c07e3e3305f8dd6355735173321c344fc152d3e";
+ hash = "sha256-WBJ7hbc69W3mtzrMLwehcKccSbVe/8Dy9sX4IA4VbcY=";
+ };
+ }
+ {
+ name = "1220841471bd4891cbb199d27cc5e7e0fb0a5b7c5388a70bd24fa3eb7285755c396c";
+ path = fetchgit {
+ url = "https://github.com/kubkon/zig-yaml.git";
+ rev = "beddd5da24de91d430ca7028b00986f7745b13e9";
+ hash = "sha256-CJms2LjwoYNlbhapFYzvOImuaMH/zikllYeQ2/VlHi0=";
+ };
+ }
+ {
+ name = "12209cde192558f8b3dc098ac2330fc2a14fdd211c5433afd33085af75caa9183147";
+ path = fetchgit {
+ url = "https://github.com/ziglibs/known-folders.git";
+ rev = "0ad514dcfb7525e32ae349b9acc0a53976f3a9fa";
+ hash = "sha256-X+XkFj56MkYxxN9LUisjnkfCxUfnbkzBWHy9pwg5M+g=";
+ };
+ }
+ {
+ name = "1220c198cdaf6cb73fca6603cc5039046ed10de2e9f884cae9224ff826731df1c68d";
+ path = fetchgit {
+ url = "https://github.com/kristoff-it/ziggy";
+ rev = "ae30921d8c98970942d3711553aa66ff907482fe";
+ hash = "sha256-dZemnsmM0383HnA7zhykyO/DnG0mx+PVjjr9NiIfu4I=";
+ };
+ }
+]
diff --git a/pkgs/by-name/he/hevi/package.nix b/pkgs/by-name/he/hevi/package.nix
new file mode 100644
index 000000000000..9e30696da500
--- /dev/null
+++ b/pkgs/by-name/he/hevi/package.nix
@@ -0,0 +1,39 @@
+{
+ callPackage,
+ fetchFromGitHub,
+ lib,
+ stdenv,
+ zig_0_13,
+}:
+
+let
+ zig = zig_0_13;
+in
+stdenv.mkDerivation (finalAttrs: {
+ pname = "hevi";
+ version = "1.1.0";
+
+ src = fetchFromGitHub {
+ owner = "Arnau478";
+ repo = "hevi";
+ tag = "v${finalAttrs.version}";
+ hash = "sha256-wnpuM2qlbeDIupDPQPKdWmjAKepCG0+u3uxcLDFB09w=";
+ };
+
+ nativeBuildInputs = [
+ zig.hook
+ ];
+
+ postPatch = ''
+ ln -s ${callPackage ./deps.nix { }} $ZIG_GLOBAL_CACHE_DIR/p
+ '';
+
+ meta = {
+ description = "Hex viewer";
+ homepage = "https://github.com/Arnau478/hevi";
+ license = lib.licenses.gpl3Only;
+ maintainers = [ lib.maintainers.jmbaur ];
+ mainProgram = "hevi";
+ inherit (zig.meta) platforms;
+ };
+})
diff --git a/pkgs/by-name/hu/huion-switcher/package.nix b/pkgs/by-name/hu/huion-switcher/package.nix
new file mode 100644
index 000000000000..668543cb4e36
--- /dev/null
+++ b/pkgs/by-name/hu/huion-switcher/package.nix
@@ -0,0 +1,60 @@
+{
+ lib,
+ nix-update-script,
+ fetchFromGitHub,
+ rustPlatform,
+ udev,
+ pkg-config,
+ installShellFiles,
+ versionCheckHook,
+}:
+
+rustPlatform.buildRustPackage (finalAttrs: {
+ pname = "huion-switcher";
+ version = "0.5.0";
+
+ src = fetchFromGitHub {
+ owner = "whot";
+ repo = "huion-switcher";
+ tag = finalAttrs.version;
+ hash = "sha256-+cMvBVtJPbsJhEmOh3SEXZrVwp9Uuvx6QmUCcpenS20=";
+ };
+
+ buildInputs = [ udev ];
+ nativeBuildInputs = [
+ pkg-config
+ installShellFiles
+ ];
+
+ useFetchCargoVendor = true;
+ cargoHash = "sha256-yj55FMdf91ZG95yuMt3dQFhUjYM0/sUfFKB+W+5xEfo=";
+
+ postInstall = ''
+ mv huion-switcher.{man,1}
+ installManPage huion-switcher.1
+
+ # Install 80-huion-switcher.rules
+
+ # Mind the trailing space! We leave the args to huion-switcher in place
+ substituteInPlace "80-huion-switcher.rules" --replace-fail \
+ "IMPORT{program}=\"huion-switcher " \
+ "IMPORT{program}=\"$out/bin/huion-switcher "
+
+ install -Dm 0644 -t "$out/lib/udev/rules.d" "80-huion-switcher.rules"
+ '';
+
+ doInstallCheck = true;
+ nativeInstallCheckInputs = [ versionCheckHook ];
+
+ passthru.updateScript = nix-update-script { };
+
+ meta = {
+ description = "Utility to switch Huion devices into raw tablet mode";
+ homepage = "https://github.com/whot/huion-switcher";
+ changelog = "https://github.com/whot/huion-switcher/releases/tag/${finalAttrs.version}";
+ license = lib.licenses.gpl2Only;
+ platforms = lib.platforms.linux;
+ mainProgram = "huion-switcher";
+ maintainers = with lib.maintainers; [ dramforever ];
+ };
+})
diff --git a/pkgs/tools/text/kdiff3/default.nix b/pkgs/by-name/kd/kdiff3/package.nix
similarity index 73%
rename from pkgs/tools/text/kdiff3/default.nix
rename to pkgs/by-name/kd/kdiff3/package.nix
index aeb8b5f9c32d..30ddc904204c 100644
--- a/pkgs/tools/text/kdiff3/default.nix
+++ b/pkgs/by-name/kd/kdiff3/package.nix
@@ -3,42 +3,38 @@
lib,
fetchurl,
extra-cmake-modules,
- kdoctools,
- wrapQtAppsHook,
boost,
- kcrash,
- kconfig,
- kinit,
- kparts,
- kiconthemes,
+ kdePackages,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "kdiff3";
- version = "1.11.5";
+ version = "1.12.2";
src = fetchurl {
url = "mirror://kde/stable/kdiff3/kdiff3-${finalAttrs.version}.tar.xz";
- hash = "sha256-Qg8Ys7lolpigXhAvikFxkEkHTaaPlslL4Y0bgpfutUU=";
+ hash = "sha256-MaN8vPnUIHintIRdQqwaAzp9cjKlq66qAo9kJbufpDk=";
};
nativeBuildInputs = [
extra-cmake-modules
- kdoctools
- wrapQtAppsHook
+ kdePackages.kdoctools
+ kdePackages.wrapQtAppsHook
];
- buildInputs = [
+ buildInputs = with kdePackages; [
+ qtbase
boost
kconfig
kcrash
- kinit
kparts
kiconthemes
];
cmakeFlags = [ "-Wno-dev" ];
+ env.LANG = "C.UTF-8";
+
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
ln -s "$out/Applications/KDE/kdiff3.app/Contents/MacOS" "$out/bin"
'';
@@ -49,6 +45,6 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://invent.kde.org/sdk/kdiff3";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ peterhoeg ];
- platforms = with platforms; linux ++ darwin;
+ inherit (kdePackages.qtbase.meta) platforms;
};
})
diff --git a/pkgs/by-name/ly/lyto/package.nix b/pkgs/by-name/ly/lyto/package.nix
new file mode 100644
index 000000000000..387032f53e4c
--- /dev/null
+++ b/pkgs/by-name/ly/lyto/package.nix
@@ -0,0 +1,42 @@
+{
+ lib,
+ python3,
+ fetchFromGitHub,
+}:
+
+python3.pkgs.buildPythonApplication rec {
+ pname = "lyto";
+ version = "0.2.2";
+ pyproject = true;
+
+ src = fetchFromGitHub {
+ owner = "eeriemyxi";
+ repo = "lyto";
+ tag = "v${version}";
+ hash = "sha256-XCAM7vo4EcbIxFddggeqABru4epE2jW2YpF++I0mpdU=";
+ };
+
+ build-system = [
+ python3.pkgs.hatchling
+ ];
+
+ dependencies = with python3.pkgs; [
+ qrcode
+ rich
+ sixel
+ zeroconf
+ ];
+
+ pythonImportsCheck = [
+ "lyto"
+ ];
+
+ meta = {
+ description = "Automatic wireless ADB connection using QR codes";
+ homepage = "https://github.com/eeriemyxi/lyto";
+ changelog = "https://github.com/eeriemyxi/lyto/releases/tag/v${version}";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ atemu ];
+ mainProgram = "lyto";
+ };
+}
diff --git a/pkgs/by-name/ma/macos-defaults/package.nix b/pkgs/by-name/ma/macos-defaults/package.nix
new file mode 100644
index 000000000000..00f13bfcbb21
--- /dev/null
+++ b/pkgs/by-name/ma/macos-defaults/package.nix
@@ -0,0 +1,38 @@
+{
+ lib,
+ fetchFromGitHub,
+ rustPlatform,
+ nix-update-script,
+}:
+rustPlatform.buildRustPackage (finalAttrs: {
+ pname = "macos-defaults";
+ version = "0.2.0";
+
+ src = fetchFromGitHub {
+ owner = "dsully";
+ repo = "macos-defaults";
+ tag = finalAttrs.version;
+ hash = "sha256-dSZjMuw7ott0dgiYo0rqekEvScmrX6iG7xHaPAgo1/E=";
+ };
+
+ useFetchCargoVendor = true;
+ cargoHash = "sha256-xSg6WAkFPS8B1G4WqMW77egCMmOEo3rK2EKcrDYaBjA=";
+
+ checkFlags = [
+ # accesses home dir
+ "--skip=defaults::tests::plist_path_tests"
+ # accesses system_profiler
+ "--skip=defaults::tests::test_get_hardware_uuid"
+ ];
+
+ passthru.updateScript = nix-update-script { };
+
+ meta = {
+ description = "Tool for managing macOS defaults declaratively via YAML files";
+ homepage = "https://github.com/dsully/macos-defaults";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ josh ];
+ mainProgram = "macos-defaults";
+ platforms = lib.platforms.darwin;
+ };
+})
diff --git a/pkgs/by-name/ma/matcha-gtk-theme/package.nix b/pkgs/by-name/ma/matcha-gtk-theme/package.nix
index 74d5dde06f25..61b923022bb7 100644
--- a/pkgs/by-name/ma/matcha-gtk-theme/package.nix
+++ b/pkgs/by-name/ma/matcha-gtk-theme/package.nix
@@ -24,13 +24,13 @@ lib.checkListOfEnum "${pname}: color variants" [ "standard" "light" "dark" ] col
stdenvNoCC.mkDerivation
rec {
inherit pname;
- version = "2024-05-01";
+ version = "2025-04-11";
src = fetchFromGitHub {
owner = "vinceliuice";
repo = pname;
rev = version;
- sha256 = "trQwRZ/JKIS8TcRIg0eL5GmB/yymDwqqNued0ddRuqU=";
+ sha256 = "sha256-vPAGEa3anWAynEg2AYme4qpHJdLDKk2CmL5iQ1mBYgM=";
};
nativeBuildInputs = [
diff --git a/pkgs/by-name/mp/mpiCheckPhaseHook/mpi-check-hook.sh b/pkgs/by-name/mp/mpiCheckPhaseHook/mpi-check-hook.sh
index 77d7290e2ec1..be2203951c0f 100644
--- a/pkgs/by-name/mp/mpiCheckPhaseHook/mpi-check-hook.sh
+++ b/pkgs/by-name/mp/mpiCheckPhaseHook/mpi-check-hook.sh
@@ -55,7 +55,7 @@ setupMpiCheck() {
# The solution is to use a preset cpu topology file and disable ucx model.
# Disable sysfs cpu topology directory discovery.
- export PRTE_MCA_hwloc_use_topo_file="@topology@"
+ export HWLOC_XMLFILE="@topology@"
# Use the network model ob1 instead of ucx.
export OMPI_MCA_pml=ob1
;;
@@ -68,6 +68,8 @@ setupMpiCheck() {
MVAPICH)
# Disable CPU pinning
export MV2_ENABLE_AFFINITY=0
+ # Disable sysfs cpu topology directory discovery.
+ export HWLOC_XMLFILE="@topology@"
;;
esac
diff --git a/pkgs/by-name/mu/mullvad-browser/package.nix b/pkgs/by-name/mu/mullvad-browser/package.nix
index 7e7298dbaefe..c5e1089db53a 100644
--- a/pkgs/by-name/mu/mullvad-browser/package.nix
+++ b/pkgs/by-name/mu/mullvad-browser/package.nix
@@ -97,7 +97,7 @@ let
++ lib.optionals mediaSupport [ ffmpeg ]
);
- version = "14.0.9";
+ version = "14.5";
sources = {
x86_64-linux = fetchurl {
@@ -109,7 +109,7 @@ let
"https://tor.eff.org/dist/mullvadbrowser/${version}/mullvad-browser-linux-x86_64-${version}.tar.xz"
"https://tor.calyxinstitute.org/dist/mullvadbrowser/${version}/mullvad-browser-linux-x86_64-${version}.tar.xz"
];
- hash = "sha256-5mVplSTqXVTL+QSJg0hthKUL/JiwX3A3DC869HRzQ7M=";
+ hash = "sha256-uqwsDXbS8tfG/bgTQKvdiaPzchVhssoQccQStncNWOk=";
};
};
@@ -249,7 +249,7 @@ stdenv.mkDerivation rec {
# FONTCONFIG_FILE is required to make fontconfig read the MB
# fonts.conf; upstream uses FONTCONFIG_PATH, but FC_DEBUG=1024
# indicates the system fonts.conf being used instead.
- FONTCONFIG_FILE=$MB_IN_STORE/fontconfig/fonts.conf
+ FONTCONFIG_FILE=$MB_IN_STORE/fonts/fonts.conf
substituteInPlace "$FONTCONFIG_FILE" \
--replace-fail '
fonts' "$MB_IN_STORE/fonts"
diff --git a/pkgs/by-name/ne/nesting/package.nix b/pkgs/by-name/ne/nesting/package.nix
index 1fbc3af9007b..928fec3c059d 100644
--- a/pkgs/by-name/ne/nesting/package.nix
+++ b/pkgs/by-name/ne/nesting/package.nix
@@ -9,33 +9,34 @@
versionCheckHook,
}:
-buildGoModule rec {
+buildGoModule (finalAttrs: {
pname = "nesting";
version = "0.3.0";
src = fetchFromGitLab {
- group = "gitlab-org";
- owner = "fleeting";
+ owner = "gitlab-org/fleeting";
repo = "nesting";
- tag = "v${version}";
+ tag = "v${finalAttrs.version}";
hash = "sha256-ejoLld1TmwaqTlSyuzyEVEqLyEehu6g7yc0H0Cvkqp4=";
};
vendorHash = "sha256-CyXlK/0VWMFlwSfisoaNCRdknasp8faN/K/zdyRhAQQ=";
- subPackages = [ "cmd/nesting" ];
-
- # See https://gitlab.com/gitlab-org/fleeting/nesting/-/blob/v0.3.0/Makefile?ref_type=tags#L22-24.
- #
- # Needed for "nesting version" to not show "dev".
- ldflags = [
- "-X gitlab.com/gitlab-org/fleeting/nesting.NAME=nesting"
- "-X gitlab.com/gitlab-org/fleeting/nesting.VERSION=v${version}"
- "-X gitlab.com/gitlab-org/fleeting/nesting.REVISION=${src.rev}"
- ];
-
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_15 ];
+ # Needed for "nesting version" to not show "dev".
+ #
+ # https://gitlab.com/gitlab-org/fleeting/nesting/-/blob/v0.3.0/Makefile?ref_type=tags#L22-24
+ ldflags =
+ let
+ ldflagsPackageVariablePrefix = "gitlab.com/gitlab-org/fleeting/nesting";
+ in
+ [
+ "-X ${ldflagsPackageVariablePrefix}.NAME=nesting"
+ "-X ${ldflagsPackageVariablePrefix}.VERSION=${finalAttrs.version}"
+ "-X ${ldflagsPackageVariablePrefix}.REFERENCE=v${finalAttrs.version}"
+ ];
+
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];
@@ -57,4 +58,4 @@ buildGoModule rec {
"x86_64-darwin"
];
};
-}
+})
diff --git a/pkgs/by-name/oa/oama/0001-Downgrade-cabal-version-for-ghc-9.6-compat.patch b/pkgs/by-name/oa/oama/0001-Downgrade-cabal-version-for-ghc-9.6-compat.patch
new file mode 100644
index 000000000000..1e2a4150f0ab
--- /dev/null
+++ b/pkgs/by-name/oa/oama/0001-Downgrade-cabal-version-for-ghc-9.6-compat.patch
@@ -0,0 +1,22 @@
+From d6d43789bf5af99c9c18f4c88e6a6751bdcacbce Mon Sep 17 00:00:00 2001
+From: Nick Hu
+Date: Wed, 16 Apr 2025 15:18:02 +0100
+Subject: [PATCH] Downgrade cabal-version for ghc 9.6 compat
+
+---
+ oama.cabal | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/oama.cabal b/oama.cabal
+index 658c051..4d0c428 100644
+--- a/oama.cabal
++++ b/oama.cabal
+@@ -1,4 +1,4 @@
+-cabal-version: 3.12
++cabal-version: 3.8
+ name: oama
+ version: 0.19.0
+ license: BSD-3-Clause
+--
+2.48.1
+
diff --git a/pkgs/by-name/oa/oama/generated-package.nix b/pkgs/by-name/oa/oama/generated-package.nix
index f024cc98466d..3385f05bf7a6 100644
--- a/pkgs/by-name/oa/oama/generated-package.nix
+++ b/pkgs/by-name/oa/oama/generated-package.nix
@@ -10,6 +10,7 @@
fetchgit,
hsyslog,
http-conduit,
+ http-types,
lib,
mtl,
network,
@@ -30,11 +31,11 @@
}:
mkDerivation {
pname = "oama";
- version = "0.14";
+ version = "0.19.0";
src = fetchgit {
url = "https://github.com/pdobsan/oama.git";
- sha256 = "1hdhkc6hh4nvx31vkaii7hd2rxlwqrsvr6i1i0a9r1xlda05ffq0";
- rev = "4e1ffd3001034771d284678f0160060c1871707c";
+ sha256 = "1nrgpnh76fcmkdw1j3ha5cam7bnxkgfns2plj8609qv0v0swmj4s";
+ rev = "3eef17b7e290dfced252375a13bc8dd46849adf0";
fetchSubmodules = true;
};
isLibrary = true;
@@ -47,6 +48,7 @@ mkDerivation {
directory
hsyslog
http-conduit
+ http-types
mtl
network
network-uri
@@ -72,6 +74,7 @@ mkDerivation {
directory
hsyslog
http-conduit
+ http-types
mtl
network
network-uri
diff --git a/pkgs/by-name/oa/oama/package.nix b/pkgs/by-name/oa/oama/package.nix
index 73a275f431e0..0e4f99ad3d1e 100644
--- a/pkgs/by-name/oa/oama/package.nix
+++ b/pkgs/by-name/oa/oama/package.nix
@@ -8,6 +8,7 @@ let
inherit (haskell.lib.compose) overrideCabal justStaticExecutables;
overrides = {
+ patches = [ ./0001-Downgrade-cabal-version-for-ghc-9.6-compat.patch ];
description = "OAuth credential MAnager";
homepage = "https://github.com/pdobsan/oama";
maintainers = with lib.maintainers; [ aidalgol ];
diff --git a/pkgs/by-name/oa/oama/update.sh b/pkgs/by-name/oa/oama/update.sh
index 60d1c74cbca1..45af4b99fe59 100755
--- a/pkgs/by-name/oa/oama/update.sh
+++ b/pkgs/by-name/oa/oama/update.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env nix-shell
-#!nix-shell -i bash -p cabal2nix curl jq nixfmt-rfc-style
+#!nix-shell -i bash -p haskell.packages.ghc910.cabal2nix nix-prefetch-git curl jq nixfmt-rfc-style
set -euo pipefail
diff --git a/pkgs/by-name/op/openmolcas/nevpt2.patch b/pkgs/by-name/op/openmolcas/nevpt2.patch
new file mode 100644
index 000000000000..0033a17af196
--- /dev/null
+++ b/pkgs/by-name/op/openmolcas/nevpt2.patch
@@ -0,0 +1,22 @@
+diff --git a/src/gctime.c b/src/gctime.c
+index 34fcb6f..832459c 100644
+--- a/src/gctime.c
++++ b/src/gctime.c
+@@ -1,14 +1,15 @@
++#include
+ typedef long f77_int; /* Fortran integer type */
+ typedef char * f77_char; /* Fortran character argument */
+ #define CH_F2C(X) ((char *) (X)) /* How to get char ptr from F77 argument */
+-gctime (fstr, lstr) f77_char *fstr; int lstr; {
++int gctime (fstr, lstr) f77_char *fstr; int lstr; {
+ long time(), t;
+ char *ctime();
+ t = time ( (long *) 0);
+ strcpy(CH_F2C(fstr),ctime(&t));
+ return (0);
+ }
+-gctime_(fstr, lstr) f77_char *fstr; int lstr; {
++int gctime_(fstr, lstr) f77_char *fstr; int lstr; {
+ long time(), t;
+ char *ctime();
+ t = time ( (long *) 0);
diff --git a/pkgs/by-name/op/openmolcas/openblasPath.patch b/pkgs/by-name/op/openmolcas/openblasPath.patch
deleted file mode 100644
index e47adcc3e9a3..000000000000
--- a/pkgs/by-name/op/openmolcas/openblasPath.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 276ae4e2..db13e6e3 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -1507,7 +1507,6 @@ if (LINALG STREQUAL "OpenBLAS")
- NAMES openblas
- PATHS ${OPENBLASROOT}
- PATH_SUFFIXES lib
-- NO_DEFAULT_PATH
- )
-
- if (NOT LIBOPENBLAS)
diff --git a/pkgs/by-name/op/openmolcas/package.nix b/pkgs/by-name/op/openmolcas/package.nix
index 35d244cec9a0..87e27a8a390a 100644
--- a/pkgs/by-name/op/openmolcas/package.nix
+++ b/pkgs/by-name/op/openmolcas/package.nix
@@ -7,6 +7,7 @@
gfortran,
perl,
blas-ilp64,
+ lapack-ilp64,
hdf5-cpp,
python3,
texliveMinimal,
@@ -16,7 +17,7 @@
gsl,
boost,
autoPatchelfHook,
- enableQcmaquis ? false,
+ enableQcmaquis ? true,
# Note that the CASPT2 module is broken with MPI
# See https://gitlab.com/Molcas/OpenMolcas/-/issues/169
enableMpi ? false,
@@ -25,11 +26,7 @@
}:
assert blas-ilp64.isILP64;
-assert lib.elem blas-ilp64.passthru.implementation [
- "openblas"
- "mkl"
-];
-assert enableQcmaquis -> lib.elem blas-ilp64.passthru.implementation "mkl";
+assert lapack-ilp64.isILP64;
let
python = python3.withPackages (
@@ -46,30 +43,43 @@ let
rev = "release-3.1.4"; # Must match tag in cmake/custom/qcmaquis.cmake
hash = "sha256-vhC5k+91IPFxdCi5oYt1NtF9W08RxonJjPpA0ls4I+o=";
};
- nevtp2Src = fetchFromGitHub {
- owner = "qcscine";
- repo = "nevpt2";
- rev = "e1484fd"; # Must match tag in cmake/custom/nevpt2.cmake
- hash = "sha256-Vl+FhwhJBbD/7U2CwsYE9BClSQYLJ8DKXV9EXxQUmz0=";
+
+ # NEVPT2 sources must be patched to be valid C code in gctime.c
+ nevpt2Src = stdenv.mkDerivation {
+ pname = "nevpt2-src";
+ version = "unstable";
+ phases = [
+ "unpackPhase"
+ "patchPhase"
+ "installPhase"
+ ];
+ src = fetchFromGitHub {
+ owner = "qcscine";
+ repo = "nevpt2";
+ rev = "e1484fd"; # Must match tag in cmake/custom/nevpt2.cmake
+ hash = "sha256-Vl+FhwhJBbD/7U2CwsYE9BClSQYLJ8DKXV9EXxQUmz0=";
+ };
+ patches = [ ./nevpt2.patch ];
+ installPhase = ''
+ mkdir $out
+ cp -r * $out/.
+ '';
};
in
stdenv.mkDerivation rec {
pname = "openmolcas";
- version = "24.10";
+ version = "25.02";
src = fetchFromGitLab {
owner = "Molcas";
repo = "OpenMolcas";
rev = "v${version}";
- hash = "sha256-LXxr/xqBHG7a0rOBrb8IMZ4IjZak3NsBw40Qf+z1fic=";
+ hash = "sha256-Ty7C7zj1lQixuUzeKLcwQCmcPexZXtIGDzp1wUMKDi0=";
};
patches = [
- # Required to handle openblas multiple outputs
- ./openblasPath.patch
-
- # Required for a local QCMaquis build
+ # Required for a local QCMaquis build. Also sanitises QCMaquis BLAS/LAPACK handling
./qcmaquis.patch
];
@@ -83,7 +93,7 @@ stdenv.mkDerivation rec {
--subst-var-by "qcmaquis_src_url" "file://${qcmaquisSrc}"
substituteInPlace cmake/custom/nevpt2.cmake \
- --subst-var-by "nevpt2_src_url" "file://${nevtp2Src}"
+ --subst-var-by "nevpt2_src_url" "file://${nevpt2Src}"
'';
nativeBuildInputs = [
@@ -97,13 +107,14 @@ stdenv.mkDerivation rec {
buildInputs =
[
- blas-ilp64.passthru.provider
hdf5-cpp
python
armadillo
libxc
gsl.dev
boost
+ blas-ilp64
+ lapack-ilp64
]
++ lib.optionals enableMpi [
mpi
@@ -112,38 +123,31 @@ stdenv.mkDerivation rec {
passthru = lib.optionalAttrs enableMpi { inherit mpi; };
- cmakeFlags =
- [
- "-DOPENMP=ON"
- "-DTOOLS=ON"
- "-DHDF5=ON"
- "-DFDE=ON"
- "-DEXTERNAL_LIBXC=${lib.getDev libxc}"
- (lib.strings.cmakeBool "DMRG" enableQcmaquis)
- (lib.strings.cmakeBool "NEVPT2" enableQcmaquis)
- "-DCMAKE_SKIP_BUILD_RPATH=ON"
- (lib.strings.cmakeBool "BUILD_STATIC_LIBS" stdenv.hostPlatform.isStatic)
- (lib.strings.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic))
- ]
- ++ lib.optionals (blas-ilp64.passthru.implementation == "openblas") [
- "-DOPENBLASROOT=${blas-ilp64.passthru.provider.dev}"
- "-DLINALG=OpenBLAS"
- ]
- ++ lib.optionals (blas-ilp64.passthru.implementation == "mkl") [
- "-DMKLROOT=${blas-ilp64.passthru.provider}"
- "-DLINALG=MKL"
- ]
- ++ lib.optionals enableMpi [
- "-DGA=ON"
- "-DMPI=ON"
- ];
-
- preConfigure = lib.optionalString enableMpi ''
- export GAROOT=${globalarrays};
- '';
+ preConfigure =
+ ''
+ cmakeFlagsArray+=(
+ "-DOPENMP=ON"
+ "-DTOOLS=ON"
+ "-DHDF5=ON"
+ "-DFDE=ON"
+ "-DEXTERNAL_LIBXC=${lib.getDev libxc}"
+ ${lib.strings.cmakeBool "DMRG" enableQcmaquis}
+ ${lib.strings.cmakeBool "NEVPT2" enableQcmaquis}
+ "-DCMAKE_SKIP_BUILD_RPATH=ON"
+ ${lib.strings.cmakeBool "BUILD_STATIC_LIBS" stdenv.hostPlatform.isStatic}
+ ${lib.strings.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic)}
+ "-DLINALG=Manual"
+ "-DLINALG_LIBRARIES=-lblas -llapack"
+ ${lib.strings.cmakeBool "DGA" enableMpi}
+ ${lib.strings.cmakeBool "MPI" enableMpi}
+ )
+ ''
+ + lib.optionalString enableMpi ''
+ export GAROOT=${globalarrays};
+ '';
+ # The Makefile will install pymolcas during the build grrr.
postConfigure = ''
- # The Makefile will install pymolcas during the build grrr.
mkdir -p $out/bin
export PATH=$PATH:$out/bin
'';
@@ -158,8 +162,8 @@ stdenv.mkDerivation rec {
# removed by autopatchelf
noAuditTmpdir = true;
+ # Wrong store path in shebang (bare Python, no Python pkgs), force manual re-patching
postFixup = ''
- # Wrong store path in shebang (bare Python, no Python pkgs), force manual re-patching
for exe in $(find $out/bin/ -type f -name "*.py"); do
sed -i "1s:.*:#!${python}/bin/python:" "$exe"
done
diff --git a/pkgs/by-name/op/openmolcas/qcmaquis.patch b/pkgs/by-name/op/openmolcas/qcmaquis.patch
index c388f699a1cc..c4b5261a6cf6 100644
--- a/pkgs/by-name/op/openmolcas/qcmaquis.patch
+++ b/pkgs/by-name/op/openmolcas/qcmaquis.patch
@@ -45,3 +45,58 @@ index 5fd1ef207..8d2957c6e 100644
SOURCE_SUBDIR dmrg
CMAKE_ARGS ${EP_CMAKE_ARGS}
CMAKE_CACHE_ARGS ${EP_CMAKE_CACHE_ARGS}
+diff --git a/cmake/custom/qcmaquis.cmake b/cmake/custom/qcmaquis.cmake
+index 5fd1ef207..4291ec3d7 100644
+--- a/cmake/custom/qcmaquis.cmake
++++ b/cmake/custom/qcmaquis.cmake
+@@ -94,47 +94,9 @@ if (NOT MAQUIS_DMRG_FOUND) # Does the opposite work?
+ )
+ endif (BOOST_ROOT)
+
+- if (LINALG STREQUAL "Manual")
+- target_files (LINALG_LIBRARIES_FILES ${LINALG_LIBRARIES})
+- list (APPEND LINALG_LIBRARIES_FILES ${CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES})
+- string (REPLACE ";" '\' LINALG_LIBRARIES_FILES "${LINALG_LIBRARIES_FILES}")
+- list (APPEND QCMaquisCMakeArgs
+- "-DBLAS_LAPACK_SELECTOR=manual"
+- "-DMAQUISLapack_LIBRARIES=${LINALG_LIBRARIES_FILES}"
+- )
+- elseif (LINALG STREQUAL "MKL")
+- list (APPEND QCMaquisCMakeArgs
+- "-DBLAS_LAPACK_SELECTOR=mkl_sequential"
+- )
+- elseif (LINALG STREQUAL "OpenBLAS")
+- list (APPEND QCMaquisCMakeArgs
+- "-DBLAS_LAPACK_SELECTOR=openblas"
+- "-DOPENBLASROOT=${OPENBLASROOT}"
+- )
+- elseif (LINALG STREQUAL "Accelerate")
+- list (APPEND QCMaquisCMakeArgs
+- "-DBLAS_LAPACK_SELECTOR:STRING=veclib"
+- )
+- elseif (LINALG STREQUAL "Internal")
+-
+- # To link QCMaquis with Fortran static libraries, we
+- # need to add -lgfortran for gfortran
+- # It seems that ${CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES}
+- # is not suited for this because it contains also other unnecessary libraries
+-
+- # for some reason, the list does not work if the generator expression -lgfortran is not first
+- # but for correct linking it needs to be last AND with a prepended "-l"
+- if (CMAKE_Fortran_COMPILER_ID STREQUAL "GNU")
+- set (Fortran_RUNTIME_LIBRARY "gfortran")
+- endif ()
+-
+- list (APPEND QCMaquisCMakeArgs
+- "-DBLAS_LAPACK_SELECTOR=manual"
+- "-DMAQUISLapack_LIBRARIES=$<$:${Fortran_RUNTIME_LIBRARY}\ >$\ $\ $\ -l$<$:${Fortran_RUNTIME_LIBRARY}>"
+- )
+- else ()
+- message (FATAL_ERROR "LINALG=${LINALG} is not supported by QCMaquis")
+- endif ()
++ list (APPEND QCMaquisCMakeArgs
++ "-DBLAS_LAPACK_SELECTOR=auto"
++ )
+
+ # Enabling source changes to keep ExternalProject happy
+ set (CMAKE_DISABLE_SOURCE_CHANGES OFF
diff --git a/pkgs/by-name/sp/speed-cloudflare-cli/package.nix b/pkgs/by-name/sp/speed-cloudflare-cli/package.nix
new file mode 100644
index 000000000000..a1c1e27b33df
--- /dev/null
+++ b/pkgs/by-name/sp/speed-cloudflare-cli/package.nix
@@ -0,0 +1,38 @@
+{
+ lib,
+ fetchFromGitHub,
+ stdenv,
+ nodejs,
+}:
+stdenv.mkDerivation {
+ pname = "speed-cloudflare-cli";
+ version = "2.0.3-unstable-2024-05-15";
+
+ src = fetchFromGitHub {
+ owner = "KNawm";
+ repo = "speed-cloudflare-cli";
+ rev = "dd301195e7def359a39cceeba16b1c0bedac8f5d";
+ sha256 = "sha256-kxLeQUdJbkmApf5Af3Mgd3WvS3GhXXOIvA4gNB55TGM=";
+ };
+
+ nativeBuildInputs = [ nodejs ];
+
+ installPhase = ''
+ mkdir -p $out/bin
+
+ install -Dm755 $src/cli.js $out/bin/speed-cloudflare-cli
+ install -Dm644 $src/chalk.js $out/bin/chalk.js
+ install -Dm644 $src/stats.js $out/bin/stats.js
+
+ patchShebangs $out/bin/speed-cloudflare-cli
+ '';
+
+ meta = {
+ description = "Measure the speed and consistency of your internet connection using speed.cloudflare.com";
+ homepage = "https://github.com/KNawm/speed-cloudflare-cli";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ TheColorman ];
+ mainProgram = "speed-cloudflare-cli";
+ inherit (nodejs.meta) platforms;
+ };
+}
diff --git a/pkgs/by-name/sp/spider/package.nix b/pkgs/by-name/sp/spider/package.nix
index 9314b3a2a3bf..a9c189133d9b 100644
--- a/pkgs/by-name/sp/spider/package.nix
+++ b/pkgs/by-name/sp/spider/package.nix
@@ -14,17 +14,17 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "spider";
- version = "2.36.2";
+ version = "2.36.34";
src = fetchFromGitHub {
owner = "spider-rs";
repo = "spider";
tag = "v${finalAttrs.version}";
- hash = "sha256-Os94Q8RDaKc3jzir63nZ8dWgPwPZHxnvOZg2l/4v5EE=";
+ hash = "sha256-gdjXTIUeVMjjRq/MfYuvISVt9lFXfIewF6oZ/a46mUE=";
};
useFetchCargoVendor = true;
- cargoHash = "sha256-v5zz9WLj2aLRUHJScVSFzoQhyOqExkN03j3N47f3lgA=";
+ cargoHash = "sha256-gb+WwxiPBoX2QUuRNmOq1J/q0TnmFvmimBAhZ4+It+E=";
nativeBuildInputs = [
pkg-config
diff --git a/pkgs/by-name/su/subfont/package-lock.json b/pkgs/by-name/su/subfont/package-lock.json
new file mode 100644
index 000000000000..f3403c5562a7
--- /dev/null
+++ b/pkgs/by-name/su/subfont/package-lock.json
@@ -0,0 +1,12562 @@
+{
+ "name": "subfont",
+ "version": "7.2.1",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "subfont",
+ "version": "7.2.1",
+ "license": "MIT",
+ "dependencies": {
+ "@gustavnikolaj/async-main-wrap": "^3.0.1",
+ "@hookun/parse-animation-shorthand": "^0.1.5",
+ "assetgraph": "^7.8.1",
+ "browserslist": "^4.13.0",
+ "css-font-parser": "^2.0.0",
+ "css-font-weight-names": "^0.2.1",
+ "css-list-helpers": "^2.0.0",
+ "font-snapper": "^1.2.0",
+ "font-tracer": "^3.7.0",
+ "fontverter": "^2.0.0",
+ "gettemporaryfilepath": "^1.0.1",
+ "harfbuzzjs": "^0.3.3",
+ "lines-and-columns": "^1.1.6",
+ "lodash": "^4.17.15",
+ "memoizesync": "^1.1.1",
+ "postcss": "^8.3.11",
+ "postcss-value-parser": "^4.0.2",
+ "pretty-bytes": "^5.1.0",
+ "puppeteer-core": "^19.8.5",
+ "specificity": "^0.4.1",
+ "subset-font": "^2.3.0",
+ "urltools": "^0.4.1",
+ "yargs": "^15.4.0"
+ },
+ "bin": {
+ "subfont": "lib/cli.js"
+ },
+ "devDependencies": {
+ "combos": "^0.2.0",
+ "coveralls": "^3.0.9",
+ "css-generators": "^0.2.0",
+ "eslint": "^7.4.0",
+ "eslint-config-prettier": "^6.7.0",
+ "eslint-config-standard": "^14.0.0",
+ "eslint-plugin-import": "^2.22.0",
+ "eslint-plugin-mocha": "^7.0.1",
+ "eslint-plugin-node": "^11.1.0",
+ "eslint-plugin-promise": "^4.0.1",
+ "eslint-plugin-standard": "^4.0.0",
+ "html-generators": "^1.0.3",
+ "httpception": "^3.0.0",
+ "magicpen-prism": "^3.0.2",
+ "mocha": "^8.0.1",
+ "nyc": "^15.1.0",
+ "offline-github-changelog": "^1.6.1",
+ "prettier": "~2.3.0",
+ "proxyquire": "^2.1.1",
+ "puppeteer": "^19.8.5",
+ "sinon": "^9.0.2",
+ "unexpected": "^11.8.1",
+ "unexpected-check": "^2.3.1",
+ "unexpected-resemble": "^5.0.1",
+ "unexpected-set": "^2.0.1",
+ "unexpected-sinon": "^10.11.2"
+ },
+ "engines": {
+ "node": ">=10.0.0"
+ }
+ },
+ "node_modules/@ampproject/remapping": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
+ "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/code-frame": {
+ "version": "7.12.11",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
+ "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/highlight": "^7.10.4"
+ }
+ },
+ "node_modules/@babel/compat-data": {
+ "version": "7.26.8",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz",
+ "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/core": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.10.tgz",
+ "integrity": "sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@ampproject/remapping": "^2.2.0",
+ "@babel/code-frame": "^7.26.2",
+ "@babel/generator": "^7.26.10",
+ "@babel/helper-compilation-targets": "^7.26.5",
+ "@babel/helper-module-transforms": "^7.26.0",
+ "@babel/helpers": "^7.26.10",
+ "@babel/parser": "^7.26.10",
+ "@babel/template": "^7.26.9",
+ "@babel/traverse": "^7.26.10",
+ "@babel/types": "^7.26.10",
+ "convert-source-map": "^2.0.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.2",
+ "json5": "^2.2.3",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/babel"
+ }
+ },
+ "node_modules/@babel/core/node_modules/@babel/code-frame": {
+ "version": "7.26.2",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
+ "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.25.9",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/core/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@babel/generator": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.10.tgz",
+ "integrity": "sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.26.10",
+ "@babel/types": "^7.26.10",
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25",
+ "jsesc": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets": {
+ "version": "7.26.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz",
+ "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/compat-data": "^7.26.5",
+ "@babel/helper-validator-option": "^7.25.9",
+ "browserslist": "^4.24.0",
+ "lru-cache": "^5.1.1",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets/node_modules/yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@babel/helper-module-imports": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
+ "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.25.9",
+ "@babel/types": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-transforms": {
+ "version": "7.26.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz",
+ "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.25.9",
+ "@babel/helper-validator-identifier": "^7.25.9",
+ "@babel/traverse": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-string-parser": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
+ "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
+ "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-option": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz",
+ "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helpers": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.10.tgz",
+ "integrity": "sha512-UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/template": "^7.26.9",
+ "@babel/types": "^7.26.10"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/highlight": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.9.tgz",
+ "integrity": "sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.25.9",
+ "chalk": "^2.4.2",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.10.tgz",
+ "integrity": "sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.26.10"
+ },
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/runtime": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.10.tgz",
+ "integrity": "sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==",
+ "license": "MIT",
+ "dependencies": {
+ "regenerator-runtime": "^0.14.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/template": {
+ "version": "7.26.9",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz",
+ "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.26.2",
+ "@babel/parser": "^7.26.9",
+ "@babel/types": "^7.26.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/template/node_modules/@babel/code-frame": {
+ "version": "7.26.2",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
+ "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.25.9",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/traverse": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.10.tgz",
+ "integrity": "sha512-k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.26.2",
+ "@babel/generator": "^7.26.10",
+ "@babel/parser": "^7.26.10",
+ "@babel/template": "^7.26.9",
+ "@babel/types": "^7.26.10",
+ "debug": "^4.3.1",
+ "globals": "^11.1.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/traverse/node_modules/@babel/code-frame": {
+ "version": "7.26.2",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
+ "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.25.9",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/traverse/node_modules/globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.10.tgz",
+ "integrity": "sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-string-parser": "^7.25.9",
+ "@babel/helper-validator-identifier": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@eslint/eslintrc": {
+ "version": "0.4.3",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz",
+ "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ajv": "^6.12.4",
+ "debug": "^4.1.1",
+ "espree": "^7.3.0",
+ "globals": "^13.9.0",
+ "ignore": "^4.0.6",
+ "import-fresh": "^3.2.1",
+ "js-yaml": "^3.13.1",
+ "minimatch": "^3.0.4",
+ "strip-json-comments": "^3.1.1"
+ },
+ "engines": {
+ "node": "^10.12.0 || >=12.0.0"
+ }
+ },
+ "node_modules/@gustavnikolaj/async-main-wrap": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/@gustavnikolaj/async-main-wrap/-/async-main-wrap-3.0.1.tgz",
+ "integrity": "sha512-FHh1Tz5Jk5xJphcYpFUMsxCTO+XbgQyCorlbztqBsYRnu5hmuoV/0Q+dJlcOtQCG6cJ5/EHX+VrSsoLBoaTJvQ==",
+ "license": "ISC"
+ },
+ "node_modules/@hapi/address": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz",
+ "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==",
+ "deprecated": "Moved to 'npm install @sideway/address'",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/@hapi/bourne": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz",
+ "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==",
+ "deprecated": "This version has been deprecated and is no longer supported or maintained",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/@hapi/hoek": {
+ "version": "8.5.1",
+ "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz",
+ "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==",
+ "deprecated": "This version has been deprecated and is no longer supported or maintained",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/@hapi/joi": {
+ "version": "15.1.1",
+ "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz",
+ "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==",
+ "deprecated": "Switch to 'npm install joi'",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@hapi/address": "2.x.x",
+ "@hapi/bourne": "1.x.x",
+ "@hapi/hoek": "8.x.x",
+ "@hapi/topo": "3.x.x"
+ }
+ },
+ "node_modules/@hapi/topo": {
+ "version": "3.1.6",
+ "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz",
+ "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==",
+ "deprecated": "This version has been deprecated and is no longer supported or maintained",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@hapi/hoek": "^8.3.0"
+ }
+ },
+ "node_modules/@hookun/parse-animation-shorthand": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/@hookun/parse-animation-shorthand/-/parse-animation-shorthand-0.1.5.tgz",
+ "integrity": "sha512-/fnwYK9Tgllhtv2EpwZZVbwhCokAoGtfEz23mZtjHMHvih4YeiAeUuVpyjGrTGf6j6ymgrCxGwUiAkAfDsmUjw==",
+ "license": "Apache-2.0"
+ },
+ "node_modules/@humanwhocodes/config-array": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz",
+ "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==",
+ "deprecated": "Use @eslint/config-array instead",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@humanwhocodes/object-schema": "^1.2.0",
+ "debug": "^4.1.1",
+ "minimatch": "^3.0.4"
+ },
+ "engines": {
+ "node": ">=10.10.0"
+ }
+ },
+ "node_modules/@humanwhocodes/object-schema": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
+ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
+ "deprecated": "Use @eslint/object-schema instead",
+ "dev": true,
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/@istanbuljs/load-nyc-config": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
+ "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "camelcase": "^5.3.1",
+ "find-up": "^4.1.0",
+ "get-package-type": "^0.1.0",
+ "js-yaml": "^3.13.1",
+ "resolve-from": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
+ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@istanbuljs/schema": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
+ "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@jridgewell/gen-mapping": {
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
+ "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/set-array": "^1.2.1",
+ "@jridgewell/sourcemap-codec": "^1.4.10",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/resolve-uri": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/set-array": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
+ "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/source-map": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz",
+ "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25"
+ }
+ },
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
+ "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
+ "license": "MIT"
+ },
+ "node_modules/@jridgewell/trace-mapping": {
+ "version": "0.3.25",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
+ "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
+ }
+ },
+ "node_modules/@puppeteer/browsers": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-0.5.0.tgz",
+ "integrity": "sha512-Uw6oB7VvmPRLE4iKsjuOh8zgDabhNX67dzo8U/BB0f9527qx+4eeUs+korU98OhG5C4ubg7ufBgVi63XYwS6TQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "debug": "4.3.4",
+ "extract-zip": "2.0.1",
+ "https-proxy-agent": "5.0.1",
+ "progress": "2.0.3",
+ "proxy-from-env": "1.1.0",
+ "tar-fs": "2.1.1",
+ "unbzip2-stream": "1.4.3",
+ "yargs": "17.7.1"
+ },
+ "bin": {
+ "browsers": "lib/cjs/main-cli.js"
+ },
+ "engines": {
+ "node": ">=14.1.0"
+ },
+ "peerDependencies": {
+ "typescript": ">= 4.7.4"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@puppeteer/browsers/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@puppeteer/browsers/node_modules/cliui": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@puppeteer/browsers/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/@puppeteer/browsers/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "license": "MIT"
+ },
+ "node_modules/@puppeteer/browsers/node_modules/debug": {
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.1.2"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@puppeteer/browsers/node_modules/ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "license": "MIT"
+ },
+ "node_modules/@puppeteer/browsers/node_modules/wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/@puppeteer/browsers/node_modules/y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@puppeteer/browsers/node_modules/yargs": {
+ "version": "17.7.1",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz",
+ "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==",
+ "license": "MIT",
+ "dependencies": {
+ "cliui": "^8.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.3",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^21.1.1"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@puppeteer/browsers/node_modules/yargs-parser": {
+ "version": "21.1.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@rtsao/scc": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz",
+ "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@sidvind/better-ajv-errors": {
+ "version": "0.6.10",
+ "resolved": "https://registry.npmjs.org/@sidvind/better-ajv-errors/-/better-ajv-errors-0.6.10.tgz",
+ "integrity": "sha512-vPv8ks6J1KQW1LPYgxmANxcHniE6LFuekxNpcoUUkotJ2srxP4qXZ+y9qpo5LAXhnLoNP0AH8cninimK68gS6A==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@babel/code-frame": "^7.0.0",
+ "chalk": "^2.4.1",
+ "json-to-ast": "^2.0.3",
+ "jsonpointer": "^4.0.1",
+ "leven": "^3.1.0"
+ },
+ "engines": {
+ "node": ">= 8.0"
+ },
+ "peerDependencies": {
+ "ajv": "4.11.8 - 6"
+ }
+ },
+ "node_modules/@sinonjs/commons": {
+ "version": "1.8.6",
+ "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz",
+ "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "type-detect": "4.0.8"
+ }
+ },
+ "node_modules/@sinonjs/fake-timers": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz",
+ "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@sinonjs/commons": "^1.7.0"
+ }
+ },
+ "node_modules/@sinonjs/samsam": {
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-5.3.1.tgz",
+ "integrity": "sha512-1Hc0b1TtyfBu8ixF/tpfSHTVWKwCBLY4QJbkgnE7HcwyvT2xArDxb4K7dMgqRm3szI+LJbzmW/s4xxEhv6hwDg==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@sinonjs/commons": "^1.6.0",
+ "lodash.get": "^4.4.2",
+ "type-detect": "^4.0.8"
+ }
+ },
+ "node_modules/@sinonjs/text-encoding": {
+ "version": "0.7.3",
+ "resolved": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.3.tgz",
+ "integrity": "sha512-DE427ROAphMQzU4ENbliGYrBSYPXF+TtLg9S8vzeA+OF4ZKzoDdzfL8sxuMUGS/lgRhM6j1URSk9ghf7Xo1tyA==",
+ "dev": true,
+ "license": "(Unlicense OR Apache-2.0)"
+ },
+ "node_modules/@tootallnate/once": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
+ "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/@trysound/sax": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz",
+ "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/@types/json5": {
+ "version": "0.0.29",
+ "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
+ "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/node": {
+ "version": "22.13.10",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.10.tgz",
+ "integrity": "sha512-I6LPUvlRH+O6VRUqYOcMudhaIdUVWfsjnZavnsraHvpBwaEyMN29ry+0UVJhImYL16xsscu0aske3yA+uPOWfw==",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "undici-types": "~6.20.0"
+ }
+ },
+ "node_modules/@types/normalize-package-data": {
+ "version": "2.4.4",
+ "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz",
+ "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==",
+ "license": "MIT"
+ },
+ "node_modules/@types/yauzl": {
+ "version": "2.10.3",
+ "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz",
+ "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@ungap/promise-all-settled": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz",
+ "integrity": "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/abab": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz",
+ "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==",
+ "deprecated": "Use your platform's native atob() and btoa() methods instead",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/acorn": {
+ "version": "8.14.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz",
+ "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==",
+ "license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/acorn-globals": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
+ "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
+ "license": "MIT",
+ "dependencies": {
+ "acorn": "^7.1.1",
+ "acorn-walk": "^7.1.1"
+ }
+ },
+ "node_modules/acorn-globals/node_modules/acorn": {
+ "version": "7.4.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
+ "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
+ "license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/acorn-jsx": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ }
+ },
+ "node_modules/acorn-walk": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
+ "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/agent-base": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 6.0.0"
+ }
+ },
+ "node_modules/aggregate-error": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
+ "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "clean-stack": "^2.0.0",
+ "indent-string": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/ansi-colors": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz",
+ "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/ansi-escapes": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "type-fest": "^0.21.3"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/ansi-escapes/node_modules/type-fest": {
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^1.9.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/anymatch": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/append-transform": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz",
+ "integrity": "sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "default-require-extensions": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/archy": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz",
+ "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "node_modules/array-buffer-byte-length": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz",
+ "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "is-array-buffer": "^3.0.5"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array-changes": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/array-changes/-/array-changes-3.0.1.tgz",
+ "integrity": "sha512-UYXV+qUaTKJO3GUBVfD6b9Mu7wUzDvpfovZKtbxNJApwRUifgrJMidvE+/rbqV3wCffly5HXcbOW3/7shmmEag==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "arraydiff-papandreou": "0.1.1-patch1"
+ }
+ },
+ "node_modules/array-changes-async": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/array-changes-async/-/array-changes-async-3.0.1.tgz",
+ "integrity": "sha512-WNHLhMOTzntixkBxNm/MiWCNKuC4FMYXk6DKuzZUbkWXAe0Xomwv40SEUicfOuHHtW7Ue661Mc5AJA0AOfqApg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "arraydiff-async": "0.2.0"
+ }
+ },
+ "node_modules/array-find-index": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
+ "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/array-includes": {
+ "version": "3.1.8",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz",
+ "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.4",
+ "is-string": "^1.0.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.findlastindex": {
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz",
+ "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.4",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.9",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "es-shim-unscopables": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.flat": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz",
+ "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.flatmap": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz",
+ "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/arraybuffer.prototype.slice": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz",
+ "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==",
+ "license": "MIT",
+ "dependencies": {
+ "array-buffer-byte-length": "^1.0.1",
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6",
+ "is-array-buffer": "^3.0.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/arraydiff-async": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/arraydiff-async/-/arraydiff-async-0.2.0.tgz",
+ "integrity": "sha512-i5QgybCLzbTyGlbdOd630AFwpradPgcbsdJ2XoXmgwaQ05lUC44Jn8Gs3EHklHVFoA6grV7ssJ9ExdHBu1C/nw==",
+ "dev": true
+ },
+ "node_modules/arraydiff-papandreou": {
+ "version": "0.1.1-patch1",
+ "resolved": "https://registry.npmjs.org/arraydiff-papandreou/-/arraydiff-papandreou-0.1.1-patch1.tgz",
+ "integrity": "sha512-QPi68m5STvfROKohFfZb/yWH60UVdmbvCB2SJqcEiitriXRlrAU8Rhxc2PiU/x+htvdPW+jYlN1bhwhEOut9qg==",
+ "dev": true
+ },
+ "node_modules/arrify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
+ "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/asn1": {
+ "version": "0.2.6",
+ "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz",
+ "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "safer-buffer": "~2.1.0"
+ }
+ },
+ "node_modules/assert-plus": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+ "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8"
+ }
+ },
+ "node_modules/assetgraph": {
+ "version": "7.12.0",
+ "resolved": "https://registry.npmjs.org/assetgraph/-/assetgraph-7.12.0.tgz",
+ "integrity": "sha512-U6g7Y4QsYg45PwZB8t105acX9kGFR0I4QH1JZswhe36ijwg3kUK0zNRBSWOM4faeGN0prX04TL8OK16Dq7Iejg==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "acorn": "^8.0.4",
+ "acorn-jsx": "^5.0.1",
+ "bluebird": "^3.5.1",
+ "chalk": "^2.0.1",
+ "common-path-prefix": "^1.0.0",
+ "createerror": "^1.3.0",
+ "cssnano": "^5.1.4",
+ "data-urls": "^1.0.0",
+ "domspace": "^1.2.1",
+ "esanimate": "^1.1.0",
+ "escodegen": "^2.0.0",
+ "espurify": "^2.0.1",
+ "estraverse": "^5.2.0",
+ "estraverse-fb": "^1.3.2",
+ "gettemporaryfilepath": "^1.0.0",
+ "glob": "^7.0.5",
+ "html-minifier": "^4.0.0",
+ "imageinfo": "^1.0.4",
+ "jsdom": "^16.5.3",
+ "lines-and-columns": "^1.1.6",
+ "lodash": "^4.17.20",
+ "memoizesync": "1.1.1",
+ "mkdirp": "^0.5.1",
+ "normalizeurl": "^1.0.0",
+ "perfectionist-dfd": "^3.0.0",
+ "postcss": "^8.4.12",
+ "qs": "^6.5.2",
+ "read-pkg-up": "^6.0.0",
+ "repeat-string": "^1.5.4",
+ "schemes": "^1.0.1",
+ "semver": "^6.0.0",
+ "sift": "^7.0.1",
+ "source-map": "~0.6.1",
+ "specificity": "^0.4.0",
+ "teepee": "^2.31.1",
+ "terser": "^5.30.3",
+ "urltools": "^0.4.1",
+ "workbox-build": "^4.3.1"
+ }
+ },
+ "node_modules/astral-regex": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz",
+ "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/async-function": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz",
+ "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/asynckit": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
+ "license": "MIT"
+ },
+ "node_modules/available-typed-arrays": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
+ "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
+ "license": "MIT",
+ "dependencies": {
+ "possible-typed-array-names": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/aws-sign2": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
+ "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/aws4": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.2.tgz",
+ "integrity": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/babel-extract-comments": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz",
+ "integrity": "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==",
+ "license": "MIT",
+ "dependencies": {
+ "babylon": "^6.18.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/babel-plugin-syntax-object-rest-spread": {
+ "version": "6.13.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz",
+ "integrity": "sha512-C4Aq+GaAj83pRQ0EFgTvw5YO6T3Qz2KGrNRwIj9mSoNHVvdZY4KO2uA6HNtNXCw993iSZnckY1aLW8nOi8i4+w==",
+ "license": "MIT"
+ },
+ "node_modules/babel-plugin-transform-object-rest-spread": {
+ "version": "6.26.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz",
+ "integrity": "sha512-ocgA9VJvyxwt+qJB0ncxV8kb/CjfTcECUY4tQ5VT7nP6Aohzobm8CDFaQ5FHdvZQzLmf0sgDxB8iRXZXxwZcyA==",
+ "license": "MIT",
+ "dependencies": {
+ "babel-plugin-syntax-object-rest-spread": "^6.8.0",
+ "babel-runtime": "^6.26.0"
+ }
+ },
+ "node_modules/babel-runtime": {
+ "version": "6.26.0",
+ "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
+ "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==",
+ "license": "MIT",
+ "dependencies": {
+ "core-js": "^2.4.0",
+ "regenerator-runtime": "^0.11.0"
+ }
+ },
+ "node_modules/babel-runtime/node_modules/regenerator-runtime": {
+ "version": "0.11.1",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
+ "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==",
+ "license": "MIT"
+ },
+ "node_modules/babylon": {
+ "version": "6.18.0",
+ "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
+ "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==",
+ "license": "MIT",
+ "bin": {
+ "babylon": "bin/babylon.js"
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "license": "MIT"
+ },
+ "node_modules/base64-js": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/bcrypt-pbkdf": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
+ "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "tweetnacl": "^0.14.3"
+ }
+ },
+ "node_modules/better-ajv-errors": {
+ "version": "0.6.7",
+ "resolved": "https://registry.npmjs.org/better-ajv-errors/-/better-ajv-errors-0.6.7.tgz",
+ "integrity": "sha512-PYgt/sCzR4aGpyNy5+ViSQ77ognMnWq7745zM+/flYO4/Yisdtp9wDQW2IKCyVYPUxQt3E/b5GBSwfhd1LPdlg==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@babel/code-frame": "^7.0.0",
+ "@babel/runtime": "^7.0.0",
+ "chalk": "^2.4.1",
+ "core-js": "^3.2.1",
+ "json-to-ast": "^2.0.3",
+ "jsonpointer": "^4.0.1",
+ "leven": "^3.1.0"
+ },
+ "peerDependencies": {
+ "ajv": "4.11.8 - 6"
+ }
+ },
+ "node_modules/better-ajv-errors/node_modules/core-js": {
+ "version": "3.41.0",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.41.0.tgz",
+ "integrity": "sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/core-js"
+ }
+ },
+ "node_modules/binary-extensions": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/bl": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
+ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
+ "license": "MIT",
+ "dependencies": {
+ "buffer": "^5.5.0",
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.4.0"
+ }
+ },
+ "node_modules/bluebird": {
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
+ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
+ "license": "MIT"
+ },
+ "node_modules/boolbase": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
+ "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==",
+ "license": "ISC"
+ },
+ "node_modules/brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/braces": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fill-range": "^7.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/browser-process-hrtime": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
+ "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/browser-stdout": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz",
+ "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/browserslist": {
+ "version": "4.24.4",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz",
+ "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "caniuse-lite": "^1.0.30001688",
+ "electron-to-chromium": "^1.5.73",
+ "node-releases": "^2.0.19",
+ "update-browserslist-db": "^1.1.1"
+ },
+ "bin": {
+ "browserslist": "cli.js"
+ },
+ "engines": {
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ }
+ },
+ "node_modules/buffer": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.1.13"
+ }
+ },
+ "node_modules/buffer-crc32": {
+ "version": "0.2.13",
+ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
+ "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
+ "license": "MIT",
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/buffer-from": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
+ "license": "MIT"
+ },
+ "node_modules/builtins": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.1.0.tgz",
+ "integrity": "sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "semver": "^7.0.0"
+ }
+ },
+ "node_modules/builtins/node_modules/semver": {
+ "version": "7.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
+ "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/caching-transform": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz",
+ "integrity": "sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "hasha": "^5.0.0",
+ "make-dir": "^3.0.0",
+ "package-hash": "^4.0.0",
+ "write-file-atomic": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/call-bind": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
+ "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
+ "es-define-property": "^1.0.0",
+ "get-intrinsic": "^1.2.4",
+ "set-function-length": "^1.2.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "get-intrinsic": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/callsite": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz",
+ "integrity": "sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ==",
+ "dev": true,
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/camel-case": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz",
+ "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==",
+ "license": "MIT",
+ "dependencies": {
+ "no-case": "^2.2.0",
+ "upper-case": "^1.1.1"
+ }
+ },
+ "node_modules/camelcase": {
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/camelcase-keys": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-4.2.0.tgz",
+ "integrity": "sha512-Ej37YKYbFUI8QiYlvj9YHb6/Z60dZyPJW0Cs8sFilMbd2lP0bw3ylAq9yJkK4lcTA2dID5fG8LjmJYbO7kWb7Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "camelcase": "^4.1.0",
+ "map-obj": "^2.0.0",
+ "quick-lru": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/camelcase-keys/node_modules/camelcase": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz",
+ "integrity": "sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/caniuse-api": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
+ "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.0.0",
+ "caniuse-lite": "^1.0.0",
+ "lodash.memoize": "^4.1.2",
+ "lodash.uniq": "^4.5.0"
+ }
+ },
+ "node_modules/caniuse-lite": {
+ "version": "1.0.30001705",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001705.tgz",
+ "integrity": "sha512-S0uyMMiYvA7CxNgomYBwwwPUnWzFD83f3B1ce5jHUfHTH//QL6hHsreI8RVC5606R4ssqravelYO5TU6t8sEyg==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "CC-BY-4.0"
+ },
+ "node_modules/capitalize": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/capitalize/-/capitalize-2.0.4.tgz",
+ "integrity": "sha512-wcSyiFqXRYyCoqu0o0ekXzJAKCLMkqWS5QWGlgTJFJKwRmI6pzcN2hBl5VPq9RzLW5Uf4FF/V/lcFfjCtVak2w==",
+ "license": "MIT"
+ },
+ "node_modules/caseless": {
+ "version": "0.12.0",
+ "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
+ "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==",
+ "dev": true,
+ "license": "Apache-2.0"
+ },
+ "node_modules/chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/chance": {
+ "version": "1.0.16",
+ "resolved": "https://registry.npmjs.org/chance/-/chance-1.0.16.tgz",
+ "integrity": "sha512-2bgDHH5bVfAXH05SPtjqrsASzZ7h90yCuYT2z4mkYpxxYvJXiIydBFzVieVHZx7wLH1Ag2Azaaej2/zA1XUrNQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/chance-generators": {
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/chance-generators/-/chance-generators-3.5.3.tgz",
+ "integrity": "sha512-8KIqKfuMevyHLp4uHI+m5AMaY1IPo4eYzX7sMV1xr7ulOYNWSTjW5ngB8kNMWHWbpuoVO1MwYonQ+HlBu5fcpQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "chance": "1.0.16"
+ }
+ },
+ "node_modules/character-sets": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/character-sets/-/character-sets-1.0.8.tgz",
+ "integrity": "sha512-li7ydz40WtNT0vPZySSN1I0tW8BL5x37K8rcF2q/jjL4Yi6iOdrDstT2attXXLJWeKMEkyvmsYSFEex5RsfCZQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4.x.x"
+ }
+ },
+ "node_modules/chardet": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
+ "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/chokidar": {
+ "version": "3.5.1",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz",
+ "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "anymatch": "~3.1.1",
+ "braces": "~3.0.2",
+ "glob-parent": "~5.1.0",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.5.0"
+ },
+ "engines": {
+ "node": ">= 8.10.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.1"
+ }
+ },
+ "node_modules/chownr": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
+ "license": "ISC"
+ },
+ "node_modules/chromium-bidi": {
+ "version": "0.4.7",
+ "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.4.7.tgz",
+ "integrity": "sha512-6+mJuFXwTMU6I3vYLs6IL8A1DyQTPjCfIL971X0aMPVGRbGnNfl6i6Cl0NMbxi2bRYLGESt9T2ZIMRM5PAEcIQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "mitt": "3.0.0"
+ },
+ "peerDependencies": {
+ "devtools-protocol": "*"
+ }
+ },
+ "node_modules/clean-css": {
+ "version": "4.2.4",
+ "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz",
+ "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==",
+ "license": "MIT",
+ "dependencies": {
+ "source-map": "~0.6.0"
+ },
+ "engines": {
+ "node": ">= 4.0"
+ }
+ },
+ "node_modules/clean-stack": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
+ "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/cli-cursor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
+ "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "restore-cursor": "^3.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cli-width": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
+ "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/cliui": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
+ "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^6.2.0"
+ }
+ },
+ "node_modules/code-error-fragment": {
+ "version": "0.0.230",
+ "resolved": "https://registry.npmjs.org/code-error-fragment/-/code-error-fragment-0.0.230.tgz",
+ "integrity": "sha512-cadkfKp6932H8UkhzE/gcUqhRMNf8jHzkAN7+5Myabswaghu4xABTgPHDCjW+dBAJxj/SpkTYokpzDqY4pCzQw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "1.1.3"
+ }
+ },
+ "node_modules/color-diff": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/color-diff/-/color-diff-0.1.7.tgz",
+ "integrity": "sha512-Tuh3W2d3LdK3E8BhKltCuESgUva+oluFYqvzHg8a3tu5XzO/a4PF4W8islodUcqtiPgPdkg42PzL2bwtOUaJeQ==",
+ "dev": true,
+ "license": "BSD"
+ },
+ "node_modules/color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
+ "license": "MIT"
+ },
+ "node_modules/colord": {
+ "version": "2.9.3",
+ "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz",
+ "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==",
+ "license": "MIT"
+ },
+ "node_modules/combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "license": "MIT",
+ "dependencies": {
+ "delayed-stream": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/combos": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/combos/-/combos-0.2.0.tgz",
+ "integrity": "sha512-Z6YfvgiTCERWJTj3wQiXamFhssdvz1n4ok447rS330lw3uL72WAx8IvrLU7xiE71uyb5WF8JEP+BWB5KhOoGeg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "license": "MIT"
+ },
+ "node_modules/common-path-prefix": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-1.0.0.tgz",
+ "integrity": "sha512-StWMCZw9nTO+RnxMCcapnQQqeZpaDvCD9+0Rrl8ZphFKWcJPyUGiEl64WoAkA+WJIxwKYzxldhYHU+EW1fQ2mQ==",
+ "license": "ISC"
+ },
+ "node_modules/common-tags": {
+ "version": "1.8.2",
+ "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz",
+ "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/commondir": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
+ "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
+ "license": "MIT"
+ },
+ "node_modules/convert-source-map": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
+ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/core-js": {
+ "version": "2.6.12",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz",
+ "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==",
+ "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.",
+ "hasInstallScript": true,
+ "license": "MIT"
+ },
+ "node_modules/core-util-is": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
+ "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/cosmiconfig": {
+ "version": "8.1.3",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.1.3.tgz",
+ "integrity": "sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "import-fresh": "^3.2.1",
+ "js-yaml": "^4.1.0",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/d-fischer"
+ }
+ },
+ "node_modules/cosmiconfig/node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "dev": true,
+ "license": "Python-2.0"
+ },
+ "node_modules/cosmiconfig/node_modules/js-yaml": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/counteraction": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/counteraction/-/counteraction-1.3.2.tgz",
+ "integrity": "sha512-CtFt/FSa3At/Wm8Hwo022KBSmLlYkvpTjW4B2wqTCKvvTx6ilnteBNmqIjRzGB4EaUmisPrTPYIkJQ1L7gTIdg==",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/coveralls": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/coveralls/-/coveralls-3.1.1.tgz",
+ "integrity": "sha512-+dxnG2NHncSD1NrqbSM3dn/lE57O6Qf/koe9+I7c+wzkqRmEvcp0kgJdxKInzYzkICKkFMZsX3Vct3++tsF9ww==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "js-yaml": "^3.13.1",
+ "lcov-parse": "^1.0.0",
+ "log-driver": "^1.2.7",
+ "minimist": "^1.2.5",
+ "request": "^2.88.2"
+ },
+ "bin": {
+ "coveralls": "bin/coveralls.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/createerror": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/createerror/-/createerror-1.3.0.tgz",
+ "integrity": "sha512-w9UZUtkaGd8MfS7eMG7Sa0lV5vCJghqQfiOnwNVrPhbZScUp5h0jwYoAF933MKlotlG1JAJOCCT3xU6r+SDKNw==",
+ "engines": {
+ "node": ">= 0.2.0"
+ }
+ },
+ "node_modules/cross-fetch": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz",
+ "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==",
+ "license": "MIT",
+ "dependencies": {
+ "node-fetch": "2.6.7"
+ }
+ },
+ "node_modules/cross-spawn": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/css-declaration-sorter": {
+ "version": "6.4.1",
+ "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz",
+ "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==",
+ "license": "ISC",
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ },
+ "peerDependencies": {
+ "postcss": "^8.0.9"
+ }
+ },
+ "node_modules/css-font-parser": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/css-font-parser/-/css-font-parser-2.0.1.tgz",
+ "integrity": "sha512-C4aQOpCmQL/Arl68chQatNh7/Nfyty15kbLNZezGudjcKSqHHVoHQEeb9IJcjgQ6CiurrHZoEt47yce891vjGw==",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/css-font-parser-papandreou": {
+ "version": "0.2.3-patch1",
+ "resolved": "https://registry.npmjs.org/css-font-parser-papandreou/-/css-font-parser-papandreou-0.2.3-patch1.tgz",
+ "integrity": "sha512-yVhlQDjEppcS9a91xPs1x7u3IYNb2HPfTXxsFoNW2Kr2ilqWOqhxpfBxS42yzo1FCu0IGg1vbt8aag9fChCwmA==",
+ "license": "BSD"
+ },
+ "node_modules/css-font-weight-names": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/css-font-weight-names/-/css-font-weight-names-0.2.1.tgz",
+ "integrity": "sha512-2dDc3aYw5yE4IvlJ2Lhz5NGSc2P4lshLd1qImXUyb62r/07/0dr7njHwWlUIoanoTnrENa9tgceUKY5nYtL4pA==",
+ "license": "CC0-1.0"
+ },
+ "node_modules/css-generators": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/css-generators/-/css-generators-0.2.3.tgz",
+ "integrity": "sha512-OrnM55sLIyizZ+pMEc2pSAEceFPCwSJah09Qc26r/ZeiBs7aaDc533CSKi9VNl5aXK0Ln1Wb1NhX9j9uW8S+yg==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "chance-generators": "^3.5.2",
+ "character-sets": "^1.0.8",
+ "css-syntax-parser": "^1.5.1",
+ "html-validate": "3.0.0",
+ "iso-639-1": "^2.1.0",
+ "lodash": "^4.17.15",
+ "mdn-data-papandreou": "2.0.10-patch1",
+ "pegjs": "^0.10.0",
+ "postcss": "^7.0.23"
+ }
+ },
+ "node_modules/css-generators/node_modules/picocolors": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
+ "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/css-generators/node_modules/postcss": {
+ "version": "7.0.39",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
+ "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "picocolors": "^0.2.1",
+ "source-map": "^0.6.1"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ }
+ },
+ "node_modules/css-list-helpers": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/css-list-helpers/-/css-list-helpers-2.0.0.tgz",
+ "integrity": "sha512-9Bj8tZ0jWbAM3u/U6m/boAzAwLPwtjzFvwivr2piSvyVa3K3rChJzQy4RIHkNkKiZCHrEMWDJWtTR8UyVhdDnQ==",
+ "license": "MIT"
+ },
+ "node_modules/css-select": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz",
+ "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "boolbase": "^1.0.0",
+ "css-what": "^6.0.1",
+ "domhandler": "^4.3.1",
+ "domutils": "^2.8.0",
+ "nth-check": "^2.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
+ }
+ },
+ "node_modules/css-syntax-parser": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/css-syntax-parser/-/css-syntax-parser-1.5.1.tgz",
+ "integrity": "sha512-RT1YwEEYVuWsxvMFmcJwGvBTb922OnFoZmzasSfj6vAGUqPvCdWcpUFCUsIk04OPaePZ1QxBYI3hPLDdrZ/RiA==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/css-tree": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz",
+ "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==",
+ "license": "MIT",
+ "dependencies": {
+ "mdn-data": "2.0.14",
+ "source-map": "^0.6.1"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/css-unit-converter": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz",
+ "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==",
+ "license": "MIT"
+ },
+ "node_modules/css-what": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz",
+ "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">= 6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
+ }
+ },
+ "node_modules/cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
+ "license": "MIT",
+ "bin": {
+ "cssesc": "bin/cssesc"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/cssnano": {
+ "version": "5.1.15",
+ "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz",
+ "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==",
+ "license": "MIT",
+ "dependencies": {
+ "cssnano-preset-default": "^5.2.14",
+ "lilconfig": "^2.0.3",
+ "yaml": "^1.10.2"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/cssnano"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/cssnano-preset-default": {
+ "version": "5.2.14",
+ "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz",
+ "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==",
+ "license": "MIT",
+ "dependencies": {
+ "css-declaration-sorter": "^6.3.1",
+ "cssnano-utils": "^3.1.0",
+ "postcss-calc": "^8.2.3",
+ "postcss-colormin": "^5.3.1",
+ "postcss-convert-values": "^5.1.3",
+ "postcss-discard-comments": "^5.1.2",
+ "postcss-discard-duplicates": "^5.1.0",
+ "postcss-discard-empty": "^5.1.1",
+ "postcss-discard-overridden": "^5.1.0",
+ "postcss-merge-longhand": "^5.1.7",
+ "postcss-merge-rules": "^5.1.4",
+ "postcss-minify-font-values": "^5.1.0",
+ "postcss-minify-gradients": "^5.1.1",
+ "postcss-minify-params": "^5.1.4",
+ "postcss-minify-selectors": "^5.2.1",
+ "postcss-normalize-charset": "^5.1.0",
+ "postcss-normalize-display-values": "^5.1.0",
+ "postcss-normalize-positions": "^5.1.1",
+ "postcss-normalize-repeat-style": "^5.1.1",
+ "postcss-normalize-string": "^5.1.0",
+ "postcss-normalize-timing-functions": "^5.1.0",
+ "postcss-normalize-unicode": "^5.1.1",
+ "postcss-normalize-url": "^5.1.0",
+ "postcss-normalize-whitespace": "^5.1.1",
+ "postcss-ordered-values": "^5.1.3",
+ "postcss-reduce-initial": "^5.1.2",
+ "postcss-reduce-transforms": "^5.1.0",
+ "postcss-svgo": "^5.1.0",
+ "postcss-unique-selectors": "^5.1.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/cssnano-utils": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz",
+ "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==",
+ "license": "MIT",
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/csso": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz",
+ "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==",
+ "license": "MIT",
+ "dependencies": {
+ "css-tree": "^1.1.2"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/cssom": {
+ "version": "0.4.4",
+ "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz",
+ "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==",
+ "license": "MIT"
+ },
+ "node_modules/cssstyle": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz",
+ "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==",
+ "license": "MIT",
+ "dependencies": {
+ "cssom": "~0.3.6"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cssstyle/node_modules/cssom": {
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
+ "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
+ "license": "MIT"
+ },
+ "node_modules/currently-unhandled": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
+ "integrity": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "array-find-index": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/d": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/d/-/d-1.0.2.tgz",
+ "integrity": "sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "es5-ext": "^0.10.64",
+ "type": "^2.7.2"
+ },
+ "engines": {
+ "node": ">=0.12"
+ }
+ },
+ "node_modules/dashdash": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
+ "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "assert-plus": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/data-urls": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz",
+ "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==",
+ "license": "MIT",
+ "dependencies": {
+ "abab": "^2.0.0",
+ "whatwg-mimetype": "^2.2.0",
+ "whatwg-url": "^7.0.0"
+ }
+ },
+ "node_modules/data-view-buffer": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz",
+ "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/data-view-byte-length": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz",
+ "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/inspect-js"
+ }
+ },
+ "node_modules/data-view-byte-offset": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz",
+ "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/debug": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
+ "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/decamelize": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
+ "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/decamelize-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz",
+ "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "decamelize": "^1.1.0",
+ "map-obj": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/decamelize-keys/node_modules/map-obj": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz",
+ "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/decimal.js": {
+ "version": "10.5.0",
+ "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.5.0.tgz",
+ "integrity": "sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==",
+ "license": "MIT"
+ },
+ "node_modules/deep-equal": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.2.tgz",
+ "integrity": "sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-arguments": "^1.1.1",
+ "is-date-object": "^1.0.5",
+ "is-regex": "^1.1.4",
+ "object-is": "^1.1.5",
+ "object-keys": "^1.1.1",
+ "regexp.prototype.flags": "^1.5.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/deep-is": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
+ "license": "MIT"
+ },
+ "node_modules/deepmerge": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
+ "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/default-require-extensions": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.1.tgz",
+ "integrity": "sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "strip-bom": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/define-data-property": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
+ "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
+ "license": "MIT",
+ "dependencies": {
+ "es-define-property": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/define-properties": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
+ "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
+ "license": "MIT",
+ "dependencies": {
+ "define-data-property": "^1.0.1",
+ "has-property-descriptors": "^1.0.0",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/defined": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz",
+ "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/detect-indent": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-3.0.1.tgz",
+ "integrity": "sha512-xo3WP66SNbr1Eim85s/qyH0ZL8PQUwp86HWm0S1l8WnJ/zjT6T3w1nwNA0yOZeuvOemupEYvpvF6BIdYRuERJQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "get-stdin": "^4.0.1",
+ "minimist": "^1.1.0",
+ "repeating": "^1.1.0"
+ },
+ "bin": {
+ "detect-indent": "cli.js"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/detect-indent/node_modules/get-stdin": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz",
+ "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/devtools-protocol": {
+ "version": "0.0.1107588",
+ "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1107588.tgz",
+ "integrity": "sha512-yIR+pG9x65Xko7bErCUSQaDLrO/P1p3JUzEk7JCU4DowPcGHkTGUGQapcfcLc4qj0UaALwZ+cr0riFgiqpixcg==",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/diff": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz",
+ "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.3.1"
+ }
+ },
+ "node_modules/dnserrors": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/dnserrors/-/dnserrors-2.1.2.tgz",
+ "integrity": "sha512-m2bdi1p3YWTTEAMlN8HkB+pqeykpd7+znMa/Jxr47sk4KiTImtg350BMVeY7xnYNOWFyEoDEWft5aqNt3O5g4A==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "createerror": "^1.2.0",
+ "httperrors": "^2.2.0",
+ "lodash.defaults": "^4.2.0",
+ "lodash.omit": "^4.5.0"
+ }
+ },
+ "node_modules/doctrine": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
+ "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/dom-serializer": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz",
+ "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==",
+ "license": "MIT",
+ "dependencies": {
+ "domelementtype": "^2.0.1",
+ "domhandler": "^4.2.0",
+ "entities": "^2.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
+ }
+ },
+ "node_modules/domelementtype": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
+ "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ],
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/domexception": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz",
+ "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
+ "deprecated": "Use your platform's native DOMException instead",
+ "license": "MIT",
+ "dependencies": {
+ "webidl-conversions": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/domexception/node_modules/webidl-conversions": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
+ "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/domhandler": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz",
+ "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "domelementtype": "^2.2.0"
+ },
+ "engines": {
+ "node": ">= 4"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domhandler?sponsor=1"
+ }
+ },
+ "node_modules/domspace": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/domspace/-/domspace-1.2.2.tgz",
+ "integrity": "sha512-wonvpGbed9PlcvQ0xfb0ov8QoKR9Tk7GiIGrOto6ykPdAtmtQXFBUS10Ifm/1srPkrvcOB4Hsexb/Okt7CeOwg==",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/domutils": {
+ "version": "2.8.0",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
+ "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "dom-serializer": "^1.0.1",
+ "domelementtype": "^2.2.0",
+ "domhandler": "^4.2.0"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domutils?sponsor=1"
+ }
+ },
+ "node_modules/dunder-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/ecc-jsbn": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
+ "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "jsbn": "~0.1.0",
+ "safer-buffer": "^2.1.0"
+ }
+ },
+ "node_modules/electron-to-chromium": {
+ "version": "1.5.119",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.119.tgz",
+ "integrity": "sha512-Ku4NMzUjz3e3Vweh7PhApPrZSS4fyiCIbcIrG9eKrriYVLmbMepETR/v6SU7xPm98QTqMSYiCwfO89QNjXLkbQ==",
+ "license": "ISC"
+ },
+ "node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "license": "MIT"
+ },
+ "node_modules/end-of-stream": {
+ "version": "1.4.4",
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
+ "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
+ "license": "MIT",
+ "dependencies": {
+ "once": "^1.4.0"
+ }
+ },
+ "node_modules/enquirer": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz",
+ "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-colors": "^4.1.1",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8.6"
+ }
+ },
+ "node_modules/entities": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
+ "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
+ "license": "BSD-2-Clause",
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
+ "node_modules/error-ex": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "license": "MIT",
+ "dependencies": {
+ "is-arrayish": "^0.2.1"
+ }
+ },
+ "node_modules/es-abstract": {
+ "version": "1.23.9",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.9.tgz",
+ "integrity": "sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==",
+ "license": "MIT",
+ "dependencies": {
+ "array-buffer-byte-length": "^1.0.2",
+ "arraybuffer.prototype.slice": "^1.0.4",
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "data-view-buffer": "^1.0.2",
+ "data-view-byte-length": "^1.0.2",
+ "data-view-byte-offset": "^1.0.1",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-set-tostringtag": "^2.1.0",
+ "es-to-primitive": "^1.3.0",
+ "function.prototype.name": "^1.1.8",
+ "get-intrinsic": "^1.2.7",
+ "get-proto": "^1.0.0",
+ "get-symbol-description": "^1.1.0",
+ "globalthis": "^1.0.4",
+ "gopd": "^1.2.0",
+ "has-property-descriptors": "^1.0.2",
+ "has-proto": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "internal-slot": "^1.1.0",
+ "is-array-buffer": "^3.0.5",
+ "is-callable": "^1.2.7",
+ "is-data-view": "^1.0.2",
+ "is-regex": "^1.2.1",
+ "is-shared-array-buffer": "^1.0.4",
+ "is-string": "^1.1.1",
+ "is-typed-array": "^1.1.15",
+ "is-weakref": "^1.1.0",
+ "math-intrinsics": "^1.1.0",
+ "object-inspect": "^1.13.3",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.7",
+ "own-keys": "^1.0.1",
+ "regexp.prototype.flags": "^1.5.3",
+ "safe-array-concat": "^1.1.3",
+ "safe-push-apply": "^1.0.0",
+ "safe-regex-test": "^1.1.0",
+ "set-proto": "^1.0.0",
+ "string.prototype.trim": "^1.2.10",
+ "string.prototype.trimend": "^1.0.9",
+ "string.prototype.trimstart": "^1.0.8",
+ "typed-array-buffer": "^1.0.3",
+ "typed-array-byte-length": "^1.0.3",
+ "typed-array-byte-offset": "^1.0.4",
+ "typed-array-length": "^1.0.7",
+ "unbox-primitive": "^1.1.0",
+ "which-typed-array": "^1.1.18"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/es-define-property": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-object-atoms": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-set-tostringtag": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-shim-unscopables": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz",
+ "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-to-primitive": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz",
+ "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==",
+ "license": "MIT",
+ "dependencies": {
+ "is-callable": "^1.2.7",
+ "is-date-object": "^1.0.5",
+ "is-symbol": "^1.0.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/es5-ext": {
+ "version": "0.10.64",
+ "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz",
+ "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "ISC",
+ "dependencies": {
+ "es6-iterator": "^2.0.3",
+ "es6-symbol": "^3.1.3",
+ "esniff": "^2.0.1",
+ "next-tick": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/es6-error": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz",
+ "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/es6-iterator": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz",
+ "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "d": "1",
+ "es5-ext": "^0.10.35",
+ "es6-symbol": "^3.1.1"
+ }
+ },
+ "node_modules/es6-set": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.6.tgz",
+ "integrity": "sha512-TE3LgGLDIBX332jq3ypv6bcOpkLO0AslAQo7p2VqX/1N46YNsvIWgvjojjSEnWEGWMhr1qUbYeTSir5J6mFHOw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "d": "^1.0.1",
+ "es5-ext": "^0.10.62",
+ "es6-iterator": "~2.0.3",
+ "es6-symbol": "^3.1.3",
+ "event-emitter": "^0.3.5",
+ "type": "^2.7.2"
+ },
+ "engines": {
+ "node": ">=0.12"
+ }
+ },
+ "node_modules/es6-symbol": {
+ "version": "3.1.4",
+ "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.4.tgz",
+ "integrity": "sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "d": "^1.0.2",
+ "ext": "^1.7.0"
+ },
+ "engines": {
+ "node": ">=0.12"
+ }
+ },
+ "node_modules/esanimate": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/esanimate/-/esanimate-1.1.1.tgz",
+ "integrity": "sha512-fIrM3uC3tgv3Vz6HuSOUmB/YtEcQ7PVMCHyl+r13KirqTQhigraedKzrBzNMcz1QieZ476K0AnMHEN/Ei1LDVQ==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "escodegen": "^1.11.1",
+ "esprima": "^4.0.1"
+ }
+ },
+ "node_modules/esanimate/node_modules/escodegen": {
+ "version": "1.14.3",
+ "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz",
+ "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "esprima": "^4.0.1",
+ "estraverse": "^4.2.0",
+ "esutils": "^2.0.2",
+ "optionator": "^0.8.1"
+ },
+ "bin": {
+ "escodegen": "bin/escodegen.js",
+ "esgenerate": "bin/esgenerate.js"
+ },
+ "engines": {
+ "node": ">=4.0"
+ },
+ "optionalDependencies": {
+ "source-map": "~0.6.1"
+ }
+ },
+ "node_modules/esanimate/node_modules/estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/esanimate/node_modules/levn": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
+ "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==",
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/esanimate/node_modules/optionator": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
+ "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
+ "license": "MIT",
+ "dependencies": {
+ "deep-is": "~0.1.3",
+ "fast-levenshtein": "~2.0.6",
+ "levn": "~0.3.0",
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2",
+ "word-wrap": "~1.2.3"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/esanimate/node_modules/prelude-ls": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
+ "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==",
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/esanimate/node_modules/type-check": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
+ "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==",
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/escalade": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/escodegen": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
+ "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "esprima": "^4.0.1",
+ "estraverse": "^5.2.0",
+ "esutils": "^2.0.2"
+ },
+ "bin": {
+ "escodegen": "bin/escodegen.js",
+ "esgenerate": "bin/esgenerate.js"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "optionalDependencies": {
+ "source-map": "~0.6.1"
+ }
+ },
+ "node_modules/eslint": {
+ "version": "7.32.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz",
+ "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==",
+ "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "7.12.11",
+ "@eslint/eslintrc": "^0.4.3",
+ "@humanwhocodes/config-array": "^0.5.0",
+ "ajv": "^6.10.0",
+ "chalk": "^4.0.0",
+ "cross-spawn": "^7.0.2",
+ "debug": "^4.0.1",
+ "doctrine": "^3.0.0",
+ "enquirer": "^2.3.5",
+ "escape-string-regexp": "^4.0.0",
+ "eslint-scope": "^5.1.1",
+ "eslint-utils": "^2.1.0",
+ "eslint-visitor-keys": "^2.0.0",
+ "espree": "^7.3.1",
+ "esquery": "^1.4.0",
+ "esutils": "^2.0.2",
+ "fast-deep-equal": "^3.1.3",
+ "file-entry-cache": "^6.0.1",
+ "functional-red-black-tree": "^1.0.1",
+ "glob-parent": "^5.1.2",
+ "globals": "^13.6.0",
+ "ignore": "^4.0.6",
+ "import-fresh": "^3.0.0",
+ "imurmurhash": "^0.1.4",
+ "is-glob": "^4.0.0",
+ "js-yaml": "^3.13.1",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "levn": "^0.4.1",
+ "lodash.merge": "^4.6.2",
+ "minimatch": "^3.0.4",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.9.1",
+ "progress": "^2.0.0",
+ "regexpp": "^3.1.0",
+ "semver": "^7.2.1",
+ "strip-ansi": "^6.0.0",
+ "strip-json-comments": "^3.1.0",
+ "table": "^6.0.9",
+ "text-table": "^0.2.0",
+ "v8-compile-cache": "^2.0.3"
+ },
+ "bin": {
+ "eslint": "bin/eslint.js"
+ },
+ "engines": {
+ "node": "^10.12.0 || >=12.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/eslint-config-prettier": {
+ "version": "6.15.0",
+ "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz",
+ "integrity": "sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "get-stdin": "^6.0.0"
+ },
+ "bin": {
+ "eslint-config-prettier-check": "bin/cli.js"
+ },
+ "peerDependencies": {
+ "eslint": ">=3.14.1"
+ }
+ },
+ "node_modules/eslint-config-standard": {
+ "version": "14.1.1",
+ "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-14.1.1.tgz",
+ "integrity": "sha512-Z9B+VR+JIXRxz21udPTL9HpFMyoMUEeX1G251EQ6e05WD9aPVtVBn09XUmZ259wCMlCDmYDSZG62Hhm+ZTJcUg==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "eslint": ">=6.2.2",
+ "eslint-plugin-import": ">=2.18.0",
+ "eslint-plugin-node": ">=9.1.0",
+ "eslint-plugin-promise": ">=4.2.1",
+ "eslint-plugin-standard": ">=4.0.0"
+ }
+ },
+ "node_modules/eslint-import-resolver-node": {
+ "version": "0.3.9",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
+ "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^3.2.7",
+ "is-core-module": "^2.13.0",
+ "resolve": "^1.22.4"
+ }
+ },
+ "node_modules/eslint-import-resolver-node/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-module-utils": {
+ "version": "2.12.0",
+ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz",
+ "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^3.2.7"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependenciesMeta": {
+ "eslint": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-module-utils/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-plugin-es": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz",
+ "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eslint-utils": "^2.0.0",
+ "regexpp": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8.10.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mysticatea"
+ },
+ "peerDependencies": {
+ "eslint": ">=4.19.1"
+ }
+ },
+ "node_modules/eslint-plugin-import": {
+ "version": "2.31.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz",
+ "integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@rtsao/scc": "^1.1.0",
+ "array-includes": "^3.1.8",
+ "array.prototype.findlastindex": "^1.2.5",
+ "array.prototype.flat": "^1.3.2",
+ "array.prototype.flatmap": "^1.3.2",
+ "debug": "^3.2.7",
+ "doctrine": "^2.1.0",
+ "eslint-import-resolver-node": "^0.3.9",
+ "eslint-module-utils": "^2.12.0",
+ "hasown": "^2.0.2",
+ "is-core-module": "^2.15.1",
+ "is-glob": "^4.0.3",
+ "minimatch": "^3.1.2",
+ "object.fromentries": "^2.0.8",
+ "object.groupby": "^1.0.3",
+ "object.values": "^1.2.0",
+ "semver": "^6.3.1",
+ "string.prototype.trimend": "^1.0.8",
+ "tsconfig-paths": "^3.15.0"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9"
+ }
+ },
+ "node_modules/eslint-plugin-import/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-plugin-import/node_modules/doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/eslint-plugin-mocha": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-mocha/-/eslint-plugin-mocha-7.0.1.tgz",
+ "integrity": "sha512-zkQRW9UigRaayGm/pK9TD5RjccKXSgQksNtpsXbG9b6L5I+jNx7m98VUbZ4w1H1ArlNA+K7IOH+z8TscN6sOYg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eslint-utils": "^2.0.0",
+ "ramda": "^0.27.0"
+ },
+ "engines": {
+ "node": ">=10.0.0"
+ },
+ "peerDependencies": {
+ "eslint": ">=7.0.0"
+ }
+ },
+ "node_modules/eslint-plugin-n": {
+ "version": "15.7.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz",
+ "integrity": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "builtins": "^5.0.1",
+ "eslint-plugin-es": "^4.1.0",
+ "eslint-utils": "^3.0.0",
+ "ignore": "^5.1.1",
+ "is-core-module": "^2.11.0",
+ "minimatch": "^3.1.2",
+ "resolve": "^1.22.1",
+ "semver": "^7.3.8"
+ },
+ "engines": {
+ "node": ">=12.22.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mysticatea"
+ },
+ "peerDependencies": {
+ "eslint": ">=7.0.0"
+ }
+ },
+ "node_modules/eslint-plugin-n/node_modules/eslint-plugin-es": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz",
+ "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eslint-utils": "^2.0.0",
+ "regexpp": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8.10.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mysticatea"
+ },
+ "peerDependencies": {
+ "eslint": ">=4.19.1"
+ }
+ },
+ "node_modules/eslint-plugin-n/node_modules/eslint-plugin-es/node_modules/eslint-utils": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
+ "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eslint-visitor-keys": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mysticatea"
+ }
+ },
+ "node_modules/eslint-plugin-n/node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
+ "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/eslint-plugin-n/node_modules/eslint-utils": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz",
+ "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eslint-visitor-keys": "^2.0.0"
+ },
+ "engines": {
+ "node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mysticatea"
+ },
+ "peerDependencies": {
+ "eslint": ">=5"
+ }
+ },
+ "node_modules/eslint-plugin-n/node_modules/ignore": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/eslint-plugin-n/node_modules/semver": {
+ "version": "7.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
+ "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/eslint-plugin-node": {
+ "version": "11.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz",
+ "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eslint-plugin-es": "^3.0.0",
+ "eslint-utils": "^2.0.0",
+ "ignore": "^5.1.1",
+ "minimatch": "^3.0.4",
+ "resolve": "^1.10.1",
+ "semver": "^6.1.0"
+ },
+ "engines": {
+ "node": ">=8.10.0"
+ },
+ "peerDependencies": {
+ "eslint": ">=5.16.0"
+ }
+ },
+ "node_modules/eslint-plugin-node/node_modules/ignore": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/eslint-plugin-promise": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-4.3.1.tgz",
+ "integrity": "sha512-bY2sGqyptzFBDLh/GMbAxfdJC+b0f23ME63FOE4+Jao0oZ3E1LEwFtWJX/1pGMJLiTtrSSern2CRM/g+dfc0eQ==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/eslint-plugin-standard": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-4.1.0.tgz",
+ "integrity": "sha512-ZL7+QRixjTR6/528YNGyDotyffm5OQst/sGxKDwGb9Uqs4In5Egi4+jbobhqJoyoCM6/7v/1A5fhQ7ScMtDjaQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT",
+ "peerDependencies": {
+ "eslint": ">=5.0.0"
+ }
+ },
+ "node_modules/eslint-scope": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
+ "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/eslint-scope/node_modules/estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/eslint-utils": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
+ "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eslint-visitor-keys": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mysticatea"
+ }
+ },
+ "node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
+ "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/eslint-visitor-keys": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
+ "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/eslint/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/eslint/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/eslint/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/eslint/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/eslint/node_modules/escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/eslint/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/eslint/node_modules/semver": {
+ "version": "7.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
+ "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/eslint/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/esniff": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz",
+ "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "d": "^1.0.1",
+ "es5-ext": "^0.10.62",
+ "event-emitter": "^0.3.5",
+ "type": "^2.7.2"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/espree": {
+ "version": "7.3.1",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz",
+ "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "acorn": "^7.4.0",
+ "acorn-jsx": "^5.3.1",
+ "eslint-visitor-keys": "^1.3.0"
+ },
+ "engines": {
+ "node": "^10.12.0 || >=12.0.0"
+ }
+ },
+ "node_modules/espree/node_modules/acorn": {
+ "version": "7.4.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
+ "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/espree/node_modules/eslint-visitor-keys": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
+ "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/esprima": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
+ "license": "BSD-2-Clause",
+ "bin": {
+ "esparse": "bin/esparse.js",
+ "esvalidate": "bin/esvalidate.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/espurify": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/espurify/-/espurify-2.1.1.tgz",
+ "integrity": "sha512-zttWvnkhcDyGOhSH4vO2qCBILpdCMv/MX8lp4cqgRkQoDRGK2oZxi2GfWhlP2dIXmk7BaKeOTuzbHhyC68o8XQ==",
+ "license": "MIT"
+ },
+ "node_modules/esquery": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
+ "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "estraverse": "^5.1.0"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/esrecurse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/estraverse": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/estraverse-fb": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/estraverse-fb/-/estraverse-fb-1.3.2.tgz",
+ "integrity": "sha512-wp3lfRrWy5EQD9TqesuYM1SKVP4ERT0cUatb4e8Vznf4K5IOpREhuyXZxGj3a9s9mvX5vGZKNHA4R9D4kp9Q9A==",
+ "license": "MIT",
+ "peerDependencies": {
+ "estraverse": "*"
+ }
+ },
+ "node_modules/esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/event-emitter": {
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz",
+ "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "d": "1",
+ "es5-ext": "~0.10.14"
+ }
+ },
+ "node_modules/ext": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz",
+ "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "type": "^2.7.2"
+ }
+ },
+ "node_modules/extend": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
+ "license": "MIT"
+ },
+ "node_modules/external-editor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
+ "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "chardet": "^0.7.0",
+ "iconv-lite": "^0.4.24",
+ "tmp": "^0.0.33"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/extract-zip": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
+ "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "debug": "^4.1.1",
+ "get-stream": "^5.1.0",
+ "yauzl": "^2.10.0"
+ },
+ "bin": {
+ "extract-zip": "cli.js"
+ },
+ "engines": {
+ "node": ">= 10.17.0"
+ },
+ "optionalDependencies": {
+ "@types/yauzl": "^2.9.1"
+ }
+ },
+ "node_modules/extsprintf": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
+ "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==",
+ "dev": true,
+ "engines": [
+ "node >=0.6.0"
+ ],
+ "license": "MIT"
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fast-levenshtein": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
+ "license": "MIT"
+ },
+ "node_modules/fast-uri": {
+ "version": "3.0.6",
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz",
+ "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fastify"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/fastify"
+ }
+ ],
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/fd-slicer": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
+ "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
+ "license": "MIT",
+ "dependencies": {
+ "pend": "~1.2.0"
+ }
+ },
+ "node_modules/figures": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
+ "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "escape-string-regexp": "^1.0.5"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/file-entry-cache": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
+ "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "flat-cache": "^3.0.4"
+ },
+ "engines": {
+ "node": "^10.12.0 || >=12.0.0"
+ }
+ },
+ "node_modules/fill-keys": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/fill-keys/-/fill-keys-1.0.2.tgz",
+ "integrity": "sha512-tcgI872xXjwFF4xgQmLxi76GnwJG3g/3isB1l4/G5Z4zrbddGpBjqZCO9oEAcB5wX0Hj/5iQB3toxfO7in1hHA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-object": "~1.0.1",
+ "merge-descriptors": "~1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fill-range": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/find-cache-dir": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
+ "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.2",
+ "pkg-dir": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
+ }
+ },
+ "node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/flat": {
+ "version": "5.0.2",
+ "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz",
+ "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "bin": {
+ "flat": "cli.js"
+ }
+ },
+ "node_modules/flat-cache": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz",
+ "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "flatted": "^3.2.9",
+ "keyv": "^4.5.3",
+ "rimraf": "^3.0.2"
+ },
+ "engines": {
+ "node": "^10.12.0 || >=12.0.0"
+ }
+ },
+ "node_modules/flatted": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz",
+ "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/font-family-papandreou": {
+ "version": "0.2.0-patch2",
+ "resolved": "https://registry.npmjs.org/font-family-papandreou/-/font-family-papandreou-0.2.0-patch2.tgz",
+ "integrity": "sha512-l/YiRdBSH/eWv6OF3sLGkwErL+n0MqCICi9mppTZBOCL5vixWGDqCYvRcuxB2h7RGCTzaTKOHT2caHvCXQPRlw==",
+ "license": "MIT"
+ },
+ "node_modules/font-snapper": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/font-snapper/-/font-snapper-1.2.0.tgz",
+ "integrity": "sha512-TcqBpHV24iGPA2RvvMWCmwH/Zrz46OIaKOlvQoi6kZweSDtLwNCJihby10htMnSCncwFX8rQYDiaXJk2LvPHng==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "css-font-weight-names": "^0.2.1",
+ "font-family-papandreou": "^0.2.0-patch1"
+ }
+ },
+ "node_modules/font-tracer": {
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/font-tracer/-/font-tracer-3.7.1.tgz",
+ "integrity": "sha512-+CetK78tyd5Q6lgDE7dJO9Q4fIt/oMY2dexNBU+++pSeUHNeSzhYj2ZSXZDYUvj/6zXCwTmi3YceG6QT178aMg==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "capitalize": "^2.0.3",
+ "counteraction": "^1.3.1",
+ "css-font-parser": "^2.0.0",
+ "css-font-parser-papandreou": "^0.2.3-patch1",
+ "css-font-weight-names": "^0.2.1",
+ "postcss-value-parser": "^4.1.0",
+ "reduce-css-calc": "^2.1.8",
+ "specificity": "^0.4.1"
+ }
+ },
+ "node_modules/fontverter": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/fontverter/-/fontverter-2.0.0.tgz",
+ "integrity": "sha512-DFVX5hvXuhi1Jven1tbpebYTCT9XYnvx6/Z+HFUPb7ZRMCW+pj2clU9VMhoTPgWKPhAs7JJDSk3CW1jNUvKCZQ==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "wawoff2": "^2.0.0",
+ "woff2sfnt-sfnt2woff": "^1.0.0"
+ }
+ },
+ "node_modules/for-each": {
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz",
+ "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==",
+ "license": "MIT",
+ "dependencies": {
+ "is-callable": "^1.2.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/foreground-child": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz",
+ "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/forever-agent": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
+ "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/form-data": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.3.tgz",
+ "integrity": "sha512-q5YBMeWy6E2Un0nMGWMgI65MAKtaylxfNJGJxpGh45YDciZB4epbWpaAfImil6CPAPTYB4sh0URQNDRIZG5F2w==",
+ "license": "MIT",
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "es-set-tostringtag": "^2.1.0",
+ "mime-types": "^2.1.35"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/fromentries": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz",
+ "integrity": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/fs-constants": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
+ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
+ "license": "MIT"
+ },
+ "node_modules/fs-extra": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz",
+ "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==",
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.1.2",
+ "jsonfile": "^4.0.0",
+ "universalify": "^0.1.0"
+ }
+ },
+ "node_modules/fs-extra/node_modules/universalify": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
+ "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4.0.0"
+ }
+ },
+ "node_modules/fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
+ "license": "ISC"
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/function.prototype.name": {
+ "version": "1.1.8",
+ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz",
+ "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "functions-have-names": "^1.2.3",
+ "hasown": "^2.0.2",
+ "is-callable": "^1.2.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/functional-red-black-tree": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
+ "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/functions-have-names": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
+ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/gather-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/gather-stream/-/gather-stream-1.0.0.tgz",
+ "integrity": "sha512-NspYMi3rN3EKmMdejUXbtluDYrcRlTEBBFhWzVRZVsOx94OPxlXp0AzyPKyLiT7iaurcoTE/KcHsHP/PowNEaA==",
+ "license": "ISC"
+ },
+ "node_modules/gensync": {
+ "version": "1.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/get-caller-file": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "license": "ISC",
+ "engines": {
+ "node": "6.* || 8.* || >= 10.*"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-own-enumerable-property-symbols": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz",
+ "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==",
+ "license": "ISC"
+ },
+ "node_modules/get-package-type": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
+ "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/get-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/get-stdin": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz",
+ "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/get-stream": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
+ "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+ "license": "MIT",
+ "dependencies": {
+ "pump": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/get-symbol-description": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz",
+ "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/getpass": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
+ "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "assert-plus": "^1.0.0"
+ }
+ },
+ "node_modules/gettemporaryfilepath": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/gettemporaryfilepath/-/gettemporaryfilepath-1.0.1.tgz",
+ "integrity": "sha512-MVCSgF1blIZuIV3KYhMKOwU1OSxPF1s+ZcyqWMSGR5Fzl6fN7EjIXDFGu9PmWAAwyGjMjmkS2ruqPaj13J3SXA==",
+ "license": "BSD"
+ },
+ "node_modules/glob": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "deprecated": "Glob versions prior to v9 are no longer supported",
+ "license": "ISC",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/globals": {
+ "version": "13.24.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
+ "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "type-fest": "^0.20.2"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/globalthis": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz",
+ "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==",
+ "license": "MIT",
+ "dependencies": {
+ "define-properties": "^1.2.1",
+ "gopd": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/gopd": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/graceful-fs": {
+ "version": "4.2.11",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
+ "license": "ISC"
+ },
+ "node_modules/grapheme-splitter": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz",
+ "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/greedy-interval-packer": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/greedy-interval-packer/-/greedy-interval-packer-1.2.0.tgz",
+ "integrity": "sha512-4ap45COKmRa2BdeVTY9FXIlR5UIkQX/a0pGtEvk+DnZ7THF3n1UkUKB17AFo+5TMaXnwJkHDn9VH5ATXt/YzHA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/growl": {
+ "version": "1.10.5",
+ "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz",
+ "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4.x"
+ }
+ },
+ "node_modules/har-schema": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
+ "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/har-validator": {
+ "version": "5.1.5",
+ "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz",
+ "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==",
+ "deprecated": "this library is no longer supported",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ajv": "^6.12.3",
+ "har-schema": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/harfbuzzjs": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/harfbuzzjs/-/harfbuzzjs-0.3.6.tgz",
+ "integrity": "sha512-dzf7y6NS8fiAIvPAL/VKwY8wx2HCzUB0vUfOo6h1J5UilFEEf7iYqFsvgwjHwvM3whbjfOMadNvQekU3KuRnWQ==",
+ "license": "MIT"
+ },
+ "node_modules/has-bigints": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz",
+ "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/has-property-descriptors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
+ "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
+ "license": "MIT",
+ "dependencies": {
+ "es-define-property": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-proto": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz",
+ "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==",
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-tostringtag": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
+ "license": "MIT",
+ "dependencies": {
+ "has-symbols": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/hasha": {
+ "version": "5.2.2",
+ "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz",
+ "integrity": "sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-stream": "^2.0.0",
+ "type-fest": "^0.8.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/hasha/node_modules/type-fest": {
+ "version": "0.8.1",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
+ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/he": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
+ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
+ "license": "MIT",
+ "bin": {
+ "he": "bin/he"
+ }
+ },
+ "node_modules/hosted-git-info": {
+ "version": "2.8.9",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
+ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
+ "license": "ISC"
+ },
+ "node_modules/html-encoding-sniffer": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
+ "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
+ "license": "MIT",
+ "dependencies": {
+ "whatwg-encoding": "^1.0.5"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/html-escaper": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
+ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/html-generators": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/html-generators/-/html-generators-1.0.3.tgz",
+ "integrity": "sha512-PAL3BipC1XEW3bnfNbkU6eRsMXHjCYoB9korutBBAGpH/UL2A1euD9IdvV35wdMhVcPzHo2oSH5b6nokAcLONw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "chance-generators": "^3.5.2",
+ "css-generators": "0.2.0",
+ "html-validate": "1.6.0"
+ }
+ },
+ "node_modules/html-generators/node_modules/acorn": {
+ "version": "7.4.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
+ "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/html-generators/node_modules/ansi-regex": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
+ "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/html-generators/node_modules/astral-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz",
+ "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/html-generators/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/html-generators/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/html-generators/node_modules/cross-spawn": {
+ "version": "6.0.6",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz",
+ "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "nice-try": "^1.0.4",
+ "path-key": "^2.0.1",
+ "semver": "^5.5.0",
+ "shebang-command": "^1.2.0",
+ "which": "^1.2.9"
+ },
+ "engines": {
+ "node": ">=4.8"
+ }
+ },
+ "node_modules/html-generators/node_modules/cross-spawn/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/html-generators/node_modules/css-generators": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/css-generators/-/css-generators-0.2.0.tgz",
+ "integrity": "sha512-LOi+OnnP0GCc9laN1b9k3uQ41T8OvA5mSCb7ZnKQwg35X6H0hGbS4aRTH2zaB2r7GvNP6WXTH00VZo9vOvTChg==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "chance-generators": "^3.5.2",
+ "character-sets": "^1.0.8",
+ "css-syntax-parser": "^1.5.1",
+ "html-validate": "^2.0.1",
+ "iso-639-1": "^2.1.0",
+ "lodash": "^4.17.15",
+ "mdn-data": "2.0.7",
+ "pegjs": "^0.10.0",
+ "postcss": "^7.0.23"
+ }
+ },
+ "node_modules/html-generators/node_modules/css-generators/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/html-generators/node_modules/css-generators/node_modules/chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/html-generators/node_modules/css-generators/node_modules/html-validate": {
+ "version": "2.23.1",
+ "resolved": "https://registry.npmjs.org/html-validate/-/html-validate-2.23.1.tgz",
+ "integrity": "sha512-qOW7q45BZ0YvQBJMaKvttFuWGwSBRYqPE7xAnR+n4A+fKBqP+5XSGFTH+4XdbVoMQYwK3TntKC3ra7GCHApXTQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.0.0",
+ "@sidvind/better-ajv-errors": "^0.6.9",
+ "acorn-walk": "^7.0.0",
+ "ajv": "^6.10.0",
+ "chalk": "^3.0.0",
+ "deepmerge": "^4.0.0",
+ "eslint": "^6.0.0",
+ "espree": "^6.0.0",
+ "glob": "^7.1.3",
+ "inquirer": "^7.0.0",
+ "json-merge-patch": "^1.0.0",
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "html-validate": "bin/html-validate.js"
+ },
+ "engines": {
+ "node": ">= 8.5"
+ }
+ },
+ "node_modules/html-generators/node_modules/emoji-regex": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
+ "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/html-generators/node_modules/eslint": {
+ "version": "6.8.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz",
+ "integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==",
+ "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.0.0",
+ "ajv": "^6.10.0",
+ "chalk": "^2.1.0",
+ "cross-spawn": "^6.0.5",
+ "debug": "^4.0.1",
+ "doctrine": "^3.0.0",
+ "eslint-scope": "^5.0.0",
+ "eslint-utils": "^1.4.3",
+ "eslint-visitor-keys": "^1.1.0",
+ "espree": "^6.1.2",
+ "esquery": "^1.0.1",
+ "esutils": "^2.0.2",
+ "file-entry-cache": "^5.0.1",
+ "functional-red-black-tree": "^1.0.1",
+ "glob-parent": "^5.0.0",
+ "globals": "^12.1.0",
+ "ignore": "^4.0.6",
+ "import-fresh": "^3.0.0",
+ "imurmurhash": "^0.1.4",
+ "inquirer": "^7.0.0",
+ "is-glob": "^4.0.0",
+ "js-yaml": "^3.13.1",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "levn": "^0.3.0",
+ "lodash": "^4.17.14",
+ "minimatch": "^3.0.4",
+ "mkdirp": "^0.5.1",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.8.3",
+ "progress": "^2.0.0",
+ "regexpp": "^2.0.1",
+ "semver": "^6.1.2",
+ "strip-ansi": "^5.2.0",
+ "strip-json-comments": "^3.0.1",
+ "table": "^5.2.3",
+ "text-table": "^0.2.0",
+ "v8-compile-cache": "^2.0.3"
+ },
+ "bin": {
+ "eslint": "bin/eslint.js"
+ },
+ "engines": {
+ "node": "^8.10.0 || ^10.13.0 || >=11.10.1"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/html-generators/node_modules/eslint-utils": {
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz",
+ "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eslint-visitor-keys": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/html-generators/node_modules/eslint-visitor-keys": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
+ "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/html-generators/node_modules/espree": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz",
+ "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "acorn": "^7.1.1",
+ "acorn-jsx": "^5.2.0",
+ "eslint-visitor-keys": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/html-generators/node_modules/file-entry-cache": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz",
+ "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "flat-cache": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/html-generators/node_modules/flat-cache": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz",
+ "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "flatted": "^2.0.0",
+ "rimraf": "2.6.3",
+ "write": "1.0.3"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/html-generators/node_modules/flatted": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz",
+ "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/html-generators/node_modules/globals": {
+ "version": "12.4.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz",
+ "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "type-fest": "^0.8.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/html-generators/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/html-generators/node_modules/html-validate": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/html-validate/-/html-validate-1.6.0.tgz",
+ "integrity": "sha512-7K9IjTmLzUoQm0ZhHP+rPcHw6zJsnRmyf79awVFhgw2o1ZBklKBcqscCuCk7I08YGpSTqp61eW0TdDKkmD5MHw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.0.0",
+ "acorn-walk": "^7.0.0",
+ "ajv": "^6.10.0",
+ "better-ajv-errors": "^0.6.2",
+ "chalk": "^2.4.2",
+ "deepmerge": "^4.0.0",
+ "eslint": "^6.0.0",
+ "espree": "^6.0.0",
+ "glob": "^7.1.3",
+ "json-merge-patch": "^0.2.3",
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "html-validate": "bin/html-validate.js"
+ },
+ "engines": {
+ "node": ">= 8.5"
+ }
+ },
+ "node_modules/html-generators/node_modules/html-validate/node_modules/json-merge-patch": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/json-merge-patch/-/json-merge-patch-0.2.3.tgz",
+ "integrity": "sha512-mjd5eObNGOhWkKCztwVuF25KOzLj2T4TJaWXLBgCQPeoPRJrMxKNgjNBE8sPmXoWRT0WDlo4Itd/gTlFh29TFw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "deep-equal": "^1.0.0"
+ }
+ },
+ "node_modules/html-generators/node_modules/is-fullwidth-code-point": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/html-generators/node_modules/levn": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
+ "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/html-generators/node_modules/mdn-data": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.7.tgz",
+ "integrity": "sha512-SRtFboZtRLXYjkS6wnzITo7UPlWJYcn8T2A8XXqEt5uXH1okVBpQOzo05XM17/rhiLXk7CmAQMJ/vM1QP/kuUA==",
+ "dev": true,
+ "license": "CC0-1.0"
+ },
+ "node_modules/html-generators/node_modules/optionator": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
+ "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "deep-is": "~0.1.3",
+ "fast-levenshtein": "~2.0.6",
+ "levn": "~0.3.0",
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2",
+ "word-wrap": "~1.2.3"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/html-generators/node_modules/path-key": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+ "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/html-generators/node_modules/picocolors": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
+ "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/html-generators/node_modules/postcss": {
+ "version": "7.0.39",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
+ "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "picocolors": "^0.2.1",
+ "source-map": "^0.6.1"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ }
+ },
+ "node_modules/html-generators/node_modules/prelude-ls": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
+ "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/html-generators/node_modules/regexpp": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz",
+ "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.5.0"
+ }
+ },
+ "node_modules/html-generators/node_modules/rimraf": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
+ "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
+ "deprecated": "Rimraf versions prior to v4 are no longer supported",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ }
+ },
+ "node_modules/html-generators/node_modules/shebang-command": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+ "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "shebang-regex": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/html-generators/node_modules/shebang-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+ "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/html-generators/node_modules/slice-ansi": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz",
+ "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^3.2.0",
+ "astral-regex": "^1.0.0",
+ "is-fullwidth-code-point": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/html-generators/node_modules/string-width": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
+ "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^7.0.1",
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^5.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/html-generators/node_modules/strip-ansi": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/html-generators/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/html-generators/node_modules/table": {
+ "version": "5.4.6",
+ "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
+ "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "ajv": "^6.10.2",
+ "lodash": "^4.17.14",
+ "slice-ansi": "^2.1.0",
+ "string-width": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/html-generators/node_modules/type-check": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
+ "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/html-generators/node_modules/type-fest": {
+ "version": "0.8.1",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
+ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/html-generators/node_modules/which": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "which": "bin/which"
+ }
+ },
+ "node_modules/html-minifier": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-4.0.0.tgz",
+ "integrity": "sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==",
+ "license": "MIT",
+ "dependencies": {
+ "camel-case": "^3.0.0",
+ "clean-css": "^4.2.1",
+ "commander": "^2.19.0",
+ "he": "^1.2.0",
+ "param-case": "^2.1.1",
+ "relateurl": "^0.2.7",
+ "uglify-js": "^3.5.1"
+ },
+ "bin": {
+ "html-minifier": "cli.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/html-validate": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/html-validate/-/html-validate-3.0.0.tgz",
+ "integrity": "sha512-4yipnAN9O33nW7K5qncSHXuP08mqROIvJVlgjLykgRVdx2/ufTe/t/td/8+48iuQMfiu0sgTd8lHJO5o45QByQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.0.0",
+ "@sidvind/better-ajv-errors": "^0.6.9",
+ "acorn-walk": "^7.0.0",
+ "ajv": "^6.10.0",
+ "chalk": "^4.0.0",
+ "deepmerge": "^4.0.0",
+ "eslint": "^7.0.0",
+ "espree": "^7.0.0",
+ "glob": "^7.1.3",
+ "inquirer": "^7.0.0",
+ "json-merge-patch": "^1.0.0",
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "html-validate": "bin/html-validate.js"
+ },
+ "engines": {
+ "node": ">= 8.5"
+ }
+ },
+ "node_modules/html-validate/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/html-validate/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/html-validate/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/html-validate/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/html-validate/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/html-validate/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/http-proxy-agent": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
+ "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
+ "license": "MIT",
+ "dependencies": {
+ "@tootallnate/once": "1",
+ "agent-base": "6",
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/http-signature": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
+ "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "assert-plus": "^1.0.0",
+ "jsprim": "^1.2.2",
+ "sshpk": "^1.7.0"
+ },
+ "engines": {
+ "node": ">=0.8",
+ "npm": ">=1.3.7"
+ }
+ },
+ "node_modules/httpception": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/httpception/-/httpception-3.0.0.tgz",
+ "integrity": "sha512-0N+aRwgXiU7DOWfpptBK5dWNC8EIw7oDJyC2nzFK4vFjdCJtRTyi+D/r/N68AIaCXbS2NotPGm9o9hCr+kaWjw==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "unexpected": "^11.0.0",
+ "unexpected-mitm": "^12.0.0"
+ }
+ },
+ "node_modules/httperrors": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/httperrors/-/httperrors-2.2.0.tgz",
+ "integrity": "sha512-bjFDd2l8pO7s/1gmxnoWf+qWsqgUdZR3kJcIZ/i8/7tJjvGG3Z2ybjEBSQoaMPGqan+2sT8ChGutRd1TiWrPZQ==",
+ "dependencies": {
+ "createerror": "1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.2.0"
+ }
+ },
+ "node_modules/httperrors/node_modules/createerror": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/createerror/-/createerror-1.2.0.tgz",
+ "integrity": "sha512-EVt8Ao9RolJaWCsUOJ3ZGAVqc8SQiDg+JtDFjhuaZ5ep2G1ahdm7Gj/F3zNrqfv5SD8UdLuzHp1nBgMdDh9Y9g==",
+ "engines": {
+ "node": ">= 0.2.0"
+ }
+ },
+ "node_modules/https-proxy-agent": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
+ "license": "MIT",
+ "dependencies": {
+ "agent-base": "6",
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "license": "MIT",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/ieee754": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/ignore": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
+ "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/imageinfo": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/imageinfo/-/imageinfo-1.0.4.tgz",
+ "integrity": "sha512-BJml4q/QCO2187F4UcO/b6hTYIhbq4nnd1XNs65jyCED9em4m6XmeGWDxjewjfJoC7VJABhOdmqb64KA24rLZw==",
+ "engines": {
+ "node": ">=0.4"
+ }
+ },
+ "node_modules/import-fresh": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
+ "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.19"
+ }
+ },
+ "node_modules/indent-string": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
+ "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
+ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
+ "license": "ISC",
+ "dependencies": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+ "license": "ISC"
+ },
+ "node_modules/inquirer": {
+ "version": "7.3.3",
+ "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz",
+ "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.1.0",
+ "cli-cursor": "^3.1.0",
+ "cli-width": "^3.0.0",
+ "external-editor": "^3.0.3",
+ "figures": "^3.0.0",
+ "lodash": "^4.17.19",
+ "mute-stream": "0.0.8",
+ "run-async": "^2.4.0",
+ "rxjs": "^6.6.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0",
+ "through": "^2.3.6"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/inquirer/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/inquirer/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/inquirer/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/inquirer/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/inquirer/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/inquirer/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/internal-slot": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz",
+ "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "hasown": "^2.0.2",
+ "side-channel": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/is-arguments": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz",
+ "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-array-buffer": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz",
+ "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "get-intrinsic": "^1.2.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-arrayish": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
+ "license": "MIT"
+ },
+ "node_modules/is-async-function": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz",
+ "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==",
+ "license": "MIT",
+ "dependencies": {
+ "async-function": "^1.0.0",
+ "call-bound": "^1.0.3",
+ "get-proto": "^1.0.1",
+ "has-tostringtag": "^1.0.2",
+ "safe-regex-test": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-bigint": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz",
+ "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==",
+ "license": "MIT",
+ "dependencies": {
+ "has-bigints": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-binary-path": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "binary-extensions": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-boolean-object": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz",
+ "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-callable": {
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
+ "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-core-module": {
+ "version": "2.16.1",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
+ "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
+ "license": "MIT",
+ "dependencies": {
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-data-view": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz",
+ "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "get-intrinsic": "^1.2.6",
+ "is-typed-array": "^1.1.13"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-date-object": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz",
+ "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-finalizationregistry": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz",
+ "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-finite": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz",
+ "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-generator-function": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz",
+ "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "get-proto": "^1.0.0",
+ "has-tostringtag": "^1.0.2",
+ "safe-regex-test": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-map": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz",
+ "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/is-number-object": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz",
+ "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-obj": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
+ "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-object": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz",
+ "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-plain-obj": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
+ "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-potential-custom-element-name": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
+ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
+ "license": "MIT"
+ },
+ "node_modules/is-regex": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz",
+ "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "gopd": "^1.2.0",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-regexp": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz",
+ "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-set": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz",
+ "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-shared-array-buffer": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz",
+ "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-stream": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-string": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz",
+ "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-symbol": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz",
+ "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "has-symbols": "^1.1.0",
+ "safe-regex-test": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-typed-array": {
+ "version": "1.1.15",
+ "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz",
+ "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==",
+ "license": "MIT",
+ "dependencies": {
+ "which-typed-array": "^1.1.16"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-typedarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
+ "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/is-weakmap": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz",
+ "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-weakref": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz",
+ "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-weakset": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz",
+ "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "get-intrinsic": "^1.2.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-windows": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
+ "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/isarray": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
+ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
+ "license": "MIT"
+ },
+ "node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/iso-639-1": {
+ "version": "2.1.15",
+ "resolved": "https://registry.npmjs.org/iso-639-1/-/iso-639-1-2.1.15.tgz",
+ "integrity": "sha512-7c7mBznZu2ktfvyT582E2msM+Udc1EjOyhVRE/0ZsjD9LBtWSm23h3PtiRh2a35XoUsTQQjJXaJzuLjXsOdFDg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.0"
+ }
+ },
+ "node_modules/isstream": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
+ "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/istanbul-lib-coverage": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
+ "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/istanbul-lib-hook": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz",
+ "integrity": "sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "append-transform": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/istanbul-lib-instrument": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz",
+ "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@babel/core": "^7.7.5",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-coverage": "^3.0.0",
+ "semver": "^6.3.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/istanbul-lib-processinfo": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz",
+ "integrity": "sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "archy": "^1.0.0",
+ "cross-spawn": "^7.0.3",
+ "istanbul-lib-coverage": "^3.2.0",
+ "p-map": "^3.0.0",
+ "rimraf": "^3.0.0",
+ "uuid": "^8.3.2"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/istanbul-lib-report": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
+ "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "istanbul-lib-coverage": "^3.0.0",
+ "make-dir": "^4.0.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/istanbul-lib-report/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/istanbul-lib-report/node_modules/make-dir": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz",
+ "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "semver": "^7.5.3"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/istanbul-lib-report/node_modules/semver": {
+ "version": "7.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
+ "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/istanbul-lib-report/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/istanbul-lib-source-maps": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
+ "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "debug": "^4.1.1",
+ "istanbul-lib-coverage": "^3.0.0",
+ "source-map": "^0.6.1"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/istanbul-reports": {
+ "version": "3.1.7",
+ "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz",
+ "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "html-escaper": "^2.0.0",
+ "istanbul-lib-report": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
+ "license": "MIT"
+ },
+ "node_modules/js-yaml": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/jsbn": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
+ "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/jsdom": {
+ "version": "16.7.0",
+ "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz",
+ "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==",
+ "license": "MIT",
+ "dependencies": {
+ "abab": "^2.0.5",
+ "acorn": "^8.2.4",
+ "acorn-globals": "^6.0.0",
+ "cssom": "^0.4.4",
+ "cssstyle": "^2.3.0",
+ "data-urls": "^2.0.0",
+ "decimal.js": "^10.2.1",
+ "domexception": "^2.0.1",
+ "escodegen": "^2.0.0",
+ "form-data": "^3.0.0",
+ "html-encoding-sniffer": "^2.0.1",
+ "http-proxy-agent": "^4.0.1",
+ "https-proxy-agent": "^5.0.0",
+ "is-potential-custom-element-name": "^1.0.1",
+ "nwsapi": "^2.2.0",
+ "parse5": "6.0.1",
+ "saxes": "^5.0.1",
+ "symbol-tree": "^3.2.4",
+ "tough-cookie": "^4.0.0",
+ "w3c-hr-time": "^1.0.2",
+ "w3c-xmlserializer": "^2.0.0",
+ "webidl-conversions": "^6.1.0",
+ "whatwg-encoding": "^1.0.5",
+ "whatwg-mimetype": "^2.3.0",
+ "whatwg-url": "^8.5.0",
+ "ws": "^7.4.6",
+ "xml-name-validator": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "canvas": "^2.5.0"
+ },
+ "peerDependenciesMeta": {
+ "canvas": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/jsdom/node_modules/data-urls": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
+ "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
+ "license": "MIT",
+ "dependencies": {
+ "abab": "^2.0.3",
+ "whatwg-mimetype": "^2.3.0",
+ "whatwg-url": "^8.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/jsdom/node_modules/tr46": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz",
+ "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==",
+ "license": "MIT",
+ "dependencies": {
+ "punycode": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jsdom/node_modules/whatwg-url": {
+ "version": "8.7.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz",
+ "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==",
+ "license": "MIT",
+ "dependencies": {
+ "lodash": "^4.7.0",
+ "tr46": "^2.1.0",
+ "webidl-conversions": "^6.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/jsesc": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "jsesc": "bin/jsesc"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/json-buffer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/json-merge-patch": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json-merge-patch/-/json-merge-patch-1.0.2.tgz",
+ "integrity": "sha512-M6Vp2GN9L7cfuMXiWOmHj9bEFbeC250iVtcKQbqVgEsDVYnIsrNsbU+h/Y/PkbBQCtEa4Bez+Ebv0zfbC8ObLg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.3"
+ }
+ },
+ "node_modules/json-parse-better-errors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
+ "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/json-parse-even-better-errors": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
+ "license": "MIT"
+ },
+ "node_modules/json-schema": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
+ "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==",
+ "dev": true,
+ "license": "(AFL-2.1 OR BSD-3-Clause)"
+ },
+ "node_modules/json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/json-stable-stringify-without-jsonify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/json-stringify-safe": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
+ "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/json-to-ast": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/json-to-ast/-/json-to-ast-2.1.0.tgz",
+ "integrity": "sha512-W9Lq347r8tA1DfMvAGn9QNcgYm4Wm7Yc+k8e6vezpMnRT+NHbtlxgNBXRVjXe9YM6eTn6+p/MKOlV/aABJcSnQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "code-error-fragment": "0.0.230",
+ "grapheme-splitter": "^1.0.4"
+ },
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/json5": {
+ "version": "2.2.3",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "json5": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/jsonfile": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
+ "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==",
+ "license": "MIT",
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/jsonpointer": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.1.0.tgz",
+ "integrity": "sha512-CXcRvMyTlnR53xMcKnuMzfCA5i/nfblTnnr74CZb6C4vG39eu6w51t7nKmU5MfLfbTgGItliNyjO/ciNPDqClg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/jsprim": {
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz",
+ "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "assert-plus": "1.0.0",
+ "extsprintf": "1.3.0",
+ "json-schema": "0.4.0",
+ "verror": "1.10.0"
+ },
+ "engines": {
+ "node": ">=0.6.0"
+ }
+ },
+ "node_modules/just-extend": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/just-extend/-/just-extend-4.2.1.tgz",
+ "integrity": "sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/keyv": {
+ "version": "4.5.4",
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "json-buffer": "3.0.1"
+ }
+ },
+ "node_modules/lcov-parse": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/lcov-parse/-/lcov-parse-1.0.0.tgz",
+ "integrity": "sha512-aprLII/vPzuQvYZnDRU78Fns9I2Ag3gi4Ipga/hxnVMCZC8DnR2nI7XBqrPoywGfxqIx/DgarGvDJZAD3YBTgQ==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "bin": {
+ "lcov-parse": "bin/cli.js"
+ }
+ },
+ "node_modules/leven": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
+ "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/levn": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "^1.2.1",
+ "type-check": "~0.4.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/lilconfig": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
+ "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/lines-and-columns": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
+ "license": "MIT"
+ },
+ "node_modules/load-json-file": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz",
+ "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.1.2",
+ "parse-json": "^4.0.0",
+ "pify": "^3.0.0",
+ "strip-bom": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/load-json-file/node_modules/parse-json": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
+ "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "error-ex": "^1.3.1",
+ "json-parse-better-errors": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/load-json-file/node_modules/strip-bom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+ "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/lodash": {
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
+ "license": "MIT"
+ },
+ "node_modules/lodash._reinterpolate": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
+ "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==",
+ "license": "MIT"
+ },
+ "node_modules/lodash.assign": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz",
+ "integrity": "sha512-hFuH8TY+Yji7Eja3mGiuAxBqLagejScbG8GbG0j6o9vzn0YL14My+ktnqtZgFTosKymC9/44wP6s7xyuLfnClw==",
+ "license": "MIT"
+ },
+ "node_modules/lodash.clone": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.5.0.tgz",
+ "integrity": "sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==",
+ "deprecated": "This package is deprecated. Use structuredClone instead.",
+ "license": "MIT"
+ },
+ "node_modules/lodash.defaults": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz",
+ "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==",
+ "license": "MIT"
+ },
+ "node_modules/lodash.flattendeep": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz",
+ "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.get": {
+ "version": "4.4.2",
+ "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
+ "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==",
+ "deprecated": "This package is deprecated. Use the optional chaining (?.) operator instead.",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.memoize": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
+ "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==",
+ "license": "MIT"
+ },
+ "node_modules/lodash.merge": {
+ "version": "4.6.2",
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.omit": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz",
+ "integrity": "sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==",
+ "deprecated": "This package is deprecated. Use destructuring assignment syntax instead.",
+ "license": "MIT"
+ },
+ "node_modules/lodash.sortby": {
+ "version": "4.7.0",
+ "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz",
+ "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==",
+ "license": "MIT"
+ },
+ "node_modules/lodash.template": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
+ "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==",
+ "deprecated": "This package is deprecated. Use https://socket.dev/npm/package/eta instead.",
+ "license": "MIT",
+ "dependencies": {
+ "lodash._reinterpolate": "^3.0.0",
+ "lodash.templatesettings": "^4.0.0"
+ }
+ },
+ "node_modules/lodash.templatesettings": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz",
+ "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==",
+ "license": "MIT",
+ "dependencies": {
+ "lodash._reinterpolate": "^3.0.0"
+ }
+ },
+ "node_modules/lodash.truncate": {
+ "version": "4.4.2",
+ "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz",
+ "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.uniq": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
+ "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==",
+ "license": "MIT"
+ },
+ "node_modules/log-driver": {
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/log-driver/-/log-driver-1.2.7.tgz",
+ "integrity": "sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=0.8.6"
+ }
+ },
+ "node_modules/log-symbols": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz",
+ "integrity": "sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/log-symbols/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/log-symbols/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/log-symbols/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/log-symbols/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/log-symbols/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/log-symbols/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/loud-rejection": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz",
+ "integrity": "sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "currently-unhandled": "^0.4.1",
+ "signal-exit": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/lower-case": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz",
+ "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==",
+ "license": "MIT"
+ },
+ "node_modules/lru-cache": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.3.1.tgz",
+ "integrity": "sha512-EjtmtXFUu+wXm6PW3T6RT1ekQUxobC7B5TDCU0CS0212wzpwKiXs6vLun+JI+OoWmmliWdYqnrpjrlK7W3ELdQ==",
+ "license": "MIT"
+ },
+ "node_modules/magicpen": {
+ "version": "6.2.4",
+ "resolved": "https://registry.npmjs.org/magicpen/-/magicpen-6.2.4.tgz",
+ "integrity": "sha512-rT4JcgakSrmR9/qPY/EsDSvKH4+nQuFfSQ34Djnj0Zx9jJ+c3REOz+K3CITvRZcmAcCFM6jJO7wSiHlMEXYy3A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "2.0.0",
+ "color-diff": "0.1.7"
+ }
+ },
+ "node_modules/magicpen-media": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/magicpen-media/-/magicpen-media-1.5.2.tgz",
+ "integrity": "sha512-CVg14B+MVvFUJI+Ce6XITyO6NI39oxn0EYfaZOMWC40T7jTwvMuvdHLA0o9uPdXfyUKaPjSbejxvbVSTFqMupQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "gettemporaryfilepath": "^1.0.0",
+ "lodash": "^4.17.11",
+ "mime": "^2.3.1"
+ }
+ },
+ "node_modules/magicpen-prism": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/magicpen-prism/-/magicpen-prism-3.0.2.tgz",
+ "integrity": "sha512-qlKWjCDmmE4CjP99burmKe7r7TS3CBehY6c7W5fsppLAFI5PSKdSRiZpG3hrqxjX3yL1WbfoJjYsVCb8DTnh0A==",
+ "dev": true,
+ "dependencies": {
+ "prismjs": "^1.15.0"
+ }
+ },
+ "node_modules/magicpen/node_modules/ansi-styles": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.0.0.tgz",
+ "integrity": "sha512-0kjBHdIQSa1iuh2rs8Md1GQNHAKrefcRSp2W5OKQU1oBZgCSqQ5aG4o+r69irBlhIPwA8wUaPdN/FWZVIHW7rA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "devOptional": true,
+ "license": "MIT",
+ "dependencies": {
+ "semver": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/map-obj": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-2.0.0.tgz",
+ "integrity": "sha512-TzQSV2DiMYgoF5RycneKVUzIa9bQsj/B3tTgsE3dOGqlzHnGIDaC7XBE7grnA+8kZPnfqSGFe95VHc2oc0VFUQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/markdown-escape": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/markdown-escape/-/markdown-escape-1.1.0.tgz",
+ "integrity": "sha512-f1+ARFbzLrBdC0Lj30uREn+zthrK/h1PO5UhN5IMDQvI2lSFn+8U06a5LHaxxYMhHD0mJoJ2BROJ/Sju5aw6+g==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/math-intrinsics": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/mdn-data": {
+ "version": "2.0.14",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz",
+ "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==",
+ "license": "CC0-1.0"
+ },
+ "node_modules/mdn-data-papandreou": {
+ "version": "2.0.10-patch1",
+ "resolved": "https://registry.npmjs.org/mdn-data-papandreou/-/mdn-data-papandreou-2.0.10-patch1.tgz",
+ "integrity": "sha512-B9xv4Lz0xcsxLxNCq2sTjwM263UgdvhWJNtqWnbE6SDiMNDREJowAKWEP9p48Ew1wIcESQJ+JB2Po6Ru4GH6ig==",
+ "dev": true,
+ "license": "CC0-1.0"
+ },
+ "node_modules/memoizesync": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/memoizesync/-/memoizesync-1.1.1.tgz",
+ "integrity": "sha512-EEVBhL1Nnjbaauc4iUvPKZtQmV3NzSQJmjbzPswG1ZMGP/pVb+GdVzHOx5a+s+71qCDn8tbhKOxkyVVBC6cvmQ==",
+ "license": "BSD",
+ "dependencies": {
+ "lru-cache": "=2.3.1"
+ }
+ },
+ "node_modules/meow": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/meow/-/meow-5.0.0.tgz",
+ "integrity": "sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "camelcase-keys": "^4.0.0",
+ "decamelize-keys": "^1.0.0",
+ "loud-rejection": "^1.0.0",
+ "minimist-options": "^3.0.1",
+ "normalize-package-data": "^2.3.4",
+ "read-pkg-up": "^3.0.0",
+ "redent": "^2.0.0",
+ "trim-newlines": "^2.0.0",
+ "yargs-parser": "^10.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/meow/node_modules/camelcase": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz",
+ "integrity": "sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/meow/node_modules/find-up": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+ "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/meow/node_modules/locate-path": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+ "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^2.0.0",
+ "path-exists": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/meow/node_modules/p-limit": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
+ "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-try": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/meow/node_modules/p-locate": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+ "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/meow/node_modules/p-try": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+ "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/meow/node_modules/path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/meow/node_modules/path-type": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz",
+ "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "pify": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/meow/node_modules/read-pkg": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz",
+ "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "load-json-file": "^4.0.0",
+ "normalize-package-data": "^2.3.2",
+ "path-type": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/meow/node_modules/read-pkg-up": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz",
+ "integrity": "sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "find-up": "^2.0.0",
+ "read-pkg": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/meow/node_modules/yargs-parser": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz",
+ "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "camelcase": "^4.1.0"
+ }
+ },
+ "node_modules/merge-descriptors": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
+ "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/messy": {
+ "version": "6.17.0",
+ "resolved": "https://registry.npmjs.org/messy/-/messy-6.17.0.tgz",
+ "integrity": "sha512-Cvnu5cZLitkuzuL+0v6FC04CPPC8scad7gcNf/OoBsGwc5cUyA3rT6+o0ozTX++ZL4dtdoAgzbyG4jGjq71n5g==",
+ "dev": true,
+ "license": "BSD",
+ "dependencies": {
+ "iconv-lite": "^0.4.13",
+ "quoted-printable": "1.0.0",
+ "rfc2047": "2.0.0",
+ "rfc2231": "1.3.0",
+ "underscore": "^1.6.0"
+ }
+ },
+ "node_modules/mime": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz",
+ "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/mime-db": {
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime-types": {
+ "version": "2.1.35",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-db": "1.52.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mimic-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/minimist": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/minimist-options": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-3.0.2.tgz",
+ "integrity": "sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "arrify": "^1.0.1",
+ "is-plain-obj": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/mitm-papandreou": {
+ "version": "1.7.0-patch1",
+ "resolved": "https://registry.npmjs.org/mitm-papandreou/-/mitm-papandreou-1.7.0-patch1.tgz",
+ "integrity": "sha512-ERzvAy0N/MXyy2206C3yM0prXgn527ZYNhY5o6qgOCHhiS+2GQPOipjvTABRbiXXcv7Y4SNu0rB+i/P1h3RTZQ==",
+ "dev": true,
+ "dependencies": {
+ "semver": ">= 5 < 6",
+ "underscore": ">= 1.1.6 < 1.6"
+ },
+ "engines": {
+ "node": ">= 0.10.24"
+ }
+ },
+ "node_modules/mitm-papandreou/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/mitm-papandreou/node_modules/underscore": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.5.2.tgz",
+ "integrity": "sha512-yejOFsRnTJs0N9CK5Apzf6maDO2djxGoLLrlZlvGs2o9ZQuhIhDL18rtFyy4FBIbOkzA6+4hDgXbgz5EvDQCXQ==",
+ "dev": true
+ },
+ "node_modules/mitt": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.0.tgz",
+ "integrity": "sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==",
+ "license": "MIT"
+ },
+ "node_modules/mkdirp": {
+ "version": "0.5.6",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
+ "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
+ "license": "MIT",
+ "dependencies": {
+ "minimist": "^1.2.6"
+ },
+ "bin": {
+ "mkdirp": "bin/cmd.js"
+ }
+ },
+ "node_modules/mkdirp-classic": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
+ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
+ "license": "MIT"
+ },
+ "node_modules/mocha": {
+ "version": "8.4.0",
+ "resolved": "https://registry.npmjs.org/mocha/-/mocha-8.4.0.tgz",
+ "integrity": "sha512-hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@ungap/promise-all-settled": "1.1.2",
+ "ansi-colors": "4.1.1",
+ "browser-stdout": "1.3.1",
+ "chokidar": "3.5.1",
+ "debug": "4.3.1",
+ "diff": "5.0.0",
+ "escape-string-regexp": "4.0.0",
+ "find-up": "5.0.0",
+ "glob": "7.1.6",
+ "growl": "1.10.5",
+ "he": "1.2.0",
+ "js-yaml": "4.0.0",
+ "log-symbols": "4.0.0",
+ "minimatch": "3.0.4",
+ "ms": "2.1.3",
+ "nanoid": "3.1.20",
+ "serialize-javascript": "5.0.1",
+ "strip-json-comments": "3.1.1",
+ "supports-color": "8.1.1",
+ "which": "2.0.2",
+ "wide-align": "1.1.3",
+ "workerpool": "6.1.0",
+ "yargs": "16.2.0",
+ "yargs-parser": "20.2.4",
+ "yargs-unparser": "2.0.0"
+ },
+ "bin": {
+ "_mocha": "bin/_mocha",
+ "mocha": "bin/mocha"
+ },
+ "engines": {
+ "node": ">= 10.12.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mochajs"
+ }
+ },
+ "node_modules/mocha/node_modules/ansi-colors": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz",
+ "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/mocha/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/mocha/node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "dev": true,
+ "license": "Python-2.0"
+ },
+ "node_modules/mocha/node_modules/cliui": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
+ "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^7.0.0"
+ }
+ },
+ "node_modules/mocha/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/mocha/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/mocha/node_modules/debug": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
+ "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.1.2"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/mocha/node_modules/debug/node_modules/ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/mocha/node_modules/escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/mocha/node_modules/glob": {
+ "version": "7.1.6",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
+ "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
+ "deprecated": "Glob versions prior to v9 are no longer supported",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/mocha/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/mocha/node_modules/js-yaml": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz",
+ "integrity": "sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/mocha/node_modules/minimatch": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+ "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/mocha/node_modules/supports-color": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
+ }
+ },
+ "node_modules/mocha/node_modules/wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/mocha/node_modules/y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/mocha/node_modules/yargs": {
+ "version": "16.2.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
+ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "cliui": "^7.0.2",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.0",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^20.2.2"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/module-not-found-error": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/module-not-found-error/-/module-not-found-error-1.0.1.tgz",
+ "integrity": "sha512-pEk4ECWQXV6z2zjhRZUongnLJNUeGQJ3w6OQ5ctGwD+i5o93qjRQUk2Rt6VdNeu3sEP0AB4LcfvdebpxBRVr4g==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "license": "MIT"
+ },
+ "node_modules/mute-stream": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
+ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/nanoid": {
+ "version": "3.1.20",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz",
+ "integrity": "sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/natural-compare": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/next-tick": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz",
+ "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/nice-try": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
+ "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/nise": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/nise/-/nise-4.1.0.tgz",
+ "integrity": "sha512-eQMEmGN/8arp0xsvGoQ+B1qvSkR73B1nWSCh7nOt5neMCtwcQVYQGdzQMhcNscktTsWB54xnlSQFzOAPJD8nXA==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@sinonjs/commons": "^1.7.0",
+ "@sinonjs/fake-timers": "^6.0.0",
+ "@sinonjs/text-encoding": "^0.7.1",
+ "just-extend": "^4.0.2",
+ "path-to-regexp": "^1.7.0"
+ }
+ },
+ "node_modules/no-case": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz",
+ "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==",
+ "license": "MIT",
+ "dependencies": {
+ "lower-case": "^1.1.1"
+ }
+ },
+ "node_modules/node-fetch": {
+ "version": "2.6.7",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz",
+ "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==",
+ "license": "MIT",
+ "dependencies": {
+ "whatwg-url": "^5.0.0"
+ },
+ "engines": {
+ "node": "4.x || >=6.0.0"
+ },
+ "peerDependencies": {
+ "encoding": "^0.1.0"
+ },
+ "peerDependenciesMeta": {
+ "encoding": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/node-fetch/node_modules/tr46": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
+ "license": "MIT"
+ },
+ "node_modules/node-fetch/node_modules/webidl-conversions": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/node-fetch/node_modules/whatwg-url": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
+ "license": "MIT",
+ "dependencies": {
+ "tr46": "~0.0.3",
+ "webidl-conversions": "^3.0.0"
+ }
+ },
+ "node_modules/node-preload": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz",
+ "integrity": "sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "process-on-spawn": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/node-releases": {
+ "version": "2.0.19",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
+ "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
+ "license": "MIT"
+ },
+ "node_modules/normalize-package-data": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
+ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "hosted-git-info": "^2.1.4",
+ "resolve": "^1.10.0",
+ "semver": "2 || 3 || 4 || 5",
+ "validate-npm-package-license": "^3.0.1"
+ }
+ },
+ "node_modules/normalize-package-data/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/normalize-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/normalize-url": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz",
+ "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/normalizeurl": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/normalizeurl/-/normalizeurl-1.0.0.tgz",
+ "integrity": "sha512-GyndB0rq1FmO49Vwy88c3jzp5G3OnjEbwVlm+vst+P5ANKQVtm+2682qgRptcZeZvU1I2E5RgCeZirqLuUQQEw==",
+ "license": "BSD"
+ },
+ "node_modules/nth-check": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
+ "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "boolbase": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/nth-check?sponsor=1"
+ }
+ },
+ "node_modules/nwsapi": {
+ "version": "2.2.18",
+ "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.18.tgz",
+ "integrity": "sha512-p1TRH/edngVEHVbwqWnxUViEmq5znDvyB+Sik5cmuLpGOIfDf/39zLiq3swPF8Vakqn+gvNiOQAZu8djYlQILA==",
+ "license": "MIT"
+ },
+ "node_modules/nyc": {
+ "version": "15.1.0",
+ "resolved": "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz",
+ "integrity": "sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "@istanbuljs/load-nyc-config": "^1.0.0",
+ "@istanbuljs/schema": "^0.1.2",
+ "caching-transform": "^4.0.0",
+ "convert-source-map": "^1.7.0",
+ "decamelize": "^1.2.0",
+ "find-cache-dir": "^3.2.0",
+ "find-up": "^4.1.0",
+ "foreground-child": "^2.0.0",
+ "get-package-type": "^0.1.0",
+ "glob": "^7.1.6",
+ "istanbul-lib-coverage": "^3.0.0",
+ "istanbul-lib-hook": "^3.0.0",
+ "istanbul-lib-instrument": "^4.0.0",
+ "istanbul-lib-processinfo": "^2.0.2",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-lib-source-maps": "^4.0.0",
+ "istanbul-reports": "^3.0.2",
+ "make-dir": "^3.0.0",
+ "node-preload": "^0.2.1",
+ "p-map": "^3.0.0",
+ "process-on-spawn": "^1.0.0",
+ "resolve-from": "^5.0.0",
+ "rimraf": "^3.0.0",
+ "signal-exit": "^3.0.2",
+ "spawn-wrap": "^2.0.0",
+ "test-exclude": "^6.0.0",
+ "yargs": "^15.0.2"
+ },
+ "bin": {
+ "nyc": "bin/nyc.js"
+ },
+ "engines": {
+ "node": ">=8.9"
+ }
+ },
+ "node_modules/nyc/node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/nyc/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/nyc/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/nyc/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/nyc/node_modules/resolve-from": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
+ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/oauth-sign": {
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
+ "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
+ "devOptional": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-inspect": {
+ "version": "1.13.4",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object-is": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz",
+ "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.assign": {
+ "version": "4.1.7",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz",
+ "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0",
+ "has-symbols": "^1.1.0",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.fromentries": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz",
+ "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.groupby": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz",
+ "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.values": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz",
+ "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/offline-github-changelog": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/offline-github-changelog/-/offline-github-changelog-1.7.0.tgz",
+ "integrity": "sha512-XSPCt/I6AHBbvGQITFmjxIe6JdbCneKg8MFvU9xhgvF7oKFwa5YxyhbXNqPYOqWc6QNEgb2AvFGQXjxvtA8c/Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "markdown-escape": "^1.0.2",
+ "meow": "^5.0.0"
+ },
+ "bin": {
+ "offline-github-changelog": "bin/offline-github-changelog"
+ },
+ "engines": {
+ "node": ">=6.9.1"
+ }
+ },
+ "node_modules/once": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+ "license": "ISC",
+ "dependencies": {
+ "wrappy": "1"
+ }
+ },
+ "node_modules/onetime": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
+ "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "mimic-fn": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/optionator": {
+ "version": "0.9.4",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
+ "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "deep-is": "^0.1.3",
+ "fast-levenshtein": "^2.0.6",
+ "levn": "^0.4.1",
+ "prelude-ls": "^1.2.1",
+ "type-check": "^0.4.0",
+ "word-wrap": "^1.2.5"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/os-tmpdir": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
+ "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/own-keys": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz",
+ "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==",
+ "license": "MIT",
+ "dependencies": {
+ "get-intrinsic": "^1.2.6",
+ "object-keys": "^1.1.1",
+ "safe-push-apply": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "license": "MIT",
+ "dependencies": {
+ "yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-map": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz",
+ "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "aggregate-error": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/p-try": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/package-hash": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz",
+ "integrity": "sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "graceful-fs": "^4.1.15",
+ "hasha": "^5.0.0",
+ "lodash.flattendeep": "^4.4.0",
+ "release-zalgo": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pako": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
+ "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==",
+ "license": "(MIT AND Zlib)"
+ },
+ "node_modules/param-case": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz",
+ "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==",
+ "license": "MIT",
+ "dependencies": {
+ "no-case": "^2.2.0"
+ }
+ },
+ "node_modules/parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "callsites": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/parse-json": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.0.0",
+ "error-ex": "^1.3.1",
+ "json-parse-even-better-errors": "^2.3.0",
+ "lines-and-columns": "^1.1.6"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/parse5": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
+ "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
+ "license": "MIT"
+ },
+ "node_modules/passerror": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/passerror/-/passerror-1.1.1.tgz",
+ "integrity": "sha512-PwrEQJBkJMxnxG+tdraz95vTstYnCRqiURNbGtg/vZHLgcAODc9hbiD5ZumGUoh3bpw0F0qKLje7Vd2Fd5Lx3g==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-is-absolute": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-parse": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
+ "license": "MIT"
+ },
+ "node_modules/path-to-regexp": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.9.0.tgz",
+ "integrity": "sha512-xIp7/apCFJuUHdDLWe8O1HIkb0kQrOMb/0u6FXQjemHn/ii5LrIzU6bdECnsiTF/GjZkMEKg1xdiZwNqDYlZ6g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "isarray": "0.0.1"
+ }
+ },
+ "node_modules/path-to-regexp/node_modules/isarray": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
+ "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/path-type": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pegjs": {
+ "version": "0.10.0",
+ "resolved": "https://registry.npmjs.org/pegjs/-/pegjs-0.10.0.tgz",
+ "integrity": "sha512-qI5+oFNEGi3L5HAxDwN2LA4Gg7irF70Zs25edhjld9QemOgp0CbvMtbFcMvFtEo1OityPrcCzkQFB8JP/hxgow==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "pegjs": "bin/pegjs"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/pend": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
+ "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
+ "license": "MIT"
+ },
+ "node_modules/perfectionist-dfd": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/perfectionist-dfd/-/perfectionist-dfd-3.0.3.tgz",
+ "integrity": "sha512-ImEojwhikE2ltOMSKrLNHx4a+tkL+4CUPenvzTyU6m5KvJpPaiSVR8Bsqutw2beV2CD0dEzKwenNoxUCAVNJbg==",
+ "license": "MIT",
+ "dependencies": {
+ "defined": "^1.0.0",
+ "minimist": "^1.2.6",
+ "postcss-scss": "^4.0.3",
+ "postcss-value-parser": "^4.2.0",
+ "read-file-stdin": "^0.2.1",
+ "semver": "^7.5.4",
+ "string.prototype.repeat": "^1.0.0",
+ "write-file-stdout": "^0.0.2"
+ },
+ "bin": {
+ "perfectionist-dfd": "bin/cmd.js"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.12"
+ }
+ },
+ "node_modules/perfectionist-dfd/node_modules/semver": {
+ "version": "7.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
+ "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/performance-now": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
+ "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/picocolors": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+ "license": "ISC"
+ },
+ "node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/pify": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+ "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "find-up": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pkg-dir/node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pkg-dir/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pkg-dir/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/pkg-dir/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pkg-up": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz",
+ "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "find-up": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pkg-up/node_modules/find-up": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
+ "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/pkg-up/node_modules/locate-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
+ "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^3.0.0",
+ "path-exists": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/pkg-up/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/pkg-up/node_modules/p-locate": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
+ "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/pkg-up/node_modules/path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/possible-typed-array-names": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz",
+ "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.5.3",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz",
+ "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "nanoid": "^3.3.8",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/postcss-calc": {
+ "version": "8.2.4",
+ "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz",
+ "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-selector-parser": "^6.0.9",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.2"
+ }
+ },
+ "node_modules/postcss-colormin": {
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz",
+ "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.21.4",
+ "caniuse-api": "^3.0.0",
+ "colord": "^2.9.1",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-convert-values": {
+ "version": "5.1.3",
+ "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz",
+ "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.21.4",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-discard-comments": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz",
+ "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==",
+ "license": "MIT",
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-discard-duplicates": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz",
+ "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==",
+ "license": "MIT",
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-discard-empty": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz",
+ "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==",
+ "license": "MIT",
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-discard-overridden": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz",
+ "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==",
+ "license": "MIT",
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-merge-longhand": {
+ "version": "5.1.7",
+ "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz",
+ "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0",
+ "stylehacks": "^5.1.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-merge-rules": {
+ "version": "5.1.4",
+ "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz",
+ "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.21.4",
+ "caniuse-api": "^3.0.0",
+ "cssnano-utils": "^3.1.0",
+ "postcss-selector-parser": "^6.0.5"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-minify-font-values": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz",
+ "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-minify-gradients": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz",
+ "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==",
+ "license": "MIT",
+ "dependencies": {
+ "colord": "^2.9.1",
+ "cssnano-utils": "^3.1.0",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-minify-params": {
+ "version": "5.1.4",
+ "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz",
+ "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.21.4",
+ "cssnano-utils": "^3.1.0",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-minify-selectors": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz",
+ "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-selector-parser": "^6.0.5"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-normalize-charset": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz",
+ "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==",
+ "license": "MIT",
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-normalize-display-values": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz",
+ "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-normalize-positions": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz",
+ "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-normalize-repeat-style": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz",
+ "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-normalize-string": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz",
+ "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-normalize-timing-functions": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz",
+ "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-normalize-unicode": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz",
+ "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.21.4",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-normalize-url": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz",
+ "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==",
+ "license": "MIT",
+ "dependencies": {
+ "normalize-url": "^6.0.1",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-normalize-whitespace": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz",
+ "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-ordered-values": {
+ "version": "5.1.3",
+ "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz",
+ "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==",
+ "license": "MIT",
+ "dependencies": {
+ "cssnano-utils": "^3.1.0",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-reduce-initial": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz",
+ "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.21.4",
+ "caniuse-api": "^3.0.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-reduce-transforms": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz",
+ "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-scss": {
+ "version": "4.0.9",
+ "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz",
+ "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss-scss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.29"
+ }
+ },
+ "node_modules/postcss-selector-parser": {
+ "version": "6.1.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
+ "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
+ "license": "MIT",
+ "dependencies": {
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/postcss-svgo": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz",
+ "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0",
+ "svgo": "^2.7.0"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-unique-selectors": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz",
+ "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-selector-parser": "^6.0.5"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/postcss-value-parser": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
+ "license": "MIT"
+ },
+ "node_modules/postcss/node_modules/nanoid": {
+ "version": "3.3.10",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.10.tgz",
+ "integrity": "sha512-vSJJTG+t/dIKAUhUDw/dLdZ9s//5OxcHqLaDWWrW4Cdq7o6tdLIczUkMXt2MBNmk6sJRZBZRXVixs7URY1CmIg==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/prelude-ls": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/prettier": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.2.tgz",
+ "integrity": "sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "prettier": "bin-prettier.js"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/pretty-bytes": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
+ "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/prismjs": {
+ "version": "1.30.0",
+ "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz",
+ "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/process-on-spawn": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.1.0.tgz",
+ "integrity": "sha512-JOnOPQ/8TZgjs1JIH/m9ni7FfimjNa/PRx7y/Wb5qdItsnhO0jE4AT7fC0HjC28DUQWDr50dwSYZLdRMlqDq3Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fromentries": "^1.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/progress": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
+ "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/proxy-from-env": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
+ "license": "MIT"
+ },
+ "node_modules/proxyquire": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/proxyquire/-/proxyquire-2.1.3.tgz",
+ "integrity": "sha512-BQWfCqYM+QINd+yawJz23tbBM40VIGXOdDw3X344KcclI/gtBbdWF6SlQ4nK/bYhF9d27KYug9WzljHC6B9Ysg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fill-keys": "^1.0.2",
+ "module-not-found-error": "^1.0.1",
+ "resolve": "^1.11.1"
+ }
+ },
+ "node_modules/psl": {
+ "version": "1.15.0",
+ "resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz",
+ "integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==",
+ "license": "MIT",
+ "dependencies": {
+ "punycode": "^2.3.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/lupomontero"
+ }
+ },
+ "node_modules/pump": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz",
+ "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==",
+ "license": "MIT",
+ "dependencies": {
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
+ }
+ },
+ "node_modules/punycode": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/puppeteer": {
+ "version": "19.11.1",
+ "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.11.1.tgz",
+ "integrity": "sha512-39olGaX2djYUdhaQQHDZ0T0GwEp+5f9UB9HmEP0qHfdQHIq0xGQZuAZ5TLnJIc/88SrPLpEflPC+xUqOTv3c5g==",
+ "deprecated": "< 22.8.2 is no longer supported",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@puppeteer/browsers": "0.5.0",
+ "cosmiconfig": "8.1.3",
+ "https-proxy-agent": "5.0.1",
+ "progress": "2.0.3",
+ "proxy-from-env": "1.1.0",
+ "puppeteer-core": "19.11.1"
+ }
+ },
+ "node_modules/puppeteer-core": {
+ "version": "19.11.1",
+ "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-19.11.1.tgz",
+ "integrity": "sha512-qcuC2Uf0Fwdj9wNtaTZ2OvYRraXpAK+puwwVW8ofOhOgLPZyz1c68tsorfIZyCUOpyBisjr+xByu7BMbEYMepA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@puppeteer/browsers": "0.5.0",
+ "chromium-bidi": "0.4.7",
+ "cross-fetch": "3.1.5",
+ "debug": "4.3.4",
+ "devtools-protocol": "0.0.1107588",
+ "extract-zip": "2.0.1",
+ "https-proxy-agent": "5.0.1",
+ "proxy-from-env": "1.1.0",
+ "tar-fs": "2.1.1",
+ "unbzip2-stream": "1.4.3",
+ "ws": "8.13.0"
+ },
+ "engines": {
+ "node": ">=14.14.0"
+ },
+ "peerDependencies": {
+ "typescript": ">= 4.7.4"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/puppeteer-core/node_modules/debug": {
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.1.2"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/puppeteer-core/node_modules/ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "license": "MIT"
+ },
+ "node_modules/puppeteer-core/node_modules/ws": {
+ "version": "8.13.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz",
+ "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10.0.0"
+ },
+ "peerDependencies": {
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": ">=5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/qs": {
+ "version": "6.14.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz",
+ "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "side-channel": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/querystringify": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz",
+ "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==",
+ "license": "MIT"
+ },
+ "node_modules/quick-lru": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-1.1.0.tgz",
+ "integrity": "sha512-tRS7sTgyxMXtLum8L65daJnHUhfDUgboRdcWW2bR9vBfrj2+O5HSMbQOJfJJjIVSPFqbBCF37FpwWXGitDc5tA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/quoted-printable": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/quoted-printable/-/quoted-printable-1.0.0.tgz",
+ "integrity": "sha512-PDpa4cdrc9UfGW8UlMeaQYmY+b+dGdCjf+3rhSpv6X5U60XQ+rHgS0kMGdDriGs+TotUakgQjoPImkgTBRw9+g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "utf8": "^2.0.0"
+ },
+ "bin": {
+ "quoted-printable": "bin/quoted-printable"
+ }
+ },
+ "node_modules/ramda": {
+ "version": "0.27.2",
+ "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.27.2.tgz",
+ "integrity": "sha512-SbiLPU40JuJniHexQSAgad32hfwd+DRUdwF2PlVuI5RZD0/vahUco7R8vD86J/tcEKKF9vZrUVwgtmGCqlCKyA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/randombytes": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
+ "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "^5.1.0"
+ }
+ },
+ "node_modules/read-file-stdin": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/read-file-stdin/-/read-file-stdin-0.2.1.tgz",
+ "integrity": "sha512-dAqysQ4kfj9m5aejZOPr+aRGXZJXdLkMOLZ3BXMwMBQHiO+aylGBFJPh88AYPQrOf+D43F4Uc2oUIW9kBlItLA==",
+ "license": "MIT",
+ "dependencies": {
+ "gather-stream": "^1.0.0"
+ }
+ },
+ "node_modules/read-pkg": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
+ "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/normalize-package-data": "^2.4.0",
+ "normalize-package-data": "^2.5.0",
+ "parse-json": "^5.0.0",
+ "type-fest": "^0.6.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/read-pkg-up": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-6.0.0.tgz",
+ "integrity": "sha512-odtTvLl+EXo1eTsMnoUHRmg/XmXdTkwXVxy4VFE9Kp6cCq7b3l7QMdBndND3eAFzrbSAXC/WCUOQQ9rLjifKZw==",
+ "license": "MIT",
+ "dependencies": {
+ "find-up": "^4.0.0",
+ "read-pkg": "^5.1.1",
+ "type-fest": "^0.5.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/read-pkg-up/node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/read-pkg-up/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/read-pkg-up/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/read-pkg-up/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/read-pkg-up/node_modules/type-fest": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.5.2.tgz",
+ "integrity": "sha512-DWkS49EQKVX//Tbupb9TFa19c7+MK1XmzkrZUR8TAktmE/DizXoaoJV6TZ/tSIPXipqNiRI6CyAe7x69Jb6RSw==",
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/read-pkg/node_modules/type-fest": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz",
+ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==",
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/readable-stream": {
+ "version": "3.6.2",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
+ "license": "MIT",
+ "dependencies": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/readdirp": {
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
+ "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "picomatch": "^2.2.1"
+ },
+ "engines": {
+ "node": ">=8.10.0"
+ }
+ },
+ "node_modules/redent": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/redent/-/redent-2.0.0.tgz",
+ "integrity": "sha512-XNwrTx77JQCEMXTeb8movBKuK75MgH0RZkujNuDKCezemx/voapl9i2gCSi8WWm8+ox5ycJi1gxF22fR7c0Ciw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "indent-string": "^3.0.0",
+ "strip-indent": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/redent/node_modules/indent-string": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz",
+ "integrity": "sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/reduce-css-calc": {
+ "version": "2.1.8",
+ "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz",
+ "integrity": "sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==",
+ "license": "MIT",
+ "dependencies": {
+ "css-unit-converter": "^1.1.1",
+ "postcss-value-parser": "^3.3.0"
+ }
+ },
+ "node_modules/reduce-css-calc/node_modules/postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "license": "MIT"
+ },
+ "node_modules/reflect.getprototypeof": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz",
+ "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.9",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.7",
+ "get-proto": "^1.0.1",
+ "which-builtin-type": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/regenerator-runtime": {
+ "version": "0.14.1",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
+ "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==",
+ "license": "MIT"
+ },
+ "node_modules/regexp.prototype.flags": {
+ "version": "1.5.4",
+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz",
+ "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-errors": "^1.3.0",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "set-function-name": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/regexpp": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
+ "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mysticatea"
+ }
+ },
+ "node_modules/relateurl": {
+ "version": "0.2.7",
+ "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz",
+ "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/release-zalgo": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz",
+ "integrity": "sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "es6-error": "^4.0.1"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/repeat-string": {
+ "version": "1.6.1",
+ "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
+ "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/repeating": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz",
+ "integrity": "sha512-Nh30JLeMHdoI+AsQ5eblhZ7YlTsM9wiJQe/AHIunlK3KWzvXhXb36IJ7K1IOeRjIOtzMjdUHjwXUFxKJoPTSOg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-finite": "^1.0.0"
+ },
+ "bin": {
+ "repeating": "cli.js"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/request": {
+ "version": "2.88.2",
+ "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
+ "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
+ "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "aws-sign2": "~0.7.0",
+ "aws4": "^1.8.0",
+ "caseless": "~0.12.0",
+ "combined-stream": "~1.0.6",
+ "extend": "~3.0.2",
+ "forever-agent": "~0.6.1",
+ "form-data": "~2.3.2",
+ "har-validator": "~5.1.3",
+ "http-signature": "~1.2.0",
+ "is-typedarray": "~1.0.0",
+ "isstream": "~0.1.2",
+ "json-stringify-safe": "~5.0.1",
+ "mime-types": "~2.1.19",
+ "oauth-sign": "~0.9.0",
+ "performance-now": "^2.1.0",
+ "qs": "~6.5.2",
+ "safe-buffer": "^5.1.2",
+ "tough-cookie": "~2.5.0",
+ "tunnel-agent": "^0.6.0",
+ "uuid": "^3.3.2"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/request/node_modules/form-data": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
+ "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.6",
+ "mime-types": "^2.1.12"
+ },
+ "engines": {
+ "node": ">= 0.12"
+ }
+ },
+ "node_modules/request/node_modules/qs": {
+ "version": "6.5.3",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz",
+ "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.6"
+ }
+ },
+ "node_modules/request/node_modules/tough-cookie": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
+ "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "psl": "^1.1.28",
+ "punycode": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.8"
+ }
+ },
+ "node_modules/request/node_modules/uuid": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
+ "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "uuid": "bin/uuid"
+ }
+ },
+ "node_modules/require-directory": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/require-from-string": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
+ "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/require-main-filename": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
+ "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
+ "license": "ISC"
+ },
+ "node_modules/requires-port": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
+ "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==",
+ "license": "MIT"
+ },
+ "node_modules/resemblejs": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/resemblejs/-/resemblejs-4.1.0.tgz",
+ "integrity": "sha512-s9/+nQ7bnT+C7XBdnMCcC/QppvJcTmJ7fXZMtuTZMFJycN2kj/tacleyx9O1mURPDYNZsgKMfcamImM9+X+keQ==",
+ "dev": true,
+ "license": "MIT",
+ "optionalDependencies": {
+ "canvas": "2.9.0"
+ }
+ },
+ "node_modules/resolve": {
+ "version": "1.22.10",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
+ "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
+ "license": "MIT",
+ "dependencies": {
+ "is-core-module": "^2.16.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/restore-cursor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
+ "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "onetime": "^5.1.0",
+ "signal-exit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/rfc2047": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/rfc2047/-/rfc2047-2.0.0.tgz",
+ "integrity": "sha512-IAZLLZ7ucMF8eRWOxQ3N5TqnwdxiOApvNt56rtxF1tBHTM+M5yxvNfflfOERgTSKROIgL/AzUuHwCpi/zqSGLw==",
+ "dev": true,
+ "license": "BSD",
+ "dependencies": {
+ "iconv-lite": "0.4.5"
+ }
+ },
+ "node_modules/rfc2047/node_modules/iconv-lite": {
+ "version": "0.4.5",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.5.tgz",
+ "integrity": "sha512-LQ4GtDkFagYaac8u4rE73zWu7h0OUUmR0qVBOgzLyFSoJhoDG2xV9PZJWWyVVcYha/9/RZzQHUinFMbNKiOoAA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/rfc2231": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/rfc2231/-/rfc2231-1.3.0.tgz",
+ "integrity": "sha512-MuyZ6PPPKPmA9ifNmg7Jf/2jtyuSHC1Zwry26qMTz3pzbEDo+mvjCvot8b7BxWVZ3nCfWfeP8SHvGCO/bmbxTg==",
+ "dev": true,
+ "license": "BSD",
+ "dependencies": {
+ "iconv-lite": "0.4.5"
+ }
+ },
+ "node_modules/rfc2231/node_modules/iconv-lite": {
+ "version": "0.4.5",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.5.tgz",
+ "integrity": "sha512-LQ4GtDkFagYaac8u4rE73zWu7h0OUUmR0qVBOgzLyFSoJhoDG2xV9PZJWWyVVcYha/9/RZzQHUinFMbNKiOoAA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/rimraf": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
+ "deprecated": "Rimraf versions prior to v4 are no longer supported",
+ "devOptional": true,
+ "license": "ISC",
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/run-async": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
+ "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/rxjs": {
+ "version": "6.6.7",
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz",
+ "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "tslib": "^1.9.0"
+ },
+ "engines": {
+ "npm": ">=2.0.0"
+ }
+ },
+ "node_modules/safe-array-concat": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz",
+ "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.2",
+ "get-intrinsic": "^1.2.6",
+ "has-symbols": "^1.1.0",
+ "isarray": "^2.0.5"
+ },
+ "engines": {
+ "node": ">=0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/safe-push-apply": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz",
+ "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "isarray": "^2.0.5"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/safe-regex-test": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz",
+ "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "is-regex": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+ "license": "MIT"
+ },
+ "node_modules/saxes": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
+ "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
+ "license": "ISC",
+ "dependencies": {
+ "xmlchars": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/schemes": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/schemes/-/schemes-1.4.0.tgz",
+ "integrity": "sha512-ImFy9FbCsQlVgnE3TCWmLPCFnVzx0lHL/l+umHplDqAKd0dzFpnS6lFZIpagBlYhKwzVmlV36ec0Y1XTu8JBAQ==",
+ "license": "MIT",
+ "dependencies": {
+ "extend": "^3.0.0"
+ }
+ },
+ "node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/serialize-javascript": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz",
+ "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "randombytes": "^2.1.0"
+ }
+ },
+ "node_modules/set-blocking": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==",
+ "license": "ISC"
+ },
+ "node_modules/set-function-length": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
+ "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
+ "license": "MIT",
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.4",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/set-function-name": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz",
+ "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==",
+ "license": "MIT",
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-errors": "^1.3.0",
+ "functions-have-names": "^1.2.3",
+ "has-property-descriptors": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/set-proto": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz",
+ "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==",
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "shebang-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/side-channel": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3",
+ "side-channel-list": "^1.0.0",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/sift": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/sift/-/sift-7.0.1.tgz",
+ "integrity": "sha512-oqD7PMJ+uO6jV9EQCl0LrRw1OwsiPsiFQR5AR30heR+4Dl7jBBbDLnNvWiak20tzZlSE1H7RB30SX/1j/YYT7g==",
+ "license": "MIT"
+ },
+ "node_modules/signal-exit": {
+ "version": "3.0.7",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
+ "devOptional": true,
+ "license": "ISC"
+ },
+ "node_modules/sinon": {
+ "version": "9.2.4",
+ "resolved": "https://registry.npmjs.org/sinon/-/sinon-9.2.4.tgz",
+ "integrity": "sha512-zljcULZQsJxVra28qIAL6ow1Z9tpattkCTEJR4RBP3TGc00FcttsP5pK284Nas5WjMZU5Yzy3kAIp3B3KRf5Yg==",
+ "deprecated": "16.1.1",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@sinonjs/commons": "^1.8.1",
+ "@sinonjs/fake-timers": "^6.0.1",
+ "@sinonjs/samsam": "^5.3.1",
+ "diff": "^4.0.2",
+ "nise": "^4.0.4",
+ "supports-color": "^7.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/sinon"
+ }
+ },
+ "node_modules/sinon/node_modules/diff": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
+ "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.3.1"
+ }
+ },
+ "node_modules/sinon/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/sinon/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/slice-ansi": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz",
+ "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "astral-regex": "^2.0.0",
+ "is-fullwidth-code-point": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/slice-ansi?sponsor=1"
+ }
+ },
+ "node_modules/slice-ansi/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/slice-ansi/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/slice-ansi/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/socketerrors": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/socketerrors/-/socketerrors-0.3.0.tgz",
+ "integrity": "sha512-N7VMAO/pIeDP5IqKcbzy5+ywWwZPnT7/fUjg6faKFxB9tVBo/J5xhIJKHJld0RWx1shlKrEy8fsoRm2Xt0GGGQ==",
+ "license": "BSD",
+ "dependencies": {
+ "createerror": "1.1.0",
+ "httperrors": "2.0.1"
+ }
+ },
+ "node_modules/socketerrors/node_modules/createerror": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/createerror/-/createerror-1.1.0.tgz",
+ "integrity": "sha512-7zzU0CDuRVge0otam9eejW1m6qqKcSzBgR9lwoypaW7JU4bvsHhRzJlgmJfXGjKLrpjI6R7pY5DYc9b0w3DESw==",
+ "engines": {
+ "node": ">= 0.2.0"
+ }
+ },
+ "node_modules/socketerrors/node_modules/httperrors": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/httperrors/-/httperrors-2.0.1.tgz",
+ "integrity": "sha512-kZRKMAMirSxgKON0qIFXrcXbfFf8TMeP7zwzJd/RS7wQHZja07c1BQmkdjaO1OCef5qrbrYdiuhrdRhkgFClKg==",
+ "dependencies": {
+ "createerror": "1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.2.0"
+ }
+ },
+ "node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/source-map-js": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/source-map-support": {
+ "version": "0.5.21",
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
+ "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
+ "license": "MIT",
+ "dependencies": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ }
+ },
+ "node_modules/spawn-wrap": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz",
+ "integrity": "sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "foreground-child": "^2.0.0",
+ "is-windows": "^1.0.2",
+ "make-dir": "^3.0.0",
+ "rimraf": "^3.0.0",
+ "signal-exit": "^3.0.2",
+ "which": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/spdx-correct": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
+ "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "node_modules/spdx-exceptions": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz",
+ "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==",
+ "license": "CC-BY-3.0"
+ },
+ "node_modules/spdx-expression-parse": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
+ "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
+ "license": "MIT",
+ "dependencies": {
+ "spdx-exceptions": "^2.1.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "node_modules/spdx-license-ids": {
+ "version": "3.0.21",
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz",
+ "integrity": "sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==",
+ "license": "CC0-1.0"
+ },
+ "node_modules/specificity": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/specificity/-/specificity-0.4.1.tgz",
+ "integrity": "sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==",
+ "license": "MIT",
+ "bin": {
+ "specificity": "bin/specificity"
+ }
+ },
+ "node_modules/sprintf-js": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
+ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
+ "dev": true,
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/sshpk": {
+ "version": "1.18.0",
+ "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz",
+ "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "asn1": "~0.2.3",
+ "assert-plus": "^1.0.0",
+ "bcrypt-pbkdf": "^1.0.0",
+ "dashdash": "^1.12.0",
+ "ecc-jsbn": "~0.1.1",
+ "getpass": "^0.1.1",
+ "jsbn": "~0.1.0",
+ "safer-buffer": "^2.0.2",
+ "tweetnacl": "~0.14.0"
+ },
+ "bin": {
+ "sshpk-conv": "bin/sshpk-conv",
+ "sshpk-sign": "bin/sshpk-sign",
+ "sshpk-verify": "bin/sshpk-verify"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/stable": {
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
+ "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
+ "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility",
+ "license": "MIT"
+ },
+ "node_modules/string_decoder": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "~5.2.0"
+ }
+ },
+ "node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string.prototype.repeat": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz",
+ "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==",
+ "license": "MIT",
+ "dependencies": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.5"
+ }
+ },
+ "node_modules/string.prototype.trim": {
+ "version": "1.2.10",
+ "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz",
+ "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.2",
+ "define-data-property": "^1.1.4",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-object-atoms": "^1.0.0",
+ "has-property-descriptors": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.trimend": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz",
+ "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.2",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.trimstart": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz",
+ "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/stringify-object": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz",
+ "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "get-own-enumerable-property-symbols": "^3.0.0",
+ "is-obj": "^1.0.1",
+ "is-regexp": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-bom": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
+ "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-comments": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz",
+ "integrity": "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==",
+ "license": "MIT",
+ "dependencies": {
+ "babel-extract-comments": "^1.0.0",
+ "babel-plugin-transform-object-rest-spread": "^6.26.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/strip-indent": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz",
+ "integrity": "sha512-RsSNPLpq6YUL7QYy44RnPVTn/lcVZtb48Uof3X5JLbF4zD/Gs7ZFDv2HWol+leoQN2mT86LAzSshGfkTlSOpsA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/strip-json-comments": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/stylehacks": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz",
+ "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.21.4",
+ "postcss-selector-parser": "^6.0.4"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.15"
+ }
+ },
+ "node_modules/subset-font": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/subset-font/-/subset-font-2.4.0.tgz",
+ "integrity": "sha512-DA/45nIj4NiseVdfHxVdVGL7hvNo3Ol6HjEm3KSYtPyDcsr6jh8Q37vSgz+A722wMfUd6nL8kgsi7uGv9DExXQ==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "fontverter": "^2.0.0",
+ "harfbuzzjs": "^0.4.0",
+ "lodash": "^4.17.21",
+ "p-limit": "^3.1.0"
+ }
+ },
+ "node_modules/subset-font/node_modules/harfbuzzjs": {
+ "version": "0.4.5",
+ "resolved": "https://registry.npmjs.org/harfbuzzjs/-/harfbuzzjs-0.4.5.tgz",
+ "integrity": "sha512-dDMkI7mWWcYTJtyUZmS6A6SfzITEjJyxaFQCup8wGlli9eaWTEjoS/gDUGnv6PQlXExOXWhWY1Hq/h3J03Tfow==",
+ "license": "MIT"
+ },
+ "node_modules/supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/supports-preserve-symlinks-flag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/svgo": {
+ "version": "2.8.0",
+ "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz",
+ "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==",
+ "license": "MIT",
+ "dependencies": {
+ "@trysound/sax": "0.2.0",
+ "commander": "^7.2.0",
+ "css-select": "^4.1.3",
+ "css-tree": "^1.1.3",
+ "csso": "^4.2.0",
+ "picocolors": "^1.0.0",
+ "stable": "^0.1.8"
+ },
+ "bin": {
+ "svgo": "bin/svgo"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/svgo/node_modules/commander": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
+ "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/symbol-tree": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
+ "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
+ "license": "MIT"
+ },
+ "node_modules/table": {
+ "version": "6.9.0",
+ "resolved": "https://registry.npmjs.org/table/-/table-6.9.0.tgz",
+ "integrity": "sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "ajv": "^8.0.1",
+ "lodash.truncate": "^4.4.2",
+ "slice-ansi": "^4.0.0",
+ "string-width": "^4.2.3",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=10.0.0"
+ }
+ },
+ "node_modules/table/node_modules/ajv": {
+ "version": "8.17.1",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
+ "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.3",
+ "fast-uri": "^3.0.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/table/node_modules/json-schema-traverse": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/tar-fs": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz",
+ "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==",
+ "license": "MIT",
+ "dependencies": {
+ "chownr": "^1.1.1",
+ "mkdirp-classic": "^0.5.2",
+ "pump": "^3.0.0",
+ "tar-stream": "^2.1.4"
+ }
+ },
+ "node_modules/tar-stream": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
+ "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
+ "license": "MIT",
+ "dependencies": {
+ "bl": "^4.0.3",
+ "end-of-stream": "^1.4.1",
+ "fs-constants": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^3.1.1"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/teepee": {
+ "version": "2.31.2",
+ "resolved": "https://registry.npmjs.org/teepee/-/teepee-2.31.2.tgz",
+ "integrity": "sha512-Er4CNK1mccfc2uvN+QkJcAU+4j6QtMA9cHrdnxF9Y8VzuTKMRnnHyVrmxfyLLCK23SyPAYkWBe7EBjmwC7sRNQ==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "bluebird": "2.9.34",
+ "createerror": "1.2.0",
+ "dnserrors": "2.1.2",
+ "form-data": "2.1.4",
+ "httperrors": "2.2.0",
+ "is-stream": "1.1.0",
+ "lodash.assign": "^4.2.0",
+ "lodash.clone": "^4.5.0",
+ "lodash.defaults": "^4.2.0",
+ "lodash.omit": "^4.5.0",
+ "lodash.uniq": "^4.5.0",
+ "passerror": "1.1.1",
+ "socketerrors": "^0.3.0"
+ }
+ },
+ "node_modules/teepee/node_modules/bluebird": {
+ "version": "2.9.34",
+ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.9.34.tgz",
+ "integrity": "sha512-ZDzCb87X7/IP1uzQ5eJZB+WoQRGTnKL5DHWvPw6kkMbQseouiQIrEi3P1UGE0D1k0N5/+aP/5GMCyHZ1xYJyHQ==",
+ "license": "MIT"
+ },
+ "node_modules/teepee/node_modules/createerror": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/createerror/-/createerror-1.2.0.tgz",
+ "integrity": "sha512-EVt8Ao9RolJaWCsUOJ3ZGAVqc8SQiDg+JtDFjhuaZ5ep2G1ahdm7Gj/F3zNrqfv5SD8UdLuzHp1nBgMdDh9Y9g==",
+ "engines": {
+ "node": ">= 0.2.0"
+ }
+ },
+ "node_modules/teepee/node_modules/form-data": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz",
+ "integrity": "sha512-8HWGSLAPr+AG0hBpsqi5Ob8HrLStN/LWeqhpFl14d7FJgHK48TmgLoALPz69XSUR65YJzDfLUX/BM8+MLJLghQ==",
+ "license": "MIT",
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.5",
+ "mime-types": "^2.1.12"
+ },
+ "engines": {
+ "node": ">= 0.12"
+ }
+ },
+ "node_modules/teepee/node_modules/is-stream": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
+ "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/terser": {
+ "version": "5.39.0",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.39.0.tgz",
+ "integrity": "sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "@jridgewell/source-map": "^0.3.3",
+ "acorn": "^8.8.2",
+ "commander": "^2.20.0",
+ "source-map-support": "~0.5.20"
+ },
+ "bin": {
+ "terser": "bin/terser"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/test-exclude": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
+ "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "@istanbuljs/schema": "^0.1.2",
+ "glob": "^7.1.4",
+ "minimatch": "^3.0.4"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/text-table": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
+ "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/through": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
+ "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==",
+ "license": "MIT"
+ },
+ "node_modules/tmp": {
+ "version": "0.0.33",
+ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
+ "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "os-tmpdir": "~1.0.2"
+ },
+ "engines": {
+ "node": ">=0.6.0"
+ }
+ },
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
+ "node_modules/tough-cookie": {
+ "version": "4.1.4",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz",
+ "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "psl": "^1.1.33",
+ "punycode": "^2.1.1",
+ "universalify": "^0.2.0",
+ "url-parse": "^1.5.3"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/tr46": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz",
+ "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==",
+ "license": "MIT",
+ "dependencies": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "node_modules/trim-newlines": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-2.0.0.tgz",
+ "integrity": "sha512-MTBWv3jhVjTU7XR3IQHllbiJs8sc75a80OEhB6or/q7pLTWgQ0bMGQXXYQSrSuXe6WiKWDZ5txXY5P59a/coVA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/tsconfig-paths": {
+ "version": "3.15.0",
+ "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz",
+ "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/json5": "^0.0.29",
+ "json5": "^1.0.2",
+ "minimist": "^1.2.6",
+ "strip-bom": "^3.0.0"
+ }
+ },
+ "node_modules/tsconfig-paths/node_modules/json5": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
+ "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "json5": "lib/cli.js"
+ }
+ },
+ "node_modules/tsconfig-paths/node_modules/strip-bom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+ "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "dev": true,
+ "license": "0BSD"
+ },
+ "node_modules/tunnel-agent": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
+ "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/tweetnacl": {
+ "version": "0.14.5",
+ "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
+ "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==",
+ "dev": true,
+ "license": "Unlicense"
+ },
+ "node_modules/type": {
+ "version": "2.7.3",
+ "resolved": "https://registry.npmjs.org/type/-/type-2.7.3.tgz",
+ "integrity": "sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/type-check": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/type-detect": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
+ "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/type-fest": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/typed-array-buffer": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz",
+ "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "is-typed-array": "^1.1.14"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/typed-array-byte-length": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz",
+ "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "for-each": "^0.3.3",
+ "gopd": "^1.2.0",
+ "has-proto": "^1.2.0",
+ "is-typed-array": "^1.1.14"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typed-array-byte-offset": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz",
+ "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==",
+ "license": "MIT",
+ "dependencies": {
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.8",
+ "for-each": "^0.3.3",
+ "gopd": "^1.2.0",
+ "has-proto": "^1.2.0",
+ "is-typed-array": "^1.1.15",
+ "reflect.getprototypeof": "^1.0.9"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typed-array-length": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz",
+ "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "is-typed-array": "^1.1.13",
+ "possible-typed-array-names": "^1.0.0",
+ "reflect.getprototypeof": "^1.0.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typedarray-to-buffer": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
+ "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-typedarray": "^1.0.0"
+ }
+ },
+ "node_modules/uglify-js": {
+ "version": "3.19.3",
+ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz",
+ "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==",
+ "license": "BSD-2-Clause",
+ "bin": {
+ "uglifyjs": "bin/uglifyjs"
+ },
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/ukkonen": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/ukkonen/-/ukkonen-1.4.0.tgz",
+ "integrity": "sha512-g8SLGxflI0/VNH2C8j66KcfJXrU5StJglRQBYPNiChXFlOrqqYM1icOykOAAUgTeBpktaEuCm9hjpPinQ080PA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/unbox-primitive": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz",
+ "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "has-bigints": "^1.0.2",
+ "has-symbols": "^1.1.0",
+ "which-boxed-primitive": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/unbzip2-stream": {
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
+ "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
+ "license": "MIT",
+ "dependencies": {
+ "buffer": "^5.2.1",
+ "through": "^2.3.8"
+ }
+ },
+ "node_modules/underscore": {
+ "version": "1.13.7",
+ "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.7.tgz",
+ "integrity": "sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g==",
+ "license": "MIT"
+ },
+ "node_modules/undici-types": {
+ "version": "6.20.0",
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
+ "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
+ "license": "MIT",
+ "optional": true
+ },
+ "node_modules/unexpected": {
+ "version": "11.15.1",
+ "resolved": "https://registry.npmjs.org/unexpected/-/unexpected-11.15.1.tgz",
+ "integrity": "sha512-s3XfLMEKRPioyuC5cqOCl2oCgGEg4fLhIuFHcUf0IExkGXTafPlLrkcvWV76woFrXpdxWGShYpDDQXBA3lOUcA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "array-changes": "3.0.1",
+ "array-changes-async": "3.0.1",
+ "detect-indent": "3.0.1",
+ "diff": "4.0.2",
+ "greedy-interval-packer": "1.2.0",
+ "magicpen": "^6.2.1",
+ "ukkonen": "^1.4.0",
+ "unexpected-bluebird": "2.9.34-longstack2"
+ }
+ },
+ "node_modules/unexpected-bluebird": {
+ "version": "2.9.34-longstack2",
+ "resolved": "https://registry.npmjs.org/unexpected-bluebird/-/unexpected-bluebird-2.9.34-longstack2.tgz",
+ "integrity": "sha512-lAgr5q+ToN4cO+mCus6h9VLcnl27fCiWiCuDyx7Pcvf9IoFOaTRv0bauvikXRkg9+78c/1nDBbQxP+Wk9+uOCA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/unexpected-check": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/unexpected-check/-/unexpected-check-2.4.1.tgz",
+ "integrity": "sha512-80OaWuyDNr0K+XkAY2gKhfsT0dBsG2qQ1K+EdftiRCnxkMt7XZ6Zran+fi2CZD0q5NuXxkuXoPN29T5wcANbfg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "escodegen": "^1.9.0",
+ "esprima": "^4.0.0",
+ "estraverse": "^4.2.0",
+ "ignore": "^5.0.3",
+ "pkg-up": "^3.0.1"
+ },
+ "peerDependencies": {
+ "chance-generators": "^3.0.0",
+ "unexpected": "^10.40.0 || ^11.0.0-4"
+ }
+ },
+ "node_modules/unexpected-check/node_modules/escodegen": {
+ "version": "1.14.3",
+ "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz",
+ "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "esprima": "^4.0.1",
+ "estraverse": "^4.2.0",
+ "esutils": "^2.0.2",
+ "optionator": "^0.8.1"
+ },
+ "bin": {
+ "escodegen": "bin/escodegen.js",
+ "esgenerate": "bin/esgenerate.js"
+ },
+ "engines": {
+ "node": ">=4.0"
+ },
+ "optionalDependencies": {
+ "source-map": "~0.6.1"
+ }
+ },
+ "node_modules/unexpected-check/node_modules/estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/unexpected-check/node_modules/ignore": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/unexpected-check/node_modules/levn": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
+ "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/unexpected-check/node_modules/optionator": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
+ "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "deep-is": "~0.1.3",
+ "fast-levenshtein": "~2.0.6",
+ "levn": "~0.3.0",
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2",
+ "word-wrap": "~1.2.3"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/unexpected-check/node_modules/prelude-ls": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
+ "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/unexpected-check/node_modules/type-check": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
+ "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/unexpected-messy": {
+ "version": "8.2.1",
+ "resolved": "https://registry.npmjs.org/unexpected-messy/-/unexpected-messy-8.2.1.tgz",
+ "integrity": "sha512-tARmVE2m3PyL6x5WNL46C4r7o2jqlVdjt04SJhdxPqJN42FYzWL2gy95bQ2ulCkaiGlWrogZae5yRLvZqEN0jA==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "magicpen-media": "^1.5.0",
+ "messy": "^6.16.0",
+ "minimist": "^1.2.0",
+ "qs": "^6.5.1",
+ "underscore": "^1.8.3"
+ },
+ "peerDependencies": {
+ "messy": "^6.16.0",
+ "unexpected": "^10.27.0 || ^11.0.0-3"
+ }
+ },
+ "node_modules/unexpected-mitm": {
+ "version": "12.4.0",
+ "resolved": "https://registry.npmjs.org/unexpected-mitm/-/unexpected-mitm-12.4.0.tgz",
+ "integrity": "sha512-PAfwvOcinRoNtQtqaJDIY9t99I4KKn0Oivqjl5z/+97hwq689W1LKUkQsabM9knIxrDFB4dGk4PaUX+4I6oIlA==",
+ "dev": true,
+ "dependencies": {
+ "callsite": "^1.0.0",
+ "createerror": "1.1.0",
+ "detect-indent": "^5.0.0",
+ "memoizesync": "^1.1.1",
+ "messy": "^6.16.0",
+ "mitm-papandreou": "^1.7.0-patch1",
+ "underscore": "^1.8.3",
+ "unexpected-messy": "^8.2.0"
+ },
+ "peerDependencies": {
+ "unexpected": "^10.27.0 || ^11.0.0-3"
+ }
+ },
+ "node_modules/unexpected-mitm/node_modules/createerror": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/createerror/-/createerror-1.1.0.tgz",
+ "integrity": "sha512-7zzU0CDuRVge0otam9eejW1m6qqKcSzBgR9lwoypaW7JU4bvsHhRzJlgmJfXGjKLrpjI6R7pY5DYc9b0w3DESw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.2.0"
+ }
+ },
+ "node_modules/unexpected-mitm/node_modules/detect-indent": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz",
+ "integrity": "sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/unexpected-resemble": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/unexpected-resemble/-/unexpected-resemble-5.0.1.tgz",
+ "integrity": "sha512-9fhrQYvCrbseg8b24Mrhw4ubg/bcp0+sVOUobcg1WYxkeKz3+C/ht0qS6SW6qNBeHjBrvUwCeJQ4IhHHpZ73DA==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "eslint-plugin-n": "^15.1.0",
+ "gettemporaryfilepath": "1.0.1",
+ "magicpen-media": "^3.0.0",
+ "object-assign": "^4.1.1",
+ "resemblejs": "^4.0.0"
+ },
+ "peerDependencies": {
+ "unexpected": "^10.27.0 || ^11.0.0 || ^12.0.0 || ^13.0.0"
+ }
+ },
+ "node_modules/unexpected-resemble/node_modules/magicpen-media": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/magicpen-media/-/magicpen-media-3.0.2.tgz",
+ "integrity": "sha512-FJnM4w0qUO5ZqBm60z+JaiyZmStDRomEhpDbfO/rwp2WrGj2eT0X+MPt4FS3lfDz6vNrVEFmQWuHC8EpOm/NDg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "gettemporaryfilepath": "^1.0.0",
+ "lodash": "^4.17.11",
+ "mime": "^2.3.1"
+ }
+ },
+ "node_modules/unexpected-set": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/unexpected-set/-/unexpected-set-2.0.1.tgz",
+ "integrity": "sha512-SydpQwiUSAR+m2WHrK4LH4zcJosqzG3VA5XvDqLvxBgBOEZA3ftPjqF+IUj6NcvJUPAXt1NtbDehBNcX4EBJ/w==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "es6-set": "^0.1.5"
+ },
+ "peerDependencies": {
+ "unexpected": "^10.37.4 || ^11.0.0-4"
+ }
+ },
+ "node_modules/unexpected-sinon": {
+ "version": "10.11.2",
+ "resolved": "https://registry.npmjs.org/unexpected-sinon/-/unexpected-sinon-10.11.2.tgz",
+ "integrity": "sha512-N2KIKPweTVs6AK8cDKQTUwu0fGWyGt+cI/UJZ/eltAyOKgsHL9eILttdGfpZjI/iMYcHcbtUwIlXoHfmh6EcBw==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "sinon": "*",
+ "unexpected": "^10.8.0 || ^11.0.0-4"
+ }
+ },
+ "node_modules/unexpected/node_modules/diff": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
+ "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.3.1"
+ }
+ },
+ "node_modules/universalify": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz",
+ "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4.0.0"
+ }
+ },
+ "node_modules/update-browserslist-db": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
+ "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "escalade": "^3.2.0",
+ "picocolors": "^1.1.1"
+ },
+ "bin": {
+ "update-browserslist-db": "cli.js"
+ },
+ "peerDependencies": {
+ "browserslist": ">= 4.21.0"
+ }
+ },
+ "node_modules/upper-case": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz",
+ "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==",
+ "license": "MIT"
+ },
+ "node_modules/uri-js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "node_modules/urijs": {
+ "version": "1.19.11",
+ "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.11.tgz",
+ "integrity": "sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ==",
+ "license": "MIT"
+ },
+ "node_modules/url-parse": {
+ "version": "1.5.10",
+ "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz",
+ "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==",
+ "license": "MIT",
+ "dependencies": {
+ "querystringify": "^2.1.1",
+ "requires-port": "^1.0.0"
+ }
+ },
+ "node_modules/urltools": {
+ "version": "0.4.2",
+ "resolved": "https://registry.npmjs.org/urltools/-/urltools-0.4.2.tgz",
+ "integrity": "sha512-nsAASNzc1+n8MZuQ335Oa9z8KOCtDNfiQzFOAYCiu+IPZQVD0FH6n9hP/NKygKxs5nmRYnj8ftYKgyNcJKlgUw==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "glob": "^7.0.3",
+ "underscore": "^1.8.3",
+ "urijs": "^1.18.2"
+ },
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/utf8": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/utf8/-/utf8-2.1.2.tgz",
+ "integrity": "sha512-QXo+O/QkLP/x1nyi54uQiG0XrODxdysuQvE5dtVqv7F5K2Qb6FsN+qbr6KhF5wQ20tfcV3VQp0/2x1e1MRSPWg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
+ "license": "MIT"
+ },
+ "node_modules/uuid": {
+ "version": "8.3.2",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
+ "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "uuid": "dist/bin/uuid"
+ }
+ },
+ "node_modules/v8-compile-cache": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz",
+ "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/validate-npm-package-license": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
+ "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "spdx-correct": "^3.0.0",
+ "spdx-expression-parse": "^3.0.0"
+ }
+ },
+ "node_modules/verror": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
+ "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==",
+ "dev": true,
+ "engines": [
+ "node >=0.6.0"
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "assert-plus": "^1.0.0",
+ "core-util-is": "1.0.2",
+ "extsprintf": "^1.2.0"
+ }
+ },
+ "node_modules/w3c-hr-time": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
+ "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
+ "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.",
+ "license": "MIT",
+ "dependencies": {
+ "browser-process-hrtime": "^1.0.0"
+ }
+ },
+ "node_modules/w3c-xmlserializer": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
+ "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
+ "license": "MIT",
+ "dependencies": {
+ "xml-name-validator": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/wawoff2": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/wawoff2/-/wawoff2-2.0.1.tgz",
+ "integrity": "sha512-r0CEmvpH63r4T15ebFqeOjGqU4+EgTx4I510NtK35EMciSdcTxCw3Byy3JnBonz7iyIFZ0AbVo0bbFpEVuhCYA==",
+ "license": "MIT",
+ "dependencies": {
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "woff2_compress.js": "bin/woff2_compress.js",
+ "woff2_decompress.js": "bin/woff2_decompress.js"
+ }
+ },
+ "node_modules/wawoff2/node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "license": "Python-2.0"
+ },
+ "node_modules/webidl-conversions": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
+ "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=10.4"
+ }
+ },
+ "node_modules/whatwg-encoding": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
+ "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
+ "license": "MIT",
+ "dependencies": {
+ "iconv-lite": "0.4.24"
+ }
+ },
+ "node_modules/whatwg-mimetype": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
+ "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==",
+ "license": "MIT"
+ },
+ "node_modules/whatwg-url": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz",
+ "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==",
+ "license": "MIT",
+ "dependencies": {
+ "lodash.sortby": "^4.7.0",
+ "tr46": "^1.0.1",
+ "webidl-conversions": "^4.0.2"
+ }
+ },
+ "node_modules/whatwg-url/node_modules/webidl-conversions": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz",
+ "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/which-boxed-primitive": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz",
+ "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==",
+ "license": "MIT",
+ "dependencies": {
+ "is-bigint": "^1.1.0",
+ "is-boolean-object": "^1.2.1",
+ "is-number-object": "^1.1.1",
+ "is-string": "^1.1.1",
+ "is-symbol": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/which-builtin-type": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz",
+ "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "function.prototype.name": "^1.1.6",
+ "has-tostringtag": "^1.0.2",
+ "is-async-function": "^2.0.0",
+ "is-date-object": "^1.1.0",
+ "is-finalizationregistry": "^1.1.0",
+ "is-generator-function": "^1.0.10",
+ "is-regex": "^1.2.1",
+ "is-weakref": "^1.0.2",
+ "isarray": "^2.0.5",
+ "which-boxed-primitive": "^1.1.0",
+ "which-collection": "^1.0.2",
+ "which-typed-array": "^1.1.16"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/which-collection": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz",
+ "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==",
+ "license": "MIT",
+ "dependencies": {
+ "is-map": "^2.0.3",
+ "is-set": "^2.0.3",
+ "is-weakmap": "^2.0.2",
+ "is-weakset": "^2.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/which-module": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz",
+ "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==",
+ "license": "ISC"
+ },
+ "node_modules/which-typed-array": {
+ "version": "1.1.19",
+ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz",
+ "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==",
+ "license": "MIT",
+ "dependencies": {
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.4",
+ "for-each": "^0.3.5",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/wide-align": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz",
+ "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==",
+ "devOptional": true,
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^1.0.2 || 2"
+ }
+ },
+ "node_modules/wide-align/node_modules/ansi-regex": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
+ "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==",
+ "devOptional": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/wide-align/node_modules/is-fullwidth-code-point": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==",
+ "devOptional": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/wide-align/node_modules/string-width": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
+ "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
+ "devOptional": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/wide-align/node_modules/strip-ansi": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
+ "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==",
+ "devOptional": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/woff2sfnt-sfnt2woff": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/woff2sfnt-sfnt2woff/-/woff2sfnt-sfnt2woff-1.0.0.tgz",
+ "integrity": "sha512-edK4COc1c1EpRfMqCZO1xJOvdUtM5dbVb9iz97rScvnTevqEB3GllnLWCmMVp1MfQBdF1DFg/11I0rSyAdS4qQ==",
+ "license": "MIT",
+ "dependencies": {
+ "pako": "^1.0.7"
+ }
+ },
+ "node_modules/word-wrap": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/workbox-background-sync": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-4.3.1.tgz",
+ "integrity": "sha512-1uFkvU8JXi7L7fCHVBEEnc3asPpiAL33kO495UMcD5+arew9IbKW2rV5lpzhoWcm/qhGB89YfO4PmB/0hQwPRg==",
+ "license": "MIT",
+ "dependencies": {
+ "workbox-core": "^4.3.1"
+ }
+ },
+ "node_modules/workbox-broadcast-update": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-4.3.1.tgz",
+ "integrity": "sha512-MTSfgzIljpKLTBPROo4IpKjESD86pPFlZwlvVG32Kb70hW+aob4Jxpblud8EhNb1/L5m43DUM4q7C+W6eQMMbA==",
+ "license": "MIT",
+ "dependencies": {
+ "workbox-core": "^4.3.1"
+ }
+ },
+ "node_modules/workbox-build": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-4.3.1.tgz",
+ "integrity": "sha512-UHdwrN3FrDvicM3AqJS/J07X0KXj67R8Cg0waq1MKEOqzo89ap6zh6LmaLnRAjpB+bDIz+7OlPye9iii9KBnxw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.3.4",
+ "@hapi/joi": "^15.0.0",
+ "common-tags": "^1.8.0",
+ "fs-extra": "^4.0.2",
+ "glob": "^7.1.3",
+ "lodash.template": "^4.4.0",
+ "pretty-bytes": "^5.1.0",
+ "stringify-object": "^3.3.0",
+ "strip-comments": "^1.0.2",
+ "workbox-background-sync": "^4.3.1",
+ "workbox-broadcast-update": "^4.3.1",
+ "workbox-cacheable-response": "^4.3.1",
+ "workbox-core": "^4.3.1",
+ "workbox-expiration": "^4.3.1",
+ "workbox-google-analytics": "^4.3.1",
+ "workbox-navigation-preload": "^4.3.1",
+ "workbox-precaching": "^4.3.1",
+ "workbox-range-requests": "^4.3.1",
+ "workbox-routing": "^4.3.1",
+ "workbox-strategies": "^4.3.1",
+ "workbox-streams": "^4.3.1",
+ "workbox-sw": "^4.3.1",
+ "workbox-window": "^4.3.1"
+ },
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/workbox-cacheable-response": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-4.3.1.tgz",
+ "integrity": "sha512-Rp5qlzm6z8IOvnQNkCdO9qrDgDpoPNguovs0H8C+wswLuPgSzSp9p2afb5maUt9R1uTIwOXrVQMmPfPypv+npw==",
+ "license": "MIT",
+ "dependencies": {
+ "workbox-core": "^4.3.1"
+ }
+ },
+ "node_modules/workbox-core": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-4.3.1.tgz",
+ "integrity": "sha512-I3C9jlLmMKPxAC1t0ExCq+QoAMd0vAAHULEgRZ7kieCdUd919n53WC0AfvokHNwqRhGn+tIIj7vcb5duCjs2Kg==",
+ "license": "MIT"
+ },
+ "node_modules/workbox-expiration": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-4.3.1.tgz",
+ "integrity": "sha512-vsJLhgQsQouv9m0rpbXubT5jw0jMQdjpkum0uT+d9tTwhXcEZks7qLfQ9dGSaufTD2eimxbUOJfWLbNQpIDMPw==",
+ "license": "MIT",
+ "dependencies": {
+ "workbox-core": "^4.3.1"
+ }
+ },
+ "node_modules/workbox-google-analytics": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-4.3.1.tgz",
+ "integrity": "sha512-xzCjAoKuOb55CBSwQrbyWBKqp35yg1vw9ohIlU2wTy06ZrYfJ8rKochb1MSGlnoBfXGWss3UPzxR5QL5guIFdg==",
+ "deprecated": "It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained",
+ "license": "MIT",
+ "dependencies": {
+ "workbox-background-sync": "^4.3.1",
+ "workbox-core": "^4.3.1",
+ "workbox-routing": "^4.3.1",
+ "workbox-strategies": "^4.3.1"
+ }
+ },
+ "node_modules/workbox-navigation-preload": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-4.3.1.tgz",
+ "integrity": "sha512-K076n3oFHYp16/C+F8CwrRqD25GitA6Rkd6+qAmLmMv1QHPI2jfDwYqrytOfKfYq42bYtW8Pr21ejZX7GvALOw==",
+ "license": "MIT",
+ "dependencies": {
+ "workbox-core": "^4.3.1"
+ }
+ },
+ "node_modules/workbox-precaching": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-4.3.1.tgz",
+ "integrity": "sha512-piSg/2csPoIi/vPpp48t1q5JLYjMkmg5gsXBQkh/QYapCdVwwmKlU9mHdmy52KsDGIjVaqEUMFvEzn2LRaigqQ==",
+ "license": "MIT",
+ "dependencies": {
+ "workbox-core": "^4.3.1"
+ }
+ },
+ "node_modules/workbox-range-requests": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-4.3.1.tgz",
+ "integrity": "sha512-S+HhL9+iTFypJZ/yQSl/x2Bf5pWnbXdd3j57xnb0V60FW1LVn9LRZkPtneODklzYuFZv7qK6riZ5BNyc0R0jZA==",
+ "license": "MIT",
+ "dependencies": {
+ "workbox-core": "^4.3.1"
+ }
+ },
+ "node_modules/workbox-routing": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-4.3.1.tgz",
+ "integrity": "sha512-FkbtrODA4Imsi0p7TW9u9MXuQ5P4pVs1sWHK4dJMMChVROsbEltuE79fBoIk/BCztvOJ7yUpErMKa4z3uQLX+g==",
+ "license": "MIT",
+ "dependencies": {
+ "workbox-core": "^4.3.1"
+ }
+ },
+ "node_modules/workbox-strategies": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-4.3.1.tgz",
+ "integrity": "sha512-F/+E57BmVG8dX6dCCopBlkDvvhg/zj6VDs0PigYwSN23L8hseSRwljrceU2WzTvk/+BSYICsWmRq5qHS2UYzhw==",
+ "license": "MIT",
+ "dependencies": {
+ "workbox-core": "^4.3.1"
+ }
+ },
+ "node_modules/workbox-streams": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-4.3.1.tgz",
+ "integrity": "sha512-4Kisis1f/y0ihf4l3u/+ndMkJkIT4/6UOacU3A4BwZSAC9pQ9vSvJpIi/WFGQRH/uPXvuVjF5c2RfIPQFSS2uA==",
+ "license": "MIT",
+ "dependencies": {
+ "workbox-core": "^4.3.1"
+ }
+ },
+ "node_modules/workbox-sw": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-4.3.1.tgz",
+ "integrity": "sha512-0jXdusCL2uC5gM3yYFT6QMBzKfBr2XTk0g5TPAV4y8IZDyVNDyj1a8uSXy3/XrvkVTmQvLN4O5k3JawGReXr9w==",
+ "license": "MIT"
+ },
+ "node_modules/workbox-window": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-4.3.1.tgz",
+ "integrity": "sha512-C5gWKh6I58w3GeSc0wp2Ne+rqVw8qwcmZnQGpjiek8A2wpbxSJb1FdCoQVO+jDJs35bFgo/WETgl1fqgsxN0Hg==",
+ "license": "MIT",
+ "dependencies": {
+ "workbox-core": "^4.3.1"
+ }
+ },
+ "node_modules/workerpool": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.1.0.tgz",
+ "integrity": "sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg==",
+ "dev": true,
+ "license": "Apache-2.0"
+ },
+ "node_modules/wrap-ansi": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
+ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "license": "MIT"
+ },
+ "node_modules/wrappy": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
+ "license": "ISC"
+ },
+ "node_modules/write": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz",
+ "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "mkdirp": "^0.5.1"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/write-file-atomic": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
+ "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "imurmurhash": "^0.1.4",
+ "is-typedarray": "^1.0.0",
+ "signal-exit": "^3.0.2",
+ "typedarray-to-buffer": "^3.1.5"
+ }
+ },
+ "node_modules/write-file-stdout": {
+ "version": "0.0.2",
+ "resolved": "https://registry.npmjs.org/write-file-stdout/-/write-file-stdout-0.0.2.tgz",
+ "integrity": "sha512-KofbSPeePSre3soWCMaqcWHVZy9t/rbJaEMa2h19cupODsvc4eh7390Se1TjzZEL77rS+D6dznu0TLXyCbR+sw==",
+ "license": "MIT"
+ },
+ "node_modules/ws": {
+ "version": "7.5.10",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz",
+ "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.3.0"
+ },
+ "peerDependencies": {
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": "^5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/xml-name-validator": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
+ "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
+ "license": "Apache-2.0"
+ },
+ "node_modules/xmlchars": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
+ "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
+ "license": "MIT"
+ },
+ "node_modules/y18n": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
+ "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
+ "license": "ISC"
+ },
+ "node_modules/yaml": {
+ "version": "1.10.2",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
+ "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
+ "license": "ISC",
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/yargs": {
+ "version": "15.4.1",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
+ "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
+ "license": "MIT",
+ "dependencies": {
+ "cliui": "^6.0.0",
+ "decamelize": "^1.2.0",
+ "find-up": "^4.1.0",
+ "get-caller-file": "^2.0.1",
+ "require-directory": "^2.1.1",
+ "require-main-filename": "^2.0.0",
+ "set-blocking": "^2.0.0",
+ "string-width": "^4.2.0",
+ "which-module": "^2.0.0",
+ "y18n": "^4.0.0",
+ "yargs-parser": "^18.1.2"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/yargs-parser": {
+ "version": "20.2.4",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz",
+ "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/yargs-unparser": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz",
+ "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "camelcase": "^6.0.0",
+ "decamelize": "^4.0.0",
+ "flat": "^5.0.2",
+ "is-plain-obj": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/yargs-unparser/node_modules/camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/yargs-unparser/node_modules/decamelize": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz",
+ "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/yargs-unparser/node_modules/is-plain-obj": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
+ "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/yargs/node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/yargs/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/yargs/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/yargs/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/yargs/node_modules/yargs-parser": {
+ "version": "18.1.3",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
+ "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
+ "license": "ISC",
+ "dependencies": {
+ "camelcase": "^5.0.0",
+ "decamelize": "^1.2.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/yauzl": {
+ "version": "2.10.0",
+ "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
+ "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
+ "license": "MIT",
+ "dependencies": {
+ "buffer-crc32": "~0.2.3",
+ "fd-slicer": "~1.1.0"
+ }
+ },
+ "node_modules/yocto-queue": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ }
+ }
+}
diff --git a/pkgs/by-name/su/subfont/package.nix b/pkgs/by-name/su/subfont/package.nix
new file mode 100644
index 000000000000..58eafd3ed739
--- /dev/null
+++ b/pkgs/by-name/su/subfont/package.nix
@@ -0,0 +1,42 @@
+{
+ lib,
+ buildNpmPackage,
+ fetchurl,
+ testers,
+}:
+
+let
+ pname = "subfont";
+ version = "7.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/subfont/-/subfont-${version}.tgz";
+ hash = "sha256-8zfMO/3zEKkLI7nZShVpaJxxueM8amdsiIEGmcebLgQ=";
+ };
+in
+buildNpmPackage (finalAttrs: {
+ inherit pname version src;
+
+ npmDepsHash = "sha256-vqsm8/1I1HFo9IZdOqGQ/qFEyLTYY5uwtsnp1PJfPIk=";
+
+ postPatch = ''
+ ln -s ${./package-lock.json} package-lock.json
+ '';
+
+ dontNpmBuild = true;
+
+ env.PUPPETEER_SKIP_DOWNLOAD = true;
+
+ passthru.tests.version = testers.testVersion {
+ inherit version;
+ package = finalAttrs.finalPackage;
+ };
+
+ meta = {
+ description = "Command line tool to optimize webfont loading by aggressively subsetting based on font use, self-hosting of Google fonts and preloading";
+ mainProgram = "subfont";
+ homepage = "https://github.com/Munter/subfont";
+ changelog = "https://github.com/Munter/subfont/blob/v${version}/CHANGELOG.md";
+ license = with lib.licenses; [ mit ];
+ maintainers = with lib.maintainers; [ dav-wolff ];
+ };
+})
diff --git a/pkgs/by-name/te/textcompare/package.nix b/pkgs/by-name/te/textcompare/package.nix
new file mode 100644
index 000000000000..281aa11c48e8
--- /dev/null
+++ b/pkgs/by-name/te/textcompare/package.nix
@@ -0,0 +1,60 @@
+{
+ lib,
+ stdenv,
+ fetchFromGitHub,
+ desktop-file-utils,
+ gjs,
+ gobject-introspection,
+ gtksourceview5,
+ gtk4,
+ libadwaita,
+ meson,
+ ninja,
+ wrapGAppsHook4,
+ nix-update-script,
+}:
+
+stdenv.mkDerivation (finalAttrs: {
+ pname = "textcompare";
+ version = "0.1.2";
+
+ src = fetchFromGitHub {
+ owner = "josephmawa";
+ repo = "TextCompare";
+ tag = "v${finalAttrs.version}";
+ hash = "sha256-npF2kCYeW/RGaS7x2FrHEX3BdmO8CXj47biOw9IZ4nk=";
+ };
+
+ strictDeps = true;
+
+ nativeBuildInputs = [
+ desktop-file-utils
+ gjs
+ gobject-introspection
+ gtk4
+ meson
+ ninja
+ wrapGAppsHook4
+ ];
+
+ buildInputs = [
+ gjs
+ gtksourceview5
+ libadwaita
+ ];
+
+ preFixup = ''
+ sed -i "1 a imports.package._findEffectiveEntryPointName = () => 'io.github.josephmawa.TextCompare';" $out/bin/io.github.josephmawa.TextCompare
+ '';
+
+ passthru.updateScript = nix-update-script { };
+
+ meta = {
+ description = "Simple desktop app to compare old and new text";
+ homepage = "https://github.com/josephmawa/TextCompare";
+ license = lib.licenses.gpl3Plus;
+ maintainers = with lib.maintainers; [ iamanaws ];
+ mainProgram = "io.github.josephmawa.TextCompare";
+ platforms = lib.lists.intersectLists lib.platforms.linux gjs.meta.platforms;
+ };
+})
diff --git a/pkgs/by-name/to/tor-browser/package.nix b/pkgs/by-name/to/tor-browser/package.nix
index afc326de05f6..5a834c1a961b 100644
--- a/pkgs/by-name/to/tor-browser/package.nix
+++ b/pkgs/by-name/to/tor-browser/package.nix
@@ -109,7 +109,7 @@ lib.warnIf (useHardenedMalloc != null)
++ lib.optionals mediaSupport [ ffmpeg ]
);
- version = "14.0.9";
+ version = "14.5";
sources = {
x86_64-linux = fetchurl {
@@ -119,7 +119,7 @@ lib.warnIf (useHardenedMalloc != null)
"https://tor.eff.org/dist/torbrowser/${version}/tor-browser-linux-x86_64-${version}.tar.xz"
"https://tor.calyxinstitute.org/dist/torbrowser/${version}/tor-browser-linux-x86_64-${version}.tar.xz"
];
- hash = "sha256-oTOTTB5tuAhzaQY3nlSUD4lZNHAGmURIf5XCzFB2xeg=";
+ hash = "sha256-wSxmNPPJsLRjDVimc2Rp1rBcIgYp/CtPKuU6+gZfVmw=";
};
i686-linux = fetchurl {
@@ -129,7 +129,7 @@ lib.warnIf (useHardenedMalloc != null)
"https://tor.eff.org/dist/torbrowser/${version}/tor-browser-linux-i686-${version}.tar.xz"
"https://tor.calyxinstitute.org/dist/torbrowser/${version}/tor-browser-linux-i686-${version}.tar.xz"
];
- hash = "sha256-Z/CDaO5eEPVwBnm3SJxBYvInyB7Oy6Ve8hNJunTJET0=";
+ hash = "sha256-upqpWUl5qmDj7Oc/wIGdNlgIJSaTbhxlq4X+zjCPHfA=";
};
};
@@ -291,7 +291,7 @@ lib.warnIf (useHardenedMalloc != null)
# FONTCONFIG_FILE is required to make fontconfig read the TBB
# fonts.conf; upstream uses FONTCONFIG_PATH, but FC_DEBUG=1024
# indicates the system fonts.conf being used instead.
- FONTCONFIG_FILE=$TBB_IN_STORE/fontconfig/fonts.conf
+ FONTCONFIG_FILE=$TBB_IN_STORE/fonts/fonts.conf
substituteInPlace "$FONTCONFIG_FILE" \
--replace-fail 'fonts' "$TBB_IN_STORE/fonts"
diff --git a/pkgs/by-name/tw/twitch-dl/package.nix b/pkgs/by-name/tw/twitch-dl/package.nix
index 3bb334df819a..52697924aa43 100644
--- a/pkgs/by-name/tw/twitch-dl/package.nix
+++ b/pkgs/by-name/tw/twitch-dl/package.nix
@@ -5,6 +5,7 @@
installShellFiles,
scdoc,
ffmpeg,
+ writableTmpDirAsHomeHook,
}:
python3Packages.buildPythonApplication rec {
@@ -38,6 +39,7 @@ python3Packages.buildPythonApplication rec {
nativeCheckInputs = [
python3Packages.pytestCheckHook
+ writableTmpDirAsHomeHook
];
disabledTestPaths = [
@@ -72,10 +74,6 @@ python3Packages.buildPythonApplication rec {
installManPage twitch-dl.1
'';
- preInstallCheck = ''
- export HOME="$(mktemp -d)"
- '';
-
meta = with lib; {
description = "CLI tool for downloading videos from Twitch";
homepage = "https://github.com/ihabunek/twitch-dl";
diff --git a/pkgs/by-name/ty/typst/package.nix b/pkgs/by-name/ty/typst/package.nix
index b01912559be4..cc22026c7462 100644
--- a/pkgs/by-name/ty/typst/package.nix
+++ b/pkgs/by-name/ty/typst/package.nix
@@ -7,6 +7,7 @@
openssl,
nix-update-script,
versionCheckHook,
+ callPackage,
}:
rustPlatform.buildRustPackage (finalAttrs: {
@@ -56,7 +57,11 @@ rustPlatform.buildRustPackage (finalAttrs: {
nativeInstallCheckInputs = [ versionCheckHook ];
versionCheckProgramArg = "--version";
- passthru.updateScript = nix-update-script { };
+ passthru = {
+ updateScript = nix-update-script { };
+ packages = callPackage ./typst-packages.nix { };
+ withPackages = callPackage ./with-packages.nix { };
+ };
meta = {
changelog = "https://github.com/typst/typst/releases/tag/v${finalAttrs.version}";
diff --git a/pkgs/by-name/ty/typst/typst-packages-from-universe.toml b/pkgs/by-name/ty/typst/typst-packages-from-universe.toml
new file mode 100644
index 000000000000..fb1a54456677
--- /dev/null
+++ b/pkgs/by-name/ty/typst/typst-packages-from-universe.toml
@@ -0,0 +1,19718 @@
+[a2c-nums."0.0.1"]
+url = "https://packages.typst.org/preview/a2c-nums-0.0.1.tar.gz"
+hash = "sha256-pVziMcz9ubNuUaTm+s4nMb0d8dzwB+hb/DgnQKeKeWw="
+typstDeps = []
+description = "Convert a number to Chinese"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/soarowl/a2c-nums.git"
+
+[abbr."0.2.3"]
+url = "https://packages.typst.org/preview/abbr-0.2.3.tar.gz"
+hash = "sha256-H4zgbFvX14uHH5o2WtCGMtOXxejzTUPgeaObwhy6eak="
+typstDeps = []
+description = "An Abbreviations package"
+license = [
+ "MIT",
+]
+homepage = "https://git.sr.ht/~slowjo/typst-abbr"
+
+[abbr."0.2.2"]
+url = "https://packages.typst.org/preview/abbr-0.2.2.tar.gz"
+hash = "sha256-fPVIInoFZ4NKyVJojIAH02NAit0CLyubzJh+iOiaPXc="
+typstDeps = []
+description = "An Abbreviations package"
+license = [
+ "MIT",
+]
+homepage = "https://git.sr.ht/~slowjo/typst-abbr"
+
+[abbr."0.2.1"]
+url = "https://packages.typst.org/preview/abbr-0.2.1.tar.gz"
+hash = "sha256-MrnZfinOhFIo8fbnkf481WkNStmncTeeosn1NAc9Wu0="
+typstDeps = []
+description = "An Abbreviations package"
+license = [
+ "MIT",
+]
+homepage = "https://git.sr.ht/~slowjo/typst-abbr"
+
+[abbr."0.1.1"]
+url = "https://packages.typst.org/preview/abbr-0.1.1.tar.gz"
+hash = "sha256-LzJlLKFEBA3p9dpy2UwiHD9n52+9iJ/hRWRs5nmsVtA="
+typstDeps = []
+description = "An Abbreviations package"
+license = [
+ "MIT",
+]
+homepage = "https://git.sr.ht/~slowjo/typst-abbr"
+
+[abbr."0.1.0"]
+url = "https://packages.typst.org/preview/abbr-0.1.0.tar.gz"
+hash = "sha256-WKJEK4TcSIuqPkHcPWB+zmiSZsinfJAy9IGdbXta0GQ="
+typstDeps = []
+description = "An Abbreviations package"
+license = [
+ "MIT",
+]
+homepage = "https://git.sr.ht/~slowjo/typst-abbr"
+
+[abiding-ifacconf."0.1.0"]
+url = "https://packages.typst.org/preview/abiding-ifacconf-0.1.0.tar.gz"
+hash = "sha256-Vmx78w1m78eX0tIoHZsyR/Kh61cP/l5YqlhSeWjwG28="
+typstDeps = [
+ "ctheorems_1_1_0",
+]
+description = "An IFAC-style paper template to publish at conferences for International Federation of Automatic Control"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/avonmoll/ifacconf-typst"
+
+[academic-conf-pre."0.1.0"]
+url = "https://packages.typst.org/preview/academic-conf-pre-0.1.0.tar.gz"
+hash = "sha256-12BrUly7fU/7c0ZB+OMY3UaV7ZpYUSWQUywc042ciL8="
+typstDeps = [
+ "cuti_0_2_1",
+ "touying_0_4_2",
+ "unify_0_6_0",
+]
+description = "Slide Theme for Acadmic Presentations in Australia"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/JL-ghcoder/Typst-Pre-Template"
+
+[academicv."1.0.0"]
+url = "https://packages.typst.org/preview/academicv-1.0.0.tar.gz"
+hash = "sha256-GHXDKGpD9JZIZbCmziNORHx4n6VjwY4R4nh8bUyGYQ4="
+typstDeps = []
+description = "A clean, flexible curriculum vitae (CV) template using Typst and YAML"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/roaldarbol/academicv"
+
+[accelerated-jacow."0.1.3"]
+url = "https://packages.typst.org/preview/accelerated-jacow-0.1.3.tar.gz"
+hash = "sha256-rdamQ3duwAyaQNJqdZ7QdOJ22fTs5l0aSVu5Ykv78bQ="
+typstDeps = [
+ "glossy_0_7_0",
+ "lilaq_0_1_0",
+ "physica_0_9_5",
+ "unify_0_7_1",
+]
+description = "Paper template for conference proceedings in accelerator physics"
+license = [
+ "GPL-3.0-only",
+ "MIT-0",
+]
+homepage = "https://github.com/eltos/accelerated-jacow/"
+
+[accelerated-jacow."0.1.2"]
+url = "https://packages.typst.org/preview/accelerated-jacow-0.1.2.tar.gz"
+hash = "sha256-juQdPIDbJ6goVgn4HqgHp8gw+Ztx6QBjTo24jh6P3iw="
+typstDeps = [
+ "glossy_0_4_0",
+ "unify_0_6_0",
+]
+description = "Paper template for conference proceedings in accelerator physics"
+license = [
+ "GPL-3.0-only",
+ "MIT-0",
+]
+homepage = "https://github.com/eltos/accelerated-jacow/"
+
+[accelerated-jacow."0.1.1"]
+url = "https://packages.typst.org/preview/accelerated-jacow-0.1.1.tar.gz"
+hash = "sha256-JzoBrYHlfZJiPGL6CRfskmyP0DL/qmb2q4anWD9ZhOc="
+typstDeps = [
+ "unify_0_6_0",
+]
+description = "Paper template for conference proceedings in accelerator physics"
+license = [
+ "GPL-3.0-only",
+ "MIT-0",
+]
+homepage = "https://github.com/eltos/accelerated-jacow/"
+
+[accelerated-jacow."0.1.0"]
+url = "https://packages.typst.org/preview/accelerated-jacow-0.1.0.tar.gz"
+hash = "sha256-C64cbdHGiCJjMvmSuT+o7z2/+qGNXtjc+sAia7Uq5S8="
+typstDeps = [
+ "unify_0_6_0",
+]
+description = "Paper template for conference proceedings in accelerator physics"
+license = [
+ "GPL-3.0-only",
+ "MIT-0",
+]
+homepage = "https://github.com/eltos/accelerated-jacow/"
+
+[acrostiche."0.5.1"]
+url = "https://packages.typst.org/preview/acrostiche-0.5.1.tar.gz"
+hash = "sha256-Zh/Q9tMunWN6X4jU47r/c7WPafIHA/9lBtuGJSumGO8="
+typstDeps = []
+description = "Manage acronyms and their definitions in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Grisely/packages"
+
+[acrostiche."0.5.0"]
+url = "https://packages.typst.org/preview/acrostiche-0.5.0.tar.gz"
+hash = "sha256-mZouqJU14WXv39afAqIjnqIehyke+h9nm0qfomBIluI="
+typstDeps = []
+description = "Manage acronyms and their definitions in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Grisely/packages"
+
+[acrostiche."0.4.1"]
+url = "https://packages.typst.org/preview/acrostiche-0.4.1.tar.gz"
+hash = "sha256-g1IEOVKr/Lvd4kuG1h8uKSY0oZXN98mJFZ9bXKDbV7E="
+typstDeps = []
+description = "Manage acronyms and their definitions in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Grisely/packages"
+
+[acrostiche."0.4.0"]
+url = "https://packages.typst.org/preview/acrostiche-0.4.0.tar.gz"
+hash = "sha256-c8m7W3YoD66+BcUkEDRvyOBlLarAoFGwc/Ut07raXwE="
+typstDeps = []
+description = "Manage acronyms and their definitions in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Grisely/packages"
+
+[acrostiche."0.3.5"]
+url = "https://packages.typst.org/preview/acrostiche-0.3.5.tar.gz"
+hash = "sha256-8pKpRPaNLts5s53vVKGb4M8HEhvLMcP85i4+9uAtu4Y="
+typstDeps = []
+description = "Manage acronyms and their definitions in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Grisely/packages"
+
+[acrostiche."0.3.4"]
+url = "https://packages.typst.org/preview/acrostiche-0.3.4.tar.gz"
+hash = "sha256-qqq69YomURNJZiP17I/N64QR5wGmRyZpNEMfA8gyE5I="
+typstDeps = []
+description = "Manage acronyms and their definitions in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Grisely/packages"
+
+[acrostiche."0.3.3"]
+url = "https://packages.typst.org/preview/acrostiche-0.3.3.tar.gz"
+hash = "sha256-h9TG1q+ms+sZ+h4yLdYebwy2llVqy0m4h4KagXCx3eE="
+typstDeps = []
+description = "Manage acronyms and their definitions in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Grisely/packages"
+
+[acrostiche."0.3.2"]
+url = "https://packages.typst.org/preview/acrostiche-0.3.2.tar.gz"
+hash = "sha256-ovSxtKCuN5Y2DCMPxZeYngOw+c4YwGcES5gLYog6Q0E="
+typstDeps = []
+description = "Manage acronyms and their definitions in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Grisely/packages"
+
+[acrostiche."0.3.1"]
+url = "https://packages.typst.org/preview/acrostiche-0.3.1.tar.gz"
+hash = "sha256-OkUgSNg/NZwoAdqAVNjeLT6NGgPTnEcJorfMsX2U83A="
+typstDeps = []
+description = "Manage acronyms and their definitions in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Grisely/packages"
+
+[acrostiche."0.3.0"]
+url = "https://packages.typst.org/preview/acrostiche-0.3.0.tar.gz"
+hash = "sha256-pRMAUavDeMDD7VIp14ACHOksMBRy1dofIk9MmJxXhcI="
+typstDeps = []
+description = "Manage acronyms and their definitions in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Grisely/packages"
+
+[acrostiche."0.2.0"]
+url = "https://packages.typst.org/preview/acrostiche-0.2.0.tar.gz"
+hash = "sha256-ZMtEfY96MiyL0lnpVwqSDgSmudSpx/+ouBcFt5fboVs="
+typstDeps = []
+description = "Manage acronyms and their definitions in Typst"
+license = [
+ "MIT",
+]
+
+[acrostiche."0.1.0"]
+url = "https://packages.typst.org/preview/acrostiche-0.1.0.tar.gz"
+hash = "sha256-Os6fdu9kkF3sDObR7kdNYGeegG/BT40twOd+JIMXx6Q="
+typstDeps = []
+description = "Manage acronyms and their definitions in Typst"
+license = [
+ "MIT",
+]
+
+[acrotastic."0.1.1"]
+url = "https://packages.typst.org/preview/acrotastic-0.1.1.tar.gz"
+hash = "sha256-UNkf8v0Po0DQGiCzQGUzB/CrS7f8Jt8aG0EsmpwvYRU="
+typstDeps = []
+description = "Manage acronyms and their definitions in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Julian702/typst-packages"
+
+[acrotastic."0.1.0"]
+url = "https://packages.typst.org/preview/acrotastic-0.1.0.tar.gz"
+hash = "sha256-eINTyj03/hnXWAIjClpR0tCaWkDSrW3XSOv+Un61W98="
+typstDeps = []
+description = "Manage acronyms and their definitions in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Julian702/typst-packages"
+
+[adaptable-pset."0.1.1"]
+url = "https://packages.typst.org/preview/adaptable-pset-0.1.1.tar.gz"
+hash = "sha256-DAb7eSgVZe5gW92GB5byfOn4qUuzMOTmMotJtWjxR/c="
+typstDeps = [
+ "showybox_2_0_2",
+]
+description = "A flexible problem set template, perfect for technical courses"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/stuxf/adaptable-pset"
+
+[adaptable-pset."0.1.0"]
+url = "https://packages.typst.org/preview/adaptable-pset-0.1.0.tar.gz"
+hash = "sha256-VXFpXVc+W2Di6usqM8LZ1zlnFsDXudUEnsZ3bNiDrHg="
+typstDeps = [
+ "showybox_2_0_2",
+]
+description = "A flexible problem set template, perfect for technical courses"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/stuxf/adaptable-pset"
+
+[aero-check."0.1.1"]
+url = "https://packages.typst.org/preview/aero-check-0.1.1.tar.gz"
+hash = "sha256-rf9pPBnsXdxLW9r7iePL7VU61JP05g1m9L1Q6rsdmZQ="
+typstDeps = []
+description = "A simple template to create checklists with an aviation inspired style"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TomVer99/Typst-checklist-template"
+
+[aero-check."0.1.0"]
+url = "https://packages.typst.org/preview/aero-check-0.1.0.tar.gz"
+hash = "sha256-sdeWSE+jgnGK1hAe3EMC7iKlryzTrp4keVWtVTlQYtc="
+typstDeps = []
+description = "A simple template to create checklists with an aviation inspired style"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TomVer99/Typst-checklist-template"
+
+[ailab-isetbz."0.1.0"]
+url = "https://packages.typst.org/preview/ailab-isetbz-0.1.0.tar.gz"
+hash = "sha256-1VmymGotEYdX/RuIncMg7c61E3uC/KTgUNzFr0TWo7Q="
+typstDeps = [
+ "octique_0_1_0",
+]
+description = "Typst template for lab reports tailored for engineering students at ISET Bizerte"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/a-mhamdi/ailab-isetbz"
+
+[aio-studi-and-thesis."0.1.1"]
+url = "https://packages.typst.org/preview/aio-studi-and-thesis-0.1.1.tar.gz"
+hash = "sha256-k3w4PQ0GBP5g3WQ4mtv+M7L/S4wtcXrGEUPj7OiuZt4="
+typstDeps = [
+ "codly_1_3_0",
+ "glossarium_0_5_4",
+ "linguify_0_4_2",
+]
+description = "All-in-one template for students and theses"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/fuchs-fabian/typst-template-aio-studi-and-thesis"
+
+[aio-studi-and-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/aio-studi-and-thesis-0.1.0.tar.gz"
+hash = "sha256-j7FkVDolCi+jb3y5mRKRzT3VshMs1aVV3fYVBbuNrRs="
+typstDeps = [
+ "codly_1_0_0",
+ "glossarium_0_4_1",
+ "linguify_0_4_1",
+]
+description = "All-in-one template for students and theses"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/fuchs-fabian/typst-template-aio-studi-and-thesis"
+
+[alchemist."0.1.5"]
+url = "https://packages.typst.org/preview/alchemist-0.1.5.tar.gz"
+hash = "sha256-2gwsoRkHkcKr6Skvi41yq5y53kD8vRMAyvzBS1NRWZY="
+typstDeps = [
+ "cetz_0_3_4",
+]
+description = "A package to render skeletal formulas using CeTZ"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Typsium/alchemist"
+
+[alchemist."0.1.4"]
+url = "https://packages.typst.org/preview/alchemist-0.1.4.tar.gz"
+hash = "sha256-ZMcKmnCoVCgK3QM4UDz88RL8ng9f1boUq7Y6GbWSQqA="
+typstDeps = [
+ "cetz_0_3_1",
+ "cetz_0_3_2",
+]
+description = "A package to render skeletal formulas using cetz"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/alchemist"
+
+[alchemist."0.1.3"]
+url = "https://packages.typst.org/preview/alchemist-0.1.3.tar.gz"
+hash = "sha256-5ISo43sBQUij+drAhp4SBb4KO4CDmnAVLtUf8X4ndgw="
+typstDeps = [
+ "cetz_0_3_1",
+]
+description = "A package to render skeletal formulas using cetz"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/alchemist"
+
+[alchemist."0.1.2"]
+url = "https://packages.typst.org/preview/alchemist-0.1.2.tar.gz"
+hash = "sha256-ilt3DRxnIrl1Sa9/3HKpVmot0cWkbAgRfgRa6xrl+Uc="
+typstDeps = [
+ "cetz_0_3_1",
+]
+description = "A package to render skeletal formulas using cetz"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/alchemist"
+
+[alchemist."0.1.1"]
+url = "https://packages.typst.org/preview/alchemist-0.1.1.tar.gz"
+hash = "sha256-/2mB7c8xBWY8qF9AX90980Gm+g370BhmwJ7zbtRniy0="
+typstDeps = [
+ "cetz_0_2_2",
+]
+description = "A package to render skeletal formulas using cetz"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/alchemist"
+
+[alchemist."0.1.0"]
+url = "https://packages.typst.org/preview/alchemist-0.1.0.tar.gz"
+hash = "sha256-bst3ivSrzStuje2NqL7aVkKRZ8wrRTSqv0tIO4KnQb8="
+typstDeps = [
+ "cetz_0_2_2",
+]
+description = "A package to render skeletal formulas using cetz"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/alchemist"
+
+[alexandria."0.1.3"]
+url = "https://packages.typst.org/preview/alexandria-0.1.3.tar.gz"
+hash = "sha256-gYQFCxmSzEyhAFM70sKuTJIbS81IAS6g/Qy/DSR0irs="
+typstDeps = []
+description = "Use multiple bibliographies in a single Typst document "
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SillyFreak/typst-alexandria"
+
+[alexandria."0.1.2"]
+url = "https://packages.typst.org/preview/alexandria-0.1.2.tar.gz"
+hash = "sha256-5nblagG8KIJw8qL/bgW2/4Ltedv3NK6eORUqR6UQ268="
+typstDeps = []
+description = "Use multiple bibliographies in a single Typst document "
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SillyFreak/typst-alexandria"
+
+[alexandria."0.1.1"]
+url = "https://packages.typst.org/preview/alexandria-0.1.1.tar.gz"
+hash = "sha256-hZtp81RmNnP1SiVue81LJsV+XHvPZxBD0Av9JmVPpnE="
+typstDeps = []
+description = "Use multiple bibliographies in a single Typst document "
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SillyFreak/typst-alexandria"
+
+[alexandria."0.1.0"]
+url = "https://packages.typst.org/preview/alexandria-0.1.0.tar.gz"
+hash = "sha256-kwwZzoRvG54tLFKA7RAK7IYJYfo3qGmUYREHWds7k1g="
+typstDeps = []
+description = "Use multiple bibliographies in a single Typst document "
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SillyFreak/typst-alexandria"
+
+[algo."0.3.6"]
+url = "https://packages.typst.org/preview/algo-0.3.6.tar.gz"
+hash = "sha256-n3qtUwnUdv5Xcm1FwlRRorKkhDKPFT5t3p8NMMLmb7k="
+typstDeps = []
+description = "Beautifully typeset algorithms"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/platformer/typst-algorithms"
+
+[algo."0.3.5"]
+url = "https://packages.typst.org/preview/algo-0.3.5.tar.gz"
+hash = "sha256-rNhxgkz7Wh4R5BfHaLmRpLIkxIZAmIViNPD5wh5E3Kg="
+typstDeps = []
+description = "Beautifully typeset algorithms"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/platformer/typst-algorithms"
+
+[algo."0.3.4"]
+url = "https://packages.typst.org/preview/algo-0.3.4.tar.gz"
+hash = "sha256-FAUfCdgE7wORCS+V7IvsUfsIzvhJxqqed4SrIyLK0uY="
+typstDeps = []
+description = "Beautifully typeset algorithms"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/platformer/typst-algorithms"
+
+[algo."0.3.3"]
+url = "https://packages.typst.org/preview/algo-0.3.3.tar.gz"
+hash = "sha256-3VUCgUg/a9iMQn+Qf8lUYgAQzeTr1kUka419hoGk4sQ="
+typstDeps = []
+description = "Beautifully typeset algorithms"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/platformer/typst-algorithms"
+
+[algo."0.3.2"]
+url = "https://packages.typst.org/preview/algo-0.3.2.tar.gz"
+hash = "sha256-TlGOK/i8l6loDziVoU/V00/OBvzvNQQN2Omiaodesh0="
+typstDeps = []
+description = "Beautifully typeset algorithms"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/platformer/typst-algorithms"
+
+[algo."0.3.1"]
+url = "https://packages.typst.org/preview/algo-0.3.1.tar.gz"
+hash = "sha256-53EvArSUnCKZPTxBC0iOC3s+O55r5hTO24hqwwGwOUM="
+typstDeps = []
+description = "Beautifully typeset algorithms"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/platformer/typst-algorithms"
+
+[algo."0.3.0"]
+url = "https://packages.typst.org/preview/algo-0.3.0.tar.gz"
+hash = "sha256-v7iLmW4LHnalEgBC7p3bguclj9kXLZoEwZ3U2efXb3Y="
+typstDeps = []
+description = "Beautifully typeset algorithms"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/platformer/typst-algorithms"
+
+[algorithmic."0.1.0"]
+url = "https://packages.typst.org/preview/algorithmic-0.1.0.tar.gz"
+hash = "sha256-oN5Yl0cWJ5QgzdNIePdQd2hD+uFL+DWcAdPilQ+oM6U="
+typstDeps = []
+description = "Algorithm pseudocode typesetting for Typst, inspired by algorithmicx in LaTeX"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lf-/typst-algorithmic"
+
+[aloecius-aip."0.0.1"]
+url = "https://packages.typst.org/preview/aloecius-aip-0.0.1.tar.gz"
+hash = "sha256-Z2+ibMjXWOoyNgZyoBRd0KsObc0IVwZezhMz2lHg97M="
+typstDeps = [
+ "cetz_0_2_2",
+ "physica_0_9_3",
+ "whalogen_0_2_0",
+]
+description = "Typst template for reproducing AIP - Journal of Chemical Physics paper (draft"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Raunak12775/aloecius-aip"
+
+[amlos."0.2.1"]
+url = "https://packages.typst.org/preview/amlos-0.2.1.tar.gz"
+hash = "sha256-8fo8mYIedny52OXlJ5M2ops8fTBRXOJ9auT27CWFPME="
+typstDeps = []
+description = "Amlos makes list of symbols"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/uwni/Amlos"
+
+[amlos."0.2.0"]
+url = "https://packages.typst.org/preview/amlos-0.2.0.tar.gz"
+hash = "sha256-/d38oaKwHyI8iPaMFNKR8DtrlkOlYmpSASkUfh5rYnw="
+typstDeps = []
+description = "Amlos makes list of symbols"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/uwni/Amlos"
+
+[amlos."0.1.0"]
+url = "https://packages.typst.org/preview/amlos-0.1.0.tar.gz"
+hash = "sha256-3VbQ6MFPCLhEwaRMSRQQxRyrSplZiH4zycHPL8cO57I="
+typstDeps = []
+description = "Amlos makes list of symbols"
+license = [
+ "MPL-2.0",
+]
+
+[amsterdammetje-article."0.1.1"]
+url = "https://packages.typst.org/preview/amsterdammetje-article-0.1.1.tar.gz"
+hash = "sha256-q+shUXY1t9GuJOd6UaDWgqN4eDEQUZgVfpwixTWKxlg="
+typstDeps = [
+ "cetz_0_3_4",
+ "wordometer_0_1_4",
+]
+description = "University of Amsterdam Computer Science article template"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/qu1ncyk/amsterdammetje-article-typst"
+
+[amsterdammetje-article."0.1.0"]
+url = "https://packages.typst.org/preview/amsterdammetje-article-0.1.0.tar.gz"
+hash = "sha256-yuWd9g4lgXuIiaI4VedPdNPyzQZhav85Lul05x0KWqQ="
+typstDeps = [
+ "cetz_0_3_4",
+ "wordometer_0_1_4",
+]
+description = "University of Amsterdam Computer Science article template"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/qu1ncyk/amsterdammetje-article-typst"
+
+[anatomy."0.1.1"]
+url = "https://packages.typst.org/preview/anatomy-0.1.1.tar.gz"
+hash = "sha256-s9Efy1fAoZOfE+BTMe/bE8Z6J7e1+wQTwxASs7yV8cc="
+typstDeps = []
+description = "Anatomy of a Font. Visualise metrics"
+license = [
+ "MIT",
+]
+
+[anatomy."0.1.0"]
+url = "https://packages.typst.org/preview/anatomy-0.1.0.tar.gz"
+hash = "sha256-Oz1kh1s6ozZ6OHBMiqkcBoXx8NHaMFX4hBF5bTQfjQk="
+typstDeps = []
+description = "Anatomy of a Font. Visualise metrics"
+license = [
+ "MIT",
+]
+
+[ansi-render."0.8.0"]
+url = "https://packages.typst.org/preview/ansi-render-0.8.0.tar.gz"
+hash = "sha256-JAtWsp1lvhY+J9OIf5x+4ihEN2kcCoXg2R5HFI9r0nY="
+typstDeps = []
+description = "provides a simple way to render text with ANSI escape sequences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/8LWXpg/typst-ansi-render"
+
+[ansi-render."0.7.0"]
+url = "https://packages.typst.org/preview/ansi-render-0.7.0.tar.gz"
+hash = "sha256-TloscU5zmdvK1Mr91ZENQKtBKqBsO1OjtO+iTl0vkFw="
+typstDeps = []
+description = "provides a simple way to render text with ANSI escape sequences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/8LWXpg/typst-ansi-render"
+
+[ansi-render."0.6.1"]
+url = "https://packages.typst.org/preview/ansi-render-0.6.1.tar.gz"
+hash = "sha256-gQ4nrQfb492cN10LtfIFpRsYo+SBKLb8Uk2G5wApT0Y="
+typstDeps = []
+description = "provides a simple way to render text with ANSI escape sequences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/8LWXpg/typst-ansi-render"
+
+[ansi-render."0.6.0"]
+url = "https://packages.typst.org/preview/ansi-render-0.6.0.tar.gz"
+hash = "sha256-fLHm/ZP8uCrnmzUTrP/EipRuC71YH391pu3kpRDMEjM="
+typstDeps = []
+description = "provides a simple way to render text with ANSI escape sequences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/8LWXpg/typst-ansi-render"
+
+[ansi-render."0.5.1"]
+url = "https://packages.typst.org/preview/ansi-render-0.5.1.tar.gz"
+hash = "sha256-0SYxjhvXfOyHjRE5sWMG8uWt1DMbs+DFDY67EvEsd9o="
+typstDeps = []
+description = "provides a simple way to render text with ANSI escape sequences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/8LWXpg/typst-ansi-render"
+
+[ansi-render."0.5.0"]
+url = "https://packages.typst.org/preview/ansi-render-0.5.0.tar.gz"
+hash = "sha256-mLJ/jyCc2DTUGRc+YUpiI3/xU4Qx4GF3QpzOCNcP0Ps="
+typstDeps = []
+description = "provides a simple way to render text with ANSI escape sequences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/8LWXpg/typst-ansi-render"
+
+[ansi-render."0.4.2"]
+url = "https://packages.typst.org/preview/ansi-render-0.4.2.tar.gz"
+hash = "sha256-OYL675sQnr6PrhvOPj8Z1Fm8/FPzRBBACDcBonTlmjg="
+typstDeps = []
+description = "provides a simple way to render text with ANSI escape sequences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/8LWXpg/typst-ansi-render"
+
+[ansi-render."0.4.1"]
+url = "https://packages.typst.org/preview/ansi-render-0.4.1.tar.gz"
+hash = "sha256-4HdBgr9ao+nEzvAEmScFFdoWsTiHqutkEr6thzY0k80="
+typstDeps = []
+description = "provides a simple way to render text with ANSI escape sequences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/8LWXpg/typst-ansi-render"
+
+[ansi-render."0.4.0"]
+url = "https://packages.typst.org/preview/ansi-render-0.4.0.tar.gz"
+hash = "sha256-JyoQ2akR+CNKey0KQIHfqiwxG/5fP3LCrv66wOm6AZ8="
+typstDeps = []
+description = "provides a simple way to render text with ANSI escape sequences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/8LWXpg/typst-ansi-render"
+
+[ansi-render."0.3.0"]
+url = "https://packages.typst.org/preview/ansi-render-0.3.0.tar.gz"
+hash = "sha256-FVs/KtkDQ/zy7C9lWI4vd8FrtKPW6bY1hTt0n9X3kaM="
+typstDeps = []
+description = "provides a simple way to render text with ANSI escape sequences in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/8LWXpg/typst-ansi-render"
+
+[ansi-render."0.2.0"]
+url = "https://packages.typst.org/preview/ansi-render-0.2.0.tar.gz"
+hash = "sha256-OAgUDNqXVFBiRgVMIZiTxPPaSyOYXWfkru30q5C0MqA="
+typstDeps = []
+description = "provides a simple way to render text with ANSI escape sequences in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/8LWXpg/typst-ansi-render"
+
+[ansi-render."0.1.0"]
+url = "https://packages.typst.org/preview/ansi-render-0.1.0.tar.gz"
+hash = "sha256-foAzhIQPs64y+HQpuJRA5a87mXFyCrs+jMq+G/45Xtw="
+typstDeps = []
+description = "A simple way to render text with ANSI escape sequences in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/8LWXpg/typst-ansi_render"
+
+[anti-matter."0.1.1"]
+url = "https://packages.typst.org/preview/anti-matter-0.1.1.tar.gz"
+hash = "sha256-VtBqori+QENdbj3irQP7nhA7dUHJDS0v6k04z0hNH3w="
+typstDeps = [
+ "hydra_0_2_0",
+ "oxifmt_0_2_0",
+ "tidy_0_1_0",
+]
+description = "Simple page numbering of front and back matter"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/anti-matter"
+
+[anti-matter."0.1.0"]
+url = "https://packages.typst.org/preview/anti-matter-0.1.0.tar.gz"
+hash = "sha256-1xQ14oJjYdcu6J2KqD/Id/WEn4Lnccw6XpROdviBBuw="
+typstDeps = [
+ "hydra_0_2_0",
+ "oxifmt_0_2_0",
+ "tidy_0_1_0",
+]
+description = "Simple page numbering of front and back matter"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/anti-matter"
+
+[anti-matter."0.0.2"]
+url = "https://packages.typst.org/preview/anti-matter-0.0.2.tar.gz"
+hash = "sha256-mUUXp4h1iRo2jV/KnnD/QXLzFKcnLbaJ3CzfWhpBTZA="
+typstDeps = []
+description = "Simple page numbering of front and back matter"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/typst-anti-matter"
+
+[anti-matter."0.0.1"]
+url = "https://packages.typst.org/preview/anti-matter-0.0.1.tar.gz"
+hash = "sha256-eW9yS9bi6NO+vUKL9DXAfrpGIbNJGmmq18HKTxNEwMU="
+typstDeps = []
+description = "Simple page numbering of front and back matter"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/typst-anti-matter"
+
+[apa7-ish."0.2.0"]
+url = "https://packages.typst.org/preview/apa7-ish-0.2.0.tar.gz"
+hash = "sha256-v9wA1y7hwjfF3yxwaSETM7ifymTT/HasN02vE+0dMFo="
+typstDeps = []
+description = "Typst Template that (mostly) complies with APA7 Style (Work in Progress"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/mrwunderbar666/typst-apa7ish"
+
+[apa7-ish."0.1.0"]
+url = "https://packages.typst.org/preview/apa7-ish-0.1.0.tar.gz"
+hash = "sha256-5YNCD7VkJ69/3idnZsw/GAFLoxrjzU2mFkcoGa7dQ4w="
+typstDeps = []
+description = "Typst Template that (mostly) complies with APA7 Style (Work in Progress"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/mrwunderbar666/typst-apa7ish"
+
+[ape."0.3.2"]
+url = "https://packages.typst.org/preview/ape-0.3.2.tar.gz"
+hash = "sha256-XY+eBfWembY260n2YHH6xS+Nv/O2Z/XQNNafOXkinmg="
+typstDeps = [
+ "cetz_0_3_2",
+ "cetz-plot_0_1_1",
+]
+description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst"
+license = [
+ "MIT",
+]
+
+[ape."0.3.1"]
+url = "https://packages.typst.org/preview/ape-0.3.1.tar.gz"
+hash = "sha256-0xi7RR0JrATYGKnShguD4dXzStGGg6dkrxRhuwUCerE="
+typstDeps = [
+ "cetz_0_3_1",
+ "cetz-plot_0_1_0",
+]
+description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst"
+license = [
+ "MIT",
+]
+
+[ape."0.3.0"]
+url = "https://packages.typst.org/preview/ape-0.3.0.tar.gz"
+hash = "sha256-al4N3HPbHfAEFvLKfCYJanhsm+rzFBK7HCfN8jjcfD8="
+typstDeps = [
+ "cetz_0_3_1",
+ "cetz-plot_0_1_0",
+]
+description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst"
+license = [
+ "MIT",
+]
+
+[ape."0.2.0"]
+url = "https://packages.typst.org/preview/ape-0.2.0.tar.gz"
+hash = "sha256-86xONC374bMptXF8tbobMs42yWsKStD7RCIRRVbCV5Y="
+typstDeps = [
+ "cetz_0_3_1",
+ "cetz-plot_0_1_0",
+]
+description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst"
+license = [
+ "MIT",
+]
+
+[ape."0.1.0"]
+url = "https://packages.typst.org/preview/ape-0.1.0.tar.gz"
+hash = "sha256-9/Rdz1iL4Vw26e3JvaW6BTnyvArxZFttlsVB3deijmg="
+typstDeps = [
+ "cetz_0_3_1",
+ "cetz-plot_0_1_0",
+]
+description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst"
+license = [
+ "MIT",
+]
+
+[appreciated-letter."0.1.0"]
+url = "https://packages.typst.org/preview/appreciated-letter-0.1.0.tar.gz"
+hash = "sha256-iDU0x6Hvs/S21MyOTtZf0IlUXo19Kkm4ry1M48F1yUY="
+typstDeps = []
+description = "Correspond with business associates and your friends via mail"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[arborly."0.2.0"]
+url = "https://packages.typst.org/preview/arborly-0.2.0.tar.gz"
+hash = "sha256-PotA4XfhbE8qPcPUgq4dtbwrGPnP1dT7i4bRqgj4SY4="
+typstDeps = [
+ "mantys_1_0_0",
+]
+description = "A library for producing beautiful syntax tree graphs"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pearcebasmanm/arborly"
+
+[arborly."0.1.1"]
+url = "https://packages.typst.org/preview/arborly-0.1.1.tar.gz"
+hash = "sha256-KlOYYCAwJDxh/tL4DuhcZj+WIMI/yRggYFM01IA+Oik="
+typstDeps = [
+ "mantys_1_0_0",
+]
+description = "A library for producing beautiful syntax tree graphs"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pearcebasmanm/arborly"
+
+[arborly."0.1.0"]
+url = "https://packages.typst.org/preview/arborly-0.1.0.tar.gz"
+hash = "sha256-RjjMMlT4bwmpUYOmMlct4R0PKgCcS/vxmNa4G0os2fw="
+typstDeps = [
+ "mantys_1_0_0",
+]
+description = "A library for producing beautiful syntax tree graphs"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pearcebasmanm/arborly"
+
+[arkheion."0.1.0"]
+url = "https://packages.typst.org/preview/arkheion-0.1.0.tar.gz"
+hash = "sha256-6GxMbR4HDMCWsQDYWZnlcjcb5gpWtyMxReJ9BfGoCbM="
+typstDeps = []
+description = "A simple template reproducing popular arXiv templates"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/mgoulao/arkheion"
+
+[ascii-ipa."2.0.0"]
+url = "https://packages.typst.org/preview/ascii-ipa-2.0.0.tar.gz"
+hash = "sha256-E/ookDGdRJh0Ac29xnNV+AJVALUW/uM7MyztcFJlKdg="
+typstDeps = []
+description = "Converter for ASCII representations of the International Phonetic Alphabet (IPA"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/imatpot/typst-ascii-ipa"
+
+[ascii-ipa."1.1.1"]
+url = "https://packages.typst.org/preview/ascii-ipa-1.1.1.tar.gz"
+hash = "sha256-vrL1t4gc4Yw7smxqGmONzs7icjtduUOhbJn2pQEd1IE="
+typstDeps = []
+description = "Converter for ASCII representations of the International Phonetic Alphabet (IPA"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/imatpot/typst-ascii-ipa"
+
+[ascii-ipa."1.1.0"]
+url = "https://packages.typst.org/preview/ascii-ipa-1.1.0.tar.gz"
+hash = "sha256-ME7AdjI+75c5LVATeYTXgULpQJmOx60tJXR8jypPwRw="
+typstDeps = []
+description = "Converter for ASCII representations of the International Phonetic Alphabet (IPA"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/imatpot/typst-ascii-ipa"
+
+[ascii-ipa."1.0.0"]
+url = "https://packages.typst.org/preview/ascii-ipa-1.0.0.tar.gz"
+hash = "sha256-f88ysIeQS82G4849aBlbpS5MI2O1+q+JXYHgS4mCpVU="
+typstDeps = []
+description = "Converter for ASCII representations of the International Phonetic Alphabet (IPA"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/imatpot/typst-ascii-ipa"
+
+[athena-tu-darmstadt-exercise."0.1.0"]
+url = "https://packages.typst.org/preview/athena-tu-darmstadt-exercise-0.1.0.tar.gz"
+hash = "sha256-xZafuXAwXLTvpJvzjeFwSCla1rJZGsBSJjNkZgIJzQY="
+typstDeps = []
+description = "Exercise template for TU Darmstadt (Technische Universität Darmstadt"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/JeyRunner/tuda-typst-templates"
+
+[athena-tu-darmstadt-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/athena-tu-darmstadt-thesis-0.1.0.tar.gz"
+hash = "sha256-xp2+xdOvfp4W49CAx7FAASLUMmwJ8YBx01m/zmdicO8="
+typstDeps = [
+ "i-figured_0_2_3",
+]
+description = "Thesis template for TU Darmstadt (Technische Universität Darmstadt"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/JeyRunner/tuda-typst-templates"
+
+[atomic."1.0.0"]
+url = "https://packages.typst.org/preview/atomic-1.0.0.tar.gz"
+hash = "sha256-HCigoT3cX1iZkC/2+WZl+1vIx9KKz7Uxm8k9LP121j4="
+typstDeps = [
+ "cetz_0_3_2",
+]
+description = "Draw Atoms, their electron configurations, shells and orbitals in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/aargar1/atomic"
+
+[autofletcher."0.1.1"]
+url = "https://packages.typst.org/preview/autofletcher-0.1.1.tar.gz"
+hash = "sha256-ELyFlfYqV8unjzWmNs9FfDOifSAUYBOgt4R7ZzCQRdg="
+typstDeps = [
+ "autofletcher_0_1_0",
+ "fletcher_0_4_3",
+ "fletcher_0_4_5",
+ "tidy_0_2_0",
+]
+description = "Easier diagrams with fletcher"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/3akev/autofletcher"
+
+[autofletcher."0.1.0"]
+url = "https://packages.typst.org/preview/autofletcher-0.1.0.tar.gz"
+hash = "sha256-Sit9pzyCSJnZ858GorkIU3ji3bQb/RoGwb6xlMxJW7k="
+typstDeps = [
+ "fletcher_0_4_3",
+ "tidy_0_2_0",
+]
+description = "Easier diagrams with fletcher"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/3akev/autofletcher"
+
+[babble-bubbles."0.1.0"]
+url = "https://packages.typst.org/preview/babble-bubbles-0.1.0.tar.gz"
+hash = "sha256-orOm67ydNPmIangnUNiiHiPU6Y5ivQ4KEmCWkFdwdw0="
+typstDeps = []
+description = "A package to create callouts"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ShadowMitia/typst-babble-bubbles"
+
+[babel."0.1.1"]
+url = "https://packages.typst.org/preview/babel-0.1.1.tar.gz"
+hash = "sha256-quGTOatlxmnn5mzjvX+AcMBvYc4z4Rc/1IXjhURBJq8="
+typstDeps = [
+ "fontawesome_0_4_0",
+ "mantys_0_1_4",
+ "metalogo_1_0_2",
+ "suiji_0_3_0",
+ "wrap-it_0_1_0",
+]
+description = "Redact text by replacing it with random characters"
+license = [
+ "MIT-0",
+]
+homepage = "https://codeberg.org/afiaith/babel"
+
+[backtrack."1.0.0"]
+url = "https://packages.typst.org/preview/backtrack-1.0.0.tar.gz"
+hash = "sha256-1r7+26JZm3w47iqKH25jfIPe4J8hqP5PLDmZzoaMm+k="
+typstDeps = []
+description = "A version-agnostic library for checking the compiler version"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/TheLukeGuy/backtrack"
+
+[badformer."0.1.0"]
+url = "https://packages.typst.org/preview/badformer-0.1.0.tar.gz"
+hash = "sha256-8UBr9Puw+5+/zyLyPZQG5Tqph5takTynIro1UT8jB6Y="
+typstDeps = [
+ "cetz_0_1_2",
+]
+description = "Retro-gaming in Typst. Reach the goal and complete the mission"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[badgery."0.1.1"]
+url = "https://packages.typst.org/preview/badgery-0.1.1.tar.gz"
+hash = "sha256-JFTQJnp2uAng8rSAN7zERqj+kYze0j5YjxRYPalyDec="
+typstDeps = []
+description = "Adds styled badges, boxes and menu actions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/dogezen/badgery"
+
+[badgery."0.1.0"]
+url = "https://packages.typst.org/preview/badgery-0.1.0.tar.gz"
+hash = "sha256-efIgFA4s3Gdh8wLc9ovcmjufxSj2lRX2vszvnr1KdW0="
+typstDeps = []
+description = "Adds styled badges, boxes and menu actions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/dogezen/badgery"
+
+[bamdone-aiaa."0.1.2"]
+url = "https://packages.typst.org/preview/bamdone-aiaa-0.1.2.tar.gz"
+hash = "sha256-xamtt+nwE9up9i9I2R3ObIgdSq/HiCPfCYVM19rmq4Q="
+typstDeps = [
+ "droplet_0_3_1",
+]
+description = "An American Institute of Aeronautics and Astronautics (AIAA) template for conferences"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/isaacew/aiaa-typst"
+
+[bamdone-aiaa."0.1.1"]
+url = "https://packages.typst.org/preview/bamdone-aiaa-0.1.1.tar.gz"
+hash = "sha256-M7P3peIFeZcKTQmh6grRAVt4rdj8eNZfx7TOptJmvsU="
+typstDeps = [
+ "bamdone-aiaa_0_1_0",
+ "droplet_0_2_0",
+]
+description = "An American Institute of Aeronautics and Astronautics (AIAA) template for conferences"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/isaacew/aiaa-typst"
+
+[bamdone-aiaa."0.1.0"]
+url = "https://packages.typst.org/preview/bamdone-aiaa-0.1.0.tar.gz"
+hash = "sha256-U8pX27DywfWhIoqtFBzO2atEJF6b1dUyEt2aXiAIAFQ="
+typstDeps = [
+ "droplet_0_2_0",
+]
+description = "An American Institute of Aeronautics and Astronautics (AIAA) template for conferences"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/isaacew/aiaa-typst"
+
+[bamdone-ieeeconf."0.1.1"]
+url = "https://packages.typst.org/preview/bamdone-ieeeconf-0.1.1.tar.gz"
+hash = "sha256-X+LDenUMKXHY1F+cTomrprPA2HmP5YsD96XoApNG3uU="
+typstDeps = []
+description = "An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[bamdone-ieeeconf."0.1.0"]
+url = "https://packages.typst.org/preview/bamdone-ieeeconf-0.1.0.tar.gz"
+hash = "sha256-1pMnfSDHiRONxtUiJwXTpGJwMAyeXyMoGtaArb0bFnQ="
+typstDeps = []
+description = "An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/isaacew/bamdone-ieeeconf"
+
+[bamdone-rebuttal."0.1.1"]
+url = "https://packages.typst.org/preview/bamdone-rebuttal-0.1.1.tar.gz"
+hash = "sha256-0bLWbhrVzFBC95gE6eNeRbMjh3mYHQyXQSBE+5gecIM="
+typstDeps = []
+description = "Rebuttal/response letter template that allows authors to respond to feedback given by reviewers in a peer-review process on a point-by-point basis"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/avonmoll/bamdone-rebuttal"
+
+[bamdone-rebuttal."0.1.0"]
+url = "https://packages.typst.org/preview/bamdone-rebuttal-0.1.0.tar.gz"
+hash = "sha256-2Y5T94C/sSWWcn+WMQfASeDLgfpkKGceRhpd+CO9f+I="
+typstDeps = []
+description = "Rebuttal/response letter template that allows authors to respond to feedback given by reviewers in a peer-review process on a point-by-point basis"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/avonmoll/bamdone-rebuttal"
+
+[basalt-backlinks."0.1.1"]
+url = "https://packages.typst.org/preview/basalt-backlinks-0.1.1.tar.gz"
+hash = "sha256-ynoLsV664bY6MyJF5BXM3/tBXO28g3ZxW567MKg1SgY="
+typstDeps = []
+description = "Generate and get backlinks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/GabrielDTB/basalt-backlinks"
+
+[basalt-backlinks."0.1.0"]
+url = "https://packages.typst.org/preview/basalt-backlinks-0.1.0.tar.gz"
+hash = "sha256-Zj2opKg06Dq+PUn4B89Q3FVVL+JEIUE8G6fTEAGax70="
+typstDeps = []
+description = "Generate and get backlinks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/GabrielDTB/basalt-backlinks"
+
+[basalt-lib."1.0.0"]
+url = "https://packages.typst.org/preview/basalt-lib-1.0.0.tar.gz"
+hash = "sha256-zZg+aIQ+7lEVlRfa8Twi+lOzkgaDJ4lwUl+IY+1UyIg="
+typstDeps = []
+description = "Note taking utilities / Zettelkasten framework"
+license = [
+ "AGPL-3.0-only",
+]
+homepage = "https://github.com/GabrielDTB/basalt-lib"
+
+[based."0.2.0"]
+url = "https://packages.typst.org/preview/based-0.2.0.tar.gz"
+hash = "sha256-UNk8tieGvuGY8Ue9T7r2eCb8Sb1lEe7s4fyV6iX4KYo="
+typstDeps = []
+description = "Encoder and decoder for base64, base32, and base16"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-based"
+
+[based."0.1.0"]
+url = "https://packages.typst.org/preview/based-0.1.0.tar.gz"
+hash = "sha256-5ojwPRdiFM/5r7MN05a1rWh8NRWR7zYh+liM2wNTTS4="
+typstDeps = []
+description = "Encoder and decoder for base64, base32, and base16"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-based"
+
+[basic-document-props."0.1.0"]
+url = "https://packages.typst.org/preview/basic-document-props-0.1.0.tar.gz"
+hash = "sha256-7gHvmsHDUtFNELBPzr2bqGYh+FTk2aI98i2f6n9+SZM="
+typstDeps = []
+description = "Simple document with header, footer, page numbering and mail-adress"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Notme112/typst-packages/"
+
+[basic-polylux."0.1.0"]
+url = "https://packages.typst.org/preview/basic-polylux-0.1.0.tar.gz"
+hash = "sha256-7ZhOZgiktjdN536BmRqx5QUtZvImXHkBUNP/lvVaLwM="
+typstDeps = [
+ "polylux_0_4_0",
+]
+description = "Starter template for Polylux"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/polylux-typ/basic"
+
+[basic-report."0.1.2"]
+url = "https://packages.typst.org/preview/basic-report-0.1.2.tar.gz"
+hash = "sha256-1gyKqdnYu/T7bJahuonb/f8N3tc+w8k3eVLAWo4SmFs="
+typstDeps = [
+ "hydra_0_6_0",
+]
+description = "A simple template for reports"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/roland-KA/basic-report-typst-template"
+
+[basic-report."0.1.1"]
+url = "https://packages.typst.org/preview/basic-report-0.1.1.tar.gz"
+hash = "sha256-kybjfPOj9fgI31fME8v36jsUYYD5deZxZUG9/MBL1sc="
+typstDeps = [
+ "hydra_0_5_1",
+]
+description = "A simple template for reports"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/roland-KA/basic-report-typst-template"
+
+[basic-report."0.1.0"]
+url = "https://packages.typst.org/preview/basic-report-0.1.0.tar.gz"
+hash = "sha256-1+pvstMEer6OjfiJN0D7u4hH6w6pZS+bHcmFykNgrDA="
+typstDeps = [
+ "hydra_0_5_1",
+]
+description = "A simple template for reports"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/roland-KA/basic-report-typst-template"
+
+[basic-resume."0.2.4"]
+url = "https://packages.typst.org/preview/basic-resume-0.2.4.tar.gz"
+hash = "sha256-5j37vf3Xa3Js6uf4z8/KldWbnxfzMz6kBlQ3gWxcw/o="
+typstDeps = [
+ "scienceicons_0_0_6",
+]
+description = "A simple, standard resume, designed to work well with ATS"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/stuxf/basic-typst-resume-template"
+
+[basic-resume."0.2.3"]
+url = "https://packages.typst.org/preview/basic-resume-0.2.3.tar.gz"
+hash = "sha256-hiviO4tvUzChP+7PcGbswL5EKQ5USWCs2hdQbRIygog="
+typstDeps = [
+ "scienceicons_0_0_6",
+]
+description = "A simple, standard resume, designed to work well with ATS"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/stuxf/basic-typst-resume-template"
+
+[basic-resume."0.2.2"]
+url = "https://packages.typst.org/preview/basic-resume-0.2.2.tar.gz"
+hash = "sha256-rH5FUHNt4HF+PCRkcavapTpmf+P3D5b8BnTsocswQwY="
+typstDeps = [
+ "scienceicons_0_0_6",
+]
+description = "A simple, standard resume, designed to work well with ATS"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/stuxf/basic-typst-resume-template"
+
+[basic-resume."0.2.1"]
+url = "https://packages.typst.org/preview/basic-resume-0.2.1.tar.gz"
+hash = "sha256-mr/U5o2XsWwJx1/iMqDSqpgs3tv4Nci3bsDJbkNX5MY="
+typstDeps = [
+ "scienceicons_0_0_6",
+]
+description = "A simple, standard resume, designed to work well with ATS"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/stuxf/basic-typst-resume-template"
+
+[basic-resume."0.2.0"]
+url = "https://packages.typst.org/preview/basic-resume-0.2.0.tar.gz"
+hash = "sha256-Wc8SSm0D4qf4s/UxSNYczdG8pyrVAmRyviYUXlakeug="
+typstDeps = []
+description = "A simple, standard resume, designed to work well with ATS"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/stuxf/basic-typst-resume-template"
+
+[basic-resume."0.1.4"]
+url = "https://packages.typst.org/preview/basic-resume-0.1.4.tar.gz"
+hash = "sha256-AgKKQ9hmyQGbTC6HyE8y5A0O4QFezibOLRgpXxQHbfY="
+typstDeps = []
+description = "A simple, standard resume, designed to work well with ATS"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/stuxf/basic-typst-resume-template"
+
+[basic-resume."0.1.3"]
+url = "https://packages.typst.org/preview/basic-resume-0.1.3.tar.gz"
+hash = "sha256-0+XSchadFrSRcFKlmQrlUVX3h/esIdsPoWkUkwIuAkM="
+typstDeps = []
+description = "A simple, standard resume, designed to work well with ATS"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/stuxf/basic-typst-resume-template"
+
+[basic-resume."0.1.2"]
+url = "https://packages.typst.org/preview/basic-resume-0.1.2.tar.gz"
+hash = "sha256-670UlPwj8JuCp0/DOCK/dgkTBfyzuf6dqs4phCIOK8Y="
+typstDeps = [
+ "basic-resume_0_1_0",
+]
+description = "A simple, standard resume, designed to work well with ATS"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/stuxf/basic-typst-resume-template"
+
+[basic-resume."0.1.0"]
+url = "https://packages.typst.org/preview/basic-resume-0.1.0.tar.gz"
+hash = "sha256-O/a7vafRcwzB2wJCU0m69OlkU1KyS7DNLeEzLx2VEHw="
+typstDeps = []
+description = "A simple, standard resume, designed to work well with ATS"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/stuxf/basic-typst-resume-template"
+
+[biceps."0.0.1"]
+url = "https://packages.typst.org/preview/biceps-0.0.1.tar.gz"
+hash = "sha256-w72oSOKuw72q7hK5mF78nwRsWVnI/mAXQvFWtdp89KM="
+typstDeps = []
+description = "Layout algorithm for CSS-style flex-wrap behavior. 💪"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pikaju/typst-biceps"
+
+[big-rati."0.1.0"]
+url = "https://packages.typst.org/preview/big-rati-0.1.0.tar.gz"
+hash = "sha256-g5YmNTI6FpHbGIOkexiBXVkZOWiw2ylvhmFyNhkVE+I="
+typstDeps = []
+description = "Utilities to work with big rational numbers in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DanikVitek/typst-plugin-bigrational"
+
+[big-todo."0.2.0"]
+url = "https://packages.typst.org/preview/big-todo-0.2.0.tar.gz"
+hash = "sha256-0EFS2Uxzvcklih6cfaw9PNl0TfvEy/wHcbQm7ruqf3g="
+typstDeps = []
+description = "Package to insert clear TODOs, optionally with an outline"
+license = [
+ "Unlicense",
+]
+
+[big-todo."0.1.0"]
+url = "https://packages.typst.org/preview/big-todo-0.1.0.tar.gz"
+hash = "sha256-7cw1KllbTWb2OUAIFl42p8rmrHbxRAB5+qEXck6qud8="
+typstDeps = []
+description = "Package to insert clear TODOs. Optionallay with an outline"
+license = [
+ "Unlicense",
+]
+
+[blind-cvpr."0.5.0"]
+url = "https://packages.typst.org/preview/blind-cvpr-0.5.0.tar.gz"
+hash = "sha256-TQT7Zj0n7OJVfI9btjb/IRzS/1kXzETm6QGM0B5ldwI="
+typstDeps = []
+description = "CVPR-style paper template to publish at the Computer Vision and Pattern\nRecognition (CVPR) conferences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/daskol/typst-templates"
+
+[blindex."0.1.0"]
+url = "https://packages.typst.org/preview/blindex-0.1.0.tar.gz"
+hash = "sha256-/yYkghkgeF6yTm6fVK2Qj5HEf/XDeJ2oQ7M1jIW6TDU="
+typstDeps = []
+description = "Index-making of Biblical literature citations in Typst"
+license = [
+ "MIT",
+]
+
+[blinky."0.2.0"]
+url = "https://packages.typst.org/preview/blinky-0.2.0.tar.gz"
+hash = "sha256-R00jeUxy1y/OwiDbknFbjxnxbD0JT1MnTIkkeeQTpa0="
+typstDeps = []
+description = "Typesets paper titles in bibliographies as hyperlinks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/alexanderkoller/typst-blinky"
+
+[blinky."0.1.1"]
+url = "https://packages.typst.org/preview/blinky-0.1.1.tar.gz"
+hash = "sha256-k3tKYhqvwH2Q85Wj+S8Pb6UHSKe8FqCbnlNjuAHPG78="
+typstDeps = []
+description = "Typesets paper titles in bibliographies as hyperlinks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/alexanderkoller/typst-blinky"
+
+[blinky."0.1.0"]
+url = "https://packages.typst.org/preview/blinky-0.1.0.tar.gz"
+hash = "sha256-2sSEMYDQuvdiTyXGM9wL5oda9h+fMFUvrhMAuUCSNU0="
+typstDeps = []
+description = "Typesets paper titles in bibliographies as hyperlinks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/alexanderkoller/typst-blinky"
+
+[bloated-neurips."0.7.0"]
+url = "https://packages.typst.org/preview/bloated-neurips-0.7.0.tar.gz"
+hash = "sha256-9keS/3dURmiljmkXje5HEnrGRclAPsclMFry8IEEA54="
+typstDeps = []
+description = "NeurIPS-style paper template to publish at the Conference and Workshop on\nNeural Information Processing Systems"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/daskol/typst-templates"
+
+[bloated-neurips."0.5.1"]
+url = "https://packages.typst.org/preview/bloated-neurips-0.5.1.tar.gz"
+hash = "sha256-pTfWQlVy1bs1rYDpFKxSH2ZqMGJbg4yKUUAIHv2j/+0="
+typstDeps = []
+description = "NeurIPS-style paper template to publish at the Conference and Workshop on\nNeural Information Processing Systems"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/daskol/typst-templates"
+
+[bloated-neurips."0.5.0"]
+url = "https://packages.typst.org/preview/bloated-neurips-0.5.0.tar.gz"
+hash = "sha256-Q9LFcl0BDic8LFxPAU1BOrBkifPjR/ssEMb5EFMmMwE="
+typstDeps = []
+description = "NeurIPS-style paper template to publish at the Conference and Workshop on\nNeural Information Processing Systems"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/daskol/typst-templates"
+
+[bloated-neurips."0.2.1"]
+url = "https://packages.typst.org/preview/bloated-neurips-0.2.1.tar.gz"
+hash = "sha256-F140Gsyh0fqzEJMKo0+au1d19bwWxHmer5LvWA9M3fI="
+typstDeps = [
+ "tablex_0_0_8",
+]
+description = "NeurIPS-style paper template to publish at the Conference and Workshop on Neural Information Processing Systems"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/daskol/typst-templates"
+
+[board-n-pieces."0.6.0"]
+url = "https://packages.typst.org/preview/board-n-pieces-0.6.0.tar.gz"
+hash = "sha256-x2qB8ydJQeyLWmbaC+GGc8+OmLqzAXTS/jI7BVTp3AE="
+typstDeps = []
+description = "Display chessboards"
+license = [
+ "MIT",
+ "GPL-2.0-only",
+]
+homepage = "https://github.com/MDLC01/board-n-pieces"
+
+[board-n-pieces."0.5.0"]
+url = "https://packages.typst.org/preview/board-n-pieces-0.5.0.tar.gz"
+hash = "sha256-hAEH1xhOd5JIJNbxaBm6t07LCMTv7chkfCUArJCPD1I="
+typstDeps = []
+description = "Display chessboards"
+license = [
+ "MIT",
+ "GPL-2.0-only",
+]
+homepage = "https://github.com/MDLC01/board-n-pieces"
+
+[board-n-pieces."0.4.0"]
+url = "https://packages.typst.org/preview/board-n-pieces-0.4.0.tar.gz"
+hash = "sha256-ecnWsR8245TByY861tfNFIYqWl2ZZaMpcgOIOIKdtDw="
+typstDeps = []
+description = "Display chessboards"
+license = [
+ "MIT",
+ "GPL-2.0-only",
+]
+homepage = "https://github.com/MDLC01/board-n-pieces"
+
+[board-n-pieces."0.3.0"]
+url = "https://packages.typst.org/preview/board-n-pieces-0.3.0.tar.gz"
+hash = "sha256-A7xnWwYU9SBCC0YusEYeloMg1+LvKTGj4S2Im2CFUT4="
+typstDeps = []
+description = "Display chessboards in Typst"
+license = [
+ "MIT",
+ "GPL-2.0-only",
+]
+homepage = "https://github.com/MDLC01/board-n-pieces"
+
+[board-n-pieces."0.2.0"]
+url = "https://packages.typst.org/preview/board-n-pieces-0.2.0.tar.gz"
+hash = "sha256-Mpck3H4PG+xaWQRKThRXzNvIUKJJsCRJbn8+nSXLjYs="
+typstDeps = []
+description = "Display chessboards in Typst"
+license = [
+ "MIT",
+ "GPL-2.0-only",
+]
+homepage = "https://github.com/MDLC01/board-n-pieces"
+
+[board-n-pieces."0.1.0"]
+url = "https://packages.typst.org/preview/board-n-pieces-0.1.0.tar.gz"
+hash = "sha256-s9qRve872no4iYUQf7sqISZ9F5MeARHf90YBWApnCH0="
+typstDeps = []
+description = "Display chessboards in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/MDLC01/board-n-pieces"
+
+[bob-draw."0.1.0"]
+url = "https://packages.typst.org/preview/bob-draw-0.1.0.tar.gz"
+hash = "sha256-cIMRYn4olOWSMeG7Y7YuF28jx0J1HJv8ZocJ8GJiygc="
+typstDeps = []
+description = "svgbob for typst, powered by wasm"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LucaCiucci/bob-typ"
+
+[bone-resume."0.3.0"]
+url = "https://packages.typst.org/preview/bone-resume-0.3.0.tar.gz"
+hash = "sha256-K7aEUrw64QqZrxgjWhpEk/bf0lpC0BJ+0uVBhfduxkk="
+typstDeps = [
+ "oxifmt_0_2_1",
+]
+description = "A colorful resume template for chinese"
+license = [
+ "Apache-2.0",
+]
+
+[bone-resume."0.2.0"]
+url = "https://packages.typst.org/preview/bone-resume-0.2.0.tar.gz"
+hash = "sha256-QFKP+J3kdewBeevrlGmVnY5yPcvdclCeM9zcNqYnZB8="
+typstDeps = []
+description = "A colorful resume template for chinese"
+license = [
+ "Apache-2.0",
+]
+
+[bone-resume."0.1.0"]
+url = "https://packages.typst.org/preview/bone-resume-0.1.0.tar.gz"
+hash = "sha256-7KEayyZt2MgFKDL9uUnqyNS7IeAqfYrBsRec4bD8RSQ="
+typstDeps = []
+description = "A colorful resume template for chinese"
+license = [
+ "Apache-2.0",
+]
+
+[bookletic."0.3.0"]
+url = "https://packages.typst.org/preview/bookletic-0.3.0.tar.gz"
+hash = "sha256-U6mNxN+NdcUFcfF+b//TTFaOotLj9xM8KpCsI4snAlw="
+typstDeps = []
+description = "Create beautiful booklets with ease"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/harrellbm/Bookletic.git"
+
+[bookletic."0.2.0"]
+url = "https://packages.typst.org/preview/bookletic-0.2.0.tar.gz"
+hash = "sha256-HeDucS52jnzXuh4e8e7JiJoHBT4sVc4L+pmViEE9mgA="
+typstDeps = []
+description = "Create beautiful booklets with ease"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/harrellbm/Bookletic.git"
+
+[bookletic."0.1.0"]
+url = "https://packages.typst.org/preview/bookletic-0.1.0.tar.gz"
+hash = "sha256-aq4JGmoZFnAIxy9+l/WC1piuPfacLiCJhFO9Hj/V2ps="
+typstDeps = []
+description = "Create beautiful booklets with ease"
+license = [
+ "Apache-2.0",
+]
+
+[boxr."0.1.0"]
+url = "https://packages.typst.org/preview/boxr-0.1.0.tar.gz"
+hash = "sha256-7/BI8so0a2VnjP99d7FR9SiMKN2MXrcH8gPX8UvV6Gg="
+typstDeps = []
+description = "A modular, and easy to use, package for creating cardboard cutouts in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Lypsilonx/boxr"
+
+[brilliant-cv."2.0.5"]
+url = "https://packages.typst.org/preview/brilliant-cv-2.0.5.tar.gz"
+hash = "sha256-55ldsGnrsDowYYz1mxIlcLXIna8gRteDikv6K56aXDo="
+typstDeps = [
+ "fontawesome_0_2_1",
+ "tidy_0_3_0",
+]
+description = "💼 another CV template for your job application, yet powered by Typst and more"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/yunanwg/brilliant-CV"
+
+[brilliant-cv."2.0.4"]
+url = "https://packages.typst.org/preview/brilliant-cv-2.0.4.tar.gz"
+hash = "sha256-Pbsw/lH5VDsCbFRrlG6Yqxyp0yIkfDHr+NsPf7Df8ms="
+typstDeps = [
+ "fontawesome_0_2_1",
+ "tidy_0_3_0",
+]
+description = "💼 another CV template for your job application, yet powered by Typst and more"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/mintyfrankie/brilliant-CV"
+
+[brilliant-cv."2.0.3"]
+url = "https://packages.typst.org/preview/brilliant-cv-2.0.3.tar.gz"
+hash = "sha256-t7jvJ5itN0YZDdP7Qpd5/vYsKxgDZsfbXlGqL8G5HDw="
+typstDeps = [
+ "fontawesome_0_2_1",
+ "tidy_0_3_0",
+]
+description = "💼 another CV template for your job application, yet powered by Typst and more"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/mintyfrankie/brilliant-CV"
+
+[brilliant-cv."2.0.2"]
+url = "https://packages.typst.org/preview/brilliant-cv-2.0.2.tar.gz"
+hash = "sha256-bkP17C9TRbpHT5x6UOf8bUuP3wTBYnFrPgn5kpPKCwk="
+typstDeps = [
+ "fontawesome_0_2_1",
+ "tidy_0_3_0",
+]
+description = "💼 another CV template for your job application, yet powered by Typst and more"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/mintyfrankie/brilliant-CV"
+
+[brilliant-cv."2.0.1"]
+url = "https://packages.typst.org/preview/brilliant-cv-2.0.1.tar.gz"
+hash = "sha256-bTF80A4Aaq+e8rch7SyzbtyhdbL9j6S4bkPqq1XbwKk="
+typstDeps = [
+ "fontawesome_0_2_1",
+ "tidy_0_3_0",
+]
+description = "💼 another CV template for your job application, yet powered by Typst and more"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/mintyfrankie/brilliant-CV"
+
+[brilliant-cv."2.0.0"]
+url = "https://packages.typst.org/preview/brilliant-cv-2.0.0.tar.gz"
+hash = "sha256-xMA/JuuKdCcr6Nik8RebMYElOgoAOhUpu0h4FPgYilQ="
+typstDeps = [
+ "fontawesome_0_2_1",
+ "tidy_0_3_0",
+]
+description = "💼 another CV template for your job application, yet powered by Typst and more"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/mintyfrankie/brilliant-CV"
+
+[bubble."0.2.2"]
+url = "https://packages.typst.org/preview/bubble-0.2.2.tar.gz"
+hash = "sha256-XbhNC2LTKnWwtV4wvlAMcVlqcnnwDWxTawI1Wr9vsTQ="
+typstDeps = []
+description = "Simple and colorful template for Typst"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/hzkonor/bubble-template"
+
+[bubble."0.2.1"]
+url = "https://packages.typst.org/preview/bubble-0.2.1.tar.gz"
+hash = "sha256-Andpw7TqPSbX606dVtKfhCN+6D1qlSsjFyJGc26nfpw="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Simple and colorful template for Typst"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/hzkonor/bubble-template"
+
+[bubble."0.2.0"]
+url = "https://packages.typst.org/preview/bubble-0.2.0.tar.gz"
+hash = "sha256-QfQFGzNvh6EDJ02El/c2iTj745uIFdpUpQwEkNz5/UU="
+typstDeps = [
+ "codelst_2_0_0",
+]
+description = "Simple and colorful template for Typst"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/hzkonor/bubble-template"
+
+[bubble."0.1.0"]
+url = "https://packages.typst.org/preview/bubble-0.1.0.tar.gz"
+hash = "sha256-/LgM9GSbbRPYjuTRFN/DpucMKgit2rfWP9/5NzvnGKY="
+typstDeps = [
+ "codelst_2_0_0",
+]
+description = "Simple and colorful template for Typst"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/hzkonor/bubble-template"
+
+[bytefield."0.0.7"]
+url = "https://packages.typst.org/preview/bytefield-0.0.7.tar.gz"
+hash = "sha256-9DfhrwSRR/W/YC5N0IdYyh/ILP+2n+C88tWdCekWnt0="
+typstDeps = [
+ "oxifmt_0_2_1",
+]
+description = "A package to create network protocol headers, memory map, register definitions and more"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-bytefield"
+
+[bytefield."0.0.6"]
+url = "https://packages.typst.org/preview/bytefield-0.0.6.tar.gz"
+hash = "sha256-GlyGBt5J6Dtzku/0/9yN+3uvmJNpCaylDO0AF1+2B5U="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "A package to create network protocol headers, memory map, register definitions and more"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-bytefield"
+
+[bytefield."0.0.5"]
+url = "https://packages.typst.org/preview/bytefield-0.0.5.tar.gz"
+hash = "sha256-f/6NwbSO/fCV2MnKFJxR5ezdrC82MVcvqXYIOz5V1Aw="
+typstDeps = [
+ "oxifmt_0_2_0",
+ "tablex_0_0_8",
+]
+description = "A package to create network protocol headers, memory map, register definitions and more"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-bytefield"
+
+[bytefield."0.0.4"]
+url = "https://packages.typst.org/preview/bytefield-0.0.4.tar.gz"
+hash = "sha256-09kDW0seiKYi0Na18ehhURhinpE61NaSBVQMvex0R3A="
+typstDeps = [
+ "oxifmt_0_2_0",
+ "tablex_0_0_8",
+]
+description = "A package to create network protocol headers, memory map, register definitions and more"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-bytefield"
+
+[bytefield."0.0.3"]
+url = "https://packages.typst.org/preview/bytefield-0.0.3.tar.gz"
+hash = "sha256-zf06BmYkdSVUQqONPwXj6mJOjcPSX9Lszr5KtkIcZhw="
+typstDeps = [
+ "tablex_0_0_6",
+]
+description = "A package to create network protocol headers"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-bytefield"
+
+[bytefield."0.0.2"]
+url = "https://packages.typst.org/preview/bytefield-0.0.2.tar.gz"
+hash = "sha256-QOlQaJ3k4fUkHKW1dN8E2npBchHbC7IPkljxKou5GzQ="
+typstDeps = [
+ "tablex_0_0_4",
+]
+description = "A package to create network protocol headers"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-bytefield"
+
+[bytefield."0.0.1"]
+url = "https://packages.typst.org/preview/bytefield-0.0.1.tar.gz"
+hash = "sha256-OOLcy7PwmB4E903HoQ27FPaGYFpIsAwnyF6jC03vREo="
+typstDeps = [
+ "tablex_0_0_4",
+]
+description = "A package to create network protocol headers"
+license = [
+ "MIT",
+]
+
+[cades."0.3.0"]
+url = "https://packages.typst.org/preview/cades-0.3.0.tar.gz"
+hash = "sha256-zoBTB6qqLMwGqmSGb4TalcWpUwyt1ZG/GOHy8V/pmDA="
+typstDeps = [
+ "jogs_0_2_0",
+]
+description = "Generate QR codes in typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Midbin/cades"
+
+[cades."0.2.0"]
+url = "https://packages.typst.org/preview/cades-0.2.0.tar.gz"
+hash = "sha256-JdW95eiWCeydfmg4nGY5BDYFB4CSef9HMyvY2BhdiIQ="
+typstDeps = [
+ "jogs_0_2_0",
+]
+description = "Generate QR codes in typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Midbin/cades"
+
+[caidan."0.1.0"]
+url = "https://packages.typst.org/preview/caidan-0.1.0.tar.gz"
+hash = "sha256-W20oZOScx7dewZw4ee854jfhabq2cn1K3+sjS1JCvnI="
+typstDeps = []
+description = "A clean and minimal food menu template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/cu1ch3n/caidan"
+
+[callisto."0.1.0"]
+url = "https://packages.typst.org/preview/callisto-0.1.0.tar.gz"
+hash = "sha256-NFM3r0abms6sKHF5YEAm2DaxaN+Wo6UcclZviMAFTdc="
+typstDeps = [
+ "based_0_2_0",
+ "cmarker_0_1_3",
+ "mitex_0_2_5",
+]
+description = "Import Jupyter notebooks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/knuesel/callisto"
+
+[canonical-nthu-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/canonical-nthu-thesis-0.2.0.tar.gz"
+hash = "sha256-W58iv2XIWSUmMSjNzrW8fV0ZwDvaGZ4StHM3kEmMUW4="
+typstDeps = []
+description = "A template for master theses and doctoral dissertations for NTHU (National Tsing Hua University"
+license = [
+ "MIT",
+]
+homepage = "https://codeberg.org/kotatsuyaki/canonical-nthu-thesis"
+
+[canonical-nthu-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/canonical-nthu-thesis-0.1.0.tar.gz"
+hash = "sha256-R08S8+CTNOlQuRPeDhWf9wmbMiScDAi3zTwF0VhE7oA="
+typstDeps = []
+description = "A template for master theses and doctoral dissertations for NTHU (National Tsing Hua University"
+license = [
+ "MIT",
+]
+homepage = "https://codeberg.org/kotatsuyaki/canonical-nthu-thesis"
+
+[cartao."0.1.0"]
+url = "https://packages.typst.org/preview/cartao-0.1.0.tar.gz"
+hash = "sha256-x1KHuXZo1e1OX3ZjGSVwnQmjSUGeOsaq37gywsUP0wY="
+typstDeps = []
+description = "Dead simple flashcards with Typst"
+license = [
+ "MIT",
+]
+
+[casson-uom-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/casson-uom-thesis-0.1.0.tar.gz"
+hash = "sha256-MskcdQvh8V3WhwTvKkm9rRKJ5fsvn8JoJwbCjLgMaVQ="
+typstDeps = [
+ "wordometer_0_1_4",
+]
+description = "Typst template based upon The University of Manchester Presentation of Theses Policy. Responsibility for ensuring compliance with the presentation policy remains with the candidate"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/ALEX-CASSON-LAB/uom_phd_thesis_typst_template"
+
+[casual-szu-report."0.1.0"]
+url = "https://packages.typst.org/preview/casual-szu-report-0.1.0.tar.gz"
+hash = "sha256-LCjN8DrVfS6Gvp+RciJ4Mlf9f1udc93OFBByFf0bDQU="
+typstDeps = []
+description = "A template for SZU course reports"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jiang131072/casual-szu-report"
+
+[ccicons."1.0.1"]
+url = "https://packages.typst.org/preview/ccicons-1.0.1.tar.gz"
+hash = "sha256-A0ANuek+bbtQKOlW39RVvTonfum33Cl3KEhhlWwRwmw="
+typstDeps = []
+description = "A port of the ccicon LaTeX package for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-ccicons"
+
+[ccicons."1.0.0"]
+url = "https://packages.typst.org/preview/ccicons-1.0.0.tar.gz"
+hash = "sha256-qQBHl8+XLP4YzU3d1HL31oykP7G6F0ADX1FBlatLcck="
+typstDeps = []
+description = "A port of the ccicon LaTeX package for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-ccicons"
+
+[cereal-words."0.1.0"]
+url = "https://packages.typst.org/preview/cereal-words-0.1.0.tar.gz"
+hash = "sha256-nfAUTurQid40lvLFmAZzEbVOaCLYVzcH32nEidrMTpU="
+typstDeps = []
+description = "Time to kill? Search for words in a box of letters"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[cetz."0.3.4"]
+url = "https://packages.typst.org/preview/cetz-0.3.4.tar.gz"
+hash = "sha256-UvHEY4klR5Wi0Pk8DYVcfUmLsOnxEGOcjNu6B9/Nr9s="
+typstDeps = [
+ "oxifmt_0_2_1",
+]
+description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout"
+license = [
+ "LGPL-3.0-or-later",
+]
+homepage = "https://github.com/cetz-package/cetz"
+
+[cetz."0.3.3"]
+url = "https://packages.typst.org/preview/cetz-0.3.3.tar.gz"
+hash = "sha256-F3Uyklc8haiSBHQfk9Xiq0L0NuoO8aEy7/xxoSypfuo="
+typstDeps = [
+ "oxifmt_0_2_1",
+]
+description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout"
+license = [
+ "LGPL-3.0-or-later",
+]
+homepage = "https://github.com/cetz-package/cetz"
+
+[cetz."0.3.2"]
+url = "https://packages.typst.org/preview/cetz-0.3.2.tar.gz"
+hash = "sha256-coMtQPXnloQ7PgxEhPSmRoiUUKl55mcjgioCu0UUgnQ="
+typstDeps = [
+ "oxifmt_0_2_1",
+]
+description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout"
+license = [
+ "LGPL-3.0-or-later",
+]
+homepage = "https://github.com/cetz-package/cetz"
+
+[cetz."0.3.1"]
+url = "https://packages.typst.org/preview/cetz-0.3.1.tar.gz"
+hash = "sha256-B2tDHVweLoNo6Iv6fX6NgVXc0upxI95RRd0DUp2/PaE="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout"
+license = [
+ "LGPL-3.0-or-later",
+]
+homepage = "https://github.com/cetz-package/cetz"
+
+[cetz."0.3.0"]
+url = "https://packages.typst.org/preview/cetz-0.3.0.tar.gz"
+hash = "sha256-7fB7i4h/869yrpFVz9JSrPBpFPFXHY9Ez7+tNeiU6rM="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout"
+license = [
+ "LGPL-3.0-or-later",
+]
+homepage = "https://github.com/cetz-package/cetz"
+
+[cetz."0.2.2"]
+url = "https://packages.typst.org/preview/cetz-0.2.2.tar.gz"
+hash = "sha256-4hjOUG21gKZ4rwJ49OJ/NlT8/2eG+EQpMe+Vb9tYbdA="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/johannes-wolf/cetz"
+
+[cetz."0.2.1"]
+url = "https://packages.typst.org/preview/cetz-0.2.1.tar.gz"
+hash = "sha256-zwbUwa3e/ZofblYKvqy4em0B1DW3I5VeTPNQ4WywgI4="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/johannes-wolf/cetz"
+
+[cetz."0.2.0"]
+url = "https://packages.typst.org/preview/cetz-0.2.0.tar.gz"
+hash = "sha256-BV1KgRCHSAdoTzpQc6utPMUoNr1VHBFHFoqEkUZ7KUw="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/johannes-wolf/cetz"
+
+[cetz."0.1.2"]
+url = "https://packages.typst.org/preview/cetz-0.1.2.tar.gz"
+hash = "sha256-fDTg4Lq+uMNkPW9B8iSBALnFL4XTH62Wti3SAz0QnM8="
+typstDeps = []
+description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/johannes-wolf/cetz"
+
+[cetz."0.1.1"]
+url = "https://packages.typst.org/preview/cetz-0.1.1.tar.gz"
+hash = "sha256-EFjojMkHmJXX5MpSS0jU+6kuoyRdM7q0b1J3Rn3MqAo="
+typstDeps = [
+ "cetz_0_1_0",
+]
+description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/johannes-wolf/typst-canvas"
+
+[cetz."0.1.0"]
+url = "https://packages.typst.org/preview/cetz-0.1.0.tar.gz"
+hash = "sha256-HMoYoty4VR+MUmU9jQPgQg9v3CGdLttC4d56zfhzxBI="
+typstDeps = []
+description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/johannes-wolf/typst-canvas"
+
+[cetz."0.0.2"]
+url = "https://packages.typst.org/preview/cetz-0.0.2.tar.gz"
+hash = "sha256-W+Sa+Go1rxTFKOMmYRzv37E2jnO7evHYLS4BEKu7iBE="
+typstDeps = []
+description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/johannes-wolf/typst-canvas"
+
+[cetz."0.0.1"]
+url = "https://packages.typst.org/preview/cetz-0.0.1.tar.gz"
+hash = "sha256-lktrteyeK5/87rzF2B+AhgTTmDI4fNZS+pHtg0VNTxw="
+typstDeps = []
+description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/johannes-wolf/typst-canvas"
+
+[cetz-plot."0.1.1"]
+url = "https://packages.typst.org/preview/cetz-plot-0.1.1.tar.gz"
+hash = "sha256-Avs6kQAhaxY2OfnJgBx1Ywyo26Y+MUiE6/7aVd/12Ic="
+typstDeps = [
+ "cetz_0_3_2",
+]
+description = "Plotting module for CeTZ"
+license = [
+ "LGPL-3.0-or-later",
+]
+homepage = "https://github.com/cetz-package/cetz-plot"
+
+[cetz-plot."0.1.0"]
+url = "https://packages.typst.org/preview/cetz-plot-0.1.0.tar.gz"
+hash = "sha256-Y6oLpLh8/MDbaDNyADpJ1zT1rE68RGQ0+E1UYioYVYg="
+typstDeps = [
+ "cetz_0_3_1",
+]
+description = "Plotting module for CeTZ"
+license = [
+ "LGPL-3.0-or-later",
+]
+homepage = "https://github.com/cetz-package/cetz-plot"
+
+[cetz-venn."0.1.3"]
+url = "https://packages.typst.org/preview/cetz-venn-0.1.3.tar.gz"
+hash = "sha256-eoVVTVaKLn3qiRngQ4RYIE0yrDLawVr7KMx3NPqdfv4="
+typstDeps = [
+ "cetz_0_3_2",
+]
+description = "CeTZ library for drawing venn diagrams for two or three sets"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/johannes-wolf/cetz-venn"
+
+[cetz-venn."0.1.2"]
+url = "https://packages.typst.org/preview/cetz-venn-0.1.2.tar.gz"
+hash = "sha256-o9rkI/qTcRPIayNZ6X0UDTQxgPqc8s9qtRc4PAYWCqI="
+typstDeps = [
+ "cetz_0_3_1",
+]
+description = "CeTZ library for drawing venn diagrams for two or three sets"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/johannes-wolf/cetz-venn"
+
+[cetz-venn."0.1.1"]
+url = "https://packages.typst.org/preview/cetz-venn-0.1.1.tar.gz"
+hash = "sha256-AdStBAZrnPyea+/VNpUEmHqH0l4Sh9oVjk/omQkF9QA="
+typstDeps = [
+ "cetz_0_2_2",
+]
+description = "CeTZ library for drawing venn diagrams for two or three sets"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/johannes-wolf/cetz-venn"
+
+[cetz-venn."0.1.0"]
+url = "https://packages.typst.org/preview/cetz-venn-0.1.0.tar.gz"
+hash = "sha256-7qVLFa82pFHNygxo3DtUC9DKgQtp1hyvvKlefo6UQn0="
+typstDeps = [
+ "cetz_0_2_1",
+]
+description = "CeTZ library for drawing venn diagrams for two or three sets"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/johannes-wolf/cetz-venn"
+
+[charged-ieee."0.1.3"]
+url = "https://packages.typst.org/preview/charged-ieee-0.1.3.tar.gz"
+hash = "sha256-Ry2Xnw6YpWS9I3PzE+dj9ZRdZhtXDBLnVJKDAJY4au8="
+typstDeps = []
+description = "An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[charged-ieee."0.1.2"]
+url = "https://packages.typst.org/preview/charged-ieee-0.1.2.tar.gz"
+hash = "sha256-mCaM0nH3ly/cbKGFb9rdqttV1XBij+wdAXd14QwUWjU="
+typstDeps = []
+description = "An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[charged-ieee."0.1.1"]
+url = "https://packages.typst.org/preview/charged-ieee-0.1.1.tar.gz"
+hash = "sha256-bh0BxAHbb8p8MiASRRb+DJJJ+9/iRphHm9S4I12FJqg="
+typstDeps = []
+description = "An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[charged-ieee."0.1.0"]
+url = "https://packages.typst.org/preview/charged-ieee-0.1.0.tar.gz"
+hash = "sha256-5omVDYmvuC7rZ20YVZUFIRTVnmLz0XHpseqbp5qqLNg="
+typstDeps = []
+description = "An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[chatter."0.1.0"]
+url = "https://packages.typst.org/preview/chatter-0.1.0.tar.gz"
+hash = "sha256-WIVKpYwXsjAMF5Lc0pyPsLzo1IScpoJVV0qRr8WZNHA="
+typstDeps = []
+description = "Write dialog between any number of characters quickly and cleanly. Great for translations or short assignments"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/sylvanfranklin/chatter"
+
+[cheda-seu-thesis."0.3.3"]
+url = "https://packages.typst.org/preview/cheda-seu-thesis-0.3.3.tar.gz"
+hash = "sha256-AkY3KcLDVSODiFyCFCFbC7PiUTYyqL2j8PBvvKTFj0U="
+typstDeps = [
+ "a2c-nums_0_0_1",
+ "codelst_2_0_2",
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+]
+description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/csimide/SEU-Typst-Template"
+
+[cheda-seu-thesis."0.3.2"]
+url = "https://packages.typst.org/preview/cheda-seu-thesis-0.3.2.tar.gz"
+hash = "sha256-LvDjUjYyVWiFZjjlA/TemBiHf6F86tq+euBGAGlhkrc="
+typstDeps = [
+ "a2c-nums_0_0_1",
+ "codelst_2_0_2",
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+]
+description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/csimide/SEU-Typst-Template"
+
+[cheda-seu-thesis."0.3.1"]
+url = "https://packages.typst.org/preview/cheda-seu-thesis-0.3.1.tar.gz"
+hash = "sha256-vbpbI1lu87MemMucjf1tSBsMjZ8SeobIjZDSwXUD7ZQ="
+typstDeps = [
+ "a2c-nums_0_0_1",
+ "codelst_2_0_2",
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+]
+description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/csimide/SEU-Typst-Template"
+
+[cheda-seu-thesis."0.3.0"]
+url = "https://packages.typst.org/preview/cheda-seu-thesis-0.3.0.tar.gz"
+hash = "sha256-mpPCAhjTcYPXEiu6UN6ALLujZZST9oLI5j4q8mwy77A="
+typstDeps = [
+ "a2c-nums_0_0_1",
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+ "sourcerer_0_2_1",
+]
+description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/csimide/SEU-Typst-Template"
+
+[cheda-seu-thesis."0.2.2"]
+url = "https://packages.typst.org/preview/cheda-seu-thesis-0.2.2.tar.gz"
+hash = "sha256-DwoLvvVlUaH6uuHfGzpDSmB+jCaQvLVlkpSlN7rOviU="
+typstDeps = [
+ "a2c-nums_0_0_1",
+ "cuti_0_2_1",
+ "sourcerer_0_2_1",
+]
+description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/csimide/SEU-Typst-Template"
+
+[cheda-seu-thesis."0.2.1"]
+url = "https://packages.typst.org/preview/cheda-seu-thesis-0.2.1.tar.gz"
+hash = "sha256-rrAJ4jHZh08M22nKw4bV1MFy1eJWg3KQXdGBNMNjFYM="
+typstDeps = [
+ "a2c-nums_0_0_1",
+ "cuti_0_2_1",
+ "sourcerer_0_2_1",
+]
+description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/csimide/SEU-Typst-Template"
+
+[cheda-seu-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/cheda-seu-thesis-0.2.0.tar.gz"
+hash = "sha256-jX+Hf3e64ZuH4Ke3FzDDRa/9aACdZoOND8afI8Dh+XI="
+typstDeps = [
+ "a2c-nums_0_0_1",
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+ "sourcerer_0_2_1",
+ "tablex_0_0_8",
+]
+description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/csimide/SEU-Typst-Template"
+
+[chem-par."0.0.1"]
+url = "https://packages.typst.org/preview/chem-par-0.0.1.tar.gz"
+hash = "sha256-wcoZAnaDvGbhPjXFd/8kHVbHwWvMPv/YFjwc8Y7fpXI="
+typstDeps = []
+description = "Display chemical formulae and IUPAC nomenclature with ease"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/JamesxX/typst-chem-par"
+
+[chemicoms-paper."0.1.0"]
+url = "https://packages.typst.org/preview/chemicoms-paper-0.1.0.tar.gz"
+hash = "sha256-7wdGjTwZm+6Sf4WyHS6Nyht519sgao6mPE8rTuta9vw="
+typstDeps = [
+ "chic-hdr_0_4_0",
+ "fontawesome_0_1_0",
+ "valkyrie_0_2_0",
+]
+description = "An RSC-style paper template to publish at conferences and journals"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/JamesxX/chemicoms-paper"
+
+[cheq."0.2.2"]
+url = "https://packages.typst.org/preview/cheq-0.2.2.tar.gz"
+hash = "sha256-YtoXDJaC3CdggMpuT8WeWmo+adyOag9SMrQ6P20XypI="
+typstDeps = []
+description = "Write markdown-like checklist easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-cheq"
+
+[cheq."0.2.1"]
+url = "https://packages.typst.org/preview/cheq-0.2.1.tar.gz"
+hash = "sha256-ItxPDfZX0idr1tqaE7aITKvTrHktY3zNHD8McA6UYkQ="
+typstDeps = []
+description = "Write markdown-like checklist easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-cheq"
+
+[cheq."0.2.0"]
+url = "https://packages.typst.org/preview/cheq-0.2.0.tar.gz"
+hash = "sha256-C7cGzmO1dOgInRqlaKdCY/AAojFHewWz/gIz3cy2ZEM="
+typstDeps = []
+description = "Write markdown-like checklist easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-cheq"
+
+[cheq."0.1.0"]
+url = "https://packages.typst.org/preview/cheq-0.1.0.tar.gz"
+hash = "sha256-WyJoZEEgjukKD5I6KNjUWFBtGVs5RWUYkTR/PtZgCsE="
+typstDeps = []
+description = "Write markdown-like checklist easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-cheq"
+
+[chic-hdr."0.5.0"]
+url = "https://packages.typst.org/preview/chic-hdr-0.5.0.tar.gz"
+hash = "sha256-tS5Cnu+1Lmkgzq9jklvui5vLFvlYuQg6pfEre0pf7gE="
+typstDeps = []
+description = "Typst package for creating elegant headers and footers"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pablo-Gonzalez-Calderon/chic-header-package"
+
+[chic-hdr."0.4.0"]
+url = "https://packages.typst.org/preview/chic-hdr-0.4.0.tar.gz"
+hash = "sha256-rhdAS81nkPwQTWnmp5niPja7S9EJ6zXdPyhEsCmRMGQ="
+typstDeps = [
+ "codelst_1_0_0",
+ "showybox_2_0_1",
+]
+description = "Typst package for creating elegant headers and footers"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pablo-Gonzalez-Calderon/chic-header-package"
+
+[chic-hdr."0.3.0"]
+url = "https://packages.typst.org/preview/chic-hdr-0.3.0.tar.gz"
+hash = "sha256-zppJQ2wHID0BTZQGUhrT2er0bc4TjD8VIj9PSdmokDY="
+typstDeps = []
+description = "Typst package for creating elegant headers and footers"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pablo-Gonzalez-Calderon/chic-header-package"
+
+[chic-hdr."0.2.0"]
+url = "https://packages.typst.org/preview/chic-hdr-0.2.0.tar.gz"
+hash = "sha256-0un0K/bOrw6h82eaeCN7MLoYrm136dnDb50DlchP44g="
+typstDeps = []
+description = "Typst package for creating elegant headers and footers"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pablo-Gonzalez-Calderon/chic-header-package"
+
+[chic-hdr."0.1.0"]
+url = "https://packages.typst.org/preview/chic-hdr-0.1.0.tar.gz"
+hash = "sha256-jymXx4/eCazAOcc1qeXDjqJ0wC54petaXtTz2KIHIXI="
+typstDeps = []
+description = "Typst package for creating elegant headers and footers"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pablo-Gonzalez-Calderon/chic-header-package"
+
+[chicv."0.1.0"]
+url = "https://packages.typst.org/preview/chicv-0.1.0.tar.gz"
+hash = "sha256-vBav/o7zVRFWADuw3mUXjhkQclQfwzrU6hA/92Qwp68="
+typstDeps = []
+description = "A minimal and fully-customizable CV template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/skyzh/chicv"
+
+[chordish."0.2.0"]
+url = "https://packages.typst.org/preview/chordish-0.2.0.tar.gz"
+hash = "sha256-s9uPjFDe86t68jLqTD6eXvzjmq3mAPDDkCosxVF1TPs="
+typstDeps = [
+ "conchord_0_3_0",
+]
+description = "A simple template for creating guitar and ukulele chord sheets"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/soxfox42/chordish"
+
+[chordish."0.1.0"]
+url = "https://packages.typst.org/preview/chordish-0.1.0.tar.gz"
+hash = "sha256-cFVTV04jyU5vCjwlrvskI3nbclYZWv3ctjNvyQBDeJ8="
+typstDeps = [
+ "conchord_0_2_0",
+]
+description = "A simple template for creating guitar and ukulele chord sheets"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/soxfox42/chordish"
+
+[chordx."0.6.0"]
+url = "https://packages.typst.org/preview/chordx-0.6.0.tar.gz"
+hash = "sha256-O65TggkpQmS4GkoO/SYMDSfwdF5J/NnMAGcPUoKZm2c="
+typstDeps = []
+description = "A package to write song lyrics with chord diagrams in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ljgago/typst-chords"
+
+[chordx."0.5.0"]
+url = "https://packages.typst.org/preview/chordx-0.5.0.tar.gz"
+hash = "sha256-RkCVGlJafPrr6IKbpKL73yZOtdfJNva4afwdoFvrKZM="
+typstDeps = []
+description = "A package to write song lyrics with chord diagrams in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ljgago/typst-chords"
+
+[chordx."0.4.0"]
+url = "https://packages.typst.org/preview/chordx-0.4.0.tar.gz"
+hash = "sha256-NYpCu9rRjIK7941kYHJnux444MmJjyEt9w21AOSlv0Q="
+typstDeps = []
+description = "A package to write song lyrics with chord diagrams in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ljgago/typst-chords"
+
+[chordx."0.3.0"]
+url = "https://packages.typst.org/preview/chordx-0.3.0.tar.gz"
+hash = "sha256-uQbOVMsa6dGl2iQDi3DkdxEFATgx+vCNuh0cBDwzqJ4="
+typstDeps = []
+description = "A package to write song lyrics with chord diagrams in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ljgago/typst-chords"
+
+[chordx."0.2.0"]
+url = "https://packages.typst.org/preview/chordx-0.2.0.tar.gz"
+hash = "sha256-LDe/W4RAqiW9zTfQcWVDePGNSIN9LGNN1NcIX6KxX10="
+typstDeps = []
+description = "A package to write song lyrics with chord diagrams in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ljgago/typst-chords"
+
+[chordx."0.1.0"]
+url = "https://packages.typst.org/preview/chordx-0.1.0.tar.gz"
+hash = "sha256-no3xDZiroQghV591FPQnRrCFYa5h9EG803xmVdqB/nQ="
+typstDeps = [
+ "cetz_0_0_1",
+]
+description = "A library to write song lyrics with chord diagrams in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ljgago/typst-chords"
+
+[chromo."0.1.0"]
+url = "https://packages.typst.org/preview/chromo-0.1.0.tar.gz"
+hash = "sha256-oNDEPTHeTtnnfkhL2C0ewNLnBJJWqpWp7wyG4A+xrVM="
+typstDeps = []
+description = "Generate printer tests (likely CMYK) in typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/julien-cpsn/typst-chromo"
+
+[chronos."0.2.1"]
+url = "https://packages.typst.org/preview/chronos-0.2.1.tar.gz"
+hash = "sha256-84RpRKxW2Vtnsrw90TR4IlQmXIf3ICnVsF3CaMLujZk="
+typstDeps = [
+ "cetz_0_3_4",
+ "codly_1_2_0",
+ "codly-languages_0_1_8",
+ "tidy_0_4_2",
+]
+description = "A package to draw sequence diagrams with CeTZ"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://git.kb28.ch/HEL/chronos"
+
+[chronos."0.2.0"]
+url = "https://packages.typst.org/preview/chronos-0.2.0.tar.gz"
+hash = "sha256-Mo40pqiXbuYU0TM1BaLgdC8XRK1nCctv6DQ+7x+uqJw="
+typstDeps = [
+ "cetz_0_3_1",
+ "chronos_0_1_0",
+ "tidy_0_3_0",
+]
+description = "A package to draw sequence diagrams with CeTZ"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://git.kb28.ch/HEL/chronos"
+
+[chronos."0.1.0"]
+url = "https://packages.typst.org/preview/chronos-0.1.0.tar.gz"
+hash = "sha256-qWrSOedzxmCGo9SWbl+a3mcJq6MvAIgxWVtJy/X+H/w="
+typstDeps = [
+ "cetz_0_2_2",
+]
+description = "A package to draw sequence diagrams with CeTZ"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://git.kb28.ch/HEL/chronos"
+
+[chuli-cv."0.1.0"]
+url = "https://packages.typst.org/preview/chuli-cv-0.1.0.tar.gz"
+hash = "sha256-DsawPi/T7MQbGqPXOAqyagn3Sswtqiic6mjMBpb/7CQ="
+typstDeps = [
+ "cetz_0_2_2",
+ "fontawesome_0_1_0",
+]
+description = "Minimalistic and modern CV and cover letter templates"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/npujol/chuli-cv"
+
+[cineca."0.5.0"]
+url = "https://packages.typst.org/preview/cineca-0.5.0.tar.gz"
+hash = "sha256-BFfN80r+0rn9HhJUTqP8ytcQxby12GHeSvtxZ8Xd5jE="
+typstDeps = []
+description = "A package to create calendar with events"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPdell/typst-cineca"
+
+[cineca."0.4.0"]
+url = "https://packages.typst.org/preview/cineca-0.4.0.tar.gz"
+hash = "sha256-3jInINMVewI9RoyfrvGzTZV2rWytsvtOYkl8hR+WHJw="
+typstDeps = []
+description = "A package to create calendar with events"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPdell/typst-cineca"
+
+[cineca."0.3.0"]
+url = "https://packages.typst.org/preview/cineca-0.3.0.tar.gz"
+hash = "sha256-mpuiSe3qfb/7d4kpL4M5uUUK2GunfKOa1h6jYtpqhcw="
+typstDeps = []
+description = "A package to create calendar with events"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPdell/typst-cineca"
+
+[cineca."0.2.1"]
+url = "https://packages.typst.org/preview/cineca-0.2.1.tar.gz"
+hash = "sha256-kmogrKoLDMT0E65Kxo8iTjsGtJ20zu4+P0YYEYgpRpc="
+typstDeps = []
+description = "A package to create calendar with events"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPdell/typst-cineca"
+
+[cineca."0.2.0"]
+url = "https://packages.typst.org/preview/cineca-0.2.0.tar.gz"
+hash = "sha256-BDIiMsATDgyrHum7ItGgH0xi5OG3fw0jZ+NNJco0NNk="
+typstDeps = []
+description = "A package to create calendar with events"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPdell/typst-cineca"
+
+[cineca."0.1.0"]
+url = "https://packages.typst.org/preview/cineca-0.1.0.tar.gz"
+hash = "sha256-hfpXIeyRahvCLSNcynnerVMK4CgLuIxquABXpKrCyYU="
+typstDeps = []
+description = "A package to create calendar with events"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPdell/typst-cineca"
+
+[circuiteria."0.2.0"]
+url = "https://packages.typst.org/preview/circuiteria-0.2.0.tar.gz"
+hash = "sha256-Ql3l9XV6sf94x2O6OJaedRusptFRINuNnCPF9DQDC84="
+typstDeps = [
+ "cetz_0_3_2",
+ "tidy_0_3_0",
+ "tidy_0_4_1",
+]
+description = "Drawing block circuits with Typst made easy, using CeTZ"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://git.kb28.ch/HEL/circuiteria"
+
+[circuiteria."0.1.0"]
+url = "https://packages.typst.org/preview/circuiteria-0.1.0.tar.gz"
+hash = "sha256-sMjfqvesHdjEhnC0qnuZKRiBhrk3X3j3ZENTlq+rIcM="
+typstDeps = [
+ "cetz_0_2_2",
+ "tidy_0_3_0",
+]
+description = "Drawing block circuits with Typst made easy, using CeTZ"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://git.kb28.ch/HEL/circuiteria"
+
+[citegeist."0.1.0"]
+url = "https://packages.typst.org/preview/citegeist-0.1.0.tar.gz"
+hash = "sha256-3tESfy/IyQSo2ubvAvm2BHwWPZQJVlJULndLjlVeSZo="
+typstDeps = []
+description = "Makes a Bibtex bibliography available as a Typst dictionary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/alexanderkoller/typst-citegeist"
+
+[classic-aau-report."0.3.0"]
+url = "https://packages.typst.org/preview/classic-aau-report-0.3.0.tar.gz"
+hash = "sha256-SqWI3LPyvv5nGWeLfrMD3rLOMXer2UT2djt/iA9NlSE="
+typstDeps = [
+ "glossy_0_7_0",
+ "headcount_0_1_0",
+ "hydra_0_6_0",
+ "subpar_0_2_1",
+]
+description = "A report template for students at Aalborg University (AAU"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Tinggaard/classic-aau-report"
+
+[classic-aau-report."0.2.1"]
+url = "https://packages.typst.org/preview/classic-aau-report-0.2.1.tar.gz"
+hash = "sha256-aYw7r6pzMjS0jD1zIv+aT8Lrfp0697JFRWz5Y60B3Ow="
+typstDeps = [
+ "glossy_0_5_2",
+ "headcount_0_1_0",
+ "hydra_0_5_2",
+ "subpar_0_2_0",
+ "subpar_0_2_1",
+ "t4t_0_4_1",
+]
+description = "A report template for students at Aalborg University (AAU"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Tinggaard/classic-aau-report"
+
+[classic-aau-report."0.2.0"]
+url = "https://packages.typst.org/preview/classic-aau-report-0.2.0.tar.gz"
+hash = "sha256-5M8qOlbGcCh0C+EUrp9SrkT3l9vhVYW+lTVqRDzbpz0="
+typstDeps = [
+ "glossy_0_5_2",
+ "headcount_0_1_0",
+ "hydra_0_5_2",
+ "subpar_0_2_0",
+ "t4t_0_4_1",
+]
+description = "A report template for students at Aalborg University (AAU"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Tinggaard/classic-aau-report"
+
+[classic-aau-report."0.1.1"]
+url = "https://packages.typst.org/preview/classic-aau-report-0.1.1.tar.gz"
+hash = "sha256-2snVjrAOgKP+vkwSv7HlGh7WzRw1JkJrYNawt2zBpBg="
+typstDeps = [
+ "hydra_0_5_1",
+ "t4t_0_3_2",
+]
+description = "A report template for students at Aalborg University (AAU"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Tinggaard/classic-aau-report"
+
+[classic-aau-report."0.1.0"]
+url = "https://packages.typst.org/preview/classic-aau-report-0.1.0.tar.gz"
+hash = "sha256-A27tEt6573poCF92/7MqrAWvzEiNAhds6h+4v4WhJsk="
+typstDeps = [
+ "hydra_0_5_1",
+ "t4t_0_3_2",
+]
+description = "An example package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Tinggaard/classic-aau-report"
+
+[classic-jmlr."0.4.0"]
+url = "https://packages.typst.org/preview/classic-jmlr-0.4.0.tar.gz"
+hash = "sha256-ataZOhYJA0GGAzZkY4jtLt0y0X5LoziBLPMLz9UodMM="
+typstDeps = []
+description = "Paper template for submission to Journal of Machine Learning Research (JMLR"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/daskol/typst-templates"
+
+[classy-german-invoice."0.3.1"]
+url = "https://packages.typst.org/preview/classy-german-invoice-0.3.1.tar.gz"
+hash = "sha256-y7DUXmWHEjlRK3YxECtgaGGVidaA88piuLNDcJg96Mo="
+typstDeps = [
+ "cades_0_3_0",
+ "ibanator_0_1_0",
+]
+description = "Minimalistic invoice for germany based freelancers"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/erictapen/typst-invoice"
+
+[classy-german-invoice."0.3.0"]
+url = "https://packages.typst.org/preview/classy-german-invoice-0.3.0.tar.gz"
+hash = "sha256-TEmN13L7pfEjeWTvyqClJgeAx38VBLV+aoUw/WLY2eQ="
+typstDeps = [
+ "cades_0_3_0",
+ "ibanator_0_1_0",
+ "tablex_0_0_8",
+]
+description = "Minimalistic invoice for germany based freelancers"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/erictapen/typst-invoice"
+
+[classy-german-invoice."0.2.0"]
+url = "https://packages.typst.org/preview/classy-german-invoice-0.2.0.tar.gz"
+hash = "sha256-d+6LsAHRRYGvfbH7iAARBIPueaswI6uqufrME4xaa1Y="
+typstDeps = [
+ "cades_0_3_0",
+ "ibanator_0_1_0",
+ "tablex_0_0_8",
+]
+description = "Minimalistic invoice for germany based freelancers"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/erictapen/typst-invoice"
+
+[clatter."0.1.0"]
+url = "https://packages.typst.org/preview/clatter-0.1.0.tar.gz"
+hash = "sha256-us5EekkEvGF6K0VS71EtjcCTGFAi+ilqM+iQJ5Icg1g="
+typstDeps = []
+description = "Just the PDF417 generator from rxing"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Gowee/typst-clatter"
+
+[clean-dhbw."0.2.1"]
+url = "https://packages.typst.org/preview/clean-dhbw-0.2.1.tar.gz"
+hash = "sha256-JAF0qUnqAlKzVU2g8XYrRJRDX2whTeS5rq8Jfo/upk4="
+typstDeps = [
+ "codelst_2_0_2",
+ "hydra_0_6_0",
+]
+description = "A Typst Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/roland-KA/clean-dhbw-typst-template"
+
+[clean-dhbw."0.1.1"]
+url = "https://packages.typst.org/preview/clean-dhbw-0.1.1.tar.gz"
+hash = "sha256-8m19RwBBzX+WW8THNa1BCJWSF8t3B24Rv53UNlTwTBI="
+typstDeps = [
+ "codelst_2_0_2",
+ "hydra_0_5_1",
+]
+description = "A Typst Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/roland-KA/clean-dhbw-typst-template"
+
+[clean-dhbw."0.1.0"]
+url = "https://packages.typst.org/preview/clean-dhbw-0.1.0.tar.gz"
+hash = "sha256-kBcdm964UAOC/YZqVyK32vx15/vDiReHSPpg/Ceq2+c="
+typstDeps = [
+ "codelst_2_0_2",
+ "hydra_0_5_1",
+]
+description = "A Typst Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/roland-KA/clean-dhbw-typst-template"
+
+[clean-math-paper."0.2.0"]
+url = "https://packages.typst.org/preview/clean-math-paper-0.2.0.tar.gz"
+hash = "sha256-c3pc80WKoTPUmavlZ8BLg/iU89wvuwiI4d0ousSY7oM="
+typstDeps = [
+ "great-theorems_0_1_2",
+ "i-figured_0_2_4",
+ "rich-counters_0_2_2",
+]
+description = "A simple and good looking template for mathematical papers"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/JoshuaLampert/clean-math-paper"
+
+[clean-math-paper."0.1.1"]
+url = "https://packages.typst.org/preview/clean-math-paper-0.1.1.tar.gz"
+hash = "sha256-6Uur+X4J9p0vFV9OR5NTB+po0tiEg7YaNVgdcf/xQw8="
+typstDeps = [
+ "great-theorems_0_1_2",
+ "i-figured_0_2_4",
+ "rich-counters_0_2_2",
+]
+description = "A simple and good looking template for mathematical papers"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/JoshuaLampert/clean-math-paper"
+
+[clean-math-paper."0.1.0"]
+url = "https://packages.typst.org/preview/clean-math-paper-0.1.0.tar.gz"
+hash = "sha256-J4EbmU5j/TuR+IK/bXUEEIFmrwQfgYYB06q4ayT8+dI="
+typstDeps = [
+ "great-theorems_0_1_1",
+ "i-figured_0_2_4",
+ "rich-counters_0_2_2",
+]
+description = "A simple and good looking template for mathematical papers"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/JoshuaLampert/clean-math-paper"
+
+[clean-math-presentation."0.1.1"]
+url = "https://packages.typst.org/preview/clean-math-presentation-0.1.1.tar.gz"
+hash = "sha256-IW0HQxjCrEseAIkgQPD0lrwzzeoFU62rh13BIzESxH8="
+typstDeps = [
+ "great-theorems_0_1_1",
+ "touying_0_5_5",
+]
+description = "A simple and good looking template for mathematical presentations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/JoshuaLampert/clean-math-presentation"
+
+[clean-math-presentation."0.1.0"]
+url = "https://packages.typst.org/preview/clean-math-presentation-0.1.0.tar.gz"
+hash = "sha256-0axOzXVqeWsS7IlQrMyHewFA1z3W+kytX77YY7DuDsk="
+typstDeps = [
+ "great-theorems_0_1_1",
+ "touying_0_5_3",
+]
+description = "A simple and good looking template for mathematical presentations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/JoshuaLampert/clean-math-presentation"
+
+[clean-math-thesis."0.3.0"]
+url = "https://packages.typst.org/preview/clean-math-thesis-0.3.0.tar.gz"
+hash = "sha256-67E7/gEnO9z7lnDLqcsEysCtVtbw5VA4BXVmG/QmpvQ="
+typstDeps = [
+ "equate_0_3_1",
+ "great-theorems_0_1_2",
+ "hydra_0_5_2",
+ "i-figured_0_2_4",
+ "lovelace_0_3_0",
+ "rich-counters_0_2_2",
+]
+description = "A simple and good looking template for mathematical theses"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sebaseb98/clean-math-thesis"
+
+[clean-math-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/clean-math-thesis-0.2.0.tar.gz"
+hash = "sha256-so0jiG9PYQ3LY66w+C4sT33OFL2tzK1VysIePk28OMo="
+typstDeps = [
+ "equate_0_2_1",
+ "great-theorems_0_1_1",
+ "hydra_0_5_1",
+ "i-figured_0_2_4",
+ "lovelace_0_3_0",
+ "rich-counters_0_2_2",
+]
+description = "A simple and good looking template for mathematical theses"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sebaseb98/clean-math-thesis"
+
+[clean-math-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/clean-math-thesis-0.1.0.tar.gz"
+hash = "sha256-MgFd4jY23ypujTnuOYLuxqCZFQj4L9YWbV/WH0vtcmY="
+typstDeps = [
+ "great-theorems_0_1_1",
+ "headcount_0_1_0",
+ "hydra_0_5_1",
+ "lovelace_0_3_0",
+]
+description = "A simple and good looking template for mathematical theses"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sebaseb98/clean-math-thesis"
+
+[clear-iclr."0.4.0"]
+url = "https://packages.typst.org/preview/clear-iclr-0.4.0.tar.gz"
+hash = "sha256-hpHIcxCB5ZE8ZJITOzUYuiFEuV/Fs2UiSVhrX86r6MQ="
+typstDeps = []
+description = "Paper template for submission to International Conference on Learning Representations (ICLR"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/daskol/typst-templates"
+
+[cmarker."0.1.3"]
+url = "https://packages.typst.org/preview/cmarker-0.1.3.tar.gz"
+hash = "sha256-0DdRW8WuX4kLZrPyWZOe7yhm77oX8IwrqrhOkbSjyKc="
+typstDeps = []
+description = "Transpile CommonMark Markdown to Typst, from within Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SabrinaJewson/cmarker.typ"
+
+[cmarker."0.1.2"]
+url = "https://packages.typst.org/preview/cmarker-0.1.2.tar.gz"
+hash = "sha256-fSKjCjOr8Nr62CYu6osgimjdWVUc/9w6UULicNhElDs="
+typstDeps = []
+description = "Transpile CommonMark Markdown to Typst, from within Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SabrinaJewson/cmarker.typ"
+
+[cmarker."0.1.1"]
+url = "https://packages.typst.org/preview/cmarker-0.1.1.tar.gz"
+hash = "sha256-snvSN81IPOQ7/x5Ju3l5x4oJZ08b6c/uSE9yJhijkqY="
+typstDeps = [
+ "mitex_0_2_4",
+]
+description = "Transpile CommonMark Markdown to Typst, from within Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SabrinaJewson/cmarker.typ"
+
+[cmarker."0.1.0"]
+url = "https://packages.typst.org/preview/cmarker-0.1.0.tar.gz"
+hash = "sha256-CI6suOtBN0klUN5/MUlLnmOq0gTHfOrIMTwfhXxIJHE="
+typstDeps = []
+description = "Transpile CommonMark Markdown to Typst, from within Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SabrinaJewson/cmarker.typ"
+
+[codedis."0.1.0"]
+url = "https://packages.typst.org/preview/codedis-0.1.0.tar.gz"
+hash = "sha256-SWQUciVv3d7LY65zCYMq88JVnWWJsWV0WhW5wIf+UGw="
+typstDeps = []
+description = "A simple package for displaying code"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/AugustinWinther/codedis"
+
+[codelst."2.0.2"]
+url = "https://packages.typst.org/preview/codelst-2.0.2.tar.gz"
+hash = "sha256-nroAmdKRY2YqxCC+/E+Ql/FxxFugPjjbOW3BwPBZLVU="
+typstDeps = [
+ "showybox_2_0_1",
+]
+description = "A typst package to render sourcecode"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-codelst"
+
+[codelst."2.0.1"]
+url = "https://packages.typst.org/preview/codelst-2.0.1.tar.gz"
+hash = "sha256-It8DLusbRfujjaOigBMGc9NAqhe4Px+xuIVgmvF7ijo="
+typstDeps = []
+description = "A typst package to render sourcecode"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-codelst"
+
+[codelst."2.0.0"]
+url = "https://packages.typst.org/preview/codelst-2.0.0.tar.gz"
+hash = "sha256-TOT4hnyNWet0l8S3ndLevT8jpkz3aIxsJaWilO4c358="
+typstDeps = []
+description = "A typst package to render sourcecode"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-codelst"
+
+[codelst."1.0.0"]
+url = "https://packages.typst.org/preview/codelst-1.0.0.tar.gz"
+hash = "sha256-yG817BzNcQ1FAWPInAVWXLUY6WlNTLbW+4fStUmtrHI="
+typstDeps = []
+description = "A typst package to render sourcecode"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-codelst"
+
+[codelst."0.0.3"]
+url = "https://packages.typst.org/preview/codelst-0.0.3.tar.gz"
+hash = "sha256-6h5AbxkzcAWPVFqoMkJsDqNcYjVJUAw5IXMJCW3Z4uY="
+typstDeps = []
+description = "A typst package to render sourcecode"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-codelst"
+
+[codetastic."0.2.2"]
+url = "https://packages.typst.org/preview/codetastic-0.2.2.tar.gz"
+hash = "sha256-I5UEcPe76Ud5gYVfaTkZBpKYgZFFnIEvyv3Qn8wqe7s="
+typstDeps = []
+description = "Generate all sorts of codes in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-codetastic"
+
+[codetastic."0.2.0"]
+url = "https://packages.typst.org/preview/codetastic-0.2.0.tar.gz"
+hash = "sha256-FmY6+ZiSIzrxJWQuZa4D0dgO4KSFtBjIcJohubBwG6A="
+typstDeps = []
+description = "Generate all sorts of codes in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-codetastic"
+
+[codetastic."0.1.0"]
+url = "https://packages.typst.org/preview/codetastic-0.1.0.tar.gz"
+hash = "sha256-f6yhTgLtOfY9zRgP8Gwa+LZpMU4DFTAJDlmquTAt/JA="
+typstDeps = [
+ "cetz_0_1_1",
+]
+description = "Generate all sorts of codes in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-codetastic"
+
+[codex-woltiensis."0.1.0"]
+url = "https://packages.typst.org/preview/codex-woltiensis-0.1.0.tar.gz"
+hash = "sha256-lNBYW8K+UDCKtLTkjg/WZ0AqGJEB+CKZiZpJVRJGvTE="
+typstDeps = []
+description = "Create student song books like the Codex Woltiensis. Full layout of classical songbook"
+license = [
+ "MIT",
+]
+
+[codly."1.3.0"]
+url = "https://packages.typst.org/preview/codly-1.3.0.tar.gz"
+hash = "sha256-rbwurMz3kfF4+MJmpyjLHeW88RPclvqnGRfiTJVm5us="
+typstDeps = [
+ "codly_1_2_0",
+]
+description = "Codly is a beautiful code presentation template with many features like smart indentation, line numbering, highlighting, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Dherse/codly"
+
+[codly."1.2.0"]
+url = "https://packages.typst.org/preview/codly-1.2.0.tar.gz"
+hash = "sha256-OCuNt4TV/wfZgt+7LZs3liC5KlpYO//il8yzlX3/Pqs="
+typstDeps = []
+description = "Codly is a beautiful code presentation template with many features like smart indentation, line numbering, highlighting, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Dherse/codly"
+
+[codly."1.1.1"]
+url = "https://packages.typst.org/preview/codly-1.1.1.tar.gz"
+hash = "sha256-GhTtNAHOqrJ6supZldy8qfygoGD/XSzl5LlQY03XCn4="
+typstDeps = []
+description = "Codly is a beautiful code presentation template with many features like smart indentation, line numbering, highlighting, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Dherse/codly"
+
+[codly."1.1.0"]
+url = "https://packages.typst.org/preview/codly-1.1.0.tar.gz"
+hash = "sha256-R90vm9NZ+iIDljHuSwm8kl9/sw7cZ8FjG8fsbj/aGcs="
+typstDeps = []
+description = "Codly is a beautiful code presentation template with many features like smart indentation, line numbering, highlighting, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Dherse/codly"
+
+[codly."1.0.0"]
+url = "https://packages.typst.org/preview/codly-1.0.0.tar.gz"
+hash = "sha256-MVNLsvkMZNKBaJol3WEjmFTK6HXKUarAimdwIkCdrqU="
+typstDeps = []
+description = "Codly is a beautiful code presentation template with many features like smart indentation, line numbering, highlighting, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Dherse/codly"
+
+[codly."0.2.1"]
+url = "https://packages.typst.org/preview/codly-0.2.1.tar.gz"
+hash = "sha256-6V3A8MmMzTcClGfHWgEwTIIJ5OY2ZjKXncDMZmAJZFQ="
+typstDeps = []
+description = "Codly is a beautiful code presentation template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Dherse/codly"
+
+[codly."0.2.0"]
+url = "https://packages.typst.org/preview/codly-0.2.0.tar.gz"
+hash = "sha256-AGEE/CuUnHnG0Jqr0YpkpI9cXKbGjn5FBH9Me4xyDSA="
+typstDeps = []
+description = "Codly is a beautiful code presentation template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Dherse/codly"
+
+[codly."0.1.0"]
+url = "https://packages.typst.org/preview/codly-0.1.0.tar.gz"
+hash = "sha256-qbJTEQu2fF/aUR/uNLb7H2vnfdoucPGteNY+i1OTddE="
+typstDeps = []
+description = "Codly is a beautiful code presentation template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Dherse/codly"
+
+[codly-languages."0.1.8"]
+url = "https://packages.typst.org/preview/codly-languages-0.1.8.tar.gz"
+hash = "sha256-v+EqrNkSqqqajdKhmO1i8n+UFmgJaZ8d0a1MCxGX5Qk="
+typstDeps = [
+ "codly_1_2_0",
+]
+description = "A set of language configurations for use with codly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[codly-languages."0.1.7"]
+url = "https://packages.typst.org/preview/codly-languages-0.1.7.tar.gz"
+hash = "sha256-7xtZ8q93vIvMD7ph8xhnvECgMyG+t2aSRVdZIUIGWMo="
+typstDeps = [
+ "codly_1_2_0",
+]
+description = "A set of language configurations for use with codly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[codly-languages."0.1.6"]
+url = "https://packages.typst.org/preview/codly-languages-0.1.6.tar.gz"
+hash = "sha256-F0TK2Dl1YoYQFRz4rHLVSKRw+jFXkIMXeznPaGF4azU="
+typstDeps = [
+ "codly_1_2_0",
+]
+description = "A set of language configurations for use with codly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[codly-languages."0.1.5"]
+url = "https://packages.typst.org/preview/codly-languages-0.1.5.tar.gz"
+hash = "sha256-idDeHyyVXJfucLoCngYBkRbrTit6dNYB4MxFCuFAmbg="
+typstDeps = [
+ "codly_1_1_1",
+]
+description = "A set of language configurations for use with codly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[codly-languages."0.1.4"]
+url = "https://packages.typst.org/preview/codly-languages-0.1.4.tar.gz"
+hash = "sha256-gMChs/bl30VSTwCbq85/PvSO+z4iadZS7DiCgfjv030="
+typstDeps = [
+ "codly_1_1_1",
+]
+description = "A set of language configurations for use with codly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[codly-languages."0.1.3"]
+url = "https://packages.typst.org/preview/codly-languages-0.1.3.tar.gz"
+hash = "sha256-Oj9VpvBMQ3EdnJeG0JUyAoxOr9zkDBlXAwnh/SIS/08="
+typstDeps = [
+ "codly_1_1_0",
+]
+description = "A set of language configurations for use with codly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[codly-languages."0.1.2"]
+url = "https://packages.typst.org/preview/codly-languages-0.1.2.tar.gz"
+hash = "sha256-uSZq8oOtTZAHAb7ddib8p2z0JtIIqhtNXMphgUFaBBA="
+typstDeps = [
+ "codly_1_0_0",
+]
+description = "A set of language configurations for use with codly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[codly-languages."0.1.1"]
+url = "https://packages.typst.org/preview/codly-languages-0.1.1.tar.gz"
+hash = "sha256-f5d+mf4m+WXDtnGlWU8cSv0e/loJdVf46pIbhzCKUHA="
+typstDeps = []
+description = "A set of language configurations for use with codly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[codly-languages."0.1.0"]
+url = "https://packages.typst.org/preview/codly-languages-0.1.0.tar.gz"
+hash = "sha256-uLEXaWv2McD3ZReaohg1DzjPEqBY3R7pWPHFtlV/1KQ="
+typstDeps = []
+description = "A set of language configurations for use with codly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[color-my-agda."0.1.0"]
+url = "https://packages.typst.org/preview/color-my-agda-0.1.0.tar.gz"
+hash = "sha256-szSNzxC9ffgDOPKC7t/1Ry6+8NnPkhCzGw7gOvncfKA="
+typstDeps = []
+description = "Syntax highlight for Agda on Typst"
+license = [
+ "AGPL-3.0-or-later",
+]
+homepage = "https://codeberg.org/foxy/color-my-agda"
+
+[colorful-boxes."1.4.2"]
+url = "https://packages.typst.org/preview/colorful-boxes-1.4.2.tar.gz"
+hash = "sha256-vX93MQBxkyIzL+lkR+GEEiVQqT7Bxd0RsY66KfRRnHM="
+typstDeps = [
+ "showybox_2_0_3",
+]
+description = "Predefined colorful boxes to spice up your document"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lkoehl/typst-boxes"
+
+[colorful-boxes."1.4.1"]
+url = "https://packages.typst.org/preview/colorful-boxes-1.4.1.tar.gz"
+hash = "sha256-XyNK4/et6ZTYMVK7+E/PSspw6csHW9+EQL2piAnjEAo="
+typstDeps = [
+ "showybox_2_0_3",
+]
+description = "Predefined colorful boxes to spice up your document"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lkoehl/typst-boxes"
+
+[colorful-boxes."1.4.0"]
+url = "https://packages.typst.org/preview/colorful-boxes-1.4.0.tar.gz"
+hash = "sha256-Zxl0BNtHsNgfiqMjH1SptDtklVSY4Lee6gv0Z1SBSpk="
+typstDeps = [
+ "showybox_2_0_3",
+]
+description = "Predefined colorful boxes to spice up your document"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lkoehl/typst-boxes"
+
+[colorful-boxes."1.3.1"]
+url = "https://packages.typst.org/preview/colorful-boxes-1.3.1.tar.gz"
+hash = "sha256-3MM5jphAEjcPmQm0lV86FCcEgd6l6IpdGtqLtPwiDno="
+typstDeps = []
+description = "Predefined colorful boxes to spice up your document"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lkoehl/typst-boxes"
+
+[colorful-boxes."1.2.0"]
+url = "https://packages.typst.org/preview/colorful-boxes-1.2.0.tar.gz"
+hash = "sha256-b4WV6MoyAm/X+DP8I0ffqMrZmXUOUKJD96wNL7TOGYI="
+typstDeps = [
+ "codetastic_0_1_0",
+]
+description = "Predefined colorful boxes"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lkoehl/typst-boxes"
+
+[colorful-boxes."1.1.0"]
+url = "https://packages.typst.org/preview/colorful-boxes-1.1.0.tar.gz"
+hash = "sha256-nO3b//yLPuuUn1YD+BlJj8yiQ1bAjQGVoOUUJhwwrSU="
+typstDeps = []
+description = "Predefined colorful boxes"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lkoehl/typst-boxes"
+
+[colorful-boxes."1.0.0"]
+url = "https://packages.typst.org/preview/colorful-boxes-1.0.0.tar.gz"
+hash = "sha256-WPdM81631SHwbrmnB55TIJgObvMDpBROXMxThID27Zs="
+typstDeps = []
+description = "Predefined colorful boxes"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lkoehl/typst-boxes"
+
+[commute."0.3.0"]
+url = "https://packages.typst.org/preview/commute-0.3.0.tar.gz"
+hash = "sha256-HmdNs0aGWjv76Fa6HvSc6xijfKIyQx/75TT9Ui5Uo04="
+typstDeps = []
+description = "A proof of concept library for commutative diagrams"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/giacomogallina/commute"
+
+[commute."0.2.0"]
+url = "https://packages.typst.org/preview/commute-0.2.0.tar.gz"
+hash = "sha256-TpwdsVsig+65Z9KGMzAdcVxRZVmBNNTZug25l30hsQQ="
+typstDeps = []
+description = "A proof of concept library for commutative diagrams"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/giacomogallina/commute"
+
+[commute."0.1.0"]
+url = "https://packages.typst.org/preview/commute-0.1.0.tar.gz"
+hash = "sha256-jBjZ28kFBGbjXVTVlxjJM98kIwk0ws1btf4DzBSJdpc="
+typstDeps = []
+description = "A proof of concept library for commutative diagrams"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/giacomogallina/commute"
+
+[conchord."0.3.0"]
+url = "https://packages.typst.org/preview/conchord-0.3.0.tar.gz"
+hash = "sha256-0hBsYDHBywChgFvPj4blEYfWTEYeDIFhtOB0FW9M53c="
+typstDeps = [
+ "cetz_0_3_1",
+ "chordx_0_5_0",
+]
+description = "Easily write lyrics with chords, generate chord diagrams by chord names and draw tabs"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sitandr/conchord"
+
+[conchord."0.2.0"]
+url = "https://packages.typst.org/preview/conchord-0.2.0.tar.gz"
+hash = "sha256-X/wJUqprfU6gl13lNcmJedqMcPW33bc/gGwB9ftL99s="
+typstDeps = [
+ "cetz_0_2_0",
+ "chordx_0_2_0",
+]
+description = "Easily write lyrics with chords, generate chord diagrams and tabs"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sitandr/conchord"
+
+[conchord."0.1.1"]
+url = "https://packages.typst.org/preview/conchord-0.1.1.tar.gz"
+hash = "sha256-4iNh95JtAslpCLelBR1E72Iw0B2FXsDbf4p0wTY8Q2Y="
+typstDeps = [
+ "cetz_0_1_1",
+ "chordx_0_2_0",
+]
+description = "Easily write lyrics with chords, generate chord diagrams and tabs"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sitandr/conchord"
+
+[conchord."0.1.0"]
+url = "https://packages.typst.org/preview/conchord-0.1.0.tar.gz"
+hash = "sha256-82ZSrqgTY9Qi6j2WrhPEVHC9prGsa5m3kDqe8Hp8HhM="
+typstDeps = [
+ "cetz_0_0_1",
+ "chordx_0_1_0",
+]
+description = "Easily write lyrics with chords and generate colorful chord diagrams"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sitandr/conchord"
+
+[cram-snap."0.2.2"]
+url = "https://packages.typst.org/preview/cram-snap-0.2.2.tar.gz"
+hash = "sha256-jnIWn0RjxOFLvh0TNJ/GBDr8YJGCq7gV6RCgFw3uZJY="
+typstDeps = []
+description = "Typst template for creating cheatsheets"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/kamack38/cram-snap"
+
+[cram-snap."0.2.1"]
+url = "https://packages.typst.org/preview/cram-snap-0.2.1.tar.gz"
+hash = "sha256-pBqol5HFpbX08rq/Lbq+4B0qYw/km4Lpl98nQoc+QWs="
+typstDeps = []
+description = "Typst template for creating cheatsheets"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/kamack38/cram-snap"
+
+[cram-snap."0.2.0"]
+url = "https://packages.typst.org/preview/cram-snap-0.2.0.tar.gz"
+hash = "sha256-jLUE9/SFZ4MAKVnyZX7ZjCNaebFsM2+cj3ga/3qWDrI="
+typstDeps = []
+description = "Typst template for creating cheatsheets"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/kamack38/cram-snap"
+
+[cram-snap."0.1.0"]
+url = "https://packages.typst.org/preview/cram-snap-0.1.0.tar.gz"
+hash = "sha256-Q02r2u92wcVl+H82ViAgvnCJ9FUxFQi6kw3y4RRTAfE="
+typstDeps = []
+description = "Typst template for creating cheatsheets"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/kamack38/cram-snap"
+
+[crossregex."0.2.0"]
+url = "https://packages.typst.org/preview/crossregex-0.2.0.tar.gz"
+hash = "sha256-5kmjwcOTuNgzuPLBNIQiH8H+81zibkW4v3i7yaCMJIo="
+typstDeps = []
+description = "A crossword-like regex game written in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/QuadnucYard/crossregex-typ"
+
+[crossregex."0.1.0"]
+url = "https://packages.typst.org/preview/crossregex-0.1.0.tar.gz"
+hash = "sha256-d47bh2MHQTnTznRvnR4iTo6w8VMXMyy8HvbcJ8IrcdY="
+typstDeps = []
+description = "A crossword-like regex game written in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/QuadnucYard/crossregex-typ"
+
+[crudo."0.1.1"]
+url = "https://packages.typst.org/preview/crudo-0.1.1.tar.gz"
+hash = "sha256-9FOCJzLTJYSoQT0d0kumxQIFEMWse+aCSBi7rwI/2Ns="
+typstDeps = []
+description = "Take slices from raw blocks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SillyFreak/typst-crudo"
+
+[crudo."0.1.0"]
+url = "https://packages.typst.org/preview/crudo-0.1.0.tar.gz"
+hash = "sha256-hXrRakGAv7tc+XKQTiwQd9bbxiyc+SOH8fjM+iftffE="
+typstDeps = [
+ "codly_0_2_1",
+ "crudo_0_0_1",
+ "tidy_0_3_0",
+]
+description = "Take slices from raw blocks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SillyFreak/typst-crudo"
+
+[ctheorems."1.1.3"]
+url = "https://packages.typst.org/preview/ctheorems-1.1.3.tar.gz"
+hash = "sha256-34ri4aotL6PUrtAXaPhMb3arOGVq76hijHfJMgOyeY8="
+typstDeps = []
+description = "Numbered theorem environments for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sahasatvik/typst-theorems"
+
+[ctheorems."1.1.2"]
+url = "https://packages.typst.org/preview/ctheorems-1.1.2.tar.gz"
+hash = "sha256-q/v/9tZ4ak43N3AKrwYdAwlX5sFCXSFfezcMqLBwUXk="
+typstDeps = []
+description = "Numbered theorem environments for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sahasatvik/typst-theorems"
+
+[ctheorems."1.1.1"]
+url = "https://packages.typst.org/preview/ctheorems-1.1.1.tar.gz"
+hash = "sha256-vejSEdNXDhIv63qxYJSFkSA5Bgsjf5ioijS9N4c6CRk="
+typstDeps = []
+description = "Numbered theorem environments for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sahasatvik/typst-theorems"
+
+[ctheorems."1.1.0"]
+url = "https://packages.typst.org/preview/ctheorems-1.1.0.tar.gz"
+hash = "sha256-wr9DPKJfOSaauhgm6/+N8wtDbCVDyYx1v4zz6S7jOIY="
+typstDeps = []
+description = "Numbered theorem environments for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sahasatvik/typst-theorems"
+
+[ctheorems."1.0.0"]
+url = "https://packages.typst.org/preview/ctheorems-1.0.0.tar.gz"
+hash = "sha256-O+hhyIo1YT0dsRI/vxThCP0dcxGkmiP7n9hV/FkHm2k="
+typstDeps = []
+description = "Numbered theorem environments for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sahasatvik/typst-theorems"
+
+[ctheorems."0.1.0"]
+url = "https://packages.typst.org/preview/ctheorems-0.1.0.tar.gz"
+hash = "sha256-H8s5x8SHKT83w0W7fVDiajg4CY7h4AiVgZdqm6FwEFQ="
+typstDeps = [
+ "ctheorems_1_0_0",
+]
+description = "Theorem library based on (and compatible) with the classic typst-theorem module"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DVDTSB/ctheorems"
+
+[ctxjs."0.3.1"]
+url = "https://packages.typst.org/preview/ctxjs-0.3.1.tar.gz"
+hash = "sha256-hozwjG5V7TEOouUe6JgpjEVmxSiImaTIm3M0NNVuj9E="
+typstDeps = []
+description = "Run javascript in contexts"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lublak/typst-ctxjs-package"
+
+[ctxjs."0.3.0"]
+url = "https://packages.typst.org/preview/ctxjs-0.3.0.tar.gz"
+hash = "sha256-6FN8Wv7ZAagTMfoMhDpYIEz/n8iMD1cerIPQ0NbG5L4="
+typstDeps = []
+description = "Run javascript in contexts"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lublak/typst-ctxjs-package"
+
+[ctxjs."0.2.0"]
+url = "https://packages.typst.org/preview/ctxjs-0.2.0.tar.gz"
+hash = "sha256-osHXK/USNMjEiydPi9UKCzyoFaDcB7WuJ3H9lyjsiCQ="
+typstDeps = []
+description = "Run javascript in contexts"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lublak/typst-ctxjs-package"
+
+[ctxjs."0.1.1"]
+url = "https://packages.typst.org/preview/ctxjs-0.1.1.tar.gz"
+hash = "sha256-ZyNpJzHRjAxHJ8kXEXQX26WbDVTdpZqAZiUokdBlfWM="
+typstDeps = []
+description = "Run javascript in contexts"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lublak/typst-ctxjs-package"
+
+[ctxjs."0.1.0"]
+url = "https://packages.typst.org/preview/ctxjs-0.1.0.tar.gz"
+hash = "sha256-AGljjjK3KiWiG+JG2+0cBURJncUrLIqDvGsPDqA+HwY="
+typstDeps = []
+description = "Run javascript in contexts"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lublak/typst-ctxjs-package"
+
+[cumcm-muban."0.3.0"]
+url = "https://packages.typst.org/preview/cumcm-muban-0.3.0.tar.gz"
+hash = "sha256-C96mN6opUM3+w4g9iQBnVCuIHROfUvTU6vt5PDSLLbQ="
+typstDeps = [
+ "ctheorems_1_1_2",
+]
+description = "为高教社杯全国大学生数学建模竞赛设计的 Typst 模板"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/a-kkiri/CUMCM-typst-template"
+
+[cumcm-muban."0.2.0"]
+url = "https://packages.typst.org/preview/cumcm-muban-0.2.0.tar.gz"
+hash = "sha256-RVIbpT02Bj/fi3MuU7B/WrCrl1GBQWecesx+JAy8Zb4="
+typstDeps = [
+ "ctheorems_1_1_2",
+ "cumcm-muban_0_1_0",
+]
+description = "为高教社杯全国大学生数学建模竞赛设计的 Typst 模板"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/a-kkiri/CUMCM-typst-template"
+
+[cumcm-muban."0.1.0"]
+url = "https://packages.typst.org/preview/cumcm-muban-0.1.0.tar.gz"
+hash = "sha256-ddvdry232tP5iSc2gZ2/HrTtSEA1dIlCi+/e2ymKACw="
+typstDeps = [
+ "ctheorems_1_1_2",
+]
+description = "为高教社杯全国大学生数学建模竞赛设计的 Typst 模板"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/a-kkiri/CUMCM-typst-template"
+
+[curli."0.1.0"]
+url = "https://packages.typst.org/preview/curli-0.1.0.tar.gz"
+hash = "sha256-4keObGQlLWVk5gX862jIzNrUwC/ML5lKNuzsGjzcaY8="
+typstDeps = []
+description = "Cursed ligatures for everyone"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/curli"
+
+[curriculo-acad."0.1.0"]
+url = "https://packages.typst.org/preview/curriculo-acad-0.1.0.tar.gz"
+hash = "sha256-P2Ab3akFYBGq+STjUdKI+hEBnU/jInjskhkKObG4c0Y="
+typstDeps = [
+ "datify_0_1_3",
+]
+description = "Creating a CV from your LATTES entries"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/philkleer/create-lattes-cv"
+
+[curryst."0.5.0"]
+url = "https://packages.typst.org/preview/curryst-0.5.0.tar.gz"
+hash = "sha256-WBGZ8nmCrB8iihmkjzdrA7l2U3ff3TKpvQh/XAmTE8Y="
+typstDeps = []
+description = "Typeset trees of inference rules"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pauladam94/curryst"
+
+[curryst."0.4.0"]
+url = "https://packages.typst.org/preview/curryst-0.4.0.tar.gz"
+hash = "sha256-qDh32adcbMjXJqE2s9PUtvkTXwclIuyQZcQTtkbFOKs="
+typstDeps = []
+description = "Typeset trees of inference rules"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pauladam94/curryst"
+
+[curryst."0.3.0"]
+url = "https://packages.typst.org/preview/curryst-0.3.0.tar.gz"
+hash = "sha256-jrvI1D5ZfXKyQn4vrbcNf6joMX4BSphNY0ZOUkDEClM="
+typstDeps = []
+description = "Typeset trees of inference rules"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pauladam94/curryst"
+
+[curryst."0.2.0"]
+url = "https://packages.typst.org/preview/curryst-0.2.0.tar.gz"
+hash = "sha256-l6U/J/Xud5F6QZI+iUGp0nsNtSdTT8H0KS15VwS3XgY="
+typstDeps = []
+description = "Typeset trees of inference rules"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pauladam94/curryst"
+
+[curryst."0.1.1"]
+url = "https://packages.typst.org/preview/curryst-0.1.1.tar.gz"
+hash = "sha256-shGy6b+1W497huOXAHw6eFTHbx6nSLD9b1TzsRe2rNs="
+typstDeps = []
+description = "Typesetting of trees of inference rules in Typst"
+license = [
+ "MIT",
+]
+
+[curryst."0.1.0"]
+url = "https://packages.typst.org/preview/curryst-0.1.0.tar.gz"
+hash = "sha256-gHxYD/5KxbF7cYwQ99stjh3oWZCRIHmoyACMhyWGpv0="
+typstDeps = []
+description = "Typesetting of trees of inference rules in Typst"
+license = [
+ "MIT",
+]
+
+[curvly."0.1.0"]
+url = "https://packages.typst.org/preview/curvly-0.1.0.tar.gz"
+hash = "sha256-jO69yZaJiTILZyKnR+iCaHzhl8CIBp2iwCC2XzIrH/g="
+typstDeps = []
+description = "Typst package for curving text on an arc or circle"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/cskeeters/typst-curvly"
+
+[cuti."0.3.0"]
+url = "https://packages.typst.org/preview/cuti-0.3.0.tar.gz"
+hash = "sha256-kjQ0B3nCoPULFU7y3xcXdtry+O5utn2qszw7eiNb/QM="
+typstDeps = []
+description = "Easily simulate (fake) bold, italic and small capital characters"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/csimide/cuti"
+
+[cuti."0.2.1"]
+url = "https://packages.typst.org/preview/cuti-0.2.1.tar.gz"
+hash = "sha256-NCmPXM1eD97k/5TgVuLC7zVv/0jIQ1lXxbwnmzA2dEI="
+typstDeps = [
+ "sourcerer_0_2_1",
+]
+description = "Easily simulate (fake) bold and italic characters"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/csimide/cuti"
+
+[cuti."0.2.0"]
+url = "https://packages.typst.org/preview/cuti-0.2.0.tar.gz"
+hash = "sha256-/2GkJVTGVy90KecQ7pkvwT6F5txgE8Ym79kxNTvvyw4="
+typstDeps = [
+ "sourcerer_0_2_1",
+]
+description = "Easily simulate (fake) bold and italic characters"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/csimide/cuti"
+
+[cuti."0.1.0"]
+url = "https://packages.typst.org/preview/cuti-0.1.0.tar.gz"
+hash = "sha256-FZpGfKuM2cHulPheE2Ubi+u+jKAHNmKRb9bvByM60TA="
+typstDeps = [
+ "sourcerer_0_2_1",
+]
+description = "Easily simulate (fake) bold characters"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/csimide/cuti"
+
+[cvssc."0.1.0"]
+url = "https://packages.typst.org/preview/cvssc-0.1.0.tar.gz"
+hash = "sha256-pCeczpz4B70NefSn79TL/zFjwZG5A+W2QsYedUjvg5o="
+typstDeps = [
+ "codly_0_1_0",
+ "tidy_0_3_0",
+]
+description = "Common Vulnerability Scoring System Calculator"
+license = [
+ "MIT",
+]
+
+[cyberschool-errorteaplate."0.1.3"]
+url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.3.tar.gz"
+hash = "sha256-k/zpxcsIv47M6YPy5eNl2YVh/RicIVJH595xbzSicqY="
+typstDeps = [
+ "codly_1_2_0",
+ "codly-languages_0_1_1",
+]
+description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ErrorTeaPot/Cyberschool_template"
+
+[dashing-dept-news."0.1.1"]
+url = "https://packages.typst.org/preview/dashing-dept-news-0.1.1.tar.gz"
+hash = "sha256-lV1llDhUz5VkUppRdrVqWHKxjcaX4BP0dtGKCDQ5hfQ="
+typstDeps = []
+description = "Share the news with bold graphic design and a modern layout"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[dashing-dept-news."0.1.0"]
+url = "https://packages.typst.org/preview/dashing-dept-news-0.1.0.tar.gz"
+hash = "sha256-MYvPfCYTQ6YNqbVuS5VAcnHHIk5WlucZDEWPgUy7gn0="
+typstDeps = []
+description = "Share the news with bold graphic design and a modern layout"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[dashy-todo."0.0.3"]
+url = "https://packages.typst.org/preview/dashy-todo-0.0.3.tar.gz"
+hash = "sha256-PijpOpLWjVAvoabzsxNk9gZVMbgLPVgFUJ2LncJqrHA="
+typstDeps = []
+description = "A method to display TODOs at the side of the page"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/Otto-AA/dashy-todo"
+
+[dashy-todo."0.0.2"]
+url = "https://packages.typst.org/preview/dashy-todo-0.0.2.tar.gz"
+hash = "sha256-asHQ/VkGl1whCYh+QhVN1PNtzvgxoj2iUaL0JJmkmNA="
+typstDeps = []
+description = "A method to display TODOs at the side of the page"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/Otto-AA/dashy-todo"
+
+[dashy-todo."0.0.1"]
+url = "https://packages.typst.org/preview/dashy-todo-0.0.1.tar.gz"
+hash = "sha256-AnuEVa8LWu5YnuueGtrzobNfoy5uywMpNcpq6IhXfaU="
+typstDeps = []
+description = "A method to display TODOs at the side of the page"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/Otto-AA/dashy-todo"
+
+[datify."0.1.3"]
+url = "https://packages.typst.org/preview/datify-0.1.3.tar.gz"
+hash = "sha256-mKkhBH3GiqoQ39/LcWOCrzPqZlaT1JUbXbmCST7f9N4="
+typstDeps = []
+description = "Datify is a simple date package that allows users to format dates in new ways and addresses the issue of lacking date formats in different languages"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jeomhps/datify"
+
+[datify."0.1.2"]
+url = "https://packages.typst.org/preview/datify-0.1.2.tar.gz"
+hash = "sha256-V2Bx0riDDMf4oWE3TbpwH6g95E/7ZeeiZB2ijVlVoWo="
+typstDeps = []
+description = "Datify is a simple date package that allows users to format dates in new ways and addresses the issue of lacking date formats in different languages"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jeomhps/datify"
+
+[datify."0.1.1"]
+url = "https://packages.typst.org/preview/datify-0.1.1.tar.gz"
+hash = "sha256-UXiZ9Rkwx5K3byK23KRkqN1sTx9V0Cutwz6ZeaO3D/A="
+typstDeps = []
+description = "Datify is a simple date package that allows users to format dates in new ways and addresses the issue of lacking date formats in different languages"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jeomhps/datify"
+
+[decasify."0.10.1"]
+url = "https://packages.typst.org/preview/decasify-0.10.1.tar.gz"
+hash = "sha256-qW5gjrNSaK8xU9JIs1NxE2Bj1yB7g1WyHTR1bc3FlR0="
+typstDeps = []
+description = "Locale and style-guide aware text casing functions for natural language prose"
+license = [
+ "LGPL-3.0-only",
+]
+homepage = "https://github.com/alerque/decasify"
+
+[decasify."0.9.1"]
+url = "https://packages.typst.org/preview/decasify-0.9.1.tar.gz"
+hash = "sha256-mBbWqrusIThZ5aQdoPeftUyoIJYD2ygZz8Y1kk3nNX0="
+typstDeps = []
+description = "Locale and style-guide aware text casing functions for natural language prose"
+license = [
+ "LGPL-3.0-only",
+]
+homepage = "https://github.com/alerque/decasify"
+
+[decasify."0.9.0"]
+url = "https://packages.typst.org/preview/decasify-0.9.0.tar.gz"
+hash = "sha256-Kyv7YP2PSIrvmHE8aOiYsvF611806ijVQ4Iw9yteOfQ="
+typstDeps = []
+description = "Locale and style-guide aware text casing functions for natural language prose"
+license = [
+ "LGPL-3.0-only",
+]
+homepage = "https://github.com/alerque/decasify"
+
+[defined."0.1.0"]
+url = "https://packages.typst.org/preview/defined-0.1.0.tar.gz"
+hash = "sha256-4ON8im4nwdi8cydBmnwYRY7d8Qovu+X2+63G+Z8aEH4="
+typstDeps = [
+ "valkyrie_0_2_1",
+]
+description = "typst package to make conditional compilation easily"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/profetia/defined"
+
+[definitely-not-isec-thesis."2.0.0"]
+url = "https://packages.typst.org/preview/definitely-not-isec-thesis-2.0.0.tar.gz"
+hash = "sha256-VTdCWyOS5RCXQ0hQq+QPsn8T9vzDGv8dWLajNz89UT8="
+typstDeps = []
+description = "An unofficial ISEC TUGraz Master's Thesis template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ecomaikgolf/typst-isec-master-thesis-template/"
+
+[definitely-not-isec-thesis."1.0.0"]
+url = "https://packages.typst.org/preview/definitely-not-isec-thesis-1.0.0.tar.gz"
+hash = "sha256-aLaXo2JxW+fNLh3cGXZeGADf4Sw4rNslGn9FphVcDE8="
+typstDeps = []
+description = "An unofficial ISEC TUGraz Master's Thesis template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ecomaikgolf/typst-isec-master-thesis-template/"
+
+[definitely-not-tuw-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/definitely-not-tuw-thesis-0.1.0.tar.gz"
+hash = "sha256-cVvHDgg9H95Npk91WMyWNKoXKO+zydRDKQkyx4nSmtM="
+typstDeps = [
+ "linguify_0_4_1",
+]
+description = "An unofficial template for a thesis at the TU Wien informatics institute"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/Otto-AA/definitely-not-tuw-thesis"
+
+[delegis."0.3.0"]
+url = "https://packages.typst.org/preview/delegis-0.3.0.tar.gz"
+hash = "sha256-NoMAAYxznL32LJ8dBsfSnCeM/huXx9HiL50DP7zoVbY="
+typstDeps = []
+description = "A package and template for drafting legislative content in a German-style structuring, such as for bylaws, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/wuespace/delegis"
+
+[delegis."0.2.0"]
+url = "https://packages.typst.org/preview/delegis-0.2.0.tar.gz"
+hash = "sha256-s2GQ6y5IJj9GG1UktRIH94Q3r5XnLIdxNbUXBgsNqTo="
+typstDeps = []
+description = "A package and template for drafting legislative content in a German-style structuring, such as for bylaws, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/wuespace/delegis"
+
+[delegis."0.1.0"]
+url = "https://packages.typst.org/preview/delegis-0.1.0.tar.gz"
+hash = "sha256-X1XB0CMtKRNS6jaQDgi9fORxunu9FMcQU4D5Ae4Zu4g="
+typstDeps = []
+description = "A package and template for drafting legislative content in a German-style structuring, such as for bylaws, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/wuespace/delegis"
+
+[delimitizer."0.1.0"]
+url = "https://packages.typst.org/preview/delimitizer-0.1.0.tar.gz"
+hash = "sha256-E5NK6h/dfel5QAtoyaXVD4SCN8+xzfQ2MOxFZQcgl6M="
+typstDeps = []
+description = "Customize the size of delimiters. Like \\big, \\Big, \\bigg, \\Bigg in LaTeX"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/delimitizer"
+
+[derive-it."0.1.3"]
+url = "https://packages.typst.org/preview/derive-it-0.1.3.tar.gz"
+hash = "sha256-HLNiQYeh55Kh1Kz5H/+/8LTAEG24zkI6XdAT/41Pw18="
+typstDeps = []
+description = "Simple functions for creating fitch-style natural deduction proofs and derivations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/0rphee/derive-it"
+
+[derive-it."0.1.2"]
+url = "https://packages.typst.org/preview/derive-it-0.1.2.tar.gz"
+hash = "sha256-S6S+PX4pUmSITXgfxaTkew1OivfWB9gGAIchkLxqyaw="
+typstDeps = []
+description = "Simple functions for creating fitch-style natural deduction proofs and derivations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/0rphee/derive-it"
+
+[derive-it."0.1.1"]
+url = "https://packages.typst.org/preview/derive-it-0.1.1.tar.gz"
+hash = "sha256-JkXZ5QLNR6+8pYyg9jSZiSJU9wC0Ia1x7pnAa/CohcM="
+typstDeps = []
+description = "Simple functions for creating fitch-style natural deduction proofs and derivations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/0rphee/derive-it"
+
+[derive-it."0.1.0"]
+url = "https://packages.typst.org/preview/derive-it-0.1.0.tar.gz"
+hash = "sha256-dw9BYHBb0mMx9WFzxiKHEWI2omaPs2Jxdye/1pIMc10="
+typstDeps = []
+description = "Simple functions for creating fitch-style natural deduction proofs and derivations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/0rphee/derive-it"
+
+[diagraph."0.3.3"]
+url = "https://packages.typst.org/preview/diagraph-0.3.3.tar.gz"
+hash = "sha256-RwNjmzaTCjMmBMeSd8WPRIQu44IkN+cYW27P18tqN+4="
+typstDeps = []
+description = "Draw graphs with Graphviz. Use mathematical formulas as labels"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/diagraph.git"
+
+[diagraph."0.3.2"]
+url = "https://packages.typst.org/preview/diagraph-0.3.2.tar.gz"
+hash = "sha256-mr8/KrrmEZ0Yk53iqs6Y4UwEhkdExx1KptN8gMldf/Q="
+typstDeps = []
+description = "Draw graphs with Graphviz. Use mathematical formulas as labels"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/diagraph.git"
+
+[diagraph."0.3.1"]
+url = "https://packages.typst.org/preview/diagraph-0.3.1.tar.gz"
+hash = "sha256-H693ABKs58NxzEIkf7rTzf4UImTyXxVpk8EeJe8V4yw="
+typstDeps = []
+description = "Draw graphs with Graphviz. Use mathematical formulas as labels"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/diagraph.git"
+
+[diagraph."0.3.0"]
+url = "https://packages.typst.org/preview/diagraph-0.3.0.tar.gz"
+hash = "sha256-2qQ0yItPQnKFmR/x3FMadQIsPJD4MyLpdb1XQIJvrE4="
+typstDeps = []
+description = "Draw graphs with Graphviz. Use mathematical formulas as labels"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/diagraph.git"
+
+[diagraph."0.2.5"]
+url = "https://packages.typst.org/preview/diagraph-0.2.5.tar.gz"
+hash = "sha256-UTmOsFHJDsgqbcKKez5OFI4P8MQ7OWDwCrhRK1zRO4Y="
+typstDeps = []
+description = "Draw graphs with Graphviz. Use mathematical formulas as labels"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/diagraph.git"
+
+[diagraph."0.2.4"]
+url = "https://packages.typst.org/preview/diagraph-0.2.4.tar.gz"
+hash = "sha256-2yhWqdq8pw9nBaVMm+yzMjY2JY2iNwdAllrElDQvCig="
+typstDeps = []
+description = "Draw graphs with Graphviz. Use mathematical formulas as labels"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/diagraph.git"
+
+[diagraph."0.2.3"]
+url = "https://packages.typst.org/preview/diagraph-0.2.3.tar.gz"
+hash = "sha256-ESNyD7o2QfhgYwNITd0Gvc+Zhm88jANPSCgUVQTKzy0="
+typstDeps = []
+description = "Draw graphs with Graphviz. Use mathematical formulas as labels"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/diagraph.git"
+
+[diagraph."0.2.2"]
+url = "https://packages.typst.org/preview/diagraph-0.2.2.tar.gz"
+hash = "sha256-4kGjMzj8lPG7GLVgKZiKH9lSMWfRwg9bJFxMDstw7r8="
+typstDeps = []
+description = "Graphviz bindings for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/diagraph.git"
+
+[diagraph."0.2.1"]
+url = "https://packages.typst.org/preview/diagraph-0.2.1.tar.gz"
+hash = "sha256-FdoNdv3k/EmVCafUtzJAWeJffV5Usab/8gMj0CcLhRg="
+typstDeps = []
+description = "Graphviz bindings for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/diagraph.git"
+
+[diagraph."0.2.0"]
+url = "https://packages.typst.org/preview/diagraph-0.2.0.tar.gz"
+hash = "sha256-p/rTvdqrAHwbLpfhMsPkehWINO0FUk2kJFGJJTvRQjQ="
+typstDeps = []
+description = "Graphviz bindings for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/diagraph.git"
+
+[diagraph."0.1.2"]
+url = "https://packages.typst.org/preview/diagraph-0.1.2.tar.gz"
+hash = "sha256-p+aiPsnfo+lK1R+K8wpASCGffseqI662B4ACv03oco0="
+typstDeps = []
+description = "Graphviz bindings for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/diagraph.git"
+
+[diagraph."0.1.1"]
+url = "https://packages.typst.org/preview/diagraph-0.1.1.tar.gz"
+hash = "sha256-ngeZ+sxcJA/bYiHwzH0VAcm+27xNV4ig5kUIRlCESSc="
+typstDeps = []
+description = "Graphviz bindings for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/diagraph.git"
+
+[diagraph."0.1.0"]
+url = "https://packages.typst.org/preview/diagraph-0.1.0.tar.gz"
+hash = "sha256-rAxw3J4azB+uFIrwXSkU8Skqw0rAOdxRFMdn+lg3Dx4="
+typstDeps = []
+description = "Graphviz bindings for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Robotechnic/diagraph.git"
+
+[diatypst."0.5.0"]
+url = "https://packages.typst.org/preview/diatypst-0.5.0.tar.gz"
+hash = "sha256-OVbxSP8JMJAZXlVi+Sky5S7o66nImHPXW7/lDn0qVwk="
+typstDeps = [
+ "diatypst_0_2_0",
+]
+description = "easy slides in typst - sensible defaults, easy syntax, well styled"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/skriptum/Diatypst"
+
+[diatypst."0.4.0"]
+url = "https://packages.typst.org/preview/diatypst-0.4.0.tar.gz"
+hash = "sha256-EpSSFapDSHOZsAqNSpZCpRtwpGtaaSIcSfhuM2lh55M="
+typstDeps = [
+ "diatypst_0_2_0",
+]
+description = "easy slides in typst - sensible defaults, easy syntax, well styled"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/skriptum/Diatypst"
+
+[diatypst."0.3.0"]
+url = "https://packages.typst.org/preview/diatypst-0.3.0.tar.gz"
+hash = "sha256-HWGTqgOg/A3I+1VdiEfVJXXwIFsp2/bgy4zcHzqInAc="
+typstDeps = [
+ "diatypst_0_2_0",
+]
+description = "easy slides in typst - sensible defaults, easy syntax, well styled"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/skriptum/Diatypst"
+
+[diatypst."0.2.0"]
+url = "https://packages.typst.org/preview/diatypst-0.2.0.tar.gz"
+hash = "sha256-I1I+RSLNukq51EA8T9vVA73cOiwUNWSxaa/3/D+meck="
+typstDeps = [
+ "diatypst_0_1_0",
+]
+description = "easy slides in typst - sensible defaults, easy syntax, well styled"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/skriptum/Diatypst"
+
+[diatypst."0.1.0"]
+url = "https://packages.typst.org/preview/diatypst-0.1.0.tar.gz"
+hash = "sha256-//ZuvgYUMJ2h1F3Ho1eF5+Wi2UkJL1mq42QZOnaXKZ8="
+typstDeps = []
+description = "easy slides in typst - sensible defaults, easy syntax, well styled"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/skriptum/Diatypst"
+
+[dining-table."0.1.0"]
+url = "https://packages.typst.org/preview/dining-table-0.1.0.tar.gz"
+hash = "sha256-JoZd2QGPf0JK6pPiaMTB88JEoBR/JUvgsXclq0gvhxE="
+typstDeps = []
+description = "Column-wise table definitions for big data"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/JamesxX/dining-table"
+
+[diverential."0.2.0"]
+url = "https://packages.typst.org/preview/diverential-0.2.0.tar.gz"
+hash = "sha256-llW9ALoGx7qiILMIundWdv+YSkUpzlXQg1ctSMntuXA="
+typstDeps = []
+description = "Format differentials conveniently"
+license = [
+ "MIT",
+]
+
+[divine-words."0.1.0"]
+url = "https://packages.typst.org/preview/divine-words-0.1.0.tar.gz"
+hash = "sha256-SZ4TbK1Ig2tmIq25r7jEurSOpcJBPMKmrrn+5FF/TN0="
+typstDeps = []
+description = "Just a template for a lab report"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tedius-git/divine-words"
+
+[down."0.1.0"]
+url = "https://packages.typst.org/preview/down-0.1.0.tar.gz"
+hash = "sha256-GA9mB7xmY68E8058uZ1RsNv1qJ+fhm6zaULfcAfd76A="
+typstDeps = []
+description = "Pass down arguments of `sum`, `integral`, etc. to the next line, which can generate shorthand to present reusable segments"
+license = [
+ "MIT",
+]
+homepage = "https://git.sr.ht/~toto/down"
+
+[drafting."0.2.2"]
+url = "https://packages.typst.org/preview/drafting-0.2.2.tar.gz"
+hash = "sha256-xJ3FdEiM1qPEhzZ4QkNdsysmMQ0GbY5l+EoWo2sbFdk="
+typstDeps = []
+description = "Helpful functions for content positioning and margin comments/notes"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ntjess/typst-drafting"
+
+[drafting."0.2.1"]
+url = "https://packages.typst.org/preview/drafting-0.2.1.tar.gz"
+hash = "sha256-PfpwLtjQSXtJBpjOF8I889Yz5fgM+22wyS9a4Rgdlzk="
+typstDeps = []
+description = "Helpful functions for content positioning and margin comments/notes"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ntjess/typst-drafting"
+
+[drafting."0.2.0"]
+url = "https://packages.typst.org/preview/drafting-0.2.0.tar.gz"
+hash = "sha256-pLBtMjCfRN3L9a53RKKkt5NCVVEmz8V4ROHvMlTTK6A="
+typstDeps = []
+description = "Helpful functions for content positioning and margin comments/notes"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ntjess/typst-drafting"
+
+[drafting."0.1.2"]
+url = "https://packages.typst.org/preview/drafting-0.1.2.tar.gz"
+hash = "sha256-xPz41aJVtJaCV7yq8cHtMC10uLh/UObEdpaMStrv9n4="
+typstDeps = []
+description = "Helpful functions for content positioning and margin comments/notes"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ntjess/typst-drafting"
+
+[drafting."0.1.1"]
+url = "https://packages.typst.org/preview/drafting-0.1.1.tar.gz"
+hash = "sha256-tdAybXIglAvYpALC2z0oYBgFt4XMytYvWzqW5RLWOgk="
+typstDeps = []
+description = "Helpful functions for content positioning and margin comments/notes"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ntjess/typst-drafting"
+
+[drafting."0.1.0"]
+url = "https://packages.typst.org/preview/drafting-0.1.0.tar.gz"
+hash = "sha256-iyUt4rjG4O61A3MR9FqTgy+F/Zge1msIuNvAMrfIwK4="
+typstDeps = []
+description = "Helpful functions during document drafting"
+license = [
+ "Unlicense",
+]
+
+[droplet."0.3.1"]
+url = "https://packages.typst.org/preview/droplet-0.3.1.tar.gz"
+hash = "sha256-ngKk23tUePES0KJ8ywikO1xSDmYkJyr1VANLxV3ILVY="
+typstDeps = []
+description = "Customizable dropped capitals"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-droplet"
+
+[droplet."0.3.0"]
+url = "https://packages.typst.org/preview/droplet-0.3.0.tar.gz"
+hash = "sha256-ZRu5kk17aFhWF/TcfAeV/v2CwfyZiHSW1tLe7gvTeqI="
+typstDeps = []
+description = "Customizable dropped capitals"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-droplet"
+
+[droplet."0.2.0"]
+url = "https://packages.typst.org/preview/droplet-0.2.0.tar.gz"
+hash = "sha256-3K/8SK9My1Q4YKSnDbf+A3+9/i0FWCL9UORkYoYuE3Q="
+typstDeps = []
+description = "Customizable dropped capitals"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-droplet"
+
+[droplet."0.1.0"]
+url = "https://packages.typst.org/preview/droplet-0.1.0.tar.gz"
+hash = "sha256-zonpMX6mDSWOOIuBoy2G/nM7f+wdZfFCAopUJ4FuJwY="
+typstDeps = []
+description = "Customizable dropped capitals"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-droplet"
+
+[dvdtyp."1.0.1"]
+url = "https://packages.typst.org/preview/dvdtyp-1.0.1.tar.gz"
+hash = "sha256-vXA3xTFLRB6LVLKCjK6nt/tQS4Cl0btWrAhmVJpiJMQ="
+typstDeps = [
+ "ctheorems_1_1_3",
+ "showybox_2_0_4",
+]
+description = "a colorful template for writting handouts or notes"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/DVDTSB/dvdtyp"
+
+[dvdtyp."1.0.0"]
+url = "https://packages.typst.org/preview/dvdtyp-1.0.0.tar.gz"
+hash = "sha256-gNsKq88p6G7oRCzImZTsd/w8lP007pd8Hqyj0VioWAE="
+typstDeps = [
+ "ctheorems_1_1_2",
+ "showybox_2_0_1",
+]
+description = "a colorful template for writting handouts or notes"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/DVDTSB/dvdtyp"
+
+[easy-pinyin."0.1.0"]
+url = "https://packages.typst.org/preview/easy-pinyin-0.1.0.tar.gz"
+hash = "sha256-25XJa5ovmFzwwzmBrdF24okyajCWdduT9sHf5c/krDw="
+typstDeps = []
+description = "Write Chinese pinyin easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/7sDream/typst-easy-pinyin"
+
+[easy-typography."0.1.0"]
+url = "https://packages.typst.org/preview/easy-typography-0.1.0.tar.gz"
+hash = "sha256-yj2teX9KuCz1cDbTFhuOkucrFlpHDaOhBq+MVeRpwoM="
+typstDeps = [
+ "codly_1_2_0",
+ "codly-languages_0_1_1",
+]
+description = "Sets up sensible typography defaults"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[easytable."0.1.0"]
+url = "https://packages.typst.org/preview/easytable-0.1.0.tar.gz"
+hash = "sha256-W3FRYrjZ0u0Rdr8hYrwksuGwPjzF4ukX/EodJz0mSNE="
+typstDeps = [
+ "tablex_0_0_8",
+]
+description = "Simple Table Package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/monaqa/typst-easytable"
+
+[echarm."0.2.1"]
+url = "https://packages.typst.org/preview/echarm-0.2.1.tar.gz"
+hash = "sha256-7msh2oSNLToUkDKIrDDkUs9Zj2im09EE1xcHxRgoXF4="
+typstDeps = [
+ "ctxjs_0_3_1",
+]
+description = "Run echarts in typst with the use of CtxJS"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lublak/typst-echarm-package"
+
+[echarm."0.2.0"]
+url = "https://packages.typst.org/preview/echarm-0.2.0.tar.gz"
+hash = "sha256-RsI3gLmBGW+gip7974CbraCN3aIotUfYo1yGn2QKPSk="
+typstDeps = [
+ "ctxjs_0_2_0",
+]
+description = "Run echarts in typst with the use of CtxJS"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lublak/typst-echarm-package"
+
+[echarm."0.1.1"]
+url = "https://packages.typst.org/preview/echarm-0.1.1.tar.gz"
+hash = "sha256-ePQrYFEkHsrT/TFQuSc6KfqHHb6D7OWjQ1Ysia1X28Q="
+typstDeps = [
+ "ctxjs_0_2_0",
+]
+description = "Run echarts in typst with the use of CtxJS"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lublak/typst-echarm-package"
+
+[echarm."0.1.0"]
+url = "https://packages.typst.org/preview/echarm-0.1.0.tar.gz"
+hash = "sha256-vKTRw6QiKcIBRVaOjy0vO1eO0sQd0+bhi91J5X4UT+c="
+typstDeps = [
+ "ctxjs_0_1_0",
+]
+description = "Run echarts in typst with the use of CtxJS"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lublak/typst-echarm-package"
+
+[edgeframe."0.1.0"]
+url = "https://packages.typst.org/preview/edgeframe-0.1.0.tar.gz"
+hash = "sha256-AVXSce2K+PcxHjtkm3PEChbsDIISnOqZmbA4Yl6i/J4="
+typstDeps = []
+description = "For quick paper setups"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/neuralpain/edgeframe"
+
+[efilrst."0.3.1"]
+url = "https://packages.typst.org/preview/efilrst-0.3.1.tar.gz"
+hash = "sha256-Xrt6aikAZeV0KodY6qNELZ5STxZuVwflA6J+2ES4jz8="
+typstDeps = []
+description = "A simple referenceable list library for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jmigual/typst-efilrst"
+
+[efilrst."0.3.0"]
+url = "https://packages.typst.org/preview/efilrst-0.3.0.tar.gz"
+hash = "sha256-YQK/52bwOabt2ZQeZNK+gHC6hKN0eEXd4Jxv8iWxuKM="
+typstDeps = []
+description = "A simple referenceable list library for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jmigual/typst-efilrst"
+
+[efilrst."0.2.0"]
+url = "https://packages.typst.org/preview/efilrst-0.2.0.tar.gz"
+hash = "sha256-pBk8BZ7Bfjwy2xWUG75n0OMsq9CBFohJpqvRccSTZwE="
+typstDeps = []
+description = "A simple referenceable list library for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jmigual/typst-efilrst"
+
+[efilrst."0.1.0"]
+url = "https://packages.typst.org/preview/efilrst-0.1.0.tar.gz"
+hash = "sha256-h9Nf0hdK/8pNsQSAOq/xF69vnX5GCTp26T/AXhXTHbY="
+typstDeps = []
+description = "A simple referenceable list library for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jmigual/typst-efilrst"
+
+[electify."0.1.1"]
+url = "https://packages.typst.org/preview/electify-0.1.1.tar.gz"
+hash = "sha256-THxg8Rvy08WCwrOBAjAgyZXsxWtwr1QNgx5mZ3HZob0="
+typstDeps = []
+description = "A German Election Ballot Paper helping visualize the dual-voting system (Erststimme & Zweitstimme"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/G0STG0D/electify"
+
+[electify."0.1.0"]
+url = "https://packages.typst.org/preview/electify-0.1.0.tar.gz"
+hash = "sha256-0yS+JpekyeSV5VrNVLqCIO90wG0bHYjJpJ05YiT8drs="
+typstDeps = []
+description = "A German Election Ballot Paper helping visualize the dual-voting system (Erststimme & Zweitstimme"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/G0STG0D/typst-packages"
+
+[elsearticle."0.4.2"]
+url = "https://packages.typst.org/preview/elsearticle-0.4.2.tar.gz"
+hash = "sha256-QlnOgnxC5dBlFtBVKlgbdE/QnC3yeIUpT7Kn445HrXI="
+typstDeps = [
+ "cheq_0_1_0",
+ "equate_0_2_1",
+ "mantys_0_1_4",
+ "subpar_0_1_1",
+]
+description = "Conversion of the LaTeX elsearticle.cls"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/maucejo/elsearticle"
+
+[elsearticle."0.4.1"]
+url = "https://packages.typst.org/preview/elsearticle-0.4.1.tar.gz"
+hash = "sha256-froFVx2/nqEBcXUf8NecGHk/mxG0qvU4STCmQ6epiCM="
+typstDeps = [
+ "cheq_0_1_0",
+ "equate_0_2_1",
+ "mantys_0_1_4",
+ "subpar_0_1_1",
+]
+description = "Conversion of the LaTeX elsearticle.cls"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/maucejo/elsearticle"
+
+[elsearticle."0.4.0"]
+url = "https://packages.typst.org/preview/elsearticle-0.4.0.tar.gz"
+hash = "sha256-gi4kKD1T6mwjbQyiaW5dJUJlDo7wcbJk9fdjvSvH9sE="
+typstDeps = [
+ "cheq_0_1_0",
+ "equate_0_2_1",
+ "mantys_0_1_4",
+ "subpar_0_1_1",
+]
+description = "Conversion of the LaTeX elsearticle.cls"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/maucejo/elsearticle"
+
+[elsearticle."0.3.0"]
+url = "https://packages.typst.org/preview/elsearticle-0.3.0.tar.gz"
+hash = "sha256-v0Ft+VaJEsvcTEyNJARX4x/BBWjaD0S70exdSsvbVCU="
+typstDeps = [
+ "subpar_0_1_1",
+]
+description = "Conversion of the LaTeX elsearticle.cls"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/maucejo/elsearticle"
+
+[elsearticle."0.2.1"]
+url = "https://packages.typst.org/preview/elsearticle-0.2.1.tar.gz"
+hash = "sha256-G0FFXGQ6IRkvOf8TdaNxJcRFJ5jYU5QUWfsXo63INt4="
+typstDeps = [
+ "cheq_0_1_0",
+ "mantys_0_1_4",
+ "subpar_0_1_1",
+]
+description = "Conversion of the LaTeX elsearticle.cls"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/maucejo/elsearticle"
+
+[elsearticle."0.2.0"]
+url = "https://packages.typst.org/preview/elsearticle-0.2.0.tar.gz"
+hash = "sha256-p+LmaEHTOWEp5gPKCHF2zezuABnRBWyPOkBrO5ge3xs="
+typstDeps = [
+ "cheq_0_1_0",
+ "elsearticle_0_1_0",
+ "mantys_0_1_4",
+ "subpar_0_1_1",
+]
+description = "Conversion of the LaTeX elsearticle.cls"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/maucejo/elsearticle"
+
+[elsearticle."0.1.0"]
+url = "https://packages.typst.org/preview/elsearticle-0.1.0.tar.gz"
+hash = "sha256-Y3ad9oganv2MW89AUzuexWQxuluTaWn2cENHCRlvx1U="
+typstDeps = [
+ "cheq_0_1_0",
+ "mantys_0_1_4",
+]
+description = "Conversion of the LaTeX elsearticle.cls"
+license = [
+ "MIT",
+]
+
+[embiggen."0.0.1"]
+url = "https://packages.typst.org/preview/embiggen-0.0.1.tar.gz"
+hash = "sha256-6IDxLVIVGD7xVAJAjeWwuywUoxjPvVswb7GeT4bjhsg="
+typstDeps = []
+description = "LaTeX-like delimeter sizing in Typst"
+license = [
+ "GPL-3.0-or-later",
+]
+
+[enja-bib."0.1.0"]
+url = "https://packages.typst.org/preview/enja-bib-0.1.0.tar.gz"
+hash = "sha256-JJNYAVj8FM+rf8EpjHiF3sPSjDKIjTn5UpDZ1Qqe5yI="
+typstDeps = []
+description = "A package for handling BibTeX that includes both English and Japanese"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tkrhsmt/enja-bib"
+
+[ennui-ur-report."0.1.0"]
+url = "https://packages.typst.org/preview/ennui-ur-report-0.1.0.tar.gz"
+hash = "sha256-bMxoOzSdvrO6o4i16lTdIDU9OHSyz59p6fk8CKSh/70="
+typstDeps = []
+description = "A customizable, non official template for University of Rennes"
+license = [
+ "GPL-3.0-or-later",
+]
+homepage = "https://github.com/leana8959/univ-rennes.typ"
+
+[enunciado-facil-fcfm."0.1.0"]
+url = "https://packages.typst.org/preview/enunciado-facil-fcfm-0.1.0.tar.gz"
+hash = "sha256-sJQRnJ7opLSbBWTcS9YNOCQlZ2lYiuMAGBSeeC3MChM="
+typstDeps = []
+description = "Documentos de ejercicios (controles, auxiliares, tareas, pautas) para la FCFM, UChile"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/bkorecic/enunciado-facil-fcfm"
+
+[eqalc."0.1.3"]
+url = "https://packages.typst.org/preview/eqalc-0.1.3.tar.gz"
+hash = "sha256-8m31R/YQmCJTp3QC7czxIHvELcocZWLkcLgaZw5aYAk="
+typstDeps = []
+description = "Convert math equations to functions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/7ijme/eqalc"
+
+[eqalc."0.1.2"]
+url = "https://packages.typst.org/preview/eqalc-0.1.2.tar.gz"
+hash = "sha256-FIDuB1lqfK84/VMGJQbEE2Tziw2ECuPXiTqVUHOluno="
+typstDeps = []
+description = "Convert math equations to functions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/7ijme/eqalc"
+
+[eqalc."0.1.1"]
+url = "https://packages.typst.org/preview/eqalc-0.1.1.tar.gz"
+hash = "sha256-PP3qgn1zpAijsBI9QTFC+h8YxbllR975Kg6iJlOdjRY="
+typstDeps = []
+description = "Convert math equations to functions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/7ijme/eqalc"
+
+[eqalc."0.1.0"]
+url = "https://packages.typst.org/preview/eqalc-0.1.0.tar.gz"
+hash = "sha256-rcbXANJXwG57hAVYVgw6y+Aum8lKXxFEzDGVCsNuq6U="
+typstDeps = []
+description = "Convert math equations to functions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/7ijme/eqalc"
+
+[equate."0.3.1"]
+url = "https://packages.typst.org/preview/equate-0.3.1.tar.gz"
+hash = "sha256-nEUnNszy1cVaemsqdAmjvj34obYPH3fGfWHX6Rb7ajE="
+typstDeps = []
+description = "Various enhancements for mathematical expressions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-equate"
+
+[equate."0.3.0"]
+url = "https://packages.typst.org/preview/equate-0.3.0.tar.gz"
+hash = "sha256-nlt6wgzIVMGUD88wdeYjRjOI7q04BV4sYE0xejxiv34="
+typstDeps = []
+description = "Various enhancements for mathematical expressions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-equate"
+
+[equate."0.2.1"]
+url = "https://packages.typst.org/preview/equate-0.2.1.tar.gz"
+hash = "sha256-UD/J2c3Hs6i4SuEGSINYBTXUpcZULKFxi6HkSjtLgmQ="
+typstDeps = []
+description = "Breakable equations with improved numbering"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-equate"
+
+[equate."0.2.0"]
+url = "https://packages.typst.org/preview/equate-0.2.0.tar.gz"
+hash = "sha256-/okqIsUZO+qoelAwd6gDZ+3HdOUfXm+hnHbCXRJMppY="
+typstDeps = []
+description = "Breakable equations with improved numbering"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-equate"
+
+[equate."0.1.0"]
+url = "https://packages.typst.org/preview/equate-0.1.0.tar.gz"
+hash = "sha256-GZuUqB/bZTeg9ZdbrlSPvDdAIkx6eWsPV4L6S5qLiwY="
+typstDeps = []
+description = "Breakable equations with improved numbering"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-equate"
+
+[esotefy."1.0.0"]
+url = "https://packages.typst.org/preview/esotefy-1.0.0.tar.gz"
+hash = "sha256-Yaex2nIpddDiJoTyV0Sl7oWltnxD4MfSIHoNbQuFv+s="
+typstDeps = []
+description = "A brainfuck implementation in pure Typst"
+license = [
+ "MIT",
+]
+homepage = "git@github.com:Thumuss/brainfuck.git"
+
+[etykett."0.1.0"]
+url = "https://packages.typst.org/preview/etykett-0.1.0.tar.gz"
+hash = "sha256-V2ItL+yNg1RYTrv5NIBKGipTjwz+L33KK9/TpsQdwpw="
+typstDeps = [
+ "valkyrie_0_2_2",
+]
+description = "a template for printing onto label sheets with rectangular grids of labels"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SillyFreak/typst-etykett"
+
+[examify."0.1.1"]
+url = "https://packages.typst.org/preview/examify-0.1.1.tar.gz"
+hash = "sha256-1dgSCLdqpxvX9/eVDAG83hkwlMpJfyrWEk2SqNFHjYQ="
+typstDeps = []
+description = "A simple typst template to create question papers for exams"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tarunjana/examify"
+
+[examify."0.1.0"]
+url = "https://packages.typst.org/preview/examify-0.1.0.tar.gz"
+hash = "sha256-RpvIZMnN1Nq0dnyHwf79aAs/4BNZsJFYkgTjRWVJOok="
+typstDeps = []
+description = "A simple typst template to create question papers for exams"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tarunjana/examify"
+
+[examit."0.1.1"]
+url = "https://packages.typst.org/preview/examit-0.1.1.tar.gz"
+hash = "sha256-vm0p0uFU943pCQqpAWZI3bIBruQr/ELNzrO5b/NRv3A="
+typstDeps = [
+ "cetz_0_2_2",
+]
+description = "An exam template based on the MIT LaTeX exam.cls"
+license = [
+ "MIT",
+]
+
+[example."0.1.0"]
+url = "https://packages.typst.org/preview/example-0.1.0.tar.gz"
+hash = "sha256-VH5lAZYFEGfo3FVKoKgiqvmVUjrTlX+MzQI1e/N7oEM="
+typstDeps = []
+description = "An example package"
+license = [
+ "Unlicense",
+]
+
+[exmllent."0.1.0"]
+url = "https://packages.typst.org/preview/exmllent-0.1.0.tar.gz"
+hash = "sha256-9MCCdvY8ozy6LsYFq8dcskQydcrWE3wnsvZ8UAeLtWA="
+typstDeps = []
+description = "Pure typst implementation of converting XML Excel table to typst table"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-xml-table-parser"
+
+[exzellenz-tum-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/exzellenz-tum-thesis-0.1.0.tar.gz"
+hash = "sha256-mHGSNkqvM8IzTKanFcPLybhaUn5+/bfe7nnN/Qha/4k="
+typstDeps = [
+ "glossarium_0_2_6",
+]
+description = "Customizable template for a thesis at the TU Munich"
+license = [
+ "MIT-0",
+]
+
+[ez-algo."0.1.1"]
+url = "https://packages.typst.org/preview/ez-algo-0.1.1.tar.gz"
+hash = "sha256-cx+xwb4cZZo8SM30c0G76KscdpGYRDqSOZXOjFQ4RJY="
+typstDeps = []
+description = "A package to set algorithms with ease"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/the-mathing/ez-algo"
+
+[ez-algo."0.1.0"]
+url = "https://packages.typst.org/preview/ez-algo-0.1.0.tar.gz"
+hash = "sha256-UOA5xIEBOrNlhI+8Zgok9VVq0apD6JlUHOCjvvAEJ/Q="
+typstDeps = []
+description = "A package to set algorithms with ease"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/the-mathing/ez-algo"
+
+[ez-today."1.1.0"]
+url = "https://packages.typst.org/preview/ez-today-1.1.0.tar.gz"
+hash = "sha256-voHxSdsDcXD5vDAS6/7763eFsO83d7kim8ePWWU5L+U="
+typstDeps = []
+description = "Simply displays the full current date"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/CarloSchafflik12/typst-ez-today"
+
+[ez-today."1.0.0"]
+url = "https://packages.typst.org/preview/ez-today-1.0.0.tar.gz"
+hash = "sha256-nyfqJy0qzLMVXUM6DzyoexKdmxXq0ad0muDFXBMkIIQ="
+typstDeps = []
+description = "Simply displays the full current date"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/CarloSchafflik12/typst-ez-today"
+
+[ez-today."0.3.0"]
+url = "https://packages.typst.org/preview/ez-today-0.3.0.tar.gz"
+hash = "sha256-C8dNy4ypI+o3H4DsOyonlWtl0Ug38qbQ4Ik24Sb1r6c="
+typstDeps = []
+description = "Simply displays the full current date"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/CarloSchafflik12/typst-ez-today"
+
+[ez-today."0.2.0"]
+url = "https://packages.typst.org/preview/ez-today-0.2.0.tar.gz"
+hash = "sha256-rLtFkTN5Rl/Z0S8yRJMBkBWEeYt8eZGSb86tnZzNFMw="
+typstDeps = []
+description = "Simply displays the full current date"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/CarloSchafflik12/typst-ez-today"
+
+[ez-today."0.1.0"]
+url = "https://packages.typst.org/preview/ez-today-0.1.0.tar.gz"
+hash = "sha256-BimtKMHDG45nbi2QxH+aBJjMCPqxYylM53Y4qCpU+QU="
+typstDeps = []
+description = "Simply displays the full current date"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/CarloSchafflik12/typst-ez-today"
+
+[fancy-affil."0.1.0"]
+url = "https://packages.typst.org/preview/fancy-affil-0.1.0.tar.gz"
+hash = "sha256-3w4k0AfmEp+wvXIkC1koKjIQxkQm3zLBrNgNh7IfNw0="
+typstDeps = []
+description = "An auto affiliation tool"
+license = [
+ "LGPL-3.0-or-later",
+]
+homepage = "https://github.com/han190/fancy-affil"
+
+[fancy-units."0.1.1"]
+url = "https://packages.typst.org/preview/fancy-units-0.1.1.tar.gz"
+hash = "sha256-T5+jI23IzepSp4YHaPM4unZ547rvZieHmmYgjBz/ud0="
+typstDeps = []
+description = "Format numbers and units with style"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/janekfleper/typst-fancy-units"
+
+[fancy-units."0.1.0"]
+url = "https://packages.typst.org/preview/fancy-units-0.1.0.tar.gz"
+hash = "sha256-nyRiVkZ2+Q/FUPSrz/EQMvHU3Jmqjr63ClB/rqKFIQ8="
+typstDeps = [
+ "tidy_0_4_0",
+]
+description = "Format numbers and units with styling"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/janekfleper/typst-fancy-units"
+
+[fauve-cdb."0.1.0"]
+url = "https://packages.typst.org/preview/fauve-cdb-0.1.0.tar.gz"
+hash = "sha256-vc61E1kMUSVpgpQDX3lfUnpFpjenTLVeWa5WuK6TEsA="
+typstDeps = [
+ "cetz_0_2_2",
+ "suiji_0_3_0",
+]
+description = "The unofficial implementation of the Collège Doctoral de Bretagne thesis manuscript template"
+license = [
+ "MIT-0",
+]
+
+[fauxreilly."0.1.1"]
+url = "https://packages.typst.org/preview/fauxreilly-0.1.1.tar.gz"
+hash = "sha256-kA25rR18MIt1BNMHRugD1vZMpqV1tFlePuz+COtrD8g="
+typstDeps = []
+description = "A package for creating O'Rly- / O'Reilly-type cover pages"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/dei-layborer/fauxreilly"
+
+[fauxreilly."0.1.0"]
+url = "https://packages.typst.org/preview/fauxreilly-0.1.0.tar.gz"
+hash = "sha256-IlLxBlAKVnBr6qzyozaT1LfZSaZpv/rdJzrmNNDAtM4="
+typstDeps = []
+description = "A package for creating O'Rly- / O'Reilly-type cover pages"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/dei-layborer/o-rly-typst"
+
+[fervojo."0.1.0"]
+url = "https://packages.typst.org/preview/fervojo-0.1.0.tar.gz"
+hash = "sha256-icOqJl4Gc0H88UBPbS5XWTzhA3XqtTdtYykJjEIDSaA="
+typstDeps = []
+description = "railroad for typst, powered by wasm"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/leiserfg/fervojo"
+
+[fh-joanneum-iit-thesis."2.1.2"]
+url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-2.1.2.tar.gz"
+hash = "sha256-BfTqeHsL04xPFI2KWwW1HuUlyv5bpPIJhKpDXLwFFgk="
+typstDeps = [
+ "glossarium_0_5_3",
+]
+description = "BA or MA thesis at FH JOANNEUM"
+license = [
+ "MIT",
+]
+homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template"
+
+[fh-joanneum-iit-thesis."2.0.5"]
+url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-2.0.5.tar.gz"
+hash = "sha256-wiOzA8xHU2Q4q1B844I0Pfmx4T8AT4cAFyNqIvDb/Ts="
+typstDeps = [
+ "glossarium_0_5_0",
+]
+description = "BA or MA thesis at FH JOANNEUM"
+license = [
+ "MIT",
+]
+homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template"
+
+[fh-joanneum-iit-thesis."2.0.2"]
+url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-2.0.2.tar.gz"
+hash = "sha256-7w95vjqsvDSK85Wt5c+o17t9vHw93BfVIcfUg4EGOVg="
+typstDeps = [
+ "glossarium_0_5_0",
+]
+description = "BA or MA thesis at FH JOANNEUM"
+license = [
+ "MIT",
+]
+homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template"
+
+[fh-joanneum-iit-thesis."1.2.3"]
+url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-1.2.3.tar.gz"
+hash = "sha256-5nGoIbzwmqxR4dzqWd8d8V7FHTiAFkYL5dA6D4Z+euo="
+typstDeps = [
+ "glossarium_0_4_1",
+]
+description = "BA or MA thesis at FH JOANNEUM"
+license = [
+ "MIT",
+]
+homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template"
+
+[fh-joanneum-iit-thesis."1.2.2"]
+url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-1.2.2.tar.gz"
+hash = "sha256-a49IpbL6x/zCQzJdK+fN7VX0EihkiNC/ET01K9ObHNE="
+typstDeps = [
+ "glossarium_0_4_1",
+]
+description = "BA or MA thesis at FH JOANNEUM"
+license = [
+ "MIT",
+]
+homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template"
+
+[fh-joanneum-iit-thesis."1.2.0"]
+url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-1.2.0.tar.gz"
+hash = "sha256-ZbyGUqDj2vpDm8igZfmcj/uiiZViTKpcfitGLT5wFDI="
+typstDeps = [
+ "glossarium_0_4_1",
+]
+description = "BA or MA thesis at FH JOANNEUM"
+license = [
+ "MIT",
+]
+homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template"
+
+[fh-joanneum-iit-thesis."1.1.0"]
+url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-1.1.0.tar.gz"
+hash = "sha256-JpoKUqABymBzc/djF1dDRi4rEAkTWisZJZtKFwMuVJ4="
+typstDeps = []
+description = "BA or MA thesis at FH JOANNEUM"
+license = [
+ "MIT",
+]
+
+[finely-crafted-cv."0.3.0"]
+url = "https://packages.typst.org/preview/finely-crafted-cv-0.3.0.tar.gz"
+hash = "sha256-FIFb++hf4R8p+xzRfAc03wq+i4c8HG+K072KBaPP/mA="
+typstDeps = []
+description = "A modern résumé/curriculum vitæ template with high attention to detail"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[finely-crafted-cv."0.2.0"]
+url = "https://packages.typst.org/preview/finely-crafted-cv-0.2.0.tar.gz"
+hash = "sha256-S1gsR078vN+u7pTzJRb6+R/p54Oppf+3i8ZtKMrpv3g="
+typstDeps = []
+description = "A modern résumé/curriculum vitæ template with high attention to detail"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[finely-crafted-cv."0.1.0"]
+url = "https://packages.typst.org/preview/finely-crafted-cv-0.1.0.tar.gz"
+hash = "sha256-BkWI3fi7LaW1oJ1kHxvB13jQU8LxaKvq6JLaB7xWerY="
+typstDeps = []
+description = "A modern résumé/curriculum vitæ template with high attention to detail"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[finite."0.4.1"]
+url = "https://packages.typst.org/preview/finite-0.4.1.tar.gz"
+hash = "sha256-wQe8Rb63gPqULtmKglYzJsXKNNZlgngwhGUPgQ0MpDQ="
+typstDeps = [
+ "cetz_0_3_0",
+ "t4t_0_3_2",
+]
+description = "Typst-setting finite automata with CeTZ"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-finite"
+
+[finite."0.4.0"]
+url = "https://packages.typst.org/preview/finite-0.4.0.tar.gz"
+hash = "sha256-s7/MtSGbL8kJx0kI9QLMwul+PKbNj26EoM/+AMJd1Kc="
+typstDeps = [
+ "cetz_0_3_0",
+ "t4t_0_3_2",
+]
+description = "Typst-setting finite automata with CeTZ"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-finite"
+
+[finite."0.3.2"]
+url = "https://packages.typst.org/preview/finite-0.3.2.tar.gz"
+hash = "sha256-7dirwm+luHIVlSBR2MxSkzlkavHMHSE8OH8Ygg78Dhs="
+typstDeps = [
+ "cetz_0_1_1",
+ "t4t_0_3_2",
+]
+description = "Typst-setting finite automata with CeTZ"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-finite"
+
+[finite."0.3.0"]
+url = "https://packages.typst.org/preview/finite-0.3.0.tar.gz"
+hash = "sha256-8rY6KX/SxvLMdAM4izTzUdlvFolw38Rd3IPo3b8Ny3o="
+typstDeps = [
+ "cetz_0_1_1",
+ "t4t_0_3_2",
+]
+description = "Typst-setting finite automata with CeTZ"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-finite"
+
+[finite."0.1.0"]
+url = "https://packages.typst.org/preview/finite-0.1.0.tar.gz"
+hash = "sha256-/hFoi8e9PszDKFrH+/Pci+UyOrryCdC28ZdMRmraItw="
+typstDeps = [
+ "cetz_0_0_2",
+ "t4t_0_3_0",
+]
+description = "Typst-setting finite automata with CeTZ"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-finite"
+
+[fireside."1.0.0"]
+url = "https://packages.typst.org/preview/fireside-1.0.0.tar.gz"
+hash = "sha256-OD7X1OEU9OtcO0kw4bJT/WXrLJowFsuFE86JKB7Ln/k="
+typstDeps = []
+description = "A simple letter template with a touch of warmth"
+license = [
+ "MIT",
+]
+
+[flagada."0.1.0"]
+url = "https://packages.typst.org/preview/flagada-0.1.0.tar.gz"
+hash = "sha256-tyDAcymyVhl9B+u5Abl5hU2vwB7D1uIDyZEnxwU18RQ="
+typstDeps = []
+description = "A package to generate countries flags, selecting country based on its ISO3166-1 code"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/samrenault/flagada"
+
+[flautomat."0.1.0"]
+url = "https://packages.typst.org/preview/flautomat-0.1.0.tar.gz"
+hash = "sha256-9ks3JA5cO4kvl8odrVdqEvzfbdr+AjHrTzWjbuDFo+4="
+typstDeps = [
+ "fletcher_0_5_3",
+]
+description = "Visualize abstract automata based on json input"
+license = [
+ "MIT",
+]
+homepage = "https://codeberg.org/Kuchenmampfer/flautomat"
+
+[fletcher."0.5.7"]
+url = "https://packages.typst.org/preview/fletcher-0.5.7.tar.gz"
+hash = "sha256-jsLbE6cHDTjDelrGkB2CSIqfGaeAeQ1RcQRDBx3hA9k="
+typstDeps = [
+ "cetz_0_3_4",
+ "tidy_0_4_1",
+ "touying_0_5_5",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.5.6"]
+url = "https://packages.typst.org/preview/fletcher-0.5.6.tar.gz"
+hash = "sha256-cJS0PCD/LP+4EFwSO5TDlG8vCTJ+WMIxmPl9o+k7Aas="
+typstDeps = [
+ "cetz_0_3_3",
+ "tidy_0_4_1",
+ "touying_0_5_5",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.5.5"]
+url = "https://packages.typst.org/preview/fletcher-0.5.5.tar.gz"
+hash = "sha256-W+peOeFKgdAjuvLCGUI/Wue0ce7p/3qBfgCrW16o4tc="
+typstDeps = [
+ "cetz_0_3_2",
+ "tidy_0_2_0",
+ "tidy_0_3_0",
+ "touying_0_2_1",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.5.4"]
+url = "https://packages.typst.org/preview/fletcher-0.5.4.tar.gz"
+hash = "sha256-U9CqdJlwoTl+SAOcTi3/ewTxliaejXVxtzpE1M1hPu4="
+typstDeps = [
+ "cetz_0_3_1",
+ "tidy_0_2_0",
+ "tidy_0_3_0",
+ "touying_0_2_1",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.5.3"]
+url = "https://packages.typst.org/preview/fletcher-0.5.3.tar.gz"
+hash = "sha256-4cP31T2qLuWE+NrWeQjCAV2QJnxTeHZW6BQHK12K7Nw="
+typstDeps = [
+ "cetz_0_3_1",
+ "tidy_0_2_0",
+ "tidy_0_3_0",
+ "touying_0_2_1",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.5.2"]
+url = "https://packages.typst.org/preview/fletcher-0.5.2.tar.gz"
+hash = "sha256-VkC9UHhubcOqnVAIL07sKm18WWMKqyzsC/hBWjP/X3Q="
+typstDeps = [
+ "cetz_0_3_1",
+ "tidy_0_2_0",
+ "touying_0_2_1",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.5.1"]
+url = "https://packages.typst.org/preview/fletcher-0.5.1.tar.gz"
+hash = "sha256-UDGKnu/L/G5ZG74tnTsHRCEpf5R5kA7UURIiNFReEv4="
+typstDeps = [
+ "cetz_0_2_2",
+ "tidy_0_2_0",
+ "touying_0_2_1",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.5.0"]
+url = "https://packages.typst.org/preview/fletcher-0.5.0.tar.gz"
+hash = "sha256-8Sjc8jwA4u4iWd+SvewEK/ccnCRlq7QvV6CSOLK04dw="
+typstDeps = [
+ "cetz_0_2_2",
+ "tidy_0_2_0",
+ "touying_0_2_1",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.4.5"]
+url = "https://packages.typst.org/preview/fletcher-0.4.5.tar.gz"
+hash = "sha256-YuxxbViY9/qskTaDL6RRaN3wiiDriMeOLCy6juRSutY="
+typstDeps = [
+ "cetz_0_2_2",
+ "tidy_0_2_0",
+ "touying_0_2_1",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.4.4"]
+url = "https://packages.typst.org/preview/fletcher-0.4.4.tar.gz"
+hash = "sha256-bXRIADvQfhoONL/GomtviPuJzKHvTQmZFIjfYLyjQpo="
+typstDeps = [
+ "cetz_0_2_2",
+ "tidy_0_2_0",
+ "touying_0_2_1",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.4.3"]
+url = "https://packages.typst.org/preview/fletcher-0.4.3.tar.gz"
+hash = "sha256-kQ8uQEXcPrZm/wNFRwFLZNIWXuDN5vvJ5DRp7emqnE4="
+typstDeps = [
+ "cetz_0_2_1",
+ "fletcher_0_4_2",
+ "tidy_0_2_0",
+ "touying_0_2_1",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.4.2"]
+url = "https://packages.typst.org/preview/fletcher-0.4.2.tar.gz"
+hash = "sha256-vYFUogLKIMO/R/tIQO/Knf1EJ+eorsrY+9L4AEJRufM="
+typstDeps = [
+ "cetz_0_2_0",
+ "tidy_0_2_0",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.4.1"]
+url = "https://packages.typst.org/preview/fletcher-0.4.1.tar.gz"
+hash = "sha256-UVXEfdzSVGPjFSsTCcwbWiRFSrkLn0ajKqqdQos71JY="
+typstDeps = [
+ "cetz_0_2_0",
+ "tidy_0_1_0",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.4.0"]
+url = "https://packages.typst.org/preview/fletcher-0.4.0.tar.gz"
+hash = "sha256-djU6wcv5GBbJzHHKdhch7fePziDyNyuJ4SQldZ1PeDQ="
+typstDeps = [
+ "cetz_0_1_2",
+ "tidy_0_1_0",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.3.0"]
+url = "https://packages.typst.org/preview/fletcher-0.3.0.tar.gz"
+hash = "sha256-SdXzVIqnJtrvR/7eQ5srHDRAfhlu7Dxdke9Q1uZ8tks="
+typstDeps = [
+ "cetz_0_1_2",
+ "tidy_0_1_0",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.2.0"]
+url = "https://packages.typst.org/preview/fletcher-0.2.0.tar.gz"
+hash = "sha256-W5kT8nSUFnDQ+eGEs1DeUT/TnkhgzGaBGHhoTTpL9ts="
+typstDeps = [
+ "cetz_0_1_2",
+ "tidy_0_1_0",
+]
+description = "Draw diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[fletcher."0.1.1"]
+url = "https://packages.typst.org/preview/fletcher-0.1.1.tar.gz"
+hash = "sha256-hLWIbBoIiNbXPc2XJGmNluTIseokI0Fk+oQESX2ETrs="
+typstDeps = [
+ "cetz_0_1_2",
+ "tidy_0_1_0",
+]
+description = "Draw commutative diagrams with nodes and arrows"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-fletcher"
+
+[flow."0.3.1"]
+url = "https://packages.typst.org/preview/flow-0.3.1.tar.gz"
+hash = "sha256-YwXzPmBurBdyOeuspshwbLRd4XSdiSlzK28J80k2+Fw="
+typstDeps = []
+description = "A few templates and too many scattered utils"
+license = [
+ "MIT",
+ "MIT-0",
+]
+homepage = "https://github.com/MultisampledNight/flow"
+
+[flow."0.3.0"]
+url = "https://packages.typst.org/preview/flow-0.3.0.tar.gz"
+hash = "sha256-iRu3SEYaX2QtcIwdsCRH1obS3eLC5CgFEIeVspPplHY="
+typstDeps = []
+description = "A few templates and too many scattered utils"
+license = [
+ "MIT",
+ "MIT-0",
+]
+homepage = "https://github.com/MultisampledNight/flow"
+
+[flow."0.2.0"]
+url = "https://packages.typst.org/preview/flow-0.2.0.tar.gz"
+hash = "sha256-fa0Cpawx5mWXtpt9EYSZ89e9rxZkpclH+7MgbUJenPs="
+typstDeps = []
+description = "A few templates and too many scattered utils"
+license = [
+ "MIT",
+ "MIT-0",
+]
+homepage = "https://github.com/MultisampledNight/flow"
+
+[flow."0.1.2"]
+url = "https://packages.typst.org/preview/flow-0.1.2.tar.gz"
+hash = "sha256-fr53skFBa5OyY2bhnsd9JQvaVhPEb/+Byh7/i/PESMM="
+typstDeps = [
+ "polylux_0_3_1",
+]
+description = "A few templates and too many scattered utils"
+license = [
+ "MIT",
+ "MIT-0",
+]
+homepage = "https://github.com/MultisampledNight/flow"
+
+[flyingcircus."3.2.1"]
+url = "https://packages.typst.org/preview/flyingcircus-3.2.1.tar.gz"
+hash = "sha256-dmqOomiW/j5fNEyPqUho6Xsg/5qtQlfPwmMigqK+acg="
+typstDeps = [
+ "cetz_0_3_3",
+ "cetz-plot_0_1_1",
+ "cuti_0_2_1",
+]
+description = "For creating homebrew documents with the same fancy style as the Flying Circus book? Provides simple commands to generate a whole aircraft stat page, vehicle, or even ship"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Tetragramm/flying-circus-typst-template"
+
+[flyingcircus."3.2.0"]
+url = "https://packages.typst.org/preview/flyingcircus-3.2.0.tar.gz"
+hash = "sha256-HQgoZ87KmcMBBuHQjYiwjtWAs19HXFC2ntMI0OvG/Lo="
+typstDeps = [
+ "cetz_0_3_1",
+ "cetz-plot_0_1_0",
+ "cuti_0_2_1",
+]
+description = "For creating homebrew documents with the same fancy style as the Flying Circus book? Provides simple commands to generate a whole aircraft stat page, vehicle, or even ship"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Tetragramm/flying-circus-typst-template"
+
+[flyingcircus."3.0.0"]
+url = "https://packages.typst.org/preview/flyingcircus-3.0.0.tar.gz"
+hash = "sha256-YshyMVu8ph/hRaX7CNaIpJCfHFqh4omXdD6JkGR3cBg="
+typstDeps = [
+ "cetz_0_2_2",
+ "cuti_0_2_1",
+ "tablex_0_0_8",
+]
+description = "For creating homebrew documents with the same fancy style as the Flying Circus book? Provides simple commands to generate a whole aircraft stat page, vehicle, or even ship"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Tetragramm/flying-circus-typst-template"
+
+[fontawesome."0.5.0"]
+url = "https://packages.typst.org/preview/fontawesome-0.5.0.tar.gz"
+hash = "sha256-deUJ24arS9YenlMNjUgxsq9cZ7R/TksgNDDblCcPT5Q="
+typstDeps = []
+description = "A Typst library for Font Awesome icons through the desktop fonts"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/duskmoon314/typst-fontawesome"
+
+[fontawesome."0.4.0"]
+url = "https://packages.typst.org/preview/fontawesome-0.4.0.tar.gz"
+hash = "sha256-NRzVcTQP9nxOM0jhx/aIlUqOdMhkc6XPxHiXRCF5zFw="
+typstDeps = []
+description = "A Typst library for Font Awesome icons through the desktop fonts"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/duskmoon314/typst-fontawesome"
+
+[fontawesome."0.3.0"]
+url = "https://packages.typst.org/preview/fontawesome-0.3.0.tar.gz"
+hash = "sha256-v7PUcuyzw9g74hNYUO8y5EhBYnGJcqQ6Ia2Cqsijmno="
+typstDeps = []
+description = "A Typst library for Font Awesome icons through the desktop fonts"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/duskmoon314/typst-fontawesome"
+
+[fontawesome."0.2.1"]
+url = "https://packages.typst.org/preview/fontawesome-0.2.1.tar.gz"
+hash = "sha256-AUj1F9Z0Z6ETOsT9y7qMvC+Q4WZ75STIRAODf/wmf0Q="
+typstDeps = []
+description = "A Typst library for Font Awesome icons through the desktop fonts"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/duskmoon314/typst-fontawesome"
+
+[fontawesome."0.2.0"]
+url = "https://packages.typst.org/preview/fontawesome-0.2.0.tar.gz"
+hash = "sha256-YOWFmjt6AEWaFybdOiokFYBL7GGW+PpTxlLw5ajmOaw="
+typstDeps = []
+description = "A Typst library for Font Awesome icons through the desktop fonts"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/duskmoon314/typst-fontawesome"
+
+[fontawesome."0.1.1"]
+url = "https://packages.typst.org/preview/fontawesome-0.1.1.tar.gz"
+hash = "sha256-20THl+eH3LYjUoeNwmjqx9e/L7Ug0BZ9KZDuIf/DRqc="
+typstDeps = []
+description = "A Typst library for Font Awesome icons through the desktop fonts"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/duskmoon314/typst-fontawesome"
+
+[fontawesome."0.1.0"]
+url = "https://packages.typst.org/preview/fontawesome-0.1.0.tar.gz"
+hash = "sha256-duYhendgcUntqBm/vyMDPwb4r7JFCai2Ws6V4qlf3Mw="
+typstDeps = []
+description = "A Typst library for Font Awesome icons through the desktop fonts"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/duskmoon314/typst-fontawesome"
+
+[formalettre."0.1.2"]
+url = "https://packages.typst.org/preview/formalettre-0.1.2.tar.gz"
+hash = "sha256-pAfyUg/DQ0a8EoRPRc9rIV+URWHP8ea32R8gevkcjJQ="
+typstDeps = []
+description = "French formal letter template"
+license = [
+ "BSD-3-Clause",
+]
+homepage = "https://github.com/Brndan/lettre"
+
+[formalettre."0.1.1"]
+url = "https://packages.typst.org/preview/formalettre-0.1.1.tar.gz"
+hash = "sha256-8j/6S6MIiLWtrl8OZXG5ytjJCUrW3vdAf0jdvpMnEzU="
+typstDeps = []
+description = "French formal letter template"
+license = [
+ "BSD-3-Clause",
+]
+homepage = "https://github.com/Brndan/lettre"
+
+[formalettre."0.1.0"]
+url = "https://packages.typst.org/preview/formalettre-0.1.0.tar.gz"
+hash = "sha256-hrPn45hqV5Z0bpFEaBmOHAUZqAoimGb0rWwz2itYleI="
+typstDeps = []
+description = "French formal letter template"
+license = [
+ "BSD-3-Clause",
+]
+homepage = "https://github.com/Brndan/lettre"
+
+[frackable."0.2.0"]
+url = "https://packages.typst.org/preview/frackable-0.2.0.tar.gz"
+hash = "sha256-IbKUPIcWNBgzLCSyiw4hF2CEL6bVj6ygs2fyy3ZZB30="
+typstDeps = []
+description = "Vulgar Fractions"
+license = [
+ "Unlicense",
+]
+homepage = "https://www.github.com/jamesrswift/frackable"
+
+[frackable."0.1.0"]
+url = "https://packages.typst.org/preview/frackable-0.1.0.tar.gz"
+hash = "sha256-IRpnEGFKoHQeD8vFhj4NBjKggUj60eiN9V3iSDrN5oo="
+typstDeps = []
+description = "Vulgar Fractions"
+license = [
+ "Unlicense",
+]
+homepage = "https://www.github.com/jamesrswift/frackable"
+
+[fractus."0.1.0"]
+url = "https://packages.typst.org/preview/fractus-0.1.0.tar.gz"
+hash = "sha256-cR35144FfUGIV9PW9ceZOOSWJ4kTIRwl2jV5Ws/NKVU="
+typstDeps = []
+description = "Operations on fractions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ejbasas/fractus"
+
+[fractusist."0.3.0"]
+url = "https://packages.typst.org/preview/fractusist-0.3.0.tar.gz"
+hash = "sha256-wwfAXz3v0fNXpfoAPwGrhnywurAbNRqteP5iXO2eNBY="
+typstDeps = [
+ "suiji_0_3_0",
+]
+description = "Create a variety of wonderful fractals and curves in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/liuguangxi/fractusist"
+
+[fractusist."0.2.1"]
+url = "https://packages.typst.org/preview/fractusist-0.2.1.tar.gz"
+hash = "sha256-3LjypKw7K/1b6PdQl6nx7MEit3+RWIt5ajEy3R2zoSI="
+typstDeps = [
+ "suiji_0_3_0",
+]
+description = "Create a variety of wonderful fractals and curves in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/liuguangxi/fractusist"
+
+[fractusist."0.2.0"]
+url = "https://packages.typst.org/preview/fractusist-0.2.0.tar.gz"
+hash = "sha256-0cO37CDCdROoMiiIMq4j5eSNfrYdV/SAzC6eSsuPWbk="
+typstDeps = []
+description = "Create a variety of wonderful fractals and curves in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/liuguangxi/fractusist"
+
+[fractusist."0.1.1"]
+url = "https://packages.typst.org/preview/fractusist-0.1.1.tar.gz"
+hash = "sha256-5M+tYjNToqWsg/2XKCcQZQ9ch0HVJDpoHnDfbcJ8zEo="
+typstDeps = []
+description = "Create a variety of wonderful fractals in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/liuguangxi/fractusist"
+
+[fractusist."0.1.0"]
+url = "https://packages.typst.org/preview/fractusist-0.1.0.tar.gz"
+hash = "sha256-P5SsaiLCPEW3Te6ellAeMOTNxsCrq1ju2qWmTRo2SxM="
+typstDeps = []
+description = "Create a variety of wonderful fractals in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/liuguangxi/fractusist"
+
+[frame-it."1.1.2"]
+url = "https://packages.typst.org/preview/frame-it-1.1.2.tar.gz"
+hash = "sha256-kQ3ThqquoBUsn9WW0R93FTAGnkdyGc4dOc9XfZNOzPg="
+typstDeps = []
+description = "Beautiful, flexible, and integrated. Display custom frames for theorems, environments, and more. Attractive visuals with syntax that blends seamlessly into the source"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/marc-thieme/frame-it"
+
+[frame-it."1.1.1"]
+url = "https://packages.typst.org/preview/frame-it-1.1.1.tar.gz"
+hash = "sha256-pYwsLkD2Xo26SACm7EYqjMmXOU8GfP9qJ9XLrdLxPmY="
+typstDeps = []
+description = "Beautiful, flexible, and integrated. Display custom frames for theorems, environments, and more. Attractive visuals with syntax that blends seamlessly into the source"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/marc-thieme/frame-it"
+
+[frame-it."1.1.0"]
+url = "https://packages.typst.org/preview/frame-it-1.1.0.tar.gz"
+hash = "sha256-FsZmkx94QgBad48kvThhxhyqyLQMElKECWvxNUYsh7Y="
+typstDeps = []
+description = "Beautiful, flexible, and integrated. Display custom frames for theorems, environments, and more. Attractive visuals with syntax that blends seamlessly into the source"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/marc-thieme/frame-it"
+
+[frame-it."1.0.0"]
+url = "https://packages.typst.org/preview/frame-it-1.0.0.tar.gz"
+hash = "sha256-dFhV0E8tYVrjyM2Acj6GtkX9YUKimFkb4wZP9gR6tss="
+typstDeps = []
+description = "Beautiful, flexible, and integrated. Display custom frames for theorems, environments, and more. Attractive visuals with syntax that blends seamlessly into the source"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/marc-thieme/frame-it"
+
+[friendly-polylux."0.1.0"]
+url = "https://packages.typst.org/preview/friendly-polylux-0.1.0.tar.gz"
+hash = "sha256-mgOwl7b2nkmvW5dtDpuoZih1AAWqgCB5S1QRcevtftU="
+typstDeps = [
+ "polylux_0_4_0",
+ "tiaoma_0_2_1",
+]
+description = "Friendly and playful template for Polylux"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/polylux-typ/friendly"
+
+[fruitify."0.1.1"]
+url = "https://packages.typst.org/preview/fruitify-0.1.1.tar.gz"
+hash = "sha256-CEvzympelzWxXFudpn/7w1noPcfrq7RWUxcVHw+FqIs="
+typstDeps = []
+description = "Replace letters in equations with fruit emoji"
+license = [
+ "MIT-0",
+]
+homepage = "https://codeberg.org/T0mstone/typst-fruitify"
+
+[fruitify."0.1.0"]
+url = "https://packages.typst.org/preview/fruitify-0.1.0.tar.gz"
+hash = "sha256-/djCVsBkp4Guve1AweraBPE01Zc0SB9RQ2DheZlwvBw="
+typstDeps = []
+description = "Replace letters in equations with fruit emojis"
+license = [
+ "MIT",
+]
+homepage = "https://codeberg.org/T0mstone/typst-fruitify"
+
+[funarray."0.4.0"]
+url = "https://packages.typst.org/preview/funarray-0.4.0.tar.gz"
+hash = "sha256-PSl/2p8rEH7KxYuzs/gnUcUfWTQUHj9wODNwv8xmwlk="
+typstDeps = [
+ "funarray_0_3_0",
+ "idwtet_0_3_0",
+]
+description = "Package providing convenient functional functions to use on arrays"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ludwig-austermann/typst-funarray"
+
+[funarray."0.3.0"]
+url = "https://packages.typst.org/preview/funarray-0.3.0.tar.gz"
+hash = "sha256-KORxcflDROjQuOepZwAuoQECk2b7vikZsCDhgQMmCu0="
+typstDeps = [
+ "idwtet_0_2_0",
+]
+description = "Package providing convenient functional functions to use on arrays"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ludwig-austermann/typst-funarray"
+
+[funarray."0.2.0"]
+url = "https://packages.typst.org/preview/funarray-0.2.0.tar.gz"
+hash = "sha256-PL7W4WQ2Y/BhAHdpNmfNWPpAvhbeFRYhcxSRZjsUBrw="
+typstDeps = []
+description = "Package providing convenient functional functions to use on arrays"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ludwig-austermann/typst-funarray"
+
+[fuzzy-cnoi-statement."0.1.3"]
+url = "https://packages.typst.org/preview/fuzzy-cnoi-statement-0.1.3.tar.gz"
+hash = "sha256-EfMSqNURTDIh84oP0RlvJjRxYsDa48qvD/4u6wXZP/k="
+typstDeps = [
+ "codelst_2_0_0",
+]
+description = "A template for CNOI(Olympiad in Informatics in China)-style statements for competitive programming"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/Wallbreaker5th/fuzzy-cnoi-statement"
+
+[fuzzy-cnoi-statement."0.1.2"]
+url = "https://packages.typst.org/preview/fuzzy-cnoi-statement-0.1.2.tar.gz"
+hash = "sha256-q9aDYaOu6do+VtxFiMagUJcx93Nn5bnyAVsWZrw8ZTE="
+typstDeps = [
+ "codelst_2_0_0",
+]
+description = "A template for CNOI(Olympiad in Informatics in China)-style statements for competitive programming"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/Wallbreaker5th/fuzzy-cnoi-statement"
+
+[fuzzy-cnoi-statement."0.1.1"]
+url = "https://packages.typst.org/preview/fuzzy-cnoi-statement-0.1.1.tar.gz"
+hash = "sha256-rhZCGzB78R0OKDVJvMmAttUOp8pr677A/muWK1IJv48="
+typstDeps = [
+ "codelst_2_0_0",
+]
+description = "A template for CNOI(Olympiad in Informatics in China)-style statements for competitive programming"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/Wallbreaker5th/fuzzy-cnoi-statement"
+
+[fuzzy-cnoi-statement."0.1.0"]
+url = "https://packages.typst.org/preview/fuzzy-cnoi-statement-0.1.0.tar.gz"
+hash = "sha256-LVUIrP8yHkMxdCI1dOEVIpX8R5BYYhq58V17eXoR4Rs="
+typstDeps = [
+ "codelst_2_0_0",
+]
+description = "A template for CNOI(Olympiad in Informatics in China)-style statements for competitive programming"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/Wallbreaker5th/fuzzy-cnoi-statement"
+
+[fyrst-ru-labreport."0.1.0"]
+url = "https://packages.typst.org/preview/fyrst-ru-labreport-0.1.0.tar.gz"
+hash = "sha256-RC/HAKUic0fHniU1UNL4lsTmd9d+l+ZseEU7f4cVv+c="
+typstDeps = [
+ "cetz_0_3_1",
+ "cetz-plot_0_1_0",
+ "unify_0_7_0",
+]
+description = "Reykjavík University Lab Report Template"
+license = [
+ "GPL-3.0-or-later",
+]
+
+[g-exam."0.4.2"]
+url = "https://packages.typst.org/preview/g-exam-0.4.2.tar.gz"
+hash = "sha256-PLlZ4+/CPccRlre8hTfe8/tNe/372pHPeX6ZuikuyCI="
+typstDeps = [
+ "oxifmt_0_2_0",
+ "oxifmt_0_2_1",
+]
+description = "Create exams with student information, grade chart, score control, questions, and sub-questions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/MatheSchool/typst-g-exam"
+
+[g-exam."0.4.1"]
+url = "https://packages.typst.org/preview/g-exam-0.4.1.tar.gz"
+hash = "sha256-8LIOhBCxrmTsX8DR0pSuGV7hGULvz2HAuIutPmJ2z5U="
+typstDeps = [
+ "oxifmt_0_2_0",
+ "oxifmt_0_2_1",
+]
+description = "Create exams with student information, grade chart, score control, questions, and sub-questions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/MatheSchool/typst-g-exam"
+
+[g-exam."0.4.0"]
+url = "https://packages.typst.org/preview/g-exam-0.4.0.tar.gz"
+hash = "sha256-9og+m/vp1pFckEnQvug6C3Si8MU2iP5Mo109df4K4h4="
+typstDeps = [
+ "oxifmt_0_2_0",
+ "oxifmt_0_2_1",
+]
+description = "Create exams with student information, grade chart, score control, questions, and sub-questions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/MatheSchool/typst-g-exam"
+
+[g-exam."0.3.2"]
+url = "https://packages.typst.org/preview/g-exam-0.3.2.tar.gz"
+hash = "sha256-lStEam+Du2Zfb8NzVciMfsm1hruB3Y7OOV17956+cyk="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "Create exams with student information, grade chart, score control, questions, and sub-questions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/MatheSchool/typst-g-exam"
+
+[g-exam."0.3.1"]
+url = "https://packages.typst.org/preview/g-exam-0.3.1.tar.gz"
+hash = "sha256-ty9h9uZUccdyIzVoXZVJpq3cJgPyWUrIyBe5CUzrZpQ="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "Create exams with student information, grade chart, score control, questions, and sub-questions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/MatheSchool/typst-g-exam"
+
+[g-exam."0.3.0"]
+url = "https://packages.typst.org/preview/g-exam-0.3.0.tar.gz"
+hash = "sha256-vi/ICLdb3X6kR8VKQL1/jhoPoooomg24AYIhQZ5j74A="
+typstDeps = [
+ "g-exam_0_2_0",
+ "oxifmt_0_2_0",
+]
+description = "Create exams with student information, grade chart, score control, questions, and sub-questions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/MatheSchool/typst-g-exam"
+
+[g-exam."0.2.0"]
+url = "https://packages.typst.org/preview/g-exam-0.2.0.tar.gz"
+hash = "sha256-oRP8AVNK5rS+3oEajim/3HrcmOOw8265SOvRTbDlUMQ="
+typstDeps = [
+ "cetz_0_2_1",
+ "oxifmt_0_2_0",
+]
+description = "Create exams with student information, grade chart, score control, questions, and sub-questions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/MatheSchool/typst-g-exam"
+
+[g-exam."0.1.1"]
+url = "https://packages.typst.org/preview/g-exam-0.1.1.tar.gz"
+hash = "sha256-AqqkJZtn7QJkLodiCjxV612JJ4dN8/OwKl3FO8uqdlg="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "Create exams with student information, grade chart, score control, questions, and sub-questions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/MatheSchool/typst-g-exam"
+
+[g-exam."0.1.0"]
+url = "https://packages.typst.org/preview/g-exam-0.1.0.tar.gz"
+hash = "sha256-Mmwb6iyJT0FxJgVYdUY3xcJ5tTEAqMaY5ijeRM7Yz4w="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "Create exams with student information, grade chart, score control, questions, and sub-questions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/MatheSchool/typst-g-exam"
+
+[game-theoryst."0.1.0"]
+url = "https://packages.typst.org/preview/game-theoryst-0.1.0.tar.gz"
+hash = "sha256-1FtNDcbP6TBXZQ9SlWzmHSrp6F8pTPEnjDKougnlCqI="
+typstDeps = [
+ "pinit_0_1_4",
+]
+description = "A package for typesetting games in Typst"
+license = [
+ "AGPL-3.0-only",
+]
+homepage = "https://github.com/connortwiegand/game-theoryst"
+
+[gantty."0.1.0"]
+url = "https://packages.typst.org/preview/gantty-0.1.0.tar.gz"
+hash = "sha256-x2Pqz9YNFGBAPludpA8EcnQ6pizeRC2kes4gK5etqSc="
+typstDeps = [
+ "cetz_0_3_1",
+]
+description = "Create gantt charts using datetimes"
+license = [
+ "LGPL-3.0-only",
+]
+homepage = "https://gitlab.com/john_t/typst-gantty"
+
+[genealotree."0.2.0"]
+url = "https://packages.typst.org/preview/genealotree-0.2.0.tar.gz"
+hash = "sha256-RvKMkv1h5huYkLTNdGOijBi+wBMZxud93f24WDhJ28s="
+typstDeps = [
+ "cetz_0_3_1",
+ "t4t_0_3_2",
+]
+description = "A package to draw genealogical trees, based on CeTZ"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://codeberg.org/drloiseau/genealogy"
+
+[genealotree."0.1.0"]
+url = "https://packages.typst.org/preview/genealotree-0.1.0.tar.gz"
+hash = "sha256-koLFbWm+rJPiO6Ki4g0GDu8fk3R+/+o9B3Mogn9iZ20="
+typstDeps = [
+ "cetz_0_2_2",
+ "mantys_0_1_3",
+ "showman_0_1_1",
+ "tidy_0_2_0",
+]
+description = "A package to draw genealogical trees, based on CeTZ"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://codeberg.org/drloiseau/genealogy"
+
+[gentle-clues."1.2.0"]
+url = "https://packages.typst.org/preview/gentle-clues-1.2.0.tar.gz"
+hash = "sha256-oQ/HcKJRijQPM450fNF7vF5WAQCu3bWLmy6bkmrnHfg="
+typstDeps = [
+ "linguify_0_4_2",
+]
+description = "A package to simply create and add some admonitions to your documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-gentle-clues"
+
+[gentle-clues."1.1.0"]
+url = "https://packages.typst.org/preview/gentle-clues-1.1.0.tar.gz"
+hash = "sha256-dNu3KMkbnbaI2gb4yeVQ4dczNaEj63D0U1INwv+Nj6M="
+typstDeps = [
+ "linguify_0_4_0",
+]
+description = "A package to simply create and add some admonitions to your documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-gentle-clues"
+
+[gentle-clues."1.0.0"]
+url = "https://packages.typst.org/preview/gentle-clues-1.0.0.tar.gz"
+hash = "sha256-/ht2Jxt2iGGyMJ5IlCdxTadp5cE1RXZ4x7nhcDCL4hQ="
+typstDeps = [
+ "linguify_0_4_0",
+]
+description = "A package to simply create and add some admonitions to your documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-gentle-clues"
+
+[gentle-clues."0.9.0"]
+url = "https://packages.typst.org/preview/gentle-clues-0.9.0.tar.gz"
+hash = "sha256-LuFJvWPZBIWGMs3VDYvnU3FBUhvmW+MnF/RnH+9PTnc="
+typstDeps = [
+ "linguify_0_4_0",
+]
+description = "A package to simply create and add some admonitions to your documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-gentle-clues"
+
+[gentle-clues."0.8.0"]
+url = "https://packages.typst.org/preview/gentle-clues-0.8.0.tar.gz"
+hash = "sha256-Ze1BkoxQNC4g+TuaOgE0liqg+fmKuxwrF+PS5HS5T80="
+typstDeps = [
+ "linguify_0_4_0",
+]
+description = "A package to simply create and add some admonitions to your documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-gentle-clues"
+
+[gentle-clues."0.7.1"]
+url = "https://packages.typst.org/preview/gentle-clues-0.7.1.tar.gz"
+hash = "sha256-wXnn1yH08/WZ8BKjbckcCeMQpEp1NmpiycdQtS+/Up0="
+typstDeps = [
+ "linguify_0_3_1",
+]
+description = "A package to simply create and add some admonitions to your documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-gentle-clues"
+
+[gentle-clues."0.7.0"]
+url = "https://packages.typst.org/preview/gentle-clues-0.7.0.tar.gz"
+hash = "sha256-H185bbeAP4FRwjNqB1IilBrC9FjCcNYQKP9N4yiiIU4="
+typstDeps = [
+ "linguify_0_3_0",
+]
+description = "A package to simply create and add some admonitions to your documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-gentle-clues"
+
+[gentle-clues."0.6.0"]
+url = "https://packages.typst.org/preview/gentle-clues-0.6.0.tar.gz"
+hash = "sha256-F1v2ddEE8frEbUFmQXo4U5ErAr6piy3v9JK0ueBT26Y="
+typstDeps = []
+description = "A package to simply create and add some admonitions to your documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-gentle-clues"
+
+[gentle-clues."0.5.0"]
+url = "https://packages.typst.org/preview/gentle-clues-0.5.0.tar.gz"
+hash = "sha256-nTL2Q+PmJpjMx+IONrARiEdeg1H134yg5Hs3/yHHPqQ="
+typstDeps = []
+description = "A package to simply create and add some admonitions to your documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-admonish"
+
+[gentle-clues."0.4.0"]
+url = "https://packages.typst.org/preview/gentle-clues-0.4.0.tar.gz"
+hash = "sha256-FopJ9x0PwJ75FpZzJ6bWOGfKi+nEv33BG2JvKrwjWOU="
+typstDeps = []
+description = "A package to simply create and add some admonitions to your documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-admonish"
+
+[gentle-clues."0.3.0"]
+url = "https://packages.typst.org/preview/gentle-clues-0.3.0.tar.gz"
+hash = "sha256-wM8+dJlt5sinHEfeukemU5GCpoSCgWLIPhlo9OgwUkM="
+typstDeps = []
+description = "A package to simply create and add some admonitions to your documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-admonish"
+
+[gentle-clues."0.2.0"]
+url = "https://packages.typst.org/preview/gentle-clues-0.2.0.tar.gz"
+hash = "sha256-taOqroBAXxmLEmJ+vx8iDv8rQkxvTMOXH7QI+go2RDc="
+typstDeps = []
+description = "A package to simply create and add some admonitions to your documents"
+license = [
+ "MIT",
+]
+
+[gentle-clues."0.1.0"]
+url = "https://packages.typst.org/preview/gentle-clues-0.1.0.tar.gz"
+hash = "sha256-/ZfCEqiaSbo9Vp31LSccM1XUzYOey7ZwJEggfkK4YsU="
+typstDeps = []
+description = "A package to simply create and add some admonitions to your documents"
+license = [
+ "MIT",
+]
+
+[georges-yetyp."0.2.0"]
+url = "https://packages.typst.org/preview/georges-yetyp-0.2.0.tar.gz"
+hash = "sha256-8D8yog9VhYEhXbOxV3aETd0MkfnM5dp3IxWXZbTa55Y="
+typstDeps = []
+description = "Unofficial template for Polytech Grenoble internship reports"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/elegaanz/georges-yetyp"
+
+[georges-yetyp."0.1.0"]
+url = "https://packages.typst.org/preview/georges-yetyp-0.1.0.tar.gz"
+hash = "sha256-FXlaaujhd4EGTEB4zxrldcVG6nveJOlJd87tBgLRwTE="
+typstDeps = []
+description = "Unofficial template for Polytech Grenoble internship reports"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/elegaanz/georges-yetyp"
+
+[gloss-awe."0.0.5"]
+url = "https://packages.typst.org/preview/gloss-awe-0.0.5.tar.gz"
+hash = "sha256-DVVxTx6TN3oZjWy1W9VZdAj0ymLpoFtEIaS0RO3KkE4="
+typstDeps = []
+description = "Awesome Glossary for Typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/RolfBremer/gloss-awe"
+
+[gloss-awe."0.0.4"]
+url = "https://packages.typst.org/preview/gloss-awe-0.0.4.tar.gz"
+hash = "sha256-jPukTVrk1spgzTwzaDzWwJH7cbBdOsIHyIx53B7POJ0="
+typstDeps = []
+description = "Awesome Glossary for Typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/RolfBremer/typst-glossary"
+
+[gloss-awe."0.0.3"]
+url = "https://packages.typst.org/preview/gloss-awe-0.0.3.tar.gz"
+hash = "sha256-CPgyPw5giFS1sQXgczM2Rzk5u6BPqZ4rDCsboFliC9k="
+typstDeps = []
+description = "An Awesome Glossary for Typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/RolfBremer/typst-glossary"
+
+[glossarium."0.5.4"]
+url = "https://packages.typst.org/preview/glossarium-0.5.4.tar.gz"
+hash = "sha256-OXkASSsWbK2IjoRK6n8L1VLOLKqoj184+2Nl1KrAGh8="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/typst-community/glossarium"
+
+[glossarium."0.5.3"]
+url = "https://packages.typst.org/preview/glossarium-0.5.3.tar.gz"
+hash = "sha256-rStKB+t5GHdJlTW62hptnnR+jNQSfnum+EGXTJkY/4M="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/typst-community/glossarium"
+
+[glossarium."0.5.2"]
+url = "https://packages.typst.org/preview/glossarium-0.5.2.tar.gz"
+hash = "sha256-Tu2byG0g5gNYa4xfe+8wWO481+afQgKLHySyALDVgrw="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/typst-community/glossarium"
+
+[glossarium."0.5.1"]
+url = "https://packages.typst.org/preview/glossarium-0.5.1.tar.gz"
+hash = "sha256-f7BLwG+8U/YKnnNiUGACiPppa7mGEECBgOZYvLdQCrM="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/typst-community/glossarium"
+
+[glossarium."0.5.0"]
+url = "https://packages.typst.org/preview/glossarium-0.5.0.tar.gz"
+hash = "sha256-++xzXtsv4jDh6XH9cRuEJv9l37gesWYTl4uIub7hXBg="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/typst-community/glossarium"
+
+[glossarium."0.4.2"]
+url = "https://packages.typst.org/preview/glossarium-0.4.2.tar.gz"
+hash = "sha256-wT1rCzfcCwMPM6l9imA+JNzwzJsPf4SALVJ5QiaVF0k="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/typst-community/glossarium"
+
+[glossarium."0.4.1"]
+url = "https://packages.typst.org/preview/glossarium-0.4.1.tar.gz"
+hash = "sha256-zUSkga1UiInv79+3oZ0sGQ7gvwHOYm0q2fM/uJ3eFHQ="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ENIB-Community/glossarium"
+
+[glossarium."0.4.0"]
+url = "https://packages.typst.org/preview/glossarium-0.4.0.tar.gz"
+hash = "sha256-gfKkatI389dGlLaq6pJN0AMYs96+t3LM2sCt7Q8x7pg="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ENIB-Community/glossarium"
+
+[glossarium."0.3.0"]
+url = "https://packages.typst.org/preview/glossarium-0.3.0.tar.gz"
+hash = "sha256-uwgmxTeQCTxQGEJQyPGGDztE6++aA60WfUsTH9dOxJw="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ENIB-Community/glossarium"
+
+[glossarium."0.2.6"]
+url = "https://packages.typst.org/preview/glossarium-0.2.6.tar.gz"
+hash = "sha256-tQ2YDPcJChJK/6MJO15/G5WOX1v/T+hJvfU0G5evTeQ="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ENIB-Community/glossarium"
+
+[glossarium."0.2.5"]
+url = "https://packages.typst.org/preview/glossarium-0.2.5.tar.gz"
+hash = "sha256-B+4GykbLJXfDq3JRrtv39ODvg878ZdMKPmvkHRJuRH4="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ENIB-Community/glossarium"
+
+[glossarium."0.2.4"]
+url = "https://packages.typst.org/preview/glossarium-0.2.4.tar.gz"
+hash = "sha256-7W2pXf4VDYmpS22hF9p3crsRd7NR0edXlh8F9Bb17Ao="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ENIB-Community/glossarium"
+
+[glossarium."0.2.3"]
+url = "https://packages.typst.org/preview/glossarium-0.2.3.tar.gz"
+hash = "sha256-BMIZNhYt6otDeZBgxe0hqYZwu0kJ32u/XxeKh8NUtFY="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/slashformotion/glossarium"
+
+[glossarium."0.2.2"]
+url = "https://packages.typst.org/preview/glossarium-0.2.2.tar.gz"
+hash = "sha256-/cILLiIGo9MEDCYel2bgP43Jmd8pzJDxa1I87A7VKCc="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ENIB-Community/glossarium"
+
+[glossarium."0.2.1"]
+url = "https://packages.typst.org/preview/glossarium-0.2.1.tar.gz"
+hash = "sha256-SK0Ighj+9GNlBVzqkWM3/ljJL2zZHrG3AQNGgX+yr2Q="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/slashformotion/glossarium"
+
+[glossarium."0.2.0"]
+url = "https://packages.typst.org/preview/glossarium-0.2.0.tar.gz"
+hash = "sha256-4V5RFcDeLW70KFjJstoNic9AmRrhXwEJBqJnamhcOhk="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/slashformotion/glossarium"
+
+[glossarium."0.1.0"]
+url = "https://packages.typst.org/preview/glossarium-0.1.0.tar.gz"
+hash = "sha256-O36TdR7DxoA6k3OHo39vrWX1nrSrsQq4b9VXhQspZaM="
+typstDeps = []
+description = "Glossarium is a simple, easily customizable typst glossary"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/slashformotion/glossarium"
+
+[glossy."0.8.0"]
+url = "https://packages.typst.org/preview/glossy-0.8.0.tar.gz"
+hash = "sha256-7vhOwDSgwHCLwZ2h2MNn7dRYlyhCdB9rxG58SDunBBs="
+typstDeps = [
+ "glossarium_0_5_3",
+ "valkyrie_0_2_2",
+]
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[glossy."0.7.0"]
+url = "https://packages.typst.org/preview/glossy-0.7.0.tar.gz"
+hash = "sha256-Qt2XoZeSw9w2oPpVmR7DxtpYgM+HBQroTck9KkE9qeY="
+typstDeps = [
+ "glossarium_0_5_3",
+ "valkyrie_0_2_2",
+]
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[glossy."0.6.0"]
+url = "https://packages.typst.org/preview/glossy-0.6.0.tar.gz"
+hash = "sha256-GF+UKSxd/K57frAgzxpwhByAo2uZibbhl01KLAZD2Xw="
+typstDeps = [
+ "glossarium_0_5_1",
+ "valkyrie_0_2_1",
+]
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[glossy."0.5.2"]
+url = "https://packages.typst.org/preview/glossy-0.5.2.tar.gz"
+hash = "sha256-afjFWWTSPRhUJwUPhYNkPQdaWNbGblZWXXMXIYgiMgE="
+typstDeps = [
+ "glossarium_0_5_1",
+ "valkyrie_0_2_1",
+]
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[glossy."0.5.1"]
+url = "https://packages.typst.org/preview/glossy-0.5.1.tar.gz"
+hash = "sha256-UmXBNMBLHEckKl5FBvltim9UobPkYu6zlQyx9UA/WK4="
+typstDeps = [
+ "valkyrie_0_2_1",
+]
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[glossy."0.5.0"]
+url = "https://packages.typst.org/preview/glossy-0.5.0.tar.gz"
+hash = "sha256-HKy8jiheIwO6g/R5eOmy55/Rhpt2Bnm6T+C+yVkvO+E="
+typstDeps = [
+ "valkyrie_0_2_1",
+]
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[glossy."0.4.1"]
+url = "https://packages.typst.org/preview/glossy-0.4.1.tar.gz"
+hash = "sha256-kMKeM24y6sJ+kUi7E97Hm54tEdorMiHbNkgsW7Bkx40="
+typstDeps = [
+ "valkyrie_0_2_1",
+]
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[glossy."0.4.0"]
+url = "https://packages.typst.org/preview/glossy-0.4.0.tar.gz"
+hash = "sha256-km8u8jInFksaNqT0j81+xFSy8BNCZjz4Uz0kNxCOET4="
+typstDeps = [
+ "valkyrie_0_2_1",
+]
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[glossy."0.3.0"]
+url = "https://packages.typst.org/preview/glossy-0.3.0.tar.gz"
+hash = "sha256-KLNnhsZWGqQ0oUTp1rnzB6cN4fzBmVsXboj3NdXhhm4="
+typstDeps = [
+ "valkyrie_0_2_1",
+]
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[glossy."0.2.2"]
+url = "https://packages.typst.org/preview/glossy-0.2.2.tar.gz"
+hash = "sha256-qFvx4q4kzu60/gLs7Y7ebkvhSUBs4pdDQLk/1tz1sg0="
+typstDeps = []
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[glossy."0.2.1"]
+url = "https://packages.typst.org/preview/glossy-0.2.1.tar.gz"
+hash = "sha256-hfbprk6x57XOcMa5HEXVs73PCpLeh2CJYeTjI4/m+BA="
+typstDeps = []
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[glossy."0.2.0"]
+url = "https://packages.typst.org/preview/glossy-0.2.0.tar.gz"
+hash = "sha256-cThfCe0IvWLboyqbnIravumLGpNeYXxQeAfOTvKAPaU="
+typstDeps = []
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[glossy."0.1.2"]
+url = "https://packages.typst.org/preview/glossy-0.1.2.tar.gz"
+hash = "sha256-lYsYNmBCp6YNSyyiZhy7k3W/cPcMRc0yRKVEi9nGbbU="
+typstDeps = []
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[glossy."0.1.1"]
+url = "https://packages.typst.org/preview/glossy-0.1.1.tar.gz"
+hash = "sha256-DjdPzAb4iUlXSX2UWsSzi9D4Oy8Cohk8Cb+YJ7bsS9I="
+typstDeps = []
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[glossy."0.1.0"]
+url = "https://packages.typst.org/preview/glossy-0.1.0.tar.gz"
+hash = "sha256-9HqjdNbWVz8VBWG4UWEGFyOH//7t5mHs/WySPas5yMg="
+typstDeps = []
+description = "A very simple glossary system with easily customizable output"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[gqe-lemoulon-presentation."0.0.5"]
+url = "https://packages.typst.org/preview/gqe-lemoulon-presentation-0.0.5.tar.gz"
+hash = "sha256-EKRM2pcccly4vMbMWCTOQednyIpPBet5RBOzrsZGLs4="
+typstDeps = [
+ "showybox_2_0_3",
+ "tablem_0_1_0",
+ "touying_0_5_3",
+]
+description = "Quickly generate slides for a GQE-Le moulon presentation"
+license = [
+ "GPL-3.0-only",
+]
+
+[gqe-lemoulon-presentation."0.0.4"]
+url = "https://packages.typst.org/preview/gqe-lemoulon-presentation-0.0.4.tar.gz"
+hash = "sha256-590iNmmEIwSceZA5tzWE+THuEiMUFvlVhkUADoVrzT4="
+typstDeps = [
+ "showybox_2_0_3",
+ "touying_0_5_3",
+]
+description = "Quickly generate slides for a GQE-Le moulon presentation"
+license = [
+ "GPL-3.0-only",
+]
+
+[graceful-genetics."0.2.0"]
+url = "https://packages.typst.org/preview/graceful-genetics-0.2.0.tar.gz"
+hash = "sha256-Dg1bG9drD3b0nM5Kso+pp8juWTIdiIM+K8okd0vQh+M="
+typstDeps = [
+ "physica_0_9_3",
+]
+description = "A paper template with which to publish in journals and at conferences"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/JamesxX/graceful-genetics"
+
+[graceful-genetics."0.1.0"]
+url = "https://packages.typst.org/preview/graceful-genetics-0.1.0.tar.gz"
+hash = "sha256-BvwgKR/yqHPm4GdThGnxcO54wZ40Grt7XSoqOLnsPHU="
+typstDeps = [
+ "physica_0_9_3",
+]
+description = "A paper template with which to publish in journals and at conferences"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/JamesxX/graceful-genetics"
+
+[gradslide."0.1.0"]
+url = "https://packages.typst.org/preview/gradslide-0.1.0.tar.gz"
+hash = "sha256-wM8Bj1PEWrm0mVNi+PPSKMWSukXZFRtMI27xQBKEVmc="
+typstDeps = []
+description = "Simple component to show a value between 0 and 1 on a nice gradient slider"
+license = [
+ "MIT",
+]
+
+[grape-suite."2.0.0"]
+url = "https://packages.typst.org/preview/grape-suite-2.0.0.tar.gz"
+hash = "sha256-c0LlnyarxBx8LBmAk51QDuBPbMZRiHfRb7bcrUn9Zfw="
+typstDeps = [
+ "polylux_0_4_0",
+]
+description = "Library of templates for exams, seminar papers, homeworks, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/piepert/grape-suite"
+
+[grape-suite."1.0.0"]
+url = "https://packages.typst.org/preview/grape-suite-1.0.0.tar.gz"
+hash = "sha256-HIiU/wUotObdv8W+tB0f/TqmpdQPxCnkfibDa/x2KUM="
+typstDeps = [
+ "polylux_0_3_1",
+]
+description = "Library of templates for exams, seminar papers, homeworks, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/piepert/grape-suite"
+
+[grape-suite."0.1.0"]
+url = "https://packages.typst.org/preview/grape-suite-0.1.0.tar.gz"
+hash = "sha256-p4bIM8yr8oIC/45OhowBy2W60GNIIHzIN+BVPHZ6PFk="
+typstDeps = [
+ "polylux_0_3_1",
+]
+description = "Library of templates for exams, seminar papers, homeworks, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/piepert/grape-suite"
+
+[grayness."0.3.0"]
+url = "https://packages.typst.org/preview/grayness-0.3.0.tar.gz"
+hash = "sha256-0mZHo4t/5q/rVkaM7YqKs7ugPADWcofFvYa2eeU59K8="
+typstDeps = []
+description = "Simple image editing capabilities like converting to grayscale and cropping via a WASM plugin"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/nineff/grayness"
+
+[grayness."0.2.0"]
+url = "https://packages.typst.org/preview/grayness-0.2.0.tar.gz"
+hash = "sha256-b7nG9wEHhvN3Hhx4VnjjWmAF6ymWAkhdYEWFMAxU2js="
+typstDeps = []
+description = "Simple image editing capabilities like converting to grayscale and cropping via a WASM plugin"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/nineff/grayness"
+
+[grayness."0.1.0"]
+url = "https://packages.typst.org/preview/grayness-0.1.0.tar.gz"
+hash = "sha256-f4OhkAg+/myZX1GOjZ9x50YNAE73xWlZJEU/p8OZvSI="
+typstDeps = []
+description = "Simple image editing capabilities like converting to grayscale and cropping via a WASM plugin"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/nineff/grayness"
+
+[great-theorems."0.1.2"]
+url = "https://packages.typst.org/preview/great-theorems-0.1.2.tar.gz"
+hash = "sha256-JQAsHkekAQDOHlZag2G0JX1beDe03wzP7bhZ/d0xCkY="
+typstDeps = []
+description = "Theorem/Proof environments. Straightforward, functional, clean"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jbirnick/typst-great-theorems"
+
+[great-theorems."0.1.1"]
+url = "https://packages.typst.org/preview/great-theorems-0.1.1.tar.gz"
+hash = "sha256-pSdEW5J9nrId1JGjLe/WkjV1ALGKJgBzBtdDNJyyPaY="
+typstDeps = []
+description = "Straightforward and functional theorem/proof environments"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jbirnick/typst-great-theorems"
+
+[great-theorems."0.1.0"]
+url = "https://packages.typst.org/preview/great-theorems-0.1.0.tar.gz"
+hash = "sha256-2O2HcqIsxMSDvrDUYUWmSvw98/xUv/OinsCUZ0AoNDc="
+typstDeps = []
+description = "Straightforward and functional theorem/proof environments"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jbirnick/typst-great-theorems"
+
+[gridlock."0.3.0"]
+url = "https://packages.typst.org/preview/gridlock-0.3.0.tar.gz"
+hash = "sha256-B/o48gnSfhS01A7MjfXdIkbGlPOLQ3ag6Pq02VDHccg="
+typstDeps = []
+description = "Grid typesetting in Typst"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ssotoen/gridlock"
+
+[gridlock."0.2.0"]
+url = "https://packages.typst.org/preview/gridlock-0.2.0.tar.gz"
+hash = "sha256-4PK74BSP2jzqpJ1QZhc6tN7FYcDuJqjF6zN2FO3wlnQ="
+typstDeps = []
+description = "Grid typesetting in Typst"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ssotoen/gridlock"
+
+[gridlock."0.1.0"]
+url = "https://packages.typst.org/preview/gridlock-0.1.0.tar.gz"
+hash = "sha256-DVeyfYxtDDuPSwkVRvIBlj0nrQ9Az51lD+jxeyU7WiQ="
+typstDeps = []
+description = "Grid typesetting in Typst"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ssotoen/gridlock"
+
+[grotesk-cv."1.0.2"]
+url = "https://packages.typst.org/preview/grotesk-cv-1.0.2.tar.gz"
+hash = "sha256-Vo+LH70Ny+28MxE06YXmg+YuCzLkiNHXP+ytUqL/DKg="
+typstDeps = []
+description = "A clean CV and cover letter template based on Brilliant-cv and fireside templates"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/AsiSkarp/grotesk-cv"
+
+[grotesk-cv."1.0.1"]
+url = "https://packages.typst.org/preview/grotesk-cv-1.0.1.tar.gz"
+hash = "sha256-NztTYJYA+syZg21Ce+dvNyO/MhmAJvoWWMe74X0Xc0s="
+typstDeps = [
+ "fontawesome_0_4_0",
+]
+description = "A clean CV and cover letter template based on Brilliant-cv and fireside templates"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/AsiSkarp/grotesk-cv"
+
+[grotesk-cv."1.0.0"]
+url = "https://packages.typst.org/preview/grotesk-cv-1.0.0.tar.gz"
+hash = "sha256-1+ASdtTEvAT+jwTNgmdSJTIePo6L/oiwyEndH6NXjsM="
+typstDeps = [
+ "fontawesome_0_4_0",
+]
+description = "A clean CV and cover letter template based on brilliant-cv and fireside templates"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/AsiSkarp/grotesk-cv"
+
+[grotesk-cv."0.1.6"]
+url = "https://packages.typst.org/preview/grotesk-cv-0.1.6.tar.gz"
+hash = "sha256-+3g8uDV0kXxHJoAVTNxmO35SWvFIA2eP/VRAcGvBGME="
+typstDeps = [
+ "fontawesome_0_4_0",
+]
+description = "Clean CV template based on the awesome-cv and Skywalker templates"
+license = [
+ "MIT",
+]
+
+[grotesk-cv."0.1.5"]
+url = "https://packages.typst.org/preview/grotesk-cv-0.1.5.tar.gz"
+hash = "sha256-25kvb0Ym3xw/kSj49Khdmnza/X+UcEkyqcHVsQWzZB8="
+typstDeps = [
+ "fontawesome_0_4_0",
+ "grotesk-cv_0_1_4",
+]
+description = "Clean CV template based on the awesome-cv and Skywalker templates"
+license = [
+ "MIT",
+]
+
+[grotesk-cv."0.1.4"]
+url = "https://packages.typst.org/preview/grotesk-cv-0.1.4.tar.gz"
+hash = "sha256-zTuOlzcxxpPf1PL/JgJqUZNFc9UrUrOrDd1iRn3Up8c="
+typstDeps = [
+ "fontawesome_0_4_0",
+]
+description = "Clean CV template based on the awesome-cv and Skywalker templates"
+license = [
+ "MIT",
+]
+
+[grotesk-cv."0.1.3"]
+url = "https://packages.typst.org/preview/grotesk-cv-0.1.3.tar.gz"
+hash = "sha256-55BFXAX/oZrTg8PiAlKlyWwCb4kbuNxZWxG+H5k84WY="
+typstDeps = [
+ "fontawesome_0_4_0",
+]
+description = "Clean CV template based on the awesome-cv and Skywalker templates"
+license = [
+ "MIT",
+]
+
+[grotesk-cv."0.1.2"]
+url = "https://packages.typst.org/preview/grotesk-cv-0.1.2.tar.gz"
+hash = "sha256-6s8z8PhAXBLmip3D/9Rlcu5/lkvLd97r/bPk9sbFi0E="
+typstDeps = [
+ "fontawesome_0_2_1",
+]
+description = "Clean CV template based on the awesome-cv and Skywalker templates"
+license = [
+ "MIT",
+]
+
+[grotesk-cv."0.1.1"]
+url = "https://packages.typst.org/preview/grotesk-cv-0.1.1.tar.gz"
+hash = "sha256-hvMDjoUsepnu0s5fwcBdx4Lvfa9LZU28iDuzUTQO1eM="
+typstDeps = [
+ "fontawesome_0_2_1",
+ "grotesk-cv_0_1_0",
+]
+description = "Clean CV template based on the awesome-cv and Skywalker templates"
+license = [
+ "MIT",
+]
+
+[grotesk-cv."0.1.0"]
+url = "https://packages.typst.org/preview/grotesk-cv-0.1.0.tar.gz"
+hash = "sha256-bC1lpdzWU3ZixDMiFMU2utOTv9Ayhbk4pxcFHB0Y3ho="
+typstDeps = [
+ "fontawesome_0_2_1",
+]
+description = "Clean CV template based on the awesome-cv and Skywalker templates"
+license = [
+ "MIT",
+]
+
+[gru."0.1.0"]
+url = "https://packages.typst.org/preview/gru-0.1.0.tar.gz"
+hash = "sha256-1inkfx6ZLSBK6vUpQxqWmekETuRQ7ba0KdsBct0RyBI="
+typstDeps = []
+description = "A despicable Typst template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EdwinChang24/typst-gru"
+
+[guided-resume-starter-cgc."2.0.0"]
+url = "https://packages.typst.org/preview/guided-resume-starter-cgc-2.0.0.tar.gz"
+hash = "sha256-vj/U0MOVCQBsw/5EJPraeyl3ifjrvMsgpoE26NC1xqM="
+typstDeps = []
+description = "A guided starter resume for people looking to focus on highlighting their experience -- without having to worry about the hassle of formatting"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/chaoticgoodcomputing/typst-resume-starter"
+
+[gviz."0.1.0"]
+url = "https://packages.typst.org/preview/gviz-0.1.0.tar.gz"
+hash = "sha256-Yn7PVGMfOMIZTTALXYrevbFL5rKe2MTNdgHVYBWwa6g="
+typstDeps = []
+description = "Generate graphs using the graphviz dot language"
+license = [
+ "Unlicense",
+]
+homepage = "https://codeberg.org/Sekoia/gviz-typst"
+
+[handy-dora."0.1.0"]
+url = "https://packages.typst.org/preview/handy-dora-0.1.0.tar.gz"
+hash = "sha256-3cDtmhJjp2GgBMQGUyUrd8hq6SQ9ggKD7vsR9e1OUvQ="
+typstDeps = []
+description = "Handy-dora is a package visualizing mahjong tiles. It's powered by wasm and Riichi-hand-rs"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-mahjong-tiles"
+
+[hane."0.1.0"]
+url = "https://packages.typst.org/preview/hane-0.1.0.tar.gz"
+hash = "sha256-L/E/1d+kuJvi7hmfkhcbVhUE3AHsNK/kRHRG/47bpew="
+typstDeps = []
+description = "Draws go/baduk/weiqi diagrams"
+license = [
+ "MIT",
+]
+
+[hanzi-calligraphy."0.1.0"]
+url = "https://packages.typst.org/preview/hanzi-calligraphy-0.1.0.tar.gz"
+hash = "sha256-fWpqyCuAZkmK/YY0qVGL4ohbjo2d6gn/Ot60tQj49aE="
+typstDeps = []
+description = "用于书法练习的田字格模板。A calligraphy practice template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/yuegeao/hanzi-calligraphy"
+
+[harvard-gsas-thesis-oat."0.1.4"]
+url = "https://packages.typst.org/preview/harvard-gsas-thesis-oat-0.1.4.tar.gz"
+hash = "sha256-yurD53i4zYGfYjTWd0NREli8bhRZZwvbBN8VZDBbyD4="
+typstDeps = []
+description = "PhD Thesis template for Harvard GSAS (Graduate School of Arts and Sciences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Moelf/harvard-gsas-thesis-oat"
+
+[harvard-gsas-thesis-oat."0.1.3"]
+url = "https://packages.typst.org/preview/harvard-gsas-thesis-oat-0.1.3.tar.gz"
+hash = "sha256-x9/euXk9ao9W0bwHcUJmCW/OjjJ2fjMT45rmIJwZ4Wg="
+typstDeps = []
+description = "PhD Thesis template for Harvard GSAS (Graduate School of Arts and Sciences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Moelf/harvard-gsas-thesis-oat"
+
+[harvard-gsas-thesis-oat."0.1.2"]
+url = "https://packages.typst.org/preview/harvard-gsas-thesis-oat-0.1.2.tar.gz"
+hash = "sha256-0jtA8keC7ycWdDv1nRuENUqPNG13pbb9njrruhecciI="
+typstDeps = []
+description = "PhD Thesis template for Harvard GSAS (Graduate School of Arts and Sciences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Moelf/harvard-gsas-thesis-oat"
+
+[harvard-gsas-thesis-oat."0.1.1"]
+url = "https://packages.typst.org/preview/harvard-gsas-thesis-oat-0.1.1.tar.gz"
+hash = "sha256-cwz9opxNmFwVPJB/uV/te87jUZP7MsbNGUj6t6jDKqc="
+typstDeps = []
+description = "PhD Thesis template for Harvard GSAS (Graduate School of Arts and Sciences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Moelf/harvard-gsas-thesis-oat"
+
+[harvard-gsas-thesis-oat."0.1.0"]
+url = "https://packages.typst.org/preview/harvard-gsas-thesis-oat-0.1.0.tar.gz"
+hash = "sha256-gAAGUQOGEgK2v1q3SYSEgdvvYToTIGvJNU5nowBnIzg="
+typstDeps = []
+description = "PhD Thesis template for Harvard GSAS (Graduate School of Arts and Sciences"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Moelf/harvard-gsas-thesis-oat"
+
+[haw-hamburg."0.5.1"]
+url = "https://packages.typst.org/preview/haw-hamburg-0.5.1.tar.gz"
+hash = "sha256-B9r2CqFlw7129Ow8y9aOQXe6y2O3/GKm2YSDP5pHU6k="
+typstDeps = []
+description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg."0.5.0"]
+url = "https://packages.typst.org/preview/haw-hamburg-0.5.0.tar.gz"
+hash = "sha256-l06N1tESZzZSJhy1ZFs0SuMBOhe9lFLvkckFLXF0trg="
+typstDeps = []
+description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg."0.4.0"]
+url = "https://packages.typst.org/preview/haw-hamburg-0.4.0.tar.gz"
+hash = "sha256-FnjX1RCgEkIoIquY4HfyrYcPN/FQngYMzmUgp6QvTrw="
+typstDeps = []
+description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg."0.3.3"]
+url = "https://packages.typst.org/preview/haw-hamburg-0.3.3.tar.gz"
+hash = "sha256-c3/cGmh0qy/uy8XMNRYJ0tScyvg+MYPreCCPo91HJl8="
+typstDeps = []
+description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg."0.3.1"]
+url = "https://packages.typst.org/preview/haw-hamburg-0.3.1.tar.gz"
+hash = "sha256-WOlXmn5qf+8B/HfFkXNXa8o2JlsrMfBtorpywXNgZ9A="
+typstDeps = []
+description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg."0.3.0"]
+url = "https://packages.typst.org/preview/haw-hamburg-0.3.0.tar.gz"
+hash = "sha256-XweoFyX5U3plqBsD944Wcsi1ey+NUdLi6WoD/X8/vXs="
+typstDeps = []
+description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg."0.2.0"]
+url = "https://packages.typst.org/preview/haw-hamburg-0.2.0.tar.gz"
+hash = "sha256-tMP2yDPAtRC6ul7acXuhIzN/gkCqTf1Ar8eLfUs+baA="
+typstDeps = [
+ "glossarium_0_4_2",
+ "haw-hamburg_0_1_0",
+]
+description = "Unofficial template for writing a report or thesis in the `HAW Hamburg` department of `Computer Science` design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg."0.1.0"]
+url = "https://packages.typst.org/preview/haw-hamburg-0.1.0.tar.gz"
+hash = "sha256-7RcOokFNH6AOnR4NMzproy5T7cSC5Uafrnpgz/8rMDI="
+typstDeps = [
+ "glossarium_0_4_1",
+]
+description = "Unofficial template for writing a report or thesis in the `HAW Hamburg` department of `Computer Science` design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-bachelor-thesis."0.5.1"]
+url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.5.1.tar.gz"
+hash = "sha256-keM157SF7OS0FT0HGgFbhhZhA7lUqDMaRDmNHU6CIzE="
+typstDeps = [
+ "glossarium_0_5_3",
+ "haw-hamburg_0_5_1",
+]
+description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-bachelor-thesis."0.5.0"]
+url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.5.0.tar.gz"
+hash = "sha256-y3RuWHrhvO7IH0cPRM9s3k0dK628Kho4uvYE7jBVJeA="
+typstDeps = [
+ "glossarium_0_5_3",
+ "haw-hamburg_0_5_0",
+]
+description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-bachelor-thesis."0.4.0"]
+url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.4.0.tar.gz"
+hash = "sha256-97iY2zDg42J8dm6PWqbGimZ/VJbB6B8JoCguJ60JSKs="
+typstDeps = [
+ "glossarium_0_5_3",
+ "haw-hamburg_0_4_0",
+]
+description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-bachelor-thesis."0.3.3"]
+url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.3.3.tar.gz"
+hash = "sha256-t2bom6Pqqzwp9jfGGjltz23iihDUrgE3QOjqN1c0Y9M="
+typstDeps = [
+ "glossarium_0_5_1",
+ "haw-hamburg_0_3_3",
+]
+description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-bachelor-thesis."0.3.1"]
+url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.3.1.tar.gz"
+hash = "sha256-qAhBSYsZarPB5aacSJPg7foe9bPpeeRTDgABjwS0z7g="
+typstDeps = [
+ "glossarium_0_5_1",
+ "haw-hamburg_0_3_1",
+]
+description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-bachelor-thesis."0.3.0"]
+url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.3.0.tar.gz"
+hash = "sha256-v2+vDlSa5jDqX5wpW/diwT/2xqdKYkoY9e+6wvTUqm0="
+typstDeps = [
+ "glossarium_0_4_2",
+ "haw-hamburg_0_3_0",
+]
+description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-master-thesis."0.5.1"]
+url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.5.1.tar.gz"
+hash = "sha256-UxzkkPmWO6frdPI57xxelpE3mqgnpZn9aobQAHBTjIQ="
+typstDeps = [
+ "glossarium_0_5_3",
+ "haw-hamburg_0_5_1",
+]
+description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-master-thesis."0.5.0"]
+url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.5.0.tar.gz"
+hash = "sha256-6wa88OAo34ILx2jDNWEyR/6DVefWbpePKvcDn/v5E8M="
+typstDeps = [
+ "glossarium_0_5_3",
+ "haw-hamburg_0_5_0",
+]
+description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-master-thesis."0.4.0"]
+url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.4.0.tar.gz"
+hash = "sha256-QL9McnRm2djgkCGYEewWu9Eh6Uqjk5pMCk4tVIJStX0="
+typstDeps = [
+ "glossarium_0_5_3",
+ "haw-hamburg_0_4_0",
+]
+description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-master-thesis."0.3.3"]
+url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.3.3.tar.gz"
+hash = "sha256-P/fiBhIyjd7a3HLNVWOb9y0Tho1DlscQV1HAwpnFwbg="
+typstDeps = [
+ "glossarium_0_5_1",
+ "haw-hamburg_0_3_3",
+]
+description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-master-thesis."0.3.1"]
+url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.3.1.tar.gz"
+hash = "sha256-hC4cdLTlQ3Vvq6SetKM82W6cYJMaYNSKi9FLKMrOO7Y="
+typstDeps = [
+ "glossarium_0_5_1",
+ "haw-hamburg_0_3_1",
+]
+description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-master-thesis."0.3.0"]
+url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.3.0.tar.gz"
+hash = "sha256-DrocD6zk8vIdptSqng9xu6otMH/HS7Gu84itJqba8Ls="
+typstDeps = [
+ "glossarium_0_4_2",
+ "haw-hamburg_0_3_0",
+]
+description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-report."0.5.1"]
+url = "https://packages.typst.org/preview/haw-hamburg-report-0.5.1.tar.gz"
+hash = "sha256-wKWew9SRGfaI1bvZ2HUGsIGNUWWS9Jc2DydoEs+4i9k="
+typstDeps = [
+ "glossarium_0_5_3",
+ "haw-hamburg_0_5_1",
+]
+description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-report."0.5.0"]
+url = "https://packages.typst.org/preview/haw-hamburg-report-0.5.0.tar.gz"
+hash = "sha256-CNG1/pXFaXwqDrtPbCkpKDtg8HfdIODNxix4W0zkS/s="
+typstDeps = [
+ "glossarium_0_5_3",
+ "haw-hamburg_0_5_0",
+]
+description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-report."0.4.0"]
+url = "https://packages.typst.org/preview/haw-hamburg-report-0.4.0.tar.gz"
+hash = "sha256-hHwHHg1Ql9zByfzntzZKuv4IA4uwh49BY4Qtmdd6Ek8="
+typstDeps = [
+ "glossarium_0_5_3",
+ "haw-hamburg_0_4_0",
+]
+description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-report."0.3.3"]
+url = "https://packages.typst.org/preview/haw-hamburg-report-0.3.3.tar.gz"
+hash = "sha256-PIfbdjGqfmXUmYgXVuDRn3E+UGFDI/h2vxS8TEP4DF0="
+typstDeps = [
+ "glossarium_0_5_1",
+ "haw-hamburg_0_3_3",
+]
+description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-report."0.3.1"]
+url = "https://packages.typst.org/preview/haw-hamburg-report-0.3.1.tar.gz"
+hash = "sha256-57hSsBYO9TQt9p8P/EfLuIi/wpoRx0y7HjsohKr9eX4="
+typstDeps = [
+ "glossarium_0_5_1",
+ "haw-hamburg_0_3_1",
+]
+description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[haw-hamburg-report."0.3.0"]
+url = "https://packages.typst.org/preview/haw-hamburg-report-0.3.0.tar.gz"
+hash = "sha256-w9XpicTk+LgS4H/wxBJ2OOKtEPjMmfUV/AVzFjDZbxU="
+typstDeps = [
+ "glossarium_0_4_2",
+ "haw-hamburg_0_3_0",
+]
+description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template"
+
+[headcount."0.1.0"]
+url = "https://packages.typst.org/preview/headcount-0.1.0.tar.gz"
+hash = "sha256-LGvD9y3np3EI8C9hruxrSASG2/+oChvq8nShbunajS8="
+typstDeps = []
+description = "Make counters inherit from the heading counter"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jbirnick/typst-headcount"
+
+[hei-synd-report."0.1.1"]
+url = "https://packages.typst.org/preview/hei-synd-report-0.1.1.tar.gz"
+hash = "sha256-PkAWjiwXtwmJe7xC7hOTCe0E+gFQahjH+9MWcrtLZCw="
+typstDeps = [
+ "codelst_2_0_2",
+ "fractusist_0_1_1",
+ "glossarium_0_5_3",
+ "wordometer_0_1_4",
+]
+description = "A report and project template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hei-templates/hei-synd-report"
+
+[hei-synd-report."0.1.0"]
+url = "https://packages.typst.org/preview/hei-synd-report-0.1.0.tar.gz"
+hash = "sha256-4L7AHddOM+84PccYazITd52vEJmdXZ0ULZTpIYwEF6k="
+typstDeps = [
+ "codelst_2_0_2",
+ "fractusist_0_1_0",
+ "glossarium_0_5_1",
+ "wordometer_0_1_4",
+]
+description = "A report and project template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hei-templates/hei-synd-report"
+
+[hei-synd-thesis."0.1.1"]
+url = "https://packages.typst.org/preview/hei-synd-thesis-0.1.1.tar.gz"
+hash = "sha256-arCFWYx4S/nitZSMlrgRjXdzz1ro/eM1cEBk9gZUeUs="
+typstDeps = [
+ "codelst_2_0_2",
+ "fractusist_0_1_1",
+ "glossarium_0_5_3",
+ "wordometer_0_1_4",
+]
+description = "A thesis template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hei-templates/hei-synd-thesis"
+
+[hei-synd-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/hei-synd-thesis-0.1.0.tar.gz"
+hash = "sha256-Vmp4jfCmVF8nPkwv+vdakcstyPYgMOIfBTmEnt7sF4A="
+typstDeps = [
+ "codelst_2_0_2",
+ "fractusist_0_1_0",
+ "glossarium_0_5_1",
+ "hei-synd-report_0_1_0",
+ "wordometer_0_1_4",
+]
+description = "A thesis template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hei-templates/hei-synd-thesis"
+
+[hhn-unitylab-thesis-template."0.0.1"]
+url = "https://packages.typst.org/preview/hhn-unitylab-thesis-template-0.0.1.tar.gz"
+hash = "sha256-nUUMm1vlguTyfcHyMZ3MwzFCwCRxtFo3VLiDYyUegYE="
+typstDeps = [
+ "cetz_0_3_1",
+ "chronos_0_2_0",
+ "circuiteria_0_1_0",
+ "codly_1_0_0",
+ "codly-languages_0_1_1",
+ "dining-table_0_1_0",
+ "fletcher_0_5_2",
+ "glossarium_0_5_1",
+ "tablem_0_1_0",
+ "tablex_0_0_9",
+ "timeliney_0_1_0",
+ "wrap-it_0_1_1",
+]
+description = "The official Thesis Template from the Usability and Interaction Technology Laboratory (UniTyLab) of the Heilbronn University (HHN"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Ferrys93de/UniTyLab-Thesis-Template"
+
+[hidden-bib."0.1.1"]
+url = "https://packages.typst.org/preview/hidden-bib-0.1.1.tar.gz"
+hash = "sha256-oaWF6c4XQ8OFEnuPlWcFcK23BWKLK+dKhFcagGxDPs8="
+typstDeps = []
+description = "Create hidden bibliographies or bibliographies with unmentioned (hidden) citations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pklaschka/typst-hidden-bib"
+
+[hidden-bib."0.1.0"]
+url = "https://packages.typst.org/preview/hidden-bib-0.1.0.tar.gz"
+hash = "sha256-+u63x5P1zxbszULG7gMS+4SpuBALVSTP31Y0rN9Oo4s="
+typstDeps = []
+description = "Create hidden bibliographies or bibliographies with unmentioned (hidden) citations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pklaschka/typst-hidden-bib"
+
+[htl3r-da."2.0.0"]
+url = "https://packages.typst.org/preview/htl3r-da-2.0.0.tar.gz"
+hash = "sha256-QyKMVig4bHpd7zwFvofOKZWutQcuO4dKuKxcBcVLdBc="
+typstDeps = [
+ "codly_1_2_0",
+ "codly-languages_0_1_7",
+]
+description = "HTL-Rennweg diploma thesis template"
+license = [
+ "0BSD",
+ "CC-BY-SA-4.0",
+]
+homepage = "https://github.com/HTL3R-Typst/htl3r-da"
+
+[htl3r-da."1.0.0"]
+url = "https://packages.typst.org/preview/htl3r-da-1.0.0.tar.gz"
+hash = "sha256-nisqWtSZYhbT1r4Nu2YbhKyjGdQ9MiDhMfxEdTautOY="
+typstDeps = [
+ "codly_1_1_1",
+ "codly-languages_0_1_1",
+]
+description = "HTL-Rennweg diploma thesis template"
+license = [
+ "0BSD",
+ "CC-BY-SA-4.0",
+]
+homepage = "https://github.com/HTL3R-Typst/htl3r-da"
+
+[htlwienwest-da."0.2.1"]
+url = "https://packages.typst.org/preview/htlwienwest-da-0.2.1.tar.gz"
+hash = "sha256-3nU774Aby7wrhNgCm8H4cOdc6cj1OD+2o8DMr7rqknE="
+typstDeps = [
+ "tablex_0_0_8",
+]
+description = "The diploma thesis template for students of the HTL Wien West"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/htlwienwest/da-vorlage-typst"
+
+[htlwienwest-da."0.1.1"]
+url = "https://packages.typst.org/preview/htlwienwest-da-0.1.1.tar.gz"
+hash = "sha256-qDdDCbsWPy9T5dP6YH3m/02fE/IZxjKA4OBEfhWLGIE="
+typstDeps = [
+ "tablex_0_0_8",
+]
+description = "The diploma thesis template for students of the HTL Wien West"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/htlwienwest/da-vorlage-typst"
+
+[htlwienwest-da."0.1.0"]
+url = "https://packages.typst.org/preview/htlwienwest-da-0.1.0.tar.gz"
+hash = "sha256-EoO6xtcU5K66jr+4mZE3BEUgEpypWhK1ko+YC4DHi28="
+typstDeps = [
+ "tablex_0_0_8",
+]
+description = "The diploma thesis template for students of the HTL Wien West"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/htlwienwest/da-vorlage-typst"
+
+[humble-dtu-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/humble-dtu-thesis-0.1.0.tar.gz"
+hash = "sha256-funwyW3LwcA4eCBdoyzDQ0AbAL9px3jTLsW21XocljI="
+typstDeps = [
+ "acrostiche_0_5_1",
+]
+description = "DTU Thesis Template for Typst"
+license = [
+ "MIT",
+]
+
+[hydra."0.6.1"]
+url = "https://packages.typst.org/preview/hydra-0.6.1.tar.gz"
+hash = "sha256-7gq7nGp7zzv4A0A1FbQWmDINEICEHps1HcbO+hi2GyA="
+typstDeps = [
+ "oxifmt_0_2_1",
+]
+description = "Query and display headings in your documents and templates"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/hydra"
+
+[hydra."0.6.0"]
+url = "https://packages.typst.org/preview/hydra-0.6.0.tar.gz"
+hash = "sha256-7zmGYza04bHwXy48Ru2IsX6kjJNlns4wDotbTgmMHqc="
+typstDeps = [
+ "oxifmt_0_2_1",
+]
+description = "Query and display headings in your documents and templates"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/hydra"
+
+[hydra."0.5.2"]
+url = "https://packages.typst.org/preview/hydra-0.5.2.tar.gz"
+hash = "sha256-WWK6EgaVXJiIg7HfQCNtgExBYVt4DaspQM/FoBo48yI="
+typstDeps = [
+ "oxifmt_0_2_1",
+]
+description = "Query and display headings in your documents and templates"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/hydra"
+
+[hydra."0.5.1"]
+url = "https://packages.typst.org/preview/hydra-0.5.1.tar.gz"
+hash = "sha256-Wbs7TB8yo8G28GWnhT0HpxXAABzOKvtIB116+2V1eJg="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "Query and display headings in your documents and templates"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/hydra"
+
+[hydra."0.5.0"]
+url = "https://packages.typst.org/preview/hydra-0.5.0.tar.gz"
+hash = "sha256-UxI5XZZq9yeWIRKlQMYfAAbQEgiB0NLL68YG4h13RyU="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "Query and display headings in your documents and templates"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/hydra"
+
+[hydra."0.4.0"]
+url = "https://packages.typst.org/preview/hydra-0.4.0.tar.gz"
+hash = "sha256-TXgT9MLhW1WTb+fQPr92HUYfYUTYBGbYB4lyqrsntvw="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "Query and display headings in your documents and templates"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/hydra"
+
+[hydra."0.3.0"]
+url = "https://packages.typst.org/preview/hydra-0.3.0.tar.gz"
+hash = "sha256-znoyYAgFo/Gh6f0KVtVp8tsN2EQ+ANPFlXiLYQR2PXY="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "Query and display headings of the currently active section"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/hydra"
+
+[hydra."0.2.0"]
+url = "https://packages.typst.org/preview/hydra-0.2.0.tar.gz"
+hash = "sha256-lMSAwhFknlTsdnJF5tEGpBntQOVYfn0jTenncswx9I8="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "Query and display headings of the currently active section"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/hydra"
+
+[hydra."0.1.0"]
+url = "https://packages.typst.org/preview/hydra-0.1.0.tar.gz"
+hash = "sha256-GKoD535scGFwFeGMH/QaqQY1dZp9Fkq9h4NzvJ53RlU="
+typstDeps = []
+description = "Query and display headings of the currently active section"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/hydra"
+
+[i-figured."0.2.4"]
+url = "https://packages.typst.org/preview/i-figured-0.2.4.tar.gz"
+hash = "sha256-508q3J4Sj5QnxexJndtbrvekcBpuLjyv9Bkt7QgdkPk="
+typstDeps = []
+description = "Configurable figure and equation numbering per section"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/RubixDev/typst-i-figured"
+
+[i-figured."0.2.3"]
+url = "https://packages.typst.org/preview/i-figured-0.2.3.tar.gz"
+hash = "sha256-PihVPsLr4rRi5quYewioKs/iYM8sd+BVXNLQkAN6xjY="
+typstDeps = []
+description = "Configurable figure and equation numbering per section"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/RubixDev/typst-i-figured"
+
+[i-figured."0.2.2"]
+url = "https://packages.typst.org/preview/i-figured-0.2.2.tar.gz"
+hash = "sha256-zXfi2hw5Da5Odnrrm0MOXbvsR0gjj5Wu5yv1q6rmIGc="
+typstDeps = []
+description = "Configurable figure and equation numbering per section"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/RubixDev/typst-i-figured"
+
+[i-figured."0.2.1"]
+url = "https://packages.typst.org/preview/i-figured-0.2.1.tar.gz"
+hash = "sha256-KQxJk0I9wM9VSpFsbuxHSXHh3SW9lpKtNA/TYy2MLxs="
+typstDeps = []
+description = "Configurable figure and equation numbering per section"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/RubixDev/typst-i-figured"
+
+[i-figured."0.2.0"]
+url = "https://packages.typst.org/preview/i-figured-0.2.0.tar.gz"
+hash = "sha256-hTNR57rOEQhtXIDAEqUdGIf+AlNI12uQq+IBBqqAgKg="
+typstDeps = []
+description = "Configurable figure numbering per section"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/RubixDev/typst-i-figured"
+
+[i-figured."0.1.0"]
+url = "https://packages.typst.org/preview/i-figured-0.1.0.tar.gz"
+hash = "sha256-0AE9bAhIB1pf+ptwMt0DvKvRxk5hj+zwU2ymOTjoqQU="
+typstDeps = []
+description = "Configurable figure numbering per section"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/RubixDev/typst-i-figured"
+
+[ibanator."0.1.0"]
+url = "https://packages.typst.org/preview/ibanator-0.1.0.tar.gz"
+hash = "sha256-d9H+0Cc03IzLCWHVSzqT41xYUTwN0qQryb4SAYtaQQU="
+typstDeps = []
+description = "A package for validating and formatting International Bank Account Numbers (IBANs) according to ISO 13616-1"
+license = [
+ "EUPL-1.2",
+]
+homepage = "https://github.com/mainrs/typst-iban-formatter.git"
+
+[ichigo."0.2.0"]
+url = "https://packages.typst.org/preview/ichigo-0.2.0.tar.gz"
+hash = "sha256-DPihND6Zrg6QA2wYDMQN0vNAsCrzYpKQer+hfFJAkV8="
+typstDeps = [
+ "linguify_0_4_1",
+ "numbly_0_1_0",
+ "valkyrie_0_2_1",
+]
+description = "A customizable Typst template for homework"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/PKU-Typst/ichigo"
+
+[ichigo."0.1.0"]
+url = "https://packages.typst.org/preview/ichigo-0.1.0.tar.gz"
+hash = "sha256-9w/eLi5XCps+QDkCeoyqwC6CDs0/b8csko3ubnWetzg="
+typstDeps = [
+ "linguify_0_4_1",
+ "numbly_0_1_0",
+ "valkyrie_0_2_1",
+]
+description = "A customizable Typst template for homework"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/PKU-Typst/ichigo"
+
+[icicle."0.1.0"]
+url = "https://packages.typst.org/preview/icicle-0.1.0.tar.gz"
+hash = "sha256-7AaLEdpagkOFzQnHtRBpKbUw5rA3PDQxJWG1ALJyyI4="
+typstDeps = []
+description = "Help the Typst Guys reach the helicopter pad and save Christmas"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[iconic-salmon-fa."1.0.0"]
+url = "https://packages.typst.org/preview/iconic-salmon-fa-1.0.0.tar.gz"
+hash = "sha256-7Pmqj+FuJXb8uercaHoW5bTGPYtYqyRdwa1ZLcZJlAY="
+typstDeps = [
+ "fontawesome_0_1_0",
+]
+description = "A Typst library for Social Media references with icons based on Font Awesome"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Bi0T1N/typst-iconic-salmon-fa"
+
+[iconic-salmon-svg."3.0.0"]
+url = "https://packages.typst.org/preview/iconic-salmon-svg-3.0.0.tar.gz"
+hash = "sha256-/lx7rqCeKFWc9ec6pD+K6NRXAEcpxKVsyjk3VryPp14="
+typstDeps = []
+description = "A Typst library for Social Media references with scalable vector graphics icons"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Bi0T1N/typst-iconic-salmon-svg"
+
+[iconic-salmon-svg."2.1.0"]
+url = "https://packages.typst.org/preview/iconic-salmon-svg-2.1.0.tar.gz"
+hash = "sha256-lpELa+RQx1DdBZJwTiDilbae5CrMbP97+w5dJd0WQQ0="
+typstDeps = []
+description = "A Typst library for Social Media references with scalable vector graphics icons"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Bi0T1N/typst-iconic-salmon-svg"
+
+[iconic-salmon-svg."1.1.0"]
+url = "https://packages.typst.org/preview/iconic-salmon-svg-1.1.0.tar.gz"
+hash = "sha256-xalofKV3mck69Z94wkSMHNRwbJG0LBq7yJ2jF6o+VQA="
+typstDeps = []
+description = "A Typst library for Social Media references with scalable vector graphics icons"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Bi0T1N/typst-iconic-salmon-svg"
+
+[iconic-salmon-svg."1.0.0"]
+url = "https://packages.typst.org/preview/iconic-salmon-svg-1.0.0.tar.gz"
+hash = "sha256-gi+ikiE9ER2SPdfMfc4b2LU3iC4EVmrjhWWdt16fY0E="
+typstDeps = []
+description = "A Typst library for Social Media references with scalable vector graphics icons"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Bi0T1N/typst-iconic-salmon-svg"
+
+[icu-datetime."0.1.2"]
+url = "https://packages.typst.org/preview/icu-datetime-0.1.2.tar.gz"
+hash = "sha256-1dWi/4Cos6YwvR/6uUXIeXY5zREnJKWcpoS26va6jFs="
+typstDeps = []
+description = "Date and time formatting using ICU4X via WASM"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Nerixyz/icu-typ"
+
+[icu-datetime."0.1.1"]
+url = "https://packages.typst.org/preview/icu-datetime-0.1.1.tar.gz"
+hash = "sha256-6pHIy2iHE42W3S0U8q5Q1ZHJ/9nlqULO/SOrpWqciFE="
+typstDeps = []
+description = "Date and time formatting using ICU4X via WASM"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Nerixyz/icu-typ"
+
+[icu-datetime."0.1.0"]
+url = "https://packages.typst.org/preview/icu-datetime-0.1.0.tar.gz"
+hash = "sha256-4L2Jh4VJGENEiPHbl8muWNJQpINuEXB3nWVzBT4ifKE="
+typstDeps = []
+description = "Date and time formatting using ICU4X via WASM"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Nerixyz/icu-typ"
+
+[idwtet."0.3.0"]
+url = "https://packages.typst.org/preview/idwtet-0.3.0.tar.gz"
+hash = "sha256-EJpapwNV9RD50LXl0XBXsU8uF/NrR+uFCSBXb1lQ/10="
+typstDeps = []
+description = "Package for uniform, correct and simplified typst code demonstration"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ludwig-austermann/typst-idwtet"
+
+[idwtet."0.2.0"]
+url = "https://packages.typst.org/preview/idwtet-0.2.0.tar.gz"
+hash = "sha256-/IgwHz/eg8bNjfDQlDe6TQeDQIutYeE3+41YGwqaatg="
+typstDeps = []
+description = "Package for uniform, correct and simplified typst code demonstration"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ludwig-austermann/typst-idwtet"
+
+[ieee-monolith."0.1.0"]
+url = "https://packages.typst.org/preview/ieee-monolith-0.1.0.tar.gz"
+hash = "sha256-meRF2qrqs7Bx/iLX+o/TkM+DNr0nkaqQ1XuuUZiGI2w="
+typstDeps = []
+description = "Single column paper with IEEE-style references and bibliography"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Fricsion/typst-template_ieee-style-single-column"
+
+[ijimai."0.0.2"]
+url = "https://packages.typst.org/preview/ijimai-0.0.2.tar.gz"
+hash = "sha256-Uf+PQdL6RsBiKdkbWg+msGLwpkbwiBvBUnzk0MQow3M="
+typstDeps = [
+ "datify_0_1_3",
+ "droplet_0_3_1",
+ "wrap-it_0_1_1",
+]
+description = "Template for writing articles for the International Journal of Interactive Multimedia and Artificial Intelligence (IJIMAI"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pammacdotnet/IJIMAI"
+
+[ijimai."0.0.1"]
+url = "https://packages.typst.org/preview/ijimai-0.0.1.tar.gz"
+hash = "sha256-kFxD8/Y9bNdIR9kreE6ieXAtjv5h41gH/sNTV07ljQM="
+typstDeps = [
+ "datify_0_1_3",
+ "droplet_0_3_1",
+ "wrap-it_0_1_1",
+]
+description = "Template for writing articles for the International Journal of Interactive Multimedia and Artificial Intelligence (IJIMAI"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pammacdotnet/IJIMAI"
+
+[illc-mol-thesis."0.1.2"]
+url = "https://packages.typst.org/preview/illc-mol-thesis-0.1.2.tar.gz"
+hash = "sha256-9WBdTt4Mw+XrOzJ1F1QhT8dWB/g+XwLsUf+EaSFwJUE="
+typstDeps = [
+ "great-theorems_0_1_2",
+ "rich-counters_0_2_2",
+]
+description = "Official Typst thesis template for Master of Logic students at the ILLC"
+license = [
+ "AGPL-3.0-or-later",
+]
+homepage = "https://codeberg.org/foxy/illc-mol-thesis"
+
+[illc-mol-thesis."0.1.1"]
+url = "https://packages.typst.org/preview/illc-mol-thesis-0.1.1.tar.gz"
+hash = "sha256-toU02wycScUaNgoep7JM7qj3CyrgUeT1Ob7Gz6ACDOo="
+typstDeps = [
+ "great-theorems_0_1_1",
+ "rich-counters_0_2_1",
+]
+description = "Official Typst thesis template for Master of Logic students at the ILLC"
+license = [
+ "AGPL-3.0-or-later",
+]
+homepage = "https://codeberg.org/foxy/illc-mol-thesis"
+
+[illc-mol-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/illc-mol-thesis-0.1.0.tar.gz"
+hash = "sha256-dy+4Z+c0WI+jX0Ce6YC5s164NbJn1ljJ6JRn/G+XLHA="
+typstDeps = [
+ "great-theorems_0_1_1",
+ "rich-counters_0_2_1",
+]
+description = "Official Typst thesis template for Master of Logic students at the ILLC"
+license = [
+ "AGPL-3.0-or-later",
+]
+homepage = "https://codeberg.org/foxy/illc-mol-thesis"
+
+[ilm."1.4.1"]
+url = "https://packages.typst.org/preview/ilm-1.4.1.tar.gz"
+hash = "sha256-bNGWTEcDSqh2c/ziEEv3u92CWaFjjF6pe/2zhOv8OQg="
+typstDeps = []
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[ilm."1.4.0"]
+url = "https://packages.typst.org/preview/ilm-1.4.0.tar.gz"
+hash = "sha256-Wu2wBZoiPXzDytJUncFJnnpN+/m9ZNcSGkaulgx4Veo="
+typstDeps = []
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[ilm."1.3.1"]
+url = "https://packages.typst.org/preview/ilm-1.3.1.tar.gz"
+hash = "sha256-pBLAI7HLEtj8oANzzLP+CFjePvsYen1eF/VSN/kx1jU="
+typstDeps = []
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[ilm."1.3.0"]
+url = "https://packages.typst.org/preview/ilm-1.3.0.tar.gz"
+hash = "sha256-3mL+9h4jIztTdaSsVm5iDSi46oF3bz2kaPHumJwEips="
+typstDeps = []
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[ilm."1.2.1"]
+url = "https://packages.typst.org/preview/ilm-1.2.1.tar.gz"
+hash = "sha256-zdq7GDDfqi/xn5v8gLqzsCM+BrYhvRxTRIvxfzf/MVs="
+typstDeps = []
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[ilm."1.2.0"]
+url = "https://packages.typst.org/preview/ilm-1.2.0.tar.gz"
+hash = "sha256-3pdgzpe+AtYzEbKncrhU7tX6jILu7F8s8xPJO5ACAMg="
+typstDeps = []
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[ilm."1.1.3"]
+url = "https://packages.typst.org/preview/ilm-1.1.3.tar.gz"
+hash = "sha256-MuWkhqK6C9fq6bqnFQepVeaPyuyKko9eDEh40/Xv1hw="
+typstDeps = []
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[ilm."1.1.2"]
+url = "https://packages.typst.org/preview/ilm-1.1.2.tar.gz"
+hash = "sha256-iETNRl8W3WqBy/Jb1jgJuaFRipIVVkRgpjwz2oV/Y1k="
+typstDeps = []
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[ilm."1.1.1"]
+url = "https://packages.typst.org/preview/ilm-1.1.1.tar.gz"
+hash = "sha256-29Pz8aBx8eGhZMB1PX/gmGBJlU21Yyjv5TROUBxo8Ls="
+typstDeps = []
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[ilm."1.1.0"]
+url = "https://packages.typst.org/preview/ilm-1.1.0.tar.gz"
+hash = "sha256-xBIOaQhabgiCERKlDIcDU5NoYr7bdOuPiD6keVdrObY="
+typstDeps = []
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, report, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[ilm."1.0.0"]
+url = "https://packages.typst.org/preview/ilm-1.0.0.tar.gz"
+hash = "sha256-tJh5S4ZTPJDdkkgBs2nrpevEgEppEFPZlKtsPiz3BUM="
+typstDeps = []
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, report, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[ilm."0.1.3"]
+url = "https://packages.typst.org/preview/ilm-0.1.3.tar.gz"
+hash = "sha256-sqVIgc9KsCGUDzJAIXTY7GhmpCOCMw/zJjpkqP7mJnM="
+typstDeps = [
+ "ilm_0_1_2",
+]
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, report, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[ilm."0.1.2"]
+url = "https://packages.typst.org/preview/ilm-0.1.2.tar.gz"
+hash = "sha256-IpvMbQWR+I+d8KS972OcNiPepWFj+XavPLhOEX1pC/0="
+typstDeps = []
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, report, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[ilm."0.1.1"]
+url = "https://packages.typst.org/preview/ilm-0.1.1.tar.gz"
+hash = "sha256-JhExC3idGTCf69jC9cjeIm0cj0QdIT4yC7+1VS8ILjg="
+typstDeps = []
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, report, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[ilm."0.1.0"]
+url = "https://packages.typst.org/preview/ilm-0.1.0.tar.gz"
+hash = "sha256-07vyDs6QMXyeE4HlGD34X2pUHNaOPEZywBa3zY0aYEI="
+typstDeps = []
+description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, report, and books"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/ilm"
+
+[imprecv."1.0.1"]
+url = "https://packages.typst.org/preview/imprecv-1.0.1.tar.gz"
+hash = "sha256-q0y6QunluYMFNTJKlUqFheRDKzkQ7L7cuOKCX37/PXU="
+typstDeps = []
+description = "A no-frills curriculum vitae (CV) template using Typst and YAML to version control CV data"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/jskherman/imprecv"
+
+[imprecv."1.0.0"]
+url = "https://packages.typst.org/preview/imprecv-1.0.0.tar.gz"
+hash = "sha256-UkyMtrjje7GfR2pT9q1zHqil12KptIeghny43T98utw="
+typstDeps = []
+description = "A no-frills curriculum vitae (CV) template using Typst and YAML to version control CV data"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/jskherman/imprecv"
+
+[in-dexter."0.7.0"]
+url = "https://packages.typst.org/preview/in-dexter-0.7.0.tar.gz"
+hash = "sha256-yzRnJe14VYyYWSYAs3pEDDZLU8QfBfC2sK1OP0Bkc50="
+typstDeps = []
+description = "Create an 'hand picked' Index"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/RolfBremer/in-dexter"
+
+[in-dexter."0.5.3"]
+url = "https://packages.typst.org/preview/in-dexter-0.5.3.tar.gz"
+hash = "sha256-9uC2p04LPZpyflniWuWA15fEl+NRKLxt19QL+Xkx5i0="
+typstDeps = []
+description = "Hand Picked Index for Typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/RolfBremer/in-dexter"
+
+[in-dexter."0.5.2"]
+url = "https://packages.typst.org/preview/in-dexter-0.5.2.tar.gz"
+hash = "sha256-hNnw25kWvyClJkgRKXeDZX8njD3U1qSXwLC/cemtnxg="
+typstDeps = []
+description = "Hand Picked Index for Typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/RolfBremer/in-dexter"
+
+[in-dexter."0.4.2"]
+url = "https://packages.typst.org/preview/in-dexter-0.4.2.tar.gz"
+hash = "sha256-CC+5kWaQUF0qD/25hMhKiPtZi+EAEc7SsHs/7bySp0E="
+typstDeps = []
+description = "Hand Picked Index for Typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/RolfBremer/in-dexter"
+
+[in-dexter."0.3.0"]
+url = "https://packages.typst.org/preview/in-dexter-0.3.0.tar.gz"
+hash = "sha256-RKRYCc36nP57S4daR5IWT7klMicoZMkjijtyyyrv9vY="
+typstDeps = []
+description = "Hand Picked Index for Typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/RolfBremer/in-dexter"
+
+[in-dexter."0.2.0"]
+url = "https://packages.typst.org/preview/in-dexter-0.2.0.tar.gz"
+hash = "sha256-tS6dUnpl4/MJGt5c9q1SlvufYJn6chqwIkF5gg9shGo="
+typstDeps = []
+description = "Hand Picked Index for Typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/RolfBremer/in-dexter"
+
+[in-dexter."0.1.0"]
+url = "https://packages.typst.org/preview/in-dexter-0.1.0.tar.gz"
+hash = "sha256-gQ9O89PiNvrnTvrkH22FKfAY/ZOcN9WGxqB/EqYGubs="
+typstDeps = []
+description = "Hand Picked Index for Typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/RolfBremer/in-dexter"
+
+[in-dexter."0.0.6"]
+url = "https://packages.typst.org/preview/in-dexter-0.0.6.tar.gz"
+hash = "sha256-C8ZctB6P7eQ9+fhp7aW+m+vcVLnk934zZR1kWtN0eco="
+typstDeps = []
+description = "Hand Picked Index for Typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/RolfBremer/in-dexter"
+
+[in-dexter."0.0.5"]
+url = "https://packages.typst.org/preview/in-dexter-0.0.5.tar.gz"
+hash = "sha256-YhCLddQ2HrI9c/DgpmkT9ePezKzZYL6rMgJvZ9zUHg4="
+typstDeps = []
+description = "Hand Picked Index for Typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/RolfBremer/in-dexter"
+
+[in-dexter."0.0.4"]
+url = "https://packages.typst.org/preview/in-dexter-0.0.4.tar.gz"
+hash = "sha256-cEmqXywlCkEbLL49xnyF4ppAl/jpOhvpc1x8EWKREJU="
+typstDeps = []
+description = "Hand Picked Index for Typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/RolfBremer/in-dexter"
+
+[in-dexter."0.0.3"]
+url = "https://packages.typst.org/preview/in-dexter-0.0.3.tar.gz"
+hash = "sha256-77ol5CQKXrGoVS4LD0RBnhHLss6BLfQRTXY7dGuJHzY="
+typstDeps = []
+description = "Hand Picked Index for Typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/RolfBremer/in-dexter"
+
+[inboisu."0.1.0"]
+url = "https://packages.typst.org/preview/inboisu-0.1.0.tar.gz"
+hash = "sha256-0hPwa7JwI/NvbkW3O34w3kSFDIHGhfmCvrStqBYWRxo="
+typstDeps = [
+ "tablex_0_0_9",
+]
+description = "Inboisu is a tool for creating Japanese invoices"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/mkpoli/typst-inboisu"
+
+[indenta."0.0.3"]
+url = "https://packages.typst.org/preview/indenta-0.0.3.tar.gz"
+hash = "sha256-3xatpD/it9Q43n5Ow9X5esZBXXw5ZBMEktfhKd4AejA="
+typstDeps = []
+description = "Fix indent of first paragraph"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/flaribbit/indenta"
+
+[indenta."0.0.2"]
+url = "https://packages.typst.org/preview/indenta-0.0.2.tar.gz"
+hash = "sha256-OEcO2y5xsNZqUw7o/2lUZk7u7c9uhffTyn4qJw48+/I="
+typstDeps = []
+description = "Fix indent of first paragraph"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/flaribbit/indenta"
+
+[indenta."0.0.1"]
+url = "https://packages.typst.org/preview/indenta-0.0.1.tar.gz"
+hash = "sha256-UxLhZaFlp2UN/Y2kj7U2hGOF1NS5eeJVwEaF6Cv0lqU="
+typstDeps = []
+description = "Fix indent of first paragraph"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/flaribbit/indenta"
+
+[indic-numerals."0.1.0"]
+url = "https://packages.typst.org/preview/indic-numerals-0.1.0.tar.gz"
+hash = "sha256-qL2C6OHjMRqVTUFYSjVus3iE9HR1CklJdwMjPQ97QHo="
+typstDeps = []
+description = "convert arabic numerals to indic numerals and vice versa"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/cecoeco/indic-numerals"
+
+[invoice-maker."1.1.0"]
+url = "https://packages.typst.org/preview/invoice-maker-1.1.0.tar.gz"
+hash = "sha256-IT1P65mtzpgUUUHwOIDHoYG8x3GeP3MtSU+OzJFGFVs="
+typstDeps = []
+description = "Generate beautiful invoices from a simple data record"
+license = [
+ "ISC",
+]
+homepage = "https://github.com/ad-si/invoice-maker"
+
+[ionio-illustrate."0.2.0"]
+url = "https://packages.typst.org/preview/ionio-illustrate-0.2.0.tar.gz"
+hash = "sha256-p+Z4u91PvA2APXlk80ZikJTEk+JIhPpIn64Z6P+rLrY="
+typstDeps = [
+ "cetz_0_1_2",
+]
+description = "Mass spectra with annotations for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/JamesxX/ionio-illustrate"
+
+[ionio-illustrate."0.1.0"]
+url = "https://packages.typst.org/preview/ionio-illustrate-0.1.0.tar.gz"
+hash = "sha256-Wa/tLkpXkfzBhGgeRnVip7oblihNpdXmcoIGKKqMGaw="
+typstDeps = [
+ "cetz_0_1_2",
+]
+description = "Mass spectra with annotations for typst"
+license = [
+ "MIT",
+]
+
+[iridis."0.1.0"]
+url = "https://packages.typst.org/preview/iridis-0.1.0.tar.gz"
+hash = "sha256-ryceOZ0JS+SN90DO7C1n5D2sqizhM9yrXgW+Oxuo8UA="
+typstDeps = []
+description = "A package to colors matching parenthesis"
+license = [
+ "MIT",
+]
+
+[isc-hei-report."0.2.0"]
+url = "https://packages.typst.org/preview/isc-hei-report-0.2.0.tar.gz"
+hash = "sha256-z+XY4IaAOqxAZxjKDLVb/aou/RVOFSnnrTowcRVua60="
+typstDeps = [
+ "acrostiche_0_5_1",
+ "codelst_2_0_2",
+ "showybox_2_0_3",
+]
+description = "An official report template for the 'Informatique et systèmes de communication' (ISC) bachelor degree programme at the School of Engineering (HEI) in Sion, Switzerland"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ISC-HEI/ISC-report"
+
+[isc-hei-report."0.1.5"]
+url = "https://packages.typst.org/preview/isc-hei-report-0.1.5.tar.gz"
+hash = "sha256-+z4/39eEZHqnzoQ335iCLJ2BXGuCPJMlPcXb86g48rE="
+typstDeps = [
+ "acrostiche_0_3_0",
+ "acrostiche_0_3_1",
+ "codelst_2_0_1",
+ "showybox_2_0_1",
+]
+description = "An official report template for the 'Informatique et systèmes de communication' (ISC) bachelor degree programme at the School of Engineering (HEI) in Sion, Switzerland"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ISC-HEI/ISC-report"
+
+[isc-hei-report."0.1.3"]
+url = "https://packages.typst.org/preview/isc-hei-report-0.1.3.tar.gz"
+hash = "sha256-nuzvDLXZ7rfCCKui+K9w12SRFVwcde3nN+thvot6a6g="
+typstDeps = [
+ "acrostiche_0_3_0",
+ "acrostiche_0_3_1",
+ "codelst_2_0_1",
+ "showybox_2_0_1",
+]
+description = "An official report template for the 'Informatique et systèmes de communication' (ISC) bachelor degree programme at the School of Engineering (HEI) in Sion, Switzerland"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ISC-HEI/ISC-report"
+
+[isc-hei-report."0.1.0"]
+url = "https://packages.typst.org/preview/isc-hei-report-0.1.0.tar.gz"
+hash = "sha256-vkDZBocPZJOPIyf2j1oZ5rvzMT0wMG/a2BURXTjv6DA="
+typstDeps = [
+ "acrostiche_0_3_0",
+ "codelst_2_0_1",
+ "showybox_2_0_1",
+]
+description = "An official report template for the 'Informatique et systèmes de communication' (ISC) bachelor degree programme at the School of Engineering (HEI) in Sion, Switzerland"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ISC-HEI/ISC-report"
+
+[jaconf-mscs."0.1.0"]
+url = "https://packages.typst.org/preview/jaconf-mscs-0.1.0.tar.gz"
+hash = "sha256-Vvp2RFqMP2/Uho0VrA4ZE3DXJuj3cy5cPRaxv280x1o="
+typstDeps = [
+ "codly_1_1_1",
+ "ctheorems_1_1_3",
+]
+description = "Template for Japanese conference paper of engineering. 工学系の日本語学会論文テンプレート"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/kimushun1101/typst-jp-conf-template"
+
+[jlyfish."0.1.0"]
+url = "https://packages.typst.org/preview/jlyfish-0.1.0.tar.gz"
+hash = "sha256-h7WTNYT4tPbAEF7B50fUP7oHVnNIDJxedS3CMZxcbQ4="
+typstDeps = [
+ "based_0_1_0",
+]
+description = "Julia code evaluation inside your Typst document"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/andreasKroepelin/TypstJlyfish.jl"
+
+[jogs."0.2.4"]
+url = "https://packages.typst.org/preview/jogs-0.2.4.tar.gz"
+hash = "sha256-WZYXL2dKMK/B2LDDt9iRMkvJO0QZXRarEECNlF1QwTQ="
+typstDeps = []
+description = "QuickJS JavaScript runtime for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/jogs"
+
+[jogs."0.2.3"]
+url = "https://packages.typst.org/preview/jogs-0.2.3.tar.gz"
+hash = "sha256-XWXBYCki9munvKJGRrH+mN8gmba1PNN7dpR19HG9Hjk="
+typstDeps = []
+description = "QuickJS JavaScript runtime for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/jogs"
+
+[jogs."0.2.2"]
+url = "https://packages.typst.org/preview/jogs-0.2.2.tar.gz"
+hash = "sha256-VlhWrCmqphFJfraNaENwBElyyzGPuFTNax44BtlAr3k="
+typstDeps = []
+description = "QuickJS JavaScript runtime for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/jogs"
+
+[jogs."0.2.1"]
+url = "https://packages.typst.org/preview/jogs-0.2.1.tar.gz"
+hash = "sha256-z/MoF0l9qarxCL0dCNIRtYs05Grst1IyYAbIw/KEyxA="
+typstDeps = []
+description = "QuickJS JavaScript runtime for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/jogs"
+
+[jogs."0.2.0"]
+url = "https://packages.typst.org/preview/jogs-0.2.0.tar.gz"
+hash = "sha256-gNOZwfjHvz6R3r/FfLSM16jKu81vYK63ZAdpJMo2+Yg="
+typstDeps = []
+description = "QuickJS JavaScript runtime for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/jogs"
+
+[jogs."0.1.0"]
+url = "https://packages.typst.org/preview/jogs-0.1.0.tar.gz"
+hash = "sha256-nleCwdDbkqBdWElIoh5CVrszjYsicVAWFjGBb52vB5I="
+typstDeps = []
+description = "QuickJS JavaScript runtime for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/jogs"
+
+[js."0.1.3"]
+url = "https://packages.typst.org/preview/js-0.1.3.tar.gz"
+hash = "sha256-yf7bg3vx2h8KY/VSqL6lJhbiN0Vk0s/BHt7OIpIAUMw="
+typstDeps = []
+description = "Typst template based on LaTeX jsarticle/jsbook document classes"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/okumuralab/typst-js"
+
+[js."0.1.2"]
+url = "https://packages.typst.org/preview/js-0.1.2.tar.gz"
+hash = "sha256-MXv0VPyEzMsuVNZhJXJzjlOJ4qYYeqHqbf3pxq6vyZ4="
+typstDeps = []
+description = "Typst template based on LaTeX jsarticle/jsbook document classes"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/okumuralab/typst-js"
+
+[js."0.1.1"]
+url = "https://packages.typst.org/preview/js-0.1.1.tar.gz"
+hash = "sha256-MDWS5b81xz1LfQw0sWBQB8NC4G8Ol2GDnmBEIj/w89o="
+typstDeps = []
+description = "Typst template based on LaTeX jsarticle/jsbook document classes"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/okumuralab/typst-js"
+
+[js."0.1.0"]
+url = "https://packages.typst.org/preview/js-0.1.0.tar.gz"
+hash = "sha256-DrsvfvaDGVcl+QkHjhnJYPCenBKQAZe47s2abtN/20c="
+typstDeps = []
+description = "Typst template based on LaTeX jsarticle/jsbook document classes"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/okumuralab/typst-js"
+
+[jumble."0.0.1"]
+url = "https://packages.typst.org/preview/jumble-0.0.1.tar.gz"
+hash = "sha256-GnQdiXXCTIIILynOiWgbwmmovZ+6x99IjkiGzOnzVVA="
+typstDeps = [
+ "tidy_0_4_0",
+]
+description = "A package providing some hash functions and related stuff"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://git.kb28.ch/HEL/jumble"
+
+[jurz."0.1.0"]
+url = "https://packages.typst.org/preview/jurz-0.1.0.tar.gz"
+hash = "sha256-m/Mj05WArGW5YDoKNdyt1F0YQTS1Dz5Jw9er8w2vyas="
+typstDeps = []
+description = "Randziffern in Typst"
+license = [
+ "MIT",
+]
+
+[k-mapper."1.2.0"]
+url = "https://packages.typst.org/preview/k-mapper-1.2.0.tar.gz"
+hash = "sha256-iJj/FMGu/4DAz6yqrUZ62WeFxhXVxszkVyqeS0NOnDg="
+typstDeps = []
+description = "A package to add Karnaugh maps into Typst projects"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/derekchai/typst-karnaugh-map"
+
+[k-mapper."1.1.0"]
+url = "https://packages.typst.org/preview/k-mapper-1.1.0.tar.gz"
+hash = "sha256-2sqjAMkjCwcgI4OOLfrzwyUc4Rx28EoPHxFeFfYB80E="
+typstDeps = []
+description = "A package to add Karnaugh maps into Typst projects"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/derekchai/typst-karnaugh-map"
+
+[k-mapper."1.0.0"]
+url = "https://packages.typst.org/preview/k-mapper-1.0.0.tar.gz"
+hash = "sha256-w8GanT6MurAkT3T6nKCWxLMIWwRxbsLSbGSCtcrOqAo="
+typstDeps = []
+description = "A package to add Karnaugh maps into Typst projects"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/derekchai/typst-karnaugh-map"
+
+[kanjimo."0.1.0"]
+url = "https://packages.typst.org/preview/kanjimo-0.1.0.tar.gz"
+hash = "sha256-6caBsc8kZytwVe0XEPiX0qiw5xPe0lPWDwGJVZcRCzE="
+typstDeps = []
+description = "Create charts with selected kanji for practicing"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/istudyatuni/kanjimo"
+
+[kdl-unofficial-template."0.1.0"]
+url = "https://packages.typst.org/preview/kdl-unofficial-template-0.1.0.tar.gz"
+hash = "sha256-GDTzRTc+9O/8QJ50qZZZlXUxhVYPzq2NRym6yKZ/3v4="
+typstDeps = [
+ "cetz_0_3_3",
+ "droplet_0_3_1",
+ "suiji_0_3_0",
+]
+description = "An unofficial template for community scenarios for the TTRPG 'KULT: divinity lost"
+license = [
+ "MIT",
+]
+
+[keyle."0.2.0"]
+url = "https://packages.typst.org/preview/keyle-0.2.0.tar.gz"
+hash = "sha256-RhC88JBzKG1muu+hoWB/Y8Q6/KUyeU72EU0OzllpUBA="
+typstDeps = [
+ "codelst_2_0_0",
+ "mantys_0_1_4",
+ "showybox_2_0_1",
+]
+description = "This package provides a simple way to style keyboard shortcuts in your documentation"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/magicwenli/keyle"
+
+[keyle."0.1.1"]
+url = "https://packages.typst.org/preview/keyle-0.1.1.tar.gz"
+hash = "sha256-GPTeNT5cFVzbMgmSZ/1U6+B+gWCkh+R1ppBMqsBtiKE="
+typstDeps = [
+ "keyle_0_1_0",
+ "mantys_0_1_4",
+]
+description = "This package provides a simple way to style keyboard shortcuts in your documentation"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/magicwenli/keyle"
+
+[keyle."0.1.0"]
+url = "https://packages.typst.org/preview/keyle-0.1.0.tar.gz"
+hash = "sha256-rCWePSV9alPZfuw8TBw1wYXMexBVepEgmjhbA1ehbKc="
+typstDeps = [
+ "mantys_0_1_4",
+]
+description = "This package provides a simple way to style keyboard shortcuts in your documentation"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/magicwenli/keyle"
+
+[kinase."0.1.0"]
+url = "https://packages.typst.org/preview/kinase-0.1.0.tar.gz"
+hash = "sha256-WRGyitKZga3XdXwF2MKgE81iVhAJCPJFd1Q+MWCv/6o="
+typstDeps = [
+ "mantys_0_1_1",
+ "tidy_0_2_0",
+]
+description = "Easy styling for different link types like mails and urls"
+license = [
+ "MIT",
+]
+
+[klaro-ifsc-sj."0.1.0"]
+url = "https://packages.typst.org/preview/klaro-ifsc-sj-0.1.0.tar.gz"
+hash = "sha256-ib34/i22ozy0OlhXaOTX5oQn2ITQVHVLYQqBYnDGQDA="
+typstDeps = []
+description = "Report Typst template for IFSC"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/gabrielluizep/klaro-ifsc-sj"
+
+[km."0.1.0"]
+url = "https://packages.typst.org/preview/km-0.1.0.tar.gz"
+hash = "sha256-kWhaIc5GTBxodLNQcVP82mD7CKnuwKzLOnK8em3SLeI="
+typstDeps = []
+description = "Draw simple Karnaugh maps"
+license = [
+ "MIT",
+]
+homepage = "https://git.sr.ht/~toto/karnaugh"
+
+[knowledge-key."1.0.1"]
+url = "https://packages.typst.org/preview/knowledge-key-1.0.1.tar.gz"
+hash = "sha256-mpbfURVxssF0aVKPvvXRWpGUK9TyuXEoz8zdnJrPKP0="
+typstDeps = [
+ "codelst_2_0_1",
+ "tablex_0_0_8",
+]
+description = "A compact cheat-sheet"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/ngoetti/knowledge-key"
+
+[knowledge-key."1.0.0"]
+url = "https://packages.typst.org/preview/knowledge-key-1.0.0.tar.gz"
+hash = "sha256-L4eU2sqCSj31tMXBysjVU8i0aAoF9nVoIgqZffV6VKo="
+typstDeps = [
+ "codelst_2_0_1",
+ "tablex_0_0_8",
+]
+description = "A compact cheat-sheet"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/ngoetti/knowledge-key"
+
+[koma-labeling."0.2.0"]
+url = "https://packages.typst.org/preview/koma-labeling-0.2.0.tar.gz"
+hash = "sha256-vDy5t6MtKav29CgKA5gMyPzD0YRz/s/TIVt9oD6glGY="
+typstDeps = []
+description = "This package introduces a labeling feature to Typst, inspired by the KOMA-Script's labeling environment"
+license = [
+ "MIT",
+]
+
+[koma-labeling."0.1.0"]
+url = "https://packages.typst.org/preview/koma-labeling-0.1.0.tar.gz"
+hash = "sha256-jAyBafmtttzpmDfz66HUdCLJ4hyOxqHtYvX7c5KTMrs="
+typstDeps = []
+description = "This package introduces a labeling feature to Typst, inspired by the KOMA-Script's labeling environment"
+license = [
+ "MIT",
+]
+
+[kouhu."0.2.0"]
+url = "https://packages.typst.org/preview/kouhu-0.2.0.tar.gz"
+hash = "sha256-Q5qLfexfuH7oRNDiyff1/moFN7QplvzkPYdxpjgkR1A="
+typstDeps = [
+ "cmarker_0_1_1",
+ "mantys_0_1_4",
+ "tidy_0_2_0",
+]
+description = "Chinese lipsum text generator; 中文乱数假文(Lorem Ipsum)生成器"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Harry-Chen/kouhu"
+
+[kouhu."0.1.1"]
+url = "https://packages.typst.org/preview/kouhu-0.1.1.tar.gz"
+hash = "sha256-kMnFLH3KPwmBE4jg/nFpkhshkSAuUBBcuIIF4Jn5580="
+typstDeps = [
+ "mantys_0_1_4",
+ "tidy_0_2_0",
+]
+description = "Chinese lipsum text generator; 中文乱数假文(Lorem Ipsum)生成器"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Harry-Chen/kouhu"
+
+[kouhu."0.1.0"]
+url = "https://packages.typst.org/preview/kouhu-0.1.0.tar.gz"
+hash = "sha256-NQ5xPAnxc8zgM6cY9B364EU4mNDC6QQ8Z3yJDoSUpX8="
+typstDeps = [
+ "mantys_0_1_4",
+ "tidy_0_2_0",
+]
+description = "Chinese lipsum text generator; 中文乱数假文(Lorem Ipsum)生成器"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Harry-Chen/kouhu"
+
+[kthesis."0.1.1"]
+url = "https://packages.typst.org/preview/kthesis-0.1.1.tar.gz"
+hash = "sha256-SEGkBuf1UtnO0/DA74gsbSH/BUkWjORsAj7UYb8EwEA="
+typstDeps = [
+ "glossarium_0_5_4",
+ "headcount_0_1_0",
+ "hydra_0_6_0",
+ "linguify_0_4_2",
+]
+description = "Unofficial thesis template for KTH Royal Institute of Technology"
+license = [
+ "MIT",
+ "MIT-0",
+]
+homepage = "https://github.com/RafDevX/kthesis-typst"
+
+[kthesis."0.1.0"]
+url = "https://packages.typst.org/preview/kthesis-0.1.0.tar.gz"
+hash = "sha256-ZHaFDc5SIUbEuugwbiMi1ZnQfOK/oAjhihwIKlKqwDc="
+typstDeps = [
+ "glossarium_0_5_1",
+ "headcount_0_1_0",
+ "hydra_0_5_2",
+ "linguify_0_4_1",
+]
+description = "Unofficial thesis template for KTH Royal Institute of Technology"
+license = [
+ "MIT",
+ "MIT-0",
+]
+homepage = "https://github.com/RafDevX/kthesis-typst"
+
+[kunskap."0.1.0"]
+url = "https://packages.typst.org/preview/kunskap-0.1.0.tar.gz"
+hash = "sha256-drCRPbJP5vdJ1/oAcEVVlt8/UO+eHVH+GYRAsvJQYlg="
+typstDeps = []
+description = "A template with generous spacing for reports, assignments, course documents, and similar (shorter) documents"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/mbollmann/typst-kunskap"
+
+[lacy-ubc-math-project."0.1.1"]
+url = "https://packages.typst.org/preview/lacy-ubc-math-project-0.1.1.tar.gz"
+hash = "sha256-F8BESXsANR3yQ3Rjm1yb4fgVSxuNt6WhHkB6StNydPU="
+typstDeps = [
+ "cetz_0_3_1",
+ "cetz-plot_0_1_0",
+ "equate_0_2_1",
+ "metro_0_3_0",
+ "mitex_0_2_4",
+ "physica_0_9_3",
+ "physica_0_9_4",
+ "showman_0_1_2",
+]
+description = "A UBC MATH 100/101 group project template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lace-wing/lacy-ubc-math-project"
+
+[lacy-ubc-math-project."0.1.0"]
+url = "https://packages.typst.org/preview/lacy-ubc-math-project-0.1.0.tar.gz"
+hash = "sha256-eapcN5p7yKXxYU9RNMM2DYFxVdb7ZdaLUY0r8UgBMxk="
+typstDeps = [
+ "cetz_0_3_1",
+ "cetz-plot_0_1_0",
+ "equate_0_2_1",
+ "metro_0_3_0",
+ "mitex_0_2_4",
+ "physica_0_9_3",
+ "physica_0_9_4",
+ "showman_0_1_2",
+]
+description = "A UBC MATH 100 group project template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lace-wing/lacy-ubc-math-project"
+
+[lambdabus."0.1.0"]
+url = "https://packages.typst.org/preview/lambdabus-0.1.0.tar.gz"
+hash = "sha256-+6YRgcUR930JrAkv27NSM5fEKw4jC84wBCQXNBgSGuY="
+typstDeps = []
+description = "Easily parse, normalize and display simple λ-Calculus expressions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/luca-schlecker/typst-lambdabus"
+
+[lasagna."0.1.0"]
+url = "https://packages.typst.org/preview/lasagna-0.1.0.tar.gz"
+hash = "sha256-5wp2UXpeMAJepsYriZ8i2gSaIBtiSGpfkGVlTVzTkBc="
+typstDeps = []
+description = "Add layers, toggle them using tags easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/IsaacTay/lasagna.git"
+
+[lasaveur."0.1.4"]
+url = "https://packages.typst.org/preview/lasaveur-0.1.4.tar.gz"
+hash = "sha256-rtbnsArQc2OnD9R62s+dCO1QKQqbW3DepOkyZ+vvjLc="
+typstDeps = []
+description = "Porting vim-latex's math shorthands to Typst. An accommendating vim syntax file is provided in the repo"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/yangwenbo99/typst-lasaveur"
+
+[lasaveur."0.1.3"]
+url = "https://packages.typst.org/preview/lasaveur-0.1.3.tar.gz"
+hash = "sha256-ckpw5mZ21zDRV67vZR8yccZXwLzxNbntzZZaPpQhLIs="
+typstDeps = []
+description = "Porting vim-latex's math shorthands to Typst. An accommendating vim syntax file is provided in the repo"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/yangwenbo99/typst-lasaveur"
+
+[latedef."0.1.0"]
+url = "https://packages.typst.org/preview/latedef-0.1.0.tar.gz"
+hash = "sha256-L1+lMDnYxw6IE6Gu3IOe7AmjUG0eAW/2fQ3MOJIFfo0="
+typstDeps = []
+description = "Use now, define later"
+license = [
+ "MIT-0",
+]
+homepage = "https://codeberg.org/T0mstone/typst-latedef"
+
+[layout-ltd."0.1.0"]
+url = "https://packages.typst.org/preview/layout-ltd-0.1.0.tar.gz"
+hash = "sha256-opKfAj/Ax3WWsjqUE4li6EVESgY0I3bSGjnpk4MvRqU="
+typstDeps = []
+description = "Limit layout iterations for debugging"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/davystrong/layout-ltd"
+
+[leipzig-glossing."0.5.0"]
+url = "https://packages.typst.org/preview/leipzig-glossing-0.5.0.tar.gz"
+hash = "sha256-75TQDdX3XFIkPIGPfCorpM/JuHb7JNSURgJh/KxtvGE="
+typstDeps = []
+description = "Linguistic interlinear glosses according to the Leipzig Glossing rules"
+license = [
+ "MIT",
+]
+homepage = "https://code.everydayimshuflin.com/greg/typst-lepizig-glossing"
+
+[leipzig-glossing."0.4.0"]
+url = "https://packages.typst.org/preview/leipzig-glossing-0.4.0.tar.gz"
+hash = "sha256-gr6aJELM5fX4+/tbwEZCyIIwh6k1h+feOQkjjPXT2P4="
+typstDeps = []
+description = "Linguistic interlinear glosses according to the Leipzig Glossing rules"
+license = [
+ "MIT",
+]
+homepage = "https://code.everydayimshuflin.com/greg/typst-lepizig-glossing"
+
+[leipzig-glossing."0.3.0"]
+url = "https://packages.typst.org/preview/leipzig-glossing-0.3.0.tar.gz"
+hash = "sha256-oVLJXOb1cDLVsmfO2TP1RSUXfudjNxDVOdWHTZUmkCU="
+typstDeps = []
+description = "Linguistic interlinear glosses according to the Leipzig Glossing rules"
+license = [
+ "MIT",
+]
+homepage = "https://code.everydayimshuflin.com/greg/typst-lepizig-glossing"
+
+[leipzig-glossing."0.2.0"]
+url = "https://packages.typst.org/preview/leipzig-glossing-0.2.0.tar.gz"
+hash = "sha256-QaE7iQkqLKia3/11jLz0W/e3qwcSqEOyxIIaoCm6sP0="
+typstDeps = []
+description = "Linguistic interlinear glosses according to the Leipzig Glossing rules"
+license = [
+ "MIT",
+]
+homepage = "https://code.everydayimshuflin.com/greg/typst-lepizig-glossing"
+
+[leipzig-glossing."0.1.0"]
+url = "https://packages.typst.org/preview/leipzig-glossing-0.1.0.tar.gz"
+hash = "sha256-7OuUs3oTmFKhhPJ9Byiil9K3MYfk4PtqEevEq2Z+LpY="
+typstDeps = []
+description = "Linguistic interlinear glosses according to the Leipzig Glossing rules"
+license = [
+ "MIT",
+]
+homepage = "https://code.everydayimshuflin.com/greg/typst-lepizig-glossing"
+
+[lemmify."0.1.8"]
+url = "https://packages.typst.org/preview/lemmify-0.1.8.tar.gz"
+hash = "sha256-OUgZ657tLaEY0bGlN4RomRI7uh0WGXKDcAvgnxaDpNo="
+typstDeps = []
+description = "Theorem typesetting library"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/Marmare314/lemmify"
+
+[lemmify."0.1.7"]
+url = "https://packages.typst.org/preview/lemmify-0.1.7.tar.gz"
+hash = "sha256-wOOv1/zMELqct7xR9E8NhEkZrAUZjxrNpAmHC7GWpYk="
+typstDeps = []
+description = "Theorem typesetting library"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/Marmare314/lemmify"
+
+[lemmify."0.1.6"]
+url = "https://packages.typst.org/preview/lemmify-0.1.6.tar.gz"
+hash = "sha256-JTBSnexoFlfQtCT7l/WTpoUpea6qwSfjMwHCv48qf7k="
+typstDeps = []
+description = "Theorem typesetting library"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/Marmare314/lemmify"
+
+[lemmify."0.1.5"]
+url = "https://packages.typst.org/preview/lemmify-0.1.5.tar.gz"
+hash = "sha256-kXsxiXK4MtYns1oUeN1izlMIVi5e9x1YSTdOHZohLWI="
+typstDeps = []
+description = "Theorem typesetting library"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/Marmare314/lemmify"
+
+[lemmify."0.1.4"]
+url = "https://packages.typst.org/preview/lemmify-0.1.4.tar.gz"
+hash = "sha256-Yu0ZBUNt62NgWnusc1LMnvPG5im6xTGOGPrYokki73A="
+typstDeps = []
+description = "Theorem typesetting library"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/Marmare314/lemmify"
+
+[lemmify."0.1.3"]
+url = "https://packages.typst.org/preview/lemmify-0.1.3.tar.gz"
+hash = "sha256-WSqyHg2GmReHNpEKgT0pcNPlrPZLp/zSmAMm5CkdIg4="
+typstDeps = []
+description = "Theorem typesetting library"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/Marmare314/lemmify"
+
+[lemmify."0.1.2"]
+url = "https://packages.typst.org/preview/lemmify-0.1.2.tar.gz"
+hash = "sha256-l4ZV/LDvF50le6jfxePLNCzrwalMEhgtV1u5cKy0Klo="
+typstDeps = []
+description = "Theorem typesetting library"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/Marmare314/lemmify"
+
+[lemmify."0.1.1"]
+url = "https://packages.typst.org/preview/lemmify-0.1.1.tar.gz"
+hash = "sha256-AjWCj40qq0jEMe39R6bZFlWB2A37Tm1dc+O2pRq392U="
+typstDeps = []
+description = "Theorem typesetting library"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/Marmare314/lemmify"
+
+[lemmify."0.1.0"]
+url = "https://packages.typst.org/preview/lemmify-0.1.0.tar.gz"
+hash = "sha256-rC6ggMrQsfLEze25gAzZn3/wWa1o3HeVcAypw4+Yql8="
+typstDeps = []
+description = "A library for typesetting mathematical theorems"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/Marmare314/lemmify"
+
+[letter-pro."3.0.0"]
+url = "https://packages.typst.org/preview/letter-pro-3.0.0.tar.gz"
+hash = "sha256-Ow22loLjb/wiiB3iSmdZirbtfDR2XIveWgFcnWctBtI="
+typstDeps = []
+description = "DIN 5008 letter template for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Sematre/typst-letter-pro"
+
+[letter-pro."2.1.0"]
+url = "https://packages.typst.org/preview/letter-pro-2.1.0.tar.gz"
+hash = "sha256-kCPmuAZ7dwY1dsbpegyNS0cOjuIpV2DfFHSKBxi0SAE="
+typstDeps = []
+description = "DIN 5008 letter template for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Sematre/typst-letter-pro"
+
+[light-cv."0.2.0"]
+url = "https://packages.typst.org/preview/light-cv-0.2.0.tar.gz"
+hash = "sha256-GYYEH6YzC+yWoItv6om5HruDMqe1DbhiCYQ65bV6VDc="
+typstDeps = [
+ "fontawesome_0_5_0",
+]
+description = "Minimalistic CV template for your own CV. Please install the font awesome fonts on your system before using the template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/AnsgarLichter/cv-typst-template"
+
+[light-cv."0.1.1"]
+url = "https://packages.typst.org/preview/light-cv-0.1.1.tar.gz"
+hash = "sha256-Qou5K4e9AY9a8zPtTXZWvOmzdc8kpSnKhnvjSIBbSZg="
+typstDeps = [
+ "fontawesome_0_1_0",
+ "light-cv_0_1_0",
+]
+description = "Minimalistic CV template for your own CV. Please install the font awesome fonts on your system before using the template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/AnsgarLichter/cv-typst-template"
+
+[light-cv."0.1.0"]
+url = "https://packages.typst.org/preview/light-cv-0.1.0.tar.gz"
+hash = "sha256-VErt6vjrvKCZ9ULxVwB8LQVfmO/gYB798nkklGXTcvA="
+typstDeps = [
+ "fontawesome_0_1_0",
+]
+description = "Minimalistic CV template for your own CV. Please install the font awesome fonts on your system before using the template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/AnsgarLichter/cv-typst-template"
+
+[light-report-uia."0.1.0"]
+url = "https://packages.typst.org/preview/light-report-uia-0.1.0.tar.gz"
+hash = "sha256-7cu9FpnqoZZjtAkQlt0IGSdndnifRGTaPCSzf/60v7k="
+typstDeps = [
+ "codly_1_0_0",
+]
+description = "Template for reports at the University of Agder"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sebastos1/light-report-uia"
+
+[lilaq."0.2.0"]
+url = "https://packages.typst.org/preview/lilaq-0.2.0.tar.gz"
+hash = "sha256-0wYB8LeODvJ6/ueItWAPP2D8i8ifFfpk7oR6Vp7rrWw="
+typstDeps = [
+ "tiptoe_0_3_0",
+ "zero_0_3_3",
+]
+description = "Scientific data visualization"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lilaq-project/lilaq"
+
+[lilaq."0.1.0"]
+url = "https://packages.typst.org/preview/lilaq-0.1.0.tar.gz"
+hash = "sha256-y7GeVOIdEaOLEvSCJF1K028iRcR6kTmTlaWnsGx9Vw0="
+typstDeps = [
+ "tiptoe_0_3_0",
+ "zero_0_3_3",
+]
+description = "Data visualization"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lilaq-project/lilaq"
+
+[lineal."0.1.0"]
+url = "https://packages.typst.org/preview/lineal-0.1.0.tar.gz"
+hash = "sha256-ZO+OooKSfnEmUKFyPykhd6Trpkn1m9CcwzSqcs0586Q="
+typstDeps = [
+ "touying_0_5_3",
+]
+description = "Build elegent slide decks with Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ellsphillips/lineal"
+
+[linguify."0.4.2"]
+url = "https://packages.typst.org/preview/linguify-0.4.2.tar.gz"
+hash = "sha256-ZwDpQZT19wqo2nrhIHaMHZPTyHam3/BhMlsYuPLR8a0="
+typstDeps = []
+description = "Load strings for different languages easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/typst-community/linguify"
+
+[linguify."0.4.1"]
+url = "https://packages.typst.org/preview/linguify-0.4.1.tar.gz"
+hash = "sha256-OymscdQwJpTjaqyKEqJ5GyFrmSMmTwvPhnpfPE8XRWU="
+typstDeps = []
+description = "Load strings for different languages easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-linguify"
+
+[linguify."0.4.0"]
+url = "https://packages.typst.org/preview/linguify-0.4.0.tar.gz"
+hash = "sha256-3zEqzFbcXYYhUDLxvcqtpQsO7SbCCyu5CbhqP2Ew1W0="
+typstDeps = []
+description = "Load strings for different languages easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-linguify"
+
+[linguify."0.3.1"]
+url = "https://packages.typst.org/preview/linguify-0.3.1.tar.gz"
+hash = "sha256-7nmJn4vnG5BreqIrnWHKF9peAaSCHhuejVdXrgrdmKg="
+typstDeps = []
+description = "Load strings for different languages easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-linguify"
+
+[linguify."0.3.0"]
+url = "https://packages.typst.org/preview/linguify-0.3.0.tar.gz"
+hash = "sha256-zz0kirV1jWXcoX1Yv4Vk+16jDo5Cqqx7xvoyUlcbwBw="
+typstDeps = []
+description = "Load strings for different languages easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-linguify"
+
+[linguify."0.2.0"]
+url = "https://packages.typst.org/preview/linguify-0.2.0.tar.gz"
+hash = "sha256-3wf1ohs/an6QcwIDSi4qM0slu3O2cV6PuE/uxzTbI7s="
+typstDeps = []
+description = "Load strings for different languages easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-linguify"
+
+[linguify."0.1.0"]
+url = "https://packages.typst.org/preview/linguify-0.1.0.tar.gz"
+hash = "sha256-gBO7A5cArtcj7CFHJswykXBYEN5ZnSNc5gW9MsBwpE8="
+typstDeps = []
+description = "Load strings for different languages easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-linguify"
+
+[linkst."0.1.0"]
+url = "https://packages.typst.org/preview/linkst-0.1.0.tar.gz"
+hash = "sha256-LVklnr/CcjK5TrZUlyWN8ovLsu33Oqn9RFhsn8X+DsE="
+typstDeps = [
+ "cetz_0_3_3",
+]
+description = "A knot drawing package for knot theory"
+license = [
+ "MIT-0",
+]
+
+[lovelace."0.3.0"]
+url = "https://packages.typst.org/preview/lovelace-0.3.0.tar.gz"
+hash = "sha256-thSCDGxcTfykwUYjUsxBC7Xnei6dXiGybA8wyUoqKjo="
+typstDeps = []
+description = "Algorithms in pseudocode, unopinionated and flexible"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/andreasKroepelin/lovelace"
+
+[lovelace."0.2.0"]
+url = "https://packages.typst.org/preview/lovelace-0.2.0.tar.gz"
+hash = "sha256-FzsdguyMAGm+wTragSODfEd+S/+7WLaXJbpZW2rlkuw="
+typstDeps = []
+description = "Algorithms in pseudocode, unopinionated and flexible"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/andreasKroepelin/lovelace"
+
+[lovelace."0.1.0"]
+url = "https://packages.typst.org/preview/lovelace-0.1.0.tar.gz"
+hash = "sha256-gN5Emx9/sl/ols4tQoiBLEjpVvI6oOaJmx5ehYZqhIM="
+typstDeps = []
+description = "Algorithms in pseudocode, unopinionated and flexible"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/andreasKroepelin/lovelace"
+
+[lucky-icml."0.7.0"]
+url = "https://packages.typst.org/preview/lucky-icml-0.7.0.tar.gz"
+hash = "sha256-r9+WcDaDrRc1RozrwLFWbh8m7W0lXSn7Bsh2K0RM2FI="
+typstDeps = [
+ "algorithmic_0_1_0",
+ "lemmify_0_1_7",
+]
+description = "ICML-style paper template to publish at conferences for International Conference on Machine Learning"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/daskol/typst-templates"
+
+[lucky-icml."0.2.1"]
+url = "https://packages.typst.org/preview/lucky-icml-0.2.1.tar.gz"
+hash = "sha256-Dts44RoNPmKnA+/ZkEgy2Snjtrq4Gy9hPLRkiFJCIN4="
+typstDeps = [
+ "algorithmic_0_1_0",
+ "tablex_0_0_7",
+]
+description = "ICML-style paper template to publish at conferences for International Conference on Machine Learning"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/daskol/typst-templates"
+
+[lyceum."0.1.0"]
+url = "https://packages.typst.org/preview/lyceum-0.1.0.tar.gz"
+hash = "sha256-R9YJpG9Qh3Wfrad9kSZKLOJXMScffGX7adVigIb0mKs="
+typstDeps = []
+description = "Academic book template in Typst"
+license = [
+ "MIT",
+]
+
+[m-jaxon."0.1.1"]
+url = "https://packages.typst.org/preview/m-jaxon-0.1.1.tar.gz"
+hash = "sha256-ye2dPp64nLk+FOupkPEOwdN8u2x7C5lDsfx5NfmNtTc="
+typstDeps = [
+ "jogs_0_2_2",
+]
+description = "Render LaTeX equation in typst using MathJax"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/m-jaxon"
+
+[m-jaxon."0.1.0"]
+url = "https://packages.typst.org/preview/m-jaxon-0.1.0.tar.gz"
+hash = "sha256-quqhnnEqvtMKhLCdyneh/iR1CLTlQdX35cB4JqcL42E="
+typstDeps = [
+ "jogs_0_2_1",
+]
+description = "Render LaTeX equation in typst using MathJax"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/m-jaxon"
+
+[mannot."0.2.3"]
+url = "https://packages.typst.org/preview/mannot-0.2.3.tar.gz"
+hash = "sha256-FByqhbapg8hXEr2F+LsIz9chdNXLHoiOaotB6JxT+jE="
+typstDeps = [
+ "codly_1_2_0",
+ "tidy_0_4_0",
+ "tidy_0_4_2",
+]
+description = "A package for marking and annotating in math blocks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ryuryu-ymj/mannot"
+
+[mannot."0.2.2"]
+url = "https://packages.typst.org/preview/mannot-0.2.2.tar.gz"
+hash = "sha256-RyfrlOhE3KfyWYAp2PaGVRKKk/k+phT356aXP5/Tpvk="
+typstDeps = [
+ "codly_1_0_0",
+ "tidy_0_4_0",
+]
+description = "A package for marking and annotating in math blocks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ryuryu-ymj/mannot"
+
+[mannot."0.2.1"]
+url = "https://packages.typst.org/preview/mannot-0.2.1.tar.gz"
+hash = "sha256-iVErp+ntOVBt5giK3gVhki+jEEjmaK26pPovf3J+zhM="
+typstDeps = [
+ "codly_1_0_0",
+ "tidy_0_4_0",
+]
+description = "A package for marking and annotating in math blocks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ryuryu-ymj/mannot"
+
+[mannot."0.2.0"]
+url = "https://packages.typst.org/preview/mannot-0.2.0.tar.gz"
+hash = "sha256-haBmKWWU2Iu6YEqNwd2c4O3rBiRLtwoeEtTHFJ1zmkQ="
+typstDeps = [
+ "codly_1_0_0",
+ "tidy_0_4_0",
+]
+description = "A package for marking and annotating in math blocks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ryuryu-ymj/mannot"
+
+[mannot."0.1.0"]
+url = "https://packages.typst.org/preview/mannot-0.1.0.tar.gz"
+hash = "sha256-Ytxmf0SPplbWpVIfCH3FTX5v5x9Fd5W4IO77Iq+FrRU="
+typstDeps = [
+ "codly_1_0_0",
+ "tidy_0_3_0",
+]
+description = "A package for highlighting and annotating in math blocks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ryuryu-ymj/mannot"
+
+[mantys."1.0.1"]
+url = "https://packages.typst.org/preview/mantys-1.0.1.tar.gz"
+hash = "sha256-4JVg0Z8j/k4GPIPyGGmTll5CPRbwRriPu8jJyJQysYU="
+typstDeps = [
+ "codly_1_2_0",
+ "fauxreilly_0_1_1",
+ "gentle-clues_1_0_0",
+ "hydra_0_5_2",
+ "marginalia_0_1_2",
+ "octique_0_1_0",
+ "showybox_2_0_4",
+ "swank-tex_0_1_0",
+ "tidy_0_4_0",
+ "tidy_0_4_1",
+ "typearea_0_2_0",
+ "valkyrie_0_2_2",
+]
+description = "Helpers to build manuals for Typst packages and templates"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-mantys"
+
+[mantys."1.0.0"]
+url = "https://packages.typst.org/preview/mantys-1.0.0.tar.gz"
+hash = "sha256-8YXZbaTJpuuemUghlSuL4qQm1D9jmdon0FW/M9Re9Rk="
+typstDeps = [
+ "codly_1_2_0",
+ "fauxreilly_0_1_1",
+ "gentle-clues_1_0_0",
+ "hydra_0_5_2",
+ "marginalia_0_1_1",
+ "octique_0_1_0",
+ "showybox_2_0_3",
+ "swank-tex_0_1_0",
+ "tidy_0_4_0",
+ "typearea_0_2_0",
+ "valkyrie_0_2_1",
+]
+description = "Helpers to build manuals for Typst packages and templates"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-mantys"
+
+[mantys."0.1.4"]
+url = "https://packages.typst.org/preview/mantys-0.1.4.tar.gz"
+hash = "sha256-2tKfCDi0NIhJxV6YVZOU9Ur9UjDs7jPZV4IdFWcBSFQ="
+typstDeps = [
+ "codelst_2_0_0",
+ "hydra_0_4_0",
+ "showybox_2_0_1",
+ "t4t_0_3_2",
+ "tidy_0_2_0",
+]
+description = "Helpers to build manuals for Typst packages"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-mantys"
+
+[mantys."0.1.3"]
+url = "https://packages.typst.org/preview/mantys-0.1.3.tar.gz"
+hash = "sha256-xcgod2RE4f7UrK/vd+5Eb8VktQcquXhnzJ+JpVBjaXw="
+typstDeps = [
+ "codelst_2_0_0",
+ "hydra_0_4_0",
+ "showybox_2_0_1",
+ "t4t_0_3_2",
+ "tidy_0_2_0",
+]
+description = "Helpers to build manuals for Typst packages"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-mantys"
+
+[mantys."0.1.1"]
+url = "https://packages.typst.org/preview/mantys-0.1.1.tar.gz"
+hash = "sha256-yt2eaewS/7SO4+wxkunhwiBkcnv1MBHYaDONBashZ7w="
+typstDeps = [
+ "codelst_2_0_0",
+ "showybox_2_0_1",
+ "t4t_0_3_2",
+ "tidy_0_2_0",
+]
+description = "Helpers to build manuals for Typst packages"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-mantys"
+
+[manuscr-ismin."0.1.0"]
+url = "https://packages.typst.org/preview/manuscr-ismin-0.1.0.tar.gz"
+hash = "sha256-vHCxn7msNu6AsmaozKRrzdNCh/CnQEKiqdnpZZYKCEY="
+typstDeps = []
+description = "Template used for writing reports and/or various documents at the École des Mines de Saint-Étienne"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/senaalem/ISMIN_reports_template"
+
+[marge."0.1.0"]
+url = "https://packages.typst.org/preview/marge-0.1.0.tar.gz"
+hash = "sha256-Vasq7cVjsSXn4xoqTN0gly+i5bZZV6bxOAjFVqkaQ2E="
+typstDeps = []
+description = "Easy-to-use but powerful and smart margin notes"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-marge"
+
+[marginalia."0.1.3"]
+url = "https://packages.typst.org/preview/marginalia-0.1.3.tar.gz"
+hash = "sha256-c93UkMnYriR+vakF2O2r+yy1NtH6yAQAk1x/1KQER1g="
+typstDeps = []
+description = "Configurable margin-notes and matching wide blocks"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/nleanba/typst-marginalia"
+
+[marginalia."0.1.2"]
+url = "https://packages.typst.org/preview/marginalia-0.1.2.tar.gz"
+hash = "sha256-+8n5x7MLJlh9coSGMSszW4VfkLNtZcklqdxkX+4pfxU="
+typstDeps = []
+description = "Configurable margin-notes and matching wide blocks"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/nleanba/typst-marginalia"
+
+[marginalia."0.1.1"]
+url = "https://packages.typst.org/preview/marginalia-0.1.1.tar.gz"
+hash = "sha256-9rQcC/u7b7VZ3kC4wjjwVeLF4/vWRmx0otWESJHwzbU="
+typstDeps = []
+description = "Configurable margin-notes and matching wide blocks"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/nleanba/typst-marginalia"
+
+[marginalia."0.1.0"]
+url = "https://packages.typst.org/preview/marginalia-0.1.0.tar.gz"
+hash = "sha256-EsJHC3tDmx4mAtaV8ig+a2erb6avq0EPnEtog4p7Erk="
+typstDeps = []
+description = "Configurable margin-notes and matching wide blocks"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/nleanba/typst-marginalia"
+
+[markly."0.3.0"]
+url = "https://packages.typst.org/preview/markly-0.3.0.tar.gz"
+hash = "sha256-tOTkwsozXxUaOPFWUhiMjltd6yNjMaJskdb869AJjdU="
+typstDeps = [
+ "cetz_0_3_3",
+]
+description = "Typst package for bleed, cut and registration marks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/cskeeters/typst-markly"
+
+[markly."0.2.0"]
+url = "https://packages.typst.org/preview/markly-0.2.0.tar.gz"
+hash = "sha256-mZ3ROvJSXt5cvU9JcoHyuGoTqGfL5IE0ahqN+YD+iC8="
+typstDeps = [
+ "cetz_0_3_1",
+]
+description = "Typst package for bleed, cut and registration marks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/cskeeters/typst-markly"
+
+[matset."0.1.0"]
+url = "https://packages.typst.org/preview/matset-0.1.0.tar.gz"
+hash = "sha256-PXzwRXLAH98V2L6TR/Y+9UZRgXxs4vKgXm1ciYZ7UCM="
+typstDeps = []
+description = "An ergonomic expression evaluator in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OptimisticPeach/matset"
+
+[mcm-scaffold."0.2.0"]
+url = "https://packages.typst.org/preview/mcm-scaffold-0.2.0.tar.gz"
+hash = "sha256-4KSCC7XlZi9eJGm71Ui+dxDFKqkIcl1QYt0CfGXxSgg="
+typstDeps = [
+ "mitex_0_2_5",
+]
+description = "A Typst template for COMAP's Mathematical Contest in MCM/ICM"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/sxdl/MCM-Typst-template"
+
+[mcm-scaffold."0.1.0"]
+url = "https://packages.typst.org/preview/mcm-scaffold-0.1.0.tar.gz"
+hash = "sha256-9vB07x85EnOPFB1JKBiloo4MuSJxxHHdyUFdwACvifk="
+typstDeps = [
+ "mitex_0_2_2",
+]
+description = "A Typst template for COMAP's Mathematical Contest in MCM/ICM"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/sxdl/MCM-Typst-template"
+
+[mephistypsteles."0.3.0"]
+url = "https://packages.typst.org/preview/mephistypsteles-0.3.0.tar.gz"
+hash = "sha256-/XWM4SMGT+ZUAEb0QCNxNp8JkHqGInjwY3/zXWrQkls="
+typstDeps = []
+description = "The devil's reflection, using typst in typst"
+license = [
+ "MIT-0",
+]
+homepage = "https://codeberg.org/T0mstone/mephistypsteles"
+
+[mephistypsteles."0.2.0"]
+url = "https://packages.typst.org/preview/mephistypsteles-0.2.0.tar.gz"
+hash = "sha256-/hSShsjHrPIH+XqXDpAZvXXRr6bc7eBWWP9LttWzb18="
+typstDeps = []
+description = "The devil's reflection, using typst in typst"
+license = [
+ "MIT-0",
+]
+homepage = "https://codeberg.org/T0mstone/mephistypsteles"
+
+[mephistypsteles."0.1.0"]
+url = "https://packages.typst.org/preview/mephistypsteles-0.1.0.tar.gz"
+hash = "sha256-vwiyuUYAZInRyHUljVUZCZl4fTP2H/41zE3S5m5dmOM="
+typstDeps = []
+description = "The devil's reflection, using typst in typst"
+license = [
+ "MIT-0",
+]
+homepage = "https://codeberg.org/T0mstone/mephistypsteles"
+
+[meppp."0.2.1"]
+url = "https://packages.typst.org/preview/meppp-0.2.1.tar.gz"
+hash = "sha256-tvLTyqXGm9S51yXFuHglYjZc2c4CYsW5CA3qv95pnFI="
+typstDeps = [
+ "cuti_0_2_1",
+]
+description = "Template for modern physics experiment reports at the Physics School of PKU"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pku-typst/meppp"
+
+[meppp."0.2.0"]
+url = "https://packages.typst.org/preview/meppp-0.2.0.tar.gz"
+hash = "sha256-OveaoE6hQeb/tgY9YF6yUTSREjPZ5LoEcEjrgYxKmy4="
+typstDeps = []
+description = "Template for modern physics experiment reports at the Physics School of PKU"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pku-typst/meppp"
+
+[meppp."0.1.0"]
+url = "https://packages.typst.org/preview/meppp-0.1.0.tar.gz"
+hash = "sha256-VLGPT6B5rNf6LX05TppT+ewTbRT6E6wh58LsJcrxHFY="
+typstDeps = []
+description = "Template for modern physics experiment reports at the Physics School of PKU"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/CL4R3T/meppp"
+
+[metalogo."1.2.0"]
+url = "https://packages.typst.org/preview/metalogo-1.2.0.tar.gz"
+hash = "sha256-BY9rUnWqGp2LvKOscA8DIYSuLuBb4zDwgd/rpe/jIFs="
+typstDeps = []
+description = "Typeset various LaTeX compiler logos"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lonkaars/typst-metalogo"
+
+[metalogo."1.1.0"]
+url = "https://packages.typst.org/preview/metalogo-1.1.0.tar.gz"
+hash = "sha256-sQgXAzowpv9VGDq9FFl9fjSESyyRnkij2d5bjSEUzoU="
+typstDeps = []
+description = "Typeset various LaTeX logos"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lonkaars/typst-metalogo.git"
+
+[metalogo."1.0.2"]
+url = "https://packages.typst.org/preview/metalogo-1.0.2.tar.gz"
+hash = "sha256-4RF3uGrWbYpZGMStKPiTMPWkhrELMdo0WZos2DEEyUI="
+typstDeps = []
+description = "Typeset various LaTeX logos"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lonkaars/typst-metalogo.git"
+
+[metro."0.3.0"]
+url = "https://packages.typst.org/preview/metro-0.3.0.tar.gz"
+hash = "sha256-95MU3Zb9EL7sebXn9ddiemKnmu9iO7J9SgX5S5inrGg="
+typstDeps = [
+ "oxifmt_0_2_0",
+ "t4t_0_3_2",
+]
+description = "Typset units and numbers with options"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/fenjalien/metro"
+
+[metro."0.2.0"]
+url = "https://packages.typst.org/preview/metro-0.2.0.tar.gz"
+hash = "sha256-HA6QHYRiWnwxEu1/rb7aqq1n05uZ+axAxuZPhDEmw0w="
+typstDeps = [
+ "t4t_0_3_2",
+]
+description = "Typset units and numbers with options"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/fenjalien/metro"
+
+[metro."0.1.1"]
+url = "https://packages.typst.org/preview/metro-0.1.1.tar.gz"
+hash = "sha256-N2e6BRt1Tql6gyosr+w25T41sj55Xp0mvBqnMoVzvSY="
+typstDeps = [
+ "t4t_0_2_0",
+ "t4t_0_3_2",
+]
+description = "Typset units and numbers with options"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/fenjalien/metro"
+
+[metro."0.1.0"]
+url = "https://packages.typst.org/preview/metro-0.1.0.tar.gz"
+hash = "sha256-RHu2RMnAUARKzCgkr8jbEC7/lKiqwR2/lAYveW5CXBg="
+typstDeps = [
+ "t4t_0_2_0",
+]
+description = "Typset units and numbers with options"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/fenjalien/metro"
+
+[metronic."1.1.0"]
+url = "https://packages.typst.org/preview/metronic-1.1.0.tar.gz"
+hash = "sha256-rgHjw+wDHWFIb0NqVfmcOO+yXDlpgjiduR4U3KTbNDw="
+typstDeps = [
+ "fontawesome_0_5_0",
+]
+description = "A clean, colorful, and modern CV template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/patrixr/metronic-cv"
+
+[metronic."1.0.0"]
+url = "https://packages.typst.org/preview/metronic-1.0.0.tar.gz"
+hash = "sha256-MuIZr+GV9ysLA5djgHa6XYSST4XIj9wosSiwDheCSqU="
+typstDeps = [
+ "fontawesome_0_5_0",
+]
+description = "A clean, colorful, and modern CV template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/patrixr/metronic-cv"
+
+[metropolis-polylux."0.1.0"]
+url = "https://packages.typst.org/preview/metropolis-polylux-0.1.0.tar.gz"
+hash = "sha256-2e/etvchGyyih2CsOwBBeQYxe6Ak/H3o25k6wApEMWg="
+typstDeps = [
+ "polylux_0_4_0",
+]
+description = "Metropolis style template for Polylux"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/polylux-typ/metropolis"
+
+[miage-rapide-tp."0.1.2"]
+url = "https://packages.typst.org/preview/miage-rapide-tp-0.1.2.tar.gz"
+hash = "sha256-WmlEiIIg1THwzgDk3xcXEAIBd+ZTZYpb5fWT8kgQ35Q="
+typstDeps = []
+description = "Quickly generate a report for MIAGE practical work"
+license = [
+ "MIT-0",
+]
+
+[miage-rapide-tp."0.1.1"]
+url = "https://packages.typst.org/preview/miage-rapide-tp-0.1.1.tar.gz"
+hash = "sha256-WLk2i1xOMnk/3dUBGamesMAbbStN9hQ/y7pSfEB5YMI="
+typstDeps = []
+description = "A template to quickly generate a report for MIAGE practical work"
+license = [
+ "MIT-0",
+]
+
+[miage-rapide-tp."0.1.0"]
+url = "https://packages.typst.org/preview/miage-rapide-tp-0.1.0.tar.gz"
+hash = "sha256-iqnNBYwHnzpSf7PotKngB8t3PPxSKol4RhZKL2X4EfY="
+typstDeps = []
+description = "A template to quickly generate a report for MIAGE practical work"
+license = [
+ "MIT-0",
+]
+
+[min-article."0.1.0"]
+url = "https://packages.typst.org/preview/min-article-0.1.0.tar.gz"
+hash = "sha256-vjjyAb39oC44sHWT3lBVw8G+V/cEaaaxSXssBYJeQmo="
+typstDeps = [
+ "linguify_0_4_0",
+]
+description = "Simple and easy way to write ABNT-compliant articles"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/mayconfmelo/min-article"
+
+[min-book."0.1.0"]
+url = "https://packages.typst.org/preview/min-book-0.1.0.tar.gz"
+hash = "sha256-pBfBF7HPoSj4k0fxv4FA0tA3jRiaKnGr5Bzy+BDxcJw="
+typstDeps = [
+ "numbly_0_1_0",
+]
+description = "Simple and complete books without introducing new syntax"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/mayconfmelo/min-book"
+
+[min-manual."0.1.0"]
+url = "https://packages.typst.org/preview/min-manual-0.1.0.tar.gz"
+hash = "sha256-jqwfu2iOgnoHPO3zvw8b/qo4Zq+dhoWcqFl0ljLoQg8="
+typstDeps = [
+ "pkg-name_0_4_2",
+]
+description = "Simple and sober manuals inspired by the OG Linux manpages"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/mayconfmelo/min-manual"
+
+[min-resume."0.1.0"]
+url = "https://packages.typst.org/preview/min-resume-0.1.0.tar.gz"
+hash = "sha256-mOtLc/qkZ/FoV4sFudhOOKMBxxxROWOeLYJGyeqYIkY="
+typstDeps = [
+ "linguify_0_4_2",
+]
+description = "Simple and professional résumé for professional people"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/mayconfmelo/min-resume"
+
+[minerva-report-fcfm."0.2.2"]
+url = "https://packages.typst.org/preview/minerva-report-fcfm-0.2.2.tar.gz"
+hash = "sha256-HK/jzmCXp6i6+Iy/7RfCrKPWp6J1NTb59oLi11SJmfw="
+typstDeps = []
+description = "Template de artículos, informes y tareas para la Facultad de Ciencias Físicas y Matemáticas (FCFM"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/Dav1com/minerva-report-fcfm"
+
+[minerva-report-fcfm."0.2.1"]
+url = "https://packages.typst.org/preview/minerva-report-fcfm-0.2.1.tar.gz"
+hash = "sha256-+eKKL9iQ3Gw160T7qsQh75QB8iGbE8jYCAnnGU518zQ="
+typstDeps = []
+description = "Template de artículos, informes y tareas para la Facultad de Ciencias Físicas y Matemáticas (FCFM"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/Dav1com/minerva-report-fcfm"
+
+[minerva-report-fcfm."0.2.0"]
+url = "https://packages.typst.org/preview/minerva-report-fcfm-0.2.0.tar.gz"
+hash = "sha256-AS6L5ynVGu6DdM2uEVMJhBYeQsn5WlpEW3PAbuL859Y="
+typstDeps = [
+ "minerva-report-fcfm_0_1_0",
+]
+description = "Template de artículos, informes y tareas para la Facultad de Ciencias Físicas y Matemáticas (FCFM"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/Dav1com/minerva-report-fcfm"
+
+[minerva-report-fcfm."0.1.0"]
+url = "https://packages.typst.org/preview/minerva-report-fcfm-0.1.0.tar.gz"
+hash = "sha256-l0Zf7A0wIRh2VdsEsDYBZAQSjIXaTK3/vuX6H/2zfpA="
+typstDeps = []
+description = "Template para crear artículos, informes y tareas para la Facultad de Ciencias Físicas y Matemáticas (FCFM), pero puede ser personalizado para cualquier universidad"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/Dav1com/minerva-report-fcfm"
+
+[minideck."0.2.1"]
+url = "https://packages.typst.org/preview/minideck-0.2.1.tar.gz"
+hash = "sha256-UuH/zXlYpibGZaQgpiifTmmA/8swJ+OUAlgWkBghsYk="
+typstDeps = [
+ "cetz_0_2_2",
+ "fletcher_0_5_0",
+ "pinit_0_1_4",
+]
+description = "Simple dynamic slides"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/knuesel/typst-minideck"
+
+[minienvs."0.1.0"]
+url = "https://packages.typst.org/preview/minienvs-0.1.0.tar.gz"
+hash = "sha256-LN2bZyrDUJk+cYvaYDnp2cqvePZgZ79hTpcXlTUB04g="
+typstDeps = []
+description = "Theorem environments with minimal fuss"
+license = [
+ "MIT",
+]
+
+[minimal-cv."0.1.0"]
+url = "https://packages.typst.org/preview/minimal-cv-0.1.0.tar.gz"
+hash = "sha256-YQrVb43sOKaG3kgNma2GVYT+xA5pmPlIfbrkAu/wtSA="
+typstDeps = []
+description = "A clean and customizable CV template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lelimacon/typst-minimal-cv"
+
+[minimal-presentation."0.6.0"]
+url = "https://packages.typst.org/preview/minimal-presentation-0.6.0.tar.gz"
+hash = "sha256-OqITcVSkhql4T3oVctyE36f5Tm3eZ6JtrVYAYjvRl7M="
+typstDeps = []
+description = "A modern minimalistic presentation template ready to use"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/flavio20002/typst-presentation-minimal-template"
+
+[minimal-presentation."0.5.0"]
+url = "https://packages.typst.org/preview/minimal-presentation-0.5.0.tar.gz"
+hash = "sha256-QbsFtdy+XKqyziFAZM+vJABItdTh2YD8X2UKNtbeqqw="
+typstDeps = []
+description = "A modern minimalistic presentation template ready to use"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/flavio20002/typst-presentation-minimal-template"
+
+[minimal-presentation."0.4.0"]
+url = "https://packages.typst.org/preview/minimal-presentation-0.4.0.tar.gz"
+hash = "sha256-09AsVkZKpQJOjI0QcJvCp/pb6kjWfoBgfOMRUS4ARac="
+typstDeps = []
+description = "A modern minimalistic presentation template ready to use"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/flavio20002/typst-presentation-minimal-template"
+
+[minimal-presentation."0.3.0"]
+url = "https://packages.typst.org/preview/minimal-presentation-0.3.0.tar.gz"
+hash = "sha256-XJILcfNHpFKubfFj5fPYRKR/+0L479x9VJuSBCS7TVA="
+typstDeps = []
+description = "A modern minimalistic presentation template ready to use"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/flavio20002/typst-presentation-minimal-template"
+
+[minimal-presentation."0.2.0"]
+url = "https://packages.typst.org/preview/minimal-presentation-0.2.0.tar.gz"
+hash = "sha256-ANO8P8da2Vw67ehN+Hh+LpKSOu+eK+S94oYbivgydmQ="
+typstDeps = []
+description = "A modern minimalistic presentation template ready to use"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/flavio20002/typst-presentation-minimal-template"
+
+[minimal-presentation."0.1.0"]
+url = "https://packages.typst.org/preview/minimal-presentation-0.1.0.tar.gz"
+hash = "sha256-MD0/ukxUD65zNk4C2/RXyKqHRCSmJRxKGyx2phGnNiE="
+typstDeps = []
+description = "A modern minimalistic presentation template ready to use"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/flavio20002/typst-presentation-minimal-template"
+
+[minimal-thesis-luebeck."0.3.0"]
+url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.3.0.tar.gz"
+hash = "sha256-wnkoejwmSwl2Xy+Lca3QHOL9ng6vZ7sCoQ/T/obZRw8="
+typstDeps = [
+ "abbr_0_2_1",
+]
+description = "A minimalistic template for writing a thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/fhemstra/minimal-thesis-luebeck"
+
+[minimal-thesis-luebeck."0.2.0"]
+url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.2.0.tar.gz"
+hash = "sha256-/FtKpzaAFft0PJehThEVSL665p+QWgE4CxZlN0HdjjI="
+typstDeps = [
+ "abbr_0_1_1",
+]
+description = "A minimalistic template for writing a thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/fhemstra/minimal-thesis-luebeck"
+
+[minimal-thesis-luebeck."0.1.0"]
+url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.1.0.tar.gz"
+hash = "sha256-8wgdLxDtP2ZeWTRAvJQehADf35vPplC2MP34o5SJ/oc="
+typstDeps = [
+ "abbr_0_1_1",
+]
+description = "A minimalistic template for writing a thesis"
+license = [
+ "MIT",
+]
+
+[minimalbc."0.0.1"]
+url = "https://packages.typst.org/preview/minimalbc-0.0.1.tar.gz"
+hash = "sha256-JN6jgcnII6jPACdceOqtpnb9kx43fkyLK7Z21PmwvPg="
+typstDeps = []
+description = "Sleek, minimalist design for professional business cards. Emphasizing clarity and elegance"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sevehub/minimalbc"
+
+[minimalistic-latex-cv."0.1.1"]
+url = "https://packages.typst.org/preview/minimalistic-latex-cv-0.1.1.tar.gz"
+hash = "sha256-pvfADpumtC5wx/O70rT4TfOEsEQssL/uXEOsOLdhAzU="
+typstDeps = []
+description = "A minimalistic LaTeX-style CV template for professionals"
+license = [
+ "MIT-0",
+]
+
+[minimalistic-latex-cv."0.1.0"]
+url = "https://packages.typst.org/preview/minimalistic-latex-cv-0.1.0.tar.gz"
+hash = "sha256-q1iqeCHDLdya8h9MDxFns03LyidWL2GLoLsRvdCLyfs="
+typstDeps = []
+description = "A minimalistic LaTeX-style CV template for professionals"
+license = [
+ "MIT-0",
+]
+
+[minitoc."0.1.0"]
+url = "https://packages.typst.org/preview/minitoc-0.1.0.tar.gz"
+hash = "sha256-4VtBpY3MKbWtGZIkKnbPVm17ChcV53/MgIj+AkZ/X6I="
+typstDeps = []
+description = "An outline function just for one section and nothing else"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://gitlab.com/human_person/typst-local-outline"
+
+[mino."0.1.2"]
+url = "https://packages.typst.org/preview/mino-0.1.2.tar.gz"
+hash = "sha256-6RODyq64Bvkl7AXQju2pL4A3Nq/NbO8VfZs9szuJJtM="
+typstDeps = [
+ "jogs_0_2_3",
+]
+description = "Render tetris fumen in typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/mino"
+
+[mino."0.1.1"]
+url = "https://packages.typst.org/preview/mino-0.1.1.tar.gz"
+hash = "sha256-cl4dktVerwNhAgochCpXeOmNMNI0FERrzNiTtNGWBLs="
+typstDeps = [
+ "jogs_0_2_1",
+]
+description = "Render tetris fumen in typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/mino"
+
+[mino."0.1.0"]
+url = "https://packages.typst.org/preview/mino-0.1.0.tar.gz"
+hash = "sha256-OwlYBdaeQzDAgr82l+AiOI4Fz9HWeG+NJ4yt7fn+oxg="
+typstDeps = [
+ "jogs_0_2_1",
+]
+description = "Render tetris fumen in typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/mino"
+
+[mitex."0.2.5"]
+url = "https://packages.typst.org/preview/mitex-0.2.5.tar.gz"
+hash = "sha256-kvVQT22lWFLxlfXwWC9wWgZXVJMJEf63Uuzri0/NnqY="
+typstDeps = []
+description = "LaTeX support for Typst, powered by Rust and WASM"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/mitex-rs/mitex"
+
+[mitex."0.2.4"]
+url = "https://packages.typst.org/preview/mitex-0.2.4.tar.gz"
+hash = "sha256-4NGNciNJQaMhE6AQneKqDzeh16jT2uxORCWEUuN4Lvc="
+typstDeps = [
+ "xarrow_0_2_0",
+]
+description = "LaTeX support for Typst, powered by Rust and WASM"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/mitex-rs/mitex"
+
+[mitex."0.2.3"]
+url = "https://packages.typst.org/preview/mitex-0.2.3.tar.gz"
+hash = "sha256-ThPfdRH6cCkoMR58JQYOANTY4axtOIWhDh+OV+xKPO4="
+typstDeps = [
+ "xarrow_0_2_0",
+]
+description = "LaTeX support for Typst, powered by Rust and WASM"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/mitex-rs/mitex"
+
+[mitex."0.2.2"]
+url = "https://packages.typst.org/preview/mitex-0.2.2.tar.gz"
+hash = "sha256-zCzfz3iS5Zko31QrI1Hd1qLBGETg2dgVwd4LHDq5njQ="
+typstDeps = [
+ "xarrow_0_2_0",
+]
+description = "LaTeX support for Typst, powered by Rust and WASM"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/mitex-rs/mitex"
+
+[mitex."0.2.1"]
+url = "https://packages.typst.org/preview/mitex-0.2.1.tar.gz"
+hash = "sha256-0YonqnjL0+kQaLdOVi+JrzHTGX61F0yCPOYqGu9ntK0="
+typstDeps = [
+ "xarrow_0_2_0",
+]
+description = "LaTeX support for Typst, powered by Rust and WASM"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/mitex-rs/mitex"
+
+[mitex."0.2.0"]
+url = "https://packages.typst.org/preview/mitex-0.2.0.tar.gz"
+hash = "sha256-Kh4uMywIoS7EFsQc4WQ23EmNDKD4qqErd6GjkyyO3+c="
+typstDeps = [
+ "xarrow_0_2_0",
+]
+description = "LaTeX support for Typst, powered by Rust and WASM"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/mitex-rs/mitex"
+
+[mitex."0.1.0"]
+url = "https://packages.typst.org/preview/mitex-0.1.0.tar.gz"
+hash = "sha256-94SandlTzLX+awqNrciJjuSbF9MVZ4hLT6dXQq+qJsM="
+typstDeps = [
+ "xarrow_0_2_0",
+]
+description = "LaTeX support for Typst, powered by Rust and WASM"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/OrangeX4/mitex"
+
+[modern-acad-cv."0.1.3"]
+url = "https://packages.typst.org/preview/modern-acad-cv-0.1.3.tar.gz"
+hash = "sha256-md1GRHWOxDNNy4iavFGqSmgpxMKJR8KGsT0pR2XAPso="
+typstDeps = [
+ "fontawesome_0_5_0",
+ "use-academicons_0_1_0",
+]
+description = "A CV template for academics based on moderncv LaTeX package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/philkleer/typst-modern-acad-cv"
+
+[modern-acad-cv."0.1.2"]
+url = "https://packages.typst.org/preview/modern-acad-cv-0.1.2.tar.gz"
+hash = "sha256-+XAabIM+vK0hVC3+5/7jwSnH+C+vH+EfuwhYS9q2XdM="
+typstDeps = [
+ "fontawesome_0_5_0",
+ "use-academicons_0_1_0",
+]
+description = "A CV template for academics based on moderncv LaTeX package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/philkleer/typst-modern-acad-cv"
+
+[modern-acad-cv."0.1.1"]
+url = "https://packages.typst.org/preview/modern-acad-cv-0.1.1.tar.gz"
+hash = "sha256-XVzghoV6ZMbN38FKZK/V5izTKcBv+vnr4UhIywM7NX4="
+typstDeps = [
+ "fontawesome_0_5_0",
+ "modern-acad-cv_0_1_0",
+ "use-academicons_0_1_0",
+]
+description = "A CV template for academics based on moderncv LaTeX package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/bpkleer/typst-modern-acad-cv"
+
+[modern-acad-cv."0.1.0"]
+url = "https://packages.typst.org/preview/modern-acad-cv-0.1.0.tar.gz"
+hash = "sha256-3plPylFuGxUSuFvdyj/RpbtvbIIlLAf/AFsXVl/59jc="
+typstDeps = [
+ "fontawesome_0_4_0",
+ "use-academicons_0_1_0",
+]
+description = "A CV template for academics based on moderncv LaTeX package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/bpkleer/typst-modern-acad-cv"
+
+[modern-bnu-course-paper."0.1.0"]
+url = "https://packages.typst.org/preview/modern-bnu-course-paper-0.1.0.tar.gz"
+hash = "sha256-HC9zUal/ffbx7O0Ynsmb9OtgS9gJH+dxYfDSFmtiN5Q="
+typstDeps = [
+ "algo_0_3_4",
+ "anti-matter_0_0_2",
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "tablex_0_0_8",
+]
+description = "北京师范大学课程论文模板。Modern Beijing Normal University Course Paper"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EuanTop/modern-bnu-course-paper"
+
+[modern-bnu-thesis."0.0.1"]
+url = "https://packages.typst.org/preview/modern-bnu-thesis-0.0.1.tar.gz"
+hash = "sha256-Zw7INRq6oBSgl7ip/e6SlUgqrAvgwzTmbW0ODOQBFOU="
+typstDeps = [
+ "algo_0_3_4",
+ "anti-matter_0_0_2",
+ "cuti_0_2_1",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "pinit_0_1_3",
+ "tablex_0_0_8",
+]
+description = "北京师范大学学位论文模板。Modern Beijing Normal University Thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/mosrat/modern-bnu-thesis"
+
+[modern-cqut-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/modern-cqut-thesis-0.1.0.tar.gz"
+hash = "sha256-75yWFP5K6VmsPKff/BvzKHK15Bch6CwRXEHsTIaZJYQ="
+typstDeps = [
+ "ctheorems_1_1_3",
+ "cuti_0_2_1",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "outrageous_0_3_0",
+ "pinit_0_2_2",
+ "showybox_2_0_3",
+ "tablex_0_0_8",
+]
+description = "重庆理工大学学位论文模板。 A Thesis Tamplate for CQUT"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/aFei-CQUT/modern-cqut-thesis"
+
+[modern-cug-report."0.1.1"]
+url = "https://packages.typst.org/preview/modern-cug-report-0.1.1.tar.gz"
+hash = "sha256-tDNx5sL+we4WNxEFa+oHMNfe9nvbB717gKz87Jjobmk="
+typstDeps = [
+ "cuti_0_2_1",
+ "mitex_0_2_4",
+ "physica_0_9_3",
+ "showybox_2_0_3",
+]
+description = "Chinese Technical report writing standards"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/CUG-hydro/modern-cug-report.typ"
+
+[modern-cug-report."0.1.0"]
+url = "https://packages.typst.org/preview/modern-cug-report-0.1.0.tar.gz"
+hash = "sha256-j+wgh8EXdPjuWRYmfVnjhEIvYSGuAPeEclj5vD7HjVI="
+typstDeps = [
+ "codly_1_0_0",
+ "cuti_0_2_1",
+ "mitex_0_2_4",
+ "physica_0_9_3",
+ "showybox_2_0_3",
+]
+description = "Chinese Technical report writing standards"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/CUG-hydro/modern-cug-report.typ"
+
+[modern-cug-thesis."0.2.6"]
+url = "https://packages.typst.org/preview/modern-cug-thesis-0.2.6.tar.gz"
+hash = "sha256-HoN1j5PIQ0UxafuHgQNTRc0eaoIhTLMD+ejMyZwIcGQ="
+typstDeps = [
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+ "subpar_0_2_1",
+ "tablex_0_0_8",
+ "wordometer_0_1_4",
+]
+description = "中国地质大学(武汉)学位论文模板。China University of Geosciences Thesis based on Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Rsweater/cug-thesis-typst"
+
+[modern-cug-thesis."0.2.5"]
+url = "https://packages.typst.org/preview/modern-cug-thesis-0.2.5.tar.gz"
+hash = "sha256-pTrPUNNss/RmAS+JE/F48lvpBQOg75gHhPQ8YMsxKak="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "subpar_0_2_0",
+ "tablex_0_0_8",
+]
+description = "中国地质大学(武汉)学位论文模板。China University of Geosciences Thesis based on Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Rsweater/cug-thesis-typst"
+
+[modern-cug-thesis."0.2.4"]
+url = "https://packages.typst.org/preview/modern-cug-thesis-0.2.4.tar.gz"
+hash = "sha256-3SpjKehYDxl6YPWuJq1PZs4ZEutB464wAQ42XQEbeiQ="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "tablex_0_0_8",
+]
+description = "中国地质大学(武汉)学位论文模板。China University of Geosciences Thesis based on Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Rsweater/cug-thesis-typst"
+
+[modern-cug-thesis."0.2.3"]
+url = "https://packages.typst.org/preview/modern-cug-thesis-0.2.3.tar.gz"
+hash = "sha256-3mZSi5/bcYVQWg+H9/nD2Tph3bMiEq0w491lIhD92QQ="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "tablex_0_0_8",
+]
+description = "中国地质大学(武汉)学位论文模板。China University of Geosciences Thesis based on Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Rsweater/cug-thesis-typst"
+
+[modern-cug-thesis."0.2.2"]
+url = "https://packages.typst.org/preview/modern-cug-thesis-0.2.2.tar.gz"
+hash = "sha256-F50iaDduV2nS1brJO3s9BBUwGWqnAYgj17SXbd/Nzxo="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+ "indenta_0_0_3",
+ "modern-cug-thesis_0_2_1",
+ "outrageous_0_1_0",
+ "tablex_0_0_8",
+]
+description = "中国地质大学(武汉)学位论文模板。China University of Geosciences Thesis based on Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Rsweater/cug-thesis-typst"
+
+[modern-cug-thesis."0.2.1"]
+url = "https://packages.typst.org/preview/modern-cug-thesis-0.2.1.tar.gz"
+hash = "sha256-3ST8IuzSV4ZW/7y0e5C/vvjsnDnbUMHiUUXP+FxA4vc="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+ "indenta_0_0_3",
+ "outrageous_0_1_0",
+ "tablex_0_0_8",
+]
+description = "中国地质大学(武汉)学位论文模板。China University of Geosciences Thesis based on Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Rsweater/cug-thesis-typst"
+
+[modern-cug-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/modern-cug-thesis-0.1.0.tar.gz"
+hash = "sha256-2FIo2PUltG+8HVtIkxwOh1mlhvc902zlJ4qIzQvVALw="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+ "indenta_0_0_3",
+ "outrageous_0_1_0",
+ "tablex_0_0_8",
+]
+description = "中国地质大学(武汉)学位论文模板。China University of Geosciences Thesis based on Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Rsweater/cug-thesis-typst"
+
+[modern-cv."0.8.0"]
+url = "https://packages.typst.org/preview/modern-cv-0.8.0.tar.gz"
+hash = "sha256-p8ZkhcYvO3vdidAYRYobapreiZSqE4Pihd0eEeLIQ24="
+typstDeps = [
+ "fontawesome_0_5_0",
+ "linguify_0_4_1",
+]
+description = "A modern resume template based on the Awesome-CV Latex template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DeveloperPaul123/modern-cv"
+
+[modern-cv."0.7.0"]
+url = "https://packages.typst.org/preview/modern-cv-0.7.0.tar.gz"
+hash = "sha256-AHUyHvNmcobnCGjfInft4i/JWnTQp+o5dSznx/xl6cU="
+typstDeps = [
+ "fontawesome_0_5_0",
+ "linguify_0_4_1",
+]
+description = "A modern resume template based on the Awesome-CV Latex template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DeveloperPaul123/modern-cv"
+
+[modern-cv."0.6.0"]
+url = "https://packages.typst.org/preview/modern-cv-0.6.0.tar.gz"
+hash = "sha256-3MRMAuavyQzggHtgd6g5LjfqeF1+26Y6+AUwAbGCmdk="
+typstDeps = [
+ "fontawesome_0_2_1",
+ "linguify_0_4_0",
+]
+description = "A modern resume template based on the Awesome-CV Latex template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DeveloperPaul123/modern-cv"
+
+[modern-cv."0.5.0"]
+url = "https://packages.typst.org/preview/modern-cv-0.5.0.tar.gz"
+hash = "sha256-iT4H5axgHaNQGDJzrla917YiqxFC6uNP7X9PmM2mAhY="
+typstDeps = [
+ "fontawesome_0_2_1",
+ "linguify_0_4_0",
+]
+description = "A modern resume template based on the Awesome-CV Latex template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DeveloperPaul123/modern-cv"
+
+[modern-cv."0.4.0"]
+url = "https://packages.typst.org/preview/modern-cv-0.4.0.tar.gz"
+hash = "sha256-o2G8VnzHVDxJ/ooJaewVfNWU6kvTAmJ+/H/Hb+pGlQc="
+typstDeps = [
+ "fontawesome_0_2_1",
+ "linguify_0_4_0",
+]
+description = "A modern resume template based on the Awesome-CV Latex template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DeveloperPaul123/modern-cv"
+
+[modern-cv."0.3.1"]
+url = "https://packages.typst.org/preview/modern-cv-0.3.1.tar.gz"
+hash = "sha256-2zE5Wa/4XQbzudDfxnh/SJudunnvVZh94QDc51IwAmM="
+typstDeps = [
+ "fontawesome_0_1_0",
+ "linguify_0_4_0",
+]
+description = "A modern resume template based on the Awesome-CV Latex template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DeveloperPaul123/modern-cv"
+
+[modern-cv."0.3.0"]
+url = "https://packages.typst.org/preview/modern-cv-0.3.0.tar.gz"
+hash = "sha256-0gMx15la5PddPO7gdwRZJDvMvGmJzmOZtDZ312VuDNE="
+typstDeps = [
+ "fontawesome_0_1_0",
+ "linguify_0_4_0",
+]
+description = "A modern resume template based on the Awesome-CV Latex template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DeveloperPaul123/modern-cv"
+
+[modern-cv."0.2.0"]
+url = "https://packages.typst.org/preview/modern-cv-0.2.0.tar.gz"
+hash = "sha256-VfsX6L1N7yYiDQ838lto6FSGomcSUSzqGTle81qP7OQ="
+typstDeps = [
+ "fontawesome_0_1_0",
+]
+description = "A modern resume template based on the Awesome-CV Latex template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DeveloperPaul123/modern-cv"
+
+[modern-cv."0.1.0"]
+url = "https://packages.typst.org/preview/modern-cv-0.1.0.tar.gz"
+hash = "sha256-htS0bAEgSfCnFt/BP6Hr/dY4gB0hvnxKWWOz1EEMtCI="
+typstDeps = [
+ "fontawesome_0_1_0",
+]
+description = "A modern resume template based on the Awesome-CV Latex template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DeveloperPaul123/modern-cv"
+
+[modern-ecnu-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/modern-ecnu-thesis-0.2.0.tar.gz"
+hash = "sha256-d9JuuJUbBPELbgJ0KHVX+hcYzap41sd8CD023oPu1Jk="
+typstDeps = [
+ "cuti_0_2_1",
+ "hydra_0_5_2",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "kouhu_0_1_0",
+ "outrageous_0_3_0",
+ "pinit_0_1_3",
+ "tablex_0_0_8",
+ "wordometer_0_1_4",
+]
+description = "华东师范大学本科 / 研究生学位论文模板。Modern East China Normal University Thesis Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jtchen2k/modern-ecnu-thesis"
+
+[modern-ecnu-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/modern-ecnu-thesis-0.1.0.tar.gz"
+hash = "sha256-S/x3L3NdnsH3J5QbpGUVc9MA6TFcRCugOnLVowfDsqA="
+typstDeps = [
+ "cuti_0_2_1",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "kouhu_0_1_0",
+ "outrageous_0_1_0",
+ "pinit_0_1_3",
+ "tablex_0_0_8",
+ "wordometer_0_1_4",
+]
+description = "华东师范大学学位论文模板。Modern East China Normal University Thesis Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jtchen2k/modern-ecnu-thesis"
+
+[modern-g7-32."0.1.0"]
+url = "https://packages.typst.org/preview/modern-g7-32-0.1.0.tar.gz"
+hash = "sha256-eueqW82lVMD0Ii45pLAlD4Rw7NuF9mdfuTWXgQ1Oylw="
+typstDeps = [
+ "numberingx_0_0_1",
+]
+description = "Template for academic documents in compliance with GOST 7.32‑2017"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/typst-g7-32/modern-g7-32"
+
+[modern-hsh-thesis."1.0.2"]
+url = "https://packages.typst.org/preview/modern-hsh-thesis-1.0.2.tar.gz"
+hash = "sha256-RXQYwYaz/mAXMuDX7DS+Wpr8Op6x6nF2G0KB88HCauM="
+typstDeps = [
+ "big-todo_0_2_0",
+ "codly_1_2_0",
+ "gentle-clues_1_2_0",
+ "gloss-awe_0_0_5",
+ "hydra_0_6_0",
+ "treet_0_1_1",
+ "wrap-it_0_1_1",
+]
+description = "Template for writing a bachelors or masters thesis at the Hochschule Hannover, Faculty 4"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/MrToWy/hsh-thesis"
+
+[modern-hsh-thesis."1.0.1"]
+url = "https://packages.typst.org/preview/modern-hsh-thesis-1.0.1.tar.gz"
+hash = "sha256-pLF1k5wwDtANkEDQ66Tqikn+Rsk6I8dPUez81DzizAY="
+typstDeps = [
+ "big-todo_0_2_0",
+ "codly_1_0_0",
+ "gentle-clues_0_9_0",
+ "gloss-awe_0_0_5",
+ "hydra_0_5_1",
+ "treet_0_1_0",
+ "wrap-it_0_1_0",
+]
+description = "Template for writing a bachelors or masters thesis at the Hochschule Hannover, Faculty 4"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/MrToWy/hsh-thesis"
+
+[modern-hsh-thesis."1.0.0"]
+url = "https://packages.typst.org/preview/modern-hsh-thesis-1.0.0.tar.gz"
+hash = "sha256-5XIOMC3hmc+5OhIOPnt4nmg2TyioSVZvxaZY8uj3j1g="
+typstDeps = [
+ "big-todo_0_2_0",
+ "codly_1_0_0",
+ "gentle-clues_0_9_0",
+ "gloss-awe_0_0_5",
+ "hydra_0_3_0",
+ "treet_0_1_0",
+ "wrap-it_0_1_0",
+]
+description = "Template for writing a bachelors or masters thesis at the Hochschule Hannover, Faculty 4"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/MrToWy/hsh-thesis"
+
+[modern-iu-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/modern-iu-thesis-0.1.0.tar.gz"
+hash = "sha256-xda/9KVnb8I0ob1mZMChzqEBw7uBoaUGTwdhFujeV5k="
+typstDeps = []
+description = "Modern Typst thesis template for Indiana University"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/bojohnson5/modern-iu-thesis"
+
+[modern-nju-thesis."0.4.0"]
+url = "https://packages.typst.org/preview/modern-nju-thesis-0.4.0.tar.gz"
+hash = "sha256-3F1HXZfxlLgbcTNfe37YHIW5M/EY5zGy4thnlVFBfzU="
+typstDeps = [
+ "cuti_0_2_1",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "pinit_0_2_2",
+ "tablex_0_0_9",
+]
+description = "南京大学学位论文模板。Modern Nanjing University Thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/nju-lug/modern-nju-thesis"
+
+[modern-nju-thesis."0.3.4"]
+url = "https://packages.typst.org/preview/modern-nju-thesis-0.3.4.tar.gz"
+hash = "sha256-7LS1T5FEfT2wImsa4j/V3RyE0sgL7B1mskceyqw7XtM="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "cuti_0_2_1",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "pinit_0_1_3",
+ "tablex_0_0_8",
+]
+description = "南京大学学位论文模板。Modern Nanjing University Thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/nju-lug/modern-nju-thesis"
+
+[modern-nju-thesis."0.3.3"]
+url = "https://packages.typst.org/preview/modern-nju-thesis-0.3.3.tar.gz"
+hash = "sha256-/UwN2FHrMxqghpbpOvD6M70WkrINo+VMMXRqwjh5xgA="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "cuti_0_2_1",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "pinit_0_1_3",
+ "tablex_0_0_8",
+]
+description = "南京大学学位论文模板。Modern Nanjing University Thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/nju-lug/modern-nju-thesis"
+
+[modern-nju-thesis."0.3.2"]
+url = "https://packages.typst.org/preview/modern-nju-thesis-0.3.2.tar.gz"
+hash = "sha256-iOURaHUn+z7+83WGNWB+XI+d8x7m/kt69hOp2m7c8F8="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "cuti_0_2_1",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "pinit_0_1_3",
+ "tablex_0_0_8",
+]
+description = "南京大学学位论文模板。Modern Nanjing University Thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[modern-nju-thesis."0.3.1"]
+url = "https://packages.typst.org/preview/modern-nju-thesis-0.3.1.tar.gz"
+hash = "sha256-T/XZH/zAPYoZIo3bI6OHgx4rglyNmlD8g2Wvi08MBqc="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "cuti_0_2_1",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "pinit_0_1_3",
+ "tablex_0_0_8",
+]
+description = "南京大学学位论文模板。Modern Nanjing University Thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[modern-nju-thesis."0.3.0"]
+url = "https://packages.typst.org/preview/modern-nju-thesis-0.3.0.tar.gz"
+hash = "sha256-MIuxHhHVUAMsi+NWzZQtBMna4CqFwvZ2Ms9mx2PDrRs="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "cuti_0_2_1",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "pinit_0_1_3",
+ "tablex_0_0_8",
+]
+description = "南京大学学位论文模板。Modern Nanjing University Thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/nju-lug/modern-nju-thesis"
+
+[modern-ovgu-fma-polylux."0.1.0"]
+url = "https://packages.typst.org/preview/modern-ovgu-fma-polylux-0.1.0.tar.gz"
+hash = "sha256-lNkmssNGU3A+07AyaRzY1oHn253I+xRKX59IJWkgf1s="
+typstDeps = [
+ "ez-today_0_3_0",
+ "polylux_0_4_0",
+]
+description = "Unofficial template for creating presentations with Polylux in the style of the Faculty of Mathematics at the Otto-von-Guericke-University Magdeburg"
+license = [
+ "MIT",
+]
+
+[modern-report-umfds."0.1.2"]
+url = "https://packages.typst.org/preview/modern-report-umfds-0.1.2.tar.gz"
+hash = "sha256-YVoSuE6U+FJFLTe71/8vFpd3oP6bRGQ6ovBAiniVUWU="
+typstDeps = []
+description = "A template for writing reports for the Faculty of Sciences of the University of Montpellier"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/UM-nerds/modern-report-umfds"
+
+[modern-report-umfds."0.1.1"]
+url = "https://packages.typst.org/preview/modern-report-umfds-0.1.1.tar.gz"
+hash = "sha256-Vjuk1yYOCV5kfHebHrrhWxDeLVE4dOVokQ4WhnxwHJs="
+typstDeps = []
+description = "A template for writing reports for the Faculty of Sciences of the University of Montpellier"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/UM-nerds/modern-report-umfds"
+
+[modern-report-umfds."0.1.0"]
+url = "https://packages.typst.org/preview/modern-report-umfds-0.1.0.tar.gz"
+hash = "sha256-Fgxyw6/BmeiB+oWabdoZ/8dmJbKau0ZKTXOmryi+OPE="
+typstDeps = []
+description = "A template for writing reports for the Faculty of Sciences of the University of Montpellier"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/UM-nerds/modern-report-umfds"
+
+[modern-resume."0.1.0"]
+url = "https://packages.typst.org/preview/modern-resume-0.1.0.tar.gz"
+hash = "sha256-J7ACHS7XS/vTX5CBZW/Z+W2y87m+MR39StgBQu/A/wE="
+typstDeps = []
+description = "A modern resume/CV template"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/peterpf/modern-typst-resume"
+
+[modern-russian-dissertation."0.0.1"]
+url = "https://packages.typst.org/preview/modern-russian-dissertation-0.0.1.tar.gz"
+hash = "sha256-dFgLnAx1rwcVmwu6vogKMmR8i+7wBntylDsZZcgXQ+U="
+typstDeps = [
+ "codly_0_2_0",
+ "physica_0_9_3",
+ "tablex_0_0_8",
+ "unify_0_5_0",
+]
+description = "A russian phd thesis template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SergeyGorchakov/russian-phd-thesis-template-typst"
+
+[modern-shu-thesis."0.3.1"]
+url = "https://packages.typst.org/preview/modern-shu-thesis-0.3.1.tar.gz"
+hash = "sha256-25P4yWiDyB1aKjaYjfSeZzJZr7RUuDacp87HQ0zQU/Y="
+typstDeps = [
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+ "lovelace_0_2_0",
+ "numbly_0_1_0",
+]
+description = "上海大学本科毕业论文模板"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/XY-cpp/typst-shu-thesis"
+
+[modern-shu-thesis."0.3.0"]
+url = "https://packages.typst.org/preview/modern-shu-thesis-0.3.0.tar.gz"
+hash = "sha256-O2lL3iMeNhkev+ak2zz0KZs2Hjw0xXbRKd1TE6UxPqQ="
+typstDeps = [
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+ "lovelace_0_2_0",
+ "numbly_0_1_0",
+]
+description = "上海大学本科毕业论文模板"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/XY-cpp/typst-shu-thesis"
+
+[modern-shu-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/modern-shu-thesis-0.2.0.tar.gz"
+hash = "sha256-Bz9MLdymirQRwOSSu0+70eCJObRld4zdTnBXo+k9GV8="
+typstDeps = [
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+ "lovelace_0_2_0",
+ "numbly_0_1_0",
+]
+description = "上海大学本科毕业论文模板"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/XY-cpp/typst-shu-thesis"
+
+[modern-shu-thesis."0.1.1"]
+url = "https://packages.typst.org/preview/modern-shu-thesis-0.1.1.tar.gz"
+hash = "sha256-RY73DkkPyJJuXnCgVYC8SDUW9YRMcWgifZjtDOlKTRw="
+typstDeps = [
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+ "numbly_0_1_0",
+]
+description = "上海大学本科毕业论文模板"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/XY-cpp/typst-shu-thesis"
+
+[modern-shu-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/modern-shu-thesis-0.1.0.tar.gz"
+hash = "sha256-aae7Sx1ZM9AZHDV5nlEV8LT7m8A+4s5hrRJY1/l/kZg="
+typstDeps = [
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+ "numbly_0_1_0",
+]
+description = "上海大学本科毕业论文模板"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/XY-cpp/typst-shu-thesis"
+
+[modern-sjtu-thesis."0.2.1"]
+url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.2.1.tar.gz"
+hash = "sha256-OTr8YH7Z3ORoj8tsDgk/+0n76lromICUkY1RklChWTk="
+typstDeps = [
+ "a2c-nums_0_0_1",
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+ "numbly_0_1_0",
+]
+description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tzhTaylor/modern-sjtu-thesis"
+
+[modern-sjtu-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.2.0.tar.gz"
+hash = "sha256-dfcBB5kKYE/5GyX/QA+f+rwMVBHooOOcyEvzFAdC7RY="
+typstDeps = [
+ "a2c-nums_0_0_1",
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+ "numbly_0_1_0",
+]
+description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tzhTaylor/modern-sjtu-thesis"
+
+[modern-sjtu-thesis."0.1.2"]
+url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.1.2.tar.gz"
+hash = "sha256-ftyfROArD2TG5cZI0dcJ3ebfqdWnMNpWNDPRlbXlspc="
+typstDeps = [
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+ "numbly_0_1_0",
+]
+description = "上海交通大学研究生学位论文 Typst 模板。Shanghai Jiao Tong University Graduate Thesis Typst Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tzhTaylor/typst-sjtu-thesis-master"
+
+[modern-sjtu-thesis."0.1.1"]
+url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.1.1.tar.gz"
+hash = "sha256-7NsuJtSawUWVu9cO848umWtMu27EXkfJ8v8Hz4boMhs="
+typstDeps = [
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+ "numbly_0_1_0",
+ "outrageous_0_3_0",
+]
+description = "上海交通大学硕士学位论文 Typst 模板。Shanghai Jiao Tong University Graduate Thesis Typst Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tzhTaylor/typst-sjtu-thesis-master"
+
+[modern-sjtu-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.1.0.tar.gz"
+hash = "sha256-2tj8RkbzC52W6VegrE+YavUYVfFBXfqTMO2WztefPtg="
+typstDeps = [
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+ "numbly_0_1_0",
+ "outrageous_0_1_0",
+]
+description = "上海交通大学硕士学位论文 Typst 模板。Shanghai Jiao Tong University Master Thesis Typst Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tzhTaylor/typst-sjtu-thesis-master"
+
+[modern-sustech-thesis."0.1.1"]
+url = "https://packages.typst.org/preview/modern-sustech-thesis-0.1.1.tar.gz"
+hash = "sha256-QDo0ILNewya1ecyfMX1lcqzG5OvUkPOOZuTcEb2vfNQ="
+typstDeps = []
+description = "南方科技大学本科毕业设计(论文)模板. SUSTech Bachelor Thesis Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Duolei-Wang/sustech-thesis-typst"
+
+[modern-sustech-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/modern-sustech-thesis-0.1.0.tar.gz"
+hash = "sha256-dp2wyxgYMX2DJA1odakPKZusJ/4GeoOe9HT+YkKo2F0="
+typstDeps = []
+description = "南方科技大学本科毕业设计(论文)模板. SUSTech Bachelor Thesis Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Duolei-Wang/sustech-thesis-typst"
+
+[modern-sysu-thesis."0.4.0"]
+url = "https://packages.typst.org/preview/modern-sysu-thesis-0.4.0.tar.gz"
+hash = "sha256-bC2JvIBViitWFsBsswq6cyQ9tRQvRb+lKe6dgObmlIY="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "numblex_0_1_1",
+ "numbly_0_1_0",
+ "outrageous_0_1_0",
+ "tablex_0_0_8",
+]
+description = "中山大学学位论文 Typst 模板,A Typst template for SYSU thesis"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/sysu-gitlab/thesis-template/better-thesis"
+
+[modern-sysu-thesis."0.3.0"]
+url = "https://packages.typst.org/preview/modern-sysu-thesis-0.3.0.tar.gz"
+hash = "sha256-P1ay33X2fzmnK+FIO7/C7znU10QKKuGbQZctSysfJQw="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "numblex_0_1_1",
+ "outrageous_0_1_0",
+ "tablex_0_0_8",
+]
+description = "中山大学学位论文 Typst 模板,A Typst template for SYSU thesis"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/sysu-gitlab/thesis-template/better-thesis"
+
+[modern-sysu-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/modern-sysu-thesis-0.2.0.tar.gz"
+hash = "sha256-FTvHq6q+Z7aDzFZknbB/ZEnp8gId44/6NOxnIYvyh0Q="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "numblex_0_1_1",
+ "outrageous_0_1_0",
+ "tablex_0_0_8",
+]
+description = "中山大学学位论文 Typst 模板,A Typst template for SYSU thesis"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/sysu-gitlab/thesis-template/better-thesis"
+
+[modern-sysu-thesis."0.1.1"]
+url = "https://packages.typst.org/preview/modern-sysu-thesis-0.1.1.tar.gz"
+hash = "sha256-exx84YlSALjILLaJ5MAR0elZXhuQuRqgJb6a1xDluqk="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "tablex_0_0_8",
+]
+description = "中山大学学位论文 Typst 模板,A Typst template for SYSU thesis"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/sysu-gitlab/thesis-template/better-thesis"
+
+[modern-sysu-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/modern-sysu-thesis-0.1.0.tar.gz"
+hash = "sha256-/dJWKfvvPOA6m1+Oe6snpaVvfNPzWaQH34HKlN5wrBw="
+typstDeps = [
+ "anti-matter_0_0_2",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "tablex_0_0_8",
+]
+description = "中山大学学位论文 Typst 模板,A Typst template for SYSU thesis"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/sysu-gitlab/thesis-template/better-thesis"
+
+[modern-szu-thesis."0.4.0"]
+url = "https://packages.typst.org/preview/modern-szu-thesis-0.4.0.tar.gz"
+hash = "sha256-Tz3zDaCYNfLGuzSSdTnrkV+pX/uo/MPGSGwfFiPlKEg="
+typstDeps = [
+ "cuti_0_3_0",
+ "hydra_0_6_0",
+ "i-figured_0_2_4",
+ "numbly_0_1_0",
+ "pinit_0_2_2",
+ "tablex_0_0_9",
+]
+description = "深圳大学学位论文模板由南京大学学位论文模板修改而成。Modern Shenzhen University Thesis is modified from modern-nju-thesis"
+license = [
+ "MIT",
+]
+homepage = "https://gitee.com/yjdyamv/modern-szu-thesis"
+
+[modern-szu-thesis."0.3.0"]
+url = "https://packages.typst.org/preview/modern-szu-thesis-0.3.0.tar.gz"
+hash = "sha256-PAnKU0ccuZITAL+anqSACkYMzNqXKHmGS0kg5skjSgA="
+typstDeps = [
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+ "tablex_0_0_9",
+]
+description = "深圳大学学位论文模板由南京大学学位论文模板修改而成。Modern Shenzhen University Thesis is modified from modern-nju-thesis"
+license = [
+ "MIT",
+]
+homepage = "https://gitee.com/yjdyamv/modern-szu-thesis"
+
+[modern-szu-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/modern-szu-thesis-0.2.0.tar.gz"
+hash = "sha256-BBQp5FizcgQgd4hfKfzXby+PG3TuhtmkoV2IiCgbZpo="
+typstDeps = [
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "outrageous_0_3_0",
+ "tablex_0_0_9",
+]
+description = "深圳大学学位论文模板由南京大学学位论文模板修改而成。Modern Shenzhen University Thesis is modified from modern-nju-thesis"
+license = [
+ "MIT",
+]
+homepage = "https://gitee.com/yjdyamv/modern-szu-thesis"
+
+[modern-szu-thesis."0.1.1"]
+url = "https://packages.typst.org/preview/modern-szu-thesis-0.1.1.tar.gz"
+hash = "sha256-EHCewSw0xT1cRPi6CH72IA0Hk7Kef6RoB5bdU4LGpws="
+typstDeps = [
+ "cuti_0_2_1",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "tablex_0_0_9",
+]
+description = "深圳大学学位论文模板由南京大学学位论文模板修改而成。Modern Shenzhen University Thesis is modified from modern-nju-thesis"
+license = [
+ "MIT",
+]
+homepage = "https://gitee.com/yjdyamv/modern-szu-thesis"
+
+[modern-szu-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/modern-szu-thesis-0.1.0.tar.gz"
+hash = "sha256-PbQVGaWqUM1KRVZnjK5a5PO/M1rSt2mdxpOgtSwO9F4="
+typstDeps = [
+ "cuti_0_2_1",
+ "i-figured_0_1_0",
+ "i-figured_0_2_4",
+ "outrageous_0_1_0",
+ "tablex_0_0_9",
+]
+description = "深圳大学学位论文模板由南京大学学位论文模板修改而成。Modern Shenzhen University Thesis is modified from modern-nju-thesis"
+license = [
+ "MIT",
+]
+
+[modern-technique-report."0.1.0"]
+url = "https://packages.typst.org/preview/modern-technique-report-0.1.0.tar.gz"
+hash = "sha256-QCgSPrgnKpvKPwzpbaAVO+at2MIlbGA58g2tgTFboqw="
+typstDeps = []
+description = "A template for creating modern-style technique report in Typst"
+license = [
+ "MIT",
+]
+
+[modern-uit-thesis."0.1.4"]
+url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.4.tar.gz"
+hash = "sha256-dmsNjOD9kf4PHggxX0r1Dzfra9h9T7EmzuIYG1T3ggM="
+typstDeps = [
+ "codly_1_2_0",
+ "ctheorems_1_1_3",
+ "glossarium_0_5_4",
+ "physica_0_9_5",
+ "subpar_0_2_1",
+]
+description = "A Modern Thesis Template in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/mrtz-j/typst-thesis-template"
+
+[modern-uit-thesis."0.1.3"]
+url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.3.tar.gz"
+hash = "sha256-xaxqLTU1F4kRzhUABdnb2E2A1xnNwNlRhaFhm5aJnQw="
+typstDeps = [
+ "codly_1_2_0",
+ "ctheorems_1_1_3",
+ "glossarium_0_5_0",
+ "glossarium_0_5_1",
+ "outrageous_0_3_0",
+ "physica_0_9_4",
+ "subpar_0_2_0",
+]
+description = "A Modern Thesis Template in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/mrtz-j/typst-thesis-template"
+
+[modern-uit-thesis."0.1.2"]
+url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.2.tar.gz"
+hash = "sha256-469FTTHCVdRKp8oxray2RAVsLTnvi0LneBc2z/I2nzk="
+typstDeps = [
+ "codly_1_0_0",
+ "glossarium_0_5_0",
+ "outrageous_0_3_0",
+ "physica_0_9_3",
+ "subpar_0_1_1",
+]
+description = "A Modern Thesis Template in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/mrtz-j/typst-thesis-template"
+
+[modern-uit-thesis."0.1.1"]
+url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.1.tar.gz"
+hash = "sha256-ZgQ3L4yHMKrl6EPvXqNUfdSm1fjAxXLyHAPzslPU5CQ="
+typstDeps = [
+ "codly_1_0_0",
+ "outrageous_0_2_0",
+ "physica_0_9_3",
+ "subpar_0_1_1",
+]
+description = "A Modern Thesis Template in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/mrtz-j/typst-thesis-template"
+
+[modern-uit-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.0.tar.gz"
+hash = "sha256-JWDY8UufvD27QFu4haDyDvZAdnOKAheal+/YuSFHdRs="
+typstDeps = [
+ "codly_1_0_0",
+ "outrageous_0_1_0",
+ "physica_0_9_3",
+ "subpar_0_1_1",
+]
+description = "A Modern Thesis Template in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/mrtz-j/typst-thesis-template"
+
+[modern-unimib-thesis."0.1.1"]
+url = "https://packages.typst.org/preview/modern-unimib-thesis-0.1.1.tar.gz"
+hash = "sha256-JhW++7nk8wbg5Zvtr49OCH93p4y0aJCkEIQSPwtK+Mk="
+typstDeps = []
+description = "A thesis template of the University of Milano-Bicocca"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/michelebanfi/unimib-typst-template"
+
+[modern-unimib-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/modern-unimib-thesis-0.1.0.tar.gz"
+hash = "sha256-C1OcVKF1Bz9MDgg84Dack+35PUgYgEuy77m2+zFdfBY="
+typstDeps = []
+description = "A thesis template of the University of Milano-Bicocca heavily inspired by with Leon Weber in an advisory role"
+license = [
+ "MIT-0",
+]
+
+[not-tudabeamer-2023."0.2.0"]
+url = "https://packages.typst.org/preview/not-tudabeamer-2023-0.2.0.tar.gz"
+hash = "sha256-ypfYI9XO11k8I7HIivpA/4M7L/cVmMyQaqVjRpC3V+k="
+typstDeps = [
+ "touying_0_6_1",
+]
+description = "Not the TU Darmstadt Beamer 2023 template"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/mohe2015/not-tudabeamer-2023"
+
+[not-tudabeamer-2023."0.1.0"]
+url = "https://packages.typst.org/preview/not-tudabeamer-2023-0.1.0.tar.gz"
+hash = "sha256-uBOEeuXusrub7j7uBGD0inHThOUPwklTkY90bhEN5e4="
+typstDeps = [
+ "touying_0_5_2",
+]
+description = "Not the TU Darmstadt Beamer 2023 template"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/mohe2015/not-tudabeamer-2023"
+
+[note-me."0.5.0"]
+url = "https://packages.typst.org/preview/note-me-0.5.0.tar.gz"
+hash = "sha256-ayFptayKIUIMeSxBI/LJtrzCTTd0uhbGek9VM0CFnMY="
+typstDeps = []
+description = "Adds GitHub-style Admonitions (Alerts) to Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/FlandiaYingman/note-me"
+
+[note-me."0.4.0"]
+url = "https://packages.typst.org/preview/note-me-0.4.0.tar.gz"
+hash = "sha256-4j+KXRrzR5+EEWvbOVB0YwOYaVqW+fXNDtTbq+EwvU8="
+typstDeps = []
+description = "Adds GitHub-style Admonitions (Alerts) to Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/FlandiaYingman/note-me"
+
+[note-me."0.3.0"]
+url = "https://packages.typst.org/preview/note-me-0.3.0.tar.gz"
+hash = "sha256-fZGBHdcb8r4jYtnNB1JqKFwDZe9bw8YcGsHCkGK/2J8="
+typstDeps = []
+description = "Adds GitHub-style Admonitions (Alerts) to Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/FlandiaYingman/note-me"
+
+[note-me."0.2.1"]
+url = "https://packages.typst.org/preview/note-me-0.2.1.tar.gz"
+hash = "sha256-8nCy9IBKRyS0rHduIXT/Fliqx+lIVeb1T4njsd759g4="
+typstDeps = []
+description = "Adds GitHub-style Admonitions (Alerts) to Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/FlandiaYingman/note-me"
+
+[note-me."0.1.1"]
+url = "https://packages.typst.org/preview/note-me-0.1.1.tar.gz"
+hash = "sha256-tyRmooIGRBirjyEnwDSxwcieXyFj1jpijJ0/VLEsUs0="
+typstDeps = []
+description = "Adds GitHub-style Admonitions (Alerts) to Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/FlandiaYingman/note-me"
+
+[note-me."0.1.0"]
+url = "https://packages.typst.org/preview/note-me-0.1.0.tar.gz"
+hash = "sha256-YAhDFyvQjaIFlBtbQjduKv0xppceiNSv7IRkpJZoq5k="
+typstDeps = []
+description = "Adds GitHub-style Admonitions (Alerts) to Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/FlandiaYingman/note-me"
+
+[noteworthy."0.2.0"]
+url = "https://packages.typst.org/preview/noteworthy-0.2.0.tar.gz"
+hash = "sha256-PLIiXffG9EZ6fgP6HyUQv+wqNNZ0y6+TrKkjmT8zjzg="
+typstDeps = [
+ "showybox_2_0_4",
+ "theoretic_0_1_1",
+]
+description = "A Typst template for creating class notes especially for Mathematics"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tarunjana/noteworthy"
+
+[noteworthy."0.1.0"]
+url = "https://packages.typst.org/preview/noteworthy-0.1.0.tar.gz"
+hash = "sha256-78W5FDEQqjSEOplFGxrr8RAw6q1ez7yCdw5gy26rbDk="
+typstDeps = [
+ "showybox_2_0_3",
+ "theoretic_0_1_1",
+]
+description = "A Typst template for creating class notes especially for Mathematics"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tarunjana/noteworthy"
+
+[now-radboud-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/now-radboud-thesis-0.1.0.tar.gz"
+hash = "sha256-W/FUD0C7nUw70CviXnzJsAPOr6wZDNW8eq1dLIv5rFQ="
+typstDeps = []
+description = "Thesis template for Radboud University"
+license = [
+ "BSD-2-Clause",
+]
+homepage = "https://github.com/Jorritboer/radboud-thesis-typst"
+
+[nth."1.0.1"]
+url = "https://packages.typst.org/preview/nth-1.0.1.tar.gz"
+hash = "sha256-3R/rIGPP8rHdZZfmBJ7mJgkRQPZEtco+YGlNqGrwQYY="
+typstDeps = []
+description = "Add english ordinals to numbers, eg. 1st, 2nd, 3rd, 4th"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/extua/nth"
+
+[nth."1.0.0"]
+url = "https://packages.typst.org/preview/nth-1.0.0.tar.gz"
+hash = "sha256-64Rwxvk8s537OBrChb3mMHmVUS3k64CHk8Pfy8Gs5fg="
+typstDeps = []
+description = "Add english ordinals to numbers, eg. 1st, 2nd, 3rd, 4th"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/extua/nth"
+
+[nth."0.2.0"]
+url = "https://packages.typst.org/preview/nth-0.2.0.tar.gz"
+hash = "sha256-5eB1aVPm/fXtMRZnMpvR5Vd3410VDjtRX1XRH0TWQas="
+typstDeps = []
+description = "Add english ordinals to numbers, eg. 1st, 2nd, 3rd, 4th"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/extua/nth"
+
+[nth."0.1.0"]
+url = "https://packages.typst.org/preview/nth-0.1.0.tar.gz"
+hash = "sha256-5b3CXzoUgmzSPkIS0l6ea0y9KdLCAuQ5G5EvWXA3k44="
+typstDeps = []
+description = "Add english ordinals to numbers, eg. 1st, 2nd, 3rd, 4th"
+license = [
+ "MIT-0",
+]
+
+[nulite."0.1.0"]
+url = "https://packages.typst.org/preview/nulite-0.1.0.tar.gz"
+hash = "sha256-K67G/vo5Fbm43MDi0TxNIhhktSTzjayEeyrbcejND84="
+typstDeps = [
+ "ctxjs_0_1_1",
+]
+description = "Generate charts with vegalite"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/j-mueller/typst-vegalite"
+
+[numberingx."0.0.1"]
+url = "https://packages.typst.org/preview/numberingx-0.0.1.tar.gz"
+hash = "sha256-js60ARCG8xaVtbF0iVm9Dx+nzISfNni78UUHyhi51Hw="
+typstDeps = []
+description = "Extended numbering patterns using the CSS Counter Styles spec"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/edhebi/numberingx"
+
+[numblex."0.2.0"]
+url = "https://packages.typst.org/preview/numblex-0.2.0.tar.gz"
+hash = "sha256-cGQUhBxOwzUqcY86mOwcPHow+c2HgjgMJQToi5UYfic="
+typstDeps = [
+ "badgery_0_1_1",
+ "pinit_0_1_4",
+ "showybox_2_0_1",
+]
+description = "Numbering helper"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ParaN3xus/numblex"
+
+[numblex."0.1.1"]
+url = "https://packages.typst.org/preview/numblex-0.1.1.tar.gz"
+hash = "sha256-K6ehUwfvHZI5R8rWku4eseKECyuz/vEfCXiIckP19mg="
+typstDeps = []
+description = "Numbering helper"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ParaN3xus/numblex"
+
+[numblex."0.1.0"]
+url = "https://packages.typst.org/preview/numblex-0.1.0.tar.gz"
+hash = "sha256-jkwCizbzyNR7vhYIUTgnhOWhDpfRW7RvVUaStexPZl8="
+typstDeps = []
+description = "Numbering helper"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ParaN3xus/numblex"
+
+[numbly."0.1.0"]
+url = "https://packages.typst.org/preview/numbly-0.1.0.tar.gz"
+hash = "sha256-82JgsFVWc6xu/bCnP2SfT5nqaKANBrvE7tTxRM71pfc="
+typstDeps = []
+description = "A package that helps you to specify different numbering formats for different levels of headings"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/flaribbit/numbly"
+
+[numty."0.0.5"]
+url = "https://packages.typst.org/preview/numty-0.0.5.tar.gz"
+hash = "sha256-hQ0G8J6ZVCrBxbyA4agWBepGHxLf81qCLxw592UuqO0="
+typstDeps = []
+description = "Numeric Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/PabloRuizCuevas/numty"
+
+[numty."0.0.4"]
+url = "https://packages.typst.org/preview/numty-0.0.4.tar.gz"
+hash = "sha256-Fydu/lJUyf7sG1hrL12Maj2W8nHdXmESfnyHf5U5qkQ="
+typstDeps = []
+description = "Numeric Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/PabloRuizCuevas/numty"
+
+[numty."0.0.3"]
+url = "https://packages.typst.org/preview/numty-0.0.3.tar.gz"
+hash = "sha256-dGUDPKsn0BqzYQsNzpth60DgnK75KZyn/H3HOeA3tW4="
+typstDeps = []
+description = "Numeric Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/PabloRuizCuevas/numty"
+
+[numty."0.0.2"]
+url = "https://packages.typst.org/preview/numty-0.0.2.tar.gz"
+hash = "sha256-X5tao0vBsJvj+oUArvspQoPFz50o2aEfVgg+0h9wwQI="
+typstDeps = []
+description = "Numeric Typst"
+license = [
+ "MIT",
+]
+
+[numty."0.0.1"]
+url = "https://packages.typst.org/preview/numty-0.0.1.tar.gz"
+hash = "sha256-LsfMxvUV9psKf2nH/dkbmrG2oGGPZJ+RU+K6gBDsBqA="
+typstDeps = []
+description = "Numeric Typst"
+license = [
+ "MIT",
+]
+
+[oasis-align."0.2.0"]
+url = "https://packages.typst.org/preview/oasis-align-0.2.0.tar.gz"
+hash = "sha256-XB8YyrcSP3+jHSik+aE8JybL8Pncju/2MKW3MC85TTA="
+typstDeps = []
+description = "Cleanly place content side by side with equal heights using automatic content sizing"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jdpieck/oasis-align"
+
+[oasis-align."0.1.0"]
+url = "https://packages.typst.org/preview/oasis-align-0.1.0.tar.gz"
+hash = "sha256-P8zM9DvzxAtd+wMZ3Dsv73w22c2GimAhL6N1yP3oynI="
+typstDeps = []
+description = "Cleanly place content side by side with equal heights using automatic content sizing"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jdpieck/oasis-align"
+
+[obsidius."0.1.1"]
+url = "https://packages.typst.org/preview/obsidius-0.1.1.tar.gz"
+hash = "sha256-+kc5cNaQMYbvMlnk7uROWS4bDMkHEiCPQsWOlzjJqXA="
+typstDeps = [
+ "cheq_0_2_2",
+ "obsidius_0_1_0",
+]
+description = "Modern template for study notes"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/l0drex/obsidius"
+
+[obsidius."0.1.0"]
+url = "https://packages.typst.org/preview/obsidius-0.1.0.tar.gz"
+hash = "sha256-kc3dWe/TSJI7i80ZHAmBqmqwXex6doaCvKicF71xblc="
+typstDeps = [
+ "cheq_0_2_2",
+]
+description = "Modern template for study notes"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/l0drex/obsidius"
+
+[octique."0.1.0"]
+url = "https://packages.typst.org/preview/octique-0.1.0.tar.gz"
+hash = "sha256-rBU06k0iuTMRfSD4s+AsgdVyhvonKzKihh1OCGqvs1w="
+typstDeps = []
+description = "GitHub Octicons for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/0x6b/typst-octique"
+
+[october."1.0.0"]
+url = "https://packages.typst.org/preview/october-1.0.0.tar.gz"
+hash = "sha256-WuWV1/OseIvGufcqq7BFO4ynII3V3Q9dI9QDJfuI7bE="
+typstDeps = []
+description = "Simple printable year calendar"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/extua/october"
+
+[ofbnote."0.2.0"]
+url = "https://packages.typst.org/preview/ofbnote-0.2.0.tar.gz"
+hash = "sha256-oLcDhMLAwqJ3vAr1pdzYJamLTju8FDWbEwMr/ib6zQc="
+typstDeps = [
+ "showybox_2_0_1",
+]
+description = "A document template using French Office for biodiversity design guidelines"
+license = [
+ "MIT-0",
+]
+
+[one-liner."0.2.0"]
+url = "https://packages.typst.org/preview/one-liner-0.2.0.tar.gz"
+hash = "sha256-bl5orWMBgaPJl9IGU+kPBCOGdtJC2AryB3351ZoJrWw="
+typstDeps = []
+description = "Automatically adjust the text size to make it fit on one line filling the available space"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/mtolk/one-liner"
+
+[one-liner."0.1.0"]
+url = "https://packages.typst.org/preview/one-liner-0.1.0.tar.gz"
+hash = "sha256-f7aLyhq5sFVjKsmUFpMbqqXA88a5OdnOf/iNMXwiAH0="
+typstDeps = []
+description = "Automatically adjust the text size to make it fit on one line filling the available space"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/mtolk/one-liner"
+
+[optimal-ovgu-thesis."0.1.1"]
+url = "https://packages.typst.org/preview/optimal-ovgu-thesis-0.1.1.tar.gz"
+hash = "sha256-O9pjyJ5SQ8cWtXAQt9x/DqtGDijqqwvDKlreCNT2bx4="
+typstDeps = []
+description = "A thesis template for Otto von Guericke University Magdeburg"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/v411e/optimal-ovgu-thesis"
+
+[optimal-ovgu-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/optimal-ovgu-thesis-0.1.0.tar.gz"
+hash = "sha256-vd9BW0EA9RlV3bkrrStjgPrZRv3bBdCbNLySy5tNNcg="
+typstDeps = []
+description = "A thesis template for Otto von Guericke University Magdeburg"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/v411e/optimal-ovgu-thesis"
+
+[orange-book."0.6.0"]
+url = "https://packages.typst.org/preview/orange-book-0.6.0.tar.gz"
+hash = "sha256-ZAuCUReYMujh/T7h2A7zEZER1R66IUcVbfCgnSq89Sg="
+typstDeps = []
+description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/flavio20002/typst-orange-template"
+
+[orange-book."0.5.0"]
+url = "https://packages.typst.org/preview/orange-book-0.5.0.tar.gz"
+hash = "sha256-x4rxR2mF02lhEl1XV+eS97kyzETLi3O6bjvgmbnkxHY="
+typstDeps = []
+description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/flavio20002/typst-orange-template"
+
+[orange-book."0.4.0"]
+url = "https://packages.typst.org/preview/orange-book-0.4.0.tar.gz"
+hash = "sha256-civayGQHNndzKhwlU+oqitMcXiwLLqpofYkRzC5xsOQ="
+typstDeps = []
+description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/flavio20002/typst-orange-template"
+
+[orange-book."0.3.0"]
+url = "https://packages.typst.org/preview/orange-book-0.3.0.tar.gz"
+hash = "sha256-j90flAvBlWhQSGKMG5GBuNFnAnbnbaazIHfR9gcSAWw="
+typstDeps = []
+description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/flavio20002/typst-orange-template"
+
+[orange-book."0.2.0"]
+url = "https://packages.typst.org/preview/orange-book-0.2.0.tar.gz"
+hash = "sha256-tVpcEc97zeAULP6DTVisYq0H46wxhr+66Eh1z5X4UXM="
+typstDeps = []
+description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/flavio20002/typst-orange-template"
+
+[orange-book."0.1.0"]
+url = "https://packages.typst.org/preview/orange-book-0.1.0.tar.gz"
+hash = "sha256-O9WUlDruwx/ZbBmxgX3WiYO9H5QLG9VtSoLRmYEfY2Y="
+typstDeps = []
+description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/flavio20002/typst-orange-template"
+
+[ori."0.2.2"]
+url = "https://packages.typst.org/preview/ori-0.2.2.tar.gz"
+hash = "sha256-2MWM9GPjEyOQXpcAzDXrsEZxNtsaAvtGCm+cVOx5j9o="
+typstDeps = [
+ "cmarker_0_1_2",
+ "mitex_0_2_5",
+ "numbly_0_1_0",
+ "tablem_0_2_0",
+ "theorion_0_3_2",
+]
+description = "Simple enough but expressive template for notes, reports, and documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-ori"
+
+[ori."0.2.1"]
+url = "https://packages.typst.org/preview/ori-0.2.1.tar.gz"
+hash = "sha256-P+RGsouE8PW3UkZebAE7p35UC2tm3vcfcKkG1VFKfaY="
+typstDeps = [
+ "cmarker_0_1_2",
+ "mitex_0_2_5",
+ "numbly_0_1_0",
+ "tablem_0_2_0",
+ "theorion_0_3_1",
+]
+description = "Simple enough but expressive template for notes, reports, and documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-ori"
+
+[ori."0.2.0"]
+url = "https://packages.typst.org/preview/ori-0.2.0.tar.gz"
+hash = "sha256-xRBF1KY+n2+3csfasHtzeVwh+uZYcwGFgJTrTkj/7D0="
+typstDeps = [
+ "cmarker_0_1_2",
+ "mitex_0_2_5",
+ "numbly_0_1_0",
+ "tablem_0_2_0",
+ "theorion_0_3_0",
+]
+description = "Simple enough but expressive template for notes, reports, and documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-ori"
+
+[ori."0.1.0"]
+url = "https://packages.typst.org/preview/ori-0.1.0.tar.gz"
+hash = "sha256-9A3v2K1rLQRmLEcK6cPdCpLuGCcmNwJlzmtIianbINs="
+typstDeps = [
+ "cmarker_0_1_2",
+ "mitex_0_2_5",
+ "numbly_0_1_0",
+ "tablem_0_2_0",
+ "theorion_0_2_0",
+]
+description = "Simple enough but expressive template for notes, reports, and documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-ori"
+
+[ourchat."0.1.0"]
+url = "https://packages.typst.org/preview/ourchat-0.1.0.tar.gz"
+hash = "sha256-2fY2FGTSaUD9HDdI1A3SSD20l0nKQKUzcc99z03/deg="
+typstDeps = []
+description = "Forge wonderful chat messages"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/QuadnucYard/ourchat-typ"
+
+[ouset."0.2.0"]
+url = "https://packages.typst.org/preview/ouset-0.2.0.tar.gz"
+hash = "sha256-UjcQaPItxwmC1LgZzNZRIUP98zXV4eZ2du/8b3t7uOM="
+typstDeps = []
+description = "Package providing over- and underset functions for math mode"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ludwig-austermann/typst-ouset"
+
+[ouset."0.1.1"]
+url = "https://packages.typst.org/preview/ouset-0.1.1.tar.gz"
+hash = "sha256-SyFqeQxDWIVA6PmBJ4cqrqOVcvezJwkn0maVzDszvDQ="
+typstDeps = []
+description = "Package providing over- and underset functions for math mode"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ludwig-austermann/typst-ouset"
+
+[ouset."0.1.0"]
+url = "https://packages.typst.org/preview/ouset-0.1.0.tar.gz"
+hash = "sha256-y9VWwZzWE6gwQSdzVZdyEcf/plIaGu+VdguBRhZH8Ms="
+typstDeps = []
+description = "Package providing over- and underset functions for math mode"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ludwig-austermann/typst-ouset"
+
+[outline-summaryst."0.1.0"]
+url = "https://packages.typst.org/preview/outline-summaryst-0.1.0.tar.gz"
+hash = "sha256-GXzDNrAvyOmiIvWxnMB+lqdkYGTzNUxC5uTAjsbXv7Q="
+typstDeps = []
+description = "A basic template for including a summary for each entry in the table of contents. Useful for writing books"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/aarneng/Outline-Summary"
+
+[outrageous."0.4.0"]
+url = "https://packages.typst.org/preview/outrageous-0.4.0.tar.gz"
+hash = "sha256-cBUYjaxeeRbZhoLeLPmLM/mUxeutjG5QOmBqslJUeO8="
+typstDeps = [
+ "i-figured_0_2_4",
+]
+description = "Easier customization of outline entries"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/RubixDev/typst-outrageous"
+
+[outrageous."0.3.0"]
+url = "https://packages.typst.org/preview/outrageous-0.3.0.tar.gz"
+hash = "sha256-OGHBxZgEoelyKN9GRFjno4BD85/szsdcNnT6tghdR/Y="
+typstDeps = []
+description = "Easier customization of outline entries"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/RubixDev/typst-outrageous"
+
+[outrageous."0.2.0"]
+url = "https://packages.typst.org/preview/outrageous-0.2.0.tar.gz"
+hash = "sha256-VxN1ik+CE6UJxP2ZSUSdIJxCmMraoa5nvYvW3Fet0ls="
+typstDeps = []
+description = "Easier customization of outline entries"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/RubixDev/typst-outrageous"
+
+[outrageous."0.1.0"]
+url = "https://packages.typst.org/preview/outrageous-0.1.0.tar.gz"
+hash = "sha256-zzCm2YnsAkrLFcxIatITP8LEt8nZHhW11WOK55RdsGQ="
+typstDeps = []
+description = "Easier customization of outline entries"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/RubixDev/typst-outrageous"
+
+[owlbear."0.0.1"]
+url = "https://packages.typst.org/preview/owlbear-0.0.1.tar.gz"
+hash = "sha256-hOzglktgOt9SDguI8hxIv2KS2pK9yLSFIjw9NEaPWmI="
+typstDeps = [
+ "droplet_0_3_1",
+]
+description = "Create fancy-looking homebrewn Dungeons and Dragons 2024 edition"
+license = [
+ "AGPL-3.0-only",
+]
+homepage = "https://gitlab.com/doggobit/typst-owlbear"
+
+[oxifmt."0.2.1"]
+url = "https://packages.typst.org/preview/oxifmt-0.2.1.tar.gz"
+hash = "sha256-Cl6Y34d3fi6aB07HIk4zsyy0ucHgWCId0yMVxE4DnWw="
+typstDeps = []
+description = "Convenient Rust-like string formatting in Typst"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/PgBiel/typst-oxifmt"
+
+[oxifmt."0.2.0"]
+url = "https://packages.typst.org/preview/oxifmt-0.2.0.tar.gz"
+hash = "sha256-X9AgFOy8ireDrH4Hnvmo2o7X9maMgrw/mkgX9jGcJvc="
+typstDeps = []
+description = "Convenient Rust-like string formatting in Typst"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/PgBiel/typst-oxifmt"
+
+[paddling-tongji-thesis."0.1.1"]
+url = "https://packages.typst.org/preview/paddling-tongji-thesis-0.1.1.tar.gz"
+hash = "sha256-Td3duVmDepTzdrAo8nJNF1n8fsu8oTt45kNFvAkHNi8="
+typstDeps = [
+ "algo_0_3_3",
+ "i-figured_0_2_2",
+ "tablex_0_0_6",
+]
+description = "同济大学本科生毕业设计论文模板 | Tongji University Undergraduate Thesis Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TJ-CSCCG/tongji-undergrad-thesis-typst.git"
+
+[parcio-thesis."0.2.1"]
+url = "https://packages.typst.org/preview/parcio-thesis-0.2.1.tar.gz"
+hash = "sha256-XDh2M16Hlg6EOl9ATbxnEEqrSX1G2RzymYB+gQPB5TU="
+typstDeps = [
+ "drafting_0_2_2",
+ "subpar_0_2_1",
+]
+description = "A simple thesis template based on the ParCIO working group at OvGU Magdeburg"
+license = [
+ "0BSD",
+]
+homepage = "https://github.com/xkevio/parcio-typst/"
+
+[parcio-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/parcio-thesis-0.2.0.tar.gz"
+hash = "sha256-6wia86GXraLqTDm08H1RGT+dkOYTISO3Jo8QUVl9aO0="
+typstDeps = [
+ "drafting_0_2_2",
+ "subpar_0_2_1",
+]
+description = "A simple thesis template based on the ParCIO working group at OvGU Magdeburg"
+license = [
+ "0BSD",
+]
+homepage = "https://github.com/xkevio/parcio-typst/"
+
+[parcio-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/parcio-thesis-0.1.0.tar.gz"
+hash = "sha256-l0x4+MvU3ATvD2YKndefrkd3p3jr+EOq+d1YTB4WXRA="
+typstDeps = [
+ "drafting_0_2_0",
+ "subpar_0_1_1",
+]
+description = "A simple thesis template based on the ParCIO working group at OvGU Magdeburg"
+license = [
+ "0BSD",
+]
+homepage = "https://github.com/xkevio/parcio-typst/"
+
+[paris-saclay-thesis-flat."1.0.2"]
+url = "https://packages.typst.org/preview/paris-saclay-thesis-flat-1.0.2.tar.gz"
+hash = "sha256-1r97t7XmOmgEWw6HdpTYdI8UCLkaAykHgon+WsfbTyI="
+typstDeps = [
+ "colorful-boxes_1_4_1",
+]
+description = "An unofficial, flat-design template for Paris-Saclay University theses"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/sebmestrallet/typst-paris-saclay-thesis-flat"
+
+[pavemat."0.2.0"]
+url = "https://packages.typst.org/preview/pavemat-0.2.0.tar.gz"
+hash = "sha256-ioR1YD0kpmqmheXasyI1NrbpdjtAOGvzkjGOOkGUuKk="
+typstDeps = []
+description = "Style matrices with custom paths, strokes and fills for appealing visualizations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/QuadnucYard/pavemat"
+
+[pavemat."0.1.0"]
+url = "https://packages.typst.org/preview/pavemat-0.1.0.tar.gz"
+hash = "sha256-lQqV7X4ChIhLPujii4xIBBLSiBcm1+SP4dcHCieG4hI="
+typstDeps = []
+description = "Style matrices with custom paths, strokes and fills for appealing visualizations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/QuadnucYard/pavemat"
+
+[peace-of-posters."0.5.4"]
+url = "https://packages.typst.org/preview/peace-of-posters-0.5.4.tar.gz"
+hash = "sha256-fgOOhaLSCT1wW3lM1hPXlkbOM2FKWvonJWIgsh037O8="
+typstDeps = []
+description = "Create scientific posters in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+[peace-of-posters."0.5.3"]
+url = "https://packages.typst.org/preview/peace-of-posters-0.5.3.tar.gz"
+hash = "sha256-xU0w+cGlPxk9FGCoaBS5vc42leK0Yh2iy475NIgiyZU="
+typstDeps = []
+description = "Create scientific posters in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+[peace-of-posters."0.5.2"]
+url = "https://packages.typst.org/preview/peace-of-posters-0.5.2.tar.gz"
+hash = "sha256-iwvuUueOqE3RSMXrqVa8+tveTeZOwqc+nlWP8MOH3kE="
+typstDeps = []
+description = "Create scientific posters in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+[peace-of-posters."0.5.1"]
+url = "https://packages.typst.org/preview/peace-of-posters-0.5.1.tar.gz"
+hash = "sha256-edmNargI3ipyqWIm/lNlQ8POEq2YMIOFZ5Z5rLmqk2Q="
+typstDeps = []
+description = "Create scientific posters in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+[peace-of-posters."0.5.0"]
+url = "https://packages.typst.org/preview/peace-of-posters-0.5.0.tar.gz"
+hash = "sha256-XdH4i70nHlVZE+RIM6cf9yB9AB+AYJGout1pWlC6Sww="
+typstDeps = []
+description = "Create scientific posters in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+[peace-of-posters."0.4.3"]
+url = "https://packages.typst.org/preview/peace-of-posters-0.4.3.tar.gz"
+hash = "sha256-5kjqJ1N6IToUqsqrOxLraOTws8iLrH0WO+hIszUHbjQ="
+typstDeps = []
+description = "Create scientific posters in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+[peace-of-posters."0.4.1"]
+url = "https://packages.typst.org/preview/peace-of-posters-0.4.1.tar.gz"
+hash = "sha256-cjFib+owp4dA5HUuUZaHBrHI1Y51AacRLoGO8UUUNyo="
+typstDeps = []
+description = "Create scientific posters in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+[peace-of-posters."0.4.0"]
+url = "https://packages.typst.org/preview/peace-of-posters-0.4.0.tar.gz"
+hash = "sha256-6oUFDQnkF3BVMsR4bAIQjwRYFPCrD5rn0isQIeabfWU="
+typstDeps = []
+description = "Create scientific posters in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+[pesha."0.4.0"]
+url = "https://packages.typst.org/preview/pesha-0.4.0.tar.gz"
+hash = "sha256-IsYeDU+O7e4KSTl9+nWJiyRgki3QikYJdoDhZF3kYBQ="
+typstDeps = []
+description = "A clean and minimal template for your résumé or CV"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/pesha"
+
+[pesha."0.3.1"]
+url = "https://packages.typst.org/preview/pesha-0.3.1.tar.gz"
+hash = "sha256-kJY03Azmw/vsMn2jv2Y7gtMRFxniodGT6LSOhwgW66g="
+typstDeps = []
+description = "A clean and minimal template for your résumé or CV"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/pesha"
+
+[pesha."0.3.0"]
+url = "https://packages.typst.org/preview/pesha-0.3.0.tar.gz"
+hash = "sha256-0jtpMVLhM8sZUkX7wTWFC/l+5ol9TiNwqKJeBY423lg="
+typstDeps = []
+description = "A clean and minimal template for your résumé or CV"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/pesha"
+
+[pesha."0.2.0"]
+url = "https://packages.typst.org/preview/pesha-0.2.0.tar.gz"
+hash = "sha256-u8jk2koQiuGLvA6lrbZA9F+JWkvLZEiyyKOQhxECaxs="
+typstDeps = []
+description = "A clean and minimal template for your résumé or CV"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/pesha"
+
+[pesha."0.1.0"]
+url = "https://packages.typst.org/preview/pesha-0.1.0.tar.gz"
+hash = "sha256-ZjqLi94c/O9FMD7PEgDRrxrZwQUWFA5ZrL7e+aCRqxg="
+typstDeps = []
+description = "A clean and minimal template for your résumé or CV"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/talal/pesha"
+
+[physica."0.9.5"]
+url = "https://packages.typst.org/preview/physica-0.9.5.tar.gz"
+hash = "sha256-A+rbcnST7OvNG8BLKc5I8pyEkEjDeXmOPFq1M7t9ptg="
+typstDeps = []
+description = "Math constructs for science and engineering: derivative, differential, vector field, matrix, tensor, Dirac braket, hbar, transpose, conjugate, many operators, and more"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Leedehai/typst-physics"
+
+[physica."0.9.4"]
+url = "https://packages.typst.org/preview/physica-0.9.4.tar.gz"
+hash = "sha256-pNFT6hO0/ByZo3Q1WZGfSGP1MJUucNAZMs5w3zPrLPw="
+typstDeps = []
+description = "Math constructs for science and engineering: derivative, differential, vector field, matrix, tensor, Dirac braket, hbar, transpose, conjugate, many operators, and more"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Leedehai/typst-physics"
+
+[physica."0.9.3"]
+url = "https://packages.typst.org/preview/physica-0.9.3.tar.gz"
+hash = "sha256-4UHvEKA55sTRq+u9R0350h+6AUkCLhPGRzgQeEUJVRA="
+typstDeps = []
+description = "Math constructs for science and engineering: derivative, differential, vector field, matrix, tensor, Dirac braket, hbar, transpose, conjugate, many operators, and more"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Leedehai/typst-physics"
+
+[physica."0.9.2"]
+url = "https://packages.typst.org/preview/physica-0.9.2.tar.gz"
+hash = "sha256-fxHEdnd1OCU3kODLkIMVwPwVC6LQ8K3Le/tkGbQguZI="
+typstDeps = []
+description = "Neat derivative, differential, field, matrix, braket, tensor, hbar, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Leedehai/typst-physics"
+
+[physica."0.9.1"]
+url = "https://packages.typst.org/preview/physica-0.9.1.tar.gz"
+hash = "sha256-XFG3GvazqvE5IRnT5UoyKCGfkvn2LkVwfih3vvO1oiY="
+typstDeps = []
+description = "Neat derivative, differential, field, matrix, braket, tensor, hbar, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Leedehai/typst-physics"
+
+[physica."0.9.0"]
+url = "https://packages.typst.org/preview/physica-0.9.0.tar.gz"
+hash = "sha256-18oFzfgpJS0YcNOAu6pcX132okcrn6DWOYDkbNj4xmo="
+typstDeps = []
+description = "Neat derivative, differential, field, matrix, braket, tensor, hbar, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Leedehai/typst-physics"
+
+[physica."0.8.1"]
+url = "https://packages.typst.org/preview/physica-0.8.1.tar.gz"
+hash = "sha256-JVjk/d8B3AM/Nyl+qpsbx606oDPPHt6Bg3E+2JaL6PI="
+typstDeps = []
+description = "Physics: derivative, differential, field, matrix, braket, tensor, hbar, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Leedehai/typst-physics"
+
+[physica."0.8.0"]
+url = "https://packages.typst.org/preview/physica-0.8.0.tar.gz"
+hash = "sha256-4jxEOAbXb81h2T/6zez61zHtcpaqg4lXnebZHelmh+M="
+typstDeps = []
+description = "Physics: derivative, differential, field, matrix, braket, tensor, hbar, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Leedehai/typst-physics"
+
+[physica."0.7.5"]
+url = "https://packages.typst.org/preview/physica-0.7.5.tar.gz"
+hash = "sha256-ONkVdYjOnoR5swv2BS98EspbYUCBW6mpJ0z3DO0yoyc="
+typstDeps = []
+description = "Physics: derivative, differential, field, matrix, braket, tensor, etc"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Leedehai/typst-physics"
+
+[pigmentpedia."0.3.1"]
+url = "https://packages.typst.org/preview/pigmentpedia-0.3.1.tar.gz"
+hash = "sha256-/U6/zsw3Vb/JGgsc9lgKeZ1UYnnSv8cZWUtC4wFciyc="
+typstDeps = []
+description = "An extensive color library for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/neuralpain/pigmentpedia"
+
+[pigmentpedia."0.3.0"]
+url = "https://packages.typst.org/preview/pigmentpedia-0.3.0.tar.gz"
+hash = "sha256-0zdab6LYDDNAPSxHMAIOCZWra75NAyT/WM3mjwDcr5Y="
+typstDeps = []
+description = "An extensive color library for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/neuralpain/pigmentpedia"
+
+[pigmentpedia."0.1.0"]
+url = "https://packages.typst.org/preview/pigmentpedia-0.1.0.tar.gz"
+hash = "sha256-asmgvU8TaextXjNzorfuD9Fvm6vAxzqViTX+EPSjPJU="
+typstDeps = []
+description = "An extended color library for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/neuralpain/pigmentpedia"
+
+[pillar."0.3.1"]
+url = "https://packages.typst.org/preview/pillar-0.3.1.tar.gz"
+hash = "sha256-gi7l0nhNtVIFl6iHdmXD1/Rj4C4iGAS95qnjGmz+ZGg="
+typstDeps = [
+ "zero_0_3_2",
+]
+description = "Faster column specifications for tables"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/pillar"
+
+[pillar."0.3.0"]
+url = "https://packages.typst.org/preview/pillar-0.3.0.tar.gz"
+hash = "sha256-bRvlHSdKsEnUiYGSfz4OM4z8DrgCFgkdqqAVF7qEycM="
+typstDeps = [
+ "zero_0_3_1",
+]
+description = "Faster column specifications for tables"
+license = [
+ "MIT",
+]
+
+[pillar."0.2.0"]
+url = "https://packages.typst.org/preview/pillar-0.2.0.tar.gz"
+hash = "sha256-qfr/wtd0+49GUiKuJ6gH+tU/uRV5TLjvd9j7a/MTztU="
+typstDeps = [
+ "zero_0_1_0",
+]
+description = "Faster column specifications for tables"
+license = [
+ "MIT",
+]
+
+[pillar."0.1.0"]
+url = "https://packages.typst.org/preview/pillar-0.1.0.tar.gz"
+hash = "sha256-9V/AQ37jibzA2MjPmXmXtrue0wtTGhHPRHyNKahDKlA="
+typstDeps = []
+description = "Quick and simple column specifications for tables"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/pillar"
+
+[pinit."0.2.2"]
+url = "https://packages.typst.org/preview/pinit-0.2.2.tar.gz"
+hash = "sha256-LrU47e/kXmEF5NIkpV07gNBQb8Rz+T81kiok48RspS4="
+typstDeps = [
+ "fletcher_0_5_1",
+ "touying_0_5_3",
+]
+description = "Relative positioning by pins, especially useful for making slides in typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-pinit"
+
+[pinit."0.2.1"]
+url = "https://packages.typst.org/preview/pinit-0.2.1.tar.gz"
+hash = "sha256-mQCBKRAxrYpCQNDXkYnxJxLIRimfC4MQbm1fEbN4lWQ="
+typstDeps = [
+ "fletcher_0_5_1",
+ "touying_0_5_3",
+]
+description = "Relative positioning by pins, especially useful for making slides in typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-pinit"
+
+[pinit."0.2.0"]
+url = "https://packages.typst.org/preview/pinit-0.2.0.tar.gz"
+hash = "sha256-bo+/0Wa7Odv7jx4RVlb4NHWBF9mHqcssvw9TmgeEfgg="
+typstDeps = [
+ "fletcher_0_5_1",
+ "touying_0_4_2",
+]
+description = "Relative positioning by pins, especially useful for making slides in typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-pinit"
+
+[pinit."0.1.4"]
+url = "https://packages.typst.org/preview/pinit-0.1.4.tar.gz"
+hash = "sha256-FRQWQ8U7DC7uTVndSUKWEKS8MiBsggV8vrg0egBvTrc="
+typstDeps = [
+ "touying_0_4_0",
+]
+description = "Relative positioning by pins, especially useful for making slides in typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-pinit"
+
+[pinit."0.1.3"]
+url = "https://packages.typst.org/preview/pinit-0.1.3.tar.gz"
+hash = "sha256-PBJxnOjvnqDlBBzP90jBLxgXqWRx1+9dPWRZuGaDb8Q="
+typstDeps = [
+ "polylux_0_3_1",
+]
+description = "Pin things as you like, especially useful for creating slides"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-pinit"
+
+[pinit."0.1.2"]
+url = "https://packages.typst.org/preview/pinit-0.1.2.tar.gz"
+hash = "sha256-HelCoskHulF+YqGBbQX2+cK8EVGhI2KAQGEajGz6qso="
+typstDeps = [
+ "polylux_0_3_1",
+]
+description = "Pin things as you like, especially useful for creating slides"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-pinit"
+
+[pinit."0.1.1"]
+url = "https://packages.typst.org/preview/pinit-0.1.1.tar.gz"
+hash = "sha256-lTCEUIzjm9xn1ySuaaLMaTfztyjQm8THVcbZlYigSJs="
+typstDeps = [
+ "polylux_0_3_1",
+]
+description = "Pin things as you like, especially useful for creating slides"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-pinit"
+
+[pinit."0.1.0"]
+url = "https://packages.typst.org/preview/pinit-0.1.0.tar.gz"
+hash = "sha256-II8eDHhpSSU4zND+m2IHoa5D2WBBcwU5R3TSRvvBkvg="
+typstDeps = [
+ "polylux_0_3_1",
+]
+description = "Pin things as you like, especially useful for creating slides"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-pinit"
+
+[pintorita."0.1.4"]
+url = "https://packages.typst.org/preview/pintorita-0.1.4.tar.gz"
+hash = "sha256-cHcOmeZsrykPhxB4e2Sakjs5qPAS0rMIT+8BMIWMp4s="
+typstDeps = [
+ "jogs_0_2_4",
+]
+description = "Package to draw Sequence Diagrams, Entity Relationship Diagrams, Component Diagrams, Activity Diagrams, Mind Maps, Gantt Diagrams, and DOT Diagrams based on Pintora which is heavily influenced by mermaid.js and plantuml"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/taylorh140/typst-pintora"
+
+[pintorita."0.1.3"]
+url = "https://packages.typst.org/preview/pintorita-0.1.3.tar.gz"
+hash = "sha256-eh1g0mINRvoBT2gAUPJ5Jxswz7d9RxDUhhdGlxVAT5k="
+typstDeps = [
+ "jogs_0_2_3",
+]
+description = "Package to draw Sequence Diagrams, Entity Relationship Diagrams, Component Diagrams, Activity Diagrams, Mind Maps, Gantt Diagrams, and DOT Diagrams based on Pintora which is heavily influenced by mermaid.js and plantuml"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/taylorh140/typst-pintora"
+
+[pintorita."0.1.2"]
+url = "https://packages.typst.org/preview/pintorita-0.1.2.tar.gz"
+hash = "sha256-raXa2u2l8tHjgAQPHKiZpQqVQK60eC02hqH6T6eG1Bc="
+typstDeps = [
+ "jogs_0_2_3",
+]
+description = "Package to draw Sequence Diagrams, Entity Relationship Diagrams, Component Diagrams, Activity Diagrams, Mind Maps, Gantt Diagrams, and DOT Diagrams based on Pintora which is heavily influenced by mermaid.js and plantuml"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/taylorh140/typst-pintora"
+
+[pintorita."0.1.1"]
+url = "https://packages.typst.org/preview/pintorita-0.1.1.tar.gz"
+hash = "sha256-MN/tWQHeLL0/51Ub3MVq4nZ2d8C1DBgXeuioPK0AT9k="
+typstDeps = [
+ "jogs_0_2_3",
+]
+description = "Package to draw Sequence Diagrams, Entity Relationship Diagrams, Component Diagrams, Activity Diagrams, Mind Maps, Gantt Diagrams, and DOT Diagrams based on Pintora which is heavily influenced by mermaid.js and plantuml"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/taylorh140/typst-pintora"
+
+[pintorita."0.1.0"]
+url = "https://packages.typst.org/preview/pintorita-0.1.0.tar.gz"
+hash = "sha256-X4+H3L4mnUL5TfeHuJGMY5wFLasGUX1M2w8Q4ssPcbI="
+typstDeps = [
+ "jogs_0_2_2",
+]
+description = "Package to draw Sequence Diagrams, Entity Relationship Diagrams, Component Diagrams, Activity Diagrams, Mind Maps, Gantt Diagrams, and DOT Diagrams based on Pintora which is heavily influenced by mermaid.js and plantuml"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/taylorh140/typst-pintora"
+
+[pioneering-rlj."0.6.0"]
+url = "https://packages.typst.org/preview/pioneering-rlj-0.6.0.tar.gz"
+hash = "sha256-ip2sj+GGv6NKIEQ64ZIOEdY0v7TJWkDUbNwJVuFUjec="
+typstDeps = []
+description = "Template for submission to Reinforcement Learning Conference/Journal\n(RLC/RLJ"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/daskol/typst-templates"
+
+[plotst."0.2.0"]
+url = "https://packages.typst.org/preview/plotst-0.2.0.tar.gz"
+hash = "sha256-lhJCU7Hv/+uEsi123qWCX29InyoR4N0EAkhoQ/NyX1I="
+typstDeps = [
+ "oxifmt_0_2_0",
+]
+description = "A library to draw a variety of graphs and plots to use in your papers"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pegacraft/typst-plotting"
+
+[plotst."0.1.0"]
+url = "https://packages.typst.org/preview/plotst-0.1.0.tar.gz"
+hash = "sha256-h1hSdmxTxc314sXmAUNnNsq2l/loq/VoC/wjr4lAdHQ="
+typstDeps = []
+description = "A library to draw a variety of graphs and plots to use in your papers"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pegacraft/typst-plotting"
+
+[plotsy-3d."0.1.0"]
+url = "https://packages.typst.org/preview/plotsy-3d-0.1.0.tar.gz"
+hash = "sha256-17Rieur86RP4fCScePso93SPQ1ex3kWgw0z1SfKpz9c="
+typstDeps = [
+ "cetz_0_3_1",
+]
+description = "3D plotting for surfaces and parametric equations using CeTZ similar to pgfplots for LaTeX"
+license = [
+ "LGPL-3.0-or-later",
+]
+homepage = "https://github.com/misskacie/plotsy-3d"
+
+[pointless-size."0.1.1"]
+url = "https://packages.typst.org/preview/pointless-size-0.1.1.tar.gz"
+hash = "sha256-vf1pBfUfnEk0d15uz+2qaVI8yP3aE9C/V+ePRfZa+ls="
+typstDeps = []
+description = "中文字号的号数制及字体度量单位 Chinese size system (hào-system) and type-related measurements units"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/YDX-2147483647/typst-pointless-size"
+
+[pointless-size."0.1.0"]
+url = "https://packages.typst.org/preview/pointless-size-0.1.0.tar.gz"
+hash = "sha256-XzHr9Ht8ojAITVX7wOr2TOOncgkCsPO9bPBJ6p002VE="
+typstDeps = []
+description = "中文字号的号数制及字体度量单位 Chinese size system (hào-system) and type-related measurements units"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/YDX-2147483647/typst-pointless-size"
+
+[polylux."0.4.0"]
+url = "https://packages.typst.org/preview/polylux-0.4.0.tar.gz"
+hash = "sha256-bhceuU/TCLHCItOw0EPWUIm/fraa4YzVZxbgvIlqYtk="
+typstDeps = []
+description = "Presentation slides creation with Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/polylux-typ/polylux"
+
+[polylux."0.3.1"]
+url = "https://packages.typst.org/preview/polylux-0.3.1.tar.gz"
+hash = "sha256-BhRlqwHLz1OIchsze0sbNDP6bcn9Ql2eG/mcUe6gwAg="
+typstDeps = []
+description = "Presentation slides creation with Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/andreasKroepelin/polylux"
+
+[polylux."0.2.0"]
+url = "https://packages.typst.org/preview/polylux-0.2.0.tar.gz"
+hash = "sha256-tjrUbWn1eWQlmaa1Il8L9RQcfKdgS/Tapm5si/65+ts="
+typstDeps = []
+description = "Presentation slides creation with Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/andreasKroepelin/polylux"
+
+[polytonoi."0.1.0"]
+url = "https://packages.typst.org/preview/polytonoi-0.1.0.tar.gz"
+hash = "sha256-fhjq+Sdl5G6dJTbbdNGDmeCyh5mes/Chyj8IG2Hc2OI="
+typstDeps = []
+description = "Renders Roman letters into polytonic Greek"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/dei-layborer/polytonoi"
+
+[postercise."0.1.0"]
+url = "https://packages.typst.org/preview/postercise-0.1.0.tar.gz"
+hash = "sha256-QMTn5TcAstahWnqU0OCCir2fU9NEd1nym/2gJk450Ec="
+typstDeps = []
+description = "Postercise allows users to easily create academic research posters with different themes using Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/dangh3014/postercise/"
+
+[prequery."0.1.0"]
+url = "https://packages.typst.org/preview/prequery-0.1.0.tar.gz"
+hash = "sha256-SgjfD/wSGavgRWXSG2iG+bu+4pBuf76a1oFYQyQkN7o="
+typstDeps = [
+ "codly_0_2_0",
+ "tidy_0_2_0",
+]
+description = "library for extracting metadata for preprocessing from a typst document"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SillyFreak/typst-prequery"
+
+[prismath."0.1.0"]
+url = "https://packages.typst.org/preview/prismath-0.1.0.tar.gz"
+hash = "sha256-O7PaP1OUcba6j5MBMOmggdPAQDsQkJT5O8RgjP6qfjs="
+typstDeps = []
+description = "A mathematical brackets colorizer"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/3w36zj6/typst-prismath"
+
+[pro-letter."0.1.1"]
+url = "https://packages.typst.org/preview/pro-letter-0.1.1.tar.gz"
+hash = "sha256-Z7b6NR8UUkYf9TR+jaKlkuQzj8YtMAMZcjfn9xPF5Dw="
+typstDeps = []
+description = "A formal business letter template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[pro-letter."0.1.0"]
+url = "https://packages.typst.org/preview/pro-letter-0.1.0.tar.gz"
+hash = "sha256-AChfl9DHEbQuzBWrZ6ujv7sG0gMUwMmbSLqMfxGKaag="
+typstDeps = []
+description = "A formal business letter template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[problemst."0.1.2"]
+url = "https://packages.typst.org/preview/problemst-0.1.2.tar.gz"
+hash = "sha256-fWEd1e0+03XhbR/KSnCVpHfdzXE3MCNxQBThbijLbY0="
+typstDeps = []
+description = "Simple and easy-to-use template for problem sets/homeworks/assignments"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/carreter/problemst"
+
+[problemst."0.1.1"]
+url = "https://packages.typst.org/preview/problemst-0.1.1.tar.gz"
+hash = "sha256-GWo5RN7BWYdVgXAmPnoAgrRPfTUKEDm8l4c+2JEwrRE="
+typstDeps = []
+description = "Simple and easy-to-use template for problem sets/homeworks/assignments"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/carreter/problemst"
+
+[problemst."0.1.0"]
+url = "https://packages.typst.org/preview/problemst-0.1.0.tar.gz"
+hash = "sha256-yhFZepdn4q9zU0FRlGoCtNGyPujTpPbQO+uukXdXC+E="
+typstDeps = []
+description = "Simple and easy-to-use template for problem sets/homeworks/assignments"
+license = [
+ "MIT",
+]
+
+[prooftrees."0.1.0"]
+url = "https://packages.typst.org/preview/prooftrees-0.1.0.tar.gz"
+hash = "sha256-zhnOWUavOqMh3/s8CPIyw5uoX8QslITQJ81zL6WuTaI="
+typstDeps = []
+description = "Proof trees for natural deduction and type theories"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/david-davies/typst-prooftree"
+
+[psl-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/psl-thesis-0.1.0.tar.gz"
+hash = "sha256-MxuFFtr0ZQ74qipJ4W9mRGBl03ehXeTXF2INoFaFOcY="
+typstDeps = [
+ "glossarium_0_5_3",
+ "linguify_0_4_2",
+ "suboutline_0_2_0",
+]
+description = "Template for a PhD thesis manuscript at Paris Sciences et Lettres (PSL) University"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/sdiebolt/psl-thesis"
+
+[pubmatter."0.2.0"]
+url = "https://packages.typst.org/preview/pubmatter-0.2.0.tar.gz"
+hash = "sha256-1/6vhrb4PKzTxNQhGqsiCGgbYFt3lFgoa9v07NFnQPo="
+typstDeps = [
+ "scienceicons_0_0_6",
+]
+description = "Parse, normalize and show publication frontmatter, including authors and affiliations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/continuous-foundation/pubmatter"
+
+[pubmatter."0.1.0"]
+url = "https://packages.typst.org/preview/pubmatter-0.1.0.tar.gz"
+hash = "sha256-eO3NA6dOMlqTj+eNw/WjOx0jvN80Uh1D2JJRxVTVmUU="
+typstDeps = [
+ "scienceicons_0_0_6",
+]
+description = "Parse, normalize and show publication frontmatter, including authors and affiliations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/curvenote/pubmatter"
+
+[pyrunner."0.2.0"]
+url = "https://packages.typst.org/preview/pyrunner-0.2.0.tar.gz"
+hash = "sha256-0GxKr26m/vztKBqumqgvy1hprOJUoP62vVJ777TcHqk="
+typstDeps = []
+description = "Run python code in typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/peng1999/typst-pyrunner"
+
+[pyrunner."0.1.0"]
+url = "https://packages.typst.org/preview/pyrunner-0.1.0.tar.gz"
+hash = "sha256-ari8D99lMFhjsmqX8iNoBad+A4sGAGiED4mJPhvWJdA="
+typstDeps = []
+description = "Run python code in typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/peng1999/typst-pyrunner"
+
+[qcm."0.1.0"]
+url = "https://packages.typst.org/preview/qcm-0.1.0.tar.gz"
+hash = "sha256-shMmfVqt45WiVjiXyPmZTxuOrD2XyVODjV4VQcbYwWs="
+typstDeps = []
+description = "Qualitative Colormaps"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ludwig-austermann/qcm"
+
+[quetta."0.2.0"]
+url = "https://packages.typst.org/preview/quetta-0.2.0.tar.gz"
+hash = "sha256-VOTfREPGxLOnzmZV21+A+D59u1aAahyB2iJm0dNlhF8="
+typstDeps = []
+description = "Write Tengwar easily with Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/FlorentCLMichel/quetta"
+
+[quetta."0.1.0"]
+url = "https://packages.typst.org/preview/quetta-0.1.0.tar.gz"
+hash = "sha256-TQChGnPSPAqVhKJ/CyGV6fyyhchoa1yx1GxDp541LXA="
+typstDeps = []
+description = "Write Tengwar easily with Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/FlorentCLMichel/quetta"
+
+[quick-cards."0.1.1"]
+url = "https://packages.typst.org/preview/quick-cards-0.1.1.tar.gz"
+hash = "sha256-tXvD7cCih9ma1qhdNGzaPqqyA82p5YE1NIjUtDDSAgo="
+typstDeps = []
+description = "Easy flashcards with customizable look and feel"
+license = [
+ "MIT",
+]
+
+[quick-cards."0.1.0"]
+url = "https://packages.typst.org/preview/quick-cards-0.1.0.tar.gz"
+hash = "sha256-HXRM3+3QbOexAQbN+MRQ13njgKa2qbRPAOnYvIkndBM="
+typstDeps = []
+description = "Easy flashcards with customizable look and feel"
+license = [
+ "MIT",
+]
+
+[quick-maths."0.2.1"]
+url = "https://packages.typst.org/preview/quick-maths-0.2.1.tar.gz"
+hash = "sha256-toiwxYLy3Zl3wc/nYEMmS1gsS8M5GenuMu4cgKLWxoY="
+typstDeps = []
+description = "Custom shorthands for math equations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-quick-maths"
+
+[quick-maths."0.2.0"]
+url = "https://packages.typst.org/preview/quick-maths-0.2.0.tar.gz"
+hash = "sha256-Vh8rbpfiiHgX6E2rVKx898JlzHgzYVaIo6+RB+hzV88="
+typstDeps = []
+description = "Custom shorthands for math equations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-quick-maths"
+
+[quick-maths."0.1.0"]
+url = "https://packages.typst.org/preview/quick-maths-0.1.0.tar.gz"
+hash = "sha256-4dGy29l3oZwwj/h/diXRb+knbFtGBCpixzn3DeVe+cc="
+typstDeps = []
+description = "Custom shorthands for math equations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/EpicEricEE/typst-quick-maths"
+
+[quick-minutes."1.2.1"]
+url = "https://packages.typst.org/preview/quick-minutes-1.2.1.tar.gz"
+hash = "sha256-BME8A8VAEtGCCl7CYHzZPVqtMfr+M8qJNuEIuG6BkcI="
+typstDeps = []
+description = "A typst template for the keeping of minutes"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Lypsilonx/quick-minutes"
+
+[quick-minutes."1.2.0"]
+url = "https://packages.typst.org/preview/quick-minutes-1.2.0.tar.gz"
+hash = "sha256-ZA0Oyc0e43hyuyo2WaKcZEwr+MuVdb00Gt59rip/QaA="
+typstDeps = []
+description = "A typst template for the keeping of minutes"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Lypsilonx/quick-minutes"
+
+[quick-minutes."1.1.2"]
+url = "https://packages.typst.org/preview/quick-minutes-1.1.2.tar.gz"
+hash = "sha256-2GBZ4qfXHCjTH5Byq8L+j4u2w21rEjw3WfAvo29a1kQ="
+typstDeps = []
+description = "A typst template for the keeping of minutes"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Lypsilonx/quick-minutes"
+
+[quick-minutes."1.1.1"]
+url = "https://packages.typst.org/preview/quick-minutes-1.1.1.tar.gz"
+hash = "sha256-IDnUQsqj2/sQjyiXqutOgXpe4FoYtUOCAJGUW05K1rA="
+typstDeps = []
+description = "A typst template for the keeping of minutes"
+license = [
+ "MIT",
+]
+
+[quick-minutes."1.1.0"]
+url = "https://packages.typst.org/preview/quick-minutes-1.1.0.tar.gz"
+hash = "sha256-0aeCeTYnzpo4foVlvje7Cuo8OQLgaIR1I9HYt+AczRI="
+typstDeps = []
+description = "A typst template for the keeping of minutes"
+license = [
+ "MIT",
+]
+
+[quick-minutes."1.0.1"]
+url = "https://packages.typst.org/preview/quick-minutes-1.0.1.tar.gz"
+hash = "sha256-IX+zj/L5vJSSEMRzET0vy/1pi4U4ydJT8nWMgXR9q28="
+typstDeps = []
+description = "A typst template for the keeping of minutes"
+license = [
+ "MIT",
+]
+
+[quick-minutes."1.0.0"]
+url = "https://packages.typst.org/preview/quick-minutes-1.0.0.tar.gz"
+hash = "sha256-5oKnGFG4v6gqDXoJrp9bei24OhAEFj7OqFEhLwwTYts="
+typstDeps = []
+description = "A typst template for the keeping of minutes"
+license = [
+ "MIT",
+]
+
+[quick-sip."0.1.2"]
+url = "https://packages.typst.org/preview/quick-sip-0.1.2.tar.gz"
+hash = "sha256-Tvf9mJTqF5MvKtqf8rVnnWR/UoHQa6L4PU05KdJhV44="
+typstDeps = []
+description = "A template for creating quick reference handbook style checklists"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/artomweb/Quick-Sip-Typst-Template"
+
+[quick-sip."0.1.1"]
+url = "https://packages.typst.org/preview/quick-sip-0.1.1.tar.gz"
+hash = "sha256-2iwltRZiDiDMQiPaFz3egrYKNb+GabEIEXr8Mbv55eI="
+typstDeps = []
+description = "A template for creating quick reference handbook style checklists"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/artomweb/Quick-Sip-Typst-Template"
+
+[quick-sip."0.1.0"]
+url = "https://packages.typst.org/preview/quick-sip-0.1.0.tar.gz"
+hash = "sha256-jy0501oceLSwi5L9DY2wlUgCWZbE2/pShmtf2JZsigs="
+typstDeps = []
+description = "A template for creating quick reference handbook style checklists"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/artomweb/Quick-Sip-Typst-Template"
+
+[quill."0.6.1"]
+url = "https://packages.typst.org/preview/quill-0.6.1.tar.gz"
+hash = "sha256-BKA/RXWfCbVQFzgAbh+n/xeKKMoPe5ut3jGcNPOCoF4="
+typstDeps = []
+description = "Effortlessly create quantum circuit diagrams"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/quill"
+
+[quill."0.6.0"]
+url = "https://packages.typst.org/preview/quill-0.6.0.tar.gz"
+hash = "sha256-pp3JnynRT6kN2CwhSbvt7E+lOrn3LyCE8obriBJVauM="
+typstDeps = []
+description = "Effortlessly create quantum circuit diagrams"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/quill"
+
+[quill."0.5.0"]
+url = "https://packages.typst.org/preview/quill-0.5.0.tar.gz"
+hash = "sha256-nrDYWyTBUM9NW5LD/s6iae3SFOyWU8ELdbaFPYFb25w="
+typstDeps = []
+description = "Effortlessly create quantum circuit diagrams"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/quill"
+
+[quill."0.4.0"]
+url = "https://packages.typst.org/preview/quill-0.4.0.tar.gz"
+hash = "sha256-2bFovQpAmrLUYl0fFVZmHcno6rlW0ujCu5uNDlZk3ZI="
+typstDeps = []
+description = "Effortlessly create quantum circuit diagrams"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/quill"
+
+[quill."0.3.0"]
+url = "https://packages.typst.org/preview/quill-0.3.0.tar.gz"
+hash = "sha256-EjEAUnj5Anot7iNpp89oZhI+aBlmQmUd/UevZNcfCSA="
+typstDeps = []
+description = "Effortlessly create quantum circuit diagrams"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/quill"
+
+[quill."0.2.1"]
+url = "https://packages.typst.org/preview/quill-0.2.1.tar.gz"
+hash = "sha256-rf3ybJiUDYUoUcHZuVuVH26LG+mrteTRpU5vT7pdqek="
+typstDeps = []
+description = "Effortlessly create quantum circuit diagrams"
+license = [
+ "MIT",
+]
+
+[quill."0.2.0"]
+url = "https://packages.typst.org/preview/quill-0.2.0.tar.gz"
+hash = "sha256-Vrjcu05Q4LU98l1uV6OBE0pZIBVkYLbsMRhXVRgSXoc="
+typstDeps = []
+description = "Effortlessly create quantum circuit diagrams"
+license = [
+ "MIT",
+]
+
+[quill."0.1.0"]
+url = "https://packages.typst.org/preview/quill-0.1.0.tar.gz"
+hash = "sha256-ppM5Z1HSwYVm0bGEW2UEfTC6z/jY74QZKMbC49hxP7E="
+typstDeps = []
+description = "A library for creating quantum circuit diagrams"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/quill"
+
+[quizst."0.3.2"]
+url = "https://packages.typst.org/preview/quizst-0.3.2.tar.gz"
+hash = "sha256-BuRNdEYQDtqIih+YYKzwP0VpMcRl0Sh8pueUn+b4fbc="
+typstDeps = []
+description = "Typst template for McQ exams"
+license = [
+ "MIT",
+]
+
+[red-agora."0.1.1"]
+url = "https://packages.typst.org/preview/red-agora-0.1.1.tar.gz"
+hash = "sha256-K35bSciizmhhCU9hHlkPg2+wR8VCsQeTvisO/kuwVOU="
+typstDeps = []
+description = "A Typst template to quickly scaffold a report for your projects and internships at ENSIAS"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/essmehdi/ensias-report-template"
+
+[red-agora."0.1.0"]
+url = "https://packages.typst.org/preview/red-agora-0.1.0.tar.gz"
+hash = "sha256-JOeYpS+3ajPdPHfAHRUPeHPd4P0litd7b5sXyfOHRVg="
+typstDeps = []
+description = "A Typst template to quickly scaffold a report for your projects and internships at ENSIAS"
+license = [
+ "MIT",
+]
+
+[relescope."0.0.2"]
+url = "https://packages.typst.org/preview/relescope-0.0.2.tar.gz"
+hash = "sha256-3axTa1GFpO5hFshSglbIj3JXkipKixEIvBFGPIIORUE="
+typstDeps = [
+ "zebraw_0_4_3",
+]
+description = "Crop the desired code"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sjfhsjfh/typst-relescope"
+
+[relescope."0.0.1"]
+url = "https://packages.typst.org/preview/relescope-0.0.1.tar.gz"
+hash = "sha256-QtoOpJLOUF5JiZjdTA6zc1GbOKSIPM6cuRjwFbGW3Sg="
+typstDeps = [
+ "zebraw_0_4_3",
+]
+description = "Crop the desired code"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sjfhsjfh/typst-relescope"
+
+[report-flow-ustc."1.1.0"]
+url = "https://packages.typst.org/preview/report-flow-ustc-1.1.0.tar.gz"
+hash = "sha256-EB3bszDs16NK6vPY+LuNnPbZUa1OhnBMQIsFOE6GVuk="
+typstDeps = [
+ "cheq_0_1_0",
+ "codly_1_0_0",
+ "commute_0_2_0",
+ "cuti_0_2_1",
+ "gentle-clues_0_8_0",
+ "i-figured_0_2_4",
+ "mitex_0_2_4",
+ "pintorita_0_1_1",
+ "showybox_2_0_1",
+ "unify_0_6_0",
+]
+description = "A template suitable for USTC students (of course, you can freely modify it for any school or organization) to complete course assignments or submit lab reports"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Quaternijkon/report-flow-ustc"
+
+[report-flow-ustc."1.0.0"]
+url = "https://packages.typst.org/preview/report-flow-ustc-1.0.0.tar.gz"
+hash = "sha256-DFO9zfEB43Z6/rAPWQWJPpQrgSeZ7ke3aD5dPQxqvS4="
+typstDeps = [
+ "cheq_0_1_0",
+ "codly_1_0_0",
+ "commute_0_2_0",
+ "cuti_0_2_1",
+ "gentle-clues_0_8_0",
+ "i-figured_0_2_4",
+ "mitex_0_2_4",
+ "pintorita_0_1_1",
+ "showybox_2_0_1",
+ "unify_0_6_0",
+]
+description = "A template suitable for USTC students (of course, you can freely modify it for any school or organization) to complete course assignments or submit lab reports"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Quaternijkon/Typst_Lab_Report"
+
+[resume-ng."1.0.0"]
+url = "https://packages.typst.org/preview/resume-ng-1.0.0.tar.gz"
+hash = "sha256-AdbHp43Y3bxwYH5qRPRl1bML/G1tACO4IoKL9wv/Ot0="
+typstDeps = []
+description = "A Typst resume designed for optimal information density and aesthetic appeal"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/fky2015/resume-ng-typst"
+
+[rexllent."0.3.0"]
+url = "https://packages.typst.org/preview/rexllent-0.3.0.tar.gz"
+hash = "sha256-xG91tiCiPZ9lItlzyyg4pXB5uqtV2tioO+RLtHb5K+w="
+typstDeps = []
+description = "Parsing excel table into a typst table, powered by wasm"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-rexllent"
+
+[rexllent."0.2.3"]
+url = "https://packages.typst.org/preview/rexllent-0.2.3.tar.gz"
+hash = "sha256-9oU6UGL2b30md30lz6w7rx+YzSxTRtHTsYDfZd2MgDg="
+typstDeps = []
+description = "Parsing xlsx file into a typst table, powered by wasm"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-rexllent"
+
+[rexllent."0.2.2"]
+url = "https://packages.typst.org/preview/rexllent-0.2.2.tar.gz"
+hash = "sha256-QuZQMY/Za1hg+Ui4j/DIHVl6REUMZOvuxzc0udUTqYg="
+typstDeps = []
+description = "Parsing xlsx file into a typst table, powered by wasm"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-rexllent"
+
+[rexllent."0.2.1"]
+url = "https://packages.typst.org/preview/rexllent-0.2.1.tar.gz"
+hash = "sha256-vETDKcBB/bBJJ2usl5EY0QYSfbIPBRb/CFBpkLHTIfA="
+typstDeps = []
+description = "Parsing xlsx file into a typst table, powered by wasm"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-rexllent"
+
+[rexllent."0.2.0"]
+url = "https://packages.typst.org/preview/rexllent-0.2.0.tar.gz"
+hash = "sha256-vyUaitEgZdBSJXI73ByzX0c7GvuPy7oOH4N+aYy48Xc="
+typstDeps = []
+description = "Parsing xlsx file into a typst table, powered by wasm"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-rexllent"
+
+[rfc-vibe."0.1.0"]
+url = "https://packages.typst.org/preview/rfc-vibe-0.1.0.tar.gz"
+hash = "sha256-VsSxsq4j5+l4euhA7k977HSZOtuApGwp+Jwny9zpWm8="
+typstDeps = []
+description = "Bring RFC language into everyday docs"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[rich-counters."0.2.2"]
+url = "https://packages.typst.org/preview/rich-counters-0.2.2.tar.gz"
+hash = "sha256-anNF+VisQ0RKJn1M1/5wP/AlgQsmw2ifJk9jQ5Tj1MY="
+typstDeps = []
+description = "Counters which can inherit from other counters"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jbirnick/typst-rich-counters"
+
+[rich-counters."0.2.1"]
+url = "https://packages.typst.org/preview/rich-counters-0.2.1.tar.gz"
+hash = "sha256-ja1hq5vTVoQA6u2oKnM3HXn+3cINm4h49RsLNIfOjBw="
+typstDeps = []
+description = "Counters which can inherit from other counters"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jbirnick/typst-rich-counters"
+
+[rich-counters."0.2.0"]
+url = "https://packages.typst.org/preview/rich-counters-0.2.0.tar.gz"
+hash = "sha256-SVBN/P+Y//teDraoU4y+pHOXkz8Qo2pGr7Tr6TCnQaY="
+typstDeps = []
+description = "Counters which can depend on other counters"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jbirnick/typst-rich-counters"
+
+[rich-counters."0.1.0"]
+url = "https://packages.typst.org/preview/rich-counters-0.1.0.tar.gz"
+hash = "sha256-fD8vTU3MceQ8X6f1a0MyAJNP0LOiwaJzm9BF7g5eQio="
+typstDeps = []
+description = "Counters which can depend on other counters"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jbirnick/typst-rich-counters"
+
+[riesketcher."0.2.1"]
+url = "https://packages.typst.org/preview/riesketcher-0.2.1.tar.gz"
+hash = "sha256-Wm8L5+rRdc7XdMwvHQynuVE9/ABRlMyZzUWDa03zVqM="
+typstDeps = [
+ "cetz_0_2_2",
+]
+description = "A package to draw Riemann sums (and their plots) of a function with CeTZ"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ThatOneCalculator/riesketcher"
+
+[riesketcher."0.2.0"]
+url = "https://packages.typst.org/preview/riesketcher-0.2.0.tar.gz"
+hash = "sha256-sgjDLll//sF2GkJOPrvM7XUMuok152BcJMS3FSpXaUw="
+typstDeps = [
+ "cetz_0_2_0",
+]
+description = "A package to draw Riemann sums (and their plots) of a function with CeTZ"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ThatOneCalculator/riesketcher"
+
+[riesketcher."0.1.0"]
+url = "https://packages.typst.org/preview/riesketcher-0.1.0.tar.gz"
+hash = "sha256-tTHBFj8NfledTh2RscQtR568OjiTeB90UnVhsSzKdRA="
+typstDeps = [
+ "cetz_0_1_2",
+]
+description = "A package to draw Riemann sums (and their plots) of a function with CeTZ"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ThatOneCalculator/riesketcher"
+
+[rivet."0.2.0"]
+url = "https://packages.typst.org/preview/rivet-0.2.0.tar.gz"
+hash = "sha256-AL+aUPYNqb4vxLgAXFBFHzxjbL8epNojCbLqNOMtxfg="
+typstDeps = [
+ "cetz_0_3_2",
+ "codly_1_2_0",
+ "codly-languages_0_1_7",
+ "rivet_0_1_0",
+ "showybox_2_0_4",
+ "tidy_0_4_1",
+]
+description = "Register / Instruction Visualizer & Explainer Tool with Typst, using CeTZ"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://git.kb28.ch/HEL/rivet-typst"
+
+[rivet."0.1.0"]
+url = "https://packages.typst.org/preview/rivet-0.1.0.tar.gz"
+hash = "sha256-ekViYpfKk2zvY4VVu8ZnFFU/kXJbBLNYjKHGOfZ8VY0="
+typstDeps = [
+ "cetz_0_2_2",
+ "codelst_2_0_1",
+ "showybox_2_0_1",
+ "tidy_0_3_0",
+]
+description = "Register / Instruction Visualizer & Explainer Tool with Typst, using CeTZ"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://git.kb28.ch/HEL/rivet-typst"
+
+[roremu."0.1.0"]
+url = "https://packages.typst.org/preview/roremu-0.1.0.tar.gz"
+hash = "sha256-9QsuDuoOOqmhg/JQKgT9/Q1p09EBEm2FL5Nr9+VMSC8="
+typstDeps = [
+ "tidy_0_2_0",
+]
+description = "日本語のダミーテキスト生成(Lorem Ipsum)"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/mkpoli/roremu"
+
+[rose-pine."0.2.0"]
+url = "https://packages.typst.org/preview/rose-pine-0.2.0.tar.gz"
+hash = "sha256-TZxAE4goAIvlGNixDaIdCL7GkLyP9XZH8/EZYLfcvNY="
+typstDeps = []
+description = "Soho vibes for Typst in a form of easily applicable theme"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/rose-pine/typst"
+
+[rose-pine."0.1.0"]
+url = "https://packages.typst.org/preview/rose-pine-0.1.0.tar.gz"
+hash = "sha256-GeaHssP8QYVw3sIlztWxWsGxrHurKwRskN80gbUrkZQ="
+typstDeps = []
+description = "Soho vibes for Typst in a form of easily applicable theme"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/rose-pine/typst"
+
+[rubber-article."0.3.1"]
+url = "https://packages.typst.org/preview/rubber-article-0.3.1.tar.gz"
+hash = "sha256-B+/lqmX27ndp/8IBGa74Y3Mnj3q9Gy6D4ywOYHvBByo="
+typstDeps = [
+ "hydra_0_6_0",
+]
+description = "A simple template recreating the look of the classic LaTeX article"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/npikall/rubber-article.git"
+
+[rubber-article."0.3.0"]
+url = "https://packages.typst.org/preview/rubber-article-0.3.0.tar.gz"
+hash = "sha256-VZPiL9A2jlp9W+cUCmqgjtPWl/IZK/Htac11/Ym9XC0="
+typstDeps = [
+ "hydra_0_6_0",
+]
+description = "A simple template recreating the look of the classic LaTeX article"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/npikall/rubber-article.git"
+
+[rubber-article."0.2.0"]
+url = "https://packages.typst.org/preview/rubber-article-0.2.0.tar.gz"
+hash = "sha256-826U/MxEcOCYmFb/86+1ltviU/S+QE62bd6s07fVfSY="
+typstDeps = [
+ "hydra_0_5_2",
+]
+description = "A simple template recreating the look of the classic LaTeX article"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/npikall/rubber-article.git"
+
+[rubber-article."0.1.0"]
+url = "https://packages.typst.org/preview/rubber-article-0.1.0.tar.gz"
+hash = "sha256-YS6YltTP5nbnoxxgwreK1ZzePVRu1WDrP1NUPV1ik+g="
+typstDeps = []
+description = "A simple template recreating the look of the classic LaTeX article"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/npikall/rubber-article.git"
+
+[rubby."0.10.2"]
+url = "https://packages.typst.org/preview/rubby-0.10.2.tar.gz"
+hash = "sha256-lYecVfGr700LmHkpxWd65iAo/jSi3RaEVgC5RDEGkto="
+typstDeps = []
+description = "Add ruby (furigana) next to base text"
+license = [
+ "AGPL-3.0-only",
+]
+homepage = "https://github.com/Andrew15-5/rubby"
+
+[rubby."0.10.1"]
+url = "https://packages.typst.org/preview/rubby-0.10.1.tar.gz"
+hash = "sha256-aWQajusK585WmlbdpHezbi8hFHtCwCyOG1GF+eGlZfg="
+typstDeps = []
+description = "Add ruby (furigana) next to base text"
+license = [
+ "AGPL-3.0-only",
+]
+homepage = "https://github.com/Andrew15-5/rubby"
+
+[rubby."0.10.0"]
+url = "https://packages.typst.org/preview/rubby-0.10.0.tar.gz"
+hash = "sha256-HB1B6s0PbUxuImvv6QQPF3VVpTKJOlrH/aUh1thUbBY="
+typstDeps = []
+description = "Add ruby (furigana) next to base text"
+license = [
+ "AGPL-3.0-only",
+]
+homepage = "https://github.com/Andrew15-5/rubby"
+
+[rubby."0.9.2"]
+url = "https://packages.typst.org/preview/rubby-0.9.2.tar.gz"
+hash = "sha256-vwt92Vwmaz3eSZTghJtej3Ypq96YiOCTVAvNnwuWv14="
+typstDeps = []
+description = "Add ruby (furigana) next to base text"
+license = [
+ "AGPL-3.0-only",
+]
+homepage = "https://github.com/Andrew15-5/rubby"
+
+[rubby."0.8.0"]
+url = "https://packages.typst.org/preview/rubby-0.8.0.tar.gz"
+hash = "sha256-0Iy3cNNpcLU+TJWDiYC+UDUkC6Q2pPrxG/KdChShxZg="
+typstDeps = []
+description = "Add ruby (furigana) next to base text"
+license = [
+ "AGPL-3.0-only",
+]
+homepage = "https://github.com/Andrew15-5/rubby"
+
+[rufish."0.1.0"]
+url = "https://packages.typst.org/preview/rufish-0.1.0.tar.gz"
+hash = "sha256-aWMNujilrySHfxwB6cSljcoIF3nHCusJn47wym93Gww="
+typstDeps = []
+description = "Russian Lorem Ipsum text generator"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/f0rgenet/rufish"
+
+[run-liners."0.1.0"]
+url = "https://packages.typst.org/preview/run-liners-0.1.0.tar.gz"
+hash = "sha256-SQ5iEf3jgXQ+3TIYkq1W9KHrWnYZ+W32j7q7zwWMCTQ="
+typstDeps = [
+ "codly_1_1_1",
+ "codly-languages_0_1_1",
+]
+description = "Functions to create various run-in lists"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[s6t5-page-bordering."1.0.0"]
+url = "https://packages.typst.org/preview/s6t5-page-bordering-1.0.0.tar.gz"
+hash = "sha256-djet6k3bfA6oi+IpfoN6bsZ8sPkR0y2RVPB0bKKcgI4="
+typstDeps = []
+description = "Way to write border around page margin and header/footer"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Shumpei-Tanaka/typst-s6t5-page-bordering"
+
+[salsa-dip."0.1.0"]
+url = "https://packages.typst.org/preview/salsa-dip-0.1.0.tar.gz"
+hash = "sha256-C2uA6nTd5wCYZf1dzjOqQt0nfHzjs8GePLOs4LEwlQE="
+typstDeps = []
+description = "DIP chip labels for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/ashplasek/salsa-dip"
+
+[sano-presentation-template."1.0.0"]
+url = "https://packages.typst.org/preview/sano-presentation-template-1.0.0.tar.gz"
+hash = "sha256-RJGql4AhJal3CzuJi1Jgh19+wIIy2WM98xZjkAE2TKA="
+typstDeps = [
+ "touying_0_6_1",
+]
+description = "Small and minimal presentation template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sudanchapagain/sano-presentation-template"
+
+[scaffolder."0.2.0"]
+url = "https://packages.typst.org/preview/scaffolder-0.2.0.tar.gz"
+hash = "sha256-iMOIGDtLE/7GDV29+efx9EX6emZ9R2y9AumEajMb7jk="
+typstDeps = []
+description = "Show borders around the main text area, header and footer in Typst documents"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/wisp3rwind/typst-scaffolder"
+
+[scholarly-epfl-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/scholarly-epfl-thesis-0.2.0.tar.gz"
+hash = "sha256-9TEz/jV7P1edbqYIlQoZ4581sK4UBQMpn3oZWlxtwxg="
+typstDeps = []
+description = "A template for a thesis at EPFL"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/augustebaum/epfl-thesis-typst"
+
+[scholarly-epfl-thesis."0.1.3"]
+url = "https://packages.typst.org/preview/scholarly-epfl-thesis-0.1.3.tar.gz"
+hash = "sha256-YTFTgzRXbGuJeG/hS0jleGlv6plJO3u/WBBOprTgeyo="
+typstDeps = []
+description = "A template for a thesis at EPFL"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/augustebaum/epfl-thesis-typst"
+
+[scholarly-epfl-thesis."0.1.2"]
+url = "https://packages.typst.org/preview/scholarly-epfl-thesis-0.1.2.tar.gz"
+hash = "sha256-2n1e0WaLIa8OuWCMhdehC4C5N4Xt17Pu6lU6k52vwdM="
+typstDeps = []
+description = "A template for a thesis at EPFL"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/augustebaum/epfl-thesis-typst"
+
+[scholarly-epfl-thesis."0.1.1"]
+url = "https://packages.typst.org/preview/scholarly-epfl-thesis-0.1.1.tar.gz"
+hash = "sha256-rUKSWrXTp6QMO3YZQF7yyDCPLXmfzpx0dgpWJrpEJhk="
+typstDeps = []
+description = "A template for a thesis at EPFL"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/augustebaum/epfl-thesis-typst"
+
+[scholarly-epfl-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/scholarly-epfl-thesis-0.1.0.tar.gz"
+hash = "sha256-sR236ruuhbgKUcc1lxcPXDEHEqvH5WzV+winMJllSmk="
+typstDeps = []
+description = "A template for a thesis at EPFL"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/augustebaum/epfl-thesis-typst"
+
+[scholarly-tauthesis."0.11.0"]
+url = "https://packages.typst.org/preview/scholarly-tauthesis-0.11.0.tar.gz"
+hash = "sha256-lcmQOo6gRrNpeknvK9HvHbvGTxQc7v45CQJBZyMtn+k="
+typstDeps = []
+description = "A template for writing Tampere University theses"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+[scholarly-tauthesis."0.10.2"]
+url = "https://packages.typst.org/preview/scholarly-tauthesis-0.10.2.tar.gz"
+hash = "sha256-tdcP9Y4nIRrOUfgeXL5fcyWYZBDM1gnXxqSBgJ0cLos="
+typstDeps = []
+description = "A template for writing Tampere University theses"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+[scholarly-tauthesis."0.10.0"]
+url = "https://packages.typst.org/preview/scholarly-tauthesis-0.10.0.tar.gz"
+hash = "sha256-6gK3wG86AcOcLhwA+pM2IAMTbsXXeAomYVwagjKnw+o="
+typstDeps = []
+description = "A template for writing Tampere University theses"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+[scholarly-tauthesis."0.9.0"]
+url = "https://packages.typst.org/preview/scholarly-tauthesis-0.9.0.tar.gz"
+hash = "sha256-udMAPeHkj1LFlLjnN+kLUpD400XQSmNja6pnMOexs7U="
+typstDeps = []
+description = "A template for writing Tampere University theses"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+[scholarly-tauthesis."0.8.0"]
+url = "https://packages.typst.org/preview/scholarly-tauthesis-0.8.0.tar.gz"
+hash = "sha256-eoRKYKIczsXYL0IGG98TQCRe58+7Ua7110cx/vTTlvU="
+typstDeps = []
+description = "A template for writing Tampere University theses"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+[scholarly-tauthesis."0.7.0"]
+url = "https://packages.typst.org/preview/scholarly-tauthesis-0.7.0.tar.gz"
+hash = "sha256-4x4A9G3Dqy2Bjqtn94l1lSId19IcMR6TCYBPVUartNE="
+typstDeps = []
+description = "A template for writing Tampere University theses"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+[scholarly-tauthesis."0.6.2"]
+url = "https://packages.typst.org/preview/scholarly-tauthesis-0.6.2.tar.gz"
+hash = "sha256-JrYBGqXFJbCkMLjSJAie5vOQliYdQKozu+/LynnBfSQ="
+typstDeps = []
+description = "A template for writing Tampere University theses"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+[scholarly-tauthesis."0.5.0"]
+url = "https://packages.typst.org/preview/scholarly-tauthesis-0.5.0.tar.gz"
+hash = "sha256-SIGA2SqsTcbRLODu8SUB6dT9F43XvXiVRdHSXalBOi0="
+typstDeps = []
+description = "A template for writing Tampere University theses"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+[scholarly-tauthesis."0.4.1"]
+url = "https://packages.typst.org/preview/scholarly-tauthesis-0.4.1.tar.gz"
+hash = "sha256-2mfC7LdA2yMscmCe6JAclLL7HrPcRf2ZayDvCrzLpmw="
+typstDeps = []
+description = "A template for writing Tampere University theses"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+[scholarly-tauthesis."0.4.0"]
+url = "https://packages.typst.org/preview/scholarly-tauthesis-0.4.0.tar.gz"
+hash = "sha256-xRJOBJWA4CivMeCY8zPMyyG48RV2ZTIyhAU1Q4BWS7M="
+typstDeps = []
+description = "A template for writing Tampere University theses"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+[scienceicons."0.0.6"]
+url = "https://packages.typst.org/preview/scienceicons-0.0.6.tar.gz"
+hash = "sha256-n3GMd9uPpqK2G5aD4+g8D5Egm/OwgGQ2yrZVgeD+lNM="
+typstDeps = []
+description = "SVG icons for open-science articles"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/curvenote/scienceicons"
+
+[scripst."1.1.1"]
+url = "https://packages.typst.org/preview/scripst-1.1.1.tar.gz"
+hash = "sha256-N9u+c35SB4NJjczmPQ1OZuCiBXkpXuDuDj/FyS0+WiU="
+typstDeps = [
+ "physica_0_9_4",
+ "tablem_0_2_0",
+]
+description = "Scripst - A versatile scripting template for seamless Typst typesetting. 🚀"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/An-314/typst-templates"
+
+[scripst."1.1.0"]
+url = "https://packages.typst.org/preview/scripst-1.1.0.tar.gz"
+hash = "sha256-b6iUIdKTocmMgW7krded2tFbv90Qvsea0QcvhLp7xnc="
+typstDeps = [
+ "physica_0_9_4",
+ "tablem_0_2_0",
+]
+description = "Scripst - A versatile scripting template for seamless Typst typesetting. 🚀"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/An-314/typst-templates"
+
+[scrutinize."0.3.0"]
+url = "https://packages.typst.org/preview/scrutinize-0.3.0.tar.gz"
+hash = "sha256-SgigAFxJZ9/diWE3jUcMRnu0SX5fiZyzejyrsk7mRpA="
+typstDeps = []
+description = "A library for building exams, tests, etc. with Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SillyFreak/typst-scrutinize"
+
+[scrutinize."0.2.0"]
+url = "https://packages.typst.org/preview/scrutinize-0.2.0.tar.gz"
+hash = "sha256-THfVLYmuFhjeV8+LyrY0/Pyyc4zRJ0p2GNmqvwaZEPw="
+typstDeps = [
+ "codly_0_2_0",
+ "tidy_0_2_0",
+]
+description = "A library for building exams, tests, etc. with Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SillyFreak/typst-scrutinize"
+
+[scrutinize."0.1.0"]
+url = "https://packages.typst.org/preview/scrutinize-0.1.0.tar.gz"
+hash = "sha256-YnDArqHld6UvOq/V5pBrAEGu/5k46+fWvE44wp/80+s="
+typstDeps = [
+ "codly_0_1_0",
+ "tidy_0_2_0",
+]
+description = "A library for building exams, tests, etc. with Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SillyFreak/typst-packages/scrutinize"
+
+[sdu-exp-report."0.1.0"]
+url = "https://packages.typst.org/preview/sdu-exp-report-0.1.0.tar.gz"
+hash = "sha256-du81nBCW+BSDb0Rq6zbg3x2MKPvgHOf9xxVZCwy6Z+c="
+typstDeps = [
+ "cetz_0_3_2",
+ "codly_1_3_0",
+ "numbly_0_1_0",
+]
+description = "A report template for SDU CS students"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/Dregen-Yor/sdu-exp-report"
+
+[sdu-touying-simpl."0.2.1"]
+url = "https://packages.typst.org/preview/sdu-touying-simpl-0.2.1.tar.gz"
+hash = "sha256-OcF+mGfjzr3icGXjL3kJsWvWcT9Th5mmfcu0VpSCQdc="
+typstDeps = [
+ "codly_1_1_1",
+ "ctheorems_1_1_3",
+ "fletcher_0_5_4",
+ "gentle-clues_1_1_0",
+ "showybox_2_0_3",
+ "timeliney_0_2_0",
+ "touying_0_5_5",
+]
+description = "An templete based on touying, "
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/Dregen-Yor/sdu-touying-simpl"
+
+[sdu-touying-simpl."0.2.0"]
+url = "https://packages.typst.org/preview/sdu-touying-simpl-0.2.0.tar.gz"
+hash = "sha256-q75B4UZAXcDDtgkQQ5N35mkAsvyAj2ZSqMwYxiRkcEA="
+typstDeps = [
+ "codly_1_1_1",
+ "ctheorems_1_1_3",
+ "fletcher_0_5_4",
+ "gentle-clues_1_1_0",
+ "showybox_2_0_3",
+ "timeliney_0_2_0",
+ "touying_0_5_5",
+]
+description = "An templete based on touying, "
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/Dregen-Yor/sdu-touying-simpl"
+
+[sdu-touying-simpl."0.1.0"]
+url = "https://packages.typst.org/preview/sdu-touying-simpl-0.1.0.tar.gz"
+hash = "sha256-tS2upn1PMcV3rLBP+rse65jC80yHErmNSE/ZDGizzzw="
+typstDeps = [
+ "codly_1_1_1",
+ "ctheorems_1_1_3",
+ "fletcher_0_5_3",
+ "gentle-clues_1_1_0",
+ "showybox_2_0_3",
+ "timeliney_0_1_0",
+ "touying_0_5_5",
+]
+description = "An templete based on touying, "
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/Dregen-Yor/sdu-touying-simpl"
+
+[self-example."0.1.0"]
+url = "https://packages.typst.org/preview/self-example-0.1.0.tar.gz"
+hash = "sha256-yOJqy0t0n+4PnRrmETEVhg7zvuoTzdGuXjkFN23k/P0="
+typstDeps = [
+ "codly_1_1_1",
+ "codly-languages_0_1_1",
+]
+description = "A typst package that will eval your typst command together with itself as a raw block"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/wznmickey/typst-self-example"
+
+[shadowed."0.2.0"]
+url = "https://packages.typst.org/preview/shadowed-0.2.0.tar.gz"
+hash = "sha256-TDZsj+sK5aIaX7luRUdtyH0YxTWzrFRyrIvUlOk+MfI="
+typstDeps = []
+description = "Box shadows for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/T1mVo/shadowed"
+
+[shadowed."0.1.2"]
+url = "https://packages.typst.org/preview/shadowed-0.1.2.tar.gz"
+hash = "sha256-NMbLMOdzbNzigsqnKaK0iOJHLaB2h0ksyLuS56PxxNY="
+typstDeps = []
+description = "Box shadows for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/T1mVo/shadowed"
+
+[shadowed."0.1.1"]
+url = "https://packages.typst.org/preview/shadowed-0.1.1.tar.gz"
+hash = "sha256-QVIO9WPRgqoLm7fA9sPIZEum2nip7CPS0Mfjivk/Tio="
+typstDeps = []
+description = "Box shadows for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/T1mVo/shadowed"
+
+[shadowed."0.1.0"]
+url = "https://packages.typst.org/preview/shadowed-0.1.0.tar.gz"
+hash = "sha256-cvZ12sPbSGE9ywtAky7/9FYbPc+6wgHbJ4Jaibsrdzo="
+typstDeps = []
+description = "Box shadows for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/T1mVo/shadowed"
+
+[shane-hhu-thesis."0.3.0"]
+url = "https://packages.typst.org/preview/shane-hhu-thesis-0.3.0.tar.gz"
+hash = "sha256-GhHzGPmQUyLEf3lxRO0VGI0wt/TzLUUvZuo4iFAUqaU="
+typstDeps = [
+ "a2c-nums_0_0_1",
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+]
+description = "河海大学本科生毕业论文(设计)模板。Unofficial Hohai University Undergraduate Thesis (Design) Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/shaneworld/HHU-Thesis-Template"
+
+[shane-hhu-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/shane-hhu-thesis-0.2.0.tar.gz"
+hash = "sha256-JufQR1SdPLCSlOWaJRfIKsCHQ8ppRiYnR8sxfJUvbl4="
+typstDeps = [
+ "a2c-nums_0_0_1",
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+]
+description = "河海大学本科生毕业论文(设计)模板。Unofficial Hohai University Undergraduate Thesis (Design) Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/shaneworld/HHU-Thesis-Template"
+
+[shane-hhu-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/shane-hhu-thesis-0.1.0.tar.gz"
+hash = "sha256-d/9KaewcuxXLLSzlYVXlsMFOkskMZKJDBMQDS5QQIg0="
+typstDeps = [
+ "a2c-nums_0_0_1",
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+ "sourcerer_0_2_1",
+]
+description = "河海大学本科生毕业论文(设计)模板。Unofficial Hohai University Undergraduate Thesis (Design) Template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/shaneworld/HHU-Thesis-Template"
+
+[shiroa."0.2.2"]
+url = "https://packages.typst.org/preview/shiroa-0.2.2.tar.gz"
+hash = "sha256-fBC4alolwFH+92J3ph1UqXxIO/GutiC6puNS9lMwBRs="
+typstDeps = []
+description = "A simple tool for creating modern online books in pure typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/Myriad-Dreamin/shiroa"
+
+[shiroa."0.2.1"]
+url = "https://packages.typst.org/preview/shiroa-0.2.1.tar.gz"
+hash = "sha256-KboWx6hGztzQi/eR6ARgpcAuI1fcVJeCrjJHEpHHWfs="
+typstDeps = []
+description = "A simple tool for creating modern online books in pure typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/Myriad-Dreamin/shiroa"
+
+[shiroa."0.2.0"]
+url = "https://packages.typst.org/preview/shiroa-0.2.0.tar.gz"
+hash = "sha256-+JVHlMM7JwNuFZy0pSZcJE+qrPEaHrdmF4CLZycLKYE="
+typstDeps = []
+description = "A simple tool for creating modern online books in pure typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/Myriad-Dreamin/shiroa"
+
+[shiroa."0.1.2"]
+url = "https://packages.typst.org/preview/shiroa-0.1.2.tar.gz"
+hash = "sha256-OF21yuYTYDK5f5cFmQHUQNpgXM13sm2sfBULS1Uc/jo="
+typstDeps = []
+description = "A simple tool for creating modern online books in pure typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/Myriad-Dreamin/shiroa"
+
+[shiroa."0.1.1"]
+url = "https://packages.typst.org/preview/shiroa-0.1.1.tar.gz"
+hash = "sha256-f7VFuEXD1ASB228TqPBsDsq6Zd0RvIkvnLCCS98NqHs="
+typstDeps = []
+description = "A simple tool for creating modern online books in pure typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/Myriad-Dreamin/shiroa"
+
+[shiroa."0.1.0"]
+url = "https://packages.typst.org/preview/shiroa-0.1.0.tar.gz"
+hash = "sha256-EnNdteHbjhVgTksdEd5HWcjfh/3gS/AmlM4e4YR6cLQ="
+typstDeps = []
+description = "A simple tool for creating modern online books in pure typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/Myriad-Dreamin/shiroa"
+
+[showman."0.1.2"]
+url = "https://packages.typst.org/preview/showman-0.1.2.tar.gz"
+hash = "sha256-3Ueq4axPi/YUoqI9yUUfiz7MXBQhxr1Vm+h6s7v0UoM="
+typstDeps = []
+description = "Eval & show typst code outputs inline with their source"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ntjess/showman"
+
+[showman."0.1.1"]
+url = "https://packages.typst.org/preview/showman-0.1.1.tar.gz"
+hash = "sha256-Lyeh3s9fEUxNJLwUbfWHnTAtwdwzaGytGYfE/KCNtxg="
+typstDeps = []
+description = "Eval & show typst code outputs inline with their source"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ntjess/showman"
+
+[showman."0.1.0"]
+url = "https://packages.typst.org/preview/showman-0.1.0.tar.gz"
+hash = "sha256-Hgh3HrdYOeRfLgZJum/OTn0wb4r/tGxYaAclUu5PuBc="
+typstDeps = []
+description = "Eval & show typst code outputs inline with their source"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ntjess/showman"
+
+[showybox."2.0.4"]
+url = "https://packages.typst.org/preview/showybox-2.0.4.tar.gz"
+hash = "sha256-3sAFQByCBAhIAjrkZI6PSU3kDMenfNQx9AgIDwmSePo="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Colorful and customizable boxes for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+[showybox."2.0.3"]
+url = "https://packages.typst.org/preview/showybox-2.0.3.tar.gz"
+hash = "sha256-9oRPKbAp7ogo3ck9TOMOrnwu4a8T3BugG+y19CGMoOw="
+typstDeps = [
+ "codelst_1_0_0",
+ "codelst_2_0_1",
+]
+description = "Colorful and customizable boxes for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+[showybox."2.0.2"]
+url = "https://packages.typst.org/preview/showybox-2.0.2.tar.gz"
+hash = "sha256-Hf2sujvR+CfIa2ZYZIJb3QKUyZ2E4ie2usxsFLKRgpg="
+typstDeps = [
+ "codelst_1_0_0",
+ "codelst_2_0_1",
+]
+description = "Colorful and customizable boxes for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+[showybox."2.0.1"]
+url = "https://packages.typst.org/preview/showybox-2.0.1.tar.gz"
+hash = "sha256-FYpWwsOEQNKxNKPSPTp5GtSr7wRp1TXbamH80TBluWE="
+typstDeps = [
+ "codelst_1_0_0",
+]
+description = "Colorful and customizable boxes for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+[showybox."2.0.0"]
+url = "https://packages.typst.org/preview/showybox-2.0.0.tar.gz"
+hash = "sha256-pv1jomhbnn1vf+nd8oG537ZlS+uBT5hlXmTBF0BDJVM="
+typstDeps = [
+ "codelst_1_0_0",
+]
+description = "Colorful and customizable boxes for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+[showybox."1.1.0"]
+url = "https://packages.typst.org/preview/showybox-1.1.0.tar.gz"
+hash = "sha256-L823VBWegfplrw2sm6Jv7LguDjhwFh0Q7t8BnKC/QlY="
+typstDeps = []
+description = "Colorful and customizable boxes for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+[showybox."1.0.0"]
+url = "https://packages.typst.org/preview/showybox-1.0.0.tar.gz"
+hash = "sha256-Dv/UvQZsUZzYGjU88QeS1S6eKEq08b4lp6P128zKSyg="
+typstDeps = []
+description = "Colorful and customizable boxes for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+[showybox."0.2.1"]
+url = "https://packages.typst.org/preview/showybox-0.2.1.tar.gz"
+hash = "sha256-LYOf0gB/DgVh/Ic+D3lRhv4xjSXblPuKbzDEjbc43/k="
+typstDeps = []
+description = "Colorful and customizable boxes for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+[showybox."0.2.0"]
+url = "https://packages.typst.org/preview/showybox-0.2.0.tar.gz"
+hash = "sha256-ZaxGpAihH+fNA+z642qYCAvCV6NN35/ldM/8eGS0KJw="
+typstDeps = []
+description = "Colorful and customizable boxes for typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+[showybox."0.1.1"]
+url = "https://packages.typst.org/preview/showybox-0.1.1.tar.gz"
+hash = "sha256-jqmeQ9GIUkeOeATpD1T4oRmVtJgF0xFGEzs/8HYoN0o="
+typstDeps = []
+description = "Colorful and customizable boxes for typst"
+license = [
+ "MIT",
+]
+
+[shuxuejuan."0.1.1"]
+url = "https://packages.typst.org/preview/shuxuejuan-0.1.1.tar.gz"
+hash = "sha256-srMnXvFwGS/BvnQc+7ts0GGJMzKW42BnZkc8CWvvf8E="
+typstDeps = []
+description = "A simple Typst template for math exam in Chinese"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/VWWVVW/shuxuejuan"
+
+[shuxuejuan."0.1.0"]
+url = "https://packages.typst.org/preview/shuxuejuan-0.1.0.tar.gz"
+hash = "sha256-gdDw75Gm/vlWumFKM0+aqJudwnDIafW3pjYKE2S+Tls="
+typstDeps = []
+description = "A simple Typst template for math exam in Chinese"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/VWWVVW/shuxuejuan"
+
+[siddhi-syntax."0.1.0"]
+url = "https://packages.typst.org/preview/siddhi-syntax-0.1.0.tar.gz"
+hash = "sha256-fwiowLjoDTWvnY9d7k6AH4MmRpt6m94bSikczYxCX8o="
+typstDeps = []
+description = "Syntax highlighting support for Siddhi"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/mahgoh/typst-siddhi-syntax"
+
+[sigfig."0.1.0"]
+url = "https://packages.typst.org/preview/sigfig-0.1.0.tar.gz"
+hash = "sha256-C/AoEPkroDYqtHr+r3rzQmdAvE8M9di0rE5EIcOWcsk="
+typstDeps = []
+description = "Typst library for rounding numbers with significant figures and measurement uncertainty"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OverflowCat/sigfig"
+
+[silky-letter-insa."0.2.2"]
+url = "https://packages.typst.org/preview/silky-letter-insa-0.2.2.tar.gz"
+hash = "sha256-ruLgBs2EJfNGuPQJjRxdwr4mmJzBfsy8xFpAXG75tgM="
+typstDeps = []
+description = "A template made for letters and short documents of INSA, a French engineering school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+[silky-letter-insa."0.2.1"]
+url = "https://packages.typst.org/preview/silky-letter-insa-0.2.1.tar.gz"
+hash = "sha256-ti8+8wMbf+8AEv5720OSLgNsvw8O7wSDF+CqnNDsCFg="
+typstDeps = []
+description = "A template made for letters and short documents of INSA, a French engineering school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+[silky-letter-insa."0.2.0"]
+url = "https://packages.typst.org/preview/silky-letter-insa-0.2.0.tar.gz"
+hash = "sha256-kRQtM3XvXxFbYwjE8OeDGGIR+WGnOHS0c1uB8YH4uQc="
+typstDeps = []
+description = "A template made for letters and short documents of INSA, a French engineering school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+[silky-letter-insa."0.1.0"]
+url = "https://packages.typst.org/preview/silky-letter-insa-0.1.0.tar.gz"
+hash = "sha256-0PyOWEZ1jfN/PntiRLy68914845kzJbj8qH72NESd9g="
+typstDeps = []
+description = "A template made for letters and short documents of INSA, a French engineering school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+[silky-report-insa."0.4.0"]
+url = "https://packages.typst.org/preview/silky-report-insa-0.4.0.tar.gz"
+hash = "sha256-Pcsnm1nYr1xTKZ8x0vRQDn8oqy2HvbEGa7Rf1eZbETg="
+typstDeps = []
+description = "A template made for reports and other documents of INSA, a French engineering school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+[silky-report-insa."0.3.1"]
+url = "https://packages.typst.org/preview/silky-report-insa-0.3.1.tar.gz"
+hash = "sha256-EiZYvQ1qp8I2BpTfgHiIp8eRVNxPmaZ1mrjTpEaY1rE="
+typstDeps = []
+description = "A template made for reports and other documents of INSA, a French engineering school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+[silky-report-insa."0.3.0"]
+url = "https://packages.typst.org/preview/silky-report-insa-0.3.0.tar.gz"
+hash = "sha256-R8DTFJG0cjnhJLtYiD65NTZ0a0S3gRda8n55nE6zt0A="
+typstDeps = []
+description = "A template made for reports and other documents of INSA, a French engineering school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+[silky-report-insa."0.2.1"]
+url = "https://packages.typst.org/preview/silky-report-insa-0.2.1.tar.gz"
+hash = "sha256-2m2dgH2ac9sAcEV/8blrInEs5ZeJL+rF1mEUawbRnqI="
+typstDeps = []
+description = "A template made for reports and other documents of INSA, a French engineering school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+[silky-report-insa."0.2.0"]
+url = "https://packages.typst.org/preview/silky-report-insa-0.2.0.tar.gz"
+hash = "sha256-SxOjHr4/wWdsT8hacaTh4otnkpnFHEY7b4GYr5qkGyA="
+typstDeps = []
+description = "A template made for reports and other documents of INSA, a French engineering school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+[silky-report-insa."0.1.0"]
+url = "https://packages.typst.org/preview/silky-report-insa-0.1.0.tar.gz"
+hash = "sha256-Y4vZFmmfyJvuiYmzOzhZKp/JnXmrIE4axPdnzFG8oWo="
+typstDeps = []
+description = "A template made for reports of INSA, a French engineering school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+[silky-slides-insa."0.1.1"]
+url = "https://packages.typst.org/preview/silky-slides-insa-0.1.1.tar.gz"
+hash = "sha256-BqE3dTunGJHLeOsCSqtzAYOLXTdyfLVK38NAyJCqeSk="
+typstDeps = [
+ "touying_0_5_2",
+]
+description = "A template made for presentations of INSA, a French engineering school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+[silky-slides-insa."0.1.0"]
+url = "https://packages.typst.org/preview/silky-slides-insa-0.1.0.tar.gz"
+hash = "sha256-JWUqxkF/kxhjINUbhr1fLrEL52UeAo/FepCktHYuUak="
+typstDeps = [
+ "touying_0_5_2",
+]
+description = "A template made for presentations of INSA, a French engineering school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+[silver-dev-cv."1.0.2"]
+url = "https://packages.typst.org/preview/silver-dev-cv-1.0.2.tar.gz"
+hash = "sha256-T34FG7ouWLzB3opd87X1YqCxatL9UZchZSbt2gwflPM="
+typstDeps = []
+description = "A CV template by an engineer-recruiter, used by https://silver.dev"
+license = [
+ "MIT",
+]
+
+[silver-dev-cv."1.0.1"]
+url = "https://packages.typst.org/preview/silver-dev-cv-1.0.1.tar.gz"
+hash = "sha256-NRB6QE0ek0SnP5oTET/VIPWuJtEm+tWicNspTQ32TrA="
+typstDeps = []
+description = "A CV template by an engineer-recruiter, used by https://silver.dev"
+license = [
+ "MIT",
+]
+
+[silver-dev-cv."1.0.0"]
+url = "https://packages.typst.org/preview/silver-dev-cv-1.0.0.tar.gz"
+hash = "sha256-Eajgfx+RSm+k02+yLH4fln4w66KVwPiqGpFjmnUh5kc="
+typstDeps = []
+description = "A CV template by an engineer-recruiter, used by https://silver.dev"
+license = [
+ "MIT",
+]
+
+[simple-preavis."0.1.0"]
+url = "https://packages.typst.org/preview/simple-preavis-0.1.0.tar.gz"
+hash = "sha256-x5dtbcF3MGGGkGjAYSLHphn7XcrCnmRsf1g27aAq3vI="
+typstDeps = []
+description = "📖 a french move out letter"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/mathias-aparicio/simple-preavis"
+
+[simple-technical-resume."0.1.0"]
+url = "https://packages.typst.org/preview/simple-technical-resume-0.1.0.tar.gz"
+hash = "sha256-XzLJthRwSu8YvkdmzbyT7l9deqarweOQoFbT11+5H6A="
+typstDeps = []
+description = "A simple technical resume designed to fit within a page and work well with ATS"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/steadyfall/simple-technical-resume-template"
+
+[simplebnf."0.1.1"]
+url = "https://packages.typst.org/preview/simplebnf-0.1.1.tar.gz"
+hash = "sha256-dGCrPJW/E4rRKwO8Q+M0g1+zuC5N58Y5nrp1l4Q/9W8="
+typstDeps = []
+description = "A simple package to format Backus-Naur form (BNF"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Zeta611/simplebnf.typ"
+
+[simplebnf."0.1.0"]
+url = "https://packages.typst.org/preview/simplebnf-0.1.0.tar.gz"
+hash = "sha256-32BeECLqeHbvj5zpxsApt0M3GxgCuyhZ5gVuL/5Aung="
+typstDeps = []
+description = "A simple package to format Backus-Naur form (BNF"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Zeta611/simplebnf.typ"
+
+[simpleplot."0.1.1"]
+url = "https://packages.typst.org/preview/simpleplot-0.1.1.tar.gz"
+hash = "sha256-7y2S2K8R5kXUT4TDDE958ufImyGZBoHhIsrM0oARSjQ="
+typstDeps = [
+ "cetz_0_3_2",
+ "cetz-plot_0_1_1",
+]
+description = "A super simple Package to make graphs as simple as possible"
+license = [
+ "MIT",
+]
+
+[simpleplot."0.1.0"]
+url = "https://packages.typst.org/preview/simpleplot-0.1.0.tar.gz"
+hash = "sha256-Fckts2mNXv4ka+uVMPw+XUicsEVVtuMN/hYs1ryQ+iY="
+typstDeps = [
+ "cetz_0_3_2",
+ "cetz-plot_0_1_1",
+]
+description = "A super simple Package to make graphs as simple as possible"
+license = [
+ "MIT",
+]
+
+[slashion."0.1.1"]
+url = "https://packages.typst.org/preview/slashion-0.1.1.tar.gz"
+hash = "sha256-+Of97r2QKogqS4nkYjWDbZxZLb2zcribS/rsthXLoTg="
+typstDeps = []
+description = "Fractions with slash"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sjfhsjfh/slashion"
+
+[slashion."0.1.0"]
+url = "https://packages.typst.org/preview/slashion-0.1.0.tar.gz"
+hash = "sha256-4WniVRqnJTjCeYfs+kX/jsNr/WWI4aBpumAkebY9gkQ="
+typstDeps = []
+description = "Fractions with slash"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sjfhsjfh/slashion"
+
+[sleek-university-assignment."0.1.0"]
+url = "https://packages.typst.org/preview/sleek-university-assignment-0.1.0.tar.gz"
+hash = "sha256-yxbLt/VNoK/CgiW5DDlT5yksV4loWoKdLXQ7BFMwlCg="
+typstDeps = []
+description = "A sleek template for university assignments"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/UtkarshVerma/sleek-university-assignment"
+
+[slydst."0.1.4"]
+url = "https://packages.typst.org/preview/slydst-0.1.4.tar.gz"
+hash = "sha256-34VTPaekOfhY1jAt67QmHWHyYcnpv7TcgJMa1xe5pI0="
+typstDeps = []
+description = "Create simple static slides using standard headings"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/glambrechts/slydst"
+
+[slydst."0.1.3"]
+url = "https://packages.typst.org/preview/slydst-0.1.3.tar.gz"
+hash = "sha256-3YLm05Rdz00hdx1bSR7kZhapnQOo2X7id7NdEC5sOhA="
+typstDeps = [
+ "slydst_0_1_2",
+]
+description = "Create simple static slides using standard headings"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/glambrechts/slydst"
+
+[slydst."0.1.2"]
+url = "https://packages.typst.org/preview/slydst-0.1.2.tar.gz"
+hash = "sha256-r+MzJlQLGJXfgy47O9CMZRLbSQVneG8/KTPpTr4jCxk="
+typstDeps = []
+description = "Create simple static slides using standard headings"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/glambrechts/slydst"
+
+[slydst."0.1.1"]
+url = "https://packages.typst.org/preview/slydst-0.1.1.tar.gz"
+hash = "sha256-ke1otx9ZD55QhDliOgdEhKqaqpvH47xVNTVQqRZUllM="
+typstDeps = []
+description = "Create simple static slides using standard headings"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/glambrechts/slydst"
+
+[slydst."0.1.0"]
+url = "https://packages.typst.org/preview/slydst-0.1.0.tar.gz"
+hash = "sha256-69MWx3bpnAVGHy3gbk+HWEy6PKWilmDxS/+7bsGUd+I="
+typstDeps = []
+description = "Create simple static slides using standard headings"
+license = [
+ "MIT",
+]
+
+[smooth-tmlr."0.4.0"]
+url = "https://packages.typst.org/preview/smooth-tmlr-0.4.0.tar.gz"
+hash = "sha256-qJ/+wPqqN/ZYYkTil4YIs8hUc+SustHn0ERBT7QX0sE="
+typstDeps = []
+description = "Paper template for submission to Transaction on Machine Learning Research (TMLR"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/daskol/typst-templates"
+
+[smooth-tmlr."0.3.0"]
+url = "https://packages.typst.org/preview/smooth-tmlr-0.3.0.tar.gz"
+hash = "sha256-WaohD/Wgn21xaw4FS4X2wIdKfT25oBVpjpp7AIBQpjY="
+typstDeps = []
+description = "Paper template for submission to Transaction on Machine Learning Research (TMLR"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/daskol/typst-templates"
+
+[socialhub-fa."1.0.0"]
+url = "https://packages.typst.org/preview/socialhub-fa-1.0.0.tar.gz"
+hash = "sha256-peWWI/ULorfjvD7I8+rh9jm9MIrI/p+8y/kaH9MKM3k="
+typstDeps = [
+ "fontawesome_0_1_0",
+]
+description = "A Typst library for Social Media references with icons based on Font Awesome"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Bi0T1N/typst-socialhub-fa"
+
+[solving-physics."0.1.0"]
+url = "https://packages.typst.org/preview/solving-physics-0.1.0.tar.gz"
+hash = "sha256-aioIHCKBnf8BBlYvO1UtrQ27o1/oCEvRieY1I29V3Sg="
+typstDeps = [
+ "wrap-it_0_1_0",
+]
+description = "A package to formulate the solution to a physical problem"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/yegorweb/solving-physics"
+
+[songb."0.1.0"]
+url = "https://packages.typst.org/preview/songb-0.1.0.tar.gz"
+hash = "sha256-8QKMVaxspZ61yRe/JNNkmWYOLjJl2vmw1jy/vqi44Qo="
+typstDeps = []
+description = "A songbook package, to display chords above the lyrics and show a number-based index (similar to patacrep"
+license = [
+ "EUPL-1.2",
+]
+homepage = "https://codeberg.org/pfad.fr/typst-songbook"
+
+[sourcerer."0.2.1"]
+url = "https://packages.typst.org/preview/sourcerer-0.2.1.tar.gz"
+hash = "sha256-WrNizB+4ZYOoIOlJxiuzaWqaI7htDzuGjJ5ZsmfxiAA="
+typstDeps = []
+description = "Customizable and flexible source-code blocks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/miestrode/sourcerer"
+
+[sourcerer."0.2.0"]
+url = "https://packages.typst.org/preview/sourcerer-0.2.0.tar.gz"
+hash = "sha256-QiqlZT5GErfI2jxQYsshC3IbCb+CCmcYjBi+II51sVI="
+typstDeps = []
+description = "Customizable and flexible source-code blocks"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/miestrode/sourcerer"
+
+[sourcerer."0.1.0"]
+url = "https://packages.typst.org/preview/sourcerer-0.1.0.tar.gz"
+hash = "sha256-H/dnNxcF+ESQBm99dduyHlu11PEIaBFmTFYkwotBULM="
+typstDeps = []
+description = "Show code in a flexible, customizable way"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/miestrode/sourcerer"
+
+[soviet-matrix."0.2.0"]
+url = "https://packages.typst.org/preview/soviet-matrix-0.2.0.tar.gz"
+hash = "sha256-8b/4OqWjlSVdGy1UlgIvqC4SEY81OPvNd1cvWPYmdKo="
+typstDeps = [
+ "suiji_0_3_0",
+]
+description = "Tetris game in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/YouXam/soviet-matrix"
+
+[soviet-matrix."0.1.1"]
+url = "https://packages.typst.org/preview/soviet-matrix-0.1.1.tar.gz"
+hash = "sha256-cGHI8FsYv1NDKSZWCFQAqnT+mUeL7CkqSItHfVhsNVc="
+typstDeps = [
+ "soviet-matrix_0_1_0",
+ "suiji_0_3_0",
+]
+description = "Tetris game in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/YouXam/soviet-matrix"
+
+[soviet-matrix."0.1.0"]
+url = "https://packages.typst.org/preview/soviet-matrix-0.1.0.tar.gz"
+hash = "sha256-f4jlDZYXsDcDv5bBLbJnu+pjTiaGbfn3b1v1Ypzyi0U="
+typstDeps = [
+ "suiji_0_3_0",
+]
+description = "Tetris game in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/YouXam/soviet-matrix"
+
+[splash."0.4.0"]
+url = "https://packages.typst.org/preview/splash-0.4.0.tar.gz"
+hash = "sha256-NEEj4XVL18RRz96kqkUQW/aJ0p937PieIKQEgcpkP1k="
+typstDeps = []
+description = "A library of color palettes for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/kaarmu/typst-palettes"
+
+[splash."0.3.0"]
+url = "https://packages.typst.org/preview/splash-0.3.0.tar.gz"
+hash = "sha256-cAc2yvkZ1YDgKAeiALkeDvYfyV6zmxlTYl5/1SwAd60="
+typstDeps = []
+description = "A library of color palettes for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/kaarmu/typst-palettes"
+
+[splendid-mdpi."0.1.0"]
+url = "https://packages.typst.org/preview/splendid-mdpi-0.1.0.tar.gz"
+hash = "sha256-9R40v7NJV8bhBsEf4OM3kMD4mQ61Dn9xBVclURj6EHA="
+typstDeps = [
+ "physica_0_9_3",
+]
+description = "An MDPI-style paper template to publish at conferences and journals"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/JamesxX/splendid-mdpi"
+
+[spreet."0.1.0"]
+url = "https://packages.typst.org/preview/spreet-0.1.0.tar.gz"
+hash = "sha256-Nuze5zIh0iqOjH2BWW0tlYh2a6l97xP32tAoKfxOug0="
+typstDeps = []
+description = "Parse a spreadsheet"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lublak/typst-spreet-package"
+
+[springer-spaniel."0.1.0"]
+url = "https://packages.typst.org/preview/springer-spaniel-0.1.0.tar.gz"
+hash = "sha256-/UDMhefJPvw6VZXh7igYSLNaWU+H7VIOF7CAVxwMYu4="
+typstDeps = [
+ "board-n-pieces_0_4_0",
+ "chromo_0_1_0",
+ "codly_0_2_0",
+ "ctheorems_1_1_2",
+ "dining-table_0_1_0",
+ "drafting_0_2_0",
+ "gentle-clues_0_9_0",
+ "physica_0_9_3",
+]
+description = "A loose recreation of the Springer Contributed Chapter template on Overleaf"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/JamesxX/springer-spaniel"
+
+[ssrn-scribe."0.7.0"]
+url = "https://packages.typst.org/preview/ssrn-scribe-0.7.0.tar.gz"
+hash = "sha256-7DhbQfz2EuGtQph7aAy8k/YG5Raik8Ogz7z8b0RV/ng="
+typstDeps = [
+ "cetz_0_3_1",
+ "great-theorems_0_1_1",
+ "mitex_0_2_4",
+ "rich-counters_0_2_1",
+ "tablem_0_1_0",
+ "tablex_0_0_8",
+]
+description = "Personal working paper template for general doc and SSRN paper"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jxpeng98/Typst-Paper-Template"
+
+[ssrn-scribe."0.6.0"]
+url = "https://packages.typst.org/preview/ssrn-scribe-0.6.0.tar.gz"
+hash = "sha256-ZI+FM8ML+2NsQAKzQiiDgn9KcjvPhDAb8cgrxkuf+DE="
+typstDeps = [
+ "cetz_0_2_2",
+ "ctheorems_1_1_2",
+ "mitex_0_2_4",
+ "tablem_0_1_0",
+ "tablex_0_0_8",
+]
+description = "Personal working paper template for general doc and SSRN paper"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jxpeng98/Typst-Paper-Template"
+
+[ssrn-scribe."0.5.0"]
+url = "https://packages.typst.org/preview/ssrn-scribe-0.5.0.tar.gz"
+hash = "sha256-/A5GRRNrcajeBtLYb8GQ8qgHZXYIfHUnVdpFFTp5XEk="
+typstDeps = [
+ "cetz_0_2_1",
+ "ctheorems_1_1_2",
+ "mitex_0_2_2",
+ "tablem_0_1_0",
+ "tablex_0_0_8",
+]
+description = "Personal working paper template for general doc and SSRN paper"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jxpeng98/Typst-Paper-Template"
+
+[ssrn-scribe."0.4.9"]
+url = "https://packages.typst.org/preview/ssrn-scribe-0.4.9.tar.gz"
+hash = "sha256-CgqIC4uk7mdTB1Nay8r+wdwXG01xYKxUZu1vCJ2L8j0="
+typstDeps = [
+ "cetz_0_2_1",
+ "ctheorems_1_1_0",
+ "mitex_0_2_2",
+ "tablem_0_1_0",
+ "tablex_0_0_8",
+]
+description = "Personal working paper template for general doc and SSRN paper"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jxpeng98/Typst-Paper-Template"
+
+[stack-pointer."0.1.0"]
+url = "https://packages.typst.org/preview/stack-pointer-0.1.0.tar.gz"
+hash = "sha256-A0oAaLVMQVZN9C/0NkC8Kkc8vmebjahLKnSPR0wavbI="
+typstDeps = [
+ "codly_0_2_0",
+ "polylux_0_3_1",
+ "tidy_0_2_0",
+]
+description = "A library for visualizing the execution of (imperative) computer programs"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/SillyFreak/typst-stack-pointer"
+
+[starter-journal-article."0.3.2"]
+url = "https://packages.typst.org/preview/starter-journal-article-0.3.2.tar.gz"
+hash = "sha256-zIv5xE2rmkTPQOvUVd7/S8aVgBg27+yKaiGx250PNgo="
+typstDeps = []
+description = "A starter template for journal articles"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPDell/typst-starter-journal-article"
+
+[starter-journal-article."0.3.1"]
+url = "https://packages.typst.org/preview/starter-journal-article-0.3.1.tar.gz"
+hash = "sha256-BXeP89PQNhZdGM5brK4aVo2f4T4+1bmQGKJSYfElrP0="
+typstDeps = []
+description = "A starter template for journal articles"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPDell/typst-starter-journal-article"
+
+[starter-journal-article."0.3.0"]
+url = "https://packages.typst.org/preview/starter-journal-article-0.3.0.tar.gz"
+hash = "sha256-OnbQ8RGubDpD0UvDZtDkmIOETJe4evQzqRi3/Y+tfUw="
+typstDeps = []
+description = "A starter template for journal articles"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPDell/typst-starter-journal-article"
+
+[starter-journal-article."0.2.0"]
+url = "https://packages.typst.org/preview/starter-journal-article-0.2.0.tar.gz"
+hash = "sha256-wtZwHT/lQ2lT9L1jUEmppPEk91/mBVyHXqB2N2M/5G4="
+typstDeps = []
+description = "A starter template for journal articles"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPDell/typst-starter-journal-article"
+
+[starter-journal-article."0.1.1"]
+url = "https://packages.typst.org/preview/starter-journal-article-0.1.1.tar.gz"
+hash = "sha256-TkYgy+c+AXHm06OJlIPNP0zfVmjeoz5FluIjPXpyaA0="
+typstDeps = []
+description = "A starter template for journal articles"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPDell/typst-starter-journal-article"
+
+[statastic."1.0.0"]
+url = "https://packages.typst.org/preview/statastic-1.0.0.tar.gz"
+hash = "sha256-zAYUeBwLwXHhLVBdYenuEpcG0RTBh0lBbqAiPXDafoY="
+typstDeps = []
+description = "A library to calculate statistics for numerical data"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/dikkadev/typst-statastic"
+
+[statastic."0.1.0"]
+url = "https://packages.typst.org/preview/statastic-0.1.0.tar.gz"
+hash = "sha256-X9rjlIKVaq36ghKovx0aJVS+Z47owij4mLOPcLrvOX0="
+typstDeps = []
+description = "A library to calculate statistics for numerical data"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/Sett17/typst-statastic"
+
+[statementsp."0.1.0"]
+url = "https://packages.typst.org/preview/statementsp-0.1.0.tar.gz"
+hash = "sha256-m+t+94e5wAUrzZrrirROoJceuShgHDrUzqIK1biUdL4="
+typstDeps = [
+ "headcount_0_1_0",
+ "showybox_2_0_4",
+]
+description = "Happy statement box and its cross referrence system"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Riley719/typst-statementsp"
+
+[stellar-iac."0.4.1"]
+url = "https://packages.typst.org/preview/stellar-iac-0.4.1.tar.gz"
+hash = "sha256-vxJ+YZEpi3w8pkFhmupmifPOI8G8A+tS8sJ+bGEsreM="
+typstDeps = []
+description = "Template for the International Astronautical Congress (IAC) manuscript"
+license = [
+ "MIT",
+ "MIT-0",
+]
+homepage = "https://github.com/shunichironomura/iac-typst-template"
+
+[stonewall."0.2.0"]
+url = "https://packages.typst.org/preview/stonewall-0.2.0.tar.gz"
+hash = "sha256-Xyjl2qjhs1Vy2i7YYbKTgUtYa915Nk0zv12kWS2bmcs="
+typstDeps = []
+description = "Stonewall provides beautiful pride flag colours for gradients"
+license = [
+ "GPL-3.0-or-later",
+]
+homepage = "https://github.com/vanilla-extracts/stonewall"
+
+[stonewall."0.1.0"]
+url = "https://packages.typst.org/preview/stonewall-0.1.0.tar.gz"
+hash = "sha256-oY35Sbn6emAPYoxrrNjcGVohUU2bmUggQDHfgB1TanU="
+typstDeps = []
+description = "Stonewall provides beautiful pride flag colours for gradients"
+license = [
+ "GPL-3.0-or-later",
+]
+homepage = "https://github.com/coco33920/stonewall"
+
+[structogrammer."0.1.1"]
+url = "https://packages.typst.org/preview/structogrammer-0.1.1.tar.gz"
+hash = "sha256-kC2pidzajg6i7cJbLodRb0JwTuA3ZuCjrfNzJ+a7OeI="
+typstDeps = []
+description = "Draw Nassi-Shneiderman diagrams (or structograms"
+license = [
+ "MIT",
+]
+
+[structogrammer."0.1.0"]
+url = "https://packages.typst.org/preview/structogrammer-0.1.0.tar.gz"
+hash = "sha256-3liDyEVrTgYRHGUVPJkvkvlbu2T7wEQFt7mVpJI7Mq0="
+typstDeps = []
+description = "Draw Nassi-Shneiderman diagrams (or structograms"
+license = [
+ "MIT",
+]
+
+[structured-uib."0.1.0"]
+url = "https://packages.typst.org/preview/structured-uib-0.1.0.tar.gz"
+hash = "sha256-7grAe2JRSNF4FWqhvGcJ8eFEbIO8TYO+cqCEYncLl2E="
+typstDeps = [
+ "codedis_0_1_0",
+]
+description = "Lab report template for the course PHYS114 at the University of Bergen"
+license = [
+ "MIT",
+ "MIT-0",
+]
+homepage = "https://github.com/AugustinWinther/structured-uib"
+
+[stundenzettel."0.1.0"]
+url = "https://packages.typst.org/preview/stundenzettel-0.1.0.tar.gz"
+hash = "sha256-w5nGWIKvf6xSjQGjpWYJ2hpsDwEyJ6xuurAwxLrwdKk="
+typstDeps = []
+description = "Track your work hours with typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/bratorange/stundenzettel.typ"
+
+[stv-vub-huisstijl."0.1.0"]
+url = "https://packages.typst.org/preview/stv-vub-huisstijl-0.1.0.tar.gz"
+hash = "sha256-/6Fjn0MMOgye1F+U3hVUvKW96btm11rP52OGRpUWNDQ="
+typstDeps = [
+ "cetz_0_3_0",
+]
+description = "An unofficial template to get the look of the Vrije Universiteit Brussel (VUB) huisstijl in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/WannesMalfait/vub-huisstijl-typst/"
+
+[suboutline."0.3.0"]
+url = "https://packages.typst.org/preview/suboutline-0.3.0.tar.gz"
+hash = "sha256-k3sheGkdYqFHM5MPuZ4mo8DxDBKyCpafrTfvPZRz44M="
+typstDeps = []
+description = "An outline function just for one section and nothing else"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/sdiebolt/suboutline"
+
+[suboutline."0.2.0"]
+url = "https://packages.typst.org/preview/suboutline-0.2.0.tar.gz"
+hash = "sha256-YL7vpO1WAeBx7waQgMMNMDOj2sgXt2a+Q2MK9AHowpU="
+typstDeps = []
+description = "An outline function just for one section and nothing else"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/sdiebolt/suboutline"
+
+[suboutline."0.1.0"]
+url = "https://packages.typst.org/preview/suboutline-0.1.0.tar.gz"
+hash = "sha256-lRndpl7d9Kly3QONtmSF2f10l9YTyDrGa3oxbsFpf80="
+typstDeps = []
+description = "An outline function just for one section and nothing else"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/sdiebolt/suboutline"
+
+[subpar."0.2.2"]
+url = "https://packages.typst.org/preview/subpar-0.2.2.tar.gz"
+hash = "sha256-0LO0fBBee8rMKnKpNZWKSo6YFL3R5SXOES0fAdWu7Ic="
+typstDeps = []
+description = "Create sub figures easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/subpar"
+
+[subpar."0.2.1"]
+url = "https://packages.typst.org/preview/subpar-0.2.1.tar.gz"
+hash = "sha256-+e1yF/OBGf9uGP5F2F5BQsRtdR2fF0JUqydrSr50AKM="
+typstDeps = []
+description = "Create sub figures easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/subpar"
+
+[subpar."0.2.0"]
+url = "https://packages.typst.org/preview/subpar-0.2.0.tar.gz"
+hash = "sha256-dYN0lYgbJg30eYI1btCuXewlNbJn+U8342AETisWniQ="
+typstDeps = [
+ "hydra_0_4_0",
+ "t4t_0_3_2",
+]
+description = "Create sub figures easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/subpar"
+
+[subpar."0.1.1"]
+url = "https://packages.typst.org/preview/subpar-0.1.1.tar.gz"
+hash = "sha256-7ahfFv9uBDkMV23TqXGHple0eiMcoKl4l2kDbYmHZW4="
+typstDeps = [
+ "t4t_0_3_2",
+]
+description = "Create sub figures easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/subpar"
+
+[subpar."0.1.0"]
+url = "https://packages.typst.org/preview/subpar-0.1.0.tar.gz"
+hash = "sha256-jD8kGERNxPqxBv5hJiRfJVX0VmjnwtSIu3cHxbZ8dw0="
+typstDeps = [
+ "t4t_0_3_2",
+]
+description = "Create sub figures easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tingerrr/subpar"
+
+[suiji."0.3.0"]
+url = "https://packages.typst.org/preview/suiji-0.3.0.tar.gz"
+hash = "sha256-Fu5fl35phzkx7cWezobq1pB17YyQVGdZ31XDJDdI5EY="
+typstDeps = [
+ "cetz_0_2_2",
+]
+description = "A high efficient random number generator in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/liuguangxi/suiji"
+
+[suiji."0.2.2"]
+url = "https://packages.typst.org/preview/suiji-0.2.2.tar.gz"
+hash = "sha256-22RunIHJlrIroWY/pPqU+paKuy4Lu3UtgTl6eDdjGhE="
+typstDeps = [
+ "cetz_0_2_2",
+]
+description = "A high efficient random number generator in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/liuguangxi/suiji"
+
+[suiji."0.2.1"]
+url = "https://packages.typst.org/preview/suiji-0.2.1.tar.gz"
+hash = "sha256-C3+16Q1MUJVYcZRzfTku2Yh5NkXHdWIljIuV5B8DhgA="
+typstDeps = [
+ "cetz_0_2_2",
+]
+description = "A high efficient random number generator in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/liuguangxi/suiji"
+
+[suiji."0.2.0"]
+url = "https://packages.typst.org/preview/suiji-0.2.0.tar.gz"
+hash = "sha256-nLIMAB+ihAerJncvoZV+zLXyrEKqoJ30k3jRXl8+Mqo="
+typstDeps = [
+ "cetz_0_2_2",
+]
+description = "A high efficient random number generator in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/liuguangxi/suiji"
+
+[suiji."0.1.0"]
+url = "https://packages.typst.org/preview/suiji-0.1.0.tar.gz"
+hash = "sha256-r0+wFkVT0V3W8+0hmKRtvYXLz4gp4Z2qx6Lvab/nQ/A="
+typstDeps = [
+ "cetz_0_2_1",
+]
+description = "A high efficient random number generator in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/liuguangxi/suiji"
+
+[summy."0.1.0"]
+url = "https://packages.typst.org/preview/summy-0.1.0.tar.gz"
+hash = "sha256-y7aobnRmJJTqgQ3QXxVvF+Tr9IEzXIDtC5gbMSgZBpU="
+typstDeps = [
+ "lovelace_0_3_0",
+]
+description = "Generate cheatsheets with automatic colour coding and sectioning with a focus on space-efficiency"
+license = [
+ "MIT",
+]
+
+[sunny-famnit."0.2.0"]
+url = "https://packages.typst.org/preview/sunny-famnit-0.2.0.tar.gz"
+hash = "sha256-hgtQQlXpud9mFtRlsiOu4NjUrGXgUVNmepjF9BYGhkw="
+typstDeps = []
+description = "Thesis template for University of Primorska, FAMNIT"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Tiggax/famnit_typst_template"
+
+[sunny-famnit."0.1.0"]
+url = "https://packages.typst.org/preview/sunny-famnit-0.1.0.tar.gz"
+hash = "sha256-6qia12R2eyA6oqpLeQwXwTznV01CbJ/j2VXscrDdh7g="
+typstDeps = []
+description = "Thesis template for University of Primorska, FAMNIT"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Tiggax/famnit_typst_template"
+
+[sunny-orasis."0.1.1"]
+url = "https://packages.typst.org/preview/sunny-orasis-0.1.1.tar.gz"
+hash = "sha256-zuhGs2vdw3YUw7jO9RTu0cdZrGXDkMDtOqeZcsAnzA4="
+typstDeps = []
+description = "A paper template made for the French national conference ORASIS following the author guidelines (also works for RFIAP and CAP"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/edgaremy/typst-sunny-orasis"
+
+[sunny-orasis."0.1.0"]
+url = "https://packages.typst.org/preview/sunny-orasis-0.1.0.tar.gz"
+hash = "sha256-fvTdOq6jHcWFiqNjgTmIw+GWd5OL86w3mGiC0c/aX1Q="
+typstDeps = []
+description = "A paper template made for the French national conference ORASIS following the author guidelines (also works for RFIAP and CAP"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/edgaremy/typst-sunny-orasis"
+
+[super-suboptimal."0.1.0"]
+url = "https://packages.typst.org/preview/super-suboptimal-0.1.0.tar.gz"
+hash = "sha256-ljpWIcKuGoYeDKewU6Yq77TYsiIISVyguPwCqaQM6B0="
+typstDeps = []
+description = "Unicode super- and subscripts in equations"
+license = [
+ "MIT",
+]
+
+[superb-pci."0.1.0"]
+url = "https://packages.typst.org/preview/superb-pci-0.1.0.tar.gz"
+hash = "sha256-nU4NQ+ZC2E3HBcK0GDR+TskJ4fBipsKCKTTWShttfQU="
+typstDeps = []
+description = "A Peer Community In (PCI) and Peer Community Journal (PCJ) template"
+license = [
+ "MIT-0",
+]
+homepage = "https://codeberg.org/alxsim/superb-pci"
+
+[supercharged-dhbw."3.4.1"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-3.4.1.tar.gz"
+hash = "sha256-Ft8gaJeJrRRmycdAB5S6a7M5/G1mU0E7Zq7zZgGMpAo="
+typstDeps = [
+ "codelst_2_0_2",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."3.4.0"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-3.4.0.tar.gz"
+hash = "sha256-hnbWr3M3OPmILYcvmj1Xz1IEMBqLR9IFumRFUa+mJtY="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."3.3.2"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-3.3.2.tar.gz"
+hash = "sha256-pROAsh785O1iYLBeRRciHpETborrAjss46XtdVYsMB4="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."3.3.1"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-3.3.1.tar.gz"
+hash = "sha256-/4Abm9nCDwbwQV0YtwYBryZ3IfZFvEYBaOC/sFkR5rI="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."3.3.0"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-3.3.0.tar.gz"
+hash = "sha256-ew5XTm83U0zaWQ3t9OtO8HnEB/0uY4GOg3dSNG5auAg="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."3.2.0"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-3.2.0.tar.gz"
+hash = "sha256-SHKCDTCCnf1wSGnXJ87Zwr4A7HsZd/hW2nL4kK5l414="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."3.1.1"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-3.1.1.tar.gz"
+hash = "sha256-rGvpwoA5S1sPA9BFmJYrerLOgFYkrXwLdfnreohNYXw="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."3.1.0"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-3.1.0.tar.gz"
+hash = "sha256-AZOaMHNiYnWIBHb5X4JwkMuCcs5ZhxIELmFTjjiiFu4="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."3.0.0"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-3.0.0.tar.gz"
+hash = "sha256-a/jdO19FDRWRSpmH3p2T54XiCCK9QHjPxvFNitXZuDc="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."2.2.0"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-2.2.0.tar.gz"
+hash = "sha256-Yy+kyWXDuq0KHz+AtVv435BqJR8n1zXGNuwmQptdWqw="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."2.1.0"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-2.1.0.tar.gz"
+hash = "sha256-vCD5IGFru13YkxKqonVE+CMIuQkrwaHTQb2p+v8/C9w="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."2.0.2"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-2.0.2.tar.gz"
+hash = "sha256-29rhEHTCRdG4CpowQBW4mJReZoaGPyEVXTcEzY9bT0s="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."2.0.1"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-2.0.1.tar.gz"
+hash = "sha256-QgCiMvs+BEb1Ud44iQ0tfv1jHXhN0HsKziOmS01PpL4="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."2.0.0"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-2.0.0.tar.gz"
+hash = "sha256-L7j955kzw8BQ51UpGhlBih4ZanNa5E6C3qBw0i4v60Y="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."1.5.0"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-1.5.0.tar.gz"
+hash = "sha256-HaL+Z2zwYRm7h7ycuM02g6qg/ndGEyS2jU6oA7IVqEA="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."1.4.0"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-1.4.0.tar.gz"
+hash = "sha256-bLYvHbxGHdxaj3/OgwGcm7YFOODa43pOB8epTRFjNsc="
+typstDeps = [
+ "acrostiche_0_3_1",
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."1.3.1"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-1.3.1.tar.gz"
+hash = "sha256-H2z1UFtS5qP5JyjF3YZ/qkAo/G/R0fEpHB/eiTZK+kY="
+typstDeps = [
+ "acrostiche_0_3_1",
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."1.3.0"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-1.3.0.tar.gz"
+hash = "sha256-rO1Gn8ID4Ernt4AnVdPsHsJKeeau3Ifer2biKAG+Hu0="
+typstDeps = [
+ "acrostiche_0_3_1",
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."1.2.0"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-1.2.0.tar.gz"
+hash = "sha256-xbb/Gu5DWJ0dWByhwO6b16YhpoMF0cirI2ZHfoa3OI4="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."1.1.0"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-1.1.0.tar.gz"
+hash = "sha256-B12gcwU4Lzos9qyCEvBJWcz3fMAWwaOodCB00AejjDs="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[supercharged-dhbw."1.0.0"]
+url = "https://packages.typst.org/preview/supercharged-dhbw-1.0.0.tar.gz"
+hash = "sha256-5TP7jaGHv8hrN+v5IcnKdZFiGK2T+d8T3CjJiud8Cyc="
+typstDeps = [
+ "codelst_2_0_1",
+]
+description = "Unofficial Template for DHBW"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+[swank-tex."0.1.0"]
+url = "https://packages.typst.org/preview/swank-tex-0.1.0.tar.gz"
+hash = "sha256-3QcMzmvAghyaqtRUL6G7NU+XFKTiXNWQL5NgT4pRY40="
+typstDeps = [
+ "codly_1_0_0",
+ "codly-languages_0_1_1",
+]
+description = "Render those funky logos for TeX, LaTeX, and friends"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[swe-cv."1.0.0"]
+url = "https://packages.typst.org/preview/swe-cv-1.0.0.tar.gz"
+hash = "sha256-X//SJ3InPLqrXXSquT7YcLRa9vyyQj423sw3/zVpvT8="
+typstDeps = []
+description = "Engineering oriented cv template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sardorml/swe-cv"
+
+[sweet-graduate-resume."0.1.0"]
+url = "https://packages.typst.org/preview/sweet-graduate-resume-0.1.0.tar.gz"
+hash = "sha256-i13rCZCzw+/HLyV3nDRVSG0ZlYbY4HvxNuNrtms6BwY="
+typstDeps = []
+description = "A simple graduate student resume template"
+license = [
+ "MIT",
+]
+homepage = "https://codeberg.org/innocent_zero/typst-resume"
+
+[syntree."0.2.1"]
+url = "https://packages.typst.org/preview/syntree-0.2.1.tar.gz"
+hash = "sha256-rKNxgn7PtqeDPBnDH3hD9HQrB85JeO9uiM5g0m2LDPs="
+typstDeps = []
+description = "Linguistics syntax/parse tree rendering"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lynn/typst-syntree"
+
+[syntree."0.2.0"]
+url = "https://packages.typst.org/preview/syntree-0.2.0.tar.gz"
+hash = "sha256-TLB2LCkJAibQsNPeSBMxDqnmgES/+O2jKtnTH0dHBR4="
+typstDeps = []
+description = "Linguistics syntax/parse tree rendering"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lynn/typst-syntree"
+
+[syntree."0.1.0"]
+url = "https://packages.typst.org/preview/syntree-0.1.0.tar.gz"
+hash = "sha256-csUz/enNWHusk8oF00Q8Qr25igDORKR4aTrullJrewA="
+typstDeps = []
+description = "Linguistics syntax/parse tree rendering"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/lynn/typst-syntree"
+
+[t4t."0.4.2"]
+url = "https://packages.typst.org/preview/t4t-0.4.2.tar.gz"
+hash = "sha256-0aoAPE1c8Xu3escq6+pMhRi3Nc58jv9B0CV47Bz05sE="
+typstDeps = []
+description = "An utility package for typst package authors"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-tools4typst"
+
+[t4t."0.4.1"]
+url = "https://packages.typst.org/preview/t4t-0.4.1.tar.gz"
+hash = "sha256-+EhPb1J9Ly8+MUOckTsR2vPPxWDKcuCVabp0y484TW4="
+typstDeps = []
+description = "A utility package for typst package authors"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-tools4typst"
+
+[t4t."0.4.0"]
+url = "https://packages.typst.org/preview/t4t-0.4.0.tar.gz"
+hash = "sha256-Y95OBfEaX9LPkzEecH14YFIcvkz/K4PaTFw8QrAOFJU="
+typstDeps = []
+description = "A utility package for typst package authors"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-tools4typst"
+
+[t4t."0.3.2"]
+url = "https://packages.typst.org/preview/t4t-0.3.2.tar.gz"
+hash = "sha256-cLntiolPri4qvTiOcH7mFTJUh7MTh3vrT7MVphjpups="
+typstDeps = []
+description = "A utility package for typst package authors"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-tools4typst"
+
+[t4t."0.3.1"]
+url = "https://packages.typst.org/preview/t4t-0.3.1.tar.gz"
+hash = "sha256-wnbzAGmOxUaUoDJyq1xLVQQuWMhP5XHPjuPVMKYQ6tg="
+typstDeps = []
+description = "A utility package for typst package authors"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-tools4typst"
+
+[t4t."0.3.0"]
+url = "https://packages.typst.org/preview/t4t-0.3.0.tar.gz"
+hash = "sha256-siM7F8UOLq7IqlfAHszvGCCq1bueJBflZYBD7wKFA3Q="
+typstDeps = [
+ "t4t_0_2_0",
+]
+description = "A utility package for typst package authors"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-tools4typst"
+
+[t4t."0.2.0"]
+url = "https://packages.typst.org/preview/t4t-0.2.0.tar.gz"
+hash = "sha256-GMXIU/Fh+XYDqDBOcDJ1JkECkhFlGvJKE8HtFWaRX3E="
+typstDeps = []
+description = "A utility package for typst package authors"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-tools4typst"
+
+[t4t."0.1.0"]
+url = "https://packages.typst.org/preview/t4t-0.1.0.tar.gz"
+hash = "sha256-QM/X/9ebIRDfK2KnCR9xCKN1G83ZvZ9XG6+JcrXECwE="
+typstDeps = []
+description = "A utility package for typst package authors"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jneug/typst-tools4typst"
+
+[tableau-icons."0.331.0"]
+url = "https://packages.typst.org/preview/tableau-icons-0.331.0.tar.gz"
+hash = "sha256-9ljNMcVEhP1eKUCdLITB4vFxRqDaT9KSptDGxjBOgXo="
+typstDeps = [
+ "shadowed_0_2_0",
+ "tidy_0_4_2",
+]
+description = "Tabler.io Icons v3.31.0 for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/joelvonrotz/tableau-icons"
+
+[tableau-icons."0.330.0"]
+url = "https://packages.typst.org/preview/tableau-icons-0.330.0.tar.gz"
+hash = "sha256-zbVuVydvsX15uO1TXL0KquTROmfrx7XmjJFILR4/vnM="
+typstDeps = [
+ "shadowed_0_2_0",
+ "tidy_0_4_1",
+]
+description = "Tabler.io Icons v3.30.0 for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/joelvonrotz/tableau-icons"
+
+[tableau-icons."0.1.0"]
+url = "https://packages.typst.org/preview/tableau-icons-0.1.0.tar.gz"
+hash = "sha256-TiVyCwtd9upSDd6VkrvXofyt/2W6+FxmHPBZOgBQJjY="
+typstDeps = []
+description = "Tabler.io Icons for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/joelvonrotz/tableau-icons"
+
+[tablem."0.2.0"]
+url = "https://packages.typst.org/preview/tablem-0.2.0.tar.gz"
+hash = "sha256-xXsq6mh6lm2ZL8z9d9gQK+LYB8vHofHK+MfgcX5yWBY="
+typstDeps = []
+description = "Write markdown-like tables easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-tablem"
+
+[tablem."0.1.0"]
+url = "https://packages.typst.org/preview/tablem-0.1.0.tar.gz"
+hash = "sha256-xP4dkyRKp052It9Dd2pc7k2zx8eCbyJB1bTuSA16Atc="
+typstDeps = [
+ "tablex_0_0_6",
+]
+description = "Write markdown-like tables easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-tablem"
+
+[tablex."0.0.9"]
+url = "https://packages.typst.org/preview/tablex-0.0.9.tar.gz"
+hash = "sha256-XlUaoVwBctOaVEYdw+QlXGmR8xB0RvmdEw1WZp3DDy4="
+typstDeps = []
+description = "More powerful and customizable tables in Typst"
+license = [
+ "MIT",
+ "Apache-2.0",
+]
+homepage = "https://github.com/PgBiel/typst-tablex"
+
+[tablex."0.0.8"]
+url = "https://packages.typst.org/preview/tablex-0.0.8.tar.gz"
+hash = "sha256-BjYoCawgM2W2pBvbu3fIA+d4C3LhVNBkBVtEUy0/XJ4="
+typstDeps = []
+description = "More powerful and customizable tables in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/PgBiel/typst-tablex"
+
+[tablex."0.0.7"]
+url = "https://packages.typst.org/preview/tablex-0.0.7.tar.gz"
+hash = "sha256-vK1Z+O1tw3yYC2z1YRuBAjXiNx4DhmtSGzf+C7l7MRQ="
+typstDeps = []
+description = "More powerful and customizable tables in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/PgBiel/typst-tablex"
+
+[tablex."0.0.6"]
+url = "https://packages.typst.org/preview/tablex-0.0.6.tar.gz"
+hash = "sha256-mrApRp7dJVGNvVMYlkazVptM8vdGbfWuYLom7jI75aQ="
+typstDeps = []
+description = "More powerful and customizable tables in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/PgBiel/typst-tablex"
+
+[tablex."0.0.5"]
+url = "https://packages.typst.org/preview/tablex-0.0.5.tar.gz"
+hash = "sha256-oXOCmYBr5+kQrJGzUO7xfZ48zEQQWp4vCeFywoRdb5E="
+typstDeps = []
+description = "More powerful and customizable tables in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/PgBiel/typst-tablex"
+
+[tablex."0.0.4"]
+url = "https://packages.typst.org/preview/tablex-0.0.4.tar.gz"
+hash = "sha256-78c9M4bM3n5NNFUj312HQeKWyiIaJfaafV0CDhjm8BY="
+typstDeps = []
+description = "More powerful and customizable tables in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/PgBiel/typst-tablex"
+
+[tabut."1.0.2"]
+url = "https://packages.typst.org/preview/tabut-1.0.2.tar.gz"
+hash = "sha256-dkRx1MqgypAuDMVw9ap3Kq5fKGfxJgoDV4LB1X2HLS4="
+typstDeps = [
+ "tablex_0_0_8",
+]
+description = "Display data as tables"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Amelia-Mowers/typst-tabut"
+
+[tabut."1.0.1"]
+url = "https://packages.typst.org/preview/tabut-1.0.1.tar.gz"
+hash = "sha256-4sMXbQ3j8ckigv8oukR8NLeI7ZrCbbCawaT4ThBtk38="
+typstDeps = [
+ "tablex_0_0_8",
+]
+description = "Display data as tables"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Amelia-Mowers/tabut"
+
+[tabut."1.0.0"]
+url = "https://packages.typst.org/preview/tabut-1.0.0.tar.gz"
+hash = "sha256-PLJMpdE2DU1NCB2zuKbsiplERE9jvnqiG7AGc8IYymA="
+typstDeps = [
+ "tablex_0_0_8",
+]
+description = "Display data as tables"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Amelia-Mowers/tabut"
+
+[tada."0.2.0"]
+url = "https://packages.typst.org/preview/tada-0.2.0.tar.gz"
+hash = "sha256-sXTb6m1r0l48ncyp30CLSVromlMs9o9qxK+JcyvOu9Y="
+typstDeps = []
+description = "Easy, composable tabular data manipulation"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ntjess/typst-tada"
+
+[tada."0.1.0"]
+url = "https://packages.typst.org/preview/tada-0.1.0.tar.gz"
+hash = "sha256-gNe8I98cTOxdOzVG3UuuoLmrOgKB8mxp4JaisITgVmc="
+typstDeps = []
+description = "Easy, composable tabular data manipulation"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ntjess/typst-tada"
+
+[tally."0.1.1"]
+url = "https://packages.typst.org/preview/tally-0.1.1.tar.gz"
+hash = "sha256-b9Q6Itgpob4usvHXdnpeZ3Tqhda+FtlspIW8mCvweXc="
+typstDeps = []
+description = "Automatically handle todos in your document"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/7ijme/tally"
+
+[tally."0.1.0"]
+url = "https://packages.typst.org/preview/tally-0.1.0.tar.gz"
+hash = "sha256-0DVp4X82gaA4267qBNXQRtPEoUZSrK02zMlYPIp6060="
+typstDeps = []
+description = "Automatically handle todos in your document"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/7ijme/tally"
+
+[tasteful-pairings."0.1.0"]
+url = "https://packages.typst.org/preview/tasteful-pairings-0.1.0.tar.gz"
+hash = "sha256-j68y3BmvDWBFKt5XdOHJxu3lAR5XX5PD0Tw6JXIdXSk="
+typstDeps = []
+description = "A carefully curated collection of font pairings"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/swaits/typst-collection"
+
+[tatras-ieee."0.1.0"]
+url = "https://packages.typst.org/preview/tatras-ieee-0.1.0.tar.gz"
+hash = "sha256-xyj59Q/TAhe6cuEp/a9lnpENDhXdmgBx5ARNahGZUMs="
+typstDeps = []
+description = "An IEEE-style paper template for use with Slovak language"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/MeheheCedy22/tatras-ieee"
+
+[tbl."0.0.4"]
+url = "https://packages.typst.org/preview/tbl-0.0.4.tar.gz"
+hash = "sha256-fZsZB7yngWGBs5ezIXuwI4TJD3oCXcciNznv37GrWBI="
+typstDeps = [
+ "tablex_0_0_5",
+]
+description = "Complex tables, written concisely"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/maxcrees/tbl.typ"
+
+[tbl."0.0.3"]
+url = "https://packages.typst.org/preview/tbl-0.0.3.tar.gz"
+hash = "sha256-xk02kiOkkOFtqNgkeE9Ktya+UHQK2pbPNJkLcj7Jz8Y="
+typstDeps = [
+ "tablex_0_0_4",
+]
+description = "Complex tables, written concisely"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/maxcrees/tbl.typ"
+
+[tblr."0.3.1"]
+url = "https://packages.typst.org/preview/tblr-0.3.1.tar.gz"
+hash = "sha256-dIFBY7VHPz0n2LiyzTcUsCyEk0X1bDtxu/Dwitne1gk="
+typstDeps = [
+ "zero_0_3_0",
+]
+description = "Table generation and alignment helpers inspired by LaTeX's Tabularray package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tshort/tblr"
+
+[tblr."0.3.0"]
+url = "https://packages.typst.org/preview/tblr-0.3.0.tar.gz"
+hash = "sha256-lFx90WjYGuWtiYz57j5zkWZYGLQgmgOF7gQdOB0+TX4="
+typstDeps = [
+ "zero_0_3_0",
+]
+description = "Table generation and alignment helpers inspired by LaTeX's Tabularray package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tshort/tblr"
+
+[tblr."0.2.0"]
+url = "https://packages.typst.org/preview/tblr-0.2.0.tar.gz"
+hash = "sha256-lv3FHKVvFk6a0b49ueMYk7pG6l6TuecT7YZ+rkzg6tM="
+typstDeps = [
+ "zero_0_3_0",
+]
+description = "Table generation helpers inspired by LaTeX's Tabularray package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tshort/tblr"
+
+[tblr."0.1.0"]
+url = "https://packages.typst.org/preview/tblr-0.1.0.tar.gz"
+hash = "sha256-J7oVBnqmiEREFg3QrW4O6+mg8X33W7wShWsZ0Gi5HV0="
+typstDeps = [
+ "zero_0_1_0",
+]
+description = "Table generation helpers inspired by LaTeX's Tabularray package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tshort/tblr"
+
+[teig."0.1.0"]
+url = "https://packages.typst.org/preview/teig-0.1.0.tar.gz"
+hash = "sha256-taQzGgt/CzFCPSHRBlOKWfSmIKcyMQKk4pseIw2iMTY="
+typstDeps = []
+description = "Calculate eigenvalues of matrices"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/SolidTux/teig"
+
+[tenv."0.1.2"]
+url = "https://packages.typst.org/preview/tenv-0.1.2.tar.gz"
+hash = "sha256-QNpxcQZEJjqONwZBHaKAgcdnc0g1xC9VTzLTTFMPfto="
+typstDeps = []
+description = "Parse a .env content"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/chillcicada/typst-dotenv"
+
+[tenv."0.1.1"]
+url = "https://packages.typst.org/preview/tenv-0.1.1.tar.gz"
+hash = "sha256-hnif+Ihuv/PGp1QfRLpOX7pTwqkLCbUgFJwTkHRXy6Q="
+typstDeps = []
+description = "Parse a .env content"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/chillcicada/typst-dotenv"
+
+[tfguf."0.0.1"]
+url = "https://packages.typst.org/preview/tfguf-0.0.1.tar.gz"
+hash = "sha256-57aMGzmncJSV0LSiEcv9alhSZ95j7BDaF99Sek71lNk="
+typstDeps = []
+description = "Plantilla para hacer TFGs en el Grado en Física de UNIR"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pammacdotnet/TFGUF"
+
+[tgm-hit-protocol."0.1.0"]
+url = "https://packages.typst.org/preview/tgm-hit-protocol-0.1.0.tar.gz"
+hash = "sha256-nw8It3tBXA2XRhuZm0k5RrWOw0mTiIaDJ74B+NSFu/k="
+typstDeps = [
+ "ccicons_1_0_0",
+ "datify_0_1_2",
+ "glossarium_0_4_1",
+ "linguify_0_4_0",
+ "outrageous_0_2_0",
+]
+description = "Protocol template for students of the HIT department at TGM Wien"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TGM-HIT/typst-protocol"
+
+[tgm-hit-thesis."0.3.0"]
+url = "https://packages.typst.org/preview/tgm-hit-thesis-0.3.0.tar.gz"
+hash = "sha256-grS8PHu4lkietTBdZAZd60f72VpGUwtbOUlRQqunK6Q="
+typstDeps = [
+ "alexandria_0_1_3",
+ "glossarium_0_5_2",
+ "linguify_0_4_2",
+]
+description = "Diploma thesis template for students of the HIT department at TGM Wien"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TGM-HIT/typst-diploma-thesis"
+
+[tgm-hit-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/tgm-hit-thesis-0.2.0.tar.gz"
+hash = "sha256-Kute+x2gIRTWDd7RcFkNNP1Nhezby0W9SMnWwI1dwPU="
+typstDeps = [
+ "glossarium_0_5_0",
+ "linguify_0_4_0",
+]
+description = "Diploma thesis template for students of the HIT department at TGM Wien"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TGM-HIT/typst-diploma-thesis"
+
+[tgm-hit-thesis."0.1.3"]
+url = "https://packages.typst.org/preview/tgm-hit-thesis-0.1.3.tar.gz"
+hash = "sha256-MH7zWON+Twx+tn+a7eOWtdiSVeSiRfUplIODzHAfl1U="
+typstDeps = [
+ "glossarium_0_4_1",
+ "linguify_0_4_0",
+]
+description = "Diploma thesis template for students of the HIT department at TGM Wien"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TGM-HIT/typst-diploma-thesis"
+
+[tgm-hit-thesis."0.1.2"]
+url = "https://packages.typst.org/preview/tgm-hit-thesis-0.1.2.tar.gz"
+hash = "sha256-94AWou0sNUmgH0+kgmN+rPWHEKXUq0zQ/T4+uh+9T/8="
+typstDeps = [
+ "glossarium_0_4_1",
+ "linguify_0_4_0",
+]
+description = "Diploma thesis template for students of the HIT department at TGM Wien"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TGM-HIT/typst-diploma-thesis"
+
+[tgm-hit-thesis."0.1.1"]
+url = "https://packages.typst.org/preview/tgm-hit-thesis-0.1.1.tar.gz"
+hash = "sha256-fIxkCgxZwMj8wIU8DDM382ixmrpqKCljncFgFdippMw="
+typstDeps = [
+ "glossarium_0_4_1",
+ "linguify_0_4_0",
+]
+description = "Diploma thesis template for students of the HIT department at TGM Wien"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TGM-HIT/typst-diploma-thesis"
+
+[tgm-hit-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/tgm-hit-thesis-0.1.0.tar.gz"
+hash = "sha256-WnS2p5rEYmwfoiCJ+FzJOVdWwK37kcfOayn7W3ULK/4="
+typstDeps = [
+ "glossarium_0_4_1",
+ "linguify_0_4_0",
+]
+description = "Diploma thesis template for students of the HIT department at TGM Wien"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TGM-HIT/typst-diploma-thesis"
+
+[theoretic."0.2.0"]
+url = "https://packages.typst.org/preview/theoretic-0.2.0.tar.gz"
+hash = "sha256-MYLu49+gFBfkSnmTqc7Nh9qsjstJMBB2BFDaQdQLddI="
+typstDeps = []
+description = "Opinionated tool to typeset theorems, lemmas and such"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/nleanba/typst-theoretic"
+
+[theoretic."0.1.1"]
+url = "https://packages.typst.org/preview/theoretic-0.1.1.tar.gz"
+hash = "sha256-LLT25VWpXpbqgnGd5tqAnqe2HimgF8qKZjY34YyVnTU="
+typstDeps = []
+description = "Opinionated tool to typeset theorems, lemmas and such"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/nleanba/typst-theoretic"
+
+[theoretic."0.1.0"]
+url = "https://packages.typst.org/preview/theoretic-0.1.0.tar.gz"
+hash = "sha256-YTLMLsWYdMGQg8lwWF2XpDNjAQj6R4dtWpliLafyNqM="
+typstDeps = []
+description = "Opinionated tool to typeset theorems, lemmas and such"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/nleanba/typst-theoretic"
+
+[theorion."0.3.3"]
+url = "https://packages.typst.org/preview/theorion-0.3.3.tar.gz"
+hash = "sha256-JXD+gEwf78Cnt0RkRWvtKjdt1nMGU2/OVxRg6pDXNQc="
+typstDeps = [
+ "showybox_2_0_4",
+]
+description = "Out-of-the-box, customizable and multilingual theorem environment package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-theorion"
+
+[theorion."0.3.2"]
+url = "https://packages.typst.org/preview/theorion-0.3.2.tar.gz"
+hash = "sha256-UhqXfaVWkQbqWEWnEAa5/IhP6532VW+rPpwATZv3KMI="
+typstDeps = [
+ "showybox_2_0_4",
+]
+description = "Out-of-the-box, customizable and multilingual theorem environment package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-theorion"
+
+[theorion."0.3.1"]
+url = "https://packages.typst.org/preview/theorion-0.3.1.tar.gz"
+hash = "sha256-ktj90O7u/wdLzUWmE6vkKIzTxsXhGUN10PrGZghqyDw="
+typstDeps = [
+ "showybox_2_0_4",
+]
+description = "Out-of-the-box, customizable and multilingual theorem environment package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-theorion"
+
+[theorion."0.3.0"]
+url = "https://packages.typst.org/preview/theorion-0.3.0.tar.gz"
+hash = "sha256-RgcY/xrbFGnark5vOFyfOptGrPKx1H1TqyFQ0ybdnk0="
+typstDeps = [
+ "showybox_2_0_4",
+]
+description = "Out-of-the-box, customizable and multilingual theorem environment package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-theorion"
+
+[theorion."0.2.0"]
+url = "https://packages.typst.org/preview/theorion-0.2.0.tar.gz"
+hash = "sha256-X9mnOPMHelFj2+PWC8V4slah3mGN1Mjd4iXNj28Hn7A="
+typstDeps = [
+ "showybox_2_0_4",
+]
+description = "Out-of-the-box, customizable and multilingual theorem environment package"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/OrangeX4/typst-theorion"
+
+[thesist."1.0.1"]
+url = "https://packages.typst.org/preview/thesist-1.0.1.tar.gz"
+hash = "sha256-cB3PEMShpapW/J1t3x3zkWEFeTdiZLKgafWeTXms0ks="
+typstDeps = [
+ "glossarium_0_5_4",
+ "lovelace_0_3_0",
+ "subpar_0_2_1",
+]
+description = "A Master's thesis template for Instituto Superior Técnico (IST"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tfachada/thesist"
+
+[thesist."1.0.0"]
+url = "https://packages.typst.org/preview/thesist-1.0.0.tar.gz"
+hash = "sha256-0phyUfdHGyFq6GeCoa7fNPaVx/IajhgW+3wBTA+opa0="
+typstDeps = [
+ "codly_1_2_0",
+ "codly-languages_0_1_4",
+ "glossarium_0_5_1",
+ "lovelace_0_3_0",
+ "subpar_0_2_0",
+]
+description = "A Master's thesis template for Instituto Superior Técnico (IST"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tfachada/thesist"
+
+[thesist."0.2.0"]
+url = "https://packages.typst.org/preview/thesist-0.2.0.tar.gz"
+hash = "sha256-4ScuCkZUTpBZoGt7eJ8MFdaLMhZuwEzKFrPfWbLm/es="
+typstDeps = [
+ "codly_1_0_0",
+ "glossarium_0_5_0",
+ "lovelace_0_3_0",
+ "subpar_0_1_1",
+]
+description = "A Master's thesis template for Instituto Superior Técnico (IST"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tfachada/thesist"
+
+[thesist."0.1.0"]
+url = "https://packages.typst.org/preview/thesist-0.1.0.tar.gz"
+hash = "sha256-K/F+/Se0DPX7ZhiDnynRQI5slvRS/fdMsJ9Y8klOhI0="
+typstDeps = [
+ "algorithmic_0_1_0",
+ "codly_1_0_0",
+ "glossarium_0_4_1",
+ "subpar_0_1_1",
+]
+description = "A Master's thesis template for Instituto Superior Técnico (IST"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tfachada/thesist"
+
+[thmbox."0.2.0"]
+url = "https://packages.typst.org/preview/thmbox-0.2.0.tar.gz"
+hash = "sha256-2k4K8b5E1jkEm7lhCb9UeADUBqK3jZxTougU2SD2KQ0="
+typstDeps = []
+description = "Creating beautiful theorem environments in typst with ease"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/s15n/typst-thmbox"
+
+[thmbox."0.1.1"]
+url = "https://packages.typst.org/preview/thmbox-0.1.1.tar.gz"
+hash = "sha256-Ct0b/ALfNOTLofCfGtkcenz2bWQw/bSnFmqqsSvGMn4="
+typstDeps = []
+description = "Creating beautiful theorem environments in typst with ease"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/s15n/typst-thmbox"
+
+[tiaoma."0.3.0"]
+url = "https://packages.typst.org/preview/tiaoma-0.3.0.tar.gz"
+hash = "sha256-xhVlYXBXisOzx2/R+fPNtCwEY/QoQXt071Q3m+qUHms="
+typstDeps = []
+description = "Barcode and QRCode generator for Typst using Zint"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/zint-wasi"
+
+[tiaoma."0.2.1"]
+url = "https://packages.typst.org/preview/tiaoma-0.2.1.tar.gz"
+hash = "sha256-LQuZsPbggpyAgiO9Gg7xd31Fv9kF3WNwaNOy5x7S7mo="
+typstDeps = []
+description = "Barcode and QRCode generator for Typst using Zint"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/zint-wasi"
+
+[tiaoma."0.2.0"]
+url = "https://packages.typst.org/preview/tiaoma-0.2.0.tar.gz"
+hash = "sha256-OUph7iF/JvhzKvqy62E7SFblB+4dfIAOGv/M49V4AwE="
+typstDeps = []
+description = "Barcode and QRCode generator for Typst using Zint"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/zint-wasi"
+
+[tiaoma."0.1.0"]
+url = "https://packages.typst.org/preview/tiaoma-0.1.0.tar.gz"
+hash = "sha256-IqyA7kbneAllVACJXjHkkvBbtree5SMBjcSYGKKtROE="
+typstDeps = []
+description = "Barcode and QRCode generator for Typst using Zint"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/zint-wasi"
+
+[tidy."0.4.2"]
+url = "https://packages.typst.org/preview/tidy-0.4.2.tar.gz"
+hash = "sha256-ZeHCBZWwe7G+tAfoyEzlCGQJFECMhUbiJzKRRKusF4E="
+typstDeps = []
+description = "Documentation generator for Typst code in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/tidy"
+
+[tidy."0.4.1"]
+url = "https://packages.typst.org/preview/tidy-0.4.1.tar.gz"
+hash = "sha256-LpSMjWPeVkMl3uiV01XX/7JKmec8ExXxbnm6uWVk9eM="
+typstDeps = []
+description = "Documentation generator for Typst code in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/tidy"
+
+[tidy."0.4.0"]
+url = "https://packages.typst.org/preview/tidy-0.4.0.tar.gz"
+hash = "sha256-p44SZ/GS6T/aGpYwb6fXJJ3hFFcIvcpz1a3x5JITmM0="
+typstDeps = []
+description = "Documentation generator for Typst code in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/tidy"
+
+[tidy."0.3.0"]
+url = "https://packages.typst.org/preview/tidy-0.3.0.tar.gz"
+hash = "sha256-1vevCu6gW3QSDycyEQiYagnBr1EiZHt8GyvHhg8Gz/0="
+typstDeps = []
+description = "Documentation generator for Typst code in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/tidy"
+
+[tidy."0.2.0"]
+url = "https://packages.typst.org/preview/tidy-0.2.0.tar.gz"
+hash = "sha256-zSf5ahLJ/1i/6o2ZKX2zapgJR8xilggVlNQotIicnME="
+typstDeps = []
+description = "Documentation generator for Typst code in Typst"
+license = [
+ "MIT",
+]
+
+[tidy."0.1.0"]
+url = "https://packages.typst.org/preview/tidy-0.1.0.tar.gz"
+hash = "sha256-1q+LIjzQCqY6KF+dYWARL5rCbx0LMZps/WIuaUvzb1U="
+typstDeps = []
+description = "Documentation generator for Typst code in Typst"
+license = [
+ "MIT",
+]
+
+[tierpist."0.1.0"]
+url = "https://packages.typst.org/preview/tierpist-0.1.0.tar.gz"
+hash = "sha256-p9EUIa5z1f22OlPbJtdUojsnE3Kb2BDAwivkh3himQg="
+typstDeps = [
+ "typpuccino_0_1_0",
+]
+description = "Make simple tierlists using the Catppuccin pastel color palettes"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/bastienvoirin/tierpist"
+
+[timeliney."0.2.0"]
+url = "https://packages.typst.org/preview/timeliney-0.2.0.tar.gz"
+hash = "sha256-1dQFae+mGAsCRHDWBd2saFgzYRI427Ltx6WPCLU2/pM="
+typstDeps = [
+ "cetz_0_3_1",
+ "mantys_0_1_4",
+]
+description = "Create Gantt charts in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pta2002/typst-timeliney"
+
+[timeliney."0.1.0"]
+url = "https://packages.typst.org/preview/timeliney-0.1.0.tar.gz"
+hash = "sha256-1cdfzqnKT3GCOZvZuORQGBQU6JaTFUEP6rMU3Un4PZg="
+typstDeps = [
+ "cetz_0_2_2",
+ "mantys_0_1_4",
+]
+description = "Create Gantt charts in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pta2002/typst-timeliney"
+
+[timeliney."0.0.1"]
+url = "https://packages.typst.org/preview/timeliney-0.0.1.tar.gz"
+hash = "sha256-JWGP6bInrsUhMDFFsNAyqf38P47dzQopGhPe/lxUruE="
+typstDeps = [
+ "cetz_0_1_2",
+]
+description = "Create Gantt charts in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/pta2002/typst-timeliney"
+
+[tinyset."0.1.0"]
+url = "https://packages.typst.org/preview/tinyset-0.1.0.tar.gz"
+hash = "sha256-dkcuBJ0tVV1ou7IEsaGSaaxysjbh1Lc9ABFBubp7SnQ="
+typstDeps = []
+description = "Simple, consistent, and appealing math homework template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sylvanfranklin/tinyset"
+
+[tiptoe."0.3.0"]
+url = "https://packages.typst.org/preview/tiptoe-0.3.0.tar.gz"
+hash = "sha256-AzT+mOzV4/TsPh9nVHqV35Mu88ljuknWSB54hZ50rUE="
+typstDeps = []
+description = "Arrows and other marks for lines and paths"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/tiptoe"
+
+[tiptoe."0.2.0"]
+url = "https://packages.typst.org/preview/tiptoe-0.2.0.tar.gz"
+hash = "sha256-aX1oL22zIIRF+UVxvofjl2vRcccGXBoi8Q6DDIoJBWo="
+typstDeps = []
+description = "Arrows and other marks for lines and paths"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/tiptoe"
+
+[tiptoe."0.1.0"]
+url = "https://packages.typst.org/preview/tiptoe-0.1.0.tar.gz"
+hash = "sha256-vGqPitaDEDpnuZrfQqP9EjIKmWhJ0UYlYXDCV6Po11Q="
+typstDeps = []
+description = "Arrows and other marks for lines and paths"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/tiptoe"
+
+[titleize."0.1.1"]
+url = "https://packages.typst.org/preview/titleize-0.1.1.tar.gz"
+hash = "sha256-RBxxzIxC7Ra8Qnb6xrBkIKVjlSYcDNrYurcDd0F54D0="
+typstDeps = []
+description = "Turn strings into title case"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/SolidTux/titleize"
+
+[titleize."0.1.0"]
+url = "https://packages.typst.org/preview/titleize-0.1.0.tar.gz"
+hash = "sha256-kL5c/L/IwpzgzyI8kduYFAjF1RywWnM0NuTEA4nZD1k="
+typstDeps = []
+description = "Turn strings into title case"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/SolidTux/titleize"
+
+[tlacuache-thesis-fc-unam."0.1.1"]
+url = "https://packages.typst.org/preview/tlacuache-thesis-fc-unam-0.1.1.tar.gz"
+hash = "sha256-skc0agrYuWNsDTToeI/SM8u+37NVfvySkoY6D58QZ4w="
+typstDeps = []
+description = "Template para escribir una tesis para la facultad de ciencias"
+license = [
+ "MIT",
+]
+
+[touying."0.6.1"]
+url = "https://packages.typst.org/preview/touying-0.6.1.tar.gz"
+hash = "sha256-AutRIIoJa75hrDTQVyoVAxajm1nmkypFLwYkmAyp39A="
+typstDeps = [
+ "cetz_0_3_2",
+ "fletcher_0_5_4",
+ "numbly_0_1_0",
+ "theorion_0_3_0",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.6.0"]
+url = "https://packages.typst.org/preview/touying-0.6.0.tar.gz"
+hash = "sha256-5x4cpEwWfFrVfwbSkZoVvDCwAJXaL/OoIJjpBnDlXRg="
+typstDeps = [
+ "cetz_0_3_2",
+ "ctheorems_1_1_3",
+ "fletcher_0_5_4",
+ "numbly_0_1_0",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.5.5"]
+url = "https://packages.typst.org/preview/touying-0.5.5.tar.gz"
+hash = "sha256-4hVqQUBo7HKfMVV6GC7zcTY0shxPTPN04BnkD5LxKnE="
+typstDeps = [
+ "cetz_0_3_1",
+ "ctheorems_1_1_3",
+ "fletcher_0_5_3",
+ "numbly_0_1_0",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.5.4"]
+url = "https://packages.typst.org/preview/touying-0.5.4.tar.gz"
+hash = "sha256-FqPyYs6BM+a+x+bBPCwb+3xi+qFwXoKYFwMU58nu6S8="
+typstDeps = [
+ "cetz_0_3_1",
+ "ctheorems_1_1_3",
+ "fletcher_0_5_3",
+ "numbly_0_1_0",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.5.3"]
+url = "https://packages.typst.org/preview/touying-0.5.3.tar.gz"
+hash = "sha256-b9nBHBEF/gmg2Yqf3YyEkq9SJ44UA14gDHH0quM62KM="
+typstDeps = [
+ "cetz_0_2_2",
+ "ctheorems_1_1_2",
+ "fletcher_0_5_1",
+ "numbly_0_1_0",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.5.2"]
+url = "https://packages.typst.org/preview/touying-0.5.2.tar.gz"
+hash = "sha256-6zgvqPUZew6rUj1iHI7AHLHd6hChuvtq3532Arhw2Fs="
+typstDeps = [
+ "cetz_0_2_2",
+ "ctheorems_1_1_2",
+ "fletcher_0_5_1",
+ "numbly_0_1_0",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.5.1"]
+url = "https://packages.typst.org/preview/touying-0.5.1.tar.gz"
+hash = "sha256-U2GkpYJsEou/XWgiTmLzvKmrsbzHr9euPUZPAw5jEuI="
+typstDeps = [
+ "cetz_0_2_2",
+ "ctheorems_1_1_2",
+ "fletcher_0_5_1",
+ "numbly_0_1_0",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.5.0"]
+url = "https://packages.typst.org/preview/touying-0.5.0.tar.gz"
+hash = "sha256-aC14MUgLT7MnuDZcDYfv/0iVj8eXZ3KOIyIQsV1oa0o="
+typstDeps = [
+ "cetz_0_2_2",
+ "ctheorems_1_1_2",
+ "fletcher_0_5_1",
+ "numbly_0_1_0",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.4.2"]
+url = "https://packages.typst.org/preview/touying-0.4.2.tar.gz"
+hash = "sha256-8AkLck6hjUUiL7kbGRuu++uN2rx32oumN2oe+m4Ipc4="
+typstDeps = [
+ "cetz_0_2_2",
+ "ctheorems_1_1_2",
+ "fletcher_0_4_4",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.4.1"]
+url = "https://packages.typst.org/preview/touying-0.4.1.tar.gz"
+hash = "sha256-ShpBeF7t61EzV86KkO6QS/yQw9BHt1y5Z3K4oAmc65w="
+typstDeps = [
+ "cetz_0_2_2",
+ "ctheorems_1_1_2",
+ "fletcher_0_4_4",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.4.0"]
+url = "https://packages.typst.org/preview/touying-0.4.0.tar.gz"
+hash = "sha256-c4ScRqtuyoHZHvdwbRwOhvs/tUcxcM7FdVfMxb7M27g="
+typstDeps = [
+ "cetz_0_2_2",
+ "ctheorems_1_1_2",
+ "fletcher_0_4_3",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.3.3"]
+url = "https://packages.typst.org/preview/touying-0.3.3.tar.gz"
+hash = "sha256-1LJv7aTrG8X0Lq30hN2EiE2DlFWFDKDYyvRFmLqqPYw="
+typstDeps = [
+ "cetz_0_2_1",
+ "fletcher_0_4_2",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.3.2"]
+url = "https://packages.typst.org/preview/touying-0.3.2.tar.gz"
+hash = "sha256-csmfUzPb9QLWzJTZ22Of/PkGWcHJsinAE4SWWflipcc="
+typstDeps = [
+ "cetz_0_2_1",
+ "fletcher_0_4_2",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.3.1"]
+url = "https://packages.typst.org/preview/touying-0.3.1.tar.gz"
+hash = "sha256-j7znx2m6KSQ19urWAzDd6sGkhr4PNf5kZl2x6guTdBQ="
+typstDeps = [
+ "cetz_0_2_1",
+ "fletcher_0_4_2",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.3.0"]
+url = "https://packages.typst.org/preview/touying-0.3.0.tar.gz"
+hash = "sha256-/K8edddnGyTZqDHoEvB6UvLOvLRU2O057ktXeIP5WSQ="
+typstDeps = [
+ "cetz_0_2_1",
+ "fletcher_0_4_2",
+]
+description = "An powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.2.1"]
+url = "https://packages.typst.org/preview/touying-0.2.1.tar.gz"
+hash = "sha256-1nYIv1yEz5OXHA2VHKA23R1fjYDU/DdoQflw3uh2AOs="
+typstDeps = [
+ "cetz_0_2_0",
+ "fletcher_0_4_1",
+]
+description = "An object-oriented package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.2.0"]
+url = "https://packages.typst.org/preview/touying-0.2.0.tar.gz"
+hash = "sha256-ReEVVMnPCd6ia9HfUF7LItTAiK4oEOLVIni48xVIJxo="
+typstDeps = []
+description = "An object-oriented package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying."0.1.0"]
+url = "https://packages.typst.org/preview/touying-0.1.0.tar.gz"
+hash = "sha256-C9gLcZiS4/0bKsUArZNx/jHa6tT66oazf4EbkzsgdQo="
+typstDeps = []
+description = "An object-oriented package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying-aqua."0.6.0"]
+url = "https://packages.typst.org/preview/touying-aqua-0.6.0.tar.gz"
+hash = "sha256-VgpcfwRNnzXA7QaWNA7YFaxQOejQMtYnHUnPVSm7NwY="
+typstDeps = [
+ "touying_0_6_0",
+]
+description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying-aqua."0.5.5"]
+url = "https://packages.typst.org/preview/touying-aqua-0.5.5.tar.gz"
+hash = "sha256-nAcvUYTqpN8X0GKeAkNeTCVUcW6SY/pbLMWc4IppWSw="
+typstDeps = [
+ "touying_0_5_5",
+]
+description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying-aqua."0.5.4"]
+url = "https://packages.typst.org/preview/touying-aqua-0.5.4.tar.gz"
+hash = "sha256-DUtwL7lPY68/o+/Ajh6/YDVrZWOnftQUVzyuCkrDG0Q="
+typstDeps = [
+ "touying_0_5_4",
+]
+description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying-aqua."0.5.3"]
+url = "https://packages.typst.org/preview/touying-aqua-0.5.3.tar.gz"
+hash = "sha256-LlnqGY9d9EP7cf6A6pJgUC72o5v2viFXh/xBWP6ejOc="
+typstDeps = [
+ "touying_0_5_3",
+]
+description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying-aqua."0.5.2"]
+url = "https://packages.typst.org/preview/touying-aqua-0.5.2.tar.gz"
+hash = "sha256-aOzwtjPvQUeHPiwyFkWF8wYjJOg21vW5mOjQ/0uSLik="
+typstDeps = [
+ "touying_0_5_2",
+]
+description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying-aqua."0.5.1"]
+url = "https://packages.typst.org/preview/touying-aqua-0.5.1.tar.gz"
+hash = "sha256-GCNfswGpK9weLfVb//CMKY3opH4pbMY8tboOIUtQIDc="
+typstDeps = [
+ "touying_0_5_1",
+]
+description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying-aqua."0.5.0"]
+url = "https://packages.typst.org/preview/touying-aqua-0.5.0.tar.gz"
+hash = "sha256-kKiXCRRxd/Z09xQEOafLM/kPoSjzzPlJh2DjdeT+KMA="
+typstDeps = [
+ "touying_0_5_0",
+]
+description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying-aqua."0.4.2"]
+url = "https://packages.typst.org/preview/touying-aqua-0.4.2.tar.gz"
+hash = "sha256-mOden3SRCkaIZGpvTCEeefDs3UJHAodU46LiExRHZB0="
+typstDeps = [
+ "touying_0_4_2",
+]
+description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying-aqua."0.4.1"]
+url = "https://packages.typst.org/preview/touying-aqua-0.4.1.tar.gz"
+hash = "sha256-GtoLHEzpMSbyp6atanmPrSSei4ozkvfeJKXtjl4TdEY="
+typstDeps = [
+ "touying_0_4_1",
+]
+description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying-aqua."0.4.0"]
+url = "https://packages.typst.org/preview/touying-aqua-0.4.0.tar.gz"
+hash = "sha256-pqi77dX3UAUDx++9xtkmr9BmntkZs7CfLEV1k4955YU="
+typstDeps = [
+ "touying_0_4_0",
+]
+description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying-aqua."0.3.3"]
+url = "https://packages.typst.org/preview/touying-aqua-0.3.3.tar.gz"
+hash = "sha256-VJK5ljDflaRmq8lXTPaql9U8VPDCcuFHz6VFAldYngU="
+typstDeps = [
+ "touying_0_3_3",
+]
+description = "A powerful package for creating presentation slides in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/touying-typ/touying"
+
+[touying-brandred-uobristol."0.1.3"]
+url = "https://packages.typst.org/preview/touying-brandred-uobristol-0.1.3.tar.gz"
+hash = "sha256-q+a8Jv2o9cYoxdoq6/L4dcoKgGcxAXsGbclWoBbD7m8="
+typstDeps = [
+ "touying_0_5_2",
+]
+description = "Touying Slide Theme for University of Bristol"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPDell/touying-brandred-uobristol"
+
+[touying-brandred-uobristol."0.1.2"]
+url = "https://packages.typst.org/preview/touying-brandred-uobristol-0.1.2.tar.gz"
+hash = "sha256-StDJp8L9Thhvk5wVg0bi+ceklbRn35RMyEhJdNt4eYc="
+typstDeps = [
+ "touying_0_5_2",
+]
+description = "Touying Slide Theme for University of Bristol"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPDell/touying-brandred-uobristol"
+
+[touying-brandred-uobristol."0.1.1"]
+url = "https://packages.typst.org/preview/touying-brandred-uobristol-0.1.1.tar.gz"
+hash = "sha256-3bngK/Xrf7QxLfWxfxulCg0mKIEPbRR1FNNoDPvWyRI="
+typstDeps = [
+ "touying_0_5_2",
+]
+description = "Touying Slide Theme for University of Bristol"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPDell/touying-brandred-uobristol"
+
+[touying-brandred-uobristol."0.1.0"]
+url = "https://packages.typst.org/preview/touying-brandred-uobristol-0.1.0.tar.gz"
+hash = "sha256-Qpw9lqn9zZwoDsJXF1rwDy4ngjqY5S3062G0oH+BrAA="
+typstDeps = [
+ "touying_0_5_2",
+]
+description = "Touying Slide Theme for University of Bristol"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/HPDell/touying-brandred-uobristol"
+
+[touying-buaa."0.2.0"]
+url = "https://packages.typst.org/preview/touying-buaa-0.2.0.tar.gz"
+hash = "sha256-pBXplIwOolpWvRDZA5c9kjwwSPHkagelQzk/yyubcw4="
+typstDeps = [
+ "cetz_0_2_2",
+ "fletcher_0_5_1",
+ "touying_0_5_2",
+]
+description = "Touying Slide Theme for Beihang University"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Coekjan/touying-buaa"
+
+[touying-buaa."0.1.0"]
+url = "https://packages.typst.org/preview/touying-buaa-0.1.0.tar.gz"
+hash = "sha256-tzWeba/uZ+R7WCm5uVQkLdUOpPHAyP/AnfkHt72bqVE="
+typstDeps = [
+ "cetz_0_2_2",
+ "fletcher_0_4_5",
+ "touying_0_4_2",
+]
+description = "Touying Slide Theme for Beihang University"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Coekjan/touying-buaa"
+
+[touying-dids."0.1.0"]
+url = "https://packages.typst.org/preview/touying-dids-0.1.0.tar.gz"
+hash = "sha256-QL8SacywS3SvtJNsjoI82ImmDhiX+rla4CUTSBhu4K0="
+typstDeps = [
+ "cetz_0_3_1",
+ "fletcher_0_5_2",
+ "touying_0_5_3",
+]
+description = "Touying Slide Theme for DIDS Lab"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/RaVincentHuang/touying-dids"
+
+[touying-flow."1.1.0"]
+url = "https://packages.typst.org/preview/touying-flow-1.1.0.tar.gz"
+hash = "sha256-KuAAoTh9fbfg+IZagElq10yPce387wsja78SXr0ZqKA="
+typstDeps = [
+ "codly_1_0_0",
+ "cuti_0_2_1",
+ "lovelace_0_3_0",
+ "mitex_0_2_4",
+ "numbly_0_1_0",
+ "touying_0_5_3",
+]
+description = "Eliminate unnecessary decorative elements to enhance the audience's immersion and foster a deeper state of flow"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Quaternijkon/touying-flow"
+
+[touying-flow."1.0.0"]
+url = "https://packages.typst.org/preview/touying-flow-1.0.0.tar.gz"
+hash = "sha256-gaVVJb1lRATSdP6muMfrrAAaAjBpGBK3Ti2geEIGtIY="
+typstDeps = [
+ "codly_1_0_0",
+ "cuti_0_2_1",
+ "lovelace_0_3_0",
+ "mitex_0_2_4",
+ "numbly_0_1_0",
+ "touying_0_5_3",
+]
+description = "Discard irrelevant decorative elements, aiming to better immerse the audience into a state of flow"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Quaternijkon/Typst_FLOW"
+
+[touying-ppt-hustvn."0.1.0"]
+url = "https://packages.typst.org/preview/touying-ppt-hustvn-0.1.0.tar.gz"
+hash = "sha256-GoTSBixslKUMrn24VT3g/galjwOPKzBAkrJ1ImhyF+A="
+typstDeps = [
+ "theorion_0_3_2",
+ "touying_0_6_1",
+]
+description = "Touying Slide Theme for HUST (Hanoi University of Science and Technology"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/btmxh/touying-ppt-hustvn"
+
+[touying-pres-ustc."0.2.0"]
+url = "https://packages.typst.org/preview/touying-pres-ustc-0.2.0.tar.gz"
+hash = "sha256-rvyRqZqi5P4LLhgtsUKsh71oXpMx8hmLoNbnJrKseUE="
+typstDeps = [
+ "babble-bubbles_0_1_0",
+ "cineca_0_2_1",
+ "codly_0_2_0",
+ "fletcher_0_5_1",
+ "gentle-clues_0_9_0",
+ "lovelace_0_3_0",
+ "showybox_2_0_1",
+ "suiji_0_3_0",
+ "timeliney_0_0_1",
+ "touying_0_4_2",
+]
+description = "Touying Slide Theme for USTC(you can easily customize it to suit any university or organization such as BIT"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Quaternijkon/touying-pres-ustc"
+
+[touying-pres-ustc."0.1.0"]
+url = "https://packages.typst.org/preview/touying-pres-ustc-0.1.0.tar.gz"
+hash = "sha256-nVVUoqPTNIQ/hmcDUCupu4MX+TyZM+Z98/gMUCrYwJY="
+typstDeps = [
+ "babble-bubbles_0_1_0",
+ "cineca_0_2_1",
+ "codly_0_2_0",
+ "fletcher_0_5_1",
+ "gentle-clues_0_9_0",
+ "lovelace_0_3_0",
+ "showybox_2_0_1",
+ "suiji_0_3_0",
+ "timeliney_0_0_1",
+ "touying_0_4_2",
+]
+description = "Touying Slide Theme for USTC"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Quaternijkon/Typst_USTC_CS"
+
+[touying-quarto-clean."0.1.0"]
+url = "https://packages.typst.org/preview/touying-quarto-clean-0.1.0.tar.gz"
+hash = "sha256-zjUkMIShayTKau6ZSutmq37zWJWr0ttgu7RZ+DV/TB0="
+typstDeps = [
+ "fontawesome_0_5_0",
+ "touying_0_5_3",
+]
+description = "A Clean Slide Theme for Touying"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/kazuyanagimoto/quarto-clean-typst"
+
+[touying-simpl-hkustgz."0.1.1"]
+url = "https://packages.typst.org/preview/touying-simpl-hkustgz-0.1.1.tar.gz"
+hash = "sha256-hPzAv/zrLYdniHhKcXhiw4NqivEzu/MH0NO7utaIv/Q="
+typstDeps = [
+ "cetz_0_2_2",
+ "fletcher_0_4_5",
+ "touying_0_4_2",
+]
+description = "Touying Slide Theme for HKUST(GZ"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/exAClior/touying-simpl-hkustgz"
+
+[touying-simpl-hkustgz."0.1.0"]
+url = "https://packages.typst.org/preview/touying-simpl-hkustgz-0.1.0.tar.gz"
+hash = "sha256-xJ+CFM2kzrpfarTuAgKHmBsYvuAqY50i+yB3Qv7DGn4="
+typstDeps = [
+ "cetz_0_2_2",
+ "fletcher_0_4_5",
+ "touying_0_4_2",
+]
+description = "Touying Slide Theme for HKUST(GZ"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/exAClior/touying-simpl-hkustgz"
+
+[touying-unistra-pristine."1.3.1"]
+url = "https://packages.typst.org/preview/touying-unistra-pristine-1.3.1.tar.gz"
+hash = "sha256-+OPnCXyVUQ1r6drzjxJVC8yCKGIe2xUxokhJDh2qn50="
+typstDeps = [
+ "touying_0_6_1",
+]
+description = "Touying theme adhering to the core principles of the style guide of the University of Strasbourg, France"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/spidersouris/touying-unistra-pristine"
+
+[touying-unistra-pristine."1.3.0"]
+url = "https://packages.typst.org/preview/touying-unistra-pristine-1.3.0.tar.gz"
+hash = "sha256-fC5upxQhb+2fDPH7YdVKl13FLfcWU9gKGcNuVsSrGz4="
+typstDeps = [
+ "touying_0_5_5",
+]
+description = "Touying theme adhering to the core principles of the style guide of the University of Strasbourg, France"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/spidersouris/touying-unistra-pristine"
+
+[touying-unistra-pristine."1.2.0"]
+url = "https://packages.typst.org/preview/touying-unistra-pristine-1.2.0.tar.gz"
+hash = "sha256-6eYMGMprOMl54aJHemzn5CuN03auIxUsBeyX2nXXY5Y="
+typstDeps = [
+ "touying_0_5_3",
+]
+description = "Touying theme adhering to the core principles of the style guide of the University of Strasbourg, France"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/spidersouris/touying-unistra-pristine"
+
+[touying-unistra-pristine."1.1.0"]
+url = "https://packages.typst.org/preview/touying-unistra-pristine-1.1.0.tar.gz"
+hash = "sha256-903+mzhmJxU1cvslpS3r+8vLRHR8bKSMwM2dmz2OtMs="
+typstDeps = [
+ "touying_0_5_3",
+]
+description = "Touying theme adhering to the core principles of the style guide of the University of Strasbourg, France"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/spidersouris/touying-unistra-pristine"
+
+[touying-unistra-pristine."1.0.0"]
+url = "https://packages.typst.org/preview/touying-unistra-pristine-1.0.0.tar.gz"
+hash = "sha256-t1Ea1IJX4sSJ5ttIV8uCsEbp/zDEZYv3q1ZRGn2LxY0="
+typstDeps = [
+ "touying_0_5_2",
+]
+description = "Touying theme adhering to the core principles of the style guide of the University of Strasbourg, France"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/spidersouris/touying-unistra-pristine"
+
+[touying2video."0.1.0"]
+url = "https://packages.typst.org/preview/touying2video-0.1.0.tar.gz"
+hash = "sha256-GaQlk4gFwIx9u5hs4PAwEwbd6LcUhPaa+4fXvQcTlsc="
+typstDeps = []
+description = "The tools converts a touying-typ presentation slide to a presentation video with voice over. The typst tool need to be used with an external package"
+license = [
+ "AGPL-3.0-only",
+]
+homepage = "https://github.com/yangwenbo99/touying2video"
+
+[tracl."0.6.1"]
+url = "https://packages.typst.org/preview/tracl-0.6.1.tar.gz"
+hash = "sha256-YdVxUtfyTrXQxgMuMm1Vju/Oi4cCaf/xAPy/n7rOrYk="
+typstDeps = [
+ "blinky_0_2_0",
+ "oxifmt_0_2_1",
+]
+description = "Template for papers at *ACL conferences"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/coli-saar/tracl"
+
+[tracl."0.6.0"]
+url = "https://packages.typst.org/preview/tracl-0.6.0.tar.gz"
+hash = "sha256-yvwx72a5GhlVp9X7+t2eqpdQx5eoXiwGcAqQHxk/b50="
+typstDeps = [
+ "blinky_0_2_0",
+ "oxifmt_0_2_1",
+]
+description = "Template for papers at *ACL conferences"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/coli-saar/tracl"
+
+[tracl."0.5.2"]
+url = "https://packages.typst.org/preview/tracl-0.5.2.tar.gz"
+hash = "sha256-8IeQunFJ0OQuJpmpH+/CVP6gGKkOI0WgWJXW2X/Qlsk="
+typstDeps = [
+ "blinky_0_2_0",
+]
+description = "Template for papers at *ACL conferences"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/coli-saar/tracl"
+
+[tracl."0.5.1"]
+url = "https://packages.typst.org/preview/tracl-0.5.1.tar.gz"
+hash = "sha256-+PV3Ozq1KDQYU344OUXnh1UbxmJNUcrBP5f/sX2IAdQ="
+typstDeps = [
+ "blinky_0_1_0",
+]
+description = "Template for papers at *ACL conferences"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/coli-saar/tracl"
+
+[tracl."0.5.0"]
+url = "https://packages.typst.org/preview/tracl-0.5.0.tar.gz"
+hash = "sha256-EYvmO1AR7nNKguoI94hzAJWfwuko988uWaRyVAlqfu4="
+typstDeps = [
+ "blinky_0_1_0",
+]
+description = "Template for papers at *ACL conferences"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/coli-saar/tracl"
+
+[treet."0.1.1"]
+url = "https://packages.typst.org/preview/treet-0.1.1.tar.gz"
+hash = "sha256-tBOgW6NB5MAU+LHRAOHkRxq+vKpmkkh2vh/VnBbMEJ0="
+typstDeps = []
+description = "Create tree lists easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/8LWXpg/typst-treet"
+
+[treet."0.1.0"]
+url = "https://packages.typst.org/preview/treet-0.1.0.tar.gz"
+hash = "sha256-Z4XAN+jKFzyowg1/o+WRq7QF+9Wul+mMwKGfHL5HnOE="
+typstDeps = []
+description = "Create tree lists easily"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/8LWXpg/typst-treet"
+
+[tricorder."0.1.0"]
+url = "https://packages.typst.org/preview/tricorder-0.1.0.tar.gz"
+hash = "sha256-1yVjrzof0APO5F+C3ManqTSJOVzHasnrVeeTHmmXgag="
+typstDeps = []
+description = "按占三格的节奏记录中文人名(花名册)Record Chinese names with a rhythm of three characters"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/YDX-2147483647/typst-tricorder"
+
+[truthfy."0.6.0"]
+url = "https://packages.typst.org/preview/truthfy-0.6.0.tar.gz"
+hash = "sha256-pKDdJvrAIekPB+x6GWXrQDC6n20kqH5ayGriaIsHPUw="
+typstDeps = []
+description = "Make empty or automatically filled truth table"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Thumuss/truthfy"
+
+[truthfy."0.5.0"]
+url = "https://packages.typst.org/preview/truthfy-0.5.0.tar.gz"
+hash = "sha256-Syf1F5gSoW4NNOw73ecdu6LaNu72TPJpcSQfLEMV2rk="
+typstDeps = []
+description = "Make empty or automatically filled truth table"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Thumuss/truthfy"
+
+[truthfy."0.4.0"]
+url = "https://packages.typst.org/preview/truthfy-0.4.0.tar.gz"
+hash = "sha256-vqIZsyKBpT6IE5Ly21Z2vN3LV1+zKAGZDDRlquSwf00="
+typstDeps = []
+description = "Make empty or automatically filled truth table"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Thumuss/truthfy"
+
+[truthfy."0.3.0"]
+url = "https://packages.typst.org/preview/truthfy-0.3.0.tar.gz"
+hash = "sha256-S8KmtMPYoemJBRntmPaPqTfXQ6XJin23W2jWjnV+orI="
+typstDeps = []
+description = "Make empty or automatically filled truth table"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Thumuss/truthfy"
+
+[truthfy."0.2.0"]
+url = "https://packages.typst.org/preview/truthfy-0.2.0.tar.gz"
+hash = "sha256-sPZ9ieV/+BpIqzKgBX9H9IWyNkgo4IB+HuvwNymZ0AY="
+typstDeps = []
+description = "Make empty or automatically filled truth table"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ThumusLive/truthfy"
+
+[truthfy."0.1.0"]
+url = "https://packages.typst.org/preview/truthfy-0.1.0.tar.gz"
+hash = "sha256-th4mlEfWq0m4WXUBEmVLgtlhu7MG/hAMWv54mj8UeSA="
+typstDeps = []
+description = "Make truth table"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ThumusLive/truthfy"
+
+[ttt-exam."0.1.2"]
+url = "https://packages.typst.org/preview/ttt-exam-0.1.2.tar.gz"
+hash = "sha256-pd9Ckp8poHRmHc0UMUEW43c3prI/QWCSYLMjSI02DiY="
+typstDeps = [
+ "linguify_0_4_0",
+ "ttt-utils_0_1_2",
+]
+description = "A collection of tools to make a teachers life easier (german"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-teacher-templates"
+
+[ttt-exam."0.1.0"]
+url = "https://packages.typst.org/preview/ttt-exam-0.1.0.tar.gz"
+hash = "sha256-BSXCpPdDlA2IA1IavSYzFBmH4wZx3erS/MwsGUWRrew="
+typstDeps = [
+ "linguify_0_3_1",
+ "ttt-utils_0_1_0",
+]
+description = "Template to create exams. Part of the ttt-collection to make a teachers life easier"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-teacher-templates"
+
+[ttt-lists."0.1.0"]
+url = "https://packages.typst.org/preview/ttt-lists-0.1.0.tar.gz"
+hash = "sha256-1PB/2dF4Z/lCW0wRgpR4nrCYHiqmXStZl5D2xdIvE4Y="
+typstDeps = [
+ "ttt-utils_0_1_0",
+]
+description = "Template to create student lists. Part of the ttt-collection to make a teachers life easier"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-teacher-templates"
+
+[ttt-utils."0.1.4"]
+url = "https://packages.typst.org/preview/ttt-utils-0.1.4.tar.gz"
+hash = "sha256-cB/uCFCu/Zo5dyEbtuARs7YzdETXIRAxfu+jc0PV8aI="
+typstDeps = []
+description = "A collection of tools to make a teachers life easier"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-teacher-templates"
+
+[ttt-utils."0.1.3"]
+url = "https://packages.typst.org/preview/ttt-utils-0.1.3.tar.gz"
+hash = "sha256-Cd/QKnrz3Et4wrFg+dPYn6zqA9umiS5JmtpouEMxvKc="
+typstDeps = []
+description = "A collection of tools to make a teachers life easier"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-teacher-templates"
+
+[ttt-utils."0.1.2"]
+url = "https://packages.typst.org/preview/ttt-utils-0.1.2.tar.gz"
+hash = "sha256-NG65QPdynAQ1X4CjqBflg1rfBEDOYGSREb9Qn3t1mOk="
+typstDeps = []
+description = "A collection of tools to make a teachers life easier"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-teacher-templates"
+
+[ttt-utils."0.1.0"]
+url = "https://packages.typst.org/preview/ttt-utils-0.1.0.tar.gz"
+hash = "sha256-BUzA2w+gEMKr5MspkEQ9ePhBXeGVIxqEJI36YluRdCk="
+typstDeps = []
+description = "A collection of tools to make a teachers life easier"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jomaway/typst-teacher-templates"
+
+[ttuile."0.1.1"]
+url = "https://packages.typst.org/preview/ttuile-0.1.1.tar.gz"
+hash = "sha256-FirvqBE2sky8DLxmlNFhS2lzvAm60gpaWvrakWBBspU="
+typstDeps = []
+description = "A template for students' lab reports at INSA Lyon, a french engineering school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/vitto4/ttuile"
+
+[ttuile."0.1.0"]
+url = "https://packages.typst.org/preview/ttuile-0.1.0.tar.gz"
+hash = "sha256-JD4lIJZbPKduHn7/+6k1T6PeRnlBPuUQbQJr22A3Xpk="
+typstDeps = []
+description = "A template for students' lab reports at INSA Lyon, a french engineering school"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/vitto4/ttuile"
+
+[tud-corporate-design-slides."0.1.0"]
+url = "https://packages.typst.org/preview/tud-corporate-design-slides-0.1.0.tar.gz"
+hash = "sha256-Af6m58msKbe5WbYqO7TOnx6fdOgfRYn4fU6ucliDuzw="
+typstDeps = [
+ "polylux_0_3_1",
+]
+description = "Presentation template for TU Dresden (Technische Universität Dresden"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/jakoblistabarth/tud-corporate-design-slides-typst"
+
+[tufte-memo."0.1.2"]
+url = "https://packages.typst.org/preview/tufte-memo-0.1.2.tar.gz"
+hash = "sha256-T98auoYpzMsAf+zDNxaYYIFkUI3WcZ/mMzMW6cAU/Fs="
+typstDeps = [
+ "drafting_0_2_0",
+]
+description = "A memo document template inspired by the design of Edward Tufte's books"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/nogula/tufte-memo"
+
+[tufte-memo."0.1.1"]
+url = "https://packages.typst.org/preview/tufte-memo-0.1.1.tar.gz"
+hash = "sha256-nYBYFBnebN+Cx4vvGO9yKqRhoRmC54MqyX1C9CJXZtw="
+typstDeps = [
+ "drafting_0_2_0",
+]
+description = "A memo document template inspired by the design of Edward Tufte's books"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/nogula/tufte-memo"
+
+[tufte-memo."0.1.0"]
+url = "https://packages.typst.org/preview/tufte-memo-0.1.0.tar.gz"
+hash = "sha256-J3KKhbPH/SfZH7AYpN1iyZnR4hDreOdvibsyaUX2eWo="
+typstDeps = [
+ "drafting_0_2_0",
+]
+description = "A memo document template inspired by the design of Edward Tufte's books"
+license = [
+ "MIT",
+]
+
+[tuhi-alumni-vuw."0.1.0"]
+url = "https://packages.typst.org/preview/tuhi-alumni-vuw-0.1.0.tar.gz"
+hash = "sha256-A0cU3Bjzx61gviGXmH2XyJsr7xs/nX4zXeMboQsfJrI="
+typstDeps = []
+description = "A template for VUW alumni profile flyers"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/vuw-scps/tuhi-alumni-vuw"
+
+[tuhi-assessment-vuw."0.2.0"]
+url = "https://packages.typst.org/preview/tuhi-assessment-vuw-0.2.0.tar.gz"
+hash = "sha256-rp1JEa1gzLc7KNVJYRNPlXfB0uq3JEnbBQTxIR+cGO4="
+typstDeps = []
+description = "A template for VUW assessments"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/vuw-scps/tuhi-assessment-vuw"
+
+[tuhi-booklet-vuw."0.2.0"]
+url = "https://packages.typst.org/preview/tuhi-booklet-vuw-0.2.0.tar.gz"
+hash = "sha256-3eLy5P5MklRH9mlxltkPdL9lFIAS0PgnedHNk14d6l8="
+typstDeps = []
+description = "A course description booklet template for VUW courses"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/vuw-scps/tuhi-booklet-vuw"
+
+[tuhi-booklet-vuw."0.1.0"]
+url = "https://packages.typst.org/preview/tuhi-booklet-vuw-0.1.0.tar.gz"
+hash = "sha256-Ht4o8Zl83CG0KjCSWI7dgrRltA9L78ua+3aGplLjmX0="
+typstDeps = []
+description = "A course description booklet template for VUW courses"
+license = [
+ "MPL-2.0",
+]
+
+[tuhi-course-poster-vuw."0.2.0"]
+url = "https://packages.typst.org/preview/tuhi-course-poster-vuw-0.2.0.tar.gz"
+hash = "sha256-RrDBYas/wivBdin7rZC8WzAmnhFBvp/tut1nWVSsCDs="
+typstDeps = [
+ "cetz_0_3_3",
+ "codetastic_0_2_2",
+]
+description = "A poster template for VUW course descriptions"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/vuw-scps/tuhi-course-poster-vuw"
+
+[tuhi-course-poster-vuw."0.1.0"]
+url = "https://packages.typst.org/preview/tuhi-course-poster-vuw-0.1.0.tar.gz"
+hash = "sha256-jZgfl6JLIHdth+kQcsuEfgWZb4wfRSURgJ0dhuj78Nw="
+typstDeps = [
+ "codetastic_0_1_0",
+]
+description = "A poster template for VUW course descriptions"
+license = [
+ "MPL-2.0",
+]
+
+[tuhi-exam-vuw."0.2.0"]
+url = "https://packages.typst.org/preview/tuhi-exam-vuw-0.2.0.tar.gz"
+hash = "sha256-TPg4LdVGUFlz+vnM3wh05Ck3eavjSOzZ+YCPqVtf0AU="
+typstDeps = []
+description = "A template for VUW exams"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/vuw-scps/tuhi-exam-vuw"
+
+[tuhi-exam-vuw."0.1.0"]
+url = "https://packages.typst.org/preview/tuhi-exam-vuw-0.1.0.tar.gz"
+hash = "sha256-3NtLGEzRshGKrd2G9Aei3Veks9loMPUXfdoLf/QI3Jw="
+typstDeps = []
+description = "A poster template for VUW exams"
+license = [
+ "MPL-2.0",
+]
+
+[tuhi-labscript-vuw."0.2.0"]
+url = "https://packages.typst.org/preview/tuhi-labscript-vuw-0.2.0.tar.gz"
+hash = "sha256-H99ttKzsviYUcq/mYclHmb6ZDgHf3NmLMEICdddetbI="
+typstDeps = []
+description = "A labscript template for VUW experimental courses"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/vuw-scps/tuhi-labscript-vuw"
+
+[tuhi-labscript-vuw."0.1.0"]
+url = "https://packages.typst.org/preview/tuhi-labscript-vuw-0.1.0.tar.gz"
+hash = "sha256-k1gbYxiuu4FZuvxXP48nJrPPy7r0nnSvR0320lWKjYc="
+typstDeps = []
+description = "A labscript template for VUW experimental courses"
+license = [
+ "MPL-2.0",
+]
+
+[tuhi-postcard-vuw."0.1.0"]
+url = "https://packages.typst.org/preview/tuhi-postcard-vuw-0.1.0.tar.gz"
+hash = "sha256-RA01CS/kw6VCT4GPMUYVtxd4JkRTukaCYiGvcRE4reQ="
+typstDeps = [
+ "codetastic_0_2_2",
+]
+description = "Template for promotional postcards"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/vuw-scps/tuhi-postcard-vuw"
+
+[tuhi-presentation-vuw."0.1.0"]
+url = "https://packages.typst.org/preview/tuhi-presentation-vuw-0.1.0.tar.gz"
+hash = "sha256-MK7Fd1ADaWYOQ0DKFoN9we/cXQOdkyPIVGpT+pv2u/0="
+typstDeps = [
+ "theorion_0_3_2",
+ "touying_0_6_1",
+]
+description = "Template for presentation slides with tailored aesthetics"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/vuw-scps/tuhi-presentation-vuw"
+
+[tuhi-programme-vuw."0.1.0"]
+url = "https://packages.typst.org/preview/tuhi-programme-vuw-0.1.0.tar.gz"
+hash = "sha256-nu+ocYbEYuEqf8cvt9mMgy/quIahXVxnHeownudosPc="
+typstDeps = [
+ "codetastic_0_2_2",
+]
+description = "Template for 3-year degree overview tables"
+license = [
+ "MPL-2.0",
+]
+homepage = "https://github.com/vuw-scps/tuhi-programme-vuw"
+
+[tutor."0.8.0"]
+url = "https://packages.typst.org/preview/tutor-0.8.0.tar.gz"
+hash = "sha256-M/t2Z/i2mYdeLX/K9LUBbf8DUg4KcjsE6PS1wWEHGDo="
+typstDeps = []
+description = "Utilities to create exams"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/rangerjo/tutor"
+
+[tutor."0.7.0"]
+url = "https://packages.typst.org/preview/tutor-0.7.0.tar.gz"
+hash = "sha256-lTE1A3XbCLLRAWuoBlnakWv5xpl0kxgEaU+90x2Fb8g="
+typstDeps = []
+description = "Utilities to create exams"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/rangerjo/tutor"
+
+[tutor."0.6.1"]
+url = "https://packages.typst.org/preview/tutor-0.6.1.tar.gz"
+hash = "sha256-JmaatQL5QOpYSVa4P1x2B4hpFazXAlvMw3rwbZIGsLE="
+typstDeps = []
+description = "Utilities to create exams"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/rangerjo/tutor"
+
+[tutor."0.4.0"]
+url = "https://packages.typst.org/preview/tutor-0.4.0.tar.gz"
+hash = "sha256-yD87Is8aPz5CWAGgZ8A2pWD+CaAmrYr5PxRkSlm7Cwk="
+typstDeps = []
+description = "Utilities to create exams"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/rangerjo/tutor"
+
+[tutor."0.3.0"]
+url = "https://packages.typst.org/preview/tutor-0.3.0.tar.gz"
+hash = "sha256-lzcZYHAH9aw4CNiqZJskUeP61tja1U15Tc4YxsmHrjw="
+typstDeps = []
+description = "Utilities to create exams"
+license = [
+ "Unlicense",
+]
+
+[typ2anki."0.1.0"]
+url = "https://packages.typst.org/preview/typ2anki-0.1.0.tar.gz"
+hash = "sha256-J/BOFlowljl2P7FQVklS0YXlI0bf9XzWYZ/NwIZp1m8="
+typstDeps = [
+ "gentle-clues_1_1_0",
+]
+description = "Convert Typst files into Anki cards automatically"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sgomezsal/typ2anki"
+
+[typearea."0.2.0"]
+url = "https://packages.typst.org/preview/typearea-0.2.0.tar.gz"
+hash = "sha256-YjXKZHr12XZ2jur3FL2AnR1odkVu13SpXZeo7yAejac="
+typstDeps = []
+description = "A KOMA-Script inspired package to better configure your typearea and margins"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/freundTech/typst-typearea"
+
+[typearea."0.1.0"]
+url = "https://packages.typst.org/preview/typearea-0.1.0.tar.gz"
+hash = "sha256-z8hitTU1uUKgegF/QsAQpJ1ad+dH5PfbFZPMNdgSDb0="
+typstDeps = []
+description = "A KOMA-Script inspired package to better configure your typearea and margins"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/freundTech/typst-typearea"
+
+[typographic-resume."0.1.0"]
+url = "https://packages.typst.org/preview/typographic-resume-0.1.0.tar.gz"
+hash = "sha256-0E3XQBFLGniJMBpbyLUReNhYh99CpCd7VkiX0GAEZVQ="
+typstDeps = []
+description = "A stylish and customizable résumé template for Typst, designed with elegant typographic variations"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tsnobip/typst-typographic-resume"
+
+[typographix-polytechnique-reports."0.1.6"]
+url = "https://packages.typst.org/preview/typographix-polytechnique-reports-0.1.6.tar.gz"
+hash = "sha256-5CqgNPzNFxwfuEFT4HVc7uG/vN3r/S2mueo5pR8o9Ak="
+typstDeps = []
+description = "A report template for Polytechnique students (from TypographiX"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/remigerme/typst-polytechnique"
+
+[typographix-polytechnique-reports."0.1.5"]
+url = "https://packages.typst.org/preview/typographix-polytechnique-reports-0.1.5.tar.gz"
+hash = "sha256-8VjxG8q8C+2PvLDuOjadCOTxmBCfzeUHVf7eR1M0XyA="
+typstDeps = []
+description = "A report template for Polytechnique students (from TypographiX"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/remigerme/typst-polytechnique"
+
+[typographix-polytechnique-reports."0.1.4"]
+url = "https://packages.typst.org/preview/typographix-polytechnique-reports-0.1.4.tar.gz"
+hash = "sha256-VXH1uh1SdpCXfRnQrD5/UfrVT7lSxRjO3/jO3nNpICw="
+typstDeps = []
+description = "A report template for Polytechnique students (from TypographiX"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/remigerme/typst-polytechnique"
+
+[typographix-polytechnique-reports."0.1.3"]
+url = "https://packages.typst.org/preview/typographix-polytechnique-reports-0.1.3.tar.gz"
+hash = "sha256-jVNIPe59A2ObNHr/e35bkY6czTlKpgi5fGjyNMXZ+U8="
+typstDeps = []
+description = "A report template for Polytechnique students (from TypographiX"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/remigerme/typst-polytechnique"
+
+[typographix-polytechnique-reports."0.1.2"]
+url = "https://packages.typst.org/preview/typographix-polytechnique-reports-0.1.2.tar.gz"
+hash = "sha256-9gx84t5v1iA0kSbLdS4xl9HQkuH8BWENoYPoDXOtNdM="
+typstDeps = []
+description = "A report template for Polytechnique students (from TypographiX"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/remigerme/typst-polytechnique"
+
+[typpuccino."0.1.0"]
+url = "https://packages.typst.org/preview/typpuccino-0.1.0.tar.gz"
+hash = "sha256-UgXOQCLOv27dB78K7m271A7HZkDyWi+LoR3uqxrEnH4="
+typstDeps = []
+description = "Use catppuccin palette with Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TeddyHuang-00/typpuccino"
+
+[typsium."0.2.0"]
+url = "https://packages.typst.org/preview/typsium-0.2.0.tar.gz"
+hash = "sha256-6regfP95XRjL1cRahkIjTR0FM+z0bfaVAJFtOkN4oz8="
+typstDeps = []
+description = "Typeset chemical formulas and reactions"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Typsium/typsium"
+
+[typsium."0.1.0"]
+url = "https://packages.typst.org/preview/typsium-0.1.0.tar.gz"
+hash = "sha256-d8UcXivVesu+0Mnl3Fp3UGKXgkdAhnxzsy984E4LcvE="
+typstDeps = []
+description = "Typeset chemical formulas, both with inorganic and organic chemistry notation"
+license = [
+ "MIT",
+]
+
+[typsium."0.0.3"]
+url = "https://packages.typst.org/preview/typsium-0.0.3.tar.gz"
+hash = "sha256-KD6WlyY+wFNhoPZ9mGlJV6CtXNK/2O0ubQvRPJZv4RI="
+typstDeps = []
+description = "Typeset chemical formulas, both with inorganic and organic chemistry notation"
+license = [
+ "MIT",
+]
+
+[typsium."0.0.2"]
+url = "https://packages.typst.org/preview/typsium-0.0.2.tar.gz"
+hash = "sha256-mPaew+MErHsIIH6mH986pPdO8HM3tXqb3fiQ3MyBdmk="
+typstDeps = []
+description = "Typeset chemical formulas, both with inorganic and organic chemistry notation"
+license = [
+ "MIT",
+]
+
+[typsium."0.0.1"]
+url = "https://packages.typst.org/preview/typsium-0.0.1.tar.gz"
+hash = "sha256-4/1dgToURPCCX2eDzWV8NYc8/TIkUh/MFV3lUbsuLcI="
+typstDeps = []
+description = "Typeset chemical formulas, both with inorganic and organic chemistry notation"
+license = [
+ "MIT",
+]
+
+[typsium-atomic."0.1.0"]
+url = "https://packages.typst.org/preview/typsium-atomic-0.1.0.tar.gz"
+hash = "sha256-rprYxERucrUOCau4PeT0Tuo/VaZAyph0imduvLsvmOI="
+typstDeps = [
+ "cetz_0_3_2",
+ "typsium_0_2_0",
+]
+description = "Draw Atoms, their electron configurations, shells and orbitals in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Typsium/typsium-atomic"
+
+[typsium-ghs."0.1.0"]
+url = "https://packages.typst.org/preview/typsium-ghs-0.1.0.tar.gz"
+hash = "sha256-TLMDZEs899q4NeMxssgpfudPLbUClXeo5HA1fimtX8E="
+typstDeps = []
+description = "Display and format Hazard & Precautionary statements and GHS pictograms in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Typsium/typsium-ghs"
+
+[typsium-iso-7010."0.1.0"]
+url = "https://packages.typst.org/preview/typsium-iso-7010-0.1.0.tar.gz"
+hash = "sha256-At2mMp78LLfZ8KFC/X70Bq8/OuL/XCyWvPUqJ+dgJ5s="
+typstDeps = []
+description = "Display Warning signs, Fire signs, Emergency signs, Mandatory signs, Prohibited signs following the ISO 7010 standard in Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Typsium/typsium-iso-7010"
+
+[typslides."1.2.5"]
+url = "https://packages.typst.org/preview/typslides-1.2.5.tar.gz"
+hash = "sha256-Jxl8Ptse2uQQgSRDQBZXnAzAsWtrNqDN2fm6gZXDNzA="
+typstDeps = []
+description = "Minimalistic Typst slides"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/manjavacas/typslides"
+
+[typslides."1.2.4"]
+url = "https://packages.typst.org/preview/typslides-1.2.4.tar.gz"
+hash = "sha256-mAmMN3gkjjiaus1k6e59wzeqCJ4ZkuDFLczil0JY4Sc="
+typstDeps = []
+description = "Minimalistic Typst slides"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/manjavacas/typslides"
+
+[typslides."1.2.3"]
+url = "https://packages.typst.org/preview/typslides-1.2.3.tar.gz"
+hash = "sha256-O/X1iiAshGUF+WMMksOcl+89Pslob2Qdq0q7C+amLHk="
+typstDeps = []
+description = "Minimalistic Typst slides"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/manjavacas/typslides"
+
+[typslides."1.2.1"]
+url = "https://packages.typst.org/preview/typslides-1.2.1.tar.gz"
+hash = "sha256-ccq1C1TM9UFdst344/bSTobxwqFrtEGIVPRL2MACiwk="
+typstDeps = []
+description = "Minimalistic Typst slides"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/manjavacas/typslides"
+
+[typslides."1.2.0"]
+url = "https://packages.typst.org/preview/typslides-1.2.0.tar.gz"
+hash = "sha256-K13Mle1mkRp2I+w4UR6L5gMxhHkWXZnGMfYUIKSDLpk="
+typstDeps = []
+description = "Minimalistic Typst slides"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/manjavacas/typslides"
+
+[typslides."1.1.1"]
+url = "https://packages.typst.org/preview/typslides-1.1.1.tar.gz"
+hash = "sha256-nqcBa3ckShHMFX7Z1UyIYlF6eHJXbAM7LYdHmp53Lo4="
+typstDeps = []
+description = "Minimalistic Typst slides"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/manjavacas/typslides"
+
+[ucpc-solutions."0.1.1"]
+url = "https://packages.typst.org/preview/ucpc-solutions-0.1.1.tar.gz"
+hash = "sha256-7zHpbpKm0aUQ2UeOqUMG4ZayEmcHG9bYi6+5elZHaXk="
+typstDeps = []
+description = "The port of UCPC solutions theme"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ShapeLayer/ucpc-solutions__typst"
+
+[ucpc-solutions."0.1.0"]
+url = "https://packages.typst.org/preview/ucpc-solutions-0.1.0.tar.gz"
+hash = "sha256-6FeZaR7FKky13z9XEyfan1mTl8uxV/5BWzZFQKW0DHQ="
+typstDeps = []
+description = "The port of UCPC solutions theme"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ShapeLayer/ucpc-solutions__typst"
+
+[umbra."0.1.0"]
+url = "https://packages.typst.org/preview/umbra-0.1.0.tar.gz"
+hash = "sha256-DabsDQMs5r76fU9Jil2bgwDunZdcYJaYRNcbEQLrel0="
+typstDeps = [
+ "suiji_0_3_0",
+]
+description = "Basic shadows for Typst"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/davystrong/umbra"
+
+[unequivocal-ams."0.1.2"]
+url = "https://packages.typst.org/preview/unequivocal-ams-0.1.2.tar.gz"
+hash = "sha256-QHT9PJvdQJA9pU1MQjKvEwq4tLHGtjK0MWwBPEfcDEQ="
+typstDeps = []
+description = "An AMS-style paper template to publish at conferences and journals for mathematicians"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[unequivocal-ams."0.1.1"]
+url = "https://packages.typst.org/preview/unequivocal-ams-0.1.1.tar.gz"
+hash = "sha256-Tw0dLrvKdOlwpQYwZyrr4ur6jdSRD9+HUW79Y6shRBU="
+typstDeps = []
+description = "An AMS-style paper template to publish at conferences and journals for mathematicians"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[unequivocal-ams."0.1.0"]
+url = "https://packages.typst.org/preview/unequivocal-ams-0.1.0.tar.gz"
+hash = "sha256-U8ImTg6iL+8W5U7D21ZoypmrQTEc5mDtBPbLJRU5NPc="
+typstDeps = []
+description = "An AMS-style paper template to publish at conferences and journals for mathematicians"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[unichar."0.3.0"]
+url = "https://packages.typst.org/preview/unichar-0.3.0.tar.gz"
+hash = "sha256-hI7KvLVatUBi+HevKT5C+Z84V3XP/wK/fPKUPrNmyDM="
+typstDeps = []
+description = "A partial port of the Unicode Character Database"
+license = [
+ "MIT",
+ "Unicode-3.0",
+]
+homepage = "https://github.com/MDLC01/unichar"
+
+[unichar."0.2.0"]
+url = "https://packages.typst.org/preview/unichar-0.2.0.tar.gz"
+hash = "sha256-Krv+A5H4yLb4VjEOlRwwhbpPnlH55h1AMQCYtf08Wzo="
+typstDeps = []
+description = "A partial port of the Unicode Character Database"
+license = [
+ "MIT",
+ "Unicode-3.0",
+]
+homepage = "https://github.com/MDLC01/unichar"
+
+[unichar."0.1.0"]
+url = "https://packages.typst.org/preview/unichar-0.1.0.tar.gz"
+hash = "sha256-H3ItngZTHyoR0NqBBS1DYuRb1cECDjaj+k6v08I2arQ="
+typstDeps = []
+description = "A partial port of the Unicode Character Database"
+license = [
+ "MIT",
+ "Unicode-3.0",
+]
+homepage = "https://github.com/MDLC01/unichar"
+
+[unify."0.7.1"]
+url = "https://packages.typst.org/preview/unify-0.7.1.tar.gz"
+hash = "sha256-1GvuZQ2u9Ty7hqFxdsVg3yJ/S6rFa/c0/HYjoR2PESA="
+typstDeps = []
+description = "Format numbers, units, and ranges correctly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ChHecker/unify"
+
+[unify."0.7.0"]
+url = "https://packages.typst.org/preview/unify-0.7.0.tar.gz"
+hash = "sha256-xt7fQZhlxP3jqV9jd4QYbOM+gqQ3U5pwyqSoq5WrEBQ="
+typstDeps = []
+description = "Format numbers, units, and ranges correctly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ChHecker/unify"
+
+[unify."0.6.1"]
+url = "https://packages.typst.org/preview/unify-0.6.1.tar.gz"
+hash = "sha256-PPXJd5PCMWPWXEgApGFYV0xNyc+WuvZaSBaBjjsJFtg="
+typstDeps = []
+description = "Format numbers, units, and ranges correctly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ChHecker/unify"
+
+[unify."0.6.0"]
+url = "https://packages.typst.org/preview/unify-0.6.0.tar.gz"
+hash = "sha256-KqhsTD6kIiQuVufvBNISaqa7N/RYfIfAsLaHHT0Ymsk="
+typstDeps = []
+description = "Format numbers, units, and ranges correctly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ChHecker/unify"
+
+[unify."0.5.0"]
+url = "https://packages.typst.org/preview/unify-0.5.0.tar.gz"
+hash = "sha256-IqtDX0evoJHjdo1pGhvUXSH2vzbr6IWwSHlKsxMSxTo="
+typstDeps = []
+description = "Format numbers, units, and ranges correctly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ChHecker/unify"
+
+[unify."0.4.3"]
+url = "https://packages.typst.org/preview/unify-0.4.3.tar.gz"
+hash = "sha256-/MsiFiiU84nMRDHgVjL8yKr73hHIbHBGDWwvDAIHfys="
+typstDeps = []
+description = "Format numbers, units, and ranges correctly"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ChHecker/unify"
+
+[unify."0.4.2"]
+url = "https://packages.typst.org/preview/unify-0.4.2.tar.gz"
+hash = "sha256-FygEPTaNYUjXxRaOpaLO/00LU4M86KCqWBnNajAUj0g="
+typstDeps = []
+description = "Format numbers, units, and ranges correctly"
+license = [
+ "MIT",
+]
+
+[unify."0.4.1"]
+url = "https://packages.typst.org/preview/unify-0.4.1.tar.gz"
+hash = "sha256-CARU0Sz8UiJcJmpQg6DLxKV9oT2itg5UZJT36PQoa70="
+typstDeps = []
+description = "Format numbers, units, and ranges correctly"
+license = [
+ "MIT",
+]
+
+[unify."0.4.0"]
+url = "https://packages.typst.org/preview/unify-0.4.0.tar.gz"
+hash = "sha256-MwxQbUxUnwmsEDyrSdIhm3dCPmDLeGUcvFvYtDHwlEw="
+typstDeps = []
+description = "Format numbers, units, and ranges correctly"
+license = [
+ "MIT",
+]
+
+[unify."0.1.0"]
+url = "https://packages.typst.org/preview/unify-0.1.0.tar.gz"
+hash = "sha256-iu4iTByyYBFEXuzra1wVKGMxqREAqDnPdK7U55mMnDc="
+typstDeps = []
+description = "Format numbers, units, and ranges correctly"
+license = [
+ "MIT",
+]
+
+[unilab."0.0.2"]
+url = "https://packages.typst.org/preview/unilab-0.0.2.tar.gz"
+hash = "sha256-4C37iqsVl1FGkjD3t8aUrghf7Z8QkTwZyNwZHZoi+Ig="
+typstDeps = [
+ "chic-hdr_0_4_0",
+ "linguify_0_4_0",
+ "oxifmt_0_2_0",
+ "unify_0_4_3",
+]
+description = "Lab report"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sjfhsjfh/unilab"
+
+[universal-cau-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/universal-cau-thesis-0.1.0.tar.gz"
+hash = "sha256-kpHesQt7AQ9+DuEOA2czb0A5Fmot6m6KZiM9LHcOlLg="
+typstDeps = [
+ "codelst_2_0_1",
+ "codly_0_2_0",
+]
+description = "中国农业大学毕业论文的Typst模板"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/JWangL5/CAU-ThesisTemplate-Typst"
+
+[universal-hit-thesis."0.3.0"]
+url = "https://packages.typst.org/preview/universal-hit-thesis-0.3.0.tar.gz"
+hash = "sha256-78IVN1tzEH7qKnAdrWEGgmCWwAogLFdmtT9rsqNs5fQ="
+typstDeps = [
+ "algo_0_3_4",
+ "codelst_2_0_2",
+ "cuti_0_2_1",
+ "datify_0_1_3",
+ "i-figured_0_2_4",
+ "lovelace_0_2_0",
+ "numbly_0_1_0",
+]
+description = "哈尔滨工业大学学位论文模板 | Universal Harbin Institute of Technology Thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hitszosa/universal-hit-thesis"
+
+[universal-hit-thesis."0.2.1"]
+url = "https://packages.typst.org/preview/universal-hit-thesis-0.2.1.tar.gz"
+hash = "sha256-+aPKPJKUx18QinUZ8XwIuY7rlEv+V/3HbH5zSfLC3ho="
+typstDeps = [
+ "algorithmic_0_1_0",
+ "codelst_2_0_1",
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+ "lovelace_0_2_0",
+]
+description = "哈尔滨工业大学学位论文模板 | Universal Harbin Institute of Technology Thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/chosertech/HIT-Thesis-Typst"
+
+[universal-hit-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/universal-hit-thesis-0.2.0.tar.gz"
+hash = "sha256-7EaaLLtnXsi/Jw9LonJ/6hsjSadZJIZkHzP/ZSC91lM="
+typstDeps = [
+ "algorithmic_0_1_0",
+ "codelst_2_0_1",
+ "cuti_0_2_1",
+ "i-figured_0_2_4",
+]
+description = "哈尔滨工业大学学位论文模板 | Universal Harbin Institute of Technology Thesis"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/chosertech/HIT-Thesis-Typst"
+
+[unofficial-fhict-document-template."1.1.3"]
+url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.1.3.tar.gz"
+hash = "sha256-QMVNRywcGXL/YcD47I0HSPZiRcW6XT5SwGDvgHwR9es="
+typstDeps = [
+ "codly_1_3_0",
+ "codly-languages_0_1_8",
+ "glossarium_0_5_4",
+ "hydra_0_6_0",
+ "in-dexter_0_7_0",
+]
+description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+[unofficial-fhict-document-template."1.1.2"]
+url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.1.2.tar.gz"
+hash = "sha256-BMWZMjCA+X6kKF/ztYhxFIJey7Yl+qcPY176+DCM8yM="
+typstDeps = [
+ "codly_1_1_1",
+ "codly-languages_0_1_3",
+ "glossarium_0_5_1",
+ "hydra_0_5_1",
+ "in-dexter_0_7_0",
+]
+description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+[unofficial-fhict-document-template."1.1.1"]
+url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.1.1.tar.gz"
+hash = "sha256-XQPrepCZwRZOspaTnivUWlOMNhKpyB/FBiY5lQWHuqw="
+typstDeps = [
+ "codly_1_0_0",
+ "glossarium_0_5_1",
+ "hydra_0_5_1",
+ "in-dexter_0_5_3",
+]
+description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+[unofficial-fhict-document-template."1.1.0"]
+url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.1.0.tar.gz"
+hash = "sha256-4ssqWSW59es4OJ44og2YpmyFyWGuEQhqhkJU/HPavCo="
+typstDeps = [
+ "codly_1_0_0",
+ "glossarium_0_5_1",
+ "hydra_0_5_1",
+ "in-dexter_0_5_3",
+]
+description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+[unofficial-fhict-document-template."1.0.2"]
+url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.0.2.tar.gz"
+hash = "sha256-i51+YsB5BSOctB2c1onas/ki7AuTnUNDGUQQ/HX9ikI="
+typstDeps = [
+ "codly_1_0_0",
+ "glossarium_0_4_1",
+ "hydra_0_5_1",
+ "in-dexter_0_4_2",
+]
+description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+[unofficial-fhict-document-template."1.0.1"]
+url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.0.1.tar.gz"
+hash = "sha256-CpQkytahCw+pkn4BT1BPWfCi1kTa6BDUIpZFYFwA6l8="
+typstDeps = [
+ "codly_1_0_0",
+ "glossarium_0_4_1",
+ "hydra_0_5_1",
+ "in-dexter_0_4_2",
+]
+description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+[unofficial-fhict-document-template."1.0.0"]
+url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.0.0.tar.gz"
+hash = "sha256-UQM8nDZlSUBonBtWQpXI/qDe5+0hJB+jjv5ZCJDd0qg="
+typstDeps = [
+ "codly_1_0_0",
+ "glossarium_0_4_1",
+ "hydra_0_5_1",
+ "in-dexter_0_4_2",
+]
+description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+[unofficial-fhict-document-template."0.11.0"]
+url = "https://packages.typst.org/preview/unofficial-fhict-document-template-0.11.0.tar.gz"
+hash = "sha256-CimlvTlW0/h7KjV9yTlazGIcolaVSi45MNO6AQ6YtGA="
+typstDeps = [
+ "codly_1_0_0",
+ "glossarium_0_4_1",
+ "in-dexter_0_4_2",
+]
+description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+[unofficial-fhict-document-template."0.10.1"]
+url = "https://packages.typst.org/preview/unofficial-fhict-document-template-0.10.1.tar.gz"
+hash = "sha256-4Z49nV4c3vkG3xaR+fUcDxDdfn2dnp7MMBbfCEynDqA="
+typstDeps = [
+ "codly_0_2_0",
+ "colorful-boxes_1_2_0",
+ "glossarium_0_2_6",
+ "in-dexter_0_3_0",
+ "showybox_2_0_1",
+]
+description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+[unofficial-fhict-document-template."0.10.0"]
+url = "https://packages.typst.org/preview/unofficial-fhict-document-template-0.10.0.tar.gz"
+hash = "sha256-PS15qDjBe8IjnwP77OjtlUOI6DrnjsbPlbAbx8ZdK4I="
+typstDeps = [
+ "codly_0_2_0",
+ "colorful-boxes_1_2_0",
+ "glossarium_0_2_6",
+ "in-dexter_0_3_0",
+ "showybox_2_0_1",
+]
+description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+[unofficial-hka-thesis."1.0.1"]
+url = "https://packages.typst.org/preview/unofficial-hka-thesis-1.0.1.tar.gz"
+hash = "sha256-XLHqe1WvosoePU30Obp38Y5tQ36kAVgrHRxoyQo72qI="
+typstDeps = [
+ "acrostiche_0_2_0",
+ "glossarium_0_5_4",
+]
+description = "Unofficial thesis template used at the University of Applied Sciences Karlsruhe (Hochschule Karlsruhe / HKA) at the faculty of Computer Science"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/AnsgarLichter/unofficial-hka-thesis"
+
+[unofficial-hka-thesis."1.0.0"]
+url = "https://packages.typst.org/preview/unofficial-hka-thesis-1.0.0.tar.gz"
+hash = "sha256-7rlvT2kIJcpCwNe1dAyfXkTV1aC2wHN4ycRazywAjrI="
+typstDeps = [
+ "acrostiche_0_2_0",
+ "glossarium_0_5_1",
+]
+description = "Unofficial thesis template used at the University of Applied Sciences Karlsruhe (Hochschule Karlsruhe / HKA) at the faculty of Computer Science"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/AnsgarLichter/unofficial-hka-thesis"
+
+[unofficial-sdu-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/unofficial-sdu-thesis-0.2.0.tar.gz"
+hash = "sha256-O/l47Jrk+ChI0JC7VVGLxTL250OTs4L24OlYtZeCei4="
+typstDeps = [
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+ "lovelace_0_2_0",
+ "numbly_0_1_0",
+ "unofficial-sdu-thesis_0_1_0",
+]
+description = "山东大学本科毕业论文(设计)模板"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/GrooveWJH/unofficial-sdu-thesis"
+
+[unofficial-sdu-thesis."0.1.0"]
+url = "https://packages.typst.org/preview/unofficial-sdu-thesis-0.1.0.tar.gz"
+hash = "sha256-A6SgfjvrtMja67XUOSu/rQS5LwcdAeAVQOU1uDhMlUg="
+typstDeps = [
+ "cuti_0_3_0",
+ "i-figured_0_2_4",
+ "lovelace_0_2_0",
+ "numbly_0_1_0",
+]
+description = "山东大学本科毕业论文(设计)模板"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/GrooveWJH/unofficial-sdu-thesis"
+
+[untypsignia."0.1.1"]
+url = "https://packages.typst.org/preview/untypsignia-0.1.1.tar.gz"
+hash = "sha256-skdLt8VjBpWG4eWHArBgPnAxOPcknFrYHCNw7aeiBOE="
+typstDeps = []
+description = "Unofficial typesetter's insignia emulations"
+license = [
+ "MIT",
+]
+
+[untypsignia."0.1.0"]
+url = "https://packages.typst.org/preview/untypsignia-0.1.0.tar.gz"
+hash = "sha256-WRuR+AQJBU3KW6zuj1kPJRvqIEVnqB20PSpwEbqE8p0="
+typstDeps = []
+description = "Unofficial typesetter's insignia emulations"
+license = [
+ "MIT",
+]
+
+[uo-pup-thesis-manuscript."0.1.1"]
+url = "https://packages.typst.org/preview/uo-pup-thesis-manuscript-0.1.1.tar.gz"
+hash = "sha256-lOma43713Y5kr3+x8ewS/APgzbHuRDosvCltH0uu3FY="
+typstDeps = []
+description = "Unofficial Typst template for PUP (Polytechnic University of the Philippines) undergraduate thesis manuscript"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/datsudo/uo-pup-thesis-manuscript"
+
+[uo-pup-thesis-manuscript."0.1.0"]
+url = "https://packages.typst.org/preview/uo-pup-thesis-manuscript-0.1.0.tar.gz"
+hash = "sha256-oIj2yKgJgKqC8Lyc6iIDcG0qk0ygTCnG3ViLISEaGpQ="
+typstDeps = []
+description = "Unofficial Typst template for PUP (Polytechnic University of the Philippines) undergraduate thesis manuscript"
+license = [
+ "MIT",
+]
+homepage = "https://gitlab.com/datsudo/uo-pup-thesis-manuscript"
+
+[uo-tsinghua-thesis."0.3.0"]
+url = "https://packages.typst.org/preview/uo-tsinghua-thesis-0.3.0.tar.gz"
+hash = "sha256-c61R3BlMDC0pzk+FpkOakPYPPr+IGjllz7plbmBK/nE="
+typstDeps = [
+ "a2c-nums_0_0_1",
+ "cuti_0_3_0",
+ "tablem_0_2_0",
+]
+description = "An unofficial Typst template for Tsinghua University (THU) graduate thesis. 清华大学研究生毕业论文非官方Typst模板。"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/dl-li/uo-Tsinghua-Thesis-Typst-Template"
+
+[uo-tsinghua-thesis."0.2.0"]
+url = "https://packages.typst.org/preview/uo-tsinghua-thesis-0.2.0.tar.gz"
+hash = "sha256-URg8McvUjgTKFJBWyoXEfKEA+0GPxjgmvhhOAsMcP24="
+typstDeps = [
+ "a2c-nums_0_0_1",
+ "cuti_0_3_0",
+ "tablem_0_2_0",
+]
+description = "An unofficial Typst template for Tsinghua University (THU) graduate thesis. 清华大学研究生毕业论文非官方Typst模板。"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/dl-li/uo-Tsinghua-Thesis-Typst-Template"
+
+[upb-corporate-design-slides."0.1.2"]
+url = "https://packages.typst.org/preview/upb-corporate-design-slides-0.1.2.tar.gz"
+hash = "sha256-X93El+L4GAiDM9BwiVU8l48MpIAXsWPC4A7z3DTY2ng="
+typstDeps = [
+ "touying_0_5_5",
+]
+description = "Presentation template for Paderborn University (UPB"
+license = [
+ "MIT",
+]
+homepage = "https://codeberg.org/Kuchenmampfer/upb-corporate-design-slides"
+
+[upb-corporate-design-slides."0.1.1"]
+url = "https://packages.typst.org/preview/upb-corporate-design-slides-0.1.1.tar.gz"
+hash = "sha256-vYl3eiYJpUXUiGKff0aTgHSV1Xwahj2f7u+UiJ9MK+o="
+typstDeps = [
+ "touying_0_5_3",
+]
+description = "Presentation template for Paderborn University (UPB"
+license = [
+ "MIT",
+]
+homepage = "https://codeberg.org/Kuchenmampfer/upb-corporate-design-slides"
+
+[upb-corporate-design-slides."0.1.0"]
+url = "https://packages.typst.org/preview/upb-corporate-design-slides-0.1.0.tar.gz"
+hash = "sha256-UD0wmzFq2bb9ym2JG6oNJKe/T3dZmAHqCQQvuJRse28="
+typstDeps = [
+ "touying_0_5_3",
+]
+description = "Presentation template for Paderborn University (UPB"
+license = [
+ "MIT",
+]
+homepage = "https://codeberg.org/Kuchenmampfer/upb-corporate-design-slides"
+
+[use-academicons."0.1.0"]
+url = "https://packages.typst.org/preview/use-academicons-0.1.0.tar.gz"
+hash = "sha256-AoXb2XZQvfZIKXRidR+tT1Iv6pPxog1x1cZOHGz8f8s="
+typstDeps = []
+description = "A Typst library for Academicons the desktop fonts"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/bpkleer/typst-academicons"
+
+[use-tabler-icons."0.11.0"]
+url = "https://packages.typst.org/preview/use-tabler-icons-0.11.0.tar.gz"
+hash = "sha256-z7Z3MKNpWD2q2aRnu/+gnCbumbFt9P4ss0Ma+M6UzUM="
+typstDeps = []
+description = "Tabler Icons for Typst using webfont"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+[use-tabler-icons."0.10.0"]
+url = "https://packages.typst.org/preview/use-tabler-icons-0.10.0.tar.gz"
+hash = "sha256-HVFmWtmM4jZKUELDrTa9huYeoZveaZmE8wr0Wo7roME="
+typstDeps = []
+description = "Tabler Icons for Typst using webfont"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+[use-tabler-icons."0.9.0"]
+url = "https://packages.typst.org/preview/use-tabler-icons-0.9.0.tar.gz"
+hash = "sha256-bZcuWJTqORFwuqHENitblK2k9LtJhKJiPw3NmN25XWA="
+typstDeps = []
+description = "Tabler Icons for Typst using webfont"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+[use-tabler-icons."0.8.0"]
+url = "https://packages.typst.org/preview/use-tabler-icons-0.8.0.tar.gz"
+hash = "sha256-ScfdimKwcHVaer68a2z9hYFd26Bgam3xg/meqGeBhHE="
+typstDeps = []
+description = "Tabler Icons for Typst using webfont"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+[use-tabler-icons."0.7.0"]
+url = "https://packages.typst.org/preview/use-tabler-icons-0.7.0.tar.gz"
+hash = "sha256-KzRXDxtZjZ4CiYkHKfUa2cbyBC04V4dlnVRES4hqmHw="
+typstDeps = []
+description = "Tabler Icons for Typst using webfont"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+[use-tabler-icons."0.6.0"]
+url = "https://packages.typst.org/preview/use-tabler-icons-0.6.0.tar.gz"
+hash = "sha256-j/rj1MajyQaepZQ7bf96tJ3kG3gdYbkNRGEtvKAfPiQ="
+typstDeps = []
+description = "Tabler Icons for Typst using webfont"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+[use-tabler-icons."0.5.0"]
+url = "https://packages.typst.org/preview/use-tabler-icons-0.5.0.tar.gz"
+hash = "sha256-V6lOmZ/SYFzMH/mRC5hTpI7kf1eeSlvBXBBsvLRC54U="
+typstDeps = []
+description = "Tabler Icons for Typst using webfont"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+[use-tabler-icons."0.4.0"]
+url = "https://packages.typst.org/preview/use-tabler-icons-0.4.0.tar.gz"
+hash = "sha256-jTAgNxNaqChJEWOmQY/P8qy0n+GkX0Qv72//PtnFbPs="
+typstDeps = []
+description = "Tabler Icons for Typst using webfont"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+[use-tabler-icons."0.3.0"]
+url = "https://packages.typst.org/preview/use-tabler-icons-0.3.0.tar.gz"
+hash = "sha256-6V749nma7ZCmMV2ujMUhkKTGnNmzN2o7XEAI9xC1jTw="
+typstDeps = []
+description = "Tabler Icons for Typst using webfont"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+[use-tabler-icons."0.2.0"]
+url = "https://packages.typst.org/preview/use-tabler-icons-0.2.0.tar.gz"
+hash = "sha256-Dxga+6pjiDg1K/68nizHPlY2kJ0mgOzMWTbBNRX3YV4="
+typstDeps = []
+description = "Tabler Icons for Typst using webfont"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+[use-tabler-icons."0.1.0"]
+url = "https://packages.typst.org/preview/use-tabler-icons-0.1.0.tar.gz"
+hash = "sha256-7hLxRce6E9oCvw42Yj1Bqmbu1IqQBYJMeF7CCNXQdhA="
+typstDeps = []
+description = "Tabler Icons for Typst using webfont"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+[valkyrie."0.2.2"]
+url = "https://packages.typst.org/preview/valkyrie-0.2.2.tar.gz"
+hash = "sha256-9FTVR2mbrCMIrsraUrx8m8U1OwMKzIlvK9ule3cQHLk="
+typstDeps = []
+description = "Type safe type validation"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/typst-community/valkyrie"
+
+[valkyrie."0.2.1"]
+url = "https://packages.typst.org/preview/valkyrie-0.2.1.tar.gz"
+hash = "sha256-jUkFhI7PXqPzKNhlfu5AjNVv9r1OFGj7fuqPoZ+8OmA="
+typstDeps = []
+description = "Type safe type validation"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/typst-community/valkyrie"
+
+[valkyrie."0.2.0"]
+url = "https://packages.typst.org/preview/valkyrie-0.2.0.tar.gz"
+hash = "sha256-u6ro2Rf1rOAEdMT6UjQOspnJsvNPA/TIFK+jlCih8WM="
+typstDeps = [
+ "fletcher_0_4_4",
+]
+description = "Type safe type validation"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/typst-community/valkyrie"
+
+[valkyrie."0.1.1"]
+url = "https://packages.typst.org/preview/valkyrie-0.1.1.tar.gz"
+hash = "sha256-Jl9tXCpJiePbl7Q1ppCoOuWkvsPBIAQ99B4tt5LMJFg="
+typstDeps = []
+description = "Type validation"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/JamesxX/valkyrie"
+
+[valkyrie."0.1.0"]
+url = "https://packages.typst.org/preview/valkyrie-0.1.0.tar.gz"
+hash = "sha256-CCcdsxBXZX1SJRiQD6jU/Y18GU9WcG534XdJjnIr7rk="
+typstDeps = []
+description = "Type validation"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/JamesxX/valkyrie"
+
+[vantage-cv."1.0.0"]
+url = "https://packages.typst.org/preview/vantage-cv-1.0.0.tar.gz"
+hash = "sha256-ggyQgxkGUuRJKibB5cIz+8cJGME/ELRwPL1AUnxSTbg="
+typstDeps = []
+description = "An ATS friendly simple Typst CV template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/sardorml/vantage-typst"
+
+[vartable."0.1.2"]
+url = "https://packages.typst.org/preview/vartable-0.1.2.tar.gz"
+hash = "sha256-qdxhy9af6K4ez9UUd9sYrHR38DbCHG/D1besutjxOHE="
+typstDeps = [
+ "fletcher_0_5_2",
+]
+description = "A simple package to make variation table"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Le-foucheur/Typst-VarTable"
+
+[vartable."0.1.1"]
+url = "https://packages.typst.org/preview/vartable-0.1.1.tar.gz"
+hash = "sha256-MapzhIsPkoE8KunwS4EXfnEN3SpjqDdg7MEN3AQ5R6k="
+typstDeps = [
+ "fletcher_0_4_5",
+]
+description = "A simple package to make variation table"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Le-foucheur/Typst-VarTable"
+
+[vartable."0.1.0"]
+url = "https://packages.typst.org/preview/vartable-0.1.0.tar.gz"
+hash = "sha256-MxFVz7B4g8rucTHvwRskbUU/JEUkn4aSEe+Es6b1O+M="
+typstDeps = [
+ "fletcher_0_4_5",
+]
+description = "A simple package to make variation table"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Le-foucheur/Typst-VarTable"
+
+[vercanard."1.0.2"]
+url = "https://packages.typst.org/preview/vercanard-1.0.2.tar.gz"
+hash = "sha256-OlUnjAHq46bqpMcrfpoZs2dFMwoxydonb5nUSrMWkIA="
+typstDeps = []
+description = "A colorful CV template"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/elegaanz/vercanard"
+
+[vercanard."1.0.1"]
+url = "https://packages.typst.org/preview/vercanard-1.0.1.tar.gz"
+hash = "sha256-Y4PCYzyy11zXWPDDDdkJsYxCRrIPvp4RlGCe7K0krkk="
+typstDeps = [
+ "vercanard_1_0_0",
+]
+description = "A colorful CV template"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/elegaanz/vercanard"
+
+[vercanard."1.0.0"]
+url = "https://packages.typst.org/preview/vercanard-1.0.0.tar.gz"
+hash = "sha256-DIS6Sf/GNcznHph+LV9Cy5pzOvK7S34Ua+3Cz8twqnI="
+typstDeps = []
+description = "A colorful CV template"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/elegaanz/vercanard"
+
+[versatile-apa."7.1.1"]
+url = "https://packages.typst.org/preview/versatile-apa-7.1.1.tar.gz"
+hash = "sha256-KNgC1hrSLA8mtBdvnow26pZ+WuZTa0P+3vBwBUZWpsc="
+typstDeps = []
+description = "Comprehensive APA 7th Edition Style Template for Typst, suitable for both student and professional papers"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/jassielof/typst-templates"
+
+[versatile-apa."7.1.0"]
+url = "https://packages.typst.org/preview/versatile-apa-7.1.0.tar.gz"
+hash = "sha256-lmVR7YQOlOUqdN4nAIacwfk3J6pCh5vU1oz88LDOcaM="
+typstDeps = []
+description = "Comprehensive APA 7th Edition Style Template for Typst, suitable for both student and professional papers"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/jassielof/typst-templates"
+
+[versatile-apa."7.0.0"]
+url = "https://packages.typst.org/preview/versatile-apa-7.0.0.tar.gz"
+hash = "sha256-Hz9Av3ZYvNNcWvpbY62AcpQxOsfKOFcWK6rQ5gjo5Q0="
+typstDeps = []
+description = "Comprehensive APA 7th Edition Style Template for Typst, suitable for both student and professional papers"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/jassielof/typst-templates"
+
+[vienna-tech."1.0.0"]
+url = "https://packages.typst.org/preview/vienna-tech-1.0.0.tar.gz"
+hash = "sha256-iFg9YMiy68RfG85RAe9olbAGABtCv95ZpunG/e+wjsA="
+typstDeps = [
+ "codly_1_2_0",
+]
+description = "An unofficial template for writing thesis at the TU Wien civil- and environmental engineering faculty"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/npikall/vienna-tech.git"
+
+[vienna-tech."0.1.3"]
+url = "https://packages.typst.org/preview/vienna-tech-0.1.3.tar.gz"
+hash = "sha256-YVHU+4szUm2inhnRVfPVG+DzhIPMCnS1nyZs5vCALH8="
+typstDeps = [
+ "codly_1_0_0",
+]
+description = "An unofficial template for writing thesis at the TU Wien civil- and environmental engineering faculty"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/npikall/vienna-tech.git"
+
+[vienna-tech."0.1.2"]
+url = "https://packages.typst.org/preview/vienna-tech-0.1.2.tar.gz"
+hash = "sha256-oqqtd1KthXrmrdWRRT0IxBd8fLmjZ82GxHOXRwenlrw="
+typstDeps = [
+ "codly_1_0_0",
+]
+description = "An unofficial template for writing thesis at the TU Wien civil- and environmental engineering faculty"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/npikall/vienna-tech.git"
+
+[vienna-tech."0.1.1"]
+url = "https://packages.typst.org/preview/vienna-tech-0.1.1.tar.gz"
+hash = "sha256-WoWJGCbI1FqqOidImGG73mMU5H0jZFzGqHWF1+NtujU="
+typstDeps = []
+description = "An unofficial template for writing thesis at the TU Wien civil- and environmental engineering faculty"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/npikall/vienna-tech.git"
+
+[vienna-tech."0.1.0"]
+url = "https://packages.typst.org/preview/vienna-tech-0.1.0.tar.gz"
+hash = "sha256-3mPquLyrW5Mrkfbb+/t1dDqGtdD9Rl7GRKD3Y9JVx44="
+typstDeps = []
+description = "An unofficial template for writing thesis at the TU Wien civil- and environmental engineering faculty"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/npikall/vienna-tech.git"
+
+[vlna."0.1.0"]
+url = "https://packages.typst.org/preview/vlna-0.1.0.tar.gz"
+hash = "sha256-G3FA/puWLUb1qa6n6pCyD4CIlr10pfgsZ/ZtQmnHr6s="
+typstDeps = []
+description = "First version of czech vlna from LaTeX. All characters with less than 3 letters are connected to the next word"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/ShinoYumi/typst-vlna/"
+
+[vonsim."0.2.0"]
+url = "https://packages.typst.org/preview/vonsim-0.2.0.tar.gz"
+hash = "sha256-c/0A2Z8JkEbmQulQ5PkBMVfM8pzWHbhauyOMkZ9iPnc="
+typstDeps = []
+description = "Syntax highlighting support for VonSim"
+license = [
+ "AGPL-3.0-only",
+]
+homepage = "https://github.com/vonsim/typst-package"
+
+[vonsim."0.1.0"]
+url = "https://packages.typst.org/preview/vonsim-0.1.0.tar.gz"
+hash = "sha256-JLppZi9QVShXesm511e4auRxQ6G6kRCJupu74zfahA4="
+typstDeps = []
+description = "Syntax highlighting support for VonSim"
+license = [
+ "AGPL-3.0-only",
+]
+homepage = "https://github.com/vonsim/typst-package"
+
+[wavy."0.1.1"]
+url = "https://packages.typst.org/preview/wavy-0.1.1.tar.gz"
+hash = "sha256-2/ZoPog8rL0/+yAx81NzVv4r0NmJ5Ox/rvmj7XYyatE="
+typstDeps = [
+ "jogs_0_2_1",
+]
+description = "Draw digital timing diagram in Typst using Wavedrom"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/wavy"
+
+[wavy."0.1.0"]
+url = "https://packages.typst.org/preview/wavy-0.1.0.tar.gz"
+hash = "sha256-tby94hgfmh3JcdEV6rk4sEvsSa6lydKTSBIQ3aCRq5g="
+typstDeps = [
+ "jogs_0_2_0",
+]
+description = "Draw digital timing diagram in Typst using Wavedrom"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Enter-tainer/wavy"
+
+[weave."0.2.0"]
+url = "https://packages.typst.org/preview/weave-0.2.0.tar.gz"
+hash = "sha256-5KBpv8xxICBeZGYj+dVgiIsoMr2XRVr7Dg0H/31sZBA="
+typstDeps = []
+description = "A helper library for chaining lambda abstractions"
+license = [
+ "MIT",
+]
+
+[weave."0.1.0"]
+url = "https://packages.typst.org/preview/weave-0.1.0.tar.gz"
+hash = "sha256-fPAST4JG+h4PJnRNPrMG4feYDh3+m3kkVI8FS5vpMNg="
+typstDeps = []
+description = "A helper library for chaining lambda abstractions"
+license = [
+ "MIT",
+]
+
+[wenyuan-campaign."0.1.1"]
+url = "https://packages.typst.org/preview/wenyuan-campaign-0.1.1.tar.gz"
+hash = "sha256-Hcf+rRsW5rw6giD5SjdkjLs0Gyl4ejA2CBd1xsNRfBA="
+typstDeps = [
+ "droplet_0_3_1",
+ "tidy_0_4_2",
+]
+description = "Easily write DnD 5e style campaign documents"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/yanwenywan/typst-packages/tree/master/wenyuan-campaign"
+
+[wenyuan-campaign."0.1.0"]
+url = "https://packages.typst.org/preview/wenyuan-campaign-0.1.0.tar.gz"
+hash = "sha256-wE1peYrp4LFotk7dr+Jp2l8HVeA0AHveE2JpMbv/dYY="
+typstDeps = [
+ "droplet_0_3_1",
+]
+description = "Easily write DnD 5e style campaign documents"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/yanwenywan/typst-packages/tree/master/wenyuan-campaign"
+
+[whalogen."0.3.0"]
+url = "https://packages.typst.org/preview/whalogen-0.3.0.tar.gz"
+hash = "sha256-u9i/Mg5KgKOrxhyj1dOx2x2+KbW7q4N/zNKdGPCNpXc="
+typstDeps = [
+ "xarrow_0_3_1",
+]
+description = "Typesetting chemical formulae, a port of mhchem"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/schang412/typst-whalogen"
+
+[whalogen."0.2.0"]
+url = "https://packages.typst.org/preview/whalogen-0.2.0.tar.gz"
+hash = "sha256-yMNvwvNCUA2LpkU9J0UIr6JR3j9wil/NDBRTWcJOu7A="
+typstDeps = [
+ "xarrow_0_3_1",
+]
+description = "Typesetting chemical formulae, a port of mhchem"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/schang412/typst-whalogen"
+
+[whalogen."0.1.0"]
+url = "https://packages.typst.org/preview/whalogen-0.1.0.tar.gz"
+hash = "sha256-kDy4LdjDaqxIP6rZwh6Q5jOWr4MZqBJWwfvVEvSiUD8="
+typstDeps = [
+ "xarrow_0_1_1",
+]
+description = "Typesetting chemical formulae, a port of mhchem"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/schang412/whalogen"
+
+[wicked."0.1.1"]
+url = "https://packages.typst.org/preview/wicked-0.1.1.tar.gz"
+hash = "sha256-OK+P/UUrvcCK+RjnpDBkyELeMlYnaQPGV7vWRZP3nb4="
+typstDeps = []
+description = "A flexible and easy-to-use package for typesetting Wick contractions"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/ZaninDavide/wicked"
+
+[wicked."0.1.0"]
+url = "https://packages.typst.org/preview/wicked-0.1.0.tar.gz"
+hash = "sha256-h8xxUW2Kl9mo7EX+ckXkF5mFX9Bk4N+NXAT/HbOD/H8="
+typstDeps = []
+description = "A flexible and easy-to-use package for typesetting Wick contractions"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/ZaninDavide/wicked"
+
+[wonderous-book."0.1.1"]
+url = "https://packages.typst.org/preview/wonderous-book-0.1.1.tar.gz"
+hash = "sha256-r4JxV3GBOJjX+7kYZUCeB/MlBGiKGu1Mqo5V0gb359c="
+typstDeps = []
+description = "A fiction book template with running headers and serif typography"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[wonderous-book."0.1.0"]
+url = "https://packages.typst.org/preview/wonderous-book-0.1.0.tar.gz"
+hash = "sha256-1eprA7c5mA6sC8Baj1cuOwtSAYnFF8jmPdt8JtInynw="
+typstDeps = []
+description = "A fiction book template with running headers and serif tyography"
+license = [
+ "MIT-0",
+]
+homepage = "https://github.com/typst/templates"
+
+[wordometer."0.1.4"]
+url = "https://packages.typst.org/preview/wordometer-0.1.4.tar.gz"
+hash = "sha256-H3h8Dq2SZrRWwOGJkfYq/d4cz1hyZ3iQoExGZ1OyBok="
+typstDeps = [
+ "tidy_0_1_0",
+]
+description = "Word counts and document statistics"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-wordometer"
+
+[wordometer."0.1.3"]
+url = "https://packages.typst.org/preview/wordometer-0.1.3.tar.gz"
+hash = "sha256-Xt6W3xMOFZwQzCiL2wDFC2nwvKsQ1Crm+ukwZpYRBqo="
+typstDeps = [
+ "tidy_0_1_0",
+]
+description = "Word counts and document statistics"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-wordometer"
+
+[wordometer."0.1.2"]
+url = "https://packages.typst.org/preview/wordometer-0.1.2.tar.gz"
+hash = "sha256-dIx+3bYDwJD44xs7JJIhXerplba/r2p5UbqDuDh9P1o="
+typstDeps = [
+ "tidy_0_1_0",
+]
+description = "Word counts and document statistics"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-wordometer"
+
+[wordometer."0.1.1"]
+url = "https://packages.typst.org/preview/wordometer-0.1.1.tar.gz"
+hash = "sha256-fSvTqDB94H18k0mgrU4c3yd1GZFT90CTneyCZ7DI1y4="
+typstDeps = [
+ "tidy_0_1_0",
+ "wordometer_0_1_0",
+]
+description = "Word counts and document statistics"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-wordometer"
+
+[wordometer."0.1.0"]
+url = "https://packages.typst.org/preview/wordometer-0.1.0.tar.gz"
+hash = "sha256-w7hOmbE8uv9jwd8powwidept2iuQxmUBLt3eIiu1DjE="
+typstDeps = [
+ "tidy_0_1_0",
+]
+description = "Word counts and document statistics"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Jollywatt/typst-wordometer"
+
+[wrap-indent."0.1.0"]
+url = "https://packages.typst.org/preview/wrap-indent-0.1.0.tar.gz"
+hash = "sha256-nKprBAhUo1W7F8JrrN3ZgMbnIUAdFgelCL9H1RTDI/4="
+typstDeps = []
+description = "Wrap content in custom functions with just indentation"
+license = [
+ "MIT",
+]
+
+[wrap-it."0.1.1"]
+url = "https://packages.typst.org/preview/wrap-it-0.1.1.tar.gz"
+hash = "sha256-2g0RO1YFmxBSzMqlsTq0W3PQVIcmalx4SXqaegP3xAw="
+typstDeps = []
+description = "Wrap text around figures and content"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ntjess/wrap-it"
+
+[wrap-it."0.1.0"]
+url = "https://packages.typst.org/preview/wrap-it-0.1.0.tar.gz"
+hash = "sha256-Ro8WvO2VE8p/PuWQLWEVZKxxoenlMrzG6+Pw5slAUDo="
+typstDeps = []
+description = "Wrap text around figures and content"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/ntjess/wrap-it"
+
+[xarrow."0.3.1"]
+url = "https://packages.typst.org/preview/xarrow-0.3.1.tar.gz"
+hash = "sha256-5DdscbcplvUldzNiGpVCbutM23uVmm+zniXHM3ayN+E="
+typstDeps = []
+description = "Variable-length arrows in Typst"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://codeberg.org/loutr/typst-xarrow/"
+
+[xarrow."0.3.0"]
+url = "https://packages.typst.org/preview/xarrow-0.3.0.tar.gz"
+hash = "sha256-gOsErQP4alAhO3fQySgnoSYWQ5Mu2Bt2wRzrWR2zln4="
+typstDeps = []
+description = "Variable-length arrows in Typst"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://codeberg.org/loutr/typst-xarrow/"
+
+[xarrow."0.2.0"]
+url = "https://packages.typst.org/preview/xarrow-0.2.0.tar.gz"
+hash = "sha256-ah1rdhslbP8sODCDVHuZEhgN/vmtzGJPzm7UO6d7elU="
+typstDeps = []
+description = "Variable-length arrows in Typst"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://codeberg.org/loutr/typst-xarrow/"
+
+[xarrow."0.1.1"]
+url = "https://packages.typst.org/preview/xarrow-0.1.1.tar.gz"
+hash = "sha256-2siDO9qTxekEWNs2cXFyh79JADVtfAh4IPuoWKux9+o="
+typstDeps = []
+description = "Variable-length arrows in Typst"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://codeberg.org/loutr/typst-xarrow/"
+
+[xarrow."0.1.0"]
+url = "https://packages.typst.org/preview/xarrow-0.1.0.tar.gz"
+hash = "sha256-ICtDtKZXxVeqT8h1U8XovbVQFtrlOEdsmYSFWdUW7cE="
+typstDeps = []
+description = "Variable-length arrows in Typst"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://codeberg.org/loutr/typst-xarrow/"
+
+[xyznote."0.3.0"]
+url = "https://packages.typst.org/preview/xyznote-0.3.0.tar.gz"
+hash = "sha256-L0nzab7cGaw7/ZPUgWorAah/tBnitnAREpsZA4VB65w="
+typstDeps = []
+description = "Simple and Functional Typst Note Template"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/wardenxyz/xyznote"
+
+[xyznote."0.2.0"]
+url = "https://packages.typst.org/preview/xyznote-0.2.0.tar.gz"
+hash = "sha256-nfkCFtbobcApzTOuNgfA4pLkoDwVyjFGds85IqZY1Dw="
+typstDeps = []
+description = "Simple and Functional Typst Note Template"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/wardenxyz/xyznote"
+
+[xyznote."0.1.0"]
+url = "https://packages.typst.org/preview/xyznote-0.1.0.tar.gz"
+hash = "sha256-XLH7//iy9asuf1x9KEABjg320/8G6TKIgJxkE1XaIfI="
+typstDeps = []
+description = "A simple Typst template for creating notebooks"
+license = [
+ "GPL-3.0-only",
+]
+homepage = "https://github.com/wardenxyz/xyznote"
+
+[yagenda."0.1.0"]
+url = "https://packages.typst.org/preview/yagenda-0.1.0.tar.gz"
+hash = "sha256-DqfJMlm2fX+mObaf5e+MSPj6xj70yhNLK3X3S/T7inI="
+typstDeps = []
+description = "A tabular template for meeting agendas with agenda items defined in Yaml"
+license = [
+ "MPL-2.0",
+]
+
+[yats."0.1.0"]
+url = "https://packages.typst.org/preview/yats-0.1.0.tar.gz"
+hash = "sha256-xmyiwiJBqyFk/VUS6Z6Z/XJecb47demxKk68HdWBZao="
+typstDeps = []
+description = "Serialization module for Typst"
+license = [
+ "Apache-2.0",
+]
+homepage = "https://github.com/0warning0error/typst-yats"
+
+[yuan-resume."0.1.0"]
+url = "https://packages.typst.org/preview/yuan-resume-0.1.0.tar.gz"
+hash = "sha256-FWEsms0v6M7+T+YiwcINVybnJj53FSYeQpfdz+E4NrQ="
+typstDeps = []
+description = "An elegant academic resume template"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/visika/yuan-resume"
+
+[zebraw."0.5.0"]
+url = "https://packages.typst.org/preview/zebraw-0.5.0.tar.gz"
+hash = "sha256-qR8rph7/nBgtI1m1TZ4GdCFOOBPPIu3P6BecBCp8r8o="
+typstDeps = [
+ "tidy_0_4_2",
+]
+description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-zebraw"
+
+[zebraw."0.4.8"]
+url = "https://packages.typst.org/preview/zebraw-0.4.8.tar.gz"
+hash = "sha256-Df9Kxa5k8R+DB+4YGDIDM/XRBug+zF2/E6wCgD4PaM4="
+typstDeps = []
+description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-zebraw"
+
+[zebraw."0.4.7"]
+url = "https://packages.typst.org/preview/zebraw-0.4.7.tar.gz"
+hash = "sha256-DOB5K/O+cVeO9C0/E4QbGNquurx92ikvecH2NT610BM="
+typstDeps = []
+description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-zebraw"
+
+[zebraw."0.4.6"]
+url = "https://packages.typst.org/preview/zebraw-0.4.6.tar.gz"
+hash = "sha256-XYJDz/anHiUEI8o8jqOKjqjyUGNZF2RWVX/e43Nb76o="
+typstDeps = []
+description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-zebraw"
+
+[zebraw."0.4.5"]
+url = "https://packages.typst.org/preview/zebraw-0.4.5.tar.gz"
+hash = "sha256-1TKJW1n1eSDMJGnrW+eph8hSHQqqBYUGsIa2FkoTCSA="
+typstDeps = []
+description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-zebraw"
+
+[zebraw."0.4.4"]
+url = "https://packages.typst.org/preview/zebraw-0.4.4.tar.gz"
+hash = "sha256-7NB0oVAIQ3IbdMh0pld8peorBK1vOuAWQaFxYVL5+eQ="
+typstDeps = []
+description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-zebraw"
+
+[zebraw."0.4.3"]
+url = "https://packages.typst.org/preview/zebraw-0.4.3.tar.gz"
+hash = "sha256-4WE2U425oFyjt+hgyo2hFgucvzAbAo1faup92vYL1ic="
+typstDeps = []
+description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-zebraw"
+
+[zebraw."0.4.2"]
+url = "https://packages.typst.org/preview/zebraw-0.4.2.tar.gz"
+hash = "sha256-HawgczYf7LhjkRT4WmdcwbhwuqsUwkuFt0Ycdy209NI="
+typstDeps = []
+description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-zebraw"
+
+[zebraw."0.4.1"]
+url = "https://packages.typst.org/preview/zebraw-0.4.1.tar.gz"
+hash = "sha256-j/iGfW44vPpxCiSkn6swdAeso3JuMG+NwxxXHajjffc="
+typstDeps = []
+description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-zebraw"
+
+[zebraw."0.4.0"]
+url = "https://packages.typst.org/preview/zebraw-0.4.0.tar.gz"
+hash = "sha256-Jg/wuuXULk06otjdbbuInNnlhEw1s3skV3alQgZ4FB4="
+typstDeps = []
+description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-zebraw"
+
+[zebraw."0.3.0"]
+url = "https://packages.typst.org/preview/zebraw-0.3.0.tar.gz"
+hash = "sha256-uRWWklk1rqo9b1+64Lf1u6zX507k1Ssh+MfbNzjw1NA="
+typstDeps = []
+description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-zebraw"
+
+[zebraw."0.2.0"]
+url = "https://packages.typst.org/preview/zebraw-0.2.0.tar.gz"
+hash = "sha256-9/5oKB96Lqc0bDuPPUcB1fSgGr/IqiKY5Esqi7nYPgo="
+typstDeps = []
+description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-zebraw"
+
+[zebraw."0.1.0"]
+url = "https://packages.typst.org/preview/zebraw-0.1.0.tar.gz"
+hash = "sha256-gc/Il4QjcEQCM7VsDHjiB+YqvgGuH8rVfTbEM2vMM7o="
+typstDeps = []
+description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/hongjr03/typst-zebraw"
+
+[zen-zine."0.2.0"]
+url = "https://packages.typst.org/preview/zen-zine-0.2.0.tar.gz"
+hash = "sha256-oSD3i9zaH4zHOm1xwCnhwRDbYfWUqBQYEe1147Vm/FM="
+typstDeps = []
+description = "Excellently type-set a fun little zine"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tomeichlersmith/zen-zine"
+
+[zen-zine."0.1.0"]
+url = "https://packages.typst.org/preview/zen-zine-0.1.0.tar.gz"
+hash = "sha256-vASx7ZfUjBrgKsXa9yXMh6zPECJEJbYXQjH9n9TzdB8="
+typstDeps = []
+description = "Excellently type-set a fun little zine"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/tomeichlersmith/zen-zine"
+
+[zero."0.3.3"]
+url = "https://packages.typst.org/preview/zero-0.3.3.tar.gz"
+hash = "sha256-Th64GzjLyStvOax85IQXUpAuZxU3p3ZdAJDGsDzQEyg="
+typstDeps = []
+description = "Advanced scientific number formatting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/zero"
+
+[zero."0.3.2"]
+url = "https://packages.typst.org/preview/zero-0.3.2.tar.gz"
+hash = "sha256-a0GmUjM3apJt5nUxufrbsELI0ECeLH30JKnANniQehI="
+typstDeps = []
+description = "Advanced scientific number formatting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/zero"
+
+[zero."0.3.1"]
+url = "https://packages.typst.org/preview/zero-0.3.1.tar.gz"
+hash = "sha256-dHjDnQh9LOPQZO9fnAQnEX2tDmz+7w4pwCuTZ47+mzU="
+typstDeps = []
+description = "Advanced scientific number formatting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/zero"
+
+[zero."0.3.0"]
+url = "https://packages.typst.org/preview/zero-0.3.0.tar.gz"
+hash = "sha256-sZxCkOhP3sUvIz3YY+frmTz6G5DTtC4VNVTn4h56RHE="
+typstDeps = []
+description = "Advanced scientific number formatting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/zero"
+
+[zero."0.2.0"]
+url = "https://packages.typst.org/preview/zero-0.2.0.tar.gz"
+hash = "sha256-zc8x/KH5g9woVMbIjCiaiQWxWQmhInsJJ1hvipNKeko="
+typstDeps = []
+description = "Advanced scientific number formatting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/zero"
+
+[zero."0.1.0"]
+url = "https://packages.typst.org/preview/zero-0.1.0.tar.gz"
+hash = "sha256-Y6I+7SbnfOG+IGgoa3Y2VMDOxy0lTcSVdO/QcY3OpgE="
+typstDeps = []
+description = "Advanced scientific number formatting"
+license = [
+ "MIT",
+]
+homepage = "https://github.com/Mc-Zen/zero"
+
+[zhconv."0.3.1"]
+url = "https://packages.typst.org/preview/zhconv-0.3.1.tar.gz"
+hash = "sha256-0TyTXVJ73tbTh/y2vGG1ORDwORMve0oQUhyBUO297Lg="
+typstDeps = []
+description = "Convert Chinese text between Traditional/Simplified and regional variants. 中文简繁及地區詞轉換"
+license = [
+ "GPL-2.0-only",
+]
+homepage = "https://github.com/Gowee/zhconv-rs"
+
+[zheyan."0.1.0"]
+url = "https://packages.typst.org/preview/zheyan-0.1.0.tar.gz"
+hash = "sha256-1dcC8ov8jVgOggZZcXinyqyv6e8Evp9XAF4ypQBLDVA="
+typstDeps = []
+description = "Util to mask string"
+license = [
+ "Unlicense",
+]
+homepage = "https://github.com/shylock-hg/mask"
diff --git a/pkgs/by-name/ty/typst/typst-packages.nix b/pkgs/by-name/ty/typst/typst-packages.nix
new file mode 100644
index 000000000000..5d5cb8cafbdf
--- /dev/null
+++ b/pkgs/by-name/ty/typst/typst-packages.nix
@@ -0,0 +1,52 @@
+{
+ lib,
+ callPackage,
+}:
+
+let
+ toPackageName = name: version: "${name}_${lib.replaceStrings [ "." ] [ "_" ] version}";
+in
+lib.makeExtensible (
+ final:
+ lib.recurseIntoAttrs (
+ lib.foldlAttrs (
+ packageSet: pname: versionSet:
+ packageSet
+ // (lib.foldlAttrs (
+ subPackageSet: version: packageSpec:
+ subPackageSet
+ // {
+ ${toPackageName pname version} = callPackage (
+ {
+ lib,
+ buildTypstPackage,
+ fetchzip,
+ }:
+ buildTypstPackage (finalAttrs: {
+ inherit pname version;
+
+ src = fetchzip {
+ inherit (packageSpec) hash;
+ url = "https://packages.typst.org/preview/${finalAttrs.pname}-${finalAttrs.version}.tar.gz";
+ stripRoot = false;
+ };
+
+ typstDeps = builtins.filter (x: x != null) (
+ lib.map (d: (lib.attrsets.attrByPath [ d ] null final)) packageSpec.typstDeps
+ );
+
+ meta = {
+ inherit (packageSpec) description;
+ maintainers = with lib.maintainers; [ cherrypiejam ];
+ license = lib.map (lib.flip lib.getAttr lib.licensesSpdx) packageSpec.license;
+ } // (if packageSpec ? "homepage" then { inherit (packageSpec) homepage; } else { });
+ })
+ ) { };
+ }
+ ) { } versionSet)
+ // {
+ ${pname} = final.${toPackageName pname (lib.last (lib.attrNames versionSet))};
+ }
+ ) { } (lib.importTOML ./typst-packages-from-universe.toml)
+ )
+)
diff --git a/pkgs/by-name/ty/typst/with-packages.nix b/pkgs/by-name/ty/typst/with-packages.nix
new file mode 100644
index 000000000000..b142a0cbbe99
--- /dev/null
+++ b/pkgs/by-name/ty/typst/with-packages.nix
@@ -0,0 +1,33 @@
+{
+ lib,
+ buildEnv,
+ typstPackages,
+ makeBinaryWrapper,
+ typst,
+}:
+
+lib.makeOverridable (
+ { ... }@typstPkgs:
+ f:
+ buildEnv {
+ name = "${typst.name}-env";
+
+ paths = lib.foldl' (acc: p: acc ++ lib.singleton p ++ p.propagatedBuildInputs) [ ] (f typstPkgs);
+
+ pathsToLink = [ "/lib/typst-packages" ];
+
+ nativeBuildInputs = [ makeBinaryWrapper ];
+
+ postBuild = ''
+ export TYPST_LIB_DIR="$out/lib/typst/packages"
+ mkdir -p $TYPST_LIB_DIR
+
+ mv $out/lib/typst-packages $TYPST_LIB_DIR/preview
+
+ cp -r ${typst}/share $out/share
+ mkdir -p $out/bin
+
+ makeWrapper "${lib.getExe typst}" "$out/bin/typst" --set TYPST_PACKAGE_CACHE_PATH $TYPST_LIB_DIR
+ '';
+ }
+) typstPackages
diff --git a/pkgs/by-name/ve/versatiles/package.nix b/pkgs/by-name/ve/versatiles/package.nix
index ec4f19b3da86..8489eba95d05 100644
--- a/pkgs/by-name/ve/versatiles/package.nix
+++ b/pkgs/by-name/ve/versatiles/package.nix
@@ -6,17 +6,17 @@
rustPlatform.buildRustPackage rec {
pname = "versatiles";
- version = "0.15.4"; # When updating: Replace with current version
+ version = "0.15.5"; # When updating: Replace with current version
src = fetchFromGitHub {
owner = "versatiles-org";
repo = "versatiles-rs";
tag = "v${version}"; # When updating: Replace with long commit hash of new version
- hash = "sha256-C9LTfRi6FRRg4yUIbs1DMtOtILTO/ItjWGnuKwUSHeU="; # When updating: Use `lib.fakeHash` for recomputing the hash once. Run: 'nix-build -A versatiles'. Swap with new hash and proceed.
+ hash = "sha256-j50KZBYNzO9YNq6Nu3hozBmR2+KHbpCZuowSWMZ4yk4="; # When updating: Use `lib.fakeHash` for recomputing the hash once. Run: 'nix-build -A versatiles'. Swap with new hash and proceed.
};
useFetchCargoVendor = true;
- cargoHash = "sha256-B9QCkAjyak2rX3waMG74KBbBVKn2veliMl7tAS41HQQ="; # When updating: Same as above
+ cargoHash = "sha256-SmN/E7vvf9aoopOyigiZJoYBp1mADter4gCwI/tsG0Q="; # When updating: Same as above
__darwinAllowLocalNetworking = true;
diff --git a/pkgs/by-name/vg/vgmstream/package.nix b/pkgs/by-name/vg/vgmstream/package.nix
index d322f6371f30..2e0e84274dcc 100644
--- a/pkgs/by-name/vg/vgmstream/package.nix
+++ b/pkgs/by-name/vg/vgmstream/package.nix
@@ -1,6 +1,7 @@
{
stdenv,
lib,
+ fetchzip,
fetchFromGitHub,
cmake,
pkg-config,
@@ -10,10 +11,8 @@
ffmpeg,
libvorbis,
libao,
- jansson,
speex,
nix-update-script,
- buildAudaciousPlugin ? false, # only build cli by default, pkgs.audacious-plugins sets this to enable plugin support
}:
stdenv.mkDerivation rec {
@@ -27,6 +26,24 @@ stdenv.mkDerivation rec {
hash = "sha256-TmaWC04XbtFfBYhmTO4ouh3NoByio1BCpDJGJy3r0NY=";
};
+ # https://github.com/vgmstream/vgmstream/blob/1b6a7915bf98ca14a71a0d44bef7a2c6a75c686d/cmake/dependencies/atrac9.cmake
+ atrac9-src = fetchFromGitHub {
+ owner = "Thealexbarney";
+ repo = "LibAtrac9";
+ rev = "6a9e00f6c7abd74d037fd210b6670d3cdb313049";
+ hash = "sha256-n47CzIbh8NxJ4GzKLjZQeS27k2lGx08trC1m4AOzVZc=";
+ };
+
+ # https://github.com/vgmstream/vgmstream/blob/1b6a7915bf98ca14a71a0d44bef7a2c6a75c686d/cmake/dependencies/celt.cmake
+ celt-0_6_1-src = fetchzip {
+ url = "https://downloads.xiph.org/releases/celt/celt-0.6.1.tar.gz";
+ hash = "sha256-DI1z10mTDQOn/R1FssaegmOa6ZNx3bXNiWHwLnytJWw=";
+ };
+ celt-0_11_0-src = fetchzip {
+ url = "https://downloads.xiph.org/releases/celt/celt-0.11.0.tar.gz";
+ hash = "sha256-JI3b44iCxQ29bqJGNH/L18pEuWiTFZ2132ceaqe8U0E=";
+ };
+
passthru.updateScript = nix-update-script {
attrPath = "vgmstream";
extraArgs = [
@@ -35,35 +52,56 @@ stdenv.mkDerivation rec {
];
};
+ outputs = [
+ "out"
+ "audacious"
+ ];
+
nativeBuildInputs = [
cmake
pkg-config
- ] ++ lib.optional buildAudaciousPlugin gtk3;
+ gtk3
+ ];
buildInputs = [
mpg123
ffmpeg
libvorbis
libao
- jansson
speex
- ] ++ lib.optional buildAudaciousPlugin audacious-bare;
+ audacious-bare
+ ];
- preConfigure = ''
- substituteInPlace cmake/dependencies/audacious.cmake \
- --replace "pkg_get_variable(AUDACIOUS_PLUGIN_DIR audacious plugin_dir)" "set(AUDACIOUS_PLUGIN_DIR \"$out/lib/audacious\")"
- '';
+ preConfigure =
+ ''
+ substituteInPlace cmake/dependencies/audacious.cmake \
+ --replace-fail "pkg_get_variable(AUDACIOUS_PLUGIN_DIR audacious plugin_dir)" "set(AUDACIOUS_PLUGIN_DIR \"$audacious/lib/audacious\")"
+ ''
+ +
+ # cmake/dependencies/celt.cmake uses configure_file to modify ${CELT_0110_PATH}/libcelt/ecintrin.h.
+ # Therefore, CELT_0110_PATH needs to point to a mutable directory.
+ ''
+ mkdir -p dependencies/celt-0.11.0/
+ cp -r ${celt-0_11_0-src}/* dependencies/celt-0.11.0/
+ chmod -R +w dependencies/celt-0.11.0/
+ '';
cmakeFlags = [
- # It always tries to download it, no option to use the system one
- "-DUSE_CELT=OFF"
- ] ++ lib.optional (!buildAudaciousPlugin) "-DBUILD_AUDACIOUS=OFF";
+ "-DATRAC9_PATH=${atrac9-src}"
+ "-DCELT_0061_PATH=${celt-0_6_1-src}"
+ "-DCELT_0110_PATH=../dependencies/celt-0.11.0"
+ # libg719_decode omitted because it doesn't have a free software license
+ ];
meta = with lib; {
description = "Library for playback of various streamed audio formats used in video games";
homepage = "https://vgmstream.org";
maintainers = with maintainers; [ zane ];
- license = with licenses; isc;
+ license = with licenses; [
+ isc # vgmstream itself
+ mit # atrac9
+ bsd2 # celt
+ ];
platforms = with platforms; unix;
};
}
diff --git a/pkgs/development/interpreters/wasmtime/default.nix b/pkgs/by-name/wa/wasmtime/package.nix
similarity index 89%
rename from pkgs/development/interpreters/wasmtime/default.nix
rename to pkgs/by-name/wa/wasmtime/package.nix
index a8d438430d62..d8a2e04ab4a1 100644
--- a/pkgs/development/interpreters/wasmtime/default.nix
+++ b/pkgs/by-name/wa/wasmtime/package.nix
@@ -1,14 +1,12 @@
{
lib,
- rustPlatform,
- cmake,
- fetchFromGitHub,
- Security,
stdenv,
+ rustPlatform,
+ fetchFromGitHub,
+ cmake,
+ versionCheckHook,
+ nix-update-script,
}:
-let
- inherit (stdenv.targetPlatform.rust) cargoShortTarget;
-in
rustPlatform.buildRustPackage (finalAttrs: {
pname = "wasmtime";
version = "31.0.0";
@@ -37,7 +35,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
"dev"
];
- buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security;
nativeBuildInputs = [ cmake ];
doCheck =
@@ -52,6 +49,9 @@ rustPlatform.buildRustPackage (finalAttrs: {
!isAarch64;
postInstall =
+ let
+ inherit (stdenv.targetPlatform.rust) cargoShortTarget;
+ in
''
# move libs from out to dev
install -d -m 0755 $dev/lib
@@ -74,6 +74,16 @@ rustPlatform.buildRustPackage (finalAttrs: {
$dev/lib/libwasmtime.dylib
'';
+ nativeInstallCheckInputs = [
+ versionCheckHook
+ ];
+ versionCheckProgramArg = "--version";
+ doInstallCheck = true;
+
+ passthru = {
+ updateScript = nix-update-script { };
+ };
+
meta = {
description = "Standalone JIT-style runtime for WebAssembly, using Cranelift";
homepage = "https://wasmtime.dev/";
diff --git a/pkgs/by-name/yu/yuhaiin/package.nix b/pkgs/by-name/yu/yuhaiin/package.nix
new file mode 100644
index 000000000000..f662cd6b9467
--- /dev/null
+++ b/pkgs/by-name/yu/yuhaiin/package.nix
@@ -0,0 +1,50 @@
+{
+ lib,
+ buildGoModule,
+ fetchFromGitHub,
+ versionCheckHook,
+}:
+
+buildGoModule rec {
+ pname = "yuhaiin";
+ version = "0.3.8";
+
+ src = fetchFromGitHub {
+ owner = "yuhaiin";
+ repo = "yuhaiin";
+ tag = "v${version}";
+ hash = "sha256-9vrq2qKbBLObANzVWrP73BuhQdY0JSEdPci420lj3Fg=";
+ };
+
+ vendorHash = "sha256-FSm/oG0XkTqx93DrtVKoJAmIlkHNXEG20IanXuMxBgw=";
+
+ subPackages = [ "cmd/yuhaiin" ];
+
+ ldflags =
+ let
+ # https://github.com/yuhaiin/yuhaiin/blob/dbbcd93c3dce141a3323e03043d5d0eabe7252d1/makefile#L1
+ module = "github.com/Asutorufa/yuhaiin/internal";
+ in
+ [
+ "-s"
+ "-w"
+ "-X ${module}/version.Version=v${version}"
+ "-X ${module}/version.GitCommit=${src.rev}"
+ "-X ${module}/version.BuildDate=unknown"
+ ];
+
+ nativeCheckInputs = [
+ versionCheckHook
+ ];
+
+ versionCheckProgramArg = [ "--version" ];
+
+ meta = {
+ description = "Proxy kit for Linux/Windows/MacOS";
+ homepage = "https://github.com/yuhaiin/yuhaiin";
+ changelog = "https://github.com/yuhaiin/yuhaiin/releases/tag/v${version}";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ oluceps ];
+ mainProgram = "yuhaiin";
+ };
+}
diff --git a/pkgs/by-name/za/zashboard/package.nix b/pkgs/by-name/za/zashboard/package.nix
new file mode 100644
index 000000000000..55fc5b4c88b7
--- /dev/null
+++ b/pkgs/by-name/za/zashboard/package.nix
@@ -0,0 +1,57 @@
+{
+ lib,
+ stdenv,
+ fetchFromGitHub,
+ pnpm_9,
+ nodejs,
+ nix-update-script,
+}:
+
+stdenv.mkDerivation (finalAttrs: {
+ pname = "zashboard";
+ version = "1.77.0";
+
+ src = fetchFromGitHub {
+ owner = "Zephyruso";
+ repo = "zashboard";
+ tag = "v${finalAttrs.version}";
+ hash = "sha256-cjl8yrmx0mpaHRs3uNV6oqpi5/aO4LNsvIv+IPlQEjE=";
+ };
+
+ nativeBuildInputs = [
+ pnpm_9.configHook
+ nodejs
+ ];
+
+ pnpmDeps = pnpm_9.fetchDeps {
+ inherit (finalAttrs) pname version src;
+ hash = "sha256-7mptT9cPhxz1VMtAtU2Na99xLtAoGcUHC0ca87Dv5Ng=";
+ };
+
+ buildPhase = ''
+ runHook preBuild
+
+ pnpm run build
+
+ runHook postBuild
+ '';
+
+ installPhase = ''
+ runHook preInstall
+
+ cp -r dist $out
+
+ runHook postInstall
+ '';
+
+ passthru.updateScript = nix-update-script { };
+
+ meta = {
+ description = "Dashboard Using Clash API";
+ homepage = "https://github.com/Zephyruso/zashboard";
+ changelog = "https://github.com/Zephyruso/zashboard/releases/tag/v${finalAttrs.version}";
+ license = lib.licenses.mit;
+ platforms = lib.platforms.all;
+ maintainers = with lib.maintainers; [ emaryn ];
+ };
+})
diff --git a/pkgs/development/libraries/boost/1.88.nix b/pkgs/development/libraries/boost/1.88.nix
new file mode 100644
index 000000000000..d261ba812166
--- /dev/null
+++ b/pkgs/development/libraries/boost/1.88.nix
@@ -0,0 +1,19 @@
+{ callPackage, fetchurl, ... }@args:
+
+callPackage ./generic.nix (
+ args
+ // rec {
+ version = "1.88.0";
+
+ src = fetchurl {
+ urls = [
+ "mirror://sourceforge/boost/boost_${builtins.replaceStrings [ "." ] [ "_" ] version}.tar.bz2"
+ "https://boostorg.jfrog.io/artifactory/main/release/${version}/source/boost_${
+ builtins.replaceStrings [ "." ] [ "_" ] version
+ }.tar.bz2"
+ ];
+ # SHA256 from http://www.boost.org/users/history/version_1_88_0.html
+ sha256 = "46d9d2c06637b219270877c9e16155cbd015b6dc84349af064c088e9b5b12f7b";
+ };
+ }
+)
diff --git a/pkgs/development/libraries/boost/default.nix b/pkgs/development/libraries/boost/default.nix
index 6df574055e92..02fa12706ccf 100644
--- a/pkgs/development/libraries/boost/default.nix
+++ b/pkgs/development/libraries/boost/default.nix
@@ -29,4 +29,5 @@ in
boost183 = makeBoost ./1.83.nix;
boost186 = makeBoost ./1.86.nix;
boost187 = makeBoost ./1.87.nix;
+ boost188 = makeBoost ./1.88.nix;
}
diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix
index 90d651b81a3d..9167e7b08c61 100644
--- a/pkgs/development/libraries/boost/generic.nix
+++ b/pkgs/development/libraries/boost/generic.nix
@@ -165,8 +165,10 @@ stdenv.mkDerivation {
patches =
patches
- ++ lib.optional stdenv.hostPlatform.isDarwin ./darwin-no-system-python.patch
- ++ [ ./cmake-paths-173.patch ]
+ ++ lib.optional (
+ lib.versionOlder version "1.88" && stdenv.hostPlatform.isDarwin
+ ) ./darwin-no-system-python.patch
+ ++ lib.optional (lib.versionOlder version "1.88") ./cmake-paths-173.patch
++ lib.optional (version == "1.77.0") (fetchpatch {
url = "https://github.com/boostorg/math/commit/7d482f6ebc356e6ec455ccb5f51a23971bf6ce5b.patch";
relative = "include";
@@ -209,7 +211,10 @@ stdenv.mkDerivation {
extraPrefix = "libs/python/";
})
]
- ++ lib.optional (lib.versionAtLeast version "1.81" && stdenv.cc.isClang) ./fix-clang-target.patch
+
+ ++ lib.optional (
+ lib.versionAtLeast version "1.81" && lib.versionOlder version "1.88" && stdenv.cc.isClang
+ ) ./fix-clang-target.patch
++ lib.optional (lib.versionAtLeast version "1.86" && lib.versionOlder version "1.87") [
# Backport fix for NumPy 2 support.
(fetchpatch {
@@ -220,7 +225,7 @@ stdenv.mkDerivation {
hash = "sha256-0IHK55JSujYcwEVOuLkwOa/iPEkdAKQlwVWR42p/X2U=";
})
]
- ++ lib.optional (lib.versionAtLeast version "1.87") [
+ ++ lib.optional (version == "1.87.0") [
# Fix operator<< for shared_ptr and intrusive_ptr
# https://github.com/boostorg/smart_ptr/issues/115
(fetchpatch {
@@ -298,7 +303,7 @@ stdenv.mkDerivation {
# Fix compilation to 32-bit ARM with clang in downstream packages
# https://github.com/ned14/outcome/pull/308
# https://github.com/boostorg/json/pull/1064
- postPatch = lib.optionalString (lib.versionAtLeast version "1.87") ''
+ postPatch = lib.optionalString (version == "1.87.0") ''
substituteInPlace \
boost/outcome/outcome_gdb.h \
boost/outcome/experimental/status-code/status_code.hpp \
diff --git a/pkgs/development/python-modules/aider-chat/default.nix b/pkgs/development/python-modules/aider-chat/default.nix
index 3b3428e8f0b6..1abfa03560e1 100644
--- a/pkgs/development/python-modules/aider-chat/default.nix
+++ b/pkgs/development/python-modules/aider-chat/default.nix
@@ -124,7 +124,7 @@ let
];
};
- version = "0.82.0";
+ version = "0.82.1";
aider-chat = buildPythonPackage {
pname = "aider-chat";
inherit version;
@@ -137,7 +137,7 @@ let
owner = "Aider-AI";
repo = "aider";
tag = "v${version}";
- hash = "sha256-UlPYUYAYDhPPgoIvEWRLYjCe3iQ2ltH5mT3GkX+IrGI=";
+ hash = "sha256-J9znZfPcg1cLINFOCSQ6mpr/slL/jQXqenyi3a++VVE=";
};
pythonRelaxDeps = true;
diff --git a/pkgs/development/python-modules/databricks-sdk/default.nix b/pkgs/development/python-modules/databricks-sdk/default.nix
index 4e0be21e348e..f521c359f300 100644
--- a/pkgs/development/python-modules/databricks-sdk/default.nix
+++ b/pkgs/development/python-modules/databricks-sdk/default.nix
@@ -21,14 +21,14 @@
buildPythonPackage rec {
pname = "databricks-sdk";
- version = "0.49.0";
+ version = "0.50.0";
pyproject = true;
src = fetchFromGitHub {
owner = "databricks";
repo = "databricks-sdk-py";
tag = "v${version}";
- hash = "sha256-lNP3ETmRK6sRx9mP2JuIe/OcBbCDEvipST2LUjycgjs=";
+ hash = "sha256-taC95lKQdGzygWAi7w1eKy2yDeX6V6YsGROHHstBTfo=";
};
build-system = [
diff --git a/pkgs/development/python-modules/minari/default.nix b/pkgs/development/python-modules/minari/default.nix
index ff929ad47ded..a3236605d711 100644
--- a/pkgs/development/python-modules/minari/default.nix
+++ b/pkgs/development/python-modules/minari/default.nix
@@ -22,6 +22,7 @@
huggingface-hub,
mktestdocs,
pytest,
+ scikit-image,
# tests
jaxlib,
@@ -30,14 +31,14 @@
buildPythonPackage rec {
pname = "minari";
- version = "0.5.2";
+ version = "0.5.3";
pyproject = true;
src = fetchFromGitHub {
owner = "Farama-Foundation";
repo = "Minari";
tag = "v${version}";
- hash = "sha256-7iIM1WGQRmhUh8idP/vtLnAbBncK6ezMyTvSAKW/9FE=";
+ hash = "sha256-LvJwp2dZdGPazJPWQtrk+v7zaPjOlomBu5j9avVdCcA=";
};
build-system = [
@@ -69,6 +70,7 @@ buildPythonPackage rec {
# gymnasium-robotics
mktestdocs
pytest
+ scikit-image
];
};
diff --git a/pkgs/development/python-modules/pyngrok/default.nix b/pkgs/development/python-modules/pyngrok/default.nix
index 88435a6b345c..5cd5aec33986 100644
--- a/pkgs/development/python-modules/pyngrok/default.nix
+++ b/pkgs/development/python-modules/pyngrok/default.nix
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "pyngrok";
- version = "7.2.3";
+ version = "7.2.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
- hash = "sha256-zjPIo7Lubn9yftHJm12slHb/4ZBeq2uKpQapy+XXHU4=";
+ hash = "sha256-67LsgBVc5+AOv5JHv9mjZ75xSFezUO180iZ7NADuXS0=";
};
build-system = [
diff --git a/pkgs/development/python-modules/pythonqwt/default.nix b/pkgs/development/python-modules/pythonqwt/default.nix
index 383770912432..992d667b32bb 100644
--- a/pkgs/development/python-modules/pythonqwt/default.nix
+++ b/pkgs/development/python-modules/pythonqwt/default.nix
@@ -18,14 +18,14 @@
buildPythonPackage rec {
pname = "pythonqwt";
- version = "0.14.4";
+ version = "0.14.5";
pyproject = true;
src = fetchFromGitHub {
owner = "PlotPyStack";
repo = "PythonQwt";
tag = "v${version}";
- hash = "sha256-ZlrnCsC/is4PPUbzaMfwWSHQSQ06ksb2b/dkU8VhtSU=";
+ hash = "sha256-VNeW5LOL/CM/RUrC5TUj6FnVlhmXaPRYjGPz8b01Tew=";
};
build-system = [
diff --git a/pkgs/development/python-modules/sentence-transformers/default.nix b/pkgs/development/python-modules/sentence-transformers/default.nix
index ba23a52041b3..eee47d3f3969 100644
--- a/pkgs/development/python-modules/sentence-transformers/default.nix
+++ b/pkgs/development/python-modules/sentence-transformers/default.nix
@@ -26,14 +26,14 @@
buildPythonPackage rec {
pname = "sentence-transformers";
- version = "4.0.2";
+ version = "4.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "UKPLab";
repo = "sentence-transformers";
tag = "v${version}";
- hash = "sha256-sBTepBXSFyDX1zUu/iAj6PamCWhV8fjRbaFN7fBmOao=";
+ hash = "sha256-9Mg3+7Yxf195h4cUNLP/Z1PrauxanHJfS8OV2JIwRj4=";
};
build-system = [ setuptools ];
diff --git a/pkgs/development/python-modules/sixel/default.nix b/pkgs/development/python-modules/sixel/default.nix
new file mode 100644
index 000000000000..fe114a76ad77
--- /dev/null
+++ b/pkgs/development/python-modules/sixel/default.nix
@@ -0,0 +1,40 @@
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ hatchling,
+ pillow,
+}:
+
+buildPythonPackage rec {
+ pname = "python-sixel";
+ version = "0.2.0";
+ pyproject = true;
+
+ src = fetchFromGitHub {
+ owner = "lubosz";
+ repo = "python-sixel";
+ tag = version;
+ hash = "sha256-ALNdwuZIMS2oWO42LpjgIpAxcQh4Gk35nCwenINLQ64=";
+ };
+
+ build-system = [
+ hatchling
+ ];
+
+ dependencies = [
+ pillow
+ ];
+
+ pythonImportsCheck = [
+ "sixel"
+ ];
+
+ meta = {
+ description = "Display images in the terminal";
+ homepage = "https://github.com/lubosz/python-sixel";
+ changelog = "https://github.com/lubosz/python-sixel/releases/tag/${version}";
+ license = lib.licenses.gpl3Only;
+ maintainers = with lib.maintainers; [ atemu ];
+ };
+}
diff --git a/pkgs/development/tools/infisical/default.nix b/pkgs/development/tools/infisical/default.nix
index 75d9dc6f5449..ba617677602d 100644
--- a/pkgs/development/tools/infisical/default.nix
+++ b/pkgs/development/tools/infisical/default.nix
@@ -21,7 +21,7 @@ let
buildHashes = builtins.fromJSON (builtins.readFile ./hashes.json);
# the version of infisical
- version = "0.36.23";
+ version = "0.40.0";
# the platform-specific, statically linked binary
src =
diff --git a/pkgs/development/tools/infisical/hashes.json b/pkgs/development/tools/infisical/hashes.json
index 619cbae8448c..c34990253515 100644
--- a/pkgs/development/tools/infisical/hashes.json
+++ b/pkgs/development/tools/infisical/hashes.json
@@ -1,6 +1,6 @@
{ "_comment": "@generated by pkgs/development/tools/infisical/update.sh"
-, "x86_64-linux": "sha256-lUnvumfma4gBxbOzKBdjdSMRvCjgzzdRdisIB0c+U30="
-, "x86_64-darwin": "sha256-wN8IWlbhMVMYj9jxtqOZksjinPCHrrAFjIV24cv5vNw="
-, "aarch64-linux": "sha256-NPBgtEJ8pzxHG0D21EE0ngZAxbETAfJpmIoWp2BokPw="
-, "aarch64-darwin": "sha256-wlfz6LOn2Ri5m1ID8kXnlFN/zzNgDpC4zUgiWziUUC0="
+, "x86_64-linux": "sha256-c+QmBp8He5R0DnFLONMAs7+s4YeHZQrv4dyPoQEH7m0="
+, "x86_64-darwin": "sha256-zpciZC97WTT9Ze9qmJI6QacHgHQgH0vEPqiY31cOE/k="
+, "aarch64-linux": "sha256-SyAgYJ2EB5G+IbDp43q+nruWDwr7JlQcStiJjqy25XQ="
+, "aarch64-darwin": "sha256-GI0r8XMzsKp+AZrad4VRAXOyCFcIwHnaWabzKlK1OCI="
}
diff --git a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix
index 552e70a547b5..69749e01b9c2 100644
--- a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix
+++ b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix
@@ -14,12 +14,12 @@ let
# kernel config in the xanmod version commit
variants = {
lts = {
- version = "6.12.21";
- hash = "sha256-Zb/n+hLho94+6u5BHAmRYfit/kv1xlh/Tp39kI3kfjA=";
+ version = "6.12.23";
+ hash = "sha256-OBsKzXcFLwqidotHDmPwKFtBX9zRC7DoDR4hhWZUv/E=";
};
main = {
- version = "6.13.9";
- hash = "sha256-JRmyvlvU8NOQ4aLdZ2BmQWUnl1RGjcjucaWN4zVxQpg=";
+ version = "6.13.11";
+ hash = "sha256-hv93f1poaCmjdy2G39+T2crnYMS26FxD2Dn2hmTGZB8=";
};
};
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 06cdc19c08c2..ad0d4e1287b2 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -4046,8 +4046,6 @@ with pkgs;
kronometer = libsForQt5.callPackage ../tools/misc/kronometer { };
- kdiff3 = libsForQt5.callPackage ../tools/text/kdiff3 { };
-
kwalletcli = libsForQt5.callPackage ../tools/security/kwalletcli { };
peruse = libsForQt5.callPackage ../tools/misc/peruse { };
@@ -9025,6 +9023,7 @@ with pkgs;
boost183
boost186
boost187
+ boost188
;
boost = boost187;
@@ -16415,6 +16414,10 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
+ buildTypstPackage = callPackage ../build-support/build-typst-package.nix { };
+
+ typstPackages = typst.packages;
+
ueberzug = with python3Packages; toPythonApplication ueberzug;
ueberzugpp = callPackage ../by-name/ue/ueberzugpp/package.nix {
@@ -19423,10 +19426,6 @@ with pkgs;
nanoizeNewlib = true;
};
- wasmtime = callPackage ../development/interpreters/wasmtime {
- inherit (darwin.apple_sdk.frameworks) Security;
- };
-
wfuzz = with python3Packages; toPythonApplication wfuzz;
kodelife = callPackage ../applications/graphics/kodelife {
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index c308f9947f8d..4469a03452cb 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -15822,6 +15822,8 @@ self: super: with self; {
six = callPackage ../development/python-modules/six { };
+ sixel = callPackage ../development/python-modules/sixel { };
+
sjcl = callPackage ../development/python-modules/sjcl { };
skein = callPackage ../development/python-modules/skein { };