├── Dockerfile ├── LICENSE ├── README.md ├── action.yaml ├── append.sh ├── gen.sh ├── main.sh ├── mre.png ├── package-lock.json ├── package.json ├── pinout.html ├── script.js ├── script.test.js └── style.css /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM debian:stable-slim 2 | 3 | RUN DEBIAN_FRONTEND=noninteractive apt-get update &&\ 4 | apt-get install -y wget &&\ 5 | wget https://github.com/mikefarah/yq/releases/download/v4.43.1/yq_linux_amd64 &&\ 6 | chmod a+x yq_linux_amd64 &&\ 7 | mv yq_linux_amd64 /usr/bin/yq &&\ 8 | wget https://github.com/tdewolff/minify/releases/download/v2.20.19/minify_linux_amd64.tar.gz &&\ 9 | tar -xzf minify_linux_amd64.tar.gz &&\ 10 | chmod a+x minify &&\ 11 | mv minify /usr/bin/ &&\ 12 | apt-get autoremove -y && apt-get clean -y 13 | 14 | COPY main.sh /main.sh 15 | COPY gen.sh /gen.sh 16 | COPY append.sh /append.sh 17 | COPY pinout.html /pinout.html 18 | COPY script.js /script.js 19 | COPY style.css /style.css 20 | ENTRYPOINT ["/main.sh"] 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 David Holdeman 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Interactive Pinout Generator 2 | 3 | Example (click to view): 4 | [](https://rusefi.com/docs/pinouts/microrusefi) 5 | 6 | Generating pinouts requires: 7 | 8 | - Device connector photo (.jpg) 9 | - Pinout metadata file in [YAML](https://en.wikipedia.org/wiki/YAML) format 10 | 11 | Multiple .yaml files within a directory are put into the same index.html page. 12 | The results will be in a folder named "pinouts". 13 | If you include the `directory` field within the `info` section of the yaml, the page will be placed within that subdirectory of the "pinouts" directory. 14 | If none of the .yaml files within a directory have the `directory` field, the `title` field will be used instead. 15 | If none of the .yaml files within a directory have either field, they will be placed in a subdirectory structure matching that from which the action was run. 16 | 17 | Example: 18 | Suppose you have two .yaml files at `foo/bar/baz/` 19 | You run the action from `foo/` 20 | If one or both of the files has the `directory` field set to `quux`, the index.html will be found at `pinouts/quux/index.html` 21 | If neither file has the `directory` field set, but one or both has the `title` field set to `Magic Board`, the index.html will be found at `pinouts/Magic Board/index.html` 22 | If neither file has either field set, the index.html will be found at `pinouts/bar/baz/index.html` 23 | 24 | ## Syntax of Connector YAML 25 | 26 | Each YAML file contains two sections: 'pins' and 'info' 27 | 28 | The 'pins' section contains a list of pins, each having the following fields: 29 | 30 | |field |description| 31 | |--------|-----------| 32 | |pin |a numeric id corresponding to the physical pin on the connector| 33 | |type |optional - a short code to allow pins to be grouped and colored by type| 34 | |color |optional - if your mapping has this field, a toggle will appear to switch between color-coding by type or this field. It should contain CSS colors, but you can add spaces if you like; e.g. "light green"| 35 | 36 | You can also add arbitrary fields with information for the table, and list them, along with a title for the column, in the `columns` section of your worflow file. 37 | 38 | The 'info' section contains information which is used to generate the interactive pinout. It contains the following fields: 39 | 40 | |field |description| 41 | |---------|-----------| 42 | |cid |a short name for the connector, to be used in the URL when linking to a particular pin, for pages with more than one connector| 43 | |image |subsection which contains image source and pin coordinates| 44 | |title |the title for the page. Only one connector for a particular board needs this field| 45 | |directory|the target directory for the page. Only one connector for a particular board needs this field| 46 | |board_url|a URL for documentation, which will be placed as a link on the top of the page. Only one connector for a particular board needs this field| 47 | |name |a human-readable name for the connector| 48 | |order |an index to order the connectors on the page. The lower the number, the nearer the top of the page. If the 'order' field is not present, order is undefined, but will probably be sorted alphabetically by the file name| 49 | 50 | The 'image' subsections contains the following fields 51 | 52 | |field |description| 53 | |---------|-----------| 54 | |file |the image filename, which is stored in the same directory as the YAML| 55 | |pins |subsection with a list of the pins' locations on the image. Its fields are 'pin', which matches to an 'id' in the main 'pins' section, 'x' and 'y', which are the coordinates on the image| 56 | |import |replaces 'file' and 'pins' - References a YAML file which has 'image' as its top-level section, and has 'file' and 'pins' fields. The file path is relative to the referenced YAML file.| 57 | 58 | ### Example YAML 59 | 60 | You can find the YAML files that generated the example image above [at this link](https://github.com/rusefi/rusefi/tree/master/firmware/config/boards/microrusefi/connectors). 61 | 62 | ``` 63 | pins: 64 | - pin: 1 65 | type: 12V 66 | function: 12V Supply from main relay output 67 | 68 | - pin: 2 69 | type: pgnd 70 | function: Power GND 71 | 72 | - pin: 3 73 | type: ls 74 | function: Idle solenoid 75 | 76 | - pin: 4 77 | type: etb 78 | function: ETB+ 79 | 80 | info: 81 | title: Big Magic Box 82 | directory: big_magic 83 | name: Main Connector 84 | board_url: https://example.com/documentation 85 | cid: c1 86 | image: 87 | file: connector.jpg 88 | pins: 89 | - pin: 1 90 | x: 1508 91 | y: 958 92 | - pin: 2 93 | x: 1508 94 | y: 787 95 | - pin: 3 96 | x: 1508 97 | y: 616 98 | - pin: 4 99 | x: 1508 100 | y: 445 101 | ``` 102 | 103 | ## Using this Action in Your Workflow 104 | 105 | ### Parameters 106 | 107 | Look at [action.yaml](action.yaml) for a list and description of inputs to interactive-pinout. 108 | 109 | ### Handling Warnings 110 | 111 | There is a `warnings` option to set how warnings are handled, and more options to give finer control over certain types of warnings. 112 | |field|trigger| 113 | |-----|-------| 114 | |`warning-no-cid`|A missing `cid` field in the `info` section| 115 | |`warning-no-connectors`|No definition files were found| 116 | |`warning-no-image`|A missing `file` field in the `image` subsection of the `info` section| 117 | |`warning-no-pins`|No pins found in definition file| 118 | |`warning-dupe`|More than one pin that share the same `pin` field in a single mapping| 119 | 120 | Listed below are the possible values for these fields. 121 | 122 | |value|behavior| 123 | |-----|-----| 124 | |false|Print warning| 125 | |notice|Print warning and put notice on workflow summary page| 126 | |error|Cause the workflow to fail immediately| 127 | |skip|Skip generating this pinout, but proceed with any other pinouts| 128 | 129 | If a specific `warning-*` field is not set, the value from the `warnings` field is used. You can use this to set the default behavior for warnings, and override specific types of warnings with their own field. 130 | 131 | ### Example Workflow Step 132 | 133 | For a real-life example, [see how rusEFI](https://github.com/rusefi/rusefi/blob/master/.github/workflows/gen-pinouts.yaml) uses interactive-pinouts in Github Actions. 134 | 135 | ``` 136 | - name: Generate Pinouts 137 | uses: chuckwagoncomputing/interactive-pinout 138 | with: 139 | mapping-path: firmware/config/boards/*/connectors/*.yaml 140 | warnings: skip 141 | columns: | 142 | { 143 | "pin":"Pin Number", 144 | "ts_name":"TS Name", 145 | "type":"Type", 146 | "function":"Typical Function", 147 | "color":"Pigtail Color" 148 | } 149 | print-columns: | 150 | [ 151 | "function" 152 | ] 153 | templates: | 154 | { 155 | "___": "pin" 156 | } 157 | colors: | 158 | { 159 | "12v":"yellow"; 160 | "12V":"yellow"; 161 | "5v":"red", 162 | "5V":"red", 163 | "at":"green", 164 | "av":"brown", 165 | "can":"blue", 166 | "din":"lime", 167 | "etb":"darkcyan", 168 | "gnd":"darkgreen", 169 | "gp_high":"aqua", 170 | "gp_low":"aquamarine", 171 | "gp_pp":"cyan", 172 | "hall":"darkolivegreen", 173 | "hl":"gold", 174 | "hs":"indigo", 175 | "ign":"magenta", 176 | "inj":"maroon", 177 | "ls":"lightgreen", 178 | "mr":"firebrick", 179 | "pgnd":"coral", 180 | "sgnd":"olive", 181 | "usb":"lightseagreen", 182 | "vr":"sienna" 183 | } 184 | ``` 185 | 186 | ## Using as a stand-alone script, without Github Actions 187 | 188 | The parameters in the workflow can also be passed to main.sh as environment variables instead. 189 | Here is the complete list of variables: 190 | 191 | ``` 192 | MAPPING_PATH 193 | WARNINGS 194 | WARNING_NO_CID 195 | WARNING_NO_CONNECTORS 196 | WARNING_NO_IMAGE 197 | WARNING_NO_PINS 198 | WARNING_DUPE 199 | COLS 200 | PRINT_COLS 201 | INFO_COL 202 | TEMPLATES 203 | COLORS 204 | DEBUG 205 | ``` 206 | 207 | After exporting these environment variables, execute main.sh. 208 | Example: 209 | 210 | ``` 211 | $ export MAPPING_PATH="firmware/config/boards/*/connectors/*.yaml" 212 | $ export WARNINGS="skip" 213 | $ export COLS='{"pin":"Pin Number","ts_name":"TS Name","type":"Type","function":"Typical Function","color":"Pigtail Color"}' 214 | $ export PRINT_COLS='["function"]' 215 | $ export COLORS='{"12v":"yellow";"12V":"yellow";"5v":"red","5V":"red","at":"green","av":"brown","can":"blue","din":"lime","etb":"darkcyan","gnd":"darkgreen","gp_high":"aqua","gp_low":"aquamarine","gp_pp":"cyan","hall":"darkolivegreen","hl":"gold","hs":"indigo","ign":"magenta","inj":"maroon","ls":"lightgreen","mr":"firebrick","pgnd":"coral","sgnd":"olive","usb":"lightseagreen","vr":"sienna"}' 216 | $ bash ../interactive-pinout/main.sh 217 | ``` 218 | -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- 1 | name: "Interactive Pinout Generator" 2 | description: "Generates interactive pinouts from mappings" 3 | author: "dave@holdemanenterprises.com" 4 | 5 | inputs: 6 | mapping-path: 7 | required: true 8 | description: | 9 | Location of mapping file 10 | You can use globs to match multiple files, for example: 11 | ./boards/*/connectors/*.yaml 12 | warnings: 13 | required: false 14 | description: | 15 | Set to "skip" to skip to the next mapping file, 16 | "notice" to warn on the Actions page, 17 | or "error" to fail the workflow step. 18 | default: "false" 19 | warning-no-cid: 20 | required: false 21 | description: | 22 | Set to "skip" to skip to the next mapping file, 23 | "notice" to warn on the Actions page, 24 | or "error" to fail the workflow step. 25 | default: "unset" 26 | warning-no-connectors: 27 | required: false 28 | description: | 29 | Set to "skip" to skip to the next mapping file, 30 | "notice" to warn on the Actions page, 31 | or "error" to fail the workflow step. 32 | default: "unset" 33 | warning-no-image: 34 | required: false 35 | description: | 36 | Set to "skip" to skip to the next mapping file, 37 | "notice" to warn on the Actions page, 38 | or "error" to fail the workflow step. 39 | default: "unset" 40 | warning-no-pins: 41 | required: false 42 | description: | 43 | Set to "skip" to skip to the next mapping file, 44 | "notice" to warn on the Actions page, 45 | or "error" to fail the workflow step. 46 | warning-dupe: 47 | required: false 48 | description: | 49 | Set to "skip" to skip to the next mapping file, 50 | "notice" to warn on the Actions page, 51 | or "error" to fail the workflow step. 52 | default: "unset" 53 | columns: 54 | required: true 55 | description: | 56 | A JSON mapping of column IDs to human-readable names. 57 | "pin" column is assumed to be pin numbers 58 | "type" column can be used to group pins by type. 59 | print-columns: 60 | required: true 61 | description: | 62 | A JSON array of column IDs that will be visible in print mode. Provide at least one. 63 | The "pin" column is always visible. 64 | info-column: 65 | required: false 66 | description: | 67 | A column whose value will be displayed when hovering over a pin. 68 | templates: 69 | required: false 70 | description: | 71 | A JSON mapping of strings to fields which will replace them. 72 | colors: 73 | required: false 74 | description: | 75 | A JSON mapping of pin "type" fields to CSS colors. 76 | debug: 77 | required: false 78 | description: | 79 | Don't minify, and add some logging to the JS 80 | default: "false" 81 | runs: 82 | using: "docker" 83 | image: "Dockerfile" 84 | env: 85 | MAPPING_PATH: ${{ inputs.mapping-path }} 86 | WARNINGS: ${{ inputs.warnings }} 87 | WARNING_NO_CID: ${{ inputs.warning-no-cid }} 88 | WARNING_NO_IMAGE: ${{ inputs.warning-no-image }} 89 | WARNING_NO_CONNECTORS: ${{ inputs.warning-no-connectors }} 90 | WARNING_DUPE: ${{ inputs.warning-dupe }} 91 | COLS: ${{ inputs.columns }} 92 | PRINT_COLS: ${{ inputs.print-columns }} 93 | INFO_COL: ${{ inputs.info-column }} 94 | TEMPLATES: ${{ inputs.templates }} 95 | COLORS: ${{ inputs.colors }} 96 | DEBUG: ${{ inputs.debug }} 97 | branding: 98 | icon: "cpu" 99 | color: "orange" 100 | -------------------------------------------------------------------------------- /append.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | DIR=$(cd -P -- "$(dirname -- "$0")" && pwd -P)"/" 4 | if [ "$DEBUG" = "true" ]; then 5 | export JSON="$(echo "$1" | sed 's/\\/\\\\/g')" 6 | else 7 | export JSON="$(echo $1 | minify --type json | sed 's/\\/\\\\/g')" 8 | fi 9 | 10 | if [ "$DEBUG" = "true" ]; then 11 | TEXT=$(perl -0pe 's/\/\*DATA\*\//\`$ENV{JSON}\`,\n\/\*DATA\*\//;' $2) 12 | else 13 | TEXT=$(perl -0pe 's/\/\*DATA\*\//\`$ENV{JSON}\`,\/\*DATA\*\//;' $2) 14 | fi 15 | 16 | if [ $? -ne 0 ]; then 17 | echo "Error in append.sh" 18 | exit 1; 19 | fi 20 | echo "$TEXT" > $2 21 | -------------------------------------------------------------------------------- /gen.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | DIR=$(cd -P -- "$(dirname -- "$0")" && pwd -P)"/" 4 | if [ "$DEBUG" = "true" ]; then 5 | export JSON="$(echo "$1" | sed 's/\\/\\\\/g')" 6 | else 7 | export JSON="$(echo $1 | minify --type json | sed 's/\\/\\\\/g')" 8 | fi 9 | 10 | CSS=$(cat $DIR/style.css) 11 | for C in $COLORS; do 12 | CT=$(echo "$C" | cut -sd ':' -f 1) 13 | CC=$(echo "$C" | cut -sd ':' -f 2 | cut -d ',' -f 1 | cut -d '"' -f 2) 14 | if [ -n "$CT" ] && [ -n "$CC" ]; then 15 | CSS+=$(echo -e "\n[data-type*=$CT] {\nborder-color: $CC;\n}") 16 | fi 17 | done 18 | export CSS 19 | 20 | if [ -z "$TEMPLATES" ]; then 21 | export TEMPLATES="{}" 22 | fi 23 | 24 | export JS=$(perl -0pe 's/\/\*DATA\*\//\`$ENV{JSON}\`,/;' -pe 's/\/\/\/COLS\/\/\//$ENV{COLS}/;' -pe 's/\/\/\/PRINT_COLS\/\/\//$ENV{PRINT_COLS}/;' -pe 's/\/\/\/INFO_COL\/\/\//$ENV{INFO_COL}/;' -pe 's/\/\/\/TEMPLATES\/\/\//$ENV{TEMPLATES}/;' $DIR/script.js) 25 | 26 | if [ "$DEBUG" = "true" ]; then 27 | export JS=$'var debug = true;\n'"$JS" 28 | else 29 | export JS=$(echo '(function() {'"$JS"'})()' | perl -0pe 's/\/\/ \@ifdef DEBUG.*?\/\/ \@endif//s;') 30 | fi 31 | 32 | if [ "$DEBUG" = "true" ]; then 33 | TEXT=$(perl -0pe 's/###JS###/$ENV{JS}/;' -pe 's/###CSS###/$ENV{CSS}/;' $DIR/pinout.html | perl -0pe 's/}`,\n]/}`,\n\/\*DATA\*\/\n]/;') 34 | else 35 | TEXT=$(perl -0pe 's/###JS###/$ENV{JS}/;' -pe 's/###CSS###/$ENV{CSS}/;' $DIR/pinout.html | minify --type html | perl -0pe 's/}`]/}`,\/\*DATA\*\/]/;') 36 | fi 37 | 38 | if [ $? -ne 0 ]; then 39 | echo "Error in gen.sh" 40 | exit 1; 41 | fi 42 | echo "$TEXT" > $2 43 | -------------------------------------------------------------------------------- /main.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # env MAPPING_PATH: yaml(s) path 3 | # env WARNINGS: 4 | # print more visible notice if "notice" 5 | # fail if "error" 6 | # skip if "skip" 7 | # env WARNING_NO_CID 8 | # env WARNING_NO_CONNECTORS 9 | # env WARNING_NO_IMAGE 10 | # env WARNING_NO_PINS 11 | # env WARNING_DUPE 12 | # same options as WARNINGS 13 | 14 | if [ "$DEBUG" = "true" ]; then 15 | echo "WARNINGS: $WARNINGS" 16 | echo "WARNING_NO_CID: $WARNING_NO_CID" 17 | echo "WARNING_NO_CONNECTORS: $WARNING_NO_CONNECTORS" 18 | echo "WARNING_NO_IMAGE: $WARNING_NO_IMAGE" 19 | echo "WARNING_NO_PINS: $WARNING_NO_PINS" 20 | echo "WARNING_DUPE: $WARNING_DUPE" 21 | fi 22 | 23 | SCRIPTDIR=$(dirname "$0") 24 | 25 | handle_warning () 26 | { 27 | if [ "$WARNINGS" = "error" ] && [ "$1" = "unset" ] || [ "$1" = "error" ]; then 28 | echo "::error:: $2" 29 | exit 1; 30 | elif [ "$WARNINGS" = "notice" ] && [ "$1" = "unset" ] || [ "$1" = "notice" ]; then 31 | echo "::notice:: $2" 32 | elif [ "$WARNINGS" = "skip" ] && [ "$1" = "unset" ] || [ "$1" = "skip" ]; then 33 | echo "$2" 34 | return 1 35 | else 36 | echo "$2" 37 | fi 38 | return 0 39 | } 40 | 41 | # Sort all the yaml files by the order field they may contain. 42 | CONNECTORS=$(echo "$MAPPING_PATH" | while read p; do find . -path "./$p"; done) 43 | 44 | if [ "$DEBUG" = "true" ]; then 45 | echo "Search Path: $MAPPING_PATH" 46 | echo "Found YAMLs: $CONNECTORS" 47 | fi 48 | 49 | if [ $(echo "$CONNECTORS" | grep -v ^$ | wc -l) -eq 0 ]; then 50 | handle_warning "$WARNING_NO_CONNECTORS" "WARNING: No connectors found" 51 | exit 52 | fi 53 | 54 | FILES=$(for f in $CONNECTORS; do 55 | ORDER=$(yq e '.info.order' "$f") 56 | echo "$f $ORDER" 57 | done) 58 | CONNECTORS=$(echo "$FILES" | sort -k2 | cut -d ' ' -f 1) 59 | 60 | # Make a temp directory for symlinks to actual files. 61 | mkdir -p pinoutstmp 62 | 63 | for c in $CONNECTORS; do 64 | echo "Processing: $c" 65 | if [ $(yq e '.pins.[].pin' "$c" | wc -c) -lt 1 ]; then 66 | if ! handle_warning "$WARNING_NO_PINS" "WARNING: No pins found in definition $c"; then continue; fi 67 | fi 68 | DUPES=$(yq e '.pins.[].pin' "$c" | grep -v "null" | sort | uniq -d | tr -d '\n') 69 | if [ -n "$DUPES" ]; then 70 | if ! handle_warning "$WARNING_DUPE" "WARNING: Duplicate pins in $c: $DUPES"; then continue; fi 71 | fi 72 | POSDUPES=$(yq e '.info.pins.[].pin' "$c" | grep -v "null" | sort | uniq -d | tr -d '\n') 73 | POSDUPES+=$(yq e '.info.image.pins.[].pin' "$c" | grep -v "null" | sort | uniq -d | tr -d '\n') 74 | if [ -n "$POSDUPES" ]; then 75 | if ! handle_warning "$WARNING_DUPE" "WARNING: Duplicate pin positionss in $c: $POSDUPES"; then continue; fi 76 | fi 77 | # Get the directory and title, if they exist 78 | DIRECTORY=$(yq e '.info.directory' "$c") 79 | TITLE=$(yq e '.info.title' "$c") 80 | # Build the temp path, removing leading ./ and / 81 | DIR="pinoutstmp/"$(dirname "$c" | sed -e 's/^\.\///' -e 's/^\///') 82 | # If we have a directory field 83 | if [ "$DIRECTORY" != "null" ]; then 84 | if [ "$DEBUG" = "true" ]; then 85 | echo "Found Directory: $DIRECTORY" 86 | fi 87 | # If temp dir exists 88 | if [ -d "$DIR" ]; then 89 | # If temp dir isn't symbolic link 90 | if [ ! -L "$DIR" ]; then 91 | if [ "$DEBUG" = "true" ]; then 92 | echo "Found Directory is normal directory" 93 | fi 94 | # It must be a real directory, move it to the final dir and link it 95 | mkdir -p "pinouts/$DIRECTORY" 96 | mv "$DIR"/* "pinouts/$DIRECTORY" 97 | rmdir "$DIR" 98 | ln -rs "pinouts/$DIRECTORY" "$DIR" 99 | # If temp dir is a link, but not to the specified directory 100 | elif TARGET=$(readlink -f "$DIR") && [ "$TARGET" != "$(realpath "pinouts/$DIRECTORY")" ]; then 101 | if [ "$DEBUG" = "true" ]; then 102 | echo "Found Directory is link to another directory: $TARGET vs $(realpath "pinouts/$DIRECTORY")" 103 | fi 104 | # Make specified directory 105 | mkdir -p "pinouts/$DIRECTORY" 106 | # Move the contents of the directory the link points to, and remove that directory 107 | mv "$(readlink -f "$DIR")"/* "pinouts/$DIRECTORY" 108 | rmdir "$(readlink -f "$DIR")" 109 | # Link to specified directory 110 | rm "$DIR" 111 | ln -rs "pinouts/$DIRECTORY" "$DIR" 112 | fi 113 | # If it doesn't exist, create specified directory and link it 114 | else 115 | mkdir -p "pinouts/$DIRECTORY" 116 | mkdir -p "$(dirname "$DIR")" 117 | ln -rs "pinouts/$DIRECTORY" "$DIR" 118 | fi 119 | # If we have a title field but not directory 120 | elif [ "$TITLE" != "null" ]; then 121 | if [ "$DEBUG" = "true" ]; then 122 | echo "Found Title: $TITLE" 123 | fi 124 | # If temp dir exists 125 | if [ -d "$DIR" ]; then 126 | # If temp dir isn't symbolic link 127 | # If it is a symbolic link, we just assume that it points to the directory field 128 | if [ ! -L "$DIR" ]; then 129 | # It must be a real directory, move it to the final dir and link it 130 | mkdir -p "pinouts/$TITLE" 131 | mv "$DIR"/* "pinouts/$TITLE" 132 | rmdir "$DIR" 133 | ln -rs "pinouts/$TITLE" "$DIR" 134 | fi 135 | # If it doesn't exist, create it at title field and link it 136 | else 137 | mkdir -p "pinouts/$TITLE" 138 | mkdir -p "$(dirname "$DIR")" 139 | ln -rs "pinouts/$TITLE" "$DIR" 140 | fi 141 | else 142 | # Fallback to creating normal directory 143 | mkdir -p "$DIR" 144 | fi 145 | if [ "$DEBUG" = "true" ]; then 146 | echo "Target Directory: $DIR" 147 | fi 148 | NAME=$(basename "$c" .yaml) 149 | if [ "$DEBUG" = "true" ]; then 150 | echo "File Name: $NAME" 151 | fi 152 | if [ "$(yq e '.info.cid' "$c")" == "null" ]; then 153 | if ! handle_warning "$WARNING_NO_CID" "WARNING: Missing yaml cid field in info section of $c"; then continue; fi 154 | fi 155 | IMG=$(yq e '.info.image.file' "$c") 156 | if [ $? -ne 0 ] || [ "$IMG" = "null" ]; then 157 | IMP=$(yq e '.info.image.import' "$c") 158 | if [ $? -ne 0 ] || [ "$IMP" = "null" ]; then 159 | if ! handle_warning "$WARNING_NO_IMAGE" "WARNING: $c missing image"; then continue; fi 160 | else 161 | IMG=$(yq e '.image.file' "$(dirname "$c")/$IMP") 162 | echo "Image: $IMG" 163 | cp "$(dirname $(dirname "$c")/$IMP)/$IMG" "$DIR" 164 | yq --inplace ea '.info.image = .image | select(fi == 0)' "$c" "$(dirname "$c")/$IMP" 165 | fi 166 | else 167 | echo "Image: $IMG" 168 | cp "$(dirname "$c")/$IMG" "$DIR" 169 | # Patch legacy YAMLs by moving .info.pins to .info.image.pins 170 | yq --inplace e '.info.image.pins = .info.pins' "$c" 171 | yq --inplace e 'del(.info.pins)' "$c" 172 | fi 173 | if [ -f "$DIR/index.html" ]; then 174 | bash "$SCRIPTDIR"/append.sh "$(yq -o=json e "$c")" "$DIR/index.html" 175 | else 176 | bash "$SCRIPTDIR"/gen.sh "$(yq -o=json e "$c")" "$DIR/index.html" 177 | fi 178 | if [ $? -ne 0 ]; then 179 | if ! handle_warning "unset" "WARNING: Failed to generate or append to pinout"; then continue; fi 180 | fi 181 | done 182 | 183 | # Delete all symbolic links and empty directories from the temp dir. 184 | find pinoutstmp -type l -delete 185 | find pinoutstmp -type d -empty -delete 186 | # Copy everything left over in the temp dir. 187 | # This will get everything that didn't have a directory or title specified. 188 | [ -d pinoutstmp ] && cp -r pinoutstmp/* pinouts/ && rm -r pinoutstmp 189 | 190 | find pinouts/ -type f -name 'index.html' -print0 | while IFS= read -r -d '' f; do 191 | DUPES=$(grep "cid\": " "$f" | uniq -d | tr -d '\n') 192 | if [ -n "$DUPES" ]; then 193 | if ! handle_warning "$WARNING_DUPE" "WARNING: Duplicate cids in $f: $DUPES"; then continue; fi 194 | fi 195 | done 196 | 197 | echo "Completed processing $(echo "$CONNECTORS" | grep -v ^$ | wc -l) mappings" 198 | -------------------------------------------------------------------------------- /mre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuckwagoncomputing/interactive-pinout/c6232df744c8b2b9fbeecc9a94d9f04448c6bbd2/mre.png -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "interactive-pinout", 3 | "lockfileVersion": 3, 4 | "requires": true, 5 | "packages": { 6 | "": { 7 | "devDependencies": { 8 | "@types/jest": "^29.5.14", 9 | "jest": "^29.7.0" 10 | } 11 | }, 12 | "node_modules/@ampproject/remapping": { 13 | "version": "2.3.0", 14 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 15 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 16 | "dev": true, 17 | "license": "Apache-2.0", 18 | "dependencies": { 19 | "@jridgewell/gen-mapping": "^0.3.5", 20 | "@jridgewell/trace-mapping": "^0.3.24" 21 | }, 22 | "engines": { 23 | "node": ">=6.0.0" 24 | } 25 | }, 26 | "node_modules/@babel/code-frame": { 27 | "version": "7.26.2", 28 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", 29 | "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", 30 | "dev": true, 31 | "license": "MIT", 32 | "dependencies": { 33 | "@babel/helper-validator-identifier": "^7.25.9", 34 | "js-tokens": "^4.0.0", 35 | "picocolors": "^1.0.0" 36 | }, 37 | "engines": { 38 | "node": ">=6.9.0" 39 | } 40 | }, 41 | "node_modules/@babel/compat-data": { 42 | "version": "7.26.2", 43 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.2.tgz", 44 | "integrity": "sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==", 45 | "dev": true, 46 | "license": "MIT", 47 | "engines": { 48 | "node": ">=6.9.0" 49 | } 50 | }, 51 | "node_modules/@babel/core": { 52 | "version": "7.26.0", 53 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz", 54 | "integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==", 55 | "dev": true, 56 | "license": "MIT", 57 | "dependencies": { 58 | "@ampproject/remapping": "^2.2.0", 59 | "@babel/code-frame": "^7.26.0", 60 | "@babel/generator": "^7.26.0", 61 | "@babel/helper-compilation-targets": "^7.25.9", 62 | "@babel/helper-module-transforms": "^7.26.0", 63 | "@babel/helpers": "^7.26.0", 64 | "@babel/parser": "^7.26.0", 65 | "@babel/template": "^7.25.9", 66 | "@babel/traverse": "^7.25.9", 67 | "@babel/types": "^7.26.0", 68 | "convert-source-map": "^2.0.0", 69 | "debug": "^4.1.0", 70 | "gensync": "^1.0.0-beta.2", 71 | "json5": "^2.2.3", 72 | "semver": "^6.3.1" 73 | }, 74 | "engines": { 75 | "node": ">=6.9.0" 76 | }, 77 | "funding": { 78 | "type": "opencollective", 79 | "url": "https://opencollective.com/babel" 80 | } 81 | }, 82 | "node_modules/@babel/generator": { 83 | "version": "7.26.2", 84 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz", 85 | "integrity": "sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==", 86 | "dev": true, 87 | "license": "MIT", 88 | "dependencies": { 89 | "@babel/parser": "^7.26.2", 90 | "@babel/types": "^7.26.0", 91 | "@jridgewell/gen-mapping": "^0.3.5", 92 | "@jridgewell/trace-mapping": "^0.3.25", 93 | "jsesc": "^3.0.2" 94 | }, 95 | "engines": { 96 | "node": ">=6.9.0" 97 | } 98 | }, 99 | "node_modules/@babel/helper-compilation-targets": { 100 | "version": "7.25.9", 101 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", 102 | "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", 103 | "dev": true, 104 | "license": "MIT", 105 | "dependencies": { 106 | "@babel/compat-data": "^7.25.9", 107 | "@babel/helper-validator-option": "^7.25.9", 108 | "browserslist": "^4.24.0", 109 | "lru-cache": "^5.1.1", 110 | "semver": "^6.3.1" 111 | }, 112 | "engines": { 113 | "node": ">=6.9.0" 114 | } 115 | }, 116 | "node_modules/@babel/helper-module-imports": { 117 | "version": "7.25.9", 118 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", 119 | "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", 120 | "dev": true, 121 | "license": "MIT", 122 | "dependencies": { 123 | "@babel/traverse": "^7.25.9", 124 | "@babel/types": "^7.25.9" 125 | }, 126 | "engines": { 127 | "node": ">=6.9.0" 128 | } 129 | }, 130 | "node_modules/@babel/helper-module-transforms": { 131 | "version": "7.26.0", 132 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", 133 | "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", 134 | "dev": true, 135 | "license": "MIT", 136 | "dependencies": { 137 | "@babel/helper-module-imports": "^7.25.9", 138 | "@babel/helper-validator-identifier": "^7.25.9", 139 | "@babel/traverse": "^7.25.9" 140 | }, 141 | "engines": { 142 | "node": ">=6.9.0" 143 | }, 144 | "peerDependencies": { 145 | "@babel/core": "^7.0.0" 146 | } 147 | }, 148 | "node_modules/@babel/helper-plugin-utils": { 149 | "version": "7.25.9", 150 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz", 151 | "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==", 152 | "dev": true, 153 | "license": "MIT", 154 | "engines": { 155 | "node": ">=6.9.0" 156 | } 157 | }, 158 | "node_modules/@babel/helper-string-parser": { 159 | "version": "7.25.9", 160 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", 161 | "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", 162 | "dev": true, 163 | "license": "MIT", 164 | "engines": { 165 | "node": ">=6.9.0" 166 | } 167 | }, 168 | "node_modules/@babel/helper-validator-identifier": { 169 | "version": "7.25.9", 170 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", 171 | "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", 172 | "dev": true, 173 | "license": "MIT", 174 | "engines": { 175 | "node": ">=6.9.0" 176 | } 177 | }, 178 | "node_modules/@babel/helper-validator-option": { 179 | "version": "7.25.9", 180 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", 181 | "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", 182 | "dev": true, 183 | "license": "MIT", 184 | "engines": { 185 | "node": ">=6.9.0" 186 | } 187 | }, 188 | "node_modules/@babel/helpers": { 189 | "version": "7.26.0", 190 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz", 191 | "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", 192 | "dev": true, 193 | "license": "MIT", 194 | "dependencies": { 195 | "@babel/template": "^7.25.9", 196 | "@babel/types": "^7.26.0" 197 | }, 198 | "engines": { 199 | "node": ">=6.9.0" 200 | } 201 | }, 202 | "node_modules/@babel/parser": { 203 | "version": "7.26.2", 204 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz", 205 | "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==", 206 | "dev": true, 207 | "license": "MIT", 208 | "dependencies": { 209 | "@babel/types": "^7.26.0" 210 | }, 211 | "bin": { 212 | "parser": "bin/babel-parser.js" 213 | }, 214 | "engines": { 215 | "node": ">=6.0.0" 216 | } 217 | }, 218 | "node_modules/@babel/plugin-syntax-async-generators": { 219 | "version": "7.8.4", 220 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", 221 | "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", 222 | "dev": true, 223 | "license": "MIT", 224 | "dependencies": { 225 | "@babel/helper-plugin-utils": "^7.8.0" 226 | }, 227 | "peerDependencies": { 228 | "@babel/core": "^7.0.0-0" 229 | } 230 | }, 231 | "node_modules/@babel/plugin-syntax-bigint": { 232 | "version": "7.8.3", 233 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", 234 | "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", 235 | "dev": true, 236 | "license": "MIT", 237 | "dependencies": { 238 | "@babel/helper-plugin-utils": "^7.8.0" 239 | }, 240 | "peerDependencies": { 241 | "@babel/core": "^7.0.0-0" 242 | } 243 | }, 244 | "node_modules/@babel/plugin-syntax-class-properties": { 245 | "version": "7.12.13", 246 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", 247 | "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", 248 | "dev": true, 249 | "license": "MIT", 250 | "dependencies": { 251 | "@babel/helper-plugin-utils": "^7.12.13" 252 | }, 253 | "peerDependencies": { 254 | "@babel/core": "^7.0.0-0" 255 | } 256 | }, 257 | "node_modules/@babel/plugin-syntax-class-static-block": { 258 | "version": "7.14.5", 259 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", 260 | "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", 261 | "dev": true, 262 | "license": "MIT", 263 | "dependencies": { 264 | "@babel/helper-plugin-utils": "^7.14.5" 265 | }, 266 | "engines": { 267 | "node": ">=6.9.0" 268 | }, 269 | "peerDependencies": { 270 | "@babel/core": "^7.0.0-0" 271 | } 272 | }, 273 | "node_modules/@babel/plugin-syntax-import-attributes": { 274 | "version": "7.26.0", 275 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", 276 | "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", 277 | "dev": true, 278 | "license": "MIT", 279 | "dependencies": { 280 | "@babel/helper-plugin-utils": "^7.25.9" 281 | }, 282 | "engines": { 283 | "node": ">=6.9.0" 284 | }, 285 | "peerDependencies": { 286 | "@babel/core": "^7.0.0-0" 287 | } 288 | }, 289 | "node_modules/@babel/plugin-syntax-import-meta": { 290 | "version": "7.10.4", 291 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", 292 | "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", 293 | "dev": true, 294 | "license": "MIT", 295 | "dependencies": { 296 | "@babel/helper-plugin-utils": "^7.10.4" 297 | }, 298 | "peerDependencies": { 299 | "@babel/core": "^7.0.0-0" 300 | } 301 | }, 302 | "node_modules/@babel/plugin-syntax-json-strings": { 303 | "version": "7.8.3", 304 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", 305 | "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", 306 | "dev": true, 307 | "license": "MIT", 308 | "dependencies": { 309 | "@babel/helper-plugin-utils": "^7.8.0" 310 | }, 311 | "peerDependencies": { 312 | "@babel/core": "^7.0.0-0" 313 | } 314 | }, 315 | "node_modules/@babel/plugin-syntax-jsx": { 316 | "version": "7.25.9", 317 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", 318 | "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", 319 | "dev": true, 320 | "license": "MIT", 321 | "dependencies": { 322 | "@babel/helper-plugin-utils": "^7.25.9" 323 | }, 324 | "engines": { 325 | "node": ">=6.9.0" 326 | }, 327 | "peerDependencies": { 328 | "@babel/core": "^7.0.0-0" 329 | } 330 | }, 331 | "node_modules/@babel/plugin-syntax-logical-assignment-operators": { 332 | "version": "7.10.4", 333 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", 334 | "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", 335 | "dev": true, 336 | "license": "MIT", 337 | "dependencies": { 338 | "@babel/helper-plugin-utils": "^7.10.4" 339 | }, 340 | "peerDependencies": { 341 | "@babel/core": "^7.0.0-0" 342 | } 343 | }, 344 | "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { 345 | "version": "7.8.3", 346 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", 347 | "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", 348 | "dev": true, 349 | "license": "MIT", 350 | "dependencies": { 351 | "@babel/helper-plugin-utils": "^7.8.0" 352 | }, 353 | "peerDependencies": { 354 | "@babel/core": "^7.0.0-0" 355 | } 356 | }, 357 | "node_modules/@babel/plugin-syntax-numeric-separator": { 358 | "version": "7.10.4", 359 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", 360 | "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", 361 | "dev": true, 362 | "license": "MIT", 363 | "dependencies": { 364 | "@babel/helper-plugin-utils": "^7.10.4" 365 | }, 366 | "peerDependencies": { 367 | "@babel/core": "^7.0.0-0" 368 | } 369 | }, 370 | "node_modules/@babel/plugin-syntax-object-rest-spread": { 371 | "version": "7.8.3", 372 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", 373 | "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", 374 | "dev": true, 375 | "license": "MIT", 376 | "dependencies": { 377 | "@babel/helper-plugin-utils": "^7.8.0" 378 | }, 379 | "peerDependencies": { 380 | "@babel/core": "^7.0.0-0" 381 | } 382 | }, 383 | "node_modules/@babel/plugin-syntax-optional-catch-binding": { 384 | "version": "7.8.3", 385 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", 386 | "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", 387 | "dev": true, 388 | "license": "MIT", 389 | "dependencies": { 390 | "@babel/helper-plugin-utils": "^7.8.0" 391 | }, 392 | "peerDependencies": { 393 | "@babel/core": "^7.0.0-0" 394 | } 395 | }, 396 | "node_modules/@babel/plugin-syntax-optional-chaining": { 397 | "version": "7.8.3", 398 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", 399 | "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", 400 | "dev": true, 401 | "license": "MIT", 402 | "dependencies": { 403 | "@babel/helper-plugin-utils": "^7.8.0" 404 | }, 405 | "peerDependencies": { 406 | "@babel/core": "^7.0.0-0" 407 | } 408 | }, 409 | "node_modules/@babel/plugin-syntax-private-property-in-object": { 410 | "version": "7.14.5", 411 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", 412 | "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", 413 | "dev": true, 414 | "license": "MIT", 415 | "dependencies": { 416 | "@babel/helper-plugin-utils": "^7.14.5" 417 | }, 418 | "engines": { 419 | "node": ">=6.9.0" 420 | }, 421 | "peerDependencies": { 422 | "@babel/core": "^7.0.0-0" 423 | } 424 | }, 425 | "node_modules/@babel/plugin-syntax-top-level-await": { 426 | "version": "7.14.5", 427 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", 428 | "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", 429 | "dev": true, 430 | "license": "MIT", 431 | "dependencies": { 432 | "@babel/helper-plugin-utils": "^7.14.5" 433 | }, 434 | "engines": { 435 | "node": ">=6.9.0" 436 | }, 437 | "peerDependencies": { 438 | "@babel/core": "^7.0.0-0" 439 | } 440 | }, 441 | "node_modules/@babel/plugin-syntax-typescript": { 442 | "version": "7.25.9", 443 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", 444 | "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", 445 | "dev": true, 446 | "license": "MIT", 447 | "dependencies": { 448 | "@babel/helper-plugin-utils": "^7.25.9" 449 | }, 450 | "engines": { 451 | "node": ">=6.9.0" 452 | }, 453 | "peerDependencies": { 454 | "@babel/core": "^7.0.0-0" 455 | } 456 | }, 457 | "node_modules/@babel/template": { 458 | "version": "7.25.9", 459 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", 460 | "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", 461 | "dev": true, 462 | "license": "MIT", 463 | "dependencies": { 464 | "@babel/code-frame": "^7.25.9", 465 | "@babel/parser": "^7.25.9", 466 | "@babel/types": "^7.25.9" 467 | }, 468 | "engines": { 469 | "node": ">=6.9.0" 470 | } 471 | }, 472 | "node_modules/@babel/traverse": { 473 | "version": "7.25.9", 474 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz", 475 | "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==", 476 | "dev": true, 477 | "license": "MIT", 478 | "dependencies": { 479 | "@babel/code-frame": "^7.25.9", 480 | "@babel/generator": "^7.25.9", 481 | "@babel/parser": "^7.25.9", 482 | "@babel/template": "^7.25.9", 483 | "@babel/types": "^7.25.9", 484 | "debug": "^4.3.1", 485 | "globals": "^11.1.0" 486 | }, 487 | "engines": { 488 | "node": ">=6.9.0" 489 | } 490 | }, 491 | "node_modules/@babel/types": { 492 | "version": "7.26.0", 493 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz", 494 | "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==", 495 | "dev": true, 496 | "license": "MIT", 497 | "dependencies": { 498 | "@babel/helper-string-parser": "^7.25.9", 499 | "@babel/helper-validator-identifier": "^7.25.9" 500 | }, 501 | "engines": { 502 | "node": ">=6.9.0" 503 | } 504 | }, 505 | "node_modules/@bcoe/v8-coverage": { 506 | "version": "0.2.3", 507 | "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", 508 | "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", 509 | "dev": true, 510 | "license": "MIT" 511 | }, 512 | "node_modules/@istanbuljs/load-nyc-config": { 513 | "version": "1.1.0", 514 | "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", 515 | "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", 516 | "dev": true, 517 | "license": "ISC", 518 | "dependencies": { 519 | "camelcase": "^5.3.1", 520 | "find-up": "^4.1.0", 521 | "get-package-type": "^0.1.0", 522 | "js-yaml": "^3.13.1", 523 | "resolve-from": "^5.0.0" 524 | }, 525 | "engines": { 526 | "node": ">=8" 527 | } 528 | }, 529 | "node_modules/@istanbuljs/schema": { 530 | "version": "0.1.3", 531 | "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", 532 | "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", 533 | "dev": true, 534 | "license": "MIT", 535 | "engines": { 536 | "node": ">=8" 537 | } 538 | }, 539 | "node_modules/@jest/console": { 540 | "version": "29.7.0", 541 | "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", 542 | "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", 543 | "dev": true, 544 | "license": "MIT", 545 | "dependencies": { 546 | "@jest/types": "^29.6.3", 547 | "@types/node": "*", 548 | "chalk": "^4.0.0", 549 | "jest-message-util": "^29.7.0", 550 | "jest-util": "^29.7.0", 551 | "slash": "^3.0.0" 552 | }, 553 | "engines": { 554 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 555 | } 556 | }, 557 | "node_modules/@jest/core": { 558 | "version": "29.7.0", 559 | "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", 560 | "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", 561 | "dev": true, 562 | "license": "MIT", 563 | "dependencies": { 564 | "@jest/console": "^29.7.0", 565 | "@jest/reporters": "^29.7.0", 566 | "@jest/test-result": "^29.7.0", 567 | "@jest/transform": "^29.7.0", 568 | "@jest/types": "^29.6.3", 569 | "@types/node": "*", 570 | "ansi-escapes": "^4.2.1", 571 | "chalk": "^4.0.0", 572 | "ci-info": "^3.2.0", 573 | "exit": "^0.1.2", 574 | "graceful-fs": "^4.2.9", 575 | "jest-changed-files": "^29.7.0", 576 | "jest-config": "^29.7.0", 577 | "jest-haste-map": "^29.7.0", 578 | "jest-message-util": "^29.7.0", 579 | "jest-regex-util": "^29.6.3", 580 | "jest-resolve": "^29.7.0", 581 | "jest-resolve-dependencies": "^29.7.0", 582 | "jest-runner": "^29.7.0", 583 | "jest-runtime": "^29.7.0", 584 | "jest-snapshot": "^29.7.0", 585 | "jest-util": "^29.7.0", 586 | "jest-validate": "^29.7.0", 587 | "jest-watcher": "^29.7.0", 588 | "micromatch": "^4.0.4", 589 | "pretty-format": "^29.7.0", 590 | "slash": "^3.0.0", 591 | "strip-ansi": "^6.0.0" 592 | }, 593 | "engines": { 594 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 595 | }, 596 | "peerDependencies": { 597 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 598 | }, 599 | "peerDependenciesMeta": { 600 | "node-notifier": { 601 | "optional": true 602 | } 603 | } 604 | }, 605 | "node_modules/@jest/environment": { 606 | "version": "29.7.0", 607 | "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", 608 | "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", 609 | "dev": true, 610 | "license": "MIT", 611 | "dependencies": { 612 | "@jest/fake-timers": "^29.7.0", 613 | "@jest/types": "^29.6.3", 614 | "@types/node": "*", 615 | "jest-mock": "^29.7.0" 616 | }, 617 | "engines": { 618 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 619 | } 620 | }, 621 | "node_modules/@jest/expect": { 622 | "version": "29.7.0", 623 | "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", 624 | "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", 625 | "dev": true, 626 | "license": "MIT", 627 | "dependencies": { 628 | "expect": "^29.7.0", 629 | "jest-snapshot": "^29.7.0" 630 | }, 631 | "engines": { 632 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 633 | } 634 | }, 635 | "node_modules/@jest/expect-utils": { 636 | "version": "29.7.0", 637 | "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", 638 | "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", 639 | "dev": true, 640 | "license": "MIT", 641 | "dependencies": { 642 | "jest-get-type": "^29.6.3" 643 | }, 644 | "engines": { 645 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 646 | } 647 | }, 648 | "node_modules/@jest/fake-timers": { 649 | "version": "29.7.0", 650 | "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", 651 | "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", 652 | "dev": true, 653 | "license": "MIT", 654 | "dependencies": { 655 | "@jest/types": "^29.6.3", 656 | "@sinonjs/fake-timers": "^10.0.2", 657 | "@types/node": "*", 658 | "jest-message-util": "^29.7.0", 659 | "jest-mock": "^29.7.0", 660 | "jest-util": "^29.7.0" 661 | }, 662 | "engines": { 663 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 664 | } 665 | }, 666 | "node_modules/@jest/globals": { 667 | "version": "29.7.0", 668 | "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", 669 | "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", 670 | "dev": true, 671 | "license": "MIT", 672 | "dependencies": { 673 | "@jest/environment": "^29.7.0", 674 | "@jest/expect": "^29.7.0", 675 | "@jest/types": "^29.6.3", 676 | "jest-mock": "^29.7.0" 677 | }, 678 | "engines": { 679 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 680 | } 681 | }, 682 | "node_modules/@jest/reporters": { 683 | "version": "29.7.0", 684 | "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", 685 | "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", 686 | "dev": true, 687 | "license": "MIT", 688 | "dependencies": { 689 | "@bcoe/v8-coverage": "^0.2.3", 690 | "@jest/console": "^29.7.0", 691 | "@jest/test-result": "^29.7.0", 692 | "@jest/transform": "^29.7.0", 693 | "@jest/types": "^29.6.3", 694 | "@jridgewell/trace-mapping": "^0.3.18", 695 | "@types/node": "*", 696 | "chalk": "^4.0.0", 697 | "collect-v8-coverage": "^1.0.0", 698 | "exit": "^0.1.2", 699 | "glob": "^7.1.3", 700 | "graceful-fs": "^4.2.9", 701 | "istanbul-lib-coverage": "^3.0.0", 702 | "istanbul-lib-instrument": "^6.0.0", 703 | "istanbul-lib-report": "^3.0.0", 704 | "istanbul-lib-source-maps": "^4.0.0", 705 | "istanbul-reports": "^3.1.3", 706 | "jest-message-util": "^29.7.0", 707 | "jest-util": "^29.7.0", 708 | "jest-worker": "^29.7.0", 709 | "slash": "^3.0.0", 710 | "string-length": "^4.0.1", 711 | "strip-ansi": "^6.0.0", 712 | "v8-to-istanbul": "^9.0.1" 713 | }, 714 | "engines": { 715 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 716 | }, 717 | "peerDependencies": { 718 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 719 | }, 720 | "peerDependenciesMeta": { 721 | "node-notifier": { 722 | "optional": true 723 | } 724 | } 725 | }, 726 | "node_modules/@jest/schemas": { 727 | "version": "29.6.3", 728 | "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", 729 | "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", 730 | "dev": true, 731 | "license": "MIT", 732 | "dependencies": { 733 | "@sinclair/typebox": "^0.27.8" 734 | }, 735 | "engines": { 736 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 737 | } 738 | }, 739 | "node_modules/@jest/source-map": { 740 | "version": "29.6.3", 741 | "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", 742 | "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", 743 | "dev": true, 744 | "license": "MIT", 745 | "dependencies": { 746 | "@jridgewell/trace-mapping": "^0.3.18", 747 | "callsites": "^3.0.0", 748 | "graceful-fs": "^4.2.9" 749 | }, 750 | "engines": { 751 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 752 | } 753 | }, 754 | "node_modules/@jest/test-result": { 755 | "version": "29.7.0", 756 | "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", 757 | "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", 758 | "dev": true, 759 | "license": "MIT", 760 | "dependencies": { 761 | "@jest/console": "^29.7.0", 762 | "@jest/types": "^29.6.3", 763 | "@types/istanbul-lib-coverage": "^2.0.0", 764 | "collect-v8-coverage": "^1.0.0" 765 | }, 766 | "engines": { 767 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 768 | } 769 | }, 770 | "node_modules/@jest/test-sequencer": { 771 | "version": "29.7.0", 772 | "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", 773 | "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", 774 | "dev": true, 775 | "license": "MIT", 776 | "dependencies": { 777 | "@jest/test-result": "^29.7.0", 778 | "graceful-fs": "^4.2.9", 779 | "jest-haste-map": "^29.7.0", 780 | "slash": "^3.0.0" 781 | }, 782 | "engines": { 783 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 784 | } 785 | }, 786 | "node_modules/@jest/transform": { 787 | "version": "29.7.0", 788 | "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", 789 | "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", 790 | "dev": true, 791 | "license": "MIT", 792 | "dependencies": { 793 | "@babel/core": "^7.11.6", 794 | "@jest/types": "^29.6.3", 795 | "@jridgewell/trace-mapping": "^0.3.18", 796 | "babel-plugin-istanbul": "^6.1.1", 797 | "chalk": "^4.0.0", 798 | "convert-source-map": "^2.0.0", 799 | "fast-json-stable-stringify": "^2.1.0", 800 | "graceful-fs": "^4.2.9", 801 | "jest-haste-map": "^29.7.0", 802 | "jest-regex-util": "^29.6.3", 803 | "jest-util": "^29.7.0", 804 | "micromatch": "^4.0.4", 805 | "pirates": "^4.0.4", 806 | "slash": "^3.0.0", 807 | "write-file-atomic": "^4.0.2" 808 | }, 809 | "engines": { 810 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 811 | } 812 | }, 813 | "node_modules/@jest/types": { 814 | "version": "29.6.3", 815 | "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", 816 | "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", 817 | "dev": true, 818 | "license": "MIT", 819 | "dependencies": { 820 | "@jest/schemas": "^29.6.3", 821 | "@types/istanbul-lib-coverage": "^2.0.0", 822 | "@types/istanbul-reports": "^3.0.0", 823 | "@types/node": "*", 824 | "@types/yargs": "^17.0.8", 825 | "chalk": "^4.0.0" 826 | }, 827 | "engines": { 828 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 829 | } 830 | }, 831 | "node_modules/@jridgewell/gen-mapping": { 832 | "version": "0.3.5", 833 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 834 | "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 835 | "dev": true, 836 | "license": "MIT", 837 | "dependencies": { 838 | "@jridgewell/set-array": "^1.2.1", 839 | "@jridgewell/sourcemap-codec": "^1.4.10", 840 | "@jridgewell/trace-mapping": "^0.3.24" 841 | }, 842 | "engines": { 843 | "node": ">=6.0.0" 844 | } 845 | }, 846 | "node_modules/@jridgewell/resolve-uri": { 847 | "version": "3.1.2", 848 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 849 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 850 | "dev": true, 851 | "license": "MIT", 852 | "engines": { 853 | "node": ">=6.0.0" 854 | } 855 | }, 856 | "node_modules/@jridgewell/set-array": { 857 | "version": "1.2.1", 858 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 859 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 860 | "dev": true, 861 | "license": "MIT", 862 | "engines": { 863 | "node": ">=6.0.0" 864 | } 865 | }, 866 | "node_modules/@jridgewell/sourcemap-codec": { 867 | "version": "1.5.0", 868 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 869 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 870 | "dev": true, 871 | "license": "MIT" 872 | }, 873 | "node_modules/@jridgewell/trace-mapping": { 874 | "version": "0.3.25", 875 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 876 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 877 | "dev": true, 878 | "license": "MIT", 879 | "dependencies": { 880 | "@jridgewell/resolve-uri": "^3.1.0", 881 | "@jridgewell/sourcemap-codec": "^1.4.14" 882 | } 883 | }, 884 | "node_modules/@sinclair/typebox": { 885 | "version": "0.27.8", 886 | "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", 887 | "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", 888 | "dev": true, 889 | "license": "MIT" 890 | }, 891 | "node_modules/@sinonjs/commons": { 892 | "version": "3.0.1", 893 | "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", 894 | "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", 895 | "dev": true, 896 | "license": "BSD-3-Clause", 897 | "dependencies": { 898 | "type-detect": "4.0.8" 899 | } 900 | }, 901 | "node_modules/@sinonjs/fake-timers": { 902 | "version": "10.3.0", 903 | "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", 904 | "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", 905 | "dev": true, 906 | "license": "BSD-3-Clause", 907 | "dependencies": { 908 | "@sinonjs/commons": "^3.0.0" 909 | } 910 | }, 911 | "node_modules/@types/babel__core": { 912 | "version": "7.20.5", 913 | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", 914 | "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", 915 | "dev": true, 916 | "license": "MIT", 917 | "dependencies": { 918 | "@babel/parser": "^7.20.7", 919 | "@babel/types": "^7.20.7", 920 | "@types/babel__generator": "*", 921 | "@types/babel__template": "*", 922 | "@types/babel__traverse": "*" 923 | } 924 | }, 925 | "node_modules/@types/babel__generator": { 926 | "version": "7.6.8", 927 | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", 928 | "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", 929 | "dev": true, 930 | "license": "MIT", 931 | "dependencies": { 932 | "@babel/types": "^7.0.0" 933 | } 934 | }, 935 | "node_modules/@types/babel__template": { 936 | "version": "7.4.4", 937 | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", 938 | "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", 939 | "dev": true, 940 | "license": "MIT", 941 | "dependencies": { 942 | "@babel/parser": "^7.1.0", 943 | "@babel/types": "^7.0.0" 944 | } 945 | }, 946 | "node_modules/@types/babel__traverse": { 947 | "version": "7.20.6", 948 | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", 949 | "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", 950 | "dev": true, 951 | "license": "MIT", 952 | "dependencies": { 953 | "@babel/types": "^7.20.7" 954 | } 955 | }, 956 | "node_modules/@types/graceful-fs": { 957 | "version": "4.1.9", 958 | "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", 959 | "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", 960 | "dev": true, 961 | "license": "MIT", 962 | "dependencies": { 963 | "@types/node": "*" 964 | } 965 | }, 966 | "node_modules/@types/istanbul-lib-coverage": { 967 | "version": "2.0.6", 968 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", 969 | "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", 970 | "dev": true, 971 | "license": "MIT" 972 | }, 973 | "node_modules/@types/istanbul-lib-report": { 974 | "version": "3.0.3", 975 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", 976 | "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", 977 | "dev": true, 978 | "license": "MIT", 979 | "dependencies": { 980 | "@types/istanbul-lib-coverage": "*" 981 | } 982 | }, 983 | "node_modules/@types/istanbul-reports": { 984 | "version": "3.0.4", 985 | "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", 986 | "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", 987 | "dev": true, 988 | "license": "MIT", 989 | "dependencies": { 990 | "@types/istanbul-lib-report": "*" 991 | } 992 | }, 993 | "node_modules/@types/jest": { 994 | "version": "29.5.14", 995 | "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.14.tgz", 996 | "integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==", 997 | "dev": true, 998 | "license": "MIT", 999 | "dependencies": { 1000 | "expect": "^29.0.0", 1001 | "pretty-format": "^29.0.0" 1002 | } 1003 | }, 1004 | "node_modules/@types/node": { 1005 | "version": "22.8.7", 1006 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.8.7.tgz", 1007 | "integrity": "sha512-LidcG+2UeYIWcMuMUpBKOnryBWG/rnmOHQR5apjn8myTQcx3rinFRn7DcIFhMnS0PPFSC6OafdIKEad0lj6U0Q==", 1008 | "dev": true, 1009 | "license": "MIT", 1010 | "dependencies": { 1011 | "undici-types": "~6.19.8" 1012 | } 1013 | }, 1014 | "node_modules/@types/stack-utils": { 1015 | "version": "2.0.3", 1016 | "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", 1017 | "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", 1018 | "dev": true, 1019 | "license": "MIT" 1020 | }, 1021 | "node_modules/@types/yargs": { 1022 | "version": "17.0.33", 1023 | "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", 1024 | "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", 1025 | "dev": true, 1026 | "license": "MIT", 1027 | "dependencies": { 1028 | "@types/yargs-parser": "*" 1029 | } 1030 | }, 1031 | "node_modules/@types/yargs-parser": { 1032 | "version": "21.0.3", 1033 | "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", 1034 | "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", 1035 | "dev": true, 1036 | "license": "MIT" 1037 | }, 1038 | "node_modules/ansi-escapes": { 1039 | "version": "4.3.2", 1040 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", 1041 | "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", 1042 | "dev": true, 1043 | "license": "MIT", 1044 | "dependencies": { 1045 | "type-fest": "^0.21.3" 1046 | }, 1047 | "engines": { 1048 | "node": ">=8" 1049 | }, 1050 | "funding": { 1051 | "url": "https://github.com/sponsors/sindresorhus" 1052 | } 1053 | }, 1054 | "node_modules/ansi-regex": { 1055 | "version": "5.0.1", 1056 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1057 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1058 | "dev": true, 1059 | "license": "MIT", 1060 | "engines": { 1061 | "node": ">=8" 1062 | } 1063 | }, 1064 | "node_modules/ansi-styles": { 1065 | "version": "4.3.0", 1066 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1067 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1068 | "dev": true, 1069 | "license": "MIT", 1070 | "dependencies": { 1071 | "color-convert": "^2.0.1" 1072 | }, 1073 | "engines": { 1074 | "node": ">=8" 1075 | }, 1076 | "funding": { 1077 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1078 | } 1079 | }, 1080 | "node_modules/anymatch": { 1081 | "version": "3.1.3", 1082 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1083 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1084 | "dev": true, 1085 | "license": "ISC", 1086 | "dependencies": { 1087 | "normalize-path": "^3.0.0", 1088 | "picomatch": "^2.0.4" 1089 | }, 1090 | "engines": { 1091 | "node": ">= 8" 1092 | } 1093 | }, 1094 | "node_modules/argparse": { 1095 | "version": "1.0.10", 1096 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 1097 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 1098 | "dev": true, 1099 | "license": "MIT", 1100 | "dependencies": { 1101 | "sprintf-js": "~1.0.2" 1102 | } 1103 | }, 1104 | "node_modules/babel-jest": { 1105 | "version": "29.7.0", 1106 | "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", 1107 | "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", 1108 | "dev": true, 1109 | "license": "MIT", 1110 | "dependencies": { 1111 | "@jest/transform": "^29.7.0", 1112 | "@types/babel__core": "^7.1.14", 1113 | "babel-plugin-istanbul": "^6.1.1", 1114 | "babel-preset-jest": "^29.6.3", 1115 | "chalk": "^4.0.0", 1116 | "graceful-fs": "^4.2.9", 1117 | "slash": "^3.0.0" 1118 | }, 1119 | "engines": { 1120 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1121 | }, 1122 | "peerDependencies": { 1123 | "@babel/core": "^7.8.0" 1124 | } 1125 | }, 1126 | "node_modules/babel-plugin-istanbul": { 1127 | "version": "6.1.1", 1128 | "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", 1129 | "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", 1130 | "dev": true, 1131 | "license": "BSD-3-Clause", 1132 | "dependencies": { 1133 | "@babel/helper-plugin-utils": "^7.0.0", 1134 | "@istanbuljs/load-nyc-config": "^1.0.0", 1135 | "@istanbuljs/schema": "^0.1.2", 1136 | "istanbul-lib-instrument": "^5.0.4", 1137 | "test-exclude": "^6.0.0" 1138 | }, 1139 | "engines": { 1140 | "node": ">=8" 1141 | } 1142 | }, 1143 | "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { 1144 | "version": "5.2.1", 1145 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", 1146 | "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", 1147 | "dev": true, 1148 | "license": "BSD-3-Clause", 1149 | "dependencies": { 1150 | "@babel/core": "^7.12.3", 1151 | "@babel/parser": "^7.14.7", 1152 | "@istanbuljs/schema": "^0.1.2", 1153 | "istanbul-lib-coverage": "^3.2.0", 1154 | "semver": "^6.3.0" 1155 | }, 1156 | "engines": { 1157 | "node": ">=8" 1158 | } 1159 | }, 1160 | "node_modules/babel-plugin-jest-hoist": { 1161 | "version": "29.6.3", 1162 | "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", 1163 | "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", 1164 | "dev": true, 1165 | "license": "MIT", 1166 | "dependencies": { 1167 | "@babel/template": "^7.3.3", 1168 | "@babel/types": "^7.3.3", 1169 | "@types/babel__core": "^7.1.14", 1170 | "@types/babel__traverse": "^7.0.6" 1171 | }, 1172 | "engines": { 1173 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1174 | } 1175 | }, 1176 | "node_modules/babel-preset-current-node-syntax": { 1177 | "version": "1.1.0", 1178 | "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", 1179 | "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", 1180 | "dev": true, 1181 | "license": "MIT", 1182 | "dependencies": { 1183 | "@babel/plugin-syntax-async-generators": "^7.8.4", 1184 | "@babel/plugin-syntax-bigint": "^7.8.3", 1185 | "@babel/plugin-syntax-class-properties": "^7.12.13", 1186 | "@babel/plugin-syntax-class-static-block": "^7.14.5", 1187 | "@babel/plugin-syntax-import-attributes": "^7.24.7", 1188 | "@babel/plugin-syntax-import-meta": "^7.10.4", 1189 | "@babel/plugin-syntax-json-strings": "^7.8.3", 1190 | "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", 1191 | "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", 1192 | "@babel/plugin-syntax-numeric-separator": "^7.10.4", 1193 | "@babel/plugin-syntax-object-rest-spread": "^7.8.3", 1194 | "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", 1195 | "@babel/plugin-syntax-optional-chaining": "^7.8.3", 1196 | "@babel/plugin-syntax-private-property-in-object": "^7.14.5", 1197 | "@babel/plugin-syntax-top-level-await": "^7.14.5" 1198 | }, 1199 | "peerDependencies": { 1200 | "@babel/core": "^7.0.0" 1201 | } 1202 | }, 1203 | "node_modules/babel-preset-jest": { 1204 | "version": "29.6.3", 1205 | "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", 1206 | "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", 1207 | "dev": true, 1208 | "license": "MIT", 1209 | "dependencies": { 1210 | "babel-plugin-jest-hoist": "^29.6.3", 1211 | "babel-preset-current-node-syntax": "^1.0.0" 1212 | }, 1213 | "engines": { 1214 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1215 | }, 1216 | "peerDependencies": { 1217 | "@babel/core": "^7.0.0" 1218 | } 1219 | }, 1220 | "node_modules/balanced-match": { 1221 | "version": "1.0.2", 1222 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1223 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1224 | "dev": true, 1225 | "license": "MIT" 1226 | }, 1227 | "node_modules/brace-expansion": { 1228 | "version": "1.1.11", 1229 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1230 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1231 | "dev": true, 1232 | "license": "MIT", 1233 | "dependencies": { 1234 | "balanced-match": "^1.0.0", 1235 | "concat-map": "0.0.1" 1236 | } 1237 | }, 1238 | "node_modules/braces": { 1239 | "version": "3.0.3", 1240 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1241 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1242 | "dev": true, 1243 | "license": "MIT", 1244 | "dependencies": { 1245 | "fill-range": "^7.1.1" 1246 | }, 1247 | "engines": { 1248 | "node": ">=8" 1249 | } 1250 | }, 1251 | "node_modules/browserslist": { 1252 | "version": "4.24.2", 1253 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", 1254 | "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", 1255 | "dev": true, 1256 | "funding": [ 1257 | { 1258 | "type": "opencollective", 1259 | "url": "https://opencollective.com/browserslist" 1260 | }, 1261 | { 1262 | "type": "tidelift", 1263 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1264 | }, 1265 | { 1266 | "type": "github", 1267 | "url": "https://github.com/sponsors/ai" 1268 | } 1269 | ], 1270 | "license": "MIT", 1271 | "dependencies": { 1272 | "caniuse-lite": "^1.0.30001669", 1273 | "electron-to-chromium": "^1.5.41", 1274 | "node-releases": "^2.0.18", 1275 | "update-browserslist-db": "^1.1.1" 1276 | }, 1277 | "bin": { 1278 | "browserslist": "cli.js" 1279 | }, 1280 | "engines": { 1281 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1282 | } 1283 | }, 1284 | "node_modules/bser": { 1285 | "version": "2.1.1", 1286 | "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", 1287 | "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", 1288 | "dev": true, 1289 | "license": "Apache-2.0", 1290 | "dependencies": { 1291 | "node-int64": "^0.4.0" 1292 | } 1293 | }, 1294 | "node_modules/buffer-from": { 1295 | "version": "1.1.2", 1296 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 1297 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 1298 | "dev": true, 1299 | "license": "MIT" 1300 | }, 1301 | "node_modules/callsites": { 1302 | "version": "3.1.0", 1303 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1304 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1305 | "dev": true, 1306 | "license": "MIT", 1307 | "engines": { 1308 | "node": ">=6" 1309 | } 1310 | }, 1311 | "node_modules/camelcase": { 1312 | "version": "5.3.1", 1313 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", 1314 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", 1315 | "dev": true, 1316 | "license": "MIT", 1317 | "engines": { 1318 | "node": ">=6" 1319 | } 1320 | }, 1321 | "node_modules/caniuse-lite": { 1322 | "version": "1.0.30001677", 1323 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001677.tgz", 1324 | "integrity": "sha512-fmfjsOlJUpMWu+mAAtZZZHz7UEwsUxIIvu1TJfO1HqFQvB/B+ii0xr9B5HpbZY/mC4XZ8SvjHJqtAY6pDPQEog==", 1325 | "dev": true, 1326 | "funding": [ 1327 | { 1328 | "type": "opencollective", 1329 | "url": "https://opencollective.com/browserslist" 1330 | }, 1331 | { 1332 | "type": "tidelift", 1333 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1334 | }, 1335 | { 1336 | "type": "github", 1337 | "url": "https://github.com/sponsors/ai" 1338 | } 1339 | ], 1340 | "license": "CC-BY-4.0" 1341 | }, 1342 | "node_modules/chalk": { 1343 | "version": "4.1.2", 1344 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1345 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1346 | "dev": true, 1347 | "license": "MIT", 1348 | "dependencies": { 1349 | "ansi-styles": "^4.1.0", 1350 | "supports-color": "^7.1.0" 1351 | }, 1352 | "engines": { 1353 | "node": ">=10" 1354 | }, 1355 | "funding": { 1356 | "url": "https://github.com/chalk/chalk?sponsor=1" 1357 | } 1358 | }, 1359 | "node_modules/char-regex": { 1360 | "version": "1.0.2", 1361 | "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", 1362 | "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", 1363 | "dev": true, 1364 | "license": "MIT", 1365 | "engines": { 1366 | "node": ">=10" 1367 | } 1368 | }, 1369 | "node_modules/ci-info": { 1370 | "version": "3.9.0", 1371 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", 1372 | "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", 1373 | "dev": true, 1374 | "funding": [ 1375 | { 1376 | "type": "github", 1377 | "url": "https://github.com/sponsors/sibiraj-s" 1378 | } 1379 | ], 1380 | "license": "MIT", 1381 | "engines": { 1382 | "node": ">=8" 1383 | } 1384 | }, 1385 | "node_modules/cjs-module-lexer": { 1386 | "version": "1.4.1", 1387 | "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz", 1388 | "integrity": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==", 1389 | "dev": true, 1390 | "license": "MIT" 1391 | }, 1392 | "node_modules/cliui": { 1393 | "version": "8.0.1", 1394 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 1395 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 1396 | "dev": true, 1397 | "license": "ISC", 1398 | "dependencies": { 1399 | "string-width": "^4.2.0", 1400 | "strip-ansi": "^6.0.1", 1401 | "wrap-ansi": "^7.0.0" 1402 | }, 1403 | "engines": { 1404 | "node": ">=12" 1405 | } 1406 | }, 1407 | "node_modules/co": { 1408 | "version": "4.6.0", 1409 | "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", 1410 | "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", 1411 | "dev": true, 1412 | "license": "MIT", 1413 | "engines": { 1414 | "iojs": ">= 1.0.0", 1415 | "node": ">= 0.12.0" 1416 | } 1417 | }, 1418 | "node_modules/collect-v8-coverage": { 1419 | "version": "1.0.2", 1420 | "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", 1421 | "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", 1422 | "dev": true, 1423 | "license": "MIT" 1424 | }, 1425 | "node_modules/color-convert": { 1426 | "version": "2.0.1", 1427 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1428 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1429 | "dev": true, 1430 | "license": "MIT", 1431 | "dependencies": { 1432 | "color-name": "~1.1.4" 1433 | }, 1434 | "engines": { 1435 | "node": ">=7.0.0" 1436 | } 1437 | }, 1438 | "node_modules/color-name": { 1439 | "version": "1.1.4", 1440 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1441 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1442 | "dev": true, 1443 | "license": "MIT" 1444 | }, 1445 | "node_modules/concat-map": { 1446 | "version": "0.0.1", 1447 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1448 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1449 | "dev": true, 1450 | "license": "MIT" 1451 | }, 1452 | "node_modules/convert-source-map": { 1453 | "version": "2.0.0", 1454 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 1455 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 1456 | "dev": true, 1457 | "license": "MIT" 1458 | }, 1459 | "node_modules/create-jest": { 1460 | "version": "29.7.0", 1461 | "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", 1462 | "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", 1463 | "dev": true, 1464 | "license": "MIT", 1465 | "dependencies": { 1466 | "@jest/types": "^29.6.3", 1467 | "chalk": "^4.0.0", 1468 | "exit": "^0.1.2", 1469 | "graceful-fs": "^4.2.9", 1470 | "jest-config": "^29.7.0", 1471 | "jest-util": "^29.7.0", 1472 | "prompts": "^2.0.1" 1473 | }, 1474 | "bin": { 1475 | "create-jest": "bin/create-jest.js" 1476 | }, 1477 | "engines": { 1478 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1479 | } 1480 | }, 1481 | "node_modules/cross-spawn": { 1482 | "version": "7.0.3", 1483 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1484 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1485 | "dev": true, 1486 | "license": "MIT", 1487 | "dependencies": { 1488 | "path-key": "^3.1.0", 1489 | "shebang-command": "^2.0.0", 1490 | "which": "^2.0.1" 1491 | }, 1492 | "engines": { 1493 | "node": ">= 8" 1494 | } 1495 | }, 1496 | "node_modules/debug": { 1497 | "version": "4.3.7", 1498 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 1499 | "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 1500 | "dev": true, 1501 | "license": "MIT", 1502 | "dependencies": { 1503 | "ms": "^2.1.3" 1504 | }, 1505 | "engines": { 1506 | "node": ">=6.0" 1507 | }, 1508 | "peerDependenciesMeta": { 1509 | "supports-color": { 1510 | "optional": true 1511 | } 1512 | } 1513 | }, 1514 | "node_modules/dedent": { 1515 | "version": "1.5.3", 1516 | "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", 1517 | "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", 1518 | "dev": true, 1519 | "license": "MIT", 1520 | "peerDependencies": { 1521 | "babel-plugin-macros": "^3.1.0" 1522 | }, 1523 | "peerDependenciesMeta": { 1524 | "babel-plugin-macros": { 1525 | "optional": true 1526 | } 1527 | } 1528 | }, 1529 | "node_modules/deepmerge": { 1530 | "version": "4.3.1", 1531 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 1532 | "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 1533 | "dev": true, 1534 | "license": "MIT", 1535 | "engines": { 1536 | "node": ">=0.10.0" 1537 | } 1538 | }, 1539 | "node_modules/detect-newline": { 1540 | "version": "3.1.0", 1541 | "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", 1542 | "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", 1543 | "dev": true, 1544 | "license": "MIT", 1545 | "engines": { 1546 | "node": ">=8" 1547 | } 1548 | }, 1549 | "node_modules/diff-sequences": { 1550 | "version": "29.6.3", 1551 | "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", 1552 | "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", 1553 | "dev": true, 1554 | "license": "MIT", 1555 | "engines": { 1556 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1557 | } 1558 | }, 1559 | "node_modules/electron-to-chromium": { 1560 | "version": "1.5.50", 1561 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.50.tgz", 1562 | "integrity": "sha512-eMVObiUQ2LdgeO1F/ySTXsvqvxb6ZH2zPGaMYsWzRDdOddUa77tdmI0ltg+L16UpbWdhPmuF3wIQYyQq65WfZw==", 1563 | "dev": true, 1564 | "license": "ISC" 1565 | }, 1566 | "node_modules/emittery": { 1567 | "version": "0.13.1", 1568 | "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", 1569 | "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", 1570 | "dev": true, 1571 | "license": "MIT", 1572 | "engines": { 1573 | "node": ">=12" 1574 | }, 1575 | "funding": { 1576 | "url": "https://github.com/sindresorhus/emittery?sponsor=1" 1577 | } 1578 | }, 1579 | "node_modules/emoji-regex": { 1580 | "version": "8.0.0", 1581 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1582 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1583 | "dev": true, 1584 | "license": "MIT" 1585 | }, 1586 | "node_modules/error-ex": { 1587 | "version": "1.3.2", 1588 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 1589 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 1590 | "dev": true, 1591 | "license": "MIT", 1592 | "dependencies": { 1593 | "is-arrayish": "^0.2.1" 1594 | } 1595 | }, 1596 | "node_modules/escalade": { 1597 | "version": "3.2.0", 1598 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 1599 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 1600 | "dev": true, 1601 | "license": "MIT", 1602 | "engines": { 1603 | "node": ">=6" 1604 | } 1605 | }, 1606 | "node_modules/escape-string-regexp": { 1607 | "version": "2.0.0", 1608 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", 1609 | "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", 1610 | "dev": true, 1611 | "license": "MIT", 1612 | "engines": { 1613 | "node": ">=8" 1614 | } 1615 | }, 1616 | "node_modules/esprima": { 1617 | "version": "4.0.1", 1618 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 1619 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 1620 | "dev": true, 1621 | "license": "BSD-2-Clause", 1622 | "bin": { 1623 | "esparse": "bin/esparse.js", 1624 | "esvalidate": "bin/esvalidate.js" 1625 | }, 1626 | "engines": { 1627 | "node": ">=4" 1628 | } 1629 | }, 1630 | "node_modules/execa": { 1631 | "version": "5.1.1", 1632 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 1633 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 1634 | "dev": true, 1635 | "license": "MIT", 1636 | "dependencies": { 1637 | "cross-spawn": "^7.0.3", 1638 | "get-stream": "^6.0.0", 1639 | "human-signals": "^2.1.0", 1640 | "is-stream": "^2.0.0", 1641 | "merge-stream": "^2.0.0", 1642 | "npm-run-path": "^4.0.1", 1643 | "onetime": "^5.1.2", 1644 | "signal-exit": "^3.0.3", 1645 | "strip-final-newline": "^2.0.0" 1646 | }, 1647 | "engines": { 1648 | "node": ">=10" 1649 | }, 1650 | "funding": { 1651 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1652 | } 1653 | }, 1654 | "node_modules/exit": { 1655 | "version": "0.1.2", 1656 | "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", 1657 | "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", 1658 | "dev": true, 1659 | "engines": { 1660 | "node": ">= 0.8.0" 1661 | } 1662 | }, 1663 | "node_modules/expect": { 1664 | "version": "29.7.0", 1665 | "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", 1666 | "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", 1667 | "dev": true, 1668 | "license": "MIT", 1669 | "dependencies": { 1670 | "@jest/expect-utils": "^29.7.0", 1671 | "jest-get-type": "^29.6.3", 1672 | "jest-matcher-utils": "^29.7.0", 1673 | "jest-message-util": "^29.7.0", 1674 | "jest-util": "^29.7.0" 1675 | }, 1676 | "engines": { 1677 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1678 | } 1679 | }, 1680 | "node_modules/fast-json-stable-stringify": { 1681 | "version": "2.1.0", 1682 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1683 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1684 | "dev": true, 1685 | "license": "MIT" 1686 | }, 1687 | "node_modules/fb-watchman": { 1688 | "version": "2.0.2", 1689 | "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", 1690 | "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", 1691 | "dev": true, 1692 | "license": "Apache-2.0", 1693 | "dependencies": { 1694 | "bser": "2.1.1" 1695 | } 1696 | }, 1697 | "node_modules/fill-range": { 1698 | "version": "7.1.1", 1699 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1700 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1701 | "dev": true, 1702 | "license": "MIT", 1703 | "dependencies": { 1704 | "to-regex-range": "^5.0.1" 1705 | }, 1706 | "engines": { 1707 | "node": ">=8" 1708 | } 1709 | }, 1710 | "node_modules/find-up": { 1711 | "version": "4.1.0", 1712 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 1713 | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 1714 | "dev": true, 1715 | "license": "MIT", 1716 | "dependencies": { 1717 | "locate-path": "^5.0.0", 1718 | "path-exists": "^4.0.0" 1719 | }, 1720 | "engines": { 1721 | "node": ">=8" 1722 | } 1723 | }, 1724 | "node_modules/fs.realpath": { 1725 | "version": "1.0.0", 1726 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1727 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1728 | "dev": true, 1729 | "license": "ISC" 1730 | }, 1731 | "node_modules/fsevents": { 1732 | "version": "2.3.3", 1733 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1734 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1735 | "dev": true, 1736 | "hasInstallScript": true, 1737 | "license": "MIT", 1738 | "optional": true, 1739 | "os": [ 1740 | "darwin" 1741 | ], 1742 | "engines": { 1743 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1744 | } 1745 | }, 1746 | "node_modules/function-bind": { 1747 | "version": "1.1.2", 1748 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1749 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1750 | "dev": true, 1751 | "license": "MIT", 1752 | "funding": { 1753 | "url": "https://github.com/sponsors/ljharb" 1754 | } 1755 | }, 1756 | "node_modules/gensync": { 1757 | "version": "1.0.0-beta.2", 1758 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 1759 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 1760 | "dev": true, 1761 | "license": "MIT", 1762 | "engines": { 1763 | "node": ">=6.9.0" 1764 | } 1765 | }, 1766 | "node_modules/get-caller-file": { 1767 | "version": "2.0.5", 1768 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1769 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1770 | "dev": true, 1771 | "license": "ISC", 1772 | "engines": { 1773 | "node": "6.* || 8.* || >= 10.*" 1774 | } 1775 | }, 1776 | "node_modules/get-package-type": { 1777 | "version": "0.1.0", 1778 | "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", 1779 | "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", 1780 | "dev": true, 1781 | "license": "MIT", 1782 | "engines": { 1783 | "node": ">=8.0.0" 1784 | } 1785 | }, 1786 | "node_modules/get-stream": { 1787 | "version": "6.0.1", 1788 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 1789 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 1790 | "dev": true, 1791 | "license": "MIT", 1792 | "engines": { 1793 | "node": ">=10" 1794 | }, 1795 | "funding": { 1796 | "url": "https://github.com/sponsors/sindresorhus" 1797 | } 1798 | }, 1799 | "node_modules/glob": { 1800 | "version": "7.2.3", 1801 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1802 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1803 | "deprecated": "Glob versions prior to v9 are no longer supported", 1804 | "dev": true, 1805 | "license": "ISC", 1806 | "dependencies": { 1807 | "fs.realpath": "^1.0.0", 1808 | "inflight": "^1.0.4", 1809 | "inherits": "2", 1810 | "minimatch": "^3.1.1", 1811 | "once": "^1.3.0", 1812 | "path-is-absolute": "^1.0.0" 1813 | }, 1814 | "engines": { 1815 | "node": "*" 1816 | }, 1817 | "funding": { 1818 | "url": "https://github.com/sponsors/isaacs" 1819 | } 1820 | }, 1821 | "node_modules/globals": { 1822 | "version": "11.12.0", 1823 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 1824 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 1825 | "dev": true, 1826 | "license": "MIT", 1827 | "engines": { 1828 | "node": ">=4" 1829 | } 1830 | }, 1831 | "node_modules/graceful-fs": { 1832 | "version": "4.2.11", 1833 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1834 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1835 | "dev": true, 1836 | "license": "ISC" 1837 | }, 1838 | "node_modules/has-flag": { 1839 | "version": "4.0.0", 1840 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1841 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1842 | "dev": true, 1843 | "license": "MIT", 1844 | "engines": { 1845 | "node": ">=8" 1846 | } 1847 | }, 1848 | "node_modules/hasown": { 1849 | "version": "2.0.2", 1850 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1851 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1852 | "dev": true, 1853 | "license": "MIT", 1854 | "dependencies": { 1855 | "function-bind": "^1.1.2" 1856 | }, 1857 | "engines": { 1858 | "node": ">= 0.4" 1859 | } 1860 | }, 1861 | "node_modules/html-escaper": { 1862 | "version": "2.0.2", 1863 | "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", 1864 | "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", 1865 | "dev": true, 1866 | "license": "MIT" 1867 | }, 1868 | "node_modules/human-signals": { 1869 | "version": "2.1.0", 1870 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 1871 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 1872 | "dev": true, 1873 | "license": "Apache-2.0", 1874 | "engines": { 1875 | "node": ">=10.17.0" 1876 | } 1877 | }, 1878 | "node_modules/import-local": { 1879 | "version": "3.2.0", 1880 | "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", 1881 | "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", 1882 | "dev": true, 1883 | "license": "MIT", 1884 | "dependencies": { 1885 | "pkg-dir": "^4.2.0", 1886 | "resolve-cwd": "^3.0.0" 1887 | }, 1888 | "bin": { 1889 | "import-local-fixture": "fixtures/cli.js" 1890 | }, 1891 | "engines": { 1892 | "node": ">=8" 1893 | }, 1894 | "funding": { 1895 | "url": "https://github.com/sponsors/sindresorhus" 1896 | } 1897 | }, 1898 | "node_modules/imurmurhash": { 1899 | "version": "0.1.4", 1900 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1901 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1902 | "dev": true, 1903 | "license": "MIT", 1904 | "engines": { 1905 | "node": ">=0.8.19" 1906 | } 1907 | }, 1908 | "node_modules/inflight": { 1909 | "version": "1.0.6", 1910 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1911 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1912 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 1913 | "dev": true, 1914 | "license": "ISC", 1915 | "dependencies": { 1916 | "once": "^1.3.0", 1917 | "wrappy": "1" 1918 | } 1919 | }, 1920 | "node_modules/inherits": { 1921 | "version": "2.0.4", 1922 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1923 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1924 | "dev": true, 1925 | "license": "ISC" 1926 | }, 1927 | "node_modules/is-arrayish": { 1928 | "version": "0.2.1", 1929 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 1930 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 1931 | "dev": true, 1932 | "license": "MIT" 1933 | }, 1934 | "node_modules/is-core-module": { 1935 | "version": "2.15.1", 1936 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", 1937 | "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", 1938 | "dev": true, 1939 | "license": "MIT", 1940 | "dependencies": { 1941 | "hasown": "^2.0.2" 1942 | }, 1943 | "engines": { 1944 | "node": ">= 0.4" 1945 | }, 1946 | "funding": { 1947 | "url": "https://github.com/sponsors/ljharb" 1948 | } 1949 | }, 1950 | "node_modules/is-fullwidth-code-point": { 1951 | "version": "3.0.0", 1952 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1953 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1954 | "dev": true, 1955 | "license": "MIT", 1956 | "engines": { 1957 | "node": ">=8" 1958 | } 1959 | }, 1960 | "node_modules/is-generator-fn": { 1961 | "version": "2.1.0", 1962 | "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", 1963 | "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", 1964 | "dev": true, 1965 | "license": "MIT", 1966 | "engines": { 1967 | "node": ">=6" 1968 | } 1969 | }, 1970 | "node_modules/is-number": { 1971 | "version": "7.0.0", 1972 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1973 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1974 | "dev": true, 1975 | "license": "MIT", 1976 | "engines": { 1977 | "node": ">=0.12.0" 1978 | } 1979 | }, 1980 | "node_modules/is-stream": { 1981 | "version": "2.0.1", 1982 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 1983 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 1984 | "dev": true, 1985 | "license": "MIT", 1986 | "engines": { 1987 | "node": ">=8" 1988 | }, 1989 | "funding": { 1990 | "url": "https://github.com/sponsors/sindresorhus" 1991 | } 1992 | }, 1993 | "node_modules/isexe": { 1994 | "version": "2.0.0", 1995 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1996 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1997 | "dev": true, 1998 | "license": "ISC" 1999 | }, 2000 | "node_modules/istanbul-lib-coverage": { 2001 | "version": "3.2.2", 2002 | "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", 2003 | "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", 2004 | "dev": true, 2005 | "license": "BSD-3-Clause", 2006 | "engines": { 2007 | "node": ">=8" 2008 | } 2009 | }, 2010 | "node_modules/istanbul-lib-instrument": { 2011 | "version": "6.0.3", 2012 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", 2013 | "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", 2014 | "dev": true, 2015 | "license": "BSD-3-Clause", 2016 | "dependencies": { 2017 | "@babel/core": "^7.23.9", 2018 | "@babel/parser": "^7.23.9", 2019 | "@istanbuljs/schema": "^0.1.3", 2020 | "istanbul-lib-coverage": "^3.2.0", 2021 | "semver": "^7.5.4" 2022 | }, 2023 | "engines": { 2024 | "node": ">=10" 2025 | } 2026 | }, 2027 | "node_modules/istanbul-lib-instrument/node_modules/semver": { 2028 | "version": "7.6.3", 2029 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2030 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 2031 | "dev": true, 2032 | "license": "ISC", 2033 | "bin": { 2034 | "semver": "bin/semver.js" 2035 | }, 2036 | "engines": { 2037 | "node": ">=10" 2038 | } 2039 | }, 2040 | "node_modules/istanbul-lib-report": { 2041 | "version": "3.0.1", 2042 | "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", 2043 | "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", 2044 | "dev": true, 2045 | "license": "BSD-3-Clause", 2046 | "dependencies": { 2047 | "istanbul-lib-coverage": "^3.0.0", 2048 | "make-dir": "^4.0.0", 2049 | "supports-color": "^7.1.0" 2050 | }, 2051 | "engines": { 2052 | "node": ">=10" 2053 | } 2054 | }, 2055 | "node_modules/istanbul-lib-source-maps": { 2056 | "version": "4.0.1", 2057 | "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", 2058 | "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", 2059 | "dev": true, 2060 | "license": "BSD-3-Clause", 2061 | "dependencies": { 2062 | "debug": "^4.1.1", 2063 | "istanbul-lib-coverage": "^3.0.0", 2064 | "source-map": "^0.6.1" 2065 | }, 2066 | "engines": { 2067 | "node": ">=10" 2068 | } 2069 | }, 2070 | "node_modules/istanbul-reports": { 2071 | "version": "3.1.7", 2072 | "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", 2073 | "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", 2074 | "dev": true, 2075 | "license": "BSD-3-Clause", 2076 | "dependencies": { 2077 | "html-escaper": "^2.0.0", 2078 | "istanbul-lib-report": "^3.0.0" 2079 | }, 2080 | "engines": { 2081 | "node": ">=8" 2082 | } 2083 | }, 2084 | "node_modules/jest": { 2085 | "version": "29.7.0", 2086 | "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", 2087 | "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", 2088 | "dev": true, 2089 | "license": "MIT", 2090 | "dependencies": { 2091 | "@jest/core": "^29.7.0", 2092 | "@jest/types": "^29.6.3", 2093 | "import-local": "^3.0.2", 2094 | "jest-cli": "^29.7.0" 2095 | }, 2096 | "bin": { 2097 | "jest": "bin/jest.js" 2098 | }, 2099 | "engines": { 2100 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2101 | }, 2102 | "peerDependencies": { 2103 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 2104 | }, 2105 | "peerDependenciesMeta": { 2106 | "node-notifier": { 2107 | "optional": true 2108 | } 2109 | } 2110 | }, 2111 | "node_modules/jest-changed-files": { 2112 | "version": "29.7.0", 2113 | "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", 2114 | "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", 2115 | "dev": true, 2116 | "license": "MIT", 2117 | "dependencies": { 2118 | "execa": "^5.0.0", 2119 | "jest-util": "^29.7.0", 2120 | "p-limit": "^3.1.0" 2121 | }, 2122 | "engines": { 2123 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2124 | } 2125 | }, 2126 | "node_modules/jest-circus": { 2127 | "version": "29.7.0", 2128 | "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", 2129 | "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", 2130 | "dev": true, 2131 | "license": "MIT", 2132 | "dependencies": { 2133 | "@jest/environment": "^29.7.0", 2134 | "@jest/expect": "^29.7.0", 2135 | "@jest/test-result": "^29.7.0", 2136 | "@jest/types": "^29.6.3", 2137 | "@types/node": "*", 2138 | "chalk": "^4.0.0", 2139 | "co": "^4.6.0", 2140 | "dedent": "^1.0.0", 2141 | "is-generator-fn": "^2.0.0", 2142 | "jest-each": "^29.7.0", 2143 | "jest-matcher-utils": "^29.7.0", 2144 | "jest-message-util": "^29.7.0", 2145 | "jest-runtime": "^29.7.0", 2146 | "jest-snapshot": "^29.7.0", 2147 | "jest-util": "^29.7.0", 2148 | "p-limit": "^3.1.0", 2149 | "pretty-format": "^29.7.0", 2150 | "pure-rand": "^6.0.0", 2151 | "slash": "^3.0.0", 2152 | "stack-utils": "^2.0.3" 2153 | }, 2154 | "engines": { 2155 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2156 | } 2157 | }, 2158 | "node_modules/jest-cli": { 2159 | "version": "29.7.0", 2160 | "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", 2161 | "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", 2162 | "dev": true, 2163 | "license": "MIT", 2164 | "dependencies": { 2165 | "@jest/core": "^29.7.0", 2166 | "@jest/test-result": "^29.7.0", 2167 | "@jest/types": "^29.6.3", 2168 | "chalk": "^4.0.0", 2169 | "create-jest": "^29.7.0", 2170 | "exit": "^0.1.2", 2171 | "import-local": "^3.0.2", 2172 | "jest-config": "^29.7.0", 2173 | "jest-util": "^29.7.0", 2174 | "jest-validate": "^29.7.0", 2175 | "yargs": "^17.3.1" 2176 | }, 2177 | "bin": { 2178 | "jest": "bin/jest.js" 2179 | }, 2180 | "engines": { 2181 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2182 | }, 2183 | "peerDependencies": { 2184 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 2185 | }, 2186 | "peerDependenciesMeta": { 2187 | "node-notifier": { 2188 | "optional": true 2189 | } 2190 | } 2191 | }, 2192 | "node_modules/jest-config": { 2193 | "version": "29.7.0", 2194 | "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", 2195 | "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", 2196 | "dev": true, 2197 | "license": "MIT", 2198 | "dependencies": { 2199 | "@babel/core": "^7.11.6", 2200 | "@jest/test-sequencer": "^29.7.0", 2201 | "@jest/types": "^29.6.3", 2202 | "babel-jest": "^29.7.0", 2203 | "chalk": "^4.0.0", 2204 | "ci-info": "^3.2.0", 2205 | "deepmerge": "^4.2.2", 2206 | "glob": "^7.1.3", 2207 | "graceful-fs": "^4.2.9", 2208 | "jest-circus": "^29.7.0", 2209 | "jest-environment-node": "^29.7.0", 2210 | "jest-get-type": "^29.6.3", 2211 | "jest-regex-util": "^29.6.3", 2212 | "jest-resolve": "^29.7.0", 2213 | "jest-runner": "^29.7.0", 2214 | "jest-util": "^29.7.0", 2215 | "jest-validate": "^29.7.0", 2216 | "micromatch": "^4.0.4", 2217 | "parse-json": "^5.2.0", 2218 | "pretty-format": "^29.7.0", 2219 | "slash": "^3.0.0", 2220 | "strip-json-comments": "^3.1.1" 2221 | }, 2222 | "engines": { 2223 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2224 | }, 2225 | "peerDependencies": { 2226 | "@types/node": "*", 2227 | "ts-node": ">=9.0.0" 2228 | }, 2229 | "peerDependenciesMeta": { 2230 | "@types/node": { 2231 | "optional": true 2232 | }, 2233 | "ts-node": { 2234 | "optional": true 2235 | } 2236 | } 2237 | }, 2238 | "node_modules/jest-diff": { 2239 | "version": "29.7.0", 2240 | "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", 2241 | "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", 2242 | "dev": true, 2243 | "license": "MIT", 2244 | "dependencies": { 2245 | "chalk": "^4.0.0", 2246 | "diff-sequences": "^29.6.3", 2247 | "jest-get-type": "^29.6.3", 2248 | "pretty-format": "^29.7.0" 2249 | }, 2250 | "engines": { 2251 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2252 | } 2253 | }, 2254 | "node_modules/jest-docblock": { 2255 | "version": "29.7.0", 2256 | "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", 2257 | "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", 2258 | "dev": true, 2259 | "license": "MIT", 2260 | "dependencies": { 2261 | "detect-newline": "^3.0.0" 2262 | }, 2263 | "engines": { 2264 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2265 | } 2266 | }, 2267 | "node_modules/jest-each": { 2268 | "version": "29.7.0", 2269 | "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", 2270 | "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", 2271 | "dev": true, 2272 | "license": "MIT", 2273 | "dependencies": { 2274 | "@jest/types": "^29.6.3", 2275 | "chalk": "^4.0.0", 2276 | "jest-get-type": "^29.6.3", 2277 | "jest-util": "^29.7.0", 2278 | "pretty-format": "^29.7.0" 2279 | }, 2280 | "engines": { 2281 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2282 | } 2283 | }, 2284 | "node_modules/jest-environment-node": { 2285 | "version": "29.7.0", 2286 | "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", 2287 | "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", 2288 | "dev": true, 2289 | "license": "MIT", 2290 | "dependencies": { 2291 | "@jest/environment": "^29.7.0", 2292 | "@jest/fake-timers": "^29.7.0", 2293 | "@jest/types": "^29.6.3", 2294 | "@types/node": "*", 2295 | "jest-mock": "^29.7.0", 2296 | "jest-util": "^29.7.0" 2297 | }, 2298 | "engines": { 2299 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2300 | } 2301 | }, 2302 | "node_modules/jest-get-type": { 2303 | "version": "29.6.3", 2304 | "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", 2305 | "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", 2306 | "dev": true, 2307 | "license": "MIT", 2308 | "engines": { 2309 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2310 | } 2311 | }, 2312 | "node_modules/jest-haste-map": { 2313 | "version": "29.7.0", 2314 | "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", 2315 | "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", 2316 | "dev": true, 2317 | "license": "MIT", 2318 | "dependencies": { 2319 | "@jest/types": "^29.6.3", 2320 | "@types/graceful-fs": "^4.1.3", 2321 | "@types/node": "*", 2322 | "anymatch": "^3.0.3", 2323 | "fb-watchman": "^2.0.0", 2324 | "graceful-fs": "^4.2.9", 2325 | "jest-regex-util": "^29.6.3", 2326 | "jest-util": "^29.7.0", 2327 | "jest-worker": "^29.7.0", 2328 | "micromatch": "^4.0.4", 2329 | "walker": "^1.0.8" 2330 | }, 2331 | "engines": { 2332 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2333 | }, 2334 | "optionalDependencies": { 2335 | "fsevents": "^2.3.2" 2336 | } 2337 | }, 2338 | "node_modules/jest-leak-detector": { 2339 | "version": "29.7.0", 2340 | "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", 2341 | "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", 2342 | "dev": true, 2343 | "license": "MIT", 2344 | "dependencies": { 2345 | "jest-get-type": "^29.6.3", 2346 | "pretty-format": "^29.7.0" 2347 | }, 2348 | "engines": { 2349 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2350 | } 2351 | }, 2352 | "node_modules/jest-matcher-utils": { 2353 | "version": "29.7.0", 2354 | "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", 2355 | "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", 2356 | "dev": true, 2357 | "license": "MIT", 2358 | "dependencies": { 2359 | "chalk": "^4.0.0", 2360 | "jest-diff": "^29.7.0", 2361 | "jest-get-type": "^29.6.3", 2362 | "pretty-format": "^29.7.0" 2363 | }, 2364 | "engines": { 2365 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2366 | } 2367 | }, 2368 | "node_modules/jest-message-util": { 2369 | "version": "29.7.0", 2370 | "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", 2371 | "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", 2372 | "dev": true, 2373 | "license": "MIT", 2374 | "dependencies": { 2375 | "@babel/code-frame": "^7.12.13", 2376 | "@jest/types": "^29.6.3", 2377 | "@types/stack-utils": "^2.0.0", 2378 | "chalk": "^4.0.0", 2379 | "graceful-fs": "^4.2.9", 2380 | "micromatch": "^4.0.4", 2381 | "pretty-format": "^29.7.0", 2382 | "slash": "^3.0.0", 2383 | "stack-utils": "^2.0.3" 2384 | }, 2385 | "engines": { 2386 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2387 | } 2388 | }, 2389 | "node_modules/jest-mock": { 2390 | "version": "29.7.0", 2391 | "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", 2392 | "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", 2393 | "dev": true, 2394 | "license": "MIT", 2395 | "dependencies": { 2396 | "@jest/types": "^29.6.3", 2397 | "@types/node": "*", 2398 | "jest-util": "^29.7.0" 2399 | }, 2400 | "engines": { 2401 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2402 | } 2403 | }, 2404 | "node_modules/jest-pnp-resolver": { 2405 | "version": "1.2.3", 2406 | "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", 2407 | "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", 2408 | "dev": true, 2409 | "license": "MIT", 2410 | "engines": { 2411 | "node": ">=6" 2412 | }, 2413 | "peerDependencies": { 2414 | "jest-resolve": "*" 2415 | }, 2416 | "peerDependenciesMeta": { 2417 | "jest-resolve": { 2418 | "optional": true 2419 | } 2420 | } 2421 | }, 2422 | "node_modules/jest-regex-util": { 2423 | "version": "29.6.3", 2424 | "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", 2425 | "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", 2426 | "dev": true, 2427 | "license": "MIT", 2428 | "engines": { 2429 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2430 | } 2431 | }, 2432 | "node_modules/jest-resolve": { 2433 | "version": "29.7.0", 2434 | "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", 2435 | "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", 2436 | "dev": true, 2437 | "license": "MIT", 2438 | "dependencies": { 2439 | "chalk": "^4.0.0", 2440 | "graceful-fs": "^4.2.9", 2441 | "jest-haste-map": "^29.7.0", 2442 | "jest-pnp-resolver": "^1.2.2", 2443 | "jest-util": "^29.7.0", 2444 | "jest-validate": "^29.7.0", 2445 | "resolve": "^1.20.0", 2446 | "resolve.exports": "^2.0.0", 2447 | "slash": "^3.0.0" 2448 | }, 2449 | "engines": { 2450 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2451 | } 2452 | }, 2453 | "node_modules/jest-resolve-dependencies": { 2454 | "version": "29.7.0", 2455 | "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", 2456 | "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", 2457 | "dev": true, 2458 | "license": "MIT", 2459 | "dependencies": { 2460 | "jest-regex-util": "^29.6.3", 2461 | "jest-snapshot": "^29.7.0" 2462 | }, 2463 | "engines": { 2464 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2465 | } 2466 | }, 2467 | "node_modules/jest-runner": { 2468 | "version": "29.7.0", 2469 | "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", 2470 | "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", 2471 | "dev": true, 2472 | "license": "MIT", 2473 | "dependencies": { 2474 | "@jest/console": "^29.7.0", 2475 | "@jest/environment": "^29.7.0", 2476 | "@jest/test-result": "^29.7.0", 2477 | "@jest/transform": "^29.7.0", 2478 | "@jest/types": "^29.6.3", 2479 | "@types/node": "*", 2480 | "chalk": "^4.0.0", 2481 | "emittery": "^0.13.1", 2482 | "graceful-fs": "^4.2.9", 2483 | "jest-docblock": "^29.7.0", 2484 | "jest-environment-node": "^29.7.0", 2485 | "jest-haste-map": "^29.7.0", 2486 | "jest-leak-detector": "^29.7.0", 2487 | "jest-message-util": "^29.7.0", 2488 | "jest-resolve": "^29.7.0", 2489 | "jest-runtime": "^29.7.0", 2490 | "jest-util": "^29.7.0", 2491 | "jest-watcher": "^29.7.0", 2492 | "jest-worker": "^29.7.0", 2493 | "p-limit": "^3.1.0", 2494 | "source-map-support": "0.5.13" 2495 | }, 2496 | "engines": { 2497 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2498 | } 2499 | }, 2500 | "node_modules/jest-runtime": { 2501 | "version": "29.7.0", 2502 | "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", 2503 | "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", 2504 | "dev": true, 2505 | "license": "MIT", 2506 | "dependencies": { 2507 | "@jest/environment": "^29.7.0", 2508 | "@jest/fake-timers": "^29.7.0", 2509 | "@jest/globals": "^29.7.0", 2510 | "@jest/source-map": "^29.6.3", 2511 | "@jest/test-result": "^29.7.0", 2512 | "@jest/transform": "^29.7.0", 2513 | "@jest/types": "^29.6.3", 2514 | "@types/node": "*", 2515 | "chalk": "^4.0.0", 2516 | "cjs-module-lexer": "^1.0.0", 2517 | "collect-v8-coverage": "^1.0.0", 2518 | "glob": "^7.1.3", 2519 | "graceful-fs": "^4.2.9", 2520 | "jest-haste-map": "^29.7.0", 2521 | "jest-message-util": "^29.7.0", 2522 | "jest-mock": "^29.7.0", 2523 | "jest-regex-util": "^29.6.3", 2524 | "jest-resolve": "^29.7.0", 2525 | "jest-snapshot": "^29.7.0", 2526 | "jest-util": "^29.7.0", 2527 | "slash": "^3.0.0", 2528 | "strip-bom": "^4.0.0" 2529 | }, 2530 | "engines": { 2531 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2532 | } 2533 | }, 2534 | "node_modules/jest-snapshot": { 2535 | "version": "29.7.0", 2536 | "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", 2537 | "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", 2538 | "dev": true, 2539 | "license": "MIT", 2540 | "dependencies": { 2541 | "@babel/core": "^7.11.6", 2542 | "@babel/generator": "^7.7.2", 2543 | "@babel/plugin-syntax-jsx": "^7.7.2", 2544 | "@babel/plugin-syntax-typescript": "^7.7.2", 2545 | "@babel/types": "^7.3.3", 2546 | "@jest/expect-utils": "^29.7.0", 2547 | "@jest/transform": "^29.7.0", 2548 | "@jest/types": "^29.6.3", 2549 | "babel-preset-current-node-syntax": "^1.0.0", 2550 | "chalk": "^4.0.0", 2551 | "expect": "^29.7.0", 2552 | "graceful-fs": "^4.2.9", 2553 | "jest-diff": "^29.7.0", 2554 | "jest-get-type": "^29.6.3", 2555 | "jest-matcher-utils": "^29.7.0", 2556 | "jest-message-util": "^29.7.0", 2557 | "jest-util": "^29.7.0", 2558 | "natural-compare": "^1.4.0", 2559 | "pretty-format": "^29.7.0", 2560 | "semver": "^7.5.3" 2561 | }, 2562 | "engines": { 2563 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2564 | } 2565 | }, 2566 | "node_modules/jest-snapshot/node_modules/semver": { 2567 | "version": "7.6.3", 2568 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2569 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 2570 | "dev": true, 2571 | "license": "ISC", 2572 | "bin": { 2573 | "semver": "bin/semver.js" 2574 | }, 2575 | "engines": { 2576 | "node": ">=10" 2577 | } 2578 | }, 2579 | "node_modules/jest-util": { 2580 | "version": "29.7.0", 2581 | "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", 2582 | "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", 2583 | "dev": true, 2584 | "license": "MIT", 2585 | "dependencies": { 2586 | "@jest/types": "^29.6.3", 2587 | "@types/node": "*", 2588 | "chalk": "^4.0.0", 2589 | "ci-info": "^3.2.0", 2590 | "graceful-fs": "^4.2.9", 2591 | "picomatch": "^2.2.3" 2592 | }, 2593 | "engines": { 2594 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2595 | } 2596 | }, 2597 | "node_modules/jest-validate": { 2598 | "version": "29.7.0", 2599 | "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", 2600 | "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", 2601 | "dev": true, 2602 | "license": "MIT", 2603 | "dependencies": { 2604 | "@jest/types": "^29.6.3", 2605 | "camelcase": "^6.2.0", 2606 | "chalk": "^4.0.0", 2607 | "jest-get-type": "^29.6.3", 2608 | "leven": "^3.1.0", 2609 | "pretty-format": "^29.7.0" 2610 | }, 2611 | "engines": { 2612 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2613 | } 2614 | }, 2615 | "node_modules/jest-validate/node_modules/camelcase": { 2616 | "version": "6.3.0", 2617 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", 2618 | "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", 2619 | "dev": true, 2620 | "license": "MIT", 2621 | "engines": { 2622 | "node": ">=10" 2623 | }, 2624 | "funding": { 2625 | "url": "https://github.com/sponsors/sindresorhus" 2626 | } 2627 | }, 2628 | "node_modules/jest-watcher": { 2629 | "version": "29.7.0", 2630 | "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", 2631 | "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", 2632 | "dev": true, 2633 | "license": "MIT", 2634 | "dependencies": { 2635 | "@jest/test-result": "^29.7.0", 2636 | "@jest/types": "^29.6.3", 2637 | "@types/node": "*", 2638 | "ansi-escapes": "^4.2.1", 2639 | "chalk": "^4.0.0", 2640 | "emittery": "^0.13.1", 2641 | "jest-util": "^29.7.0", 2642 | "string-length": "^4.0.1" 2643 | }, 2644 | "engines": { 2645 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2646 | } 2647 | }, 2648 | "node_modules/jest-worker": { 2649 | "version": "29.7.0", 2650 | "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", 2651 | "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", 2652 | "dev": true, 2653 | "license": "MIT", 2654 | "dependencies": { 2655 | "@types/node": "*", 2656 | "jest-util": "^29.7.0", 2657 | "merge-stream": "^2.0.0", 2658 | "supports-color": "^8.0.0" 2659 | }, 2660 | "engines": { 2661 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2662 | } 2663 | }, 2664 | "node_modules/jest-worker/node_modules/supports-color": { 2665 | "version": "8.1.1", 2666 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 2667 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 2668 | "dev": true, 2669 | "license": "MIT", 2670 | "dependencies": { 2671 | "has-flag": "^4.0.0" 2672 | }, 2673 | "engines": { 2674 | "node": ">=10" 2675 | }, 2676 | "funding": { 2677 | "url": "https://github.com/chalk/supports-color?sponsor=1" 2678 | } 2679 | }, 2680 | "node_modules/js-tokens": { 2681 | "version": "4.0.0", 2682 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2683 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 2684 | "dev": true, 2685 | "license": "MIT" 2686 | }, 2687 | "node_modules/js-yaml": { 2688 | "version": "3.14.1", 2689 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 2690 | "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 2691 | "dev": true, 2692 | "license": "MIT", 2693 | "dependencies": { 2694 | "argparse": "^1.0.7", 2695 | "esprima": "^4.0.0" 2696 | }, 2697 | "bin": { 2698 | "js-yaml": "bin/js-yaml.js" 2699 | } 2700 | }, 2701 | "node_modules/jsesc": { 2702 | "version": "3.0.2", 2703 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", 2704 | "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", 2705 | "dev": true, 2706 | "license": "MIT", 2707 | "bin": { 2708 | "jsesc": "bin/jsesc" 2709 | }, 2710 | "engines": { 2711 | "node": ">=6" 2712 | } 2713 | }, 2714 | "node_modules/json-parse-even-better-errors": { 2715 | "version": "2.3.1", 2716 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 2717 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 2718 | "dev": true, 2719 | "license": "MIT" 2720 | }, 2721 | "node_modules/json5": { 2722 | "version": "2.2.3", 2723 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 2724 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 2725 | "dev": true, 2726 | "license": "MIT", 2727 | "bin": { 2728 | "json5": "lib/cli.js" 2729 | }, 2730 | "engines": { 2731 | "node": ">=6" 2732 | } 2733 | }, 2734 | "node_modules/kleur": { 2735 | "version": "3.0.3", 2736 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 2737 | "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", 2738 | "dev": true, 2739 | "license": "MIT", 2740 | "engines": { 2741 | "node": ">=6" 2742 | } 2743 | }, 2744 | "node_modules/leven": { 2745 | "version": "3.1.0", 2746 | "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", 2747 | "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", 2748 | "dev": true, 2749 | "license": "MIT", 2750 | "engines": { 2751 | "node": ">=6" 2752 | } 2753 | }, 2754 | "node_modules/lines-and-columns": { 2755 | "version": "1.2.4", 2756 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2757 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 2758 | "dev": true, 2759 | "license": "MIT" 2760 | }, 2761 | "node_modules/locate-path": { 2762 | "version": "5.0.0", 2763 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 2764 | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 2765 | "dev": true, 2766 | "license": "MIT", 2767 | "dependencies": { 2768 | "p-locate": "^4.1.0" 2769 | }, 2770 | "engines": { 2771 | "node": ">=8" 2772 | } 2773 | }, 2774 | "node_modules/lru-cache": { 2775 | "version": "5.1.1", 2776 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 2777 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 2778 | "dev": true, 2779 | "license": "ISC", 2780 | "dependencies": { 2781 | "yallist": "^3.0.2" 2782 | } 2783 | }, 2784 | "node_modules/make-dir": { 2785 | "version": "4.0.0", 2786 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", 2787 | "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", 2788 | "dev": true, 2789 | "license": "MIT", 2790 | "dependencies": { 2791 | "semver": "^7.5.3" 2792 | }, 2793 | "engines": { 2794 | "node": ">=10" 2795 | }, 2796 | "funding": { 2797 | "url": "https://github.com/sponsors/sindresorhus" 2798 | } 2799 | }, 2800 | "node_modules/make-dir/node_modules/semver": { 2801 | "version": "7.6.3", 2802 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2803 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 2804 | "dev": true, 2805 | "license": "ISC", 2806 | "bin": { 2807 | "semver": "bin/semver.js" 2808 | }, 2809 | "engines": { 2810 | "node": ">=10" 2811 | } 2812 | }, 2813 | "node_modules/makeerror": { 2814 | "version": "1.0.12", 2815 | "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", 2816 | "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", 2817 | "dev": true, 2818 | "license": "BSD-3-Clause", 2819 | "dependencies": { 2820 | "tmpl": "1.0.5" 2821 | } 2822 | }, 2823 | "node_modules/merge-stream": { 2824 | "version": "2.0.0", 2825 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 2826 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 2827 | "dev": true, 2828 | "license": "MIT" 2829 | }, 2830 | "node_modules/micromatch": { 2831 | "version": "4.0.8", 2832 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2833 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2834 | "dev": true, 2835 | "license": "MIT", 2836 | "dependencies": { 2837 | "braces": "^3.0.3", 2838 | "picomatch": "^2.3.1" 2839 | }, 2840 | "engines": { 2841 | "node": ">=8.6" 2842 | } 2843 | }, 2844 | "node_modules/mimic-fn": { 2845 | "version": "2.1.0", 2846 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 2847 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 2848 | "dev": true, 2849 | "license": "MIT", 2850 | "engines": { 2851 | "node": ">=6" 2852 | } 2853 | }, 2854 | "node_modules/minimatch": { 2855 | "version": "3.1.2", 2856 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2857 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2858 | "dev": true, 2859 | "license": "ISC", 2860 | "dependencies": { 2861 | "brace-expansion": "^1.1.7" 2862 | }, 2863 | "engines": { 2864 | "node": "*" 2865 | } 2866 | }, 2867 | "node_modules/ms": { 2868 | "version": "2.1.3", 2869 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2870 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2871 | "dev": true, 2872 | "license": "MIT" 2873 | }, 2874 | "node_modules/natural-compare": { 2875 | "version": "1.4.0", 2876 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2877 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2878 | "dev": true, 2879 | "license": "MIT" 2880 | }, 2881 | "node_modules/node-int64": { 2882 | "version": "0.4.0", 2883 | "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", 2884 | "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", 2885 | "dev": true, 2886 | "license": "MIT" 2887 | }, 2888 | "node_modules/node-releases": { 2889 | "version": "2.0.18", 2890 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", 2891 | "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", 2892 | "dev": true, 2893 | "license": "MIT" 2894 | }, 2895 | "node_modules/normalize-path": { 2896 | "version": "3.0.0", 2897 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2898 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2899 | "dev": true, 2900 | "license": "MIT", 2901 | "engines": { 2902 | "node": ">=0.10.0" 2903 | } 2904 | }, 2905 | "node_modules/npm-run-path": { 2906 | "version": "4.0.1", 2907 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 2908 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 2909 | "dev": true, 2910 | "license": "MIT", 2911 | "dependencies": { 2912 | "path-key": "^3.0.0" 2913 | }, 2914 | "engines": { 2915 | "node": ">=8" 2916 | } 2917 | }, 2918 | "node_modules/once": { 2919 | "version": "1.4.0", 2920 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2921 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2922 | "dev": true, 2923 | "license": "ISC", 2924 | "dependencies": { 2925 | "wrappy": "1" 2926 | } 2927 | }, 2928 | "node_modules/onetime": { 2929 | "version": "5.1.2", 2930 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 2931 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 2932 | "dev": true, 2933 | "license": "MIT", 2934 | "dependencies": { 2935 | "mimic-fn": "^2.1.0" 2936 | }, 2937 | "engines": { 2938 | "node": ">=6" 2939 | }, 2940 | "funding": { 2941 | "url": "https://github.com/sponsors/sindresorhus" 2942 | } 2943 | }, 2944 | "node_modules/p-limit": { 2945 | "version": "3.1.0", 2946 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2947 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2948 | "dev": true, 2949 | "license": "MIT", 2950 | "dependencies": { 2951 | "yocto-queue": "^0.1.0" 2952 | }, 2953 | "engines": { 2954 | "node": ">=10" 2955 | }, 2956 | "funding": { 2957 | "url": "https://github.com/sponsors/sindresorhus" 2958 | } 2959 | }, 2960 | "node_modules/p-locate": { 2961 | "version": "4.1.0", 2962 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 2963 | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 2964 | "dev": true, 2965 | "license": "MIT", 2966 | "dependencies": { 2967 | "p-limit": "^2.2.0" 2968 | }, 2969 | "engines": { 2970 | "node": ">=8" 2971 | } 2972 | }, 2973 | "node_modules/p-locate/node_modules/p-limit": { 2974 | "version": "2.3.0", 2975 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 2976 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 2977 | "dev": true, 2978 | "license": "MIT", 2979 | "dependencies": { 2980 | "p-try": "^2.0.0" 2981 | }, 2982 | "engines": { 2983 | "node": ">=6" 2984 | }, 2985 | "funding": { 2986 | "url": "https://github.com/sponsors/sindresorhus" 2987 | } 2988 | }, 2989 | "node_modules/p-try": { 2990 | "version": "2.2.0", 2991 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 2992 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 2993 | "dev": true, 2994 | "license": "MIT", 2995 | "engines": { 2996 | "node": ">=6" 2997 | } 2998 | }, 2999 | "node_modules/parse-json": { 3000 | "version": "5.2.0", 3001 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 3002 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 3003 | "dev": true, 3004 | "license": "MIT", 3005 | "dependencies": { 3006 | "@babel/code-frame": "^7.0.0", 3007 | "error-ex": "^1.3.1", 3008 | "json-parse-even-better-errors": "^2.3.0", 3009 | "lines-and-columns": "^1.1.6" 3010 | }, 3011 | "engines": { 3012 | "node": ">=8" 3013 | }, 3014 | "funding": { 3015 | "url": "https://github.com/sponsors/sindresorhus" 3016 | } 3017 | }, 3018 | "node_modules/path-exists": { 3019 | "version": "4.0.0", 3020 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3021 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3022 | "dev": true, 3023 | "license": "MIT", 3024 | "engines": { 3025 | "node": ">=8" 3026 | } 3027 | }, 3028 | "node_modules/path-is-absolute": { 3029 | "version": "1.0.1", 3030 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3031 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3032 | "dev": true, 3033 | "license": "MIT", 3034 | "engines": { 3035 | "node": ">=0.10.0" 3036 | } 3037 | }, 3038 | "node_modules/path-key": { 3039 | "version": "3.1.1", 3040 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3041 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3042 | "dev": true, 3043 | "license": "MIT", 3044 | "engines": { 3045 | "node": ">=8" 3046 | } 3047 | }, 3048 | "node_modules/path-parse": { 3049 | "version": "1.0.7", 3050 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3051 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 3052 | "dev": true, 3053 | "license": "MIT" 3054 | }, 3055 | "node_modules/picocolors": { 3056 | "version": "1.1.1", 3057 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 3058 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 3059 | "dev": true, 3060 | "license": "ISC" 3061 | }, 3062 | "node_modules/picomatch": { 3063 | "version": "2.3.1", 3064 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3065 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3066 | "dev": true, 3067 | "license": "MIT", 3068 | "engines": { 3069 | "node": ">=8.6" 3070 | }, 3071 | "funding": { 3072 | "url": "https://github.com/sponsors/jonschlinkert" 3073 | } 3074 | }, 3075 | "node_modules/pirates": { 3076 | "version": "4.0.6", 3077 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 3078 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 3079 | "dev": true, 3080 | "license": "MIT", 3081 | "engines": { 3082 | "node": ">= 6" 3083 | } 3084 | }, 3085 | "node_modules/pkg-dir": { 3086 | "version": "4.2.0", 3087 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", 3088 | "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", 3089 | "dev": true, 3090 | "license": "MIT", 3091 | "dependencies": { 3092 | "find-up": "^4.0.0" 3093 | }, 3094 | "engines": { 3095 | "node": ">=8" 3096 | } 3097 | }, 3098 | "node_modules/pretty-format": { 3099 | "version": "29.7.0", 3100 | "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", 3101 | "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", 3102 | "dev": true, 3103 | "license": "MIT", 3104 | "dependencies": { 3105 | "@jest/schemas": "^29.6.3", 3106 | "ansi-styles": "^5.0.0", 3107 | "react-is": "^18.0.0" 3108 | }, 3109 | "engines": { 3110 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3111 | } 3112 | }, 3113 | "node_modules/pretty-format/node_modules/ansi-styles": { 3114 | "version": "5.2.0", 3115 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", 3116 | "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", 3117 | "dev": true, 3118 | "license": "MIT", 3119 | "engines": { 3120 | "node": ">=10" 3121 | }, 3122 | "funding": { 3123 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3124 | } 3125 | }, 3126 | "node_modules/prompts": { 3127 | "version": "2.4.2", 3128 | "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", 3129 | "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", 3130 | "dev": true, 3131 | "license": "MIT", 3132 | "dependencies": { 3133 | "kleur": "^3.0.3", 3134 | "sisteransi": "^1.0.5" 3135 | }, 3136 | "engines": { 3137 | "node": ">= 6" 3138 | } 3139 | }, 3140 | "node_modules/pure-rand": { 3141 | "version": "6.1.0", 3142 | "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", 3143 | "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", 3144 | "dev": true, 3145 | "funding": [ 3146 | { 3147 | "type": "individual", 3148 | "url": "https://github.com/sponsors/dubzzz" 3149 | }, 3150 | { 3151 | "type": "opencollective", 3152 | "url": "https://opencollective.com/fast-check" 3153 | } 3154 | ], 3155 | "license": "MIT" 3156 | }, 3157 | "node_modules/react-is": { 3158 | "version": "18.3.1", 3159 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", 3160 | "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", 3161 | "dev": true, 3162 | "license": "MIT" 3163 | }, 3164 | "node_modules/require-directory": { 3165 | "version": "2.1.1", 3166 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 3167 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 3168 | "dev": true, 3169 | "license": "MIT", 3170 | "engines": { 3171 | "node": ">=0.10.0" 3172 | } 3173 | }, 3174 | "node_modules/resolve": { 3175 | "version": "1.22.8", 3176 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 3177 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 3178 | "dev": true, 3179 | "license": "MIT", 3180 | "dependencies": { 3181 | "is-core-module": "^2.13.0", 3182 | "path-parse": "^1.0.7", 3183 | "supports-preserve-symlinks-flag": "^1.0.0" 3184 | }, 3185 | "bin": { 3186 | "resolve": "bin/resolve" 3187 | }, 3188 | "funding": { 3189 | "url": "https://github.com/sponsors/ljharb" 3190 | } 3191 | }, 3192 | "node_modules/resolve-cwd": { 3193 | "version": "3.0.0", 3194 | "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", 3195 | "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", 3196 | "dev": true, 3197 | "license": "MIT", 3198 | "dependencies": { 3199 | "resolve-from": "^5.0.0" 3200 | }, 3201 | "engines": { 3202 | "node": ">=8" 3203 | } 3204 | }, 3205 | "node_modules/resolve-from": { 3206 | "version": "5.0.0", 3207 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 3208 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 3209 | "dev": true, 3210 | "license": "MIT", 3211 | "engines": { 3212 | "node": ">=8" 3213 | } 3214 | }, 3215 | "node_modules/resolve.exports": { 3216 | "version": "2.0.2", 3217 | "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", 3218 | "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", 3219 | "dev": true, 3220 | "license": "MIT", 3221 | "engines": { 3222 | "node": ">=10" 3223 | } 3224 | }, 3225 | "node_modules/semver": { 3226 | "version": "6.3.1", 3227 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 3228 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 3229 | "dev": true, 3230 | "license": "ISC", 3231 | "bin": { 3232 | "semver": "bin/semver.js" 3233 | } 3234 | }, 3235 | "node_modules/shebang-command": { 3236 | "version": "2.0.0", 3237 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3238 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3239 | "dev": true, 3240 | "license": "MIT", 3241 | "dependencies": { 3242 | "shebang-regex": "^3.0.0" 3243 | }, 3244 | "engines": { 3245 | "node": ">=8" 3246 | } 3247 | }, 3248 | "node_modules/shebang-regex": { 3249 | "version": "3.0.0", 3250 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3251 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3252 | "dev": true, 3253 | "license": "MIT", 3254 | "engines": { 3255 | "node": ">=8" 3256 | } 3257 | }, 3258 | "node_modules/signal-exit": { 3259 | "version": "3.0.7", 3260 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3261 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 3262 | "dev": true, 3263 | "license": "ISC" 3264 | }, 3265 | "node_modules/sisteransi": { 3266 | "version": "1.0.5", 3267 | "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 3268 | "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", 3269 | "dev": true, 3270 | "license": "MIT" 3271 | }, 3272 | "node_modules/slash": { 3273 | "version": "3.0.0", 3274 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3275 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3276 | "dev": true, 3277 | "license": "MIT", 3278 | "engines": { 3279 | "node": ">=8" 3280 | } 3281 | }, 3282 | "node_modules/source-map": { 3283 | "version": "0.6.1", 3284 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 3285 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 3286 | "dev": true, 3287 | "license": "BSD-3-Clause", 3288 | "engines": { 3289 | "node": ">=0.10.0" 3290 | } 3291 | }, 3292 | "node_modules/source-map-support": { 3293 | "version": "0.5.13", 3294 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", 3295 | "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", 3296 | "dev": true, 3297 | "license": "MIT", 3298 | "dependencies": { 3299 | "buffer-from": "^1.0.0", 3300 | "source-map": "^0.6.0" 3301 | } 3302 | }, 3303 | "node_modules/sprintf-js": { 3304 | "version": "1.0.3", 3305 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 3306 | "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", 3307 | "dev": true, 3308 | "license": "BSD-3-Clause" 3309 | }, 3310 | "node_modules/stack-utils": { 3311 | "version": "2.0.6", 3312 | "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", 3313 | "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", 3314 | "dev": true, 3315 | "license": "MIT", 3316 | "dependencies": { 3317 | "escape-string-regexp": "^2.0.0" 3318 | }, 3319 | "engines": { 3320 | "node": ">=10" 3321 | } 3322 | }, 3323 | "node_modules/string-length": { 3324 | "version": "4.0.2", 3325 | "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", 3326 | "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", 3327 | "dev": true, 3328 | "license": "MIT", 3329 | "dependencies": { 3330 | "char-regex": "^1.0.2", 3331 | "strip-ansi": "^6.0.0" 3332 | }, 3333 | "engines": { 3334 | "node": ">=10" 3335 | } 3336 | }, 3337 | "node_modules/string-width": { 3338 | "version": "4.2.3", 3339 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3340 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3341 | "dev": true, 3342 | "license": "MIT", 3343 | "dependencies": { 3344 | "emoji-regex": "^8.0.0", 3345 | "is-fullwidth-code-point": "^3.0.0", 3346 | "strip-ansi": "^6.0.1" 3347 | }, 3348 | "engines": { 3349 | "node": ">=8" 3350 | } 3351 | }, 3352 | "node_modules/strip-ansi": { 3353 | "version": "6.0.1", 3354 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3355 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3356 | "dev": true, 3357 | "license": "MIT", 3358 | "dependencies": { 3359 | "ansi-regex": "^5.0.1" 3360 | }, 3361 | "engines": { 3362 | "node": ">=8" 3363 | } 3364 | }, 3365 | "node_modules/strip-bom": { 3366 | "version": "4.0.0", 3367 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", 3368 | "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", 3369 | "dev": true, 3370 | "license": "MIT", 3371 | "engines": { 3372 | "node": ">=8" 3373 | } 3374 | }, 3375 | "node_modules/strip-final-newline": { 3376 | "version": "2.0.0", 3377 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 3378 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 3379 | "dev": true, 3380 | "license": "MIT", 3381 | "engines": { 3382 | "node": ">=6" 3383 | } 3384 | }, 3385 | "node_modules/strip-json-comments": { 3386 | "version": "3.1.1", 3387 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3388 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3389 | "dev": true, 3390 | "license": "MIT", 3391 | "engines": { 3392 | "node": ">=8" 3393 | }, 3394 | "funding": { 3395 | "url": "https://github.com/sponsors/sindresorhus" 3396 | } 3397 | }, 3398 | "node_modules/supports-color": { 3399 | "version": "7.2.0", 3400 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3401 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3402 | "dev": true, 3403 | "license": "MIT", 3404 | "dependencies": { 3405 | "has-flag": "^4.0.0" 3406 | }, 3407 | "engines": { 3408 | "node": ">=8" 3409 | } 3410 | }, 3411 | "node_modules/supports-preserve-symlinks-flag": { 3412 | "version": "1.0.0", 3413 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3414 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3415 | "dev": true, 3416 | "license": "MIT", 3417 | "engines": { 3418 | "node": ">= 0.4" 3419 | }, 3420 | "funding": { 3421 | "url": "https://github.com/sponsors/ljharb" 3422 | } 3423 | }, 3424 | "node_modules/test-exclude": { 3425 | "version": "6.0.0", 3426 | "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", 3427 | "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", 3428 | "dev": true, 3429 | "license": "ISC", 3430 | "dependencies": { 3431 | "@istanbuljs/schema": "^0.1.2", 3432 | "glob": "^7.1.4", 3433 | "minimatch": "^3.0.4" 3434 | }, 3435 | "engines": { 3436 | "node": ">=8" 3437 | } 3438 | }, 3439 | "node_modules/tmpl": { 3440 | "version": "1.0.5", 3441 | "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", 3442 | "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", 3443 | "dev": true, 3444 | "license": "BSD-3-Clause" 3445 | }, 3446 | "node_modules/to-regex-range": { 3447 | "version": "5.0.1", 3448 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3449 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3450 | "dev": true, 3451 | "license": "MIT", 3452 | "dependencies": { 3453 | "is-number": "^7.0.0" 3454 | }, 3455 | "engines": { 3456 | "node": ">=8.0" 3457 | } 3458 | }, 3459 | "node_modules/type-detect": { 3460 | "version": "4.0.8", 3461 | "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", 3462 | "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", 3463 | "dev": true, 3464 | "license": "MIT", 3465 | "engines": { 3466 | "node": ">=4" 3467 | } 3468 | }, 3469 | "node_modules/type-fest": { 3470 | "version": "0.21.3", 3471 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", 3472 | "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", 3473 | "dev": true, 3474 | "license": "(MIT OR CC0-1.0)", 3475 | "engines": { 3476 | "node": ">=10" 3477 | }, 3478 | "funding": { 3479 | "url": "https://github.com/sponsors/sindresorhus" 3480 | } 3481 | }, 3482 | "node_modules/undici-types": { 3483 | "version": "6.19.8", 3484 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", 3485 | "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", 3486 | "dev": true, 3487 | "license": "MIT" 3488 | }, 3489 | "node_modules/update-browserslist-db": { 3490 | "version": "1.1.1", 3491 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", 3492 | "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", 3493 | "dev": true, 3494 | "funding": [ 3495 | { 3496 | "type": "opencollective", 3497 | "url": "https://opencollective.com/browserslist" 3498 | }, 3499 | { 3500 | "type": "tidelift", 3501 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3502 | }, 3503 | { 3504 | "type": "github", 3505 | "url": "https://github.com/sponsors/ai" 3506 | } 3507 | ], 3508 | "license": "MIT", 3509 | "dependencies": { 3510 | "escalade": "^3.2.0", 3511 | "picocolors": "^1.1.0" 3512 | }, 3513 | "bin": { 3514 | "update-browserslist-db": "cli.js" 3515 | }, 3516 | "peerDependencies": { 3517 | "browserslist": ">= 4.21.0" 3518 | } 3519 | }, 3520 | "node_modules/v8-to-istanbul": { 3521 | "version": "9.3.0", 3522 | "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", 3523 | "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", 3524 | "dev": true, 3525 | "license": "ISC", 3526 | "dependencies": { 3527 | "@jridgewell/trace-mapping": "^0.3.12", 3528 | "@types/istanbul-lib-coverage": "^2.0.1", 3529 | "convert-source-map": "^2.0.0" 3530 | }, 3531 | "engines": { 3532 | "node": ">=10.12.0" 3533 | } 3534 | }, 3535 | "node_modules/walker": { 3536 | "version": "1.0.8", 3537 | "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", 3538 | "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", 3539 | "dev": true, 3540 | "license": "Apache-2.0", 3541 | "dependencies": { 3542 | "makeerror": "1.0.12" 3543 | } 3544 | }, 3545 | "node_modules/which": { 3546 | "version": "2.0.2", 3547 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3548 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3549 | "dev": true, 3550 | "license": "ISC", 3551 | "dependencies": { 3552 | "isexe": "^2.0.0" 3553 | }, 3554 | "bin": { 3555 | "node-which": "bin/node-which" 3556 | }, 3557 | "engines": { 3558 | "node": ">= 8" 3559 | } 3560 | }, 3561 | "node_modules/wrap-ansi": { 3562 | "version": "7.0.0", 3563 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3564 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3565 | "dev": true, 3566 | "license": "MIT", 3567 | "dependencies": { 3568 | "ansi-styles": "^4.0.0", 3569 | "string-width": "^4.1.0", 3570 | "strip-ansi": "^6.0.0" 3571 | }, 3572 | "engines": { 3573 | "node": ">=10" 3574 | }, 3575 | "funding": { 3576 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3577 | } 3578 | }, 3579 | "node_modules/wrappy": { 3580 | "version": "1.0.2", 3581 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3582 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3583 | "dev": true, 3584 | "license": "ISC" 3585 | }, 3586 | "node_modules/write-file-atomic": { 3587 | "version": "4.0.2", 3588 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", 3589 | "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", 3590 | "dev": true, 3591 | "license": "ISC", 3592 | "dependencies": { 3593 | "imurmurhash": "^0.1.4", 3594 | "signal-exit": "^3.0.7" 3595 | }, 3596 | "engines": { 3597 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 3598 | } 3599 | }, 3600 | "node_modules/y18n": { 3601 | "version": "5.0.8", 3602 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 3603 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 3604 | "dev": true, 3605 | "license": "ISC", 3606 | "engines": { 3607 | "node": ">=10" 3608 | } 3609 | }, 3610 | "node_modules/yallist": { 3611 | "version": "3.1.1", 3612 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 3613 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 3614 | "dev": true, 3615 | "license": "ISC" 3616 | }, 3617 | "node_modules/yargs": { 3618 | "version": "17.7.2", 3619 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 3620 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 3621 | "dev": true, 3622 | "license": "MIT", 3623 | "dependencies": { 3624 | "cliui": "^8.0.1", 3625 | "escalade": "^3.1.1", 3626 | "get-caller-file": "^2.0.5", 3627 | "require-directory": "^2.1.1", 3628 | "string-width": "^4.2.3", 3629 | "y18n": "^5.0.5", 3630 | "yargs-parser": "^21.1.1" 3631 | }, 3632 | "engines": { 3633 | "node": ">=12" 3634 | } 3635 | }, 3636 | "node_modules/yargs-parser": { 3637 | "version": "21.1.1", 3638 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 3639 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 3640 | "dev": true, 3641 | "license": "ISC", 3642 | "engines": { 3643 | "node": ">=12" 3644 | } 3645 | }, 3646 | "node_modules/yocto-queue": { 3647 | "version": "0.1.0", 3648 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3649 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3650 | "dev": true, 3651 | "license": "MIT", 3652 | "engines": { 3653 | "node": ">=10" 3654 | }, 3655 | "funding": { 3656 | "url": "https://github.com/sponsors/sindresorhus" 3657 | } 3658 | } 3659 | } 3660 | } 3661 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "devDependencies": { 3 | "@types/jest": "^29.5.14", 4 | "jest": "^29.7.0" 5 | }, 6 | "scripts": { 7 | "test": "jest" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /pinout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 8 | 9 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |