lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
a13bf182 ce79b669

+2715 -2188
+1 -1
.github/CODEOWNERS
··· 110 111 # Rust 112 /pkgs/development/compilers/rust @Mic92 @LnL7 @zowoq 113 - /pkgs/build-support/rust @andir @danieldk @zowoq 114 115 # Darwin-related 116 /pkgs/stdenv/darwin @NixOS/darwin-maintainers
··· 110 111 # Rust 112 /pkgs/development/compilers/rust @Mic92 @LnL7 @zowoq 113 + /pkgs/build-support/rust @andir @zowoq 114 115 # Darwin-related 116 /pkgs/stdenv/darwin @NixOS/darwin-maintainers
+7
nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
··· 1182 other and share data. 1183 </para> 1184 </listitem> 1185 </itemizedlist> 1186 </section> 1187 </section>
··· 1182 other and share data. 1183 </para> 1184 </listitem> 1185 + <listitem> 1186 + <para> 1187 + <literal>lua</literal> and <literal>luajit</literal> 1188 + interpreters have been patched to avoid looking into /usr/lib 1189 + directories, thus increasing the purity of the build. 1190 + </para> 1191 + </listitem> 1192 </itemizedlist> 1193 </section> 1194 </section>
+3
nixos/doc/manual/release-notes/rl-2111.section.md
··· 335 - `rofi` has been updated from '1.6.1' to '1.7.0', one important thing is the removal of the old xresources based configuration setup. Read more [in rofi's changelog](https://github.com/davatorium/rofi/blob/cb12e6fc058f4a0f4f/Changelog#L1). 336 337 - ipfs now defaults to not listening on you local network. This setting was change as server providers won't accept port scanning on their private network. If you have several ipfs instances running on a network you own, feel free to change the setting `ipfs.localDiscovery = true;`. localDiscovery enables different instances to discover each other and share data.
··· 335 - `rofi` has been updated from '1.6.1' to '1.7.0', one important thing is the removal of the old xresources based configuration setup. Read more [in rofi's changelog](https://github.com/davatorium/rofi/blob/cb12e6fc058f4a0f4f/Changelog#L1). 336 337 - ipfs now defaults to not listening on you local network. This setting was change as server providers won't accept port scanning on their private network. If you have several ipfs instances running on a network you own, feel free to change the setting `ipfs.localDiscovery = true;`. localDiscovery enables different instances to discover each other and share data. 338 + 339 + - `lua` and `luajit` interpreters have been patched to avoid looking into /usr/lib 340 + directories, thus increasing the purity of the build.
+8 -19
nixos/modules/services/amqp/rabbitmq.nix
··· 135 description = "The list of directories containing external plugins"; 136 }; 137 138 - managementPlugin = mkOption { 139 - description = "The options to run the management plugin"; 140 - type = types.submodule { 141 - options = { 142 - enable = mkOption { 143 - default = false; 144 - type = types.bool; 145 - description = '' 146 - Whether to enable the management plugin 147 - ''; 148 - }; 149 - port = mkOption { 150 - default = 15672; 151 - type = types.port; 152 - description = '' 153 - On which port to run the management plugin 154 - ''; 155 - }; 156 - }; 157 }; 158 }; 159 };
··· 135 description = "The list of directories containing external plugins"; 136 }; 137 138 + managementPlugin = { 139 + enable = mkEnableOption "the management plugin"; 140 + port = mkOption { 141 + default = 15672; 142 + type = types.port; 143 + description = '' 144 + On which port to run the management plugin 145 + ''; 146 }; 147 }; 148 };
+4
nixos/modules/services/logging/promtail.nix
··· 7 ''; 8 9 allowSystemdJournal = cfg.configuration ? scrape_configs && lib.any (v: v ? journal) cfg.configuration.scrape_configs; 10 in { 11 options.services.promtail = with types; { 12 enable = mkEnableOption "the Promtail ingresser"; ··· 53 RestrictSUIDSGID = true; 54 PrivateMounts = true; 55 CacheDirectory = "promtail"; 56 57 User = "promtail"; 58 Group = "promtail";
··· 7 ''; 8 9 allowSystemdJournal = cfg.configuration ? scrape_configs && lib.any (v: v ? journal) cfg.configuration.scrape_configs; 10 + 11 + allowPositionsFile = !lib.hasPrefix "/var/cache/promtail" positionsFile; 12 + positionsFile = cfg.configuration.positions.filename; 13 in { 14 options.services.promtail = with types; { 15 enable = mkEnableOption "the Promtail ingresser"; ··· 56 RestrictSUIDSGID = true; 57 PrivateMounts = true; 58 CacheDirectory = "promtail"; 59 + ReadWritePaths = lib.optional allowPositionsFile (builtins.dirOf positionsFile); 60 61 User = "promtail"; 62 Group = "promtail";
+1 -1
nixos/tests/handbrake.nix
··· 9 name = "handbrake"; 10 11 meta = { 12 - maintainers = with pkgs.lib.maintainers; [ danieldk ]; 13 }; 14 15 machine = { pkgs, ... }: {
··· 9 name = "handbrake"; 10 11 meta = { 12 + maintainers = with pkgs.lib.maintainers; [ ]; 13 }; 14 15 machine = { pkgs, ... }: {
+9 -1
pkgs/applications/editors/neovim/tests.nix
··· 84 viAlias = true; 85 }; 86 87 # nixpkgs should detect that no wrapping is necessary 88 nvimShouldntWrap = wrapNeovim2 "-should-not-wrap" nvimAutoDisableWrap; 89 ··· 133 configure.pathogen.pluginNames = [ "vim-nix" ]; 134 }; 135 136 - nvimWithLuaPackages = wrapNeovim2 "with-lua-packages" (makeNeovimConfig { 137 extraLuaPackages = ps: [ps.mpack]; 138 customRC = '' 139 lua require("mpack") ··· 141 }); 142 143 nvim_with_lua_packages = runTest nvimWithLuaPackages '' 144 ${nvimWithLuaPackages}/bin/nvim -i NONE --noplugin -es 145 ''; 146 })
··· 84 viAlias = true; 85 }; 86 87 + nvim_with_plug = neovim.override { 88 + extraName = "-with-plug"; 89 + configure.plug.plugins = with pkgs.vimPlugins; [ 90 + vim-go 91 + ]; 92 + }; 93 + 94 # nixpkgs should detect that no wrapping is necessary 95 nvimShouldntWrap = wrapNeovim2 "-should-not-wrap" nvimAutoDisableWrap; 96 ··· 140 configure.pathogen.pluginNames = [ "vim-nix" ]; 141 }; 142 143 + nvimWithLuaPackages = wrapNeovim2 "-with-lua-packages" (makeNeovimConfig { 144 extraLuaPackages = ps: [ps.mpack]; 145 customRC = '' 146 lua require("mpack") ··· 148 }); 149 150 nvim_with_lua_packages = runTest nvimWithLuaPackages '' 151 + export HOME=$TMPDIR 152 ${nvimWithLuaPackages}/bin/nvim -i NONE --noplugin -es 153 ''; 154 })
+3 -4
pkgs/applications/editors/neovim/utils.nix
··· 78 ++ (extraPython3Packages ps) 79 ++ (lib.concatMap (f: f ps) pluginPython3Packages)); 80 81 - lua = neovim-unwrapped.lua; 82 - luaEnv = lua.withPackages(ps: extraLuaPackages ps); 83 84 # Mapping a boolean argument to a key that tells us whether to add or not to 85 # add to nvim's 'embedded rc' this: ··· 115 ] ++ lib.optionals (binPath != "") [ 116 "--suffix" "PATH" ":" binPath 117 ] ++ lib.optionals (luaEnv != null) [ 118 - "--prefix" "LUA_PATH" ";" "${luaEnv}/share/lua/${lua.luaversion}/?.lua" 119 - "--prefix" "LUA_CPATH" ";" "${luaEnv}/lib/lua/${lua.luaversion}/?.so" 120 ]; 121 122
··· 78 ++ (extraPython3Packages ps) 79 ++ (lib.concatMap (f: f ps) pluginPython3Packages)); 80 81 + luaEnv = neovim-unwrapped.lua.withPackages(extraLuaPackages); 82 83 # Mapping a boolean argument to a key that tells us whether to add or not to 84 # add to nvim's 'embedded rc' this: ··· 114 ] ++ lib.optionals (binPath != "") [ 115 "--suffix" "PATH" ":" binPath 116 ] ++ lib.optionals (luaEnv != null) [ 117 + "--prefix" "LUA_PATH" ";" (neovim-unwrapped.lua.pkgs.lib.genLuaPathAbsStr luaEnv) 118 + "--prefix" "LUA_CPATH" ";" (neovim-unwrapped.lua.pkgs.lib.genLuaCPathAbsStr luaEnv) 119 ]; 120 121
+1 -1
pkgs/applications/editors/vim/vimacs.nix
··· 11 12 buildCommand = '' 13 mkdir -p "$out"/bin 14 - cp "${vimPlugins.vimacs}"/share/vim-plugins/vimacs/bin/vim $out/bin/vimacs 15 substituteInPlace "$out"/bin/vimacs \ 16 --replace '-vim}' '-@bin@/bin/vim}' \ 17 --replace '-gvim}' '-@bin@/bin/vim -g}' \
··· 11 12 buildCommand = '' 13 mkdir -p "$out"/bin 14 + cp "${vimPlugins.vimacs}"/bin/vim $out/bin/vimacs 15 substituteInPlace "$out"/bin/vimacs \ 16 --replace '-vim}' '-@bin@/bin/vim}' \ 17 --replace '-gvim}' '-@bin@/bin/vim -g}' \
+7 -8
pkgs/applications/editors/vis/default.nix
··· 1 { lib, stdenv, fetchFromGitHub, pkg-config, makeWrapper, makeDesktopItem 2 - , ncurses, libtermkey, lpeg, lua 3 , acl ? null, libselinux ? null 4 }: 5 6 stdenv.mkDerivation rec { 7 pname = "vis"; 8 version = "0.7"; ··· 19 buildInputs = [ 20 ncurses 21 libtermkey 22 - lua 23 - lpeg 24 ] ++ lib.optionals stdenv.isLinux [ 25 acl 26 libselinux ··· 30 patchShebangs ./configure 31 ''; 32 33 - LUA_CPATH="${lpeg}/lib/lua/${lua.luaversion}/?.so;"; 34 - LUA_PATH="${lpeg}/share/lua/${lua.luaversion}/?.lua"; 35 - 36 postInstall = '' 37 mkdir -p "$out/share/applications" 38 cp $desktopItem/share/applications/* $out/share/applications 39 echo wrapping $out/bin/vis with runtime environment 40 wrapProgram $out/bin/vis \ 41 - --prefix LUA_CPATH ';' "${lpeg}/lib/lua/${lua.luaversion}/?.so" \ 42 - --prefix LUA_PATH ';' "${lpeg}/share/lua/${lua.luaversion}/?.lua" \ 43 --prefix VIS_PATH : "\$HOME/.config:$out/share/vis" 44 ''; 45
··· 1 { lib, stdenv, fetchFromGitHub, pkg-config, makeWrapper, makeDesktopItem 2 + , ncurses, libtermkey, lua 3 , acl ? null, libselinux ? null 4 }: 5 6 + let 7 + luaEnv = lua.withPackages(ps: [ ps.lpeg ]); 8 + in 9 stdenv.mkDerivation rec { 10 pname = "vis"; 11 version = "0.7"; ··· 22 buildInputs = [ 23 ncurses 24 libtermkey 25 + luaEnv 26 ] ++ lib.optionals stdenv.isLinux [ 27 acl 28 libselinux ··· 32 patchShebangs ./configure 33 ''; 34 35 postInstall = '' 36 mkdir -p "$out/share/applications" 37 cp $desktopItem/share/applications/* $out/share/applications 38 echo wrapping $out/bin/vis with runtime environment 39 wrapProgram $out/bin/vis \ 40 + --prefix LUA_CPATH ';' "${luaEnv}/lib/lua/${lua.luaversion}/?.so" \ 41 + --prefix LUA_PATH ';' "${luaEnv}/share/lua/${lua.luaversion}/?.lua" \ 42 --prefix VIS_PATH : "\$HOME/.config:$out/share/vis" 43 ''; 44
+2 -2
pkgs/applications/misc/notejot/default.nix
··· 18 19 stdenv.mkDerivation rec { 20 pname = "notejot"; 21 - version = "3.1.2"; 22 23 src = fetchFromGitHub { 24 owner = "lainsce"; 25 repo = pname; 26 rev = version; 27 - hash = "sha256-Exg9HxV3cxySuT8ifVyZgoATQ/FAC8umj3smJ7W/5/Y="; 28 }; 29 30 nativeBuildInputs = [
··· 18 19 stdenv.mkDerivation rec { 20 pname = "notejot"; 21 + version = "3.1.5"; 22 23 src = fetchFromGitHub { 24 owner = "lainsce"; 25 repo = pname; 26 rev = version; 27 + hash = "sha256-wsHQvN+sqAMs1QldiRoc9JlF4d54JFqNkqC+lyuHC7M="; 28 }; 29 30 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/obsidian/default.nix
··· 31 32 in stdenv.mkDerivation rec { 33 pname = "obsidian"; 34 - version = "0.12.12"; 35 36 src = fetchurl { 37 url = "https://github.com/obsidianmd/obsidian-releases/releases/download/v${version}/obsidian-${version}.tar.gz"; 38 - sha256 = "sha256-zvWJvMmb0TlFYXrT2QUgMG6uleT42+y+F4bSZQ2ftnE="; 39 }; 40 41 nativeBuildInputs = [ makeWrapper graphicsmagick ];
··· 31 32 in stdenv.mkDerivation rec { 33 pname = "obsidian"; 34 + version = "0.12.15"; 35 36 src = fetchurl { 37 url = "https://github.com/obsidianmd/obsidian-releases/releases/download/v${version}/obsidian-${version}.tar.gz"; 38 + sha256 = "sha256-0pAwTkx89B6S0GPes2XXSRNdByIc+DwiI5HXoUqs/QE="; 39 }; 40 41 nativeBuildInputs = [ makeWrapper graphicsmagick ];
+18 -11
pkgs/applications/misc/taskopen/default.nix
··· 1 - { fetchurl, lib, stdenv, makeWrapper, which, perl, perlPackages }: 2 3 - stdenv.mkDerivation { 4 - name = "taskopen-1.1.5"; 5 - src = fetchurl { 6 - url = "https://github.com/ValiValpas/taskopen/archive/v1.1.5.tar.gz"; 7 - sha256 = "sha256-7fncdt1wCJ4zNLrCf93yRFD8Q4XQ3DCJ1+zJg9Gcl3w="; 8 }; 9 10 - nativeBuildInputs = [ makeWrapper ]; 11 - buildInputs = [ which perl ] ++ (with perlPackages; [ JSON ]); 12 - 13 - installPhase = '' 14 # We don't need a DESTDIR and an empty string results in an absolute path 15 # (due to the trailing slash) which breaks the build. 16 sed 's|$(DESTDIR)/||' -i Makefile 17 18 make PREFIX=$out 19 make PREFIX=$out install 20 ''; ··· 28 description = "Script for taking notes and open urls with taskwarrior"; 29 homepage = "https://github.com/ValiValpas/taskopen"; 30 platforms = platforms.linux; 31 - license = lib.licenses.free ; 32 maintainers = [ maintainers.winpat ]; 33 }; 34 }
··· 1 + { lib, stdenv, fetchFromGitHub, makeWrapper, which, perl, perlPackages }: 2 3 + stdenv.mkDerivation rec { 4 + pname = "taskopen"; 5 + version = "1.1.5"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "ValiValpas"; 9 + repo = "taskopen"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-/xf7Ph2KKiZ5lgLKk95nCgw/z9wIBmuWf3QGaNebgHg="; 12 }; 13 14 + postPatch = '' 15 # We don't need a DESTDIR and an empty string results in an absolute path 16 # (due to the trailing slash) which breaks the build. 17 sed 's|$(DESTDIR)/||' -i Makefile 18 + ''; 19 20 + nativeBuildInputs = [ makeWrapper ]; 21 + buildInputs = [ which ] 22 + ++ (with perlPackages; [ JSON perl ]); 23 + 24 + installPhase = '' 25 make PREFIX=$out 26 make PREFIX=$out install 27 ''; ··· 35 description = "Script for taking notes and open urls with taskwarrior"; 36 homepage = "https://github.com/ValiValpas/taskopen"; 37 platforms = platforms.linux; 38 + license = licenses.free; 39 maintainers = [ maintainers.winpat ]; 40 }; 41 }
+2 -2
pkgs/applications/networking/cloudflared/default.nix
··· 2 3 buildGoModule rec { 4 pname = "cloudflared"; 5 - version = "2021.8.6"; 6 7 src = fetchFromGitHub { 8 owner = "cloudflare"; 9 repo = "cloudflared"; 10 rev = version; 11 - sha256 = "sha256-dMZu4IRdchPeoYylz1XDZeJsAW+V8HZApNndpeu+RbA="; 12 }; 13 14 vendorSha256 = null;
··· 2 3 buildGoModule rec { 4 pname = "cloudflared"; 5 + version = "2021.8.7"; 6 7 src = fetchFromGitHub { 8 owner = "cloudflare"; 9 repo = "cloudflared"; 10 rev = version; 11 + sha256 = "sha256-Q8Xjo60lR1x7Y9/jcxXX32IxVVlHmkr4ekIwWTgdwps="; 12 }; 13 14 vendorSha256 = null;
+22
pkgs/applications/networking/cluster/hubble/default.nix
···
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "hubble"; 5 + version = "0.8.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "cilium"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "1n1930hlaflx7kzqbz7vvnxw9hrps84kqibaf2ixnjp998kqkl6d"; 12 + }; 13 + 14 + vendorSha256 = null; 15 + 16 + meta = with lib; { 17 + description = "Network, Service & Security Observability for Kubernetes using eBPF"; 18 + license = licenses.asl20; 19 + homepage = "https://github.com/cilium/hubble/"; 20 + maintainers = with maintainers; [ humancalico ]; 21 + }; 22 + }
+2 -2
pkgs/applications/networking/cluster/kubeconform/default.nix
··· 2 3 buildGoModule rec { 4 pname = "kubeconform"; 5 - version = "0.4.8"; 6 7 src = fetchFromGitHub { 8 owner = "yannh"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-XD8xGqtE7eaBxPL4Z0Kw4BEqM2fdgww7wl8wJ1U3u0U="; 12 }; 13 14 vendorSha256 = null;
··· 2 3 buildGoModule rec { 4 pname = "kubeconform"; 5 + version = "0.4.10"; 6 7 src = fetchFromGitHub { 8 owner = "yannh"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-D1/ljIOc5vK6HcYmk0WNnIRGBt1vJk9dGxl5GjhKhuA="; 12 }; 13 14 vendorSha256 = null;
+2 -2
pkgs/applications/networking/cluster/kubedb-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "kubedb-cli"; 5 - version = "0.19.0"; 6 7 src = fetchFromGitHub { 8 owner = "kubedb"; 9 repo = "cli"; 10 rev = "v${version}"; 11 - sha256 = "sha256-CwAa2YqJ0R+L+VwxqruQmZJUctP4GgKszY49ZVyyNBE="; 12 }; 13 14 vendorSha256 = null;
··· 2 3 buildGoModule rec { 4 pname = "kubedb-cli"; 5 + version = "0.20.0"; 6 7 src = fetchFromGitHub { 8 owner = "kubedb"; 9 repo = "cli"; 10 rev = "v${version}"; 11 + sha256 = "sha256-E8oI0qBDS6CcA5ZDGs1YVt/BPEfUzCrt5aaqfHAXukI="; 12 }; 13 14 vendorSha256 = null;
+5 -5
pkgs/applications/networking/cluster/octant/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "octant"; 5 - version = "0.23.0"; 6 7 src = 8 let ··· 19 }; 20 in 21 fetchsrc version { 22 - x86_64-linux = "sha256-wnm4Zprlao+zbWVJNY4BsAT1fFMft7luyDaW2HfNotg="; 23 - aarch64-linux = "sha256-eYvfLUelSrmdY9dbgAlPm7en88hsdCnejJGq2Gz4DN0="; 24 - x86_64-darwin = "sha256-NXMQ4mbYfIK+arGWZVhQk5iAw6AZM9PAGJ9CEC/rmgA="; 25 - aarch64-darwin = "sha256-WqlbiDV2CuBYr6IXQ8vaESxKNZGp9vBj683igazcmwM="; 26 }; 27 28 dontConfigure = true;
··· 2 3 stdenv.mkDerivation rec { 4 pname = "octant"; 5 + version = "0.24.0"; 6 7 src = 8 let ··· 19 }; 20 in 21 fetchsrc version { 22 + x86_64-linux = "sha256-fvGVcp6SpHY0UuWurRuypDXbWEs565bK1Peg0Q4Y0m8="; 23 + aarch64-linux = "sha256-7h8l4Pm34UCZ5NhD1scM1c5sM4ePGLDRGAQBfI5vSHI="; 24 + x86_64-darwin = "sha256-2S+D5Gg98GEL5L6bC8ZUSEJXFs74ZaZlNkYHYJYZvqw="; 25 + aarch64-darwin = "sha256-rEhMX+v2sjsmc1p22uscjIyhcnpv2fWjgEnU+lUq9RE="; 26 }; 27 28 dontConfigure = true;
+2 -2
pkgs/applications/networking/cluster/tanka/default.nix
··· 2 3 buildGoModule rec { 4 pname = "tanka"; 5 - version = "0.17.0"; 6 7 src = fetchFromGitHub { 8 owner = "grafana"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-9UfSKMyapmDyikRqs7UiA4YYcvj/Tin9pRqC9iFLPWE="; 12 }; 13 14 vendorSha256 = "sha256-vpm2y/CxRNWkz6+AOMmmZH5AjRQWAa6WD5Fnx5lqJYw=";
··· 2 3 buildGoModule rec { 4 pname = "tanka"; 5 + version = "0.17.2"; 6 7 src = fetchFromGitHub { 8 owner = "grafana"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-a7utYYuCgFabKILUKnKF0fcrorlV1DYMOFMRkm5QMuU="; 12 }; 13 14 vendorSha256 = "sha256-vpm2y/CxRNWkz6+AOMmmZH5AjRQWAa6WD5Fnx5lqJYw=";
+3 -3
pkgs/applications/networking/gmailctl/default.nix
··· 5 6 buildGoModule rec { 7 pname = "gmailctl"; 8 - version = "0.8.0"; 9 10 src = fetchFromGitHub { 11 owner = "mbrt"; 12 repo = "gmailctl"; 13 rev = "v${version}"; 14 - sha256 = "sha256-UZzpecW4vW1JYUDCcwDIJXCGjw80fgZC4wvCh0DdE98="; 15 }; 16 17 - vendorSha256 = "sha256-5oVr1qazTzsSNVLvcAsAN8UyrJOeqLjSVinImLOyJlk="; 18 19 doCheck = false; 20
··· 5 6 buildGoModule rec { 7 pname = "gmailctl"; 8 + version = "0.9.0"; 9 10 src = fetchFromGitHub { 11 owner = "mbrt"; 12 repo = "gmailctl"; 13 rev = "v${version}"; 14 + sha256 = "sha256-1gOixuOvPHEjnnDNNda9sktnhffovOfeG4XDrLRRMlE="; 15 }; 16 17 + vendorSha256 = "sha256-Yv3OGHFOmenst/ujUgvCaSEjwwBf3W9n+55ztVhuWjo="; 18 19 doCheck = false; 20
+2 -2
pkgs/applications/office/semantik/default.nix
··· 24 25 mkDerivation rec { 26 pname = "semantik"; 27 - version = "1.2.5"; 28 29 src = fetchFromGitLab { 30 owner = "ita1024"; 31 repo = "semantik"; 32 rev = "semantik-${version}"; 33 - sha256 = "0dkg6mbnsbvbis17iz8v59wlhld93nc51abnkbyqvvkyyiqb006c"; 34 }; 35 36 patches = [ ./qt5.patch ];
··· 24 25 mkDerivation rec { 26 pname = "semantik"; 27 + version = "1.2.7"; 28 29 src = fetchFromGitLab { 30 owner = "ita1024"; 31 repo = "semantik"; 32 rev = "semantik-${version}"; 33 + sha256 = "sha256-aXOokji6fYTpaeI/IIV+5RnTE2Cm8X3WfADf4Uftkss="; 34 }; 35 36 patches = [ ./qt5.patch ];
+2 -5
pkgs/applications/science/electronics/openems/default.nix
··· 15 , withQcsxcad ? true 16 , withMPI ? false 17 , withHyp2mat ? true 18 - , qcsxcad ? null 19 - , hyp2mat ? null 20 }: 21 - 22 - assert withQcsxcad -> qcsxcad != null; 23 - assert withHyp2mat -> hyp2mat != null; 24 25 stdenv.mkDerivation { 26 pname = "openems";
··· 15 , withQcsxcad ? true 16 , withMPI ? false 17 , withHyp2mat ? true 18 + , qcsxcad 19 + , hyp2mat 20 }: 21 22 stdenv.mkDerivation { 23 pname = "openems";
+17 -9
pkgs/applications/science/electronics/xoscope/default.nix
··· 1 - {lib, stdenv, fetchurl, gtk2, pkg-config}: 2 3 stdenv.mkDerivation rec { 4 - name = "xoscope-2.0"; 5 6 src = fetchurl { 7 - url = "mirror://sourceforge/xoscope/${name}.tgz"; 8 - sha256 = "00xlvvqyw6l1ljbsx1vgx2v1jfh0xacz1a0yhq1dj6yxf5wh58x8"; 9 }; 10 11 - nativeBuildInputs = [ pkg-config ]; 12 - buildInputs = [ gtk2 ]; 13 - 14 - # from: https://aur.archlinux.org/packages.php?ID=12140&detail=1 15 - patches = [ ./gtkdepre.diff ]; 16 17 meta = { 18 description = "Oscilloscope through the sound card";
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , gtk3 5 + , gtkdatabox 6 + , fftw 7 + , gnum4 8 + , comedilib 9 + , alsa-lib 10 + , pkg-config 11 + }: 12 13 stdenv.mkDerivation rec { 14 + pname = "xoscope"; 15 + version = "2.3"; 16 17 src = fetchurl { 18 + url = "mirror://sourceforge/xoscope/${pname}-${version}.tar.gz"; 19 + sha256 = "0a5ycfc1qdmibvagc82r2mhv2i99m6pndy5i6ixas3j2297g6pgq"; 20 }; 21 22 + nativeBuildInputs = [ pkg-config gnum4 ]; 23 + buildInputs = [ gtk3 gtkdatabox fftw comedilib alsa-lib ]; 24 25 meta = { 26 description = "Oscilloscope through the sound card";
-58
pkgs/applications/science/electronics/xoscope/gtkdepre.diff
··· 1 - diff -ru xoscope-2.0-old//gtkdatabox-0.6.0.0/gtk/gtkdatabox.c xoscope-2.0/gtkdatabox-0.6.0.0/gtk/gtkdatabox.c 2 - --- xoscope-2.0-old//gtkdatabox-0.6.0.0/gtk/gtkdatabox.c 2010-06-07 10:42:24.000000000 +0200 3 - +++ xoscope-2.0/gtkdatabox-0.6.0.0/gtk/gtkdatabox.c 2010-06-07 10:45:40.000000000 +0200 4 - @@ -661,7 +661,7 @@ 5 - static void 6 - gtk_databox_calculate_hcanvas (GtkDatabox *box) 7 - { 8 - - if (!GTK_WIDGET_VISIBLE (box)) 9 - + if (!gtk_widget_get_visible (box)) 10 - return; 11 - 12 - if (box->priv->adjX->page_size == 1.0) 13 - @@ -698,7 +698,7 @@ 14 - static void 15 - gtk_databox_calculate_vcanvas (GtkDatabox *box) 16 - { 17 - - if (!GTK_WIDGET_VISIBLE (box)) 18 - + if (!gtk_widget_get_visible (box)) 19 - return; 20 - 21 - if (box->priv->adjY->page_size == 1.0) 22 - @@ -780,7 +780,7 @@ 23 - gtk_databox_draw (box, event); 24 - 25 - gdk_draw_drawable (widget->window, 26 - - widget->style->fg_gc[GTK_WIDGET_STATE (widget)], 27 - + widget->style->fg_gc[gtk_widget_get_state (widget)], 28 - box->priv->canvas.pixmap, event->area.x, event->area.y, 29 - event->area.x, event->area.y, event->area.width, 30 - event->area.height); 31 - @@ -940,7 +940,7 @@ 32 - GtkWidget *widget = GTK_WIDGET (box); 33 - 34 - g_return_if_fail (GTK_IS_DATABOX (box)); 35 - - g_return_if_fail (GTK_WIDGET_VISIBLE (widget)); 36 - + g_return_if_fail (gtk_widget_get_visible (widget)); 37 - 38 - gdk_draw_rectangle (box->priv->canvas.pixmap, widget->style->bg_gc[0], 39 - TRUE, 0, 0, 40 - @@ -1150,7 +1150,7 @@ 41 - /* Copy a part of the pixmap to the screen */ 42 - if (pixmapCopyRect) 43 - gdk_draw_drawable (widget->window, 44 - - widget->style->fg_gc[GTK_WIDGET_STATE (box)], 45 - + widget->style->fg_gc[gtk_widget_get_state (box)], 46 - box->priv->canvas.pixmap, 47 - pixmapCopyRect->x, 48 - pixmapCopyRect->y, 49 - --- xoscope-2.0-old//gtkdatabox-0.6.0.0/gtk/Makefile.in 2011-09-02 16:43:43.000000000 +0200 50 - +++ xoscope-2.0/gtkdatabox-0.6.0.0/gtk/Makefile.in 2011-09-02 16:43:57.000000000 +0200 51 - @@ -196,7 +196,6 @@ 52 - -DG_DISABLE_DEPRECATED\ 53 - -DGDK_DISABLE_DEPRECATED\ 54 - -DGDK_PIXBUF_DISABLE_DEPRECATED\ 55 - - -DGTK_DISABLE_DEPRECATED\ 56 - `pkg-config gtk+-2.0 --cflags` 57 - 58 - all: all-am
···
+1 -1
pkgs/applications/science/machine-learning/fasttext/default.nix
··· 18 homepage = "https://fasttext.cc/"; 19 license = licenses.mit; 20 platforms = platforms.unix; 21 - maintainers = [ maintainers.danieldk ]; 22 }; 23 }
··· 18 homepage = "https://fasttext.cc/"; 19 license = licenses.mit; 20 platforms = platforms.unix; 21 + maintainers = [ ]; 22 }; 23 }
+1 -1
pkgs/applications/science/machine-learning/finalfrontier/default.nix
··· 46 description = "Utility for training word and subword embeddings"; 47 homepage = "https://github.com/finalfusion/finalfrontier/"; 48 license = licenses.asl20; 49 - maintainers = with maintainers; [ danieldk ]; 50 }; 51 }
··· 46 description = "Utility for training word and subword embeddings"; 47 homepage = "https://github.com/finalfusion/finalfrontier/"; 48 license = licenses.asl20; 49 + maintainers = with maintainers; [ ]; 50 }; 51 }
+1 -1
pkgs/applications/science/machine-learning/finalfusion-utils/default.nix
··· 50 description = "Utility for converting, quantizing, and querying word embeddings"; 51 homepage = "https://github.com/finalfusion/finalfusion-utils/"; 52 license = licenses.asl20; 53 - maintainers = with maintainers; [ danieldk ]; 54 }; 55 }
··· 50 description = "Utility for converting, quantizing, and querying word embeddings"; 51 homepage = "https://github.com/finalfusion/finalfusion-utils/"; 52 license = licenses.asl20; 53 + maintainers = with maintainers; [ ]; 54 }; 55 }
+2 -2
pkgs/applications/version-management/git-and-tools/gitstatus/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gitstatus"; 5 - version = "1.5.2"; 6 7 src = fetchFromGitHub { 8 owner = "romkatv"; 9 repo = "gitstatus"; 10 rev = "v${version}"; 11 - sha256 = "sha256-MQG4thW73gDqY68bKP2FO8z5uc2R/tED+/X9qas/GOA="; 12 }; 13 14 buildInputs = [ (callPackage ./romkatv_libgit2.nix { }) ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gitstatus"; 5 + version = "1.5.3"; 6 7 src = fetchFromGitHub { 8 owner = "romkatv"; 9 repo = "gitstatus"; 10 rev = "v${version}"; 11 + sha256 = "sha256-ZTpnT4kuntHdMWK7c/pHS6mJrAHF9T51DydXnWXj8Z0="; 12 }; 13 14 buildInputs = [ (callPackage ./romkatv_libgit2.nix { }) ];
+1
pkgs/applications/virtualization/bochs/default.nix
··· 100 "--enable-sb16" 101 "--enable-show-ips" 102 "--enable-smp" 103 "--enable-svm" 104 "--enable-trace-linking" 105 "--enable-usb"
··· 100 "--enable-sb16" 101 "--enable-show-ips" 102 "--enable-smp" 103 + "--enable-vmx=2" 104 "--enable-svm" 105 "--enable-trace-linking" 106 "--enable-usb"
+2 -2
pkgs/applications/virtualization/docker/buildx.nix
··· 2 3 buildGoModule rec { 4 pname = "docker-buildx"; 5 - version = "0.6.2"; 6 7 src = fetchFromGitHub { 8 owner = "docker"; 9 repo = "buildx"; 10 rev = "v${version}"; 11 - sha256 = "sha256-X/oTL/CfMunGcS3HDoH/g1gZcJWnVU93OkcGC36KuA4="; 12 }; 13 14 vendorSha256 = null;
··· 2 3 buildGoModule rec { 4 pname = "docker-buildx"; 5 + version = "0.6.3"; 6 7 src = fetchFromGitHub { 8 owner = "docker"; 9 repo = "buildx"; 10 rev = "v${version}"; 11 + sha256 = "sha256-UKIT3PfybuQjKxxFbRQSCA8G3R2xIySWEDUKg27u5Rk="; 12 }; 13 14 vendorSha256 = null;
+11 -11
pkgs/applications/window-managers/awesome/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, luaPackages, cairo, librsvg, cmake, imagemagick, pkg-config, gdk-pixbuf 2 , xorg, libstartup_notification, libxdg_basedir, libpthreadstubs 3 , xcb-util-cursor, makeWrapper, pango, gobject-introspection 4 , which, dbus, nettools, git, doxygen ··· 11 12 # needed for beautiful.gtk to work 13 assert gtk3Support -> gtk3 != null; 14 15 stdenv.mkDerivation rec { 16 - lgi = luaPackages.lgi; 17 - lua = luaPackages.lua; 18 - ldoc = luaPackages.ldoc; 19 pname = "awesome"; 20 version = "4.3"; 21 ··· 35 xmlto docbook_xml_dtd_45 36 docbook_xsl findXMLCatalogs 37 asciidoctor 38 - ldoc 39 ]; 40 41 outputs = [ "out" "doc" ]; ··· 44 45 propagatedUserEnvPkgs = [ hicolor-icon-theme ]; 46 buildInputs = [ cairo librsvg dbus gdk-pixbuf gobject-introspection 47 - git lgi libpthreadstubs libstartup_notification 48 libxdg_basedir lua nettools pango xcb-util-cursor 49 xorg.libXau xorg.libXdmcp xorg.libxcb xorg.libxshmfence 50 xorg.xcbutil xorg.xcbutilimage xorg.xcbutilkeysyms ··· 55 cmakeFlags = [ 56 #"-DGENERATE_MANPAGES=ON" 57 "-DOVERRIDE_VERSION=${version}" 58 - ] ++ lib.optional luaPackages.isLuaJIT "-DLUA_LIBRARY=${lua}/lib/libluajit-5.1.so" 59 ; 60 61 GI_TYPELIB_PATH = "${pango.out}/lib/girepository-1.0"; 62 # LUA_CPATH and LUA_PATH are used only for *building*, see the --search flags 63 # below for how awesome finds the libraries it needs at runtime. 64 - LUA_CPATH = "${lgi}/lib/lua/${lua.luaversion}/?.so"; 65 - LUA_PATH = "${lgi}/share/lua/${lua.luaversion}/?.lua;;"; 66 67 postInstall = '' 68 # Don't use wrapProgram or the wrapper will duplicate the --search ··· 70 mv "$out/bin/awesome" "$out/bin/.awesome-wrapped" 71 makeWrapper "$out/bin/.awesome-wrapped" "$out/bin/awesome" \ 72 --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ 73 - --add-flags '--search ${lgi}/lib/lua/${lua.luaversion}' \ 74 - --add-flags '--search ${lgi}/share/lua/${lua.luaversion}' \ 75 --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" 76 77 wrapProgram $out/bin/awesome-client \
··· 1 + { lib, stdenv, fetchFromGitHub, lua, cairo, librsvg, cmake, imagemagick, pkg-config, gdk-pixbuf 2 , xorg, libstartup_notification, libxdg_basedir, libpthreadstubs 3 , xcb-util-cursor, makeWrapper, pango, gobject-introspection 4 , which, dbus, nettools, git, doxygen ··· 11 12 # needed for beautiful.gtk to work 13 assert gtk3Support -> gtk3 != null; 14 + 15 + let 16 + luaEnv = lua.withPackages(ps: [ ps.lgi ps.ldoc ]); 17 + in 18 19 stdenv.mkDerivation rec { 20 pname = "awesome"; 21 version = "4.3"; 22 ··· 36 xmlto docbook_xml_dtd_45 37 docbook_xsl findXMLCatalogs 38 asciidoctor 39 ]; 40 41 outputs = [ "out" "doc" ]; ··· 44 45 propagatedUserEnvPkgs = [ hicolor-icon-theme ]; 46 buildInputs = [ cairo librsvg dbus gdk-pixbuf gobject-introspection 47 + git luaEnv libpthreadstubs libstartup_notification 48 libxdg_basedir lua nettools pango xcb-util-cursor 49 xorg.libXau xorg.libXdmcp xorg.libxcb xorg.libxshmfence 50 xorg.xcbutil xorg.xcbutilimage xorg.xcbutilkeysyms ··· 55 cmakeFlags = [ 56 #"-DGENERATE_MANPAGES=ON" 57 "-DOVERRIDE_VERSION=${version}" 58 + ] ++ lib.optional lua.pkgs.isLuaJIT "-DLUA_LIBRARY=${lua}/lib/libluajit-5.1.so" 59 ; 60 61 GI_TYPELIB_PATH = "${pango.out}/lib/girepository-1.0"; 62 # LUA_CPATH and LUA_PATH are used only for *building*, see the --search flags 63 # below for how awesome finds the libraries it needs at runtime. 64 + LUA_CPATH = "${luaEnv}/lib/lua/${lua.luaversion}/?.so"; 65 + LUA_PATH = "${luaEnv}/share/lua/${lua.luaversion}/?.lua;;"; 66 67 postInstall = '' 68 # Don't use wrapProgram or the wrapper will duplicate the --search ··· 70 mv "$out/bin/awesome" "$out/bin/.awesome-wrapped" 71 makeWrapper "$out/bin/.awesome-wrapped" "$out/bin/awesome" \ 72 --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ 73 + --add-flags '--search ${luaEnv}/lib/lua/${lua.luaversion}' \ 74 + --add-flags '--search ${luaEnv}/share/lua/${lua.luaversion}' \ 75 --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" 76 77 wrapProgram $out/bin/awesome-client \
+1 -1
pkgs/build-support/rust/test/import-cargo-lock/maturin/default.nix
··· 38 description = "PyO3 word count example"; 39 homepage = "https://github.com/PyO3/pyo3"; 40 license = licenses.asl20; 41 - maintainers = [ maintainers.danieldk ]; 42 }; 43 }
··· 38 description = "PyO3 word count example"; 39 homepage = "https://github.com/PyO3/pyo3"; 40 license = licenses.asl20; 41 + maintainers = [ ]; 42 }; 43 }
+1 -1
pkgs/development/compilers/llvm/rocm/clang.nix
··· 66 description = "ROCm fork of the clang C/C++/Objective-C/Objective-C++ LLVM compiler frontend"; 67 homepage = "https://llvm.org/"; 68 license = with licenses; [ ncsa ]; 69 - maintainers = with maintainers; [ acowley danieldk lovesegfault ]; 70 platforms = platforms.linux; 71 }; 72 }
··· 66 description = "ROCm fork of the clang C/C++/Objective-C/Objective-C++ LLVM compiler frontend"; 67 homepage = "https://llvm.org/"; 68 license = with licenses; [ ncsa ]; 69 + maintainers = with maintainers; [ acowley lovesegfault ]; 70 platforms = platforms.linux; 71 }; 72 }
+1 -1
pkgs/development/compilers/llvm/rocm/compiler-rt/default.nix
··· 59 description = "ROCm fork of the LLVM Compiler runtime libraries"; 60 homepage = "https://github.com/RadeonOpenCompute/llvm-project"; 61 license = licenses.ncsa; 62 - maintainers = with maintainers; [ acowley danieldk lovesegfault ]; 63 platforms = platforms.linux; 64 }; 65 }
··· 59 description = "ROCm fork of the LLVM Compiler runtime libraries"; 60 homepage = "https://github.com/RadeonOpenCompute/llvm-project"; 61 license = licenses.ncsa; 62 + maintainers = with maintainers; [ acowley lovesegfault ]; 63 platforms = platforms.linux; 64 }; 65 }
+1 -1
pkgs/development/compilers/llvm/rocm/lld.nix
··· 34 description = "ROCm fork of the LLVM Linker"; 35 homepage = "https://github.com/RadeonOpenCompute/llvm-project"; 36 license = licenses.ncsa; 37 - maintainers = with maintainers; [ acowley danieldk lovesegfault ]; 38 platforms = platforms.linux; 39 }; 40 }
··· 34 description = "ROCm fork of the LLVM Linker"; 35 homepage = "https://github.com/RadeonOpenCompute/llvm-project"; 36 license = licenses.ncsa; 37 + maintainers = with maintainers; [ acowley lovesegfault ]; 38 platforms = platforms.linux; 39 }; 40 }
+1 -1
pkgs/development/compilers/llvm/rocm/llvm/default.nix
··· 110 description = "ROCm fork of the LLVM compiler infrastructure"; 111 homepage = "https://github.com/RadeonOpenCompute/llvm-project"; 112 license = with licenses; [ ncsa ]; 113 - maintainers = with maintainers; [ acowley danieldk lovesegfault ]; 114 platforms = platforms.linux; 115 }; 116 }
··· 110 description = "ROCm fork of the LLVM compiler infrastructure"; 111 homepage = "https://github.com/RadeonOpenCompute/llvm-project"; 112 license = with licenses; [ ncsa ]; 113 + maintainers = with maintainers; [ acowley lovesegfault ]; 114 platforms = platforms.linux; 115 }; 116 }
+1 -1
pkgs/development/interpreters/lua-5/build-lua-package.nix
··· 238 inherit externalDeps; 239 } // passthru; 240 241 - meta = with lib.maintainers; { 242 platforms = lua.meta.platforms; 243 # add extra maintainer(s) to every package 244 maintainers = (meta.maintainers or []) ++ [ ];
··· 238 inherit externalDeps; 239 } // passthru; 240 241 + meta = { 242 platforms = lua.meta.platforms; 243 # add extra maintainer(s) to every package 244 maintainers = (meta.maintainers or []) ++ [ ];
+21 -6
pkgs/development/interpreters/lua-5/interpreter.nix
··· 1 { lib, stdenv, fetchurl, readline 2 , compat ? false 3 , callPackage 4 - , packageOverrides ? (self: super: {}) 5 , sourceVersion 6 , hash 7 , patches ? [] ··· 10 , staticOnly ? stdenv.hostPlatform.isStatic 11 }: 12 let 13 - luaPackages = callPackage ../../lua-modules {lua=self; overrides=packageOverrides;}; 14 15 plat = if stdenv.isLinux then "linux" 16 else if stdenv.isDarwin then "macosx" ··· 31 sha256 = hash; 32 }; 33 34 - LuaPathSearchPaths = luaPackages.getLuaPathList luaversion; 35 - LuaCPathSearchPaths = luaPackages.getLuaCPathList luaversion; 36 setupHook = luaPackages.lua-setup-hook LuaPathSearchPaths LuaCPathSearchPaths; 37 38 buildInputs = [ readline ]; 39 40 inherit patches; 41 42 - postPatch = lib.optionalString (!stdenv.isDarwin && !staticOnly) '' 43 # Add a target for a shared library to the Makefile. 44 sed -e '1s/^/LUA_SO = liblua.so/' \ 45 -e 's/ALL_T *= */&$(LUA_SO) /' \ 46 -i src/Makefile 47 cat ${./lua-dso.make} >> src/Makefile 48 - ''; 49 50 # see configurePhase for additional flags (with space) 51 makeFlags = [
··· 1 { lib, stdenv, fetchurl, readline 2 , compat ? false 3 , callPackage 4 + , makeWrapper 5 + , packageOverrides ? (final: prev: {}) 6 , sourceVersion 7 , hash 8 , patches ? [] ··· 11 , staticOnly ? stdenv.hostPlatform.isStatic 12 }: 13 let 14 + luaPackages = callPackage ../../lua-modules { 15 + lua = self; 16 + overrides = packageOverrides; 17 + }; 18 19 plat = if stdenv.isLinux then "linux" 20 else if stdenv.isDarwin then "macosx" ··· 35 sha256 = hash; 36 }; 37 38 + LuaPathSearchPaths = luaPackages.lib.luaPathList; 39 + LuaCPathSearchPaths = luaPackages.lib.luaCPathList; 40 setupHook = luaPackages.lua-setup-hook LuaPathSearchPaths LuaCPathSearchPaths; 41 42 + nativeBuildInputs = [ makeWrapper ]; 43 buildInputs = [ readline ]; 44 45 inherit patches; 46 47 + # we can't pass flags to the lua makefile because for portability, everything is hardcoded 48 + postPatch = '' 49 + { 50 + echo -e ' 51 + #undef LUA_PATH_DEFAULT 52 + #define LUA_PATH_DEFAULT "./share/lua/${luaversion}/?.lua;./?.lua;./?/init.lua" 53 + #undef LUA_CPATH_DEFAULT 54 + #define LUA_CPATH_DEFAULT "./lib/lua/${luaversion}/?.so;./?.so;./lib/lua/${luaversion}/loadall.so" 55 + ' 56 + } >> src/luaconf.h 57 + '' + lib.optionalString (!stdenv.isDarwin && !staticOnly) '' 58 # Add a target for a shared library to the Makefile. 59 sed -e '1s/^/LUA_SO = liblua.so/' \ 60 -e 's/ALL_T *= */&$(LUA_SO) /' \ 61 -i src/Makefile 62 cat ${./lua-dso.make} >> src/Makefile 63 + '' ; 64 65 # see configurePhase for additional flags (with space) 66 makeFlags = [
+5 -8
pkgs/development/interpreters/lua-5/wrap-lua.nix
··· 4 , makeWrapper 5 }: 6 7 - with lib; 8 - 9 # defined in trivial-builders.nix 10 # imported as wrapLua in lua-packages.nix and passed to build-lua-derivation to be used as buildInput 11 makeSetupHook { 12 - deps = makeWrapper; 13 - substitutions.executable = lua.interpreter; 14 - substitutions.lua = lua; 15 - substitutions.LuaPathSearchPaths = lib.escapeShellArgs lua.LuaPathSearchPaths; 16 - substitutions.LuaCPathSearchPaths = lib.escapeShellArgs lua.LuaPathSearchPaths; 17 - 18 } ./wrap.sh 19
··· 4 , makeWrapper 5 }: 6 7 # defined in trivial-builders.nix 8 # imported as wrapLua in lua-packages.nix and passed to build-lua-derivation to be used as buildInput 9 makeSetupHook { 10 + deps = makeWrapper; 11 + substitutions.executable = lua.interpreter; 12 + substitutions.lua = lua; 13 + substitutions.LuaPathSearchPaths = lib.escapeShellArgs lua.LuaPathSearchPaths; 14 + substitutions.LuaCPathSearchPaths = lib.escapeShellArgs lua.LuaPathSearchPaths; 15 } ./wrap.sh 16
+13 -6
pkgs/development/interpreters/lua-5/wrapper.nix
··· 11 let 12 env = let 13 paths = requiredLuaModules (extraLibs ++ [ lua ] ); 14 - in (buildEnv { 15 name = "${lua.name}-env"; 16 17 inherit paths; 18 inherit ignoreCollisions; 19 extraOutputsToInstall = [ "out" ] ++ extraOutputsToInstall; 20 21 # we create wrapper for the binaries in the different packages 22 postBuild = '' ··· 37 rm -f "$out/bin/$prg" 38 if [ -x "$prg" ]; then 39 nix_debug "Making wrapper $prg" 40 - makeWrapper "$path/bin/$prg" "$out/bin/$prg" --suffix LUA_PATH ';' "$LUA_PATH" --suffix LUA_CPATH ';' "$LUA_CPATH" ${lib.concatStringsSep " " makeWrapperArgs} 41 fi 42 fi 43 done ··· 62 ''; 63 }; 64 }; 65 - }).overrideAttrs (_: { 66 - # Add extra deps needed for postBuild hook. 67 - nativeBuildInputs = [ makeWrapper lua ]; 68 - }); 69 in env
··· 11 let 12 env = let 13 paths = requiredLuaModules (extraLibs ++ [ lua ] ); 14 + in buildEnv { 15 name = "${lua.name}-env"; 16 17 inherit paths; 18 inherit ignoreCollisions; 19 extraOutputsToInstall = [ "out" ] ++ extraOutputsToInstall; 20 + 21 + nativeBuildInputs = [ 22 + makeWrapper 23 + (lua.pkgs.lua-setup-hook lua.LuaPathSearchPaths lua.LuaCPathSearchPaths) 24 + ]; 25 26 # we create wrapper for the binaries in the different packages 27 postBuild = '' ··· 42 rm -f "$out/bin/$prg" 43 if [ -x "$prg" ]; then 44 nix_debug "Making wrapper $prg" 45 + makeWrapper "$path/bin/$prg" "$out/bin/$prg" \ 46 + --set-default LUA_PATH ";;" \ 47 + --suffix LUA_PATH ';' "$LUA_PATH" \ 48 + --set-default LUA_CPATH ";;" \ 49 + --suffix LUA_CPATH ';' "$LUA_CPATH" \ 50 + ${lib.concatStringsSep " " makeWrapperArgs} 51 fi 52 fi 53 done ··· 72 ''; 73 }; 74 }; 75 + }; 76 in env
+14 -10
pkgs/development/interpreters/luajit/default.nix
··· 10 , extraMeta ? { } 11 , callPackage 12 , self 13 - , packageOverrides ? (self: super: { }) 14 , enableFFI ? true 15 , enableJIT ? true 16 , enableJITDebugModule ? enableJIT ··· 62 # passed by nixpkgs CC wrapper is insufficient on its own 63 substituteInPlace src/Makefile --replace "#CCDEBUG= -g" "CCDEBUG= -g" 64 fi 65 ''; 66 67 configurePhase = false; ··· 88 ln -s "$out"/bin/luajit-* "$out"/bin/luajit 89 ''; 90 91 - LuaPathSearchPaths = [ 92 - "lib/lua/${luaversion}/?.lua" 93 - "share/lua/${luaversion}/?.lua" 94 - "share/lua/${luaversion}/?/init.lua" 95 - "lib/lua/${luaversion}/?/init.lua" 96 - "share/${name}/?.lua" 97 - ]; 98 - LuaCPathSearchPaths = [ "lib/lua/${luaversion}/?.so" "share/lua/${luaversion}/?.so" ]; 99 - setupHook = luaPackages.lua-setup-hook LuaPathSearchPaths LuaCPathSearchPaths; 100 101 passthru = rec { 102 buildEnv = callPackage ../lua-5/wrapper.nix {
··· 10 , extraMeta ? { } 11 , callPackage 12 , self 13 + , packageOverrides ? (final: prev: {}) 14 , enableFFI ? true 15 , enableJIT ? true 16 , enableJITDebugModule ? enableJIT ··· 62 # passed by nixpkgs CC wrapper is insufficient on its own 63 substituteInPlace src/Makefile --replace "#CCDEBUG= -g" "CCDEBUG= -g" 64 fi 65 + 66 + { 67 + echo -e ' 68 + #undef LUA_PATH_DEFAULT 69 + #define LUA_PATH_DEFAULT "./share/lua/${luaversion}/?.lua;./?.lua;./?/init.lua" 70 + #undef LUA_CPATH_DEFAULT 71 + #define LUA_CPATH_DEFAULT "./lib/lua/${luaversion}/?.so;./?.so;./lib/lua/${luaversion}/loadall.so" 72 + ' 73 + } >> src/luaconf.h 74 ''; 75 76 configurePhase = false; ··· 97 ln -s "$out"/bin/luajit-* "$out"/bin/luajit 98 ''; 99 100 + LuaPathSearchPaths = luaPackages.lib.luaPathList; 101 + LuaCPathSearchPaths = luaPackages.lib.luaCPathList; 102 + 103 + setupHook = luaPackages.lua-setup-hook luaPackages.lib.luaPathList luaPackages.lib.luaCPathList; 104 105 passthru = rec { 106 buildEnv = callPackage ../lua-5/wrapper.nix {
+2 -2
pkgs/development/libraries/abseil-cpp/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "abseil-cpp"; 5 - version = "20210324.1"; 6 7 src = fetchFromGitHub { 8 owner = "abseil"; 9 repo = "abseil-cpp"; 10 rev = version; 11 - sha256 = "16w63brfwgiayiyhvawsnr14xyy5hpp68k8fj0z6yk0bjzw6jvjw"; 12 }; 13 14 patches = [
··· 2 3 stdenv.mkDerivation rec { 4 pname = "abseil-cpp"; 5 + version = "20210324.2"; 6 7 src = fetchFromGitHub { 8 owner = "abseil"; 9 repo = "abseil-cpp"; 10 rev = version; 11 + sha256 = "0g9rbhk3mwjdfxk7cscd04vm8fphd5flz9yykpgvyy1nwa34zk3x"; 12 }; 13 14 patches = [
+2 -2
pkgs/development/libraries/civetweb/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "civetweb"; 7 - version = "1.14"; 8 9 src = fetchFromGitHub { 10 owner = pname; 11 repo = pname; 12 rev = "v${version}"; 13 - sha256 = "sha256-6qBsM9zkN838cMtpE3+c7qcrFpZCS/Av7Ch7EWmlnD4="; 14 }; 15 16 makeFlags = [
··· 4 5 stdenv.mkDerivation rec { 6 pname = "civetweb"; 7 + version = "1.15"; 8 9 src = fetchFromGitHub { 10 owner = pname; 11 repo = pname; 12 rev = "v${version}"; 13 + sha256 = "sha256-Qh6BGPk7a01YzCeX42+Og9M+fjXRs7kzNUCyT4mYab4="; 14 }; 15 16 makeFlags = [
+1 -1
pkgs/development/libraries/dbxml/default.nix
··· 38 homepage = "https://www.oracle.com/database/berkeley-db/xml.html"; 39 description = "Embeddable XML database based on Berkeley DB"; 40 license = licenses.agpl3; 41 - maintainers = with maintainers; [ danieldk ]; 42 platforms = platforms.unix; 43 }; 44 }
··· 38 homepage = "https://www.oracle.com/database/berkeley-db/xml.html"; 39 description = "Embeddable XML database based on Berkeley DB"; 40 license = licenses.agpl3; 41 + maintainers = with maintainers; [ ]; 42 platforms = platforms.unix; 43 }; 44 }
+16 -8
pkgs/development/libraries/gtkdatabox/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, gtk2 }: 2 3 stdenv.mkDerivation rec { 4 - name = "gtkdatabox-0.9.3.1"; 5 6 src = fetchurl { 7 - url = "mirror://sourceforge/gtkdatabox/${name}.tar.gz"; 8 - sha256 = "1rdxnjgh6v3yjqgsfmamyzpfxckzchps4kqvvz88nifmd7ckhjfh"; 9 }; 10 11 nativeBuildInputs = [ pkg-config ]; 12 13 - propagatedBuildInputs = [ gtk2 ]; 14 15 meta = { 16 description = "GTK widget for displaying large amounts of numerical data"; 17 - 18 - license = lib.licenses.lgpl2; 19 - 20 platforms = lib.platforms.unix; 21 }; 22 }
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , pkg-config 5 + , gtk3 6 + , pango 7 + , cairo 8 + }: 9 10 stdenv.mkDerivation rec { 11 + pname = "gtkdatabox"; 12 + version = "1.0.0"; 13 14 src = fetchurl { 15 + url = "mirror://sourceforge/gtkdatabox/${pname}-${version}.tar.gz"; 16 + sha256 = "1qykm551bx8j8pfgxs60l2vhpi8lv4r8va69zvn2594lchh71vlb"; 17 }; 18 19 nativeBuildInputs = [ pkg-config ]; 20 21 + propagatedBuildInputs = [ gtk3 pango cairo ]; 22 23 meta = { 24 description = "GTK widget for displaying large amounts of numerical data"; 25 + homepage = "https://gtkdatabox.sourceforge.io/"; 26 + license = lib.licenses.lgpl2Only; 27 platforms = lib.platforms.unix; 28 + maintainers = with lib.maintainers; [ yl3dy ]; 29 }; 30 }
+1 -1
pkgs/development/libraries/liblinear/default.nix
··· 42 description = "A library for large linear classification"; 43 homepage = "https://www.csie.ntu.edu.tw/~cjlin/liblinear/"; 44 license = licenses.bsd3; 45 - maintainers = [ maintainers.danieldk ]; 46 platforms = platforms.unix; 47 }; 48 }
··· 42 description = "A library for large linear classification"; 43 homepage = "https://www.csie.ntu.edu.tw/~cjlin/liblinear/"; 44 license = licenses.bsd3; 45 + maintainers = [ ]; 46 platforms = platforms.unix; 47 }; 48 }
+1 -1
pkgs/development/libraries/libvirt/default.nix
··· 91 fetchurl 92 { 93 url = "https://libvirt.org/sources/${pname}-${version}.tar.xz"; 94 - sha256 = "sha256-l1VjqpfxBigg06SiRE4ANZ4jLahE9mJC6SrTzZ8o5kY="; 95 } 96 else 97 fetchFromGitLab {
··· 91 fetchurl 92 { 93 url = "https://libvirt.org/sources/${pname}-${version}.tar.xz"; 94 + sha256 = "1cjj48dn4ww13ayicd2g863a5kz0sc5jlbv2991bj54dq6cn0q8v"; 95 } 96 else 97 fetchFromGitLab {
+2 -2
pkgs/development/libraries/mm-common/default.nix
··· 8 9 stdenv.mkDerivation rec { 10 pname = "mm-common"; 11 - version = "1.0.2"; 12 13 src = fetchurl { 14 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 15 - sha256 = "07b4s5ckcz9q5gwx8vchim19mhfgl8wysqwi30pndks3m4zrzad2"; 16 }; 17 18 nativeBuildInputs = [
··· 8 9 stdenv.mkDerivation rec { 10 pname = "mm-common"; 11 + version = "1.0.3"; 12 13 src = fetchurl { 14 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 15 + sha256 = "6BWWYliZqs8dC/J8zC/Mfzc0BexIc1yhxyc8D7zcHvU="; 16 }; 17 18 nativeBuildInputs = [
+1 -1
pkgs/development/libraries/rocm-opencl-runtime/default.nix
··· 86 description = "OpenCL runtime for AMD GPUs, part of the ROCm stack"; 87 homepage = "https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime"; 88 license = with licenses; [ asl20 mit ]; 89 - maintainers = with maintainers; [ acowley danieldk lovesegfault ]; 90 platforms = platforms.linux; 91 }; 92 }
··· 86 description = "OpenCL runtime for AMD GPUs, part of the ROCm stack"; 87 homepage = "https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime"; 88 license = with licenses; [ asl20 mit ]; 89 + maintainers = with maintainers; [ acowley lovesegfault ]; 90 platforms = platforms.linux; 91 }; 92 }
+1 -1
pkgs/development/libraries/rocm-runtime/default.nix
··· 53 description = "Platform runtime for ROCm"; 54 homepage = "https://github.com/RadeonOpenCompute/ROCR-Runtime"; 55 license = with licenses; [ ncsa ]; 56 - maintainers = with maintainers; [ danieldk lovesegfault ]; 57 }; 58 }
··· 53 description = "Platform runtime for ROCm"; 54 homepage = "https://github.com/RadeonOpenCompute/ROCR-Runtime"; 55 license = with licenses; [ ncsa ]; 56 + maintainers = with maintainers; [ lovesegfault ]; 57 }; 58 }
+1 -1
pkgs/development/libraries/science/math/amd-blis/default.nix
··· 64 description = "BLAS-compatible library optimized for AMD CPUs"; 65 homepage = "https://developer.amd.com/amd-aocl/blas-library/"; 66 license = licenses.bsd3; 67 - maintainers = [ maintainers.danieldk ]; 68 platforms = [ "x86_64-linux" ]; 69 }; 70 }
··· 64 description = "BLAS-compatible library optimized for AMD CPUs"; 65 homepage = "https://developer.amd.com/amd-aocl/blas-library/"; 66 license = licenses.bsd3; 67 + maintainers = [ ]; 68 platforms = [ "x86_64-linux" ]; 69 }; 70 }
+1 -1
pkgs/development/libraries/science/math/amd-libflame/default.nix
··· 66 description = "LAPACK-compatible linear algebra library optimized for AMD CPUs"; 67 homepage = "https://developer.amd.com/amd-aocl/blas-library/"; 68 license = licenses.bsd3; 69 - maintainers = with maintainers; [ danieldk ]; 70 platforms = [ "x86_64-linux" ]; 71 }; 72 }
··· 66 description = "LAPACK-compatible linear algebra library optimized for AMD CPUs"; 67 homepage = "https://developer.amd.com/amd-aocl/blas-library/"; 68 license = licenses.bsd3; 69 + maintainers = with maintainers; [ ]; 70 platforms = [ "x86_64-linux" ]; 71 }; 72 }
+1 -1
pkgs/development/libraries/science/math/blis/default.nix
··· 58 description = "BLAS-compatible linear algebra library"; 59 homepage = "https://github.com/flame/blis"; 60 license = licenses.bsd3; 61 - maintainers = [ maintainers.danieldk ]; 62 platforms = [ "x86_64-linux" ]; 63 }; 64 }
··· 58 description = "BLAS-compatible linear algebra library"; 59 homepage = "https://github.com/flame/blis"; 60 license = licenses.bsd3; 61 + maintainers = [ ]; 62 platforms = [ "x86_64-linux" ]; 63 }; 64 }
+1 -1
pkgs/development/libraries/science/math/libtorch/bin.nix
··· 117 description = "C++ API of the PyTorch machine learning framework"; 118 homepage = "https://pytorch.org/"; 119 license = licenses.unfree; # Includes CUDA and Intel MKL. 120 - maintainers = with maintainers; [ danieldk ]; 121 platforms = with platforms; linux ++ darwin; 122 }; 123 }
··· 117 description = "C++ API of the PyTorch machine learning framework"; 118 homepage = "https://pytorch.org/"; 119 license = licenses.unfree; # Includes CUDA and Intel MKL. 120 + maintainers = with maintainers; [ ]; 121 platforms = with platforms; linux ++ darwin; 122 }; 123 }
+1 -1
pkgs/development/libraries/sentencepiece/default.nix
··· 29 description = "Unsupervised text tokenizer for Neural Network-based text generation"; 30 license = licenses.asl20; 31 platforms = platforms.unix; 32 - maintainers = with maintainers; [ danieldk pashashocky ]; 33 }; 34 }
··· 29 description = "Unsupervised text tokenizer for Neural Network-based text generation"; 30 license = licenses.asl20; 31 platforms = platforms.unix; 32 + maintainers = with maintainers; [ pashashocky ]; 33 }; 34 }
+2 -2
pkgs/development/libraries/vtk/9.x.nix
··· 1 import ./generic.nix { 2 majorVersion = "9.0"; 3 - minorVersion = "1"; 4 - sourceSha256 = "1ir2lq9i45ls374lcmjzw0nrm5l5hnm1w47lg8g8d0n2j7hsaf8v"; 5 }
··· 1 import ./generic.nix { 2 majorVersion = "9.0"; 3 + minorVersion = "3"; 4 + sourceSha256 = "vD65Ylsrjb/stgUqKrCR/JFAXeQzOw7GjzMjgVFU7Yo="; 5 }
+3 -4
pkgs/development/lua-modules/default.nix
··· 1 # inspired by pkgs/development/haskell-modules/default.nix 2 { pkgs, lib 3 , lua 4 - , overrides ? (self: super: {}) 5 }: 6 7 let ··· 15 overridenPackages = import ./overrides.nix { inherit pkgs; }; 16 17 generatedPackages = if (builtins.pathExists ./generated-packages.nix) then 18 - pkgs.callPackage ./generated-packages.nix { } else (self: super: {}); 19 20 extensible-self = lib.makeExtensible 21 (extends overrides ··· 24 initialPackages 25 ) 26 ) 27 - ) 28 - ; 29 in 30 extensible-self
··· 1 # inspired by pkgs/development/haskell-modules/default.nix 2 { pkgs, lib 3 , lua 4 + , overrides ? (final: prev: {}) 5 }: 6 7 let ··· 15 overridenPackages = import ./overrides.nix { inherit pkgs; }; 16 17 generatedPackages = if (builtins.pathExists ./generated-packages.nix) then 18 + pkgs.callPackage ./generated-packages.nix { } else (final: prev: {}); 19 20 extensible-self = lib.makeExtensible 21 (extends overrides ··· 24 initialPackages 25 ) 26 ) 27 + ); 28 in 29 extensible-self
+63
pkgs/development/lua-modules/lib.nix
···
··· 1 + { pkgs, lib, lua }: 2 + let 3 + requiredLuaModules = drvs: with lib; let 4 + modules = filter hasLuaModule drvs; 5 + in unique ([lua] ++ modules ++ concatLists (catAttrs "requiredLuaModules" modules)); 6 + # Check whether a derivation provides a lua module. 7 + hasLuaModule = drv: drv ? luaModule; 8 + in 9 + rec { 10 + inherit hasLuaModule requiredLuaModules; 11 + 12 + luaPathList = [ 13 + "share/lua/${lua.luaversion}/?.lua" 14 + "share/lua/${lua.luaversion}/?/init.lua" 15 + ]; 16 + luaCPathList = [ 17 + "lib/lua/${lua.luaversion}/?.so" 18 + ]; 19 + 20 + /* generate paths without a prefix 21 + */ 22 + luaPathRelStr = lib.concatStringsSep ";" luaPathList; 23 + luaCPathRelStr = lib.concatStringsSep ";" luaCPathList; 24 + 25 + /* generate LUA_(C)PATH value for a specific derivation, i.e., with absolute paths 26 + */ 27 + genLuaPathAbsStr = drv: lib.concatMapStringsSep ";" (x: "${drv}/${x}") luaPathList; 28 + genLuaCPathAbsStr = drv: lib.concatMapStringsSep ";" (x: "${drv}/${x}") luaCPathList; 29 + 30 + /* Generate a LUA_PATH with absolute paths 31 + */ 32 + # genLuaPathAbs = drv: 33 + # lib.concatStringsSep ";" (map (x: "${drv}/x") luaPathList); 34 + 35 + luaAtLeast = lib.versionAtLeast lua.luaversion; 36 + luaOlder = lib.versionOlder lua.luaversion; 37 + isLua51 = (lib.versions.majorMinor lua.version) == "5.1"; 38 + isLua52 = (lib.versions.majorMinor lua.version) == "5.2"; 39 + isLua53 = lua.luaversion == "5.3"; 40 + isLuaJIT = lib.getName lua == "luajit"; 41 + 42 + /* generates the relative path towards the folder where 43 + seems stable even when using lua_modules_path = "" 44 + 45 + Example: 46 + getDataFolder luaPackages.stdlib 47 + => stdlib-41.2.2-1-rocks/stdlib/41.2.2-1/doc 48 + */ 49 + getDataFolder = drv: 50 + "${drv.pname}-${drv.version}-rocks/${drv.pname}/${drv.version}"; 51 + 52 + /* Convert derivation to a lua module. 53 + so that luaRequireModules can be run later 54 + */ 55 + toLuaModule = drv: 56 + drv.overrideAttrs( oldAttrs: { 57 + # Use passthru in order to prevent rebuilds when possible. 58 + passthru = (oldAttrs.passthru or {}) // { 59 + luaModule = lua; 60 + requiredLuaModules = requiredLuaModules drv.propagatedBuildInputs; 61 + }; 62 + }); 63 + }
+6
pkgs/development/lua-modules/overrides.nix
··· 363 ''; 364 }); 365 366 # aliases 367 cjson = super.lua-cjson; 368 }
··· 363 ''; 364 }); 365 366 + # TODO just while testing, remove afterwards 367 + # toVimPlugin should do it instead 368 + gitsigns-nvim = super.gitsigns-nvim.overrideAttrs(oa: { 369 + nativeBuildInputs = oa.nativeBuildInputs or [] ++ [ pkgs.vimUtils.vimGenDocHook ]; 370 + }); 371 + 372 # aliases 373 cjson = super.lua-cjson; 374 }
+2 -2
pkgs/development/python-modules/Markups/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "Markups"; 13 - version = "3.1.1"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - sha256 = "e309d79dde0935576ce1def6752f2127a12e2c2ea2ae8b0c69f99ff8bc12181d"; 18 }; 19 20 checkInputs = [ markdown docutils pygments pyyaml ];
··· 10 11 buildPythonPackage rec { 12 pname = "Markups"; 13 + version = "3.1.2"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + sha256 = "2954d53656d9ec84f2f6c077e91a1de534e05647f20d327757283bbb5a857770"; 18 }; 19 20 checkInputs = [ markdown docutils pygments pyyaml ];
+2 -2
pkgs/development/python-modules/asyncssh/default.nix
··· 18 19 buildPythonPackage rec { 20 pname = "asyncssh"; 21 - version = "2.7.0"; 22 disabled = pythonOlder "3.6"; 23 24 src = fetchPypi { 25 inherit pname version; 26 - sha256 = "sha256-GFAT2OZ3R8PA8BtyQWuL14QX2h30jHH3baU8YH71QbY="; 27 }; 28 29 propagatedBuildInputs = [
··· 18 19 buildPythonPackage rec { 20 pname = "asyncssh"; 21 + version = "2.7.1"; 22 disabled = pythonOlder "3.6"; 23 24 src = fetchPypi { 25 inherit pname version; 26 + sha256 = "8c8852eb00a09e45c403086e10965cb6d13e5cd203a1688d91e9c81aa080d052"; 27 }; 28 29 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-keyvault/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "azure-mgmt-keyvault"; 15 - version = "9.0.0"; 16 17 src = fetchPypi { 18 inherit pname version; 19 extension = "zip"; 20 - sha256 = "2890c489289b8a0bf833852014f2f494eb96873834896910ddfa58cfa97b90da"; 21 }; 22 23 propagatedBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "azure-mgmt-keyvault"; 15 + version = "9.1.0"; 16 17 src = fetchPypi { 18 inherit pname version; 19 extension = "zip"; 20 + sha256 = "cd35e81c4a3cf812ade4bdcf1f7ccf4b5b78a801ef967340012a6ac9fe61ded2"; 21 }; 22 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-netapp/default.nix
··· 6 }: 7 8 buildPythonPackage rec { 9 - version = "4.0.0"; 10 pname = "azure-mgmt-netapp"; 11 disabled = isPy27; 12 13 src = fetchPypi { 14 inherit pname version; 15 - sha256 = "7195e413a0764684cd42bec9e429c13c290db9ab5c465dbed586a6f6d0ec8a42"; 16 extension = "zip"; 17 }; 18
··· 6 }: 7 8 buildPythonPackage rec { 9 + version = "5.0.0"; 10 pname = "azure-mgmt-netapp"; 11 disabled = isPy27; 12 13 src = fetchPypi { 14 inherit pname version; 15 + sha256 = "2d5163c49f91636809ef1cacd48d91130803594855f43afe0f2b31fc5f02d53c"; 16 extension = "zip"; 17 }; 18
+2 -2
pkgs/development/python-modules/azure-mgmt-rdbms/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "azure-mgmt-rdbms"; 14 - version = "9.0.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 extension = "zip"; 19 - sha256 = "36a508fe40f904723485586e9088092e6f65cdb82bc86efc42d615499c256829"; 20 }; 21 22 propagatedBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "azure-mgmt-rdbms"; 14 + version = "9.1.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 extension = "zip"; 19 + sha256 = "f738d9e6db8f6da6bb4e84e59dd0548c8adef948357a447337e78d1035ac960a"; 20 }; 21 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-relay/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "azure-mgmt-relay"; 14 - version = "1.0.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 extension = "zip"; 19 - sha256 = "38f6dd9d122a316efa921e72933e01ec4d76ed39d4682655b17a997079e8b20a"; 20 }; 21 22 propagatedBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "azure-mgmt-relay"; 14 + version = "1.1.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 extension = "zip"; 19 + sha256 = "c93b7550e64b6734bf23ce57ca974a3ea929b734c58d1fe3669728c4fd2d2eb3"; 20 }; 21 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-resource/default.nix
··· 8 9 10 buildPythonPackage rec { 11 - version = "19.0.0"; 12 pname = "azure-mgmt-resource"; 13 disabled = !isPy3k; 14 15 src = fetchPypi { 16 inherit pname version; 17 extension = "zip"; 18 - sha256 = "bbb60bb9419633c2339569d4e097908638c7944e782b5aef0f5d9535085a9100"; 19 }; 20 21 propagatedBuildInputs = [
··· 8 9 10 buildPythonPackage rec { 11 + version = "20.0.0"; 12 pname = "azure-mgmt-resource"; 13 disabled = !isPy3k; 14 15 src = fetchPypi { 16 inherit pname version; 17 extension = "zip"; 18 + sha256 = "622dca4484be64f9f5ce335d327dffabf3e71e14e8a3f4a1051dc85a5c3ebbca"; 19 }; 20 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "azure-mgmt-servicefabric"; 15 - version = "1.0.0"; 16 17 src = fetchPypi { 18 inherit pname version; 19 extension = "zip"; 20 - sha256 = "de35e117912832c1a9e93109a8d24cab94f55703a9087b2eb1c5b0655b3b1913"; 21 }; 22 23 propagatedBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "azure-mgmt-servicefabric"; 15 + version = "2.0.0"; 16 17 src = fetchPypi { 18 inherit pname version; 19 extension = "zip"; 20 + sha256 = "4c6f3de2526a27af78aecae248604f941c4d059fbcf2265912a380e3c788735d"; 21 }; 22 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/blocksat-cli/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "blocksat-cli"; 16 - version = "0.3.2"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - sha256 = "06ky5kahh8dm1d7ckid3fdwizvkh3g4aycm39r00kwxdlfca7bgf"; 21 }; 22 23 propagatedBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "blocksat-cli"; 16 + version = "0.4.0"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + sha256 = "sha256-g/V1//Jo8wnoOHEotF2ElVm+vzTIwZ6EzssJg6WJw6g="; 21 }; 22 23 propagatedBuildInputs = [
+1 -1
pkgs/development/python-modules/datasets/default.nix
··· 53 changelog = "https://github.com/huggingface/datasets/releases/tag/${version}"; 54 license = licenses.asl20; 55 platforms = platforms.unix; 56 - maintainers = with maintainers; [ danieldk ]; 57 }; 58 }
··· 53 changelog = "https://github.com/huggingface/datasets/releases/tag/${version}"; 54 license = licenses.asl20; 55 platforms = platforms.unix; 56 + maintainers = with maintainers; [ ]; 57 }; 58 }
+1 -1
pkgs/development/python-modules/dawg-python/default.nix
··· 19 description = "Pure Python reader for DAWGs created by dawgdic C++ library or DAWG Python extension"; 20 homepage = "https://github.com/pytries/DAWG-Python"; 21 license = licenses.mit; 22 - maintainers = with maintainers; [ danieldk ]; 23 }; 24 }
··· 19 description = "Pure Python reader for DAWGs created by dawgdic C++ library or DAWG Python extension"; 20 homepage = "https://github.com/pytries/DAWG-Python"; 21 license = licenses.mit; 22 + maintainers = with maintainers; [ ]; 23 }; 24 }
+2 -2
pkgs/development/python-modules/django-mailman3/default.nix
··· 4 5 buildPythonPackage rec { 6 pname = "django-mailman3"; 7 - version = "1.3.5"; 8 9 src = fetchPypi { 10 inherit pname version; 11 - sha256 = "368595b3c2623edeaca5beea5f12887424c384edd6f7052cf442443075084313"; 12 }; 13 14 propagatedBuildInputs = [
··· 4 5 buildPythonPackage rec { 6 pname = "django-mailman3"; 7 + version = "1.3.6"; 8 9 src = fetchPypi { 10 inherit pname version; 11 + sha256 = "cd3cb1ac26a3658bd694b82f00eaab98903bd2edff34956e90c187c9ab5c0dae"; 12 }; 13 14 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/dropbox/default.nix
··· 3 4 buildPythonPackage rec { 5 pname = "dropbox"; 6 - version = "11.18.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 - sha256 = "fa512c87521809e93502fc6a27b1d57ffbcef2281468c8f93575eab6a9ad5f05"; 11 }; 12 13 postPatch = ''
··· 3 4 buildPythonPackage rec { 5 pname = "dropbox"; 6 + version = "11.19.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 + sha256 = "a56d200c47d7cd19f697e232a616342b224079f43abf4748bc55fb0c1de4346f"; 11 }; 12 13 postPatch = ''
+1 -1
pkgs/development/python-modules/fasttext/default.nix
··· 17 description = "Python module for text classification and representation learning"; 18 homepage = "https://fasttext.cc/"; 19 license = licenses.mit; 20 - maintainers = with maintainers; [ danieldk ]; 21 }; 22 }
··· 17 description = "Python module for text classification and representation learning"; 18 homepage = "https://fasttext.cc/"; 19 license = licenses.mit; 20 + maintainers = with maintainers; [ ]; 21 }; 22 }
+1 -1
pkgs/development/python-modules/finalfusion/default.nix
··· 49 meta = with lib; { 50 description = "Python module for using finalfusion, word2vec, and fastText word embeddings"; 51 homepage = "https://github.com/finalfusion/finalfusion-python/"; 52 - maintainers = with maintainers; [ danieldk ]; 53 platforms = platforms.all; 54 license = licenses.blueOak100; 55 };
··· 49 meta = with lib; { 50 description = "Python module for using finalfusion, word2vec, and fastText word embeddings"; 51 homepage = "https://github.com/finalfusion/finalfusion-python/"; 52 + maintainers = with maintainers; [ ]; 53 platforms = platforms.all; 54 license = licenses.blueOak100; 55 };
+2 -2
pkgs/development/python-modules/flexmock/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "flexmock"; 9 - version = "0.10.8"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "6820031c39b298646194a3f0b2b693322bb7f44b39dbaf1c54b0ae68b3d768fa"; 14 }; 15 16 checkInputs = [ pytest ];
··· 6 7 buildPythonPackage rec { 8 pname = "flexmock"; 9 + version = "0.10.9"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "9c128b7cf31fac5340062c9c2cf1e0b12c601ee2d5c10ef39cc191036fb2e688"; 14 }; 15 16 checkInputs = [ pytest ];
+32
pkgs/development/python-modules/flynt/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchFromGitHub 5 + , astor 6 + , pytestCheckHook 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "flynt"; 11 + version = "0.66"; 12 + 13 + disabled = pythonOlder "3.6"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "ikamensh"; 17 + repo = "flynt"; 18 + rev = version; 19 + hash = "sha256-DV433wqLjF5k4g8J7rj5gZfaw+Y4/TDOoFKo3eKDjZ4="; 20 + }; 21 + 22 + propagatedBuildInputs = [ astor ]; 23 + 24 + checkInputs = [ pytestCheckHook ]; 25 + 26 + meta = with lib; { 27 + description = "command line tool to automatically convert a project's Python code from old format style strings into Python 3.6+'s f-strings"; 28 + homepage = "https://github.com/ikamensh/flynt"; 29 + license = licenses.mit; 30 + maintainers = with maintainers; [ cpcloud ]; 31 + }; 32 + }
+1 -1
pkgs/development/python-modules/huggingface-hub/default.nix
··· 34 description = "Download and publish models and other files on the huggingface.co hub"; 35 changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/${version}"; 36 license = licenses.asl20; 37 - maintainers = with maintainers; [ danieldk ]; 38 }; 39 }
··· 34 description = "Download and publish models and other files on the huggingface.co hub"; 35 changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/${version}"; 36 license = licenses.asl20; 37 + maintainers = with maintainers; [ ]; 38 }; 39 }
+2 -2
pkgs/development/python-modules/mutf8/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "mutf8"; 10 - version = "1.0.4"; 11 12 disabled = pythonOlder "3.6"; 13 ··· 15 owner = "TkTech"; 16 repo = pname; 17 rev = "v${version}"; 18 - sha256 = "sha256-99NL4mCvzQmDvaOI2M9PA8UUwIrrEtVHRmJqkd6hNd0="; 19 }; 20 21 checkInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "mutf8"; 10 + version = "1.0.5"; 11 12 disabled = pythonOlder "3.6"; 13 ··· 15 owner = "TkTech"; 16 repo = pname; 17 rev = "v${version}"; 18 + sha256 = "0blp6gb7q3f7if326xard8zlfg2rcmb3a7mxvaxgkvxigipjb9af"; 19 }; 20 21 checkInputs = [
+3 -3
pkgs/development/python-modules/numcodecs/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "numcodecs"; 16 - version = "0.9.0"; 17 disabled = isPy27; 18 19 src = fetchPypi { 20 inherit pname version; 21 - sha256 = "3c23803671a3d920efa175af5828870bdff60ba2a3fcbf1d5b48bb81d68219c6"; 22 }; 23 24 nativeBuildInputs = [ ··· 49 ]; 50 51 meta = with lib;{ 52 - homepage = "https://github.com/alimanfoo/numcodecs"; 53 license = licenses.mit; 54 description = "Buffer compression and transformation codecs for use in data storage and communication applications"; 55 maintainers = [ maintainers.costrouc ];
··· 13 14 buildPythonPackage rec { 15 pname = "numcodecs"; 16 + version = "0.9.1"; 17 disabled = isPy27; 18 19 src = fetchPypi { 20 inherit pname version; 21 + sha256 = "35adbcc746b95e3ac92e949a161811f5aa2602b9eb1ef241b5ea6f09bb220997"; 22 }; 23 24 nativeBuildInputs = [ ··· 49 ]; 50 51 meta = with lib;{ 52 + homepage = "https://github.com/zarr-developers/numcodecs"; 53 license = licenses.mit; 54 description = "Buffer compression and transformation codecs for use in data storage and communication applications"; 55 maintainers = [ maintainers.costrouc ];
+2 -2
pkgs/development/python-modules/pex/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "pex"; 9 - version = "2.1.48"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "5f6a489075c5bbecdb36a42249cd52cfd882e205242f80a1f1e2294951ab46e7"; 14 }; 15 16 nativeBuildInputs = [ setuptools ];
··· 6 7 buildPythonPackage rec { 8 pname = "pex"; 9 + version = "2.1.49"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "af536388eeede93111d8ef0af4a80cbb3d847c1a1470c6f34f3abe83deac1b91"; 14 }; 15 16 nativeBuildInputs = [ setuptools ];
+1 -1
pkgs/development/python-modules/pymorphy2/default.nix
··· 30 description = "Morphological analyzer/inflection engine for Russian and Ukrainian"; 31 homepage = "https://github.com/kmike/pymorphy2"; 32 license = licenses.mit; 33 - maintainers = with maintainers; [ danieldk ]; 34 }; 35 }
··· 30 description = "Morphological analyzer/inflection engine for Russian and Ukrainian"; 31 homepage = "https://github.com/kmike/pymorphy2"; 32 license = licenses.mit; 33 + maintainers = with maintainers; [ ]; 34 }; 35 }
+1 -1
pkgs/development/python-modules/pymorphy2/dicts-ru.nix
··· 18 description = "Russian dictionaries for pymorphy2"; 19 homepage = "https://github.com/kmike/pymorphy2-dicts/"; 20 license = licenses.mit; 21 - maintainers = with maintainers; [ danieldk ]; 22 }; 23 }
··· 18 description = "Russian dictionaries for pymorphy2"; 19 homepage = "https://github.com/kmike/pymorphy2-dicts/"; 20 license = licenses.mit; 21 + maintainers = with maintainers; [ ]; 22 }; 23 }
+1 -1
pkgs/development/python-modules/pytorch/bin.nix
··· 67 changelog = "https://github.com/pytorch/pytorch/releases/tag/v${version}"; 68 license = licenses.unfree; # Includes CUDA and Intel MKL. 69 platforms = platforms.linux; 70 - maintainers = with maintainers; [ danieldk ]; 71 }; 72 }
··· 67 changelog = "https://github.com/pytorch/pytorch/releases/tag/v${version}"; 68 license = licenses.unfree; # Includes CUDA and Intel MKL. 69 platforms = platforms.linux; 70 + maintainers = with maintainers; [ ]; 71 }; 72 }
+1 -1
pkgs/development/python-modules/pytorch/default.nix
··· 313 homepage = "https://pytorch.org/"; 314 license = licenses.bsd3; 315 platforms = with platforms; linux ++ lib.optionals (!cudaSupport) darwin; 316 - maintainers = with maintainers; [ danieldk teh thoughtpolice tscholak ]; # tscholak esp. for darwin-related builds 317 # error: use of undeclared identifier 'noU'; did you mean 'no'? 318 broken = stdenv.isDarwin; 319 };
··· 313 homepage = "https://pytorch.org/"; 314 license = licenses.bsd3; 315 platforms = with platforms; linux ++ lib.optionals (!cudaSupport) darwin; 316 + maintainers = with maintainers; [ teh thoughtpolice tscholak ]; # tscholak esp. for darwin-related builds 317 # error: use of undeclared identifier 'noU'; did you mean 'no'? 318 broken = stdenv.isDarwin; 319 };
+2 -2
pkgs/development/python-modules/relatorio/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "relatorio"; 5 - version = "0.9.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "1d5d08f5323a1cdf6d860cd13c3408482a822d9924899927a8c7cd2ebeaa8699"; 10 }; 11 12 propagatedBuildInputs = [
··· 2 3 buildPythonPackage rec { 4 pname = "relatorio"; 5 + version = "0.10.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "6b9390eab696bdf569639ff58794fb9ef8ff19f94feea5b505a6ba06d0cfd026"; 10 }; 11 12 propagatedBuildInputs = [
+2 -3
pkgs/development/python-modules/setuptools-rust/default.nix
··· 23 24 propagatedBuildInputs = [ semantic-version setuptools toml ]; 25 26 - # no tests 27 doCheck = false; 28 pythonImportsCheck = [ "setuptools_rust" ]; 29 30 - passthru.tests.pyo3 = callPackage ./pyo3-test {}; 31 32 meta = with lib; { 33 description = "Setuptools plugin for Rust support"; 34 homepage = "https://github.com/PyO3/setuptools-rust"; 35 changelog = "https://github.com/PyO3/setuptools-rust/releases/tag/v${version}"; 36 license = licenses.mit; 37 - maintainers = with maintainers; [ danieldk ]; 38 }; 39 }
··· 23 24 propagatedBuildInputs = [ semantic-version setuptools toml ]; 25 26 doCheck = false; 27 pythonImportsCheck = [ "setuptools_rust" ]; 28 29 + passthru.tests.pyo3 = callPackage ./pyo3-test { }; 30 31 meta = with lib; { 32 description = "Setuptools plugin for Rust support"; 33 homepage = "https://github.com/PyO3/setuptools-rust"; 34 changelog = "https://github.com/PyO3/setuptools-rust/releases/tag/v${version}"; 35 license = licenses.mit; 36 + maintainers = with maintainers; [ SuperSandro2000 ]; 37 }; 38 }
+1 -1
pkgs/development/python-modules/somajo/default.nix
··· 21 description = "Tokenizer and sentence splitter for German and English web texts"; 22 homepage = "https://github.com/tsproisl/SoMaJo"; 23 license = licenses.gpl3Plus; 24 - maintainers = with maintainers; [ danieldk ]; 25 }; 26 }
··· 21 description = "Tokenizer and sentence splitter for German and English web texts"; 22 homepage = "https://github.com/tsproisl/SoMaJo"; 23 license = licenses.gpl3Plus; 24 + maintainers = with maintainers; [ ]; 25 }; 26 }
+1 -1
pkgs/development/python-modules/spacy-alignments/default.nix
··· 55 description = "Align tokenizations for spaCy and transformers"; 56 homepage = "https://github.com/explosion/spacy-alignments"; 57 license = licenses.mit; 58 - maintainers = with maintainers; [ danieldk ]; 59 }; 60 }
··· 55 description = "Align tokenizations for spaCy and transformers"; 56 homepage = "https://github.com/explosion/spacy-alignments"; 57 license = licenses.mit; 58 + maintainers = with maintainers; [ ]; 59 }; 60 }
+1 -1
pkgs/development/python-modules/spacy-pkuseg/default.nix
··· 33 description = "Toolkit for multi-domain Chinese word segmentation (spaCy fork)"; 34 homepage = "https://github.com/explosion/spacy-pkuseg"; 35 license = licenses.mit; 36 - maintainers = with maintainers; [ danieldk ]; 37 }; 38 }
··· 33 description = "Toolkit for multi-domain Chinese word segmentation (spaCy fork)"; 34 homepage = "https://github.com/explosion/spacy-pkuseg"; 35 license = licenses.mit; 36 + maintainers = with maintainers; [ ]; 37 }; 38 }
+1 -1
pkgs/development/python-modules/spacy-transformers/default.nix
··· 37 description = "spaCy pipelines for pretrained BERT, XLNet and GPT-2"; 38 homepage = "https://github.com/explosion/spacy-transformers"; 39 license = licenses.mit; 40 - maintainers = with maintainers; [ danieldk ]; 41 }; 42 }
··· 37 description = "spaCy pipelines for pretrained BERT, XLNet and GPT-2"; 38 homepage = "https://github.com/explosion/spacy-transformers"; 39 license = licenses.mit; 40 + maintainers = with maintainers; [ ]; 41 }; 42 }
+1 -1
pkgs/development/python-modules/tokenizers/default.nix
··· 115 description = "Fast State-of-the-Art Tokenizers optimized for Research and Production"; 116 license = licenses.asl20; 117 platforms = platforms.unix; 118 - maintainers = with maintainers; [ danieldk ]; 119 }; 120 }
··· 115 description = "Fast State-of-the-Art Tokenizers optimized for Research and Production"; 116 license = licenses.asl20; 117 platforms = platforms.unix; 118 + maintainers = with maintainers; [ ]; 119 }; 120 }
+1 -1
pkgs/development/python-modules/torchvision/bin.nix
··· 54 changelog = "https://github.com/pytorch/vision/releases/tag/v${version}"; 55 license = licenses.bsd3; 56 platforms = platforms.linux; 57 - maintainers = with maintainers; [ danieldk ]; 58 }; 59 }
··· 54 changelog = "https://github.com/pytorch/vision/releases/tag/v${version}"; 55 license = licenses.bsd3; 56 platforms = platforms.linux; 57 + maintainers = with maintainers; [ ]; 58 }; 59 }
+1 -1
pkgs/development/python-modules/transformers/default.nix
··· 55 changelog = "https://github.com/huggingface/transformers/releases/tag/v${version}"; 56 license = licenses.asl20; 57 platforms = platforms.unix; 58 - maintainers = with maintainers; [ danieldk pashashocky ]; 59 }; 60 }
··· 55 changelog = "https://github.com/huggingface/transformers/releases/tag/v${version}"; 56 license = licenses.asl20; 57 platforms = platforms.unix; 58 + maintainers = with maintainers; [ pashashocky ]; 59 }; 60 }
+2 -2
pkgs/development/python-modules/wordfreq/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "wordfreq"; 16 - version = "2.5"; 17 disabled = isPy27; 18 19 src = fetchFromGitHub { 20 owner = "LuminosoInsight"; 21 repo = "wordfreq"; 22 rev = "v${version}"; 23 - sha256 = "09wzraddbdw3781pk2sxlz8knax9jrcl24ymz54wx6sk0gvq95i7"; 24 }; 25 26 propagatedBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "wordfreq"; 16 + version = "2.5.1"; 17 disabled = isPy27; 18 19 src = fetchFromGitHub { 20 owner = "LuminosoInsight"; 21 repo = "wordfreq"; 22 rev = "v${version}"; 23 + sha256 = "1lw7kbsydd89hybassnnhqnj9s5ch9wvgd6pla96198nrq9mj7fw"; 24 }; 25 26 propagatedBuildInputs = [
+3 -3
pkgs/development/tools/azcopy/default.nix
··· 2 3 buildGoModule rec { 4 pname = "azure-storage-azcopy"; 5 - version = "10.11.0"; 6 7 src = fetchFromGitHub { 8 owner = "Azure"; 9 repo = "azure-storage-azcopy"; 10 rev = "v${version}"; 11 - sha256 = "sha256-mti93UDFgHQKJt3z1sjCkT71TZtwh2YnhTyUCi5tS5c="; 12 }; 13 14 subPackages = [ "." ]; 15 16 - vendorSha256 = "sha256-NEW1qXOxFPmDFUTciJkqwutZd3+sVkHgoZgQO8Gsdwk="; 17 18 doCheck = false; 19
··· 2 3 buildGoModule rec { 4 pname = "azure-storage-azcopy"; 5 + version = "10.12.1"; 6 7 src = fetchFromGitHub { 8 owner = "Azure"; 9 repo = "azure-storage-azcopy"; 10 rev = "v${version}"; 11 + sha256 = "sha256-kujY7Qgis2pie0WVQAokVopD3TYkjjBnqhw6XZTG16o="; 12 }; 13 14 subPackages = [ "." ]; 15 16 + vendorSha256 = "sha256-4Jz57VjdQX+LJexEZau4pd8nIQPt0HGzCjHRj7uPox4="; 17 18 doCheck = false; 19
+3 -3
pkgs/development/tools/golangci-lint/default.nix
··· 2 3 buildGoModule rec { 4 pname = "golangci-lint"; 5 - version = "1.42.0"; 6 7 src = fetchFromGitHub { 8 owner = "golangci"; 9 repo = "golangci-lint"; 10 rev = "v${version}"; 11 - sha256 = "sha256-xwJZfWDtA/6HkYZmGyhL/44xU8qLmJ2kk3Uqft0yivE="; 12 }; 13 14 - vendorSha256 = "sha256-lOVGyxQcWG99hO+Eff2cNA5gW4DhsDrBY5Ejj0s4v4Q="; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "golangci-lint"; 5 + version = "1.42.1"; 6 7 src = fetchFromGitHub { 8 owner = "golangci"; 9 repo = "golangci-lint"; 10 rev = "v${version}"; 11 + sha256 = "sha256-lhpljK4odn+j+Cb3sp1/cMnBRrLNhWxVoRIO2PDqMHo="; 12 }; 13 14 + vendorSha256 = "sha256-Z4lNGWLKagKHbVOy6MiKyuSlXwUCYlkvnvk5zS4vl1A="; 15 16 doCheck = false; 17
+1 -1
pkgs/development/tools/rust/cargo-asm/default.nix
··· 23 description = "Display the assembly or LLVM-IR generated for Rust source code"; 24 homepage = "https://github.com/gnzlbg/cargo-asm"; 25 license = licenses.mit; 26 - maintainers = [ maintainers.danieldk ]; 27 }; 28 }
··· 23 description = "Display the assembly or LLVM-IR generated for Rust source code"; 24 homepage = "https://github.com/gnzlbg/cargo-asm"; 25 license = licenses.mit; 26 + maintainers = [ ]; 27 }; 28 }
+1 -1
pkgs/development/tools/rust/maturin/default.nix
··· 44 ''; 45 homepage = "https://github.com/PyO3/maturin"; 46 license = licenses.asl20; 47 - maintainers = [ maintainers.danieldk ]; 48 }; 49 }
··· 44 ''; 45 homepage = "https://github.com/PyO3/maturin"; 46 license = licenses.asl20; 47 + maintainers = [ ]; 48 }; 49 }
+1 -1
pkgs/development/tools/rust/maturin/pyo3-test/generic.nix
··· 40 description = "PyO3 word count example"; 41 homepage = "https://github.com/PyO3/pyo3"; 42 license = licenses.asl20; 43 - maintainers = [ maintainers.danieldk ]; 44 }; 45 }
··· 40 description = "PyO3 word count example"; 41 homepage = "https://github.com/PyO3/pyo3"; 42 license = licenses.asl20; 43 + maintainers = [ ]; 44 }; 45 }
+40 -11
pkgs/games/eduke32/default.nix
··· 1 { lib, stdenv, fetchurl, makeWrapper, pkg-config, nasm, makeDesktopItem 2 , alsa-lib, flac, gtk2, libvorbis, libvpx, libGLU, libGL 3 - , SDL2, SDL2_mixer }: 4 5 let 6 desktopItem = makeDesktopItem { ··· 16 17 in stdenv.mkDerivation rec { 18 pname = "eduke32"; 19 - version = "20210722"; 20 - rev = "9484"; 21 - revExtra = "f3fea8c15"; 22 23 src = fetchurl { 24 - url = "http://dukeworld.duke4.net/eduke32/synthesis/${version}-${rev}-${revExtra}/eduke32_src_${version}-${rev}-${revExtra}.tar.xz"; 25 - sha256 = "0fdl2i465cl5x7129772ksx97lvim98m9009q5cfmf6scagj9pvz"; 26 }; 27 28 - buildInputs = [ alsa-lib flac gtk2 libvorbis libvpx libGL libGLU SDL2 SDL2_mixer ]; 29 30 nativeBuildInputs = [ makeWrapper pkg-config ] 31 ++ lib.optional (stdenv.hostPlatform.system == "i686-linux") nasm; 32 33 - postPatch = '' 34 substituteInPlace source/build/src/glbuild.cpp \ 35 --replace libGLU.so ${libGLU}/lib/libGLU.so 36 ··· 44 45 makeFlags = [ 46 "SDLCONFIG=${SDL2}/bin/sdl2-config" 47 ]; 48 49 enableParallelBuilding = true; ··· 52 runHook preInstall 53 54 install -Dm755 -t $out/bin eduke32 mapster32 55 - 56 makeWrapper $out/bin/eduke32 $out/bin/${wrapper} \ 57 --set-default EDUKE32_DATA_DIR /var/lib/games/eduke32 \ 58 --add-flags '-g "$EDUKE32_DATA_DIR/DUKE3D.GRP"' ··· 60 cp -rv ${desktopItem}/share $out 61 substituteInPlace $out/share/applications/eduke32.desktop \ 62 --subst-var out 63 64 runHook postInstall 65 ''; 66 ··· 68 description = "Enhanched port of Duke Nukem 3D for various platforms"; 69 homepage = "http://eduke32.com"; 70 license = licenses.gpl2Plus; 71 - maintainers = with maintainers; [ sander ]; 72 - # Darwin is untested (supported by upstream) 73 platforms = platforms.all; 74 }; 75 }
··· 1 { lib, stdenv, fetchurl, makeWrapper, pkg-config, nasm, makeDesktopItem 2 , alsa-lib, flac, gtk2, libvorbis, libvpx, libGLU, libGL 3 + , SDL2, SDL2_mixer 4 + , AGL, Cocoa, GLUT, OpenGL 5 + }: 6 7 let 8 desktopItem = makeDesktopItem { ··· 18 19 in stdenv.mkDerivation rec { 20 pname = "eduke32"; 21 + version = "20210910"; 22 + rev = "9603"; 23 + revExtra = "6c289cce4"; 24 25 src = fetchurl { 26 + url = "https://dukeworld.com/eduke32/synthesis/${version}-${rev}-${revExtra}/eduke32_src_${version}-${rev}-${revExtra}.tar.xz"; 27 + sha256 = "sha256-/NQMsmT9z2N3KWBrP8hlGngQKJUgSP+vrNoFqJscRCk="; 28 }; 29 30 + buildInputs = [ 31 + flac 32 + libvorbis 33 + libvpx 34 + SDL2 35 + SDL2_mixer 36 + ] ++ lib.optionals stdenv.isLinux [ 37 + alsa-lib 38 + gtk2 39 + libGL 40 + libGLU 41 + ] ++ lib.optionals stdenv.isDarwin [ 42 + AGL 43 + Cocoa 44 + GLUT 45 + OpenGL 46 + ]; 47 48 nativeBuildInputs = [ makeWrapper pkg-config ] 49 ++ lib.optional (stdenv.hostPlatform.system == "i686-linux") nasm; 50 51 + postPatch = lib.optionalString stdenv.isLinux '' 52 substituteInPlace source/build/src/glbuild.cpp \ 53 --replace libGLU.so ${libGLU}/lib/libGLU.so 54 ··· 62 63 makeFlags = [ 64 "SDLCONFIG=${SDL2}/bin/sdl2-config" 65 + ] ++ lib.optionals stdenv.isDarwin [ 66 + # broken, see: https://github.com/NixOS/nixpkgs/issues/19098 67 + "LTO=0" 68 ]; 69 70 enableParallelBuilding = true; ··· 73 runHook preInstall 74 75 install -Dm755 -t $out/bin eduke32 mapster32 76 + '' + lib.optionalString stdenv.isLinux '' 77 makeWrapper $out/bin/eduke32 $out/bin/${wrapper} \ 78 --set-default EDUKE32_DATA_DIR /var/lib/games/eduke32 \ 79 --add-flags '-g "$EDUKE32_DATA_DIR/DUKE3D.GRP"' ··· 81 cp -rv ${desktopItem}/share $out 82 substituteInPlace $out/share/applications/eduke32.desktop \ 83 --subst-var out 84 + '' + lib.optionalString stdenv.isDarwin '' 85 + mkdir -p $out/Applications/EDuke32.app/Contents/MacOS 86 + mkdir -p $out/Applications/Mapster32.app/Contents/MacOS 87 + 88 + cp -r platform/Apple/bundles/EDuke32.app/* $out/Applications/EDuke32.app/ 89 + cp -r platform/Apple/bundles/Mapster32.app/* $out/Applications/Mapster32.app/ 90 91 + ln -sf $out/bin/eduke32 $out/Applications/EDuke32.app/Contents/MacOS/eduke32 92 + ln -sf $out/bin/mapster32 $out/Applications/Mapster32.app/Contents/MacOS/mapster32 93 + '' + '' 94 runHook postInstall 95 ''; 96 ··· 98 description = "Enhanched port of Duke Nukem 3D for various platforms"; 99 homepage = "http://eduke32.com"; 100 license = licenses.gpl2Plus; 101 + maintainers = with maintainers; [ mikroskeem sander ]; 102 platforms = platforms.all; 103 }; 104 }
+3 -3
pkgs/games/mudlet/default.nix
··· 2 , boost, libGLU, lua, cmake, which, pkg-config, }: 3 4 let 5 - luaEnv = lua.withPackages(ps: with ps; [ luazip luafilesystem lrexlib-pcre luasql-sqlite3 lua-yajl luautf8 ]); 6 in 7 stdenv.mkDerivation rec { 8 pname = "mudlet"; ··· 39 cp -r ../mudlet.png $out/share/pixmaps/ 40 41 makeQtWrapper $out/mudlet $out/bin/mudlet \ 42 - --set LUA_CPATH "${luaEnv}/lib/lua/${lua.luaversion}/?.so" \ 43 - --prefix LUA_PATH : "$NIX_LUA_PATH" \ 44 --prefix LD_LIBRARY_PATH : "${libsForQt5.qtkeychain}/lib/" \ 45 --run "cd $out"; 46 '';
··· 2 , boost, libGLU, lua, cmake, which, pkg-config, }: 3 4 let 5 + luaEnv = lua.withPackages(ps: with ps; [ 6 + luazip luafilesystem lrexlib-pcre luasql-sqlite3 lua-yajl luautf8 7 + ]); 8 in 9 stdenv.mkDerivation rec { 10 pname = "mudlet"; ··· 41 cp -r ../mudlet.png $out/share/pixmaps/ 42 43 makeQtWrapper $out/mudlet $out/bin/mudlet \ 44 --prefix LD_LIBRARY_PATH : "${libsForQt5.qtkeychain}/lib/" \ 45 --run "cd $out"; 46 '';
+54 -9
pkgs/games/quakespasm/default.nix
··· 1 - { lib, stdenv, SDL, fetchurl, gzip, libvorbis, libmad, copyDesktopItems, makeDesktopItem }: 2 3 stdenv.mkDerivation rec { 4 pname = "quakespasm"; 5 - majorVersion = "0.93"; 6 - version = "${majorVersion}.2"; 7 8 src = fetchurl { 9 - url = "mirror://sourceforge/quakespasm/quakespasm-${version}.tgz"; 10 - sha256 = "0qm0j5drybvvq8xadfyppkpk3rxqsxbywzm6iwsjwdf0iia3gss5"; 11 }; 12 13 sourceRoot = "${pname}-${version}/Quake"; 14 15 nativeBuildInputs = [ copyDesktopItems ]; 16 buildInputs = [ 17 - gzip SDL libvorbis libmad 18 ]; 19 20 - buildFlags = [ "DO_USERDIRS=1" ]; 21 22 preInstall = '' 23 mkdir -p "$out/bin" 24 substituteInPlace Makefile --replace "/usr/local/games" "$out/bin" 25 ''; 26 27 enableParallelBuilding = true; ··· 47 and smoother mouse input - though no CD support. 48 ''; 49 50 - platforms = platforms.linux; 51 - maintainers = with maintainers; [ m3tti ]; 52 }; 53 }
··· 1 + { lib, stdenv, SDL, SDL2, fetchurl, gzip, libvorbis, libmad 2 + , Cocoa, CoreAudio, CoreFoundation, IOKit, OpenGL 3 + , copyDesktopItems, makeDesktopItem 4 + , useSDL2 ? stdenv.isDarwin # TODO: CoreAudio fails to initialize with SDL 1.x for some reason. 5 + }: 6 7 stdenv.mkDerivation rec { 8 pname = "quakespasm"; 9 + version = "0.94.1"; 10 11 src = fetchurl { 12 + url = "mirror://sourceforge/quakespasm/quakespasm-${version}.tar.gz"; 13 + sha256 = "19grpvsk3ikjypx9j0gpfsx5wanrqxkgf8dwl9h6ab5c8wwmjcjp"; 14 }; 15 16 sourceRoot = "${pname}-${version}/Quake"; 17 18 + patches = lib.optionals stdenv.isDarwin [ 19 + # Makes Darwin Makefile use system libraries instead of ones from app bundle 20 + ./quakespasm-darwin-makefile-improvements.patch 21 + ]; 22 + 23 nativeBuildInputs = [ copyDesktopItems ]; 24 buildInputs = [ 25 + gzip libvorbis libmad (if useSDL2 then SDL2 else SDL) 26 + ] ++ lib.optionals stdenv.isDarwin [ 27 + Cocoa CoreAudio IOKit OpenGL 28 + ] ++ lib.optionals (stdenv.isDarwin && useSDL2) [ 29 + CoreFoundation 30 + ]; 31 + 32 + buildFlags = [ 33 + "DO_USERDIRS=1" 34 + # Makefile defaults, set here to enforce consistency on Darwin build 35 + "USE_CODEC_WAVE=1" 36 + "USE_CODEC_MP3=1" 37 + "USE_CODEC_VORBIS=1" 38 + "USE_CODEC_FLAC=0" 39 + "USE_CODEC_OPUS=0" 40 + "USE_CODEC_MIKMOD=0" 41 + "USE_CODEC_UMX=0" 42 + "MP3LIB=mad" 43 + "VORBISLIB=vorbis" 44 + ] ++ lib.optionals useSDL2 [ 45 + "SDL_CONFIG=sdl2-config" 46 + "USE_SDL2=1" 47 ]; 48 49 + makefile = if (stdenv.isDarwin) then "Makefile.darwin" else "Makefile"; 50 51 preInstall = '' 52 mkdir -p "$out/bin" 53 substituteInPlace Makefile --replace "/usr/local/games" "$out/bin" 54 + substituteInPlace Makefile.darwin --replace "/usr/local/games" "$out/bin" 55 + ''; 56 + 57 + postInstall = lib.optionalString stdenv.isDarwin '' 58 + # Let's build app bundle 59 + mkdir -p $out/Applications/Quake.app/Contents/MacOS 60 + mkdir -p $out/Applications/Quake.app/Contents/Resources 61 + cp ../MacOSX/Info.plist $out/Applications/Quake.app/Contents/ 62 + cp ../MacOSX/QuakeSpasm.icns $out/Applications/Quake.app/Contents/Resources/ 63 + cp -r ../MacOSX/English.lproj $out/Applications/Quake.app/Contents/Resources/ 64 + ln -sf $out/bin/quake $out/Applications/Quake.app/Contents/MacOS/quake 65 + 66 + substituteInPlace $out/Applications/Quake.app/Contents/Info.plist \ 67 + --replace '>''${EXECUTABLE_NAME}' '>quake' 68 + substituteInPlace $out/Applications/Quake.app/Contents/Info.plist \ 69 + --replace '>''${PRODUCT_NAME}' '>QuakeSpasm' 70 ''; 71 72 enableParallelBuilding = true; ··· 92 and smoother mouse input - though no CD support. 93 ''; 94 95 + platforms = platforms.unix; 96 + maintainers = with maintainers; [ mikroskeem m3tti ]; 97 }; 98 }
+92
pkgs/games/quakespasm/quakespasm-darwin-makefile-improvements.patch
···
··· 1 + --- a/Makefile.darwin 2021-09-12 14:42:51.000000000 +0300 2 + +++ b/Makefile.darwin 2021-09-12 15:09:16.000000000 +0300 3 + @@ -49,6 +49,7 @@ 4 + LIPO ?= lipo 5 + 6 + STRIP ?= strip 7 + +PKG_CONFIG ?= pkg-config 8 + 9 + CPUFLAGS= 10 + LDFLAGS = 11 + @@ -84,9 +85,6 @@ 12 + USE_RPATH=1 13 + endif 14 + CFLAGS += $(CPUFLAGS) 15 + -ifeq ($(USE_RPATH),1) 16 + -LDFLAGS+=-Wl,-rpath,@executable_path/../Frameworks 17 + -endif 18 + 19 + ifneq ($(DEBUG),0) 20 + DFLAGS += -DDEBUG 21 + @@ -115,19 +113,14 @@ 22 + # not relying on sdl-config command and assuming 23 + # /Library/Frameworks/SDL.framework is available 24 + SDL_CFLAGS =-D_GNU_SOURCE=1 -D_THREAD_SAFE 25 + -SDL_CFLAGS+=-DSDL_FRAMEWORK -DNO_SDL_CONFIG 26 + ifeq ($(USE_SDL2),1) 27 + -SDL_FRAMEWORK_NAME = SDL2 28 + +SDL_CONFIG ?= sdl2-config 29 + else 30 + -SDL_FRAMEWORK_NAME = SDL 31 + -endif 32 + -# default to our local SDL[2].framework for build 33 + -SDL_FRAMEWORK_PATH ?=../MacOSX 34 + -ifneq ($(SDL_FRAMEWORK_PATH),) 35 + -SDL_LIBS +=-F$(SDL_FRAMEWORK_PATH) 36 + -SDL_CFLAGS+=-F$(SDL_FRAMEWORK_PATH) 37 + +SDL_CONFIG ?= sdl2-config 38 + endif 39 + -SDL_LIBS +=-Wl,-framework,$(SDL_FRAMEWORK_NAME) -Wl,-framework,Cocoa 40 + +SDL_CFLAGS := $(shell $(SDL_CONFIG) --cflags) 41 + +SDL_LIBS := $(shell $(SDL_CONFIG) --libs) 42 + +SDL_LIBS += -Wl,-framework,Cocoa 43 + 44 + NET_LIBS := 45 + 46 + @@ -164,38 +157,26 @@ 47 + endif 48 + ifeq ($(USE_CODEC_FLAC),1) 49 + CFLAGS+= -DUSE_CODEC_FLAC 50 + -CODEC_INC = -I../MacOSX/codecs/include 51 + -CODEC_LINK= -L../MacOSX/codecs/lib 52 + CODECLIBS+= -lFLAC 53 + endif 54 + ifeq ($(USE_CODEC_OPUS),1) 55 + -CFLAGS+= -DUSE_CODEC_OPUS 56 + -CODEC_INC = -I../MacOSX/codecs/include 57 + -CODEC_LINK= -L../MacOSX/codecs/lib 58 + -CODECLIBS+= -lopusfile -lopus -logg 59 + +CFLAGS+= -DUSE_CODEC_OPUS $(shell $(PKG_CONFIG) --cflags opusfile) 60 + +CODECLIBS+= $(shell $(PKG_CONFIG) --libs opusfile) 61 + endif 62 + ifeq ($(USE_CODEC_VORBIS),1) 63 + CFLAGS+= -DUSE_CODEC_VORBIS $(cpp_vorbisdec) 64 + -CODEC_INC = -I../MacOSX/codecs/include 65 + -CODEC_LINK= -L../MacOSX/codecs/lib 66 + CODECLIBS+= $(lib_vorbisdec) 67 + endif 68 + ifeq ($(USE_CODEC_MP3),1) 69 + CFLAGS+= -DUSE_CODEC_MP3 70 + -CODEC_INC = -I../MacOSX/codecs/include 71 + -CODEC_LINK= -L../MacOSX/codecs/lib 72 + CODECLIBS+= $(lib_mp3dec) 73 + endif 74 + ifeq ($(USE_CODEC_MIKMOD),1) 75 + CFLAGS+= -DUSE_CODEC_MIKMOD 76 + -CODEC_INC = -I../MacOSX/codecs/include 77 + -CODEC_LINK= -L../MacOSX/codecs/lib 78 + CODECLIBS+= -lmikmod 79 + endif 80 + ifeq ($(USE_CODEC_XMP),1) 81 + CFLAGS+= -DUSE_CODEC_XMP 82 + -CODEC_INC = -I../MacOSX/codecs/include 83 + -CODEC_LINK= -L../MacOSX/codecs/lib 84 + CODECLIBS+= -lxmp 85 + endif 86 + ifeq ($(USE_CODEC_UMX),1) 87 + @@ -332,3 +313,5 @@ 88 + clean: 89 + rm -f $(shell find . \( -name '*~' -o -name '#*#' -o -name '*.o' -o -name '*.res' -o -name $(DEFAULT_TARGET) \) -print) 90 + 91 + +install: quakespasm 92 + + install -D -m 755 quakespasm /usr/local/games/quake
+1 -1
pkgs/misc/vim-plugins/build-vim-plugin.nix
··· 19 buildPhase ? "", 20 preInstall ? "", 21 postInstall ? "", 22 - path ? lib.getName name, 23 addonInfo ? null, 24 ... 25 }:
··· 19 buildPhase ? "", 20 preInstall ? "", 21 postInstall ? "", 22 + path ? ".", 23 addonInfo ? null, 24 ... 25 }:
+12
pkgs/misc/vim-plugins/generated.nix
··· 8153 meta.homepage = "https://github.com/andreshazard/vim-logreview/"; 8154 }; 8155 8156 vim-lsc = buildVimPluginFrom2Nix { 8157 pname = "vim-lsc"; 8158 version = "2021-04-28";
··· 8153 meta.homepage = "https://github.com/andreshazard/vim-logreview/"; 8154 }; 8155 8156 + vim-loves-dafny = buildVimPluginFrom2Nix { 8157 + pname = "vim-loves-dafny"; 8158 + version = "2018-09-25"; 8159 + src = fetchFromGitHub { 8160 + owner = "mlr-msft"; 8161 + repo = "vim-loves-dafny"; 8162 + rev = "d75d3b074a3da2b0fa9fd5bc980f52ec82c2ad7b"; 8163 + sha256 = "170dc38mrakfma30r8z9zaxfn8d5ghrvnlglq6l60yn8fg7njxks"; 8164 + }; 8165 + meta.homepage = "https://github.com/mlr-msft/vim-loves-dafny/"; 8166 + }; 8167 + 8168 vim-lsc = buildVimPluginFrom2Nix { 8169 pname = "vim-lsc"; 8170 version = "2021-04-28";
+9 -9
pkgs/misc/vim-plugins/overrides.nix
··· 99 # The linked ruby code shows generates the required '.clang_complete' for cmake based projects 100 # https://gist.github.com/Mic92/135e83803ed29162817fce4098dec144 101 preFixup = '' 102 - substituteInPlace "$out"/share/vim-plugins/clang_complete/plugin/clang_complete.vim \ 103 --replace "let g:clang_library_path = '' + "''" + ''" "let g:clang_library_path='${llvmPackages.libclang.lib}/lib/libclang.so'" 104 105 - substituteInPlace "$out"/share/vim-plugins/clang_complete/plugin/libclang.py \ 106 --replace "/usr/lib/clang" "${llvmPackages.clang.cc}/lib/clang" 107 ''; 108 }); ··· 110 clighter8 = super.clighter8.overrideAttrs (old: { 111 preFixup = '' 112 sed "/^let g:clighter8_libclang_path/s|')$|${llvmPackages.clang.cc.lib}/lib/libclang.so')|" \ 113 - -i "$out"/share/vim-plugins/clighter8/plugin/clighter8.vim 114 ''; 115 }); 116 ··· 203 204 direnv-vim = super.direnv-vim.overrideAttrs (oa: { 205 preFixup = oa.preFixup or "" + '' 206 - substituteInPlace $out/share/vim-plugins/direnv.vim/autoload/direnv.vim \ 207 --replace "let s:direnv_cmd = get(g:, 'direnv_cmd', 'direnv')" \ 208 "let s:direnv_cmd = get(g:, 'direnv_cmd', '${lib.getBin direnv}/bin/direnv')" 209 ''; ··· 354 propagatedBuildInputs = [ LanguageClient-neovim-bin ]; 355 356 preFixup = '' 357 - substituteInPlace "$out"/share/vim-plugins/LanguageClient-neovim/autoload/LanguageClient.vim \ 358 --replace "let l:path = s:root . '/bin/'" "let l:path = '${LanguageClient-neovim-bin}' . '/bin/'" 359 ''; 360 }; ··· 387 388 minimap-vim = super.minimap-vim.overrideAttrs (old: { 389 preFixup = '' 390 - substituteInPlace $out/share/vim-plugins/minimap.vim/plugin/minimap.vim \ 391 --replace "code-minimap" "${code-minimap}/bin/code-minimap" 392 - substituteInPlace $out/share/vim-plugins/minimap.vim/bin/minimap_generator.sh \ 393 --replace "code-minimap" "${code-minimap}/bin/code-minimap" 394 ''; 395 }); ··· 691 692 vim-dasht = super.vim-dasht.overrideAttrs (old: { 693 preFixup = '' 694 - substituteInPlace $out/share/vim-plugins/vim-dasht/autoload/dasht.vim \ 695 --replace "['dasht']" "['${dasht}/bin/dasht']" 696 ''; 697 }); ··· 795 in 796 super.vim-markdown-composer.overrideAttrs (oldAttrs: rec { 797 preFixup = '' 798 - substituteInPlace "$out"/share/vim-plugins/vim-markdown-composer/after/ftplugin/markdown/composer.vim \ 799 --replace "let l:args = [s:plugin_root . '/target/release/markdown-composer']" \ 800 "let l:args = ['${vim-markdown-composer-bin}/bin/markdown-composer']" 801 '';
··· 99 # The linked ruby code shows generates the required '.clang_complete' for cmake based projects 100 # https://gist.github.com/Mic92/135e83803ed29162817fce4098dec144 101 preFixup = '' 102 + substituteInPlace "$out"/plugin/clang_complete.vim \ 103 --replace "let g:clang_library_path = '' + "''" + ''" "let g:clang_library_path='${llvmPackages.libclang.lib}/lib/libclang.so'" 104 105 + substituteInPlace "$out"/plugin/libclang.py \ 106 --replace "/usr/lib/clang" "${llvmPackages.clang.cc}/lib/clang" 107 ''; 108 }); ··· 110 clighter8 = super.clighter8.overrideAttrs (old: { 111 preFixup = '' 112 sed "/^let g:clighter8_libclang_path/s|')$|${llvmPackages.clang.cc.lib}/lib/libclang.so')|" \ 113 + -i "$out"/plugin/clighter8.vim 114 ''; 115 }); 116 ··· 203 204 direnv-vim = super.direnv-vim.overrideAttrs (oa: { 205 preFixup = oa.preFixup or "" + '' 206 + substituteInPlace $out/autoload/direnv.vim \ 207 --replace "let s:direnv_cmd = get(g:, 'direnv_cmd', 'direnv')" \ 208 "let s:direnv_cmd = get(g:, 'direnv_cmd', '${lib.getBin direnv}/bin/direnv')" 209 ''; ··· 354 propagatedBuildInputs = [ LanguageClient-neovim-bin ]; 355 356 preFixup = '' 357 + substituteInPlace "$out"/autoload/LanguageClient.vim \ 358 --replace "let l:path = s:root . '/bin/'" "let l:path = '${LanguageClient-neovim-bin}' . '/bin/'" 359 ''; 360 }; ··· 387 388 minimap-vim = super.minimap-vim.overrideAttrs (old: { 389 preFixup = '' 390 + substituteInPlace $out/plugin/minimap.vim \ 391 --replace "code-minimap" "${code-minimap}/bin/code-minimap" 392 + substituteInPlace $out/bin/minimap_generator.sh \ 393 --replace "code-minimap" "${code-minimap}/bin/code-minimap" 394 ''; 395 }); ··· 691 692 vim-dasht = super.vim-dasht.overrideAttrs (old: { 693 preFixup = '' 694 + substituteInPlace $out/autoload/dasht.vim \ 695 --replace "['dasht']" "['${dasht}/bin/dasht']" 696 ''; 697 }); ··· 795 in 796 super.vim-markdown-composer.overrideAttrs (oldAttrs: rec { 797 preFixup = '' 798 + substituteInPlace "$out"/after/ftplugin/markdown/composer.vim \ 799 --replace "let l:args = [s:plugin_root . '/target/release/markdown-composer']" \ 800 "let l:args = ['${vim-markdown-composer-bin}/bin/markdown-composer']" 801 '';
-1
pkgs/misc/vim-plugins/vim-gen-doc-hook.sh
··· 7 8 target="$out/@rtpPath@/$pname" 9 mkdir -p $out/@rtpPath@ 10 - cp -r . $target 11 12 # build help tags 13 if [ -d "$target/doc" ]; then
··· 7 8 target="$out/@rtpPath@/$pname" 9 mkdir -p $out/@rtpPath@ 10 11 # build help tags 12 if [ -d "$target/doc" ]; then
+1
pkgs/misc/vim-plugins/vim-plugin-names
··· 447 mindriot101/vim-yapf 448 mk12/vim-lean 449 mkasa/lushtags 450 moll/vim-bbye 451 mopp/sky-color-clock.vim 452 morhetz/gruvbox
··· 447 mindriot101/vim-yapf 448 mk12/vim-lean 449 mkasa/lushtags 450 + mlr-msft/vim-loves-dafny 451 moll/vim-bbye 452 mopp/sky-color-clock.vim 453 morhetz/gruvbox
+8 -7
pkgs/misc/vim-plugins/vim-utils.nix
··· 185 else (lib.optional (x ? name) x.name) 186 ++ (x.names or []); 187 188 - rtpPath = "share/vim-plugins"; 189 190 nativeImpl = packages: 191 (let ··· 196 ln -sf ${plugin}/${plugin.pname}-${plugin.version}-rocks/${plugin.pname}/${plugin.version}/* $out/pack/${packageName}/${dir}/${plugin.pname}/ 197 ''; 198 199 - linkVimlPlugin = pluginPath: packageName: dir: 200 - "ln -sf ${pluginPath}/${rtpPath}/* $out/pack/${packageName}/${dir}"; 201 202 - # (builtins.trace pluginPath ) 203 - link = pluginPath: if hasLuaModule pluginPath 204 - then linkLuaPlugin pluginPath 205 - else linkVimlPlugin pluginPath; 206 207 packageLinks = (packageName: {start ? [], opt ? []}: 208 let
··· 185 else (lib.optional (x ? name) x.name) 186 ++ (x.names or []); 187 188 + rtpPath = "."; 189 190 nativeImpl = packages: 191 (let ··· 196 ln -sf ${plugin}/${plugin.pname}-${plugin.version}-rocks/${plugin.pname}/${plugin.version}/* $out/pack/${packageName}/${dir}/${plugin.pname}/ 197 ''; 198 199 + linkVimlPlugin = plugin: packageName: dir: '' 200 + mkdir -p $out/pack/${packageName}/${dir}/${plugin.pname} 201 + ln -sf ${plugin}/${rtpPath}/* $out/pack/${packageName}/${dir}/${plugin.pname} 202 + ''; 203 204 + link = pluginPath: if hasLuaModule pluginPath 205 + then linkLuaPlugin pluginPath 206 + else linkVimlPlugin pluginPath; 207 208 packageLinks = (packageName: {start ? [], opt ? []}: 209 let
+2 -2
pkgs/servers/bazarr/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "bazarr"; 5 - version = "0.9.7"; 6 7 sourceRoot = "."; 8 9 src = fetchurl { 10 url = "https://github.com/morpheus65535/bazarr/releases/download/v${version}/bazarr.zip"; 11 - sha256 = "sha256-OyH3/KK8d5pWu+Ubzgd4N0IwpumbAe/43Oo+LGg+Erc="; 12 }; 13 14 nativeBuildInputs = [ unzip makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "bazarr"; 5 + version = "0.9.8"; 6 7 sourceRoot = "."; 8 9 src = fetchurl { 10 url = "https://github.com/morpheus65535/bazarr/releases/download/v${version}/bazarr.zip"; 11 + sha256 = "sha256-ESmSfor28KIaZ68Sy+YRbumefHDxLZgBQ6XeUSYSR1c="; 12 }; 13 14 nativeBuildInputs = [ unzip makeWrapper ];
+2 -2
pkgs/servers/jellyfin/default.nix
··· 41 in 42 stdenv.mkDerivation rec { 43 pname = "jellyfin"; 44 - version = "10.7.6"; # ensure that jellyfin-web has matching version 45 46 src = fetchFromGitHub { 47 owner = "jellyfin"; 48 repo = "jellyfin"; 49 rev = "v${version}"; 50 - sha256 = "3wXB9HrOaLgHJjWpwPWVtcy8xcYBgZoE29hWqf1On2Q="; 51 }; 52 53 nativeBuildInputs = [
··· 41 in 42 stdenv.mkDerivation rec { 43 pname = "jellyfin"; 44 + version = "10.7.7"; # ensure that jellyfin-web has matching version 45 46 src = fetchFromGitHub { 47 owner = "jellyfin"; 48 repo = "jellyfin"; 49 rev = "v${version}"; 50 + sha256 = "mByGsz9+R8I5/f6hUoM9JK/MDcWIJ/Xt51Z/LRXeQQQ="; 51 }; 52 53 nativeBuildInputs = [
+1865 -1719
pkgs/servers/jellyfin/node-deps.nix
··· 4 5 let 6 sources = { 7 "@babel/code-frame-7.12.11" = { 8 name = "_at_babel_slash_code-frame"; 9 packageName = "@babel/code-frame"; ··· 13 sha512 = "Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="; 14 }; 15 }; 16 - "@babel/code-frame-7.12.13" = { 17 name = "_at_babel_slash_code-frame"; 18 packageName = "@babel/code-frame"; 19 - version = "7.12.13"; 20 src = fetchurl { 21 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz"; 22 - sha512 = "HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g=="; 23 }; 24 }; 25 - "@babel/compat-data-7.14.0" = { 26 name = "_at_babel_slash_compat-data"; 27 packageName = "@babel/compat-data"; 28 - version = "7.14.0"; 29 src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.0.tgz"; 31 - sha512 = "vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q=="; 32 }; 33 }; 34 - "@babel/core-7.14.0" = { 35 name = "_at_babel_slash_core"; 36 packageName = "@babel/core"; 37 - version = "7.14.0"; 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/core/-/core-7.14.0.tgz"; 40 - sha512 = "8YqpRig5NmIHlMLw09zMlPTvUVMILjqCOtVgu+TVNWEBvy9b5I3RRyhqnrV4hjgEK7n8P9OqvkWJAFmEL6Wwfw=="; 41 }; 42 }; 43 - "@babel/eslint-parser-7.13.14" = { 44 name = "_at_babel_slash_eslint-parser"; 45 packageName = "@babel/eslint-parser"; 46 - version = "7.13.14"; 47 src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.13.14.tgz"; 49 - sha512 = "I0HweR36D73Ibn/FfrRDMKlMqJHFwidIUgYdMpH+aXYuQC+waq59YaJ6t9e9N36axJ82v1jR041wwqDrDXEwRA=="; 50 }; 51 }; 52 - "@babel/eslint-plugin-7.13.16" = { 53 name = "_at_babel_slash_eslint-plugin"; 54 packageName = "@babel/eslint-plugin"; 55 - version = "7.13.16"; 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/eslint-plugin/-/eslint-plugin-7.13.16.tgz"; 58 - sha512 = "RNL0dLHBvjXW857JwzToTHxtbOZfGcvdSegcgXC1c1PqfE+o/QN8MugkgKj2vXFxCcMByfxJrmpCbLzVBVlgIA=="; 59 }; 60 }; 61 - "@babel/generator-7.14.1" = { 62 name = "_at_babel_slash_generator"; 63 packageName = "@babel/generator"; 64 - version = "7.14.1"; 65 src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.14.1.tgz"; 67 - sha512 = "TMGhsXMXCP/O1WtQmZjpEYDhCYC9vFhayWZPJSZCGkPJgUqX0rF0wwtrYvnzVxIjcF80tkUertXVk5cwqi5cAQ=="; 68 }; 69 }; 70 - "@babel/helper-annotate-as-pure-7.12.13" = { 71 name = "_at_babel_slash_helper-annotate-as-pure"; 72 packageName = "@babel/helper-annotate-as-pure"; 73 - version = "7.12.13"; 74 src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz"; 76 - sha512 = "7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw=="; 77 }; 78 }; 79 - "@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" = { 80 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 81 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 82 - version = "7.12.13"; 83 src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz"; 85 - sha512 = "CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA=="; 86 }; 87 }; 88 - "@babel/helper-compilation-targets-7.13.16" = { 89 name = "_at_babel_slash_helper-compilation-targets"; 90 packageName = "@babel/helper-compilation-targets"; 91 - version = "7.13.16"; 92 src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz"; 94 - sha512 = "3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA=="; 95 }; 96 }; 97 - "@babel/helper-create-class-features-plugin-7.14.1" = { 98 name = "_at_babel_slash_helper-create-class-features-plugin"; 99 packageName = "@babel/helper-create-class-features-plugin"; 100 - version = "7.14.1"; 101 src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.1.tgz"; 103 - sha512 = "r8rsUahG4ywm0QpGcCrLaUSOuNAISR3IZCg4Fx05Ozq31aCUrQsTLH6KPxy0N5ULoQ4Sn9qjNdGNtbPWAC6hYg=="; 104 }; 105 }; 106 - "@babel/helper-create-regexp-features-plugin-7.12.17" = { 107 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 108 packageName = "@babel/helper-create-regexp-features-plugin"; 109 - version = "7.12.17"; 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz"; 112 - sha512 = "p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg=="; 113 }; 114 }; 115 - "@babel/helper-define-polyfill-provider-0.2.0" = { 116 name = "_at_babel_slash_helper-define-polyfill-provider"; 117 packageName = "@babel/helper-define-polyfill-provider"; 118 - version = "0.2.0"; 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.0.tgz"; 121 - sha512 = "JT8tHuFjKBo8NnaUbblz7mIu1nnvUDiHVjXXkulZULyidvo/7P6TY7+YqpV37IfF+KUFxmlK04elKtGKXaiVgw=="; 122 }; 123 }; 124 - "@babel/helper-explode-assignable-expression-7.13.0" = { 125 name = "_at_babel_slash_helper-explode-assignable-expression"; 126 packageName = "@babel/helper-explode-assignable-expression"; 127 - version = "7.13.0"; 128 src = fetchurl { 129 - url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz"; 130 - sha512 = "qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA=="; 131 }; 132 }; 133 - "@babel/helper-function-name-7.12.13" = { 134 name = "_at_babel_slash_helper-function-name"; 135 packageName = "@babel/helper-function-name"; 136 - version = "7.12.13"; 137 src = fetchurl { 138 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz"; 139 - sha512 = "TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA=="; 140 }; 141 }; 142 - "@babel/helper-get-function-arity-7.12.13" = { 143 name = "_at_babel_slash_helper-get-function-arity"; 144 packageName = "@babel/helper-get-function-arity"; 145 - version = "7.12.13"; 146 src = fetchurl { 147 - url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz"; 148 - sha512 = "DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg=="; 149 }; 150 }; 151 - "@babel/helper-hoist-variables-7.13.16" = { 152 name = "_at_babel_slash_helper-hoist-variables"; 153 packageName = "@babel/helper-hoist-variables"; 154 - version = "7.13.16"; 155 src = fetchurl { 156 - url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.16.tgz"; 157 - sha512 = "1eMtTrXtrwscjcAeO4BVK+vvkxaLJSPFz1w1KLawz6HLNi9bPFGBNwwDyVfiu1Tv/vRRFYfoGaKhmAQPGPn5Wg=="; 158 }; 159 }; 160 - "@babel/helper-member-expression-to-functions-7.13.12" = { 161 name = "_at_babel_slash_helper-member-expression-to-functions"; 162 packageName = "@babel/helper-member-expression-to-functions"; 163 - version = "7.13.12"; 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz"; 166 - sha512 = "48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw=="; 167 }; 168 }; 169 - "@babel/helper-module-imports-7.13.12" = { 170 name = "_at_babel_slash_helper-module-imports"; 171 packageName = "@babel/helper-module-imports"; 172 - version = "7.13.12"; 173 src = fetchurl { 174 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz"; 175 - sha512 = "4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA=="; 176 }; 177 }; 178 - "@babel/helper-module-transforms-7.14.0" = { 179 name = "_at_babel_slash_helper-module-transforms"; 180 packageName = "@babel/helper-module-transforms"; 181 - version = "7.14.0"; 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.0.tgz"; 184 - sha512 = "L40t9bxIuGOfpIGA3HNkJhU9qYrf4y5A5LUSw7rGMSn+pcG8dfJ0g6Zval6YJGd2nEjI7oP00fRdnhLKndx6bw=="; 185 }; 186 }; 187 - "@babel/helper-optimise-call-expression-7.12.13" = { 188 name = "_at_babel_slash_helper-optimise-call-expression"; 189 packageName = "@babel/helper-optimise-call-expression"; 190 - version = "7.12.13"; 191 src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz"; 193 - sha512 = "BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA=="; 194 }; 195 }; 196 - "@babel/helper-plugin-utils-7.13.0" = { 197 name = "_at_babel_slash_helper-plugin-utils"; 198 packageName = "@babel/helper-plugin-utils"; 199 - version = "7.13.0"; 200 src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz"; 202 - sha512 = "ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ=="; 203 }; 204 }; 205 - "@babel/helper-remap-async-to-generator-7.13.0" = { 206 name = "_at_babel_slash_helper-remap-async-to-generator"; 207 packageName = "@babel/helper-remap-async-to-generator"; 208 - version = "7.13.0"; 209 src = fetchurl { 210 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz"; 211 - sha512 = "pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg=="; 212 }; 213 }; 214 - "@babel/helper-replace-supers-7.13.12" = { 215 name = "_at_babel_slash_helper-replace-supers"; 216 packageName = "@babel/helper-replace-supers"; 217 - version = "7.13.12"; 218 src = fetchurl { 219 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz"; 220 - sha512 = "Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw=="; 221 }; 222 }; 223 - "@babel/helper-simple-access-7.13.12" = { 224 name = "_at_babel_slash_helper-simple-access"; 225 packageName = "@babel/helper-simple-access"; 226 - version = "7.13.12"; 227 src = fetchurl { 228 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz"; 229 - sha512 = "7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA=="; 230 }; 231 }; 232 - "@babel/helper-skip-transparent-expression-wrappers-7.12.1" = { 233 name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 234 packageName = "@babel/helper-skip-transparent-expression-wrappers"; 235 - version = "7.12.1"; 236 src = fetchurl { 237 - url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz"; 238 - sha512 = "Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA=="; 239 }; 240 }; 241 - "@babel/helper-split-export-declaration-7.12.13" = { 242 name = "_at_babel_slash_helper-split-export-declaration"; 243 packageName = "@babel/helper-split-export-declaration"; 244 - version = "7.12.13"; 245 src = fetchurl { 246 - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz"; 247 - sha512 = "tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg=="; 248 }; 249 }; 250 - "@babel/helper-validator-identifier-7.14.0" = { 251 name = "_at_babel_slash_helper-validator-identifier"; 252 packageName = "@babel/helper-validator-identifier"; 253 - version = "7.14.0"; 254 src = fetchurl { 255 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz"; 256 - sha512 = "V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A=="; 257 }; 258 }; 259 - "@babel/helper-validator-option-7.12.17" = { 260 name = "_at_babel_slash_helper-validator-option"; 261 packageName = "@babel/helper-validator-option"; 262 - version = "7.12.17"; 263 src = fetchurl { 264 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz"; 265 - sha512 = "TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw=="; 266 }; 267 }; 268 - "@babel/helper-wrap-function-7.13.0" = { 269 name = "_at_babel_slash_helper-wrap-function"; 270 packageName = "@babel/helper-wrap-function"; 271 - version = "7.13.0"; 272 src = fetchurl { 273 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz"; 274 - sha512 = "1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA=="; 275 }; 276 }; 277 - "@babel/helpers-7.14.0" = { 278 name = "_at_babel_slash_helpers"; 279 packageName = "@babel/helpers"; 280 - version = "7.14.0"; 281 src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.0.tgz"; 283 - sha512 = "+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg=="; 284 }; 285 }; 286 - "@babel/highlight-7.14.0" = { 287 name = "_at_babel_slash_highlight"; 288 packageName = "@babel/highlight"; 289 - version = "7.14.0"; 290 src = fetchurl { 291 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz"; 292 - sha512 = "YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg=="; 293 }; 294 }; 295 - "@babel/parser-7.14.1" = { 296 name = "_at_babel_slash_parser"; 297 packageName = "@babel/parser"; 298 - version = "7.14.1"; 299 src = fetchurl { 300 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.14.1.tgz"; 301 - sha512 = "muUGEKu8E/ftMTPlNp+mc6zL3E9zKWmF5sDHZ5MSsoTP9Wyz64AhEf9kD08xYJ7w6Hdcu8H550ircnPyWSIF0Q=="; 302 }; 303 }; 304 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12" = { 305 name = "_at_babel_slash_plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 306 packageName = "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 307 - version = "7.13.12"; 308 src = fetchurl { 309 - url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz"; 310 - sha512 = "d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ=="; 311 }; 312 }; 313 - "@babel/plugin-proposal-async-generator-functions-7.13.15" = { 314 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 315 packageName = "@babel/plugin-proposal-async-generator-functions"; 316 - version = "7.13.15"; 317 src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.15.tgz"; 319 - sha512 = "VapibkWzFeoa6ubXy/NgV5U2U4MVnUlvnx6wo1XhlsaTrLYWE0UFpDQsVrmn22q5CzeloqJ8gEMHSKxuee6ZdA=="; 320 }; 321 }; 322 - "@babel/plugin-proposal-class-properties-7.13.0" = { 323 name = "_at_babel_slash_plugin-proposal-class-properties"; 324 packageName = "@babel/plugin-proposal-class-properties"; 325 - version = "7.13.0"; 326 src = fetchurl { 327 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz"; 328 - sha512 = "KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg=="; 329 }; 330 }; 331 - "@babel/plugin-proposal-class-static-block-7.13.11" = { 332 name = "_at_babel_slash_plugin-proposal-class-static-block"; 333 packageName = "@babel/plugin-proposal-class-static-block"; 334 - version = "7.13.11"; 335 src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.13.11.tgz"; 337 - sha512 = "fJTdFI4bfnMjvxJyNuaf8i9mVcZ0UhetaGEUHaHV9KEnibLugJkZAtXikR8KcYj+NYmI4DZMS8yQAyg+hvfSqg=="; 338 }; 339 }; 340 - "@babel/plugin-proposal-dynamic-import-7.13.8" = { 341 name = "_at_babel_slash_plugin-proposal-dynamic-import"; 342 packageName = "@babel/plugin-proposal-dynamic-import"; 343 - version = "7.13.8"; 344 src = fetchurl { 345 - url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz"; 346 - sha512 = "ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ=="; 347 }; 348 }; 349 - "@babel/plugin-proposal-export-namespace-from-7.12.13" = { 350 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 351 packageName = "@babel/plugin-proposal-export-namespace-from"; 352 - version = "7.12.13"; 353 src = fetchurl { 354 - url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz"; 355 - sha512 = "INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw=="; 356 }; 357 }; 358 - "@babel/plugin-proposal-json-strings-7.13.8" = { 359 name = "_at_babel_slash_plugin-proposal-json-strings"; 360 packageName = "@babel/plugin-proposal-json-strings"; 361 - version = "7.13.8"; 362 src = fetchurl { 363 - url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz"; 364 - sha512 = "w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q=="; 365 }; 366 }; 367 - "@babel/plugin-proposal-logical-assignment-operators-7.13.8" = { 368 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 369 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 370 - version = "7.13.8"; 371 src = fetchurl { 372 - url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz"; 373 - sha512 = "aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A=="; 374 }; 375 }; 376 - "@babel/plugin-proposal-nullish-coalescing-operator-7.13.8" = { 377 name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 378 packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 379 - version = "7.13.8"; 380 src = fetchurl { 381 - url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz"; 382 - sha512 = "iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A=="; 383 }; 384 }; 385 - "@babel/plugin-proposal-numeric-separator-7.12.13" = { 386 name = "_at_babel_slash_plugin-proposal-numeric-separator"; 387 packageName = "@babel/plugin-proposal-numeric-separator"; 388 - version = "7.12.13"; 389 src = fetchurl { 390 - url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz"; 391 - sha512 = "O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w=="; 392 }; 393 }; 394 - "@babel/plugin-proposal-object-rest-spread-7.13.8" = { 395 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 396 packageName = "@babel/plugin-proposal-object-rest-spread"; 397 - version = "7.13.8"; 398 src = fetchurl { 399 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz"; 400 - sha512 = "DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g=="; 401 }; 402 }; 403 - "@babel/plugin-proposal-optional-catch-binding-7.13.8" = { 404 name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 405 packageName = "@babel/plugin-proposal-optional-catch-binding"; 406 - version = "7.13.8"; 407 src = fetchurl { 408 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz"; 409 - sha512 = "0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA=="; 410 }; 411 }; 412 - "@babel/plugin-proposal-optional-chaining-7.13.12" = { 413 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 414 packageName = "@babel/plugin-proposal-optional-chaining"; 415 - version = "7.13.12"; 416 src = fetchurl { 417 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.12.tgz"; 418 - sha512 = "fcEdKOkIB7Tf4IxrgEVeFC4zeJSTr78no9wTdBuZZbqF64kzllU0ybo2zrzm7gUQfxGhBgq4E39oRs8Zx/RMYQ=="; 419 }; 420 }; 421 - "@babel/plugin-proposal-private-methods-7.13.0" = { 422 name = "_at_babel_slash_plugin-proposal-private-methods"; 423 packageName = "@babel/plugin-proposal-private-methods"; 424 - version = "7.13.0"; 425 src = fetchurl { 426 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz"; 427 - sha512 = "MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q=="; 428 }; 429 }; 430 - "@babel/plugin-proposal-private-property-in-object-7.14.0" = { 431 name = "_at_babel_slash_plugin-proposal-private-property-in-object"; 432 packageName = "@babel/plugin-proposal-private-property-in-object"; 433 - version = "7.14.0"; 434 src = fetchurl { 435 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.0.tgz"; 436 - sha512 = "59ANdmEwwRUkLjB7CRtwJxxwtjESw+X2IePItA+RGQh+oy5RmpCh/EvVVvh5XQc3yxsm5gtv0+i9oBZhaDNVTg=="; 437 }; 438 }; 439 - "@babel/plugin-proposal-unicode-property-regex-7.12.13" = { 440 name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 441 packageName = "@babel/plugin-proposal-unicode-property-regex"; 442 - version = "7.12.13"; 443 src = fetchurl { 444 - url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz"; 445 - sha512 = "XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg=="; 446 }; 447 }; 448 "@babel/plugin-syntax-async-generators-7.8.4" = { ··· 463 sha512 = "fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="; 464 }; 465 }; 466 - "@babel/plugin-syntax-class-static-block-7.12.13" = { 467 name = "_at_babel_slash_plugin-syntax-class-static-block"; 468 packageName = "@babel/plugin-syntax-class-static-block"; 469 - version = "7.12.13"; 470 src = fetchurl { 471 - url = "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.12.13.tgz"; 472 - sha512 = "ZmKQ0ZXR0nYpHZIIuj9zE7oIqCx2hw9TKi+lIo73NNrMPAZGHfS92/VRV0ZmPj6H2ffBgyFHXvJ5NYsNeEaP2A=="; 473 }; 474 }; 475 "@babel/plugin-syntax-dynamic-import-7.8.3" = { ··· 553 sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="; 554 }; 555 }; 556 - "@babel/plugin-syntax-private-property-in-object-7.14.0" = { 557 name = "_at_babel_slash_plugin-syntax-private-property-in-object"; 558 packageName = "@babel/plugin-syntax-private-property-in-object"; 559 - version = "7.14.0"; 560 src = fetchurl { 561 - url = "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.0.tgz"; 562 - sha512 = "bda3xF8wGl5/5btF794utNOL0Jw+9jE5C1sLZcoK7c4uonE/y3iQiyG+KbkF3WBV/paX58VCpjhxLPkdj5Fe4w=="; 563 }; 564 }; 565 - "@babel/plugin-syntax-top-level-await-7.12.13" = { 566 name = "_at_babel_slash_plugin-syntax-top-level-await"; 567 packageName = "@babel/plugin-syntax-top-level-await"; 568 - version = "7.12.13"; 569 src = fetchurl { 570 - url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz"; 571 - sha512 = "A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ=="; 572 }; 573 }; 574 - "@babel/plugin-transform-arrow-functions-7.13.0" = { 575 name = "_at_babel_slash_plugin-transform-arrow-functions"; 576 packageName = "@babel/plugin-transform-arrow-functions"; 577 - version = "7.13.0"; 578 src = fetchurl { 579 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz"; 580 - sha512 = "96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg=="; 581 }; 582 }; 583 - "@babel/plugin-transform-async-to-generator-7.13.0" = { 584 name = "_at_babel_slash_plugin-transform-async-to-generator"; 585 packageName = "@babel/plugin-transform-async-to-generator"; 586 - version = "7.13.0"; 587 src = fetchurl { 588 - url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz"; 589 - sha512 = "3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg=="; 590 }; 591 }; 592 - "@babel/plugin-transform-block-scoped-functions-7.12.13" = { 593 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 594 packageName = "@babel/plugin-transform-block-scoped-functions"; 595 - version = "7.12.13"; 596 src = fetchurl { 597 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz"; 598 - sha512 = "zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg=="; 599 }; 600 }; 601 - "@babel/plugin-transform-block-scoping-7.14.1" = { 602 name = "_at_babel_slash_plugin-transform-block-scoping"; 603 packageName = "@babel/plugin-transform-block-scoping"; 604 - version = "7.14.1"; 605 src = fetchurl { 606 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.1.tgz"; 607 - sha512 = "2mQXd0zBrwfp0O1moWIhPpEeTKDvxyHcnma3JATVP1l+CctWBuot6OJG8LQ4DnBj4ZZPSmlb/fm4mu47EOAnVA=="; 608 }; 609 }; 610 - "@babel/plugin-transform-classes-7.13.0" = { 611 name = "_at_babel_slash_plugin-transform-classes"; 612 packageName = "@babel/plugin-transform-classes"; 613 - version = "7.13.0"; 614 src = fetchurl { 615 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz"; 616 - sha512 = "9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g=="; 617 }; 618 }; 619 - "@babel/plugin-transform-computed-properties-7.13.0" = { 620 name = "_at_babel_slash_plugin-transform-computed-properties"; 621 packageName = "@babel/plugin-transform-computed-properties"; 622 - version = "7.13.0"; 623 src = fetchurl { 624 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz"; 625 - sha512 = "RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg=="; 626 }; 627 }; 628 - "@babel/plugin-transform-destructuring-7.13.17" = { 629 name = "_at_babel_slash_plugin-transform-destructuring"; 630 packageName = "@babel/plugin-transform-destructuring"; 631 - version = "7.13.17"; 632 src = fetchurl { 633 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.17.tgz"; 634 - sha512 = "UAUqiLv+uRLO+xuBKKMEpC+t7YRNVRqBsWWq1yKXbBZBje/t3IXCiSinZhjn/DC3qzBfICeYd2EFGEbHsh5RLA=="; 635 }; 636 }; 637 - "@babel/plugin-transform-dotall-regex-7.12.13" = { 638 name = "_at_babel_slash_plugin-transform-dotall-regex"; 639 packageName = "@babel/plugin-transform-dotall-regex"; 640 - version = "7.12.13"; 641 src = fetchurl { 642 - url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz"; 643 - sha512 = "foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ=="; 644 }; 645 }; 646 - "@babel/plugin-transform-duplicate-keys-7.12.13" = { 647 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 648 packageName = "@babel/plugin-transform-duplicate-keys"; 649 - version = "7.12.13"; 650 src = fetchurl { 651 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz"; 652 - sha512 = "NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ=="; 653 }; 654 }; 655 - "@babel/plugin-transform-exponentiation-operator-7.12.13" = { 656 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 657 packageName = "@babel/plugin-transform-exponentiation-operator"; 658 - version = "7.12.13"; 659 src = fetchurl { 660 - url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz"; 661 - sha512 = "fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA=="; 662 }; 663 }; 664 - "@babel/plugin-transform-for-of-7.13.0" = { 665 name = "_at_babel_slash_plugin-transform-for-of"; 666 packageName = "@babel/plugin-transform-for-of"; 667 - version = "7.13.0"; 668 src = fetchurl { 669 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz"; 670 - sha512 = "IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg=="; 671 }; 672 }; 673 - "@babel/plugin-transform-function-name-7.12.13" = { 674 name = "_at_babel_slash_plugin-transform-function-name"; 675 packageName = "@babel/plugin-transform-function-name"; 676 - version = "7.12.13"; 677 src = fetchurl { 678 - url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz"; 679 - sha512 = "6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ=="; 680 }; 681 }; 682 - "@babel/plugin-transform-literals-7.12.13" = { 683 name = "_at_babel_slash_plugin-transform-literals"; 684 packageName = "@babel/plugin-transform-literals"; 685 - version = "7.12.13"; 686 src = fetchurl { 687 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz"; 688 - sha512 = "FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ=="; 689 }; 690 }; 691 - "@babel/plugin-transform-member-expression-literals-7.12.13" = { 692 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 693 packageName = "@babel/plugin-transform-member-expression-literals"; 694 - version = "7.12.13"; 695 src = fetchurl { 696 - url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz"; 697 - sha512 = "kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg=="; 698 }; 699 }; 700 - "@babel/plugin-transform-modules-amd-7.14.0" = { 701 name = "_at_babel_slash_plugin-transform-modules-amd"; 702 packageName = "@babel/plugin-transform-modules-amd"; 703 - version = "7.14.0"; 704 src = fetchurl { 705 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.0.tgz"; 706 - sha512 = "CF4c5LX4LQ03LebQxJ5JZes2OYjzBuk1TdiF7cG7d5dK4lAdw9NZmaxq5K/mouUdNeqwz3TNjnW6v01UqUNgpQ=="; 707 }; 708 }; 709 - "@babel/plugin-transform-modules-commonjs-7.14.0" = { 710 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 711 packageName = "@babel/plugin-transform-modules-commonjs"; 712 - version = "7.14.0"; 713 src = fetchurl { 714 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.0.tgz"; 715 - sha512 = "EX4QePlsTaRZQmw9BsoPeyh5OCtRGIhwfLquhxGp5e32w+dyL8htOcDwamlitmNFK6xBZYlygjdye9dbd9rUlQ=="; 716 }; 717 }; 718 - "@babel/plugin-transform-modules-systemjs-7.13.8" = { 719 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 720 packageName = "@babel/plugin-transform-modules-systemjs"; 721 - version = "7.13.8"; 722 src = fetchurl { 723 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz"; 724 - sha512 = "hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A=="; 725 }; 726 }; 727 - "@babel/plugin-transform-modules-umd-7.14.0" = { 728 name = "_at_babel_slash_plugin-transform-modules-umd"; 729 packageName = "@babel/plugin-transform-modules-umd"; 730 - version = "7.14.0"; 731 src = fetchurl { 732 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.0.tgz"; 733 - sha512 = "nPZdnWtXXeY7I87UZr9VlsWme3Y0cfFFE41Wbxz4bbaexAjNMInXPFUpRRUJ8NoMm0Cw+zxbqjdPmLhcjfazMw=="; 734 }; 735 }; 736 - "@babel/plugin-transform-named-capturing-groups-regex-7.12.13" = { 737 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 738 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 739 - version = "7.12.13"; 740 src = fetchurl { 741 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz"; 742 - sha512 = "Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA=="; 743 }; 744 }; 745 - "@babel/plugin-transform-new-target-7.12.13" = { 746 name = "_at_babel_slash_plugin-transform-new-target"; 747 packageName = "@babel/plugin-transform-new-target"; 748 - version = "7.12.13"; 749 src = fetchurl { 750 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz"; 751 - sha512 = "/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ=="; 752 }; 753 }; 754 - "@babel/plugin-transform-object-super-7.12.13" = { 755 name = "_at_babel_slash_plugin-transform-object-super"; 756 packageName = "@babel/plugin-transform-object-super"; 757 - version = "7.12.13"; 758 src = fetchurl { 759 - url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz"; 760 - sha512 = "JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ=="; 761 }; 762 }; 763 - "@babel/plugin-transform-parameters-7.13.0" = { 764 name = "_at_babel_slash_plugin-transform-parameters"; 765 packageName = "@babel/plugin-transform-parameters"; 766 - version = "7.13.0"; 767 src = fetchurl { 768 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz"; 769 - sha512 = "Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw=="; 770 }; 771 }; 772 - "@babel/plugin-transform-property-literals-7.12.13" = { 773 name = "_at_babel_slash_plugin-transform-property-literals"; 774 packageName = "@babel/plugin-transform-property-literals"; 775 - version = "7.12.13"; 776 src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz"; 778 - sha512 = "nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A=="; 779 }; 780 }; 781 - "@babel/plugin-transform-regenerator-7.13.15" = { 782 name = "_at_babel_slash_plugin-transform-regenerator"; 783 packageName = "@babel/plugin-transform-regenerator"; 784 - version = "7.13.15"; 785 src = fetchurl { 786 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.13.15.tgz"; 787 - sha512 = "Bk9cOLSz8DiurcMETZ8E2YtIVJbFCPGW28DJWUakmyVWtQSm6Wsf0p4B4BfEr/eL2Nkhe/CICiUiMOCi1TPhuQ=="; 788 }; 789 }; 790 - "@babel/plugin-transform-reserved-words-7.12.13" = { 791 name = "_at_babel_slash_plugin-transform-reserved-words"; 792 packageName = "@babel/plugin-transform-reserved-words"; 793 - version = "7.12.13"; 794 src = fetchurl { 795 - url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz"; 796 - sha512 = "xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg=="; 797 }; 798 }; 799 - "@babel/plugin-transform-shorthand-properties-7.12.13" = { 800 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 801 packageName = "@babel/plugin-transform-shorthand-properties"; 802 - version = "7.12.13"; 803 src = fetchurl { 804 - url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz"; 805 - sha512 = "xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw=="; 806 }; 807 }; 808 - "@babel/plugin-transform-spread-7.13.0" = { 809 name = "_at_babel_slash_plugin-transform-spread"; 810 packageName = "@babel/plugin-transform-spread"; 811 - version = "7.13.0"; 812 src = fetchurl { 813 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz"; 814 - sha512 = "V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg=="; 815 }; 816 }; 817 - "@babel/plugin-transform-sticky-regex-7.12.13" = { 818 name = "_at_babel_slash_plugin-transform-sticky-regex"; 819 packageName = "@babel/plugin-transform-sticky-regex"; 820 - version = "7.12.13"; 821 src = fetchurl { 822 - url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz"; 823 - sha512 = "Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg=="; 824 }; 825 }; 826 - "@babel/plugin-transform-template-literals-7.13.0" = { 827 name = "_at_babel_slash_plugin-transform-template-literals"; 828 packageName = "@babel/plugin-transform-template-literals"; 829 - version = "7.13.0"; 830 src = fetchurl { 831 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz"; 832 - sha512 = "d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw=="; 833 }; 834 }; 835 - "@babel/plugin-transform-typeof-symbol-7.12.13" = { 836 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 837 packageName = "@babel/plugin-transform-typeof-symbol"; 838 - version = "7.12.13"; 839 src = fetchurl { 840 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz"; 841 - sha512 = "eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ=="; 842 }; 843 }; 844 - "@babel/plugin-transform-unicode-escapes-7.12.13" = { 845 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 846 packageName = "@babel/plugin-transform-unicode-escapes"; 847 - version = "7.12.13"; 848 src = fetchurl { 849 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz"; 850 - sha512 = "0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw=="; 851 }; 852 }; 853 - "@babel/plugin-transform-unicode-regex-7.12.13" = { 854 name = "_at_babel_slash_plugin-transform-unicode-regex"; 855 packageName = "@babel/plugin-transform-unicode-regex"; 856 - version = "7.12.13"; 857 src = fetchurl { 858 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz"; 859 - sha512 = "mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA=="; 860 }; 861 }; 862 - "@babel/preset-env-7.14.1" = { 863 name = "_at_babel_slash_preset-env"; 864 packageName = "@babel/preset-env"; 865 - version = "7.14.1"; 866 src = fetchurl { 867 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.1.tgz"; 868 - sha512 = "0M4yL1l7V4l+j/UHvxcdvNfLB9pPtIooHTbEhgD/6UGyh8Hy3Bm1Mj0buzjDXATCSz3JFibVdnoJZCrlUCanrQ=="; 869 }; 870 }; 871 "@babel/preset-modules-0.1.4" = { ··· 877 sha512 = "J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg=="; 878 }; 879 }; 880 - "@babel/runtime-7.14.0" = { 881 name = "_at_babel_slash_runtime"; 882 packageName = "@babel/runtime"; 883 - version = "7.14.0"; 884 src = fetchurl { 885 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz"; 886 - sha512 = "JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA=="; 887 }; 888 }; 889 - "@babel/template-7.12.13" = { 890 name = "_at_babel_slash_template"; 891 packageName = "@babel/template"; 892 - version = "7.12.13"; 893 src = fetchurl { 894 - url = "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz"; 895 - sha512 = "/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA=="; 896 }; 897 }; 898 - "@babel/traverse-7.14.0" = { 899 name = "_at_babel_slash_traverse"; 900 packageName = "@babel/traverse"; 901 - version = "7.14.0"; 902 src = fetchurl { 903 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.0.tgz"; 904 - sha512 = "dZ/a371EE5XNhTHomvtuLTUyx6UEoJmYX+DT5zBCQN3McHemsuIaKKYqsc/fs26BEkHs/lBZy0J571LP5z9kQA=="; 905 }; 906 }; 907 - "@babel/types-7.14.1" = { 908 name = "_at_babel_slash_types"; 909 packageName = "@babel/types"; 910 - version = "7.14.1"; 911 src = fetchurl { 912 - url = "https://registry.npmjs.org/@babel/types/-/types-7.14.1.tgz"; 913 - sha512 = "S13Qe85fzLs3gYRUnrpyeIrBJIMYv33qSTg1qoBwiG6nPKwUWAD9odSzWhEedpwOIzSEI6gbdQIWEMiCI42iBA=="; 914 }; 915 }; 916 "@csstools/convert-colors-1.4.0" = { ··· 922 sha512 = "5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw=="; 923 }; 924 }; 925 - "@discoveryjs/json-ext-0.5.2" = { 926 name = "_at_discoveryjs_slash_json-ext"; 927 packageName = "@discoveryjs/json-ext"; 928 - version = "0.5.2"; 929 src = fetchurl { 930 - url = "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.2.tgz"; 931 - sha512 = "HyYEUDeIj5rRQU2Hk5HTB2uHsbRQpF70nvMhVzi+VJR0X+xNEhjPui4/kBf3VeH/wqD28PT4sVOm8qqLjBrSZg=="; 932 }; 933 }; 934 - "@eslint/eslintrc-0.4.0" = { 935 name = "_at_eslint_slash_eslintrc"; 936 packageName = "@eslint/eslintrc"; 937 - version = "0.4.0"; 938 - src = fetchurl { 939 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz"; 940 - sha512 = "2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog=="; 941 - }; 942 - }; 943 - "@hapi/address-2.1.4" = { 944 - name = "_at_hapi_slash_address"; 945 - packageName = "@hapi/address"; 946 - version = "2.1.4"; 947 - src = fetchurl { 948 - url = "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz"; 949 - sha512 = "QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ=="; 950 - }; 951 - }; 952 - "@hapi/bourne-1.3.2" = { 953 - name = "_at_hapi_slash_bourne"; 954 - packageName = "@hapi/bourne"; 955 - version = "1.3.2"; 956 src = fetchurl { 957 - url = "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz"; 958 - sha512 = "1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA=="; 959 }; 960 }; 961 - "@hapi/hoek-8.5.1" = { 962 - name = "_at_hapi_slash_hoek"; 963 - packageName = "@hapi/hoek"; 964 - version = "8.5.1"; 965 src = fetchurl { 966 - url = "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz"; 967 - sha512 = "yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow=="; 968 }; 969 }; 970 - "@hapi/joi-15.1.1" = { 971 - name = "_at_hapi_slash_joi"; 972 - packageName = "@hapi/joi"; 973 - version = "15.1.1"; 974 src = fetchurl { 975 - url = "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz"; 976 - sha512 = "entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ=="; 977 }; 978 }; 979 - "@hapi/topo-3.1.6" = { 980 - name = "_at_hapi_slash_topo"; 981 - packageName = "@hapi/topo"; 982 - version = "3.1.6"; 983 src = fetchurl { 984 - url = "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz"; 985 - sha512 = "tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ=="; 986 }; 987 }; 988 - "@mdn/browser-compat-data-2.0.7" = { 989 name = "_at_mdn_slash_browser-compat-data"; 990 packageName = "@mdn/browser-compat-data"; 991 - version = "2.0.7"; 992 src = fetchurl { 993 - url = "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-2.0.7.tgz"; 994 - sha512 = "GeeM827DlzFFidn1eKkMBiqXFD2oLsnZbaiGhByPl0vcapsRzUL+t9hDoov1swc9rB2jw64R+ihtzC8qOE9wXw=="; 995 }; 996 }; 997 "@mrmlnc/readdir-enhanced-2.2.1" = { ··· 1003 sha512 = "bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g=="; 1004 }; 1005 }; 1006 - "@nodelib/fs.scandir-2.1.4" = { 1007 name = "_at_nodelib_slash_fs.scandir"; 1008 packageName = "@nodelib/fs.scandir"; 1009 - version = "2.1.4"; 1010 src = fetchurl { 1011 - url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz"; 1012 - sha512 = "33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA=="; 1013 }; 1014 }; 1015 "@nodelib/fs.stat-1.1.3" = { ··· 1021 sha512 = "shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw=="; 1022 }; 1023 }; 1024 - "@nodelib/fs.stat-2.0.4" = { 1025 name = "_at_nodelib_slash_fs.stat"; 1026 packageName = "@nodelib/fs.stat"; 1027 - version = "2.0.4"; 1028 src = fetchurl { 1029 - url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz"; 1030 - sha512 = "IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q=="; 1031 }; 1032 }; 1033 - "@nodelib/fs.walk-1.2.6" = { 1034 name = "_at_nodelib_slash_fs.walk"; 1035 packageName = "@nodelib/fs.walk"; 1036 - version = "1.2.6"; 1037 src = fetchurl { 1038 - url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz"; 1039 - sha512 = "8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow=="; 1040 }; 1041 }; 1042 "@npmcli/move-file-1.1.2" = { ··· 1048 sha512 = "1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg=="; 1049 }; 1050 }; 1051 - "@rollup/plugin-node-resolve-7.1.3" = { 1052 name = "_at_rollup_slash_plugin-node-resolve"; 1053 packageName = "@rollup/plugin-node-resolve"; 1054 - version = "7.1.3"; 1055 src = fetchurl { 1056 - url = "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz"; 1057 - sha512 = "RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q=="; 1058 }; 1059 }; 1060 "@rollup/plugin-replace-2.4.2" = { ··· 1102 sha512 = "yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A=="; 1103 }; 1104 }; 1105 - "@types/anymatch-1.3.1" = { 1106 - name = "_at_types_slash_anymatch"; 1107 - packageName = "@types/anymatch"; 1108 - version = "1.3.1"; 1109 - src = fetchurl { 1110 - url = "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz"; 1111 - sha512 = "/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA=="; 1112 - }; 1113 - }; 1114 - "@types/eslint-7.2.10" = { 1115 name = "_at_types_slash_eslint"; 1116 packageName = "@types/eslint"; 1117 - version = "7.2.10"; 1118 src = fetchurl { 1119 - url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.10.tgz"; 1120 - sha512 = "kUEPnMKrqbtpCq/KTaGFFKAcz6Ethm2EjCoKIDaCmfRBWLbFuTcOJfTlorwbnboXBzahqWLgUp1BQeKHiJzPUQ=="; 1121 }; 1122 }; 1123 - "@types/eslint-scope-3.7.0" = { 1124 name = "_at_types_slash_eslint-scope"; 1125 packageName = "@types/eslint-scope"; 1126 - version = "3.7.0"; 1127 src = fetchurl { 1128 - url = "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.0.tgz"; 1129 - sha512 = "O/ql2+rrCUe2W2rs7wMR+GqPRcgB6UiqN5RhrR5xruFlY7l9YLMn0ZkDzjoHLeiFkR8MCQZVudUuuvQ2BLC9Qw=="; 1130 }; 1131 }; 1132 "@types/estree-0.0.39" = { ··· 1138 sha512 = "EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="; 1139 }; 1140 }; 1141 - "@types/estree-0.0.47" = { 1142 name = "_at_types_slash_estree"; 1143 packageName = "@types/estree"; 1144 - version = "0.0.47"; 1145 src = fetchurl { 1146 - url = "https://registry.npmjs.org/@types/estree/-/estree-0.0.47.tgz"; 1147 - sha512 = "c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg=="; 1148 }; 1149 }; 1150 - "@types/glob-7.1.3" = { 1151 name = "_at_types_slash_glob"; 1152 packageName = "@types/glob"; 1153 - version = "7.1.3"; 1154 src = fetchurl { 1155 - url = "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz"; 1156 - sha512 = "SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w=="; 1157 }; 1158 }; 1159 - "@types/html-minifier-terser-5.1.1" = { 1160 name = "_at_types_slash_html-minifier-terser"; 1161 packageName = "@types/html-minifier-terser"; 1162 - version = "5.1.1"; 1163 src = fetchurl { 1164 - url = "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz"; 1165 - sha512 = "giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA=="; 1166 }; 1167 }; 1168 - "@types/json-schema-7.0.7" = { 1169 name = "_at_types_slash_json-schema"; 1170 packageName = "@types/json-schema"; 1171 - version = "7.0.7"; 1172 src = fetchurl { 1173 - url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz"; 1174 - sha512 = "cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA=="; 1175 }; 1176 }; 1177 "@types/json5-0.0.29" = { ··· 1192 sha1 = "5e31c32dd8791ec4b9ff3ef47c9cb55b2d0d9438"; 1193 }; 1194 }; 1195 - "@types/mdast-3.0.3" = { 1196 name = "_at_types_slash_mdast"; 1197 packageName = "@types/mdast"; 1198 - version = "3.0.3"; 1199 src = fetchurl { 1200 - url = "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.3.tgz"; 1201 - sha512 = "SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw=="; 1202 }; 1203 }; 1204 - "@types/minimatch-3.0.4" = { 1205 name = "_at_types_slash_minimatch"; 1206 packageName = "@types/minimatch"; 1207 - version = "3.0.4"; 1208 src = fetchurl { 1209 - url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.4.tgz"; 1210 - sha512 = "1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA=="; 1211 }; 1212 }; 1213 - "@types/minimist-1.2.1" = { 1214 name = "_at_types_slash_minimist"; 1215 packageName = "@types/minimist"; 1216 - version = "1.2.1"; 1217 src = fetchurl { 1218 - url = "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.1.tgz"; 1219 - sha512 = "fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg=="; 1220 }; 1221 }; 1222 - "@types/node-15.0.2" = { 1223 name = "_at_types_slash_node"; 1224 packageName = "@types/node"; 1225 - version = "15.0.2"; 1226 src = fetchurl { 1227 - url = "https://registry.npmjs.org/@types/node/-/node-15.0.2.tgz"; 1228 - sha512 = "p68+a+KoxpoB47015IeYZYRrdqMUcpbK8re/zpFB8Ld46LHC1lPEbp3EXgkEhAYEcPvjJF6ZO+869SQ0aH1dcA=="; 1229 }; 1230 }; 1231 - "@types/normalize-package-data-2.4.0" = { 1232 name = "_at_types_slash_normalize-package-data"; 1233 packageName = "@types/normalize-package-data"; 1234 - version = "2.4.0"; 1235 src = fetchurl { 1236 - url = "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz"; 1237 - sha512 = "f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA=="; 1238 }; 1239 }; 1240 "@types/parse-json-4.0.0" = { ··· 1246 sha512 = "//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="; 1247 }; 1248 }; 1249 - "@types/q-1.5.4" = { 1250 name = "_at_types_slash_q"; 1251 packageName = "@types/q"; 1252 - version = "1.5.4"; 1253 src = fetchurl { 1254 - url = "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz"; 1255 - sha512 = "1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug=="; 1256 }; 1257 }; 1258 - "@types/resolve-0.0.8" = { 1259 name = "_at_types_slash_resolve"; 1260 packageName = "@types/resolve"; 1261 - version = "0.0.8"; 1262 src = fetchurl { 1263 - url = "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz"; 1264 - sha512 = "auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ=="; 1265 }; 1266 }; 1267 "@types/source-list-map-0.1.2" = { ··· 1273 sha512 = "K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA=="; 1274 }; 1275 }; 1276 - "@types/tapable-1.0.7" = { 1277 name = "_at_types_slash_tapable"; 1278 packageName = "@types/tapable"; 1279 - version = "1.0.7"; 1280 src = fetchurl { 1281 - url = "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.7.tgz"; 1282 - sha512 = "0VBprVqfgFD7Ehb2vd8Lh9TG3jP98gvr8rgehQqzztZNI7o8zS8Ad4jyZneKELphpuE212D8J70LnSNQSyO6bQ=="; 1283 }; 1284 }; 1285 - "@types/uglify-js-3.13.0" = { 1286 name = "_at_types_slash_uglify-js"; 1287 packageName = "@types/uglify-js"; 1288 - version = "3.13.0"; 1289 src = fetchurl { 1290 - url = "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.0.tgz"; 1291 - sha512 = "EGkrJD5Uy+Pg0NUR8uA4bJ5WMfljyad0G+784vLCNUkD+QwOJXUbBYExXfVGf7YtyzdQp3L/XMYcliB987kL5Q=="; 1292 }; 1293 }; 1294 - "@types/unist-2.0.3" = { 1295 name = "_at_types_slash_unist"; 1296 packageName = "@types/unist"; 1297 - version = "2.0.3"; 1298 src = fetchurl { 1299 - url = "https://registry.npmjs.org/@types/unist/-/unist-2.0.3.tgz"; 1300 - sha512 = "FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ=="; 1301 }; 1302 }; 1303 "@types/vfile-3.0.2" = { ··· 1318 sha512 = "GpTIuDpb9u4zIO165fUy9+fXcULdD8HFRNli04GehoMVbeNq7D6OBnqSmg3lxZnC+UvgUhEWKxdKiwYUkGltIw=="; 1319 }; 1320 }; 1321 - "@types/webpack-4.41.28" = { 1322 name = "_at_types_slash_webpack"; 1323 packageName = "@types/webpack"; 1324 - version = "4.41.28"; 1325 src = fetchurl { 1326 - url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.28.tgz"; 1327 - sha512 = "Nn84RAiJjKRfPFFCVR8LC4ueTtTdfWAMZ03THIzZWRJB+rX24BD3LqPSFnbMscWauEsT4segAsylPDIaZyZyLQ=="; 1328 }; 1329 }; 1330 - "@types/webpack-sources-2.1.0" = { 1331 name = "_at_types_slash_webpack-sources"; 1332 packageName = "@types/webpack-sources"; 1333 - version = "2.1.0"; 1334 src = fetchurl { 1335 - url = "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.0.tgz"; 1336 - sha512 = "LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg=="; 1337 }; 1338 }; 1339 "@uupaa/dynamic-import-polyfill-1.0.2" = { ··· 1345 sha512 = "V3vzdXunOKKob1F+2ldv/4iGQoQA/iyqtW8PVlr1v16xCCKL831pGUubT+vs5/9wxTE/zBKEhjIjmmpK6nqw2A=="; 1346 }; 1347 }; 1348 - "@webassemblyjs/ast-1.11.0" = { 1349 name = "_at_webassemblyjs_slash_ast"; 1350 packageName = "@webassemblyjs/ast"; 1351 - version = "1.11.0"; 1352 src = fetchurl { 1353 - url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.0.tgz"; 1354 - sha512 = "kX2W49LWsbthrmIRMbQZuQDhGtjyqXfEmmHyEi4XWnSZtPmxY0+3anPIzsnRb45VH/J55zlOfWvZuY47aJZTJg=="; 1355 }; 1356 }; 1357 - "@webassemblyjs/floating-point-hex-parser-1.11.0" = { 1358 name = "_at_webassemblyjs_slash_floating-point-hex-parser"; 1359 packageName = "@webassemblyjs/floating-point-hex-parser"; 1360 - version = "1.11.0"; 1361 src = fetchurl { 1362 - url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.0.tgz"; 1363 - sha512 = "Q/aVYs/VnPDVYvsCBL/gSgwmfjeCb4LW8+TMrO3cSzJImgv8lxxEPM2JA5jMrivE7LSz3V+PFqtMbls3m1exDA=="; 1364 }; 1365 }; 1366 - "@webassemblyjs/helper-api-error-1.11.0" = { 1367 name = "_at_webassemblyjs_slash_helper-api-error"; 1368 packageName = "@webassemblyjs/helper-api-error"; 1369 - version = "1.11.0"; 1370 src = fetchurl { 1371 - url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.0.tgz"; 1372 - sha512 = "baT/va95eXiXb2QflSx95QGT5ClzWpGaa8L7JnJbgzoYeaA27FCvuBXU758l+KXWRndEmUXjP0Q5fibhavIn8w=="; 1373 }; 1374 }; 1375 - "@webassemblyjs/helper-buffer-1.11.0" = { 1376 name = "_at_webassemblyjs_slash_helper-buffer"; 1377 packageName = "@webassemblyjs/helper-buffer"; 1378 - version = "1.11.0"; 1379 src = fetchurl { 1380 - url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.0.tgz"; 1381 - sha512 = "u9HPBEl4DS+vA8qLQdEQ6N/eJQ7gT7aNvMIo8AAWvAl/xMrcOSiI2M0MAnMCy3jIFke7bEee/JwdX1nUpCtdyA=="; 1382 }; 1383 }; 1384 - "@webassemblyjs/helper-numbers-1.11.0" = { 1385 name = "_at_webassemblyjs_slash_helper-numbers"; 1386 packageName = "@webassemblyjs/helper-numbers"; 1387 - version = "1.11.0"; 1388 src = fetchurl { 1389 - url = "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.0.tgz"; 1390 - sha512 = "DhRQKelIj01s5IgdsOJMKLppI+4zpmcMQ3XboFPLwCpSNH6Hqo1ritgHgD0nqHeSYqofA6aBN/NmXuGjM1jEfQ=="; 1391 }; 1392 }; 1393 - "@webassemblyjs/helper-wasm-bytecode-1.11.0" = { 1394 name = "_at_webassemblyjs_slash_helper-wasm-bytecode"; 1395 packageName = "@webassemblyjs/helper-wasm-bytecode"; 1396 - version = "1.11.0"; 1397 src = fetchurl { 1398 - url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.0.tgz"; 1399 - sha512 = "MbmhvxXExm542tWREgSFnOVo07fDpsBJg3sIl6fSp9xuu75eGz5lz31q7wTLffwL3Za7XNRCMZy210+tnsUSEA=="; 1400 }; 1401 }; 1402 - "@webassemblyjs/helper-wasm-section-1.11.0" = { 1403 name = "_at_webassemblyjs_slash_helper-wasm-section"; 1404 packageName = "@webassemblyjs/helper-wasm-section"; 1405 - version = "1.11.0"; 1406 src = fetchurl { 1407 - url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.0.tgz"; 1408 - sha512 = "3Eb88hcbfY/FCukrg6i3EH8H2UsD7x8Vy47iVJrP967A9JGqgBVL9aH71SETPx1JrGsOUVLo0c7vMCN22ytJew=="; 1409 }; 1410 }; 1411 - "@webassemblyjs/ieee754-1.11.0" = { 1412 name = "_at_webassemblyjs_slash_ieee754"; 1413 packageName = "@webassemblyjs/ieee754"; 1414 - version = "1.11.0"; 1415 src = fetchurl { 1416 - url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.0.tgz"; 1417 - sha512 = "KXzOqpcYQwAfeQ6WbF6HXo+0udBNmw0iXDmEK5sFlmQdmND+tr773Ti8/5T/M6Tl/413ArSJErATd8In3B+WBA=="; 1418 }; 1419 }; 1420 - "@webassemblyjs/leb128-1.11.0" = { 1421 name = "_at_webassemblyjs_slash_leb128"; 1422 packageName = "@webassemblyjs/leb128"; 1423 - version = "1.11.0"; 1424 src = fetchurl { 1425 - url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.0.tgz"; 1426 - sha512 = "aqbsHa1mSQAbeeNcl38un6qVY++hh8OpCOzxhixSYgbRfNWcxJNJQwe2rezK9XEcssJbbWIkblaJRwGMS9zp+g=="; 1427 }; 1428 }; 1429 - "@webassemblyjs/utf8-1.11.0" = { 1430 name = "_at_webassemblyjs_slash_utf8"; 1431 packageName = "@webassemblyjs/utf8"; 1432 - version = "1.11.0"; 1433 src = fetchurl { 1434 - url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.0.tgz"; 1435 - sha512 = "A/lclGxH6SpSLSyFowMzO/+aDEPU4hvEiooCMXQPcQFPPJaYcPQNKGOCLUySJsYJ4trbpr+Fs08n4jelkVTGVw=="; 1436 }; 1437 }; 1438 - "@webassemblyjs/wasm-edit-1.11.0" = { 1439 name = "_at_webassemblyjs_slash_wasm-edit"; 1440 packageName = "@webassemblyjs/wasm-edit"; 1441 - version = "1.11.0"; 1442 src = fetchurl { 1443 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.0.tgz"; 1444 - sha512 = "JHQ0damXy0G6J9ucyKVXO2j08JVJ2ntkdJlq1UTiUrIgfGMmA7Ik5VdC/L8hBK46kVJgujkBIoMtT8yVr+yVOQ=="; 1445 }; 1446 }; 1447 - "@webassemblyjs/wasm-gen-1.11.0" = { 1448 name = "_at_webassemblyjs_slash_wasm-gen"; 1449 packageName = "@webassemblyjs/wasm-gen"; 1450 - version = "1.11.0"; 1451 src = fetchurl { 1452 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.0.tgz"; 1453 - sha512 = "BEUv1aj0WptCZ9kIS30th5ILASUnAPEvE3tVMTrItnZRT9tXCLW2LEXT8ezLw59rqPP9klh9LPmpU+WmRQmCPQ=="; 1454 }; 1455 }; 1456 - "@webassemblyjs/wasm-opt-1.11.0" = { 1457 name = "_at_webassemblyjs_slash_wasm-opt"; 1458 packageName = "@webassemblyjs/wasm-opt"; 1459 - version = "1.11.0"; 1460 src = fetchurl { 1461 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.0.tgz"; 1462 - sha512 = "tHUSP5F4ywyh3hZ0+fDQuWxKx3mJiPeFufg+9gwTpYp324mPCQgnuVKwzLTZVqj0duRDovnPaZqDwoyhIO8kYg=="; 1463 }; 1464 }; 1465 - "@webassemblyjs/wasm-parser-1.11.0" = { 1466 name = "_at_webassemblyjs_slash_wasm-parser"; 1467 packageName = "@webassemblyjs/wasm-parser"; 1468 - version = "1.11.0"; 1469 src = fetchurl { 1470 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.0.tgz"; 1471 - sha512 = "6L285Sgu9gphrcpDXINvm0M9BskznnzJTE7gYkjDbxET28shDqp27wpruyx3C2S/dvEwiigBwLA1cz7lNUi0kw=="; 1472 }; 1473 }; 1474 - "@webassemblyjs/wast-printer-1.11.0" = { 1475 name = "_at_webassemblyjs_slash_wast-printer"; 1476 packageName = "@webassemblyjs/wast-printer"; 1477 - version = "1.11.0"; 1478 src = fetchurl { 1479 - url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.0.tgz"; 1480 - sha512 = "Fg5OX46pRdTgB7rKIUojkh9vXaVN6sGYCnEiJN1GYkb0RPwShZXp6KTDqmoMdQPKhcroOXh3fEzmkWmCYaKYhQ=="; 1481 }; 1482 }; 1483 - "@webpack-cli/configtest-1.0.2" = { 1484 name = "_at_webpack-cli_slash_configtest"; 1485 packageName = "@webpack-cli/configtest"; 1486 - version = "1.0.2"; 1487 src = fetchurl { 1488 - url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.0.2.tgz"; 1489 - sha512 = "3OBzV2fBGZ5TBfdW50cha1lHDVf9vlvRXnjpVbJBa20pSZQaSkMJZiwA8V2vD9ogyeXn8nU5s5A6mHyf5jhMzA=="; 1490 }; 1491 }; 1492 - "@webpack-cli/info-1.2.3" = { 1493 name = "_at_webpack-cli_slash_info"; 1494 packageName = "@webpack-cli/info"; 1495 - version = "1.2.3"; 1496 src = fetchurl { 1497 - url = "https://registry.npmjs.org/@webpack-cli/info/-/info-1.2.3.tgz"; 1498 - sha512 = "lLek3/T7u40lTqzCGpC6CAbY6+vXhdhmwFRxZLMnRm6/sIF/7qMpT8MocXCRQfz0JAh63wpbXLMnsQ5162WS7Q=="; 1499 }; 1500 }; 1501 - "@webpack-cli/serve-1.3.1" = { 1502 name = "_at_webpack-cli_slash_serve"; 1503 packageName = "@webpack-cli/serve"; 1504 - version = "1.3.1"; 1505 src = fetchurl { 1506 - url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.3.1.tgz"; 1507 - sha512 = "0qXvpeYO6vaNoRBI52/UsbcaBydJCggoBBnIo/ovQQdn6fug0BgwsjorV1hVS7fMqGVTZGcVxv8334gjmbj5hw=="; 1508 }; 1509 }; 1510 "@xtuc/ieee754-1.2.0" = { ··· 1552 sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 1553 }; 1554 }; 1555 - "acorn-8.2.4" = { 1556 name = "acorn"; 1557 packageName = "acorn"; 1558 - version = "8.2.4"; 1559 src = fetchurl { 1560 - url = "https://registry.npmjs.org/acorn/-/acorn-8.2.4.tgz"; 1561 - sha512 = "Ibt84YwBDDA890eDiDCEqcbwvHlBvzzDkU2cGBBDDI1QWT12jTiXIOn2CIw5KK4i6N5Z2HUxwYjzriDyqaqqZg=="; 1562 }; 1563 }; 1564 - "acorn-jsx-5.3.1" = { 1565 name = "acorn-jsx"; 1566 packageName = "acorn-jsx"; 1567 - version = "5.3.1"; 1568 src = fetchurl { 1569 - url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz"; 1570 - sha512 = "K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng=="; 1571 }; 1572 }; 1573 "aggregate-error-3.1.0" = { ··· 1588 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 1589 }; 1590 }; 1591 - "ajv-8.2.0" = { 1592 name = "ajv"; 1593 packageName = "ajv"; 1594 - version = "8.2.0"; 1595 src = fetchurl { 1596 - url = "https://registry.npmjs.org/ajv/-/ajv-8.2.0.tgz"; 1597 - sha512 = "WSNGFuyWd//XO8n/m/EaOlNLtO0yL8EXT/74LqT4khdhpZjP7lkj/kT5uwRmGitKEVp/Oj7ZUHeGfPtgHhQ5CA=="; 1598 }; 1599 }; 1600 "ajv-errors-1.0.1" = { ··· 1858 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 1859 }; 1860 }; 1861 - "ast-metadata-inferer-0.4.0" = { 1862 name = "ast-metadata-inferer"; 1863 packageName = "ast-metadata-inferer"; 1864 - version = "0.4.0"; 1865 src = fetchurl { 1866 - url = "https://registry.npmjs.org/ast-metadata-inferer/-/ast-metadata-inferer-0.4.0.tgz"; 1867 - sha512 = "tKHdBe8N/Vq2nLAm4YPBVREVZjMux6KrqyPfNQgIbDl0t7HaNSmy8w4OyVHYg/cvyn5BW7o7pVwpjPte89Zhcg=="; 1868 }; 1869 }; 1870 "astral-regex-1.0.0" = { ··· 1912 sha512 = "csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="; 1913 }; 1914 }; 1915 "atob-2.1.2" = { 1916 name = "atob"; 1917 packageName = "atob"; ··· 1928 src = fetchurl { 1929 url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz"; 1930 sha512 = "XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg=="; 1931 - }; 1932 - }; 1933 - "babel-extract-comments-1.0.0" = { 1934 - name = "babel-extract-comments"; 1935 - packageName = "babel-extract-comments"; 1936 - version = "1.0.0"; 1937 - src = fetchurl { 1938 - url = "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz"; 1939 - sha512 = "qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ=="; 1940 }; 1941 }; 1942 "babel-loader-8.2.2" = { ··· 1966 sha512 = "fqdut9hGeaAgdX3sbAY25TkqA7LPmZB+Hf1XI67AppvhUw1cBST58BPwl5kPwDZYIvmqRwnsVKM0lppsQAsxhg=="; 1967 }; 1968 }; 1969 - "babel-plugin-polyfill-corejs2-0.2.0" = { 1970 name = "babel-plugin-polyfill-corejs2"; 1971 packageName = "babel-plugin-polyfill-corejs2"; 1972 - version = "0.2.0"; 1973 src = fetchurl { 1974 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.0.tgz"; 1975 - sha512 = "9bNwiR0dS881c5SHnzCmmGlMkJLl0OUZvxrxHo9w/iNoRuqaPjqlvBf4HrovXtQs/au5yKkpcdgfT1cC5PAZwg=="; 1976 }; 1977 }; 1978 - "babel-plugin-polyfill-corejs3-0.2.0" = { 1979 name = "babel-plugin-polyfill-corejs3"; 1980 packageName = "babel-plugin-polyfill-corejs3"; 1981 - version = "0.2.0"; 1982 src = fetchurl { 1983 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.0.tgz"; 1984 - sha512 = "zZyi7p3BCUyzNxLx8KV61zTINkkV65zVkDAFNZmrTCRVhjo1jAS+YLvDJ9Jgd/w2tsAviCwFHReYfxO3Iql8Yg=="; 1985 }; 1986 }; 1987 - "babel-plugin-polyfill-regenerator-0.2.0" = { 1988 name = "babel-plugin-polyfill-regenerator"; 1989 packageName = "babel-plugin-polyfill-regenerator"; 1990 - version = "0.2.0"; 1991 - src = fetchurl { 1992 - url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.0.tgz"; 1993 - sha512 = "J7vKbCuD2Xi/eEHxquHN14bXAW9CXtecwuLrOIDJtcZzTaPzV1VdEfoUf9AzcRBMolKUQKM9/GVojeh0hFiqMg=="; 1994 - }; 1995 - }; 1996 - "babel-plugin-syntax-object-rest-spread-6.13.0" = { 1997 - name = "babel-plugin-syntax-object-rest-spread"; 1998 - packageName = "babel-plugin-syntax-object-rest-spread"; 1999 - version = "6.13.0"; 2000 - src = fetchurl { 2001 - url = "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz"; 2002 - sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5"; 2003 - }; 2004 - }; 2005 - "babel-plugin-transform-object-rest-spread-6.26.0" = { 2006 - name = "babel-plugin-transform-object-rest-spread"; 2007 - packageName = "babel-plugin-transform-object-rest-spread"; 2008 - version = "6.26.0"; 2009 - src = fetchurl { 2010 - url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz"; 2011 - sha1 = "0f36692d50fef6b7e2d4b3ac1478137a963b7b06"; 2012 - }; 2013 - }; 2014 - "babel-runtime-6.26.0" = { 2015 - name = "babel-runtime"; 2016 - packageName = "babel-runtime"; 2017 - version = "6.26.0"; 2018 - src = fetchurl { 2019 - url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"; 2020 - sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; 2021 - }; 2022 - }; 2023 - "babylon-6.18.0" = { 2024 - name = "babylon"; 2025 - packageName = "babylon"; 2026 - version = "6.18.0"; 2027 src = fetchurl { 2028 - url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz"; 2029 - sha512 = "q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ=="; 2030 }; 2031 }; 2032 "bail-1.0.5" = { ··· 2110 sha512 = "p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="; 2111 }; 2112 }; 2113 - "blurhash-1.1.3" = { 2114 name = "blurhash"; 2115 packageName = "blurhash"; 2116 - version = "1.1.3"; 2117 src = fetchurl { 2118 - url = "https://registry.npmjs.org/blurhash/-/blurhash-1.1.3.tgz"; 2119 - sha512 = "yUhPJvXexbqbyijCIE/T2NCXcj9iNPhWmOKbPTuR/cm7Q5snXYIfnVnz6m7MWOXxODMz/Cr3UcVkRdHiuDVRDw=="; 2120 }; 2121 }; 2122 "body-parser-1.19.0" = { ··· 2182 sha1 = "0bd76704258be829b2398bb50e4b62d1a166b0b9"; 2183 }; 2184 }; 2185 - "browserslist-4.16.6" = { 2186 name = "browserslist"; 2187 packageName = "browserslist"; 2188 - version = "4.16.6"; 2189 src = fetchurl { 2190 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz"; 2191 - sha512 = "Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ=="; 2192 }; 2193 }; 2194 - "buffer-from-1.1.1" = { 2195 name = "buffer-from"; 2196 packageName = "buffer-from"; 2197 - version = "1.1.1"; 2198 src = fetchurl { 2199 - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"; 2200 - sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; 2201 }; 2202 }; 2203 "buffer-indexof-1.1.1" = { ··· 2236 sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="; 2237 }; 2238 }; 2239 - "cacache-15.0.6" = { 2240 name = "cacache"; 2241 packageName = "cacache"; 2242 - version = "15.0.6"; 2243 src = fetchurl { 2244 - url = "https://registry.npmjs.org/cacache/-/cacache-15.0.6.tgz"; 2245 - sha512 = "g1WYDMct/jzW+JdWEyjaX2zoBkZ6ZT9VpOyp2I/VMtDsNLffNat3kqPFfi1eDRSK9/SuKGyORDHcQMcPF8sQ/w=="; 2246 }; 2247 }; 2248 "cache-base-1.0.1" = { ··· 2335 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 2336 }; 2337 }; 2338 - "camelcase-6.2.0" = { 2339 - name = "camelcase"; 2340 - packageName = "camelcase"; 2341 - version = "6.2.0"; 2342 - src = fetchurl { 2343 - url = "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz"; 2344 - sha512 = "c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg=="; 2345 - }; 2346 - }; 2347 "camelcase-keys-4.2.0" = { 2348 name = "camelcase-keys"; 2349 packageName = "camelcase-keys"; ··· 2371 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 2372 }; 2373 }; 2374 - "caniuse-db-1.0.30001222" = { 2375 name = "caniuse-db"; 2376 packageName = "caniuse-db"; 2377 - version = "1.0.30001222"; 2378 src = fetchurl { 2379 - url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30001222.tgz"; 2380 - sha512 = "ZLsTZ9Rqz407NLdjwqDnTq9SahH+eCu+qCXh91M+fK+7CgbNrz510I7RYCiG11SIklDxvvmD9BqvdPOA//y9Rg=="; 2381 }; 2382 }; 2383 - "caniuse-lite-1.0.30001222" = { 2384 name = "caniuse-lite"; 2385 packageName = "caniuse-lite"; 2386 - version = "1.0.30001222"; 2387 src = fetchurl { 2388 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001222.tgz"; 2389 - sha512 = "rPmwUK0YMjfMlZVmH6nVB5U3YJ5Wnx3vmT5lnRO3nIKO8bJ+TRWMbGuuiSugDJqESy/lz+1hSrlQEagCtoOAWQ=="; 2390 }; 2391 }; 2392 "ccount-1.1.0" = { ··· 2416 sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 2417 }; 2418 }; 2419 - "chalk-4.1.1" = { 2420 name = "chalk"; 2421 packageName = "chalk"; 2422 - version = "4.1.1"; 2423 src = fetchurl { 2424 - url = "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz"; 2425 - sha512 = "diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg=="; 2426 }; 2427 }; 2428 "character-entities-1.2.4" = { ··· 2470 sha512 = "ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg=="; 2471 }; 2472 }; 2473 - "chokidar-3.5.1" = { 2474 name = "chokidar"; 2475 packageName = "chokidar"; 2476 - version = "3.5.1"; 2477 src = fetchurl { 2478 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz"; 2479 - sha512 = "9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw=="; 2480 }; 2481 }; 2482 "chownr-2.0.0" = { ··· 2606 sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; 2607 }; 2608 }; 2609 - "color-3.1.3" = { 2610 name = "color"; 2611 packageName = "color"; 2612 - version = "3.1.3"; 2613 src = fetchurl { 2614 - url = "https://registry.npmjs.org/color/-/color-3.1.3.tgz"; 2615 - sha512 = "xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ=="; 2616 }; 2617 }; 2618 "color-convert-1.9.3" = { ··· 2651 sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 2652 }; 2653 }; 2654 - "color-string-1.5.5" = { 2655 name = "color-string"; 2656 packageName = "color-string"; 2657 - version = "1.5.5"; 2658 src = fetchurl { 2659 - url = "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz"; 2660 - sha512 = "jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg=="; 2661 }; 2662 }; 2663 - "colorette-1.2.2" = { 2664 name = "colorette"; 2665 packageName = "colorette"; 2666 - version = "1.2.2"; 2667 src = fetchurl { 2668 - url = "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz"; 2669 - sha512 = "MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w=="; 2670 }; 2671 }; 2672 "commander-2.20.3" = { ··· 2766 src = fetchurl { 2767 url = "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz"; 2768 sha512 = "e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg=="; 2769 - }; 2770 - }; 2771 - "contains-path-0.1.0" = { 2772 - name = "contains-path"; 2773 - packageName = "contains-path"; 2774 - version = "0.1.0"; 2775 - src = fetchurl { 2776 - url = "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz"; 2777 - sha1 = "fe8cf184ff6670b6baef01a9d4861a5cbec4120a"; 2778 }; 2779 }; 2780 "content-disposition-0.5.3" = { ··· 2795 sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; 2796 }; 2797 }; 2798 - "convert-source-map-1.7.0" = { 2799 name = "convert-source-map"; 2800 packageName = "convert-source-map"; 2801 - version = "1.7.0"; 2802 src = fetchurl { 2803 - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz"; 2804 - sha512 = "4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA=="; 2805 }; 2806 }; 2807 "cookie-0.4.0" = { ··· 2840 sha512 = "MXyPCjdPVx5iiWyl40Va3JGh27bKzOTNY3NjUTrosD2q7dR/cLD0013uqJ3BpFbUjyONINjb6qI7nDIJujrMbA=="; 2841 }; 2842 }; 2843 - "core-js-2.6.12" = { 2844 - name = "core-js"; 2845 - packageName = "core-js"; 2846 - version = "2.6.12"; 2847 - src = fetchurl { 2848 - url = "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz"; 2849 - sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 2850 - }; 2851 - }; 2852 - "core-js-3.11.2" = { 2853 name = "core-js"; 2854 packageName = "core-js"; 2855 - version = "3.11.2"; 2856 src = fetchurl { 2857 - url = "https://registry.npmjs.org/core-js/-/core-js-3.11.2.tgz"; 2858 - sha512 = "3tfrrO1JpJSYGKnd9LKTBPqgUES/UYiCzMKeqwR1+jF16q4kD1BY2NvqkfuzXwQ6+CIWm55V9cjD7PQd+hijdw=="; 2859 }; 2860 }; 2861 - "core-js-compat-3.11.2" = { 2862 name = "core-js-compat"; 2863 packageName = "core-js-compat"; 2864 - version = "3.11.2"; 2865 src = fetchurl { 2866 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.11.2.tgz"; 2867 - sha512 = "gYhNwu7AJjecNtRrIfyoBabQ3ZG+llfPmg9BifIX8yxIpDyfNLRM73zIjINSm6z3dMdI1nwNC9C7uiy4pIC6cw=="; 2868 }; 2869 }; 2870 - "core-util-is-1.0.2" = { 2871 name = "core-util-is"; 2872 packageName = "core-util-is"; 2873 - version = "1.0.2"; 2874 src = fetchurl { 2875 - url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; 2876 - sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 2877 }; 2878 }; 2879 "cosmiconfig-5.2.1" = { ··· 2885 sha512 = "H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA=="; 2886 }; 2887 }; 2888 - "cosmiconfig-7.0.0" = { 2889 name = "cosmiconfig"; 2890 packageName = "cosmiconfig"; 2891 - version = "7.0.0"; 2892 src = fetchurl { 2893 - url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz"; 2894 - sha512 = "pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA=="; 2895 }; 2896 }; 2897 "cross-spawn-6.0.5" = { ··· 2912 sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="; 2913 }; 2914 }; 2915 - "crypto-random-string-1.0.0" = { 2916 name = "crypto-random-string"; 2917 packageName = "crypto-random-string"; 2918 - version = "1.0.0"; 2919 src = fetchurl { 2920 - url = "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz"; 2921 - sha1 = "a230f64f568310e1498009940790ec99545bca7e"; 2922 }; 2923 }; 2924 "css-blank-pseudo-0.1.4" = { ··· 2957 sha512 = "Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ=="; 2958 }; 2959 }; 2960 - "css-loader-5.2.4" = { 2961 name = "css-loader"; 2962 packageName = "css-loader"; 2963 - version = "5.2.4"; 2964 src = fetchurl { 2965 - url = "https://registry.npmjs.org/css-loader/-/css-loader-5.2.4.tgz"; 2966 - sha512 = "OFYGyINCKkdQsTrSYxzGSFnGS4gNjcXkKkQgWxK138jgnPt+lepxdjSZNc8sHAl5vP3DhsJUxufWIjOwI8PMMw=="; 2967 }; 2968 }; 2969 "css-prefers-color-scheme-3.1.1" = { ··· 2984 sha512 = "Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ=="; 2985 }; 2986 }; 2987 "css-select-base-adapter-0.1.1" = { 2988 name = "css-select-base-adapter"; 2989 packageName = "css-select-base-adapter"; ··· 3018 src = fetchurl { 3019 url = "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz"; 3020 sha512 = "ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ=="; 3021 }; 3022 }; 3023 "cssdb-4.4.0" = { ··· 3128 sha512 = "m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA=="; 3129 }; 3130 }; 3131 - "date-fns-2.21.1" = { 3132 name = "date-fns"; 3133 packageName = "date-fns"; 3134 - version = "2.21.1"; 3135 src = fetchurl { 3136 - url = "https://registry.npmjs.org/date-fns/-/date-fns-2.21.1.tgz"; 3137 - sha512 = "m1WR0xGiC6j6jNFAyW4Nvh4WxAi4JF4w9jRJwSI8nBmNcyZXPcP9VUQG+6gHQXAmqaGEKDKhOqAtENDC941UkA=="; 3138 }; 3139 }; 3140 "debug-2.6.9" = { ··· 3200 sha512 = "yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g=="; 3201 }; 3202 }; 3203 - "deep-is-0.1.3" = { 3204 name = "deep-is"; 3205 packageName = "deep-is"; 3206 - version = "0.1.3"; 3207 src = fetchurl { 3208 - url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"; 3209 - sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; 3210 }; 3211 }; 3212 "default-gateway-4.2.0" = { ··· 3281 sha1 = "978857442c44749e4206613e37946205826abd80"; 3282 }; 3283 }; 3284 - "detect-node-2.0.5" = { 3285 name = "detect-node"; 3286 packageName = "detect-node"; 3287 - version = "2.0.5"; 3288 src = fetchurl { 3289 - url = "https://registry.npmjs.org/detect-node/-/detect-node-2.0.5.tgz"; 3290 - sha512 = "qi86tE6hRcFHy8jI1m2VG+LaPUR1LhqDa5G8tVjuUXmOrpuAgqsA1pN0+ldgr3aKUH+QLI9hCY/OcRYisERejw=="; 3291 }; 3292 }; 3293 "dir-glob-2.2.2" = { ··· 3317 sha1 = "b39e7f1da6eb0a75ba9c17324b34753c47e0654d"; 3318 }; 3319 }; 3320 - "dns-packet-1.3.1" = { 3321 name = "dns-packet"; 3322 packageName = "dns-packet"; 3323 - version = "1.3.1"; 3324 src = fetchurl { 3325 - url = "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz"; 3326 - sha512 = "0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg=="; 3327 }; 3328 }; 3329 "dns-txt-2.0.2" = { ··· 3335 sha1 = "b91d806f5d27188e4ab3e7d107d881a1cc4642b6"; 3336 }; 3337 }; 3338 - "doctrine-1.5.0" = { 3339 name = "doctrine"; 3340 packageName = "doctrine"; 3341 - version = "1.5.0"; 3342 src = fetchurl { 3343 - url = "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz"; 3344 - sha1 = "379dce730f6166f76cefa4e6707a159b02c5a6fa"; 3345 }; 3346 }; 3347 "doctrine-3.0.0" = { ··· 3371 sha512 = "2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g=="; 3372 }; 3373 }; 3374 - "dom-serializer-1.3.1" = { 3375 name = "dom-serializer"; 3376 packageName = "dom-serializer"; 3377 - version = "1.3.1"; 3378 src = fetchurl { 3379 - url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.1.tgz"; 3380 - sha512 = "Pv2ZluG5ife96udGgEDovOOOA5UELkltfJpnIExPrAk1LTvecolUGn6lIaoLh86d83GiB86CjzciMd9BuRB71Q=="; 3381 }; 3382 }; 3383 "dom7-3.0.0" = { ··· 3425 sha512 = "J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA=="; 3426 }; 3427 }; 3428 - "domhandler-4.2.0" = { 3429 name = "domhandler"; 3430 packageName = "domhandler"; 3431 - version = "4.2.0"; 3432 src = fetchurl { 3433 - url = "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz"; 3434 - sha512 = "zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA=="; 3435 }; 3436 }; 3437 "domutils-1.7.0" = { ··· 3443 sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg=="; 3444 }; 3445 }; 3446 - "domutils-2.6.0" = { 3447 name = "domutils"; 3448 packageName = "domutils"; 3449 - version = "2.6.0"; 3450 src = fetchurl { 3451 - url = "https://registry.npmjs.org/domutils/-/domutils-2.6.0.tgz"; 3452 - sha512 = "y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA=="; 3453 }; 3454 }; 3455 "dot-case-3.0.4" = { ··· 3488 sha512 = "7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA=="; 3489 }; 3490 }; 3491 - "electron-to-chromium-1.3.726" = { 3492 name = "electron-to-chromium"; 3493 packageName = "electron-to-chromium"; 3494 - version = "1.3.726"; 3495 src = fetchurl { 3496 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.726.tgz"; 3497 - sha512 = "dw7WmrSu/JwtACiBzth8cuKf62NKL1xVJuNvyOg0jvruN/n4NLtGYoTzciQquCPNaS2eR+BT5GrxHbslfc/w1w=="; 3498 }; 3499 }; 3500 "emoji-regex-7.0.3" = { ··· 3542 sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; 3543 }; 3544 }; 3545 - "enhanced-resolve-5.8.0" = { 3546 name = "enhanced-resolve"; 3547 packageName = "enhanced-resolve"; 3548 - version = "5.8.0"; 3549 src = fetchurl { 3550 - url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.0.tgz"; 3551 - sha512 = "Sl3KRpJA8OpprrtaIswVki3cWPiPKxXuFxJXBp+zNb6s6VwNWwFRUdtmzd2ReUut8n+sCPx7QCtQ7w5wfJhSgQ=="; 3552 }; 3553 }; 3554 "enquirer-2.3.6" = { ··· 3614 sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 3615 }; 3616 }; 3617 - "es-abstract-1.18.0" = { 3618 name = "es-abstract"; 3619 packageName = "es-abstract"; 3620 - version = "1.18.0"; 3621 src = fetchurl { 3622 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz"; 3623 - sha512 = "LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw=="; 3624 }; 3625 }; 3626 - "es-module-lexer-0.4.1" = { 3627 name = "es-module-lexer"; 3628 packageName = "es-module-lexer"; 3629 - version = "0.4.1"; 3630 src = fetchurl { 3631 - url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.4.1.tgz"; 3632 - sha512 = "ooYciCUtfw6/d2w56UVeqHPcoCFAiJdz5XOkYpv/Txl1HMUozpXjz/2RIQgqwKdXNDPSF1W7mJCFse3G+HDyAA=="; 3633 }; 3634 }; 3635 "es-to-primitive-1.2.1" = { ··· 3704 sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 3705 }; 3706 }; 3707 - "eslint-7.25.0" = { 3708 name = "eslint"; 3709 packageName = "eslint"; 3710 - version = "7.25.0"; 3711 src = fetchurl { 3712 - url = "https://registry.npmjs.org/eslint/-/eslint-7.25.0.tgz"; 3713 - sha512 = "TVpSovpvCNpLURIScDRB6g5CYu/ZFq9GfX2hLNIV4dSBKxIWojeDODvYl3t0k0VtMxYeR8OXPCFE5+oHMlGfhw=="; 3714 }; 3715 }; 3716 - "eslint-import-resolver-node-0.3.4" = { 3717 name = "eslint-import-resolver-node"; 3718 packageName = "eslint-import-resolver-node"; 3719 - version = "0.3.4"; 3720 src = fetchurl { 3721 - url = "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz"; 3722 - sha512 = "ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA=="; 3723 }; 3724 }; 3725 - "eslint-module-utils-2.6.0" = { 3726 name = "eslint-module-utils"; 3727 packageName = "eslint-module-utils"; 3728 - version = "2.6.0"; 3729 src = fetchurl { 3730 - url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz"; 3731 - sha512 = "6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA=="; 3732 }; 3733 }; 3734 - "eslint-plugin-compat-3.9.0" = { 3735 name = "eslint-plugin-compat"; 3736 packageName = "eslint-plugin-compat"; 3737 - version = "3.9.0"; 3738 src = fetchurl { 3739 - url = "https://registry.npmjs.org/eslint-plugin-compat/-/eslint-plugin-compat-3.9.0.tgz"; 3740 - sha512 = "lt3l5PHFHVEYSZ5zijcoYvtQJPsBifRiH5N0Et57KwVu7l/yxmHhSG6VJiLMa/lXrg93Qu8049RNQOMn0+yJBg=="; 3741 }; 3742 }; 3743 "eslint-plugin-eslint-comments-3.2.0" = { ··· 3749 sha512 = "0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ=="; 3750 }; 3751 }; 3752 - "eslint-plugin-import-2.22.1" = { 3753 name = "eslint-plugin-import"; 3754 packageName = "eslint-plugin-import"; 3755 - version = "2.22.1"; 3756 src = fetchurl { 3757 - url = "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz"; 3758 - sha512 = "8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw=="; 3759 }; 3760 }; 3761 "eslint-plugin-promise-4.3.1" = { ··· 3866 sha512 = "BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="; 3867 }; 3868 }; 3869 - "estree-walker-0.6.1" = { 3870 - name = "estree-walker"; 3871 - packageName = "estree-walker"; 3872 - version = "0.6.1"; 3873 - src = fetchurl { 3874 - url = "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz"; 3875 - sha512 = "SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w=="; 3876 - }; 3877 - }; 3878 "estree-walker-1.0.1" = { 3879 name = "estree-walker"; 3880 packageName = "estree-walker"; ··· 3947 sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA=="; 3948 }; 3949 }; 3950 - "execa-5.0.0" = { 3951 name = "execa"; 3952 packageName = "execa"; 3953 - version = "5.0.0"; 3954 src = fetchurl { 3955 - url = "https://registry.npmjs.org/execa/-/execa-5.0.0.tgz"; 3956 - sha512 = "ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ=="; 3957 }; 3958 }; 3959 "execall-1.0.0" = { ··· 4001 sha512 = "mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g=="; 4002 }; 4003 }; 4004 - "ext-1.4.0" = { 4005 name = "ext"; 4006 packageName = "ext"; 4007 - version = "1.4.0"; 4008 src = fetchurl { 4009 - url = "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz"; 4010 - sha512 = "Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A=="; 4011 }; 4012 }; 4013 "extend-3.0.2" = { ··· 4064 sha512 = "g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw=="; 4065 }; 4066 }; 4067 - "fast-glob-3.2.5" = { 4068 name = "fast-glob"; 4069 packageName = "fast-glob"; 4070 - version = "3.2.5"; 4071 src = fetchurl { 4072 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz"; 4073 - sha512 = "2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg=="; 4074 }; 4075 }; 4076 "fast-json-stable-stringify-2.1.0" = { ··· 4109 sha512 = "On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow=="; 4110 }; 4111 }; 4112 - "fastq-1.11.0" = { 4113 name = "fastq"; 4114 packageName = "fastq"; 4115 - version = "1.11.0"; 4116 src = fetchurl { 4117 - url = "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz"; 4118 - sha512 = "7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g=="; 4119 }; 4120 }; 4121 - "faye-websocket-0.11.3" = { 4122 name = "faye-websocket"; 4123 packageName = "faye-websocket"; 4124 - version = "0.11.3"; 4125 src = fetchurl { 4126 - url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz"; 4127 - sha512 = "D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA=="; 4128 }; 4129 }; 4130 "file-entry-cache-4.0.0" = { ··· 4190 sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="; 4191 }; 4192 }; 4193 - "find-cache-dir-3.3.1" = { 4194 name = "find-cache-dir"; 4195 packageName = "find-cache-dir"; 4196 - version = "3.3.1"; 4197 src = fetchurl { 4198 - url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz"; 4199 - sha512 = "t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ=="; 4200 }; 4201 }; 4202 "find-up-2.1.0" = { ··· 4226 sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; 4227 }; 4228 }; 4229 "flat-cache-2.0.1" = { 4230 name = "flat-cache"; 4231 packageName = "flat-cache"; ··· 4253 sha512 = "r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="; 4254 }; 4255 }; 4256 - "flatted-3.1.1" = { 4257 name = "flatted"; 4258 packageName = "flatted"; 4259 - version = "3.1.1"; 4260 src = fetchurl { 4261 - url = "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz"; 4262 - sha512 = "zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA=="; 4263 }; 4264 }; 4265 "flatten-1.0.3" = { ··· 4271 sha512 = "dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg=="; 4272 }; 4273 }; 4274 - "flv.js-1.5.0" = { 4275 name = "flv.js"; 4276 packageName = "flv.js"; 4277 - version = "1.5.0"; 4278 src = fetchurl { 4279 - url = "https://registry.npmjs.org/flv.js/-/flv.js-1.5.0.tgz"; 4280 - sha512 = "7tFwccqkFXpA7RIED0KvuNny2qVnpuGc5nTGsRpzrCT+qtwIaZyciK5UgyvgtlAMYaPFzYS0wdI92JiSBKOyXw=="; 4281 }; 4282 }; 4283 - "follow-redirects-1.14.0" = { 4284 name = "follow-redirects"; 4285 packageName = "follow-redirects"; 4286 - version = "1.14.0"; 4287 src = fetchurl { 4288 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.0.tgz"; 4289 - sha512 = "0vRwd7RKQBTt+mgu87mtYeofLFZpTas2S9zY+jIeuLJMNvudIgF52nr19q40HOwH5RrhWIPuj9puybzSJiRrVg=="; 4290 }; 4291 }; 4292 "fontsource-noto-sans-3.1.5" = { ··· 4343 sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80"; 4344 }; 4345 }; 4346 - "forwarded-0.1.2" = { 4347 name = "forwarded"; 4348 packageName = "forwarded"; 4349 - version = "0.1.2"; 4350 src = fetchurl { 4351 - url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz"; 4352 - sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; 4353 }; 4354 }; 4355 "fragment-cache-0.2.1" = { ··· 4370 sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7"; 4371 }; 4372 }; 4373 - "fs-extra-8.1.0" = { 4374 name = "fs-extra"; 4375 packageName = "fs-extra"; 4376 - version = "8.1.0"; 4377 src = fetchurl { 4378 - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz"; 4379 - sha512 = "yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g=="; 4380 }; 4381 }; 4382 "fs-minipass-2.1.0" = { ··· 4523 sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; 4524 }; 4525 }; 4526 - "glob-7.1.6" = { 4527 name = "glob"; 4528 packageName = "glob"; 4529 - version = "7.1.6"; 4530 src = fetchurl { 4531 - url = "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"; 4532 - sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="; 4533 }; 4534 }; 4535 "glob-parent-3.1.0" = { ··· 4595 sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 4596 }; 4597 }; 4598 - "globals-12.4.0" = { 4599 name = "globals"; 4600 packageName = "globals"; 4601 - version = "12.4.0"; 4602 - src = fetchurl { 4603 - url = "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz"; 4604 - sha512 = "BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg=="; 4605 - }; 4606 - }; 4607 - "globals-13.8.0" = { 4608 - name = "globals"; 4609 - packageName = "globals"; 4610 - version = "13.8.0"; 4611 src = fetchurl { 4612 - url = "https://registry.npmjs.org/globals/-/globals-13.8.0.tgz"; 4613 - sha512 = "rHtdA6+PDBIjeEvA91rpqzEvk/k3/i7EeNQiryiWuJH0Hw9cpyJMAt2jtbAwUaRdhD+573X4vWw6IcjKPasi9Q=="; 4614 }; 4615 }; 4616 - "globby-11.0.3" = { 4617 name = "globby"; 4618 packageName = "globby"; 4619 - version = "11.0.3"; 4620 src = fetchurl { 4621 - url = "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz"; 4622 - sha512 = "ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg=="; 4623 }; 4624 }; 4625 "globby-6.1.0" = { ··· 4658 sha512 = "otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ=="; 4659 }; 4660 }; 4661 - "graceful-fs-4.2.6" = { 4662 name = "graceful-fs"; 4663 packageName = "graceful-fs"; 4664 - version = "4.2.6"; 4665 src = fetchurl { 4666 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz"; 4667 - sha512 = "nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ=="; 4668 }; 4669 }; 4670 "handle-thing-2.0.1" = { ··· 4748 sha512 = "chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="; 4749 }; 4750 }; 4751 "has-value-0.3.1" = { 4752 name = "has-value"; 4753 packageName = "has-value"; ··· 4937 sha512 = "4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q=="; 4938 }; 4939 }; 4940 "http-deceiver-1.2.7" = { 4941 name = "http-deceiver"; 4942 packageName = "http-deceiver"; ··· 5009 sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 5010 }; 5011 }; 5012 - "iconv-lite-0.6.2" = { 5013 name = "iconv-lite"; 5014 packageName = "iconv-lite"; 5015 - version = "0.6.2"; 5016 src = fetchurl { 5017 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.2.tgz"; 5018 - sha512 = "2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ=="; 5019 }; 5020 }; 5021 "icss-utils-5.1.0" = { ··· 5025 src = fetchurl { 5026 url = "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz"; 5027 sha512 = "soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA=="; 5028 }; 5029 }; 5030 "ignore-4.0.6" = { ··· 5216 sha512 = "S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg=="; 5217 }; 5218 }; 5219 "interpret-2.2.0" = { 5220 name = "interpret"; 5221 packageName = "interpret"; ··· 5333 sha512 = "UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A=="; 5334 }; 5335 }; 5336 - "is-arguments-1.1.0" = { 5337 name = "is-arguments"; 5338 packageName = "is-arguments"; 5339 - version = "1.1.0"; 5340 src = fetchurl { 5341 - url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz"; 5342 - sha512 = "1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg=="; 5343 }; 5344 }; 5345 "is-arrayish-0.2.1" = { ··· 5360 sha512 = "eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="; 5361 }; 5362 }; 5363 - "is-bigint-1.0.2" = { 5364 name = "is-bigint"; 5365 packageName = "is-bigint"; 5366 - version = "1.0.2"; 5367 src = fetchurl { 5368 - url = "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz"; 5369 - sha512 = "0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA=="; 5370 }; 5371 }; 5372 "is-binary-path-1.0.1" = { ··· 5387 sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 5388 }; 5389 }; 5390 - "is-boolean-object-1.1.0" = { 5391 name = "is-boolean-object"; 5392 packageName = "is-boolean-object"; 5393 - version = "1.1.0"; 5394 src = fetchurl { 5395 - url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz"; 5396 - sha512 = "a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA=="; 5397 }; 5398 }; 5399 "is-buffer-1.1.6" = { ··· 5414 sha512 = "i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ=="; 5415 }; 5416 }; 5417 - "is-callable-1.2.3" = { 5418 name = "is-callable"; 5419 packageName = "is-callable"; 5420 - version = "1.2.3"; 5421 src = fetchurl { 5422 - url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz"; 5423 - sha512 = "J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ=="; 5424 }; 5425 }; 5426 "is-color-stop-1.1.0" = { ··· 5432 sha1 = "cfff471aee4dd5c9e158598fbe12967b5cdad345"; 5433 }; 5434 }; 5435 - "is-core-module-2.3.0" = { 5436 name = "is-core-module"; 5437 packageName = "is-core-module"; 5438 - version = "2.3.0"; 5439 src = fetchurl { 5440 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.3.0.tgz"; 5441 - sha512 = "xSphU2KG9867tsYdLD4RWQ1VqdFl4HTO9Thf3I/3dLEfr0dbPTWKsuCKrgqMljg4nPE+Gq0VCnzT3gr0CyBmsw=="; 5442 }; 5443 }; 5444 "is-data-descriptor-0.1.4" = { ··· 5459 sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ=="; 5460 }; 5461 }; 5462 - "is-date-object-1.0.2" = { 5463 name = "is-date-object"; 5464 packageName = "is-date-object"; 5465 - version = "1.0.2"; 5466 src = fetchurl { 5467 - url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz"; 5468 - sha512 = "USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g=="; 5469 }; 5470 }; 5471 "is-decimal-1.0.4" = { ··· 5612 sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 5613 }; 5614 }; 5615 - "is-number-object-1.0.4" = { 5616 name = "is-number-object"; 5617 packageName = "is-number-object"; 5618 - version = "1.0.4"; 5619 src = fetchurl { 5620 - url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz"; 5621 - sha512 = "zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw=="; 5622 }; 5623 }; 5624 "is-obj-1.0.1" = { ··· 5693 sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="; 5694 }; 5695 }; 5696 - "is-regex-1.1.2" = { 5697 name = "is-regex"; 5698 packageName = "is-regex"; 5699 - version = "1.1.2"; 5700 src = fetchurl { 5701 - url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz"; 5702 - sha512 = "axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg=="; 5703 }; 5704 }; 5705 "is-regexp-1.0.0" = { ··· 5738 sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; 5739 }; 5740 }; 5741 - "is-stream-2.0.0" = { 5742 name = "is-stream"; 5743 packageName = "is-stream"; 5744 - version = "2.0.0"; 5745 src = fetchurl { 5746 - url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz"; 5747 - sha512 = "XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="; 5748 }; 5749 }; 5750 - "is-string-1.0.5" = { 5751 name = "is-string"; 5752 packageName = "is-string"; 5753 - version = "1.0.5"; 5754 src = fetchurl { 5755 - url = "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz"; 5756 - sha512 = "buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ=="; 5757 }; 5758 }; 5759 "is-supported-regexp-flag-1.0.1" = { ··· 5765 sha512 = "3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ=="; 5766 }; 5767 }; 5768 - "is-symbol-1.0.3" = { 5769 name = "is-symbol"; 5770 packageName = "is-symbol"; 5771 - version = "1.0.3"; 5772 src = fetchurl { 5773 - url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz"; 5774 - sha512 = "OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ=="; 5775 }; 5776 }; 5777 "is-typedarray-1.0.0" = { ··· 5882 sha512 = "fwAF1G89amm3uO2Yw0E26fW5X6JoyRUnOdBEeuSN04/NpdKKVHD4u53dgqF0jHzXNuKdn5eh0AuV37cMKzBanA=="; 5883 }; 5884 }; 5885 - "jest-worker-24.9.0" = { 5886 name = "jest-worker"; 5887 packageName = "jest-worker"; 5888 - version = "24.9.0"; 5889 src = fetchurl { 5890 - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz"; 5891 - sha512 = "51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw=="; 5892 }; 5893 }; 5894 - "jest-worker-26.6.2" = { 5895 name = "jest-worker"; 5896 packageName = "jest-worker"; 5897 - version = "26.6.2"; 5898 src = fetchurl { 5899 - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz"; 5900 - sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ=="; 5901 }; 5902 }; 5903 "jquery-3.6.0" = { ··· 5972 sha512 = "xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="; 5973 }; 5974 }; 5975 "json-schema-traverse-0.4.1" = { 5976 name = "json-schema-traverse"; 5977 packageName = "json-schema-traverse"; ··· 6026 sha512 = "f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA=="; 6027 }; 6028 }; 6029 - "jsonfile-4.0.0" = { 6030 name = "jsonfile"; 6031 packageName = "jsonfile"; 6032 - version = "4.0.0"; 6033 src = fetchurl { 6034 - url = "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"; 6035 - sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb"; 6036 }; 6037 }; 6038 - "jstree-3.3.11" = { 6039 name = "jstree"; 6040 packageName = "jstree"; 6041 - version = "3.3.11"; 6042 src = fetchurl { 6043 - url = "https://registry.npmjs.org/jstree/-/jstree-3.3.11.tgz"; 6044 - sha512 = "9ZJKroPjCyjb6JLPuAbBrLJKT6pS1f4m5gkwoEagG5oQWtvzm0IiDsntXTxeFtz7AmqrKfij+gLfF9MgWriNxg=="; 6045 }; 6046 }; 6047 - "jszip-3.6.0" = { 6048 name = "jszip"; 6049 packageName = "jszip"; 6050 - version = "3.6.0"; 6051 src = fetchurl { 6052 - url = "https://registry.npmjs.org/jszip/-/jszip-3.6.0.tgz"; 6053 - sha512 = "jgnQoG9LKnWO3mnVNBnfhkh0QknICd1FGSrXcgrl67zioyJ4wgx25o9ZqwNtrROSflGBCGYnJfjrIyRIby1OoQ=="; 6054 }; 6055 }; 6056 "killable-1.0.1" = { ··· 6134 sha1 = "c2e7a9f772094dee9d34202ae8acce4687875580"; 6135 }; 6136 }; 6137 "levn-0.4.1" = { 6138 name = "levn"; 6139 packageName = "levn"; ··· 6189 sha1 = "1c00c743b433cd0a4e80758f7b64a57440d9ff00"; 6190 }; 6191 }; 6192 - "load-json-file-2.0.0" = { 6193 - name = "load-json-file"; 6194 - packageName = "load-json-file"; 6195 - version = "2.0.0"; 6196 - src = fetchurl { 6197 - url = "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz"; 6198 - sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8"; 6199 - }; 6200 - }; 6201 "load-json-file-4.0.0" = { 6202 name = "load-json-file"; 6203 packageName = "load-json-file"; ··· 6234 sha512 = "rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ=="; 6235 }; 6236 }; 6237 - "localforage-1.9.0" = { 6238 name = "localforage"; 6239 packageName = "localforage"; 6240 - version = "1.9.0"; 6241 src = fetchurl { 6242 - url = "https://registry.npmjs.org/localforage/-/localforage-1.9.0.tgz"; 6243 - sha512 = "rR1oyNrKulpe+VM9cYmcFn6tsHuokyVHFaCM3+osEmxaHTbEk8oQu6eGDfS6DQLWi/N67XRmB8ECG37OES368g=="; 6244 }; 6245 }; 6246 "locate-path-2.0.0" = { ··· 6270 sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="; 6271 }; 6272 }; 6273 "lodash-4.17.21" = { 6274 name = "lodash"; 6275 packageName = "lodash"; ··· 6279 sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; 6280 }; 6281 }; 6282 - "lodash._reinterpolate-3.0.0" = { 6283 - name = "lodash._reinterpolate"; 6284 - packageName = "lodash._reinterpolate"; 6285 - version = "3.0.0"; 6286 - src = fetchurl { 6287 - url = "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz"; 6288 - sha1 = "0ccf2d89166af03b3663c796538b75ac6e114d9d"; 6289 - }; 6290 - }; 6291 "lodash.clonedeep-4.5.0" = { 6292 name = "lodash.clonedeep"; 6293 packageName = "lodash.clonedeep"; ··· 6306 sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af"; 6307 }; 6308 }; 6309 - "lodash.flatten-4.4.0" = { 6310 - name = "lodash.flatten"; 6311 - packageName = "lodash.flatten"; 6312 - version = "4.4.0"; 6313 - src = fetchurl { 6314 - url = "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz"; 6315 - sha1 = "f31c22225a9632d2bbf8e4addbef240aa765a61f"; 6316 - }; 6317 - }; 6318 "lodash.memoize-4.1.2" = { 6319 name = "lodash.memoize"; 6320 packageName = "lodash.memoize"; ··· 6324 sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe"; 6325 }; 6326 }; 6327 - "lodash.template-4.5.0" = { 6328 - name = "lodash.template"; 6329 - packageName = "lodash.template"; 6330 - version = "4.5.0"; 6331 src = fetchurl { 6332 - url = "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz"; 6333 - sha512 = "84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A=="; 6334 }; 6335 }; 6336 - "lodash.templatesettings-4.2.0" = { 6337 - name = "lodash.templatesettings"; 6338 - packageName = "lodash.templatesettings"; 6339 - version = "4.2.0"; 6340 src = fetchurl { 6341 - url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz"; 6342 - sha512 = "stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ=="; 6343 }; 6344 }; 6345 "lodash.truncate-4.4.2" = { ··· 6711 sha512 = "tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg=="; 6712 }; 6713 }; 6714 - "mime-db-1.47.0" = { 6715 name = "mime-db"; 6716 packageName = "mime-db"; 6717 - version = "1.47.0"; 6718 src = fetchurl { 6719 - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.47.0.tgz"; 6720 - sha512 = "QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw=="; 6721 }; 6722 }; 6723 - "mime-types-2.1.30" = { 6724 name = "mime-types"; 6725 packageName = "mime-types"; 6726 - version = "2.1.30"; 6727 src = fetchurl { 6728 - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.30.tgz"; 6729 - sha512 = "crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg=="; 6730 }; 6731 }; 6732 "mimic-fn-2.1.0" = { ··· 6909 sha1 = "899f11d9686e5e05cb91b35d5f0e63b773cfc901"; 6910 }; 6911 }; 6912 - "nan-2.14.2" = { 6913 name = "nan"; 6914 packageName = "nan"; 6915 - version = "2.14.2"; 6916 src = fetchurl { 6917 - url = "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz"; 6918 - sha512 = "M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ=="; 6919 }; 6920 }; 6921 - "nanoid-3.1.22" = { 6922 name = "nanoid"; 6923 packageName = "nanoid"; 6924 - version = "3.1.22"; 6925 src = fetchurl { 6926 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz"; 6927 - sha512 = "/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ=="; 6928 }; 6929 }; 6930 "nanomatch-1.2.13" = { ··· 7008 sha512 = "PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA=="; 7009 }; 7010 }; 7011 - "node-releases-1.1.71" = { 7012 name = "node-releases"; 7013 packageName = "node-releases"; 7014 - version = "1.1.71"; 7015 src = fetchurl { 7016 - url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz"; 7017 - sha512 = "zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg=="; 7018 }; 7019 }; 7020 "normalize-package-data-2.5.0" = { ··· 7026 sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA=="; 7027 }; 7028 }; 7029 - "normalize-package-data-3.0.2" = { 7030 name = "normalize-package-data"; 7031 packageName = "normalize-package-data"; 7032 - version = "3.0.2"; 7033 src = fetchurl { 7034 - url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.2.tgz"; 7035 - sha512 = "6CdZocmfGaKnIHPVFhJJZ3GuR8SsLKvDANFp47Jmy51aKIr8akjAWTSxtpI+MBgBFdSMRyo4hMpDlT6dTffgZg=="; 7036 }; 7037 }; 7038 "normalize-path-2.1.1" = { ··· 7107 sha512 = "WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg=="; 7108 }; 7109 }; 7110 "num2fraction-1.2.2" = { 7111 name = "num2fraction"; 7112 packageName = "num2fraction"; ··· 7134 sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; 7135 }; 7136 }; 7137 - "object-inspect-1.10.2" = { 7138 name = "object-inspect"; 7139 packageName = "object-inspect"; 7140 - version = "1.10.2"; 7141 src = fetchurl { 7142 - url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.2.tgz"; 7143 - sha512 = "gz58rdPpadwztRrPjZE9DZLOABUpTGdcANUgOwBFO1C+HZZhePoP83M65WGDmbpwFYJSWqavbl4SgDn4k8RYTA=="; 7144 }; 7145 }; 7146 "object-is-1.1.5" = { ··· 7197 sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; 7198 }; 7199 }; 7200 - "object.values-1.1.3" = { 7201 name = "object.values"; 7202 packageName = "object.values"; 7203 - version = "1.1.3"; 7204 src = fetchurl { 7205 - url = "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz"; 7206 - sha512 = "nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw=="; 7207 }; 7208 }; 7209 "obuf-1.1.2" = { ··· 7341 sha512 = "R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="; 7342 }; 7343 }; 7344 "p-map-2.1.0" = { 7345 name = "p-map"; 7346 packageName = "p-map"; ··· 7438 src = fetchurl { 7439 url = "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz"; 7440 sha512 = "kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ=="; 7441 - }; 7442 - }; 7443 - "parse-json-2.2.0" = { 7444 - name = "parse-json"; 7445 - packageName = "parse-json"; 7446 - version = "2.2.0"; 7447 - src = fetchurl { 7448 - url = "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz"; 7449 - sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; 7450 }; 7451 }; 7452 "parse-json-4.0.0" = { ··· 7557 sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="; 7558 }; 7559 }; 7560 - "path-parse-1.0.6" = { 7561 name = "path-parse"; 7562 packageName = "path-parse"; 7563 - version = "1.0.6"; 7564 src = fetchurl { 7565 - url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz"; 7566 - sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="; 7567 }; 7568 }; 7569 "path-to-regexp-0.1.7" = { ··· 7584 sha1 = "b33705c140234d873c8721c7b9fd8b541ed3aff9"; 7585 }; 7586 }; 7587 - "path-type-2.0.0" = { 7588 - name = "path-type"; 7589 - packageName = "path-type"; 7590 - version = "2.0.0"; 7591 - src = fetchurl { 7592 - url = "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz"; 7593 - sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73"; 7594 - }; 7595 - }; 7596 "path-type-3.0.0" = { 7597 name = "path-type"; 7598 packageName = "path-type"; ··· 7629 sha512 = "xGDUhnCYPfHy+unMXCLCJtlpZaaZ17Ew3WIL0tnSgKFUZXHAPD49GO9xScyszSsQMoutNDgRb+rfBXIaX/lJbw=="; 7630 }; 7631 }; 7632 - "picomatch-2.2.3" = { 7633 name = "picomatch"; 7634 packageName = "picomatch"; 7635 - version = "2.2.3"; 7636 src = fetchurl { 7637 - url = "https://registry.npmjs.org/picomatch/-/picomatch-2.2.3.tgz"; 7638 - sha512 = "KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg=="; 7639 }; 7640 }; 7641 "pify-2.3.0" = { ··· 7710 sha512 = "HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="; 7711 }; 7712 }; 7713 "plur-2.1.2" = { 7714 name = "plur"; 7715 packageName = "plur"; ··· 7746 sha512 = "zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg=="; 7747 }; 7748 }; 7749 - "postcss-7.0.35" = { 7750 name = "postcss"; 7751 packageName = "postcss"; 7752 - version = "7.0.35"; 7753 src = fetchurl { 7754 - url = "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz"; 7755 - sha512 = "3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg=="; 7756 }; 7757 }; 7758 - "postcss-8.2.13" = { 7759 name = "postcss"; 7760 packageName = "postcss"; 7761 - version = "8.2.13"; 7762 src = fetchurl { 7763 - url = "https://registry.npmjs.org/postcss/-/postcss-8.2.13.tgz"; 7764 - sha512 = "FCE5xLH+hjbzRdpbRb1IMCvPv9yZx2QnDarBEYSN0N0HYk+TcXsEhwdFcFb+SRWOKzKGErhIEbBK2ogyLdTtfQ=="; 7765 }; 7766 }; 7767 "postcss-attribute-case-insensitive-4.0.2" = { ··· 8448 sha512 = "w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ=="; 8449 }; 8450 }; 8451 - "postcss-selector-parser-6.0.5" = { 8452 name = "postcss-selector-parser"; 8453 packageName = "postcss-selector-parser"; 8454 - version = "6.0.5"; 8455 src = fetchurl { 8456 - url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.5.tgz"; 8457 - sha512 = "aFYPoYmXbZ1V6HZaSvat08M97A8HqO6Pjz+PiNpw/DhuRrC72XWAdp3hL6wusDCN31sSmcZyMGa2hZEuX+Xfhg=="; 8458 }; 8459 }; 8460 "postcss-sorting-4.1.0" = { ··· 8583 sha1 = "98472870bf228132fcbdd868129bad12c3c029e3"; 8584 }; 8585 }; 8586 - "proxy-addr-2.0.6" = { 8587 name = "proxy-addr"; 8588 packageName = "proxy-addr"; 8589 - version = "2.0.6"; 8590 src = fetchurl { 8591 - url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz"; 8592 - sha512 = "dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw=="; 8593 }; 8594 }; 8595 "prr-1.0.1" = { ··· 8727 sha1 = "25eccff3a153b6809afacb23ee15387db9e0ee61"; 8728 }; 8729 }; 8730 - "read-pkg-2.0.0" = { 8731 - name = "read-pkg"; 8732 - packageName = "read-pkg"; 8733 - version = "2.0.0"; 8734 - src = fetchurl { 8735 - url = "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz"; 8736 - sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"; 8737 - }; 8738 - }; 8739 "read-pkg-3.0.0" = { 8740 name = "read-pkg"; 8741 packageName = "read-pkg"; ··· 8752 src = fetchurl { 8753 url = "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz"; 8754 sha512 = "Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg=="; 8755 - }; 8756 - }; 8757 - "read-pkg-up-2.0.0" = { 8758 - name = "read-pkg-up"; 8759 - packageName = "read-pkg-up"; 8760 - version = "2.0.0"; 8761 - src = fetchurl { 8762 - url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz"; 8763 - sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be"; 8764 }; 8765 }; 8766 "read-pkg-up-3.0.0" = { ··· 8808 sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ=="; 8809 }; 8810 }; 8811 - "readdirp-3.5.0" = { 8812 name = "readdirp"; 8813 packageName = "readdirp"; 8814 - version = "3.5.0"; 8815 src = fetchurl { 8816 - url = "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz"; 8817 - sha512 = "cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ=="; 8818 }; 8819 }; 8820 - "rechoir-0.7.0" = { 8821 name = "rechoir"; 8822 packageName = "rechoir"; 8823 - version = "0.7.0"; 8824 src = fetchurl { 8825 - url = "https://registry.npmjs.org/rechoir/-/rechoir-0.7.0.tgz"; 8826 - sha512 = "ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q=="; 8827 }; 8828 }; 8829 "redent-2.0.0" = { ··· 8862 sha512 = "F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA=="; 8863 }; 8864 }; 8865 - "regenerator-runtime-0.11.1" = { 8866 name = "regenerator-runtime"; 8867 packageName = "regenerator-runtime"; 8868 - version = "0.11.1"; 8869 src = fetchurl { 8870 - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"; 8871 - sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="; 8872 - }; 8873 - }; 8874 - "regenerator-runtime-0.13.8" = { 8875 - name = "regenerator-runtime"; 8876 - packageName = "regenerator-runtime"; 8877 - version = "0.13.8"; 8878 - src = fetchurl { 8879 - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.8.tgz"; 8880 - sha512 = "o/ASGwgZ6UiVjspr4YnzHKF1NbBdX+mCPkSeymofk/d7I+csCYn3ZgZMMVtXeecpT8DBiI2nAlYkHd+xNCqu4A=="; 8881 }; 8882 }; 8883 "regenerator-transform-0.14.5" = { ··· 8907 sha512 = "JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA=="; 8908 }; 8909 }; 8910 - "regexpp-3.1.0" = { 8911 name = "regexpp"; 8912 packageName = "regexpp"; 8913 - version = "3.1.0"; 8914 src = fetchurl { 8915 - url = "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz"; 8916 - sha512 = "ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q=="; 8917 }; 8918 }; 8919 "regexpu-core-4.7.1" = { ··· 9015 sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef"; 9016 }; 9017 }; 9018 - "renderkid-2.0.5" = { 9019 name = "renderkid"; 9020 packageName = "renderkid"; 9021 - version = "2.0.5"; 9022 src = fetchurl { 9023 - url = "https://registry.npmjs.org/renderkid/-/renderkid-2.0.5.tgz"; 9024 - sha512 = "ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ=="; 9025 }; 9026 }; 9027 "repeat-element-1.1.4" = { ··· 9231 sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 9232 }; 9233 }; 9234 - "rollup-1.32.1" = { 9235 name = "rollup"; 9236 packageName = "rollup"; 9237 - version = "1.32.1"; 9238 src = fetchurl { 9239 - url = "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz"; 9240 - sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A=="; 9241 }; 9242 }; 9243 - "rollup-plugin-babel-4.4.0" = { 9244 - name = "rollup-plugin-babel"; 9245 - packageName = "rollup-plugin-babel"; 9246 - version = "4.4.0"; 9247 - src = fetchurl { 9248 - url = "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz"; 9249 - sha512 = "Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw=="; 9250 - }; 9251 - }; 9252 - "rollup-plugin-terser-5.3.1" = { 9253 name = "rollup-plugin-terser"; 9254 packageName = "rollup-plugin-terser"; 9255 - version = "5.3.1"; 9256 src = fetchurl { 9257 - url = "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz"; 9258 - sha512 = "1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w=="; 9259 - }; 9260 - }; 9261 - "rollup-pluginutils-2.8.2" = { 9262 - name = "rollup-pluginutils"; 9263 - packageName = "rollup-pluginutils"; 9264 - version = "2.8.2"; 9265 - src = fetchurl { 9266 - url = "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz"; 9267 - sha512 = "EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ=="; 9268 }; 9269 }; 9270 "run-parallel-1.2.0" = { ··· 9303 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 9304 }; 9305 }; 9306 - "sass-1.32.12" = { 9307 name = "sass"; 9308 packageName = "sass"; 9309 - version = "1.32.12"; 9310 src = fetchurl { 9311 - url = "https://registry.npmjs.org/sass/-/sass-1.32.12.tgz"; 9312 - sha512 = "zmXn03k3hN0KaiVTjohgkg98C3UowhL1/VSGdj4/VAAiMKGQOE80PFPxFP2Kyq0OUskPKcY5lImkhBKEHlypJA=="; 9313 }; 9314 }; 9315 - "sass-loader-10.1.1" = { 9316 name = "sass-loader"; 9317 packageName = "sass-loader"; 9318 - version = "10.1.1"; 9319 src = fetchurl { 9320 - url = "https://registry.npmjs.org/sass-loader/-/sass-loader-10.1.1.tgz"; 9321 - sha512 = "W6gVDXAd5hR/WHsPicvZdjAWHBcEJ44UahgxcIE196fW2ong0ZHMPO1kZuI5q0VlvMQZh32gpv69PLWQm70qrw=="; 9322 }; 9323 }; 9324 "sax-1.2.4" = { ··· 9348 sha512 = "SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg=="; 9349 }; 9350 }; 9351 - "schema-utils-3.0.0" = { 9352 name = "schema-utils"; 9353 packageName = "schema-utils"; 9354 - version = "3.0.0"; 9355 src = fetchurl { 9356 - url = "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz"; 9357 - sha512 = "6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA=="; 9358 }; 9359 }; 9360 "screenfull-5.1.0" = { ··· 9411 sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="; 9412 }; 9413 }; 9414 - "semver-7.3.2" = { 9415 - name = "semver"; 9416 - packageName = "semver"; 9417 - version = "7.3.2"; 9418 - src = fetchurl { 9419 - url = "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz"; 9420 - sha512 = "OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ=="; 9421 - }; 9422 - }; 9423 "semver-7.3.5" = { 9424 name = "semver"; 9425 packageName = "semver"; ··· 9454 src = fetchurl { 9455 url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz"; 9456 sha512 = "SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA=="; 9457 }; 9458 }; 9459 "serve-index-1.9.1" = { ··· 9564 sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 9565 }; 9566 }; 9567 "signal-exit-3.0.3" = { 9568 name = "signal-exit"; 9569 packageName = "signal-exit"; ··· 9654 sha512 = "DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw=="; 9655 }; 9656 }; 9657 - "sockjs-client-1.5.1" = { 9658 name = "sockjs-client"; 9659 packageName = "sockjs-client"; 9660 - version = "1.5.1"; 9661 src = fetchurl { 9662 - url = "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.1.tgz"; 9663 - sha512 = "VnVAb663fosipI/m6pqRXakEOw7nvd7TUgdr3PlR/8V2I95QIdwT8L4nMxhyU8SmDBHYXU1TOElaKOmKLfYzeQ=="; 9664 }; 9665 }; 9666 - "sortablejs-1.13.0" = { 9667 name = "sortablejs"; 9668 packageName = "sortablejs"; 9669 - version = "1.13.0"; 9670 src = fetchurl { 9671 - url = "https://registry.npmjs.org/sortablejs/-/sortablejs-1.13.0.tgz"; 9672 - sha512 = "RBJirPY0spWCrU5yCmWM1eFs/XgX2J5c6b275/YyxFRgnzPhKl/TDeU2hNR8Dt7ITq66NRPM4UlOt+e5O4CFHg=="; 9673 }; 9674 }; 9675 "source-list-map-2.0.1" = { ··· 9708 sha512 = "CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="; 9709 }; 9710 }; 9711 "source-map-loader-1.1.3" = { 9712 name = "source-map-loader"; 9713 packageName = "source-map-loader"; ··· 9780 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 9781 }; 9782 }; 9783 - "spdx-license-ids-3.0.7" = { 9784 name = "spdx-license-ids"; 9785 packageName = "spdx-license-ids"; 9786 - version = "3.0.7"; 9787 src = fetchurl { 9788 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz"; 9789 - sha512 = "U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ=="; 9790 }; 9791 }; 9792 "spdy-4.0.2" = { ··· 9987 sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; 9988 }; 9989 }; 9990 - "strip-comments-1.0.2" = { 9991 name = "strip-comments"; 9992 packageName = "strip-comments"; 9993 - version = "1.0.2"; 9994 src = fetchurl { 9995 - url = "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz"; 9996 - sha512 = "kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw=="; 9997 }; 9998 }; 9999 "strip-eof-1.0.0" = { ··· 10131 sha512 = "sVTikaDvMqg2aJjh4r48jsdfmqLT+nqB1MOsaBnvM3OwLx4S+WXcsxsgk5w18h/OZoxZCxuyXMh61iBHcj9Qiw=="; 10132 }; 10133 }; 10134 - "stylelint-scss-3.19.0" = { 10135 name = "stylelint-scss"; 10136 packageName = "stylelint-scss"; 10137 - version = "3.19.0"; 10138 src = fetchurl { 10139 - url = "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.19.0.tgz"; 10140 - sha512 = "Ic5bsmpS4wVucOw44doC1Yi9f5qbeVL4wPFiEOaUElgsOuLEN6Ofn/krKI8BeNL2gAn53Zu+IcVV4E345r6rBw=="; 10141 }; 10142 }; 10143 "sugarss-2.0.0" = { ··· 10194 sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; 10195 }; 10196 }; 10197 "svg-tags-1.0.0" = { 10198 name = "svg-tags"; 10199 packageName = "svg-tags"; ··· 10212 sha512 = "yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw=="; 10213 }; 10214 }; 10215 - "swiper-6.5.9" = { 10216 name = "swiper"; 10217 packageName = "swiper"; 10218 - version = "6.5.9"; 10219 src = fetchurl { 10220 - url = "https://registry.npmjs.org/swiper/-/swiper-6.5.9.tgz"; 10221 - sha512 = "zO3UCLVEiOXZontAQWBNpWFZGV3WaXwHSgvng0qIGLVMyxYGD6w78S7YkGAu/XBam1SBQNZzxqfFc/LDjNdq/A=="; 10222 }; 10223 }; 10224 "table-5.4.6" = { ··· 10230 sha512 = "wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug=="; 10231 }; 10232 }; 10233 - "table-6.6.0" = { 10234 name = "table"; 10235 packageName = "table"; 10236 - version = "6.6.0"; 10237 src = fetchurl { 10238 - url = "https://registry.npmjs.org/table/-/table-6.6.0.tgz"; 10239 - sha512 = "iZMtp5tUvcnAdtHpZTWLPF0M7AgiQsURR2DwmxnJwSy8I3+cY+ozzVvYha3BOLG2TB+L0CqjIz+91htuj6yCXg=="; 10240 }; 10241 }; 10242 "tapable-1.1.3" = { ··· 10257 sha512 = "FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw=="; 10258 }; 10259 }; 10260 - "tar-6.1.0" = { 10261 name = "tar"; 10262 packageName = "tar"; 10263 - version = "6.1.0"; 10264 src = fetchurl { 10265 - url = "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz"; 10266 - sha512 = "DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA=="; 10267 }; 10268 }; 10269 - "temp-dir-1.0.0" = { 10270 name = "temp-dir"; 10271 packageName = "temp-dir"; 10272 - version = "1.0.0"; 10273 src = fetchurl { 10274 - url = "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz"; 10275 - sha1 = "0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d"; 10276 }; 10277 }; 10278 - "tempy-0.3.0" = { 10279 name = "tempy"; 10280 packageName = "tempy"; 10281 - version = "0.3.0"; 10282 src = fetchurl { 10283 - url = "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz"; 10284 - sha512 = "WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ=="; 10285 }; 10286 }; 10287 "terser-4.8.0" = { ··· 10293 sha512 = "EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw=="; 10294 }; 10295 }; 10296 - "terser-5.7.0" = { 10297 name = "terser"; 10298 packageName = "terser"; 10299 - version = "5.7.0"; 10300 src = fetchurl { 10301 - url = "https://registry.npmjs.org/terser/-/terser-5.7.0.tgz"; 10302 - sha512 = "HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g=="; 10303 }; 10304 }; 10305 - "terser-webpack-plugin-5.1.1" = { 10306 name = "terser-webpack-plugin"; 10307 packageName = "terser-webpack-plugin"; 10308 - version = "5.1.1"; 10309 src = fetchurl { 10310 - url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.1.tgz"; 10311 - sha512 = "5XNNXZiR8YO6X6KhSGXfY0QrGrCRlSwAEjIIrlRQR4W8nP69TaJUlh3bkuac6zzgspiGPfKEHcY295MMVExl5Q=="; 10312 }; 10313 }; 10314 "text-table-0.2.0" = { ··· 10390 src = fetchurl { 10391 url = "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz"; 10392 sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="; 10393 }; 10394 }; 10395 "trim-0.0.1" = { ··· 10410 sha1 = "b403d0b91be50c331dfc4b82eeceb22c3de16d20"; 10411 }; 10412 }; 10413 - "trim-newlines-3.0.0" = { 10414 name = "trim-newlines"; 10415 packageName = "trim-newlines"; 10416 - version = "3.0.0"; 10417 src = fetchurl { 10418 - url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.0.tgz"; 10419 - sha512 = "C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA=="; 10420 }; 10421 }; 10422 "trim-trailing-lines-1.1.4" = { ··· 10437 sha512 = "rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA=="; 10438 }; 10439 }; 10440 - "tsconfig-paths-3.9.0" = { 10441 name = "tsconfig-paths"; 10442 packageName = "tsconfig-paths"; 10443 - version = "3.9.0"; 10444 src = fetchurl { 10445 - url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz"; 10446 - sha512 = "dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw=="; 10447 }; 10448 }; 10449 - "tslib-2.2.0" = { 10450 name = "tslib"; 10451 packageName = "tslib"; 10452 - version = "2.2.0"; 10453 src = fetchurl { 10454 - url = "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz"; 10455 - sha512 = "gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w=="; 10456 }; 10457 }; 10458 "type-1.2.0" = { ··· 10482 sha512 = "XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="; 10483 }; 10484 }; 10485 "type-fest-0.18.1" = { 10486 name = "type-fest"; 10487 packageName = "type-fest"; ··· 10498 src = fetchurl { 10499 url = "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"; 10500 sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; 10501 - }; 10502 - }; 10503 - "type-fest-0.3.1" = { 10504 - name = "type-fest"; 10505 - packageName = "type-fest"; 10506 - version = "0.3.1"; 10507 - src = fetchurl { 10508 - url = "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz"; 10509 - sha512 = "cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ=="; 10510 }; 10511 }; 10512 "type-fest-0.6.0" = { ··· 10608 sha512 = "lbk82UOIGuCEsZhPj8rNAkXSDXd6p0QLzIuSsCdxrqnqU56St4eyOB+AlXsVgVeRmetPTYydIuvFfpDIed8mqw=="; 10609 }; 10610 }; 10611 - "unified-9.2.1" = { 10612 name = "unified"; 10613 packageName = "unified"; 10614 - version = "9.2.1"; 10615 src = fetchurl { 10616 - url = "https://registry.npmjs.org/unified/-/unified-9.2.1.tgz"; 10617 - sha512 = "juWjuI8Z4xFg8pJbnEZ41b5xjGUWGHqXALmBZ3FC3WX0PIx1CZBIIJ6mXbYMcf6Yw4Fi0rFUTA1cdz/BglbOhA=="; 10618 }; 10619 }; 10620 "union-value-1.0.1" = { ··· 10662 sha512 = "zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w=="; 10663 }; 10664 }; 10665 - "unique-string-1.0.0" = { 10666 name = "unique-string"; 10667 packageName = "unique-string"; 10668 - version = "1.0.0"; 10669 src = fetchurl { 10670 - url = "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz"; 10671 - sha1 = "9e1057cca851abb93398f8b33ae187b99caec11a"; 10672 }; 10673 }; 10674 "unist-util-find-all-after-1.0.5" = { ··· 10752 sha512 = "DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g=="; 10753 }; 10754 }; 10755 - "universalify-0.1.2" = { 10756 name = "universalify"; 10757 packageName = "universalify"; 10758 - version = "0.1.2"; 10759 src = fetchurl { 10760 - url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"; 10761 - sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="; 10762 }; 10763 }; 10764 "unpipe-1.0.0" = { ··· 10824 sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"; 10825 }; 10826 }; 10827 - "url-parse-1.5.1" = { 10828 name = "url-parse"; 10829 packageName = "url-parse"; 10830 - version = "1.5.1"; 10831 src = fetchurl { 10832 - url = "https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz"; 10833 - sha512 = "HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q=="; 10834 }; 10835 }; 10836 - "url-toolkit-2.2.2" = { 10837 name = "url-toolkit"; 10838 packageName = "url-toolkit"; 10839 - version = "2.2.2"; 10840 src = fetchurl { 10841 - url = "https://registry.npmjs.org/url-toolkit/-/url-toolkit-2.2.2.tgz"; 10842 - sha512 = "l25w6Sy+Iy3/IbogunxhWwljPaDnqpiKvrQRoLBm6DfISco7NyRIS7Zf6+Oxhy1T8kHxWdwLND7ZZba6NjXMug=="; 10843 }; 10844 }; 10845 "use-3.1.1" = { ··· 10986 sha512 = "DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ=="; 10987 }; 10988 }; 10989 - "watchpack-2.1.1" = { 10990 name = "watchpack"; 10991 packageName = "watchpack"; 10992 - version = "2.1.1"; 10993 src = fetchurl { 10994 - url = "https://registry.npmjs.org/watchpack/-/watchpack-2.1.1.tgz"; 10995 - sha512 = "Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw=="; 10996 }; 10997 }; 10998 "wbuf-1.7.3" = { ··· 11013 sha1 = "2116fbfa1468ec416a7befdaa333e1d118f69c04"; 11014 }; 11015 }; 11016 - "webpack-5.36.2" = { 11017 name = "webpack"; 11018 packageName = "webpack"; 11019 - version = "5.36.2"; 11020 src = fetchurl { 11021 - url = "https://registry.npmjs.org/webpack/-/webpack-5.36.2.tgz"; 11022 - sha512 = "XJumVnnGoH2dV+Pk1VwgY4YT6AiMKpVoudUFCNOXMIVrEKPUgEwdIfWPjIuGLESAiS8EdIHX5+TiJz/5JccmRg=="; 11023 }; 11024 }; 11025 - "webpack-cli-4.6.0" = { 11026 name = "webpack-cli"; 11027 packageName = "webpack-cli"; 11028 - version = "4.6.0"; 11029 src = fetchurl { 11030 - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.6.0.tgz"; 11031 - sha512 = "9YV+qTcGMjQFiY7Nb1kmnupvb1x40lfpj8pwdO/bom+sQiP4OBMKjHq29YQrlDWDPZO9r/qWaRRywKaRDKqBTA=="; 11032 }; 11033 }; 11034 "webpack-dev-middleware-3.7.3" = { ··· 11067 sha512 = "TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g=="; 11068 }; 11069 }; 11070 - "webpack-merge-5.7.3" = { 11071 name = "webpack-merge"; 11072 packageName = "webpack-merge"; 11073 - version = "5.7.3"; 11074 src = fetchurl { 11075 - url = "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz"; 11076 - sha512 = "6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA=="; 11077 }; 11078 }; 11079 "webpack-sources-1.4.3" = { ··· 11085 sha512 = "lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ=="; 11086 }; 11087 }; 11088 - "webpack-sources-2.2.0" = { 11089 name = "webpack-sources"; 11090 packageName = "webpack-sources"; 11091 - version = "2.2.0"; 11092 src = fetchurl { 11093 - url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.2.0.tgz"; 11094 - sha512 = "bQsA24JLwcnWGArOKUxYKhX3Mz/nK1Xf6hxullKERyktjNMC4x8koOeaDNTA2fEJ09BdWLbM/iTW0ithREUP0w=="; 11095 }; 11096 }; 11097 "websocket-driver-0.7.4" = { ··· 11112 sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; 11113 }; 11114 }; 11115 - "webworkify-1.5.0" = { 11116 - name = "webworkify"; 11117 - packageName = "webworkify"; 11118 - version = "1.5.0"; 11119 src = fetchurl { 11120 - url = "https://registry.npmjs.org/webworkify/-/webworkify-1.5.0.tgz"; 11121 - sha512 = "AMcUeyXAhbACL8S2hqqdqOLqvJ8ylmIbNwUIqQujRSouf4+eUFaXbG6F1Rbu+srlJMmxQWsiU7mOJi0nMBfM1g=="; 11122 }; 11123 }; 11124 "whatwg-fetch-3.6.2" = { ··· 11137 src = fetchurl { 11138 url = "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz"; 11139 sha512 = "M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g=="; 11140 }; 11141 }; 11142 "which-1.3.1" = { ··· 11193 sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; 11194 }; 11195 }; 11196 - "workbox-background-sync-5.1.4" = { 11197 name = "workbox-background-sync"; 11198 packageName = "workbox-background-sync"; 11199 - version = "5.1.4"; 11200 src = fetchurl { 11201 - url = "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-5.1.4.tgz"; 11202 - sha512 = "AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA=="; 11203 }; 11204 }; 11205 - "workbox-broadcast-update-5.1.4" = { 11206 name = "workbox-broadcast-update"; 11207 packageName = "workbox-broadcast-update"; 11208 - version = "5.1.4"; 11209 src = fetchurl { 11210 - url = "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-5.1.4.tgz"; 11211 - sha512 = "HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA=="; 11212 }; 11213 }; 11214 - "workbox-build-5.1.4" = { 11215 name = "workbox-build"; 11216 packageName = "workbox-build"; 11217 - version = "5.1.4"; 11218 src = fetchurl { 11219 - url = "https://registry.npmjs.org/workbox-build/-/workbox-build-5.1.4.tgz"; 11220 - sha512 = "xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow=="; 11221 }; 11222 }; 11223 - "workbox-cacheable-response-5.1.4" = { 11224 name = "workbox-cacheable-response"; 11225 packageName = "workbox-cacheable-response"; 11226 - version = "5.1.4"; 11227 src = fetchurl { 11228 - url = "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-5.1.4.tgz"; 11229 - sha512 = "0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA=="; 11230 }; 11231 }; 11232 "workbox-core-5.1.4" = { ··· 11238 sha512 = "+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg=="; 11239 }; 11240 }; 11241 - "workbox-expiration-5.1.4" = { 11242 name = "workbox-expiration"; 11243 packageName = "workbox-expiration"; 11244 - version = "5.1.4"; 11245 src = fetchurl { 11246 - url = "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-5.1.4.tgz"; 11247 - sha512 = "oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ=="; 11248 }; 11249 }; 11250 - "workbox-google-analytics-5.1.4" = { 11251 name = "workbox-google-analytics"; 11252 packageName = "workbox-google-analytics"; 11253 - version = "5.1.4"; 11254 src = fetchurl { 11255 - url = "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-5.1.4.tgz"; 11256 - sha512 = "0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA=="; 11257 }; 11258 }; 11259 - "workbox-navigation-preload-5.1.4" = { 11260 name = "workbox-navigation-preload"; 11261 packageName = "workbox-navigation-preload"; 11262 - version = "5.1.4"; 11263 src = fetchurl { 11264 - url = "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-5.1.4.tgz"; 11265 - sha512 = "Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ=="; 11266 }; 11267 }; 11268 "workbox-precaching-5.1.4" = { ··· 11274 sha512 = "gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA=="; 11275 }; 11276 }; 11277 - "workbox-range-requests-5.1.4" = { 11278 name = "workbox-range-requests"; 11279 packageName = "workbox-range-requests"; 11280 - version = "5.1.4"; 11281 src = fetchurl { 11282 - url = "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-5.1.4.tgz"; 11283 - sha512 = "1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw=="; 11284 }; 11285 }; 11286 - "workbox-routing-5.1.4" = { 11287 name = "workbox-routing"; 11288 packageName = "workbox-routing"; 11289 - version = "5.1.4"; 11290 src = fetchurl { 11291 - url = "https://registry.npmjs.org/workbox-routing/-/workbox-routing-5.1.4.tgz"; 11292 - sha512 = "8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw=="; 11293 }; 11294 }; 11295 - "workbox-strategies-5.1.4" = { 11296 name = "workbox-strategies"; 11297 packageName = "workbox-strategies"; 11298 - version = "5.1.4"; 11299 src = fetchurl { 11300 - url = "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-5.1.4.tgz"; 11301 - sha512 = "VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA=="; 11302 }; 11303 }; 11304 - "workbox-streams-5.1.4" = { 11305 name = "workbox-streams"; 11306 packageName = "workbox-streams"; 11307 - version = "5.1.4"; 11308 src = fetchurl { 11309 - url = "https://registry.npmjs.org/workbox-streams/-/workbox-streams-5.1.4.tgz"; 11310 - sha512 = "xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw=="; 11311 }; 11312 }; 11313 - "workbox-sw-5.1.4" = { 11314 name = "workbox-sw"; 11315 packageName = "workbox-sw"; 11316 - version = "5.1.4"; 11317 src = fetchurl { 11318 - url = "https://registry.npmjs.org/workbox-sw/-/workbox-sw-5.1.4.tgz"; 11319 - sha512 = "9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA=="; 11320 }; 11321 }; 11322 - "workbox-webpack-plugin-5.1.4" = { 11323 name = "workbox-webpack-plugin"; 11324 packageName = "workbox-webpack-plugin"; 11325 - version = "5.1.4"; 11326 src = fetchurl { 11327 - url = "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-5.1.4.tgz"; 11328 - sha512 = "PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ=="; 11329 }; 11330 }; 11331 - "workbox-window-5.1.4" = { 11332 name = "workbox-window"; 11333 packageName = "workbox-window"; 11334 - version = "5.1.4"; 11335 src = fetchurl { 11336 - url = "https://registry.npmjs.org/workbox-window/-/workbox-window-5.1.4.tgz"; 11337 - sha512 = "vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw=="; 11338 }; 11339 }; 11340 - "worker-plugin-5.0.0" = { 11341 name = "worker-plugin"; 11342 packageName = "worker-plugin"; 11343 - version = "5.0.0"; 11344 src = fetchurl { 11345 - url = "https://registry.npmjs.org/worker-plugin/-/worker-plugin-5.0.0.tgz"; 11346 - sha512 = "AXMUstURCxDD6yGam2r4E34aJg6kW85IiaeX72hi+I1cxyaMUtrvVY6sbfpGKAj5e7f68Acl62BjQF5aOOx2IQ=="; 11347 }; 11348 }; 11349 "wrap-ansi-5.1.0" = { ··· 11391 sha1 = "c252d7c7c5b1b402897630e3453c7bfe690d9ca1"; 11392 }; 11393 }; 11394 - "ws-6.2.1" = { 11395 name = "ws"; 11396 packageName = "ws"; 11397 - version = "6.2.1"; 11398 src = fetchurl { 11399 - url = "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz"; 11400 - sha512 = "GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA=="; 11401 }; 11402 }; 11403 "x-is-string-0.1.0" = { ··· 11481 sha512 = "3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg=="; 11482 }; 11483 }; 11484 - "yargs-parser-20.2.7" = { 11485 name = "yargs-parser"; 11486 packageName = "yargs-parser"; 11487 - version = "20.2.7"; 11488 src = fetchurl { 11489 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz"; 11490 - sha512 = "FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw=="; 11491 }; 11492 }; 11493 "yocto-queue-0.1.0" = { ··· 11513 name = "jellyfin-web"; 11514 packageName = "jellyfin-web"; 11515 version = "0.0.0"; 11516 - src = ../../../../../../../nix/store/ply469lh4lhgpa5j6ak4yss0sgprqzqy-source; 11517 dependencies = [ 11518 - sources."@babel/code-frame-7.12.13" 11519 - sources."@babel/compat-data-7.14.0" 11520 - sources."@babel/core-7.14.0" 11521 - sources."@babel/eslint-parser-7.13.14" 11522 - sources."@babel/eslint-plugin-7.13.16" 11523 - sources."@babel/generator-7.14.1" 11524 - sources."@babel/helper-annotate-as-pure-7.12.13" 11525 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" 11526 - sources."@babel/helper-compilation-targets-7.13.16" 11527 - sources."@babel/helper-create-class-features-plugin-7.14.1" 11528 - sources."@babel/helper-create-regexp-features-plugin-7.12.17" 11529 - sources."@babel/helper-define-polyfill-provider-0.2.0" 11530 - sources."@babel/helper-explode-assignable-expression-7.13.0" 11531 - sources."@babel/helper-function-name-7.12.13" 11532 - sources."@babel/helper-get-function-arity-7.12.13" 11533 - sources."@babel/helper-hoist-variables-7.13.16" 11534 - sources."@babel/helper-member-expression-to-functions-7.13.12" 11535 - sources."@babel/helper-module-imports-7.13.12" 11536 - sources."@babel/helper-module-transforms-7.14.0" 11537 - sources."@babel/helper-optimise-call-expression-7.12.13" 11538 - sources."@babel/helper-plugin-utils-7.13.0" 11539 - sources."@babel/helper-remap-async-to-generator-7.13.0" 11540 - sources."@babel/helper-replace-supers-7.13.12" 11541 - sources."@babel/helper-simple-access-7.13.12" 11542 - sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 11543 - sources."@babel/helper-split-export-declaration-7.12.13" 11544 - sources."@babel/helper-validator-identifier-7.14.0" 11545 - sources."@babel/helper-validator-option-7.12.17" 11546 - sources."@babel/helper-wrap-function-7.13.0" 11547 - sources."@babel/helpers-7.14.0" 11548 - sources."@babel/highlight-7.14.0" 11549 - sources."@babel/parser-7.14.1" 11550 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12" 11551 - sources."@babel/plugin-proposal-async-generator-functions-7.13.15" 11552 - sources."@babel/plugin-proposal-class-properties-7.13.0" 11553 - sources."@babel/plugin-proposal-class-static-block-7.13.11" 11554 - sources."@babel/plugin-proposal-dynamic-import-7.13.8" 11555 - sources."@babel/plugin-proposal-export-namespace-from-7.12.13" 11556 - sources."@babel/plugin-proposal-json-strings-7.13.8" 11557 - sources."@babel/plugin-proposal-logical-assignment-operators-7.13.8" 11558 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.13.8" 11559 - sources."@babel/plugin-proposal-numeric-separator-7.12.13" 11560 - sources."@babel/plugin-proposal-object-rest-spread-7.13.8" 11561 - sources."@babel/plugin-proposal-optional-catch-binding-7.13.8" 11562 - sources."@babel/plugin-proposal-optional-chaining-7.13.12" 11563 - sources."@babel/plugin-proposal-private-methods-7.13.0" 11564 - sources."@babel/plugin-proposal-private-property-in-object-7.14.0" 11565 - sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 11566 sources."@babel/plugin-syntax-async-generators-7.8.4" 11567 sources."@babel/plugin-syntax-class-properties-7.12.13" 11568 - sources."@babel/plugin-syntax-class-static-block-7.12.13" 11569 sources."@babel/plugin-syntax-dynamic-import-7.8.3" 11570 sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 11571 sources."@babel/plugin-syntax-json-strings-7.8.3" ··· 11575 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 11576 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 11577 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 11578 - sources."@babel/plugin-syntax-private-property-in-object-7.14.0" 11579 - sources."@babel/plugin-syntax-top-level-await-7.12.13" 11580 - sources."@babel/plugin-transform-arrow-functions-7.13.0" 11581 - sources."@babel/plugin-transform-async-to-generator-7.13.0" 11582 - sources."@babel/plugin-transform-block-scoped-functions-7.12.13" 11583 - sources."@babel/plugin-transform-block-scoping-7.14.1" 11584 - sources."@babel/plugin-transform-classes-7.13.0" 11585 - sources."@babel/plugin-transform-computed-properties-7.13.0" 11586 - sources."@babel/plugin-transform-destructuring-7.13.17" 11587 - sources."@babel/plugin-transform-dotall-regex-7.12.13" 11588 - sources."@babel/plugin-transform-duplicate-keys-7.12.13" 11589 - sources."@babel/plugin-transform-exponentiation-operator-7.12.13" 11590 - sources."@babel/plugin-transform-for-of-7.13.0" 11591 - sources."@babel/plugin-transform-function-name-7.12.13" 11592 - sources."@babel/plugin-transform-literals-7.12.13" 11593 - sources."@babel/plugin-transform-member-expression-literals-7.12.13" 11594 - sources."@babel/plugin-transform-modules-amd-7.14.0" 11595 - sources."@babel/plugin-transform-modules-commonjs-7.14.0" 11596 - sources."@babel/plugin-transform-modules-systemjs-7.13.8" 11597 - sources."@babel/plugin-transform-modules-umd-7.14.0" 11598 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13" 11599 - sources."@babel/plugin-transform-new-target-7.12.13" 11600 - sources."@babel/plugin-transform-object-super-7.12.13" 11601 - sources."@babel/plugin-transform-parameters-7.13.0" 11602 - sources."@babel/plugin-transform-property-literals-7.12.13" 11603 - sources."@babel/plugin-transform-regenerator-7.13.15" 11604 - sources."@babel/plugin-transform-reserved-words-7.12.13" 11605 - sources."@babel/plugin-transform-shorthand-properties-7.12.13" 11606 - sources."@babel/plugin-transform-spread-7.13.0" 11607 - sources."@babel/plugin-transform-sticky-regex-7.12.13" 11608 - sources."@babel/plugin-transform-template-literals-7.13.0" 11609 - sources."@babel/plugin-transform-typeof-symbol-7.12.13" 11610 - sources."@babel/plugin-transform-unicode-escapes-7.12.13" 11611 - sources."@babel/plugin-transform-unicode-regex-7.12.13" 11612 - sources."@babel/preset-env-7.14.1" 11613 sources."@babel/preset-modules-0.1.4" 11614 - sources."@babel/runtime-7.14.0" 11615 - sources."@babel/template-7.12.13" 11616 - sources."@babel/traverse-7.14.0" 11617 - sources."@babel/types-7.14.1" 11618 sources."@csstools/convert-colors-1.4.0" 11619 - sources."@discoveryjs/json-ext-0.5.2" 11620 - (sources."@eslint/eslintrc-0.4.0" // { 11621 dependencies = [ 11622 - sources."globals-12.4.0" 11623 sources."ignore-4.0.6" 11624 sources."import-fresh-3.3.0" 11625 sources."resolve-from-4.0.0" 11626 ]; 11627 }) 11628 - sources."@hapi/address-2.1.4" 11629 - sources."@hapi/bourne-1.3.2" 11630 - sources."@hapi/hoek-8.5.1" 11631 - sources."@hapi/joi-15.1.1" 11632 - sources."@hapi/topo-3.1.6" 11633 - sources."@mdn/browser-compat-data-2.0.7" 11634 sources."@mrmlnc/readdir-enhanced-2.2.1" 11635 - sources."@nodelib/fs.scandir-2.1.4" 11636 - sources."@nodelib/fs.stat-2.0.4" 11637 - sources."@nodelib/fs.walk-1.2.6" 11638 (sources."@npmcli/move-file-1.1.2" // { 11639 dependencies = [ 11640 sources."rimraf-3.0.2" 11641 ]; 11642 }) 11643 - sources."@rollup/plugin-node-resolve-7.1.3" 11644 sources."@rollup/plugin-replace-2.4.2" 11645 (sources."@rollup/pluginutils-3.1.0" // { 11646 dependencies = [ ··· 11650 sources."@stylelint/postcss-css-in-js-0.37.2" 11651 sources."@stylelint/postcss-markdown-0.36.2" 11652 sources."@surma/rollup-plugin-off-main-thread-1.4.2" 11653 - sources."@types/anymatch-1.3.1" 11654 - sources."@types/eslint-7.2.10" 11655 - sources."@types/eslint-scope-3.7.0" 11656 - sources."@types/estree-0.0.47" 11657 - sources."@types/glob-7.1.3" 11658 - sources."@types/html-minifier-terser-5.1.1" 11659 - sources."@types/json-schema-7.0.7" 11660 sources."@types/json5-0.0.29" 11661 sources."@types/localforage-0.0.34" 11662 - sources."@types/mdast-3.0.3" 11663 - sources."@types/minimatch-3.0.4" 11664 - sources."@types/minimist-1.2.1" 11665 - sources."@types/node-15.0.2" 11666 - sources."@types/normalize-package-data-2.4.0" 11667 sources."@types/parse-json-4.0.0" 11668 - sources."@types/q-1.5.4" 11669 - sources."@types/resolve-0.0.8" 11670 sources."@types/source-list-map-0.1.2" 11671 - sources."@types/tapable-1.0.7" 11672 - (sources."@types/uglify-js-3.13.0" // { 11673 dependencies = [ 11674 sources."source-map-0.6.1" 11675 ]; 11676 }) 11677 - sources."@types/unist-2.0.3" 11678 sources."@types/vfile-3.0.2" 11679 sources."@types/vfile-message-2.0.0" 11680 - (sources."@types/webpack-4.41.28" // { 11681 dependencies = [ 11682 sources."source-map-0.6.1" 11683 ]; 11684 }) 11685 - (sources."@types/webpack-sources-2.1.0" // { 11686 dependencies = [ 11687 sources."source-map-0.7.3" 11688 ]; 11689 }) 11690 sources."@uupaa/dynamic-import-polyfill-1.0.2" 11691 - sources."@webassemblyjs/ast-1.11.0" 11692 - sources."@webassemblyjs/floating-point-hex-parser-1.11.0" 11693 - sources."@webassemblyjs/helper-api-error-1.11.0" 11694 - sources."@webassemblyjs/helper-buffer-1.11.0" 11695 - sources."@webassemblyjs/helper-numbers-1.11.0" 11696 - sources."@webassemblyjs/helper-wasm-bytecode-1.11.0" 11697 - sources."@webassemblyjs/helper-wasm-section-1.11.0" 11698 - sources."@webassemblyjs/ieee754-1.11.0" 11699 - sources."@webassemblyjs/leb128-1.11.0" 11700 - sources."@webassemblyjs/utf8-1.11.0" 11701 - sources."@webassemblyjs/wasm-edit-1.11.0" 11702 - sources."@webassemblyjs/wasm-gen-1.11.0" 11703 - sources."@webassemblyjs/wasm-opt-1.11.0" 11704 - sources."@webassemblyjs/wasm-parser-1.11.0" 11705 - sources."@webassemblyjs/wast-printer-1.11.0" 11706 - sources."@webpack-cli/configtest-1.0.2" 11707 - sources."@webpack-cli/info-1.2.3" 11708 - sources."@webpack-cli/serve-1.3.1" 11709 sources."@xtuc/ieee754-1.2.0" 11710 sources."@xtuc/long-4.2.2" 11711 sources."abab-2.0.5" 11712 sources."accepts-1.3.7" 11713 sources."acorn-7.4.1" 11714 - sources."acorn-jsx-5.3.1" 11715 sources."aggregate-error-3.1.0" 11716 sources."ajv-6.12.6" 11717 sources."ajv-errors-1.0.1" ··· 11735 sources."array.prototype.flat-1.2.4" 11736 sources."arrify-1.0.1" 11737 sources."assign-symbols-1.0.0" 11738 - sources."ast-metadata-inferer-0.4.0" 11739 sources."astral-regex-2.0.0" 11740 sources."async-2.6.3" 11741 sources."async-each-1.0.3" 11742 sources."async-limiter-1.0.1" 11743 sources."atob-2.1.2" 11744 sources."autoprefixer-9.8.6" 11745 - sources."babel-extract-comments-1.0.0" 11746 sources."babel-loader-8.2.2" 11747 sources."babel-plugin-dynamic-import-node-2.3.3" 11748 sources."babel-plugin-dynamic-import-polyfill-1.0.0" 11749 - sources."babel-plugin-polyfill-corejs2-0.2.0" 11750 - sources."babel-plugin-polyfill-corejs3-0.2.0" 11751 - sources."babel-plugin-polyfill-regenerator-0.2.0" 11752 - sources."babel-plugin-syntax-object-rest-spread-6.13.0" 11753 - sources."babel-plugin-transform-object-rest-spread-6.26.0" 11754 - (sources."babel-runtime-6.26.0" // { 11755 - dependencies = [ 11756 - sources."core-js-2.6.12" 11757 - sources."regenerator-runtime-0.11.1" 11758 - ]; 11759 - }) 11760 - sources."babylon-6.18.0" 11761 sources."bail-1.0.5" 11762 sources."balanced-match-1.0.2" 11763 (sources."base-0.11.2" // { ··· 11769 sources."big.js-5.2.2" 11770 sources."binary-extensions-2.2.0" 11771 sources."bindings-1.5.0" 11772 - sources."blurhash-1.1.3" 11773 (sources."body-parser-1.19.0" // { 11774 dependencies = [ 11775 sources."bytes-3.1.0" ··· 11782 sources."boolbase-1.0.0" 11783 sources."brace-expansion-1.1.11" 11784 sources."braces-3.0.2" 11785 - sources."browserslist-4.16.6" 11786 - sources."buffer-from-1.1.1" 11787 sources."buffer-indexof-1.1.1" 11788 sources."builtin-modules-3.2.0" 11789 sources."bytes-3.0.0" 11790 - (sources."cacache-15.0.6" // { 11791 dependencies = [ 11792 sources."p-map-4.0.0" 11793 sources."rimraf-3.0.2" ··· 11800 sources."caller-path-2.0.0" 11801 sources."callsites-2.0.0" 11802 sources."camel-case-4.1.2" 11803 - sources."camelcase-6.2.0" 11804 - (sources."camelcase-keys-6.2.2" // { 11805 - dependencies = [ 11806 - sources."camelcase-5.3.1" 11807 - ]; 11808 - }) 11809 sources."caniuse-api-3.0.0" 11810 - sources."caniuse-db-1.0.30001222" 11811 - sources."caniuse-lite-1.0.30001222" 11812 sources."ccount-1.1.0" 11813 sources."chalk-2.4.2" 11814 sources."character-entities-1.2.4" 11815 sources."character-entities-html4-1.1.4" 11816 sources."character-entities-legacy-1.1.4" 11817 sources."character-reference-invalid-1.1.4" 11818 - sources."chokidar-3.5.1" 11819 sources."chownr-2.0.0" 11820 sources."chrome-trace-event-1.0.3" 11821 (sources."class-utils-0.3.6" // { ··· 11858 sources."coa-2.0.2" 11859 sources."collapse-white-space-1.0.6" 11860 sources."collection-visit-1.0.0" 11861 - sources."color-3.1.3" 11862 sources."color-convert-1.9.3" 11863 sources."color-name-1.1.3" 11864 - sources."color-string-1.5.5" 11865 - sources."colorette-1.2.2" 11866 sources."commander-4.1.1" 11867 sources."common-tags-1.8.0" 11868 sources."commondir-1.0.1" ··· 11877 sources."concat-map-0.0.1" 11878 sources."confusing-browser-globals-1.0.10" 11879 sources."connect-history-api-fallback-1.6.0" 11880 - sources."contains-path-0.1.0" 11881 sources."content-disposition-0.5.3" 11882 sources."content-type-1.0.4" 11883 - sources."convert-source-map-1.7.0" 11884 sources."cookie-0.4.0" 11885 sources."cookie-signature-1.0.6" 11886 sources."copy-descriptor-0.1.1" 11887 (sources."copy-webpack-plugin-6.4.1" // { 11888 dependencies = [ 11889 sources."array-union-2.1.0" 11890 - sources."globby-11.0.3" 11891 sources."loader-utils-2.0.0" 11892 sources."p-limit-3.1.0" 11893 - sources."schema-utils-3.0.0" 11894 ]; 11895 }) 11896 - sources."core-js-3.11.2" 11897 - (sources."core-js-compat-3.11.2" // { 11898 dependencies = [ 11899 sources."semver-7.0.0" 11900 ]; 11901 }) 11902 - sources."core-util-is-1.0.2" 11903 sources."cosmiconfig-5.2.1" 11904 sources."cross-spawn-7.0.3" 11905 - sources."crypto-random-string-1.0.0" 11906 sources."css-blank-pseudo-0.1.4" 11907 sources."css-color-names-0.0.4" 11908 sources."css-declaration-sorter-4.0.1" ··· 11912 sources."postcss-selector-parser-5.0.0" 11913 ]; 11914 }) 11915 - (sources."css-loader-5.2.4" // { 11916 dependencies = [ 11917 sources."loader-utils-2.0.0" 11918 - sources."postcss-8.2.13" 11919 - sources."schema-utils-3.0.0" 11920 sources."semver-7.3.5" 11921 - sources."source-map-0.6.1" 11922 ]; 11923 }) 11924 sources."css-prefers-color-scheme-3.1.1" ··· 11951 sources."type-1.2.0" 11952 ]; 11953 }) 11954 - sources."date-fns-2.21.1" 11955 sources."debug-4.3.2" 11956 sources."decamelize-1.2.0" 11957 (sources."decamelize-keys-1.1.0" // { ··· 11961 }) 11962 sources."decode-uri-component-0.2.0" 11963 sources."deep-equal-1.1.1" 11964 - sources."deep-is-0.1.3" 11965 (sources."default-gateway-4.2.0" // { 11966 dependencies = [ 11967 sources."cross-spawn-6.0.5" ··· 11981 sources."del-4.1.1" 11982 sources."depd-1.1.2" 11983 sources."destroy-1.0.4" 11984 - sources."detect-node-2.0.5" 11985 sources."dir-glob-3.0.1" 11986 sources."dns-equal-1.0.0" 11987 - sources."dns-packet-1.3.1" 11988 sources."dns-txt-2.0.2" 11989 sources."doctrine-3.0.0" 11990 sources."dom-converter-0.2.0" ··· 12005 sources."dot-prop-5.3.0" 12006 sources."ee-first-1.1.1" 12007 sources."ejs-2.7.4" 12008 - sources."electron-to-chromium-1.3.726" 12009 sources."emoji-regex-8.0.0" 12010 sources."emojis-list-3.0.0" 12011 sources."encodeurl-1.0.2" 12012 sources."end-of-stream-1.4.4" 12013 - (sources."enhanced-resolve-5.8.0" // { 12014 dependencies = [ 12015 sources."tapable-2.2.0" 12016 ]; ··· 12021 sources."epubjs-0.3.88" 12022 sources."errno-0.1.8" 12023 sources."error-ex-1.3.2" 12024 - sources."es-abstract-1.18.0" 12025 - sources."es-module-lexer-0.4.1" 12026 sources."es-to-primitive-1.2.1" 12027 sources."es5-ext-0.10.53" 12028 sources."es6-iterator-2.0.3" ··· 12031 sources."escalade-3.1.1" 12032 sources."escape-html-1.0.3" 12033 sources."escape-string-regexp-1.0.5" 12034 - (sources."eslint-7.25.0" // { 12035 dependencies = [ 12036 sources."@babel/code-frame-7.12.11" 12037 sources."ansi-styles-4.3.0" 12038 - sources."chalk-4.1.1" 12039 sources."color-convert-2.0.1" 12040 sources."color-name-1.1.4" 12041 - sources."eslint-visitor-keys-2.1.0" 12042 - sources."globals-13.8.0" 12043 sources."has-flag-4.0.0" 12044 sources."ignore-4.0.6" 12045 sources."import-fresh-3.3.0" 12046 sources."resolve-from-4.0.0" 12047 sources."semver-7.3.5" 12048 sources."supports-color-7.2.0" 12049 - sources."type-fest-0.20.2" 12050 ]; 12051 }) 12052 - (sources."eslint-import-resolver-node-0.3.4" // { 12053 dependencies = [ 12054 - sources."debug-2.6.9" 12055 - sources."ms-2.0.0" 12056 ]; 12057 }) 12058 - (sources."eslint-module-utils-2.6.0" // { 12059 dependencies = [ 12060 - sources."debug-2.6.9" 12061 sources."find-up-2.1.0" 12062 sources."locate-path-2.0.0" 12063 - sources."ms-2.0.0" 12064 sources."p-limit-1.3.0" 12065 sources."p-locate-2.0.0" 12066 sources."p-try-1.0.0" ··· 12068 sources."pkg-dir-2.0.0" 12069 ]; 12070 }) 12071 - (sources."eslint-plugin-compat-3.9.0" // { 12072 dependencies = [ 12073 - sources."semver-7.3.2" 12074 ]; 12075 }) 12076 sources."eslint-plugin-eslint-comments-3.2.0" 12077 - (sources."eslint-plugin-import-2.22.1" // { 12078 dependencies = [ 12079 sources."debug-2.6.9" 12080 - sources."doctrine-1.5.0" 12081 sources."ms-2.0.0" 12082 ]; 12083 }) 12084 sources."eslint-plugin-promise-4.3.1" 12085 sources."eslint-rule-composer-0.3.0" 12086 sources."eslint-scope-5.1.1" 12087 - sources."eslint-utils-2.1.0" 12088 - sources."eslint-visitor-keys-1.3.0" 12089 - sources."espree-7.3.1" 12090 sources."esprima-4.0.1" 12091 (sources."esquery-1.4.0" // { 12092 dependencies = [ ··· 12106 sources."eventemitter3-4.0.7" 12107 sources."events-3.3.0" 12108 sources."eventsource-1.1.0" 12109 - sources."execa-5.0.0" 12110 sources."execall-2.0.0" 12111 (sources."expand-brackets-2.1.4" // { 12112 dependencies = [ ··· 12132 (sources."expose-loader-1.0.3" // { 12133 dependencies = [ 12134 sources."loader-utils-2.0.0" 12135 - sources."schema-utils-3.0.0" 12136 ]; 12137 }) 12138 (sources."express-4.17.1" // { ··· 12143 sources."path-to-regexp-0.1.7" 12144 ]; 12145 }) 12146 - sources."ext-1.4.0" 12147 sources."extend-3.0.2" 12148 (sources."extend-shallow-3.0.2" // { 12149 dependencies = [ ··· 12157 ]; 12158 }) 12159 sources."fast-deep-equal-3.1.3" 12160 - sources."fast-glob-3.2.5" 12161 sources."fast-json-stable-stringify-2.1.0" 12162 sources."fast-levenshtein-2.0.6" 12163 sources."fast-text-encoding-1.0.3" 12164 sources."fastest-levenshtein-1.0.12" 12165 - sources."fastq-1.11.0" 12166 - sources."faye-websocket-0.11.3" 12167 sources."file-entry-cache-6.0.1" 12168 (sources."file-loader-6.2.0" // { 12169 dependencies = [ 12170 sources."loader-utils-2.0.0" 12171 - sources."schema-utils-3.0.0" 12172 ]; 12173 }) 12174 sources."file-uri-to-path-1.0.0" ··· 12179 sources."ms-2.0.0" 12180 ]; 12181 }) 12182 - sources."find-cache-dir-3.3.1" 12183 sources."find-up-4.1.0" 12184 (sources."flat-cache-3.0.4" // { 12185 dependencies = [ 12186 sources."rimraf-3.0.2" 12187 ]; 12188 }) 12189 - sources."flatted-3.1.1" 12190 sources."flatten-1.0.3" 12191 - sources."flv.js-1.5.0" 12192 - sources."follow-redirects-1.14.0" 12193 sources."fontsource-noto-sans-3.1.5" 12194 sources."fontsource-noto-sans-hk-3.1.5" 12195 sources."fontsource-noto-sans-jp-3.1.5" 12196 sources."fontsource-noto-sans-kr-3.1.5" 12197 sources."fontsource-noto-sans-sc-3.1.5" 12198 sources."for-in-1.0.2" 12199 - sources."forwarded-0.1.2" 12200 sources."fragment-cache-0.2.1" 12201 sources."fresh-0.5.2" 12202 - sources."fs-extra-8.1.0" 12203 sources."fs-minipass-2.1.0" 12204 sources."fs.realpath-1.0.0" 12205 sources."fsevents-2.3.2" ··· 12213 sources."get-stdin-8.0.0" 12214 sources."get-stream-6.0.1" 12215 sources."get-value-2.0.6" 12216 - sources."glob-7.1.6" 12217 sources."glob-parent-5.1.2" 12218 sources."glob-to-regexp-0.3.0" 12219 sources."global-modules-2.0.0" ··· 12230 }) 12231 sources."globjoin-0.1.4" 12232 sources."gonzales-pe-4.3.0" 12233 - sources."graceful-fs-4.2.6" 12234 sources."handle-thing-2.0.1" 12235 sources."hard-rejection-2.1.0" 12236 sources."has-1.0.3" ··· 12242 sources."has-bigints-1.0.1" 12243 sources."has-flag-3.0.0" 12244 sources."has-symbols-1.0.2" 12245 sources."has-value-1.0.0" 12246 (sources."has-values-1.0.0" // { 12247 dependencies = [ ··· 12266 (sources."html-loader-1.3.2" // { 12267 dependencies = [ 12268 sources."loader-utils-2.0.0" 12269 - sources."schema-utils-3.0.0" 12270 ]; 12271 }) 12272 sources."html-minifier-terser-5.1.1" ··· 12278 }) 12279 (sources."htmlparser2-4.1.0" // { 12280 dependencies = [ 12281 - (sources."dom-serializer-1.3.1" // { 12282 dependencies = [ 12283 - sources."domhandler-4.2.0" 12284 ]; 12285 }) 12286 sources."domelementtype-2.2.0" 12287 - (sources."domutils-2.6.0" // { 12288 dependencies = [ 12289 - sources."domhandler-4.2.0" 12290 ]; 12291 }) 12292 ]; ··· 12312 ]; 12313 }) 12314 sources."human-signals-2.1.0" 12315 - sources."iconv-lite-0.6.2" 12316 sources."icss-utils-5.1.0" 12317 sources."ignore-5.1.8" 12318 sources."immediate-3.0.6" 12319 sources."import-cwd-2.1.0" ··· 12329 sources."inherits-2.0.4" 12330 sources."ini-1.3.8" 12331 sources."internal-ip-4.3.0" 12332 sources."interpret-2.2.0" 12333 sources."intersection-observer-0.12.0" 12334 sources."ip-1.1.5" ··· 12340 sources."is-alphabetical-1.0.4" 12341 sources."is-alphanumeric-1.0.0" 12342 sources."is-alphanumerical-1.0.4" 12343 - sources."is-arguments-1.1.0" 12344 sources."is-arrayish-0.2.1" 12345 - sources."is-bigint-1.0.2" 12346 sources."is-binary-path-2.1.0" 12347 - sources."is-boolean-object-1.1.0" 12348 sources."is-buffer-2.0.5" 12349 - sources."is-callable-1.2.3" 12350 sources."is-color-stop-1.1.0" 12351 - sources."is-core-module-2.3.0" 12352 sources."is-data-descriptor-1.0.0" 12353 - sources."is-date-object-1.0.2" 12354 sources."is-decimal-1.0.4" 12355 sources."is-descriptor-1.0.2" 12356 sources."is-directory-0.3.1" ··· 12362 sources."is-module-1.0.0" 12363 sources."is-negative-zero-2.0.1" 12364 sources."is-number-7.0.0" 12365 - sources."is-number-object-1.0.4" 12366 sources."is-obj-2.0.0" 12367 sources."is-path-cwd-2.2.0" 12368 sources."is-path-in-cwd-2.1.0" 12369 sources."is-path-inside-2.1.0" 12370 sources."is-plain-obj-2.1.0" 12371 sources."is-plain-object-2.0.4" 12372 - sources."is-regex-1.1.2" 12373 sources."is-regexp-2.1.0" 12374 sources."is-resolvable-1.1.0" 12375 - sources."is-stream-2.0.0" 12376 - sources."is-string-1.0.5" 12377 sources."is-supported-regexp-flag-1.0.1" 12378 - sources."is-symbol-1.0.3" 12379 sources."is-typedarray-1.0.0" 12380 sources."is-unicode-supported-0.1.0" 12381 sources."is-whitespace-character-1.0.4" ··· 12386 sources."isexe-2.0.0" 12387 sources."isobject-3.0.1" 12388 sources."jellyfin-apiclient-1.8.0" 12389 - (sources."jest-worker-26.6.2" // { 12390 dependencies = [ 12391 sources."has-flag-4.0.0" 12392 - sources."supports-color-7.2.0" 12393 ]; 12394 }) 12395 sources."jquery-3.6.0" ··· 12399 sources."jsesc-2.5.2" 12400 sources."json-parse-better-errors-1.0.2" 12401 sources."json-parse-even-better-errors-2.3.1" 12402 sources."json-schema-traverse-0.4.1" 12403 sources."json-stable-stringify-without-jsonify-1.0.1" 12404 sources."json3-3.3.3" 12405 sources."json5-2.2.0" 12406 - sources."jsonfile-4.0.0" 12407 - sources."jstree-3.3.11" 12408 - sources."jszip-3.6.0" 12409 sources."killable-1.0.1" 12410 sources."kind-of-6.0.3" 12411 sources."klona-2.0.4" ··· 12416 sources."libass-wasm-https://github.com/jellyfin/JavascriptSubtitlesOctopus/archive/refs/tags/4.0.0-jf-smarttv.tar.gz" 12417 sources."lie-3.3.0" 12418 sources."lines-and-columns-1.1.6" 12419 - (sources."load-json-file-2.0.0" // { 12420 dependencies = [ 12421 - sources."parse-json-2.2.0" 12422 - sources."pify-2.3.0" 12423 ]; 12424 }) 12425 sources."loader-runner-4.2.0" ··· 12428 sources."json5-1.0.1" 12429 ]; 12430 }) 12431 - (sources."localforage-1.9.0" // { 12432 dependencies = [ 12433 sources."lie-3.1.1" 12434 ]; 12435 }) 12436 sources."locate-path-5.0.0" 12437 sources."lodash-4.17.21" 12438 - sources."lodash._reinterpolate-3.0.0" 12439 sources."lodash.clonedeep-4.5.0" 12440 sources."lodash.debounce-4.0.8" 12441 - sources."lodash.flatten-4.4.0" 12442 sources."lodash.memoize-4.1.2" 12443 - sources."lodash.template-4.5.0" 12444 - sources."lodash.templatesettings-4.2.0" 12445 sources."lodash.truncate-4.4.2" 12446 sources."lodash.uniq-4.5.0" 12447 (sources."log-symbols-4.1.0" // { 12448 dependencies = [ 12449 sources."ansi-styles-4.3.0" 12450 - sources."chalk-4.1.1" 12451 sources."color-convert-2.0.1" 12452 sources."color-name-1.1.4" 12453 sources."has-flag-4.0.0" ··· 12479 (sources."meow-9.0.0" // { 12480 dependencies = [ 12481 sources."hosted-git-info-4.0.2" 12482 - sources."normalize-package-data-3.0.2" 12483 sources."parse-json-5.2.0" 12484 (sources."read-pkg-5.2.0" // { 12485 dependencies = [ ··· 12505 sources."micromark-2.11.4" 12506 sources."micromatch-4.0.4" 12507 sources."mime-1.6.0" 12508 - sources."mime-db-1.47.0" 12509 - sources."mime-types-2.1.30" 12510 sources."mimic-fn-2.1.0" 12511 sources."min-indent-1.0.1" 12512 sources."minimalistic-assert-1.0.1" ··· 12531 sources."ms-2.1.2" 12532 sources."multicast-dns-6.2.3" 12533 sources."multicast-dns-service-types-1.1.0" 12534 - sources."nan-2.14.2" 12535 - sources."nanoid-3.1.22" 12536 sources."nanomatch-1.2.13" 12537 sources."native-promise-only-0.8.1" 12538 sources."natural-compare-1.4.0" ··· 12542 sources."nice-try-1.0.5" 12543 sources."no-case-3.0.4" 12544 sources."node-forge-0.10.0" 12545 - sources."node-releases-1.1.71" 12546 (sources."normalize-package-data-2.5.0" // { 12547 dependencies = [ 12548 sources."semver-5.7.1" ··· 12570 sources."kind-of-3.2.2" 12571 ]; 12572 }) 12573 - sources."object-inspect-1.10.2" 12574 sources."object-is-1.1.5" 12575 sources."object-keys-1.1.1" 12576 sources."object-visit-1.0.1" 12577 sources."object.assign-4.1.2" 12578 sources."object.getownpropertydescriptors-2.1.2" 12579 sources."object.pick-1.3.0" 12580 - sources."object.values-1.1.3" 12581 sources."obuf-1.1.2" 12582 sources."on-finished-2.3.0" 12583 sources."on-headers-1.0.2" ··· 12610 sources."path-is-absolute-1.0.1" 12611 sources."path-is-inside-1.0.2" 12612 sources."path-key-3.1.1" 12613 - sources."path-parse-1.0.6" 12614 (sources."path-to-regexp-1.2.1" // { 12615 dependencies = [ 12616 sources."isarray-0.0.1" ··· 12619 sources."path-type-4.0.0" 12620 sources."path-webpack-0.0.3" 12621 sources."pdfjs-dist-2.5.207" 12622 - sources."picomatch-2.2.3" 12623 sources."pify-4.0.1" 12624 sources."pinkie-2.0.4" 12625 sources."pinkie-promise-2.0.1" 12626 sources."pkg-dir-4.2.0" 12627 sources."plur-2.1.2" 12628 (sources."portfinder-1.0.28" // { 12629 dependencies = [ ··· 12632 ]; 12633 }) 12634 sources."posix-character-classes-0.1.1" 12635 - (sources."postcss-7.0.35" // { 12636 dependencies = [ 12637 sources."source-map-0.6.1" 12638 sources."supports-color-6.1.0" ··· 12825 sources."postcss-scss-2.1.1" 12826 sources."postcss-selector-matches-4.0.0" 12827 sources."postcss-selector-not-4.0.1" 12828 - sources."postcss-selector-parser-6.0.5" 12829 sources."postcss-sorting-4.1.0" 12830 (sources."postcss-svgo-4.0.3" // { 12831 dependencies = [ ··· 12842 sources."process-nextick-args-2.0.1" 12843 sources."progress-2.0.3" 12844 sources."promise-inflight-1.0.1" 12845 - sources."proxy-addr-2.0.6" 12846 sources."prr-1.0.1" 12847 sources."pump-3.0.0" 12848 sources."punycode-2.1.1" ··· 12861 ]; 12862 }) 12863 sources."read-file-stdin-0.2.1" 12864 - (sources."read-pkg-2.0.0" // { 12865 dependencies = [ 12866 - sources."path-type-2.0.0" 12867 - sources."pify-2.3.0" 12868 ]; 12869 }) 12870 - (sources."read-pkg-up-2.0.0" // { 12871 dependencies = [ 12872 sources."find-up-2.1.0" 12873 sources."locate-path-2.0.0" ··· 12878 ]; 12879 }) 12880 sources."readable-stream-2.3.7" 12881 - sources."readdirp-3.5.0" 12882 - sources."rechoir-0.7.0" 12883 sources."redent-3.0.0" 12884 sources."regenerate-1.4.2" 12885 sources."regenerate-unicode-properties-8.2.0" 12886 - sources."regenerator-runtime-0.13.8" 12887 sources."regenerator-transform-0.14.5" 12888 sources."regex-not-1.0.2" 12889 sources."regexp.prototype.flags-1.3.1" 12890 - sources."regexpp-3.1.0" 12891 sources."regexpu-core-4.7.1" 12892 sources."regjsgen-0.5.2" 12893 (sources."regjsparser-0.6.9" // { ··· 12900 sources."remark-parse-9.0.0" 12901 sources."remark-stringify-9.0.1" 12902 sources."remove-trailing-separator-1.1.0" 12903 - (sources."renderkid-2.0.5" // { 12904 dependencies = [ 12905 sources."ansi-regex-2.1.1" 12906 - sources."domhandler-2.4.2" 12907 - sources."entities-1.1.2" 12908 - sources."htmlparser2-3.10.1" 12909 - sources."readable-stream-3.6.0" 12910 sources."strip-ansi-3.0.1" 12911 ]; 12912 }) ··· 12932 sources."rgb-regex-1.0.1" 12933 sources."rgba-regex-1.0.0" 12934 sources."rimraf-2.7.1" 12935 - sources."rollup-1.32.1" 12936 - sources."rollup-plugin-babel-4.4.0" 12937 - (sources."rollup-plugin-terser-5.3.1" // { 12938 dependencies = [ 12939 - sources."jest-worker-24.9.0" 12940 sources."serialize-javascript-4.0.0" 12941 - sources."supports-color-6.1.0" 12942 - ]; 12943 - }) 12944 - (sources."rollup-pluginutils-2.8.2" // { 12945 - dependencies = [ 12946 - sources."estree-walker-0.6.1" 12947 ]; 12948 }) 12949 sources."run-parallel-1.2.0" 12950 sources."safe-buffer-5.1.2" 12951 sources."safe-regex-1.1.0" 12952 sources."safer-buffer-2.1.2" 12953 - sources."sass-1.32.12" 12954 - (sources."sass-loader-10.1.1" // { 12955 dependencies = [ 12956 sources."loader-utils-2.0.0" 12957 - sources."schema-utils-3.0.0" 12958 sources."semver-7.3.5" 12959 ]; 12960 }) ··· 12996 sources."shallow-clone-3.0.1" 12997 sources."shebang-command-2.0.0" 12998 sources."shebang-regex-3.0.0" 12999 sources."signal-exit-3.0.3" 13000 (sources."simple-swizzle-0.2.2" // { 13001 dependencies = [ ··· 13043 ]; 13044 }) 13045 sources."sockjs-0.3.21" 13046 - (sources."sockjs-client-1.5.1" // { 13047 dependencies = [ 13048 sources."debug-3.2.7" 13049 ]; 13050 }) 13051 - sources."sortablejs-1.13.0" 13052 sources."source-list-map-2.0.1" 13053 sources."source-map-0.5.7" 13054 (sources."source-map-loader-1.1.3" // { 13055 dependencies = [ 13056 sources."loader-utils-2.0.0" 13057 - sources."schema-utils-3.0.0" 13058 sources."source-map-0.6.1" 13059 ]; 13060 }) ··· 13069 sources."spdx-correct-3.1.1" 13070 sources."spdx-exceptions-2.3.0" 13071 sources."spdx-expression-parse-3.0.1" 13072 - sources."spdx-license-ids-3.0.7" 13073 sources."spdy-4.0.2" 13074 (sources."spdy-transport-3.0.0" // { 13075 dependencies = [ ··· 13115 }) 13116 sources."strip-ansi-6.0.0" 13117 sources."strip-bom-3.0.0" 13118 - sources."strip-comments-1.0.2" 13119 sources."strip-eof-1.0.0" 13120 sources."strip-final-newline-2.0.0" 13121 sources."strip-indent-3.0.0" ··· 13123 (sources."style-loader-2.0.0" // { 13124 dependencies = [ 13125 sources."loader-utils-2.0.0" 13126 - sources."schema-utils-3.0.0" 13127 ]; 13128 }) 13129 sources."style-search-0.1.0" ··· 13137 sources."ansi-styles-4.3.0" 13138 sources."array-union-2.1.0" 13139 sources."balanced-match-2.0.0" 13140 - sources."chalk-4.1.1" 13141 sources."color-convert-2.0.1" 13142 sources."color-name-1.1.4" 13143 - sources."cosmiconfig-7.0.0" 13144 - sources."globby-11.0.3" 13145 sources."has-flag-4.0.0" 13146 (sources."import-fresh-3.3.0" // { 13147 dependencies = [ ··· 13176 sources."extend-shallow-2.0.1" 13177 ]; 13178 }) 13179 - sources."find-up-2.1.0" 13180 sources."flat-cache-2.0.1" 13181 sources."flatted-2.0.2" 13182 sources."get-stdin-6.0.0" ··· 13194 sources."is-regexp-1.0.0" 13195 sources."kind-of-3.2.2" 13196 sources."known-css-properties-0.11.0" 13197 - sources."load-json-file-4.0.0" 13198 - sources."locate-path-2.0.0" 13199 sources."log-symbols-2.2.0" 13200 sources."map-obj-2.0.0" 13201 sources."meow-5.0.0" 13202 sources."micromatch-3.1.10" 13203 sources."minimist-options-3.0.2" 13204 - sources."p-limit-1.3.0" 13205 - sources."p-locate-2.0.0" 13206 - sources."p-try-1.0.0" 13207 - sources."path-exists-3.0.0" 13208 sources."path-type-3.0.0" 13209 sources."pify-3.0.0" 13210 sources."postcss-sass-0.3.5" 13211 sources."postcss-selector-parser-3.1.2" 13212 sources."postcss-value-parser-3.3.1" 13213 sources."quick-lru-1.1.0" 13214 - sources."read-pkg-3.0.0" 13215 - sources."read-pkg-up-3.0.0" 13216 sources."redent-2.0.0" 13217 sources."resolve-from-4.0.0" 13218 sources."rimraf-2.6.3" ··· 13248 sources."fast-glob-2.2.7" 13249 sources."file-entry-cache-4.0.0" 13250 sources."fill-range-4.0.0" 13251 - sources."find-up-2.1.0" 13252 sources."flat-cache-2.0.1" 13253 sources."flatted-2.0.2" 13254 sources."get-stdin-6.0.0" ··· 13267 sources."is-regexp-1.0.0" 13268 sources."kind-of-3.2.2" 13269 sources."known-css-properties-0.11.0" 13270 - sources."load-json-file-4.0.0" 13271 - sources."locate-path-2.0.0" 13272 sources."log-symbols-1.0.2" 13273 sources."map-obj-2.0.0" 13274 sources."meow-5.0.0" 13275 sources."micromatch-3.1.10" 13276 sources."minimist-options-3.0.2" 13277 - sources."p-limit-1.3.0" 13278 - sources."p-locate-2.0.0" 13279 - sources."p-try-1.0.0" 13280 - sources."path-exists-3.0.0" 13281 sources."path-type-3.0.0" 13282 sources."pify-3.0.0" 13283 (sources."postcss-5.2.18" // { ··· 13295 ]; 13296 }) 13297 sources."has-flag-3.0.0" 13298 - sources."postcss-7.0.35" 13299 sources."supports-color-6.1.0" 13300 ]; 13301 }) 13302 sources."postcss-selector-parser-2.2.3" 13303 sources."postcss-value-parser-3.3.1" 13304 sources."quick-lru-1.1.0" 13305 - sources."read-pkg-3.0.0" 13306 - sources."read-pkg-up-3.0.0" 13307 sources."redent-2.0.0" 13308 sources."resolve-from-4.0.0" 13309 sources."rimraf-2.6.3" ··· 13329 sources."chalk-2.4.2" 13330 sources."has-flag-3.0.0" 13331 sources."log-symbols-2.2.0" 13332 - (sources."postcss-7.0.35" // { 13333 dependencies = [ 13334 sources."supports-color-6.1.0" 13335 ]; ··· 13351 sources."postcss-sorting-5.0.1" 13352 ]; 13353 }) 13354 - sources."stylelint-scss-3.19.0" 13355 sources."sugarss-2.0.0" 13356 sources."supports-color-5.5.0" 13357 sources."svg-tags-1.0.0" ··· 13360 sources."mkdirp-0.5.5" 13361 ]; 13362 }) 13363 - sources."swiper-6.5.9" 13364 - (sources."table-6.6.0" // { 13365 dependencies = [ 13366 - sources."ajv-8.2.0" 13367 sources."json-schema-traverse-1.0.0" 13368 ]; 13369 }) 13370 sources."tapable-1.1.3" 13371 - sources."tar-6.1.0" 13372 - sources."temp-dir-1.0.0" 13373 - (sources."tempy-0.3.0" // { 13374 dependencies = [ 13375 - sources."type-fest-0.3.1" 13376 ]; 13377 }) 13378 (sources."terser-4.8.0" // { ··· 13381 sources."source-map-0.6.1" 13382 ]; 13383 }) 13384 - (sources."terser-webpack-plugin-5.1.1" // { 13385 dependencies = [ 13386 sources."commander-2.20.3" 13387 sources."p-limit-3.1.0" 13388 - sources."schema-utils-3.0.0" 13389 sources."source-map-0.6.1" 13390 - (sources."terser-5.7.0" // { 13391 dependencies = [ 13392 sources."source-map-0.7.3" 13393 ]; ··· 13407 sources."to-regex-3.0.2" 13408 sources."to-regex-range-5.0.1" 13409 sources."toidentifier-1.0.0" 13410 sources."trim-0.0.1" 13411 - sources."trim-newlines-3.0.0" 13412 sources."trim-trailing-lines-1.1.4" 13413 sources."trough-1.0.5" 13414 - (sources."tsconfig-paths-3.9.0" // { 13415 dependencies = [ 13416 sources."json5-1.0.1" 13417 ]; 13418 }) 13419 - sources."tslib-2.2.0" 13420 sources."type-2.5.0" 13421 sources."type-check-0.4.0" 13422 - sources."type-fest-0.8.1" 13423 sources."type-is-1.6.18" 13424 sources."typedarray-to-buffer-3.1.5" 13425 sources."unbox-primitive-1.0.1" ··· 13428 sources."unicode-match-property-ecmascript-1.0.4" 13429 sources."unicode-match-property-value-ecmascript-1.2.0" 13430 sources."unicode-property-aliases-ecmascript-1.1.0" 13431 - sources."unified-9.2.1" 13432 sources."union-value-1.0.1" 13433 sources."uniq-1.0.1" 13434 sources."uniqs-2.0.0" 13435 sources."unique-filename-1.1.1" 13436 sources."unique-slug-2.0.2" 13437 - sources."unique-string-1.0.0" 13438 sources."unist-util-find-all-after-3.0.2" 13439 sources."unist-util-is-4.1.0" 13440 sources."unist-util-remove-position-1.1.4" ··· 13445 sources."unist-util-is-3.0.0" 13446 ]; 13447 }) 13448 - sources."universalify-0.1.2" 13449 sources."unpipe-1.0.0" 13450 sources."unquote-1.1.1" 13451 (sources."unset-value-1.0.0" // { ··· 13466 sources."punycode-1.3.2" 13467 ]; 13468 }) 13469 - sources."url-parse-1.5.1" 13470 - sources."url-toolkit-2.2.2" 13471 sources."use-3.1.1" 13472 sources."util-deprecate-1.0.2" 13473 sources."util.promisify-1.0.1" ··· 13481 sources."vfile-4.2.1" 13482 sources."vfile-location-2.0.6" 13483 sources."vfile-message-2.0.4" 13484 - (sources."watchpack-2.1.1" // { 13485 dependencies = [ 13486 sources."glob-to-regexp-0.4.1" 13487 ]; 13488 }) 13489 sources."wbuf-1.7.3" 13490 sources."webcomponents.js-0.7.24" 13491 - (sources."webpack-5.36.2" // { 13492 dependencies = [ 13493 - sources."acorn-8.2.4" 13494 sources."glob-to-regexp-0.4.1" 13495 - sources."schema-utils-3.0.0" 13496 - sources."source-map-0.6.1" 13497 sources."tapable-2.2.0" 13498 - sources."webpack-sources-2.2.0" 13499 ]; 13500 }) 13501 - (sources."webpack-cli-4.6.0" // { 13502 dependencies = [ 13503 sources."commander-7.2.0" 13504 - sources."webpack-merge-5.7.3" 13505 ]; 13506 }) 13507 (sources."webpack-dev-middleware-3.7.3" // { ··· 13556 }) 13557 sources."websocket-driver-0.7.4" 13558 sources."websocket-extensions-0.1.4" 13559 - sources."webworkify-1.5.0" 13560 sources."whatwg-fetch-3.6.2" 13561 sources."whatwg-mimetype-2.3.0" 13562 sources."which-2.0.2" 13563 sources."which-boxed-primitive-1.0.2" 13564 sources."which-module-2.0.0" 13565 sources."wildcard-2.0.0" 13566 sources."word-wrap-1.2.3" 13567 - sources."workbox-background-sync-5.1.4" 13568 - sources."workbox-broadcast-update-5.1.4" 13569 - (sources."workbox-build-5.1.4" // { 13570 dependencies = [ 13571 - sources."source-map-0.7.3" 13572 ]; 13573 }) 13574 - sources."workbox-cacheable-response-5.1.4" 13575 sources."workbox-core-5.1.4" 13576 - sources."workbox-expiration-5.1.4" 13577 - sources."workbox-google-analytics-5.1.4" 13578 - sources."workbox-navigation-preload-5.1.4" 13579 sources."workbox-precaching-5.1.4" 13580 - sources."workbox-range-requests-5.1.4" 13581 - sources."workbox-routing-5.1.4" 13582 - sources."workbox-strategies-5.1.4" 13583 - sources."workbox-streams-5.1.4" 13584 - sources."workbox-sw-5.1.4" 13585 - sources."workbox-webpack-plugin-5.1.4" 13586 - sources."workbox-window-5.1.4" 13587 - sources."worker-plugin-5.0.0" 13588 (sources."wrap-ansi-5.1.0" // { 13589 dependencies = [ 13590 sources."ansi-regex-4.1.0" ··· 13602 }) 13603 sources."write-file-atomic-3.0.3" 13604 sources."write-file-stdout-0.0.2" 13605 - sources."ws-6.2.1" 13606 sources."x-is-string-0.1.0" 13607 sources."xmldom-0.3.0" 13608 sources."xtend-4.0.2" ··· 13612 (sources."yargs-13.3.2" // { 13613 dependencies = [ 13614 sources."ansi-regex-4.1.0" 13615 - sources."camelcase-5.3.1" 13616 sources."emoji-regex-7.0.3" 13617 sources."find-up-3.0.0" 13618 sources."is-fullwidth-code-point-2.0.0" ··· 13624 sources."yargs-parser-13.1.2" 13625 ]; 13626 }) 13627 - sources."yargs-parser-20.2.7" 13628 sources."yocto-queue-0.1.0" 13629 sources."zwitch-1.0.5" 13630 ];
··· 4 5 let 6 sources = { 7 + "@apideck/better-ajv-errors-0.2.5" = { 8 + name = "_at_apideck_slash_better-ajv-errors"; 9 + packageName = "@apideck/better-ajv-errors"; 10 + version = "0.2.5"; 11 + src = fetchurl { 12 + url = "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.2.5.tgz"; 13 + sha512 = "Pm1fAqCT8OEfBVLddU3fWZ/URWpGGhkvlsBIgn9Y2jJlcNumo0gNzPsQswDJTiA8HcKpCjOhWQOgkA9kXR4Ghg=="; 14 + }; 15 + }; 16 "@babel/code-frame-7.12.11" = { 17 name = "_at_babel_slash_code-frame"; 18 packageName = "@babel/code-frame"; ··· 22 sha512 = "Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="; 23 }; 24 }; 25 + "@babel/code-frame-7.14.5" = { 26 name = "_at_babel_slash_code-frame"; 27 packageName = "@babel/code-frame"; 28 + version = "7.14.5"; 29 src = fetchurl { 30 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz"; 31 + sha512 = "9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw=="; 32 }; 33 }; 34 + "@babel/compat-data-7.15.0" = { 35 name = "_at_babel_slash_compat-data"; 36 packageName = "@babel/compat-data"; 37 + version = "7.15.0"; 38 src = fetchurl { 39 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz"; 40 + sha512 = "0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA=="; 41 }; 42 }; 43 + "@babel/core-7.15.5" = { 44 name = "_at_babel_slash_core"; 45 packageName = "@babel/core"; 46 + version = "7.15.5"; 47 src = fetchurl { 48 + url = "https://registry.npmjs.org/@babel/core/-/core-7.15.5.tgz"; 49 + sha512 = "pYgXxiwAgQpgM1bNkZsDEq85f0ggXMA5L7c+o3tskGMh2BunCI9QUwB9Z4jpvXUOuMdyGKiGKQiRe11VS6Jzvg=="; 50 }; 51 }; 52 + "@babel/eslint-parser-7.15.4" = { 53 name = "_at_babel_slash_eslint-parser"; 54 packageName = "@babel/eslint-parser"; 55 + version = "7.15.4"; 56 src = fetchurl { 57 + url = "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.15.4.tgz"; 58 + sha512 = "hPMIAmGNbmQzXJIo2P43Zj9UhRmGev5f9nqdBFOWNGDGh6XKmjby79woBvg6y0Jur6yRfQBneDbUQ8ZVc1krFw=="; 59 }; 60 }; 61 + "@babel/eslint-plugin-7.14.5" = { 62 name = "_at_babel_slash_eslint-plugin"; 63 packageName = "@babel/eslint-plugin"; 64 + version = "7.14.5"; 65 src = fetchurl { 66 + url = "https://registry.npmjs.org/@babel/eslint-plugin/-/eslint-plugin-7.14.5.tgz"; 67 + sha512 = "nzt/YMnOOIRikvSn2hk9+W2omgJBy6U8TN0R+WTTmqapA+HnZTuviZaketdTE9W7/k/+E/DfZlt1ey1NSE39pg=="; 68 }; 69 }; 70 + "@babel/generator-7.15.4" = { 71 name = "_at_babel_slash_generator"; 72 packageName = "@babel/generator"; 73 + version = "7.15.4"; 74 src = fetchurl { 75 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.15.4.tgz"; 76 + sha512 = "d3itta0tu+UayjEORPNz6e1T3FtvWlP5N4V5M+lhp/CxT4oAA7/NcScnpRyspUMLK6tu9MNHmQHxRykuN2R7hw=="; 77 }; 78 }; 79 + "@babel/helper-annotate-as-pure-7.15.4" = { 80 name = "_at_babel_slash_helper-annotate-as-pure"; 81 packageName = "@babel/helper-annotate-as-pure"; 82 + version = "7.15.4"; 83 src = fetchurl { 84 + url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz"; 85 + sha512 = "QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA=="; 86 }; 87 }; 88 + "@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" = { 89 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 90 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 91 + version = "7.15.4"; 92 src = fetchurl { 93 + url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz"; 94 + sha512 = "P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q=="; 95 }; 96 }; 97 + "@babel/helper-compilation-targets-7.15.4" = { 98 name = "_at_babel_slash_helper-compilation-targets"; 99 packageName = "@babel/helper-compilation-targets"; 100 + version = "7.15.4"; 101 src = fetchurl { 102 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz"; 103 + sha512 = "rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ=="; 104 }; 105 }; 106 + "@babel/helper-create-class-features-plugin-7.15.4" = { 107 name = "_at_babel_slash_helper-create-class-features-plugin"; 108 packageName = "@babel/helper-create-class-features-plugin"; 109 + version = "7.15.4"; 110 src = fetchurl { 111 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz"; 112 + sha512 = "7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw=="; 113 }; 114 }; 115 + "@babel/helper-create-regexp-features-plugin-7.14.5" = { 116 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 117 packageName = "@babel/helper-create-regexp-features-plugin"; 118 + version = "7.14.5"; 119 src = fetchurl { 120 + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz"; 121 + sha512 = "TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A=="; 122 }; 123 }; 124 + "@babel/helper-define-polyfill-provider-0.2.3" = { 125 name = "_at_babel_slash_helper-define-polyfill-provider"; 126 packageName = "@babel/helper-define-polyfill-provider"; 127 + version = "0.2.3"; 128 src = fetchurl { 129 + url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz"; 130 + sha512 = "RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew=="; 131 }; 132 }; 133 + "@babel/helper-explode-assignable-expression-7.15.4" = { 134 name = "_at_babel_slash_helper-explode-assignable-expression"; 135 packageName = "@babel/helper-explode-assignable-expression"; 136 + version = "7.15.4"; 137 src = fetchurl { 138 + url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz"; 139 + sha512 = "J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g=="; 140 }; 141 }; 142 + "@babel/helper-function-name-7.15.4" = { 143 name = "_at_babel_slash_helper-function-name"; 144 packageName = "@babel/helper-function-name"; 145 + version = "7.15.4"; 146 src = fetchurl { 147 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz"; 148 + sha512 = "Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw=="; 149 }; 150 }; 151 + "@babel/helper-get-function-arity-7.15.4" = { 152 name = "_at_babel_slash_helper-get-function-arity"; 153 packageName = "@babel/helper-get-function-arity"; 154 + version = "7.15.4"; 155 src = fetchurl { 156 + url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz"; 157 + sha512 = "1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA=="; 158 }; 159 }; 160 + "@babel/helper-hoist-variables-7.15.4" = { 161 name = "_at_babel_slash_helper-hoist-variables"; 162 packageName = "@babel/helper-hoist-variables"; 163 + version = "7.15.4"; 164 src = fetchurl { 165 + url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz"; 166 + sha512 = "VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA=="; 167 }; 168 }; 169 + "@babel/helper-member-expression-to-functions-7.15.4" = { 170 name = "_at_babel_slash_helper-member-expression-to-functions"; 171 packageName = "@babel/helper-member-expression-to-functions"; 172 + version = "7.15.4"; 173 src = fetchurl { 174 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz"; 175 + sha512 = "cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA=="; 176 }; 177 }; 178 + "@babel/helper-module-imports-7.15.4" = { 179 name = "_at_babel_slash_helper-module-imports"; 180 packageName = "@babel/helper-module-imports"; 181 + version = "7.15.4"; 182 src = fetchurl { 183 + url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz"; 184 + sha512 = "jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA=="; 185 }; 186 }; 187 + "@babel/helper-module-transforms-7.15.4" = { 188 name = "_at_babel_slash_helper-module-transforms"; 189 packageName = "@babel/helper-module-transforms"; 190 + version = "7.15.4"; 191 src = fetchurl { 192 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.4.tgz"; 193 + sha512 = "9fHHSGE9zTC++KuXLZcB5FKgvlV83Ox+NLUmQTawovwlJ85+QMhk1CnVk406CQVj97LaWod6KVjl2Sfgw9Aktw=="; 194 }; 195 }; 196 + "@babel/helper-optimise-call-expression-7.15.4" = { 197 name = "_at_babel_slash_helper-optimise-call-expression"; 198 packageName = "@babel/helper-optimise-call-expression"; 199 + version = "7.15.4"; 200 src = fetchurl { 201 + url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz"; 202 + sha512 = "E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw=="; 203 }; 204 }; 205 + "@babel/helper-plugin-utils-7.14.5" = { 206 name = "_at_babel_slash_helper-plugin-utils"; 207 packageName = "@babel/helper-plugin-utils"; 208 + version = "7.14.5"; 209 src = fetchurl { 210 + url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz"; 211 + sha512 = "/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ=="; 212 }; 213 }; 214 + "@babel/helper-remap-async-to-generator-7.15.4" = { 215 name = "_at_babel_slash_helper-remap-async-to-generator"; 216 packageName = "@babel/helper-remap-async-to-generator"; 217 + version = "7.15.4"; 218 src = fetchurl { 219 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz"; 220 + sha512 = "v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ=="; 221 }; 222 }; 223 + "@babel/helper-replace-supers-7.15.4" = { 224 name = "_at_babel_slash_helper-replace-supers"; 225 packageName = "@babel/helper-replace-supers"; 226 + version = "7.15.4"; 227 src = fetchurl { 228 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz"; 229 + sha512 = "/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw=="; 230 }; 231 }; 232 + "@babel/helper-simple-access-7.15.4" = { 233 name = "_at_babel_slash_helper-simple-access"; 234 packageName = "@babel/helper-simple-access"; 235 + version = "7.15.4"; 236 src = fetchurl { 237 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz"; 238 + sha512 = "UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg=="; 239 }; 240 }; 241 + "@babel/helper-skip-transparent-expression-wrappers-7.15.4" = { 242 name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 243 packageName = "@babel/helper-skip-transparent-expression-wrappers"; 244 + version = "7.15.4"; 245 src = fetchurl { 246 + url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz"; 247 + sha512 = "BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A=="; 248 }; 249 }; 250 + "@babel/helper-split-export-declaration-7.15.4" = { 251 name = "_at_babel_slash_helper-split-export-declaration"; 252 packageName = "@babel/helper-split-export-declaration"; 253 + version = "7.15.4"; 254 src = fetchurl { 255 + url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz"; 256 + sha512 = "HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw=="; 257 }; 258 }; 259 + "@babel/helper-validator-identifier-7.14.9" = { 260 name = "_at_babel_slash_helper-validator-identifier"; 261 packageName = "@babel/helper-validator-identifier"; 262 + version = "7.14.9"; 263 src = fetchurl { 264 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz"; 265 + sha512 = "pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g=="; 266 }; 267 }; 268 + "@babel/helper-validator-option-7.14.5" = { 269 name = "_at_babel_slash_helper-validator-option"; 270 packageName = "@babel/helper-validator-option"; 271 + version = "7.14.5"; 272 src = fetchurl { 273 + url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"; 274 + sha512 = "OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="; 275 }; 276 }; 277 + "@babel/helper-wrap-function-7.15.4" = { 278 name = "_at_babel_slash_helper-wrap-function"; 279 packageName = "@babel/helper-wrap-function"; 280 + version = "7.15.4"; 281 src = fetchurl { 282 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz"; 283 + sha512 = "Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw=="; 284 }; 285 }; 286 + "@babel/helpers-7.15.4" = { 287 name = "_at_babel_slash_helpers"; 288 packageName = "@babel/helpers"; 289 + version = "7.15.4"; 290 src = fetchurl { 291 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz"; 292 + sha512 = "V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ=="; 293 }; 294 }; 295 + "@babel/highlight-7.14.5" = { 296 name = "_at_babel_slash_highlight"; 297 packageName = "@babel/highlight"; 298 + version = "7.14.5"; 299 src = fetchurl { 300 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz"; 301 + sha512 = "qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg=="; 302 }; 303 }; 304 + "@babel/parser-7.15.5" = { 305 name = "_at_babel_slash_parser"; 306 packageName = "@babel/parser"; 307 + version = "7.15.5"; 308 src = fetchurl { 309 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.15.5.tgz"; 310 + sha512 = "2hQstc6I7T6tQsWzlboMh3SgMRPaS4H6H7cPQsJkdzTzEGqQrpLDsE2BGASU5sBPoEQyHzeqU6C8uKbFeEk6sg=="; 311 }; 312 }; 313 + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" = { 314 name = "_at_babel_slash_plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 315 packageName = "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 316 + version = "7.15.4"; 317 src = fetchurl { 318 + url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz"; 319 + sha512 = "eBnpsl9tlhPhpI10kU06JHnrYXwg3+V6CaP2idsCXNef0aeslpqyITXQ74Vfk5uHgY7IG7XP0yIH8b42KSzHog=="; 320 }; 321 }; 322 + "@babel/plugin-proposal-async-generator-functions-7.15.4" = { 323 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 324 packageName = "@babel/plugin-proposal-async-generator-functions"; 325 + version = "7.15.4"; 326 src = fetchurl { 327 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.4.tgz"; 328 + sha512 = "2zt2g5vTXpMC3OmK6uyjvdXptbhBXfA77XGrd3gh93zwG8lZYBLOBImiGBEG0RANu3JqKEACCz5CGk73OJROBw=="; 329 }; 330 }; 331 + "@babel/plugin-proposal-class-properties-7.14.5" = { 332 name = "_at_babel_slash_plugin-proposal-class-properties"; 333 packageName = "@babel/plugin-proposal-class-properties"; 334 + version = "7.14.5"; 335 src = fetchurl { 336 + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz"; 337 + sha512 = "q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg=="; 338 }; 339 }; 340 + "@babel/plugin-proposal-class-static-block-7.15.4" = { 341 name = "_at_babel_slash_plugin-proposal-class-static-block"; 342 packageName = "@babel/plugin-proposal-class-static-block"; 343 + version = "7.15.4"; 344 src = fetchurl { 345 + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.15.4.tgz"; 346 + sha512 = "M682XWrrLNk3chXCjoPUQWOyYsB93B9z3mRyjtqqYJWDf2mfCdIYgDrA11cgNVhAQieaq6F2fn2f3wI0U4aTjA=="; 347 }; 348 }; 349 + "@babel/plugin-proposal-dynamic-import-7.14.5" = { 350 name = "_at_babel_slash_plugin-proposal-dynamic-import"; 351 packageName = "@babel/plugin-proposal-dynamic-import"; 352 + version = "7.14.5"; 353 src = fetchurl { 354 + url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz"; 355 + sha512 = "ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g=="; 356 }; 357 }; 358 + "@babel/plugin-proposal-export-namespace-from-7.14.5" = { 359 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 360 packageName = "@babel/plugin-proposal-export-namespace-from"; 361 + version = "7.14.5"; 362 src = fetchurl { 363 + url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz"; 364 + sha512 = "g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA=="; 365 }; 366 }; 367 + "@babel/plugin-proposal-json-strings-7.14.5" = { 368 name = "_at_babel_slash_plugin-proposal-json-strings"; 369 packageName = "@babel/plugin-proposal-json-strings"; 370 + version = "7.14.5"; 371 src = fetchurl { 372 + url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz"; 373 + sha512 = "NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ=="; 374 }; 375 }; 376 + "@babel/plugin-proposal-logical-assignment-operators-7.14.5" = { 377 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 378 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 379 + version = "7.14.5"; 380 src = fetchurl { 381 + url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz"; 382 + sha512 = "YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw=="; 383 }; 384 }; 385 + "@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" = { 386 name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 387 packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 388 + version = "7.14.5"; 389 src = fetchurl { 390 + url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz"; 391 + sha512 = "gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg=="; 392 }; 393 }; 394 + "@babel/plugin-proposal-numeric-separator-7.14.5" = { 395 name = "_at_babel_slash_plugin-proposal-numeric-separator"; 396 packageName = "@babel/plugin-proposal-numeric-separator"; 397 + version = "7.14.5"; 398 src = fetchurl { 399 + url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz"; 400 + sha512 = "yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg=="; 401 }; 402 }; 403 + "@babel/plugin-proposal-object-rest-spread-7.14.7" = { 404 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 405 packageName = "@babel/plugin-proposal-object-rest-spread"; 406 + version = "7.14.7"; 407 src = fetchurl { 408 + url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz"; 409 + sha512 = "082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g=="; 410 }; 411 }; 412 + "@babel/plugin-proposal-optional-catch-binding-7.14.5" = { 413 name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 414 packageName = "@babel/plugin-proposal-optional-catch-binding"; 415 + version = "7.14.5"; 416 src = fetchurl { 417 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz"; 418 + sha512 = "3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ=="; 419 }; 420 }; 421 + "@babel/plugin-proposal-optional-chaining-7.14.5" = { 422 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 423 packageName = "@babel/plugin-proposal-optional-chaining"; 424 + version = "7.14.5"; 425 src = fetchurl { 426 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz"; 427 + sha512 = "ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ=="; 428 }; 429 }; 430 + "@babel/plugin-proposal-private-methods-7.14.5" = { 431 name = "_at_babel_slash_plugin-proposal-private-methods"; 432 packageName = "@babel/plugin-proposal-private-methods"; 433 + version = "7.14.5"; 434 src = fetchurl { 435 + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz"; 436 + sha512 = "838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g=="; 437 }; 438 }; 439 + "@babel/plugin-proposal-private-property-in-object-7.15.4" = { 440 name = "_at_babel_slash_plugin-proposal-private-property-in-object"; 441 packageName = "@babel/plugin-proposal-private-property-in-object"; 442 + version = "7.15.4"; 443 src = fetchurl { 444 + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.15.4.tgz"; 445 + sha512 = "X0UTixkLf0PCCffxgu5/1RQyGGbgZuKoI+vXP4iSbJSYwPb7hu06omsFGBvQ9lJEvwgrxHdS8B5nbfcd8GyUNA=="; 446 }; 447 }; 448 + "@babel/plugin-proposal-unicode-property-regex-7.14.5" = { 449 name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 450 packageName = "@babel/plugin-proposal-unicode-property-regex"; 451 + version = "7.14.5"; 452 src = fetchurl { 453 + url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz"; 454 + sha512 = "6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q=="; 455 }; 456 }; 457 "@babel/plugin-syntax-async-generators-7.8.4" = { ··· 472 sha512 = "fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="; 473 }; 474 }; 475 + "@babel/plugin-syntax-class-static-block-7.14.5" = { 476 name = "_at_babel_slash_plugin-syntax-class-static-block"; 477 packageName = "@babel/plugin-syntax-class-static-block"; 478 + version = "7.14.5"; 479 src = fetchurl { 480 + url = "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz"; 481 + sha512 = "b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw=="; 482 }; 483 }; 484 "@babel/plugin-syntax-dynamic-import-7.8.3" = { ··· 562 sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="; 563 }; 564 }; 565 + "@babel/plugin-syntax-private-property-in-object-7.14.5" = { 566 name = "_at_babel_slash_plugin-syntax-private-property-in-object"; 567 packageName = "@babel/plugin-syntax-private-property-in-object"; 568 + version = "7.14.5"; 569 src = fetchurl { 570 + url = "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz"; 571 + sha512 = "0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg=="; 572 }; 573 }; 574 + "@babel/plugin-syntax-top-level-await-7.14.5" = { 575 name = "_at_babel_slash_plugin-syntax-top-level-await"; 576 packageName = "@babel/plugin-syntax-top-level-await"; 577 + version = "7.14.5"; 578 src = fetchurl { 579 + url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"; 580 + sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 581 }; 582 }; 583 + "@babel/plugin-transform-arrow-functions-7.14.5" = { 584 name = "_at_babel_slash_plugin-transform-arrow-functions"; 585 packageName = "@babel/plugin-transform-arrow-functions"; 586 + version = "7.14.5"; 587 src = fetchurl { 588 + url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz"; 589 + sha512 = "KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A=="; 590 }; 591 }; 592 + "@babel/plugin-transform-async-to-generator-7.14.5" = { 593 name = "_at_babel_slash_plugin-transform-async-to-generator"; 594 packageName = "@babel/plugin-transform-async-to-generator"; 595 + version = "7.14.5"; 596 src = fetchurl { 597 + url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz"; 598 + sha512 = "szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA=="; 599 }; 600 }; 601 + "@babel/plugin-transform-block-scoped-functions-7.14.5" = { 602 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 603 packageName = "@babel/plugin-transform-block-scoped-functions"; 604 + version = "7.14.5"; 605 src = fetchurl { 606 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz"; 607 + sha512 = "dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ=="; 608 }; 609 }; 610 + "@babel/plugin-transform-block-scoping-7.15.3" = { 611 name = "_at_babel_slash_plugin-transform-block-scoping"; 612 packageName = "@babel/plugin-transform-block-scoping"; 613 + version = "7.15.3"; 614 src = fetchurl { 615 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz"; 616 + sha512 = "nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q=="; 617 }; 618 }; 619 + "@babel/plugin-transform-classes-7.15.4" = { 620 name = "_at_babel_slash_plugin-transform-classes"; 621 packageName = "@babel/plugin-transform-classes"; 622 + version = "7.15.4"; 623 src = fetchurl { 624 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz"; 625 + sha512 = "Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg=="; 626 }; 627 }; 628 + "@babel/plugin-transform-computed-properties-7.14.5" = { 629 name = "_at_babel_slash_plugin-transform-computed-properties"; 630 packageName = "@babel/plugin-transform-computed-properties"; 631 + version = "7.14.5"; 632 src = fetchurl { 633 + url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz"; 634 + sha512 = "pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg=="; 635 }; 636 }; 637 + "@babel/plugin-transform-destructuring-7.14.7" = { 638 name = "_at_babel_slash_plugin-transform-destructuring"; 639 packageName = "@babel/plugin-transform-destructuring"; 640 + version = "7.14.7"; 641 src = fetchurl { 642 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz"; 643 + sha512 = "0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw=="; 644 }; 645 }; 646 + "@babel/plugin-transform-dotall-regex-7.14.5" = { 647 name = "_at_babel_slash_plugin-transform-dotall-regex"; 648 packageName = "@babel/plugin-transform-dotall-regex"; 649 + version = "7.14.5"; 650 src = fetchurl { 651 + url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz"; 652 + sha512 = "loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw=="; 653 }; 654 }; 655 + "@babel/plugin-transform-duplicate-keys-7.14.5" = { 656 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 657 packageName = "@babel/plugin-transform-duplicate-keys"; 658 + version = "7.14.5"; 659 src = fetchurl { 660 + url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz"; 661 + sha512 = "iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A=="; 662 }; 663 }; 664 + "@babel/plugin-transform-exponentiation-operator-7.14.5" = { 665 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 666 packageName = "@babel/plugin-transform-exponentiation-operator"; 667 + version = "7.14.5"; 668 src = fetchurl { 669 + url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz"; 670 + sha512 = "jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA=="; 671 }; 672 }; 673 + "@babel/plugin-transform-for-of-7.15.4" = { 674 name = "_at_babel_slash_plugin-transform-for-of"; 675 packageName = "@babel/plugin-transform-for-of"; 676 + version = "7.15.4"; 677 src = fetchurl { 678 + url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz"; 679 + sha512 = "DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA=="; 680 }; 681 }; 682 + "@babel/plugin-transform-function-name-7.14.5" = { 683 name = "_at_babel_slash_plugin-transform-function-name"; 684 packageName = "@babel/plugin-transform-function-name"; 685 + version = "7.14.5"; 686 src = fetchurl { 687 + url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz"; 688 + sha512 = "vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ=="; 689 }; 690 }; 691 + "@babel/plugin-transform-literals-7.14.5" = { 692 name = "_at_babel_slash_plugin-transform-literals"; 693 packageName = "@babel/plugin-transform-literals"; 694 + version = "7.14.5"; 695 src = fetchurl { 696 + url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz"; 697 + sha512 = "ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A=="; 698 }; 699 }; 700 + "@babel/plugin-transform-member-expression-literals-7.14.5" = { 701 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 702 packageName = "@babel/plugin-transform-member-expression-literals"; 703 + version = "7.14.5"; 704 src = fetchurl { 705 + url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz"; 706 + sha512 = "WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q=="; 707 }; 708 }; 709 + "@babel/plugin-transform-modules-amd-7.14.5" = { 710 name = "_at_babel_slash_plugin-transform-modules-amd"; 711 packageName = "@babel/plugin-transform-modules-amd"; 712 + version = "7.14.5"; 713 src = fetchurl { 714 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz"; 715 + sha512 = "3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g=="; 716 }; 717 }; 718 + "@babel/plugin-transform-modules-commonjs-7.15.4" = { 719 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 720 packageName = "@babel/plugin-transform-modules-commonjs"; 721 + version = "7.15.4"; 722 src = fetchurl { 723 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz"; 724 + sha512 = "qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA=="; 725 }; 726 }; 727 + "@babel/plugin-transform-modules-systemjs-7.15.4" = { 728 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 729 packageName = "@babel/plugin-transform-modules-systemjs"; 730 + version = "7.15.4"; 731 src = fetchurl { 732 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz"; 733 + sha512 = "fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw=="; 734 }; 735 }; 736 + "@babel/plugin-transform-modules-umd-7.14.5" = { 737 name = "_at_babel_slash_plugin-transform-modules-umd"; 738 packageName = "@babel/plugin-transform-modules-umd"; 739 + version = "7.14.5"; 740 src = fetchurl { 741 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz"; 742 + sha512 = "RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA=="; 743 }; 744 }; 745 + "@babel/plugin-transform-named-capturing-groups-regex-7.14.9" = { 746 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 747 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 748 + version = "7.14.9"; 749 src = fetchurl { 750 + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz"; 751 + sha512 = "l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA=="; 752 }; 753 }; 754 + "@babel/plugin-transform-new-target-7.14.5" = { 755 name = "_at_babel_slash_plugin-transform-new-target"; 756 packageName = "@babel/plugin-transform-new-target"; 757 + version = "7.14.5"; 758 src = fetchurl { 759 + url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz"; 760 + sha512 = "Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ=="; 761 }; 762 }; 763 + "@babel/plugin-transform-object-super-7.14.5" = { 764 name = "_at_babel_slash_plugin-transform-object-super"; 765 packageName = "@babel/plugin-transform-object-super"; 766 + version = "7.14.5"; 767 src = fetchurl { 768 + url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz"; 769 + sha512 = "MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg=="; 770 }; 771 }; 772 + "@babel/plugin-transform-parameters-7.15.4" = { 773 name = "_at_babel_slash_plugin-transform-parameters"; 774 packageName = "@babel/plugin-transform-parameters"; 775 + version = "7.15.4"; 776 src = fetchurl { 777 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz"; 778 + sha512 = "9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ=="; 779 }; 780 }; 781 + "@babel/plugin-transform-property-literals-7.14.5" = { 782 name = "_at_babel_slash_plugin-transform-property-literals"; 783 packageName = "@babel/plugin-transform-property-literals"; 784 + version = "7.14.5"; 785 src = fetchurl { 786 + url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz"; 787 + sha512 = "r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw=="; 788 }; 789 }; 790 + "@babel/plugin-transform-regenerator-7.14.5" = { 791 name = "_at_babel_slash_plugin-transform-regenerator"; 792 packageName = "@babel/plugin-transform-regenerator"; 793 + version = "7.14.5"; 794 src = fetchurl { 795 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz"; 796 + sha512 = "NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg=="; 797 }; 798 }; 799 + "@babel/plugin-transform-reserved-words-7.14.5" = { 800 name = "_at_babel_slash_plugin-transform-reserved-words"; 801 packageName = "@babel/plugin-transform-reserved-words"; 802 + version = "7.14.5"; 803 src = fetchurl { 804 + url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz"; 805 + sha512 = "cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg=="; 806 }; 807 }; 808 + "@babel/plugin-transform-shorthand-properties-7.14.5" = { 809 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 810 packageName = "@babel/plugin-transform-shorthand-properties"; 811 + version = "7.14.5"; 812 src = fetchurl { 813 + url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz"; 814 + sha512 = "xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g=="; 815 }; 816 }; 817 + "@babel/plugin-transform-spread-7.14.6" = { 818 name = "_at_babel_slash_plugin-transform-spread"; 819 packageName = "@babel/plugin-transform-spread"; 820 + version = "7.14.6"; 821 src = fetchurl { 822 + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz"; 823 + sha512 = "Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag=="; 824 }; 825 }; 826 + "@babel/plugin-transform-sticky-regex-7.14.5" = { 827 name = "_at_babel_slash_plugin-transform-sticky-regex"; 828 packageName = "@babel/plugin-transform-sticky-regex"; 829 + version = "7.14.5"; 830 src = fetchurl { 831 + url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz"; 832 + sha512 = "Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A=="; 833 }; 834 }; 835 + "@babel/plugin-transform-template-literals-7.14.5" = { 836 name = "_at_babel_slash_plugin-transform-template-literals"; 837 packageName = "@babel/plugin-transform-template-literals"; 838 + version = "7.14.5"; 839 src = fetchurl { 840 + url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz"; 841 + sha512 = "22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg=="; 842 }; 843 }; 844 + "@babel/plugin-transform-typeof-symbol-7.14.5" = { 845 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 846 packageName = "@babel/plugin-transform-typeof-symbol"; 847 + version = "7.14.5"; 848 src = fetchurl { 849 + url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz"; 850 + sha512 = "lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw=="; 851 }; 852 }; 853 + "@babel/plugin-transform-unicode-escapes-7.14.5" = { 854 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 855 packageName = "@babel/plugin-transform-unicode-escapes"; 856 + version = "7.14.5"; 857 src = fetchurl { 858 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz"; 859 + sha512 = "crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA=="; 860 }; 861 }; 862 + "@babel/plugin-transform-unicode-regex-7.14.5" = { 863 name = "_at_babel_slash_plugin-transform-unicode-regex"; 864 packageName = "@babel/plugin-transform-unicode-regex"; 865 + version = "7.14.5"; 866 src = fetchurl { 867 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz"; 868 + sha512 = "UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw=="; 869 }; 870 }; 871 + "@babel/preset-env-7.15.4" = { 872 name = "_at_babel_slash_preset-env"; 873 packageName = "@babel/preset-env"; 874 + version = "7.15.4"; 875 src = fetchurl { 876 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.4.tgz"; 877 + sha512 = "4f2nLw+q6ht8gl3sHCmNhmA5W6b1ItLzbH3UrKuJxACHr2eCpk96jwjrAfCAaXaaVwTQGnyUYHY2EWXJGt7TUQ=="; 878 }; 879 }; 880 "@babel/preset-modules-0.1.4" = { ··· 886 sha512 = "J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg=="; 887 }; 888 }; 889 + "@babel/runtime-7.15.4" = { 890 name = "_at_babel_slash_runtime"; 891 packageName = "@babel/runtime"; 892 + version = "7.15.4"; 893 src = fetchurl { 894 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz"; 895 + sha512 = "99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw=="; 896 }; 897 }; 898 + "@babel/template-7.15.4" = { 899 name = "_at_babel_slash_template"; 900 packageName = "@babel/template"; 901 + version = "7.15.4"; 902 src = fetchurl { 903 + url = "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz"; 904 + sha512 = "UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg=="; 905 }; 906 }; 907 + "@babel/traverse-7.15.4" = { 908 name = "_at_babel_slash_traverse"; 909 packageName = "@babel/traverse"; 910 + version = "7.15.4"; 911 src = fetchurl { 912 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz"; 913 + sha512 = "W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA=="; 914 }; 915 }; 916 + "@babel/types-7.15.4" = { 917 name = "_at_babel_slash_types"; 918 packageName = "@babel/types"; 919 + version = "7.15.4"; 920 src = fetchurl { 921 + url = "https://registry.npmjs.org/@babel/types/-/types-7.15.4.tgz"; 922 + sha512 = "0f1HJFuGmmbrKTCZtbm3cU+b/AqdEYk5toj5iQur58xkVMlS0JWaKxTBSmCXd47uiN7vbcozAupm6Mvs80GNhw=="; 923 }; 924 }; 925 "@csstools/convert-colors-1.4.0" = { ··· 931 sha512 = "5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw=="; 932 }; 933 }; 934 + "@discoveryjs/json-ext-0.5.3" = { 935 name = "_at_discoveryjs_slash_json-ext"; 936 packageName = "@discoveryjs/json-ext"; 937 + version = "0.5.3"; 938 src = fetchurl { 939 + url = "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.3.tgz"; 940 + sha512 = "Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g=="; 941 }; 942 }; 943 + "@eslint/eslintrc-0.4.3" = { 944 name = "_at_eslint_slash_eslintrc"; 945 packageName = "@eslint/eslintrc"; 946 + version = "0.4.3"; 947 src = fetchurl { 948 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz"; 949 + sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="; 950 }; 951 }; 952 + "@gar/promisify-1.1.2" = { 953 + name = "_at_gar_slash_promisify"; 954 + packageName = "@gar/promisify"; 955 + version = "1.1.2"; 956 src = fetchurl { 957 + url = "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz"; 958 + sha512 = "82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw=="; 959 }; 960 }; 961 + "@humanwhocodes/config-array-0.5.0" = { 962 + name = "_at_humanwhocodes_slash_config-array"; 963 + packageName = "@humanwhocodes/config-array"; 964 + version = "0.5.0"; 965 src = fetchurl { 966 + url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz"; 967 + sha512 = "FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg=="; 968 }; 969 }; 970 + "@humanwhocodes/object-schema-1.2.0" = { 971 + name = "_at_humanwhocodes_slash_object-schema"; 972 + packageName = "@humanwhocodes/object-schema"; 973 + version = "1.2.0"; 974 src = fetchurl { 975 + url = "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz"; 976 + sha512 = "wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w=="; 977 }; 978 }; 979 + "@mdn/browser-compat-data-3.3.14" = { 980 name = "_at_mdn_slash_browser-compat-data"; 981 packageName = "@mdn/browser-compat-data"; 982 + version = "3.3.14"; 983 src = fetchurl { 984 + url = "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-3.3.14.tgz"; 985 + sha512 = "n2RC9d6XatVbWFdHLimzzUJxJ1KY8LdjqrW6YvGPiRmsHkhOUx74/Ct10x5Yo7bC/Jvqx7cDEW8IMPv/+vwEzA=="; 986 }; 987 }; 988 "@mrmlnc/readdir-enhanced-2.2.1" = { ··· 994 sha512 = "bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g=="; 995 }; 996 }; 997 + "@nodelib/fs.scandir-2.1.5" = { 998 name = "_at_nodelib_slash_fs.scandir"; 999 packageName = "@nodelib/fs.scandir"; 1000 + version = "2.1.5"; 1001 src = fetchurl { 1002 + url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"; 1003 + sha512 = "vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="; 1004 }; 1005 }; 1006 "@nodelib/fs.stat-1.1.3" = { ··· 1012 sha512 = "shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw=="; 1013 }; 1014 }; 1015 + "@nodelib/fs.stat-2.0.5" = { 1016 name = "_at_nodelib_slash_fs.stat"; 1017 packageName = "@nodelib/fs.stat"; 1018 + version = "2.0.5"; 1019 src = fetchurl { 1020 + url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"; 1021 + sha512 = "RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="; 1022 }; 1023 }; 1024 + "@nodelib/fs.walk-1.2.8" = { 1025 name = "_at_nodelib_slash_fs.walk"; 1026 packageName = "@nodelib/fs.walk"; 1027 + version = "1.2.8"; 1028 src = fetchurl { 1029 + url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"; 1030 + sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 1031 + }; 1032 + }; 1033 + "@npmcli/fs-1.0.0" = { 1034 + name = "_at_npmcli_slash_fs"; 1035 + packageName = "@npmcli/fs"; 1036 + version = "1.0.0"; 1037 + src = fetchurl { 1038 + url = "https://registry.npmjs.org/@npmcli/fs/-/fs-1.0.0.tgz"; 1039 + sha512 = "8ltnOpRR/oJbOp8vaGUnipOi3bqkcW+sLHFlyXIr08OGHmVJLB1Hn7QtGXbYcpVtH1gAYZTlmDXtE4YV0+AMMQ=="; 1040 }; 1041 }; 1042 "@npmcli/move-file-1.1.2" = { ··· 1048 sha512 = "1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg=="; 1049 }; 1050 }; 1051 + "@rollup/plugin-babel-5.3.0" = { 1052 + name = "_at_rollup_slash_plugin-babel"; 1053 + packageName = "@rollup/plugin-babel"; 1054 + version = "5.3.0"; 1055 + src = fetchurl { 1056 + url = "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.0.tgz"; 1057 + sha512 = "9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw=="; 1058 + }; 1059 + }; 1060 + "@rollup/plugin-node-resolve-11.2.1" = { 1061 name = "_at_rollup_slash_plugin-node-resolve"; 1062 packageName = "@rollup/plugin-node-resolve"; 1063 + version = "11.2.1"; 1064 src = fetchurl { 1065 + url = "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz"; 1066 + sha512 = "yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg=="; 1067 }; 1068 }; 1069 "@rollup/plugin-replace-2.4.2" = { ··· 1111 sha512 = "yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A=="; 1112 }; 1113 }; 1114 + "@types/eslint-7.28.0" = { 1115 name = "_at_types_slash_eslint"; 1116 packageName = "@types/eslint"; 1117 + version = "7.28.0"; 1118 src = fetchurl { 1119 + url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.28.0.tgz"; 1120 + sha512 = "07XlgzX0YJUn4iG1ocY4IX9DzKSmMGUs6ESKlxWhZRaa0fatIWaHWUVapcuGa8r5HFnTqzj+4OCjd5f7EZ/i/A=="; 1121 }; 1122 }; 1123 + "@types/eslint-scope-3.7.1" = { 1124 name = "_at_types_slash_eslint-scope"; 1125 packageName = "@types/eslint-scope"; 1126 + version = "3.7.1"; 1127 src = fetchurl { 1128 + url = "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.1.tgz"; 1129 + sha512 = "SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g=="; 1130 }; 1131 }; 1132 "@types/estree-0.0.39" = { ··· 1138 sha512 = "EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="; 1139 }; 1140 }; 1141 + "@types/estree-0.0.50" = { 1142 name = "_at_types_slash_estree"; 1143 packageName = "@types/estree"; 1144 + version = "0.0.50"; 1145 src = fetchurl { 1146 + url = "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz"; 1147 + sha512 = "C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw=="; 1148 }; 1149 }; 1150 + "@types/glob-7.1.4" = { 1151 name = "_at_types_slash_glob"; 1152 packageName = "@types/glob"; 1153 + version = "7.1.4"; 1154 src = fetchurl { 1155 + url = "https://registry.npmjs.org/@types/glob/-/glob-7.1.4.tgz"; 1156 + sha512 = "w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA=="; 1157 }; 1158 }; 1159 + "@types/html-minifier-terser-5.1.2" = { 1160 name = "_at_types_slash_html-minifier-terser"; 1161 packageName = "@types/html-minifier-terser"; 1162 + version = "5.1.2"; 1163 src = fetchurl { 1164 + url = "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz"; 1165 + sha512 = "h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w=="; 1166 }; 1167 }; 1168 + "@types/json-schema-7.0.9" = { 1169 name = "_at_types_slash_json-schema"; 1170 packageName = "@types/json-schema"; 1171 + version = "7.0.9"; 1172 src = fetchurl { 1173 + url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz"; 1174 + sha512 = "qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="; 1175 }; 1176 }; 1177 "@types/json5-0.0.29" = { ··· 1192 sha1 = "5e31c32dd8791ec4b9ff3ef47c9cb55b2d0d9438"; 1193 }; 1194 }; 1195 + "@types/mdast-3.0.10" = { 1196 name = "_at_types_slash_mdast"; 1197 packageName = "@types/mdast"; 1198 + version = "3.0.10"; 1199 src = fetchurl { 1200 + url = "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz"; 1201 + sha512 = "W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA=="; 1202 }; 1203 }; 1204 + "@types/minimatch-3.0.5" = { 1205 name = "_at_types_slash_minimatch"; 1206 packageName = "@types/minimatch"; 1207 + version = "3.0.5"; 1208 src = fetchurl { 1209 + url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz"; 1210 + sha512 = "Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="; 1211 }; 1212 }; 1213 + "@types/minimist-1.2.2" = { 1214 name = "_at_types_slash_minimist"; 1215 packageName = "@types/minimist"; 1216 + version = "1.2.2"; 1217 src = fetchurl { 1218 + url = "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz"; 1219 + sha512 = "jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ=="; 1220 }; 1221 }; 1222 + "@types/node-16.7.10" = { 1223 name = "_at_types_slash_node"; 1224 packageName = "@types/node"; 1225 + version = "16.7.10"; 1226 src = fetchurl { 1227 + url = "https://registry.npmjs.org/@types/node/-/node-16.7.10.tgz"; 1228 + sha512 = "S63Dlv4zIPb8x6MMTgDq5WWRJQe56iBEY0O3SOFA9JrRienkOVDXSXBjjJw6HTNQYSE2JI6GMCR6LVbIMHJVvA=="; 1229 }; 1230 }; 1231 + "@types/normalize-package-data-2.4.1" = { 1232 name = "_at_types_slash_normalize-package-data"; 1233 packageName = "@types/normalize-package-data"; 1234 + version = "2.4.1"; 1235 src = fetchurl { 1236 + url = "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz"; 1237 + sha512 = "Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw=="; 1238 }; 1239 }; 1240 "@types/parse-json-4.0.0" = { ··· 1246 sha512 = "//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="; 1247 }; 1248 }; 1249 + "@types/q-1.5.5" = { 1250 name = "_at_types_slash_q"; 1251 packageName = "@types/q"; 1252 + version = "1.5.5"; 1253 src = fetchurl { 1254 + url = "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz"; 1255 + sha512 = "L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ=="; 1256 }; 1257 }; 1258 + "@types/resolve-1.17.1" = { 1259 name = "_at_types_slash_resolve"; 1260 packageName = "@types/resolve"; 1261 + version = "1.17.1"; 1262 src = fetchurl { 1263 + url = "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz"; 1264 + sha512 = "yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw=="; 1265 }; 1266 }; 1267 "@types/source-list-map-0.1.2" = { ··· 1273 sha512 = "K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA=="; 1274 }; 1275 }; 1276 + "@types/tapable-1.0.8" = { 1277 name = "_at_types_slash_tapable"; 1278 packageName = "@types/tapable"; 1279 + version = "1.0.8"; 1280 src = fetchurl { 1281 + url = "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz"; 1282 + sha512 = "ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ=="; 1283 }; 1284 }; 1285 + "@types/trusted-types-2.0.2" = { 1286 + name = "_at_types_slash_trusted-types"; 1287 + packageName = "@types/trusted-types"; 1288 + version = "2.0.2"; 1289 + src = fetchurl { 1290 + url = "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz"; 1291 + sha512 = "F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg=="; 1292 + }; 1293 + }; 1294 + "@types/uglify-js-3.13.1" = { 1295 name = "_at_types_slash_uglify-js"; 1296 packageName = "@types/uglify-js"; 1297 + version = "3.13.1"; 1298 src = fetchurl { 1299 + url = "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.1.tgz"; 1300 + sha512 = "O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ=="; 1301 }; 1302 }; 1303 + "@types/unist-2.0.6" = { 1304 name = "_at_types_slash_unist"; 1305 packageName = "@types/unist"; 1306 + version = "2.0.6"; 1307 src = fetchurl { 1308 + url = "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz"; 1309 + sha512 = "PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ=="; 1310 }; 1311 }; 1312 "@types/vfile-3.0.2" = { ··· 1327 sha512 = "GpTIuDpb9u4zIO165fUy9+fXcULdD8HFRNli04GehoMVbeNq7D6OBnqSmg3lxZnC+UvgUhEWKxdKiwYUkGltIw=="; 1328 }; 1329 }; 1330 + "@types/webpack-4.41.30" = { 1331 name = "_at_types_slash_webpack"; 1332 packageName = "@types/webpack"; 1333 + version = "4.41.30"; 1334 src = fetchurl { 1335 + url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.30.tgz"; 1336 + sha512 = "GUHyY+pfuQ6haAfzu4S14F+R5iGRwN6b2FRNJY7U0NilmFAqbsOfK6j1HwuLBAqwRIT+pVdNDJGJ6e8rpp0KHA=="; 1337 }; 1338 }; 1339 + "@types/webpack-sources-3.2.0" = { 1340 name = "_at_types_slash_webpack-sources"; 1341 packageName = "@types/webpack-sources"; 1342 + version = "3.2.0"; 1343 src = fetchurl { 1344 + url = "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz"; 1345 + sha512 = "Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg=="; 1346 }; 1347 }; 1348 "@uupaa/dynamic-import-polyfill-1.0.2" = { ··· 1354 sha512 = "V3vzdXunOKKob1F+2ldv/4iGQoQA/iyqtW8PVlr1v16xCCKL831pGUubT+vs5/9wxTE/zBKEhjIjmmpK6nqw2A=="; 1355 }; 1356 }; 1357 + "@webassemblyjs/ast-1.11.1" = { 1358 name = "_at_webassemblyjs_slash_ast"; 1359 packageName = "@webassemblyjs/ast"; 1360 + version = "1.11.1"; 1361 src = fetchurl { 1362 + url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz"; 1363 + sha512 = "ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw=="; 1364 }; 1365 }; 1366 + "@webassemblyjs/floating-point-hex-parser-1.11.1" = { 1367 name = "_at_webassemblyjs_slash_floating-point-hex-parser"; 1368 packageName = "@webassemblyjs/floating-point-hex-parser"; 1369 + version = "1.11.1"; 1370 src = fetchurl { 1371 + url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz"; 1372 + sha512 = "iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ=="; 1373 }; 1374 }; 1375 + "@webassemblyjs/helper-api-error-1.11.1" = { 1376 name = "_at_webassemblyjs_slash_helper-api-error"; 1377 packageName = "@webassemblyjs/helper-api-error"; 1378 + version = "1.11.1"; 1379 src = fetchurl { 1380 + url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz"; 1381 + sha512 = "RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg=="; 1382 }; 1383 }; 1384 + "@webassemblyjs/helper-buffer-1.11.1" = { 1385 name = "_at_webassemblyjs_slash_helper-buffer"; 1386 packageName = "@webassemblyjs/helper-buffer"; 1387 + version = "1.11.1"; 1388 src = fetchurl { 1389 + url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz"; 1390 + sha512 = "gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA=="; 1391 }; 1392 }; 1393 + "@webassemblyjs/helper-numbers-1.11.1" = { 1394 name = "_at_webassemblyjs_slash_helper-numbers"; 1395 packageName = "@webassemblyjs/helper-numbers"; 1396 + version = "1.11.1"; 1397 src = fetchurl { 1398 + url = "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz"; 1399 + sha512 = "vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ=="; 1400 }; 1401 }; 1402 + "@webassemblyjs/helper-wasm-bytecode-1.11.1" = { 1403 name = "_at_webassemblyjs_slash_helper-wasm-bytecode"; 1404 packageName = "@webassemblyjs/helper-wasm-bytecode"; 1405 + version = "1.11.1"; 1406 src = fetchurl { 1407 + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz"; 1408 + sha512 = "PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q=="; 1409 }; 1410 }; 1411 + "@webassemblyjs/helper-wasm-section-1.11.1" = { 1412 name = "_at_webassemblyjs_slash_helper-wasm-section"; 1413 packageName = "@webassemblyjs/helper-wasm-section"; 1414 + version = "1.11.1"; 1415 src = fetchurl { 1416 + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz"; 1417 + sha512 = "10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg=="; 1418 }; 1419 }; 1420 + "@webassemblyjs/ieee754-1.11.1" = { 1421 name = "_at_webassemblyjs_slash_ieee754"; 1422 packageName = "@webassemblyjs/ieee754"; 1423 + version = "1.11.1"; 1424 src = fetchurl { 1425 + url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz"; 1426 + sha512 = "hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ=="; 1427 }; 1428 }; 1429 + "@webassemblyjs/leb128-1.11.1" = { 1430 name = "_at_webassemblyjs_slash_leb128"; 1431 packageName = "@webassemblyjs/leb128"; 1432 + version = "1.11.1"; 1433 src = fetchurl { 1434 + url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz"; 1435 + sha512 = "BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw=="; 1436 }; 1437 }; 1438 + "@webassemblyjs/utf8-1.11.1" = { 1439 name = "_at_webassemblyjs_slash_utf8"; 1440 packageName = "@webassemblyjs/utf8"; 1441 + version = "1.11.1"; 1442 src = fetchurl { 1443 + url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz"; 1444 + sha512 = "9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ=="; 1445 }; 1446 }; 1447 + "@webassemblyjs/wasm-edit-1.11.1" = { 1448 name = "_at_webassemblyjs_slash_wasm-edit"; 1449 packageName = "@webassemblyjs/wasm-edit"; 1450 + version = "1.11.1"; 1451 src = fetchurl { 1452 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz"; 1453 + sha512 = "g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA=="; 1454 }; 1455 }; 1456 + "@webassemblyjs/wasm-gen-1.11.1" = { 1457 name = "_at_webassemblyjs_slash_wasm-gen"; 1458 packageName = "@webassemblyjs/wasm-gen"; 1459 + version = "1.11.1"; 1460 src = fetchurl { 1461 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz"; 1462 + sha512 = "F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA=="; 1463 }; 1464 }; 1465 + "@webassemblyjs/wasm-opt-1.11.1" = { 1466 name = "_at_webassemblyjs_slash_wasm-opt"; 1467 packageName = "@webassemblyjs/wasm-opt"; 1468 + version = "1.11.1"; 1469 src = fetchurl { 1470 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz"; 1471 + sha512 = "VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw=="; 1472 }; 1473 }; 1474 + "@webassemblyjs/wasm-parser-1.11.1" = { 1475 name = "_at_webassemblyjs_slash_wasm-parser"; 1476 packageName = "@webassemblyjs/wasm-parser"; 1477 + version = "1.11.1"; 1478 src = fetchurl { 1479 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz"; 1480 + sha512 = "rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA=="; 1481 }; 1482 }; 1483 + "@webassemblyjs/wast-printer-1.11.1" = { 1484 name = "_at_webassemblyjs_slash_wast-printer"; 1485 packageName = "@webassemblyjs/wast-printer"; 1486 + version = "1.11.1"; 1487 src = fetchurl { 1488 + url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz"; 1489 + sha512 = "IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg=="; 1490 }; 1491 }; 1492 + "@webpack-cli/configtest-1.0.4" = { 1493 name = "_at_webpack-cli_slash_configtest"; 1494 packageName = "@webpack-cli/configtest"; 1495 + version = "1.0.4"; 1496 src = fetchurl { 1497 + url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.0.4.tgz"; 1498 + sha512 = "cs3XLy+UcxiP6bj0A6u7MLLuwdXJ1c3Dtc0RkKg+wiI1g/Ti1om8+/2hc2A2B60NbBNAbMgyBMHvyymWm/j4wQ=="; 1499 }; 1500 }; 1501 + "@webpack-cli/info-1.3.0" = { 1502 name = "_at_webpack-cli_slash_info"; 1503 packageName = "@webpack-cli/info"; 1504 + version = "1.3.0"; 1505 src = fetchurl { 1506 + url = "https://registry.npmjs.org/@webpack-cli/info/-/info-1.3.0.tgz"; 1507 + sha512 = "ASiVB3t9LOKHs5DyVUcxpraBXDOKubYu/ihHhU+t1UPpxsivg6Od2E2qU4gJCekfEddzRBzHhzA/Acyw/mlK/w=="; 1508 }; 1509 }; 1510 + "@webpack-cli/serve-1.5.2" = { 1511 name = "_at_webpack-cli_slash_serve"; 1512 packageName = "@webpack-cli/serve"; 1513 + version = "1.5.2"; 1514 src = fetchurl { 1515 + url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.5.2.tgz"; 1516 + sha512 = "vgJ5OLWadI8aKjDlOH3rb+dYyPd2GTZuQC/Tihjct6F9GpXGZINo3Y/IVuZVTM1eDQB+/AOsjPUWH/WySDaXvw=="; 1517 }; 1518 }; 1519 "@xtuc/ieee754-1.2.0" = { ··· 1561 sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 1562 }; 1563 }; 1564 + "acorn-8.4.1" = { 1565 name = "acorn"; 1566 packageName = "acorn"; 1567 + version = "8.4.1"; 1568 src = fetchurl { 1569 + url = "https://registry.npmjs.org/acorn/-/acorn-8.4.1.tgz"; 1570 + sha512 = "asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA=="; 1571 + }; 1572 + }; 1573 + "acorn-import-assertions-1.7.6" = { 1574 + name = "acorn-import-assertions"; 1575 + packageName = "acorn-import-assertions"; 1576 + version = "1.7.6"; 1577 + src = fetchurl { 1578 + url = "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.7.6.tgz"; 1579 + sha512 = "FlVvVFA1TX6l3lp8VjDnYYq7R1nyW6x3svAt4nDgrWQ9SBaSh9CnbwgSUTasgfNfOG5HlM1ehugCvM+hjo56LA=="; 1580 }; 1581 }; 1582 + "acorn-jsx-5.3.2" = { 1583 name = "acorn-jsx"; 1584 packageName = "acorn-jsx"; 1585 + version = "5.3.2"; 1586 src = fetchurl { 1587 + url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"; 1588 + sha512 = "rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="; 1589 }; 1590 }; 1591 "aggregate-error-3.1.0" = { ··· 1606 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 1607 }; 1608 }; 1609 + "ajv-8.6.2" = { 1610 name = "ajv"; 1611 packageName = "ajv"; 1612 + version = "8.6.2"; 1613 src = fetchurl { 1614 + url = "https://registry.npmjs.org/ajv/-/ajv-8.6.2.tgz"; 1615 + sha512 = "9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w=="; 1616 }; 1617 }; 1618 "ajv-errors-1.0.1" = { ··· 1876 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 1877 }; 1878 }; 1879 + "ast-metadata-inferer-0.7.0" = { 1880 name = "ast-metadata-inferer"; 1881 packageName = "ast-metadata-inferer"; 1882 + version = "0.7.0"; 1883 src = fetchurl { 1884 + url = "https://registry.npmjs.org/ast-metadata-inferer/-/ast-metadata-inferer-0.7.0.tgz"; 1885 + sha512 = "OkMLzd8xelb3gmnp6ToFvvsHLtS6CbagTkFQvQ+ZYFe3/AIl9iKikNR9G7pY3GfOR/2Xc222hwBjzI7HLkE76Q=="; 1886 }; 1887 }; 1888 "astral-regex-1.0.0" = { ··· 1930 sha512 = "csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="; 1931 }; 1932 }; 1933 + "at-least-node-1.0.0" = { 1934 + name = "at-least-node"; 1935 + packageName = "at-least-node"; 1936 + version = "1.0.0"; 1937 + src = fetchurl { 1938 + url = "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz"; 1939 + sha512 = "+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg=="; 1940 + }; 1941 + }; 1942 "atob-2.1.2" = { 1943 name = "atob"; 1944 packageName = "atob"; ··· 1955 src = fetchurl { 1956 url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz"; 1957 sha512 = "XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg=="; 1958 }; 1959 }; 1960 "babel-loader-8.2.2" = { ··· 1984 sha512 = "fqdut9hGeaAgdX3sbAY25TkqA7LPmZB+Hf1XI67AppvhUw1cBST58BPwl5kPwDZYIvmqRwnsVKM0lppsQAsxhg=="; 1985 }; 1986 }; 1987 + "babel-plugin-polyfill-corejs2-0.2.2" = { 1988 name = "babel-plugin-polyfill-corejs2"; 1989 packageName = "babel-plugin-polyfill-corejs2"; 1990 + version = "0.2.2"; 1991 src = fetchurl { 1992 + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz"; 1993 + sha512 = "kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ=="; 1994 }; 1995 }; 1996 + "babel-plugin-polyfill-corejs3-0.2.4" = { 1997 name = "babel-plugin-polyfill-corejs3"; 1998 packageName = "babel-plugin-polyfill-corejs3"; 1999 + version = "0.2.4"; 2000 src = fetchurl { 2001 + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.4.tgz"; 2002 + sha512 = "z3HnJE5TY/j4EFEa/qpQMSbcUJZ5JQi+3UFjXzn6pQCmIKc5Ug5j98SuYyH+m4xQnvKlMDIW4plLfgyVnd0IcQ=="; 2003 }; 2004 }; 2005 + "babel-plugin-polyfill-regenerator-0.2.2" = { 2006 name = "babel-plugin-polyfill-regenerator"; 2007 packageName = "babel-plugin-polyfill-regenerator"; 2008 + version = "0.2.2"; 2009 src = fetchurl { 2010 + url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz"; 2011 + sha512 = "Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg=="; 2012 }; 2013 }; 2014 "bail-1.0.5" = { ··· 2092 sha512 = "p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="; 2093 }; 2094 }; 2095 + "blurhash-1.1.4" = { 2096 name = "blurhash"; 2097 packageName = "blurhash"; 2098 + version = "1.1.4"; 2099 src = fetchurl { 2100 + url = "https://registry.npmjs.org/blurhash/-/blurhash-1.1.4.tgz"; 2101 + sha512 = "MXIPz6zwYUKayju+Uidf83KhH0vodZfeRl6Ich8Gu+KGl0JgKiFq9LsfqV7cVU5fKD/AotmduZqvOfrGKOfTaA=="; 2102 }; 2103 }; 2104 "body-parser-1.19.0" = { ··· 2164 sha1 = "0bd76704258be829b2398bb50e4b62d1a166b0b9"; 2165 }; 2166 }; 2167 + "browserslist-4.17.0" = { 2168 name = "browserslist"; 2169 packageName = "browserslist"; 2170 + version = "4.17.0"; 2171 src = fetchurl { 2172 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.17.0.tgz"; 2173 + sha512 = "g2BJ2a0nEYvEFQC208q8mVAhfNwpZ5Mu8BwgtCdZKO3qx98HChmeg448fPdUzld8aFmfLgVh7yymqV+q1lJZ5g=="; 2174 }; 2175 }; 2176 + "buffer-from-1.1.2" = { 2177 name = "buffer-from"; 2178 packageName = "buffer-from"; 2179 + version = "1.1.2"; 2180 src = fetchurl { 2181 + url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz"; 2182 + sha512 = "E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="; 2183 }; 2184 }; 2185 "buffer-indexof-1.1.1" = { ··· 2218 sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="; 2219 }; 2220 }; 2221 + "cacache-15.3.0" = { 2222 name = "cacache"; 2223 packageName = "cacache"; 2224 + version = "15.3.0"; 2225 src = fetchurl { 2226 + url = "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz"; 2227 + sha512 = "VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ=="; 2228 }; 2229 }; 2230 "cache-base-1.0.1" = { ··· 2317 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 2318 }; 2319 }; 2320 "camelcase-keys-4.2.0" = { 2321 name = "camelcase-keys"; 2322 packageName = "camelcase-keys"; ··· 2344 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 2345 }; 2346 }; 2347 + "caniuse-db-1.0.30001255" = { 2348 name = "caniuse-db"; 2349 packageName = "caniuse-db"; 2350 + version = "1.0.30001255"; 2351 src = fetchurl { 2352 + url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30001255.tgz"; 2353 + sha512 = "+FV7TQX0PoThDIwNvRpoUbhmKJzAB8ZGc8xDNTRltvpbL7d7Si+HTOn1NDdZh4yw2JUqnV6LOYsAcG20lH7gGg=="; 2354 }; 2355 }; 2356 + "caniuse-lite-1.0.30001255" = { 2357 name = "caniuse-lite"; 2358 packageName = "caniuse-lite"; 2359 + version = "1.0.30001255"; 2360 src = fetchurl { 2361 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001255.tgz"; 2362 + sha512 = "F+A3N9jTZL882f/fg/WWVnKSu6IOo3ueLz4zwaOPbPYHNmM/ZaDUyzyJwS1mZhX7Ex5jqTyW599Gdelh5PDYLQ=="; 2363 }; 2364 }; 2365 "ccount-1.1.0" = { ··· 2389 sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 2390 }; 2391 }; 2392 + "chalk-4.1.2" = { 2393 name = "chalk"; 2394 packageName = "chalk"; 2395 + version = "4.1.2"; 2396 src = fetchurl { 2397 + url = "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"; 2398 + sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; 2399 }; 2400 }; 2401 "character-entities-1.2.4" = { ··· 2443 sha512 = "ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg=="; 2444 }; 2445 }; 2446 + "chokidar-3.5.2" = { 2447 name = "chokidar"; 2448 packageName = "chokidar"; 2449 + version = "3.5.2"; 2450 src = fetchurl { 2451 + url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz"; 2452 + sha512 = "ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ=="; 2453 }; 2454 }; 2455 "chownr-2.0.0" = { ··· 2579 sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; 2580 }; 2581 }; 2582 + "color-3.2.1" = { 2583 name = "color"; 2584 packageName = "color"; 2585 + version = "3.2.1"; 2586 src = fetchurl { 2587 + url = "https://registry.npmjs.org/color/-/color-3.2.1.tgz"; 2588 + sha512 = "aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA=="; 2589 }; 2590 }; 2591 "color-convert-1.9.3" = { ··· 2624 sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 2625 }; 2626 }; 2627 + "color-string-1.6.0" = { 2628 name = "color-string"; 2629 packageName = "color-string"; 2630 + version = "1.6.0"; 2631 src = fetchurl { 2632 + url = "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz"; 2633 + sha512 = "c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA=="; 2634 }; 2635 }; 2636 + "colorette-1.3.0" = { 2637 name = "colorette"; 2638 packageName = "colorette"; 2639 + version = "1.3.0"; 2640 src = fetchurl { 2641 + url = "https://registry.npmjs.org/colorette/-/colorette-1.3.0.tgz"; 2642 + sha512 = "ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w=="; 2643 }; 2644 }; 2645 "commander-2.20.3" = { ··· 2739 src = fetchurl { 2740 url = "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz"; 2741 sha512 = "e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg=="; 2742 }; 2743 }; 2744 "content-disposition-0.5.3" = { ··· 2759 sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; 2760 }; 2761 }; 2762 + "convert-source-map-1.8.0" = { 2763 name = "convert-source-map"; 2764 packageName = "convert-source-map"; 2765 + version = "1.8.0"; 2766 src = fetchurl { 2767 + url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz"; 2768 + sha512 = "+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="; 2769 }; 2770 }; 2771 "cookie-0.4.0" = { ··· 2804 sha512 = "MXyPCjdPVx5iiWyl40Va3JGh27bKzOTNY3NjUTrosD2q7dR/cLD0013uqJ3BpFbUjyONINjb6qI7nDIJujrMbA=="; 2805 }; 2806 }; 2807 + "core-js-3.17.2" = { 2808 name = "core-js"; 2809 packageName = "core-js"; 2810 + version = "3.17.2"; 2811 src = fetchurl { 2812 + url = "https://registry.npmjs.org/core-js/-/core-js-3.17.2.tgz"; 2813 + sha512 = "XkbXqhcXeMHPRk2ItS+zQYliAMilea2euoMsnpRRdDad6b2VY6CQQcwz1K8AnWesfw4p165RzY0bTnr3UrbYiA=="; 2814 }; 2815 }; 2816 + "core-js-compat-3.17.2" = { 2817 name = "core-js-compat"; 2818 packageName = "core-js-compat"; 2819 + version = "3.17.2"; 2820 src = fetchurl { 2821 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.17.2.tgz"; 2822 + sha512 = "lHnt7A1Oqplebl5i0MrQyFv/yyEzr9p29OjlkcsFRDDgHwwQyVckfRGJ790qzXhkwM8ba4SFHHa2sO+T5f1zGg=="; 2823 }; 2824 }; 2825 + "core-util-is-1.0.3" = { 2826 name = "core-util-is"; 2827 packageName = "core-util-is"; 2828 + version = "1.0.3"; 2829 src = fetchurl { 2830 + url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"; 2831 + sha512 = "ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="; 2832 }; 2833 }; 2834 "cosmiconfig-5.2.1" = { ··· 2840 sha512 = "H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA=="; 2841 }; 2842 }; 2843 + "cosmiconfig-7.0.1" = { 2844 name = "cosmiconfig"; 2845 packageName = "cosmiconfig"; 2846 + version = "7.0.1"; 2847 src = fetchurl { 2848 + url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz"; 2849 + sha512 = "a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ=="; 2850 }; 2851 }; 2852 "cross-spawn-6.0.5" = { ··· 2867 sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="; 2868 }; 2869 }; 2870 + "crypto-random-string-2.0.0" = { 2871 name = "crypto-random-string"; 2872 packageName = "crypto-random-string"; 2873 + version = "2.0.0"; 2874 src = fetchurl { 2875 + url = "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz"; 2876 + sha512 = "v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="; 2877 }; 2878 }; 2879 "css-blank-pseudo-0.1.4" = { ··· 2912 sha512 = "Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ=="; 2913 }; 2914 }; 2915 + "css-loader-5.2.7" = { 2916 name = "css-loader"; 2917 packageName = "css-loader"; 2918 + version = "5.2.7"; 2919 src = fetchurl { 2920 + url = "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz"; 2921 + sha512 = "Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg=="; 2922 }; 2923 }; 2924 "css-prefers-color-scheme-3.1.1" = { ··· 2939 sha512 = "Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ=="; 2940 }; 2941 }; 2942 + "css-select-4.1.3" = { 2943 + name = "css-select"; 2944 + packageName = "css-select"; 2945 + version = "4.1.3"; 2946 + src = fetchurl { 2947 + url = "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz"; 2948 + sha512 = "gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA=="; 2949 + }; 2950 + }; 2951 "css-select-base-adapter-0.1.1" = { 2952 name = "css-select-base-adapter"; 2953 packageName = "css-select-base-adapter"; ··· 2982 src = fetchurl { 2983 url = "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz"; 2984 sha512 = "ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ=="; 2985 + }; 2986 + }; 2987 + "css-what-5.0.1" = { 2988 + name = "css-what"; 2989 + packageName = "css-what"; 2990 + version = "5.0.1"; 2991 + src = fetchurl { 2992 + url = "https://registry.npmjs.org/css-what/-/css-what-5.0.1.tgz"; 2993 + sha512 = "FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg=="; 2994 }; 2995 }; 2996 "cssdb-4.4.0" = { ··· 3101 sha512 = "m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA=="; 3102 }; 3103 }; 3104 + "date-fns-2.23.0" = { 3105 name = "date-fns"; 3106 packageName = "date-fns"; 3107 + version = "2.23.0"; 3108 src = fetchurl { 3109 + url = "https://registry.npmjs.org/date-fns/-/date-fns-2.23.0.tgz"; 3110 + sha512 = "5ycpauovVyAk0kXNZz6ZoB9AYMZB4DObse7P3BPWmyEjXNORTI8EJ6X0uaSAq4sCHzM1uajzrkr6HnsLQpxGXA=="; 3111 }; 3112 }; 3113 "debug-2.6.9" = { ··· 3173 sha512 = "yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g=="; 3174 }; 3175 }; 3176 + "deep-is-0.1.4" = { 3177 name = "deep-is"; 3178 packageName = "deep-is"; 3179 + version = "0.1.4"; 3180 src = fetchurl { 3181 + url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"; 3182 + sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="; 3183 + }; 3184 + }; 3185 + "deepmerge-4.2.2" = { 3186 + name = "deepmerge"; 3187 + packageName = "deepmerge"; 3188 + version = "4.2.2"; 3189 + src = fetchurl { 3190 + url = "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz"; 3191 + sha512 = "FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="; 3192 }; 3193 }; 3194 "default-gateway-4.2.0" = { ··· 3263 sha1 = "978857442c44749e4206613e37946205826abd80"; 3264 }; 3265 }; 3266 + "detect-node-2.1.0" = { 3267 name = "detect-node"; 3268 packageName = "detect-node"; 3269 + version = "2.1.0"; 3270 src = fetchurl { 3271 + url = "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz"; 3272 + sha512 = "T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g=="; 3273 }; 3274 }; 3275 "dir-glob-2.2.2" = { ··· 3299 sha1 = "b39e7f1da6eb0a75ba9c17324b34753c47e0654d"; 3300 }; 3301 }; 3302 + "dns-packet-1.3.4" = { 3303 name = "dns-packet"; 3304 packageName = "dns-packet"; 3305 + version = "1.3.4"; 3306 src = fetchurl { 3307 + url = "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz"; 3308 + sha512 = "BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA=="; 3309 }; 3310 }; 3311 "dns-txt-2.0.2" = { ··· 3317 sha1 = "b91d806f5d27188e4ab3e7d107d881a1cc4642b6"; 3318 }; 3319 }; 3320 + "doctrine-2.1.0" = { 3321 name = "doctrine"; 3322 packageName = "doctrine"; 3323 + version = "2.1.0"; 3324 src = fetchurl { 3325 + url = "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz"; 3326 + sha512 = "35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="; 3327 }; 3328 }; 3329 "doctrine-3.0.0" = { ··· 3353 sha512 = "2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g=="; 3354 }; 3355 }; 3356 + "dom-serializer-1.3.2" = { 3357 name = "dom-serializer"; 3358 packageName = "dom-serializer"; 3359 + version = "1.3.2"; 3360 src = fetchurl { 3361 + url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz"; 3362 + sha512 = "5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig=="; 3363 }; 3364 }; 3365 "dom7-3.0.0" = { ··· 3407 sha512 = "J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA=="; 3408 }; 3409 }; 3410 + "domhandler-4.2.2" = { 3411 name = "domhandler"; 3412 packageName = "domhandler"; 3413 + version = "4.2.2"; 3414 src = fetchurl { 3415 + url = "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz"; 3416 + sha512 = "PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w=="; 3417 }; 3418 }; 3419 "domutils-1.7.0" = { ··· 3425 sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg=="; 3426 }; 3427 }; 3428 + "domutils-2.8.0" = { 3429 name = "domutils"; 3430 packageName = "domutils"; 3431 + version = "2.8.0"; 3432 src = fetchurl { 3433 + url = "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz"; 3434 + sha512 = "w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A=="; 3435 }; 3436 }; 3437 "dot-case-3.0.4" = { ··· 3470 sha512 = "7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA=="; 3471 }; 3472 }; 3473 + "electron-to-chromium-1.3.830" = { 3474 name = "electron-to-chromium"; 3475 packageName = "electron-to-chromium"; 3476 + version = "1.3.830"; 3477 src = fetchurl { 3478 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.830.tgz"; 3479 + sha512 = "gBN7wNAxV5vl1430dG+XRcQhD4pIeYeak6p6rjdCtlz5wWNwDad8jwvphe5oi1chL5MV6RNRikfffBBiFuj+rQ=="; 3480 }; 3481 }; 3482 "emoji-regex-7.0.3" = { ··· 3524 sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; 3525 }; 3526 }; 3527 + "enhanced-resolve-5.8.2" = { 3528 name = "enhanced-resolve"; 3529 packageName = "enhanced-resolve"; 3530 + version = "5.8.2"; 3531 src = fetchurl { 3532 + url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.2.tgz"; 3533 + sha512 = "F27oB3WuHDzvR2DOGNTaYy0D5o0cnrv8TeI482VM4kYgQd/FT9lUQwuNsJ0oOHtBUq7eiW5ytqzp7nBFknL+GA=="; 3534 }; 3535 }; 3536 "enquirer-2.3.6" = { ··· 3596 sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 3597 }; 3598 }; 3599 + "es-abstract-1.18.5" = { 3600 name = "es-abstract"; 3601 packageName = "es-abstract"; 3602 + version = "1.18.5"; 3603 src = fetchurl { 3604 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.5.tgz"; 3605 + sha512 = "DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA=="; 3606 }; 3607 }; 3608 + "es-module-lexer-0.7.1" = { 3609 name = "es-module-lexer"; 3610 packageName = "es-module-lexer"; 3611 + version = "0.7.1"; 3612 src = fetchurl { 3613 + url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.7.1.tgz"; 3614 + sha512 = "MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw=="; 3615 }; 3616 }; 3617 "es-to-primitive-1.2.1" = { ··· 3686 sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 3687 }; 3688 }; 3689 + "escape-string-regexp-4.0.0" = { 3690 + name = "escape-string-regexp"; 3691 + packageName = "escape-string-regexp"; 3692 + version = "4.0.0"; 3693 + src = fetchurl { 3694 + url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; 3695 + sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; 3696 + }; 3697 + }; 3698 + "eslint-7.32.0" = { 3699 name = "eslint"; 3700 packageName = "eslint"; 3701 + version = "7.32.0"; 3702 src = fetchurl { 3703 + url = "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz"; 3704 + sha512 = "VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA=="; 3705 }; 3706 }; 3707 + "eslint-import-resolver-node-0.3.6" = { 3708 name = "eslint-import-resolver-node"; 3709 packageName = "eslint-import-resolver-node"; 3710 + version = "0.3.6"; 3711 src = fetchurl { 3712 + url = "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz"; 3713 + sha512 = "0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw=="; 3714 }; 3715 }; 3716 + "eslint-module-utils-2.6.2" = { 3717 name = "eslint-module-utils"; 3718 packageName = "eslint-module-utils"; 3719 + version = "2.6.2"; 3720 src = fetchurl { 3721 + url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz"; 3722 + sha512 = "QG8pcgThYOuqxupd06oYTZoNOGaUdTY1PqK+oS6ElF6vs4pBdk/aYxFVQQXzcrAqp9m7cl7lb2ubazX+g16k2Q=="; 3723 }; 3724 }; 3725 + "eslint-plugin-compat-3.13.0" = { 3726 name = "eslint-plugin-compat"; 3727 packageName = "eslint-plugin-compat"; 3728 + version = "3.13.0"; 3729 src = fetchurl { 3730 + url = "https://registry.npmjs.org/eslint-plugin-compat/-/eslint-plugin-compat-3.13.0.tgz"; 3731 + sha512 = "cv8IYMuTXm7PIjMVDN2y4k/KVnKZmoNGHNq27/9dLstOLydKblieIv+oe2BN2WthuXnFNhaNvv3N1Bvl4dbIGA=="; 3732 }; 3733 }; 3734 "eslint-plugin-eslint-comments-3.2.0" = { ··· 3740 sha512 = "0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ=="; 3741 }; 3742 }; 3743 + "eslint-plugin-import-2.24.2" = { 3744 name = "eslint-plugin-import"; 3745 packageName = "eslint-plugin-import"; 3746 + version = "2.24.2"; 3747 src = fetchurl { 3748 + url = "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.24.2.tgz"; 3749 + sha512 = "hNVtyhiEtZmpsabL4neEj+6M5DCLgpYyG9nzJY8lZQeQXEn5UPW1DpUdsMHMXsq98dbNm7nt1w9ZMSVpfJdi8Q=="; 3750 }; 3751 }; 3752 "eslint-plugin-promise-4.3.1" = { ··· 3857 sha512 = "BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="; 3858 }; 3859 }; 3860 "estree-walker-1.0.1" = { 3861 name = "estree-walker"; 3862 packageName = "estree-walker"; ··· 3929 sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA=="; 3930 }; 3931 }; 3932 + "execa-5.1.1" = { 3933 name = "execa"; 3934 packageName = "execa"; 3935 + version = "5.1.1"; 3936 src = fetchurl { 3937 + url = "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz"; 3938 + sha512 = "8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="; 3939 }; 3940 }; 3941 "execall-1.0.0" = { ··· 3983 sha512 = "mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g=="; 3984 }; 3985 }; 3986 + "ext-1.5.0" = { 3987 name = "ext"; 3988 packageName = "ext"; 3989 + version = "1.5.0"; 3990 src = fetchurl { 3991 + url = "https://registry.npmjs.org/ext/-/ext-1.5.0.tgz"; 3992 + sha512 = "+ONcYoWj/SoQwUofMr94aGu05Ou4FepKi7N7b+O8T4jVfyIsZQV1/xeS8jpaBzF0csAk0KLXoHCxU7cKYZjo1Q=="; 3993 }; 3994 }; 3995 "extend-3.0.2" = { ··· 4046 sha512 = "g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw=="; 4047 }; 4048 }; 4049 + "fast-glob-3.2.7" = { 4050 name = "fast-glob"; 4051 packageName = "fast-glob"; 4052 + version = "3.2.7"; 4053 src = fetchurl { 4054 + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz"; 4055 + sha512 = "rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q=="; 4056 }; 4057 }; 4058 "fast-json-stable-stringify-2.1.0" = { ··· 4091 sha512 = "On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow=="; 4092 }; 4093 }; 4094 + "fastq-1.12.0" = { 4095 name = "fastq"; 4096 packageName = "fastq"; 4097 + version = "1.12.0"; 4098 src = fetchurl { 4099 + url = "https://registry.npmjs.org/fastq/-/fastq-1.12.0.tgz"; 4100 + sha512 = "VNX0QkHK3RsXVKr9KrlUv/FoTa0NdbYoHHl7uXHv2rzyHSlxjdNAKug2twd9luJxpcyNeAgf5iPPMutJO67Dfg=="; 4101 }; 4102 }; 4103 + "faye-websocket-0.11.4" = { 4104 name = "faye-websocket"; 4105 packageName = "faye-websocket"; 4106 + version = "0.11.4"; 4107 src = fetchurl { 4108 + url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz"; 4109 + sha512 = "CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g=="; 4110 }; 4111 }; 4112 "file-entry-cache-4.0.0" = { ··· 4172 sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="; 4173 }; 4174 }; 4175 + "find-cache-dir-3.3.2" = { 4176 name = "find-cache-dir"; 4177 packageName = "find-cache-dir"; 4178 + version = "3.3.2"; 4179 src = fetchurl { 4180 + url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz"; 4181 + sha512 = "wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig=="; 4182 }; 4183 }; 4184 "find-up-2.1.0" = { ··· 4208 sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; 4209 }; 4210 }; 4211 + "find-up-5.0.0" = { 4212 + name = "find-up"; 4213 + packageName = "find-up"; 4214 + version = "5.0.0"; 4215 + src = fetchurl { 4216 + url = "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"; 4217 + sha512 = "78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="; 4218 + }; 4219 + }; 4220 "flat-cache-2.0.1" = { 4221 name = "flat-cache"; 4222 packageName = "flat-cache"; ··· 4244 sha512 = "r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="; 4245 }; 4246 }; 4247 + "flatted-3.2.2" = { 4248 name = "flatted"; 4249 packageName = "flatted"; 4250 + version = "3.2.2"; 4251 src = fetchurl { 4252 + url = "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz"; 4253 + sha512 = "JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA=="; 4254 }; 4255 }; 4256 "flatten-1.0.3" = { ··· 4262 sha512 = "dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg=="; 4263 }; 4264 }; 4265 + "flv.js-1.6.1" = { 4266 name = "flv.js"; 4267 packageName = "flv.js"; 4268 + version = "1.6.1"; 4269 src = fetchurl { 4270 + url = "https://registry.npmjs.org/flv.js/-/flv.js-1.6.1.tgz"; 4271 + sha512 = "6/ffUPbFaYf7QsdcZC43PQmEsi9Fwlp89Oq0bz8gNlj0eSMUhyHFxESxuLNSFgIEle+ChxqoF7kL2pL7xdam2A=="; 4272 }; 4273 }; 4274 + "follow-redirects-1.14.3" = { 4275 name = "follow-redirects"; 4276 packageName = "follow-redirects"; 4277 + version = "1.14.3"; 4278 src = fetchurl { 4279 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.3.tgz"; 4280 + sha512 = "3MkHxknWMUtb23apkgz/83fDoe+y+qr0TdgacGIA7bew+QLBo3vdgEN2xEsuXNivpFy4CyDhBBZnNZOtalmenw=="; 4281 }; 4282 }; 4283 "fontsource-noto-sans-3.1.5" = { ··· 4334 sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80"; 4335 }; 4336 }; 4337 + "forwarded-0.2.0" = { 4338 name = "forwarded"; 4339 packageName = "forwarded"; 4340 + version = "0.2.0"; 4341 src = fetchurl { 4342 + url = "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz"; 4343 + sha512 = "buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="; 4344 }; 4345 }; 4346 "fragment-cache-0.2.1" = { ··· 4361 sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7"; 4362 }; 4363 }; 4364 + "fs-extra-9.1.0" = { 4365 name = "fs-extra"; 4366 packageName = "fs-extra"; 4367 + version = "9.1.0"; 4368 src = fetchurl { 4369 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz"; 4370 + sha512 = "hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ=="; 4371 }; 4372 }; 4373 "fs-minipass-2.1.0" = { ··· 4514 sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; 4515 }; 4516 }; 4517 + "glob-7.1.7" = { 4518 name = "glob"; 4519 packageName = "glob"; 4520 + version = "7.1.7"; 4521 src = fetchurl { 4522 + url = "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz"; 4523 + sha512 = "OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ=="; 4524 }; 4525 }; 4526 "glob-parent-3.1.0" = { ··· 4586 sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 4587 }; 4588 }; 4589 + "globals-13.11.0" = { 4590 name = "globals"; 4591 packageName = "globals"; 4592 + version = "13.11.0"; 4593 src = fetchurl { 4594 + url = "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz"; 4595 + sha512 = "08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g=="; 4596 }; 4597 }; 4598 + "globby-11.0.4" = { 4599 name = "globby"; 4600 packageName = "globby"; 4601 + version = "11.0.4"; 4602 src = fetchurl { 4603 + url = "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz"; 4604 + sha512 = "9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg=="; 4605 }; 4606 }; 4607 "globby-6.1.0" = { ··· 4640 sha512 = "otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ=="; 4641 }; 4642 }; 4643 + "graceful-fs-4.2.8" = { 4644 name = "graceful-fs"; 4645 packageName = "graceful-fs"; 4646 + version = "4.2.8"; 4647 src = fetchurl { 4648 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz"; 4649 + sha512 = "qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg=="; 4650 }; 4651 }; 4652 "handle-thing-2.0.1" = { ··· 4730 sha512 = "chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="; 4731 }; 4732 }; 4733 + "has-tostringtag-1.0.0" = { 4734 + name = "has-tostringtag"; 4735 + packageName = "has-tostringtag"; 4736 + version = "1.0.0"; 4737 + src = fetchurl { 4738 + url = "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"; 4739 + sha512 = "kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ=="; 4740 + }; 4741 + }; 4742 "has-value-0.3.1" = { 4743 name = "has-value"; 4744 packageName = "has-value"; ··· 4928 sha512 = "4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q=="; 4929 }; 4930 }; 4931 + "htmlparser2-6.1.0" = { 4932 + name = "htmlparser2"; 4933 + packageName = "htmlparser2"; 4934 + version = "6.1.0"; 4935 + src = fetchurl { 4936 + url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz"; 4937 + sha512 = "gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A=="; 4938 + }; 4939 + }; 4940 "http-deceiver-1.2.7" = { 4941 name = "http-deceiver"; 4942 packageName = "http-deceiver"; ··· 5009 sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 5010 }; 5011 }; 5012 + "iconv-lite-0.6.3" = { 5013 name = "iconv-lite"; 5014 packageName = "iconv-lite"; 5015 + version = "0.6.3"; 5016 src = fetchurl { 5017 + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz"; 5018 + sha512 = "4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="; 5019 }; 5020 }; 5021 "icss-utils-5.1.0" = { ··· 5025 src = fetchurl { 5026 url = "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz"; 5027 sha512 = "soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA=="; 5028 + }; 5029 + }; 5030 + "idb-6.1.3" = { 5031 + name = "idb"; 5032 + packageName = "idb"; 5033 + version = "6.1.3"; 5034 + src = fetchurl { 5035 + url = "https://registry.npmjs.org/idb/-/idb-6.1.3.tgz"; 5036 + sha512 = "oIRDpVcs5KXpI1hRnTJUwkY63RB/7iqu9nSNuzXN8TLHjs7oO20IoPFbBTsqxIL5IjzIUDi+FXlVcK4zm26J8A=="; 5037 }; 5038 }; 5039 "ignore-4.0.6" = { ··· 5225 sha512 = "S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg=="; 5226 }; 5227 }; 5228 + "internal-slot-1.0.3" = { 5229 + name = "internal-slot"; 5230 + packageName = "internal-slot"; 5231 + version = "1.0.3"; 5232 + src = fetchurl { 5233 + url = "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz"; 5234 + sha512 = "O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA=="; 5235 + }; 5236 + }; 5237 "interpret-2.2.0" = { 5238 name = "interpret"; 5239 packageName = "interpret"; ··· 5351 sha512 = "UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A=="; 5352 }; 5353 }; 5354 + "is-arguments-1.1.1" = { 5355 name = "is-arguments"; 5356 packageName = "is-arguments"; 5357 + version = "1.1.1"; 5358 src = fetchurl { 5359 + url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz"; 5360 + sha512 = "8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA=="; 5361 }; 5362 }; 5363 "is-arrayish-0.2.1" = { ··· 5378 sha512 = "eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="; 5379 }; 5380 }; 5381 + "is-bigint-1.0.4" = { 5382 name = "is-bigint"; 5383 packageName = "is-bigint"; 5384 + version = "1.0.4"; 5385 src = fetchurl { 5386 + url = "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz"; 5387 + sha512 = "zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg=="; 5388 }; 5389 }; 5390 "is-binary-path-1.0.1" = { ··· 5405 sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 5406 }; 5407 }; 5408 + "is-boolean-object-1.1.2" = { 5409 name = "is-boolean-object"; 5410 packageName = "is-boolean-object"; 5411 + version = "1.1.2"; 5412 src = fetchurl { 5413 + url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz"; 5414 + sha512 = "gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA=="; 5415 }; 5416 }; 5417 "is-buffer-1.1.6" = { ··· 5432 sha512 = "i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ=="; 5433 }; 5434 }; 5435 + "is-callable-1.2.4" = { 5436 name = "is-callable"; 5437 packageName = "is-callable"; 5438 + version = "1.2.4"; 5439 src = fetchurl { 5440 + url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz"; 5441 + sha512 = "nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w=="; 5442 }; 5443 }; 5444 "is-color-stop-1.1.0" = { ··· 5450 sha1 = "cfff471aee4dd5c9e158598fbe12967b5cdad345"; 5451 }; 5452 }; 5453 + "is-core-module-2.6.0" = { 5454 name = "is-core-module"; 5455 packageName = "is-core-module"; 5456 + version = "2.6.0"; 5457 src = fetchurl { 5458 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.6.0.tgz"; 5459 + sha512 = "wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ=="; 5460 }; 5461 }; 5462 "is-data-descriptor-0.1.4" = { ··· 5477 sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ=="; 5478 }; 5479 }; 5480 + "is-date-object-1.0.5" = { 5481 name = "is-date-object"; 5482 packageName = "is-date-object"; 5483 + version = "1.0.5"; 5484 src = fetchurl { 5485 + url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz"; 5486 + sha512 = "9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ=="; 5487 }; 5488 }; 5489 "is-decimal-1.0.4" = { ··· 5630 sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 5631 }; 5632 }; 5633 + "is-number-object-1.0.6" = { 5634 name = "is-number-object"; 5635 packageName = "is-number-object"; 5636 + version = "1.0.6"; 5637 src = fetchurl { 5638 + url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz"; 5639 + sha512 = "bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g=="; 5640 }; 5641 }; 5642 "is-obj-1.0.1" = { ··· 5711 sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="; 5712 }; 5713 }; 5714 + "is-regex-1.1.4" = { 5715 name = "is-regex"; 5716 packageName = "is-regex"; 5717 + version = "1.1.4"; 5718 src = fetchurl { 5719 + url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"; 5720 + sha512 = "kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="; 5721 }; 5722 }; 5723 "is-regexp-1.0.0" = { ··· 5756 sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; 5757 }; 5758 }; 5759 + "is-stream-2.0.1" = { 5760 name = "is-stream"; 5761 packageName = "is-stream"; 5762 + version = "2.0.1"; 5763 src = fetchurl { 5764 + url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"; 5765 + sha512 = "hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="; 5766 }; 5767 }; 5768 + "is-string-1.0.7" = { 5769 name = "is-string"; 5770 packageName = "is-string"; 5771 + version = "1.0.7"; 5772 src = fetchurl { 5773 + url = "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"; 5774 + sha512 = "tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="; 5775 }; 5776 }; 5777 "is-supported-regexp-flag-1.0.1" = { ··· 5783 sha512 = "3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ=="; 5784 }; 5785 }; 5786 + "is-symbol-1.0.4" = { 5787 name = "is-symbol"; 5788 packageName = "is-symbol"; 5789 + version = "1.0.4"; 5790 src = fetchurl { 5791 + url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"; 5792 + sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="; 5793 }; 5794 }; 5795 "is-typedarray-1.0.0" = { ··· 5900 sha512 = "fwAF1G89amm3uO2Yw0E26fW5X6JoyRUnOdBEeuSN04/NpdKKVHD4u53dgqF0jHzXNuKdn5eh0AuV37cMKzBanA=="; 5901 }; 5902 }; 5903 + "jest-worker-26.6.2" = { 5904 name = "jest-worker"; 5905 packageName = "jest-worker"; 5906 + version = "26.6.2"; 5907 src = fetchurl { 5908 + url = "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz"; 5909 + sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ=="; 5910 }; 5911 }; 5912 + "jest-worker-27.1.0" = { 5913 name = "jest-worker"; 5914 packageName = "jest-worker"; 5915 + version = "27.1.0"; 5916 src = fetchurl { 5917 + url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.1.0.tgz"; 5918 + sha512 = "mO4PHb2QWLn9yRXGp7rkvXLAYuxwhq1ZYUo0LoDhg8wqvv4QizP1ZWEJOeolgbEgAWZLIEU0wsku8J+lGWfBhg=="; 5919 }; 5920 }; 5921 "jquery-3.6.0" = { ··· 5990 sha512 = "xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="; 5991 }; 5992 }; 5993 + "json-schema-0.3.0" = { 5994 + name = "json-schema"; 5995 + packageName = "json-schema"; 5996 + version = "0.3.0"; 5997 + src = fetchurl { 5998 + url = "https://registry.npmjs.org/json-schema/-/json-schema-0.3.0.tgz"; 5999 + sha512 = "TYfxx36xfl52Rf1LU9HyWSLGPdYLL+SQ8/E/0yVyKG8wCCDaSrhPap0vEdlsZWRaS6tnKKLPGiEJGiREVC8kxQ=="; 6000 + }; 6001 + }; 6002 "json-schema-traverse-0.4.1" = { 6003 name = "json-schema-traverse"; 6004 packageName = "json-schema-traverse"; ··· 6053 sha512 = "f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA=="; 6054 }; 6055 }; 6056 + "jsonfile-6.1.0" = { 6057 name = "jsonfile"; 6058 packageName = "jsonfile"; 6059 + version = "6.1.0"; 6060 + src = fetchurl { 6061 + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz"; 6062 + sha512 = "5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ=="; 6063 + }; 6064 + }; 6065 + "jsonpointer-4.1.0" = { 6066 + name = "jsonpointer"; 6067 + packageName = "jsonpointer"; 6068 + version = "4.1.0"; 6069 src = fetchurl { 6070 + url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.1.0.tgz"; 6071 + sha512 = "CXcRvMyTlnR53xMcKnuMzfCA5i/nfblTnnr74CZb6C4vG39eu6w51t7nKmU5MfLfbTgGItliNyjO/ciNPDqClg=="; 6072 }; 6073 }; 6074 + "jstree-3.3.12" = { 6075 name = "jstree"; 6076 packageName = "jstree"; 6077 + version = "3.3.12"; 6078 src = fetchurl { 6079 + url = "https://registry.npmjs.org/jstree/-/jstree-3.3.12.tgz"; 6080 + sha512 = "vHNLWkUr02ZYH7RcIckvhtLUtneWCVEtIKpIp2G9WtRh01ITv18EoNtNQcFG3ozM+oK6wp1Z300gSLXNQWCqGA=="; 6081 }; 6082 }; 6083 + "jszip-3.7.1" = { 6084 name = "jszip"; 6085 packageName = "jszip"; 6086 + version = "3.7.1"; 6087 src = fetchurl { 6088 + url = "https://registry.npmjs.org/jszip/-/jszip-3.7.1.tgz"; 6089 + sha512 = "ghL0tz1XG9ZEmRMcEN2vt7xabrDdqHHeykgARpmZ0BiIctWxM47Vt63ZO2dnp4QYt/xJVLLy5Zv1l/xRdh2byg=="; 6090 }; 6091 }; 6092 "killable-1.0.1" = { ··· 6170 sha1 = "c2e7a9f772094dee9d34202ae8acce4687875580"; 6171 }; 6172 }; 6173 + "leven-3.1.0" = { 6174 + name = "leven"; 6175 + packageName = "leven"; 6176 + version = "3.1.0"; 6177 + src = fetchurl { 6178 + url = "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz"; 6179 + sha512 = "qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A=="; 6180 + }; 6181 + }; 6182 "levn-0.4.1" = { 6183 name = "levn"; 6184 packageName = "levn"; ··· 6234 sha1 = "1c00c743b433cd0a4e80758f7b64a57440d9ff00"; 6235 }; 6236 }; 6237 "load-json-file-4.0.0" = { 6238 name = "load-json-file"; 6239 packageName = "load-json-file"; ··· 6270 sha512 = "rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ=="; 6271 }; 6272 }; 6273 + "localforage-1.10.0" = { 6274 name = "localforage"; 6275 packageName = "localforage"; 6276 + version = "1.10.0"; 6277 src = fetchurl { 6278 + url = "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz"; 6279 + sha512 = "14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg=="; 6280 }; 6281 }; 6282 "locate-path-2.0.0" = { ··· 6306 sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="; 6307 }; 6308 }; 6309 + "locate-path-6.0.0" = { 6310 + name = "locate-path"; 6311 + packageName = "locate-path"; 6312 + version = "6.0.0"; 6313 + src = fetchurl { 6314 + url = "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"; 6315 + sha512 = "iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="; 6316 + }; 6317 + }; 6318 "lodash-4.17.21" = { 6319 name = "lodash"; 6320 packageName = "lodash"; ··· 6324 sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; 6325 }; 6326 }; 6327 "lodash.clonedeep-4.5.0" = { 6328 name = "lodash.clonedeep"; 6329 packageName = "lodash.clonedeep"; ··· 6342 sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af"; 6343 }; 6344 }; 6345 "lodash.memoize-4.1.2" = { 6346 name = "lodash.memoize"; 6347 packageName = "lodash.memoize"; ··· 6351 sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe"; 6352 }; 6353 }; 6354 + "lodash.merge-4.6.2" = { 6355 + name = "lodash.merge"; 6356 + packageName = "lodash.merge"; 6357 + version = "4.6.2"; 6358 src = fetchurl { 6359 + url = "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"; 6360 + sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; 6361 }; 6362 }; 6363 + "lodash.sortby-4.7.0" = { 6364 + name = "lodash.sortby"; 6365 + packageName = "lodash.sortby"; 6366 + version = "4.7.0"; 6367 src = fetchurl { 6368 + url = "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz"; 6369 + sha1 = "edd14c824e2cc9c1e0b0a1b42bb5210516a42438"; 6370 }; 6371 }; 6372 "lodash.truncate-4.4.2" = { ··· 6738 sha512 = "tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg=="; 6739 }; 6740 }; 6741 + "mime-db-1.49.0" = { 6742 name = "mime-db"; 6743 packageName = "mime-db"; 6744 + version = "1.49.0"; 6745 src = fetchurl { 6746 + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.49.0.tgz"; 6747 + sha512 = "CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA=="; 6748 }; 6749 }; 6750 + "mime-types-2.1.32" = { 6751 name = "mime-types"; 6752 packageName = "mime-types"; 6753 + version = "2.1.32"; 6754 src = fetchurl { 6755 + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.32.tgz"; 6756 + sha512 = "hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A=="; 6757 }; 6758 }; 6759 "mimic-fn-2.1.0" = { ··· 6936 sha1 = "899f11d9686e5e05cb91b35d5f0e63b773cfc901"; 6937 }; 6938 }; 6939 + "nan-2.15.0" = { 6940 name = "nan"; 6941 packageName = "nan"; 6942 + version = "2.15.0"; 6943 src = fetchurl { 6944 + url = "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz"; 6945 + sha512 = "8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ=="; 6946 }; 6947 }; 6948 + "nanoid-3.1.25" = { 6949 name = "nanoid"; 6950 packageName = "nanoid"; 6951 + version = "3.1.25"; 6952 src = fetchurl { 6953 + url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.25.tgz"; 6954 + sha512 = "rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q=="; 6955 }; 6956 }; 6957 "nanomatch-1.2.13" = { ··· 7035 sha512 = "PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA=="; 7036 }; 7037 }; 7038 + "node-releases-1.1.75" = { 7039 name = "node-releases"; 7040 packageName = "node-releases"; 7041 + version = "1.1.75"; 7042 src = fetchurl { 7043 + url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.75.tgz"; 7044 + sha512 = "Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw=="; 7045 }; 7046 }; 7047 "normalize-package-data-2.5.0" = { ··· 7053 sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA=="; 7054 }; 7055 }; 7056 + "normalize-package-data-3.0.3" = { 7057 name = "normalize-package-data"; 7058 packageName = "normalize-package-data"; 7059 + version = "3.0.3"; 7060 src = fetchurl { 7061 + url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz"; 7062 + sha512 = "p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA=="; 7063 }; 7064 }; 7065 "normalize-path-2.1.1" = { ··· 7134 sha512 = "WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg=="; 7135 }; 7136 }; 7137 + "nth-check-2.0.0" = { 7138 + name = "nth-check"; 7139 + packageName = "nth-check"; 7140 + version = "2.0.0"; 7141 + src = fetchurl { 7142 + url = "https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz"; 7143 + sha512 = "i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q=="; 7144 + }; 7145 + }; 7146 "num2fraction-1.2.2" = { 7147 name = "num2fraction"; 7148 packageName = "num2fraction"; ··· 7170 sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; 7171 }; 7172 }; 7173 + "object-inspect-1.11.0" = { 7174 name = "object-inspect"; 7175 packageName = "object-inspect"; 7176 + version = "1.11.0"; 7177 src = fetchurl { 7178 + url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz"; 7179 + sha512 = "jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg=="; 7180 }; 7181 }; 7182 "object-is-1.1.5" = { ··· 7233 sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; 7234 }; 7235 }; 7236 + "object.values-1.1.4" = { 7237 name = "object.values"; 7238 packageName = "object.values"; 7239 + version = "1.1.4"; 7240 src = fetchurl { 7241 + url = "https://registry.npmjs.org/object.values/-/object.values-1.1.4.tgz"; 7242 + sha512 = "TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg=="; 7243 }; 7244 }; 7245 "obuf-1.1.2" = { ··· 7377 sha512 = "R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="; 7378 }; 7379 }; 7380 + "p-locate-5.0.0" = { 7381 + name = "p-locate"; 7382 + packageName = "p-locate"; 7383 + version = "5.0.0"; 7384 + src = fetchurl { 7385 + url = "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"; 7386 + sha512 = "LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="; 7387 + }; 7388 + }; 7389 "p-map-2.1.0" = { 7390 name = "p-map"; 7391 packageName = "p-map"; ··· 7483 src = fetchurl { 7484 url = "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz"; 7485 sha512 = "kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ=="; 7486 }; 7487 }; 7488 "parse-json-4.0.0" = { ··· 7593 sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="; 7594 }; 7595 }; 7596 + "path-parse-1.0.7" = { 7597 name = "path-parse"; 7598 packageName = "path-parse"; 7599 + version = "1.0.7"; 7600 src = fetchurl { 7601 + url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"; 7602 + sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="; 7603 }; 7604 }; 7605 "path-to-regexp-0.1.7" = { ··· 7620 sha1 = "b33705c140234d873c8721c7b9fd8b541ed3aff9"; 7621 }; 7622 }; 7623 "path-type-3.0.0" = { 7624 name = "path-type"; 7625 packageName = "path-type"; ··· 7656 sha512 = "xGDUhnCYPfHy+unMXCLCJtlpZaaZ17Ew3WIL0tnSgKFUZXHAPD49GO9xScyszSsQMoutNDgRb+rfBXIaX/lJbw=="; 7657 }; 7658 }; 7659 + "picomatch-2.3.0" = { 7660 name = "picomatch"; 7661 packageName = "picomatch"; 7662 + version = "2.3.0"; 7663 src = fetchurl { 7664 + url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz"; 7665 + sha512 = "lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw=="; 7666 }; 7667 }; 7668 "pify-2.3.0" = { ··· 7737 sha512 = "HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="; 7738 }; 7739 }; 7740 + "pkg-up-2.0.0" = { 7741 + name = "pkg-up"; 7742 + packageName = "pkg-up"; 7743 + version = "2.0.0"; 7744 + src = fetchurl { 7745 + url = "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz"; 7746 + sha1 = "c819ac728059a461cab1c3889a2be3c49a004d7f"; 7747 + }; 7748 + }; 7749 "plur-2.1.2" = { 7750 name = "plur"; 7751 packageName = "plur"; ··· 7782 sha512 = "zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg=="; 7783 }; 7784 }; 7785 + "postcss-7.0.36" = { 7786 name = "postcss"; 7787 packageName = "postcss"; 7788 + version = "7.0.36"; 7789 src = fetchurl { 7790 + url = "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz"; 7791 + sha512 = "BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw=="; 7792 }; 7793 }; 7794 + "postcss-8.3.6" = { 7795 name = "postcss"; 7796 packageName = "postcss"; 7797 + version = "8.3.6"; 7798 src = fetchurl { 7799 + url = "https://registry.npmjs.org/postcss/-/postcss-8.3.6.tgz"; 7800 + sha512 = "wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A=="; 7801 }; 7802 }; 7803 "postcss-attribute-case-insensitive-4.0.2" = { ··· 8484 sha512 = "w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ=="; 8485 }; 8486 }; 8487 + "postcss-selector-parser-6.0.6" = { 8488 name = "postcss-selector-parser"; 8489 packageName = "postcss-selector-parser"; 8490 + version = "6.0.6"; 8491 src = fetchurl { 8492 + url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz"; 8493 + sha512 = "9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg=="; 8494 }; 8495 }; 8496 "postcss-sorting-4.1.0" = { ··· 8619 sha1 = "98472870bf228132fcbdd868129bad12c3c029e3"; 8620 }; 8621 }; 8622 + "proxy-addr-2.0.7" = { 8623 name = "proxy-addr"; 8624 packageName = "proxy-addr"; 8625 + version = "2.0.7"; 8626 src = fetchurl { 8627 + url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz"; 8628 + sha512 = "llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg=="; 8629 }; 8630 }; 8631 "prr-1.0.1" = { ··· 8763 sha1 = "25eccff3a153b6809afacb23ee15387db9e0ee61"; 8764 }; 8765 }; 8766 "read-pkg-3.0.0" = { 8767 name = "read-pkg"; 8768 packageName = "read-pkg"; ··· 8779 src = fetchurl { 8780 url = "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz"; 8781 sha512 = "Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg=="; 8782 }; 8783 }; 8784 "read-pkg-up-3.0.0" = { ··· 8826 sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ=="; 8827 }; 8828 }; 8829 + "readdirp-3.6.0" = { 8830 name = "readdirp"; 8831 packageName = "readdirp"; 8832 + version = "3.6.0"; 8833 src = fetchurl { 8834 + url = "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"; 8835 + sha512 = "hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="; 8836 }; 8837 }; 8838 + "rechoir-0.7.1" = { 8839 name = "rechoir"; 8840 packageName = "rechoir"; 8841 + version = "0.7.1"; 8842 src = fetchurl { 8843 + url = "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz"; 8844 + sha512 = "/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg=="; 8845 }; 8846 }; 8847 "redent-2.0.0" = { ··· 8880 sha512 = "F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA=="; 8881 }; 8882 }; 8883 + "regenerator-runtime-0.13.9" = { 8884 name = "regenerator-runtime"; 8885 packageName = "regenerator-runtime"; 8886 + version = "0.13.9"; 8887 src = fetchurl { 8888 + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"; 8889 + sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="; 8890 }; 8891 }; 8892 "regenerator-transform-0.14.5" = { ··· 8916 sha512 = "JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA=="; 8917 }; 8918 }; 8919 + "regexpp-3.2.0" = { 8920 name = "regexpp"; 8921 packageName = "regexpp"; 8922 + version = "3.2.0"; 8923 src = fetchurl { 8924 + url = "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz"; 8925 + sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="; 8926 }; 8927 }; 8928 "regexpu-core-4.7.1" = { ··· 9024 sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef"; 9025 }; 9026 }; 9027 + "renderkid-2.0.7" = { 9028 name = "renderkid"; 9029 packageName = "renderkid"; 9030 + version = "2.0.7"; 9031 src = fetchurl { 9032 + url = "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz"; 9033 + sha512 = "oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ=="; 9034 }; 9035 }; 9036 "repeat-element-1.1.4" = { ··· 9240 sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 9241 }; 9242 }; 9243 + "rollup-2.56.3" = { 9244 name = "rollup"; 9245 packageName = "rollup"; 9246 + version = "2.56.3"; 9247 src = fetchurl { 9248 + url = "https://registry.npmjs.org/rollup/-/rollup-2.56.3.tgz"; 9249 + sha512 = "Au92NuznFklgQCUcV96iXlxUbHuB1vQMaH76DHl5M11TotjOHwqk9CwcrT78+Tnv4FN9uTBxq6p4EJoYkpyekg=="; 9250 }; 9251 }; 9252 + "rollup-plugin-terser-7.0.2" = { 9253 name = "rollup-plugin-terser"; 9254 packageName = "rollup-plugin-terser"; 9255 + version = "7.0.2"; 9256 src = fetchurl { 9257 + url = "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz"; 9258 + sha512 = "w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ=="; 9259 }; 9260 }; 9261 "run-parallel-1.2.0" = { ··· 9294 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 9295 }; 9296 }; 9297 + "sass-1.39.0" = { 9298 name = "sass"; 9299 packageName = "sass"; 9300 + version = "1.39.0"; 9301 src = fetchurl { 9302 + url = "https://registry.npmjs.org/sass/-/sass-1.39.0.tgz"; 9303 + sha512 = "F4o+RhJkNOIG0b6QudYU8c78ZADKZjKDk5cyrf8XTKWfrgbtyVVXImFstJrc+1pkQDCggyidIOytq6gS4gCCZg=="; 9304 }; 9305 }; 9306 + "sass-loader-10.2.0" = { 9307 name = "sass-loader"; 9308 packageName = "sass-loader"; 9309 + version = "10.2.0"; 9310 src = fetchurl { 9311 + url = "https://registry.npmjs.org/sass-loader/-/sass-loader-10.2.0.tgz"; 9312 + sha512 = "kUceLzC1gIHz0zNJPpqRsJyisWatGYNFRmv2CKZK2/ngMJgLqxTbXwe/hJ85luyvZkgqU3VlJ33UVF2T/0g6mw=="; 9313 }; 9314 }; 9315 "sax-1.2.4" = { ··· 9339 sha512 = "SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg=="; 9340 }; 9341 }; 9342 + "schema-utils-3.1.1" = { 9343 name = "schema-utils"; 9344 packageName = "schema-utils"; 9345 + version = "3.1.1"; 9346 src = fetchurl { 9347 + url = "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz"; 9348 + sha512 = "Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw=="; 9349 }; 9350 }; 9351 "screenfull-5.1.0" = { ··· 9402 sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="; 9403 }; 9404 }; 9405 "semver-7.3.5" = { 9406 name = "semver"; 9407 packageName = "semver"; ··· 9436 src = fetchurl { 9437 url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz"; 9438 sha512 = "SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA=="; 9439 + }; 9440 + }; 9441 + "serialize-javascript-6.0.0" = { 9442 + name = "serialize-javascript"; 9443 + packageName = "serialize-javascript"; 9444 + version = "6.0.0"; 9445 + src = fetchurl { 9446 + url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz"; 9447 + sha512 = "Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag=="; 9448 }; 9449 }; 9450 "serve-index-1.9.1" = { ··· 9555 sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 9556 }; 9557 }; 9558 + "side-channel-1.0.4" = { 9559 + name = "side-channel"; 9560 + packageName = "side-channel"; 9561 + version = "1.0.4"; 9562 + src = fetchurl { 9563 + url = "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"; 9564 + sha512 = "q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="; 9565 + }; 9566 + }; 9567 "signal-exit-3.0.3" = { 9568 name = "signal-exit"; 9569 packageName = "signal-exit"; ··· 9654 sha512 = "DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw=="; 9655 }; 9656 }; 9657 + "sockjs-client-1.5.2" = { 9658 name = "sockjs-client"; 9659 packageName = "sockjs-client"; 9660 + version = "1.5.2"; 9661 src = fetchurl { 9662 + url = "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.2.tgz"; 9663 + sha512 = "ZzRxPBISQE7RpzlH4tKJMQbHM9pabHluk0WBaxAQ+wm/UieeBVBou0p4wVnSQGN9QmpAZygQ0cDIypWuqOFmFQ=="; 9664 }; 9665 }; 9666 + "sortablejs-1.14.0" = { 9667 name = "sortablejs"; 9668 packageName = "sortablejs"; 9669 + version = "1.14.0"; 9670 src = fetchurl { 9671 + url = "https://registry.npmjs.org/sortablejs/-/sortablejs-1.14.0.tgz"; 9672 + sha512 = "pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w=="; 9673 }; 9674 }; 9675 "source-list-map-2.0.1" = { ··· 9708 sha512 = "CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="; 9709 }; 9710 }; 9711 + "source-map-0.8.0-beta.0" = { 9712 + name = "source-map"; 9713 + packageName = "source-map"; 9714 + version = "0.8.0-beta.0"; 9715 + src = fetchurl { 9716 + url = "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz"; 9717 + sha512 = "2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA=="; 9718 + }; 9719 + }; 9720 + "source-map-js-0.6.2" = { 9721 + name = "source-map-js"; 9722 + packageName = "source-map-js"; 9723 + version = "0.6.2"; 9724 + src = fetchurl { 9725 + url = "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz"; 9726 + sha512 = "/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug=="; 9727 + }; 9728 + }; 9729 "source-map-loader-1.1.3" = { 9730 name = "source-map-loader"; 9731 packageName = "source-map-loader"; ··· 9798 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 9799 }; 9800 }; 9801 + "spdx-license-ids-3.0.10" = { 9802 name = "spdx-license-ids"; 9803 packageName = "spdx-license-ids"; 9804 + version = "3.0.10"; 9805 src = fetchurl { 9806 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz"; 9807 + sha512 = "oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA=="; 9808 }; 9809 }; 9810 "spdy-4.0.2" = { ··· 10005 sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; 10006 }; 10007 }; 10008 + "strip-comments-2.0.1" = { 10009 name = "strip-comments"; 10010 packageName = "strip-comments"; 10011 + version = "2.0.1"; 10012 src = fetchurl { 10013 + url = "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz"; 10014 + sha512 = "ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw=="; 10015 }; 10016 }; 10017 "strip-eof-1.0.0" = { ··· 10149 sha512 = "sVTikaDvMqg2aJjh4r48jsdfmqLT+nqB1MOsaBnvM3OwLx4S+WXcsxsgk5w18h/OZoxZCxuyXMh61iBHcj9Qiw=="; 10150 }; 10151 }; 10152 + "stylelint-scss-3.20.1" = { 10153 name = "stylelint-scss"; 10154 packageName = "stylelint-scss"; 10155 + version = "3.20.1"; 10156 src = fetchurl { 10157 + url = "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.20.1.tgz"; 10158 + sha512 = "OTd55O1TTAC5nGKkVmUDLpz53LlK39R3MImv1CfuvsK7/qugktqiZAeQLuuC4UBhzxCnsc7fp9u/gfRZwFAIkA=="; 10159 }; 10160 }; 10161 "sugarss-2.0.0" = { ··· 10212 sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; 10213 }; 10214 }; 10215 + "supports-color-8.1.1" = { 10216 + name = "supports-color"; 10217 + packageName = "supports-color"; 10218 + version = "8.1.1"; 10219 + src = fetchurl { 10220 + url = "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"; 10221 + sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="; 10222 + }; 10223 + }; 10224 "svg-tags-1.0.0" = { 10225 name = "svg-tags"; 10226 packageName = "svg-tags"; ··· 10239 sha512 = "yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw=="; 10240 }; 10241 }; 10242 + "swiper-6.8.4" = { 10243 name = "swiper"; 10244 packageName = "swiper"; 10245 + version = "6.8.4"; 10246 src = fetchurl { 10247 + url = "https://registry.npmjs.org/swiper/-/swiper-6.8.4.tgz"; 10248 + sha512 = "O+buF9Q+sMA0H7luMS8R59hCaJKlpo8PXhQ6ZYu6Rn2v9OsFd4d1jmrv14QvxtQpKAvL/ZiovEeANI/uDGet7g=="; 10249 }; 10250 }; 10251 "table-5.4.6" = { ··· 10257 sha512 = "wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug=="; 10258 }; 10259 }; 10260 + "table-6.7.1" = { 10261 name = "table"; 10262 packageName = "table"; 10263 + version = "6.7.1"; 10264 src = fetchurl { 10265 + url = "https://registry.npmjs.org/table/-/table-6.7.1.tgz"; 10266 + sha512 = "ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg=="; 10267 }; 10268 }; 10269 "tapable-1.1.3" = { ··· 10284 sha512 = "FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw=="; 10285 }; 10286 }; 10287 + "tar-6.1.11" = { 10288 name = "tar"; 10289 packageName = "tar"; 10290 + version = "6.1.11"; 10291 src = fetchurl { 10292 + url = "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz"; 10293 + sha512 = "an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA=="; 10294 }; 10295 }; 10296 + "temp-dir-2.0.0" = { 10297 name = "temp-dir"; 10298 packageName = "temp-dir"; 10299 + version = "2.0.0"; 10300 src = fetchurl { 10301 + url = "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz"; 10302 + sha512 = "aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg=="; 10303 }; 10304 }; 10305 + "tempy-0.6.0" = { 10306 name = "tempy"; 10307 packageName = "tempy"; 10308 + version = "0.6.0"; 10309 src = fetchurl { 10310 + url = "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz"; 10311 + sha512 = "G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw=="; 10312 }; 10313 }; 10314 "terser-4.8.0" = { ··· 10320 sha512 = "EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw=="; 10321 }; 10322 }; 10323 + "terser-5.7.2" = { 10324 name = "terser"; 10325 packageName = "terser"; 10326 + version = "5.7.2"; 10327 src = fetchurl { 10328 + url = "https://registry.npmjs.org/terser/-/terser-5.7.2.tgz"; 10329 + sha512 = "0Omye+RD4X7X69O0eql3lC4Heh/5iLj3ggxR/B5ketZLOtLiOqukUgjw3q4PDnNQbsrkKr3UMypqStQG3XKRvw=="; 10330 }; 10331 }; 10332 + "terser-webpack-plugin-5.2.3" = { 10333 name = "terser-webpack-plugin"; 10334 packageName = "terser-webpack-plugin"; 10335 + version = "5.2.3"; 10336 src = fetchurl { 10337 + url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.2.3.tgz"; 10338 + sha512 = "eDbuaDlXhVaaoKuLD3DTNTozKqln6xOG6Us0SzlKG5tNlazG+/cdl8pm9qiF1Di89iWScTI0HcO+CDcf2dkXiw=="; 10339 }; 10340 }; 10341 "text-table-0.2.0" = { ··· 10417 src = fetchurl { 10418 url = "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz"; 10419 sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="; 10420 + }; 10421 + }; 10422 + "tr46-1.0.1" = { 10423 + name = "tr46"; 10424 + packageName = "tr46"; 10425 + version = "1.0.1"; 10426 + src = fetchurl { 10427 + url = "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz"; 10428 + sha1 = "a8b13fd6bfd2489519674ccde55ba3693b706d09"; 10429 }; 10430 }; 10431 "trim-0.0.1" = { ··· 10446 sha1 = "b403d0b91be50c331dfc4b82eeceb22c3de16d20"; 10447 }; 10448 }; 10449 + "trim-newlines-3.0.1" = { 10450 name = "trim-newlines"; 10451 packageName = "trim-newlines"; 10452 + version = "3.0.1"; 10453 src = fetchurl { 10454 + url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz"; 10455 + sha512 = "c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw=="; 10456 }; 10457 }; 10458 "trim-trailing-lines-1.1.4" = { ··· 10473 sha512 = "rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA=="; 10474 }; 10475 }; 10476 + "tsconfig-paths-3.11.0" = { 10477 name = "tsconfig-paths"; 10478 packageName = "tsconfig-paths"; 10479 + version = "3.11.0"; 10480 src = fetchurl { 10481 + url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz"; 10482 + sha512 = "7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA=="; 10483 }; 10484 }; 10485 + "tslib-2.3.1" = { 10486 name = "tslib"; 10487 packageName = "tslib"; 10488 + version = "2.3.1"; 10489 src = fetchurl { 10490 + url = "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz"; 10491 + sha512 = "77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="; 10492 }; 10493 }; 10494 "type-1.2.0" = { ··· 10518 sha512 = "XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="; 10519 }; 10520 }; 10521 + "type-fest-0.16.0" = { 10522 + name = "type-fest"; 10523 + packageName = "type-fest"; 10524 + version = "0.16.0"; 10525 + src = fetchurl { 10526 + url = "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz"; 10527 + sha512 = "eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg=="; 10528 + }; 10529 + }; 10530 "type-fest-0.18.1" = { 10531 name = "type-fest"; 10532 packageName = "type-fest"; ··· 10543 src = fetchurl { 10544 url = "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"; 10545 sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; 10546 }; 10547 }; 10548 "type-fest-0.6.0" = { ··· 10644 sha512 = "lbk82UOIGuCEsZhPj8rNAkXSDXd6p0QLzIuSsCdxrqnqU56St4eyOB+AlXsVgVeRmetPTYydIuvFfpDIed8mqw=="; 10645 }; 10646 }; 10647 + "unified-9.2.2" = { 10648 name = "unified"; 10649 packageName = "unified"; 10650 + version = "9.2.2"; 10651 src = fetchurl { 10652 + url = "https://registry.npmjs.org/unified/-/unified-9.2.2.tgz"; 10653 + sha512 = "Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ=="; 10654 }; 10655 }; 10656 "union-value-1.0.1" = { ··· 10698 sha512 = "zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w=="; 10699 }; 10700 }; 10701 + "unique-string-2.0.0" = { 10702 name = "unique-string"; 10703 packageName = "unique-string"; 10704 + version = "2.0.0"; 10705 src = fetchurl { 10706 + url = "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz"; 10707 + sha512 = "uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg=="; 10708 }; 10709 }; 10710 "unist-util-find-all-after-1.0.5" = { ··· 10788 sha512 = "DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g=="; 10789 }; 10790 }; 10791 + "universalify-2.0.0" = { 10792 name = "universalify"; 10793 packageName = "universalify"; 10794 + version = "2.0.0"; 10795 src = fetchurl { 10796 + url = "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz"; 10797 + sha512 = "hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ=="; 10798 }; 10799 }; 10800 "unpipe-1.0.0" = { ··· 10860 sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"; 10861 }; 10862 }; 10863 + "url-parse-1.5.3" = { 10864 name = "url-parse"; 10865 packageName = "url-parse"; 10866 + version = "1.5.3"; 10867 src = fetchurl { 10868 + url = "https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz"; 10869 + sha512 = "IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ=="; 10870 }; 10871 }; 10872 + "url-toolkit-2.2.3" = { 10873 name = "url-toolkit"; 10874 packageName = "url-toolkit"; 10875 + version = "2.2.3"; 10876 src = fetchurl { 10877 + url = "https://registry.npmjs.org/url-toolkit/-/url-toolkit-2.2.3.tgz"; 10878 + sha512 = "Da75SQoxsZ+2wXS56CZBrj2nukQ4nlGUZUP/dqUBG5E1su5GKThgT94Q00x81eVII7AyS1Pn+CtTTZ4Z0pLUtQ=="; 10879 }; 10880 }; 10881 "use-3.1.1" = { ··· 11022 sha512 = "DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ=="; 11023 }; 11024 }; 11025 + "watchpack-2.2.0" = { 11026 name = "watchpack"; 11027 packageName = "watchpack"; 11028 + version = "2.2.0"; 11029 src = fetchurl { 11030 + url = "https://registry.npmjs.org/watchpack/-/watchpack-2.2.0.tgz"; 11031 + sha512 = "up4YAn/XHgZHIxFBVCdlMiWDj6WaLKpwVeGQk2I5thdYxF/KmF0aaz6TfJZ/hfl1h/XlcDr7k1KH7ThDagpFaA=="; 11032 }; 11033 }; 11034 "wbuf-1.7.3" = { ··· 11049 sha1 = "2116fbfa1468ec416a7befdaa333e1d118f69c04"; 11050 }; 11051 }; 11052 + "webidl-conversions-4.0.2" = { 11053 + name = "webidl-conversions"; 11054 + packageName = "webidl-conversions"; 11055 + version = "4.0.2"; 11056 + src = fetchurl { 11057 + url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz"; 11058 + sha512 = "YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="; 11059 + }; 11060 + }; 11061 + "webpack-5.52.0" = { 11062 name = "webpack"; 11063 packageName = "webpack"; 11064 + version = "5.52.0"; 11065 src = fetchurl { 11066 + url = "https://registry.npmjs.org/webpack/-/webpack-5.52.0.tgz"; 11067 + sha512 = "yRZOat8jWGwBwHpco3uKQhVU7HYaNunZiJ4AkAVQkPCUGoZk/tiIXiwG+8HIy/F+qsiZvSOa+GLQOj3q5RKRYg=="; 11068 }; 11069 }; 11070 + "webpack-cli-4.8.0" = { 11071 name = "webpack-cli"; 11072 packageName = "webpack-cli"; 11073 + version = "4.8.0"; 11074 src = fetchurl { 11075 + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.8.0.tgz"; 11076 + sha512 = "+iBSWsX16uVna5aAYN6/wjhJy1q/GKk4KjKvfg90/6hykCTSgozbfz5iRgDTSJt/LgSbYxdBX3KBHeobIs+ZEw=="; 11077 }; 11078 }; 11079 "webpack-dev-middleware-3.7.3" = { ··· 11112 sha512 = "TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g=="; 11113 }; 11114 }; 11115 + "webpack-merge-5.8.0" = { 11116 name = "webpack-merge"; 11117 packageName = "webpack-merge"; 11118 + version = "5.8.0"; 11119 src = fetchurl { 11120 + url = "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz"; 11121 + sha512 = "/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q=="; 11122 }; 11123 }; 11124 "webpack-sources-1.4.3" = { ··· 11130 sha512 = "lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ=="; 11131 }; 11132 }; 11133 + "webpack-sources-3.2.0" = { 11134 name = "webpack-sources"; 11135 packageName = "webpack-sources"; 11136 + version = "3.2.0"; 11137 src = fetchurl { 11138 + url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.0.tgz"; 11139 + sha512 = "fahN08Et7P9trej8xz/Z7eRu8ltyiygEo/hnRi9KqBUs80KeDcnf96ZJo++ewWd84fEf3xSX9bp4ZS9hbw0OBw=="; 11140 }; 11141 }; 11142 "websocket-driver-0.7.4" = { ··· 11157 sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; 11158 }; 11159 }; 11160 + "webworkify-webpack-2.1.5" = { 11161 + name = "webworkify-webpack"; 11162 + packageName = "webworkify-webpack"; 11163 + version = "2.1.5"; 11164 src = fetchurl { 11165 + url = "https://registry.npmjs.org/webworkify-webpack/-/webworkify-webpack-2.1.5.tgz"; 11166 + sha512 = "2akF8FIyUvbiBBdD+RoHpoTbHMQF2HwjcxfDvgztAX5YwbZNyrtfUMgvfgFVsgDhDPVTlkbb5vyasqDHfIDPQw=="; 11167 }; 11168 }; 11169 "whatwg-fetch-3.6.2" = { ··· 11182 src = fetchurl { 11183 url = "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz"; 11184 sha512 = "M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g=="; 11185 + }; 11186 + }; 11187 + "whatwg-url-7.1.0" = { 11188 + name = "whatwg-url"; 11189 + packageName = "whatwg-url"; 11190 + version = "7.1.0"; 11191 + src = fetchurl { 11192 + url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz"; 11193 + sha512 = "WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg=="; 11194 }; 11195 }; 11196 "which-1.3.1" = { ··· 11247 sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; 11248 }; 11249 }; 11250 + "workbox-background-sync-6.2.4" = { 11251 name = "workbox-background-sync"; 11252 packageName = "workbox-background-sync"; 11253 + version = "6.2.4"; 11254 src = fetchurl { 11255 + url = "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.2.4.tgz"; 11256 + sha512 = "uoGgm1PZU6THRzXKlMEntrdA4Xkp6SCfxI7re4heN+yGrtAZq6zMKYhZmsdeW+YGnXS3y5xj7WV03b5TDgLh6A=="; 11257 }; 11258 }; 11259 + "workbox-broadcast-update-6.2.4" = { 11260 name = "workbox-broadcast-update"; 11261 packageName = "workbox-broadcast-update"; 11262 + version = "6.2.4"; 11263 src = fetchurl { 11264 + url = "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.2.4.tgz"; 11265 + sha512 = "0EpML2lbxNkiZUoap4BJDA0Hfz36MhtUd/rRhFvF6YWoRbTQ8tc6tMaRgM1EBIUmIN2OX9qQlkqe5SGGt4lfXQ=="; 11266 }; 11267 }; 11268 + "workbox-build-6.2.4" = { 11269 name = "workbox-build"; 11270 packageName = "workbox-build"; 11271 + version = "6.2.4"; 11272 src = fetchurl { 11273 + url = "https://registry.npmjs.org/workbox-build/-/workbox-build-6.2.4.tgz"; 11274 + sha512 = "01ZbY1BHi+yYvu4yDGZBw9xm1bWyZW0QGWPxiksvSPAsNH/z/NwgtWW14YEroFyG98mmXb7pufWlwl40zE1KTw=="; 11275 }; 11276 }; 11277 + "workbox-cacheable-response-6.2.4" = { 11278 name = "workbox-cacheable-response"; 11279 packageName = "workbox-cacheable-response"; 11280 + version = "6.2.4"; 11281 src = fetchurl { 11282 + url = "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.2.4.tgz"; 11283 + sha512 = "KZSzAOmgWsrk15Wu+geCUSGLIyyzHaORKjH5JnR6qcVZAsm0JXUu2m2OZGqjQ+/eyQwrGdXXqAMW+4wQvTXccg=="; 11284 }; 11285 }; 11286 "workbox-core-5.1.4" = { ··· 11292 sha512 = "+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg=="; 11293 }; 11294 }; 11295 + "workbox-core-6.2.4" = { 11296 + name = "workbox-core"; 11297 + packageName = "workbox-core"; 11298 + version = "6.2.4"; 11299 + src = fetchurl { 11300 + url = "https://registry.npmjs.org/workbox-core/-/workbox-core-6.2.4.tgz"; 11301 + sha512 = "Nu8X4R4Is3g8uzEJ6qwbW2CGVpzntW/cSf8OfsQGIKQR0nt84FAKzP2cLDaNLp3L/iV9TuhZgCTZzkMiap5/OQ=="; 11302 + }; 11303 + }; 11304 + "workbox-expiration-6.2.4" = { 11305 name = "workbox-expiration"; 11306 packageName = "workbox-expiration"; 11307 + version = "6.2.4"; 11308 src = fetchurl { 11309 + url = "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.2.4.tgz"; 11310 + sha512 = "EdOBLunrE3+Ff50y7AYDbiwtiLDvB+oEIkL1Wd9G5d176YVqFfgPfMRzJQ7fN+Yy2NfmsFME0Bw+dQruYekWsQ=="; 11311 }; 11312 }; 11313 + "workbox-google-analytics-6.2.4" = { 11314 name = "workbox-google-analytics"; 11315 packageName = "workbox-google-analytics"; 11316 + version = "6.2.4"; 11317 src = fetchurl { 11318 + url = "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.2.4.tgz"; 11319 + sha512 = "+PWmTouoGGcDupaxM193F2NmgrF597Pyt9eHIDxfed+x+JSSeUkETlbAKwB8rnBHkAjs8JQcvStEP/IpueNKpQ=="; 11320 }; 11321 }; 11322 + "workbox-navigation-preload-6.2.4" = { 11323 name = "workbox-navigation-preload"; 11324 packageName = "workbox-navigation-preload"; 11325 + version = "6.2.4"; 11326 src = fetchurl { 11327 + url = "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.2.4.tgz"; 11328 + sha512 = "y2dOSsaSdEimqhCmBIFR6kBp+GZbtNtWCBaMFwfKxTAul2uyllKcTKBHnZ9IzxULue6o6voV+I2U8Y8tO8n+eA=="; 11329 }; 11330 }; 11331 "workbox-precaching-5.1.4" = { ··· 11337 sha512 = "gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA=="; 11338 }; 11339 }; 11340 + "workbox-precaching-6.2.4" = { 11341 + name = "workbox-precaching"; 11342 + packageName = "workbox-precaching"; 11343 + version = "6.2.4"; 11344 + src = fetchurl { 11345 + url = "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.2.4.tgz"; 11346 + sha512 = "7POznbVc8EG/mkbXzeb94x3B1VJruPgXvXFgS0NJ3GRugkO4ULs/DpIIb+ycs7uJIKY9EzLS7VXvElr3rMSozQ=="; 11347 + }; 11348 + }; 11349 + "workbox-range-requests-6.2.4" = { 11350 name = "workbox-range-requests"; 11351 packageName = "workbox-range-requests"; 11352 + version = "6.2.4"; 11353 src = fetchurl { 11354 + url = "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.2.4.tgz"; 11355 + sha512 = "q4jjTXD1QOKbrHnzV3nxdZtIpOiVoIP5QyVmjuJrybVnAZurtyKcqirTQcAcT/zlTvgwm07zcTTk9o/zIB6DmA=="; 11356 }; 11357 }; 11358 + "workbox-recipes-6.2.4" = { 11359 + name = "workbox-recipes"; 11360 + packageName = "workbox-recipes"; 11361 + version = "6.2.4"; 11362 + src = fetchurl { 11363 + url = "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.2.4.tgz"; 11364 + sha512 = "z7oECGrt940dw1Bv0xIDJEXY1xARiaxsIedeJOutZFkbgaC/yWG61VTr/hmkeJ8Nx6jnY6W7Rc0iOUvg4sePag=="; 11365 + }; 11366 + }; 11367 + "workbox-routing-6.2.4" = { 11368 name = "workbox-routing"; 11369 packageName = "workbox-routing"; 11370 + version = "6.2.4"; 11371 src = fetchurl { 11372 + url = "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.2.4.tgz"; 11373 + sha512 = "jHnOmpeH4MOWR4eXv6l608npD2y6IFv7yFJ1bT9/RbB8wq2vXHXJQ0ExTZRTWGbVltSG22wEU+MQ8VebDDwDeg=="; 11374 }; 11375 }; 11376 + "workbox-strategies-6.2.4" = { 11377 name = "workbox-strategies"; 11378 packageName = "workbox-strategies"; 11379 + version = "6.2.4"; 11380 src = fetchurl { 11381 + url = "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.2.4.tgz"; 11382 + sha512 = "DKgGC3ruceDuu2o+Ae5qmJy0p0q21mFP+RrkdqKrjyf2u8cJvvtvt1eIt4nevKc5BESiKxmhC2h+TZpOSzUDvA=="; 11383 }; 11384 }; 11385 + "workbox-streams-6.2.4" = { 11386 name = "workbox-streams"; 11387 packageName = "workbox-streams"; 11388 + version = "6.2.4"; 11389 src = fetchurl { 11390 + url = "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.2.4.tgz"; 11391 + sha512 = "yG6zV7S2NmYT6koyb7/DoPsyUAat9kD+rOmjP2SbBCtJdLu6ZIi1lgN4/rOkxEby/+Xb4OE4RmCSIZdMyjEmhQ=="; 11392 }; 11393 }; 11394 + "workbox-sw-6.2.4" = { 11395 name = "workbox-sw"; 11396 packageName = "workbox-sw"; 11397 + version = "6.2.4"; 11398 src = fetchurl { 11399 + url = "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.2.4.tgz"; 11400 + sha512 = "OlWLHNNM+j44sN2OaVXnVcf2wwhJUzcHlXrTrbWDu1JWnrQJ/rLicdc/sbxkZoyE0EbQm7Xr1BXcOjsB7PNlXQ=="; 11401 }; 11402 }; 11403 + "workbox-webpack-plugin-6.2.4" = { 11404 name = "workbox-webpack-plugin"; 11405 packageName = "workbox-webpack-plugin"; 11406 + version = "6.2.4"; 11407 src = fetchurl { 11408 + url = "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.2.4.tgz"; 11409 + sha512 = "G6yeOZDYEbtqgNasqwxHFnma0Vp237kMxpsf8JV/YIhvhUuMwnh1WKv4VnFeqmYaWW/ITx0qj92IEMWB/O1mAA=="; 11410 }; 11411 }; 11412 + "workbox-window-6.2.4" = { 11413 name = "workbox-window"; 11414 packageName = "workbox-window"; 11415 + version = "6.2.4"; 11416 src = fetchurl { 11417 + url = "https://registry.npmjs.org/workbox-window/-/workbox-window-6.2.4.tgz"; 11418 + sha512 = "9jD6THkwGEASj1YP56ZBHYJ147733FoGpJlMamYk38k/EBFE75oc6K3Vs2tGOBx5ZGq54+mHSStnlrtFG3IiOg=="; 11419 }; 11420 }; 11421 + "worker-plugin-5.0.1" = { 11422 name = "worker-plugin"; 11423 packageName = "worker-plugin"; 11424 + version = "5.0.1"; 11425 src = fetchurl { 11426 + url = "https://registry.npmjs.org/worker-plugin/-/worker-plugin-5.0.1.tgz"; 11427 + sha512 = "Pn7+19jIiANcGuTSGdy+vrzyF+SGH03A5wV8iu4jRTMAOfAC9bNeiHo4+l5tPS7F0uvICMBv+h8UCvL7lunxcA=="; 11428 }; 11429 }; 11430 "wrap-ansi-5.1.0" = { ··· 11472 sha1 = "c252d7c7c5b1b402897630e3453c7bfe690d9ca1"; 11473 }; 11474 }; 11475 + "ws-6.2.2" = { 11476 name = "ws"; 11477 packageName = "ws"; 11478 + version = "6.2.2"; 11479 src = fetchurl { 11480 + url = "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz"; 11481 + sha512 = "zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw=="; 11482 }; 11483 }; 11484 "x-is-string-0.1.0" = { ··· 11562 sha512 = "3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg=="; 11563 }; 11564 }; 11565 + "yargs-parser-20.2.9" = { 11566 name = "yargs-parser"; 11567 packageName = "yargs-parser"; 11568 + version = "20.2.9"; 11569 src = fetchurl { 11570 + url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz"; 11571 + sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="; 11572 }; 11573 }; 11574 "yocto-queue-0.1.0" = { ··· 11594 name = "jellyfin-web"; 11595 packageName = "jellyfin-web"; 11596 version = "0.0.0"; 11597 + src = ../../../../../../../nix/store/4n28kmji75gd671zm8v6xg8ywghv3s2s-source; 11598 dependencies = [ 11599 + (sources."@apideck/better-ajv-errors-0.2.5" // { 11600 + dependencies = [ 11601 + sources."leven-3.1.0" 11602 + ]; 11603 + }) 11604 + sources."@babel/code-frame-7.14.5" 11605 + sources."@babel/compat-data-7.15.0" 11606 + sources."@babel/core-7.15.5" 11607 + sources."@babel/eslint-parser-7.15.4" 11608 + sources."@babel/eslint-plugin-7.14.5" 11609 + sources."@babel/generator-7.15.4" 11610 + sources."@babel/helper-annotate-as-pure-7.15.4" 11611 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" 11612 + sources."@babel/helper-compilation-targets-7.15.4" 11613 + sources."@babel/helper-create-class-features-plugin-7.15.4" 11614 + sources."@babel/helper-create-regexp-features-plugin-7.14.5" 11615 + sources."@babel/helper-define-polyfill-provider-0.2.3" 11616 + sources."@babel/helper-explode-assignable-expression-7.15.4" 11617 + sources."@babel/helper-function-name-7.15.4" 11618 + sources."@babel/helper-get-function-arity-7.15.4" 11619 + sources."@babel/helper-hoist-variables-7.15.4" 11620 + sources."@babel/helper-member-expression-to-functions-7.15.4" 11621 + sources."@babel/helper-module-imports-7.15.4" 11622 + sources."@babel/helper-module-transforms-7.15.4" 11623 + sources."@babel/helper-optimise-call-expression-7.15.4" 11624 + sources."@babel/helper-plugin-utils-7.14.5" 11625 + sources."@babel/helper-remap-async-to-generator-7.15.4" 11626 + sources."@babel/helper-replace-supers-7.15.4" 11627 + sources."@babel/helper-simple-access-7.15.4" 11628 + sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 11629 + sources."@babel/helper-split-export-declaration-7.15.4" 11630 + sources."@babel/helper-validator-identifier-7.14.9" 11631 + sources."@babel/helper-validator-option-7.14.5" 11632 + sources."@babel/helper-wrap-function-7.15.4" 11633 + sources."@babel/helpers-7.15.4" 11634 + sources."@babel/highlight-7.14.5" 11635 + sources."@babel/parser-7.15.5" 11636 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 11637 + sources."@babel/plugin-proposal-async-generator-functions-7.15.4" 11638 + sources."@babel/plugin-proposal-class-properties-7.14.5" 11639 + sources."@babel/plugin-proposal-class-static-block-7.15.4" 11640 + sources."@babel/plugin-proposal-dynamic-import-7.14.5" 11641 + sources."@babel/plugin-proposal-export-namespace-from-7.14.5" 11642 + sources."@babel/plugin-proposal-json-strings-7.14.5" 11643 + sources."@babel/plugin-proposal-logical-assignment-operators-7.14.5" 11644 + sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 11645 + sources."@babel/plugin-proposal-numeric-separator-7.14.5" 11646 + sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 11647 + sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 11648 + sources."@babel/plugin-proposal-optional-chaining-7.14.5" 11649 + sources."@babel/plugin-proposal-private-methods-7.14.5" 11650 + sources."@babel/plugin-proposal-private-property-in-object-7.15.4" 11651 + sources."@babel/plugin-proposal-unicode-property-regex-7.14.5" 11652 sources."@babel/plugin-syntax-async-generators-7.8.4" 11653 sources."@babel/plugin-syntax-class-properties-7.12.13" 11654 + sources."@babel/plugin-syntax-class-static-block-7.14.5" 11655 sources."@babel/plugin-syntax-dynamic-import-7.8.3" 11656 sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 11657 sources."@babel/plugin-syntax-json-strings-7.8.3" ··· 11661 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 11662 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 11663 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 11664 + sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 11665 + sources."@babel/plugin-syntax-top-level-await-7.14.5" 11666 + sources."@babel/plugin-transform-arrow-functions-7.14.5" 11667 + sources."@babel/plugin-transform-async-to-generator-7.14.5" 11668 + sources."@babel/plugin-transform-block-scoped-functions-7.14.5" 11669 + sources."@babel/plugin-transform-block-scoping-7.15.3" 11670 + sources."@babel/plugin-transform-classes-7.15.4" 11671 + sources."@babel/plugin-transform-computed-properties-7.14.5" 11672 + sources."@babel/plugin-transform-destructuring-7.14.7" 11673 + sources."@babel/plugin-transform-dotall-regex-7.14.5" 11674 + sources."@babel/plugin-transform-duplicate-keys-7.14.5" 11675 + sources."@babel/plugin-transform-exponentiation-operator-7.14.5" 11676 + sources."@babel/plugin-transform-for-of-7.15.4" 11677 + sources."@babel/plugin-transform-function-name-7.14.5" 11678 + sources."@babel/plugin-transform-literals-7.14.5" 11679 + sources."@babel/plugin-transform-member-expression-literals-7.14.5" 11680 + sources."@babel/plugin-transform-modules-amd-7.14.5" 11681 + sources."@babel/plugin-transform-modules-commonjs-7.15.4" 11682 + sources."@babel/plugin-transform-modules-systemjs-7.15.4" 11683 + sources."@babel/plugin-transform-modules-umd-7.14.5" 11684 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9" 11685 + sources."@babel/plugin-transform-new-target-7.14.5" 11686 + sources."@babel/plugin-transform-object-super-7.14.5" 11687 + sources."@babel/plugin-transform-parameters-7.15.4" 11688 + sources."@babel/plugin-transform-property-literals-7.14.5" 11689 + sources."@babel/plugin-transform-regenerator-7.14.5" 11690 + sources."@babel/plugin-transform-reserved-words-7.14.5" 11691 + sources."@babel/plugin-transform-shorthand-properties-7.14.5" 11692 + sources."@babel/plugin-transform-spread-7.14.6" 11693 + sources."@babel/plugin-transform-sticky-regex-7.14.5" 11694 + sources."@babel/plugin-transform-template-literals-7.14.5" 11695 + sources."@babel/plugin-transform-typeof-symbol-7.14.5" 11696 + sources."@babel/plugin-transform-unicode-escapes-7.14.5" 11697 + sources."@babel/plugin-transform-unicode-regex-7.14.5" 11698 + sources."@babel/preset-env-7.15.4" 11699 sources."@babel/preset-modules-0.1.4" 11700 + sources."@babel/runtime-7.15.4" 11701 + sources."@babel/template-7.15.4" 11702 + sources."@babel/traverse-7.15.4" 11703 + sources."@babel/types-7.15.4" 11704 sources."@csstools/convert-colors-1.4.0" 11705 + sources."@discoveryjs/json-ext-0.5.3" 11706 + (sources."@eslint/eslintrc-0.4.3" // { 11707 dependencies = [ 11708 + sources."globals-13.11.0" 11709 sources."ignore-4.0.6" 11710 sources."import-fresh-3.3.0" 11711 sources."resolve-from-4.0.0" 11712 ]; 11713 }) 11714 + sources."@gar/promisify-1.1.2" 11715 + sources."@humanwhocodes/config-array-0.5.0" 11716 + sources."@humanwhocodes/object-schema-1.2.0" 11717 + sources."@mdn/browser-compat-data-3.3.14" 11718 sources."@mrmlnc/readdir-enhanced-2.2.1" 11719 + sources."@nodelib/fs.scandir-2.1.5" 11720 + sources."@nodelib/fs.stat-2.0.5" 11721 + sources."@nodelib/fs.walk-1.2.8" 11722 + (sources."@npmcli/fs-1.0.0" // { 11723 + dependencies = [ 11724 + sources."semver-7.3.5" 11725 + ]; 11726 + }) 11727 (sources."@npmcli/move-file-1.1.2" // { 11728 dependencies = [ 11729 sources."rimraf-3.0.2" 11730 ]; 11731 }) 11732 + sources."@rollup/plugin-babel-5.3.0" 11733 + sources."@rollup/plugin-node-resolve-11.2.1" 11734 sources."@rollup/plugin-replace-2.4.2" 11735 (sources."@rollup/pluginutils-3.1.0" // { 11736 dependencies = [ ··· 11740 sources."@stylelint/postcss-css-in-js-0.37.2" 11741 sources."@stylelint/postcss-markdown-0.36.2" 11742 sources."@surma/rollup-plugin-off-main-thread-1.4.2" 11743 + sources."@types/eslint-7.28.0" 11744 + sources."@types/eslint-scope-3.7.1" 11745 + sources."@types/estree-0.0.50" 11746 + sources."@types/glob-7.1.4" 11747 + sources."@types/html-minifier-terser-5.1.2" 11748 + sources."@types/json-schema-7.0.9" 11749 sources."@types/json5-0.0.29" 11750 sources."@types/localforage-0.0.34" 11751 + sources."@types/mdast-3.0.10" 11752 + sources."@types/minimatch-3.0.5" 11753 + sources."@types/minimist-1.2.2" 11754 + sources."@types/node-16.7.10" 11755 + sources."@types/normalize-package-data-2.4.1" 11756 sources."@types/parse-json-4.0.0" 11757 + sources."@types/q-1.5.5" 11758 + sources."@types/resolve-1.17.1" 11759 sources."@types/source-list-map-0.1.2" 11760 + sources."@types/tapable-1.0.8" 11761 + sources."@types/trusted-types-2.0.2" 11762 + (sources."@types/uglify-js-3.13.1" // { 11763 dependencies = [ 11764 sources."source-map-0.6.1" 11765 ]; 11766 }) 11767 + sources."@types/unist-2.0.6" 11768 sources."@types/vfile-3.0.2" 11769 sources."@types/vfile-message-2.0.0" 11770 + (sources."@types/webpack-4.41.30" // { 11771 dependencies = [ 11772 sources."source-map-0.6.1" 11773 ]; 11774 }) 11775 + (sources."@types/webpack-sources-3.2.0" // { 11776 dependencies = [ 11777 sources."source-map-0.7.3" 11778 ]; 11779 }) 11780 sources."@uupaa/dynamic-import-polyfill-1.0.2" 11781 + sources."@webassemblyjs/ast-1.11.1" 11782 + sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 11783 + sources."@webassemblyjs/helper-api-error-1.11.1" 11784 + sources."@webassemblyjs/helper-buffer-1.11.1" 11785 + sources."@webassemblyjs/helper-numbers-1.11.1" 11786 + sources."@webassemblyjs/helper-wasm-bytecode-1.11.1" 11787 + sources."@webassemblyjs/helper-wasm-section-1.11.1" 11788 + sources."@webassemblyjs/ieee754-1.11.1" 11789 + sources."@webassemblyjs/leb128-1.11.1" 11790 + sources."@webassemblyjs/utf8-1.11.1" 11791 + sources."@webassemblyjs/wasm-edit-1.11.1" 11792 + sources."@webassemblyjs/wasm-gen-1.11.1" 11793 + sources."@webassemblyjs/wasm-opt-1.11.1" 11794 + sources."@webassemblyjs/wasm-parser-1.11.1" 11795 + sources."@webassemblyjs/wast-printer-1.11.1" 11796 + sources."@webpack-cli/configtest-1.0.4" 11797 + sources."@webpack-cli/info-1.3.0" 11798 + sources."@webpack-cli/serve-1.5.2" 11799 sources."@xtuc/ieee754-1.2.0" 11800 sources."@xtuc/long-4.2.2" 11801 sources."abab-2.0.5" 11802 sources."accepts-1.3.7" 11803 sources."acorn-7.4.1" 11804 + sources."acorn-import-assertions-1.7.6" 11805 + sources."acorn-jsx-5.3.2" 11806 sources."aggregate-error-3.1.0" 11807 sources."ajv-6.12.6" 11808 sources."ajv-errors-1.0.1" ··· 11826 sources."array.prototype.flat-1.2.4" 11827 sources."arrify-1.0.1" 11828 sources."assign-symbols-1.0.0" 11829 + sources."ast-metadata-inferer-0.7.0" 11830 sources."astral-regex-2.0.0" 11831 sources."async-2.6.3" 11832 sources."async-each-1.0.3" 11833 sources."async-limiter-1.0.1" 11834 + sources."at-least-node-1.0.0" 11835 sources."atob-2.1.2" 11836 sources."autoprefixer-9.8.6" 11837 sources."babel-loader-8.2.2" 11838 sources."babel-plugin-dynamic-import-node-2.3.3" 11839 sources."babel-plugin-dynamic-import-polyfill-1.0.0" 11840 + sources."babel-plugin-polyfill-corejs2-0.2.2" 11841 + sources."babel-plugin-polyfill-corejs3-0.2.4" 11842 + sources."babel-plugin-polyfill-regenerator-0.2.2" 11843 sources."bail-1.0.5" 11844 sources."balanced-match-1.0.2" 11845 (sources."base-0.11.2" // { ··· 11851 sources."big.js-5.2.2" 11852 sources."binary-extensions-2.2.0" 11853 sources."bindings-1.5.0" 11854 + sources."blurhash-1.1.4" 11855 (sources."body-parser-1.19.0" // { 11856 dependencies = [ 11857 sources."bytes-3.1.0" ··· 11864 sources."boolbase-1.0.0" 11865 sources."brace-expansion-1.1.11" 11866 sources."braces-3.0.2" 11867 + sources."browserslist-4.17.0" 11868 + sources."buffer-from-1.1.2" 11869 sources."buffer-indexof-1.1.1" 11870 sources."builtin-modules-3.2.0" 11871 sources."bytes-3.0.0" 11872 + (sources."cacache-15.3.0" // { 11873 dependencies = [ 11874 sources."p-map-4.0.0" 11875 sources."rimraf-3.0.2" ··· 11882 sources."caller-path-2.0.0" 11883 sources."callsites-2.0.0" 11884 sources."camel-case-4.1.2" 11885 + sources."camelcase-5.3.1" 11886 + sources."camelcase-keys-6.2.2" 11887 sources."caniuse-api-3.0.0" 11888 + sources."caniuse-db-1.0.30001255" 11889 + sources."caniuse-lite-1.0.30001255" 11890 sources."ccount-1.1.0" 11891 sources."chalk-2.4.2" 11892 sources."character-entities-1.2.4" 11893 sources."character-entities-html4-1.1.4" 11894 sources."character-entities-legacy-1.1.4" 11895 sources."character-reference-invalid-1.1.4" 11896 + sources."chokidar-3.5.2" 11897 sources."chownr-2.0.0" 11898 sources."chrome-trace-event-1.0.3" 11899 (sources."class-utils-0.3.6" // { ··· 11936 sources."coa-2.0.2" 11937 sources."collapse-white-space-1.0.6" 11938 sources."collection-visit-1.0.0" 11939 + sources."color-3.2.1" 11940 sources."color-convert-1.9.3" 11941 sources."color-name-1.1.3" 11942 + sources."color-string-1.6.0" 11943 + sources."colorette-1.3.0" 11944 sources."commander-4.1.1" 11945 sources."common-tags-1.8.0" 11946 sources."commondir-1.0.1" ··· 11955 sources."concat-map-0.0.1" 11956 sources."confusing-browser-globals-1.0.10" 11957 sources."connect-history-api-fallback-1.6.0" 11958 sources."content-disposition-0.5.3" 11959 sources."content-type-1.0.4" 11960 + sources."convert-source-map-1.8.0" 11961 sources."cookie-0.4.0" 11962 sources."cookie-signature-1.0.6" 11963 sources."copy-descriptor-0.1.1" 11964 (sources."copy-webpack-plugin-6.4.1" // { 11965 dependencies = [ 11966 sources."array-union-2.1.0" 11967 + sources."globby-11.0.4" 11968 sources."loader-utils-2.0.0" 11969 sources."p-limit-3.1.0" 11970 + sources."schema-utils-3.1.1" 11971 ]; 11972 }) 11973 + sources."core-js-3.17.2" 11974 + (sources."core-js-compat-3.17.2" // { 11975 dependencies = [ 11976 sources."semver-7.0.0" 11977 ]; 11978 }) 11979 + sources."core-util-is-1.0.3" 11980 sources."cosmiconfig-5.2.1" 11981 sources."cross-spawn-7.0.3" 11982 + sources."crypto-random-string-2.0.0" 11983 sources."css-blank-pseudo-0.1.4" 11984 sources."css-color-names-0.0.4" 11985 sources."css-declaration-sorter-4.0.1" ··· 11989 sources."postcss-selector-parser-5.0.0" 11990 ]; 11991 }) 11992 + (sources."css-loader-5.2.7" // { 11993 dependencies = [ 11994 sources."loader-utils-2.0.0" 11995 + sources."postcss-8.3.6" 11996 + sources."schema-utils-3.1.1" 11997 sources."semver-7.3.5" 11998 ]; 11999 }) 12000 sources."css-prefers-color-scheme-3.1.1" ··· 12027 sources."type-1.2.0" 12028 ]; 12029 }) 12030 + sources."date-fns-2.23.0" 12031 sources."debug-4.3.2" 12032 sources."decamelize-1.2.0" 12033 (sources."decamelize-keys-1.1.0" // { ··· 12037 }) 12038 sources."decode-uri-component-0.2.0" 12039 sources."deep-equal-1.1.1" 12040 + sources."deep-is-0.1.4" 12041 + sources."deepmerge-4.2.2" 12042 (sources."default-gateway-4.2.0" // { 12043 dependencies = [ 12044 sources."cross-spawn-6.0.5" ··· 12058 sources."del-4.1.1" 12059 sources."depd-1.1.2" 12060 sources."destroy-1.0.4" 12061 + sources."detect-node-2.1.0" 12062 sources."dir-glob-3.0.1" 12063 sources."dns-equal-1.0.0" 12064 + sources."dns-packet-1.3.4" 12065 sources."dns-txt-2.0.2" 12066 sources."doctrine-3.0.0" 12067 sources."dom-converter-0.2.0" ··· 12082 sources."dot-prop-5.3.0" 12083 sources."ee-first-1.1.1" 12084 sources."ejs-2.7.4" 12085 + sources."electron-to-chromium-1.3.830" 12086 sources."emoji-regex-8.0.0" 12087 sources."emojis-list-3.0.0" 12088 sources."encodeurl-1.0.2" 12089 sources."end-of-stream-1.4.4" 12090 + (sources."enhanced-resolve-5.8.2" // { 12091 dependencies = [ 12092 sources."tapable-2.2.0" 12093 ]; ··· 12098 sources."epubjs-0.3.88" 12099 sources."errno-0.1.8" 12100 sources."error-ex-1.3.2" 12101 + sources."es-abstract-1.18.5" 12102 + sources."es-module-lexer-0.7.1" 12103 sources."es-to-primitive-1.2.1" 12104 sources."es5-ext-0.10.53" 12105 sources."es6-iterator-2.0.3" ··· 12108 sources."escalade-3.1.1" 12109 sources."escape-html-1.0.3" 12110 sources."escape-string-regexp-1.0.5" 12111 + (sources."eslint-7.32.0" // { 12112 dependencies = [ 12113 sources."@babel/code-frame-7.12.11" 12114 sources."ansi-styles-4.3.0" 12115 + sources."chalk-4.1.2" 12116 sources."color-convert-2.0.1" 12117 sources."color-name-1.1.4" 12118 + sources."escape-string-regexp-4.0.0" 12119 + sources."globals-13.11.0" 12120 sources."has-flag-4.0.0" 12121 sources."ignore-4.0.6" 12122 sources."import-fresh-3.3.0" 12123 sources."resolve-from-4.0.0" 12124 sources."semver-7.3.5" 12125 sources."supports-color-7.2.0" 12126 ]; 12127 }) 12128 + (sources."eslint-import-resolver-node-0.3.6" // { 12129 dependencies = [ 12130 + sources."debug-3.2.7" 12131 ]; 12132 }) 12133 + (sources."eslint-module-utils-2.6.2" // { 12134 dependencies = [ 12135 + sources."debug-3.2.7" 12136 sources."find-up-2.1.0" 12137 sources."locate-path-2.0.0" 12138 sources."p-limit-1.3.0" 12139 sources."p-locate-2.0.0" 12140 sources."p-try-1.0.0" ··· 12142 sources."pkg-dir-2.0.0" 12143 ]; 12144 }) 12145 + (sources."eslint-plugin-compat-3.13.0" // { 12146 dependencies = [ 12147 + sources."find-up-5.0.0" 12148 + sources."locate-path-6.0.0" 12149 + sources."p-limit-3.1.0" 12150 + sources."p-locate-5.0.0" 12151 + sources."semver-7.3.5" 12152 ]; 12153 }) 12154 sources."eslint-plugin-eslint-comments-3.2.0" 12155 + (sources."eslint-plugin-import-2.24.2" // { 12156 dependencies = [ 12157 sources."debug-2.6.9" 12158 + sources."doctrine-2.1.0" 12159 + sources."find-up-2.1.0" 12160 + sources."locate-path-2.0.0" 12161 sources."ms-2.0.0" 12162 + sources."p-limit-1.3.0" 12163 + sources."p-locate-2.0.0" 12164 + sources."p-try-1.0.0" 12165 + sources."path-exists-3.0.0" 12166 ]; 12167 }) 12168 sources."eslint-plugin-promise-4.3.1" 12169 sources."eslint-rule-composer-0.3.0" 12170 sources."eslint-scope-5.1.1" 12171 + (sources."eslint-utils-2.1.0" // { 12172 + dependencies = [ 12173 + sources."eslint-visitor-keys-1.3.0" 12174 + ]; 12175 + }) 12176 + sources."eslint-visitor-keys-2.1.0" 12177 + (sources."espree-7.3.1" // { 12178 + dependencies = [ 12179 + sources."eslint-visitor-keys-1.3.0" 12180 + ]; 12181 + }) 12182 sources."esprima-4.0.1" 12183 (sources."esquery-1.4.0" // { 12184 dependencies = [ ··· 12198 sources."eventemitter3-4.0.7" 12199 sources."events-3.3.0" 12200 sources."eventsource-1.1.0" 12201 + sources."execa-5.1.1" 12202 sources."execall-2.0.0" 12203 (sources."expand-brackets-2.1.4" // { 12204 dependencies = [ ··· 12224 (sources."expose-loader-1.0.3" // { 12225 dependencies = [ 12226 sources."loader-utils-2.0.0" 12227 + sources."schema-utils-3.1.1" 12228 ]; 12229 }) 12230 (sources."express-4.17.1" // { ··· 12235 sources."path-to-regexp-0.1.7" 12236 ]; 12237 }) 12238 + sources."ext-1.5.0" 12239 sources."extend-3.0.2" 12240 (sources."extend-shallow-3.0.2" // { 12241 dependencies = [ ··· 12249 ]; 12250 }) 12251 sources."fast-deep-equal-3.1.3" 12252 + sources."fast-glob-3.2.7" 12253 sources."fast-json-stable-stringify-2.1.0" 12254 sources."fast-levenshtein-2.0.6" 12255 sources."fast-text-encoding-1.0.3" 12256 sources."fastest-levenshtein-1.0.12" 12257 + sources."fastq-1.12.0" 12258 + sources."faye-websocket-0.11.4" 12259 sources."file-entry-cache-6.0.1" 12260 (sources."file-loader-6.2.0" // { 12261 dependencies = [ 12262 sources."loader-utils-2.0.0" 12263 + sources."schema-utils-3.1.1" 12264 ]; 12265 }) 12266 sources."file-uri-to-path-1.0.0" ··· 12271 sources."ms-2.0.0" 12272 ]; 12273 }) 12274 + sources."find-cache-dir-3.3.2" 12275 sources."find-up-4.1.0" 12276 (sources."flat-cache-3.0.4" // { 12277 dependencies = [ 12278 sources."rimraf-3.0.2" 12279 ]; 12280 }) 12281 + sources."flatted-3.2.2" 12282 sources."flatten-1.0.3" 12283 + sources."flv.js-1.6.1" 12284 + sources."follow-redirects-1.14.3" 12285 sources."fontsource-noto-sans-3.1.5" 12286 sources."fontsource-noto-sans-hk-3.1.5" 12287 sources."fontsource-noto-sans-jp-3.1.5" 12288 sources."fontsource-noto-sans-kr-3.1.5" 12289 sources."fontsource-noto-sans-sc-3.1.5" 12290 sources."for-in-1.0.2" 12291 + sources."forwarded-0.2.0" 12292 sources."fragment-cache-0.2.1" 12293 sources."fresh-0.5.2" 12294 + sources."fs-extra-9.1.0" 12295 sources."fs-minipass-2.1.0" 12296 sources."fs.realpath-1.0.0" 12297 sources."fsevents-2.3.2" ··· 12305 sources."get-stdin-8.0.0" 12306 sources."get-stream-6.0.1" 12307 sources."get-value-2.0.6" 12308 + sources."glob-7.1.7" 12309 sources."glob-parent-5.1.2" 12310 sources."glob-to-regexp-0.3.0" 12311 sources."global-modules-2.0.0" ··· 12322 }) 12323 sources."globjoin-0.1.4" 12324 sources."gonzales-pe-4.3.0" 12325 + sources."graceful-fs-4.2.8" 12326 sources."handle-thing-2.0.1" 12327 sources."hard-rejection-2.1.0" 12328 sources."has-1.0.3" ··· 12334 sources."has-bigints-1.0.1" 12335 sources."has-flag-3.0.0" 12336 sources."has-symbols-1.0.2" 12337 + sources."has-tostringtag-1.0.0" 12338 sources."has-value-1.0.0" 12339 (sources."has-values-1.0.0" // { 12340 dependencies = [ ··· 12359 (sources."html-loader-1.3.2" // { 12360 dependencies = [ 12361 sources."loader-utils-2.0.0" 12362 + sources."schema-utils-3.1.1" 12363 ]; 12364 }) 12365 sources."html-minifier-terser-5.1.1" ··· 12371 }) 12372 (sources."htmlparser2-4.1.0" // { 12373 dependencies = [ 12374 + (sources."dom-serializer-1.3.2" // { 12375 dependencies = [ 12376 + sources."domhandler-4.2.2" 12377 ]; 12378 }) 12379 sources."domelementtype-2.2.0" 12380 + (sources."domutils-2.8.0" // { 12381 dependencies = [ 12382 + sources."domhandler-4.2.2" 12383 ]; 12384 }) 12385 ]; ··· 12405 ]; 12406 }) 12407 sources."human-signals-2.1.0" 12408 + sources."iconv-lite-0.6.3" 12409 sources."icss-utils-5.1.0" 12410 + sources."idb-6.1.3" 12411 sources."ignore-5.1.8" 12412 sources."immediate-3.0.6" 12413 sources."import-cwd-2.1.0" ··· 12423 sources."inherits-2.0.4" 12424 sources."ini-1.3.8" 12425 sources."internal-ip-4.3.0" 12426 + sources."internal-slot-1.0.3" 12427 sources."interpret-2.2.0" 12428 sources."intersection-observer-0.12.0" 12429 sources."ip-1.1.5" ··· 12435 sources."is-alphabetical-1.0.4" 12436 sources."is-alphanumeric-1.0.0" 12437 sources."is-alphanumerical-1.0.4" 12438 + sources."is-arguments-1.1.1" 12439 sources."is-arrayish-0.2.1" 12440 + sources."is-bigint-1.0.4" 12441 sources."is-binary-path-2.1.0" 12442 + sources."is-boolean-object-1.1.2" 12443 sources."is-buffer-2.0.5" 12444 + sources."is-callable-1.2.4" 12445 sources."is-color-stop-1.1.0" 12446 + sources."is-core-module-2.6.0" 12447 sources."is-data-descriptor-1.0.0" 12448 + sources."is-date-object-1.0.5" 12449 sources."is-decimal-1.0.4" 12450 sources."is-descriptor-1.0.2" 12451 sources."is-directory-0.3.1" ··· 12457 sources."is-module-1.0.0" 12458 sources."is-negative-zero-2.0.1" 12459 sources."is-number-7.0.0" 12460 + sources."is-number-object-1.0.6" 12461 sources."is-obj-2.0.0" 12462 sources."is-path-cwd-2.2.0" 12463 sources."is-path-in-cwd-2.1.0" 12464 sources."is-path-inside-2.1.0" 12465 sources."is-plain-obj-2.1.0" 12466 sources."is-plain-object-2.0.4" 12467 + sources."is-regex-1.1.4" 12468 sources."is-regexp-2.1.0" 12469 sources."is-resolvable-1.1.0" 12470 + sources."is-stream-2.0.1" 12471 + sources."is-string-1.0.7" 12472 sources."is-supported-regexp-flag-1.0.1" 12473 + sources."is-symbol-1.0.4" 12474 sources."is-typedarray-1.0.0" 12475 sources."is-unicode-supported-0.1.0" 12476 sources."is-whitespace-character-1.0.4" ··· 12481 sources."isexe-2.0.0" 12482 sources."isobject-3.0.1" 12483 sources."jellyfin-apiclient-1.8.0" 12484 + (sources."jest-worker-27.1.0" // { 12485 dependencies = [ 12486 sources."has-flag-4.0.0" 12487 + sources."supports-color-8.1.1" 12488 ]; 12489 }) 12490 sources."jquery-3.6.0" ··· 12494 sources."jsesc-2.5.2" 12495 sources."json-parse-better-errors-1.0.2" 12496 sources."json-parse-even-better-errors-2.3.1" 12497 + sources."json-schema-0.3.0" 12498 sources."json-schema-traverse-0.4.1" 12499 sources."json-stable-stringify-without-jsonify-1.0.1" 12500 sources."json3-3.3.3" 12501 sources."json5-2.2.0" 12502 + sources."jsonfile-6.1.0" 12503 + sources."jsonpointer-4.1.0" 12504 + sources."jstree-3.3.12" 12505 + sources."jszip-3.7.1" 12506 sources."killable-1.0.1" 12507 sources."kind-of-6.0.3" 12508 sources."klona-2.0.4" ··· 12513 sources."libass-wasm-https://github.com/jellyfin/JavascriptSubtitlesOctopus/archive/refs/tags/4.0.0-jf-smarttv.tar.gz" 12514 sources."lie-3.3.0" 12515 sources."lines-and-columns-1.1.6" 12516 + (sources."load-json-file-4.0.0" // { 12517 dependencies = [ 12518 + sources."pify-3.0.0" 12519 ]; 12520 }) 12521 sources."loader-runner-4.2.0" ··· 12524 sources."json5-1.0.1" 12525 ]; 12526 }) 12527 + (sources."localforage-1.10.0" // { 12528 dependencies = [ 12529 sources."lie-3.1.1" 12530 ]; 12531 }) 12532 sources."locate-path-5.0.0" 12533 sources."lodash-4.17.21" 12534 sources."lodash.clonedeep-4.5.0" 12535 sources."lodash.debounce-4.0.8" 12536 sources."lodash.memoize-4.1.2" 12537 + sources."lodash.merge-4.6.2" 12538 + sources."lodash.sortby-4.7.0" 12539 sources."lodash.truncate-4.4.2" 12540 sources."lodash.uniq-4.5.0" 12541 (sources."log-symbols-4.1.0" // { 12542 dependencies = [ 12543 sources."ansi-styles-4.3.0" 12544 + sources."chalk-4.1.2" 12545 sources."color-convert-2.0.1" 12546 sources."color-name-1.1.4" 12547 sources."has-flag-4.0.0" ··· 12573 (sources."meow-9.0.0" // { 12574 dependencies = [ 12575 sources."hosted-git-info-4.0.2" 12576 + sources."normalize-package-data-3.0.3" 12577 sources."parse-json-5.2.0" 12578 (sources."read-pkg-5.2.0" // { 12579 dependencies = [ ··· 12599 sources."micromark-2.11.4" 12600 sources."micromatch-4.0.4" 12601 sources."mime-1.6.0" 12602 + sources."mime-db-1.49.0" 12603 + sources."mime-types-2.1.32" 12604 sources."mimic-fn-2.1.0" 12605 sources."min-indent-1.0.1" 12606 sources."minimalistic-assert-1.0.1" ··· 12625 sources."ms-2.1.2" 12626 sources."multicast-dns-6.2.3" 12627 sources."multicast-dns-service-types-1.1.0" 12628 + sources."nan-2.15.0" 12629 + sources."nanoid-3.1.25" 12630 sources."nanomatch-1.2.13" 12631 sources."native-promise-only-0.8.1" 12632 sources."natural-compare-1.4.0" ··· 12636 sources."nice-try-1.0.5" 12637 sources."no-case-3.0.4" 12638 sources."node-forge-0.10.0" 12639 + sources."node-releases-1.1.75" 12640 (sources."normalize-package-data-2.5.0" // { 12641 dependencies = [ 12642 sources."semver-5.7.1" ··· 12664 sources."kind-of-3.2.2" 12665 ]; 12666 }) 12667 + sources."object-inspect-1.11.0" 12668 sources."object-is-1.1.5" 12669 sources."object-keys-1.1.1" 12670 sources."object-visit-1.0.1" 12671 sources."object.assign-4.1.2" 12672 sources."object.getownpropertydescriptors-2.1.2" 12673 sources."object.pick-1.3.0" 12674 + sources."object.values-1.1.4" 12675 sources."obuf-1.1.2" 12676 sources."on-finished-2.3.0" 12677 sources."on-headers-1.0.2" ··· 12704 sources."path-is-absolute-1.0.1" 12705 sources."path-is-inside-1.0.2" 12706 sources."path-key-3.1.1" 12707 + sources."path-parse-1.0.7" 12708 (sources."path-to-regexp-1.2.1" // { 12709 dependencies = [ 12710 sources."isarray-0.0.1" ··· 12713 sources."path-type-4.0.0" 12714 sources."path-webpack-0.0.3" 12715 sources."pdfjs-dist-2.5.207" 12716 + sources."picomatch-2.3.0" 12717 sources."pify-4.0.1" 12718 sources."pinkie-2.0.4" 12719 sources."pinkie-promise-2.0.1" 12720 sources."pkg-dir-4.2.0" 12721 + (sources."pkg-up-2.0.0" // { 12722 + dependencies = [ 12723 + sources."find-up-2.1.0" 12724 + sources."locate-path-2.0.0" 12725 + sources."p-limit-1.3.0" 12726 + sources."p-locate-2.0.0" 12727 + sources."p-try-1.0.0" 12728 + sources."path-exists-3.0.0" 12729 + ]; 12730 + }) 12731 sources."plur-2.1.2" 12732 (sources."portfinder-1.0.28" // { 12733 dependencies = [ ··· 12736 ]; 12737 }) 12738 sources."posix-character-classes-0.1.1" 12739 + (sources."postcss-7.0.36" // { 12740 dependencies = [ 12741 sources."source-map-0.6.1" 12742 sources."supports-color-6.1.0" ··· 12929 sources."postcss-scss-2.1.1" 12930 sources."postcss-selector-matches-4.0.0" 12931 sources."postcss-selector-not-4.0.1" 12932 + sources."postcss-selector-parser-6.0.6" 12933 sources."postcss-sorting-4.1.0" 12934 (sources."postcss-svgo-4.0.3" // { 12935 dependencies = [ ··· 12946 sources."process-nextick-args-2.0.1" 12947 sources."progress-2.0.3" 12948 sources."promise-inflight-1.0.1" 12949 + sources."proxy-addr-2.0.7" 12950 sources."prr-1.0.1" 12951 sources."pump-3.0.0" 12952 sources."punycode-2.1.1" ··· 12965 ]; 12966 }) 12967 sources."read-file-stdin-0.2.1" 12968 + (sources."read-pkg-3.0.0" // { 12969 dependencies = [ 12970 + sources."path-type-3.0.0" 12971 + sources."pify-3.0.0" 12972 ]; 12973 }) 12974 + (sources."read-pkg-up-3.0.0" // { 12975 dependencies = [ 12976 sources."find-up-2.1.0" 12977 sources."locate-path-2.0.0" ··· 12982 ]; 12983 }) 12984 sources."readable-stream-2.3.7" 12985 + sources."readdirp-3.6.0" 12986 + sources."rechoir-0.7.1" 12987 sources."redent-3.0.0" 12988 sources."regenerate-1.4.2" 12989 sources."regenerate-unicode-properties-8.2.0" 12990 + sources."regenerator-runtime-0.13.9" 12991 sources."regenerator-transform-0.14.5" 12992 sources."regex-not-1.0.2" 12993 sources."regexp.prototype.flags-1.3.1" 12994 + sources."regexpp-3.2.0" 12995 sources."regexpu-core-4.7.1" 12996 sources."regjsgen-0.5.2" 12997 (sources."regjsparser-0.6.9" // { ··· 13004 sources."remark-parse-9.0.0" 13005 sources."remark-stringify-9.0.1" 13006 sources."remove-trailing-separator-1.1.0" 13007 + (sources."renderkid-2.0.7" // { 13008 dependencies = [ 13009 sources."ansi-regex-2.1.1" 13010 + sources."css-select-4.1.3" 13011 + sources."css-what-5.0.1" 13012 + sources."dom-serializer-1.3.2" 13013 + sources."domelementtype-2.2.0" 13014 + sources."domhandler-4.2.2" 13015 + sources."domutils-2.8.0" 13016 + sources."htmlparser2-6.1.0" 13017 + sources."nth-check-2.0.0" 13018 sources."strip-ansi-3.0.1" 13019 ]; 13020 }) ··· 13040 sources."rgb-regex-1.0.1" 13041 sources."rgba-regex-1.0.0" 13042 sources."rimraf-2.7.1" 13043 + sources."rollup-2.56.3" 13044 + (sources."rollup-plugin-terser-7.0.2" // { 13045 dependencies = [ 13046 + sources."commander-2.20.3" 13047 + sources."has-flag-4.0.0" 13048 + sources."jest-worker-26.6.2" 13049 sources."serialize-javascript-4.0.0" 13050 + sources."source-map-0.7.3" 13051 + sources."supports-color-7.2.0" 13052 + sources."terser-5.7.2" 13053 ]; 13054 }) 13055 sources."run-parallel-1.2.0" 13056 sources."safe-buffer-5.1.2" 13057 sources."safe-regex-1.1.0" 13058 sources."safer-buffer-2.1.2" 13059 + sources."sass-1.39.0" 13060 + (sources."sass-loader-10.2.0" // { 13061 dependencies = [ 13062 sources."loader-utils-2.0.0" 13063 + sources."schema-utils-3.1.1" 13064 sources."semver-7.3.5" 13065 ]; 13066 }) ··· 13102 sources."shallow-clone-3.0.1" 13103 sources."shebang-command-2.0.0" 13104 sources."shebang-regex-3.0.0" 13105 + sources."side-channel-1.0.4" 13106 sources."signal-exit-3.0.3" 13107 (sources."simple-swizzle-0.2.2" // { 13108 dependencies = [ ··· 13150 ]; 13151 }) 13152 sources."sockjs-0.3.21" 13153 + (sources."sockjs-client-1.5.2" // { 13154 dependencies = [ 13155 sources."debug-3.2.7" 13156 ]; 13157 }) 13158 + sources."sortablejs-1.14.0" 13159 sources."source-list-map-2.0.1" 13160 sources."source-map-0.5.7" 13161 + sources."source-map-js-0.6.2" 13162 (sources."source-map-loader-1.1.3" // { 13163 dependencies = [ 13164 sources."loader-utils-2.0.0" 13165 + sources."schema-utils-3.1.1" 13166 sources."source-map-0.6.1" 13167 ]; 13168 }) ··· 13177 sources."spdx-correct-3.1.1" 13178 sources."spdx-exceptions-2.3.0" 13179 sources."spdx-expression-parse-3.0.1" 13180 + sources."spdx-license-ids-3.0.10" 13181 sources."spdy-4.0.2" 13182 (sources."spdy-transport-3.0.0" // { 13183 dependencies = [ ··· 13223 }) 13224 sources."strip-ansi-6.0.0" 13225 sources."strip-bom-3.0.0" 13226 + sources."strip-comments-2.0.1" 13227 sources."strip-eof-1.0.0" 13228 sources."strip-final-newline-2.0.0" 13229 sources."strip-indent-3.0.0" ··· 13231 (sources."style-loader-2.0.0" // { 13232 dependencies = [ 13233 sources."loader-utils-2.0.0" 13234 + sources."schema-utils-3.1.1" 13235 ]; 13236 }) 13237 sources."style-search-0.1.0" ··· 13245 sources."ansi-styles-4.3.0" 13246 sources."array-union-2.1.0" 13247 sources."balanced-match-2.0.0" 13248 + sources."chalk-4.1.2" 13249 sources."color-convert-2.0.1" 13250 sources."color-name-1.1.4" 13251 + sources."cosmiconfig-7.0.1" 13252 + sources."globby-11.0.4" 13253 sources."has-flag-4.0.0" 13254 (sources."import-fresh-3.3.0" // { 13255 dependencies = [ ··· 13284 sources."extend-shallow-2.0.1" 13285 ]; 13286 }) 13287 sources."flat-cache-2.0.1" 13288 sources."flatted-2.0.2" 13289 sources."get-stdin-6.0.0" ··· 13301 sources."is-regexp-1.0.0" 13302 sources."kind-of-3.2.2" 13303 sources."known-css-properties-0.11.0" 13304 sources."log-symbols-2.2.0" 13305 sources."map-obj-2.0.0" 13306 sources."meow-5.0.0" 13307 sources."micromatch-3.1.10" 13308 sources."minimist-options-3.0.2" 13309 sources."path-type-3.0.0" 13310 sources."pify-3.0.0" 13311 sources."postcss-sass-0.3.5" 13312 sources."postcss-selector-parser-3.1.2" 13313 sources."postcss-value-parser-3.3.1" 13314 sources."quick-lru-1.1.0" 13315 sources."redent-2.0.0" 13316 sources."resolve-from-4.0.0" 13317 sources."rimraf-2.6.3" ··· 13347 sources."fast-glob-2.2.7" 13348 sources."file-entry-cache-4.0.0" 13349 sources."fill-range-4.0.0" 13350 sources."flat-cache-2.0.1" 13351 sources."flatted-2.0.2" 13352 sources."get-stdin-6.0.0" ··· 13365 sources."is-regexp-1.0.0" 13366 sources."kind-of-3.2.2" 13367 sources."known-css-properties-0.11.0" 13368 sources."log-symbols-1.0.2" 13369 sources."map-obj-2.0.0" 13370 sources."meow-5.0.0" 13371 sources."micromatch-3.1.10" 13372 sources."minimist-options-3.0.2" 13373 sources."path-type-3.0.0" 13374 sources."pify-3.0.0" 13375 (sources."postcss-5.2.18" // { ··· 13387 ]; 13388 }) 13389 sources."has-flag-3.0.0" 13390 + sources."postcss-7.0.36" 13391 sources."supports-color-6.1.0" 13392 ]; 13393 }) 13394 sources."postcss-selector-parser-2.2.3" 13395 sources."postcss-value-parser-3.3.1" 13396 sources."quick-lru-1.1.0" 13397 sources."redent-2.0.0" 13398 sources."resolve-from-4.0.0" 13399 sources."rimraf-2.6.3" ··· 13419 sources."chalk-2.4.2" 13420 sources."has-flag-3.0.0" 13421 sources."log-symbols-2.2.0" 13422 + (sources."postcss-7.0.36" // { 13423 dependencies = [ 13424 sources."supports-color-6.1.0" 13425 ]; ··· 13441 sources."postcss-sorting-5.0.1" 13442 ]; 13443 }) 13444 + sources."stylelint-scss-3.20.1" 13445 sources."sugarss-2.0.0" 13446 sources."supports-color-5.5.0" 13447 sources."svg-tags-1.0.0" ··· 13450 sources."mkdirp-0.5.5" 13451 ]; 13452 }) 13453 + sources."swiper-6.8.4" 13454 + (sources."table-6.7.1" // { 13455 dependencies = [ 13456 + sources."ajv-8.6.2" 13457 sources."json-schema-traverse-1.0.0" 13458 ]; 13459 }) 13460 sources."tapable-1.1.3" 13461 + sources."tar-6.1.11" 13462 + sources."temp-dir-2.0.0" 13463 + (sources."tempy-0.6.0" // { 13464 dependencies = [ 13465 + sources."type-fest-0.16.0" 13466 ]; 13467 }) 13468 (sources."terser-4.8.0" // { ··· 13471 sources."source-map-0.6.1" 13472 ]; 13473 }) 13474 + (sources."terser-webpack-plugin-5.2.3" // { 13475 dependencies = [ 13476 sources."commander-2.20.3" 13477 sources."p-limit-3.1.0" 13478 + sources."schema-utils-3.1.1" 13479 + sources."serialize-javascript-6.0.0" 13480 sources."source-map-0.6.1" 13481 + (sources."terser-5.7.2" // { 13482 dependencies = [ 13483 sources."source-map-0.7.3" 13484 ]; ··· 13498 sources."to-regex-3.0.2" 13499 sources."to-regex-range-5.0.1" 13500 sources."toidentifier-1.0.0" 13501 + sources."tr46-1.0.1" 13502 sources."trim-0.0.1" 13503 + sources."trim-newlines-3.0.1" 13504 sources."trim-trailing-lines-1.1.4" 13505 sources."trough-1.0.5" 13506 + (sources."tsconfig-paths-3.11.0" // { 13507 dependencies = [ 13508 sources."json5-1.0.1" 13509 ]; 13510 }) 13511 + sources."tslib-2.3.1" 13512 sources."type-2.5.0" 13513 sources."type-check-0.4.0" 13514 + sources."type-fest-0.20.2" 13515 sources."type-is-1.6.18" 13516 sources."typedarray-to-buffer-3.1.5" 13517 sources."unbox-primitive-1.0.1" ··· 13520 sources."unicode-match-property-ecmascript-1.0.4" 13521 sources."unicode-match-property-value-ecmascript-1.2.0" 13522 sources."unicode-property-aliases-ecmascript-1.1.0" 13523 + sources."unified-9.2.2" 13524 sources."union-value-1.0.1" 13525 sources."uniq-1.0.1" 13526 sources."uniqs-2.0.0" 13527 sources."unique-filename-1.1.1" 13528 sources."unique-slug-2.0.2" 13529 + sources."unique-string-2.0.0" 13530 sources."unist-util-find-all-after-3.0.2" 13531 sources."unist-util-is-4.1.0" 13532 sources."unist-util-remove-position-1.1.4" ··· 13537 sources."unist-util-is-3.0.0" 13538 ]; 13539 }) 13540 + sources."universalify-2.0.0" 13541 sources."unpipe-1.0.0" 13542 sources."unquote-1.1.1" 13543 (sources."unset-value-1.0.0" // { ··· 13558 sources."punycode-1.3.2" 13559 ]; 13560 }) 13561 + sources."url-parse-1.5.3" 13562 + sources."url-toolkit-2.2.3" 13563 sources."use-3.1.1" 13564 sources."util-deprecate-1.0.2" 13565 sources."util.promisify-1.0.1" ··· 13573 sources."vfile-4.2.1" 13574 sources."vfile-location-2.0.6" 13575 sources."vfile-message-2.0.4" 13576 + (sources."watchpack-2.2.0" // { 13577 dependencies = [ 13578 sources."glob-to-regexp-0.4.1" 13579 ]; 13580 }) 13581 sources."wbuf-1.7.3" 13582 sources."webcomponents.js-0.7.24" 13583 + sources."webidl-conversions-4.0.2" 13584 + (sources."webpack-5.52.0" // { 13585 dependencies = [ 13586 + sources."acorn-8.4.1" 13587 sources."glob-to-regexp-0.4.1" 13588 + sources."schema-utils-3.1.1" 13589 sources."tapable-2.2.0" 13590 + sources."webpack-sources-3.2.0" 13591 ]; 13592 }) 13593 + (sources."webpack-cli-4.8.0" // { 13594 dependencies = [ 13595 sources."commander-7.2.0" 13596 + sources."webpack-merge-5.8.0" 13597 ]; 13598 }) 13599 (sources."webpack-dev-middleware-3.7.3" // { ··· 13648 }) 13649 sources."websocket-driver-0.7.4" 13650 sources."websocket-extensions-0.1.4" 13651 + sources."webworkify-webpack-2.1.5" 13652 sources."whatwg-fetch-3.6.2" 13653 sources."whatwg-mimetype-2.3.0" 13654 + sources."whatwg-url-7.1.0" 13655 sources."which-2.0.2" 13656 sources."which-boxed-primitive-1.0.2" 13657 sources."which-module-2.0.0" 13658 sources."wildcard-2.0.0" 13659 sources."word-wrap-1.2.3" 13660 + (sources."workbox-background-sync-6.2.4" // { 13661 dependencies = [ 13662 + sources."workbox-core-6.2.4" 13663 ]; 13664 }) 13665 + (sources."workbox-broadcast-update-6.2.4" // { 13666 + dependencies = [ 13667 + sources."workbox-core-6.2.4" 13668 + ]; 13669 + }) 13670 + (sources."workbox-build-6.2.4" // { 13671 + dependencies = [ 13672 + sources."ajv-8.6.2" 13673 + sources."json-schema-traverse-1.0.0" 13674 + sources."source-map-0.8.0-beta.0" 13675 + sources."workbox-core-6.2.4" 13676 + sources."workbox-precaching-6.2.4" 13677 + ]; 13678 + }) 13679 + (sources."workbox-cacheable-response-6.2.4" // { 13680 + dependencies = [ 13681 + sources."workbox-core-6.2.4" 13682 + ]; 13683 + }) 13684 sources."workbox-core-5.1.4" 13685 + (sources."workbox-expiration-6.2.4" // { 13686 + dependencies = [ 13687 + sources."workbox-core-6.2.4" 13688 + ]; 13689 + }) 13690 + (sources."workbox-google-analytics-6.2.4" // { 13691 + dependencies = [ 13692 + sources."workbox-core-6.2.4" 13693 + ]; 13694 + }) 13695 + (sources."workbox-navigation-preload-6.2.4" // { 13696 + dependencies = [ 13697 + sources."workbox-core-6.2.4" 13698 + ]; 13699 + }) 13700 sources."workbox-precaching-5.1.4" 13701 + (sources."workbox-range-requests-6.2.4" // { 13702 + dependencies = [ 13703 + sources."workbox-core-6.2.4" 13704 + ]; 13705 + }) 13706 + (sources."workbox-recipes-6.2.4" // { 13707 + dependencies = [ 13708 + sources."workbox-core-6.2.4" 13709 + sources."workbox-precaching-6.2.4" 13710 + ]; 13711 + }) 13712 + (sources."workbox-routing-6.2.4" // { 13713 + dependencies = [ 13714 + sources."workbox-core-6.2.4" 13715 + ]; 13716 + }) 13717 + (sources."workbox-strategies-6.2.4" // { 13718 + dependencies = [ 13719 + sources."workbox-core-6.2.4" 13720 + ]; 13721 + }) 13722 + (sources."workbox-streams-6.2.4" // { 13723 + dependencies = [ 13724 + sources."workbox-core-6.2.4" 13725 + ]; 13726 + }) 13727 + sources."workbox-sw-6.2.4" 13728 + sources."workbox-webpack-plugin-6.2.4" 13729 + (sources."workbox-window-6.2.4" // { 13730 + dependencies = [ 13731 + sources."workbox-core-6.2.4" 13732 + ]; 13733 + }) 13734 + sources."worker-plugin-5.0.1" 13735 (sources."wrap-ansi-5.1.0" // { 13736 dependencies = [ 13737 sources."ansi-regex-4.1.0" ··· 13749 }) 13750 sources."write-file-atomic-3.0.3" 13751 sources."write-file-stdout-0.0.2" 13752 + sources."ws-6.2.2" 13753 sources."x-is-string-0.1.0" 13754 sources."xmldom-0.3.0" 13755 sources."xtend-4.0.2" ··· 13759 (sources."yargs-13.3.2" // { 13760 dependencies = [ 13761 sources."ansi-regex-4.1.0" 13762 sources."emoji-regex-7.0.3" 13763 sources."find-up-3.0.0" 13764 sources."is-fullwidth-code-point-2.0.0" ··· 13770 sources."yargs-parser-13.1.2" 13771 ]; 13772 }) 13773 + sources."yargs-parser-20.2.9" 13774 sources."yocto-queue-0.1.0" 13775 sources."zwitch-1.0.5" 13776 ];
+2 -2
pkgs/servers/jellyfin/web.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "jellyfin-web"; 10 - version = "10.7.6"; 11 # TODO: on the next major release remove src.postFetch 12 # and use the lock file in web-update.sh: 13 # https://github.com/jellyfin/jellyfin-web/commit/6efef9680d55a93f4333ef8bfb65a8a650c99a49 ··· 16 owner = "jellyfin"; 17 repo = "jellyfin-web"; 18 rev = "v${version}"; 19 - sha256 = "T5a17mAvx7fLla2jQp1dNswijeUbBQB1RA1ZkVpLWqM="; 20 postFetch = '' 21 mkdir -p $out 22 cd $out
··· 7 8 stdenv.mkDerivation rec { 9 pname = "jellyfin-web"; 10 + version = "10.7.7"; 11 # TODO: on the next major release remove src.postFetch 12 # and use the lock file in web-update.sh: 13 # https://github.com/jellyfin/jellyfin-web/commit/6efef9680d55a93f4333ef8bfb65a8a650c99a49 ··· 16 owner = "jellyfin"; 17 repo = "jellyfin-web"; 18 rev = "v${version}"; 19 + sha256 = "RDp51IWQ0Woz26cVgWsiLc8DyZztI2ysPbhmOR3jguE="; 20 postFetch = '' 21 mkdir -p $out 22 cd $out
+3 -3
pkgs/servers/klipper/default.nix
··· 6 }: 7 stdenv.mkDerivation rec { 8 pname = "klipper"; 9 - version = "unstable-2021-07-15"; 10 11 src = fetchFromGitHub { 12 owner = "KevinOConnor"; 13 repo = "klipper"; 14 - rev = "dafb74e3aba707db364ed773bb2135084ac0fffa"; 15 - sha256 = "sha256-wF5I8Mo89ohhysBRDMtkCDbCW9SKWrdYdbifmxCPJBc="; 16 }; 17 18 # We have no LTO on i686 since commit 22284b0
··· 6 }: 7 stdenv.mkDerivation rec { 8 pname = "klipper"; 9 + version = "unstable-2021-09-03"; 10 11 src = fetchFromGitHub { 12 owner = "KevinOConnor"; 13 repo = "klipper"; 14 + rev = "c84956befe88daeeb9512acaa9fa82395665df16"; 15 + sha256 = "sha256-dHFIeA2RCoqC0ROYUUbSoLZ4frRWBJaNJWohpK8xN7I="; 16 }; 17 18 # We have no LTO on i686 since commit 22284b0
+2 -2
pkgs/servers/matrix-synapse/plugins/ldap3.nix
··· 2 3 buildPythonPackage rec { 4 pname = "matrix-synapse-ldap3"; 5 - version = "0.1.4"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "01bms89sl16nyh9f141idsz4mnhxvjrc3gj721wxh1fhikps0djx"; 10 }; 11 12 propagatedBuildInputs = [ service-identity ldap3 twisted ];
··· 2 3 buildPythonPackage rec { 4 pname = "matrix-synapse-ldap3"; 5 + version = "0.1.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "9fdf8df7c8ec756642aa0fea53b31c0b2f1924f70d7f049a2090b523125456fe"; 10 }; 11 12 propagatedBuildInputs = [ service-identity ldap3 twisted ];
+2 -2
pkgs/servers/matrix-synapse/plugins/mjolnir-antispam.nix
··· 2 3 buildPythonPackage rec { 4 pname = "matrix-synapse-mjolnir-antispam"; 5 - version = "0.1.17"; 6 7 src = fetchFromGitHub { 8 owner = "matrix-org"; 9 repo = "mjolnir"; 10 rev = "v${version}"; 11 - sha256 = "sha256-uBI5AllXWgl3eL60WZ/j11Tt7QpY7CKcmFQOU74/Qjs="; 12 }; 13 14 sourceRoot = "./source/synapse_antispam";
··· 2 3 buildPythonPackage rec { 4 pname = "matrix-synapse-mjolnir-antispam"; 5 + version = "0.1.19"; 6 7 src = fetchFromGitHub { 8 owner = "matrix-org"; 9 repo = "mjolnir"; 10 rev = "v${version}"; 11 + sha256 = "09g2h5qj725745ljxff4vh05zy7lzcmvdz0bkxxhpjhs48jdlq3k"; 12 }; 13 14 sourceRoot = "./source/synapse_antispam";
+3 -3
pkgs/servers/moonraker/default.nix
··· 14 ]); 15 in stdenvNoCC.mkDerivation rec { 16 pname = "moonraker"; 17 - version = "unstable-2021-07-18"; 18 19 src = fetchFromGitHub { 20 owner = "Arksine"; 21 repo = "moonraker"; 22 - rev = "42f61ceafa90fcfea8bffbe968e26a6fd8b61af6"; 23 - sha256 = "1w6l9pgs4n4nnk3h40y346bf6j3v4j4h1qnhj5dwlbwdxiqpd9gs"; 24 }; 25 26 nativeBuildInputs = [ makeWrapper ];
··· 14 ]); 15 in stdenvNoCC.mkDerivation rec { 16 pname = "moonraker"; 17 + version = "unstable-2021-09-04"; 18 19 src = fetchFromGitHub { 20 owner = "Arksine"; 21 repo = "moonraker"; 22 + rev = "db3f69e0dddcc8ac07e895a9a65906a8e08707e7"; 23 + sha256 = "uam3Vp/NA8HWxqqy6l8UkeaR5OSqHMwb5uXUL4E0jBQ="; 24 }; 25 26 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/servers/nextcloud/news-updater.nix
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "nextcloud-news-updater"; 5 - version = "10.0.1"; 6 7 src = fetchurl { 8 url = "mirror://pypi/n/nextcloud_news_updater/nextcloud_news_updater-${version}.tar.gz"; 9 - sha256 = "14jj3w417wfsm1ki34d980b0s6vfn8i29g4c66qb2fizdq1d0z6q"; 10 }; 11 12 doCheck = false;
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "nextcloud-news-updater"; 5 + version = "11.0.0"; 6 7 src = fetchurl { 8 url = "mirror://pypi/n/nextcloud_news_updater/nextcloud_news_updater-${version}.tar.gz"; 9 + sha256 = "bc2055c16f0dbf610b7e17650508a18fa5a1de652ecdf69c5d4073c97376e9cf"; 10 }; 11 12 doCheck = false;
+1 -1
pkgs/servers/sql/postgresql/ext/age.nix
··· 57 description = "A graph database extension for PostgreSQL"; 58 homepage = "https://github.com/bitnine-oss/AgensGraph-Extension"; 59 changelog = "https://github.com/bitnine-oss/AgensGraph-Extension/releases/tag/v${version}"; 60 - maintainers = with maintainers; [ danieldk ]; 61 platforms = postgresql.meta.platforms; 62 license = licenses.asl20; 63 broken = versionOlder postgresql.version "11.0";
··· 57 description = "A graph database extension for PostgreSQL"; 58 homepage = "https://github.com/bitnine-oss/AgensGraph-Extension"; 59 changelog = "https://github.com/bitnine-oss/AgensGraph-Extension/releases/tag/v${version}"; 60 + maintainers = with maintainers; [ ]; 61 platforms = postgresql.meta.platforms; 62 license = licenses.asl20; 63 broken = versionOlder postgresql.version "11.0";
+3 -3
pkgs/servers/unpackerr/default.nix
··· 2 3 buildGoModule rec { 4 pname = "unpackerr"; 5 - version = "0.9.7"; 6 7 src = fetchFromGitHub { 8 owner = "davidnewhall"; 9 repo = "unpackerr"; 10 rev = "v${version}"; 11 - sha256 = "sha256-OJDFPSXbJffiKW1SmMptPxj69YU7cuOU1LgIiInurCM="; 12 }; 13 14 - vendorSha256 = "sha256-n8gRefr+MyiSaATG1mZrS3lx4oDEfbQ1LQxQ6vp5l0Y="; 15 16 buildInputs = lib.optionals stdenv.isDarwin [ Cocoa WebKit ]; 17
··· 2 3 buildGoModule rec { 4 pname = "unpackerr"; 5 + version = "0.9.8"; 6 7 src = fetchFromGitHub { 8 owner = "davidnewhall"; 9 repo = "unpackerr"; 10 rev = "v${version}"; 11 + sha256 = "08xcxs4qh25qsjaf6wivhpszl61zdp59hlkd57igf9fv4lywb41q"; 12 }; 13 14 + vendorSha256 = "0ilpg7xfll0c5lsv8zf4h3i72yabddkddih4d292hczyz9wi3j4z"; 15 16 buildInputs = lib.optionals stdenv.isDarwin [ Cocoa WebKit ]; 17
+2 -2
pkgs/servers/web-apps/wiki-js/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "wiki-js"; 5 - version = "2.5.201"; 6 7 src = fetchurl { 8 url = "https://github.com/Requarks/wiki/releases/download/${version}/${pname}.tar.gz"; 9 - sha256 = "sha256-k2G+jUne/lq0dRJsIQpWlRFg1Nq92bM28YkawKOKlsI="; 10 }; 11 12 sourceRoot = ".";
··· 2 3 stdenv.mkDerivation rec { 4 pname = "wiki-js"; 5 + version = "2.5.214"; 6 7 src = fetchurl { 8 url = "https://github.com/Requarks/wiki/releases/download/${version}/${pname}.tar.gz"; 9 + sha256 = "sha256-EXysHhEJ41LMLRueEoFr+SE9SdJEXMZLhJQSvZgToTg="; 10 }; 11 12 sourceRoot = ".";
+16 -15
pkgs/servers/xmpp/prosody/default.nix
··· 1 { stdenv, fetchurl, lib, libidn, openssl, makeWrapper, fetchhg 2 - , lua5, luasocket, luasec, luaexpat, luafilesystem, luabitop 3 , nixosTests 4 - , withLibevent ? true, luaevent ? null 5 - , withDBI ? true, luadbi ? null 6 # use withExtraLibs to add additional dependencies of community modules 7 , withExtraLibs ? [ ] 8 , withOnlyInstalledCommunityModules ? [ ] 9 , withCommunityModules ? [ ] }: 10 11 - assert withLibevent -> luaevent != null; 12 - assert withDBI -> luadbi != null; 13 - 14 with lib; 15 16 17 stdenv.mkDerivation rec { 18 version = "0.11.10"; # also update communityModules 19 pname = "prosody"; ··· 41 sha256 = "02gj1b8sdmdvymsdmjpq47zrl7sg578jcdxbbq18s44f3njmc9q1"; 42 }; 43 44 buildInputs = [ 45 - lua5 makeWrapper libidn openssl 46 - ] 47 - # Lua libraries 48 - ++ [ 49 - luasocket luasec luaexpat luafilesystem luabitop 50 ] 51 - ++ optional withLibevent luaevent 52 - ++ optional withDBI luadbi 53 ++ withExtraLibs; 54 55 56 configureFlags = [ 57 "--ostype=linux" 58 - "--with-lua-include=${lua5}/include" 59 - "--with-lua=${lua5}" 60 ]; 61 62 postBuild = '' 63 make -C tools/migration 64 ''; 65 66 postInstall = '' 67 ${concatMapStringsSep "\n" (module: '' 68 cp -r $communityModules/mod_${module} $out/lib/prosody/modules/
··· 1 { stdenv, fetchurl, lib, libidn, openssl, makeWrapper, fetchhg 2 + , lua 3 , nixosTests 4 + , withLibevent ? true 5 + , withDBI ? true 6 # use withExtraLibs to add additional dependencies of community modules 7 , withExtraLibs ? [ ] 8 , withOnlyInstalledCommunityModules ? [ ] 9 , withCommunityModules ? [ ] }: 10 11 with lib; 12 13 14 + let 15 + luaEnv = lua.withPackages(p: with p; [ 16 + luasocket luasec luaexpat luafilesystem luabitop luadbi-sqlite3 17 + ] 18 + ++ lib.optional withLibevent p.luaevent 19 + ++ lib.optional withDBI p.luadbi 20 + ); 21 + in 22 stdenv.mkDerivation rec { 23 version = "0.11.10"; # also update communityModules 24 pname = "prosody"; ··· 46 sha256 = "02gj1b8sdmdvymsdmjpq47zrl7sg578jcdxbbq18s44f3njmc9q1"; 47 }; 48 49 + nativeBuildInputs = [ makeWrapper ]; 50 buildInputs = [ 51 + luaEnv libidn openssl 52 ] 53 ++ withExtraLibs; 54 55 56 configureFlags = [ 57 "--ostype=linux" 58 + "--with-lua-include=${luaEnv}/include" 59 + "--with-lua=${luaEnv}" 60 ]; 61 62 postBuild = '' 63 make -C tools/migration 64 ''; 65 66 + # the wrapping should go away once lua hook is fixed 67 postInstall = '' 68 ${concatMapStringsSep "\n" (module: '' 69 cp -r $communityModules/mod_${module} $out/lib/prosody/modules/
+11
pkgs/shells/zsh/zsh-fzf-tab/darwin.patch
···
··· 1 + diff --git a/modules/Src/aloxaf/fzftab.c b/modules/Src/aloxaf/fzftab.c 2 + index 60b6330..91975d8 100644 3 + --- a/modules/Src/aloxaf/fzftab.c 4 + +++ b/modules/Src/aloxaf/fzftab.c 5 + @@ -1,6 +1,5 @@ 6 + #include "fzftab.mdh" 7 + #include "fzftab.pro" 8 + -#include <malloc.h> 9 + #include <stdarg.h> 10 + #include <stdlib.h> 11 + #include <sys/stat.h>
+3 -1
pkgs/shells/zsh/zsh-fzf-tab/default.nix
··· 15 16 buildInputs = [ ncurses ]; 17 18 postConfigure = '' 19 pushd modules 20 ./configure --disable-gdbm --without-tcsetpgrp ··· 40 description = "Replace zsh's default completion selection menu with fzf!"; 41 license = licenses.mit; 42 maintainers = with maintainers; [ vonfry ]; 43 - platforms = platforms.linux; 44 }; 45 }
··· 15 16 buildInputs = [ ncurses ]; 17 18 + patches = lib.optionals stdenv.isDarwin [ ./darwin.patch ]; 19 + 20 postConfigure = '' 21 pushd modules 22 ./configure --disable-gdbm --without-tcsetpgrp ··· 42 description = "Replace zsh's default completion selection menu with fzf!"; 43 license = licenses.mit; 44 maintainers = with maintainers; [ vonfry ]; 45 + platforms = platforms.unix; 46 }; 47 }
+38
pkgs/tools/backup/android-backup-extractor/default.nix
···
··· 1 + { stdenv 2 + , lib 3 + , fetchurl 4 + , makeWrapper 5 + , jre 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "android-backup-extractor"; 10 + version = "20210909062443-4c55371"; 11 + 12 + src = fetchurl { 13 + url = "https://github.com/nelenkov/android-backup-extractor/releases/download/${version}/abe.jar"; 14 + sha256 = "0ms241kb4h9y9apr637sb4kw5mml40c1ac0q4jcxhnwr3dr05w1q"; 15 + }; 16 + 17 + dontUnpack = true; 18 + dontConfigure = true; 19 + dontBuild = true; 20 + 21 + nativeBuildInputs = [ makeWrapper ]; 22 + 23 + buildInputs = [ jre ]; 24 + 25 + installPhase = '' 26 + runHook preInstall 27 + install -D $src $out/lib/android-backup-extractor/abe.jar 28 + makeWrapper ${jre}/bin/java $out/bin/abe --add-flags "-cp $out/lib/android-backup-extractor/abe.jar org.nick.abe.Main" 29 + runHook postInstall 30 + ''; 31 + 32 + meta = with lib; { 33 + description = "Utility to extract and repack Android backups created with adb backup"; 34 + homepage = "https://github.com/nelenkov/android-backup-extractor"; 35 + license = licenses.asl20; 36 + maintainers = with maintainers; [ prusnak ]; 37 + }; 38 + }
+2 -2
pkgs/tools/backup/discordchatexporter-cli/default.nix
··· 7 in 8 stdenv.mkDerivation rec { 9 pname = "discordchatexporter-cli"; 10 - version = "2.30"; 11 12 src = fetchFromGitHub { 13 owner = "tyrrrz"; 14 repo = "discordchatexporter"; 15 rev = version; 16 - sha256 = "uTOeRsEab4vaAwtfysUTM3xFP5UMxpUQnuuU8hv3nk8="; 17 }; 18 19 nativeBuildInputs = [ dotnet-sdk_5 dotnetPackages.Nuget cacert makeWrapper autoPatchelfHook ];
··· 7 in 8 stdenv.mkDerivation rec { 9 pname = "discordchatexporter-cli"; 10 + version = "2.30.1"; 11 12 src = fetchFromGitHub { 13 owner = "tyrrrz"; 14 repo = "discordchatexporter"; 15 rev = version; 16 + sha256 = "JSYIhd+DNVOKseHtWNNChECR5hKr+ntu1Yyqtnlg8rM="; 17 }; 18 19 nativeBuildInputs = [ dotnet-sdk_5 dotnetPackages.Nuget cacert makeWrapper autoPatchelfHook ];
+3 -1
pkgs/tools/graphics/gnuplot/default.nix
··· 2 , cairo, gd, libcerf, pango, readline, zlib 3 , withTeXLive ? false, texlive 4 , withLua ? false, lua 5 , libX11 ? null 6 , libXt ? null 7 , libXpm ? null ··· 33 [ cairo gd libcerf pango readline zlib ] 34 ++ lib.optional withTeXLive (texlive.combine { inherit (texlive) scheme-small; }) 35 ++ lib.optional withLua lua 36 ++ lib.optionals withX [ libX11 libXpm libXt libXaw ] 37 ++ lib.optionals withQt [ qtbase qtsvg ] 38 ++ lib.optional withWxGTK wxGTK; ··· 46 (if withX then "--with-x" else "--without-x") 47 (if withQt then "--with-qt=qt5" else "--without-qt") 48 (if aquaterm then "--with-aquaterm" else "--without-aquaterm") 49 - ]; 50 51 CXXFLAGS = lib.optionalString (stdenv.isDarwin && withQt) "-std=c++11"; 52
··· 2 , cairo, gd, libcerf, pango, readline, zlib 3 , withTeXLive ? false, texlive 4 , withLua ? false, lua 5 + , withCaca ? false, libcaca 6 , libX11 ? null 7 , libXt ? null 8 , libXpm ? null ··· 34 [ cairo gd libcerf pango readline zlib ] 35 ++ lib.optional withTeXLive (texlive.combine { inherit (texlive) scheme-small; }) 36 ++ lib.optional withLua lua 37 + ++ lib.optional withCaca libcaca 38 ++ lib.optionals withX [ libX11 libXpm libXt libXaw ] 39 ++ lib.optionals withQt [ qtbase qtsvg ] 40 ++ lib.optional withWxGTK wxGTK; ··· 48 (if withX then "--with-x" else "--without-x") 49 (if withQt then "--with-qt=qt5" else "--without-qt") 50 (if aquaterm then "--with-aquaterm" else "--without-aquaterm") 51 + ] ++ lib.optional withCaca "--with-caca"; 52 53 CXXFLAGS = lib.optionalString (stdenv.isDarwin && withQt) "-std=c++11"; 54
+1 -1
pkgs/tools/misc/clpeak/default.nix
··· 28 description = "A tool which profiles OpenCL devices to find their peak capacities"; 29 homepage = "https://github.com/krrishnarraj/clpeak/"; 30 license = licenses.unlicense; 31 - maintainers = with maintainers; [ danieldk ]; 32 }; 33 }
··· 28 description = "A tool which profiles OpenCL devices to find their peak capacities"; 29 homepage = "https://github.com/krrishnarraj/clpeak/"; 30 license = licenses.unlicense; 31 + maintainers = with maintainers; [ ]; 32 }; 33 }
+2 -2
pkgs/tools/misc/nncp/default.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "nncp"; 13 - version = "7.6.0"; 14 15 src = fetchurl { 16 url = "http://www.nncpgo.org/download/${pname}-${version}.tar.xz"; 17 - sha256 = "1im43d9z2pwylsgd6lyxxi03jvkfcfpdsmamg8cm8la1f202x180"; 18 }; 19 20 nativeBuildInputs = [ go redo-apenwarr ];
··· 10 11 stdenv.mkDerivation rec { 12 pname = "nncp"; 13 + version = "7.7.0"; 14 15 src = fetchurl { 16 url = "http://www.nncpgo.org/download/${pname}-${version}.tar.xz"; 17 + sha256 = "ppKi/JY8sKRb/Vt/SXom0L1zhjBPn6PNUm3Gn8o5Ke4="; 18 }; 19 20 nativeBuildInputs = [ go redo-apenwarr ];
+2 -2
pkgs/tools/misc/quich/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "quich"; 5 - version = "3.1.0"; 6 7 src = fetchFromGitHub { 8 owner = "Usbac"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "1n9c01q2v6g9wnmxp248yclhp8cxclnj0yyn1qrvjsn6srcpr22c"; 12 }; 13 14 doCheck = true;
··· 2 3 stdenv.mkDerivation rec { 4 pname = "quich"; 5 + version = "4.0.0"; 6 7 src = fetchFromGitHub { 8 owner = "Usbac"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-4gsSjLZ7Z4ErNqe86Fy5IrzLMfvDyY18sE0yBnj9bvM="; 12 }; 13 14 doCheck = true;
+6 -5
pkgs/tools/misc/svtplay-dl/default.nix
··· 4 let 5 6 inherit (python3Packages) 7 - python pytest nose cryptography pyyaml requests mock python-dateutil setuptools; 8 9 in stdenv.mkDerivation rec { 10 pname = "svtplay-dl"; 11 - version = "4.2"; 12 13 src = fetchFromGitHub { 14 owner = "spaam"; 15 repo = "svtplay-dl"; 16 rev = version; 17 - sha256 = "1bsinf2r07g8c03mcw4gprl92wmysyaa81s8wyck0c6wdq3hcsnp"; 18 }; 19 20 pythonPaths = [ cryptography pyyaml requests ]; 21 - buildInputs = [ python perl mock python-dateutil setuptools ] ++ pythonPaths; 22 nativeBuildInputs = [ gitMinimal zip makeWrapper ]; 23 - checkInputs = [ nose pytest ]; 24 25 postPatch = '' 26 substituteInPlace scripts/run-tests.sh \
··· 4 let 5 6 inherit (python3Packages) 7 + python pytest nose cryptography pyyaml requests mock requests-mock 8 + python-dateutil setuptools; 9 10 in stdenv.mkDerivation rec { 11 pname = "svtplay-dl"; 12 + version = "4.3"; 13 14 src = fetchFromGitHub { 15 owner = "spaam"; 16 repo = "svtplay-dl"; 17 rev = version; 18 + sha256 = "04gmiqg6mq96fw4v1v6947i216fsf0vcnjp3ya8bbii5na91y1aa"; 19 }; 20 21 pythonPaths = [ cryptography pyyaml requests ]; 22 + buildInputs = [ python perl python-dateutil setuptools ] ++ pythonPaths; 23 nativeBuildInputs = [ gitMinimal zip makeWrapper ]; 24 + checkInputs = [ nose pytest mock requests-mock ]; 25 26 postPatch = '' 27 substituteInPlace scripts/run-tests.sh \
+2 -2
pkgs/tools/networking/kapp/default.nix
··· 1 { lib, buildGoModule, fetchFromGitHub, installShellFiles }: 2 buildGoModule rec { 3 pname = "kapp"; 4 - version = "0.37.0"; 5 6 src = fetchFromGitHub { 7 owner = "vmware-tanzu"; 8 repo = "carvel-kapp"; 9 rev = "v${version}"; 10 - sha256 = "sha256-SxS6KBiKc68PcRycdVDWWfXBKOJvo7GuG/0dUQGcHsg="; 11 }; 12 13 vendorSha256 = null;
··· 1 { lib, buildGoModule, fetchFromGitHub, installShellFiles }: 2 buildGoModule rec { 3 pname = "kapp"; 4 + version = "0.38.0"; 5 6 src = fetchFromGitHub { 7 owner = "vmware-tanzu"; 8 repo = "carvel-kapp"; 9 rev = "v${version}"; 10 + sha256 = "sha256-sUP+C4ynqeODAKkjUWhL1yqlzXkXydd1ENgHQw4enA4="; 11 }; 12 13 vendorSha256 = null;
+45
pkgs/tools/networking/stuntman/default.nix
···
··· 1 + { stdenv, lib, fetchFromGitHub, openssl, boost }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "stuntman"; 5 + version = "1.2.16"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "jselbie"; 9 + repo = "stunserver"; 10 + rev = "cfadf9c3836d5ae63a682913de24ba085df924f3"; 11 + sha256 = "1gcx4zj44f0viddnn5klkmq0dgd29av5p06iyf9f1va4a3lk0cbg"; 12 + }; 13 + 14 + buildInputs = [ 15 + boost 16 + openssl 17 + ]; 18 + 19 + installPhase = '' 20 + runHook preInstall 21 + 22 + mkdir -p $out/bin 23 + mv stunserver $out/bin/ 24 + mv stunclient $out/bin/ 25 + 26 + runHook postInstall 27 + ''; 28 + 29 + doCheck = true; 30 + checkPhase = '' 31 + runHook preCheck 32 + 33 + ./stuntestcode 34 + 35 + runHook postCheck 36 + ''; 37 + 38 + meta = with lib; { 39 + description = "STUNTMAN - an open source STUN server and client"; 40 + homepage = "http://www.stunprotocol.org/"; 41 + license = licenses.asl20; 42 + maintainers = with maintainers; [ mattchrist ]; 43 + platforms = platforms.unix; 44 + }; 45 + }
+7 -7
pkgs/tools/networking/v2ray/default.nix
··· 3 }: 4 5 let 6 - version = "4.41.1"; 7 8 src = fetchFromGitHub { 9 owner = "v2fly"; 10 repo = "v2ray-core"; 11 rev = "v${version}"; 12 - sha256 = "14zqvmf7xa4knmc57ck1ns0i0va0223qdp64qmm3q2w82dh9mnb8"; 13 }; 14 15 - vendorSha256 = "sha256-K8gFF9TbhVgNOySz7nhPFIdSNWNYKUyFD0LIk6acnkc="; 16 17 assets = { 18 # MIT licensed 19 "geoip.dat" = let 20 - geoipRev = "202107290023"; 21 - geoipSha256 = "14xgy0bsamj2k4knfs1r453yp27wq8qmjqifq63zbp4lb9v8xnjy"; 22 in fetchurl { 23 url = "https://github.com/v2fly/geoip/releases/download/${geoipRev}/geoip.dat"; 24 sha256 = geoipSha256; ··· 26 27 # MIT licensed 28 "geosite.dat" = let 29 - geositeRev = "20210727125446"; 30 - geositeSha256 = "14z1419dkbippm12z6gvwh3q1wd6x1p4sk6zp2i4qa408i1gc81c"; 31 in fetchurl { 32 url = "https://github.com/v2fly/domain-list-community/releases/download/${geositeRev}/dlc.dat"; 33 sha256 = geositeSha256;
··· 3 }: 4 5 let 6 + version = "4.42.1"; 7 8 src = fetchFromGitHub { 9 owner = "v2fly"; 10 repo = "v2ray-core"; 11 rev = "v${version}"; 12 + sha256 = "19xkbkzv9bgj68kmvrxsdqzx40vlyvzl8nn2n19hwwmkrazqgf04"; 13 }; 14 15 + vendorSha256 = "sha256-N1DYV0zSzCepkRMbcQUHqjITvmGahYKNn1uhL+csMSc="; 16 17 assets = { 18 # MIT licensed 19 "geoip.dat" = let 20 + geoipRev = "202109102251"; 21 + geoipSha256 = "0qh8yf0m6sna3z5i2plbgw61q08qcfcx0l1z5bmwxijagf1yb7fa"; 22 in fetchurl { 23 url = "https://github.com/v2fly/geoip/releases/download/${geoipRev}/geoip.dat"; 24 sha256 = geoipSha256; ··· 26 27 # MIT licensed 28 "geosite.dat" = let 29 + geositeRev = "20210910080130"; 30 + geositeSha256 = "0d6bzrs5mhca59j1w73kqw10jqkwic9ywm3jvszpd077qwh64dwn"; 31 in fetchurl { 32 url = "https://github.com/v2fly/domain-list-community/releases/download/${geositeRev}/dlc.dat"; 33 sha256 = geositeSha256;
+3 -3
pkgs/tools/security/nuclei/default.nix
··· 5 6 buildGoModule rec { 7 pname = "nuclei"; 8 - version = "2.5.0"; 9 10 src = fetchFromGitHub { 11 owner = "projectdiscovery"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-6mZ8XstophadNk/3zJe2n3WL4u34jjnWh9m2qrt06hw="; 15 }; 16 17 - vendorSha256 = "sha256-tJ9cdZloTSXoytmMJ+6S5XAKHYs16SZmbUwZdmVnDzc="; 18 19 modRoot = "./v2"; 20 subPackages = [
··· 5 6 buildGoModule rec { 7 pname = "nuclei"; 8 + version = "2.5.1"; 9 10 src = fetchFromGitHub { 11 owner = "projectdiscovery"; 12 repo = pname; 13 rev = "v${version}"; 14 + sha256 = "sha256-SdN8M3Mr3bywpBUwIVOIctYdkueq/0no4wlI7Ft8Uws="; 15 }; 16 17 + vendorSha256 = "sha256-Tz96AXGMyHNHG/3JrmZvisOEty/tDhoK1ZUngDSXOcc="; 18 19 modRoot = "./v2"; 20 subPackages = [
+3 -3
pkgs/tools/security/quill/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "quill"; 5 - version = "0.2.4"; 6 7 src = fetchFromGitHub { 8 owner = "dfinity"; 9 repo = "quill"; 10 rev = "v${version}"; 11 - sha256 = "sha256-rR5VgdlJy6TQBmCHuKc7nPjznbeLjCmQdUJKjY0GsNI="; 12 }; 13 14 ic = fetchFromGitHub { ··· 30 export OPENSSL_LIB_DIR=${openssl.out}/lib 31 ''; 32 33 - cargoSha256 = "sha256-nLNuOqShOq01gVWoRCbsvfAd7B9VClUA8Hu8/UQNILg="; 34 35 nativeBuildInputs = [ pkg-config protobuf ]; 36 buildInputs = [ openssl ]
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "quill"; 5 + version = "0.2.5"; 6 7 src = fetchFromGitHub { 8 owner = "dfinity"; 9 repo = "quill"; 10 rev = "v${version}"; 11 + sha256 = "sha256-lvINDtOG2mmz0ESxL11DQVZh3IcEiZYYMu5oN5Q9WKA="; 12 }; 13 14 ic = fetchFromGitHub { ··· 30 export OPENSSL_LIB_DIR=${openssl.out}/lib 31 ''; 32 33 + cargoSha256 = "sha256-F2RMfHVFqCq9cb+9bjPWaRcQWKYIwwffWCssoQ6sSdU="; 34 35 nativeBuildInputs = [ pkg-config protobuf ]; 36 buildInputs = [ openssl ]
+1 -1
pkgs/tools/system/cm-rgb/default.nix
··· 54 homepage = "https://github.com/gfduszynski/cm-rgb"; 55 license = licenses.mit; 56 platforms = platforms.all; 57 - maintainers = with maintainers; [ danieldk ]; 58 }; 59 }
··· 54 homepage = "https://github.com/gfduszynski/cm-rgb"; 55 license = licenses.mit; 56 platforms = platforms.all; 57 + maintainers = with maintainers; [ ]; 58 }; 59 }
+3 -3
pkgs/tools/system/consul-template/default.nix
··· 2 3 buildGoModule rec { 4 pname = "consul-template"; 5 - version = "0.26.0"; 6 7 src = fetchFromGitHub { 8 owner = "hashicorp"; 9 repo = "consul-template"; 10 rev = "v${version}"; 11 - sha256 = "sha256-upVCztpfT+SuuB343GEnT4KSnWul10/cItKJvUqJYo4="; 12 }; 13 14 - vendorSha256 = "sha256-IAWuqg8zZ9/ny3ZijxGgHAJDICV09NTGxPvLLP4oLzw="; 15 16 # consul-template tests depend on vault and consul services running to 17 # execute tests so we skip them here
··· 2 3 buildGoModule rec { 4 pname = "consul-template"; 5 + version = "0.27.0"; 6 7 src = fetchFromGitHub { 8 owner = "hashicorp"; 9 repo = "consul-template"; 10 rev = "v${version}"; 11 + sha256 = "sha256-XzsewkHaFIq1kvFDHIsnhfhtLPLFRin7YrhiZuF1+co="; 12 }; 13 14 + vendorSha256 = "sha256-/4ZY4YRGsUSL2e6uYPJ9tWEvXDjU5/L56yf49pUkJ2E="; 15 16 # consul-template tests depend on vault and consul services running to 17 # execute tests so we skip them here
+3 -3
pkgs/tools/virtualization/shipyard/default.nix
··· 2 3 buildGoModule rec { 4 pname = "shipyard"; 5 - version = "0.3.2"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "shipyard-run"; 10 repo = pname; 11 - sha256 = "sha256-9eGaOSmHrJlcLOvZuLaNu8D/D/rWiyFb4ztxybUP0uM="; 12 }; 13 - vendorSha256 = "sha256-tTkPFftPDNXafIjAjNg6V6e/+2S/v5Do/YyAXPaGIqA="; 14 15 ldflags = [ 16 "-s" "-w" "-X main.version=${version}"
··· 2 3 buildGoModule rec { 4 pname = "shipyard"; 5 + version = "0.3.27"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "shipyard-run"; 10 repo = pname; 11 + sha256 = "sha256-VbcOoIMhY4FpfQbC2ESFaPoV9AS5DpGvid8jcQxLuEE="; 12 }; 13 + vendorSha256 = "sha256-YClNdtnakJJOEytTbopTXeZy218N4vHP3tQLavLgPbg="; 14 15 ldflags = [ 16 "-s" "-w" "-X main.version=${version}"
+18 -9
pkgs/top-level/all-packages.nix
··· 1109 1110 analog = callPackage ../tools/admin/analog {}; 1111 1112 android-tools = lowPrio (callPackage ../tools/misc/android-tools { 1113 stdenv = if stdenv.targetPlatform.isAarch64 then gcc10Stdenv else stdenv; 1114 }); ··· 9324 stun = callPackage ../tools/networking/stun { }; 9325 9326 stunnel = callPackage ../tools/networking/stunnel { }; 9327 9328 stutter = haskell.lib.justStaticExecutables haskellPackages.stutter; 9329 ··· 16243 16244 http-parser = callPackage ../development/libraries/http-parser { }; 16245 16246 hunspell = callPackage ../development/libraries/hunspell { }; 16247 16248 hunspellDicts = recurseIntoAttrs (callPackages ../development/libraries/hunspell/dictionaries.nix {}); ··· 19953 19954 prosody = callPackage ../servers/xmpp/prosody { 19955 # _compat can probably be removed on next minor version after 0.10.0 19956 - lua5 = lua5_2_compat; 19957 - withExtraLibs = [ luaPackages.luadbi-sqlite3 ]; 19958 - inherit (lua52Packages) luasocket luasec luaexpat luafilesystem luabitop luaevent luadbi; 19959 }; 19960 19961 biboumi = callPackage ../servers/xmpp/biboumi { }; ··· 27820 27821 neovim-remote = callPackage ../applications/editors/neovim/neovim-remote.nix { }; 27822 27823 - vis = callPackage ../applications/editors/vis { 27824 - inherit (lua52Packages) lpeg; 27825 - }; 27826 27827 viw = callPackage ../applications/editors/viw { }; 27828 ··· 29043 29044 ecwolf = callPackage ../games/ecwolf { }; 29045 29046 - eduke32 = callPackage ../games/eduke32 { }; 29047 29048 egoboo = callPackage ../games/egoboo { }; 29049 ··· 29468 29469 quake3hires = callPackage ../games/quake3/content/hires.nix { }; 29470 29471 - quakespasm = callPackage ../games/quakespasm { }; 29472 vkquake = callPackage ../games/quakespasm/vulkan.nix { }; 29473 29474 ioquake3 = callPackage ../games/quake3/ioquake { }; ··· 30759 30760 ngspice = callPackage ../applications/science/electronics/ngspice { }; 30761 30762 - openems = callPackage ../applications/science/electronics/openems { }; 30763 30764 openroad = libsForQt5.callPackage ../applications/science/electronics/openroad { }; 30765
··· 1109 1110 analog = callPackage ../tools/admin/analog {}; 1111 1112 + android-backup-extractor = callPackage ../tools/backup/android-backup-extractor {}; 1113 + 1114 android-tools = lowPrio (callPackage ../tools/misc/android-tools { 1115 stdenv = if stdenv.targetPlatform.isAarch64 then gcc10Stdenv else stdenv; 1116 }); ··· 9326 stun = callPackage ../tools/networking/stun { }; 9327 9328 stunnel = callPackage ../tools/networking/stunnel { }; 9329 + 9330 + stuntman = callPackage ../tools/networking/stuntman { }; 9331 9332 stutter = haskell.lib.justStaticExecutables haskellPackages.stutter; 9333 ··· 16247 16248 http-parser = callPackage ../development/libraries/http-parser { }; 16249 16250 + hubble = callPackage ../applications/networking/cluster/hubble { }; 16251 + 16252 hunspell = callPackage ../development/libraries/hunspell { }; 16253 16254 hunspellDicts = recurseIntoAttrs (callPackages ../development/libraries/hunspell/dictionaries.nix {}); ··· 19959 19960 prosody = callPackage ../servers/xmpp/prosody { 19961 # _compat can probably be removed on next minor version after 0.10.0 19962 + lua = lua5_2_compat; 19963 + withExtraLibs = []; 19964 }; 19965 19966 biboumi = callPackage ../servers/xmpp/biboumi { }; ··· 27825 27826 neovim-remote = callPackage ../applications/editors/neovim/neovim-remote.nix { }; 27827 27828 + vis = callPackage ../applications/editors/vis { }; 27829 27830 viw = callPackage ../applications/editors/viw { }; 27831 ··· 29046 29047 ecwolf = callPackage ../games/ecwolf { }; 29048 29049 + eduke32 = callPackage ../games/eduke32 { 29050 + inherit (darwin.apple_sdk.frameworks) AGL Cocoa GLUT OpenGL; 29051 + }; 29052 29053 egoboo = callPackage ../games/egoboo { }; 29054 ··· 29473 29474 quake3hires = callPackage ../games/quake3/content/hires.nix { }; 29475 29476 + quakespasm = callPackage ../games/quakespasm { 29477 + inherit (darwin.apple_sdk.frameworks) Cocoa CoreAudio CoreFoundation IOKit OpenGL; 29478 + }; 29479 vkquake = callPackage ../games/quakespasm/vulkan.nix { }; 29480 29481 ioquake3 = callPackage ../games/quake3/ioquake { }; ··· 30766 30767 ngspice = callPackage ../applications/science/electronics/ngspice { }; 30768 30769 + openems = callPackage ../applications/science/electronics/openems { 30770 + qcsxcad = libsForQt5.qcsxcad; 30771 + }; 30772 30773 openroad = libsForQt5.callPackage ../applications/science/electronics/openroad { }; 30774
+32 -57
pkgs/top-level/lua-packages.nix
··· 18 packages = ( self: 19 20 let 21 - luaAtLeast = lib.versionAtLeast lua.luaversion; 22 - luaOlder = lib.versionOlder lua.luaversion; 23 - isLua51 = (lib.versions.majorMinor lua.version) == "5.1"; 24 - isLua52 = (lib.versions.majorMinor lua.version) == "5.2"; 25 - isLua53 = lua.luaversion == "5.3"; 26 - isLuaJIT = lib.getName lua == "luajit"; 27 28 - lua-setup-hook = callPackage ../development/interpreters/lua-5/setup-hook.nix { }; 29 - 30 - # Check whether a derivation provides a lua module. 31 - hasLuaModule = drv: drv ? luaModule ; 32 33 callPackage = pkgs.newScope self; 34 35 - requiredLuaModules = drvs: with lib; let 36 - modules = filter hasLuaModule drvs; 37 - in unique ([lua] ++ modules ++ concatLists (catAttrs "requiredLuaModules" modules)); 38 - 39 - # Convert derivation to a lua module. 40 - toLuaModule = drv: 41 - drv.overrideAttrs( oldAttrs: { 42 - # Use passthru in order to prevent rebuilds when possible. 43 - passthru = (oldAttrs.passthru or {})// { 44 - luaModule = lua; 45 - requiredLuaModules = requiredLuaModules drv.propagatedBuildInputs; 46 - }; 47 - }); 48 - 49 - 50 - platformString = 51 - if stdenv.isDarwin then "macosx" 52 - else if stdenv.isFreeBSD then "freebsd" 53 - else if stdenv.isLinux then "linux" 54 - else if stdenv.isSunOS then "solaris" 55 - else throw "unsupported platform"; 56 - 57 buildLuaApplication = args: buildLuarocksPackage ({namePrefix="";} // args ); 58 59 - buildLuarocksPackage = with pkgs.lib; makeOverridable(callPackage ../development/interpreters/lua-5/build-lua-package.nix { 60 - inherit toLuaModule; 61 inherit lua; 62 }); 63 - in 64 - with self; { 65 66 - getLuaPathList = majorVersion: [ 67 - "share/lua/${majorVersion}/?.lua" 68 - "share/lua/${majorVersion}/?/init.lua" 69 - ]; 70 - getLuaCPathList = majorVersion: [ 71 - "lib/lua/${majorVersion}/?.so" 72 - ]; 73 - 74 - # helper functions for dealing with LUA_PATH and LUA_CPATH 75 - getPath = drv: pathListForVersion: 76 - lib.concatMapStringsSep ";" (path: "${drv}/${path}") (pathListForVersion lua.luaversion); 77 - getLuaPath = drv: getPath drv getLuaPathList; 78 - getLuaCPath = drv: getPath drv getLuaCPathList; 79 80 #define build lua package function 81 buildLuaPackage = callPackage ../development/lua-modules/generic { 82 - inherit lua writeText; 83 }; 84 85 86 - inherit toLuaModule hasLuaModule lua-setup-hook; 87 - inherit buildLuarocksPackage buildLuaApplication; 88 - inherit requiredLuaModules luaOlder luaAtLeast 89 - isLua51 isLua52 isLua53 isLuaJIT lua callPackage; 90 91 # wraps programs in $out/bin with valid LUA_PATH/LUA_CPATH 92 wrapLua = callPackage ../development/interpreters/lua-5/wrap-lua.nix { 93 - inherit lua; inherit (pkgs) makeSetupHook makeWrapper; 94 }; 95 96 luarocks = callPackage ../development/tools/misc/luarocks { 97 - inherit lua; 98 }; 99 100 luarocks-nix = callPackage ../development/tools/misc/luarocks/luarocks-nix.nix { }; 101 102 luxio = buildLuaPackage { ··· 132 }; 133 }; 134 135 - vicious = toLuaModule(stdenv.mkDerivation rec { 136 pname = "vicious"; 137 version = "2.5.0"; 138
··· 18 packages = ( self: 19 20 let 21 22 + # a function of lua_path / lua_cpath 23 + lua-setup-hook = callPackage ../development/interpreters/lua-5/setup-hook.nix { 24 + inherit lib; 25 + }; 26 27 callPackage = pkgs.newScope self; 28 29 buildLuaApplication = args: buildLuarocksPackage ({namePrefix="";} // args ); 30 31 + buildLuarocksPackage = lib.makeOverridable(callPackage ../development/interpreters/lua-5/build-lua-package.nix { 32 inherit lua; 33 + inherit (pkgs) lib; 34 + inherit (luaLib) toLuaModule; 35 }); 36 37 + luaLib = import ../development/lua-modules/lib.nix { 38 + inherit (pkgs) lib; 39 + inherit pkgs lua; 40 + }; 41 42 #define build lua package function 43 buildLuaPackage = callPackage ../development/lua-modules/generic { 44 + inherit writeText; 45 }; 46 47 + getPath = drv: pathListForVersion: 48 + lib.concatMapStringsSep ";" (path: "${drv}/${path}") pathListForVersion; 49 50 + in 51 + { 52 + # helper functions for dealing with LUA_PATH and LUA_CPATH 53 + lib = luaLib; 54 + 55 + getLuaPath = drv: luaLib.getPath drv (luaLib.luaPathList lua.luaversion) ; 56 + getLuaCPath = drv: luaLib.getPath drv (luaLib.luaCPathList lua.luaversion) ; 57 + 58 + 59 + inherit lua lua-setup-hook callPackage; 60 + inherit buildLuaPackage buildLuarocksPackage buildLuaApplication; 61 + inherit (luaLib) luaOlder luaAtLeast isLua51 isLua52 isLua53 isLuaJIT 62 + requiredLuaModules toLuaModule hasLuaModule; 63 64 # wraps programs in $out/bin with valid LUA_PATH/LUA_CPATH 65 wrapLua = callPackage ../development/interpreters/lua-5/wrap-lua.nix { 66 + inherit lua lib; 67 + inherit (pkgs) makeSetupHook makeWrapper; 68 }; 69 70 luarocks = callPackage ../development/tools/misc/luarocks { 71 + inherit lua lib; 72 }; 73 74 + # a fork of luarocks used to generate nix lua derivations from rockspecs 75 luarocks-nix = callPackage ../development/tools/misc/luarocks/luarocks-nix.nix { }; 76 77 luxio = buildLuaPackage { ··· 107 }; 108 }; 109 110 + vicious = luaLib.toLuaModule( stdenv.mkDerivation rec { 111 pname = "vicious"; 112 version = "2.5.0"; 113
+2
pkgs/top-level/python-packages.nix
··· 2728 2729 flux-led = callPackage ../development/python-modules/flux-led { }; 2730 2731 fn = callPackage ../development/python-modules/fn { }; 2732 2733 fnvhash = callPackage ../development/python-modules/fnvhash { };
··· 2728 2729 flux-led = callPackage ../development/python-modules/flux-led { }; 2730 2731 + flynt = callPackage ../development/python-modules/flynt { }; 2732 + 2733 fn = callPackage ../development/python-modules/fn { }; 2734 2735 fnvhash = callPackage ../development/python-modules/fnvhash { };