├── .devcontainer ├── .gitignore ├── Dockerfile ├── README.md ├── bin │ ├── dev-logs-graphnode │ ├── dev-logs-postgres │ ├── dev-psql │ ├── dev-reset-subgraphs │ ├── dev-restart-postgres │ ├── dev-restart-services │ ├── dev-status │ ├── dev-update │ └── help ├── devcontainer.json ├── docker-compose.yml ├── graphnodeconfig │ └── config.toml ├── post-create.sh ├── start-graph-node.sh └── wait-graph-node.sh ├── .vscode ├── .gitignore ├── launch.json ├── streamingfast.substreams │ ├── .eslintrc.json │ ├── .vscode-test.mjs │ ├── .vscode │ │ ├── extensions.json │ │ └── launch.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── extension.js │ ├── jsconfig.json │ ├── media │ │ └── substreams.svg │ ├── package-lock.json │ ├── package.json │ ├── substreams-0.0.1.vsix │ ├── test │ │ └── extension.test.js │ └── vsc-extension-quickstart.md └── tasks.json └── README.md /.devcontainer/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/substreams -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/devcontainers/rust:1.0.14-bullseye 2 | 3 | RUN rustup target add wasm32-unknown-unknown ; rustup update 4 | 5 | RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \ 6 | apt-get install -y nodejs 7 | 8 | RUN cargo install protoc-gen-prost protoc-gen-prost-crate 9 | 10 | RUN apt-get -y install --no-install-recommends ca-certificates gnupg2 tar gcc make pkg-config netcat-openbsd 11 | 12 | RUN LINK=$(curl -s https://api.github.com/repos/bufbuild/buf/releases/latest | awk "/download.url.*buf-Linux-$(uname -m)\"/ {print \$2}" | sed 's/"//g') && curl -L $LINK -o /usr/bin/buf && chmod +x /usr/bin/buf 13 | RUN ARCH=$(dpkg --print-architecture); curl -LO https://go.dev/dl/go1.22.5.linux-$ARCH.tar.gz && tar -C /usr/local -xzf go1.22.5.linux-$ARCH.tar.gz && rm go1.22.5.linux-$ARCH.tar.gz 14 | RUN ARCH=$(dpkg --print-architecture); curl -LO https://github.com/tinygo-org/tinygo/releases/download/v0.32.0/tinygo_0.32.0_$ARCH.deb && dpkg -i tinygo_0.32.0_$ARCH.deb && rm tinygo_0.32.0_$ARCH.deb 15 | 16 | RUN curl -LO https://raw.githubusercontent.com/devcontainers/features/main/src/docker-outside-of-docker/install.sh && chmod +x /install.sh && ./install.sh && rm install.sh # this is done again in the 'devcontainer feature' but precached all pkgs 17 | 18 | RUN chown -R vscode /usr/local/cargo 19 | 20 | RUN rm -rf /var/lib/apt/lists/* 21 | 22 | ENV PATH="$PATH:/usr/local/go/bin:/go/bin" 23 | ENV GOROOT="/usr/local/go" 24 | ENV GOPATH="/go" 25 | 26 | RUN cargo install toml-cli 27 | 28 | RUN VER=$(curl --silent -qI https://github.com/streamingfast/substreams/releases/latest | awk -F '/' '/^location/ {print substr($NF, 1, length($NF)-1)}') && curl -LO https://github.com/streamingfast/substreams/releases/download/$VER/substreams_linux_x86_64.tar.gz && tar xzf substreams_linux_x86_64.tar.gz substreams && mv substreams /usr/bin/substreams 29 | 30 | RUN npm install -g @graphprotocol/graph-cli 31 | 32 | # the 'help' command will be added in post-create steps 33 | COPY <Try now, click Open: 6 | 7 | Your first 60h/month are free! 8 | 9 | 10 | [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new/streamingfast/substreams-starter?machine=standardLinux32gb) 11 | 12 | 13 | > This will open a fully featured **Devcontainer-based** development environment, using [GitHub Codespaces](https://github.com/features/codespaces). 14 | 15 | Within the IDE, in a Terminal (`F1` -> `Terminal: Create New Terminal`), run: 16 | 17 | ```bash 18 | substreams init 19 | substreams build 20 | substreams auth 21 | substreams gui 22 | substreams registry login 23 | substreams registry publish 24 | ``` 25 | 26 | Run `help` to discover the development environment and then generate sink projects with: 27 | 28 | ```bash 29 | substreams codegen subgraph 30 | substreams codegen sql 31 | ``` 32 | 33 | Learn more: 34 | 35 | - [Tutorials](https://substreams.streamingfast.io/tutorials/) 36 | - [Substreams Documentation](https://substreams.streamingfast.io) 37 | 38 | Discover community Substreams: 39 | 40 | - [Substreams Registry](https://substreams.dev/) 41 | 42 | ## Clone in local VSCode 43 | 44 | VSCode has excellent support for such containers. See [their documentation](https://code.visualstudio.com/docs/devcontainers/containers). 45 | 46 | - Install [Docker Desktop](https://www.docker.com/products/docker-desktop/) 47 | - Install [VSCode](https://code.visualstudio.com/download) 48 | - Install the [Devcontainer Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) in VSCode 49 | - Open this repository, and execute "Rebuild & open in container" 50 | 51 | > [!NOTE] 52 | > Devcontainers, the environment proposed here, have **greatly matured** in the past 3 years. They have been [standardized](https://containers.dev/), implemented in [multiple IDEs and tools](https://containers.dev/supporting), and are used at scale in great companies (eg. [Shopify](https://shopify.engineering/shopifys-cloud-development-journey)). 53 | 54 | ## Local install 55 | 56 | The **Devcontainer is the preferred way** to develop Substreams. Our documentation generally assumes this environment. 57 | 58 | If you prefer, you can install all components locally by following our [installation docs](https://substreams.streamingfast.io/documentation/consume/installing-the-cli). 59 | 60 | ## Included in the dev environment 61 | 62 | - `substreams` preinstalled 63 | - For _Substreams_ development: **Rust** toolchain, `buf` and protobuf tooling, 64 | - For _subgraph_ development: **node/npm**, along with all subgraph services, running in the devcontainer (`graph-node`, `postgres`, `ipfs`) directly accessible locally or remotely. 65 | - Pre-configured VSCode extensions for everything, plus a custom _VSCode Substreams Extension_. 66 | -------------------------------------------------------------------------------- /.devcontainer/bin/dev-logs-graphnode: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | PROJECT=$(docker inspect --format='{{index .Config.Labels "com.docker.compose.project"}}' $HOSTNAME) 4 | DOCKERPS=$(docker ps -a --format=json) 5 | 6 | CONTAINERS=$(echo -e $DOCKERPS | jq -r 'select(.Names | startswith("'$PROJECT'"))|.Names') 7 | 8 | for container in $CONTAINERS; do 9 | case $container in 10 | *-graph-node-1) 11 | GRAPHNODE_CONTAINER=$container 12 | ;; 13 | esac 14 | done 15 | 16 | if [[ "$GRAPHNODE_CONTAINER" == "" ]]; then 17 | echo "Error: Missing container(s) $PROJECT-graph-node-1" 18 | exit 1 19 | fi 20 | 21 | 22 | echo "## Logs for $GRAPHNODE_CONTAINER (last 5 minutes, last 10 lines) ##" 23 | echo 24 | docker logs --since=5m --tail=10 $GRAPHNODE_CONTAINER -f -------------------------------------------------------------------------------- /.devcontainer/bin/dev-logs-postgres: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | PROJECT=$(docker inspect --format='{{index .Config.Labels "com.docker.compose.project"}}' $HOSTNAME) 4 | DOCKERPS=$(docker ps -a --format=json) 5 | 6 | CONTAINERS=$(echo -e $DOCKERPS | jq -r 'select(.Names | startswith("'$PROJECT'"))|.Names') 7 | 8 | for container in $CONTAINERS; do 9 | case $container in 10 | *-postgres-1) 11 | POSTGRES_CONTAINER=$container 12 | ;; 13 | esac 14 | done 15 | 16 | if [[ "$POSTGRES_CONTAINER" == "" ]]; then 17 | echo "Error: Missing container(s) $PROJECT-postgres-1" 18 | exit 1 19 | fi 20 | 21 | echo "## Logs for $POSTGRES_CONTAINER (last 5 minutes, last 10 lines) ##" 22 | echo 23 | docker logs --since=5m --tail=10 $POSTGRES_CONTAINER -f -------------------------------------------------------------------------------- /.devcontainer/bin/dev-psql: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [[ ! -x /usr/bin/psql ]]; then 4 | sudo apt update 5 | sudo apt install -y postgresql-client 6 | fi 7 | 8 | export PGPASSWORD=$LOCAL_GRAPH_NODE_PASSWORD 9 | psql -h $LOCAL_GRAPH_NODE_HOSTNAME -U graph-node 10 | -------------------------------------------------------------------------------- /.devcontainer/bin/dev-reset-subgraphs: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [[ $1 != "--force" && $1 != "-f" ]]; then 4 | echo "This will remove all subgraphs in the development environment by DELETING the database and ipfs content." 5 | read -p "Are you sure? (Y/N) " -r 6 | echo "" 7 | if [[ ! $REPLY =~ ^[Yy]$ ]] 8 | then 9 | echo "Aborted." 10 | exit 1 11 | fi 12 | fi 13 | 14 | PROJECT=$(docker inspect --format='{{index .Config.Labels "com.docker.compose.project"}}' $HOSTNAME) 15 | DOCKERPS=$(docker ps -a --format=json) 16 | 17 | CONTAINERS=$(echo -e $DOCKERPS | jq -r 'select(.Names | startswith("'$PROJECT'"))|.Names') 18 | 19 | for container in $CONTAINERS; do 20 | case $container in 21 | *-graph-node-1) 22 | GRAPHNODE_CONTAINER=$container 23 | ;; 24 | *-ipfs-1) 25 | IPFS_CONTAINER=$container 26 | ;; 27 | *-postgres-1) 28 | POSTGRES_CONTAINER=$container 29 | ;; 30 | esac 31 | done 32 | if [[ "$GRAPHNODE_CONTAINER" == "" || "$IPFS_CONTAINER" == "" || "$POSTGRES_CONTAINER" == "" ]]; then 33 | echo "Error: Missing container(s): GRAPHNODE_CONTAINER=$GRAPHNODE_CONTAINER, IPFS_CONTAINER=$IPFS_CONTAINER, POSTGRES_CONTAINER=$POSTGRES_CONTAINER" 34 | exit 1 35 | fi 36 | 37 | echo "Stopping containers..." 38 | docker stop $GRAPHNODE_CONTAINER $IPFS_CONTAINER $POSTGRES_CONTAINER 39 | 40 | echo "Deleting data in /data" 41 | shopt -s dotglob 42 | for i in db ipfs ipfs-export; do 43 | sudo find /data/$i -mindepth 1 -delete 44 | done 45 | 46 | echo "Starting..." 47 | docker start $IPFS_CONTAINER $POSTGRES_CONTAINER 48 | docker start $GRAPHNODE_CONTAINER 49 | -------------------------------------------------------------------------------- /.devcontainer/bin/dev-restart-postgres: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | PROJECT=$(docker inspect --format='{{index .Config.Labels "com.docker.compose.project"}}' $HOSTNAME) 4 | DOCKERPS=$(docker ps -a --format=json) 5 | CONTAINERS=$(echo -e $DOCKERPS | jq -r 'select(.Names | startswith("'$PROJECT'"))|.Names') 6 | 7 | for container in $CONTAINERS; do 8 | case $container in 9 | *-postgres-1) 10 | POSTGRES_CONTAINER=$container 11 | ;; 12 | esac 13 | done 14 | if [[ "$POSTGRES_CONTAINER" == "" ]]; then 15 | echo "Error: Missing container: POSTGRES=$POSTGRES_CONTAINER" 16 | exit 1 17 | fi 18 | 19 | echo "Stopping container..." 20 | docker stop $POSTGRES_CONTAINER 21 | echo "Starting..." 22 | docker start $POSTGRES_CONTAINER -------------------------------------------------------------------------------- /.devcontainer/bin/dev-restart-services: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | PROJECT=$(docker inspect --format='{{index .Config.Labels "com.docker.compose.project"}}' $HOSTNAME) 4 | DOCKERPS=$(docker ps -a --format=json) 5 | CONTAINERS=$(echo -e $DOCKERPS | jq -r 'select(.Names | startswith("'$PROJECT'"))|.Names') 6 | 7 | for container in $CONTAINERS; do 8 | case $container in 9 | *-graph-node-1) 10 | GRAPHNODE_CONTAINER=$container 11 | ;; 12 | *-ipfs-1) 13 | IPFS_CONTAINER=$container 14 | ;; 15 | *-pgweb-1) 16 | PGWEB_CONTAINER=$container 17 | ;; 18 | *-postgres-1) 19 | POSTGRES_CONTAINER=$container 20 | ;; 21 | esac 22 | done 23 | if [[ "$GRAPHNODE_CONTAINER" == "" || "$IPFS_CONTAINER" == "" || "$POSTGRES_CONTAINER" == "" ]]; then 24 | echo "Error: Missing container(s): GRAPHNODE=$GRAPHNODE_CONTAINER, IPFS=$IPFS_CONTAINER, POSTGRES=$POSTGRES_CONTAINER, PGWEB=$PGWEB_CONTAINER" 25 | exit 1 26 | fi 27 | 28 | echo "Stopping containers..." 29 | docker stop $GRAPHNODE_CONTAINER $IPFS_CONTAINER $POSTGRES_CONTAINER $PGWEB_CONTAINER 30 | 31 | echo "Starting..." 32 | docker start $IPFS_CONTAINER $POSTGRES_CONTAINER 33 | docker start $GRAPHNODE_CONTAINER $PGWEB_CONTAINER -------------------------------------------------------------------------------- /.devcontainer/bin/dev-status: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | PROJECT=$(docker inspect --format='{{index .Config.Labels "com.docker.compose.project"}}' $HOSTNAME) 4 | DOCKERPS=$(docker ps --format=json) 5 | SUBSTREAMS_VERSION=$(substreams --version) 6 | CONTAINERS=$(echo -e $DOCKERPS | jq -r 'select(.Names | startswith("'$PROJECT'"))|.Names') 7 | 8 | COLOR_RED='\033[0;31m' 9 | COLOR_DEFAULT='\033[0m' 10 | 11 | redline() { 12 | echo -e "$COLOR_RED$1$COLOR_DEFAULT" 13 | } 14 | 15 | echo 16 | redline "#################### Versions #####################" 17 | echo 18 | echo -n '* ' 19 | substreams --version 20 | echo -n '* ' 21 | graph --version 22 | 23 | echo 24 | redline "############### Running containers ################" 25 | echo 26 | for container in $CONTAINERS; do 27 | role=unknown 28 | case $container in 29 | *-main-1) 30 | role="Main (this container)" 31 | ;; 32 | *-graph-node-1) 33 | role="Graph Node" 34 | GRAPHNODE_CONTAINER=$container 35 | ;; 36 | *-pgweb-1) 37 | role="PGWeb" 38 | ;; 39 | *-ipfs-1) 40 | role="IPFS server" 41 | IPFS_CONTAINER=$container 42 | ;; 43 | *-postgres-1) 44 | role="Postgres database" 45 | POSTGRES_CONTAINER=$container 46 | ;; 47 | esac 48 | status=$(echo -e $DOCKERPS | jq -r 'select(.Names=="'$container'") | "\(.State) - \(.Status)"') 49 | comment="" 50 | if [[ "$container" == "$GRAPHNODE_CONTAINER" ]] && echo $status|grep -q unhealthy ; then 51 | comment=" -- becomes healthy after running 'substreams auth' and 'substreams codegen subgraph'" 52 | fi 53 | STATUSES="$STATUSES\n- $container\t$role\t$status$comment" 54 | done 55 | 56 | echo -e $STATUSES| column -t -s "$(printf '\t')" 57 | 58 | if ! [[ -e $WORKSPACE_FOLDER/.substreams.env ]]; then 59 | echo 60 | echo "The $WORKSPACE_FOLDER/.substreams.env file is missing. Please authenticate using 'substreams auth' from $WORKSPACE_FOLDER folder." 61 | echo 62 | exit 1 63 | fi 64 | 65 | echo 66 | redline "#################### Graph-node ####################" 67 | if ! find $WORKSPACE_FOLDER -type f -name subgraph.yaml 2>/dev/null |grep -q .; then 68 | echo 69 | echo "No subgraph.yaml file found, run 'substreams codegen subgraph' if you want to generate a subgraph from your substreams." 70 | echo 71 | exit 0 72 | fi 73 | 74 | if nc -z $LOCAL_GRAPH_NODE_HOSTNAME 8000; then 75 | echo 76 | redline "--------------------- Chains ----------------------" 77 | docker exec -ti $GRAPHNODE_CONTAINER bash -i -c "graphman chain list" 78 | echo 79 | echo "* add more chains by editing .graph-node/config.toml" 80 | echo 81 | redline "------------------ Deployments --------------------" 82 | docker exec -ti $GRAPHNODE_CONTAINER bash -i -c "graphman info --all --status" 83 | else 84 | state=$(docker inspect $GRAPHNODE_CONTAINER|jq .[].State) 85 | if [[ "$(echo -e $state |jq -r .Status)" == "running" ]]; then 86 | if [[ "$(echo -e $state |jq -r .Health.Status)" == "healthy" ]]; then 87 | echo 88 | echo "The graph-node container is running and healthy, but not available at $LOCAL_GRAPH_NODE_HOSTNAME:8000" 89 | echo "You may have an issue with your container network configuration (e.g. docker-compose). Try restarting all the containers." 90 | exit 91 | elif [[ "$(echo -e $state |jq -r .Health.Status)" == "starting" ]]; then 92 | echo 93 | echo "The graph-node container is just starting, please wait a moment to get more information." 94 | echo 95 | exit 96 | else 97 | echo 98 | echo "The graph-node container is not ready, showing as $(echo -e $status |jq -r .Health.Status)." 99 | echo "You can check the logs for more information by running 'dev-logs-graphnode'." 100 | exit 101 | fi 102 | else 103 | echo "The graph-node container $GRAPHNODE_CONTAINER is not running" 104 | echo "Current status:" 105 | echo $state | jq .Status 106 | echo 107 | echo "You can try to start the container by running 'dev-restart-services'." 108 | echo "Get more details by running 'docker inspect $GRAPHNODE_CONTAINER'." 109 | echo 110 | exit 111 | fi 112 | 113 | fi 114 | -------------------------------------------------------------------------------- /.devcontainer/bin/dev-update: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | COLOR_RED='\033[0;31m' 4 | COLOR_DEFAULT='\033[0m' 5 | redline() { 6 | echo -e "$COLOR_RED$1$COLOR_DEFAULT" 7 | } 8 | redline "## Updating devcontainer tools ##" 9 | PREV=v$(substreams --version |awk '{print $3}') 10 | VER=$(curl --silent -qI https://github.com/streamingfast/substreams/releases/latest | awk -F '/' '/^location/ {print substr($NF, 1, length($NF)-1)}') 11 | if [[ "$VER" != "$PREV" ]]; then 12 | echo -- Updating substreams from $PREV to $VER -- 13 | pushd /tmp 14 | curl -LO https://github.com/streamingfast/substreams/releases/download/$VER/substreams_linux_x86_64.tar.gz && tar xzf substreams_linux_x86_64.tar.gz substreams && sudo mv substreams /usr/bin/substreams 15 | popd 16 | fi 17 | 18 | cp /usr/bin/substreams /workspace/.devcontainer/bin/substreams # used by graph-node container to find network 19 | 20 | echo -- Updating global graph-cli -- 21 | sudo npm update -g @graphprotocol/graph-cli --silent 22 | 23 | redline "## Done ##" -------------------------------------------------------------------------------- /.devcontainer/bin/help: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | RED="\e[31m" 3 | GREEN="\e[32m" 4 | ENDCOLOR="\e[0m" 5 | 6 | echo -e "" 7 | echo -e "${GREEN}Substreams development environment -- available commands${ENDCOLOR}" 8 | echo -e "" 9 | echo -e " ${GREEN}help${ENDCOLOR} Show this help message" 10 | echo -e " ${GREEN}dev-status${ENDCOLOR} Information about the development environment (running containers, deployed subgraphs, etc.)" 11 | echo -e " ${GREEN}dev-update${ENDCOLOR} Update the substreams binary to the latest" 12 | echo -e " ${GREEN}dev-restart-services${ENDCOLOR} Restart service containres (graph-node, ipfs, postgres, pgweb)" 13 | echo -e " ${GREEN}dev-reset-subgraphs${ENDCOLOR} Delete all the subgraph stored data and restart containers" 14 | echo -e " ${GREEN}dev-logs-graphnode${ENDCOLOR} Show the latest logs from the graph-node container" 15 | echo -e " ${GREEN}dev-logs-postgres${ENDCOLOR} Show the latest logs from the postgres container" 16 | echo -e " ${GREEN}dev-psql${ENDCOLOR} Open a shell into the postgres database" 17 | echo -e "" 18 | 19 | -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Substreams Starter", 3 | "dockerComposeFile": "docker-compose.yml", 4 | "workspaceFolder": "/workspace", 5 | "service": "main", 6 | "containerEnv": { 7 | "SUBSTREAMS_INIT_CODEGEN_ENDPOINT": "https://codegen.substreams.dev", 8 | "DOCKER_CLI_HINTS": "false", 9 | "LOCAL_GRAPH_NODE_HOSTNAME": "localhost", 10 | "LOCAL_GRAPH_NODE_PASSWORD": "let-me-in", 11 | "LOCAL_IPFS_HOSTNAME": "localhost", 12 | "WORKSPACE_FOLDER": "${containerWorkspaceFolder}" 13 | }, 14 | "initializeCommand": "mkdir -p ${localWorkspaceFolder}/.graph-node", 15 | "forwardPorts": [ 16 | 5432, 17 | 5001, 18 | 8000, 19 | 8020, 20 | 8081 21 | ], 22 | "portsAttributes": { 23 | "1065": { 24 | "label": "substreams_loglevel_server", 25 | "onAutoForward": "silent" 26 | }, 27 | "6060": { 28 | "label": "substreams_pprof", 29 | "onAutoForward": "silent" 30 | }, 31 | "5432": { 32 | "label": "postgresql", 33 | }, 34 | "5001": { 35 | "label": "ipfs", 36 | }, 37 | "8000": { 38 | "label": "graphql", 39 | }, 40 | "8020": { 41 | "label": "graph-node", 42 | }, 43 | "8081": { 44 | "label": "pgweb", 45 | } 46 | }, 47 | "customizations": { 48 | "vscode": { 49 | "extensions": [ 50 | "1yib.rust-bundle", 51 | "rust-lang.rust-analyzer", 52 | "vadimcn.vscode-lldb", 53 | "ms-azuretools.vscode-docker", 54 | "/workspace/.vscode/streamingfast.substreams/substreams-0.0.1.vsix", 55 | "bufbuild.vscode-buf" 56 | ], 57 | "settings": { 58 | "workbench.welcomePage.walkthroughs.openOnInstall": false 59 | } 60 | } 61 | }, 62 | 63 | "features": { 64 | "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {} 65 | }, 66 | 67 | "postCreateCommand": "/workspace/.devcontainer/post-create.sh" 68 | } 69 | -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- 1 | services: 2 | main: 3 | image: ghcr.io/streamingfast/substreams-starter:v0.1.4 4 | platform: linux/amd64 5 | volumes: 6 | - ..:/workspace:cached 7 | - /var/run/docker.sock:/var/run/docker-host.sock 8 | - ipfs-data:/data/ipfs 9 | - ipfs-export-data:/data/ipfs-export 10 | - db-data:/data/db 11 | entrypoint: '/bin/sh -c "sleep infinity"' 12 | healthcheck: 13 | test: ["CMD", "true"] 14 | interval: 10s 15 | timeout: 5s 16 | retries: 5 17 | 18 | ipfs: 19 | image: ipfs/kubo:v0.14.0 20 | volumes: 21 | - ipfs-data:/data/ipfs 22 | - ipfs-export-data:/export 23 | network_mode: service:main 24 | depends_on: 25 | - postgres 26 | 27 | graph-node: 28 | image: graphprotocol/graph-node:9a51f3b 29 | volumes: 30 | - ../.graph-node:/config/graph-node:cached 31 | - ..:/workspace:cached # .devcontainer, .env 32 | environment: 33 | postgres_host: postgres 34 | postgres_user: graph-node 35 | postgres_pass: let-me-in 36 | postgres_db: graph-node 37 | ipfs: 'localhost:5001' 38 | GRAPH_LOG: info 39 | GRAPH_NODE_CONFIG: /workspace/.graph-node/config.toml 40 | GRAPH_STORE_WRITE_BATCH_SIZE: 0 41 | GRAPH_ALLOW_NON_DETERMINISTIC_FULLTEXT_SEARCH: "true" 42 | command: 43 | - /workspace/.devcontainer/wait-graph-node.sh 44 | depends_on: 45 | - ipfs 46 | - postgres 47 | network_mode: service:main 48 | healthcheck: 49 | test: ["CMD", "nc", "-z", "localhost", "8000"] 50 | interval: 10s 51 | timeout: 5s 52 | retries: 5 53 | 54 | postgres: 55 | image: postgres:15 56 | command: 57 | - "postgres" 58 | - "-cshared_preload_libraries=pg_stat_statements" 59 | #- "-clog_statement=all" 60 | network_mode: service:main 61 | environment: 62 | POSTGRES_USER: graph-node 63 | POSTGRES_PASSWORD: let-me-in 64 | POSTGRES_DB: graph-node 65 | POSTGRES_INITDB_ARGS: "-E UTF8 --locale=C" 66 | POSTGRES_HOST_AUTH_METHOD: md5 67 | volumes: 68 | - db-data:/var/lib/postgresql/data 69 | healthcheck: 70 | test: ["CMD", "pg_isready", "-U", "graph-node"] 71 | interval: 30s 72 | timeout: 10s 73 | retries: 15 74 | 75 | pgweb: 76 | image: sosedoff/pgweb:0.11.12 77 | restart: on-failure 78 | command: ["pgweb", "--bind=0.0.0.0", "--listen=8081", "--binary-codec=hex"] 79 | network_mode: service:main 80 | environment: 81 | - DATABASE_URL=postgres://graph-node:let-me-in@localhost:5432/graph-node?sslmode=disable 82 | depends_on: 83 | - postgres 84 | healthcheck: 85 | test: ["CMD", "true"] 86 | interval: 10s 87 | timeout: 5s 88 | retries: 5 89 | 90 | volumes: 91 | db-data: 92 | ipfs-data: 93 | ipfs-export-data: 94 | -------------------------------------------------------------------------------- /.devcontainer/graphnodeconfig/config.toml: -------------------------------------------------------------------------------- 1 | [general] 2 | 3 | [store] 4 | [store.primary] 5 | connection = "postgresql://graph-node:let-me-in@localhost:5432/graph-node" 6 | weight = 1 7 | pool_size = 10 8 | 9 | [chains] 10 | ingestor = "block_ingestor_node" 11 | 12 | # Chain configurations: 13 | # - Modify [chains.`CHAINNAME`] to correspond to a well-known chain from https://thegraph.com/docs/en/developing/supported-networks/ 14 | # - Provide an `ENDPOINT` under "url", that you can grab from https://thegraph.market 15 | # 16 | # [chains.CHAINNAME] 17 | # protocol = "substreams" 18 | # shard = "primary" 19 | # provider = [ 20 | # { label = "substreams", details = { type = "substreams", url = "https://ENDPOINT", token = "$SUBSTREAMS_API_TOKEN", features = [ "compression" ], conn_pool_size = 1 } }, 21 | # ] 22 | 23 | # The following chains was configured by the devcontainer based on %%SUBGRAPH_PATH%% 24 | [chains.%%NETWORK%%] 25 | protocol = "substreams" 26 | shard = "primary" 27 | provider = [ 28 | { label = "substreams", details = { type = "substreams", url = "https://%%ENDPOINT%%", token = "$SUBSTREAMS_API_TOKEN", features = [ "compression" ], conn_pool_size = 1 } }, 29 | ] 30 | 31 | # examples 32 | # 33 | # [chains.mainnet] 34 | # protocol = "substreams" 35 | # shard = "primary" 36 | # provider = [ 37 | # { label = "substreams", details = { type = "substreams", url = "https://mainnet.eth.streamingfast.io:443", token = "$SUBSTREAMS_API_TOKEN", features = [ "compression" ], conn_pool_size = 1 } }, 38 | # ] 39 | # 40 | # [chains.injective-mainnet] 41 | # protocol = "substreams" 42 | # shard = "primary" 43 | # provider = [ 44 | # { label = "substreams", details = { type = "substreams", url = "https://mainnet.injective.streamingfast.io:443", token = "$SUBSTREAMS_API_TOKEN", features = [ "compression" ], conn_pool_size = 1 } }, 45 | # ] 46 | # 47 | # [chains.solana-mainnet-beta] 48 | # protocol = "substreams" 49 | # shard = "primary" 50 | # provider = [ 51 | # { label = "substreams", details = { type = "substreams", url = "https://mainnet.sol.streamingfast.io:443", token = "$SUBSTREAMS_API_TOKEN", features = [ "compression" ], conn_pool_size = 1 } }, 52 | # ] 53 | 54 | [deployment] 55 | [[deployment.rule]] 56 | shard = "primary" 57 | indexers = ["default"] 58 | -------------------------------------------------------------------------------- /.devcontainer/post-create.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cat <> ~/.bashrc 4 | 5 | alias help=/workspace/.devcontainer/bin/help 6 | set -o allexport 7 | if [ -f /workspace/.env ]; then source /workspace/.env; fi 8 | set +o allexport 9 | if [ -f /workspace/.substreams.env ]; then source /workspace/.substreams.env; fi 10 | if [ -f /etc/motd ]; then cat /etc/motd; fi 11 | EOC 12 | # added separately to make sure the $PATH env var is not interpolated 13 | echo 'PATH="./node_modules/.bin:$PATH:/workspace/.devcontainer/bin"' >> ~/.bashrc 14 | 15 | . ~/.bashrc 16 | 17 | git config --global --add safe.directory /workspace 18 | /workspace/.devcontainer/bin/dev-restart-postgres # fix an issue (race?) on github codespaces where vscode changes the ownership of those files.. 19 | /workspace/.devcontainer/bin/dev-update -------------------------------------------------------------------------------- /.devcontainer/start-graph-node.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ -f /workspace/.substreams.env ]; then 4 | source /workspace/.substreams.env 5 | fi 6 | 7 | sleep 1 8 | start -------------------------------------------------------------------------------- /.devcontainer/wait-graph-node.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Import `reflex` in container 4 | if ! command -v reflex &> /dev/null; then 5 | apt update 6 | apt install -y wget 7 | pushd /tmp 8 | wget https://github.com/cespare/reflex/releases/download/v0.3.1/reflex_linux_amd64.tar.gz 9 | tar zxvf reflex*tar.gz 10 | mv reflex*/reflex /usr/bin 11 | rm reflex*.tar.gz 12 | popd 13 | fi 14 | 15 | 16 | echo "Waiting for /workspace/.substreams.env to have a configured endpoint" 17 | until test -e /workspace/.substreams.env && grep -q 'SUBSTREAMS_API_TOKEN=' /workspace/.substreams.env; do 18 | sleep 1 19 | done 20 | echo "if [[ -f /workspace/.substreams.env ]]; then source /workspace/.substreams.env; fi" | tee -a ~/.profile >> ~/.bashrc 21 | 22 | if [[ ! -f /workspace/.graph-node/config.toml ]]; then 23 | echo "Waiting for a 'subgraph.yaml' (or '/workspace/.graph-node/config.toml') file to be present in the workspace" 24 | until SUBGRAPH_PATH="$(find . -type f -name subgraph.yaml|head -n 1)" && grep '^ *network:' $SUBGRAPH_PATH || [[ -f /workspace/.graph-node/config.toml ]] ; do 25 | sleep 1 26 | done 27 | 28 | if [[ ! -f /workspace/.graph-node/config.toml ]]; then 29 | NETWORK=$(awk '/^ *network:/ {print $2}' $SUBGRAPH_PATH) 30 | mkdir -p /workspace/.graph-node 31 | cp /workspace/.devcontainer/graphnodeconfig/config.toml /tmp/config.toml 32 | 33 | ENDPOINT=$(/workspace/.devcontainer/bin/substreams tools default-endpoint $NETWORK) 34 | if [[ -z "$ENDPOINT" ]]; then 35 | PROVIDERS=$(curl -L https://graphregistry.pages.dev/TheGraphNetworksRegistry.json | jq '.networks.[]|select((.id == "'$NETWORK'") or (.aliases |index("'$NETWORK'")))|.support.substreams') 36 | if [[ -z "$PROVIDERS" ]]; then 37 | echo "No substreams support for network $NETWORK" 38 | ENDPOINT=SET_ENDPOINT_FOR_NETWORK_${NETWORK} 39 | else 40 | ENDPOINT=$(echo $PROVIDERS | jq -r '(.[]|select(.provider == "streamingfast")).url') 41 | if [[ -z "$ENDPOINT" ]]; then 42 | ENDPOINT=$(echo $PROVIDERS | jq -r '(.[0]).url') 43 | fi 44 | fi 45 | fi 46 | sed -i 's@%%SUBGRAPH_PATH%%@'"$SUBGRAPH_PATH"'@g' /tmp/config.toml 47 | sed -i 's/%%ENDPOINT%%/'"$ENDPOINT"'/g' /tmp/config.toml 48 | sed -i 's/%%NETWORK%%/'"$NETWORK"'/g' /tmp/config.toml 49 | cat /tmp/config.toml > /workspace/.graph-node/config.toml 50 | chown 1000:1000 /workspace/.graph-node/config.toml 51 | fi 52 | fi 53 | 54 | echo "Config ready, launching graph-node..." 55 | 56 | cd /workspace/.graph-node 57 | reflex -g config.toml -s /workspace/.devcontainer/start-graph-node.sh 58 | -------------------------------------------------------------------------------- /.vscode/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "type": "lldb", 9 | "request": "launch", 10 | "name": "Build Substreams package", 11 | "cargo": { 12 | "args": [ 13 | "build", 14 | "--target=wasm32-unknown-unknown", 15 | "--release" 16 | ] 17 | }, 18 | "cwd": "${workspaceFolder}" 19 | }, 20 | ] 21 | } -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": false, 4 | "commonjs": true, 5 | "es6": true, 6 | "node": true, 7 | "mocha": true 8 | }, 9 | "parserOptions": { 10 | "ecmaVersion": 2018, 11 | "ecmaFeatures": { 12 | "jsx": true 13 | }, 14 | "sourceType": "module" 15 | }, 16 | "rules": { 17 | "no-const-assign": "warn", 18 | "no-this-before-super": "warn", 19 | "no-undef": "warn", 20 | "no-unreachable": "warn", 21 | "no-unused-vars": "warn", 22 | "constructor-super": "warn", 23 | "valid-typeof": "warn" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/.vscode-test.mjs: -------------------------------------------------------------------------------- 1 | import { defineConfig } from '@vscode/test-cli'; 2 | 3 | export default defineConfig({ 4 | files: 'test/**/*.test.js', 5 | }); 6 | -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // See https://go.microsoft.com/fwlink/?LinkId=733558 3 | // for the documentation about the extensions.json format 4 | "recommendations": [ 5 | "dbaeumer.vscode-eslint", 6 | "ms-vscode.extension-test-runner" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/.vscode/launch.json: -------------------------------------------------------------------------------- 1 | // A launch configuration that launches the extension inside a new window 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | { 6 | "version": "0.2.0", 7 | "configurations": [ 8 | { 9 | "name": "Run Extension", 10 | "type": "extensionHost", 11 | "request": "launch", 12 | "args": [ 13 | "--extensionDevelopmentPath=${workspaceFolder}" 14 | ] 15 | } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | test/** 4 | .gitignore 5 | .yarnrc 6 | vsc-extension-quickstart.md 7 | **/jsconfig.json 8 | **/*.map 9 | **/.eslintrc.json 10 | **/.vscode-test.* 11 | -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to the "substreams" extension will be documented in this file. 4 | 5 | Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. 6 | 7 | ## [Unreleased] 8 | 9 | - Initial release -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/LICENSE.txt: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/README.md: -------------------------------------------------------------------------------- 1 | 2 | This extension creates a dev-environment to stream data using substreams! 3 | 4 | Install `vsce` with: 5 | 6 | ``` 7 | npm install -g @vscode/vsce 8 | ``` 9 | 10 | Package with: 11 | 12 | ``` 13 | vsce package 14 | ``` 15 | -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/extension.js: -------------------------------------------------------------------------------- 1 | // The module 'vscode' contains the VS Code extensibility API 2 | // Import the module and reference it with the alias vscode in your code below 3 | const vscode = require('vscode'); 4 | const path = require('path'); 5 | 6 | // TODO: extract to some other file. 7 | const getParentFolderWithFile = async function(currentFilePath, matchingFileName) { 8 | let currentDir = path.dirname(currentFilePath); 9 | while (true) { 10 | const thisLevelFile = vscode.Uri.joinPath(vscode.Uri.file(currentDir), matchingFileName) 11 | console.log("Looking for this file", thisLevelFile); 12 | try { 13 | const fileExists = await vscode.workspace.fs.stat(thisLevelFile) 14 | return currentDir 15 | } catch (e) { 16 | currentDir = path.dirname(currentDir) 17 | console.log("comparing", currentDir.toString(), "/") 18 | if (currentDir.toString() === "/") { 19 | return null 20 | } 21 | continue 22 | } 23 | } 24 | } 25 | 26 | const substreamsModuleSubfolderError = 'Run command on file inside a project with `substreams.yaml`' 27 | 28 | async function findSubstreamsProjectRoot(vscode) { 29 | const activeEditor = vscode.window.activeTextEditor; 30 | if (!activeEditor) { 31 | return vscode.workspace.workspaceFolders[0].uri.fsPath 32 | } 33 | 34 | const parentFolder = await getParentFolderWithFile(activeEditor.document.uri.fsPath, "substreams.yaml") 35 | if (parentFolder === null) { 36 | vscode.window.showInformationMessage(substreamsModuleSubfolderError); 37 | return 38 | } 39 | 40 | return parentFolder 41 | } 42 | 43 | 44 | /** 45 | * @param {vscode.ExtensionContext} context 46 | */ 47 | function activate(context) { 48 | context.subscriptions.push(vscode.commands.registerCommand('substreams.runInit', async function() { 49 | vscode.tasks.executeTask(new vscode.Task( 50 | { 51 | type: 'shell', 52 | presentation: { 53 | reveal: 'always', 54 | panel: vscode.TaskPanelKind.Dedicated, 55 | showReuseMessage: false, 56 | clear: true 57 | } 58 | }, 59 | vscode.TaskScope.Workspace, 60 | 'Init package from generators', 61 | 'substreams', 62 | new vscode.ShellExecution('substreams init') 63 | )); 64 | })); 65 | 66 | 67 | context.subscriptions.push(vscode.commands.registerCommand('substreams.marketAuth', async function() { 68 | vscode.tasks.executeTask(new vscode.Task( 69 | { 70 | type: 'shell', 71 | presentation: { 72 | reveal: 'always', 73 | panel: vscode.TaskPanelKind.Dedicated, 74 | showReuseMessage: false, 75 | clear: true 76 | } 77 | }, 78 | vscode.TaskScope.Workspace, 79 | 'Authenticate to The Graph Market', 80 | 'substreams', 81 | new vscode.ShellExecution('substreams auth') 82 | )); 83 | })); 84 | 85 | context.subscriptions.push(vscode.commands.registerCommand('substreams.runBuild', async function() { 86 | const projectFolder = await findSubstreamsProjectRoot(vscode) 87 | if (!projectFolder) { 88 | return 89 | } 90 | vscode.tasks.executeTask(new vscode.Task( 91 | { 92 | type: 'shell', 93 | presentation: { 94 | reveal: 'always', 95 | panel: vscode.TaskPanelKind.Dedicated, 96 | showReuseMessage: false, 97 | clear: true 98 | } 99 | }, 100 | vscode.TaskScope.Workspace, 101 | 'Build Substreams Package', 102 | 'substreams', 103 | new vscode.ShellExecution('substreams build', {cwd: projectFolder}) 104 | )) 105 | })) 106 | context.subscriptions.push(vscode.commands.registerCommand('substreams.newBlankModule', async function() {})); 107 | context.subscriptions.push(vscode.commands.registerCommand('substreams.openRepository', async function() {})); 108 | context.subscriptions.push(vscode.commands.registerCommand('substreams.initSubgraph', async function() { 109 | const projectFolder = await findSubstreamsProjectRoot(vscode) 110 | if (!projectFolder) { 111 | return 112 | } 113 | vscode.tasks.executeTask(new vscode.Task( 114 | {type: 'shell'}, 115 | vscode.TaskScope.Workspace, 116 | 'Initialize subgraph', 117 | 'substreams', 118 | new vscode.ShellExecution('substreams codegen subgraph', {cwd: projectFolder}) 119 | )) 120 | })); 121 | context.subscriptions.push(vscode.commands.registerCommand('substreams.initSql', async function() { 122 | const projectFolder = await findSubstreamsProjectRoot(vscode) 123 | if (!projectFolder) { 124 | return 125 | } 126 | vscode.tasks.executeTask(new vscode.Task( 127 | {type: 'shell'}, 128 | vscode.TaskScope.Workspace, 129 | 'Initialize Substreams:SQL', 130 | 'substreams', 131 | new vscode.ShellExecution('substreams codegen subgraph', {cwd: projectFolder}) 132 | )) 133 | 134 | })); 135 | 136 | context.subscriptions.push(vscode.commands.registerCommand('substreams.runGui', async function() { 137 | const projectFolder = await findSubstreamsProjectRoot(vscode) 138 | if (!projectFolder) { 139 | return 140 | } 141 | vscode.tasks.executeTask(new vscode.Task( 142 | { 143 | type: 'shell', 144 | presentation: { 145 | reveal: 'always', 146 | panel: vscode.TaskPanelKind.Dedicated, 147 | showReuseMessage: false, 148 | clear: true 149 | } 150 | }, 151 | vscode.TaskScope.Workspace, 152 | 'Substreams GUI', 153 | 'substreams', 154 | new vscode.ShellExecution('substreams gui', {cwd: projectFolder}) 155 | )) 156 | })); 157 | 158 | async function getPackageList(keywords) { 159 | return [{name: "sreamingfast/uniswap-v3"}, {name: "streamingfast/" + keywords}, {name: "streamingfast/solana-explorer"}, {name: "streamingfast/ethereum-explorer"}] 160 | // try { 161 | // const response = await axios.get('https://api.substreams.dev/packages'); 162 | // return response.data; 163 | // } catch (error) { 164 | // console.error('Error fetching package list:', error); 165 | // return []; 166 | // } 167 | } 168 | 169 | context.subscriptions.push(vscode.commands.registerCommand('substreams.loadFromRegistry', async function() { 170 | 171 | const quickPick = vscode.window.createQuickPick(); 172 | 173 | let packageList = [] 174 | async function refreshList(search) { 175 | packageList = await getPackageList(search); 176 | quickPick.items = packageList.map(pkg => ({ label: pkg.name })); 177 | } 178 | refreshList("") 179 | quickPick.onDidChangeValue(async value => { 180 | refreshList(value) 181 | }); 182 | quickPick.onDidChangeSelection(selection => { 183 | vscode.tasks.executeTask(new vscode.Task( 184 | {type: 'shell'}, 185 | vscode.TaskScope.Workspace, 186 | 'Download Package', 187 | 'substreams', 188 | new vscode.ShellExecution(`curl -O https://spkg.io/${selection.label}`) 189 | )) 190 | }); 191 | quickPick.show(); 192 | })); 193 | 194 | 195 | vscode.commands.executeCommand( 196 | 'workbench.action.openWalkthrough', 197 | `streamingfast.substreams#starter`, 198 | false, 199 | ); 200 | 201 | } 202 | 203 | // This method is called when your extension is deactivated 204 | function deactivate() {} 205 | 206 | module.exports = { 207 | activate, 208 | deactivate 209 | } -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "Node16", 4 | "target": "ES2022", 5 | "checkJs": true, /* Typecheck .js files. */ 6 | "lib": [ 7 | "ES2022" 8 | ] 9 | }, 10 | "exclude": [ 11 | "node_modules" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/media/substreams.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "substreams", 3 | "version": "0.0.1", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "substreams", 9 | "version": "0.0.1", 10 | "devDependencies": { 11 | "@types/mocha": "^10.0.7", 12 | "@types/node": "20.x", 13 | "@types/vscode": "^1.91.0", 14 | "@vscode/test-cli": "^0.0.9", 15 | "@vscode/test-electron": "^2.4.0", 16 | "eslint": "^8.57.0", 17 | "typescript": "^5.4.5" 18 | }, 19 | "engines": { 20 | "vscode": "^1.91.0" 21 | } 22 | }, 23 | "node_modules/@bcoe/v8-coverage": { 24 | "version": "0.2.3", 25 | "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", 26 | "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", 27 | "dev": true 28 | }, 29 | "node_modules/@eslint-community/eslint-utils": { 30 | "version": "4.4.0", 31 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 32 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 33 | "dev": true, 34 | "dependencies": { 35 | "eslint-visitor-keys": "^3.3.0" 36 | }, 37 | "engines": { 38 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 39 | }, 40 | "peerDependencies": { 41 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 42 | } 43 | }, 44 | "node_modules/@eslint-community/regexpp": { 45 | "version": "4.11.0", 46 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", 47 | "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", 48 | "dev": true, 49 | "engines": { 50 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 51 | } 52 | }, 53 | "node_modules/@eslint/eslintrc": { 54 | "version": "2.1.4", 55 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 56 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 57 | "dev": true, 58 | "dependencies": { 59 | "ajv": "^6.12.4", 60 | "debug": "^4.3.2", 61 | "espree": "^9.6.0", 62 | "globals": "^13.19.0", 63 | "ignore": "^5.2.0", 64 | "import-fresh": "^3.2.1", 65 | "js-yaml": "^4.1.0", 66 | "minimatch": "^3.1.2", 67 | "strip-json-comments": "^3.1.1" 68 | }, 69 | "engines": { 70 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 71 | }, 72 | "funding": { 73 | "url": "https://opencollective.com/eslint" 74 | } 75 | }, 76 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { 77 | "version": "1.1.11", 78 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 79 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 80 | "dev": true, 81 | "dependencies": { 82 | "balanced-match": "^1.0.0", 83 | "concat-map": "0.0.1" 84 | } 85 | }, 86 | "node_modules/@eslint/eslintrc/node_modules/minimatch": { 87 | "version": "3.1.2", 88 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 89 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 90 | "dev": true, 91 | "dependencies": { 92 | "brace-expansion": "^1.1.7" 93 | }, 94 | "engines": { 95 | "node": "*" 96 | } 97 | }, 98 | "node_modules/@eslint/js": { 99 | "version": "8.57.0", 100 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", 101 | "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", 102 | "dev": true, 103 | "engines": { 104 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 105 | } 106 | }, 107 | "node_modules/@humanwhocodes/config-array": { 108 | "version": "0.11.14", 109 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", 110 | "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", 111 | "deprecated": "Use @eslint/config-array instead", 112 | "dev": true, 113 | "dependencies": { 114 | "@humanwhocodes/object-schema": "^2.0.2", 115 | "debug": "^4.3.1", 116 | "minimatch": "^3.0.5" 117 | }, 118 | "engines": { 119 | "node": ">=10.10.0" 120 | } 121 | }, 122 | "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { 123 | "version": "1.1.11", 124 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 125 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 126 | "dev": true, 127 | "dependencies": { 128 | "balanced-match": "^1.0.0", 129 | "concat-map": "0.0.1" 130 | } 131 | }, 132 | "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { 133 | "version": "3.1.2", 134 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 135 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 136 | "dev": true, 137 | "dependencies": { 138 | "brace-expansion": "^1.1.7" 139 | }, 140 | "engines": { 141 | "node": "*" 142 | } 143 | }, 144 | "node_modules/@humanwhocodes/module-importer": { 145 | "version": "1.0.1", 146 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 147 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 148 | "dev": true, 149 | "engines": { 150 | "node": ">=12.22" 151 | }, 152 | "funding": { 153 | "type": "github", 154 | "url": "https://github.com/sponsors/nzakas" 155 | } 156 | }, 157 | "node_modules/@humanwhocodes/object-schema": { 158 | "version": "2.0.3", 159 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 160 | "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 161 | "deprecated": "Use @eslint/object-schema instead", 162 | "dev": true 163 | }, 164 | "node_modules/@isaacs/cliui": { 165 | "version": "8.0.2", 166 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 167 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 168 | "dev": true, 169 | "dependencies": { 170 | "string-width": "^5.1.2", 171 | "string-width-cjs": "npm:string-width@^4.2.0", 172 | "strip-ansi": "^7.0.1", 173 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 174 | "wrap-ansi": "^8.1.0", 175 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 176 | }, 177 | "engines": { 178 | "node": ">=12" 179 | } 180 | }, 181 | "node_modules/@isaacs/cliui/node_modules/ansi-regex": { 182 | "version": "6.0.1", 183 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 184 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 185 | "dev": true, 186 | "engines": { 187 | "node": ">=12" 188 | }, 189 | "funding": { 190 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 191 | } 192 | }, 193 | "node_modules/@isaacs/cliui/node_modules/strip-ansi": { 194 | "version": "7.1.0", 195 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 196 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 197 | "dev": true, 198 | "dependencies": { 199 | "ansi-regex": "^6.0.1" 200 | }, 201 | "engines": { 202 | "node": ">=12" 203 | }, 204 | "funding": { 205 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 206 | } 207 | }, 208 | "node_modules/@istanbuljs/schema": { 209 | "version": "0.1.3", 210 | "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", 211 | "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", 212 | "dev": true, 213 | "engines": { 214 | "node": ">=8" 215 | } 216 | }, 217 | "node_modules/@jridgewell/resolve-uri": { 218 | "version": "3.1.2", 219 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 220 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 221 | "dev": true, 222 | "engines": { 223 | "node": ">=6.0.0" 224 | } 225 | }, 226 | "node_modules/@jridgewell/sourcemap-codec": { 227 | "version": "1.5.0", 228 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 229 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 230 | "dev": true 231 | }, 232 | "node_modules/@jridgewell/trace-mapping": { 233 | "version": "0.3.25", 234 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 235 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 236 | "dev": true, 237 | "dependencies": { 238 | "@jridgewell/resolve-uri": "^3.1.0", 239 | "@jridgewell/sourcemap-codec": "^1.4.14" 240 | } 241 | }, 242 | "node_modules/@nodelib/fs.scandir": { 243 | "version": "2.1.5", 244 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 245 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 246 | "dev": true, 247 | "dependencies": { 248 | "@nodelib/fs.stat": "2.0.5", 249 | "run-parallel": "^1.1.9" 250 | }, 251 | "engines": { 252 | "node": ">= 8" 253 | } 254 | }, 255 | "node_modules/@nodelib/fs.stat": { 256 | "version": "2.0.5", 257 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 258 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 259 | "dev": true, 260 | "engines": { 261 | "node": ">= 8" 262 | } 263 | }, 264 | "node_modules/@nodelib/fs.walk": { 265 | "version": "1.2.8", 266 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 267 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 268 | "dev": true, 269 | "dependencies": { 270 | "@nodelib/fs.scandir": "2.1.5", 271 | "fastq": "^1.6.0" 272 | }, 273 | "engines": { 274 | "node": ">= 8" 275 | } 276 | }, 277 | "node_modules/@pkgjs/parseargs": { 278 | "version": "0.11.0", 279 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 280 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 281 | "dev": true, 282 | "optional": true, 283 | "engines": { 284 | "node": ">=14" 285 | } 286 | }, 287 | "node_modules/@types/istanbul-lib-coverage": { 288 | "version": "2.0.6", 289 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", 290 | "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", 291 | "dev": true 292 | }, 293 | "node_modules/@types/mocha": { 294 | "version": "10.0.7", 295 | "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-10.0.7.tgz", 296 | "integrity": "sha512-GN8yJ1mNTcFcah/wKEFIJckJx9iJLoMSzWcfRRuxz/Jk+U6KQNnml+etbtxFK8lPjzOw3zp4Ha/kjSst9fsHYw==", 297 | "dev": true 298 | }, 299 | "node_modules/@types/node": { 300 | "version": "20.14.11", 301 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.11.tgz", 302 | "integrity": "sha512-kprQpL8MMeszbz6ojB5/tU8PLN4kesnN8Gjzw349rDlNgsSzg90lAVj3llK99Dh7JON+t9AuscPPFW6mPbTnSA==", 303 | "dev": true, 304 | "dependencies": { 305 | "undici-types": "~5.26.4" 306 | } 307 | }, 308 | "node_modules/@types/vscode": { 309 | "version": "1.91.0", 310 | "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.91.0.tgz", 311 | "integrity": "sha512-PgPr+bUODjG3y+ozWUCyzttqR9EHny9sPAfJagddQjDwdtf66y2sDKJMnFZRuzBA2YtBGASqJGPil8VDUPvO6A==", 312 | "dev": true 313 | }, 314 | "node_modules/@ungap/structured-clone": { 315 | "version": "1.2.0", 316 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 317 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 318 | "dev": true 319 | }, 320 | "node_modules/@vscode/test-cli": { 321 | "version": "0.0.9", 322 | "resolved": "https://registry.npmjs.org/@vscode/test-cli/-/test-cli-0.0.9.tgz", 323 | "integrity": "sha512-vsl5/ueE3Jf0f6XzB0ECHHMsd5A0Yu6StElb8a+XsubZW7kHNAOw4Y3TSSuDzKEpLnJ92nbMy1Zl+KLGCE6NaA==", 324 | "dev": true, 325 | "dependencies": { 326 | "@types/mocha": "^10.0.2", 327 | "c8": "^9.1.0", 328 | "chokidar": "^3.5.3", 329 | "enhanced-resolve": "^5.15.0", 330 | "glob": "^10.3.10", 331 | "minimatch": "^9.0.3", 332 | "mocha": "^10.2.0", 333 | "supports-color": "^9.4.0", 334 | "yargs": "^17.7.2" 335 | }, 336 | "bin": { 337 | "vscode-test": "out/bin.mjs" 338 | }, 339 | "engines": { 340 | "node": ">=18" 341 | } 342 | }, 343 | "node_modules/@vscode/test-electron": { 344 | "version": "2.4.1", 345 | "resolved": "https://registry.npmjs.org/@vscode/test-electron/-/test-electron-2.4.1.tgz", 346 | "integrity": "sha512-Gc6EdaLANdktQ1t+zozoBVRynfIsMKMc94Svu1QreOBC8y76x4tvaK32TljrLi1LI2+PK58sDVbL7ALdqf3VRQ==", 347 | "dev": true, 348 | "dependencies": { 349 | "http-proxy-agent": "^7.0.2", 350 | "https-proxy-agent": "^7.0.5", 351 | "jszip": "^3.10.1", 352 | "ora": "^7.0.1", 353 | "semver": "^7.6.2" 354 | }, 355 | "engines": { 356 | "node": ">=16" 357 | } 358 | }, 359 | "node_modules/acorn": { 360 | "version": "8.12.1", 361 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", 362 | "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", 363 | "dev": true, 364 | "bin": { 365 | "acorn": "bin/acorn" 366 | }, 367 | "engines": { 368 | "node": ">=0.4.0" 369 | } 370 | }, 371 | "node_modules/acorn-jsx": { 372 | "version": "5.3.2", 373 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 374 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 375 | "dev": true, 376 | "peerDependencies": { 377 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 378 | } 379 | }, 380 | "node_modules/agent-base": { 381 | "version": "7.1.1", 382 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", 383 | "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", 384 | "dev": true, 385 | "dependencies": { 386 | "debug": "^4.3.4" 387 | }, 388 | "engines": { 389 | "node": ">= 14" 390 | } 391 | }, 392 | "node_modules/ajv": { 393 | "version": "6.12.6", 394 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 395 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 396 | "dev": true, 397 | "dependencies": { 398 | "fast-deep-equal": "^3.1.1", 399 | "fast-json-stable-stringify": "^2.0.0", 400 | "json-schema-traverse": "^0.4.1", 401 | "uri-js": "^4.2.2" 402 | }, 403 | "funding": { 404 | "type": "github", 405 | "url": "https://github.com/sponsors/epoberezkin" 406 | } 407 | }, 408 | "node_modules/ansi-colors": { 409 | "version": "4.1.3", 410 | "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", 411 | "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", 412 | "dev": true, 413 | "engines": { 414 | "node": ">=6" 415 | } 416 | }, 417 | "node_modules/ansi-regex": { 418 | "version": "5.0.1", 419 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 420 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 421 | "dev": true, 422 | "engines": { 423 | "node": ">=8" 424 | } 425 | }, 426 | "node_modules/ansi-styles": { 427 | "version": "4.3.0", 428 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 429 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 430 | "dev": true, 431 | "dependencies": { 432 | "color-convert": "^2.0.1" 433 | }, 434 | "engines": { 435 | "node": ">=8" 436 | }, 437 | "funding": { 438 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 439 | } 440 | }, 441 | "node_modules/anymatch": { 442 | "version": "3.1.3", 443 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 444 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 445 | "dev": true, 446 | "dependencies": { 447 | "normalize-path": "^3.0.0", 448 | "picomatch": "^2.0.4" 449 | }, 450 | "engines": { 451 | "node": ">= 8" 452 | } 453 | }, 454 | "node_modules/argparse": { 455 | "version": "2.0.1", 456 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 457 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 458 | "dev": true 459 | }, 460 | "node_modules/balanced-match": { 461 | "version": "1.0.2", 462 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 463 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 464 | "dev": true 465 | }, 466 | "node_modules/base64-js": { 467 | "version": "1.5.1", 468 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 469 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 470 | "dev": true, 471 | "funding": [ 472 | { 473 | "type": "github", 474 | "url": "https://github.com/sponsors/feross" 475 | }, 476 | { 477 | "type": "patreon", 478 | "url": "https://www.patreon.com/feross" 479 | }, 480 | { 481 | "type": "consulting", 482 | "url": "https://feross.org/support" 483 | } 484 | ] 485 | }, 486 | "node_modules/binary-extensions": { 487 | "version": "2.3.0", 488 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 489 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 490 | "dev": true, 491 | "engines": { 492 | "node": ">=8" 493 | }, 494 | "funding": { 495 | "url": "https://github.com/sponsors/sindresorhus" 496 | } 497 | }, 498 | "node_modules/bl": { 499 | "version": "5.1.0", 500 | "resolved": "https://registry.npmjs.org/bl/-/bl-5.1.0.tgz", 501 | "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", 502 | "dev": true, 503 | "dependencies": { 504 | "buffer": "^6.0.3", 505 | "inherits": "^2.0.4", 506 | "readable-stream": "^3.4.0" 507 | } 508 | }, 509 | "node_modules/bl/node_modules/readable-stream": { 510 | "version": "3.6.2", 511 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", 512 | "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", 513 | "dev": true, 514 | "dependencies": { 515 | "inherits": "^2.0.3", 516 | "string_decoder": "^1.1.1", 517 | "util-deprecate": "^1.0.1" 518 | }, 519 | "engines": { 520 | "node": ">= 6" 521 | } 522 | }, 523 | "node_modules/brace-expansion": { 524 | "version": "2.0.1", 525 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 526 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 527 | "dev": true, 528 | "dependencies": { 529 | "balanced-match": "^1.0.0" 530 | } 531 | }, 532 | "node_modules/braces": { 533 | "version": "3.0.3", 534 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 535 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 536 | "dev": true, 537 | "dependencies": { 538 | "fill-range": "^7.1.1" 539 | }, 540 | "engines": { 541 | "node": ">=8" 542 | } 543 | }, 544 | "node_modules/browser-stdout": { 545 | "version": "1.3.1", 546 | "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", 547 | "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", 548 | "dev": true 549 | }, 550 | "node_modules/buffer": { 551 | "version": "6.0.3", 552 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", 553 | "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", 554 | "dev": true, 555 | "funding": [ 556 | { 557 | "type": "github", 558 | "url": "https://github.com/sponsors/feross" 559 | }, 560 | { 561 | "type": "patreon", 562 | "url": "https://www.patreon.com/feross" 563 | }, 564 | { 565 | "type": "consulting", 566 | "url": "https://feross.org/support" 567 | } 568 | ], 569 | "dependencies": { 570 | "base64-js": "^1.3.1", 571 | "ieee754": "^1.2.1" 572 | } 573 | }, 574 | "node_modules/c8": { 575 | "version": "9.1.0", 576 | "resolved": "https://registry.npmjs.org/c8/-/c8-9.1.0.tgz", 577 | "integrity": "sha512-mBWcT5iqNir1zIkzSPyI3NCR9EZCVI3WUD+AVO17MVWTSFNyUueXE82qTeampNtTr+ilN/5Ua3j24LgbCKjDVg==", 578 | "dev": true, 579 | "dependencies": { 580 | "@bcoe/v8-coverage": "^0.2.3", 581 | "@istanbuljs/schema": "^0.1.3", 582 | "find-up": "^5.0.0", 583 | "foreground-child": "^3.1.1", 584 | "istanbul-lib-coverage": "^3.2.0", 585 | "istanbul-lib-report": "^3.0.1", 586 | "istanbul-reports": "^3.1.6", 587 | "test-exclude": "^6.0.0", 588 | "v8-to-istanbul": "^9.0.0", 589 | "yargs": "^17.7.2", 590 | "yargs-parser": "^21.1.1" 591 | }, 592 | "bin": { 593 | "c8": "bin/c8.js" 594 | }, 595 | "engines": { 596 | "node": ">=14.14.0" 597 | } 598 | }, 599 | "node_modules/callsites": { 600 | "version": "3.1.0", 601 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 602 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 603 | "dev": true, 604 | "engines": { 605 | "node": ">=6" 606 | } 607 | }, 608 | "node_modules/camelcase": { 609 | "version": "6.3.0", 610 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", 611 | "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", 612 | "dev": true, 613 | "engines": { 614 | "node": ">=10" 615 | }, 616 | "funding": { 617 | "url": "https://github.com/sponsors/sindresorhus" 618 | } 619 | }, 620 | "node_modules/chalk": { 621 | "version": "4.1.2", 622 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 623 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 624 | "dev": true, 625 | "dependencies": { 626 | "ansi-styles": "^4.1.0", 627 | "supports-color": "^7.1.0" 628 | }, 629 | "engines": { 630 | "node": ">=10" 631 | }, 632 | "funding": { 633 | "url": "https://github.com/chalk/chalk?sponsor=1" 634 | } 635 | }, 636 | "node_modules/chalk/node_modules/supports-color": { 637 | "version": "7.2.0", 638 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 639 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 640 | "dev": true, 641 | "dependencies": { 642 | "has-flag": "^4.0.0" 643 | }, 644 | "engines": { 645 | "node": ">=8" 646 | } 647 | }, 648 | "node_modules/chokidar": { 649 | "version": "3.6.0", 650 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 651 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 652 | "dev": true, 653 | "dependencies": { 654 | "anymatch": "~3.1.2", 655 | "braces": "~3.0.2", 656 | "glob-parent": "~5.1.2", 657 | "is-binary-path": "~2.1.0", 658 | "is-glob": "~4.0.1", 659 | "normalize-path": "~3.0.0", 660 | "readdirp": "~3.6.0" 661 | }, 662 | "engines": { 663 | "node": ">= 8.10.0" 664 | }, 665 | "funding": { 666 | "url": "https://paulmillr.com/funding/" 667 | }, 668 | "optionalDependencies": { 669 | "fsevents": "~2.3.2" 670 | } 671 | }, 672 | "node_modules/cli-cursor": { 673 | "version": "4.0.0", 674 | "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", 675 | "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", 676 | "dev": true, 677 | "dependencies": { 678 | "restore-cursor": "^4.0.0" 679 | }, 680 | "engines": { 681 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 682 | }, 683 | "funding": { 684 | "url": "https://github.com/sponsors/sindresorhus" 685 | } 686 | }, 687 | "node_modules/cli-spinners": { 688 | "version": "2.9.2", 689 | "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", 690 | "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", 691 | "dev": true, 692 | "engines": { 693 | "node": ">=6" 694 | }, 695 | "funding": { 696 | "url": "https://github.com/sponsors/sindresorhus" 697 | } 698 | }, 699 | "node_modules/cliui": { 700 | "version": "8.0.1", 701 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 702 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 703 | "dev": true, 704 | "dependencies": { 705 | "string-width": "^4.2.0", 706 | "strip-ansi": "^6.0.1", 707 | "wrap-ansi": "^7.0.0" 708 | }, 709 | "engines": { 710 | "node": ">=12" 711 | } 712 | }, 713 | "node_modules/cliui/node_modules/emoji-regex": { 714 | "version": "8.0.0", 715 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 716 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 717 | "dev": true 718 | }, 719 | "node_modules/cliui/node_modules/string-width": { 720 | "version": "4.2.3", 721 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 722 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 723 | "dev": true, 724 | "dependencies": { 725 | "emoji-regex": "^8.0.0", 726 | "is-fullwidth-code-point": "^3.0.0", 727 | "strip-ansi": "^6.0.1" 728 | }, 729 | "engines": { 730 | "node": ">=8" 731 | } 732 | }, 733 | "node_modules/cliui/node_modules/wrap-ansi": { 734 | "version": "7.0.0", 735 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 736 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 737 | "dev": true, 738 | "dependencies": { 739 | "ansi-styles": "^4.0.0", 740 | "string-width": "^4.1.0", 741 | "strip-ansi": "^6.0.0" 742 | }, 743 | "engines": { 744 | "node": ">=10" 745 | }, 746 | "funding": { 747 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 748 | } 749 | }, 750 | "node_modules/color-convert": { 751 | "version": "2.0.1", 752 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 753 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 754 | "dev": true, 755 | "dependencies": { 756 | "color-name": "~1.1.4" 757 | }, 758 | "engines": { 759 | "node": ">=7.0.0" 760 | } 761 | }, 762 | "node_modules/color-name": { 763 | "version": "1.1.4", 764 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 765 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 766 | "dev": true 767 | }, 768 | "node_modules/concat-map": { 769 | "version": "0.0.1", 770 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 771 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 772 | "dev": true 773 | }, 774 | "node_modules/convert-source-map": { 775 | "version": "2.0.0", 776 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 777 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 778 | "dev": true 779 | }, 780 | "node_modules/core-util-is": { 781 | "version": "1.0.3", 782 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", 783 | "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", 784 | "dev": true 785 | }, 786 | "node_modules/cross-spawn": { 787 | "version": "7.0.3", 788 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 789 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 790 | "dev": true, 791 | "dependencies": { 792 | "path-key": "^3.1.0", 793 | "shebang-command": "^2.0.0", 794 | "which": "^2.0.1" 795 | }, 796 | "engines": { 797 | "node": ">= 8" 798 | } 799 | }, 800 | "node_modules/debug": { 801 | "version": "4.3.5", 802 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", 803 | "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", 804 | "dev": true, 805 | "dependencies": { 806 | "ms": "2.1.2" 807 | }, 808 | "engines": { 809 | "node": ">=6.0" 810 | }, 811 | "peerDependenciesMeta": { 812 | "supports-color": { 813 | "optional": true 814 | } 815 | } 816 | }, 817 | "node_modules/decamelize": { 818 | "version": "4.0.0", 819 | "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", 820 | "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", 821 | "dev": true, 822 | "engines": { 823 | "node": ">=10" 824 | }, 825 | "funding": { 826 | "url": "https://github.com/sponsors/sindresorhus" 827 | } 828 | }, 829 | "node_modules/deep-is": { 830 | "version": "0.1.4", 831 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 832 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 833 | "dev": true 834 | }, 835 | "node_modules/diff": { 836 | "version": "5.2.0", 837 | "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", 838 | "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", 839 | "dev": true, 840 | "engines": { 841 | "node": ">=0.3.1" 842 | } 843 | }, 844 | "node_modules/doctrine": { 845 | "version": "3.0.0", 846 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 847 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 848 | "dev": true, 849 | "dependencies": { 850 | "esutils": "^2.0.2" 851 | }, 852 | "engines": { 853 | "node": ">=6.0.0" 854 | } 855 | }, 856 | "node_modules/eastasianwidth": { 857 | "version": "0.2.0", 858 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 859 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 860 | "dev": true 861 | }, 862 | "node_modules/emoji-regex": { 863 | "version": "9.2.2", 864 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 865 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 866 | "dev": true 867 | }, 868 | "node_modules/enhanced-resolve": { 869 | "version": "5.17.0", 870 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz", 871 | "integrity": "sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==", 872 | "dev": true, 873 | "dependencies": { 874 | "graceful-fs": "^4.2.4", 875 | "tapable": "^2.2.0" 876 | }, 877 | "engines": { 878 | "node": ">=10.13.0" 879 | } 880 | }, 881 | "node_modules/escalade": { 882 | "version": "3.1.2", 883 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", 884 | "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", 885 | "dev": true, 886 | "engines": { 887 | "node": ">=6" 888 | } 889 | }, 890 | "node_modules/escape-string-regexp": { 891 | "version": "4.0.0", 892 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 893 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 894 | "dev": true, 895 | "engines": { 896 | "node": ">=10" 897 | }, 898 | "funding": { 899 | "url": "https://github.com/sponsors/sindresorhus" 900 | } 901 | }, 902 | "node_modules/eslint": { 903 | "version": "8.57.0", 904 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", 905 | "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", 906 | "dev": true, 907 | "dependencies": { 908 | "@eslint-community/eslint-utils": "^4.2.0", 909 | "@eslint-community/regexpp": "^4.6.1", 910 | "@eslint/eslintrc": "^2.1.4", 911 | "@eslint/js": "8.57.0", 912 | "@humanwhocodes/config-array": "^0.11.14", 913 | "@humanwhocodes/module-importer": "^1.0.1", 914 | "@nodelib/fs.walk": "^1.2.8", 915 | "@ungap/structured-clone": "^1.2.0", 916 | "ajv": "^6.12.4", 917 | "chalk": "^4.0.0", 918 | "cross-spawn": "^7.0.2", 919 | "debug": "^4.3.2", 920 | "doctrine": "^3.0.0", 921 | "escape-string-regexp": "^4.0.0", 922 | "eslint-scope": "^7.2.2", 923 | "eslint-visitor-keys": "^3.4.3", 924 | "espree": "^9.6.1", 925 | "esquery": "^1.4.2", 926 | "esutils": "^2.0.2", 927 | "fast-deep-equal": "^3.1.3", 928 | "file-entry-cache": "^6.0.1", 929 | "find-up": "^5.0.0", 930 | "glob-parent": "^6.0.2", 931 | "globals": "^13.19.0", 932 | "graphemer": "^1.4.0", 933 | "ignore": "^5.2.0", 934 | "imurmurhash": "^0.1.4", 935 | "is-glob": "^4.0.0", 936 | "is-path-inside": "^3.0.3", 937 | "js-yaml": "^4.1.0", 938 | "json-stable-stringify-without-jsonify": "^1.0.1", 939 | "levn": "^0.4.1", 940 | "lodash.merge": "^4.6.2", 941 | "minimatch": "^3.1.2", 942 | "natural-compare": "^1.4.0", 943 | "optionator": "^0.9.3", 944 | "strip-ansi": "^6.0.1", 945 | "text-table": "^0.2.0" 946 | }, 947 | "bin": { 948 | "eslint": "bin/eslint.js" 949 | }, 950 | "engines": { 951 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 952 | }, 953 | "funding": { 954 | "url": "https://opencollective.com/eslint" 955 | } 956 | }, 957 | "node_modules/eslint-scope": { 958 | "version": "7.2.2", 959 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 960 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 961 | "dev": true, 962 | "dependencies": { 963 | "esrecurse": "^4.3.0", 964 | "estraverse": "^5.2.0" 965 | }, 966 | "engines": { 967 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 968 | }, 969 | "funding": { 970 | "url": "https://opencollective.com/eslint" 971 | } 972 | }, 973 | "node_modules/eslint-visitor-keys": { 974 | "version": "3.4.3", 975 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 976 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 977 | "dev": true, 978 | "engines": { 979 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 980 | }, 981 | "funding": { 982 | "url": "https://opencollective.com/eslint" 983 | } 984 | }, 985 | "node_modules/eslint/node_modules/brace-expansion": { 986 | "version": "1.1.11", 987 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 988 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 989 | "dev": true, 990 | "dependencies": { 991 | "balanced-match": "^1.0.0", 992 | "concat-map": "0.0.1" 993 | } 994 | }, 995 | "node_modules/eslint/node_modules/glob-parent": { 996 | "version": "6.0.2", 997 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 998 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 999 | "dev": true, 1000 | "dependencies": { 1001 | "is-glob": "^4.0.3" 1002 | }, 1003 | "engines": { 1004 | "node": ">=10.13.0" 1005 | } 1006 | }, 1007 | "node_modules/eslint/node_modules/minimatch": { 1008 | "version": "3.1.2", 1009 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1010 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1011 | "dev": true, 1012 | "dependencies": { 1013 | "brace-expansion": "^1.1.7" 1014 | }, 1015 | "engines": { 1016 | "node": "*" 1017 | } 1018 | }, 1019 | "node_modules/espree": { 1020 | "version": "9.6.1", 1021 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1022 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1023 | "dev": true, 1024 | "dependencies": { 1025 | "acorn": "^8.9.0", 1026 | "acorn-jsx": "^5.3.2", 1027 | "eslint-visitor-keys": "^3.4.1" 1028 | }, 1029 | "engines": { 1030 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1031 | }, 1032 | "funding": { 1033 | "url": "https://opencollective.com/eslint" 1034 | } 1035 | }, 1036 | "node_modules/esquery": { 1037 | "version": "1.6.0", 1038 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 1039 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 1040 | "dev": true, 1041 | "dependencies": { 1042 | "estraverse": "^5.1.0" 1043 | }, 1044 | "engines": { 1045 | "node": ">=0.10" 1046 | } 1047 | }, 1048 | "node_modules/esrecurse": { 1049 | "version": "4.3.0", 1050 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1051 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1052 | "dev": true, 1053 | "dependencies": { 1054 | "estraverse": "^5.2.0" 1055 | }, 1056 | "engines": { 1057 | "node": ">=4.0" 1058 | } 1059 | }, 1060 | "node_modules/estraverse": { 1061 | "version": "5.3.0", 1062 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1063 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1064 | "dev": true, 1065 | "engines": { 1066 | "node": ">=4.0" 1067 | } 1068 | }, 1069 | "node_modules/esutils": { 1070 | "version": "2.0.3", 1071 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1072 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1073 | "dev": true, 1074 | "engines": { 1075 | "node": ">=0.10.0" 1076 | } 1077 | }, 1078 | "node_modules/fast-deep-equal": { 1079 | "version": "3.1.3", 1080 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1081 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1082 | "dev": true 1083 | }, 1084 | "node_modules/fast-json-stable-stringify": { 1085 | "version": "2.1.0", 1086 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1087 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1088 | "dev": true 1089 | }, 1090 | "node_modules/fast-levenshtein": { 1091 | "version": "2.0.6", 1092 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1093 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1094 | "dev": true 1095 | }, 1096 | "node_modules/fastq": { 1097 | "version": "1.17.1", 1098 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 1099 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 1100 | "dev": true, 1101 | "dependencies": { 1102 | "reusify": "^1.0.4" 1103 | } 1104 | }, 1105 | "node_modules/file-entry-cache": { 1106 | "version": "6.0.1", 1107 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1108 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1109 | "dev": true, 1110 | "dependencies": { 1111 | "flat-cache": "^3.0.4" 1112 | }, 1113 | "engines": { 1114 | "node": "^10.12.0 || >=12.0.0" 1115 | } 1116 | }, 1117 | "node_modules/fill-range": { 1118 | "version": "7.1.1", 1119 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1120 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1121 | "dev": true, 1122 | "dependencies": { 1123 | "to-regex-range": "^5.0.1" 1124 | }, 1125 | "engines": { 1126 | "node": ">=8" 1127 | } 1128 | }, 1129 | "node_modules/find-up": { 1130 | "version": "5.0.0", 1131 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1132 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1133 | "dev": true, 1134 | "dependencies": { 1135 | "locate-path": "^6.0.0", 1136 | "path-exists": "^4.0.0" 1137 | }, 1138 | "engines": { 1139 | "node": ">=10" 1140 | }, 1141 | "funding": { 1142 | "url": "https://github.com/sponsors/sindresorhus" 1143 | } 1144 | }, 1145 | "node_modules/flat": { 1146 | "version": "5.0.2", 1147 | "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", 1148 | "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", 1149 | "dev": true, 1150 | "bin": { 1151 | "flat": "cli.js" 1152 | } 1153 | }, 1154 | "node_modules/flat-cache": { 1155 | "version": "3.2.0", 1156 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 1157 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 1158 | "dev": true, 1159 | "dependencies": { 1160 | "flatted": "^3.2.9", 1161 | "keyv": "^4.5.3", 1162 | "rimraf": "^3.0.2" 1163 | }, 1164 | "engines": { 1165 | "node": "^10.12.0 || >=12.0.0" 1166 | } 1167 | }, 1168 | "node_modules/flatted": { 1169 | "version": "3.3.1", 1170 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", 1171 | "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", 1172 | "dev": true 1173 | }, 1174 | "node_modules/foreground-child": { 1175 | "version": "3.2.1", 1176 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", 1177 | "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", 1178 | "dev": true, 1179 | "dependencies": { 1180 | "cross-spawn": "^7.0.0", 1181 | "signal-exit": "^4.0.1" 1182 | }, 1183 | "engines": { 1184 | "node": ">=14" 1185 | }, 1186 | "funding": { 1187 | "url": "https://github.com/sponsors/isaacs" 1188 | } 1189 | }, 1190 | "node_modules/fs.realpath": { 1191 | "version": "1.0.0", 1192 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1193 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1194 | "dev": true 1195 | }, 1196 | "node_modules/fsevents": { 1197 | "version": "2.3.3", 1198 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1199 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1200 | "dev": true, 1201 | "hasInstallScript": true, 1202 | "optional": true, 1203 | "os": [ 1204 | "darwin" 1205 | ], 1206 | "engines": { 1207 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1208 | } 1209 | }, 1210 | "node_modules/get-caller-file": { 1211 | "version": "2.0.5", 1212 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1213 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1214 | "dev": true, 1215 | "engines": { 1216 | "node": "6.* || 8.* || >= 10.*" 1217 | } 1218 | }, 1219 | "node_modules/glob": { 1220 | "version": "10.4.5", 1221 | "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", 1222 | "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", 1223 | "dev": true, 1224 | "dependencies": { 1225 | "foreground-child": "^3.1.0", 1226 | "jackspeak": "^3.1.2", 1227 | "minimatch": "^9.0.4", 1228 | "minipass": "^7.1.2", 1229 | "package-json-from-dist": "^1.0.0", 1230 | "path-scurry": "^1.11.1" 1231 | }, 1232 | "bin": { 1233 | "glob": "dist/esm/bin.mjs" 1234 | }, 1235 | "funding": { 1236 | "url": "https://github.com/sponsors/isaacs" 1237 | } 1238 | }, 1239 | "node_modules/glob-parent": { 1240 | "version": "5.1.2", 1241 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1242 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1243 | "dev": true, 1244 | "dependencies": { 1245 | "is-glob": "^4.0.1" 1246 | }, 1247 | "engines": { 1248 | "node": ">= 6" 1249 | } 1250 | }, 1251 | "node_modules/globals": { 1252 | "version": "13.24.0", 1253 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 1254 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 1255 | "dev": true, 1256 | "dependencies": { 1257 | "type-fest": "^0.20.2" 1258 | }, 1259 | "engines": { 1260 | "node": ">=8" 1261 | }, 1262 | "funding": { 1263 | "url": "https://github.com/sponsors/sindresorhus" 1264 | } 1265 | }, 1266 | "node_modules/graceful-fs": { 1267 | "version": "4.2.11", 1268 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1269 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1270 | "dev": true 1271 | }, 1272 | "node_modules/graphemer": { 1273 | "version": "1.4.0", 1274 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1275 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1276 | "dev": true 1277 | }, 1278 | "node_modules/has-flag": { 1279 | "version": "4.0.0", 1280 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1281 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1282 | "dev": true, 1283 | "engines": { 1284 | "node": ">=8" 1285 | } 1286 | }, 1287 | "node_modules/he": { 1288 | "version": "1.2.0", 1289 | "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", 1290 | "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", 1291 | "dev": true, 1292 | "bin": { 1293 | "he": "bin/he" 1294 | } 1295 | }, 1296 | "node_modules/html-escaper": { 1297 | "version": "2.0.2", 1298 | "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", 1299 | "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", 1300 | "dev": true 1301 | }, 1302 | "node_modules/http-proxy-agent": { 1303 | "version": "7.0.2", 1304 | "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", 1305 | "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", 1306 | "dev": true, 1307 | "dependencies": { 1308 | "agent-base": "^7.1.0", 1309 | "debug": "^4.3.4" 1310 | }, 1311 | "engines": { 1312 | "node": ">= 14" 1313 | } 1314 | }, 1315 | "node_modules/https-proxy-agent": { 1316 | "version": "7.0.5", 1317 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", 1318 | "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", 1319 | "dev": true, 1320 | "dependencies": { 1321 | "agent-base": "^7.0.2", 1322 | "debug": "4" 1323 | }, 1324 | "engines": { 1325 | "node": ">= 14" 1326 | } 1327 | }, 1328 | "node_modules/ieee754": { 1329 | "version": "1.2.1", 1330 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 1331 | "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", 1332 | "dev": true, 1333 | "funding": [ 1334 | { 1335 | "type": "github", 1336 | "url": "https://github.com/sponsors/feross" 1337 | }, 1338 | { 1339 | "type": "patreon", 1340 | "url": "https://www.patreon.com/feross" 1341 | }, 1342 | { 1343 | "type": "consulting", 1344 | "url": "https://feross.org/support" 1345 | } 1346 | ] 1347 | }, 1348 | "node_modules/ignore": { 1349 | "version": "5.3.1", 1350 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", 1351 | "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", 1352 | "dev": true, 1353 | "engines": { 1354 | "node": ">= 4" 1355 | } 1356 | }, 1357 | "node_modules/immediate": { 1358 | "version": "3.0.6", 1359 | "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", 1360 | "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", 1361 | "dev": true 1362 | }, 1363 | "node_modules/import-fresh": { 1364 | "version": "3.3.0", 1365 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1366 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1367 | "dev": true, 1368 | "dependencies": { 1369 | "parent-module": "^1.0.0", 1370 | "resolve-from": "^4.0.0" 1371 | }, 1372 | "engines": { 1373 | "node": ">=6" 1374 | }, 1375 | "funding": { 1376 | "url": "https://github.com/sponsors/sindresorhus" 1377 | } 1378 | }, 1379 | "node_modules/imurmurhash": { 1380 | "version": "0.1.4", 1381 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1382 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1383 | "dev": true, 1384 | "engines": { 1385 | "node": ">=0.8.19" 1386 | } 1387 | }, 1388 | "node_modules/inflight": { 1389 | "version": "1.0.6", 1390 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1391 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1392 | "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.", 1393 | "dev": true, 1394 | "dependencies": { 1395 | "once": "^1.3.0", 1396 | "wrappy": "1" 1397 | } 1398 | }, 1399 | "node_modules/inherits": { 1400 | "version": "2.0.4", 1401 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1402 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1403 | "dev": true 1404 | }, 1405 | "node_modules/is-binary-path": { 1406 | "version": "2.1.0", 1407 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 1408 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 1409 | "dev": true, 1410 | "dependencies": { 1411 | "binary-extensions": "^2.0.0" 1412 | }, 1413 | "engines": { 1414 | "node": ">=8" 1415 | } 1416 | }, 1417 | "node_modules/is-extglob": { 1418 | "version": "2.1.1", 1419 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1420 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1421 | "dev": true, 1422 | "engines": { 1423 | "node": ">=0.10.0" 1424 | } 1425 | }, 1426 | "node_modules/is-fullwidth-code-point": { 1427 | "version": "3.0.0", 1428 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1429 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1430 | "dev": true, 1431 | "engines": { 1432 | "node": ">=8" 1433 | } 1434 | }, 1435 | "node_modules/is-glob": { 1436 | "version": "4.0.3", 1437 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1438 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1439 | "dev": true, 1440 | "dependencies": { 1441 | "is-extglob": "^2.1.1" 1442 | }, 1443 | "engines": { 1444 | "node": ">=0.10.0" 1445 | } 1446 | }, 1447 | "node_modules/is-interactive": { 1448 | "version": "2.0.0", 1449 | "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", 1450 | "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", 1451 | "dev": true, 1452 | "engines": { 1453 | "node": ">=12" 1454 | }, 1455 | "funding": { 1456 | "url": "https://github.com/sponsors/sindresorhus" 1457 | } 1458 | }, 1459 | "node_modules/is-number": { 1460 | "version": "7.0.0", 1461 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1462 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1463 | "dev": true, 1464 | "engines": { 1465 | "node": ">=0.12.0" 1466 | } 1467 | }, 1468 | "node_modules/is-path-inside": { 1469 | "version": "3.0.3", 1470 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 1471 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 1472 | "dev": true, 1473 | "engines": { 1474 | "node": ">=8" 1475 | } 1476 | }, 1477 | "node_modules/is-plain-obj": { 1478 | "version": "2.1.0", 1479 | "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", 1480 | "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", 1481 | "dev": true, 1482 | "engines": { 1483 | "node": ">=8" 1484 | } 1485 | }, 1486 | "node_modules/is-unicode-supported": { 1487 | "version": "0.1.0", 1488 | "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", 1489 | "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", 1490 | "dev": true, 1491 | "engines": { 1492 | "node": ">=10" 1493 | }, 1494 | "funding": { 1495 | "url": "https://github.com/sponsors/sindresorhus" 1496 | } 1497 | }, 1498 | "node_modules/isarray": { 1499 | "version": "1.0.0", 1500 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 1501 | "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", 1502 | "dev": true 1503 | }, 1504 | "node_modules/isexe": { 1505 | "version": "2.0.0", 1506 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1507 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1508 | "dev": true 1509 | }, 1510 | "node_modules/istanbul-lib-coverage": { 1511 | "version": "3.2.2", 1512 | "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", 1513 | "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", 1514 | "dev": true, 1515 | "engines": { 1516 | "node": ">=8" 1517 | } 1518 | }, 1519 | "node_modules/istanbul-lib-report": { 1520 | "version": "3.0.1", 1521 | "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", 1522 | "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", 1523 | "dev": true, 1524 | "dependencies": { 1525 | "istanbul-lib-coverage": "^3.0.0", 1526 | "make-dir": "^4.0.0", 1527 | "supports-color": "^7.1.0" 1528 | }, 1529 | "engines": { 1530 | "node": ">=10" 1531 | } 1532 | }, 1533 | "node_modules/istanbul-lib-report/node_modules/supports-color": { 1534 | "version": "7.2.0", 1535 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1536 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1537 | "dev": true, 1538 | "dependencies": { 1539 | "has-flag": "^4.0.0" 1540 | }, 1541 | "engines": { 1542 | "node": ">=8" 1543 | } 1544 | }, 1545 | "node_modules/istanbul-reports": { 1546 | "version": "3.1.7", 1547 | "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", 1548 | "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", 1549 | "dev": true, 1550 | "dependencies": { 1551 | "html-escaper": "^2.0.0", 1552 | "istanbul-lib-report": "^3.0.0" 1553 | }, 1554 | "engines": { 1555 | "node": ">=8" 1556 | } 1557 | }, 1558 | "node_modules/jackspeak": { 1559 | "version": "3.4.3", 1560 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", 1561 | "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", 1562 | "dev": true, 1563 | "dependencies": { 1564 | "@isaacs/cliui": "^8.0.2" 1565 | }, 1566 | "funding": { 1567 | "url": "https://github.com/sponsors/isaacs" 1568 | }, 1569 | "optionalDependencies": { 1570 | "@pkgjs/parseargs": "^0.11.0" 1571 | } 1572 | }, 1573 | "node_modules/js-yaml": { 1574 | "version": "4.1.0", 1575 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1576 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1577 | "dev": true, 1578 | "dependencies": { 1579 | "argparse": "^2.0.1" 1580 | }, 1581 | "bin": { 1582 | "js-yaml": "bin/js-yaml.js" 1583 | } 1584 | }, 1585 | "node_modules/json-buffer": { 1586 | "version": "3.0.1", 1587 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 1588 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 1589 | "dev": true 1590 | }, 1591 | "node_modules/json-schema-traverse": { 1592 | "version": "0.4.1", 1593 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1594 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1595 | "dev": true 1596 | }, 1597 | "node_modules/json-stable-stringify-without-jsonify": { 1598 | "version": "1.0.1", 1599 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1600 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 1601 | "dev": true 1602 | }, 1603 | "node_modules/jszip": { 1604 | "version": "3.10.1", 1605 | "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", 1606 | "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", 1607 | "dev": true, 1608 | "dependencies": { 1609 | "lie": "~3.3.0", 1610 | "pako": "~1.0.2", 1611 | "readable-stream": "~2.3.6", 1612 | "setimmediate": "^1.0.5" 1613 | } 1614 | }, 1615 | "node_modules/keyv": { 1616 | "version": "4.5.4", 1617 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 1618 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 1619 | "dev": true, 1620 | "dependencies": { 1621 | "json-buffer": "3.0.1" 1622 | } 1623 | }, 1624 | "node_modules/levn": { 1625 | "version": "0.4.1", 1626 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 1627 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 1628 | "dev": true, 1629 | "dependencies": { 1630 | "prelude-ls": "^1.2.1", 1631 | "type-check": "~0.4.0" 1632 | }, 1633 | "engines": { 1634 | "node": ">= 0.8.0" 1635 | } 1636 | }, 1637 | "node_modules/lie": { 1638 | "version": "3.3.0", 1639 | "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", 1640 | "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", 1641 | "dev": true, 1642 | "dependencies": { 1643 | "immediate": "~3.0.5" 1644 | } 1645 | }, 1646 | "node_modules/locate-path": { 1647 | "version": "6.0.0", 1648 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1649 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1650 | "dev": true, 1651 | "dependencies": { 1652 | "p-locate": "^5.0.0" 1653 | }, 1654 | "engines": { 1655 | "node": ">=10" 1656 | }, 1657 | "funding": { 1658 | "url": "https://github.com/sponsors/sindresorhus" 1659 | } 1660 | }, 1661 | "node_modules/lodash.merge": { 1662 | "version": "4.6.2", 1663 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 1664 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 1665 | "dev": true 1666 | }, 1667 | "node_modules/log-symbols": { 1668 | "version": "4.1.0", 1669 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", 1670 | "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", 1671 | "dev": true, 1672 | "dependencies": { 1673 | "chalk": "^4.1.0", 1674 | "is-unicode-supported": "^0.1.0" 1675 | }, 1676 | "engines": { 1677 | "node": ">=10" 1678 | }, 1679 | "funding": { 1680 | "url": "https://github.com/sponsors/sindresorhus" 1681 | } 1682 | }, 1683 | "node_modules/lru-cache": { 1684 | "version": "10.4.3", 1685 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 1686 | "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", 1687 | "dev": true 1688 | }, 1689 | "node_modules/make-dir": { 1690 | "version": "4.0.0", 1691 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", 1692 | "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", 1693 | "dev": true, 1694 | "dependencies": { 1695 | "semver": "^7.5.3" 1696 | }, 1697 | "engines": { 1698 | "node": ">=10" 1699 | }, 1700 | "funding": { 1701 | "url": "https://github.com/sponsors/sindresorhus" 1702 | } 1703 | }, 1704 | "node_modules/mimic-fn": { 1705 | "version": "2.1.0", 1706 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 1707 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 1708 | "dev": true, 1709 | "engines": { 1710 | "node": ">=6" 1711 | } 1712 | }, 1713 | "node_modules/minimatch": { 1714 | "version": "9.0.5", 1715 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 1716 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 1717 | "dev": true, 1718 | "dependencies": { 1719 | "brace-expansion": "^2.0.1" 1720 | }, 1721 | "engines": { 1722 | "node": ">=16 || 14 >=14.17" 1723 | }, 1724 | "funding": { 1725 | "url": "https://github.com/sponsors/isaacs" 1726 | } 1727 | }, 1728 | "node_modules/minipass": { 1729 | "version": "7.1.2", 1730 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 1731 | "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 1732 | "dev": true, 1733 | "engines": { 1734 | "node": ">=16 || 14 >=14.17" 1735 | } 1736 | }, 1737 | "node_modules/mocha": { 1738 | "version": "10.6.0", 1739 | "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.6.0.tgz", 1740 | "integrity": "sha512-hxjt4+EEB0SA0ZDygSS015t65lJw/I2yRCS3Ae+SJ5FrbzrXgfYwJr96f0OvIXdj7h4lv/vLCrH3rkiuizFSvw==", 1741 | "dev": true, 1742 | "dependencies": { 1743 | "ansi-colors": "^4.1.3", 1744 | "browser-stdout": "^1.3.1", 1745 | "chokidar": "^3.5.3", 1746 | "debug": "^4.3.5", 1747 | "diff": "^5.2.0", 1748 | "escape-string-regexp": "^4.0.0", 1749 | "find-up": "^5.0.0", 1750 | "glob": "^8.1.0", 1751 | "he": "^1.2.0", 1752 | "js-yaml": "^4.1.0", 1753 | "log-symbols": "^4.1.0", 1754 | "minimatch": "^5.1.6", 1755 | "ms": "^2.1.3", 1756 | "serialize-javascript": "^6.0.2", 1757 | "strip-json-comments": "^3.1.1", 1758 | "supports-color": "^8.1.1", 1759 | "workerpool": "^6.5.1", 1760 | "yargs": "^16.2.0", 1761 | "yargs-parser": "^20.2.9", 1762 | "yargs-unparser": "^2.0.0" 1763 | }, 1764 | "bin": { 1765 | "_mocha": "bin/_mocha", 1766 | "mocha": "bin/mocha.js" 1767 | }, 1768 | "engines": { 1769 | "node": ">= 14.0.0" 1770 | } 1771 | }, 1772 | "node_modules/mocha/node_modules/cliui": { 1773 | "version": "7.0.4", 1774 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", 1775 | "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", 1776 | "dev": true, 1777 | "dependencies": { 1778 | "string-width": "^4.2.0", 1779 | "strip-ansi": "^6.0.0", 1780 | "wrap-ansi": "^7.0.0" 1781 | } 1782 | }, 1783 | "node_modules/mocha/node_modules/emoji-regex": { 1784 | "version": "8.0.0", 1785 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1786 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1787 | "dev": true 1788 | }, 1789 | "node_modules/mocha/node_modules/glob": { 1790 | "version": "8.1.0", 1791 | "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", 1792 | "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", 1793 | "deprecated": "Glob versions prior to v9 are no longer supported", 1794 | "dev": true, 1795 | "dependencies": { 1796 | "fs.realpath": "^1.0.0", 1797 | "inflight": "^1.0.4", 1798 | "inherits": "2", 1799 | "minimatch": "^5.0.1", 1800 | "once": "^1.3.0" 1801 | }, 1802 | "engines": { 1803 | "node": ">=12" 1804 | }, 1805 | "funding": { 1806 | "url": "https://github.com/sponsors/isaacs" 1807 | } 1808 | }, 1809 | "node_modules/mocha/node_modules/minimatch": { 1810 | "version": "5.1.6", 1811 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", 1812 | "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", 1813 | "dev": true, 1814 | "dependencies": { 1815 | "brace-expansion": "^2.0.1" 1816 | }, 1817 | "engines": { 1818 | "node": ">=10" 1819 | } 1820 | }, 1821 | "node_modules/mocha/node_modules/ms": { 1822 | "version": "2.1.3", 1823 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1824 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 1825 | "dev": true 1826 | }, 1827 | "node_modules/mocha/node_modules/string-width": { 1828 | "version": "4.2.3", 1829 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 1830 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 1831 | "dev": true, 1832 | "dependencies": { 1833 | "emoji-regex": "^8.0.0", 1834 | "is-fullwidth-code-point": "^3.0.0", 1835 | "strip-ansi": "^6.0.1" 1836 | }, 1837 | "engines": { 1838 | "node": ">=8" 1839 | } 1840 | }, 1841 | "node_modules/mocha/node_modules/supports-color": { 1842 | "version": "8.1.1", 1843 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 1844 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 1845 | "dev": true, 1846 | "dependencies": { 1847 | "has-flag": "^4.0.0" 1848 | }, 1849 | "engines": { 1850 | "node": ">=10" 1851 | }, 1852 | "funding": { 1853 | "url": "https://github.com/chalk/supports-color?sponsor=1" 1854 | } 1855 | }, 1856 | "node_modules/mocha/node_modules/wrap-ansi": { 1857 | "version": "7.0.0", 1858 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 1859 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 1860 | "dev": true, 1861 | "dependencies": { 1862 | "ansi-styles": "^4.0.0", 1863 | "string-width": "^4.1.0", 1864 | "strip-ansi": "^6.0.0" 1865 | }, 1866 | "engines": { 1867 | "node": ">=10" 1868 | }, 1869 | "funding": { 1870 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 1871 | } 1872 | }, 1873 | "node_modules/mocha/node_modules/yargs": { 1874 | "version": "16.2.0", 1875 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", 1876 | "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", 1877 | "dev": true, 1878 | "dependencies": { 1879 | "cliui": "^7.0.2", 1880 | "escalade": "^3.1.1", 1881 | "get-caller-file": "^2.0.5", 1882 | "require-directory": "^2.1.1", 1883 | "string-width": "^4.2.0", 1884 | "y18n": "^5.0.5", 1885 | "yargs-parser": "^20.2.2" 1886 | }, 1887 | "engines": { 1888 | "node": ">=10" 1889 | } 1890 | }, 1891 | "node_modules/mocha/node_modules/yargs-parser": { 1892 | "version": "20.2.9", 1893 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", 1894 | "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", 1895 | "dev": true, 1896 | "engines": { 1897 | "node": ">=10" 1898 | } 1899 | }, 1900 | "node_modules/ms": { 1901 | "version": "2.1.2", 1902 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1903 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1904 | "dev": true 1905 | }, 1906 | "node_modules/natural-compare": { 1907 | "version": "1.4.0", 1908 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 1909 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 1910 | "dev": true 1911 | }, 1912 | "node_modules/normalize-path": { 1913 | "version": "3.0.0", 1914 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 1915 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 1916 | "dev": true, 1917 | "engines": { 1918 | "node": ">=0.10.0" 1919 | } 1920 | }, 1921 | "node_modules/once": { 1922 | "version": "1.4.0", 1923 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1924 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 1925 | "dev": true, 1926 | "dependencies": { 1927 | "wrappy": "1" 1928 | } 1929 | }, 1930 | "node_modules/onetime": { 1931 | "version": "5.1.2", 1932 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 1933 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 1934 | "dev": true, 1935 | "dependencies": { 1936 | "mimic-fn": "^2.1.0" 1937 | }, 1938 | "engines": { 1939 | "node": ">=6" 1940 | }, 1941 | "funding": { 1942 | "url": "https://github.com/sponsors/sindresorhus" 1943 | } 1944 | }, 1945 | "node_modules/optionator": { 1946 | "version": "0.9.4", 1947 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 1948 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 1949 | "dev": true, 1950 | "dependencies": { 1951 | "deep-is": "^0.1.3", 1952 | "fast-levenshtein": "^2.0.6", 1953 | "levn": "^0.4.1", 1954 | "prelude-ls": "^1.2.1", 1955 | "type-check": "^0.4.0", 1956 | "word-wrap": "^1.2.5" 1957 | }, 1958 | "engines": { 1959 | "node": ">= 0.8.0" 1960 | } 1961 | }, 1962 | "node_modules/ora": { 1963 | "version": "7.0.1", 1964 | "resolved": "https://registry.npmjs.org/ora/-/ora-7.0.1.tgz", 1965 | "integrity": "sha512-0TUxTiFJWv+JnjWm4o9yvuskpEJLXTcng8MJuKd+SzAzp2o+OP3HWqNhB4OdJRt1Vsd9/mR0oyaEYlOnL7XIRw==", 1966 | "dev": true, 1967 | "dependencies": { 1968 | "chalk": "^5.3.0", 1969 | "cli-cursor": "^4.0.0", 1970 | "cli-spinners": "^2.9.0", 1971 | "is-interactive": "^2.0.0", 1972 | "is-unicode-supported": "^1.3.0", 1973 | "log-symbols": "^5.1.0", 1974 | "stdin-discarder": "^0.1.0", 1975 | "string-width": "^6.1.0", 1976 | "strip-ansi": "^7.1.0" 1977 | }, 1978 | "engines": { 1979 | "node": ">=16" 1980 | }, 1981 | "funding": { 1982 | "url": "https://github.com/sponsors/sindresorhus" 1983 | } 1984 | }, 1985 | "node_modules/ora/node_modules/ansi-regex": { 1986 | "version": "6.0.1", 1987 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 1988 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 1989 | "dev": true, 1990 | "engines": { 1991 | "node": ">=12" 1992 | }, 1993 | "funding": { 1994 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 1995 | } 1996 | }, 1997 | "node_modules/ora/node_modules/chalk": { 1998 | "version": "5.3.0", 1999 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", 2000 | "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", 2001 | "dev": true, 2002 | "engines": { 2003 | "node": "^12.17.0 || ^14.13 || >=16.0.0" 2004 | }, 2005 | "funding": { 2006 | "url": "https://github.com/chalk/chalk?sponsor=1" 2007 | } 2008 | }, 2009 | "node_modules/ora/node_modules/emoji-regex": { 2010 | "version": "10.3.0", 2011 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz", 2012 | "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==", 2013 | "dev": true 2014 | }, 2015 | "node_modules/ora/node_modules/is-unicode-supported": { 2016 | "version": "1.3.0", 2017 | "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", 2018 | "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", 2019 | "dev": true, 2020 | "engines": { 2021 | "node": ">=12" 2022 | }, 2023 | "funding": { 2024 | "url": "https://github.com/sponsors/sindresorhus" 2025 | } 2026 | }, 2027 | "node_modules/ora/node_modules/log-symbols": { 2028 | "version": "5.1.0", 2029 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-5.1.0.tgz", 2030 | "integrity": "sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==", 2031 | "dev": true, 2032 | "dependencies": { 2033 | "chalk": "^5.0.0", 2034 | "is-unicode-supported": "^1.1.0" 2035 | }, 2036 | "engines": { 2037 | "node": ">=12" 2038 | }, 2039 | "funding": { 2040 | "url": "https://github.com/sponsors/sindresorhus" 2041 | } 2042 | }, 2043 | "node_modules/ora/node_modules/string-width": { 2044 | "version": "6.1.0", 2045 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-6.1.0.tgz", 2046 | "integrity": "sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ==", 2047 | "dev": true, 2048 | "dependencies": { 2049 | "eastasianwidth": "^0.2.0", 2050 | "emoji-regex": "^10.2.1", 2051 | "strip-ansi": "^7.0.1" 2052 | }, 2053 | "engines": { 2054 | "node": ">=16" 2055 | }, 2056 | "funding": { 2057 | "url": "https://github.com/sponsors/sindresorhus" 2058 | } 2059 | }, 2060 | "node_modules/ora/node_modules/strip-ansi": { 2061 | "version": "7.1.0", 2062 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 2063 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 2064 | "dev": true, 2065 | "dependencies": { 2066 | "ansi-regex": "^6.0.1" 2067 | }, 2068 | "engines": { 2069 | "node": ">=12" 2070 | }, 2071 | "funding": { 2072 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 2073 | } 2074 | }, 2075 | "node_modules/p-limit": { 2076 | "version": "3.1.0", 2077 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2078 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2079 | "dev": true, 2080 | "dependencies": { 2081 | "yocto-queue": "^0.1.0" 2082 | }, 2083 | "engines": { 2084 | "node": ">=10" 2085 | }, 2086 | "funding": { 2087 | "url": "https://github.com/sponsors/sindresorhus" 2088 | } 2089 | }, 2090 | "node_modules/p-locate": { 2091 | "version": "5.0.0", 2092 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2093 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2094 | "dev": true, 2095 | "dependencies": { 2096 | "p-limit": "^3.0.2" 2097 | }, 2098 | "engines": { 2099 | "node": ">=10" 2100 | }, 2101 | "funding": { 2102 | "url": "https://github.com/sponsors/sindresorhus" 2103 | } 2104 | }, 2105 | "node_modules/package-json-from-dist": { 2106 | "version": "1.0.0", 2107 | "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", 2108 | "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", 2109 | "dev": true 2110 | }, 2111 | "node_modules/pako": { 2112 | "version": "1.0.11", 2113 | "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", 2114 | "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", 2115 | "dev": true 2116 | }, 2117 | "node_modules/parent-module": { 2118 | "version": "1.0.1", 2119 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2120 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2121 | "dev": true, 2122 | "dependencies": { 2123 | "callsites": "^3.0.0" 2124 | }, 2125 | "engines": { 2126 | "node": ">=6" 2127 | } 2128 | }, 2129 | "node_modules/path-exists": { 2130 | "version": "4.0.0", 2131 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2132 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2133 | "dev": true, 2134 | "engines": { 2135 | "node": ">=8" 2136 | } 2137 | }, 2138 | "node_modules/path-is-absolute": { 2139 | "version": "1.0.1", 2140 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2141 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2142 | "dev": true, 2143 | "engines": { 2144 | "node": ">=0.10.0" 2145 | } 2146 | }, 2147 | "node_modules/path-key": { 2148 | "version": "3.1.1", 2149 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2150 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2151 | "dev": true, 2152 | "engines": { 2153 | "node": ">=8" 2154 | } 2155 | }, 2156 | "node_modules/path-scurry": { 2157 | "version": "1.11.1", 2158 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 2159 | "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 2160 | "dev": true, 2161 | "dependencies": { 2162 | "lru-cache": "^10.2.0", 2163 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 2164 | }, 2165 | "engines": { 2166 | "node": ">=16 || 14 >=14.18" 2167 | }, 2168 | "funding": { 2169 | "url": "https://github.com/sponsors/isaacs" 2170 | } 2171 | }, 2172 | "node_modules/picomatch": { 2173 | "version": "2.3.1", 2174 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2175 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2176 | "dev": true, 2177 | "engines": { 2178 | "node": ">=8.6" 2179 | }, 2180 | "funding": { 2181 | "url": "https://github.com/sponsors/jonschlinkert" 2182 | } 2183 | }, 2184 | "node_modules/prelude-ls": { 2185 | "version": "1.2.1", 2186 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2187 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2188 | "dev": true, 2189 | "engines": { 2190 | "node": ">= 0.8.0" 2191 | } 2192 | }, 2193 | "node_modules/process-nextick-args": { 2194 | "version": "2.0.1", 2195 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", 2196 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", 2197 | "dev": true 2198 | }, 2199 | "node_modules/punycode": { 2200 | "version": "2.3.1", 2201 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 2202 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 2203 | "dev": true, 2204 | "engines": { 2205 | "node": ">=6" 2206 | } 2207 | }, 2208 | "node_modules/queue-microtask": { 2209 | "version": "1.2.3", 2210 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2211 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2212 | "dev": true, 2213 | "funding": [ 2214 | { 2215 | "type": "github", 2216 | "url": "https://github.com/sponsors/feross" 2217 | }, 2218 | { 2219 | "type": "patreon", 2220 | "url": "https://www.patreon.com/feross" 2221 | }, 2222 | { 2223 | "type": "consulting", 2224 | "url": "https://feross.org/support" 2225 | } 2226 | ] 2227 | }, 2228 | "node_modules/randombytes": { 2229 | "version": "2.1.0", 2230 | "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", 2231 | "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", 2232 | "dev": true, 2233 | "dependencies": { 2234 | "safe-buffer": "^5.1.0" 2235 | } 2236 | }, 2237 | "node_modules/readable-stream": { 2238 | "version": "2.3.8", 2239 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", 2240 | "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", 2241 | "dev": true, 2242 | "dependencies": { 2243 | "core-util-is": "~1.0.0", 2244 | "inherits": "~2.0.3", 2245 | "isarray": "~1.0.0", 2246 | "process-nextick-args": "~2.0.0", 2247 | "safe-buffer": "~5.1.1", 2248 | "string_decoder": "~1.1.1", 2249 | "util-deprecate": "~1.0.1" 2250 | } 2251 | }, 2252 | "node_modules/readdirp": { 2253 | "version": "3.6.0", 2254 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 2255 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 2256 | "dev": true, 2257 | "dependencies": { 2258 | "picomatch": "^2.2.1" 2259 | }, 2260 | "engines": { 2261 | "node": ">=8.10.0" 2262 | } 2263 | }, 2264 | "node_modules/require-directory": { 2265 | "version": "2.1.1", 2266 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 2267 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 2268 | "dev": true, 2269 | "engines": { 2270 | "node": ">=0.10.0" 2271 | } 2272 | }, 2273 | "node_modules/resolve-from": { 2274 | "version": "4.0.0", 2275 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2276 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2277 | "dev": true, 2278 | "engines": { 2279 | "node": ">=4" 2280 | } 2281 | }, 2282 | "node_modules/restore-cursor": { 2283 | "version": "4.0.0", 2284 | "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", 2285 | "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", 2286 | "dev": true, 2287 | "dependencies": { 2288 | "onetime": "^5.1.0", 2289 | "signal-exit": "^3.0.2" 2290 | }, 2291 | "engines": { 2292 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2293 | }, 2294 | "funding": { 2295 | "url": "https://github.com/sponsors/sindresorhus" 2296 | } 2297 | }, 2298 | "node_modules/restore-cursor/node_modules/signal-exit": { 2299 | "version": "3.0.7", 2300 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 2301 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 2302 | "dev": true 2303 | }, 2304 | "node_modules/reusify": { 2305 | "version": "1.0.4", 2306 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2307 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2308 | "dev": true, 2309 | "engines": { 2310 | "iojs": ">=1.0.0", 2311 | "node": ">=0.10.0" 2312 | } 2313 | }, 2314 | "node_modules/rimraf": { 2315 | "version": "3.0.2", 2316 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 2317 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 2318 | "deprecated": "Rimraf versions prior to v4 are no longer supported", 2319 | "dev": true, 2320 | "dependencies": { 2321 | "glob": "^7.1.3" 2322 | }, 2323 | "bin": { 2324 | "rimraf": "bin.js" 2325 | }, 2326 | "funding": { 2327 | "url": "https://github.com/sponsors/isaacs" 2328 | } 2329 | }, 2330 | "node_modules/rimraf/node_modules/brace-expansion": { 2331 | "version": "1.1.11", 2332 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2333 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2334 | "dev": true, 2335 | "dependencies": { 2336 | "balanced-match": "^1.0.0", 2337 | "concat-map": "0.0.1" 2338 | } 2339 | }, 2340 | "node_modules/rimraf/node_modules/glob": { 2341 | "version": "7.2.3", 2342 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2343 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2344 | "deprecated": "Glob versions prior to v9 are no longer supported", 2345 | "dev": true, 2346 | "dependencies": { 2347 | "fs.realpath": "^1.0.0", 2348 | "inflight": "^1.0.4", 2349 | "inherits": "2", 2350 | "minimatch": "^3.1.1", 2351 | "once": "^1.3.0", 2352 | "path-is-absolute": "^1.0.0" 2353 | }, 2354 | "engines": { 2355 | "node": "*" 2356 | }, 2357 | "funding": { 2358 | "url": "https://github.com/sponsors/isaacs" 2359 | } 2360 | }, 2361 | "node_modules/rimraf/node_modules/minimatch": { 2362 | "version": "3.1.2", 2363 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2364 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2365 | "dev": true, 2366 | "dependencies": { 2367 | "brace-expansion": "^1.1.7" 2368 | }, 2369 | "engines": { 2370 | "node": "*" 2371 | } 2372 | }, 2373 | "node_modules/run-parallel": { 2374 | "version": "1.2.0", 2375 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2376 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2377 | "dev": true, 2378 | "funding": [ 2379 | { 2380 | "type": "github", 2381 | "url": "https://github.com/sponsors/feross" 2382 | }, 2383 | { 2384 | "type": "patreon", 2385 | "url": "https://www.patreon.com/feross" 2386 | }, 2387 | { 2388 | "type": "consulting", 2389 | "url": "https://feross.org/support" 2390 | } 2391 | ], 2392 | "dependencies": { 2393 | "queue-microtask": "^1.2.2" 2394 | } 2395 | }, 2396 | "node_modules/safe-buffer": { 2397 | "version": "5.1.2", 2398 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 2399 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", 2400 | "dev": true 2401 | }, 2402 | "node_modules/semver": { 2403 | "version": "7.6.2", 2404 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", 2405 | "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", 2406 | "dev": true, 2407 | "bin": { 2408 | "semver": "bin/semver.js" 2409 | }, 2410 | "engines": { 2411 | "node": ">=10" 2412 | } 2413 | }, 2414 | "node_modules/serialize-javascript": { 2415 | "version": "6.0.2", 2416 | "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", 2417 | "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", 2418 | "dev": true, 2419 | "dependencies": { 2420 | "randombytes": "^2.1.0" 2421 | } 2422 | }, 2423 | "node_modules/setimmediate": { 2424 | "version": "1.0.5", 2425 | "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", 2426 | "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", 2427 | "dev": true 2428 | }, 2429 | "node_modules/shebang-command": { 2430 | "version": "2.0.0", 2431 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2432 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2433 | "dev": true, 2434 | "dependencies": { 2435 | "shebang-regex": "^3.0.0" 2436 | }, 2437 | "engines": { 2438 | "node": ">=8" 2439 | } 2440 | }, 2441 | "node_modules/shebang-regex": { 2442 | "version": "3.0.0", 2443 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2444 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2445 | "dev": true, 2446 | "engines": { 2447 | "node": ">=8" 2448 | } 2449 | }, 2450 | "node_modules/signal-exit": { 2451 | "version": "4.1.0", 2452 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 2453 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 2454 | "dev": true, 2455 | "engines": { 2456 | "node": ">=14" 2457 | }, 2458 | "funding": { 2459 | "url": "https://github.com/sponsors/isaacs" 2460 | } 2461 | }, 2462 | "node_modules/stdin-discarder": { 2463 | "version": "0.1.0", 2464 | "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.1.0.tgz", 2465 | "integrity": "sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==", 2466 | "dev": true, 2467 | "dependencies": { 2468 | "bl": "^5.0.0" 2469 | }, 2470 | "engines": { 2471 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2472 | }, 2473 | "funding": { 2474 | "url": "https://github.com/sponsors/sindresorhus" 2475 | } 2476 | }, 2477 | "node_modules/string_decoder": { 2478 | "version": "1.1.1", 2479 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 2480 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 2481 | "dev": true, 2482 | "dependencies": { 2483 | "safe-buffer": "~5.1.0" 2484 | } 2485 | }, 2486 | "node_modules/string-width": { 2487 | "version": "5.1.2", 2488 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 2489 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 2490 | "dev": true, 2491 | "dependencies": { 2492 | "eastasianwidth": "^0.2.0", 2493 | "emoji-regex": "^9.2.2", 2494 | "strip-ansi": "^7.0.1" 2495 | }, 2496 | "engines": { 2497 | "node": ">=12" 2498 | }, 2499 | "funding": { 2500 | "url": "https://github.com/sponsors/sindresorhus" 2501 | } 2502 | }, 2503 | "node_modules/string-width-cjs": { 2504 | "name": "string-width", 2505 | "version": "4.2.3", 2506 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2507 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2508 | "dev": true, 2509 | "dependencies": { 2510 | "emoji-regex": "^8.0.0", 2511 | "is-fullwidth-code-point": "^3.0.0", 2512 | "strip-ansi": "^6.0.1" 2513 | }, 2514 | "engines": { 2515 | "node": ">=8" 2516 | } 2517 | }, 2518 | "node_modules/string-width-cjs/node_modules/emoji-regex": { 2519 | "version": "8.0.0", 2520 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2521 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2522 | "dev": true 2523 | }, 2524 | "node_modules/string-width/node_modules/ansi-regex": { 2525 | "version": "6.0.1", 2526 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 2527 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 2528 | "dev": true, 2529 | "engines": { 2530 | "node": ">=12" 2531 | }, 2532 | "funding": { 2533 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 2534 | } 2535 | }, 2536 | "node_modules/string-width/node_modules/strip-ansi": { 2537 | "version": "7.1.0", 2538 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 2539 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 2540 | "dev": true, 2541 | "dependencies": { 2542 | "ansi-regex": "^6.0.1" 2543 | }, 2544 | "engines": { 2545 | "node": ">=12" 2546 | }, 2547 | "funding": { 2548 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 2549 | } 2550 | }, 2551 | "node_modules/strip-ansi": { 2552 | "version": "6.0.1", 2553 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2554 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2555 | "dev": true, 2556 | "dependencies": { 2557 | "ansi-regex": "^5.0.1" 2558 | }, 2559 | "engines": { 2560 | "node": ">=8" 2561 | } 2562 | }, 2563 | "node_modules/strip-ansi-cjs": { 2564 | "name": "strip-ansi", 2565 | "version": "6.0.1", 2566 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2567 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2568 | "dev": true, 2569 | "dependencies": { 2570 | "ansi-regex": "^5.0.1" 2571 | }, 2572 | "engines": { 2573 | "node": ">=8" 2574 | } 2575 | }, 2576 | "node_modules/strip-json-comments": { 2577 | "version": "3.1.1", 2578 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2579 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2580 | "dev": true, 2581 | "engines": { 2582 | "node": ">=8" 2583 | }, 2584 | "funding": { 2585 | "url": "https://github.com/sponsors/sindresorhus" 2586 | } 2587 | }, 2588 | "node_modules/supports-color": { 2589 | "version": "9.4.0", 2590 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz", 2591 | "integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==", 2592 | "dev": true, 2593 | "engines": { 2594 | "node": ">=12" 2595 | }, 2596 | "funding": { 2597 | "url": "https://github.com/chalk/supports-color?sponsor=1" 2598 | } 2599 | }, 2600 | "node_modules/tapable": { 2601 | "version": "2.2.1", 2602 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 2603 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 2604 | "dev": true, 2605 | "engines": { 2606 | "node": ">=6" 2607 | } 2608 | }, 2609 | "node_modules/test-exclude": { 2610 | "version": "6.0.0", 2611 | "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", 2612 | "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", 2613 | "dev": true, 2614 | "dependencies": { 2615 | "@istanbuljs/schema": "^0.1.2", 2616 | "glob": "^7.1.4", 2617 | "minimatch": "^3.0.4" 2618 | }, 2619 | "engines": { 2620 | "node": ">=8" 2621 | } 2622 | }, 2623 | "node_modules/test-exclude/node_modules/brace-expansion": { 2624 | "version": "1.1.11", 2625 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2626 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2627 | "dev": true, 2628 | "dependencies": { 2629 | "balanced-match": "^1.0.0", 2630 | "concat-map": "0.0.1" 2631 | } 2632 | }, 2633 | "node_modules/test-exclude/node_modules/glob": { 2634 | "version": "7.2.3", 2635 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2636 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2637 | "deprecated": "Glob versions prior to v9 are no longer supported", 2638 | "dev": true, 2639 | "dependencies": { 2640 | "fs.realpath": "^1.0.0", 2641 | "inflight": "^1.0.4", 2642 | "inherits": "2", 2643 | "minimatch": "^3.1.1", 2644 | "once": "^1.3.0", 2645 | "path-is-absolute": "^1.0.0" 2646 | }, 2647 | "engines": { 2648 | "node": "*" 2649 | }, 2650 | "funding": { 2651 | "url": "https://github.com/sponsors/isaacs" 2652 | } 2653 | }, 2654 | "node_modules/test-exclude/node_modules/minimatch": { 2655 | "version": "3.1.2", 2656 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2657 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2658 | "dev": true, 2659 | "dependencies": { 2660 | "brace-expansion": "^1.1.7" 2661 | }, 2662 | "engines": { 2663 | "node": "*" 2664 | } 2665 | }, 2666 | "node_modules/text-table": { 2667 | "version": "0.2.0", 2668 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 2669 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 2670 | "dev": true 2671 | }, 2672 | "node_modules/to-regex-range": { 2673 | "version": "5.0.1", 2674 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2675 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2676 | "dev": true, 2677 | "dependencies": { 2678 | "is-number": "^7.0.0" 2679 | }, 2680 | "engines": { 2681 | "node": ">=8.0" 2682 | } 2683 | }, 2684 | "node_modules/type-check": { 2685 | "version": "0.4.0", 2686 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 2687 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 2688 | "dev": true, 2689 | "dependencies": { 2690 | "prelude-ls": "^1.2.1" 2691 | }, 2692 | "engines": { 2693 | "node": ">= 0.8.0" 2694 | } 2695 | }, 2696 | "node_modules/type-fest": { 2697 | "version": "0.20.2", 2698 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 2699 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 2700 | "dev": true, 2701 | "engines": { 2702 | "node": ">=10" 2703 | }, 2704 | "funding": { 2705 | "url": "https://github.com/sponsors/sindresorhus" 2706 | } 2707 | }, 2708 | "node_modules/typescript": { 2709 | "version": "5.5.3", 2710 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.3.tgz", 2711 | "integrity": "sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==", 2712 | "dev": true, 2713 | "bin": { 2714 | "tsc": "bin/tsc", 2715 | "tsserver": "bin/tsserver" 2716 | }, 2717 | "engines": { 2718 | "node": ">=14.17" 2719 | } 2720 | }, 2721 | "node_modules/undici-types": { 2722 | "version": "5.26.5", 2723 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", 2724 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", 2725 | "dev": true 2726 | }, 2727 | "node_modules/uri-js": { 2728 | "version": "4.4.1", 2729 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 2730 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 2731 | "dev": true, 2732 | "dependencies": { 2733 | "punycode": "^2.1.0" 2734 | } 2735 | }, 2736 | "node_modules/util-deprecate": { 2737 | "version": "1.0.2", 2738 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 2739 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 2740 | "dev": true 2741 | }, 2742 | "node_modules/v8-to-istanbul": { 2743 | "version": "9.3.0", 2744 | "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", 2745 | "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", 2746 | "dev": true, 2747 | "dependencies": { 2748 | "@jridgewell/trace-mapping": "^0.3.12", 2749 | "@types/istanbul-lib-coverage": "^2.0.1", 2750 | "convert-source-map": "^2.0.0" 2751 | }, 2752 | "engines": { 2753 | "node": ">=10.12.0" 2754 | } 2755 | }, 2756 | "node_modules/which": { 2757 | "version": "2.0.2", 2758 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 2759 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 2760 | "dev": true, 2761 | "dependencies": { 2762 | "isexe": "^2.0.0" 2763 | }, 2764 | "bin": { 2765 | "node-which": "bin/node-which" 2766 | }, 2767 | "engines": { 2768 | "node": ">= 8" 2769 | } 2770 | }, 2771 | "node_modules/word-wrap": { 2772 | "version": "1.2.5", 2773 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 2774 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 2775 | "dev": true, 2776 | "engines": { 2777 | "node": ">=0.10.0" 2778 | } 2779 | }, 2780 | "node_modules/workerpool": { 2781 | "version": "6.5.1", 2782 | "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz", 2783 | "integrity": "sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==", 2784 | "dev": true 2785 | }, 2786 | "node_modules/wrap-ansi": { 2787 | "version": "8.1.0", 2788 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 2789 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 2790 | "dev": true, 2791 | "dependencies": { 2792 | "ansi-styles": "^6.1.0", 2793 | "string-width": "^5.0.1", 2794 | "strip-ansi": "^7.0.1" 2795 | }, 2796 | "engines": { 2797 | "node": ">=12" 2798 | }, 2799 | "funding": { 2800 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 2801 | } 2802 | }, 2803 | "node_modules/wrap-ansi-cjs": { 2804 | "name": "wrap-ansi", 2805 | "version": "7.0.0", 2806 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 2807 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 2808 | "dev": true, 2809 | "dependencies": { 2810 | "ansi-styles": "^4.0.0", 2811 | "string-width": "^4.1.0", 2812 | "strip-ansi": "^6.0.0" 2813 | }, 2814 | "engines": { 2815 | "node": ">=10" 2816 | }, 2817 | "funding": { 2818 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 2819 | } 2820 | }, 2821 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 2822 | "version": "8.0.0", 2823 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2824 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2825 | "dev": true 2826 | }, 2827 | "node_modules/wrap-ansi-cjs/node_modules/string-width": { 2828 | "version": "4.2.3", 2829 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2830 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2831 | "dev": true, 2832 | "dependencies": { 2833 | "emoji-regex": "^8.0.0", 2834 | "is-fullwidth-code-point": "^3.0.0", 2835 | "strip-ansi": "^6.0.1" 2836 | }, 2837 | "engines": { 2838 | "node": ">=8" 2839 | } 2840 | }, 2841 | "node_modules/wrap-ansi/node_modules/ansi-regex": { 2842 | "version": "6.0.1", 2843 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 2844 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 2845 | "dev": true, 2846 | "engines": { 2847 | "node": ">=12" 2848 | }, 2849 | "funding": { 2850 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 2851 | } 2852 | }, 2853 | "node_modules/wrap-ansi/node_modules/ansi-styles": { 2854 | "version": "6.2.1", 2855 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 2856 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 2857 | "dev": true, 2858 | "engines": { 2859 | "node": ">=12" 2860 | }, 2861 | "funding": { 2862 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 2863 | } 2864 | }, 2865 | "node_modules/wrap-ansi/node_modules/strip-ansi": { 2866 | "version": "7.1.0", 2867 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 2868 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 2869 | "dev": true, 2870 | "dependencies": { 2871 | "ansi-regex": "^6.0.1" 2872 | }, 2873 | "engines": { 2874 | "node": ">=12" 2875 | }, 2876 | "funding": { 2877 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 2878 | } 2879 | }, 2880 | "node_modules/wrappy": { 2881 | "version": "1.0.2", 2882 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2883 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 2884 | "dev": true 2885 | }, 2886 | "node_modules/y18n": { 2887 | "version": "5.0.8", 2888 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 2889 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 2890 | "dev": true, 2891 | "engines": { 2892 | "node": ">=10" 2893 | } 2894 | }, 2895 | "node_modules/yargs": { 2896 | "version": "17.7.2", 2897 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 2898 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 2899 | "dev": true, 2900 | "dependencies": { 2901 | "cliui": "^8.0.1", 2902 | "escalade": "^3.1.1", 2903 | "get-caller-file": "^2.0.5", 2904 | "require-directory": "^2.1.1", 2905 | "string-width": "^4.2.3", 2906 | "y18n": "^5.0.5", 2907 | "yargs-parser": "^21.1.1" 2908 | }, 2909 | "engines": { 2910 | "node": ">=12" 2911 | } 2912 | }, 2913 | "node_modules/yargs-parser": { 2914 | "version": "21.1.1", 2915 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 2916 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 2917 | "dev": true, 2918 | "engines": { 2919 | "node": ">=12" 2920 | } 2921 | }, 2922 | "node_modules/yargs-unparser": { 2923 | "version": "2.0.0", 2924 | "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", 2925 | "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", 2926 | "dev": true, 2927 | "dependencies": { 2928 | "camelcase": "^6.0.0", 2929 | "decamelize": "^4.0.0", 2930 | "flat": "^5.0.2", 2931 | "is-plain-obj": "^2.1.0" 2932 | }, 2933 | "engines": { 2934 | "node": ">=10" 2935 | } 2936 | }, 2937 | "node_modules/yargs/node_modules/emoji-regex": { 2938 | "version": "8.0.0", 2939 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2940 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2941 | "dev": true 2942 | }, 2943 | "node_modules/yargs/node_modules/string-width": { 2944 | "version": "4.2.3", 2945 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2946 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2947 | "dev": true, 2948 | "dependencies": { 2949 | "emoji-regex": "^8.0.0", 2950 | "is-fullwidth-code-point": "^3.0.0", 2951 | "strip-ansi": "^6.0.1" 2952 | }, 2953 | "engines": { 2954 | "node": ">=8" 2955 | } 2956 | }, 2957 | "node_modules/yocto-queue": { 2958 | "version": "0.1.0", 2959 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 2960 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 2961 | "dev": true, 2962 | "engines": { 2963 | "node": ">=10" 2964 | }, 2965 | "funding": { 2966 | "url": "https://github.com/sponsors/sindresorhus" 2967 | } 2968 | } 2969 | } 2970 | } 2971 | -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "substreams", 3 | "publisher": "streamingfast", 4 | "repository": "https://github.com/streamingfast/substreams-starter", 5 | "displayName": "Substreams", 6 | "description": "Substreams Developer Environment Extension", 7 | "version": "0.0.1", 8 | "engines": { 9 | "vscode": "^1.91.0" 10 | }, 11 | "categories": [ 12 | "Data Science", 13 | "Programming Languages" 14 | ], 15 | "activationEvents": [ 16 | "workspaceContains:substreams.yaml", 17 | "workspaceContains:**/substreams.yaml", 18 | "workspaceContains:substreams.yml", 19 | "workspaceContains:**/substreams.yml", 20 | "workspaceContains:.devcontainer/enable-substreams-extension" 21 | ], 22 | 23 | "main": "./extension.js", 24 | "contributes": { 25 | "commands": [ 26 | { 27 | "category": "Substreams", 28 | "command": "substreams.runInit", 29 | "title": "Initialize a new project" 30 | }, 31 | { 32 | "category": "Substreams", 33 | "command": "substreams.runGui", 34 | "title": "Run Substreams GUI" 35 | }, { 36 | "category": "Substreams", 37 | "command": "substreams.loadFromRegistry", 38 | "title": "Download a module from the Substreams.dev Registry" 39 | }, 40 | { 41 | "category": "Substreams", 42 | "command": "substreams.getSimpleApiKey", 43 | "title": "Obtain a lower-power, short-lived API token" 44 | }, 45 | { 46 | "category": "Substreams", 47 | "command": "substreams.marketAuth", 48 | "title": "Authenticate on The Graph Market" 49 | }, 50 | { 51 | "category": "Substreams", 52 | "command": "substreams.runBuild", 53 | "title": "Build Package" 54 | }, 55 | { 56 | "category": "Substreams", 57 | "command": "substreams.initSubgraph", 58 | "title": "Generate subgraph from Substreams module" 59 | }, 60 | { 61 | "category": "Substreams", 62 | "command": "substreams.initSql", 63 | "title": "Generate Substreams:SQL from module" 64 | } 65 | ], 66 | 67 | "walkthroughs": [ 68 | { 69 | "id": "starter", 70 | "title": "Get Started with Substreams", 71 | "description": "Build, stream and publish your first Substreams", 72 | "steps": [ 73 | { 74 | "id": "build", 75 | "title": "Start building", 76 | "description": "Open a Terminal, and start building with:\n\n* ``substreams init``\n* ``substreams build``\n* ``substreams auth``\n* ``substreams gui``\n\n[Open Terminal](command:workbench.action.terminal.new)", 77 | "media": { 78 | "image": "media/substreams.svg", 79 | "altText": "Start building" 80 | } 81 | } 82 | ] 83 | } 84 | ] 85 | }, 86 | 87 | "scripts": { 88 | "lint": "eslint .", 89 | "pretest": "npm run lint", 90 | "test": "vscode-test" 91 | }, 92 | "devDependencies": { 93 | "@types/vscode": "^1.91.0", 94 | "@types/mocha": "^10.0.7", 95 | "@types/node": "20.x", 96 | "eslint": "^8.57.0", 97 | "typescript": "^5.4.5", 98 | "@vscode/test-cli": "^0.0.9", 99 | "@vscode/test-electron": "^2.4.0" 100 | } 101 | } 102 | -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/substreams-0.0.1.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-starter/79e2fad82bb9e58906d262f069e7b39763d14a52/.vscode/streamingfast.substreams/substreams-0.0.1.vsix -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/test/extension.test.js: -------------------------------------------------------------------------------- 1 | const assert = require('assert'); 2 | 3 | // You can import and use all API from the 'vscode' module 4 | // as well as import your extension to test it 5 | const vscode = require('vscode'); 6 | // const myExtension = require('../extension'); 7 | 8 | suite('Extension Test Suite', () => { 9 | vscode.window.showInformationMessage('Start all tests.'); 10 | 11 | test('Sample test', () => { 12 | assert.strictEqual(-1, [1, 2, 3].indexOf(5)); 13 | assert.strictEqual(-1, [1, 2, 3].indexOf(0)); 14 | }); 15 | }); 16 | -------------------------------------------------------------------------------- /.vscode/streamingfast.substreams/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- 1 | # Welcome to your VS Code Extension 2 | 3 | ## What's in the folder 4 | 5 | * This folder contains all of the files necessary for your extension. 6 | * `package.json` - this is the manifest file in which you declare your extension and command. 7 | * The sample plugin registers a command and defines its title and command name. With this information VS Code can show the command in the command palette. It doesn’t yet need to load the plugin. 8 | * `extension.js` - this is the main file where you will provide the implementation of your command. 9 | * The file exports one function, `activate`, which is called the very first time your extension is activated (in this case by executing the command). Inside the `activate` function we call `registerCommand`. 10 | * We pass the function containing the implementation of the command as the second parameter to `registerCommand`. 11 | 12 | ## Get up and running straight away 13 | 14 | * Press `F5` to open a new window with your extension loaded. 15 | * Run your command from the command palette by pressing (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) and typing `Hello World`. 16 | * Set breakpoints in your code inside `extension.js` to debug your extension. 17 | * Find output from your extension in the debug console. 18 | 19 | ## Make changes 20 | 21 | * You can relaunch the extension from the debug toolbar after changing code in `extension.js`. 22 | * You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes. 23 | 24 | ## Explore the API 25 | 26 | * You can open the full set of our API when you open the file `node_modules/@types/vscode/index.d.ts`. 27 | 28 | ## Run tests 29 | 30 | * Install the [Extension Test Runner](https://marketplace.visualstudio.com/items?itemName=ms-vscode.extension-test-runner) 31 | * Open the Testing view from the activity bar and click the Run Test" button, or use the hotkey `Ctrl/Cmd + ; A` 32 | * See the output of the test result in the Test Results view. 33 | * Make changes to `test/extension.test.js` or create new test files inside the `test` folder. 34 | * The provided test runner will only consider files matching the name pattern `**.test.js`. 35 | * You can create folders inside the `test` folder to structure your tests any way you want. 36 | 37 | ## Go further 38 | 39 | * [Follow UX guidelines](https://code.visualstudio.com/api/ux-guidelines/overview) to create extensions that seamlessly integrate with VS Code's native interface and patterns. 40 | * [Publish your extension](https://code.visualstudio.com/api/working-with-extensions/publishing-extension) on the VS Code extension marketplace. 41 | * Automate builds by setting up [Continuous Integration](https://code.visualstudio.com/api/working-with-extensions/continuous-integration). 42 | -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | // See https://go.microsoft.com/fwlink/?LinkId=733558 3 | // for the documentation about the tasks.json format 4 | "version": "2.0.0", 5 | "tasks": [ 6 | { 7 | "label": "Substreams: build package", 8 | "type": "shell", 9 | "command": "substreams build", 10 | "problemMatcher": [] 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Substreams Starter Dev Kit 2 | 3 | ## Getting Started 4 | 5 |
Try now, click Open: 6 | 7 | Your first 60h/month are free! 8 | 9 | 10 | [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new/streamingfast/substreams-starter?machine=standardLinux32gb) 11 |
12 | 13 | > This will open a fully featured **Devcontainer-based** development environment, using [GitHub Codespaces](https://github.com/features/codespaces). 14 | 15 | Within the IDE, in a Terminal (`F1` -> `Terminal: Create New Terminal`), run: 16 | 17 | ```bash 18 | substreams init 19 | substreams build 20 | substreams auth 21 | substreams gui 22 | substreams registry login 23 | substreams registry publish 24 | ``` 25 | 26 | Run `help` to better navigate the development environment and generate sink projects with: 27 | 28 | ```bash 29 | substreams codegen subgraph 30 | substreams codegen sql 31 | ``` 32 | 33 | Learn more: 34 | - [Tutorials](https://substreams.streamingfast.io/tutorials/) 35 | - [Substreams Documentation](https://substreams.streamingfast.io) 36 | 37 | Discover community Substreams modules: 38 | 39 | - [Substreams Registry](https://substreams.dev/) 40 | 41 | ## Clone in local VSCode 42 | 43 | VSCode has excellent support for such containers. See [their documentation](https://code.visualstudio.com/docs/devcontainers/containers). 44 | 45 | - Install [Docker Desktop](https://www.docker.com/products/docker-desktop/) 46 | - Install [VSCode](https://code.visualstudio.com/download) 47 | - Install the [Devcontainer Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) in VSCode 48 | - Open this repository, and execute "Rebuild & open in container" 49 | 50 | > [!NOTE] 51 | > Devcontainers, the environment proposed here, have **greatly matured** in the past 3 years. They have been [standardized](https://containers.dev/), implemented in [multiple IDEs and tools](https://containers.dev/supporting), and are used at scale in great companies (eg. [Shopify](https://shopify.engineering/shopifys-cloud-development-journey)). 52 | 53 | 54 | ## Local install 55 | 56 | The **Devcontainer is the preferred way** to develop Substreams. Our documentation generally assumes this environment. 57 | 58 | If you prefer, you can install all components locally by following our [installation docs](https://docs.substreams.dev/reference-material/substreams-cli/installing-the-cli). 59 | 60 | 61 | ## Included in the dev environment 62 | 63 | - `substreams` preinstalled 64 | - For _Substreams_ development: **Rust** toolchain, `buf` and protobuf tooling, 65 | - For _subgraph_ development: **node/npm**, along with all subgraph services, running in the devcontainer (`graph-node`, `postgres`, `ipfs`) directly accessible locally or remotely. 66 | - Pre-configured VSCode extensions for everything, plus a custom _VSCode Substreams Extension_. 67 | 68 | 69 | --------------------------------------------------------------------------------