urql-graphql / urql

The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
https://urql.dev/goto/docs
MIT License
8.61k stars 449 forks source link

(execute + vue) - After upgrading, error occurs. #2628

Closed shtse8 closed 2 years ago

shtse8 commented 2 years ago

Describe the bug

Uncaught (in promise) ReferenceError: Cannot access 't' before initialization
    at useQuery.ts:219:9
    at sinks.ts:14:9
    at Object.next (sources.ts:55:21)
    at client.ts:332:14
    at operators.ts:400:9
    at operators.ts:499:5
    at operators.ts:395:5
    at operators.ts:341:5
    at sinks.ts:8:5
    at client.ts:312:9

I tried several hours to figure out the cause. But no luck. I don't have any idea. I tried to make it very simple, error still exists. I tried to remove ssrExchange on client side, it seems working fine on first load. but due to no ssrExchange. All queries are executing again and I am not really sure if it is working fine. and after routing some pages in app, error still occurs.

I am using Nuxt3 + Graphql server + urql,

Here are my configs which morks fine before upgrade. urql.server.ts

install(nuxtApp.vueApp, {
      url: '/api/graphql',
      exchanges: [
        // debugExchange,
        errorExchange({
          onError(e) {
            console.error(e)
          },
        }),
        dedupExchange,
        cacheExchange({}),
        ssr, // Add `ssr` in front of the `fetchExchange`
        executeExchange({
          schema,
          context: () => {
            if (!nuxtApp.ssrContext?.req || !nuxtApp.ssrContext?.res)
              throw new Error('Missing srrContext')
            return context(createEvent(nuxtApp.ssrContext.req, nuxtApp.ssrContext.res))
          },
        }),
      ],
    })

    nuxtApp.hook('app:rendered', (context) => {
      if (!context.ssrContext)
        return

      context.ssrContext.payload.data = nuxtApp.payload.data || {}
      context.ssrContext.payload.data.__URQL_DATA__ = JSON.stringify(ssr.extractData())
    })

urql.client.ts


install(nuxtApp.vueApp, {
      url: '/api/graphql',
      exchanges: [
        // debugExchange,
        errorExchange({
          onError(e) {
            console.error(e)
          },
        }),
        dedupExchange,
        cacheExchange({}),
        ssrExchange({
          isClient: true,
          initialState: JSON.parse(nuxtApp.payload.data?.__URQL_DATA__),
        }),
        fetchExchange,
      ],
    })

Reproduction

will do, please give me some time. I am still no idea about the cause.

Urql version

urql 3.0

Validations

kitten commented 2 years ago

Hiya, thanks for the stack trace, that does look like a problem on our end, so I'll have a look once I'm free later today. Seems that it wasn't too hard for you to run into this issue, so I'll try to get to it asap šŸ˜…

Can you add on the output of yarn list or npm list please? I'm basically just looking for the installed versions of @urql/core and wonka, since there may be an incompatibility when multiple ones of the two are installed that I may have missed.

If that's the case btw, then running yarn-deduplicate or npm dedupe, depending on your package manager, may fix the issue

shtse8 commented 2 years ago

It may be a long list since I am working on a big project. I doubt it's a issue of @urql/vue useQuery.

I tried to run yarn-deduplicate but it's nothing happen and the issue still exists.

PS D:\project> yarn-deduplicate    
PS D:\project> 
this is the output of yarn list > yarn list v1.22.19 ā”œā”€ @ampproject/remapping@2.2.0 ā”‚ ā”œā”€ @jridgewell/gen-mapping@^0.1.0 ā”‚ ā”œā”€ @jridgewell/gen-mapping@0.1.1 ā”‚ ā”‚ ā”œā”€ @jridgewell/set-array@^1.0.0 ā”‚ ā”‚ ā””ā”€ @jridgewell/sourcemap-codec@^1.4.10 ā”‚ ā””ā”€ @jridgewell/trace-mapping@^0.3.9 ā”œā”€ @antfu/eslint-config-basic@0.26.1 ā”‚ ā”œā”€ eslint-plugin-antfu@0.26.1 ā”‚ ā”œā”€ eslint-plugin-eslint-comments@^3.2.0 ā”‚ ā”œā”€ eslint-plugin-html@^7.1.0 ā”‚ ā”œā”€ eslint-plugin-import@^2.26.0 ā”‚ ā”œā”€ eslint-plugin-jsonc@^2.3.1 ā”‚ ā”œā”€ eslint-plugin-markdown@^3.0.0 ā”‚ ā”œā”€ eslint-plugin-n@^15.2.4 ā”‚ ā”œā”€ eslint-plugin-promise@^6.0.0 ā”‚ ā”œā”€ eslint-plugin-unicorn@^43.0.2 ā”‚ ā”œā”€ eslint-plugin-yml@^1.1.0 ā”‚ ā”œā”€ jsonc-eslint-parser@^2.1.0 ā”‚ ā””ā”€ yaml-eslint-parser@^1.1.0 ā”œā”€ @antfu/eslint-config-react@0.26.1 ā”‚ ā”œā”€ @antfu/eslint-config-ts@0.26.1 ā”‚ ā””ā”€ eslint-plugin-react@^7.30.1 ā”œā”€ @antfu/eslint-config-ts@0.26.1 ā”‚ ā”œā”€ @antfu/eslint-config-basic@0.26.1 ā”‚ ā”œā”€ @typescript-eslint/eslint-plugin@^5.32.0 ā”‚ ā””ā”€ @typescript-eslint/parser@^5.32.0 ā”œā”€ @antfu/eslint-config-vue@0.26.1 ā”‚ ā”œā”€ @antfu/eslint-config-ts@0.26.1 ā”‚ ā””ā”€ eslint-plugin-vue@^9.3.0 ā”œā”€ @antfu/eslint-config@0.26.1 ā”‚ ā”œā”€ @antfu/eslint-config-react@0.26.1 ā”‚ ā”œā”€ @antfu/eslint-config-vue@0.26.1 ā”‚ ā”œā”€ @typescript-eslint/eslint-plugin@^5.32.0 ā”‚ ā”œā”€ @typescript-eslint/parser@^5.32.0 ā”‚ ā”œā”€ eslint-plugin-eslint-comments@^3.2.0 ā”‚ ā”œā”€ eslint-plugin-html@^7.1.0 ā”‚ ā”œā”€ eslint-plugin-import@^2.26.0 ā”‚ ā”œā”€ eslint-plugin-jsonc@^2.3.1 ā”‚ ā”œā”€ eslint-plugin-n@^15.2.4 ā”‚ ā”œā”€ eslint-plugin-promise@^6.0.0 ā”‚ ā”œā”€ eslint-plugin-unicorn@^43.0.2 ā”‚ ā”œā”€ eslint-plugin-vue@^9.3.0 ā”‚ ā”œā”€ eslint-plugin-yml@^1.1.0 ā”‚ ā”œā”€ jsonc-eslint-parser@^2.1.0 ā”‚ ā””ā”€ yaml-eslint-parser@^1.1.0 ā”œā”€ @antfu/install-pkg@0.1.0 ā”‚ ā”œā”€ execa@^5.1.1 ā”‚ ā”œā”€ find-up@^5.0.0 ā”‚ ā”œā”€ find-up@5.0.0 ā”‚ ā”‚ ā”œā”€ locate-path@^6.0.0 ā”‚ ā”‚ ā””ā”€ path-exists@^4.0.0 ā”‚ ā”œā”€ locate-path@6.0.0 ā”‚ ā”‚ ā””ā”€ p-locate@^5.0.0 ā”‚ ā””ā”€ p-locate@5.0.0 ā”‚ ā””ā”€ p-limit@^3.0.2 ā”œā”€ @antfu/utils@0.5.2 ā”œā”€ @apollo/protobufjs@1.2.4 ā”‚ ā”œā”€ @protobufjs/aspromise@^1.1.2 ā”‚ ā”œā”€ @protobufjs/base64@^1.1.2 ā”‚ ā”œā”€ @protobufjs/codegen@^2.0.4 ā”‚ ā”œā”€ @protobufjs/eventemitter@^1.1.0 ā”‚ ā”œā”€ @protobufjs/fetch@^1.1.0 ā”‚ ā”œā”€ @protobufjs/float@^1.0.2 ā”‚ ā”œā”€ @protobufjs/inquire@^1.1.0 ā”‚ ā”œā”€ @protobufjs/path@^1.1.2 ā”‚ ā”œā”€ @protobufjs/pool@^1.1.0 ā”‚ ā”œā”€ @protobufjs/utf8@^1.1.0 ā”‚ ā”œā”€ @types/long@^4.0.0 ā”‚ ā”œā”€ @types/node@^10.1.0 ā”‚ ā”œā”€ @types/node@10.17.60 ā”‚ ā””ā”€ long@^4.0.0 ā”œā”€ @apollo/utils.dropunuseddefinitions@1.1.0 ā”œā”€ @apollo/utils.keyvaluecache@1.0.1 ā”‚ ā”œā”€ @apollo/utils.logger@^1.0.0 ā”‚ ā”œā”€ lru-cache@^7.10.1 ā”‚ ā””ā”€ lru-cache@7.14.0 ā”œā”€ @apollo/utils.logger@1.0.0 ā”œā”€ @apollo/utils.printwithreducedwhitespace@1.1.0 ā”œā”€ @apollo/utils.removealiases@1.0.0 ā”œā”€ @apollo/utils.sortast@1.1.0 ā”‚ ā””ā”€ lodash.sortby@^4.7.0 ā”œā”€ @apollo/utils.stripsensitiveliterals@1.2.0 ā”œā”€ @apollo/utils.usagereporting@1.0.0 ā”‚ ā”œā”€ @apollo/utils.dropunuseddefinitions@^1.1.0 ā”‚ ā”œā”€ @apollo/utils.printwithreducedwhitespace@^1.1.0 ā”‚ ā”œā”€ @apollo/utils.removealiases@1.0.0 ā”‚ ā”œā”€ @apollo/utils.sortast@^1.1.0 ā”‚ ā”œā”€ @apollo/utils.stripsensitiveliterals@^1.2.0 ā”‚ ā””ā”€ apollo-reporting-protobuf@^3.3.1 ā”œā”€ @apollographql/apollo-tools@0.5.4 ā”œā”€ @apollographql/graphql-playground-html@1.6.29 ā”‚ ā””ā”€ xss@^1.0.8 ā”œā”€ @ardatan/relay-compiler@12.0.0 ā”‚ ā”œā”€ @babel/core@^7.14.0 ā”‚ ā”œā”€ @babel/generator@^7.14.0 ā”‚ ā”œā”€ @babel/parser@^7.14.0 ā”‚ ā”œā”€ @babel/runtime@^7.0.0 ā”‚ ā”œā”€ @babel/traverse@^7.14.0 ā”‚ ā”œā”€ @babel/types@^7.0.0 ā”‚ ā”œā”€ babel-preset-fbjs@^3.4.0 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ cliui@6.0.0 ā”‚ ā”‚ ā”œā”€ string-width@^4.2.0 ā”‚ ā”‚ ā”œā”€ strip-ansi@^6.0.0 ā”‚ ā”‚ ā””ā”€ wrap-ansi@^6.2.0 ā”‚ ā”œā”€ fb-watchman@^2.0.0 ā”‚ ā”œā”€ fbjs@^3.0.0 ā”‚ ā”œā”€ glob@^7.1.1 ā”‚ ā”œā”€ immutable@~3.7.6 ā”‚ ā”œā”€ immutable@3.7.6 ā”‚ ā”œā”€ invariant@^2.2.4 ā”‚ ā”œā”€ nullthrows@^1.1.1 ā”‚ ā”œā”€ relay-runtime@12.0.0 ā”‚ ā”œā”€ signedsource@^1.0.0 ā”‚ ā”œā”€ wrap-ansi@6.2.0 ā”‚ ā”‚ ā”œā”€ ansi-styles@^4.0.0 ā”‚ ā”‚ ā”œā”€ string-width@^4.1.0 ā”‚ ā”‚ ā””ā”€ strip-ansi@^6.0.0 ā”‚ ā”œā”€ y18n@4.0.3 ā”‚ ā”œā”€ yargs-parser@18.1.3 ā”‚ ā”‚ ā”œā”€ camelcase@^5.0.0 ā”‚ ā”‚ ā””ā”€ decamelize@^1.2.0 ā”‚ ā”œā”€ yargs@^15.3.1 ā”‚ ā””ā”€ yargs@15.4.1 ā”‚ ā”œā”€ cliui@^6.0.0 ā”‚ ā”œā”€ decamelize@^1.2.0 ā”‚ ā”œā”€ find-up@^4.1.0 ā”‚ ā”œā”€ get-caller-file@^2.0.1 ā”‚ ā”œā”€ require-directory@^2.1.1 ā”‚ ā”œā”€ require-main-filename@^2.0.0 ā”‚ ā”œā”€ set-blocking@^2.0.0 ā”‚ ā”œā”€ string-width@^4.2.0 ā”‚ ā”œā”€ which-module@^2.0.0 ā”‚ ā”œā”€ y18n@^4.0.0 ā”‚ ā””ā”€ yargs-parser@^18.1.2 ā”œā”€ @ardatan/sync-fetch@0.0.1 ā”‚ ā””ā”€ node-fetch@^2.6.1 ā”œā”€ @babel/code-frame@7.18.6 ā”‚ ā””ā”€ @babel/highlight@^7.18.6 ā”œā”€ @babel/compat-data@7.18.8 ā”œā”€ @babel/core@7.18.10 ā”‚ ā”œā”€ @ampproject/remapping@^2.1.0 ā”‚ ā”œā”€ @babel/code-frame@^7.18.6 ā”‚ ā”œā”€ @babel/generator@^7.18.10 ā”‚ ā”œā”€ @babel/helper-compilation-targets@^7.18.9 ā”‚ ā”œā”€ @babel/helper-module-transforms@^7.18.9 ā”‚ ā”œā”€ @babel/helpers@^7.18.9 ā”‚ ā”œā”€ @babel/parser@^7.18.10 ā”‚ ā”œā”€ @babel/template@^7.18.10 ā”‚ ā”œā”€ @babel/traverse@^7.18.10 ā”‚ ā”œā”€ @babel/types@^7.18.10 ā”‚ ā”œā”€ convert-source-map@^1.7.0 ā”‚ ā”œā”€ debug@^4.1.0 ā”‚ ā”œā”€ gensync@^1.0.0-beta.2 ā”‚ ā”œā”€ json5@^2.2.1 ā”‚ ā”œā”€ semver@^6.3.0 ā”‚ ā””ā”€ semver@6.3.0 ā”œā”€ @babel/generator@7.18.12 ā”‚ ā”œā”€ @babel/types@^7.18.10 ā”‚ ā”œā”€ @jridgewell/gen-mapping@^0.3.2 ā”‚ ā””ā”€ jsesc@^2.5.1 ā”œā”€ @babel/helper-annotate-as-pure@7.18.6 ā”‚ ā””ā”€ @babel/types@^7.18.6 ā”œā”€ @babel/helper-compilation-targets@7.18.9 ā”‚ ā”œā”€ @babel/compat-data@^7.18.8 ā”‚ ā”œā”€ @babel/helper-validator-option@^7.18.6 ā”‚ ā”œā”€ browserslist@^4.20.2 ā”‚ ā”œā”€ semver@^6.3.0 ā”‚ ā””ā”€ semver@6.3.0 ā”œā”€ @babel/helper-create-class-features-plugin@7.18.9 ā”‚ ā”œā”€ @babel/helper-annotate-as-pure@^7.18.6 ā”‚ ā”œā”€ @babel/helper-environment-visitor@^7.18.9 ā”‚ ā”œā”€ @babel/helper-function-name@^7.18.9 ā”‚ ā”œā”€ @babel/helper-member-expression-to-functions@^7.18.9 ā”‚ ā”œā”€ @babel/helper-optimise-call-expression@^7.18.6 ā”‚ ā”œā”€ @babel/helper-replace-supers@^7.18.9 ā”‚ ā””ā”€ @babel/helper-split-export-declaration@^7.18.6 ā”œā”€ @babel/helper-environment-visitor@7.18.9 ā”œā”€ @babel/helper-function-name@7.18.9 ā”‚ ā”œā”€ @babel/template@^7.18.6 ā”‚ ā””ā”€ @babel/types@^7.18.9 ā”œā”€ @babel/helper-hoist-variables@7.18.6 ā”‚ ā””ā”€ @babel/types@^7.18.6 ā”œā”€ @babel/helper-member-expression-to-functions@7.18.9 ā”‚ ā””ā”€ @babel/types@^7.18.9 ā”œā”€ @babel/helper-module-imports@7.18.6 ā”‚ ā””ā”€ @babel/types@^7.18.6 ā”œā”€ @babel/helper-module-transforms@7.18.9 ā”‚ ā”œā”€ @babel/helper-environment-visitor@^7.18.9 ā”‚ ā”œā”€ @babel/helper-module-imports@^7.18.6 ā”‚ ā”œā”€ @babel/helper-simple-access@^7.18.6 ā”‚ ā”œā”€ @babel/helper-split-export-declaration@^7.18.6 ā”‚ ā”œā”€ @babel/helper-validator-identifier@^7.18.6 ā”‚ ā”œā”€ @babel/template@^7.18.6 ā”‚ ā”œā”€ @babel/traverse@^7.18.9 ā”‚ ā””ā”€ @babel/types@^7.18.9 ā”œā”€ @babel/helper-optimise-call-expression@7.18.6 ā”‚ ā””ā”€ @babel/types@^7.18.6 ā”œā”€ @babel/helper-plugin-utils@7.18.9 ā”œā”€ @babel/helper-replace-supers@7.18.9 ā”‚ ā”œā”€ @babel/helper-environment-visitor@^7.18.9 ā”‚ ā”œā”€ @babel/helper-member-expression-to-functions@^7.18.9 ā”‚ ā”œā”€ @babel/helper-optimise-call-expression@^7.18.6 ā”‚ ā”œā”€ @babel/traverse@^7.18.9 ā”‚ ā””ā”€ @babel/types@^7.18.9 ā”œā”€ @babel/helper-simple-access@7.18.6 ā”‚ ā””ā”€ @babel/types@^7.18.6 ā”œā”€ @babel/helper-skip-transparent-expression-wrappers@7.18.9 ā”‚ ā””ā”€ @babel/types@^7.18.9 ā”œā”€ @babel/helper-split-export-declaration@7.18.6 ā”‚ ā””ā”€ @babel/types@^7.18.6 ā”œā”€ @babel/helper-string-parser@7.18.10 ā”œā”€ @babel/helper-validator-identifier@7.18.6 ā”œā”€ @babel/helper-validator-option@7.18.6 ā”œā”€ @babel/helpers@7.18.9 ā”‚ ā”œā”€ @babel/template@^7.18.6 ā”‚ ā”œā”€ @babel/traverse@^7.18.9 ā”‚ ā””ā”€ @babel/types@^7.18.9 ā”œā”€ @babel/highlight@7.18.6 ā”‚ ā”œā”€ @babel/helper-validator-identifier@^7.18.6 ā”‚ ā”œā”€ ansi-styles@3.2.1 ā”‚ ā”‚ ā””ā”€ color-convert@^1.9.0 ā”‚ ā”œā”€ chalk@^2.0.0 ā”‚ ā”œā”€ chalk@2.4.2 ā”‚ ā”‚ ā”œā”€ ansi-styles@^3.2.1 ā”‚ ā”‚ ā”œā”€ escape-string-regexp@^1.0.5 ā”‚ ā”‚ ā””ā”€ supports-color@^5.3.0 ā”‚ ā”œā”€ color-convert@1.9.3 ā”‚ ā”‚ ā””ā”€ color-name@1.1.3 ā”‚ ā”œā”€ color-name@1.1.3 ā”‚ ā”œā”€ escape-string-regexp@1.0.5 ā”‚ ā”œā”€ has-flag@3.0.0 ā”‚ ā”œā”€ js-tokens@^4.0.0 ā”‚ ā””ā”€ supports-color@5.5.0 ā”‚ ā””ā”€ has-flag@^3.0.0 ā”œā”€ @babel/parser@7.18.11 ā”œā”€ @babel/plugin-proposal-class-properties@7.18.6 ā”‚ ā”œā”€ @babel/helper-create-class-features-plugin@^7.18.6 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.6 ā”œā”€ @babel/plugin-proposal-object-rest-spread@7.18.9 ā”‚ ā”œā”€ @babel/compat-data@^7.18.8 ā”‚ ā”œā”€ @babel/helper-compilation-targets@^7.18.9 ā”‚ ā”œā”€ @babel/helper-plugin-utils@^7.18.9 ā”‚ ā”œā”€ @babel/plugin-syntax-object-rest-spread@^7.8.3 ā”‚ ā””ā”€ @babel/plugin-transform-parameters@^7.18.8 ā”œā”€ @babel/plugin-syntax-async-generators@7.8.4 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.8.0 ā”œā”€ @babel/plugin-syntax-bigint@7.8.3 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.8.0 ā”œā”€ @babel/plugin-syntax-class-properties@7.12.13 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.12.13 ā”œā”€ @babel/plugin-syntax-flow@7.18.6 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.6 ā”œā”€ @babel/plugin-syntax-import-meta@7.10.4 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.10.4 ā”œā”€ @babel/plugin-syntax-json-strings@7.8.3 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.8.0 ā”œā”€ @babel/plugin-syntax-jsx@7.18.6 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.6 ā”œā”€ @babel/plugin-syntax-logical-assignment-operators@7.10.4 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.10.4 ā”œā”€ @babel/plugin-syntax-nullish-coalescing-operator@7.8.3 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.8.0 ā”œā”€ @babel/plugin-syntax-numeric-separator@7.10.4 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.10.4 ā”œā”€ @babel/plugin-syntax-object-rest-spread@7.8.3 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.8.0 ā”œā”€ @babel/plugin-syntax-optional-catch-binding@7.8.3 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.8.0 ā”œā”€ @babel/plugin-syntax-optional-chaining@7.8.3 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.8.0 ā”œā”€ @babel/plugin-syntax-top-level-await@7.14.5 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.14.5 ā”œā”€ @babel/plugin-syntax-typescript@7.18.6 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.6 ā”œā”€ @babel/plugin-transform-arrow-functions@7.18.6 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.6 ā”œā”€ @babel/plugin-transform-block-scoped-functions@7.18.6 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.6 ā”œā”€ @babel/plugin-transform-block-scoping@7.18.9 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.9 ā”œā”€ @babel/plugin-transform-classes@7.18.9 ā”‚ ā”œā”€ @babel/helper-annotate-as-pure@^7.18.6 ā”‚ ā”œā”€ @babel/helper-environment-visitor@^7.18.9 ā”‚ ā”œā”€ @babel/helper-function-name@^7.18.9 ā”‚ ā”œā”€ @babel/helper-optimise-call-expression@^7.18.6 ā”‚ ā”œā”€ @babel/helper-plugin-utils@^7.18.9 ā”‚ ā”œā”€ @babel/helper-replace-supers@^7.18.9 ā”‚ ā”œā”€ @babel/helper-split-export-declaration@^7.18.6 ā”‚ ā””ā”€ globals@^11.1.0 ā”œā”€ @babel/plugin-transform-computed-properties@7.18.9 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.9 ā”œā”€ @babel/plugin-transform-destructuring@7.18.9 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.9 ā”œā”€ @babel/plugin-transform-flow-strip-types@7.18.9 ā”‚ ā”œā”€ @babel/helper-plugin-utils@^7.18.9 ā”‚ ā””ā”€ @babel/plugin-syntax-flow@^7.18.6 ā”œā”€ @babel/plugin-transform-for-of@7.18.8 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.6 ā”œā”€ @babel/plugin-transform-function-name@7.18.9 ā”‚ ā”œā”€ @babel/helper-compilation-targets@^7.18.9 ā”‚ ā”œā”€ @babel/helper-function-name@^7.18.9 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.9 ā”œā”€ @babel/plugin-transform-literals@7.18.9 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.9 ā”œā”€ @babel/plugin-transform-member-expression-literals@7.18.6 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.6 ā”œā”€ @babel/plugin-transform-modules-commonjs@7.18.6 ā”‚ ā”œā”€ @babel/helper-module-transforms@^7.18.6 ā”‚ ā”œā”€ @babel/helper-plugin-utils@^7.18.6 ā”‚ ā”œā”€ @babel/helper-simple-access@^7.18.6 ā”‚ ā””ā”€ babel-plugin-dynamic-import-node@^2.3.3 ā”œā”€ @babel/plugin-transform-object-super@7.18.6 ā”‚ ā”œā”€ @babel/helper-plugin-utils@^7.18.6 ā”‚ ā””ā”€ @babel/helper-replace-supers@^7.18.6 ā”œā”€ @babel/plugin-transform-parameters@7.18.8 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.6 ā”œā”€ @babel/plugin-transform-property-literals@7.18.6 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.6 ā”œā”€ @babel/plugin-transform-react-display-name@7.18.6 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.6 ā”œā”€ @babel/plugin-transform-react-jsx@7.18.10 ā”‚ ā”œā”€ @babel/helper-annotate-as-pure@^7.18.6 ā”‚ ā”œā”€ @babel/helper-module-imports@^7.18.6 ā”‚ ā”œā”€ @babel/helper-plugin-utils@^7.18.9 ā”‚ ā”œā”€ @babel/plugin-syntax-jsx@^7.18.6 ā”‚ ā””ā”€ @babel/types@^7.18.10 ā”œā”€ @babel/plugin-transform-shorthand-properties@7.18.6 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.6 ā”œā”€ @babel/plugin-transform-spread@7.18.9 ā”‚ ā”œā”€ @babel/helper-plugin-utils@^7.18.9 ā”‚ ā””ā”€ @babel/helper-skip-transparent-expression-wrappers@^7.18.9 ā”œā”€ @babel/plugin-transform-template-literals@7.18.9 ā”‚ ā””ā”€ @babel/helper-plugin-utils@^7.18.9 ā”œā”€ @babel/plugin-transform-typescript@7.18.12 ā”‚ ā”œā”€ @babel/helper-create-class-features-plugin@^7.18.9 ā”‚ ā”œā”€ @babel/helper-plugin-utils@^7.18.9 ā”‚ ā””ā”€ @babel/plugin-syntax-typescript@^7.18.6 ā”œā”€ @babel/runtime@7.18.9 ā”‚ ā””ā”€ regenerator-runtime@^0.13.4 ā”œā”€ @babel/standalone@7.18.12 ā”œā”€ @babel/template@7.18.10 ā”‚ ā”œā”€ @babel/code-frame@^7.18.6 ā”‚ ā”œā”€ @babel/parser@^7.18.10 ā”‚ ā””ā”€ @babel/types@^7.18.10 ā”œā”€ @babel/traverse@7.18.11 ā”‚ ā”œā”€ @babel/code-frame@^7.18.6 ā”‚ ā”œā”€ @babel/generator@^7.18.10 ā”‚ ā”œā”€ @babel/helper-environment-visitor@^7.18.9 ā”‚ ā”œā”€ @babel/helper-function-name@^7.18.9 ā”‚ ā”œā”€ @babel/helper-hoist-variables@^7.18.6 ā”‚ ā”œā”€ @babel/helper-split-export-declaration@^7.18.6 ā”‚ ā”œā”€ @babel/parser@^7.18.11 ā”‚ ā”œā”€ @babel/types@^7.18.10 ā”‚ ā”œā”€ debug@^4.1.0 ā”‚ ā””ā”€ globals@^11.1.0 ā”œā”€ @babel/types@7.18.10 ā”‚ ā”œā”€ @babel/helper-string-parser@^7.18.10 ā”‚ ā”œā”€ @babel/helper-validator-identifier@^7.18.6 ā”‚ ā””ā”€ to-fast-properties@^2.0.0 ā”œā”€ @bcoe/v8-coverage@0.2.3 ā”œā”€ @cloudflare/kv-asset-handler@0.2.0 ā”‚ ā””ā”€ mime@^3.0.0 ā”œā”€ @cspotcode/source-map-support@0.8.1 ā”‚ ā”œā”€ @jridgewell/trace-mapping@0.3.9 ā”‚ ā””ā”€ @jridgewell/trace-mapping@0.3.9 ā”‚ ā”œā”€ @jridgewell/resolve-uri@^3.0.3 ā”‚ ā””ā”€ @jridgewell/sourcemap-codec@^1.4.10 ā”œā”€ @digitak/esrun@3.2.10 ā”‚ ā”œā”€ @digitak/grubber@^3.1.1 ā”‚ ā”œā”€ chokidar@^3.5.1 ā”‚ ā””ā”€ esbuild@^0.14.47 ā”œā”€ @digitak/grubber@3.1.3 ā”œā”€ @esbuild/linux-loong64@0.14.54 ā”œā”€ @eslint/eslintrc@1.3.0 ā”‚ ā”œā”€ ajv@^6.12.4 ā”‚ ā”œā”€ debug@^4.3.2 ā”‚ ā”œā”€ espree@^9.3.2 ā”‚ ā”œā”€ globals@^13.15.0 ā”‚ ā”œā”€ globals@13.17.0 ā”‚ ā”‚ ā””ā”€ type-fest@^0.20.2 ā”‚ ā”œā”€ ignore@^5.2.0 ā”‚ ā”œā”€ import-fresh@^3.2.1 ā”‚ ā”œā”€ js-yaml@^4.1.0 ā”‚ ā”œā”€ minimatch@^3.1.2 ā”‚ ā”œā”€ strip-json-comments@^3.1.1 ā”‚ ā””ā”€ type-fest@0.20.2 ā”œā”€ @faker-js/faker@7.4.0 ā”œā”€ @fortawesome/fontawesome-common-types@6.1.2 ā”œā”€ @fortawesome/pro-duotone-svg-icons@6.1.2 ā”‚ ā””ā”€ @fortawesome/fontawesome-common-types@6.1.2 ā”œā”€ @google-cloud/common@4.0.2 ā”‚ ā”œā”€ @google-cloud/projectify@^3.0.0 ā”‚ ā”œā”€ @google-cloud/promisify@^3.0.0 ā”‚ ā”œā”€ arrify@^2.0.1 ā”‚ ā”œā”€ duplexify@^4.1.1 ā”‚ ā”œā”€ ent@^2.2.0 ā”‚ ā”œā”€ extend@^3.0.2 ā”‚ ā”œā”€ google-auth-library@^8.0.2 ā”‚ ā”œā”€ retry-request@^5.0.0 ā”‚ ā””ā”€ teeny-request@^8.0.0 ā”œā”€ @google-cloud/paginator@3.0.7 ā”‚ ā”œā”€ arrify@^2.0.0 ā”‚ ā””ā”€ extend@^3.0.2 ā”œā”€ @google-cloud/projectify@3.0.0 ā”œā”€ @google-cloud/promisify@3.0.0 ā”œā”€ @google-cloud/storage@6.4.1 ā”‚ ā”œā”€ @google-cloud/paginator@^3.0.7 ā”‚ ā”œā”€ @google-cloud/projectify@^3.0.0 ā”‚ ā”œā”€ @google-cloud/promisify@^3.0.0 ā”‚ ā”œā”€ abort-controller@^3.0.0 ā”‚ ā”œā”€ arrify@^2.0.0 ā”‚ ā”œā”€ async-retry@^1.3.3 ā”‚ ā”œā”€ compressible@^2.0.12 ā”‚ ā”œā”€ duplexify@^4.0.0 ā”‚ ā”œā”€ ent@^2.2.0 ā”‚ ā”œā”€ extend@^3.0.2 ā”‚ ā”œā”€ gaxios@^5.0.0 ā”‚ ā”œā”€ google-auth-library@^8.0.1 ā”‚ ā”œā”€ mime-types@^2.0.8 ā”‚ ā”œā”€ mime@^3.0.0 ā”‚ ā”œā”€ p-limit@^3.0.1 ā”‚ ā”œā”€ retry-request@^5.0.0 ā”‚ ā”œā”€ teeny-request@^8.0.0 ā”‚ ā””ā”€ uuid@^8.0.0 ā”œā”€ @google-cloud/translate@7.0.1 ā”‚ ā”œā”€ @google-cloud/common@^4.0.0 ā”‚ ā”œā”€ @google-cloud/promisify@^2.0.0 ā”‚ ā”œā”€ @google-cloud/promisify@2.0.4 ā”‚ ā”œā”€ arrify@^2.0.0 ā”‚ ā”œā”€ extend@^3.0.2 ā”‚ ā”œā”€ google-gax@^3.0.1 ā”‚ ā””ā”€ is-html@^2.0.0 ā”œā”€ @graphql-codegen/cli@2.11.6 ā”‚ ā”œā”€ @graphql-codegen/core@2.6.2 ā”‚ ā”œā”€ @graphql-codegen/plugin-helpers@^2.6.2 ā”‚ ā”œā”€ @graphql-tools/apollo-engine-loader@^7.3.6 ā”‚ ā”œā”€ @graphql-tools/code-file-loader@^7.3.1 ā”‚ ā”œā”€ @graphql-tools/git-loader@^7.2.1 ā”‚ ā”œā”€ @graphql-tools/github-loader@^7.3.6 ā”‚ ā”œā”€ @graphql-tools/graphql-file-loader@^7.5.0 ā”‚ ā”œā”€ @graphql-tools/json-file-loader@^7.4.1 ā”‚ ā”œā”€ @graphql-tools/load@^7.7.1 ā”‚ ā”œā”€ @graphql-tools/prisma-loader@^7.2.7 ā”‚ ā”œā”€ @graphql-tools/url-loader@^7.13.2 ā”‚ ā”œā”€ @graphql-tools/utils@^8.9.0 ā”‚ ā”œā”€ @whatwg-node/fetch@^0.2.3 ā”‚ ā”œā”€ ansi-escapes@^4.3.1 ā”‚ ā”œā”€ chalk@^4.1.0 ā”‚ ā”œā”€ chokidar@^3.5.2 ā”‚ ā”œā”€ cosmiconfig@^7.0.0 ā”‚ ā”œā”€ debounce@^1.2.0 ā”‚ ā”œā”€ detect-indent@^6.0.0 ā”‚ ā”œā”€ graphql-config@^4.3.1 ā”‚ ā”œā”€ inquirer@^8.0.0 ā”‚ ā”œā”€ is-glob@^4.0.1 ā”‚ ā”œā”€ json-to-pretty-yaml@^1.2.2 ā”‚ ā”œā”€ listr2@^4.0.5 ā”‚ ā”œā”€ log-symbols@^4.0.0 ā”‚ ā”œā”€ mkdirp@^1.0.4 ā”‚ ā”œā”€ string-env-interpolation@^1.0.1 ā”‚ ā”œā”€ ts-log@^2.2.3 ā”‚ ā”œā”€ tslib@^2.4.0 ā”‚ ā”œā”€ yaml@^1.10.0 ā”‚ ā””ā”€ yargs@^17.0.0 ā”œā”€ @graphql-codegen/core@2.6.2 ā”‚ ā”œā”€ @graphql-codegen/plugin-helpers@^2.6.2 ā”‚ ā”œā”€ @graphql-tools/schema@^9.0.0 ā”‚ ā”œā”€ @graphql-tools/utils@^8.8.0 ā”‚ ā””ā”€ tslib@~2.4.0 ā”œā”€ @graphql-codegen/plugin-helpers@2.6.2 ā”‚ ā”œā”€ @graphql-tools/utils@^8.8.0 ā”‚ ā”œā”€ change-case-all@1.0.14 ā”‚ ā”œā”€ common-tags@1.8.2 ā”‚ ā”œā”€ import-from@4.0.0 ā”‚ ā”œā”€ lodash@~4.17.0 ā”‚ ā””ā”€ tslib@~2.4.0 ā”œā”€ @graphql-codegen/schema-ast@2.5.1 ā”‚ ā”œā”€ @graphql-codegen/plugin-helpers@^2.6.2 ā”‚ ā”œā”€ @graphql-tools/utils@^8.8.0 ā”‚ ā””ā”€ tslib@~2.4.0 ā”œā”€ @graphql-codegen/typescript-operations@2.5.3 ā”‚ ā”œā”€ @graphql-codegen/plugin-helpers@^2.6.2 ā”‚ ā”œā”€ @graphql-codegen/typescript@^2.7.3 ā”‚ ā”œā”€ @graphql-codegen/visitor-plugin-common@2.12.1 ā”‚ ā”œā”€ auto-bind@~4.0.0 ā”‚ ā””ā”€ tslib@~2.4.0 ā”œā”€ @graphql-codegen/typescript-vue-urql@2.3.3 ā”‚ ā”œā”€ @graphql-codegen/plugin-helpers@^2.6.2 ā”‚ ā”œā”€ @graphql-codegen/visitor-plugin-common@2.12.1 ā”‚ ā”œā”€ auto-bind@~4.0.0 ā”‚ ā”œā”€ change-case-all@1.0.14 ā”‚ ā””ā”€ tslib@~2.4.0 ā”œā”€ @graphql-codegen/typescript@2.7.3 ā”‚ ā”œā”€ @graphql-codegen/plugin-helpers@^2.6.2 ā”‚ ā”œā”€ @graphql-codegen/schema-ast@^2.5.1 ā”‚ ā”œā”€ @graphql-codegen/visitor-plugin-common@2.12.1 ā”‚ ā”œā”€ auto-bind@~4.0.0 ā”‚ ā””ā”€ tslib@~2.4.0 ā”œā”€ @graphql-codegen/visitor-plugin-common@2.12.1 ā”‚ ā”œā”€ @graphql-codegen/plugin-helpers@^2.6.2 ā”‚ ā”œā”€ @graphql-tools/optimize@^1.3.0 ā”‚ ā”œā”€ @graphql-tools/relay-operation-optimizer@^6.5.0 ā”‚ ā”œā”€ @graphql-tools/utils@^8.8.0 ā”‚ ā”œā”€ auto-bind@~4.0.0 ā”‚ ā”œā”€ change-case-all@1.0.14 ā”‚ ā”œā”€ dependency-graph@^0.11.0 ā”‚ ā”œā”€ graphql-tag@^2.11.0 ā”‚ ā”œā”€ parse-filepath@^1.0.2 ā”‚ ā””ā”€ tslib@~2.4.0 ā”œā”€ @graphql-tools/apollo-engine-loader@7.3.9 ā”‚ ā”œā”€ @ardatan/sync-fetch@0.0.1 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ @whatwg-node/fetch@^0.2.9 ā”‚ ā””ā”€ tslib@^2.4.0 ā”œā”€ @graphql-tools/batch-execute@8.5.3 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ dataloader@2.1.0 ā”‚ ā”œā”€ tslib@^2.4.0 ā”‚ ā””ā”€ value-or-promise@1.0.11 ā”œā”€ @graphql-tools/code-file-loader@7.3.3 ā”‚ ā”œā”€ @graphql-tools/graphql-tag-pluck@7.3.3 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ globby@^11.0.3 ā”‚ ā”œā”€ tslib@^2.4.0 ā”‚ ā””ā”€ unixify@^1.0.0 ā”œā”€ @graphql-tools/delegate@9.0.3 ā”‚ ā”œā”€ @graphql-tools/batch-execute@8.5.3 ā”‚ ā”œā”€ @graphql-tools/schema@9.0.1 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ dataloader@2.1.0 ā”‚ ā”œā”€ tslib@~2.4.0 ā”‚ ā””ā”€ value-or-promise@1.0.11 ā”œā”€ @graphql-tools/git-loader@7.2.3 ā”‚ ā”œā”€ @graphql-tools/graphql-tag-pluck@7.3.3 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ is-glob@4.0.3 ā”‚ ā”œā”€ micromatch@^4.0.4 ā”‚ ā”œā”€ tslib@^2.4.0 ā”‚ ā””ā”€ unixify@^1.0.0 ā”œā”€ @graphql-tools/github-loader@7.3.9 ā”‚ ā”œā”€ @ardatan/sync-fetch@0.0.1 ā”‚ ā”œā”€ @graphql-tools/graphql-tag-pluck@7.3.3 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ @whatwg-node/fetch@^0.2.9 ā”‚ ā””ā”€ tslib@^2.4.0 ā”œā”€ @graphql-tools/graphql-file-loader@7.5.2 ā”‚ ā”œā”€ @graphql-tools/import@6.7.3 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ globby@^11.0.3 ā”‚ ā”œā”€ tslib@^2.4.0 ā”‚ ā””ā”€ unixify@^1.0.0 ā”œā”€ @graphql-tools/graphql-tag-pluck@7.3.3 ā”‚ ā”œā”€ @babel/parser@^7.16.8 ā”‚ ā”œā”€ @babel/traverse@^7.16.8 ā”‚ ā”œā”€ @babel/types@^7.16.8 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā””ā”€ tslib@^2.4.0 ā”œā”€ @graphql-tools/import@6.7.3 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ resolve-from@5.0.0 ā”‚ ā””ā”€ tslib@^2.4.0 ā”œā”€ @graphql-tools/json-file-loader@7.4.3 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ globby@^11.0.3 ā”‚ ā”œā”€ tslib@^2.4.0 ā”‚ ā””ā”€ unixify@^1.0.0 ā”œā”€ @graphql-tools/load@7.7.4 ā”‚ ā”œā”€ @graphql-tools/schema@9.0.1 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ p-limit@3.1.0 ā”‚ ā””ā”€ tslib@^2.4.0 ā”œā”€ @graphql-tools/merge@8.3.3 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā””ā”€ tslib@^2.4.0 ā”œā”€ @graphql-tools/mock@8.7.3 ā”‚ ā”œā”€ @graphql-tools/schema@9.0.1 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ fast-json-stable-stringify@^2.1.0 ā”‚ ā””ā”€ tslib@^2.4.0 ā”œā”€ @graphql-tools/optimize@1.3.1 ā”‚ ā””ā”€ tslib@^2.4.0 ā”œā”€ @graphql-tools/prisma-loader@7.2.14 ā”‚ ā”œā”€ @graphql-tools/url-loader@7.13.9 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ @types/js-yaml@^4.0.0 ā”‚ ā”œā”€ @types/json-stable-stringify@^1.0.32 ā”‚ ā”œā”€ @types/jsonwebtoken@^8.5.0 ā”‚ ā”œā”€ chalk@^4.1.0 ā”‚ ā”œā”€ debug@^4.3.1 ā”‚ ā”œā”€ dotenv@^16.0.0 ā”‚ ā”œā”€ graphql-request@^4.0.0 ā”‚ ā”œā”€ http-proxy-agent@^5.0.0 ā”‚ ā”œā”€ https-proxy-agent@^5.0.0 ā”‚ ā”œā”€ isomorphic-fetch@^3.0.0 ā”‚ ā”œā”€ js-yaml@^4.0.0 ā”‚ ā”œā”€ json-stable-stringify@^1.0.1 ā”‚ ā”œā”€ jsonwebtoken@^8.5.1 ā”‚ ā”œā”€ lodash@^4.17.20 ā”‚ ā”œā”€ scuid@^1.1.0 ā”‚ ā”œā”€ tslib@^2.4.0 ā”‚ ā””ā”€ yaml-ast-parser@^0.0.43 ā”œā”€ @graphql-tools/relay-operation-optimizer@6.5.3 ā”‚ ā”œā”€ @ardatan/relay-compiler@12.0.0 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā””ā”€ tslib@^2.4.0 ā”œā”€ @graphql-tools/schema@9.0.1 ā”‚ ā”œā”€ @graphql-tools/merge@8.3.3 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ tslib@^2.4.0 ā”‚ ā””ā”€ value-or-promise@1.0.11 ā”œā”€ @graphql-tools/url-loader@7.13.9 ā”‚ ā”œā”€ @ardatan/sync-fetch@0.0.1 ā”‚ ā”œā”€ @graphql-tools/delegate@9.0.3 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ @graphql-tools/wrap@9.0.4 ā”‚ ā”œā”€ @n1ru4l/graphql-live-query@^0.10.0 ā”‚ ā”œā”€ @types/ws@^8.0.0 ā”‚ ā”œā”€ @whatwg-node/fetch@^0.2.9 ā”‚ ā”œā”€ dset@^3.1.2 ā”‚ ā”œā”€ extract-files@^11.0.0 ā”‚ ā”œā”€ graphql-ws@^5.4.1 ā”‚ ā”œā”€ isomorphic-ws@^5.0.0 ā”‚ ā”œā”€ meros@^1.1.4 ā”‚ ā”œā”€ tslib@^2.4.0 ā”‚ ā”œā”€ value-or-promise@^1.0.11 ā”‚ ā””ā”€ ws@^8.3.0 ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā””ā”€ tslib@^2.4.0 ā”œā”€ @graphql-tools/wrap@9.0.4 ā”‚ ā”œā”€ @graphql-tools/delegate@9.0.3 ā”‚ ā”œā”€ @graphql-tools/schema@9.0.1 ā”‚ ā”œā”€ @graphql-tools/utils@8.10.0 ā”‚ ā”œā”€ tslib@^2.4.0 ā”‚ ā””ā”€ value-or-promise@1.0.11 ā”œā”€ @graphql-typed-document-node/core@3.1.1 ā”œā”€ @grpc/grpc-js@1.6.10 ā”‚ ā”œā”€ @grpc/proto-loader@^0.7.0 ā”‚ ā””ā”€ @types/node@>=12.12.47 ā”œā”€ @grpc/proto-loader@0.7.2 ā”‚ ā”œā”€ @types/long@^4.0.1 ā”‚ ā”œā”€ lodash.camelcase@^4.3.0 ā”‚ ā”œā”€ long@^4.0.0 ā”‚ ā”œā”€ protobufjs@^7.0.0 ā”‚ ā”œā”€ yargs-parser@20.2.9 ā”‚ ā”œā”€ yargs@^16.2.0 ā”‚ ā””ā”€ yargs@16.2.0 ā”‚ ā”œā”€ cliui@^7.0.2 ā”‚ ā”œā”€ escalade@^3.1.1 ā”‚ ā”œā”€ get-caller-file@^2.0.5 ā”‚ ā”œā”€ require-directory@^2.1.1 ā”‚ ā”œā”€ string-width@^4.2.0 ā”‚ ā”œā”€ y18n@^5.0.5 ā”‚ ā””ā”€ yargs-parser@^20.2.2 ā”œā”€ @humanwhocodes/config-array@0.10.4 ā”‚ ā”œā”€ @humanwhocodes/object-schema@^1.2.1 ā”‚ ā”œā”€ debug@^4.1.1 ā”‚ ā””ā”€ minimatch@^3.0.4 ā”œā”€ @humanwhocodes/gitignore-to-minimatch@1.0.2 ā”œā”€ @humanwhocodes/object-schema@1.2.1 ā”œā”€ @iarna/toml@2.2.5 ā”œā”€ @iconify/json@2.1.95 ā”‚ ā”œā”€ @iconify/types@* ā”‚ ā””ā”€ pathe@^0.3.0 ā”œā”€ @iconify/types@1.1.0 ā”œā”€ @iconify/utils@1.0.33 ā”‚ ā”œā”€ @antfu/install-pkg@^0.1.0 ā”‚ ā”œā”€ @antfu/utils@^0.5.0 ā”‚ ā”œā”€ @iconify/types@^1.1.0 ā”‚ ā”œā”€ debug@^4.3.4 ā”‚ ā”œā”€ kolorist@^1.5.1 ā”‚ ā””ā”€ local-pkg@^0.4.1 ā”œā”€ @ioredis/commands@1.2.0 ā”œā”€ @istanbuljs/load-nyc-config@1.1.0 ā”‚ ā”œā”€ camelcase@^5.3.1 ā”‚ ā”œā”€ find-up@^4.1.0 ā”‚ ā”œā”€ get-package-type@^0.1.0 ā”‚ ā”œā”€ js-yaml@^3.13.1 ā”‚ ā”œā”€ js-yaml@3.14.1 ā”‚ ā”‚ ā”œā”€ argparse@^1.0.7 ā”‚ ā”‚ ā””ā”€ esprima@^4.0.0 ā”‚ ā””ā”€ resolve-from@^5.0.0 ā”œā”€ @istanbuljs/schema@0.1.3 ā”œā”€ @jest/console@28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @types/node@* ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ jest-message-util@^28.1.3 ā”‚ ā”œā”€ jest-util@^28.1.3 ā”‚ ā””ā”€ slash@^3.0.0 ā”œā”€ @jest/core@28.1.3 ā”‚ ā”œā”€ @jest/console@^28.1.3 ā”‚ ā”œā”€ @jest/reporters@^28.1.3 ā”‚ ā”œā”€ @jest/test-result@^28.1.3 ā”‚ ā”œā”€ @jest/transform@^28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @types/node@* ā”‚ ā”œā”€ ansi-escapes@^4.2.1 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ ci-info@^3.2.0 ā”‚ ā”œā”€ exit@^0.1.2 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā”œā”€ jest-changed-files@^28.1.3 ā”‚ ā”œā”€ jest-config@^28.1.3 ā”‚ ā”œā”€ jest-haste-map@^28.1.3 ā”‚ ā”œā”€ jest-message-util@^28.1.3 ā”‚ ā”œā”€ jest-regex-util@^28.0.2 ā”‚ ā”œā”€ jest-resolve-dependencies@^28.1.3 ā”‚ ā”œā”€ jest-resolve@^28.1.3 ā”‚ ā”œā”€ jest-runner@^28.1.3 ā”‚ ā”œā”€ jest-runtime@^28.1.3 ā”‚ ā”œā”€ jest-snapshot@^28.1.3 ā”‚ ā”œā”€ jest-util@^28.1.3 ā”‚ ā”œā”€ jest-validate@^28.1.3 ā”‚ ā”œā”€ jest-watcher@^28.1.3 ā”‚ ā”œā”€ micromatch@^4.0.4 ā”‚ ā”œā”€ pretty-format@^28.1.3 ā”‚ ā”œā”€ rimraf@^3.0.0 ā”‚ ā”œā”€ slash@^3.0.0 ā”‚ ā””ā”€ strip-ansi@^6.0.0 ā”œā”€ @jest/environment@28.1.3 ā”‚ ā”œā”€ @jest/fake-timers@^28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @types/node@* ā”‚ ā””ā”€ jest-mock@^28.1.3 ā”œā”€ @jest/expect-utils@28.1.3 ā”‚ ā””ā”€ jest-get-type@^28.0.2 ā”œā”€ @jest/expect@28.1.3 ā”‚ ā”œā”€ expect@^28.1.3 ā”‚ ā””ā”€ jest-snapshot@^28.1.3 ā”œā”€ @jest/fake-timers@28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @sinonjs/fake-timers@^9.1.2 ā”‚ ā”œā”€ @types/node@* ā”‚ ā”œā”€ jest-message-util@^28.1.3 ā”‚ ā”œā”€ jest-mock@^28.1.3 ā”‚ ā””ā”€ jest-util@^28.1.3 ā”œā”€ @jest/globals@28.1.3 ā”‚ ā”œā”€ @jest/environment@^28.1.3 ā”‚ ā”œā”€ @jest/expect@^28.1.3 ā”‚ ā””ā”€ @jest/types@^28.1.3 ā”œā”€ @jest/reporters@28.1.3 ā”‚ ā”œā”€ @bcoe/v8-coverage@^0.2.3 ā”‚ ā”œā”€ @jest/console@^28.1.3 ā”‚ ā”œā”€ @jest/test-result@^28.1.3 ā”‚ ā”œā”€ @jest/transform@^28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @jridgewell/trace-mapping@^0.3.13 ā”‚ ā”œā”€ @types/node@* ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ collect-v8-coverage@^1.0.0 ā”‚ ā”œā”€ exit@^0.1.2 ā”‚ ā”œā”€ glob@^7.1.3 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā”œā”€ istanbul-lib-coverage@^3.0.0 ā”‚ ā”œā”€ istanbul-lib-instrument@^5.1.0 ā”‚ ā”œā”€ istanbul-lib-report@^3.0.0 ā”‚ ā”œā”€ istanbul-lib-source-maps@^4.0.0 ā”‚ ā”œā”€ istanbul-reports@^3.1.3 ā”‚ ā”œā”€ jest-message-util@^28.1.3 ā”‚ ā”œā”€ jest-util@^28.1.3 ā”‚ ā”œā”€ jest-worker@^28.1.3 ā”‚ ā”œā”€ slash@^3.0.0 ā”‚ ā”œā”€ string-length@^4.0.1 ā”‚ ā”œā”€ strip-ansi@^6.0.0 ā”‚ ā”œā”€ terminal-link@^2.0.0 ā”‚ ā””ā”€ v8-to-istanbul@^9.0.1 ā”œā”€ @jest/schemas@28.1.3 ā”‚ ā””ā”€ @sinclair/typebox@^0.24.1 ā”œā”€ @jest/source-map@28.1.2 ā”‚ ā”œā”€ @jridgewell/trace-mapping@^0.3.13 ā”‚ ā”œā”€ callsites@^3.0.0 ā”‚ ā””ā”€ graceful-fs@^4.2.9 ā”œā”€ @jest/test-result@28.1.3 ā”‚ ā”œā”€ @jest/console@^28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @types/istanbul-lib-coverage@^2.0.0 ā”‚ ā””ā”€ collect-v8-coverage@^1.0.0 ā”œā”€ @jest/test-sequencer@28.1.3 ā”‚ ā”œā”€ @jest/test-result@^28.1.3 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā”œā”€ jest-haste-map@^28.1.3 ā”‚ ā””ā”€ slash@^3.0.0 ā”œā”€ @jest/transform@28.1.3 ā”‚ ā”œā”€ @babel/core@^7.11.6 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @jridgewell/trace-mapping@^0.3.13 ā”‚ ā”œā”€ babel-plugin-istanbul@^6.1.1 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ convert-source-map@^1.4.0 ā”‚ ā”œā”€ fast-json-stable-stringify@^2.0.0 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā”œā”€ jest-haste-map@^28.1.3 ā”‚ ā”œā”€ jest-regex-util@^28.0.2 ā”‚ ā”œā”€ jest-util@^28.1.3 ā”‚ ā”œā”€ micromatch@^4.0.4 ā”‚ ā”œā”€ pirates@^4.0.4 ā”‚ ā”œā”€ slash@^3.0.0 ā”‚ ā””ā”€ write-file-atomic@^4.0.1 ā”œā”€ @jest/types@28.1.3 ā”‚ ā”œā”€ @jest/schemas@^28.1.3 ā”‚ ā”œā”€ @types/istanbul-lib-coverage@^2.0.0 ā”‚ ā”œā”€ @types/istanbul-reports@^3.0.0 ā”‚ ā”œā”€ @types/node@* ā”‚ ā”œā”€ @types/yargs@^17.0.8 ā”‚ ā””ā”€ chalk@^4.0.0 ā”œā”€ @josephg/resolvable@1.0.1 ā”œā”€ @jridgewell/gen-mapping@0.3.2 ā”‚ ā”œā”€ @jridgewell/set-array@^1.0.1 ā”‚ ā”œā”€ @jridgewell/sourcemap-codec@^1.4.10 ā”‚ ā””ā”€ @jridgewell/trace-mapping@^0.3.9 ā”œā”€ @jridgewell/resolve-uri@3.1.0 ā”œā”€ @jridgewell/set-array@1.1.2 ā”œā”€ @jridgewell/source-map@0.3.2 ā”‚ ā”œā”€ @jridgewell/gen-mapping@^0.3.0 ā”‚ ā””ā”€ @jridgewell/trace-mapping@^0.3.9 ā”œā”€ @jridgewell/sourcemap-codec@1.4.14 ā”œā”€ @jridgewell/trace-mapping@0.3.15 ā”‚ ā”œā”€ @jridgewell/resolve-uri@^3.0.3 ā”‚ ā””ā”€ @jridgewell/sourcemap-codec@^1.4.10 ā”œā”€ @mapbox/node-pre-gyp@1.0.9 ā”‚ ā”œā”€ chownr@2.0.0 ā”‚ ā”œā”€ detect-libc@^2.0.0 ā”‚ ā”œā”€ fs-minipass@2.1.0 ā”‚ ā”‚ ā””ā”€ minipass@^3.0.0 ā”‚ ā”œā”€ https-proxy-agent@^5.0.0 ā”‚ ā”œā”€ make-dir@^3.1.0 ā”‚ ā”œā”€ minipass@3.3.4 ā”‚ ā”‚ ā””ā”€ yallist@^4.0.0 ā”‚ ā”œā”€ minizlib@2.1.2 ā”‚ ā”‚ ā”œā”€ minipass@^3.0.0 ā”‚ ā”‚ ā””ā”€ yallist@^4.0.0 ā”‚ ā”œā”€ node-fetch@^2.6.7 ā”‚ ā”œā”€ nopt@^5.0.0 ā”‚ ā”œā”€ npmlog@^5.0.1 ā”‚ ā”œā”€ rimraf@^3.0.2 ā”‚ ā”œā”€ semver@^7.3.5 ā”‚ ā”œā”€ tar@^6.1.11 ā”‚ ā””ā”€ tar@6.1.11 ā”‚ ā”œā”€ chownr@^2.0.0 ā”‚ ā”œā”€ fs-minipass@^2.0.0 ā”‚ ā”œā”€ minipass@^3.0.0 ā”‚ ā”œā”€ minizlib@^2.1.1 ā”‚ ā”œā”€ mkdirp@^1.0.3 ā”‚ ā””ā”€ yallist@^4.0.0 ā”œā”€ @n1ru4l/graphql-live-query@0.10.0 ā”œā”€ @netlify/functions@1.2.0 ā”‚ ā””ā”€ is-promise@^4.0.0 ā”œā”€ @nodelib/fs.scandir@2.1.5 ā”‚ ā”œā”€ @nodelib/fs.stat@2.0.5 ā”‚ ā””ā”€ run-parallel@^1.1.9 ā”œā”€ @nodelib/fs.stat@2.0.5 ā”œā”€ @nodelib/fs.walk@1.2.8 ā”‚ ā”œā”€ @nodelib/fs.scandir@2.1.5 ā”‚ ā””ā”€ fastq@^1.6.0 ā”œā”€ @nuxt/devalue@2.0.0 ā”œā”€ @nuxt/kit@3.0.0-rc.8 ā”‚ ā”œā”€ @nuxt/schema@3.0.0-rc.8 ā”‚ ā”œā”€ c12@^0.2.9 ā”‚ ā”œā”€ consola@^2.15.3 ā”‚ ā”œā”€ defu@^6.0.0 ā”‚ ā”œā”€ globby@^13.1.2 ā”‚ ā”œā”€ globby@13.1.2 ā”‚ ā”‚ ā”œā”€ dir-glob@^3.0.1 ā”‚ ā”‚ ā”œā”€ fast-glob@^3.2.11 ā”‚ ā”‚ ā”œā”€ ignore@^5.2.0 ā”‚ ā”‚ ā”œā”€ merge2@^1.4.1 ā”‚ ā”‚ ā””ā”€ slash@^4.0.0 ā”‚ ā”œā”€ hash-sum@^2.0.0 ā”‚ ā”œā”€ ignore@^5.2.0 ā”‚ ā”œā”€ jiti@^1.14.0 ā”‚ ā”œā”€ knitwork@^0.1.2 ā”‚ ā”œā”€ lodash.template@^4.5.0 ā”‚ ā”œā”€ mlly@^0.5.12 ā”‚ ā”œā”€ pathe@^0.3.4 ā”‚ ā”œā”€ pkg-types@^0.3.3 ā”‚ ā”œā”€ scule@^0.3.2 ā”‚ ā”œā”€ semver@^7.3.7 ā”‚ ā”œā”€ slash@4.0.0 ā”‚ ā”œā”€ unctx@^2.0.1 ā”‚ ā”œā”€ unimport@^0.6.7 ā”‚ ā””ā”€ untyped@^0.4.5 ā”œā”€ @nuxt/schema@3.0.0-rc.8 ā”‚ ā”œā”€ c12@^0.2.9 ā”‚ ā”œā”€ create-require@^1.1.1 ā”‚ ā”œā”€ defu@^6.0.0 ā”‚ ā”œā”€ jiti@^1.14.0 ā”‚ ā”œā”€ pathe@^0.3.4 ā”‚ ā”œā”€ postcss-import-resolver@^2.0.0 ā”‚ ā”œā”€ scule@^0.3.2 ā”‚ ā”œā”€ std-env@^3.1.1 ā”‚ ā”œā”€ ufo@^0.8.5 ā”‚ ā””ā”€ unimport@^0.6.7 ā”œā”€ @nuxt/telemetry@2.1.4 ā”‚ ā”œā”€ @nuxt/kit@3.0.0-rc.6 ā”‚ ā”œā”€ @nuxt/kit@3.0.0-rc.6 ā”‚ ā”‚ ā”œā”€ @nuxt/schema@^3.0.0-rc.6 ā”‚ ā”‚ ā”œā”€ c12@^0.2.8 ā”‚ ā”‚ ā”œā”€ consola@^2.15.3 ā”‚ ā”‚ ā”œā”€ defu@^6.0.0 ā”‚ ā”‚ ā”œā”€ globby@^13.1.2 ā”‚ ā”‚ ā”œā”€ hash-sum@^2.0.0 ā”‚ ā”‚ ā”œā”€ ignore@^5.2.0 ā”‚ ā”‚ ā”œā”€ jiti@^1.14.0 ā”‚ ā”‚ ā”œā”€ knitwork@^0.1.2 ā”‚ ā”‚ ā”œā”€ lodash.template@^4.5.0 ā”‚ ā”‚ ā”œā”€ mlly@^0.5.4 ā”‚ ā”‚ ā”œā”€ pathe@^0.3.2 ā”‚ ā”‚ ā”œā”€ pkg-types@^0.3.3 ā”‚ ā”‚ ā”œā”€ scule@^0.2.1 ā”‚ ā”‚ ā”œā”€ semver@^7.3.7 ā”‚ ā”‚ ā”œā”€ unctx@^1.1.4 ā”‚ ā”‚ ā”œā”€ unimport@^0.4.5 ā”‚ ā”‚ ā””ā”€ untyped@^0.4.4 ā”‚ ā”œā”€ @rollup/pluginutils@4.2.1 ā”‚ ā”‚ ā”œā”€ estree-walker@^2.0.1 ā”‚ ā”‚ ā””ā”€ picomatch@^2.2.2 ā”‚ ā”œā”€ ansi-escapes@5.0.0 ā”‚ ā”‚ ā””ā”€ type-fest@^1.0.2 ā”‚ ā”œā”€ ansi-regex@6.0.1 ā”‚ ā”œā”€ ansi-styles@6.1.0 ā”‚ ā”œā”€ bl@5.0.0 ā”‚ ā”‚ ā”œā”€ buffer@^6.0.3 ā”‚ ā”‚ ā”œā”€ inherits@^2.0.4 ā”‚ ā”‚ ā””ā”€ readable-stream@^3.4.0 ā”‚ ā”œā”€ buffer@6.0.3 ā”‚ ā”‚ ā”œā”€ base64-js@^1.3.1 ā”‚ ā”‚ ā””ā”€ ieee754@^1.2.1 ā”‚ ā”œā”€ chalk@^5.0.1 ā”‚ ā”œā”€ chalk@5.0.1 ā”‚ ā”œā”€ ci-info@^3.3.2 ā”‚ ā”œā”€ cli-cursor@4.0.0 ā”‚ ā”‚ ā””ā”€ restore-cursor@^4.0.0 ā”‚ ā”œā”€ cli-width@4.0.0 ā”‚ ā”œā”€ consola@^2.15.3 ā”‚ ā”œā”€ create-require@^1.1.1 ā”‚ ā”œā”€ defu@^6.0.0 ā”‚ ā”œā”€ destr@^1.1.1 ā”‚ ā”œā”€ dotenv@^16.0.1 ā”‚ ā”œā”€ emoji-regex@9.2.2 ā”‚ ā”œā”€ figures@4.0.1 ā”‚ ā”‚ ā”œā”€ escape-string-regexp@^5.0.0 ā”‚ ā”‚ ā””ā”€ is-unicode-supported@^1.2.0 ā”‚ ā”œā”€ fs-extra@^10.1.0 ā”‚ ā”œā”€ git-url-parse@^12.0.0 ā”‚ ā”œā”€ globby@13.1.2 ā”‚ ā”‚ ā”œā”€ dir-glob@^3.0.1 ā”‚ ā”‚ ā”œā”€ fast-glob@^3.2.11 ā”‚ ā”‚ ā”œā”€ ignore@^5.2.0 ā”‚ ā”‚ ā”œā”€ merge2@^1.4.1 ā”‚ ā”‚ ā””ā”€ slash@^4.0.0 ā”‚ ā”œā”€ inquirer@^9.1.0 ā”‚ ā”œā”€ inquirer@9.1.0 ā”‚ ā”‚ ā”œā”€ ansi-escapes@^5.0.0 ā”‚ ā”‚ ā”œā”€ chalk@^5.0.1 ā”‚ ā”‚ ā”œā”€ cli-cursor@^4.0.0 ā”‚ ā”‚ ā”œā”€ cli-width@^4.0.0 ā”‚ ā”‚ ā”œā”€ external-editor@^3.0.3 ā”‚ ā”‚ ā”œā”€ figures@^4.0.1 ā”‚ ā”‚ ā”œā”€ lodash@^4.17.21 ā”‚ ā”‚ ā”œā”€ mute-stream@0.0.8 ā”‚ ā”‚ ā”œā”€ ora@^6.1.2 ā”‚ ā”‚ ā”œā”€ run-async@^2.4.0 ā”‚ ā”‚ ā”œā”€ rxjs@^7.5.6 ā”‚ ā”‚ ā”œā”€ string-width@^5.1.2 ā”‚ ā”‚ ā”œā”€ strip-ansi@^7.0.1 ā”‚ ā”‚ ā”œā”€ through@^2.3.6 ā”‚ ā”‚ ā””ā”€ wrap-ansi@^8.0.1 ā”‚ ā”œā”€ is-docker@^3.0.0 ā”‚ ā”œā”€ is-docker@3.0.0 ā”‚ ā”œā”€ is-interactive@2.0.0 ā”‚ ā”œā”€ jiti@^1.14.0 ā”‚ ā”œā”€ log-symbols@5.1.0 ā”‚ ā”‚ ā”œā”€ chalk@^5.0.0 ā”‚ ā”‚ ā””ā”€ is-unicode-supported@^1.1.0 ā”‚ ā”œā”€ mri@^1.2.0 ā”‚ ā”œā”€ nanoid@^4.0.0 ā”‚ ā”œā”€ node-fetch@^3.2.10 ā”‚ ā”œā”€ node-fetch@3.2.10 ā”‚ ā”‚ ā”œā”€ data-uri-to-buffer@^4.0.0 ā”‚ ā”‚ ā”œā”€ fetch-blob@^3.1.4 ā”‚ ā”‚ ā””ā”€ formdata-polyfill@^4.0.10 ā”‚ ā”œā”€ ohmyfetch@^0.4.18 ā”‚ ā”œā”€ ora@6.1.2 ā”‚ ā”‚ ā”œā”€ bl@^5.0.0 ā”‚ ā”‚ ā”œā”€ chalk@^5.0.0 ā”‚ ā”‚ ā”œā”€ cli-cursor@^4.0.0 ā”‚ ā”‚ ā”œā”€ cli-spinners@^2.6.1 ā”‚ ā”‚ ā”œā”€ is-interactive@^2.0.0 ā”‚ ā”‚ ā”œā”€ is-unicode-supported@^1.1.0 ā”‚ ā”‚ ā”œā”€ log-symbols@^5.1.0 ā”‚ ā”‚ ā”œā”€ strip-ansi@^7.0.1 ā”‚ ā”‚ ā””ā”€ wcwidth@^1.0.1 ā”‚ ā”œā”€ parse-git-config@^3.0.0 ā”‚ ā”œā”€ rc9@^1.2.2 ā”‚ ā”œā”€ restore-cursor@4.0.0 ā”‚ ā”‚ ā”œā”€ onetime@^5.1.0 ā”‚ ā”‚ ā””ā”€ signal-exit@^3.0.2 ā”‚ ā”œā”€ scule@0.2.1 ā”‚ ā”œā”€ slash@4.0.0 ā”‚ ā”œā”€ std-env@^3.1.1 ā”‚ ā”œā”€ string-width@5.1.2 ā”‚ ā”‚ ā”œā”€ eastasianwidth@^0.2.0 ā”‚ ā”‚ ā”œā”€ emoji-regex@^9.2.2 ā”‚ ā”‚ ā””ā”€ strip-ansi@^7.0.1 ā”‚ ā”œā”€ strip-ansi@7.0.1 ā”‚ ā”‚ ā””ā”€ ansi-regex@^6.0.1 ā”‚ ā”œā”€ type-fest@1.4.0 ā”‚ ā”œā”€ unctx@1.2.0 ā”‚ ā”‚ ā”œā”€ acorn@^8.7.0 ā”‚ ā”‚ ā”œā”€ estree-walker@^2.0.2 ā”‚ ā”‚ ā”œā”€ magic-string@^0.26.1 ā”‚ ā”‚ ā””ā”€ unplugin@^0.6.1 ā”‚ ā”œā”€ unimport@0.4.7 ā”‚ ā”‚ ā”œā”€ @rollup/pluginutils@^4.2.1 ā”‚ ā”‚ ā”œā”€ escape-string-regexp@^5.0.0 ā”‚ ā”‚ ā”œā”€ fast-glob@^3.2.11 ā”‚ ā”‚ ā”œā”€ local-pkg@^0.4.2 ā”‚ ā”‚ ā”œā”€ magic-string@^0.26.2 ā”‚ ā”‚ ā”œā”€ mlly@^0.5.5 ā”‚ ā”‚ ā”œā”€ pathe@^0.3.2 ā”‚ ā”‚ ā”œā”€ scule@^0.2.1 ā”‚ ā”‚ ā”œā”€ strip-literal@^0.4.0 ā”‚ ā”‚ ā”œā”€ unplugin@^0.7.2 ā”‚ ā”‚ ā””ā”€ unplugin@0.7.2 ā”‚ ā”‚ ā”œā”€ acorn@^8.7.1 ā”‚ ā”‚ ā”œā”€ chokidar@^3.5.3 ā”‚ ā”‚ ā”œā”€ webpack-sources@^3.2.3 ā”‚ ā”‚ ā””ā”€ webpack-virtual-modules@^0.4.4 ā”‚ ā”œā”€ unplugin@0.6.3 ā”‚ ā”‚ ā”œā”€ chokidar@^3.5.3 ā”‚ ā”‚ ā”œā”€ webpack-sources@^3.2.3 ā”‚ ā”‚ ā””ā”€ webpack-virtual-modules@^0.4.3 ā”‚ ā””ā”€ wrap-ansi@8.0.1 ā”‚ ā”œā”€ ansi-styles@^6.1.0 ā”‚ ā”œā”€ string-width@^5.0.1 ā”‚ ā””ā”€ strip-ansi@^7.0.1 ā”œā”€ @nuxt/ui-templates@0.3.2 ā”œā”€ @nuxt/vite-builder@3.0.0-rc.8 ā”‚ ā”œā”€ @esbuild/linux-loong64@0.15.5 ā”‚ ā”œā”€ @nuxt/kit@3.0.0-rc.8 ā”‚ ā”œā”€ @rollup/plugin-replace@^4.0.0 ā”‚ ā”œā”€ @vitejs/plugin-vue-jsx@^2.0.0 ā”‚ ā”œā”€ @vitejs/plugin-vue@^3.0.2 ā”‚ ā”œā”€ autoprefixer@^10.4.8 ā”‚ ā”œā”€ chokidar@^3.5.3 ā”‚ ā”œā”€ cssnano@^5.1.12 ā”‚ ā”œā”€ defu@^6.0.0 ā”‚ ā”œā”€ esbuild-android-64@0.15.5 ā”‚ ā”œā”€ esbuild-android-arm64@0.15.5 ā”‚ ā”œā”€ esbuild-darwin-64@0.15.5 ā”‚ ā”œā”€ esbuild-darwin-arm64@0.15.5 ā”‚ ā”œā”€ esbuild-freebsd-64@0.15.5 ā”‚ ā”œā”€ esbuild-freebsd-arm64@0.15.5 ā”‚ ā”œā”€ esbuild-linux-32@0.15.5 ā”‚ ā”œā”€ esbuild-linux-64@0.15.5 ā”‚ ā”œā”€ esbuild-linux-arm@0.15.5 ā”‚ ā”œā”€ esbuild-linux-arm64@0.15.5 ā”‚ ā”œā”€ esbuild-linux-mips64le@0.15.5 ā”‚ ā”œā”€ esbuild-linux-ppc64le@0.15.5 ā”‚ ā”œā”€ esbuild-linux-riscv64@0.15.5 ā”‚ ā”œā”€ esbuild-linux-s390x@0.15.5 ā”‚ ā”œā”€ esbuild-netbsd-64@0.15.5 ā”‚ ā”œā”€ esbuild-openbsd-64@0.15.5 ā”‚ ā”œā”€ esbuild-sunos-64@0.15.5 ā”‚ ā”œā”€ esbuild-windows-32@0.15.5 ā”‚ ā”œā”€ esbuild-windows-64@0.15.5 ā”‚ ā”œā”€ esbuild-windows-arm64@0.15.5 ā”‚ ā”œā”€ esbuild@^0.15.1 ā”‚ ā”œā”€ esbuild@0.15.5 ā”‚ ā”‚ ā”œā”€ @esbuild/linux-loong64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-android-64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-android-arm64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-darwin-64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-darwin-arm64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-freebsd-64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-freebsd-arm64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-32@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-arm@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-arm64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-mips64le@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-ppc64le@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-riscv64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-s390x@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-netbsd-64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-openbsd-64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-sunos-64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-windows-32@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-windows-64@0.15.5 ā”‚ ā”‚ ā””ā”€ esbuild-windows-arm64@0.15.5 ā”‚ ā”œā”€ escape-string-regexp@^5.0.0 ā”‚ ā”œā”€ estree-walker@^3.0.1 ā”‚ ā”œā”€ estree-walker@3.0.1 ā”‚ ā”œā”€ externality@^0.2.2 ā”‚ ā”œā”€ fs-extra@^10.1.0 ā”‚ ā”œā”€ get-port-please@^2.6.1 ā”‚ ā”œā”€ h3@^0.7.15 ā”‚ ā”œā”€ knitwork@^0.1.2 ā”‚ ā”œā”€ magic-string@^0.26.2 ā”‚ ā”œā”€ mlly@^0.5.12 ā”‚ ā”œā”€ ohash@^0.1.5 ā”‚ ā”œā”€ pathe@^0.3.4 ā”‚ ā”œā”€ perfect-debounce@^0.1.3 ā”‚ ā”œā”€ pkg-types@^0.3.3 ā”‚ ā”œā”€ postcss-import@^14.1.0 ā”‚ ā”œā”€ postcss-url@^10.1.3 ā”‚ ā”œā”€ postcss@^8.4.16 ā”‚ ā”œā”€ rollup-plugin-visualizer@^5.7.1 ā”‚ ā”œā”€ rollup@^2.77.3 ā”‚ ā”œā”€ ufo@^0.8.5 ā”‚ ā”œā”€ unplugin@^0.9.0 ā”‚ ā”œā”€ vite-node@^0.21.1 ā”‚ ā”œā”€ vite-plugin-checker@^0.4.9 ā”‚ ā”œā”€ vite@~3.0.6 ā”‚ ā””ā”€ vue-bundle-renderer@^0.4.1 ā”œā”€ @oozcitak/dom@1.15.10 ā”‚ ā”œā”€ @oozcitak/infra@1.0.8 ā”‚ ā”œā”€ @oozcitak/url@1.0.4 ā”‚ ā””ā”€ @oozcitak/util@8.3.8 ā”œā”€ @oozcitak/infra@1.0.8 ā”‚ ā””ā”€ @oozcitak/util@8.3.8 ā”œā”€ @oozcitak/url@1.0.4 ā”‚ ā”œā”€ @oozcitak/infra@1.0.8 ā”‚ ā””ā”€ @oozcitak/util@8.3.8 ā”œā”€ @oozcitak/util@8.3.8 ā”œā”€ @peculiar/asn1-schema@2.3.0 ā”‚ ā”œā”€ asn1js@^3.0.5 ā”‚ ā”œā”€ pvtsutils@^1.3.2 ā”‚ ā””ā”€ tslib@^2.4.0 ā”œā”€ @peculiar/json-schema@1.1.12 ā”‚ ā””ā”€ tslib@^2.0.0 ā”œā”€ @peculiar/webcrypto@1.4.0 ā”‚ ā”œā”€ @peculiar/asn1-schema@^2.1.6 ā”‚ ā”œā”€ @peculiar/json-schema@^1.1.12 ā”‚ ā”œā”€ pvtsutils@^1.3.2 ā”‚ ā”œā”€ tslib@^2.4.0 ā”‚ ā””ā”€ webcrypto-core@^1.7.4 ā”œā”€ @pinia/nuxt@0.4.1 ā”‚ ā”œā”€ @nuxt/kit@3.0.0-rc.6 ā”‚ ā”œā”€ @nuxt/kit@3.0.0-rc.6 ā”‚ ā”‚ ā”œā”€ @nuxt/schema@^3.0.0-rc.6 ā”‚ ā”‚ ā”œā”€ c12@^0.2.8 ā”‚ ā”‚ ā”œā”€ consola@^2.15.3 ā”‚ ā”‚ ā”œā”€ defu@^6.0.0 ā”‚ ā”‚ ā”œā”€ globby@^13.1.2 ā”‚ ā”‚ ā”œā”€ hash-sum@^2.0.0 ā”‚ ā”‚ ā”œā”€ ignore@^5.2.0 ā”‚ ā”‚ ā”œā”€ jiti@^1.14.0 ā”‚ ā”‚ ā”œā”€ knitwork@^0.1.2 ā”‚ ā”‚ ā”œā”€ lodash.template@^4.5.0 ā”‚ ā”‚ ā”œā”€ mlly@^0.5.4 ā”‚ ā”‚ ā”œā”€ pathe@^0.3.2 ā”‚ ā”‚ ā”œā”€ pkg-types@^0.3.3 ā”‚ ā”‚ ā”œā”€ scule@^0.2.1 ā”‚ ā”‚ ā”œā”€ semver@^7.3.7 ā”‚ ā”‚ ā”œā”€ unctx@^1.1.4 ā”‚ ā”‚ ā”œā”€ unimport@^0.4.5 ā”‚ ā”‚ ā””ā”€ untyped@^0.4.4 ā”‚ ā”œā”€ @rollup/pluginutils@4.2.1 ā”‚ ā”‚ ā”œā”€ estree-walker@^2.0.1 ā”‚ ā”‚ ā””ā”€ picomatch@^2.2.2 ā”‚ ā”œā”€ globby@13.1.2 ā”‚ ā”‚ ā”œā”€ dir-glob@^3.0.1 ā”‚ ā”‚ ā”œā”€ fast-glob@^3.2.11 ā”‚ ā”‚ ā”œā”€ ignore@^5.2.0 ā”‚ ā”‚ ā”œā”€ merge2@^1.4.1 ā”‚ ā”‚ ā””ā”€ slash@^4.0.0 ā”‚ ā”œā”€ pinia@>=2.0.19 ā”‚ ā”œā”€ scule@0.2.1 ā”‚ ā”œā”€ slash@4.0.0 ā”‚ ā”œā”€ unctx@1.2.0 ā”‚ ā”‚ ā”œā”€ acorn@^8.7.0 ā”‚ ā”‚ ā”œā”€ estree-walker@^2.0.2 ā”‚ ā”‚ ā”œā”€ magic-string@^0.26.1 ā”‚ ā”‚ ā””ā”€ unplugin@^0.6.1 ā”‚ ā”œā”€ unimport@0.4.7 ā”‚ ā”‚ ā”œā”€ @rollup/pluginutils@^4.2.1 ā”‚ ā”‚ ā”œā”€ escape-string-regexp@^5.0.0 ā”‚ ā”‚ ā”œā”€ fast-glob@^3.2.11 ā”‚ ā”‚ ā”œā”€ local-pkg@^0.4.2 ā”‚ ā”‚ ā”œā”€ magic-string@^0.26.2 ā”‚ ā”‚ ā”œā”€ mlly@^0.5.5 ā”‚ ā”‚ ā”œā”€ pathe@^0.3.2 ā”‚ ā”‚ ā”œā”€ scule@^0.2.1 ā”‚ ā”‚ ā”œā”€ strip-literal@^0.4.0 ā”‚ ā”‚ ā”œā”€ unplugin@^0.7.2 ā”‚ ā”‚ ā””ā”€ unplugin@0.7.2 ā”‚ ā”‚ ā”œā”€ acorn@^8.7.1 ā”‚ ā”‚ ā”œā”€ chokidar@^3.5.3 ā”‚ ā”‚ ā”œā”€ webpack-sources@^3.2.3 ā”‚ ā”‚ ā””ā”€ webpack-virtual-modules@^0.4.4 ā”‚ ā””ā”€ unplugin@0.6.3 ā”‚ ā”œā”€ chokidar@^3.5.3 ā”‚ ā”œā”€ webpack-sources@^3.2.3 ā”‚ ā””ā”€ webpack-virtual-modules@^0.4.3 ā”œā”€ @polka/url@1.0.0-next.21 ā”œā”€ @pothos/core@3.16.0 ā”œā”€ @pothos/plugin-prisma@3.25.0 ā”‚ ā””ā”€ @prisma/generator-helper@^4.1.1 ā”œā”€ @pothos/plugin-relay@3.21.0 ā”œā”€ @prisma/client@4.2.1 ā”‚ ā””ā”€ @prisma/engines-version@4.2.0-33.2920a97877e12e055c1333079b8d19cee7f33826 ā”œā”€ @prisma/debug@4.2.1 ā”‚ ā”œā”€ @types/debug@4.1.7 ā”‚ ā”œā”€ debug@4.3.4 ā”‚ ā””ā”€ strip-ansi@6.0.1 ā”œā”€ @prisma/engines-version@4.2.0-33.2920a97877e12e055c1333079b8d19cee7f33826 ā”œā”€ @prisma/engines@4.2.1 ā”œā”€ @prisma/generator-helper@4.2.1 ā”‚ ā”œā”€ @prisma/debug@4.2.1 ā”‚ ā”œā”€ @types/cross-spawn@6.0.2 ā”‚ ā”œā”€ chalk@4.1.2 ā”‚ ā””ā”€ cross-spawn@7.0.3 ā”œā”€ @protobufjs/aspromise@1.1.2 ā”œā”€ @protobufjs/base64@1.1.2 ā”œā”€ @protobufjs/codegen@2.0.4 ā”œā”€ @protobufjs/eventemitter@1.1.0 ā”œā”€ @protobufjs/fetch@1.1.0 ā”‚ ā”œā”€ @protobufjs/aspromise@^1.1.1 ā”‚ ā””ā”€ @protobufjs/inquire@^1.1.0 ā”œā”€ @protobufjs/float@1.0.2 ā”œā”€ @protobufjs/inquire@1.1.0 ā”œā”€ @protobufjs/path@1.1.2 ā”œā”€ @protobufjs/pool@1.1.0 ā”œā”€ @protobufjs/utf8@1.1.0 ā”œā”€ @rollup/plugin-alias@3.1.9 ā”‚ ā””ā”€ slash@^3.0.0 ā”œā”€ @rollup/plugin-commonjs@22.0.2 ā”‚ ā”œā”€ @rollup/pluginutils@^3.1.0 ā”‚ ā”œā”€ commondir@^1.0.1 ā”‚ ā”œā”€ estree-walker@^2.0.1 ā”‚ ā”œā”€ glob@^7.1.6 ā”‚ ā”œā”€ is-reference@^1.2.1 ā”‚ ā”œā”€ magic-string@^0.25.7 ā”‚ ā”œā”€ magic-string@0.25.9 ā”‚ ā”‚ ā””ā”€ sourcemap-codec@^1.4.8 ā”‚ ā””ā”€ resolve@^1.17.0 ā”œā”€ @rollup/plugin-inject@4.0.4 ā”‚ ā”œā”€ @rollup/pluginutils@^3.1.0 ā”‚ ā”œā”€ estree-walker@^2.0.1 ā”‚ ā”œā”€ magic-string@^0.25.7 ā”‚ ā””ā”€ magic-string@0.25.9 ā”‚ ā””ā”€ sourcemap-codec@^1.4.8 ā”œā”€ @rollup/plugin-json@4.1.0 ā”‚ ā””ā”€ @rollup/pluginutils@^3.0.8 ā”œā”€ @rollup/plugin-node-resolve@13.3.0 ā”‚ ā”œā”€ @rollup/pluginutils@^3.1.0 ā”‚ ā”œā”€ @types/resolve@1.17.1 ā”‚ ā”œā”€ deepmerge@^4.2.2 ā”‚ ā”œā”€ is-builtin-module@^3.1.0 ā”‚ ā”œā”€ is-module@^1.0.0 ā”‚ ā””ā”€ resolve@^1.19.0 ā”œā”€ @rollup/plugin-replace@4.0.0 ā”‚ ā”œā”€ @rollup/pluginutils@^3.1.0 ā”‚ ā”œā”€ magic-string@^0.25.7 ā”‚ ā””ā”€ magic-string@0.25.9 ā”‚ ā””ā”€ sourcemap-codec@^1.4.8 ā”œā”€ @rollup/plugin-wasm@5.2.0 ā”œā”€ @rollup/pluginutils@3.1.0 ā”‚ ā”œā”€ @types/estree@0.0.39 ā”‚ ā”œā”€ estree-walker@^1.0.1 ā”‚ ā”œā”€ estree-walker@1.0.1 ā”‚ ā””ā”€ picomatch@^2.2.2 ā”œā”€ @sinclair/typebox@0.24.28 ā”œā”€ @sinonjs/commons@1.8.3 ā”‚ ā””ā”€ type-detect@4.0.8 ā”œā”€ @sinonjs/fake-timers@9.1.2 ā”‚ ā””ā”€ @sinonjs/commons@^1.7.0 ā”œā”€ @tootallnate/once@2.0.0 ā”œā”€ @trysound/sax@0.2.0 ā”œā”€ @tsconfig/node10@1.0.9 ā”œā”€ @tsconfig/node12@1.0.11 ā”œā”€ @tsconfig/node14@1.0.3 ā”œā”€ @tsconfig/node16@1.0.3 ā”œā”€ @types/babel__core@7.1.19 ā”‚ ā”œā”€ @babel/parser@^7.1.0 ā”‚ ā”œā”€ @babel/types@^7.0.0 ā”‚ ā”œā”€ @types/babel__generator@* ā”‚ ā”œā”€ @types/babel__template@* ā”‚ ā””ā”€ @types/babel__traverse@* ā”œā”€ @types/babel__generator@7.6.4 ā”‚ ā””ā”€ @babel/types@^7.0.0 ā”œā”€ @types/babel__template@7.4.1 ā”‚ ā”œā”€ @babel/parser@^7.1.0 ā”‚ ā””ā”€ @babel/types@^7.0.0 ā”œā”€ @types/babel__traverse@7.18.0 ā”‚ ā””ā”€ @babel/types@^7.3.0 ā”œā”€ @types/cross-spawn@6.0.2 ā”‚ ā””ā”€ @types/node@* ā”œā”€ @types/debug@4.1.7 ā”‚ ā””ā”€ @types/ms@* ā”œā”€ @types/estree@0.0.39 ā”œā”€ @types/extend@3.0.1 ā”œā”€ @types/graceful-fs@4.1.5 ā”‚ ā””ā”€ @types/node@* ā”œā”€ @types/graphql-fields@1.3.4 ā”‚ ā”œā”€ graphql@^15.3.0 ā”‚ ā””ā”€ graphql@15.8.0 ā”œā”€ @types/hast@2.3.4 ā”‚ ā””ā”€ @types/unist@* ā”œā”€ @types/humanize-plus@1.8.0 ā”œā”€ @types/istanbul-lib-coverage@2.0.4 ā”œā”€ @types/istanbul-lib-report@3.0.0 ā”‚ ā””ā”€ @types/istanbul-lib-coverage@* ā”œā”€ @types/istanbul-reports@3.0.1 ā”‚ ā””ā”€ @types/istanbul-lib-report@* ā”œā”€ @types/jest@28.1.7 ā”‚ ā”œā”€ expect@^28.0.0 ā”‚ ā””ā”€ pretty-format@^28.0.0 ā”œā”€ @types/js-yaml@4.0.5 ā”œā”€ @types/jsdom@20.0.0 ā”‚ ā”œā”€ @types/node@* ā”‚ ā”œā”€ @types/tough-cookie@* ā”‚ ā”œā”€ parse5@^7.0.0 ā”‚ ā””ā”€ parse5@7.0.0 ā”‚ ā””ā”€ entities@^4.3.0 ā”œā”€ @types/json-schema@7.0.11 ā”œā”€ @types/json-stable-stringify@1.0.34 ā”œā”€ @types/json5@0.0.29 ā”œā”€ @types/jsonwebtoken@8.5.8 ā”‚ ā””ā”€ @types/node@* ā”œā”€ @types/linkify-it@3.0.2 ā”œā”€ @types/lodash-es@4.17.6 ā”‚ ā””ā”€ @types/lodash@* ā”œā”€ @types/lodash@4.14.184 ā”œā”€ @types/long@4.0.2 ā”œā”€ @types/markdown-it@12.2.3 ā”‚ ā”œā”€ @types/linkify-it@* ā”‚ ā””ā”€ @types/mdurl@* ā”œā”€ @types/md5@2.3.2 ā”œā”€ @types/mdast@3.0.10 ā”‚ ā””ā”€ @types/unist@* ā”œā”€ @types/mdurl@1.0.2 ā”œā”€ @types/ms@0.7.31 ā”œā”€ @types/nlcst@1.0.0 ā”‚ ā””ā”€ @types/unist@* ā”œā”€ @types/node@18.7.8 ā”œā”€ @types/normalize-package-data@2.4.1 ā”œā”€ @types/parse-json@4.0.0 ā”œā”€ @types/parse5@6.0.3 ā”œā”€ @types/prettier@2.7.0 ā”œā”€ @types/resolve@1.17.1 ā”‚ ā””ā”€ @types/node@* ā”œā”€ @types/sharp@0.30.5 ā”‚ ā””ā”€ @types/node@* ā”œā”€ @types/stack-utils@2.0.1 ā”œā”€ @types/tough-cookie@4.0.2 ā”œā”€ @types/uniqid@5.3.2 ā”œā”€ @types/unist@2.0.6 ā”œā”€ @types/urijs@1.19.19 ā”œā”€ @types/wanakana@4.0.3 ā”œā”€ @types/web-bluetooth@0.0.15 ā”œā”€ @types/ws@8.5.3 ā”‚ ā””ā”€ @types/node@* ā”œā”€ @types/yargs-parser@21.0.0 ā”œā”€ @types/yargs@17.0.11 ā”‚ ā””ā”€ @types/yargs-parser@* ā”œā”€ @types/yauzl@2.10.0 ā”‚ ā””ā”€ @types/node@* ā”œā”€ @typescript-eslint/eslint-plugin@5.33.1 ā”‚ ā”œā”€ @typescript-eslint/scope-manager@5.33.1 ā”‚ ā”œā”€ @typescript-eslint/type-utils@5.33.1 ā”‚ ā”œā”€ @typescript-eslint/utils@5.33.1 ā”‚ ā”œā”€ debug@^4.3.4 ā”‚ ā”œā”€ functional-red-black-tree@^1.0.1 ā”‚ ā”œā”€ ignore@^5.2.0 ā”‚ ā”œā”€ regexpp@^3.2.0 ā”‚ ā”œā”€ semver@^7.3.7 ā”‚ ā””ā”€ tsutils@^3.21.0 ā”œā”€ @typescript-eslint/parser@5.33.1 ā”‚ ā”œā”€ @typescript-eslint/scope-manager@5.33.1 ā”‚ ā”œā”€ @typescript-eslint/types@5.33.1 ā”‚ ā”œā”€ @typescript-eslint/typescript-estree@5.33.1 ā”‚ ā””ā”€ debug@^4.3.4 ā”œā”€ @typescript-eslint/scope-manager@5.33.1 ā”‚ ā”œā”€ @typescript-eslint/types@5.33.1 ā”‚ ā””ā”€ @typescript-eslint/visitor-keys@5.33.1 ā”œā”€ @typescript-eslint/type-utils@5.33.1 ā”‚ ā”œā”€ @typescript-eslint/utils@5.33.1 ā”‚ ā”œā”€ debug@^4.3.4 ā”‚ ā””ā”€ tsutils@^3.21.0 ā”œā”€ @typescript-eslint/types@5.33.1 ā”œā”€ @typescript-eslint/typescript-estree@5.33.1 ā”‚ ā”œā”€ @typescript-eslint/types@5.33.1 ā”‚ ā”œā”€ @typescript-eslint/visitor-keys@5.33.1 ā”‚ ā”œā”€ debug@^4.3.4 ā”‚ ā”œā”€ globby@^11.1.0 ā”‚ ā”œā”€ is-glob@^4.0.3 ā”‚ ā”œā”€ semver@^7.3.7 ā”‚ ā””ā”€ tsutils@^3.21.0 ā”œā”€ @typescript-eslint/utils@5.33.1 ā”‚ ā”œā”€ @types/json-schema@^7.0.9 ā”‚ ā”œā”€ @typescript-eslint/scope-manager@5.33.1 ā”‚ ā”œā”€ @typescript-eslint/types@5.33.1 ā”‚ ā”œā”€ @typescript-eslint/typescript-estree@5.33.1 ā”‚ ā”œā”€ eslint-scope@^5.1.1 ā”‚ ā”œā”€ eslint-scope@5.1.1 ā”‚ ā”‚ ā”œā”€ esrecurse@^4.3.0 ā”‚ ā”‚ ā””ā”€ estraverse@^4.1.1 ā”‚ ā”œā”€ eslint-utils@^3.0.0 ā”‚ ā””ā”€ estraverse@4.3.0 ā”œā”€ @typescript-eslint/visitor-keys@5.33.1 ā”‚ ā”œā”€ @typescript-eslint/types@5.33.1 ā”‚ ā””ā”€ eslint-visitor-keys@^3.3.0 ā”œā”€ @unocss/cli@0.45.8 ā”‚ ā”œā”€ @unocss/config@0.45.8 ā”‚ ā”œā”€ @unocss/core@0.45.8 ā”‚ ā”œā”€ @unocss/preset-uno@0.45.8 ā”‚ ā”œā”€ cac@^6.7.12 ā”‚ ā”œā”€ chokidar@^3.5.3 ā”‚ ā”œā”€ colorette@^2.0.19 ā”‚ ā”œā”€ consola@^2.15.3 ā”‚ ā”œā”€ fast-glob@^3.2.11 ā”‚ ā”œā”€ pathe@^0.3.3 ā”‚ ā””ā”€ perfect-debounce@^0.1.3 ā”œā”€ @unocss/config@0.45.8 ā”‚ ā”œā”€ @unocss/core@0.45.8 ā”‚ ā””ā”€ unconfig@^0.3.5 ā”œā”€ @unocss/core@0.45.8 ā”œā”€ @unocss/inspector@0.45.8 ā”‚ ā”œā”€ gzip-size@^6.0.0 ā”‚ ā”œā”€ gzip-size@6.0.0 ā”‚ ā”‚ ā””ā”€ duplexer@^0.1.2 ā”‚ ā””ā”€ sirv@^2.0.2 ā”œā”€ @unocss/nuxt@0.45.8 ā”‚ ā”œā”€ @nuxt/kit@^3.0.0-rc.6 ā”‚ ā”œā”€ @unocss/core@0.45.8 ā”‚ ā”œā”€ @unocss/preset-attributify@0.45.8 ā”‚ ā”œā”€ @unocss/preset-icons@0.45.8 ā”‚ ā”œā”€ @unocss/preset-tagify@0.45.8 ā”‚ ā”œā”€ @unocss/preset-typography@0.45.8 ā”‚ ā”œā”€ @unocss/preset-uno@0.45.8 ā”‚ ā”œā”€ @unocss/preset-web-fonts@0.45.8 ā”‚ ā”œā”€ @unocss/preset-wind@0.45.8 ā”‚ ā”œā”€ @unocss/reset@0.45.8 ā”‚ ā”œā”€ @unocss/vite@0.45.8 ā”‚ ā”œā”€ @unocss/webpack@0.45.8 ā”‚ ā””ā”€ unocss@0.45.8 ā”œā”€ @unocss/preset-attributify@0.45.8 ā”‚ ā””ā”€ @unocss/core@0.45.8 ā”œā”€ @unocss/preset-icons@0.45.8 ā”‚ ā”œā”€ @iconify/utils@^1.0.33 ā”‚ ā”œā”€ @unocss/core@0.45.8 ā”‚ ā””ā”€ ohmyfetch@^0.4.18 ā”œā”€ @unocss/preset-mini@0.45.8 ā”‚ ā””ā”€ @unocss/core@0.45.8 ā”œā”€ @unocss/preset-tagify@0.45.8 ā”‚ ā””ā”€ @unocss/core@0.45.8 ā”œā”€ @unocss/preset-typography@0.45.8 ā”‚ ā””ā”€ @unocss/core@0.45.8 ā”œā”€ @unocss/preset-uno@0.45.8 ā”‚ ā”œā”€ @unocss/core@0.45.8 ā”‚ ā”œā”€ @unocss/preset-mini@0.45.8 ā”‚ ā””ā”€ @unocss/preset-wind@0.45.8 ā”œā”€ @unocss/preset-web-fonts@0.45.8 ā”‚ ā”œā”€ @unocss/core@0.45.8 ā”‚ ā””ā”€ ohmyfetch@^0.4.18 ā”œā”€ @unocss/preset-wind@0.45.8 ā”‚ ā”œā”€ @unocss/core@0.45.8 ā”‚ ā””ā”€ @unocss/preset-mini@0.45.8 ā”œā”€ @unocss/reset@0.45.8 ā”œā”€ @unocss/scope@0.45.8 ā”œā”€ @unocss/transformer-attributify-jsx@0.45.8 ā”‚ ā””ā”€ @unocss/core@0.45.8 ā”œā”€ @unocss/transformer-compile-class@0.45.8 ā”‚ ā””ā”€ @unocss/core@0.45.8 ā”œā”€ @unocss/transformer-directives@0.45.8 ā”‚ ā”œā”€ @unocss/core@0.45.8 ā”‚ ā”œā”€ css-tree@^2.1.0 ā”‚ ā”œā”€ css-tree@2.2.1 ā”‚ ā”‚ ā”œā”€ mdn-data@2.0.28 ā”‚ ā”‚ ā””ā”€ source-map-js@^1.0.1 ā”‚ ā””ā”€ mdn-data@2.0.28 ā”œā”€ @unocss/transformer-variant-group@0.45.8 ā”‚ ā””ā”€ @unocss/core@0.45.8 ā”œā”€ @unocss/vite@0.45.8 ā”‚ ā”œā”€ @ampproject/remapping@^2.2.0 ā”‚ ā”œā”€ @rollup/pluginutils@^4.2.1 ā”‚ ā”œā”€ @rollup/pluginutils@4.2.1 ā”‚ ā”‚ ā”œā”€ estree-walker@^2.0.1 ā”‚ ā”‚ ā””ā”€ picomatch@^2.2.2 ā”‚ ā”œā”€ @unocss/config@0.45.8 ā”‚ ā”œā”€ @unocss/core@0.45.8 ā”‚ ā”œā”€ @unocss/inspector@0.45.8 ā”‚ ā”œā”€ @unocss/scope@0.45.8 ā”‚ ā”œā”€ @unocss/transformer-directives@0.45.8 ā”‚ ā””ā”€ magic-string@^0.26.2 ā”œā”€ @unocss/webpack@0.45.8 ā”‚ ā”œā”€ @ampproject/remapping@^2.2.0 ā”‚ ā”œā”€ @rollup/pluginutils@^4.2.1 ā”‚ ā”œā”€ @rollup/pluginutils@4.2.1 ā”‚ ā”‚ ā”œā”€ estree-walker@^2.0.1 ā”‚ ā”‚ ā””ā”€ picomatch@^2.2.2 ā”‚ ā”œā”€ @unocss/config@0.45.8 ā”‚ ā”œā”€ @unocss/core@0.45.8 ā”‚ ā”œā”€ magic-string@^0.26.2 ā”‚ ā”œā”€ unplugin@^0.8.1 ā”‚ ā”œā”€ unplugin@0.8.1 ā”‚ ā”‚ ā”œā”€ acorn@^8.8.0 ā”‚ ā”‚ ā”œā”€ chokidar@^3.5.3 ā”‚ ā”‚ ā”œā”€ webpack-sources@^3.2.3 ā”‚ ā”‚ ā””ā”€ webpack-virtual-modules@^0.4.4 ā”‚ ā””ā”€ webpack-sources@^3.2.3 ā”œā”€ @urql/core@3.0.0 ā”‚ ā”œā”€ @graphql-typed-document-node/core@^3.1.1 ā”‚ ā””ā”€ wonka@^6.0.0 ā”œā”€ @urql/exchange-execute@2.0.0 ā”‚ ā”œā”€ @urql/core@>=3.0.0 ā”‚ ā””ā”€ wonka@^6.0.0 ā”œā”€ @urql/exchange-graphcache@5.0.0 ā”‚ ā”œā”€ @urql/core@>=3.0.0 ā”‚ ā””ā”€ wonka@^6.0.0 ā”œā”€ @urql/introspection@1.0.0 ā”œā”€ @urql/vue@1.0.1 ā”‚ ā”œā”€ @urql/core@^3.0.0 ā”‚ ā””ā”€ wonka@^6.0.0 ā”œā”€ @vercel/nft@0.21.0 ā”‚ ā”œā”€ @mapbox/node-pre-gyp@^1.0.5 ā”‚ ā”œā”€ acorn@^8.6.0 ā”‚ ā”œā”€ async-sema@^3.1.1 ā”‚ ā”œā”€ bindings@^1.4.0 ā”‚ ā”œā”€ estree-walker@2.0.2 ā”‚ ā”œā”€ glob@^7.1.3 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā”œā”€ micromatch@^4.0.2 ā”‚ ā”œā”€ node-gyp-build@^4.2.2 ā”‚ ā”œā”€ resolve-from@^5.0.0 ā”‚ ā””ā”€ rollup-pluginutils@^2.8.2 ā”œā”€ @vitejs/plugin-vue-jsx@2.0.0 ā”‚ ā”œā”€ @babel/core@^7.18.6 ā”‚ ā”œā”€ @babel/plugin-syntax-import-meta@^7.10.4 ā”‚ ā”œā”€ @babel/plugin-transform-typescript@^7.18.8 ā”‚ ā””ā”€ @vue/babel-plugin-jsx@^1.1.1 ā”œā”€ @vitejs/plugin-vue@3.0.3 ā”œā”€ @vue/babel-helper-vue-transform-on@1.0.2 ā”œā”€ @vue/babel-plugin-jsx@1.1.1 ā”‚ ā”œā”€ @babel/helper-module-imports@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-syntax-jsx@^7.0.0 ā”‚ ā”œā”€ @babel/template@^7.0.0 ā”‚ ā”œā”€ @babel/traverse@^7.0.0 ā”‚ ā”œā”€ @babel/types@^7.0.0 ā”‚ ā”œā”€ @vue/babel-helper-vue-transform-on@^1.0.2 ā”‚ ā”œā”€ camelcase@^6.0.0 ā”‚ ā”œā”€ camelcase@6.3.0 ā”‚ ā”œā”€ html-tags@^3.1.0 ā”‚ ā””ā”€ svg-tags@^1.0.0 ā”œā”€ @vue/compiler-core@3.2.37 ā”‚ ā”œā”€ @babel/parser@^7.16.4 ā”‚ ā”œā”€ @vue/shared@3.2.37 ā”‚ ā”œā”€ estree-walker@^2.0.2 ā”‚ ā””ā”€ source-map@^0.6.1 ā”œā”€ @vue/compiler-dom@3.2.37 ā”‚ ā”œā”€ @vue/compiler-core@3.2.37 ā”‚ ā””ā”€ @vue/shared@3.2.37 ā”œā”€ @vue/compiler-sfc@3.2.37 ā”‚ ā”œā”€ @babel/parser@^7.16.4 ā”‚ ā”œā”€ @vue/compiler-core@3.2.37 ā”‚ ā”œā”€ @vue/compiler-dom@3.2.37 ā”‚ ā”œā”€ @vue/compiler-ssr@3.2.37 ā”‚ ā”œā”€ @vue/reactivity-transform@3.2.37 ā”‚ ā”œā”€ @vue/shared@3.2.37 ā”‚ ā”œā”€ estree-walker@^2.0.2 ā”‚ ā”œā”€ magic-string@^0.25.7 ā”‚ ā”œā”€ magic-string@0.25.9 ā”‚ ā”‚ ā””ā”€ sourcemap-codec@^1.4.8 ā”‚ ā”œā”€ postcss@^8.1.10 ā”‚ ā””ā”€ source-map@^0.6.1 ā”œā”€ @vue/compiler-ssr@3.2.37 ā”‚ ā”œā”€ @vue/compiler-dom@3.2.37 ā”‚ ā””ā”€ @vue/shared@3.2.37 ā”œā”€ @vue/composition-api@1.7.0 ā”œā”€ @vue/devtools-api@6.2.1 ā”œā”€ @vue/reactivity-transform@3.2.37 ā”‚ ā”œā”€ @babel/parser@^7.16.4 ā”‚ ā”œā”€ @vue/compiler-core@3.2.37 ā”‚ ā”œā”€ @vue/shared@3.2.37 ā”‚ ā”œā”€ estree-walker@^2.0.2 ā”‚ ā”œā”€ magic-string@^0.25.7 ā”‚ ā””ā”€ magic-string@0.25.9 ā”‚ ā””ā”€ sourcemap-codec@^1.4.8 ā”œā”€ @vue/reactivity@3.2.37 ā”‚ ā””ā”€ @vue/shared@3.2.37 ā”œā”€ @vue/runtime-core@3.2.37 ā”‚ ā”œā”€ @vue/reactivity@3.2.37 ā”‚ ā””ā”€ @vue/shared@3.2.37 ā”œā”€ @vue/runtime-dom@3.2.37 ā”‚ ā”œā”€ @vue/runtime-core@3.2.37 ā”‚ ā”œā”€ @vue/shared@3.2.37 ā”‚ ā””ā”€ csstype@^2.6.8 ā”œā”€ @vue/server-renderer@3.2.37 ā”‚ ā”œā”€ @vue/compiler-ssr@3.2.37 ā”‚ ā””ā”€ @vue/shared@3.2.37 ā”œā”€ @vue/shared@3.2.37 ā”œā”€ @vueuse/components@9.1.0 ā”‚ ā”œā”€ @vueuse/core@9.1.0 ā”‚ ā”œā”€ @vueuse/shared@9.1.0 ā”‚ ā””ā”€ vue-demi@* ā”œā”€ @vueuse/core@9.1.0 ā”‚ ā”œā”€ @types/web-bluetooth@^0.0.15 ā”‚ ā”œā”€ @vueuse/metadata@9.1.0 ā”‚ ā”œā”€ @vueuse/shared@9.1.0 ā”‚ ā””ā”€ vue-demi@* ā”œā”€ @vueuse/head@0.7.9 ā”œā”€ @vueuse/integrations@9.1.0 ā”‚ ā”œā”€ @vueuse/core@9.1.0 ā”‚ ā”œā”€ @vueuse/shared@9.1.0 ā”‚ ā””ā”€ vue-demi@* ā”œā”€ @vueuse/metadata@9.1.0 ā”œā”€ @vueuse/nuxt@9.1.0 ā”‚ ā”œā”€ @nuxt/kit@^3.0.0-rc.6 ā”‚ ā”œā”€ @vueuse/core@9.1.0 ā”‚ ā”œā”€ @vueuse/metadata@9.1.0 ā”‚ ā”œā”€ local-pkg@^0.4.2 ā”‚ ā””ā”€ vue-demi@* ā”œā”€ @vueuse/schema-org-vite@1.0.0-beta.16 ā”‚ ā”œā”€ @vueuse/schema-org@1.0.0-beta.16 ā”‚ ā”œā”€ magic-string@^0.26.2 ā”‚ ā”œā”€ mlly@^0.5.12 ā”‚ ā”œā”€ pathe@^0.3.4 ā”‚ ā”œā”€ schema-dts@^1.1.0 ā”‚ ā””ā”€ unplugin@^0.9.2 ā”œā”€ @vueuse/schema-org@1.0.0-beta.16 ā”‚ ā””ā”€ schema-org-graph-js@0.3.3 ā”œā”€ @vueuse/shared@9.1.0 ā”‚ ā””ā”€ vue-demi@* ā”œā”€ @whatwg-node/fetch@0.2.9 ā”‚ ā”œā”€ @peculiar/webcrypto@^1.4.0 ā”‚ ā”œā”€ abort-controller@^3.0.0 ā”‚ ā”œā”€ busboy@^1.6.0 ā”‚ ā”œā”€ event-target-polyfill@^0.0.3 ā”‚ ā”œā”€ form-data-encoder@^1.7.1 ā”‚ ā”œā”€ formdata-node@^4.3.1 ā”‚ ā”œā”€ node-fetch@^2.6.7 ā”‚ ā”œā”€ undici@^5.8.0 ā”‚ ā””ā”€ web-streams-polyfill@^3.2.0 ā”œā”€ abbrev@1.1.1 ā”œā”€ abort-controller@3.0.0 ā”‚ ā””ā”€ event-target-shim@^5.0.0 ā”œā”€ acorn-jsx@5.3.2 ā”œā”€ acorn-walk@8.2.0 ā”œā”€ acorn@8.8.0 ā”œā”€ agent-base@6.0.2 ā”‚ ā””ā”€ debug@4 ā”œā”€ aggregate-error@3.1.0 ā”‚ ā”œā”€ clean-stack@^2.0.0 ā”‚ ā””ā”€ indent-string@^4.0.0 ā”œā”€ ajv@6.12.6 ā”‚ ā”œā”€ fast-deep-equal@^3.1.1 ā”‚ ā”œā”€ fast-json-stable-stringify@^2.0.0 ā”‚ ā”œā”€ json-schema-traverse@^0.4.1 ā”‚ ā””ā”€ uri-js@^4.2.2 ā”œā”€ ansi-escapes@4.3.2 ā”‚ ā””ā”€ type-fest@^0.21.3 ā”œā”€ ansi-regex@5.0.1 ā”œā”€ ansi-styles@4.3.0 ā”‚ ā””ā”€ color-convert@^2.0.1 ā”œā”€ anymatch@3.1.2 ā”‚ ā”œā”€ normalize-path@^3.0.0 ā”‚ ā””ā”€ picomatch@^2.0.4 ā”œā”€ apollo-datasource@3.3.2 ā”‚ ā”œā”€ @apollo/utils.keyvaluecache@^1.0.1 ā”‚ ā””ā”€ apollo-server-env@^4.2.1 ā”œā”€ apollo-reporting-protobuf@3.3.2 ā”‚ ā””ā”€ @apollo/protobufjs@1.2.4 ā”œā”€ apollo-server-core@3.10.1 ā”‚ ā”œā”€ @apollo/utils.keyvaluecache@^1.0.1 ā”‚ ā”œā”€ @apollo/utils.logger@^1.0.0 ā”‚ ā”œā”€ @apollo/utils.usagereporting@^1.0.0 ā”‚ ā”œā”€ @apollographql/apollo-tools@^0.5.3 ā”‚ ā”œā”€ @apollographql/graphql-playground-html@1.6.29 ā”‚ ā”œā”€ @graphql-tools/merge@8.3.1 ā”‚ ā”‚ ā”œā”€ @graphql-tools/utils@8.9.0 ā”‚ ā”‚ ā””ā”€ tslib@^2.4.0 ā”‚ ā”œā”€ @graphql-tools/mock@^8.1.2 ā”‚ ā”œā”€ @graphql-tools/schema@^8.0.0 ā”‚ ā”œā”€ @graphql-tools/schema@8.5.1 ā”‚ ā”‚ ā”œā”€ @graphql-tools/merge@8.3.1 ā”‚ ā”‚ ā”œā”€ @graphql-tools/utils@8.9.0 ā”‚ ā”‚ ā”œā”€ tslib@^2.4.0 ā”‚ ā”‚ ā””ā”€ value-or-promise@1.0.11 ā”‚ ā”œā”€ @graphql-tools/utils@8.9.0 ā”‚ ā”‚ ā””ā”€ tslib@^2.4.0 ā”‚ ā”œā”€ @josephg/resolvable@^1.0.0 ā”‚ ā”œā”€ apollo-datasource@^3.3.2 ā”‚ ā”œā”€ apollo-reporting-protobuf@^3.3.2 ā”‚ ā”œā”€ apollo-server-env@^4.2.1 ā”‚ ā”œā”€ apollo-server-errors@^3.3.1 ā”‚ ā”œā”€ apollo-server-plugin-base@^3.6.2 ā”‚ ā”œā”€ apollo-server-types@^3.6.2 ā”‚ ā”œā”€ async-retry@^1.2.1 ā”‚ ā”œā”€ fast-json-stable-stringify@^2.1.0 ā”‚ ā”œā”€ graphql-tag@^2.11.0 ā”‚ ā”œā”€ loglevel@^1.6.8 ā”‚ ā”œā”€ lru-cache@^6.0.0 ā”‚ ā”œā”€ sha.js@^2.4.11 ā”‚ ā”œā”€ uuid@^8.0.0 ā”‚ ā””ā”€ whatwg-mimetype@^3.0.0 ā”œā”€ apollo-server-env@4.2.1 ā”‚ ā””ā”€ node-fetch@^2.6.7 ā”œā”€ apollo-server-errors@3.3.1 ā”œā”€ apollo-server-plugin-base@3.6.2 ā”‚ ā””ā”€ apollo-server-types@^3.6.2 ā”œā”€ apollo-server-types@3.6.2 ā”‚ ā”œā”€ @apollo/utils.keyvaluecache@^1.0.1 ā”‚ ā”œā”€ @apollo/utils.logger@^1.0.0 ā”‚ ā”œā”€ apollo-reporting-protobuf@^3.3.2 ā”‚ ā””ā”€ apollo-server-env@^4.2.1 ā”œā”€ aproba@2.0.0 ā”œā”€ arch@2.2.0 ā”œā”€ archiver-utils@2.1.0 ā”‚ ā”œā”€ glob@^7.1.4 ā”‚ ā”œā”€ graceful-fs@^4.2.0 ā”‚ ā”œā”€ lazystream@^1.0.0 ā”‚ ā”œā”€ lodash.defaults@^4.2.0 ā”‚ ā”œā”€ lodash.difference@^4.5.0 ā”‚ ā”œā”€ lodash.flatten@^4.4.0 ā”‚ ā”œā”€ lodash.isplainobject@^4.0.6 ā”‚ ā”œā”€ lodash.union@^4.6.0 ā”‚ ā”œā”€ normalize-path@^3.0.0 ā”‚ ā”œā”€ readable-stream@^2.0.0 ā”‚ ā”œā”€ readable-stream@2.3.7 ā”‚ ā”‚ ā”œā”€ core-util-is@~1.0.0 ā”‚ ā”‚ ā”œā”€ inherits@~2.0.3 ā”‚ ā”‚ ā”œā”€ isarray@~1.0.0 ā”‚ ā”‚ ā”œā”€ process-nextick-args@~2.0.0 ā”‚ ā”‚ ā”œā”€ safe-buffer@~5.1.1 ā”‚ ā”‚ ā”œā”€ string_decoder@~1.1.1 ā”‚ ā”‚ ā””ā”€ util-deprecate@~1.0.1 ā”‚ ā”œā”€ safe-buffer@5.1.2 ā”‚ ā””ā”€ string_decoder@1.1.1 ā”‚ ā””ā”€ safe-buffer@~5.1.0 ā”œā”€ archiver@5.3.1 ā”‚ ā”œā”€ archiver-utils@^2.1.0 ā”‚ ā”œā”€ async@^3.2.3 ā”‚ ā”œā”€ buffer-crc32@^0.2.1 ā”‚ ā”œā”€ readable-stream@^3.6.0 ā”‚ ā”œā”€ readdir-glob@^1.0.0 ā”‚ ā”œā”€ tar-stream@^2.2.0 ā”‚ ā””ā”€ zip-stream@^4.1.0 ā”œā”€ are-we-there-yet@2.0.0 ā”‚ ā”œā”€ delegates@^1.0.0 ā”‚ ā””ā”€ readable-stream@^3.6.0 ā”œā”€ arg@4.1.3 ā”œā”€ argparse@1.0.10 ā”‚ ā””ā”€ sprintf-js@~1.0.2 ā”œā”€ arr-union@3.1.0 ā”œā”€ array-includes@3.1.5 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ define-properties@^1.1.4 ā”‚ ā”œā”€ es-abstract@^1.19.5 ā”‚ ā”œā”€ get-intrinsic@^1.1.1 ā”‚ ā””ā”€ is-string@^1.0.7 ā”œā”€ array-iterate@1.1.4 ā”œā”€ array-union@2.1.0 ā”œā”€ array.prototype.flat@1.3.0 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ define-properties@^1.1.3 ā”‚ ā”œā”€ es-abstract@^1.19.2 ā”‚ ā””ā”€ es-shim-unscopables@^1.0.0 ā”œā”€ array.prototype.flatmap@1.3.0 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ define-properties@^1.1.3 ā”‚ ā”œā”€ es-abstract@^1.19.2 ā”‚ ā””ā”€ es-shim-unscopables@^1.0.0 ā”œā”€ arrify@2.0.1 ā”œā”€ asap@2.0.6 ā”œā”€ asn1js@3.0.5 ā”‚ ā”œā”€ pvtsutils@^1.3.2 ā”‚ ā”œā”€ pvutils@^1.1.3 ā”‚ ā””ā”€ tslib@^2.4.0 ā”œā”€ astral-regex@2.0.0 ā”œā”€ async-retry@1.3.3 ā”‚ ā””ā”€ retry@0.13.1 ā”œā”€ async-sema@3.1.1 ā”œā”€ async@3.2.4 ā”œā”€ asynckit@0.4.0 ā”œā”€ auto-bind@4.0.0 ā”œā”€ autoprefixer@10.4.8 ā”‚ ā”œā”€ browserslist@^4.21.3 ā”‚ ā”œā”€ caniuse-lite@^1.0.30001373 ā”‚ ā”œā”€ fraction.js@^4.2.0 ā”‚ ā”œā”€ normalize-range@^0.1.2 ā”‚ ā”œā”€ picocolors@^1.0.0 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ available-typed-arrays@1.0.5 ā”œā”€ aws-sdk@2.1199.0 ā”‚ ā”œā”€ buffer@4.9.2 ā”‚ ā”œā”€ buffer@4.9.2 ā”‚ ā”‚ ā”œā”€ base64-js@^1.0.2 ā”‚ ā”‚ ā”œā”€ ieee754@^1.1.4 ā”‚ ā”‚ ā”œā”€ ieee754@1.2.1 ā”‚ ā”‚ ā””ā”€ isarray@^1.0.0 ā”‚ ā”œā”€ events@1.1.1 ā”‚ ā”œā”€ ieee754@1.1.13 ā”‚ ā”œā”€ ieee754@1.1.13 ā”‚ ā”œā”€ jmespath@0.16.0 ā”‚ ā”œā”€ querystring@0.2.0 ā”‚ ā”œā”€ sax@1.2.1 ā”‚ ā”œā”€ url@0.10.3 ā”‚ ā”œā”€ util@^0.12.4 ā”‚ ā”œā”€ uuid@8.0.0 ā”‚ ā”œā”€ uuid@8.0.0 ā”‚ ā””ā”€ xml2js@0.4.19 ā”œā”€ axios@0.27.2 ā”‚ ā”œā”€ follow-redirects@^1.14.9 ā”‚ ā””ā”€ form-data@^4.0.0 ā”œā”€ babel-jest@28.1.3 ā”‚ ā”œā”€ @jest/transform@^28.1.3 ā”‚ ā”œā”€ @types/babel__core@^7.1.14 ā”‚ ā”œā”€ babel-plugin-istanbul@^6.1.1 ā”‚ ā”œā”€ babel-preset-jest@^28.1.3 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā””ā”€ slash@^3.0.0 ā”œā”€ babel-plugin-dynamic-import-node@2.3.3 ā”‚ ā””ā”€ object.assign@^4.1.0 ā”œā”€ babel-plugin-istanbul@6.1.1 ā”‚ ā”œā”€ @babel/helper-plugin-utils@^7.0.0 ā”‚ ā”œā”€ @istanbuljs/load-nyc-config@^1.0.0 ā”‚ ā”œā”€ @istanbuljs/schema@^0.1.2 ā”‚ ā”œā”€ istanbul-lib-instrument@^5.0.4 ā”‚ ā””ā”€ test-exclude@^6.0.0 ā”œā”€ babel-plugin-jest-hoist@28.1.3 ā”‚ ā”œā”€ @babel/template@^7.3.3 ā”‚ ā”œā”€ @babel/types@^7.3.3 ā”‚ ā”œā”€ @types/babel__core@^7.1.14 ā”‚ ā””ā”€ @types/babel__traverse@^7.0.6 ā”œā”€ babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0 ā”œā”€ babel-preset-current-node-syntax@1.0.1 ā”‚ ā”œā”€ @babel/plugin-syntax-async-generators@^7.8.4 ā”‚ ā”œā”€ @babel/plugin-syntax-bigint@^7.8.3 ā”‚ ā”œā”€ @babel/plugin-syntax-class-properties@^7.8.3 ā”‚ ā”œā”€ @babel/plugin-syntax-import-meta@^7.8.3 ā”‚ ā”œā”€ @babel/plugin-syntax-json-strings@^7.8.3 ā”‚ ā”œā”€ @babel/plugin-syntax-logical-assignment-operators@^7.8.3 ā”‚ ā”œā”€ @babel/plugin-syntax-nullish-coalescing-operator@^7.8.3 ā”‚ ā”œā”€ @babel/plugin-syntax-numeric-separator@^7.8.3 ā”‚ ā”œā”€ @babel/plugin-syntax-object-rest-spread@^7.8.3 ā”‚ ā”œā”€ @babel/plugin-syntax-optional-catch-binding@^7.8.3 ā”‚ ā”œā”€ @babel/plugin-syntax-optional-chaining@^7.8.3 ā”‚ ā””ā”€ @babel/plugin-syntax-top-level-await@^7.8.3 ā”œā”€ babel-preset-fbjs@3.4.0 ā”‚ ā”œā”€ @babel/plugin-proposal-class-properties@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-proposal-object-rest-spread@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-syntax-class-properties@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-syntax-flow@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-syntax-jsx@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-syntax-object-rest-spread@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-arrow-functions@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-block-scoped-functions@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-block-scoping@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-classes@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-computed-properties@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-destructuring@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-flow-strip-types@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-for-of@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-function-name@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-literals@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-member-expression-literals@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-modules-commonjs@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-object-super@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-parameters@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-property-literals@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-react-display-name@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-react-jsx@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-shorthand-properties@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-spread@^7.0.0 ā”‚ ā”œā”€ @babel/plugin-transform-template-literals@^7.0.0 ā”‚ ā””ā”€ babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0 ā”œā”€ babel-preset-jest@28.1.3 ā”‚ ā”œā”€ babel-plugin-jest-hoist@^28.1.3 ā”‚ ā””ā”€ babel-preset-current-node-syntax@^1.0.0 ā”œā”€ bail@2.0.2 ā”œā”€ balanced-match@1.0.2 ā”œā”€ base64-js@1.5.1 ā”œā”€ bcp-47-match@2.0.2 ā”œā”€ bcp-47-normalize@2.1.0 ā”‚ ā”œā”€ bcp-47-match@^2.0.0 ā”‚ ā””ā”€ bcp-47@^2.0.0 ā”œā”€ bcp-47@2.1.0 ā”‚ ā”œā”€ is-alphabetical@^2.0.0 ā”‚ ā”œā”€ is-alphanumerical@^2.0.0 ā”‚ ā””ā”€ is-decimal@^2.0.0 ā”œā”€ bignumber.js@9.1.0 ā”œā”€ binary-extensions@2.2.0 ā”œā”€ bindings@1.5.0 ā”‚ ā””ā”€ file-uri-to-path@1.0.0 ā”œā”€ bl@4.1.0 ā”‚ ā”œā”€ buffer@^5.5.0 ā”‚ ā”œā”€ inherits@^2.0.4 ā”‚ ā””ā”€ readable-stream@^3.4.0 ā”œā”€ bluebird@3.7.2 ā”œā”€ boolbase@1.0.0 ā”œā”€ brace-expansion@1.1.11 ā”‚ ā”œā”€ balanced-match@^1.0.0 ā”‚ ā””ā”€ concat-map@0.0.1 ā”œā”€ braces@3.0.2 ā”‚ ā””ā”€ fill-range@^7.0.1 ā”œā”€ browserslist@4.21.3 ā”‚ ā”œā”€ caniuse-lite@^1.0.30001370 ā”‚ ā”œā”€ electron-to-chromium@^1.4.202 ā”‚ ā”œā”€ node-releases@^2.0.6 ā”‚ ā””ā”€ update-browserslist-db@^1.0.5 ā”œā”€ bs-logger@0.2.6 ā”‚ ā””ā”€ fast-json-stable-stringify@2.x ā”œā”€ bser@2.1.1 ā”‚ ā””ā”€ node-int64@^0.4.0 ā”œā”€ bson-objectid@2.0.3 ā”œā”€ buffer-crc32@0.2.13 ā”œā”€ buffer-equal-constant-time@1.0.1 ā”œā”€ buffer-from@1.1.2 ā”œā”€ buffer@5.7.1 ā”‚ ā”œā”€ base64-js@^1.3.1 ā”‚ ā””ā”€ ieee754@^1.1.13 ā”œā”€ builtin-modules@3.3.0 ā”œā”€ builtins@5.0.1 ā”‚ ā””ā”€ semver@^7.0.0 ā”œā”€ busboy@1.6.0 ā”‚ ā””ā”€ streamsearch@^1.1.0 ā”œā”€ c12@0.2.9 ā”‚ ā”œā”€ defu@^6.0.0 ā”‚ ā”œā”€ dotenv@^16.0.1 ā”‚ ā”œā”€ gittar@^0.1.1 ā”‚ ā”œā”€ jiti@^1.14.0 ā”‚ ā”œā”€ mlly@^0.5.7 ā”‚ ā”œā”€ pathe@^0.3.3 ā”‚ ā””ā”€ rc9@^1.2.2 ā”œā”€ cac@6.7.12 ā”œā”€ call-bind@1.0.2 ā”‚ ā”œā”€ function-bind@^1.1.1 ā”‚ ā””ā”€ get-intrinsic@^1.0.2 ā”œā”€ callsites@3.1.0 ā”œā”€ camel-case@4.1.2 ā”‚ ā”œā”€ pascal-case@^3.1.2 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ camelcase@5.3.1 ā”œā”€ caniuse-api@3.0.0 ā”‚ ā”œā”€ browserslist@^4.0.0 ā”‚ ā”œā”€ caniuse-lite@^1.0.0 ā”‚ ā”œā”€ lodash.memoize@^4.1.2 ā”‚ ā””ā”€ lodash.uniq@^4.5.0 ā”œā”€ caniuse-lite@1.0.30001379 ā”œā”€ capital-case@1.0.4 ā”‚ ā”œā”€ no-case@^3.0.4 ā”‚ ā”œā”€ tslib@^2.0.3 ā”‚ ā””ā”€ upper-case-first@^2.0.2 ā”œā”€ catharsis@0.9.0 ā”‚ ā””ā”€ lodash@^4.17.15 ā”œā”€ ccount@2.0.1 ā”œā”€ chalk@4.1.2 ā”‚ ā”œā”€ ansi-styles@^4.1.0 ā”‚ ā””ā”€ supports-color@^7.1.0 ā”œā”€ change-case-all@1.0.14 ā”‚ ā”œā”€ change-case@^4.1.2 ā”‚ ā”œā”€ is-lower-case@^2.0.2 ā”‚ ā”œā”€ is-upper-case@^2.0.2 ā”‚ ā”œā”€ lower-case-first@^2.0.2 ā”‚ ā”œā”€ lower-case@^2.0.2 ā”‚ ā”œā”€ sponge-case@^1.0.1 ā”‚ ā”œā”€ swap-case@^2.0.2 ā”‚ ā”œā”€ title-case@^3.0.3 ā”‚ ā”œā”€ upper-case-first@^2.0.2 ā”‚ ā””ā”€ upper-case@^2.0.2 ā”œā”€ change-case@4.1.2 ā”‚ ā”œā”€ camel-case@^4.1.2 ā”‚ ā”œā”€ capital-case@^1.0.4 ā”‚ ā”œā”€ constant-case@^3.0.4 ā”‚ ā”œā”€ dot-case@^3.0.4 ā”‚ ā”œā”€ header-case@^2.0.4 ā”‚ ā”œā”€ no-case@^3.0.4 ā”‚ ā”œā”€ param-case@^3.0.4 ā”‚ ā”œā”€ pascal-case@^3.1.2 ā”‚ ā”œā”€ path-case@^3.0.4 ā”‚ ā”œā”€ sentence-case@^3.0.4 ā”‚ ā”œā”€ snake-case@^3.0.4 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ char-regex@1.0.2 ā”œā”€ character-entities-html4@2.1.0 ā”œā”€ character-entities-legacy@3.0.0 ā”œā”€ character-entities@2.0.2 ā”œā”€ character-reference-invalid@1.1.4 ā”œā”€ chardet@0.7.0 ā”œā”€ charenc@0.0.2 ā”œā”€ chokidar@3.5.3 ā”‚ ā”œā”€ anymatch@~3.1.2 ā”‚ ā”œā”€ braces@~3.0.2 ā”‚ ā”œā”€ fsevents@~2.3.2 ā”‚ ā”œā”€ glob-parent@~5.1.2 ā”‚ ā”œā”€ is-binary-path@~2.1.0 ā”‚ ā”œā”€ is-glob@~4.0.1 ā”‚ ā”œā”€ normalize-path@~3.0.0 ā”‚ ā””ā”€ readdirp@~3.6.0 ā”œā”€ chownr@1.1.4 ā”œā”€ ci-info@3.3.2 ā”œā”€ cjs-module-lexer@1.2.2 ā”œā”€ class-validator@0.13.2 ā”‚ ā”œā”€ libphonenumber-js@^1.9.43 ā”‚ ā””ā”€ validator@^13.7.0 ā”œā”€ clean-css@5.3.1 ā”‚ ā””ā”€ source-map@~0.6.0 ā”œā”€ clean-regexp@1.0.0 ā”‚ ā”œā”€ escape-string-regexp@^1.0.5 ā”‚ ā””ā”€ escape-string-regexp@1.0.5 ā”œā”€ clean-stack@2.2.0 ā”œā”€ cli-cursor@3.1.0 ā”‚ ā””ā”€ restore-cursor@^3.1.0 ā”œā”€ cli-spinners@2.7.0 ā”œā”€ cli-truncate@2.1.0 ā”‚ ā”œā”€ slice-ansi@^3.0.0 ā”‚ ā””ā”€ string-width@^4.2.0 ā”œā”€ cli-width@3.0.0 ā”œā”€ clipboardy@3.0.0 ā”‚ ā”œā”€ arch@^2.2.0 ā”‚ ā”œā”€ execa@^5.1.1 ā”‚ ā””ā”€ is-wsl@^2.2.0 ā”œā”€ cliui@7.0.4 ā”‚ ā”œā”€ string-width@^4.2.0 ā”‚ ā”œā”€ strip-ansi@^6.0.0 ā”‚ ā””ā”€ wrap-ansi@^7.0.0 ā”œā”€ clone-deep@0.2.4 ā”‚ ā”œā”€ for-own@^0.1.3 ā”‚ ā”œā”€ is-plain-object@^2.0.1 ā”‚ ā”œā”€ kind-of@^3.0.2 ā”‚ ā”œā”€ lazy-cache@^1.0.3 ā”‚ ā””ā”€ shallow-clone@^0.1.2 ā”œā”€ clone@1.0.4 ā”œā”€ cluster-key-slot@1.1.0 ā”œā”€ co@4.6.0 ā”œā”€ collect-v8-coverage@1.0.1 ā”œā”€ color-convert@2.0.1 ā”‚ ā””ā”€ color-name@~1.1.4 ā”œā”€ color-name@1.1.4 ā”œā”€ color-string@1.9.1 ā”‚ ā”œā”€ color-name@^1.0.0 ā”‚ ā””ā”€ simple-swizzle@^0.2.2 ā”œā”€ color-support@1.1.3 ā”œā”€ color@4.2.3 ā”‚ ā”œā”€ color-convert@^2.0.1 ā”‚ ā””ā”€ color-string@^1.9.0 ā”œā”€ colord@2.9.3 ā”œā”€ colorette@2.0.19 ā”œā”€ combined-stream@1.0.8 ā”‚ ā””ā”€ delayed-stream@~1.0.0 ā”œā”€ comma-separated-tokens@2.0.2 ā”œā”€ commander@2.20.3 ā”œā”€ common-tags@1.8.2 ā”œā”€ commondir@1.0.1 ā”œā”€ compress-commons@4.1.1 ā”‚ ā”œā”€ buffer-crc32@^0.2.13 ā”‚ ā”œā”€ crc32-stream@^4.0.2 ā”‚ ā”œā”€ normalize-path@^3.0.0 ā”‚ ā””ā”€ readable-stream@^3.6.0 ā”œā”€ compressible@2.0.18 ā”‚ ā””ā”€ mime-db@>= 1.43.0 < 2 ā”œā”€ concat-map@0.0.1 ā”œā”€ consola@2.15.3 ā”œā”€ console-control-strings@1.1.0 ā”œā”€ constant-case@3.0.4 ā”‚ ā”œā”€ no-case@^3.0.4 ā”‚ ā”œā”€ tslib@^2.0.3 ā”‚ ā””ā”€ upper-case@^2.0.2 ā”œā”€ convert-source-map@1.8.0 ā”‚ ā”œā”€ safe-buffer@~5.1.1 ā”‚ ā””ā”€ safe-buffer@5.1.2 ā”œā”€ cookie-es@0.5.0 ā”œā”€ core-util-is@1.0.3 ā”œā”€ cosmiconfig-toml-loader@1.0.0 ā”‚ ā””ā”€ @iarna/toml@^2.2.5 ā”œā”€ cosmiconfig-typescript-loader@3.1.1 ā”œā”€ cosmiconfig@7.0.1 ā”‚ ā”œā”€ @types/parse-json@^4.0.0 ā”‚ ā”œā”€ import-fresh@^3.2.1 ā”‚ ā”œā”€ parse-json@^5.0.0 ā”‚ ā”œā”€ path-type@^4.0.0 ā”‚ ā””ā”€ yaml@^1.10.0 ā”œā”€ crc-32@1.2.2 ā”œā”€ crc32-stream@4.0.2 ā”‚ ā”œā”€ crc-32@^1.2.0 ā”‚ ā””ā”€ readable-stream@^3.4.0 ā”œā”€ create-require@1.1.1 ā”œā”€ cross-fetch@3.1.5 ā”‚ ā””ā”€ node-fetch@2.6.7 ā”œā”€ cross-spawn@7.0.3 ā”‚ ā”œā”€ path-key@^3.1.0 ā”‚ ā”œā”€ shebang-command@^2.0.0 ā”‚ ā””ā”€ which@^2.0.1 ā”œā”€ crypt@0.0.2 ā”œā”€ css-declaration-sorter@6.3.0 ā”œā”€ css-select@4.3.0 ā”‚ ā”œā”€ boolbase@^1.0.0 ā”‚ ā”œā”€ css-what@^6.0.1 ā”‚ ā”œā”€ dom-serializer@1.4.1 ā”‚ ā”‚ ā”œā”€ domelementtype@^2.0.1 ā”‚ ā”‚ ā”œā”€ domhandler@^4.2.0 ā”‚ ā”‚ ā””ā”€ entities@^2.0.0 ā”‚ ā”œā”€ domhandler@^4.3.1 ā”‚ ā”œā”€ domutils@^2.8.0 ā”‚ ā”œā”€ domutils@2.8.0 ā”‚ ā”‚ ā”œā”€ dom-serializer@^1.0.1 ā”‚ ā”‚ ā”œā”€ domelementtype@^2.2.0 ā”‚ ā”‚ ā””ā”€ domhandler@^4.2.0 ā”‚ ā”œā”€ entities@2.2.0 ā”‚ ā””ā”€ nth-check@^2.0.1 ā”œā”€ css-selector-parser@1.4.1 ā”œā”€ css-tree@1.1.3 ā”‚ ā”œā”€ mdn-data@2.0.14 ā”‚ ā””ā”€ source-map@^0.6.1 ā”œā”€ css-what@6.1.0 ā”œā”€ cssesc@3.0.0 ā”œā”€ cssfilter@0.0.10 ā”œā”€ cssnano-preset-default@5.2.12 ā”‚ ā”œā”€ css-declaration-sorter@^6.3.0 ā”‚ ā”œā”€ cssnano-utils@^3.1.0 ā”‚ ā”œā”€ postcss-calc@^8.2.3 ā”‚ ā”œā”€ postcss-colormin@^5.3.0 ā”‚ ā”œā”€ postcss-convert-values@^5.1.2 ā”‚ ā”œā”€ postcss-discard-comments@^5.1.2 ā”‚ ā”œā”€ postcss-discard-duplicates@^5.1.0 ā”‚ ā”œā”€ postcss-discard-empty@^5.1.1 ā”‚ ā”œā”€ postcss-discard-overridden@^5.1.0 ā”‚ ā”œā”€ postcss-merge-longhand@^5.1.6 ā”‚ ā”œā”€ postcss-merge-rules@^5.1.2 ā”‚ ā”œā”€ postcss-minify-font-values@^5.1.0 ā”‚ ā”œā”€ postcss-minify-gradients@^5.1.1 ā”‚ ā”œā”€ postcss-minify-params@^5.1.3 ā”‚ ā”œā”€ postcss-minify-selectors@^5.2.1 ā”‚ ā”œā”€ postcss-normalize-charset@^5.1.0 ā”‚ ā”œā”€ postcss-normalize-display-values@^5.1.0 ā”‚ ā”œā”€ postcss-normalize-positions@^5.1.1 ā”‚ ā”œā”€ postcss-normalize-repeat-style@^5.1.1 ā”‚ ā”œā”€ postcss-normalize-string@^5.1.0 ā”‚ ā”œā”€ postcss-normalize-timing-functions@^5.1.0 ā”‚ ā”œā”€ postcss-normalize-unicode@^5.1.0 ā”‚ ā”œā”€ postcss-normalize-url@^5.1.0 ā”‚ ā”œā”€ postcss-normalize-whitespace@^5.1.1 ā”‚ ā”œā”€ postcss-ordered-values@^5.1.3 ā”‚ ā”œā”€ postcss-reduce-initial@^5.1.0 ā”‚ ā”œā”€ postcss-reduce-transforms@^5.1.0 ā”‚ ā”œā”€ postcss-svgo@^5.1.0 ā”‚ ā””ā”€ postcss-unique-selectors@^5.1.1 ā”œā”€ cssnano-utils@3.1.0 ā”œā”€ cssnano@5.1.13 ā”‚ ā”œā”€ cssnano-preset-default@^5.2.12 ā”‚ ā”œā”€ lilconfig@^2.0.3 ā”‚ ā””ā”€ yaml@^1.10.2 ā”œā”€ csso@4.2.0 ā”‚ ā””ā”€ css-tree@^1.1.2 ā”œā”€ csstype@2.6.20 ā”œā”€ cuint@0.2.2 ā”œā”€ data-uri-to-buffer@4.0.0 ā”œā”€ dataloader@2.1.0 ā”œā”€ debounce@1.2.1 ā”œā”€ debug@4.3.4 ā”‚ ā”œā”€ ms@2.1.2 ā”‚ ā””ā”€ ms@2.1.2 ā”œā”€ decamelize@1.2.0 ā”œā”€ decode-named-character-reference@1.0.2 ā”‚ ā””ā”€ character-entities@^2.0.0 ā”œā”€ decompress-response@6.0.0 ā”‚ ā””ā”€ mimic-response@^3.1.0 ā”œā”€ dedent@0.7.0 ā”œā”€ deep-extend@0.6.0 ā”œā”€ deep-is@0.1.4 ā”œā”€ deepmerge@4.2.2 ā”œā”€ defaults@1.0.3 ā”‚ ā””ā”€ clone@^1.0.2 ā”œā”€ define-lazy-prop@2.0.0 ā”œā”€ define-properties@1.1.4 ā”‚ ā”œā”€ has-property-descriptors@^1.0.0 ā”‚ ā””ā”€ object-keys@^1.1.1 ā”œā”€ defu@6.1.0 ā”œā”€ delayed-stream@1.0.0 ā”œā”€ delegates@1.0.0 ā”œā”€ denque@2.1.0 ā”œā”€ depd@2.0.0 ā”œā”€ dependency-graph@0.11.0 ā”œā”€ dequal@2.0.3 ā”œā”€ destr@1.1.1 ā”œā”€ destroy@1.2.0 ā”œā”€ detect-indent@6.1.0 ā”œā”€ detect-libc@2.0.1 ā”œā”€ detect-newline@3.1.0 ā”œā”€ devtools-protocol@0.0.1019158 ā”œā”€ diff-sequences@28.1.1 ā”œā”€ diff@5.1.0 ā”œā”€ dir-glob@3.0.1 ā”‚ ā””ā”€ path-type@^4.0.0 ā”œā”€ direction@2.0.1 ā”œā”€ doctrine@2.1.0 ā”‚ ā””ā”€ esutils@^2.0.2 ā”œā”€ dom-serializer@2.0.0 ā”‚ ā”œā”€ domelementtype@^2.3.0 ā”‚ ā”œā”€ domhandler@^5.0.2 ā”‚ ā”œā”€ domhandler@5.0.3 ā”‚ ā”‚ ā””ā”€ domelementtype@^2.3.0 ā”‚ ā””ā”€ entities@^4.2.0 ā”œā”€ domelementtype@2.3.0 ā”œā”€ domhandler@4.3.1 ā”‚ ā””ā”€ domelementtype@^2.2.0 ā”œā”€ domutils@3.0.1 ā”‚ ā”œā”€ dom-serializer@^2.0.0 ā”‚ ā”œā”€ domelementtype@^2.3.0 ā”‚ ā”œā”€ domhandler@^5.0.1 ā”‚ ā””ā”€ domhandler@5.0.3 ā”‚ ā””ā”€ domelementtype@^2.3.0 ā”œā”€ dot-case@3.0.4 ā”‚ ā”œā”€ no-case@^3.0.4 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ dot-prop@7.2.0 ā”‚ ā”œā”€ type-fest@^2.11.2 ā”‚ ā””ā”€ type-fest@2.18.1 ā”œā”€ dotenv@16.0.1 ā”œā”€ dset@3.1.2 ā”œā”€ duplexer@0.1.2 ā”œā”€ duplexify@4.1.2 ā”‚ ā”œā”€ end-of-stream@^1.4.1 ā”‚ ā”œā”€ inherits@^2.0.3 ā”‚ ā”œā”€ readable-stream@^3.1.1 ā”‚ ā””ā”€ stream-shift@^1.0.0 ā”œā”€ eastasianwidth@0.2.0 ā”œā”€ ecdsa-sig-formatter@1.0.11 ā”‚ ā””ā”€ safe-buffer@^5.0.1 ā”œā”€ ee-first@1.1.1 ā”œā”€ electron-to-chromium@1.4.225 ā”œā”€ emittery@0.10.2 ā”œā”€ emoji-regex@8.0.0 ā”œā”€ encodeurl@1.0.2 ā”œā”€ end-of-stream@1.4.4 ā”‚ ā””ā”€ once@^1.4.0 ā”œā”€ enhanced-resolve@4.5.0 ā”‚ ā”œā”€ graceful-fs@^4.1.2 ā”‚ ā”œā”€ memory-fs@^0.5.0 ā”‚ ā””ā”€ tapable@^1.0.0 ā”œā”€ ent@2.2.0 ā”œā”€ entities@4.3.1 ā”œā”€ errno@0.1.8 ā”‚ ā””ā”€ prr@~1.0.1 ā”œā”€ error-ex@1.3.2 ā”‚ ā””ā”€ is-arrayish@^0.2.1 ā”œā”€ es-abstract@1.20.1 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ es-to-primitive@^1.2.1 ā”‚ ā”œā”€ function-bind@^1.1.1 ā”‚ ā”œā”€ function.prototype.name@^1.1.5 ā”‚ ā”œā”€ get-intrinsic@^1.1.1 ā”‚ ā”œā”€ get-symbol-description@^1.0.0 ā”‚ ā”œā”€ has-property-descriptors@^1.0.0 ā”‚ ā”œā”€ has-symbols@^1.0.3 ā”‚ ā”œā”€ has@^1.0.3 ā”‚ ā”œā”€ internal-slot@^1.0.3 ā”‚ ā”œā”€ is-callable@^1.2.4 ā”‚ ā”œā”€ is-negative-zero@^2.0.2 ā”‚ ā”œā”€ is-regex@^1.1.4 ā”‚ ā”œā”€ is-shared-array-buffer@^1.0.2 ā”‚ ā”œā”€ is-string@^1.0.7 ā”‚ ā”œā”€ is-weakref@^1.0.2 ā”‚ ā”œā”€ object-inspect@^1.12.0 ā”‚ ā”œā”€ object-keys@^1.1.1 ā”‚ ā”œā”€ object.assign@^4.1.2 ā”‚ ā”œā”€ regexp.prototype.flags@^1.4.3 ā”‚ ā”œā”€ string.prototype.trimend@^1.0.5 ā”‚ ā”œā”€ string.prototype.trimstart@^1.0.5 ā”‚ ā””ā”€ unbox-primitive@^1.0.2 ā”œā”€ es-shim-unscopables@1.0.0 ā”‚ ā””ā”€ has@^1.0.3 ā”œā”€ es-to-primitive@1.2.1 ā”‚ ā”œā”€ is-callable@^1.1.4 ā”‚ ā”œā”€ is-date-object@^1.0.1 ā”‚ ā””ā”€ is-symbol@^1.0.2 ā”œā”€ esbuild-android-64@0.14.54 ā”œā”€ esbuild-android-arm64@0.14.54 ā”œā”€ esbuild-darwin-64@0.14.54 ā”œā”€ esbuild-darwin-arm64@0.14.54 ā”œā”€ esbuild-freebsd-64@0.14.54 ā”œā”€ esbuild-freebsd-arm64@0.14.54 ā”œā”€ esbuild-linux-32@0.14.54 ā”œā”€ esbuild-linux-64@0.14.54 ā”œā”€ esbuild-linux-arm@0.14.54 ā”œā”€ esbuild-linux-arm64@0.14.54 ā”œā”€ esbuild-linux-mips64le@0.14.54 ā”œā”€ esbuild-linux-ppc64le@0.14.54 ā”œā”€ esbuild-linux-riscv64@0.14.54 ā”œā”€ esbuild-linux-s390x@0.14.54 ā”œā”€ esbuild-netbsd-64@0.14.54 ā”œā”€ esbuild-openbsd-64@0.14.54 ā”œā”€ esbuild-sunos-64@0.14.54 ā”œā”€ esbuild-windows-32@0.14.54 ā”œā”€ esbuild-windows-64@0.14.54 ā”œā”€ esbuild-windows-arm64@0.14.54 ā”œā”€ esbuild@0.14.54 ā”‚ ā”œā”€ @esbuild/linux-loong64@0.14.54 ā”‚ ā”œā”€ esbuild-android-64@0.14.54 ā”‚ ā”œā”€ esbuild-android-arm64@0.14.54 ā”‚ ā”œā”€ esbuild-darwin-64@0.14.54 ā”‚ ā”œā”€ esbuild-darwin-arm64@0.14.54 ā”‚ ā”œā”€ esbuild-freebsd-64@0.14.54 ā”‚ ā”œā”€ esbuild-freebsd-arm64@0.14.54 ā”‚ ā”œā”€ esbuild-linux-32@0.14.54 ā”‚ ā”œā”€ esbuild-linux-64@0.14.54 ā”‚ ā”œā”€ esbuild-linux-arm@0.14.54 ā”‚ ā”œā”€ esbuild-linux-arm64@0.14.54 ā”‚ ā”œā”€ esbuild-linux-mips64le@0.14.54 ā”‚ ā”œā”€ esbuild-linux-ppc64le@0.14.54 ā”‚ ā”œā”€ esbuild-linux-riscv64@0.14.54 ā”‚ ā”œā”€ esbuild-linux-s390x@0.14.54 ā”‚ ā”œā”€ esbuild-netbsd-64@0.14.54 ā”‚ ā”œā”€ esbuild-openbsd-64@0.14.54 ā”‚ ā”œā”€ esbuild-sunos-64@0.14.54 ā”‚ ā”œā”€ esbuild-windows-32@0.14.54 ā”‚ ā”œā”€ esbuild-windows-64@0.14.54 ā”‚ ā””ā”€ esbuild-windows-arm64@0.14.54 ā”œā”€ escalade@3.1.1 ā”œā”€ escape-html@1.0.3 ā”œā”€ escape-string-regexp@5.0.0 ā”œā”€ escodegen@1.14.3 ā”‚ ā”œā”€ esprima@^4.0.1 ā”‚ ā”œā”€ estraverse@^4.2.0 ā”‚ ā”œā”€ estraverse@4.3.0 ā”‚ ā”œā”€ esutils@^2.0.2 ā”‚ ā”œā”€ levn@0.3.0 ā”‚ ā”‚ ā”œā”€ prelude-ls@~1.1.2 ā”‚ ā”‚ ā””ā”€ type-check@~0.3.2 ā”‚ ā”œā”€ optionator@^0.8.1 ā”‚ ā”œā”€ optionator@0.8.3 ā”‚ ā”‚ ā”œā”€ deep-is@~0.1.3 ā”‚ ā”‚ ā”œā”€ fast-levenshtein@~2.0.6 ā”‚ ā”‚ ā”œā”€ levn@~0.3.0 ā”‚ ā”‚ ā”œā”€ prelude-ls@~1.1.2 ā”‚ ā”‚ ā”œā”€ type-check@~0.3.2 ā”‚ ā”‚ ā””ā”€ word-wrap@~1.2.3 ā”‚ ā””ā”€ source-map@~0.6.1 ā”œā”€ eslint-import-resolver-node@0.3.6 ā”‚ ā”œā”€ debug@^3.2.7 ā”‚ ā”œā”€ debug@3.2.7 ā”‚ ā”‚ ā””ā”€ ms@^2.1.1 ā”‚ ā””ā”€ resolve@^1.20.0 ā”œā”€ eslint-module-utils@2.7.4 ā”‚ ā”œā”€ debug@^3.2.7 ā”‚ ā””ā”€ debug@3.2.7 ā”‚ ā””ā”€ ms@^2.1.1 ā”œā”€ eslint-plugin-antfu@0.26.1 ā”‚ ā””ā”€ @typescript-eslint/utils@^5.32.0 ā”œā”€ eslint-plugin-es@4.1.0 ā”‚ ā”œā”€ eslint-utils@^2.0.0 ā”‚ ā”œā”€ eslint-utils@2.1.0 ā”‚ ā”‚ ā””ā”€ eslint-visitor-keys@^1.1.0 ā”‚ ā”œā”€ eslint-visitor-keys@1.3.0 ā”‚ ā””ā”€ regexpp@^3.0.0 ā”œā”€ eslint-plugin-eslint-comments@3.2.0 ā”‚ ā”œā”€ escape-string-regexp@^1.0.5 ā”‚ ā”œā”€ escape-string-regexp@1.0.5 ā”‚ ā””ā”€ ignore@^5.0.5 ā”œā”€ eslint-plugin-html@7.1.0 ā”‚ ā””ā”€ htmlparser2@^8.0.1 ā”œā”€ eslint-plugin-import@2.26.0 ā”‚ ā”œā”€ array-includes@^3.1.4 ā”‚ ā”œā”€ array.prototype.flat@^1.2.5 ā”‚ ā”œā”€ debug@^2.6.9 ā”‚ ā”œā”€ debug@2.6.9 ā”‚ ā”‚ ā””ā”€ ms@2.0.0 ā”‚ ā”œā”€ doctrine@^2.1.0 ā”‚ ā”œā”€ eslint-import-resolver-node@^0.3.6 ā”‚ ā”œā”€ eslint-module-utils@^2.7.3 ā”‚ ā”œā”€ has@^1.0.3 ā”‚ ā”œā”€ is-core-module@^2.8.1 ā”‚ ā”œā”€ is-glob@^4.0.3 ā”‚ ā”œā”€ minimatch@^3.1.2 ā”‚ ā”œā”€ ms@2.0.0 ā”‚ ā”œā”€ object.values@^1.1.5 ā”‚ ā”œā”€ resolve@^1.22.0 ā”‚ ā””ā”€ tsconfig-paths@^3.14.1 ā”œā”€ eslint-plugin-jsonc@2.4.0 ā”‚ ā”œā”€ eslint-utils@^3.0.0 ā”‚ ā”œā”€ jsonc-eslint-parser@^2.0.4 ā”‚ ā””ā”€ natural-compare@^1.4.0 ā”œā”€ eslint-plugin-markdown@3.0.0 ā”‚ ā”œā”€ mdast-util-from-markdown@^0.8.5 ā”‚ ā”œā”€ mdast-util-from-markdown@0.8.5 ā”‚ ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”‚ ā”œā”€ mdast-util-to-string@^2.0.0 ā”‚ ā”‚ ā”œā”€ micromark@~2.11.0 ā”‚ ā”‚ ā”œā”€ parse-entities@^2.0.0 ā”‚ ā”‚ ā””ā”€ unist-util-stringify-position@^2.0.0 ā”‚ ā”œā”€ mdast-util-to-string@2.0.0 ā”‚ ā”œā”€ micromark@2.11.4 ā”‚ ā”‚ ā”œā”€ debug@^4.0.0 ā”‚ ā”‚ ā””ā”€ parse-entities@^2.0.0 ā”‚ ā””ā”€ unist-util-stringify-position@2.0.3 ā”‚ ā””ā”€ @types/unist@^2.0.2 ā”œā”€ eslint-plugin-n@15.2.4 ā”‚ ā”œā”€ builtins@^5.0.1 ā”‚ ā”œā”€ eslint-plugin-es@^4.1.0 ā”‚ ā”œā”€ eslint-utils@^3.0.0 ā”‚ ā”œā”€ ignore@^5.1.1 ā”‚ ā”œā”€ is-core-module@^2.9.0 ā”‚ ā”œā”€ minimatch@^3.1.2 ā”‚ ā”œā”€ resolve@^1.10.1 ā”‚ ā””ā”€ semver@^7.3.7 ā”œā”€ eslint-plugin-promise@6.0.0 ā”œā”€ eslint-plugin-react@7.30.1 ā”‚ ā”œā”€ array-includes@^3.1.5 ā”‚ ā”œā”€ array.prototype.flatmap@^1.3.0 ā”‚ ā”œā”€ doctrine@^2.1.0 ā”‚ ā”œā”€ estraverse@^5.3.0 ā”‚ ā”œā”€ jsx-ast-utils@^2.4.1 || ^3.0.0 ā”‚ ā”œā”€ minimatch@^3.1.2 ā”‚ ā”œā”€ object.entries@^1.1.5 ā”‚ ā”œā”€ object.fromentries@^2.0.5 ā”‚ ā”œā”€ object.hasown@^1.1.1 ā”‚ ā”œā”€ object.values@^1.1.5 ā”‚ ā”œā”€ prop-types@^15.8.1 ā”‚ ā”œā”€ resolve@^2.0.0-next.3 ā”‚ ā”œā”€ resolve@2.0.0-next.4 ā”‚ ā”‚ ā”œā”€ is-core-module@^2.9.0 ā”‚ ā”‚ ā”œā”€ path-parse@^1.0.7 ā”‚ ā”‚ ā””ā”€ supports-preserve-symlinks-flag@^1.0.0 ā”‚ ā”œā”€ semver@^6.3.0 ā”‚ ā”œā”€ semver@6.3.0 ā”‚ ā””ā”€ string.prototype.matchall@^4.0.7 ā”œā”€ eslint-plugin-unicorn@43.0.2 ā”‚ ā”œā”€ @babel/helper-validator-identifier@^7.18.6 ā”‚ ā”œā”€ ci-info@^3.3.2 ā”‚ ā”œā”€ clean-regexp@^1.0.0 ā”‚ ā”œā”€ eslint-utils@^3.0.0 ā”‚ ā”œā”€ esquery@^1.4.0 ā”‚ ā”œā”€ indent-string@^4.0.0 ā”‚ ā”œā”€ is-builtin-module@^3.1.0 ā”‚ ā”œā”€ lodash@^4.17.21 ā”‚ ā”œā”€ pluralize@^8.0.0 ā”‚ ā”œā”€ read-pkg-up@^7.0.1 ā”‚ ā”œā”€ regexp-tree@^0.1.24 ā”‚ ā”œā”€ safe-regex@^2.1.1 ā”‚ ā”œā”€ semver@^7.3.7 ā”‚ ā””ā”€ strip-indent@^3.0.0 ā”œā”€ eslint-plugin-vue@9.3.0 ā”‚ ā”œā”€ eslint-utils@^3.0.0 ā”‚ ā”œā”€ natural-compare@^1.4.0 ā”‚ ā”œā”€ nth-check@^2.0.1 ā”‚ ā”œā”€ postcss-selector-parser@^6.0.9 ā”‚ ā”œā”€ semver@^7.3.5 ā”‚ ā”œā”€ vue-eslint-parser@^9.0.1 ā”‚ ā””ā”€ xml-name-validator@^4.0.0 ā”œā”€ eslint-plugin-yml@1.1.0 ā”‚ ā”œā”€ debug@^4.3.2 ā”‚ ā”œā”€ lodash@^4.17.21 ā”‚ ā”œā”€ natural-compare@^1.4.0 ā”‚ ā””ā”€ yaml-eslint-parser@^1.1.0 ā”œā”€ eslint-scope@7.1.1 ā”‚ ā”œā”€ esrecurse@^4.3.0 ā”‚ ā””ā”€ estraverse@^5.2.0 ā”œā”€ eslint-utils@3.0.0 ā”‚ ā”œā”€ eslint-visitor-keys@^2.0.0 ā”‚ ā””ā”€ eslint-visitor-keys@2.1.0 ā”œā”€ eslint-visitor-keys@3.3.0 ā”œā”€ eslint@8.22.0 ā”‚ ā”œā”€ @eslint/eslintrc@^1.3.0 ā”‚ ā”œā”€ @humanwhocodes/config-array@^0.10.4 ā”‚ ā”œā”€ @humanwhocodes/gitignore-to-minimatch@^1.0.2 ā”‚ ā”œā”€ ajv@^6.10.0 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ cross-spawn@^7.0.2 ā”‚ ā”œā”€ debug@^4.3.2 ā”‚ ā”œā”€ doctrine@^3.0.0 ā”‚ ā”œā”€ doctrine@3.0.0 ā”‚ ā”‚ ā””ā”€ esutils@^2.0.2 ā”‚ ā”œā”€ escape-string-regexp@^4.0.0 ā”‚ ā”œā”€ escape-string-regexp@4.0.0 ā”‚ ā”œā”€ eslint-scope@^7.1.1 ā”‚ ā”œā”€ eslint-utils@^3.0.0 ā”‚ ā”œā”€ eslint-visitor-keys@^3.3.0 ā”‚ ā”œā”€ espree@^9.3.3 ā”‚ ā”œā”€ esquery@^1.4.0 ā”‚ ā”œā”€ esutils@^2.0.2 ā”‚ ā”œā”€ fast-deep-equal@^3.1.3 ā”‚ ā”œā”€ file-entry-cache@^6.0.1 ā”‚ ā”œā”€ find-up@^5.0.0 ā”‚ ā”œā”€ find-up@5.0.0 ā”‚ ā”‚ ā”œā”€ locate-path@^6.0.0 ā”‚ ā”‚ ā””ā”€ path-exists@^4.0.0 ā”‚ ā”œā”€ functional-red-black-tree@^1.0.1 ā”‚ ā”œā”€ glob-parent@^6.0.1 ā”‚ ā”œā”€ glob-parent@6.0.2 ā”‚ ā”‚ ā””ā”€ is-glob@^4.0.3 ā”‚ ā”œā”€ globals@^13.15.0 ā”‚ ā”œā”€ globals@13.17.0 ā”‚ ā”‚ ā””ā”€ type-fest@^0.20.2 ā”‚ ā”œā”€ globby@^11.1.0 ā”‚ ā”œā”€ grapheme-splitter@^1.0.4 ā”‚ ā”œā”€ ignore@^5.2.0 ā”‚ ā”œā”€ import-fresh@^3.0.0 ā”‚ ā”œā”€ imurmurhash@^0.1.4 ā”‚ ā”œā”€ is-glob@^4.0.0 ā”‚ ā”œā”€ js-yaml@^4.1.0 ā”‚ ā”œā”€ json-stable-stringify-without-jsonify@^1.0.1 ā”‚ ā”œā”€ levn@^0.4.1 ā”‚ ā”œā”€ locate-path@6.0.0 ā”‚ ā”‚ ā””ā”€ p-locate@^5.0.0 ā”‚ ā”œā”€ lodash.merge@^4.6.2 ā”‚ ā”œā”€ minimatch@^3.1.2 ā”‚ ā”œā”€ natural-compare@^1.4.0 ā”‚ ā”œā”€ optionator@^0.9.1 ā”‚ ā”œā”€ p-locate@5.0.0 ā”‚ ā”‚ ā””ā”€ p-limit@^3.0.2 ā”‚ ā”œā”€ regexpp@^3.2.0 ā”‚ ā”œā”€ strip-ansi@^6.0.1 ā”‚ ā”œā”€ strip-json-comments@^3.1.0 ā”‚ ā”œā”€ text-table@^0.2.0 ā”‚ ā”œā”€ type-fest@0.20.2 ā”‚ ā””ā”€ v8-compile-cache@^2.0.3 ā”œā”€ espree@9.3.3 ā”‚ ā”œā”€ acorn-jsx@^5.3.2 ā”‚ ā”œā”€ acorn@^8.8.0 ā”‚ ā””ā”€ eslint-visitor-keys@^3.3.0 ā”œā”€ esprima@4.0.1 ā”œā”€ esquery@1.4.0 ā”‚ ā””ā”€ estraverse@^5.1.0 ā”œā”€ esrecurse@4.3.0 ā”‚ ā””ā”€ estraverse@^5.2.0 ā”œā”€ estraverse@5.3.0 ā”œā”€ estree-walker@2.0.2 ā”œā”€ esutils@2.0.3 ā”œā”€ etag@1.8.1 ā”œā”€ event-target-polyfill@0.0.3 ā”œā”€ event-target-shim@5.0.1 ā”œā”€ eventemitter3@4.0.7 ā”œā”€ events@1.1.1 ā”œā”€ execa@5.1.1 ā”‚ ā”œā”€ cross-spawn@^7.0.3 ā”‚ ā”œā”€ get-stream@^6.0.0 ā”‚ ā”œā”€ get-stream@6.0.1 ā”‚ ā”œā”€ human-signals@^2.1.0 ā”‚ ā”œā”€ is-stream@^2.0.0 ā”‚ ā”œā”€ merge-stream@^2.0.0 ā”‚ ā”œā”€ npm-run-path@^4.0.1 ā”‚ ā”œā”€ onetime@^5.1.2 ā”‚ ā”œā”€ signal-exit@^3.0.3 ā”‚ ā””ā”€ strip-final-newline@^2.0.0 ā”œā”€ exit@0.1.2 ā”œā”€ expand-template@2.0.3 ā”œā”€ expect@28.1.3 ā”‚ ā”œā”€ @jest/expect-utils@^28.1.3 ā”‚ ā”œā”€ jest-get-type@^28.0.2 ā”‚ ā”œā”€ jest-matcher-utils@^28.1.3 ā”‚ ā”œā”€ jest-message-util@^28.1.3 ā”‚ ā””ā”€ jest-util@^28.1.3 ā”œā”€ extend@3.0.2 ā”œā”€ external-editor@3.1.0 ā”‚ ā”œā”€ chardet@^0.7.0 ā”‚ ā”œā”€ iconv-lite@^0.4.24 ā”‚ ā””ā”€ tmp@^0.0.33 ā”œā”€ externality@0.2.2 ā”‚ ā”œā”€ enhanced-resolve@^5.9.3 ā”‚ ā”œā”€ enhanced-resolve@5.10.0 ā”‚ ā”‚ ā”œā”€ graceful-fs@^4.2.4 ā”‚ ā”‚ ā””ā”€ tapable@^2.2.0 ā”‚ ā”œā”€ mlly@^0.5.2 ā”‚ ā”œā”€ pathe@^0.3.0 ā”‚ ā”œā”€ tapable@2.2.1 ā”‚ ā””ā”€ ufo@^0.8.3 ā”œā”€ extract-files@11.0.0 ā”œā”€ extract-zip@2.0.1 ā”‚ ā”œā”€ @types/yauzl@^2.9.1 ā”‚ ā”œā”€ debug@^4.1.1 ā”‚ ā”œā”€ get-stream@^5.1.0 ā”‚ ā””ā”€ yauzl@^2.10.0 ā”œā”€ fast-deep-equal@3.1.3 ā”œā”€ fast-glob@3.2.11 ā”‚ ā”œā”€ @nodelib/fs.stat@^2.0.2 ā”‚ ā”œā”€ @nodelib/fs.walk@^1.2.3 ā”‚ ā”œā”€ glob-parent@^5.1.2 ā”‚ ā”œā”€ merge2@^1.3.0 ā”‚ ā””ā”€ micromatch@^4.0.4 ā”œā”€ fast-json-stable-stringify@2.1.0 ā”œā”€ fast-levenshtein@2.0.6 ā”œā”€ fast-text-encoding@1.0.4 ā”œā”€ fastq@1.13.0 ā”‚ ā””ā”€ reusify@^1.0.4 ā”œā”€ fb-watchman@2.0.1 ā”‚ ā””ā”€ bser@2.1.1 ā”œā”€ fbjs-css-vars@1.0.2 ā”œā”€ fbjs@3.0.4 ā”‚ ā”œā”€ cross-fetch@^3.1.5 ā”‚ ā”œā”€ fbjs-css-vars@^1.0.0 ā”‚ ā”œā”€ loose-envify@^1.0.0 ā”‚ ā”œā”€ object-assign@^4.1.0 ā”‚ ā”œā”€ promise@^7.1.1 ā”‚ ā”œā”€ setimmediate@^1.0.5 ā”‚ ā””ā”€ ua-parser-js@^0.7.30 ā”œā”€ fd-slicer@1.1.0 ā”‚ ā””ā”€ pend@~1.2.0 ā”œā”€ fetch-blob@3.2.0 ā”‚ ā”œā”€ node-domexception@^1.0.0 ā”‚ ā””ā”€ web-streams-polyfill@^3.0.3 ā”œā”€ figures@3.2.0 ā”‚ ā”œā”€ escape-string-regexp@^1.0.5 ā”‚ ā””ā”€ escape-string-regexp@1.0.5 ā”œā”€ file-entry-cache@6.0.1 ā”‚ ā””ā”€ flat-cache@^3.0.4 ā”œā”€ file-uri-to-path@1.0.0 ā”œā”€ fill-range@7.0.1 ā”‚ ā””ā”€ to-regex-range@^5.0.1 ā”œā”€ find-up@4.1.0 ā”‚ ā”œā”€ locate-path@^5.0.0 ā”‚ ā””ā”€ path-exists@^4.0.0 ā”œā”€ flat-cache@3.0.4 ā”‚ ā”œā”€ flatted@^3.1.0 ā”‚ ā””ā”€ rimraf@^3.0.2 ā”œā”€ flat@5.0.2 ā”œā”€ flatted@3.2.7 ā”œā”€ follow-redirects@1.15.1 ā”œā”€ for-each@0.3.3 ā”‚ ā””ā”€ is-callable@^1.1.3 ā”œā”€ for-in@1.0.2 ā”œā”€ for-own@0.1.5 ā”‚ ā””ā”€ for-in@^1.0.1 ā”œā”€ form-data-encoder@1.7.2 ā”œā”€ form-data@4.0.0 ā”‚ ā”œā”€ asynckit@^0.4.0 ā”‚ ā”œā”€ combined-stream@^1.0.8 ā”‚ ā””ā”€ mime-types@^2.1.12 ā”œā”€ formdata-node@4.4.0 ā”‚ ā”œā”€ node-domexception@1.0.0 ā”‚ ā”œā”€ web-streams-polyfill@4.0.0-beta.2 ā”‚ ā””ā”€ web-streams-polyfill@4.0.0-beta.2 ā”œā”€ formdata-polyfill@4.0.10 ā”‚ ā””ā”€ fetch-blob@^3.1.2 ā”œā”€ fraction.js@4.2.0 ā”œā”€ fresh@0.5.2 ā”œā”€ fs-constants@1.0.0 ā”œā”€ fs-extra@10.1.0 ā”‚ ā”œā”€ graceful-fs@^4.2.0 ā”‚ ā”œā”€ jsonfile@^6.0.1 ā”‚ ā””ā”€ universalify@^2.0.0 ā”œā”€ fs-memo@1.2.0 ā”œā”€ fs-minipass@1.2.7 ā”‚ ā””ā”€ minipass@^2.6.0 ā”œā”€ fs.realpath@1.0.0 ā”œā”€ fsevents@2.3.2 ā”œā”€ function-bind@1.1.1 ā”œā”€ function.prototype.name@1.1.5 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ define-properties@^1.1.3 ā”‚ ā”œā”€ es-abstract@^1.19.0 ā”‚ ā””ā”€ functions-have-names@^1.2.2 ā”œā”€ functional-red-black-tree@1.0.1 ā”œā”€ functions-have-names@1.2.3 ā”œā”€ gauge@3.0.2 ā”‚ ā”œā”€ aproba@^1.0.3 || ^2.0.0 ā”‚ ā”œā”€ color-support@^1.1.2 ā”‚ ā”œā”€ console-control-strings@^1.0.0 ā”‚ ā”œā”€ has-unicode@^2.0.1 ā”‚ ā”œā”€ object-assign@^4.1.1 ā”‚ ā”œā”€ signal-exit@^3.0.0 ā”‚ ā”œā”€ string-width@^4.2.3 ā”‚ ā”œā”€ strip-ansi@^6.0.1 ā”‚ ā””ā”€ wide-align@^1.1.2 ā”œā”€ gaxios@5.0.1 ā”‚ ā”œā”€ extend@^3.0.2 ā”‚ ā”œā”€ https-proxy-agent@^5.0.0 ā”‚ ā”œā”€ is-stream@^2.0.0 ā”‚ ā””ā”€ node-fetch@^2.6.7 ā”œā”€ gcp-metadata@5.0.0 ā”‚ ā”œā”€ gaxios@^5.0.0 ā”‚ ā””ā”€ json-bigint@^1.0.0 ā”œā”€ gensync@1.0.0-beta.2 ā”œā”€ get-caller-file@2.0.5 ā”œā”€ get-intrinsic@1.1.2 ā”‚ ā”œā”€ function-bind@^1.1.1 ā”‚ ā”œā”€ has-symbols@^1.0.3 ā”‚ ā””ā”€ has@^1.0.3 ā”œā”€ get-package-type@0.1.0 ā”œā”€ get-port-please@2.6.1 ā”‚ ā””ā”€ fs-memo@^1.2.0 ā”œā”€ get-stream@5.2.0 ā”‚ ā””ā”€ pump@^3.0.0 ā”œā”€ get-symbol-description@1.0.0 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā””ā”€ get-intrinsic@^1.1.1 ā”œā”€ git-config-path@2.0.0 ā”œā”€ git-up@6.0.0 ā”‚ ā”œā”€ is-ssh@^1.4.0 ā”‚ ā””ā”€ parse-url@^7.0.2 ā”œā”€ git-url-parse@12.0.0 ā”‚ ā””ā”€ git-up@^6.0.0 ā”œā”€ github-from-package@0.0.0 ā”œā”€ gittar@0.1.1 ā”‚ ā”œā”€ mkdirp@^0.5.1 ā”‚ ā”œā”€ mkdirp@0.5.6 ā”‚ ā”‚ ā””ā”€ minimist@^1.2.6 ā”‚ ā””ā”€ tar@^4.4.1 ā”œā”€ glob-parent@5.1.2 ā”‚ ā””ā”€ is-glob@^4.0.1 ā”œā”€ glob@7.2.3 ā”‚ ā”œā”€ fs.realpath@^1.0.0 ā”‚ ā”œā”€ inflight@^1.0.4 ā”‚ ā”œā”€ inherits@2 ā”‚ ā”œā”€ minimatch@^3.1.1 ā”‚ ā”œā”€ once@^1.3.0 ā”‚ ā””ā”€ path-is-absolute@^1.0.0 ā”œā”€ globals@11.12.0 ā”œā”€ globby@11.1.0 ā”‚ ā”œā”€ array-union@^2.1.0 ā”‚ ā”œā”€ dir-glob@^3.0.1 ā”‚ ā”œā”€ fast-glob@^3.2.9 ā”‚ ā”œā”€ ignore@^5.2.0 ā”‚ ā”œā”€ merge2@^1.4.1 ā”‚ ā””ā”€ slash@^3.0.0 ā”œā”€ google-auth-library@8.3.0 ā”‚ ā”œā”€ arrify@^2.0.0 ā”‚ ā”œā”€ base64-js@^1.3.0 ā”‚ ā”œā”€ ecdsa-sig-formatter@^1.0.11 ā”‚ ā”œā”€ fast-text-encoding@^1.0.0 ā”‚ ā”œā”€ gaxios@^5.0.0 ā”‚ ā”œā”€ gcp-metadata@^5.0.0 ā”‚ ā”œā”€ gtoken@^6.0.0 ā”‚ ā”œā”€ jws@^4.0.0 ā”‚ ā””ā”€ lru-cache@^6.0.0 ā”œā”€ google-gax@3.2.1 ā”‚ ā”œā”€ @grpc/grpc-js@~1.6.0 ā”‚ ā”œā”€ @grpc/proto-loader@^0.7.0 ā”‚ ā”œā”€ @types/long@^4.0.0 ā”‚ ā”œā”€ abort-controller@^3.0.0 ā”‚ ā”œā”€ duplexify@^4.0.0 ā”‚ ā”œā”€ fast-text-encoding@^1.0.3 ā”‚ ā”œā”€ google-auth-library@^8.0.2 ā”‚ ā”œā”€ is-stream-ended@^0.1.4 ā”‚ ā”œā”€ node-fetch@^2.6.1 ā”‚ ā”œā”€ object-hash@^3.0.0 ā”‚ ā”œā”€ proto3-json-serializer@^1.0.0 ā”‚ ā”œā”€ protobufjs-cli@1.0.0 ā”‚ ā”œā”€ protobufjs@7.0.0 ā”‚ ā””ā”€ retry-request@^5.0.0 ā”œā”€ google-p12-pem@4.0.0 ā”‚ ā””ā”€ node-forge@^1.3.1 ā”œā”€ graceful-fs@4.2.10 ā”œā”€ grapheme-splitter@1.0.4 ā”œā”€ graphql-config@4.3.3 ā”‚ ā”œā”€ @graphql-tools/graphql-file-loader@^7.3.7 ā”‚ ā”œā”€ @graphql-tools/json-file-loader@^7.3.7 ā”‚ ā”œā”€ @graphql-tools/load@^7.5.5 ā”‚ ā”œā”€ @graphql-tools/merge@^8.2.6 ā”‚ ā”œā”€ @graphql-tools/url-loader@^7.9.7 ā”‚ ā”œā”€ @graphql-tools/utils@^8.6.5 ā”‚ ā”œā”€ cosmiconfig-toml-loader@1.0.0 ā”‚ ā”œā”€ cosmiconfig-typescript-loader@^3.1.0 ā”‚ ā”œā”€ cosmiconfig@7.0.1 ā”‚ ā”œā”€ minimatch@4.2.1 ā”‚ ā”œā”€ minimatch@4.2.1 ā”‚ ā”‚ ā””ā”€ brace-expansion@^1.1.7 ā”‚ ā”œā”€ string-env-interpolation@1.0.1 ā”‚ ā””ā”€ ts-node@^10.8.1 ā”œā”€ graphql-playground-html@1.6.30 ā”‚ ā””ā”€ xss@^1.0.6 ā”œā”€ graphql-request@4.3.0 ā”‚ ā”œā”€ cross-fetch@^3.1.5 ā”‚ ā”œā”€ extract-files@^9.0.0 ā”‚ ā”œā”€ extract-files@9.0.0 ā”‚ ā”œā”€ form-data@^3.0.0 ā”‚ ā””ā”€ form-data@3.0.1 ā”‚ ā”œā”€ asynckit@^0.4.0 ā”‚ ā”œā”€ combined-stream@^1.0.8 ā”‚ ā””ā”€ mime-types@^2.1.12 ā”œā”€ graphql-scalars@1.18.0 ā”‚ ā””ā”€ tslib@~2.4.0 ā”œā”€ graphql-tag@2.12.6 ā”‚ ā””ā”€ tslib@^2.1.0 ā”œā”€ graphql-ws@5.10.1 ā”œā”€ graphql@16.6.0 ā”œā”€ gtoken@6.1.1 ā”‚ ā”œā”€ gaxios@^5.0.1 ā”‚ ā”œā”€ google-p12-pem@^4.0.0 ā”‚ ā””ā”€ jws@^4.0.0 ā”œā”€ gzip-size@7.0.0 ā”‚ ā””ā”€ duplexer@^0.1.2 ā”œā”€ h3@0.7.15 ā”‚ ā”œā”€ cookie-es@^0.5.0 ā”‚ ā”œā”€ destr@^1.1.1 ā”‚ ā”œā”€ radix3@^0.1.2 ā”‚ ā””ā”€ ufo@^0.8.5 ā”œā”€ has-bigints@1.0.2 ā”œā”€ has-flag@4.0.0 ā”œā”€ has-property-descriptors@1.0.0 ā”‚ ā””ā”€ get-intrinsic@^1.1.1 ā”œā”€ has-symbols@1.0.3 ā”œā”€ has-tostringtag@1.0.0 ā”‚ ā””ā”€ has-symbols@^1.0.2 ā”œā”€ has-unicode@2.0.1 ā”œā”€ has@1.0.3 ā”‚ ā””ā”€ function-bind@^1.1.1 ā”œā”€ hash-sum@2.0.0 ā”œā”€ hast-to-hyperscript@10.0.1 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ comma-separated-tokens@^2.0.0 ā”‚ ā”œā”€ property-information@^6.0.0 ā”‚ ā”œā”€ space-separated-tokens@^2.0.0 ā”‚ ā”œā”€ style-to-object@^0.3.0 ā”‚ ā”œā”€ unist-util-is@^5.0.0 ā”‚ ā””ā”€ web-namespaces@^2.0.0 ā”œā”€ hast-util-embedded@2.0.0 ā”‚ ā””ā”€ hast-util-is-element@^2.0.0 ā”œā”€ hast-util-from-html@1.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-from-parse5@^7.0.0 ā”‚ ā”œā”€ parse5@^7.0.0 ā”‚ ā”œā”€ parse5@7.0.0 ā”‚ ā”‚ ā””ā”€ entities@^4.3.0 ā”‚ ā””ā”€ vfile@^5.0.0 ā”œā”€ hast-util-from-parse5@7.1.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ @types/parse5@^6.0.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ hastscript@^7.0.0 ā”‚ ā”œā”€ property-information@^6.0.0 ā”‚ ā”œā”€ vfile-location@^4.0.0 ā”‚ ā”œā”€ vfile@^5.0.0 ā”‚ ā””ā”€ web-namespaces@^2.0.0 ā”œā”€ hast-util-from-string@2.0.0 ā”‚ ā””ā”€ @types/hast@^2.0.0 ā”œā”€ hast-util-has-property@2.0.0 ā”œā”€ hast-util-is-body-ok-link@2.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā””ā”€ hast-util-is-element@^2.0.0 ā”œā”€ hast-util-is-conditional-comment@2.0.0 ā”‚ ā””ā”€ @types/hast@^2.0.0 ā”œā”€ hast-util-is-css-link@2.0.0 ā”‚ ā””ā”€ @types/hast@^2.0.0 ā”œā”€ hast-util-is-css-style@2.0.0 ā”‚ ā””ā”€ @types/hast@^2.0.0 ā”œā”€ hast-util-is-element@2.1.2 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā””ā”€ @types/unist@^2.0.0 ā”œā”€ hast-util-is-event-handler@2.0.0 ā”œā”€ hast-util-is-javascript@2.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā””ā”€ hast-util-is-element@^2.0.0 ā”œā”€ hast-util-parse-selector@3.1.0 ā”‚ ā””ā”€ @types/hast@^2.0.0 ā”œā”€ hast-util-phrasing@2.0.1 ā”‚ ā”œā”€ hast-util-embedded@^2.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ hast-util-is-body-ok-link@^2.0.0 ā”‚ ā””ā”€ hast-util-is-element@^2.0.0 ā”œā”€ hast-util-raw@7.2.2 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ @types/parse5@^6.0.0 ā”‚ ā”œā”€ hast-util-from-parse5@^7.0.0 ā”‚ ā”œā”€ hast-util-to-parse5@^7.0.0 ā”‚ ā”œā”€ html-void-elements@^2.0.0 ā”‚ ā”œā”€ parse5@^6.0.0 ā”‚ ā”œā”€ unist-util-position@^4.0.0 ā”‚ ā”œā”€ unist-util-visit@^4.0.0 ā”‚ ā”œā”€ vfile@^5.0.0 ā”‚ ā”œā”€ web-namespaces@^2.0.0 ā”‚ ā””ā”€ zwitch@^2.0.0 ā”œā”€ hast-util-sanitize@4.0.0 ā”‚ ā””ā”€ @types/hast@^2.0.0 ā”œā”€ hast-util-select@5.0.2 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ bcp-47-match@^2.0.0 ā”‚ ā”œā”€ comma-separated-tokens@^2.0.0 ā”‚ ā”œā”€ css-selector-parser@^1.0.0 ā”‚ ā”œā”€ direction@^2.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ hast-util-to-string@^2.0.0 ā”‚ ā”œā”€ hast-util-whitespace@^2.0.0 ā”‚ ā”œā”€ not@^0.1.0 ā”‚ ā”œā”€ nth-check@^2.0.0 ā”‚ ā”œā”€ property-information@^6.0.0 ā”‚ ā”œā”€ space-separated-tokens@^2.0.0 ā”‚ ā”œā”€ unist-util-visit@^4.0.0 ā”‚ ā””ā”€ zwitch@^2.0.0 ā”œā”€ hast-util-to-html@8.0.3 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ ccount@^2.0.0 ā”‚ ā”œā”€ comma-separated-tokens@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ hast-util-whitespace@^2.0.0 ā”‚ ā”œā”€ html-void-elements@^2.0.0 ā”‚ ā”œā”€ property-information@^6.0.0 ā”‚ ā”œā”€ space-separated-tokens@^2.0.0 ā”‚ ā”œā”€ stringify-entities@^4.0.2 ā”‚ ā””ā”€ unist-util-is@^5.0.0 ā”œā”€ hast-util-to-mdast@8.4.0 ā”‚ ā”œā”€ @types/extend@^3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ extend@^3.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ hast-util-phrasing@^2.0.0 ā”‚ ā”œā”€ hast-util-to-text@^3.0.0 ā”‚ ā”œā”€ mdast-util-phrasing@^3.0.0 ā”‚ ā”œā”€ mdast-util-to-string@^3.0.0 ā”‚ ā”œā”€ rehype-minify-whitespace@^5.0.0 ā”‚ ā”œā”€ trim-trailing-lines@^2.0.0 ā”‚ ā”œā”€ unist-util-is@^5.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ hast-util-to-nlcst@2.2.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ @types/nlcst@^1.0.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ hast-util-embedded@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ hast-util-phrasing@^2.0.0 ā”‚ ā”œā”€ hast-util-to-string@^2.0.0 ā”‚ ā”œā”€ hast-util-whitespace@^2.0.0 ā”‚ ā”œā”€ nlcst-to-string@^3.0.0 ā”‚ ā”œā”€ unist-util-position@^4.0.0 ā”‚ ā”œā”€ vfile-location@^4.0.0 ā”‚ ā””ā”€ vfile@^5.0.0 ā”œā”€ hast-util-to-parse5@7.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ @types/parse5@^6.0.0 ā”‚ ā”œā”€ hast-to-hyperscript@^10.0.0 ā”‚ ā”œā”€ property-information@^6.0.0 ā”‚ ā”œā”€ web-namespaces@^2.0.0 ā”‚ ā””ā”€ zwitch@^2.0.0 ā”œā”€ hast-util-to-string@2.0.0 ā”‚ ā””ā”€ @types/hast@^2.0.0 ā”œā”€ hast-util-to-text@3.1.1 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā””ā”€ unist-util-find-after@^4.0.0 ā”œā”€ hast-util-whitespace@2.0.0 ā”œā”€ hastscript@7.0.2 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ comma-separated-tokens@^2.0.0 ā”‚ ā”œā”€ hast-util-parse-selector@^3.0.0 ā”‚ ā”œā”€ property-information@^6.0.0 ā”‚ ā””ā”€ space-separated-tokens@^2.0.0 ā”œā”€ header-case@2.0.4 ā”‚ ā”œā”€ capital-case@^1.0.4 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ hookable@5.1.1 ā”œā”€ hosted-git-info@2.8.9 ā”œā”€ html-enumerated-attributes@0.1.0 ā”œā”€ html-escaper@2.0.2 ā”œā”€ html-tags@3.2.0 ā”œā”€ html-url-attributes@2.0.0 ā”œā”€ html-void-elements@2.0.1 ā”œā”€ htmlparser2@8.0.1 ā”‚ ā”œā”€ domelementtype@^2.3.0 ā”‚ ā”œā”€ domhandler@^5.0.2 ā”‚ ā”œā”€ domhandler@5.0.3 ā”‚ ā”‚ ā””ā”€ domelementtype@^2.3.0 ā”‚ ā”œā”€ domutils@^3.0.1 ā”‚ ā””ā”€ entities@^4.3.0 ā”œā”€ http-errors@2.0.0 ā”‚ ā”œā”€ depd@2.0.0 ā”‚ ā”œā”€ inherits@2.0.4 ā”‚ ā”œā”€ setprototypeof@1.2.0 ā”‚ ā”œā”€ statuses@2.0.1 ā”‚ ā””ā”€ toidentifier@1.0.1 ā”œā”€ http-proxy-agent@5.0.0 ā”‚ ā”œā”€ @tootallnate/once@2 ā”‚ ā”œā”€ agent-base@6 ā”‚ ā””ā”€ debug@4 ā”œā”€ http-proxy@1.18.1 ā”‚ ā”œā”€ eventemitter3@^4.0.0 ā”‚ ā”œā”€ follow-redirects@^1.0.0 ā”‚ ā””ā”€ requires-port@^1.0.0 ā”œā”€ http-shutdown@1.2.2 ā”œā”€ https-proxy-agent@5.0.1 ā”‚ ā”œā”€ agent-base@6 ā”‚ ā””ā”€ debug@4 ā”œā”€ human-signals@2.1.0 ā”œā”€ iconv-lite@0.4.24 ā”‚ ā””ā”€ safer-buffer@>= 2.1.2 < 3 ā”œā”€ ieee754@1.2.1 ā”œā”€ ignore@5.2.0 ā”œā”€ immutable@4.1.0 ā”œā”€ import-fresh@3.3.0 ā”‚ ā”œā”€ parent-module@^1.0.0 ā”‚ ā”œā”€ resolve-from@^4.0.0 ā”‚ ā””ā”€ resolve-from@4.0.0 ā”œā”€ import-from@4.0.0 ā”œā”€ import-local@3.1.0 ā”‚ ā”œā”€ pkg-dir@^4.2.0 ā”‚ ā””ā”€ resolve-cwd@^3.0.0 ā”œā”€ imurmurhash@0.1.4 ā”œā”€ indent-string@4.0.0 ā”œā”€ inflight@1.0.6 ā”‚ ā”œā”€ once@^1.3.0 ā”‚ ā””ā”€ wrappy@1 ā”œā”€ inherits@2.0.4 ā”œā”€ ini@1.3.8 ā”œā”€ inline-style-parser@0.1.1 ā”œā”€ inquirer@8.2.4 ā”‚ ā”œā”€ ansi-escapes@^4.2.1 ā”‚ ā”œā”€ chalk@^4.1.1 ā”‚ ā”œā”€ cli-cursor@^3.1.0 ā”‚ ā”œā”€ cli-width@^3.0.0 ā”‚ ā”œā”€ external-editor@^3.0.3 ā”‚ ā”œā”€ figures@^3.0.0 ā”‚ ā”œā”€ lodash@^4.17.21 ā”‚ ā”œā”€ mute-stream@0.0.8 ā”‚ ā”œā”€ ora@^5.4.1 ā”‚ ā”œā”€ run-async@^2.4.0 ā”‚ ā”œā”€ rxjs@^7.5.5 ā”‚ ā”œā”€ string-width@^4.1.0 ā”‚ ā”œā”€ strip-ansi@^6.0.0 ā”‚ ā”œā”€ through@^2.3.6 ā”‚ ā””ā”€ wrap-ansi@^7.0.0 ā”œā”€ internal-slot@1.0.3 ā”‚ ā”œā”€ get-intrinsic@^1.1.0 ā”‚ ā”œā”€ has@^1.0.3 ā”‚ ā””ā”€ side-channel@^1.0.4 ā”œā”€ invariant@2.2.4 ā”‚ ā””ā”€ loose-envify@^1.0.0 ā”œā”€ ioredis@5.2.2 ā”‚ ā”œā”€ @ioredis/commands@^1.1.1 ā”‚ ā”œā”€ cluster-key-slot@^1.1.0 ā”‚ ā”œā”€ debug@^4.3.4 ā”‚ ā”œā”€ denque@^2.0.1 ā”‚ ā”œā”€ lodash.defaults@^4.2.0 ā”‚ ā”œā”€ lodash.isarguments@^3.1.0 ā”‚ ā”œā”€ redis-errors@^1.2.0 ā”‚ ā”œā”€ redis-parser@^3.0.0 ā”‚ ā””ā”€ standard-as-callback@^2.1.0 ā”œā”€ is-absolute@1.0.0 ā”‚ ā”œā”€ is-relative@^1.0.0 ā”‚ ā””ā”€ is-windows@^1.0.1 ā”œā”€ is-alphabetical@2.0.1 ā”œā”€ is-alphanumerical@2.0.1 ā”‚ ā”œā”€ is-alphabetical@^2.0.0 ā”‚ ā””ā”€ is-decimal@^2.0.0 ā”œā”€ is-arguments@1.1.1 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā””ā”€ has-tostringtag@^1.0.0 ā”œā”€ is-arrayish@0.2.1 ā”œā”€ is-bigint@1.0.4 ā”‚ ā””ā”€ has-bigints@^1.0.1 ā”œā”€ is-binary-path@2.1.0 ā”‚ ā””ā”€ binary-extensions@^2.0.0 ā”œā”€ is-boolean-object@1.1.2 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā””ā”€ has-tostringtag@^1.0.0 ā”œā”€ is-buffer@1.1.6 ā”œā”€ is-builtin-module@3.2.0 ā”‚ ā””ā”€ builtin-modules@^3.3.0 ā”œā”€ is-callable@1.2.4 ā”œā”€ is-core-module@2.10.0 ā”‚ ā””ā”€ has@^1.0.3 ā”œā”€ is-date-object@1.0.5 ā”‚ ā””ā”€ has-tostringtag@^1.0.0 ā”œā”€ is-decimal@2.0.1 ā”œā”€ is-docker@2.2.1 ā”œā”€ is-extendable@0.1.1 ā”œā”€ is-extglob@2.1.1 ā”œā”€ is-fullwidth-code-point@3.0.0 ā”œā”€ is-generator-fn@2.1.0 ā”œā”€ is-generator-function@1.0.10 ā”‚ ā””ā”€ has-tostringtag@^1.0.0 ā”œā”€ is-glob@4.0.3 ā”‚ ā””ā”€ is-extglob@^2.1.1 ā”œā”€ is-hexadecimal@1.0.4 ā”œā”€ is-html@2.0.0 ā”‚ ā””ā”€ html-tags@^3.0.0 ā”œā”€ is-interactive@1.0.0 ā”œā”€ is-lower-case@2.0.2 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ is-module@1.0.0 ā”œā”€ is-negative-zero@2.0.2 ā”œā”€ is-number-object@1.0.7 ā”‚ ā””ā”€ has-tostringtag@^1.0.0 ā”œā”€ is-number@7.0.0 ā”œā”€ is-plain-obj@4.1.0 ā”œā”€ is-plain-object@2.0.4 ā”‚ ā””ā”€ isobject@^3.0.1 ā”œā”€ is-primitive@3.0.1 ā”œā”€ is-promise@4.0.0 ā”œā”€ is-reference@1.2.1 ā”‚ ā”œā”€ @types/estree@* ā”‚ ā””ā”€ @types/estree@1.0.0 ā”œā”€ is-regex@1.1.4 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā””ā”€ has-tostringtag@^1.0.0 ā”œā”€ is-relative@1.0.0 ā”‚ ā””ā”€ is-unc-path@^1.0.0 ā”œā”€ is-shared-array-buffer@1.0.2 ā”‚ ā””ā”€ call-bind@^1.0.2 ā”œā”€ is-ssh@1.4.0 ā”‚ ā””ā”€ protocols@^2.0.1 ā”œā”€ is-stream-ended@0.1.4 ā”œā”€ is-stream@2.0.1 ā”œā”€ is-string@1.0.7 ā”‚ ā””ā”€ has-tostringtag@^1.0.0 ā”œā”€ is-symbol@1.0.4 ā”‚ ā””ā”€ has-symbols@^1.0.2 ā”œā”€ is-typed-array@1.1.9 ā”‚ ā”œā”€ available-typed-arrays@^1.0.5 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ es-abstract@^1.20.0 ā”‚ ā”œā”€ for-each@^0.3.3 ā”‚ ā””ā”€ has-tostringtag@^1.0.0 ā”œā”€ is-unc-path@1.0.0 ā”‚ ā””ā”€ unc-path-regex@^0.1.2 ā”œā”€ is-unicode-supported@1.2.0 ā”œā”€ is-upper-case@2.0.2 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ is-weakref@1.0.2 ā”‚ ā””ā”€ call-bind@^1.0.2 ā”œā”€ is-windows@1.0.2 ā”œā”€ is-wsl@2.2.0 ā”‚ ā””ā”€ is-docker@^2.0.0 ā”œā”€ isarray@1.0.0 ā”œā”€ isexe@2.0.0 ā”œā”€ isobject@3.0.1 ā”œā”€ isomorphic-fetch@3.0.0 ā”‚ ā”œā”€ node-fetch@^2.6.1 ā”‚ ā””ā”€ whatwg-fetch@^3.4.1 ā”œā”€ isomorphic-ws@5.0.0 ā”œā”€ istanbul-lib-coverage@3.2.0 ā”œā”€ istanbul-lib-instrument@5.2.0 ā”‚ ā”œā”€ @babel/core@^7.12.3 ā”‚ ā”œā”€ @babel/parser@^7.14.7 ā”‚ ā”œā”€ @istanbuljs/schema@^0.1.2 ā”‚ ā”œā”€ istanbul-lib-coverage@^3.2.0 ā”‚ ā”œā”€ semver@^6.3.0 ā”‚ ā””ā”€ semver@6.3.0 ā”œā”€ istanbul-lib-report@3.0.0 ā”‚ ā”œā”€ istanbul-lib-coverage@^3.0.0 ā”‚ ā”œā”€ make-dir@^3.0.0 ā”‚ ā””ā”€ supports-color@^7.1.0 ā”œā”€ istanbul-lib-source-maps@4.0.1 ā”‚ ā”œā”€ debug@^4.1.1 ā”‚ ā”œā”€ istanbul-lib-coverage@^3.0.0 ā”‚ ā””ā”€ source-map@^0.6.1 ā”œā”€ istanbul-reports@3.1.5 ā”‚ ā”œā”€ html-escaper@^2.0.0 ā”‚ ā””ā”€ istanbul-lib-report@^3.0.0 ā”œā”€ jest-changed-files@28.1.3 ā”‚ ā”œā”€ execa@^5.0.0 ā”‚ ā””ā”€ p-limit@^3.1.0 ā”œā”€ jest-circus@28.1.3 ā”‚ ā”œā”€ @jest/environment@^28.1.3 ā”‚ ā”œā”€ @jest/expect@^28.1.3 ā”‚ ā”œā”€ @jest/test-result@^28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @types/node@* ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ co@^4.6.0 ā”‚ ā”œā”€ dedent@^0.7.0 ā”‚ ā”œā”€ is-generator-fn@^2.0.0 ā”‚ ā”œā”€ jest-each@^28.1.3 ā”‚ ā”œā”€ jest-matcher-utils@^28.1.3 ā”‚ ā”œā”€ jest-message-util@^28.1.3 ā”‚ ā”œā”€ jest-runtime@^28.1.3 ā”‚ ā”œā”€ jest-snapshot@^28.1.3 ā”‚ ā”œā”€ jest-util@^28.1.3 ā”‚ ā”œā”€ p-limit@^3.1.0 ā”‚ ā”œā”€ pretty-format@^28.1.3 ā”‚ ā”œā”€ slash@^3.0.0 ā”‚ ā””ā”€ stack-utils@^2.0.3 ā”œā”€ jest-cli@28.1.3 ā”‚ ā”œā”€ @jest/core@^28.1.3 ā”‚ ā”œā”€ @jest/test-result@^28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ exit@^0.1.2 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā”œā”€ import-local@^3.0.2 ā”‚ ā”œā”€ jest-config@^28.1.3 ā”‚ ā”œā”€ jest-util@^28.1.3 ā”‚ ā”œā”€ jest-validate@^28.1.3 ā”‚ ā”œā”€ prompts@^2.0.1 ā”‚ ā””ā”€ yargs@^17.3.1 ā”œā”€ jest-config@28.1.3 ā”‚ ā”œā”€ @babel/core@^7.11.6 ā”‚ ā”œā”€ @jest/test-sequencer@^28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ babel-jest@^28.1.3 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ ci-info@^3.2.0 ā”‚ ā”œā”€ deepmerge@^4.2.2 ā”‚ ā”œā”€ glob@^7.1.3 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā”œā”€ jest-circus@^28.1.3 ā”‚ ā”œā”€ jest-environment-node@^28.1.3 ā”‚ ā”œā”€ jest-get-type@^28.0.2 ā”‚ ā”œā”€ jest-regex-util@^28.0.2 ā”‚ ā”œā”€ jest-resolve@^28.1.3 ā”‚ ā”œā”€ jest-runner@^28.1.3 ā”‚ ā”œā”€ jest-util@^28.1.3 ā”‚ ā”œā”€ jest-validate@^28.1.3 ā”‚ ā”œā”€ micromatch@^4.0.4 ā”‚ ā”œā”€ parse-json@^5.2.0 ā”‚ ā”œā”€ pretty-format@^28.1.3 ā”‚ ā”œā”€ slash@^3.0.0 ā”‚ ā””ā”€ strip-json-comments@^3.1.1 ā”œā”€ jest-diff@28.1.3 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ diff-sequences@^28.1.1 ā”‚ ā”œā”€ jest-get-type@^28.0.2 ā”‚ ā””ā”€ pretty-format@^28.1.3 ā”œā”€ jest-docblock@28.1.1 ā”‚ ā””ā”€ detect-newline@^3.0.0 ā”œā”€ jest-each@28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ jest-get-type@^28.0.2 ā”‚ ā”œā”€ jest-util@^28.1.3 ā”‚ ā””ā”€ pretty-format@^28.1.3 ā”œā”€ jest-environment-node@28.1.3 ā”‚ ā”œā”€ @jest/environment@^28.1.3 ā”‚ ā”œā”€ @jest/fake-timers@^28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @types/node@* ā”‚ ā”œā”€ jest-mock@^28.1.3 ā”‚ ā””ā”€ jest-util@^28.1.3 ā”œā”€ jest-get-type@28.0.2 ā”œā”€ jest-haste-map@28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @types/graceful-fs@^4.1.3 ā”‚ ā”œā”€ @types/node@* ā”‚ ā”œā”€ anymatch@^3.0.3 ā”‚ ā”œā”€ fb-watchman@^2.0.0 ā”‚ ā”œā”€ fsevents@^2.3.2 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā”œā”€ jest-regex-util@^28.0.2 ā”‚ ā”œā”€ jest-util@^28.1.3 ā”‚ ā”œā”€ jest-worker@^28.1.3 ā”‚ ā”œā”€ micromatch@^4.0.4 ā”‚ ā””ā”€ walker@^1.0.8 ā”œā”€ jest-leak-detector@28.1.3 ā”‚ ā”œā”€ jest-get-type@^28.0.2 ā”‚ ā””ā”€ pretty-format@^28.1.3 ā”œā”€ jest-matcher-utils@28.1.3 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ jest-diff@^28.1.3 ā”‚ ā”œā”€ jest-get-type@^28.0.2 ā”‚ ā””ā”€ pretty-format@^28.1.3 ā”œā”€ jest-message-util@28.1.3 ā”‚ ā”œā”€ @babel/code-frame@^7.12.13 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @types/stack-utils@^2.0.0 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā”œā”€ micromatch@^4.0.4 ā”‚ ā”œā”€ pretty-format@^28.1.3 ā”‚ ā”œā”€ slash@^3.0.0 ā”‚ ā””ā”€ stack-utils@^2.0.3 ā”œā”€ jest-mock@28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā””ā”€ @types/node@* ā”œā”€ jest-pnp-resolver@1.2.2 ā”œā”€ jest-regex-util@28.0.2 ā”œā”€ jest-resolve-dependencies@28.1.3 ā”‚ ā”œā”€ jest-regex-util@^28.0.2 ā”‚ ā””ā”€ jest-snapshot@^28.1.3 ā”œā”€ jest-resolve@28.1.3 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā”œā”€ jest-haste-map@^28.1.3 ā”‚ ā”œā”€ jest-pnp-resolver@^1.2.2 ā”‚ ā”œā”€ jest-util@^28.1.3 ā”‚ ā”œā”€ jest-validate@^28.1.3 ā”‚ ā”œā”€ resolve.exports@^1.1.0 ā”‚ ā”œā”€ resolve@^1.20.0 ā”‚ ā””ā”€ slash@^3.0.0 ā”œā”€ jest-runner@28.1.3 ā”‚ ā”œā”€ @jest/console@^28.1.3 ā”‚ ā”œā”€ @jest/environment@^28.1.3 ā”‚ ā”œā”€ @jest/test-result@^28.1.3 ā”‚ ā”œā”€ @jest/transform@^28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @types/node@* ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ emittery@^0.10.2 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā”œā”€ jest-docblock@^28.1.1 ā”‚ ā”œā”€ jest-environment-node@^28.1.3 ā”‚ ā”œā”€ jest-haste-map@^28.1.3 ā”‚ ā”œā”€ jest-leak-detector@^28.1.3 ā”‚ ā”œā”€ jest-message-util@^28.1.3 ā”‚ ā”œā”€ jest-resolve@^28.1.3 ā”‚ ā”œā”€ jest-runtime@^28.1.3 ā”‚ ā”œā”€ jest-util@^28.1.3 ā”‚ ā”œā”€ jest-watcher@^28.1.3 ā”‚ ā”œā”€ jest-worker@^28.1.3 ā”‚ ā”œā”€ p-limit@^3.1.0 ā”‚ ā”œā”€ source-map-support@0.5.13 ā”‚ ā””ā”€ source-map-support@0.5.13 ā”‚ ā”œā”€ buffer-from@^1.0.0 ā”‚ ā””ā”€ source-map@^0.6.0 ā”œā”€ jest-runtime@28.1.3 ā”‚ ā”œā”€ @jest/environment@^28.1.3 ā”‚ ā”œā”€ @jest/fake-timers@^28.1.3 ā”‚ ā”œā”€ @jest/globals@^28.1.3 ā”‚ ā”œā”€ @jest/source-map@^28.1.2 ā”‚ ā”œā”€ @jest/test-result@^28.1.3 ā”‚ ā”œā”€ @jest/transform@^28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ cjs-module-lexer@^1.0.0 ā”‚ ā”œā”€ collect-v8-coverage@^1.0.0 ā”‚ ā”œā”€ execa@^5.0.0 ā”‚ ā”œā”€ glob@^7.1.3 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā”œā”€ jest-haste-map@^28.1.3 ā”‚ ā”œā”€ jest-message-util@^28.1.3 ā”‚ ā”œā”€ jest-mock@^28.1.3 ā”‚ ā”œā”€ jest-regex-util@^28.0.2 ā”‚ ā”œā”€ jest-resolve@^28.1.3 ā”‚ ā”œā”€ jest-snapshot@^28.1.3 ā”‚ ā”œā”€ jest-util@^28.1.3 ā”‚ ā”œā”€ slash@^3.0.0 ā”‚ ā”œā”€ strip-bom@^4.0.0 ā”‚ ā””ā”€ strip-bom@4.0.0 ā”œā”€ jest-snapshot@28.1.3 ā”‚ ā”œā”€ @babel/core@^7.11.6 ā”‚ ā”œā”€ @babel/generator@^7.7.2 ā”‚ ā”œā”€ @babel/plugin-syntax-typescript@^7.7.2 ā”‚ ā”œā”€ @babel/traverse@^7.7.2 ā”‚ ā”œā”€ @babel/types@^7.3.3 ā”‚ ā”œā”€ @jest/expect-utils@^28.1.3 ā”‚ ā”œā”€ @jest/transform@^28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @types/babel__traverse@^7.0.6 ā”‚ ā”œā”€ @types/prettier@^2.1.5 ā”‚ ā”œā”€ babel-preset-current-node-syntax@^1.0.0 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ expect@^28.1.3 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā”œā”€ jest-diff@^28.1.3 ā”‚ ā”œā”€ jest-get-type@^28.0.2 ā”‚ ā”œā”€ jest-haste-map@^28.1.3 ā”‚ ā”œā”€ jest-matcher-utils@^28.1.3 ā”‚ ā”œā”€ jest-message-util@^28.1.3 ā”‚ ā”œā”€ jest-util@^28.1.3 ā”‚ ā”œā”€ natural-compare@^1.4.0 ā”‚ ā”œā”€ pretty-format@^28.1.3 ā”‚ ā””ā”€ semver@^7.3.5 ā”œā”€ jest-util@28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @types/node@* ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ ci-info@^3.2.0 ā”‚ ā”œā”€ graceful-fs@^4.2.9 ā”‚ ā””ā”€ picomatch@^2.2.3 ā”œā”€ jest-validate@28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ camelcase@^6.2.0 ā”‚ ā”œā”€ camelcase@6.3.0 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ jest-get-type@^28.0.2 ā”‚ ā”œā”€ leven@^3.1.0 ā”‚ ā””ā”€ pretty-format@^28.1.3 ā”œā”€ jest-watcher@28.1.3 ā”‚ ā”œā”€ @jest/test-result@^28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ @types/node@* ā”‚ ā”œā”€ ansi-escapes@^4.2.1 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ emittery@^0.10.2 ā”‚ ā”œā”€ jest-util@^28.1.3 ā”‚ ā””ā”€ string-length@^4.0.1 ā”œā”€ jest-worker@28.1.3 ā”‚ ā”œā”€ @types/node@* ā”‚ ā”œā”€ merge-stream@^2.0.0 ā”‚ ā”œā”€ supports-color@^8.0.0 ā”‚ ā””ā”€ supports-color@8.1.1 ā”‚ ā””ā”€ has-flag@^4.0.0 ā”œā”€ jest@28.1.3 ā”‚ ā”œā”€ @jest/core@^28.1.3 ā”‚ ā”œā”€ @jest/types@^28.1.3 ā”‚ ā”œā”€ import-local@^3.0.2 ā”‚ ā””ā”€ jest-cli@^28.1.3 ā”œā”€ jiti@1.14.0 ā”œā”€ jmespath@0.16.0 ā”œā”€ js-tokens@4.0.0 ā”œā”€ js-trgm@1.0.4 ā”œā”€ js-yaml@4.1.0 ā”‚ ā”œā”€ argparse@^2.0.1 ā”‚ ā””ā”€ argparse@2.0.1 ā”œā”€ js2xmlparser@4.0.2 ā”‚ ā””ā”€ xmlcreate@^2.0.4 ā”œā”€ jsdoc@3.6.11 ā”‚ ā”œā”€ @babel/parser@^7.9.4 ā”‚ ā”œā”€ @types/markdown-it@^12.2.3 ā”‚ ā”œā”€ bluebird@^3.7.2 ā”‚ ā”œā”€ catharsis@^0.9.0 ā”‚ ā”œā”€ escape-string-regexp@^2.0.0 ā”‚ ā”œā”€ escape-string-regexp@2.0.0 ā”‚ ā”œā”€ js2xmlparser@^4.0.2 ā”‚ ā”œā”€ klaw@^3.0.0 ā”‚ ā”œā”€ markdown-it-anchor@^8.4.1 ā”‚ ā”œā”€ markdown-it@^12.3.2 ā”‚ ā”œā”€ marked@^4.0.10 ā”‚ ā”œā”€ mkdirp@^1.0.4 ā”‚ ā”œā”€ requizzle@^0.2.3 ā”‚ ā”œā”€ strip-json-comments@^3.1.0 ā”‚ ā”œā”€ taffydb@2.6.2 ā”‚ ā””ā”€ underscore@~1.13.2 ā”œā”€ jsesc@2.5.2 ā”œā”€ json-bigint@1.0.0 ā”‚ ā””ā”€ bignumber.js@^9.0.0 ā”œā”€ json-parse-even-better-errors@2.3.1 ā”œā”€ json-schema-traverse@0.4.1 ā”œā”€ json-stable-stringify-without-jsonify@1.0.1 ā”œā”€ json-stable-stringify@1.0.1 ā”‚ ā””ā”€ jsonify@~0.0.0 ā”œā”€ json-to-pretty-yaml@1.2.2 ā”‚ ā”œā”€ remedial@^1.0.7 ā”‚ ā””ā”€ remove-trailing-spaces@^1.0.6 ā”œā”€ json5@2.2.1 ā”œā”€ jsonc-eslint-parser@2.1.0 ā”‚ ā”œā”€ acorn@^8.5.0 ā”‚ ā”œā”€ eslint-visitor-keys@^3.0.0 ā”‚ ā”œā”€ espree@^9.0.0 ā”‚ ā””ā”€ semver@^7.3.5 ā”œā”€ jsonc-parser@3.1.0 ā”œā”€ jsonfile@6.1.0 ā”‚ ā”œā”€ graceful-fs@^4.1.6 ā”‚ ā””ā”€ universalify@^2.0.0 ā”œā”€ jsonify@0.0.0 ā”œā”€ jsonwebtoken@8.5.1 ā”‚ ā”œā”€ jwa@1.4.1 ā”‚ ā”‚ ā”œā”€ buffer-equal-constant-time@1.0.1 ā”‚ ā”‚ ā”œā”€ ecdsa-sig-formatter@1.0.11 ā”‚ ā”‚ ā””ā”€ safe-buffer@^5.0.1 ā”‚ ā”œā”€ jws@^3.2.2 ā”‚ ā”œā”€ jws@3.2.2 ā”‚ ā”‚ ā”œā”€ jwa@^1.4.1 ā”‚ ā”‚ ā””ā”€ safe-buffer@^5.0.1 ā”‚ ā”œā”€ lodash.includes@^4.3.0 ā”‚ ā”œā”€ lodash.isboolean@^3.0.3 ā”‚ ā”œā”€ lodash.isinteger@^4.0.4 ā”‚ ā”œā”€ lodash.isnumber@^3.0.3 ā”‚ ā”œā”€ lodash.isplainobject@^4.0.6 ā”‚ ā”œā”€ lodash.isstring@^4.0.1 ā”‚ ā”œā”€ lodash.once@^4.0.0 ā”‚ ā”œā”€ ms@^2.1.1 ā”‚ ā”œā”€ semver@^5.6.0 ā”‚ ā””ā”€ semver@5.7.1 ā”œā”€ jsx-ast-utils@3.3.3 ā”‚ ā”œā”€ array-includes@^3.1.5 ā”‚ ā””ā”€ object.assign@^4.1.3 ā”œā”€ jwa@2.0.0 ā”‚ ā”œā”€ buffer-equal-constant-time@1.0.1 ā”‚ ā”œā”€ ecdsa-sig-formatter@1.0.11 ā”‚ ā””ā”€ safe-buffer@^5.0.1 ā”œā”€ jws@4.0.0 ā”‚ ā”œā”€ jwa@^2.0.0 ā”‚ ā””ā”€ safe-buffer@^5.0.1 ā”œā”€ kind-of@3.2.2 ā”‚ ā””ā”€ is-buffer@^1.1.5 ā”œā”€ klaw@3.0.0 ā”‚ ā””ā”€ graceful-fs@^4.1.9 ā”œā”€ kleur@4.1.5 ā”œā”€ klona@2.0.5 ā”œā”€ knitwork@0.1.2 ā”œā”€ kolorist@1.5.1 ā”œā”€ lazy-cache@1.0.4 ā”œā”€ lazystream@1.0.1 ā”‚ ā”œā”€ readable-stream@^2.0.5 ā”‚ ā”œā”€ readable-stream@2.3.7 ā”‚ ā”‚ ā”œā”€ core-util-is@~1.0.0 ā”‚ ā”‚ ā”œā”€ inherits@~2.0.3 ā”‚ ā”‚ ā”œā”€ isarray@~1.0.0 ā”‚ ā”‚ ā”œā”€ process-nextick-args@~2.0.0 ā”‚ ā”‚ ā”œā”€ safe-buffer@~5.1.1 ā”‚ ā”‚ ā”œā”€ string_decoder@~1.1.1 ā”‚ ā”‚ ā””ā”€ util-deprecate@~1.0.1 ā”‚ ā”œā”€ safe-buffer@5.1.2 ā”‚ ā””ā”€ string_decoder@1.1.1 ā”‚ ā””ā”€ safe-buffer@~5.1.0 ā”œā”€ leven@3.1.0 ā”œā”€ levn@0.4.1 ā”‚ ā”œā”€ prelude-ls@^1.2.1 ā”‚ ā”œā”€ prelude-ls@1.2.1 ā”‚ ā”œā”€ type-check@~0.4.0 ā”‚ ā””ā”€ type-check@0.4.0 ā”‚ ā””ā”€ prelude-ls@^1.2.1 ā”œā”€ libphonenumber-js@1.10.13 ā”œā”€ lilconfig@2.0.6 ā”œā”€ lines-and-columns@1.2.4 ā”œā”€ linkify-it@3.0.3 ā”‚ ā””ā”€ uc.micro@^1.0.1 ā”œā”€ listhen@0.2.15 ā”‚ ā”œā”€ clipboardy@^3.0.0 ā”‚ ā”œā”€ colorette@^2.0.19 ā”‚ ā”œā”€ defu@^6.0.0 ā”‚ ā”œā”€ get-port-please@^2.6.1 ā”‚ ā”œā”€ http-shutdown@^1.2.2 ā”‚ ā”œā”€ selfsigned@^2.0.1 ā”‚ ā””ā”€ ufo@^0.8.5 ā”œā”€ listr2@4.0.5 ā”‚ ā”œā”€ cli-truncate@^2.1.0 ā”‚ ā”œā”€ colorette@^2.0.16 ā”‚ ā”œā”€ log-update@^4.0.0 ā”‚ ā”œā”€ p-map@^4.0.0 ā”‚ ā”œā”€ rfdc@^1.3.0 ā”‚ ā”œā”€ rxjs@^7.5.5 ā”‚ ā”œā”€ through@^2.3.8 ā”‚ ā””ā”€ wrap-ansi@^7.0.0 ā”œā”€ local-pkg@0.4.2 ā”œā”€ locate-path@5.0.0 ā”‚ ā””ā”€ p-locate@^4.1.0 ā”œā”€ lodash-es@4.17.21 ā”œā”€ lodash._reinterpolate@3.0.0 ā”œā”€ lodash.camelcase@4.3.0 ā”œā”€ lodash.debounce@4.0.8 ā”œā”€ lodash.defaults@4.2.0 ā”œā”€ lodash.difference@4.5.0 ā”œā”€ lodash.flatten@4.4.0 ā”œā”€ lodash.includes@4.3.0 ā”œā”€ lodash.isarguments@3.1.0 ā”œā”€ lodash.isboolean@3.0.3 ā”œā”€ lodash.isinteger@4.0.4 ā”œā”€ lodash.isnumber@3.0.3 ā”œā”€ lodash.isplainobject@4.0.6 ā”œā”€ lodash.isstring@4.0.1 ā”œā”€ lodash.memoize@4.1.2 ā”œā”€ lodash.merge@4.6.2 ā”œā”€ lodash.once@4.1.1 ā”œā”€ lodash.pick@4.4.0 ā”œā”€ lodash.sortby@4.7.0 ā”œā”€ lodash.template@4.5.0 ā”‚ ā”œā”€ lodash._reinterpolate@^3.0.0 ā”‚ ā””ā”€ lodash.templatesettings@^4.0.0 ā”œā”€ lodash.templatesettings@4.2.0 ā”‚ ā””ā”€ lodash._reinterpolate@^3.0.0 ā”œā”€ lodash.union@4.6.0 ā”œā”€ lodash.uniq@4.5.0 ā”œā”€ lodash@4.17.21 ā”œā”€ log-symbols@4.1.0 ā”‚ ā”œā”€ chalk@^4.1.0 ā”‚ ā”œā”€ is-unicode-supported@^0.1.0 ā”‚ ā””ā”€ is-unicode-supported@0.1.0 ā”œā”€ log-update@4.0.0 ā”‚ ā”œā”€ ansi-escapes@^4.3.0 ā”‚ ā”œā”€ cli-cursor@^3.1.0 ā”‚ ā”œā”€ slice-ansi@^4.0.0 ā”‚ ā”œā”€ slice-ansi@4.0.0 ā”‚ ā”‚ ā”œā”€ ansi-styles@^4.0.0 ā”‚ ā”‚ ā”œā”€ astral-regex@^2.0.0 ā”‚ ā”‚ ā””ā”€ is-fullwidth-code-point@^3.0.0 ā”‚ ā”œā”€ wrap-ansi@^6.2.0 ā”‚ ā””ā”€ wrap-ansi@6.2.0 ā”‚ ā”œā”€ ansi-styles@^4.0.0 ā”‚ ā”œā”€ string-width@^4.1.0 ā”‚ ā””ā”€ strip-ansi@^6.0.0 ā”œā”€ loglevel@1.8.0 ā”œā”€ long@4.0.0 ā”œā”€ longest-streak@3.0.1 ā”œā”€ loose-envify@1.4.0 ā”‚ ā””ā”€ js-tokens@^3.0.0 || ^4.0.0 ā”œā”€ lower-case-first@2.0.2 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ lower-case@2.0.2 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ lru-cache@6.0.0 ā”‚ ā””ā”€ yallist@^4.0.0 ā”œā”€ lzutf8@0.6.3 ā”‚ ā”œā”€ readable-stream@^4.0.0 ā”‚ ā””ā”€ readable-stream@4.1.0 ā”‚ ā””ā”€ abort-controller@^3.0.0 ā”œā”€ magic-string@0.26.2 ā”‚ ā””ā”€ sourcemap-codec@^1.4.8 ā”œā”€ make-dir@3.1.0 ā”‚ ā”œā”€ semver@^6.0.0 ā”‚ ā””ā”€ semver@6.3.0 ā”œā”€ make-error@1.3.6 ā”œā”€ makeerror@1.0.12 ā”‚ ā””ā”€ tmpl@1.0.5 ā”œā”€ map-cache@0.2.2 ā”œā”€ markdown-it-anchor@8.6.4 ā”œā”€ markdown-it@12.3.2 ā”‚ ā”œā”€ argparse@^2.0.1 ā”‚ ā”œā”€ argparse@2.0.1 ā”‚ ā”œā”€ entities@~2.1.0 ā”‚ ā”œā”€ entities@2.1.0 ā”‚ ā”œā”€ linkify-it@^3.0.1 ā”‚ ā”œā”€ mdurl@^1.0.1 ā”‚ ā””ā”€ uc.micro@^1.0.5 ā”œā”€ markdown-table@3.0.2 ā”œā”€ marked@4.0.18 ā”œā”€ md5@2.3.0 ā”‚ ā”œā”€ charenc@0.0.2 ā”‚ ā”œā”€ crypt@0.0.2 ā”‚ ā””ā”€ is-buffer@~1.1.6 ā”œā”€ mdast-util-definitions@5.1.1 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ mdast-util-directive@2.2.1 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ character-reference-invalid@2.0.1 ā”‚ ā”œā”€ is-hexadecimal@2.0.1 ā”‚ ā”œā”€ mdast-util-to-markdown@^1.3.0 ā”‚ ā”œā”€ parse-entities@^4.0.0 ā”‚ ā”œā”€ parse-entities@4.0.0 ā”‚ ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”‚ ā”œā”€ character-entities-legacy@^3.0.0 ā”‚ ā”‚ ā”œā”€ character-entities@^2.0.0 ā”‚ ā”‚ ā”œā”€ character-reference-invalid@^2.0.0 ā”‚ ā”‚ ā”œā”€ decode-named-character-reference@^1.0.0 ā”‚ ā”‚ ā”œā”€ is-alphanumerical@^2.0.0 ā”‚ ā”‚ ā”œā”€ is-decimal@^2.0.0 ā”‚ ā”‚ ā””ā”€ is-hexadecimal@^2.0.0 ā”‚ ā”œā”€ stringify-entities@^4.0.0 ā”‚ ā””ā”€ unist-util-visit-parents@^5.0.0 ā”œā”€ mdast-util-find-and-replace@2.2.1 ā”‚ ā”œā”€ escape-string-regexp@^5.0.0 ā”‚ ā”œā”€ unist-util-is@^5.0.0 ā”‚ ā””ā”€ unist-util-visit-parents@^5.0.0 ā”œā”€ mdast-util-from-markdown@1.2.0 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ decode-named-character-reference@^1.0.0 ā”‚ ā”œā”€ mdast-util-to-string@^3.1.0 ā”‚ ā”œā”€ micromark-util-decode-numeric-character-reference@^1.0.0 ā”‚ ā”œā”€ micromark-util-decode-string@^1.0.0 ā”‚ ā”œā”€ micromark-util-normalize-identifier@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā”œā”€ micromark-util-types@^1.0.0 ā”‚ ā”œā”€ micromark@^3.0.0 ā”‚ ā”œā”€ unist-util-stringify-position@^3.0.0 ā”‚ ā””ā”€ uvu@^0.5.0 ā”œā”€ mdast-util-gfm-autolink-literal@1.0.2 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ ccount@^2.0.0 ā”‚ ā”œā”€ mdast-util-find-and-replace@^2.0.0 ā”‚ ā””ā”€ micromark-util-character@^1.0.0 ā”œā”€ mdast-util-gfm-footnote@1.0.1 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ mdast-util-to-markdown@^1.3.0 ā”‚ ā””ā”€ micromark-util-normalize-identifier@^1.0.0 ā”œā”€ mdast-util-gfm-strikethrough@1.0.1 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā””ā”€ mdast-util-to-markdown@^1.3.0 ā”œā”€ mdast-util-gfm-table@1.0.4 ā”‚ ā”œā”€ markdown-table@^3.0.0 ā”‚ ā”œā”€ mdast-util-from-markdown@^1.0.0 ā”‚ ā””ā”€ mdast-util-to-markdown@^1.3.0 ā”œā”€ mdast-util-gfm-task-list-item@1.0.1 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā””ā”€ mdast-util-to-markdown@^1.3.0 ā”œā”€ mdast-util-gfm@2.0.1 ā”‚ ā”œā”€ mdast-util-from-markdown@^1.0.0 ā”‚ ā”œā”€ mdast-util-gfm-autolink-literal@^1.0.0 ā”‚ ā”œā”€ mdast-util-gfm-footnote@^1.0.0 ā”‚ ā”œā”€ mdast-util-gfm-strikethrough@^1.0.0 ā”‚ ā”œā”€ mdast-util-gfm-table@^1.0.0 ā”‚ ā”œā”€ mdast-util-gfm-task-list-item@^1.0.0 ā”‚ ā””ā”€ mdast-util-to-markdown@^1.0.0 ā”œā”€ mdast-util-phrasing@3.0.0 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā””ā”€ unist-util-is@^5.0.0 ā”œā”€ mdast-util-to-hast@12.2.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ @types/mdurl@^1.0.0 ā”‚ ā”œā”€ mdast-util-definitions@^5.0.0 ā”‚ ā”œā”€ mdurl@^1.0.0 ā”‚ ā”œā”€ micromark-util-sanitize-uri@^1.0.0 ā”‚ ā”œā”€ trim-lines@^3.0.0 ā”‚ ā”œā”€ unist-builder@^3.0.0 ā”‚ ā”œā”€ unist-util-generated@^2.0.0 ā”‚ ā”œā”€ unist-util-position@^4.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ mdast-util-to-markdown@1.3.0 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ longest-streak@^3.0.0 ā”‚ ā”œā”€ mdast-util-to-string@^3.0.0 ā”‚ ā”œā”€ micromark-util-decode-string@^1.0.0 ā”‚ ā”œā”€ unist-util-visit@^4.0.0 ā”‚ ā””ā”€ zwitch@^2.0.0 ā”œā”€ mdast-util-to-nlcst@5.2.1 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ @types/nlcst@^1.0.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ nlcst-to-string@^3.0.0 ā”‚ ā”œā”€ unist-util-position@^4.0.0 ā”‚ ā”œā”€ vfile-location@^4.0.0 ā”‚ ā””ā”€ vfile@^5.0.0 ā”œā”€ mdast-util-to-string@3.1.0 ā”œā”€ mdn-data@2.0.14 ā”œā”€ mdurl@1.0.1 ā”œā”€ memory-fs@0.5.0 ā”‚ ā”œā”€ errno@^0.1.3 ā”‚ ā”œā”€ readable-stream@^2.0.1 ā”‚ ā”œā”€ readable-stream@2.3.7 ā”‚ ā”‚ ā”œā”€ core-util-is@~1.0.0 ā”‚ ā”‚ ā”œā”€ inherits@~2.0.3 ā”‚ ā”‚ ā”œā”€ isarray@~1.0.0 ā”‚ ā”‚ ā”œā”€ process-nextick-args@~2.0.0 ā”‚ ā”‚ ā”œā”€ safe-buffer@~5.1.1 ā”‚ ā”‚ ā”œā”€ string_decoder@~1.1.1 ā”‚ ā”‚ ā””ā”€ util-deprecate@~1.0.1 ā”‚ ā”œā”€ safe-buffer@5.1.2 ā”‚ ā””ā”€ string_decoder@1.1.1 ā”‚ ā””ā”€ safe-buffer@~5.1.0 ā”œā”€ merge-deep@3.0.3 ā”‚ ā”œā”€ arr-union@^3.1.0 ā”‚ ā”œā”€ clone-deep@^0.2.4 ā”‚ ā””ā”€ kind-of@^3.0.2 ā”œā”€ merge-stream@2.0.0 ā”œā”€ merge2@1.4.1 ā”œā”€ meros@1.2.0 ā”œā”€ micromark-core-commonmark@1.0.6 ā”‚ ā”œā”€ decode-named-character-reference@^1.0.0 ā”‚ ā”œā”€ micromark-factory-destination@^1.0.0 ā”‚ ā”œā”€ micromark-factory-label@^1.0.0 ā”‚ ā”œā”€ micromark-factory-space@^1.0.0 ā”‚ ā”œā”€ micromark-factory-title@^1.0.0 ā”‚ ā”œā”€ micromark-factory-whitespace@^1.0.0 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-chunked@^1.0.0 ā”‚ ā”œā”€ micromark-util-classify-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-html-tag-name@^1.0.0 ā”‚ ā”œā”€ micromark-util-normalize-identifier@^1.0.0 ā”‚ ā”œā”€ micromark-util-resolve-all@^1.0.0 ā”‚ ā”œā”€ micromark-util-subtokenize@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā”œā”€ micromark-util-types@^1.0.1 ā”‚ ā””ā”€ uvu@^0.5.0 ā”œā”€ micromark-extension-directive@2.1.1 ā”‚ ā”œā”€ character-reference-invalid@2.0.1 ā”‚ ā”œā”€ is-hexadecimal@2.0.1 ā”‚ ā”œā”€ micromark-factory-space@^1.0.0 ā”‚ ā”œā”€ micromark-factory-whitespace@^1.0.0 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā”œā”€ micromark-util-types@^1.0.0 ā”‚ ā”œā”€ parse-entities@^4.0.0 ā”‚ ā”œā”€ parse-entities@4.0.0 ā”‚ ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”‚ ā”œā”€ character-entities-legacy@^3.0.0 ā”‚ ā”‚ ā”œā”€ character-entities@^2.0.0 ā”‚ ā”‚ ā”œā”€ character-reference-invalid@^2.0.0 ā”‚ ā”‚ ā”œā”€ decode-named-character-reference@^1.0.0 ā”‚ ā”‚ ā”œā”€ is-alphanumerical@^2.0.0 ā”‚ ā”‚ ā”œā”€ is-decimal@^2.0.0 ā”‚ ā”‚ ā””ā”€ is-hexadecimal@^2.0.0 ā”‚ ā””ā”€ uvu@^0.5.0 ā”œā”€ micromark-extension-gfm-autolink-literal@1.0.3 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-sanitize-uri@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā”œā”€ micromark-util-types@^1.0.0 ā”‚ ā””ā”€ uvu@^0.5.0 ā”œā”€ micromark-extension-gfm-footnote@1.0.4 ā”‚ ā”œā”€ micromark-core-commonmark@^1.0.0 ā”‚ ā”œā”€ micromark-factory-space@^1.0.0 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-normalize-identifier@^1.0.0 ā”‚ ā”œā”€ micromark-util-sanitize-uri@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā”œā”€ micromark-util-types@^1.0.0 ā”‚ ā””ā”€ uvu@^0.5.0 ā”œā”€ micromark-extension-gfm-strikethrough@1.0.4 ā”‚ ā”œā”€ micromark-util-chunked@^1.0.0 ā”‚ ā”œā”€ micromark-util-classify-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-resolve-all@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā”œā”€ micromark-util-types@^1.0.0 ā”‚ ā””ā”€ uvu@^0.5.0 ā”œā”€ micromark-extension-gfm-table@1.0.5 ā”‚ ā”œā”€ micromark-factory-space@^1.0.0 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā”œā”€ micromark-util-types@^1.0.0 ā”‚ ā””ā”€ uvu@^0.5.0 ā”œā”€ micromark-extension-gfm-tagfilter@1.0.1 ā”‚ ā””ā”€ micromark-util-types@^1.0.0 ā”œā”€ micromark-extension-gfm-task-list-item@1.0.3 ā”‚ ā”œā”€ micromark-factory-space@^1.0.0 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā”œā”€ micromark-util-types@^1.0.0 ā”‚ ā””ā”€ uvu@^0.5.0 ā”œā”€ micromark-extension-gfm@2.0.1 ā”‚ ā”œā”€ micromark-extension-gfm-autolink-literal@^1.0.0 ā”‚ ā”œā”€ micromark-extension-gfm-footnote@^1.0.0 ā”‚ ā”œā”€ micromark-extension-gfm-strikethrough@^1.0.0 ā”‚ ā”œā”€ micromark-extension-gfm-table@^1.0.0 ā”‚ ā”œā”€ micromark-extension-gfm-tagfilter@^1.0.0 ā”‚ ā”œā”€ micromark-extension-gfm-task-list-item@^1.0.0 ā”‚ ā”œā”€ micromark-util-combine-extensions@^1.0.0 ā”‚ ā””ā”€ micromark-util-types@^1.0.0 ā”œā”€ micromark-factory-destination@1.0.0 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā””ā”€ micromark-util-types@^1.0.0 ā”œā”€ micromark-factory-label@1.0.2 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā”œā”€ micromark-util-types@^1.0.0 ā”‚ ā””ā”€ uvu@^0.5.0 ā”œā”€ micromark-factory-space@1.0.0 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā””ā”€ micromark-util-types@^1.0.0 ā”œā”€ micromark-factory-title@1.0.2 ā”‚ ā”œā”€ micromark-factory-space@^1.0.0 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā”œā”€ micromark-util-types@^1.0.0 ā”‚ ā””ā”€ uvu@^0.5.0 ā”œā”€ micromark-factory-whitespace@1.0.0 ā”‚ ā”œā”€ micromark-factory-space@^1.0.0 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā””ā”€ micromark-util-types@^1.0.0 ā”œā”€ micromark-util-character@1.1.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā””ā”€ micromark-util-types@^1.0.0 ā”œā”€ micromark-util-chunked@1.0.0 ā”‚ ā””ā”€ micromark-util-symbol@^1.0.0 ā”œā”€ micromark-util-classify-character@1.0.0 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā””ā”€ micromark-util-types@^1.0.0 ā”œā”€ micromark-util-combine-extensions@1.0.0 ā”‚ ā”œā”€ micromark-util-chunked@^1.0.0 ā”‚ ā””ā”€ micromark-util-types@^1.0.0 ā”œā”€ micromark-util-decode-numeric-character-reference@1.0.0 ā”‚ ā””ā”€ micromark-util-symbol@^1.0.0 ā”œā”€ micromark-util-decode-string@1.0.2 ā”‚ ā”œā”€ decode-named-character-reference@^1.0.0 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-decode-numeric-character-reference@^1.0.0 ā”‚ ā””ā”€ micromark-util-symbol@^1.0.0 ā”œā”€ micromark-util-encode@1.0.1 ā”œā”€ micromark-util-html-tag-name@1.1.0 ā”œā”€ micromark-util-normalize-identifier@1.0.0 ā”‚ ā””ā”€ micromark-util-symbol@^1.0.0 ā”œā”€ micromark-util-resolve-all@1.0.0 ā”‚ ā””ā”€ micromark-util-types@^1.0.0 ā”œā”€ micromark-util-sanitize-uri@1.0.0 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-encode@^1.0.0 ā”‚ ā””ā”€ micromark-util-symbol@^1.0.0 ā”œā”€ micromark-util-subtokenize@1.0.2 ā”‚ ā”œā”€ micromark-util-chunked@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā”œā”€ micromark-util-types@^1.0.0 ā”‚ ā””ā”€ uvu@^0.5.0 ā”œā”€ micromark-util-symbol@1.0.1 ā”œā”€ micromark-util-types@1.0.2 ā”œā”€ micromark@3.0.10 ā”‚ ā”œā”€ @types/debug@^4.0.0 ā”‚ ā”œā”€ debug@^4.0.0 ā”‚ ā”œā”€ decode-named-character-reference@^1.0.0 ā”‚ ā”œā”€ micromark-core-commonmark@^1.0.1 ā”‚ ā”œā”€ micromark-factory-space@^1.0.0 ā”‚ ā”œā”€ micromark-util-character@^1.0.0 ā”‚ ā”œā”€ micromark-util-chunked@^1.0.0 ā”‚ ā”œā”€ micromark-util-combine-extensions@^1.0.0 ā”‚ ā”œā”€ micromark-util-decode-numeric-character-reference@^1.0.0 ā”‚ ā”œā”€ micromark-util-encode@^1.0.0 ā”‚ ā”œā”€ micromark-util-normalize-identifier@^1.0.0 ā”‚ ā”œā”€ micromark-util-resolve-all@^1.0.0 ā”‚ ā”œā”€ micromark-util-sanitize-uri@^1.0.0 ā”‚ ā”œā”€ micromark-util-subtokenize@^1.0.0 ā”‚ ā”œā”€ micromark-util-symbol@^1.0.0 ā”‚ ā”œā”€ micromark-util-types@^1.0.1 ā”‚ ā””ā”€ uvu@^0.5.0 ā”œā”€ micromatch@4.0.5 ā”‚ ā”œā”€ braces@^3.0.2 ā”‚ ā””ā”€ picomatch@^2.3.1 ā”œā”€ mime-db@1.52.0 ā”œā”€ mime-types@2.1.35 ā”‚ ā””ā”€ mime-db@1.52.0 ā”œā”€ mime@3.0.0 ā”œā”€ mimic-fn@2.1.0 ā”œā”€ mimic-response@3.1.0 ā”œā”€ min-indent@1.0.1 ā”œā”€ minhash@0.0.9 ā”œā”€ minimatch@3.1.2 ā”‚ ā””ā”€ brace-expansion@^1.1.7 ā”œā”€ minimist@1.2.6 ā”œā”€ minipass@2.9.0 ā”‚ ā”œā”€ safe-buffer@^5.1.2 ā”‚ ā”œā”€ yallist@^3.0.0 ā”‚ ā””ā”€ yallist@3.1.1 ā”œā”€ minizlib@1.3.3 ā”‚ ā””ā”€ minipass@^2.9.0 ā”œā”€ mixin-object@2.0.1 ā”‚ ā”œā”€ for-in@^0.1.3 ā”‚ ā”œā”€ for-in@0.1.8 ā”‚ ā””ā”€ is-extendable@^0.1.1 ā”œā”€ mkdirp-classic@0.5.3 ā”œā”€ mkdirp@1.0.4 ā”œā”€ mlly@0.5.13 ā”‚ ā”œā”€ acorn@^8.8.0 ā”‚ ā”œā”€ pathe@^0.3.4 ā”‚ ā”œā”€ pkg-types@^0.3.3 ā”‚ ā””ā”€ ufo@^0.8.5 ā”œā”€ moment@2.29.4 ā”œā”€ mri@1.2.0 ā”œā”€ mrmime@1.0.1 ā”œā”€ ms@2.1.3 ā”œā”€ mute-stream@0.0.8 ā”œā”€ nanoid@4.0.0 ā”œā”€ napi-build-utils@1.0.2 ā”œā”€ natural-compare@1.4.0 ā”œā”€ nitropack@0.4.24 ā”‚ ā”œā”€ @cloudflare/kv-asset-handler@^0.2.0 ā”‚ ā”œā”€ @esbuild/linux-loong64@0.15.5 ā”‚ ā”œā”€ @netlify/functions@^1.0.0 ā”‚ ā”œā”€ @rollup/plugin-alias@^3.1.9 ā”‚ ā”œā”€ @rollup/plugin-commonjs@^22.0.2 ā”‚ ā”œā”€ @rollup/plugin-inject@^4.0.4 ā”‚ ā”œā”€ @rollup/plugin-json@^4.1.0 ā”‚ ā”œā”€ @rollup/plugin-node-resolve@^13.3.0 ā”‚ ā”œā”€ @rollup/plugin-replace@^4.0.0 ā”‚ ā”œā”€ @rollup/plugin-wasm@^5.2.0 ā”‚ ā”œā”€ @rollup/pluginutils@^4.2.1 ā”‚ ā”œā”€ @rollup/pluginutils@4.2.1 ā”‚ ā”‚ ā”œā”€ estree-walker@^2.0.1 ā”‚ ā”‚ ā””ā”€ picomatch@^2.2.2 ā”‚ ā”œā”€ @types/jsdom@^20.0.0 ā”‚ ā”œā”€ @vercel/nft@^0.21.0 ā”‚ ā”œā”€ archiver@^5.3.1 ā”‚ ā”œā”€ c12@^0.2.9 ā”‚ ā”œā”€ chalk@^5.0.1 ā”‚ ā”œā”€ chalk@5.0.1 ā”‚ ā”œā”€ chokidar@^3.5.3 ā”‚ ā”œā”€ consola@^2.15.3 ā”‚ ā”œā”€ cookie-es@^0.5.0 ā”‚ ā”œā”€ defu@^6.0.0 ā”‚ ā”œā”€ destr@^1.1.1 ā”‚ ā”œā”€ dot-prop@^7.2.0 ā”‚ ā”œā”€ esbuild-android-64@0.15.5 ā”‚ ā”œā”€ esbuild-android-arm64@0.15.5 ā”‚ ā”œā”€ esbuild-darwin-64@0.15.5 ā”‚ ā”œā”€ esbuild-darwin-arm64@0.15.5 ā”‚ ā”œā”€ esbuild-freebsd-64@0.15.5 ā”‚ ā”œā”€ esbuild-freebsd-arm64@0.15.5 ā”‚ ā”œā”€ esbuild-linux-32@0.15.5 ā”‚ ā”œā”€ esbuild-linux-64@0.15.5 ā”‚ ā”œā”€ esbuild-linux-arm@0.15.5 ā”‚ ā”œā”€ esbuild-linux-arm64@0.15.5 ā”‚ ā”œā”€ esbuild-linux-mips64le@0.15.5 ā”‚ ā”œā”€ esbuild-linux-ppc64le@0.15.5 ā”‚ ā”œā”€ esbuild-linux-riscv64@0.15.5 ā”‚ ā”œā”€ esbuild-linux-s390x@0.15.5 ā”‚ ā”œā”€ esbuild-netbsd-64@0.15.5 ā”‚ ā”œā”€ esbuild-openbsd-64@0.15.5 ā”‚ ā”œā”€ esbuild-sunos-64@0.15.5 ā”‚ ā”œā”€ esbuild-windows-32@0.15.5 ā”‚ ā”œā”€ esbuild-windows-64@0.15.5 ā”‚ ā”œā”€ esbuild-windows-arm64@0.15.5 ā”‚ ā”œā”€ esbuild@^0.15.1 ā”‚ ā”œā”€ esbuild@0.15.5 ā”‚ ā”‚ ā”œā”€ @esbuild/linux-loong64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-android-64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-android-arm64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-darwin-64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-darwin-arm64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-freebsd-64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-freebsd-arm64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-32@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-arm@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-arm64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-mips64le@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-ppc64le@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-riscv64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-linux-s390x@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-netbsd-64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-openbsd-64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-sunos-64@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-windows-32@0.15.5 ā”‚ ā”‚ ā”œā”€ esbuild-windows-64@0.15.5 ā”‚ ā”‚ ā””ā”€ esbuild-windows-arm64@0.15.5 ā”‚ ā”œā”€ escape-string-regexp@^5.0.0 ā”‚ ā”œā”€ etag@^1.8.1 ā”‚ ā”œā”€ fs-extra@^10.1.0 ā”‚ ā”œā”€ globby@^13.1.2 ā”‚ ā”œā”€ globby@13.1.2 ā”‚ ā”‚ ā”œā”€ dir-glob@^3.0.1 ā”‚ ā”‚ ā”œā”€ fast-glob@^3.2.11 ā”‚ ā”‚ ā”œā”€ ignore@^5.2.0 ā”‚ ā”‚ ā”œā”€ merge2@^1.4.1 ā”‚ ā”‚ ā””ā”€ slash@^4.0.0 ā”‚ ā”œā”€ gzip-size@^7.0.0 ā”‚ ā”œā”€ h3@^0.7.15 ā”‚ ā”œā”€ hookable@^5.1.1 ā”‚ ā”œā”€ http-proxy@^1.18.1 ā”‚ ā”œā”€ is-primitive@^3.0.1 ā”‚ ā”œā”€ jiti@^1.14.0 ā”‚ ā”œā”€ klona@^2.0.5 ā”‚ ā”œā”€ listhen@^0.2.15 ā”‚ ā”œā”€ mime@^3.0.0 ā”‚ ā”œā”€ mlly@^0.5.12 ā”‚ ā”œā”€ mri@^1.2.0 ā”‚ ā”œā”€ node-fetch-native@^0.1.4 ā”‚ ā”œā”€ ohash@^0.1.5 ā”‚ ā”œā”€ ohmyfetch@^0.4.18 ā”‚ ā”œā”€ pathe@^0.3.4 ā”‚ ā”œā”€ perfect-debounce@^0.1.3 ā”‚ ā”œā”€ pkg-types@^0.3.3 ā”‚ ā”œā”€ pretty-bytes@^6.0.0 ā”‚ ā”œā”€ radix3@^0.1.2 ā”‚ ā”œā”€ rollup-plugin-terser@^7.0.2 ā”‚ ā”œā”€ rollup-plugin-visualizer@^5.7.1 ā”‚ ā”œā”€ rollup@^2.77.3 ā”‚ ā”œā”€ scule@^0.3.2 ā”‚ ā”œā”€ semver@^7.3.7 ā”‚ ā”œā”€ serve-placeholder@^2.0.1 ā”‚ ā”œā”€ serve-static@^1.15.0 ā”‚ ā”œā”€ slash@4.0.0 ā”‚ ā”œā”€ source-map-support@^0.5.21 ā”‚ ā”œā”€ std-env@^3.1.1 ā”‚ ā”œā”€ ufo@^0.8.5 ā”‚ ā”œā”€ unenv@^0.5.4 ā”‚ ā”œā”€ unimport@^0.6.7 ā”‚ ā””ā”€ unstorage@^0.5.6 ā”œā”€ nlcst-to-string@3.1.0 ā”‚ ā””ā”€ @types/nlcst@^1.0.0 ā”œā”€ no-case@3.0.4 ā”‚ ā”œā”€ lower-case@^2.0.2 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ node-abi@3.24.0 ā”‚ ā””ā”€ semver@^7.3.5 ā”œā”€ node-addon-api@5.0.0 ā”œā”€ node-domexception@1.0.0 ā”œā”€ node-fetch-native@0.1.4 ā”œā”€ node-fetch@2.6.7 ā”‚ ā””ā”€ whatwg-url@^5.0.0 ā”œā”€ node-forge@1.3.1 ā”œā”€ node-gyp-build@4.5.0 ā”œā”€ node-int64@0.4.0 ā”œā”€ node-releases@2.0.6 ā”œā”€ nopt@5.0.0 ā”‚ ā””ā”€ abbrev@1 ā”œā”€ normalize-package-data@2.5.0 ā”‚ ā”œā”€ hosted-git-info@^2.1.4 ā”‚ ā”œā”€ resolve@^1.10.0 ā”‚ ā”œā”€ semver@2 || 3 || 4 || 5 ā”‚ ā”œā”€ semver@5.7.1 ā”‚ ā””ā”€ validate-npm-package-license@^3.0.1 ā”œā”€ normalize-path@3.0.0 ā”œā”€ normalize-range@0.1.2 ā”œā”€ normalize-url@6.1.0 ā”œā”€ not@0.1.0 ā”œā”€ npm-run-path@4.0.1 ā”‚ ā””ā”€ path-key@^3.0.0 ā”œā”€ npmlog@5.0.1 ā”‚ ā”œā”€ are-we-there-yet@^2.0.0 ā”‚ ā”œā”€ console-control-strings@^1.1.0 ā”‚ ā”œā”€ gauge@^3.0.0 ā”‚ ā””ā”€ set-blocking@^2.0.0 ā”œā”€ nth-check@2.1.1 ā”‚ ā””ā”€ boolbase@^1.0.0 ā”œā”€ nullthrows@1.1.1 ā”œā”€ nuxi@3.0.0-rc.8 ā”‚ ā””ā”€ fsevents@~2.3.2 ā”œā”€ nuxt-schema-org@1.0.0-beta.16 ā”‚ ā”œā”€ @nuxt/kit@^3.0.0-rc.8 ā”‚ ā”œā”€ @vueuse/schema-org-vite@1.0.0-beta.16 ā”‚ ā”œā”€ @vueuse/schema-org@1.0.0-beta.16 ā”‚ ā”œā”€ pathe@^0.3.4 ā”‚ ā””ā”€ schema-org-graph-js@0.3.3 ā”œā”€ nuxt@3.0.0-rc.8 ā”‚ ā”œā”€ @nuxt/devalue@^2.0.0 ā”‚ ā”œā”€ @nuxt/kit@3.0.0-rc.8 ā”‚ ā”œā”€ @nuxt/schema@3.0.0-rc.8 ā”‚ ā”œā”€ @nuxt/telemetry@^2.1.4 ā”‚ ā”œā”€ @nuxt/ui-templates@^0.3.1 ā”‚ ā”œā”€ @nuxt/vite-builder@3.0.0-rc.8 ā”‚ ā”œā”€ @vue/reactivity@^3.2.37 ā”‚ ā”œā”€ @vue/shared@^3.2.37 ā”‚ ā”œā”€ @vueuse/head@^0.7.9 ā”‚ ā”œā”€ chokidar@^3.5.3 ā”‚ ā”œā”€ cookie-es@^0.5.0 ā”‚ ā”œā”€ defu@^6.0.0 ā”‚ ā”œā”€ destr@^1.1.1 ā”‚ ā”œā”€ escape-string-regexp@^5.0.0 ā”‚ ā”œā”€ fs-extra@^10.1.0 ā”‚ ā”œā”€ globby@^13.1.2 ā”‚ ā”œā”€ globby@13.1.2 ā”‚ ā”‚ ā”œā”€ dir-glob@^3.0.1 ā”‚ ā”‚ ā”œā”€ fast-glob@^3.2.11 ā”‚ ā”‚ ā”œā”€ ignore@^5.2.0 ā”‚ ā”‚ ā”œā”€ merge2@^1.4.1 ā”‚ ā”‚ ā””ā”€ slash@^4.0.0 ā”‚ ā”œā”€ h3@^0.7.15 ā”‚ ā”œā”€ hash-sum@^2.0.0 ā”‚ ā”œā”€ hookable@^5.1.1 ā”‚ ā”œā”€ knitwork@^0.1.2 ā”‚ ā”œā”€ magic-string@^0.26.2 ā”‚ ā”œā”€ mlly@^0.5.12 ā”‚ ā”œā”€ nitropack@^0.4.22 ā”‚ ā”œā”€ nuxi@3.0.0-rc.8 ā”‚ ā”œā”€ ohash@^0.1.5 ā”‚ ā”œā”€ ohmyfetch@^0.4.18 ā”‚ ā”œā”€ pathe@^0.3.4 ā”‚ ā”œā”€ perfect-debounce@^0.1.3 ā”‚ ā”œā”€ scule@^0.3.2 ā”‚ ā”œā”€ slash@4.0.0 ā”‚ ā”œā”€ strip-literal@^0.4.0 ā”‚ ā”œā”€ ufo@^0.8.5 ā”‚ ā”œā”€ unctx@^2.0.1 ā”‚ ā”œā”€ unenv@^0.5.4 ā”‚ ā”œā”€ unimport@^0.6.7 ā”‚ ā”œā”€ unplugin@^0.9.0 ā”‚ ā”œā”€ untyped@^0.4.5 ā”‚ ā”œā”€ vue-bundle-renderer@^0.4.1 ā”‚ ā”œā”€ vue-router@^4.1.3 ā”‚ ā””ā”€ vue@^3.2.37 ā”œā”€ object-assign@4.1.1 ā”œā”€ object-hash@3.0.0 ā”œā”€ object-inspect@1.12.2 ā”œā”€ object-keys@1.1.1 ā”œā”€ object.assign@4.1.4 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ define-properties@^1.1.4 ā”‚ ā”œā”€ has-symbols@^1.0.3 ā”‚ ā””ā”€ object-keys@^1.1.1 ā”œā”€ object.entries@1.1.5 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ define-properties@^1.1.3 ā”‚ ā””ā”€ es-abstract@^1.19.1 ā”œā”€ object.fromentries@2.0.5 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ define-properties@^1.1.3 ā”‚ ā””ā”€ es-abstract@^1.19.1 ā”œā”€ object.hasown@1.1.1 ā”‚ ā”œā”€ define-properties@^1.1.4 ā”‚ ā””ā”€ es-abstract@^1.19.5 ā”œā”€ object.values@1.1.5 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ define-properties@^1.1.3 ā”‚ ā””ā”€ es-abstract@^1.19.1 ā”œā”€ ohash@0.1.5 ā”œā”€ ohmyfetch@0.4.18 ā”‚ ā”œā”€ destr@^1.1.1 ā”‚ ā”œā”€ node-fetch-native@^0.1.3 ā”‚ ā”œā”€ ufo@^0.8.4 ā”‚ ā””ā”€ undici@^5.2.0 ā”œā”€ on-finished@2.4.1 ā”‚ ā””ā”€ ee-first@1.1.1 ā”œā”€ once@1.4.0 ā”‚ ā””ā”€ wrappy@1 ā”œā”€ onetime@5.1.2 ā”‚ ā””ā”€ mimic-fn@^2.1.0 ā”œā”€ open@8.4.0 ā”‚ ā”œā”€ define-lazy-prop@^2.0.0 ā”‚ ā”œā”€ is-docker@^2.1.1 ā”‚ ā””ā”€ is-wsl@^2.2.0 ā”œā”€ optionator@0.9.1 ā”‚ ā”œā”€ deep-is@^0.1.3 ā”‚ ā”œā”€ fast-levenshtein@^2.0.6 ā”‚ ā”œā”€ levn@^0.4.1 ā”‚ ā”œā”€ prelude-ls@^1.2.1 ā”‚ ā”œā”€ prelude-ls@1.2.1 ā”‚ ā”œā”€ type-check@^0.4.0 ā”‚ ā”œā”€ type-check@0.4.0 ā”‚ ā”‚ ā””ā”€ prelude-ls@^1.2.1 ā”‚ ā””ā”€ word-wrap@^1.2.3 ā”œā”€ ora@5.4.1 ā”‚ ā”œā”€ bl@^4.1.0 ā”‚ ā”œā”€ chalk@^4.1.0 ā”‚ ā”œā”€ cli-cursor@^3.1.0 ā”‚ ā”œā”€ cli-spinners@^2.5.0 ā”‚ ā”œā”€ is-interactive@^1.0.0 ā”‚ ā”œā”€ is-unicode-supported@^0.1.0 ā”‚ ā”œā”€ is-unicode-supported@0.1.0 ā”‚ ā”œā”€ log-symbols@^4.1.0 ā”‚ ā”œā”€ strip-ansi@^6.0.0 ā”‚ ā””ā”€ wcwidth@^1.0.1 ā”œā”€ os-tmpdir@1.0.2 ā”œā”€ p-limit@3.1.0 ā”‚ ā””ā”€ yocto-queue@^0.1.0 ā”œā”€ p-locate@4.1.0 ā”‚ ā”œā”€ p-limit@^2.2.0 ā”‚ ā””ā”€ p-limit@2.3.0 ā”‚ ā””ā”€ p-try@^2.0.0 ā”œā”€ p-map@4.0.0 ā”‚ ā””ā”€ aggregate-error@^3.0.0 ā”œā”€ p-try@2.2.0 ā”œā”€ param-case@3.0.4 ā”‚ ā”œā”€ dot-case@^3.0.4 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ parent-module@1.0.1 ā”‚ ā””ā”€ callsites@^3.0.0 ā”œā”€ parse-entities@2.0.0 ā”‚ ā”œā”€ character-entities-legacy@^1.0.0 ā”‚ ā”œā”€ character-entities-legacy@1.1.4 ā”‚ ā”œā”€ character-entities@^1.0.0 ā”‚ ā”œā”€ character-entities@1.2.4 ā”‚ ā”œā”€ character-reference-invalid@^1.0.0 ā”‚ ā”œā”€ is-alphabetical@1.0.4 ā”‚ ā”œā”€ is-alphanumerical@^1.0.0 ā”‚ ā”œā”€ is-alphanumerical@1.0.4 ā”‚ ā”‚ ā”œā”€ is-alphabetical@^1.0.0 ā”‚ ā”‚ ā””ā”€ is-decimal@^1.0.0 ā”‚ ā”œā”€ is-decimal@^1.0.0 ā”‚ ā”œā”€ is-decimal@1.0.4 ā”‚ ā””ā”€ is-hexadecimal@^1.0.0 ā”œā”€ parse-filepath@1.0.2 ā”‚ ā”œā”€ is-absolute@^1.0.0 ā”‚ ā”œā”€ map-cache@^0.2.0 ā”‚ ā””ā”€ path-root@^0.1.1 ā”œā”€ parse-git-config@3.0.0 ā”‚ ā”œā”€ git-config-path@^2.0.0 ā”‚ ā””ā”€ ini@^1.3.5 ā”œā”€ parse-json@5.2.0 ā”‚ ā”œā”€ @babel/code-frame@^7.0.0 ā”‚ ā”œā”€ error-ex@^1.3.1 ā”‚ ā”œā”€ json-parse-even-better-errors@^2.3.0 ā”‚ ā””ā”€ lines-and-columns@^1.1.6 ā”œā”€ parse-latin@5.0.0 ā”‚ ā”œā”€ nlcst-to-string@^2.0.0 ā”‚ ā”œā”€ nlcst-to-string@2.0.4 ā”‚ ā”œā”€ unist-util-modify-children@^2.0.0 ā”‚ ā””ā”€ unist-util-visit-children@^1.0.0 ā”œā”€ parse-path@5.0.0 ā”‚ ā””ā”€ protocols@^2.0.0 ā”œā”€ parse-url@7.0.2 ā”‚ ā”œā”€ is-ssh@^1.4.0 ā”‚ ā”œā”€ normalize-url@^6.1.0 ā”‚ ā”œā”€ parse-path@^5.0.0 ā”‚ ā””ā”€ protocols@^2.0.1 ā”œā”€ parse5@6.0.1 ā”œā”€ parseurl@1.3.3 ā”œā”€ pascal-case@3.1.2 ā”‚ ā”œā”€ no-case@^3.0.4 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ path-case@3.0.4 ā”‚ ā”œā”€ dot-case@^3.0.4 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ path-exists@4.0.0 ā”œā”€ path-is-absolute@1.0.1 ā”œā”€ path-key@3.1.1 ā”œā”€ path-parse@1.0.7 ā”œā”€ path-root-regex@0.1.2 ā”œā”€ path-root@0.1.1 ā”‚ ā””ā”€ path-root-regex@^0.1.0 ā”œā”€ path-type@4.0.0 ā”œā”€ pathe@0.3.5 ā”œā”€ pend@1.2.0 ā”œā”€ perfect-debounce@0.1.3 ā”œā”€ picocolors@1.0.0 ā”œā”€ picomatch@2.3.1 ā”œā”€ pify@2.3.0 ā”œā”€ pinia@2.0.20 ā”‚ ā”œā”€ @vue/devtools-api@^6.2.1 ā”‚ ā””ā”€ vue-demi@* ā”œā”€ pirates@4.0.5 ā”œā”€ pkg-dir@4.2.0 ā”‚ ā””ā”€ find-up@^4.0.0 ā”œā”€ pkg-types@0.3.4 ā”‚ ā”œā”€ jsonc-parser@^3.1.0 ā”‚ ā”œā”€ mlly@^0.5.13 ā”‚ ā””ā”€ pathe@^0.3.5 ā”œā”€ pluralize@8.0.0 ā”œā”€ postcss-calc@8.2.4 ā”‚ ā”œā”€ postcss-selector-parser@^6.0.9 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-colormin@5.3.0 ā”‚ ā”œā”€ browserslist@^4.16.6 ā”‚ ā”œā”€ caniuse-api@^3.0.0 ā”‚ ā”œā”€ colord@^2.9.1 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-convert-values@5.1.2 ā”‚ ā”œā”€ browserslist@^4.20.3 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-discard-comments@5.1.2 ā”œā”€ postcss-discard-duplicates@5.1.0 ā”œā”€ postcss-discard-empty@5.1.1 ā”œā”€ postcss-discard-overridden@5.1.0 ā”œā”€ postcss-import-resolver@2.0.0 ā”‚ ā””ā”€ enhanced-resolve@^4.1.1 ā”œā”€ postcss-import@14.1.0 ā”‚ ā”œā”€ postcss-value-parser@^4.0.0 ā”‚ ā”œā”€ read-cache@^1.0.0 ā”‚ ā””ā”€ resolve@^1.1.7 ā”œā”€ postcss-merge-longhand@5.1.6 ā”‚ ā”œā”€ postcss-value-parser@^4.2.0 ā”‚ ā””ā”€ stylehacks@^5.1.0 ā”œā”€ postcss-merge-rules@5.1.2 ā”‚ ā”œā”€ browserslist@^4.16.6 ā”‚ ā”œā”€ caniuse-api@^3.0.0 ā”‚ ā”œā”€ cssnano-utils@^3.1.0 ā”‚ ā””ā”€ postcss-selector-parser@^6.0.5 ā”œā”€ postcss-minify-font-values@5.1.0 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-minify-gradients@5.1.1 ā”‚ ā”œā”€ colord@^2.9.1 ā”‚ ā”œā”€ cssnano-utils@^3.1.0 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-minify-params@5.1.3 ā”‚ ā”œā”€ browserslist@^4.16.6 ā”‚ ā”œā”€ cssnano-utils@^3.1.0 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-minify-selectors@5.2.1 ā”‚ ā””ā”€ postcss-selector-parser@^6.0.5 ā”œā”€ postcss-normalize-charset@5.1.0 ā”œā”€ postcss-normalize-display-values@5.1.0 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-normalize-positions@5.1.1 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-normalize-repeat-style@5.1.1 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-normalize-string@5.1.0 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-normalize-timing-functions@5.1.0 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-normalize-unicode@5.1.0 ā”‚ ā”œā”€ browserslist@^4.16.6 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-normalize-url@5.1.0 ā”‚ ā”œā”€ normalize-url@^6.0.1 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-normalize-whitespace@5.1.1 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-ordered-values@5.1.3 ā”‚ ā”œā”€ cssnano-utils@^3.1.0 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-reduce-initial@5.1.0 ā”‚ ā”œā”€ browserslist@^4.16.6 ā”‚ ā””ā”€ caniuse-api@^3.0.0 ā”œā”€ postcss-reduce-transforms@5.1.0 ā”‚ ā””ā”€ postcss-value-parser@^4.2.0 ā”œā”€ postcss-selector-parser@6.0.10 ā”‚ ā”œā”€ cssesc@^3.0.0 ā”‚ ā””ā”€ util-deprecate@^1.0.2 ā”œā”€ postcss-svgo@5.1.0 ā”‚ ā”œā”€ postcss-value-parser@^4.2.0 ā”‚ ā””ā”€ svgo@^2.7.0 ā”œā”€ postcss-unique-selectors@5.1.1 ā”‚ ā””ā”€ postcss-selector-parser@^6.0.5 ā”œā”€ postcss-url@10.1.3 ā”‚ ā”œā”€ make-dir@~3.1.0 ā”‚ ā”œā”€ mime@~2.5.2 ā”‚ ā”œā”€ mime@2.5.2 ā”‚ ā”œā”€ minimatch@~3.0.4 ā”‚ ā”œā”€ minimatch@3.0.8 ā”‚ ā”‚ ā””ā”€ brace-expansion@^1.1.7 ā”‚ ā””ā”€ xxhashjs@~0.2.2 ā”œā”€ postcss-value-parser@4.2.0 ā”œā”€ postcss@8.4.16 ā”‚ ā”œā”€ nanoid@^3.3.4 ā”‚ ā”œā”€ nanoid@3.3.4 ā”‚ ā”œā”€ picocolors@^1.0.0 ā”‚ ā””ā”€ source-map-js@^1.0.2 ā”œā”€ prebuild-install@7.1.1 ā”‚ ā”œā”€ detect-libc@^2.0.0 ā”‚ ā”œā”€ expand-template@^2.0.3 ā”‚ ā”œā”€ github-from-package@0.0.0 ā”‚ ā”œā”€ minimist@^1.2.3 ā”‚ ā”œā”€ mkdirp-classic@^0.5.3 ā”‚ ā”œā”€ napi-build-utils@^1.0.1 ā”‚ ā”œā”€ node-abi@^3.3.0 ā”‚ ā”œā”€ pump@^3.0.0 ā”‚ ā”œā”€ rc@^1.2.7 ā”‚ ā”œā”€ simple-get@^4.0.0 ā”‚ ā”œā”€ tar-fs@^2.0.0 ā”‚ ā””ā”€ tunnel-agent@^0.6.0 ā”œā”€ prelude-ls@1.1.2 ā”œā”€ pretty-bytes@6.0.0 ā”œā”€ pretty-format@28.1.3 ā”‚ ā”œā”€ @jest/schemas@^28.1.3 ā”‚ ā”œā”€ ansi-regex@^5.0.1 ā”‚ ā”œā”€ ansi-styles@^5.0.0 ā”‚ ā”œā”€ ansi-styles@5.2.0 ā”‚ ā””ā”€ react-is@^18.0.0 ā”œā”€ prisma@4.2.1 ā”‚ ā””ā”€ @prisma/engines@4.2.1 ā”œā”€ process-nextick-args@2.0.1 ā”œā”€ progress@2.0.3 ā”œā”€ promise@7.3.1 ā”‚ ā””ā”€ asap@~2.0.3 ā”œā”€ prompts@2.4.2 ā”‚ ā”œā”€ kleur@^3.0.3 ā”‚ ā”œā”€ kleur@3.0.3 ā”‚ ā””ā”€ sisteransi@^1.0.5 ā”œā”€ prop-types@15.8.1 ā”‚ ā”œā”€ loose-envify@^1.4.0 ā”‚ ā”œā”€ object-assign@^4.1.1 ā”‚ ā”œā”€ react-is@^16.13.1 ā”‚ ā””ā”€ react-is@16.13.1 ā”œā”€ property-information@6.1.1 ā”œā”€ proto3-json-serializer@1.0.3 ā”‚ ā””ā”€ protobufjs@^7.0.0 ā”œā”€ protobufjs-cli@1.0.0 ā”‚ ā”œā”€ brace-expansion@2.0.1 ā”‚ ā”‚ ā””ā”€ balanced-match@^1.0.0 ā”‚ ā”œā”€ chalk@^4.0.0 ā”‚ ā”œā”€ escodegen@^1.13.0 ā”‚ ā”œā”€ espree@^9.0.0 ā”‚ ā”œā”€ estraverse@^5.1.0 ā”‚ ā”œā”€ glob@^8.0.0 ā”‚ ā”œā”€ glob@8.0.3 ā”‚ ā”‚ ā”œā”€ fs.realpath@^1.0.0 ā”‚ ā”‚ ā”œā”€ inflight@^1.0.4 ā”‚ ā”‚ ā”œā”€ inherits@2 ā”‚ ā”‚ ā”œā”€ minimatch@^5.0.1 ā”‚ ā”‚ ā””ā”€ once@^1.3.0 ā”‚ ā”œā”€ jsdoc@^3.6.3 ā”‚ ā”œā”€ minimatch@5.1.0 ā”‚ ā”‚ ā””ā”€ brace-expansion@^2.0.1 ā”‚ ā”œā”€ minimist@^1.2.0 ā”‚ ā”œā”€ semver@^7.1.2 ā”‚ ā”œā”€ tmp@^0.2.1 ā”‚ ā”œā”€ tmp@0.2.1 ā”‚ ā”‚ ā””ā”€ rimraf@^3.0.0 ā”‚ ā””ā”€ uglify-js@^3.7.7 ā”œā”€ protobufjs@7.0.0 ā”‚ ā”œā”€ @protobufjs/aspromise@^1.1.2 ā”‚ ā”œā”€ @protobufjs/base64@^1.1.2 ā”‚ ā”œā”€ @protobufjs/codegen@^2.0.4 ā”‚ ā”œā”€ @protobufjs/eventemitter@^1.1.0 ā”‚ ā”œā”€ @protobufjs/fetch@^1.1.0 ā”‚ ā”œā”€ @protobufjs/float@^1.0.2 ā”‚ ā”œā”€ @protobufjs/inquire@^1.1.0 ā”‚ ā”œā”€ @protobufjs/path@^1.1.2 ā”‚ ā”œā”€ @protobufjs/pool@^1.1.0 ā”‚ ā”œā”€ @protobufjs/utf8@^1.1.0 ā”‚ ā”œā”€ @types/long@^4.0.1 ā”‚ ā”œā”€ @types/node@>=13.7.0 ā”‚ ā”œā”€ long@^5.0.0 ā”‚ ā””ā”€ long@5.2.0 ā”œā”€ protocols@2.0.1 ā”œā”€ proxy-from-env@1.1.0 ā”œā”€ prr@1.0.1 ā”œā”€ pump@3.0.0 ā”‚ ā”œā”€ end-of-stream@^1.1.0 ā”‚ ā””ā”€ once@^1.3.1 ā”œā”€ punycode@1.3.2 ā”œā”€ puppeteer-extra-plugin-stealth@2.11.1 ā”‚ ā”œā”€ debug@^4.1.1 ā”‚ ā”œā”€ puppeteer-extra-plugin-user-preferences@^2.4.0 ā”‚ ā””ā”€ puppeteer-extra-plugin@^3.2.2 ā”œā”€ puppeteer-extra-plugin-user-data-dir@2.4.0 ā”‚ ā”œā”€ debug@^4.1.1 ā”‚ ā”œā”€ fs-extra@^10.0.0 ā”‚ ā”œā”€ puppeteer-extra-plugin@^3.2.2 ā”‚ ā””ā”€ rimraf@^3.0.2 ā”œā”€ puppeteer-extra-plugin-user-preferences@2.4.0 ā”‚ ā”œā”€ debug@^4.1.1 ā”‚ ā”œā”€ deepmerge@^4.2.2 ā”‚ ā”œā”€ puppeteer-extra-plugin-user-data-dir@^2.4.0 ā”‚ ā””ā”€ puppeteer-extra-plugin@^3.2.2 ā”œā”€ puppeteer-extra-plugin@3.2.2 ā”‚ ā”œā”€ @types/debug@^4.1.0 ā”‚ ā”œā”€ debug@^4.1.1 ā”‚ ā””ā”€ merge-deep@^3.0.1 ā”œā”€ puppeteer-extra@3.3.4 ā”‚ ā”œā”€ @types/debug@^4.1.0 ā”‚ ā”œā”€ debug@^4.1.1 ā”‚ ā””ā”€ deepmerge@^4.2.2 ā”œā”€ puppeteer@16.2.0 ā”‚ ā”œā”€ cross-fetch@3.1.5 ā”‚ ā”œā”€ debug@4.3.4 ā”‚ ā”œā”€ devtools-protocol@0.0.1019158 ā”‚ ā”œā”€ extract-zip@2.0.1 ā”‚ ā”œā”€ https-proxy-agent@5.0.1 ā”‚ ā”œā”€ progress@2.0.3 ā”‚ ā”œā”€ proxy-from-env@1.1.0 ā”‚ ā”œā”€ rimraf@3.0.2 ā”‚ ā”œā”€ tar-fs@2.1.1 ā”‚ ā”œā”€ unbzip2-stream@1.4.3 ā”‚ ā””ā”€ ws@8.8.1 ā”œā”€ pvtsutils@1.3.2 ā”‚ ā””ā”€ tslib@^2.4.0 ā”œā”€ pvutils@1.1.3 ā”œā”€ querystring@0.2.0 ā”œā”€ queue-microtask@1.2.3 ā”œā”€ radix3@0.1.2 ā”œā”€ randombytes@2.1.0 ā”‚ ā””ā”€ safe-buffer@^5.1.0 ā”œā”€ range-parser@1.2.1 ā”œā”€ rc@1.2.8 ā”‚ ā”œā”€ deep-extend@^0.6.0 ā”‚ ā”œā”€ ini@~1.3.0 ā”‚ ā”œā”€ minimist@^1.2.0 ā”‚ ā”œā”€ strip-json-comments@~2.0.1 ā”‚ ā””ā”€ strip-json-comments@2.0.1 ā”œā”€ rc9@1.2.2 ā”‚ ā”œā”€ defu@^6.0.0 ā”‚ ā”œā”€ destr@^1.1.1 ā”‚ ā””ā”€ flat@^5.0.0 ā”œā”€ react-is@18.2.0 ā”œā”€ read-cache@1.0.0 ā”‚ ā””ā”€ pify@^2.3.0 ā”œā”€ read-pkg-up@7.0.1 ā”‚ ā”œā”€ find-up@^4.1.0 ā”‚ ā”œā”€ read-pkg@^5.2.0 ā”‚ ā”œā”€ type-fest@^0.8.1 ā”‚ ā””ā”€ type-fest@0.8.1 ā”œā”€ read-pkg@5.2.0 ā”‚ ā”œā”€ @types/normalize-package-data@^2.4.0 ā”‚ ā”œā”€ normalize-package-data@^2.5.0 ā”‚ ā”œā”€ parse-json@^5.0.0 ā”‚ ā”œā”€ type-fest@^0.6.0 ā”‚ ā””ā”€ type-fest@0.6.0 ā”œā”€ readable-stream@3.6.0 ā”‚ ā”œā”€ inherits@^2.0.3 ā”‚ ā”œā”€ string_decoder@^1.1.1 ā”‚ ā””ā”€ util-deprecate@^1.0.1 ā”œā”€ readdir-glob@1.1.2 ā”‚ ā”œā”€ brace-expansion@2.0.1 ā”‚ ā”‚ ā””ā”€ balanced-match@^1.0.0 ā”‚ ā”œā”€ minimatch@^5.1.0 ā”‚ ā””ā”€ minimatch@5.1.0 ā”‚ ā””ā”€ brace-expansion@^2.0.1 ā”œā”€ readdirp@3.6.0 ā”‚ ā””ā”€ picomatch@^2.2.1 ā”œā”€ redis-errors@1.2.0 ā”œā”€ redis-parser@3.0.0 ā”‚ ā””ā”€ redis-errors@^1.0.0 ā”œā”€ regenerator-runtime@0.13.9 ā”œā”€ regexp-tree@0.1.24 ā”œā”€ regexp.prototype.flags@1.4.3 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ define-properties@^1.1.3 ā”‚ ā””ā”€ functions-have-names@^1.2.2 ā”œā”€ regexpp@3.2.0 ā”œā”€ rehype-figure@1.0.1 ā”‚ ā”œā”€ comma-separated-tokens@1.0.8 ā”‚ ā”œā”€ hast-util-parse-selector@2.2.5 ā”‚ ā”œā”€ hastscript@^6.0.0 ā”‚ ā”œā”€ hastscript@6.0.0 ā”‚ ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”‚ ā”œā”€ comma-separated-tokens@^1.0.0 ā”‚ ā”‚ ā”œā”€ hast-util-parse-selector@^2.0.0 ā”‚ ā”‚ ā”œā”€ property-information@^5.0.0 ā”‚ ā”‚ ā””ā”€ space-separated-tokens@^1.0.0 ā”‚ ā”œā”€ property-information@5.6.0 ā”‚ ā”‚ ā””ā”€ xtend@^4.0.0 ā”‚ ā”œā”€ space-separated-tokens@1.1.5 ā”‚ ā”œā”€ unist-util-is@4.1.0 ā”‚ ā”œā”€ unist-util-visit-parents@3.1.1 ā”‚ ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”‚ ā””ā”€ unist-util-is@^4.0.0 ā”‚ ā”œā”€ unist-util-visit@^2.0.3 ā”‚ ā””ā”€ unist-util-visit@2.0.3 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ unist-util-is@^4.0.0 ā”‚ ā””ā”€ unist-util-visit-parents@^3.0.0 ā”œā”€ rehype-minify-attribute-whitespace@3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ hast-util-is-event-handler@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-minify-css-style@3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ clean-css@^5.0.0 ā”‚ ā”œā”€ hast-util-from-string@^2.0.0 ā”‚ ā”œā”€ hast-util-is-css-style@^2.0.0 ā”‚ ā”œā”€ hast-util-to-string@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-minify-enumerated-attribute@4.1.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ hast-util-select@^5.0.0 ā”‚ ā”œā”€ html-enumerated-attributes@^0.1.0 ā”‚ ā”œā”€ property-information@^6.0.0 ā”‚ ā”œā”€ space-separated-tokens@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-minify-event-handler@3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ hast-util-is-event-handler@^2.0.0 ā”‚ ā”œā”€ uglify-js@^3.0.18 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-minify-javascript-script@4.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-from-string@^2.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ hast-util-is-javascript@^2.0.0 ā”‚ ā”œā”€ hast-util-to-string@^2.0.0 ā”‚ ā”œā”€ uglify-js@^3.0.18 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-minify-javascript-url@4.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ html-url-attributes@^2.0.0 ā”‚ ā”œā”€ uglify-js@^3.0.18 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-minify-json-script@3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-from-string@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ hast-util-to-string@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-minify-language@2.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ bcp-47-normalize@^2.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-minify-media-attribute@3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ clean-css@^5.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-minify-meta-color@3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ clean-css@^5.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-minify-meta-content@3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ comma-separated-tokens@^2.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-minify-style-attribute@3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ clean-css@^5.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-minify-whitespace@5.0.1 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-embedded@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ hast-util-whitespace@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-is@^5.0.0 ā”œā”€ rehype-normalize-attribute-value-case@3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-parse@8.0.4 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-from-parse5@^7.0.0 ā”‚ ā”œā”€ parse5@^6.0.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ rehype-preset-minify@6.0.0 ā”‚ ā”œā”€ rehype-minify-attribute-whitespace@^3.0.0 ā”‚ ā”œā”€ rehype-minify-css-style@^3.0.0 ā”‚ ā”œā”€ rehype-minify-enumerated-attribute@^4.0.0 ā”‚ ā”œā”€ rehype-minify-event-handler@^3.0.0 ā”‚ ā”œā”€ rehype-minify-javascript-script@^4.0.0 ā”‚ ā”œā”€ rehype-minify-javascript-url@^4.0.0 ā”‚ ā”œā”€ rehype-minify-json-script@^3.0.0 ā”‚ ā”œā”€ rehype-minify-language@^2.0.0 ā”‚ ā”œā”€ rehype-minify-media-attribute@^3.0.0 ā”‚ ā”œā”€ rehype-minify-meta-color@^3.0.0 ā”‚ ā”œā”€ rehype-minify-meta-content@^3.0.0 ā”‚ ā”œā”€ rehype-minify-style-attribute@^3.0.0 ā”‚ ā”œā”€ rehype-minify-whitespace@^5.0.0 ā”‚ ā”œā”€ rehype-normalize-attribute-value-case@^3.0.0 ā”‚ ā”œā”€ rehype-remove-comments@^5.0.0 ā”‚ ā”œā”€ rehype-remove-duplicate-attribute-values@^3.0.0 ā”‚ ā”œā”€ rehype-remove-empty-attribute@^3.0.0 ā”‚ ā”œā”€ rehype-remove-external-script-content@^3.0.0 ā”‚ ā”œā”€ rehype-remove-meta-http-equiv@^3.0.0 ā”‚ ā”œā”€ rehype-remove-script-type-javascript@^3.0.0 ā”‚ ā”œā”€ rehype-remove-style-type-css@^3.0.0 ā”‚ ā”œā”€ rehype-sort-attribute-values@^4.0.0 ā”‚ ā””ā”€ rehype-sort-attributes@^4.0.0 ā”œā”€ rehype-raw@6.1.1 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-raw@^7.2.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ rehype-remark@9.1.2 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ hast-util-to-mdast@^8.3.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ rehype-remove-comments@5.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-is-conditional-comment@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-filter@^4.0.0 ā”œā”€ rehype-remove-duplicate-attribute-values@3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-remove-empty-attribute@3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ hast-util-is-event-handler@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-remove-external-script-content@3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ hast-util-is-javascript@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-remove-meta-http-equiv@3.0.0 ā”‚ ā”œā”€ hast-util-has-property@^2.0.0 ā”‚ ā”œā”€ space-separated-tokens@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-remove-script-type-javascript@3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-is-javascript@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-remove-style-type-css@3.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-is-css-link@^2.0.0 ā”‚ ā”œā”€ hast-util-is-css-style@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-retext@3.0.2 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ hast-util-to-nlcst@^2.0.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ rehype-rewrite@3.0.6 ā”‚ ā”œā”€ hast-util-select@~5.0.1 ā”‚ ā”œā”€ unified@~10.1.1 ā”‚ ā””ā”€ unist-util-visit@~4.1.0 ā”œā”€ rehype-sanitize@5.0.1 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-sanitize@^4.0.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ rehype-sort-attribute-values@4.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-is-element@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-sort-attributes@4.0.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ unified@^10.0.0 ā”‚ ā””ā”€ unist-util-visit@^4.0.0 ā”œā”€ rehype-stringify@9.0.3 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ hast-util-to-html@^8.0.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ rehype@12.0.1 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ rehype-parse@^8.0.0 ā”‚ ā”œā”€ rehype-stringify@^9.0.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ relay-runtime@12.0.0 ā”‚ ā”œā”€ @babel/runtime@^7.0.0 ā”‚ ā”œā”€ fbjs@^3.0.0 ā”‚ ā””ā”€ invariant@^2.2.4 ā”œā”€ remark-directive@2.0.1 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ mdast-util-directive@^2.0.0 ā”‚ ā”œā”€ micromark-extension-directive@^2.0.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ remark-gfm@3.0.1 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ mdast-util-gfm@^2.0.0 ā”‚ ā”œā”€ micromark-extension-gfm@^2.0.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ remark-parse@10.0.1 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ mdast-util-from-markdown@^1.0.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ remark-rehype@10.1.0 ā”‚ ā”œā”€ @types/hast@^2.0.0 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ mdast-util-to-hast@^12.1.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ remark-retext@5.0.1 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ mdast-util-to-nlcst@^5.0.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ remark-stringify@10.0.2 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ mdast-util-to-markdown@^1.0.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ remark@14.0.2 ā”‚ ā”œā”€ @types/mdast@^3.0.0 ā”‚ ā”œā”€ remark-parse@^10.0.0 ā”‚ ā”œā”€ remark-stringify@^10.0.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ remedial@1.0.8 ā”œā”€ remove-trailing-separator@1.1.0 ā”œā”€ remove-trailing-spaces@1.0.8 ā”œā”€ require-directory@2.1.1 ā”œā”€ require-main-filename@2.0.0 ā”œā”€ requires-port@1.0.0 ā”œā”€ requizzle@0.2.3 ā”‚ ā””ā”€ lodash@^4.17.14 ā”œā”€ requrl@3.0.2 ā”œā”€ resolve-cwd@3.0.0 ā”‚ ā””ā”€ resolve-from@^5.0.0 ā”œā”€ resolve-from@5.0.0 ā”œā”€ resolve.exports@1.1.0 ā”œā”€ resolve@1.22.1 ā”‚ ā”œā”€ is-core-module@^2.9.0 ā”‚ ā”œā”€ path-parse@^1.0.7 ā”‚ ā””ā”€ supports-preserve-symlinks-flag@^1.0.0 ā”œā”€ restore-cursor@3.1.0 ā”‚ ā”œā”€ onetime@^5.1.0 ā”‚ ā””ā”€ signal-exit@^3.0.2 ā”œā”€ retext-latin@3.1.0 ā”‚ ā”œā”€ @types/nlcst@^1.0.0 ā”‚ ā”œā”€ parse-latin@^5.0.0 ā”‚ ā”œā”€ unherit@^3.0.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ retext-stringify@3.1.0 ā”‚ ā”œā”€ @types/nlcst@^1.0.0 ā”‚ ā”œā”€ nlcst-to-string@^3.0.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ retext@8.1.0 ā”‚ ā”œā”€ @types/nlcst@^1.0.0 ā”‚ ā”œā”€ retext-latin@^3.0.0 ā”‚ ā”œā”€ retext-stringify@^3.0.0 ā”‚ ā””ā”€ unified@^10.0.0 ā”œā”€ retry-request@5.0.1 ā”‚ ā”œā”€ debug@^4.1.1 ā”‚ ā””ā”€ extend@^3.0.2 ā”œā”€ retry@0.13.1 ā”œā”€ reusify@1.0.4 ā”œā”€ rfdc@1.3.0 ā”œā”€ rimraf@3.0.2 ā”‚ ā””ā”€ glob@^7.1.3 ā”œā”€ rollup-plugin-terser@7.0.2 ā”‚ ā”œā”€ @babel/code-frame@^7.10.4 ā”‚ ā”œā”€ jest-worker@^26.2.1 ā”‚ ā”œā”€ jest-worker@26.6.2 ā”‚ ā”‚ ā”œā”€ @types/node@* ā”‚ ā”‚ ā”œā”€ merge-stream@^2.0.0 ā”‚ ā”‚ ā””ā”€ supports-color@^7.0.0 ā”‚ ā”œā”€ serialize-javascript@^4.0.0 ā”‚ ā””ā”€ terser@^5.0.0 ā”œā”€ rollup-plugin-visualizer@5.7.1 ā”‚ ā”œā”€ nanoid@^3.3.4 ā”‚ ā”œā”€ nanoid@3.3.4 ā”‚ ā”œā”€ open@^8.4.0 ā”‚ ā”œā”€ source-map@^0.7.3 ā”‚ ā”œā”€ source-map@0.7.4 ā”‚ ā””ā”€ yargs@^17.5.1 ā”œā”€ rollup-pluginutils@2.8.2 ā”‚ ā”œā”€ estree-walker@^0.6.1 ā”‚ ā””ā”€ estree-walker@0.6.1 ā”œā”€ rollup@2.78.1 ā”‚ ā””ā”€ fsevents@~2.3.2 ā”œā”€ run-async@2.4.1 ā”œā”€ run-parallel@1.2.0 ā”‚ ā””ā”€ queue-microtask@^1.2.2 ā”œā”€ rxjs@7.5.6 ā”‚ ā””ā”€ tslib@^2.1.0 ā”œā”€ sade@1.8.1 ā”‚ ā””ā”€ mri@^1.1.0 ā”œā”€ safe-buffer@5.2.1 ā”œā”€ safe-regex@2.1.1 ā”‚ ā””ā”€ regexp-tree@~0.1.1 ā”œā”€ safer-buffer@2.1.2 ā”œā”€ sass@1.54.5 ā”‚ ā”œā”€ chokidar@>=3.0.0 <4.0.0 ā”‚ ā”œā”€ immutable@^4.0.0 ā”‚ ā””ā”€ source-map-js@>=0.6.2 <2.0.0 ā”œā”€ sax@1.2.1 ā”œā”€ schema-dts@1.1.0 ā”œā”€ schema-org-graph-js@0.3.3 ā”‚ ā”œā”€ defu@^6.0.0 ā”‚ ā”œā”€ ohash@^0.1.5 ā”‚ ā”œā”€ schema-dts@^1.1.0 ā”‚ ā”œā”€ ufo@^0.8.5 ā”‚ ā””ā”€ utility-types@^3.10.0 ā”œā”€ scuid@1.1.0 ā”œā”€ scule@0.3.2 ā”œā”€ selfsigned@2.0.1 ā”‚ ā””ā”€ node-forge@^1 ā”œā”€ semver@7.3.7 ā”‚ ā””ā”€ lru-cache@^6.0.0 ā”œā”€ send@0.18.0 ā”‚ ā”œā”€ debug@2.6.9 ā”‚ ā”œā”€ debug@2.6.9 ā”‚ ā”‚ ā”œā”€ ms@2.0.0 ā”‚ ā”‚ ā””ā”€ ms@2.0.0 ā”‚ ā”œā”€ depd@2.0.0 ā”‚ ā”œā”€ destroy@1.2.0 ā”‚ ā”œā”€ encodeurl@~1.0.2 ā”‚ ā”œā”€ escape-html@~1.0.3 ā”‚ ā”œā”€ etag@~1.8.1 ā”‚ ā”œā”€ fresh@0.5.2 ā”‚ ā”œā”€ http-errors@2.0.0 ā”‚ ā”œā”€ mime@1.6.0 ā”‚ ā”œā”€ mime@1.6.0 ā”‚ ā”œā”€ ms@2.1.3 ā”‚ ā”œā”€ on-finished@2.4.1 ā”‚ ā”œā”€ range-parser@~1.2.1 ā”‚ ā””ā”€ statuses@2.0.1 ā”œā”€ sentence-case@3.0.4 ā”‚ ā”œā”€ no-case@^3.0.4 ā”‚ ā”œā”€ tslib@^2.0.3 ā”‚ ā””ā”€ upper-case-first@^2.0.2 ā”œā”€ serialize-javascript@4.0.0 ā”‚ ā””ā”€ randombytes@^2.1.0 ā”œā”€ serve-placeholder@2.0.1 ā”‚ ā””ā”€ defu@^6.0.0 ā”œā”€ serve-static@1.15.0 ā”‚ ā”œā”€ encodeurl@~1.0.2 ā”‚ ā”œā”€ escape-html@~1.0.3 ā”‚ ā”œā”€ parseurl@~1.3.3 ā”‚ ā””ā”€ send@0.18.0 ā”œā”€ set-blocking@2.0.0 ā”œā”€ setimmediate@1.0.5 ā”œā”€ setprototypeof@1.2.0 ā”œā”€ sha.js@2.4.11 ā”‚ ā”œā”€ inherits@^2.0.1 ā”‚ ā””ā”€ safe-buffer@^5.0.1 ā”œā”€ shallow-clone@0.1.2 ā”‚ ā”œā”€ is-extendable@^0.1.1 ā”‚ ā”œā”€ kind-of@^2.0.1 ā”‚ ā”œā”€ kind-of@2.0.1 ā”‚ ā”‚ ā””ā”€ is-buffer@^1.0.2 ā”‚ ā”œā”€ lazy-cache@^0.2.3 ā”‚ ā”œā”€ lazy-cache@0.2.7 ā”‚ ā””ā”€ mixin-object@^2.0.1 ā”œā”€ sharp@0.30.7 ā”‚ ā”œā”€ color@^4.2.3 ā”‚ ā”œā”€ detect-libc@^2.0.1 ā”‚ ā”œā”€ node-addon-api@^5.0.0 ā”‚ ā”œā”€ prebuild-install@^7.1.1 ā”‚ ā”œā”€ semver@^7.3.7 ā”‚ ā”œā”€ simple-get@^4.0.1 ā”‚ ā”œā”€ tar-fs@^2.1.1 ā”‚ ā””ā”€ tunnel-agent@^0.6.0 ā”œā”€ shebang-command@2.0.0 ā”‚ ā””ā”€ shebang-regex@^3.0.0 ā”œā”€ shebang-regex@3.0.0 ā”œā”€ side-channel@1.0.4 ā”‚ ā”œā”€ call-bind@^1.0.0 ā”‚ ā”œā”€ get-intrinsic@^1.0.2 ā”‚ ā””ā”€ object-inspect@^1.9.0 ā”œā”€ signal-exit@3.0.7 ā”œā”€ signedsource@1.0.0 ā”œā”€ simple-concat@1.0.1 ā”œā”€ simple-get@4.0.1 ā”‚ ā”œā”€ decompress-response@^6.0.0 ā”‚ ā”œā”€ once@^1.3.1 ā”‚ ā””ā”€ simple-concat@^1.0.0 ā”œā”€ simple-swizzle@0.2.2 ā”‚ ā”œā”€ is-arrayish@^0.3.1 ā”‚ ā””ā”€ is-arrayish@0.3.2 ā”œā”€ sirv@2.0.2 ā”‚ ā”œā”€ @polka/url@^1.0.0-next.20 ā”‚ ā”œā”€ mrmime@^1.0.0 ā”‚ ā””ā”€ totalist@^3.0.0 ā”œā”€ sisteransi@1.0.5 ā”œā”€ slash@3.0.0 ā”œā”€ slice-ansi@3.0.0 ā”‚ ā”œā”€ ansi-styles@^4.0.0 ā”‚ ā”œā”€ astral-regex@^2.0.0 ā”‚ ā””ā”€ is-fullwidth-code-point@^3.0.0 ā”œā”€ snake-case@3.0.4 ā”‚ ā”œā”€ dot-case@^3.0.4 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ source-map-js@1.0.2 ā”œā”€ source-map-support@0.5.21 ā”‚ ā”œā”€ buffer-from@^1.0.0 ā”‚ ā””ā”€ source-map@^0.6.0 ā”œā”€ source-map@0.6.1 ā”œā”€ sourcemap-codec@1.4.8 ā”œā”€ space-separated-tokens@2.0.1 ā”œā”€ spdx-correct@3.1.1 ā”‚ ā”œā”€ spdx-expression-parse@^3.0.0 ā”‚ ā””ā”€ spdx-license-ids@^3.0.0 ā”œā”€ spdx-exceptions@2.3.0 ā”œā”€ spdx-expression-parse@3.0.1 ā”‚ ā”œā”€ spdx-exceptions@^2.1.0 ā”‚ ā””ā”€ spdx-license-ids@^3.0.0 ā”œā”€ spdx-license-ids@3.0.11 ā”œā”€ specificity@0.4.1 ā”œā”€ sponge-case@1.0.1 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ sprintf-js@1.0.3 ā”œā”€ stable@0.1.8 ā”œā”€ stack-utils@2.0.5 ā”‚ ā”œā”€ escape-string-regexp@^2.0.0 ā”‚ ā””ā”€ escape-string-regexp@2.0.0 ā”œā”€ standard-as-callback@2.1.0 ā”œā”€ statuses@2.0.1 ā”œā”€ std-env@3.2.1 ā”œā”€ stream-events@1.0.5 ā”‚ ā””ā”€ stubs@^3.0.0 ā”œā”€ stream-shift@1.0.1 ā”œā”€ streamsearch@1.1.0 ā”œā”€ string_decoder@1.3.0 ā”‚ ā””ā”€ safe-buffer@~5.2.0 ā”œā”€ string-env-interpolation@1.0.1 ā”œā”€ string-length@4.0.2 ā”‚ ā”œā”€ char-regex@^1.0.2 ā”‚ ā””ā”€ strip-ansi@^6.0.0 ā”œā”€ string-width@4.2.3 ā”‚ ā”œā”€ emoji-regex@^8.0.0 ā”‚ ā”œā”€ is-fullwidth-code-point@^3.0.0 ā”‚ ā””ā”€ strip-ansi@^6.0.1 ā”œā”€ string.prototype.matchall@4.0.7 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ define-properties@^1.1.3 ā”‚ ā”œā”€ es-abstract@^1.19.1 ā”‚ ā”œā”€ get-intrinsic@^1.1.1 ā”‚ ā”œā”€ has-symbols@^1.0.3 ā”‚ ā”œā”€ internal-slot@^1.0.3 ā”‚ ā”œā”€ regexp.prototype.flags@^1.4.1 ā”‚ ā””ā”€ side-channel@^1.0.4 ā”œā”€ string.prototype.trimend@1.0.5 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ define-properties@^1.1.4 ā”‚ ā””ā”€ es-abstract@^1.19.5 ā”œā”€ string.prototype.trimstart@1.0.5 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ define-properties@^1.1.4 ā”‚ ā””ā”€ es-abstract@^1.19.5 ā”œā”€ stringify-entities@4.0.3 ā”‚ ā”œā”€ character-entities-html4@^2.0.0 ā”‚ ā””ā”€ character-entities-legacy@^3.0.0 ā”œā”€ strip-ansi@6.0.1 ā”‚ ā””ā”€ ansi-regex@^5.0.1 ā”œā”€ strip-bom@3.0.0 ā”œā”€ strip-final-newline@2.0.0 ā”œā”€ strip-indent@3.0.0 ā”‚ ā””ā”€ min-indent@^1.0.0 ā”œā”€ strip-json-comments@3.1.1 ā”œā”€ strip-literal@0.4.0 ā”‚ ā””ā”€ acorn@^8.7.1 ā”œā”€ stubs@3.0.0 ā”œā”€ style-to-object@0.3.0 ā”‚ ā””ā”€ inline-style-parser@0.1.1 ā”œā”€ stylehacks@5.1.0 ā”‚ ā”œā”€ browserslist@^4.16.6 ā”‚ ā””ā”€ postcss-selector-parser@^6.0.4 ā”œā”€ supports-color@7.2.0 ā”‚ ā””ā”€ has-flag@^4.0.0 ā”œā”€ supports-hyperlinks@2.2.0 ā”‚ ā”œā”€ has-flag@^4.0.0 ā”‚ ā””ā”€ supports-color@^7.0.0 ā”œā”€ supports-preserve-symlinks-flag@1.0.0 ā”œā”€ svg-tags@1.0.0 ā”œā”€ svgo@2.8.0 ā”‚ ā”œā”€ @trysound/sax@0.2.0 ā”‚ ā”œā”€ commander@^7.2.0 ā”‚ ā”œā”€ commander@7.2.0 ā”‚ ā”œā”€ css-select@^4.1.3 ā”‚ ā”œā”€ css-tree@^1.1.3 ā”‚ ā”œā”€ csso@^4.2.0 ā”‚ ā”œā”€ picocolors@^1.0.0 ā”‚ ā””ā”€ stable@^0.1.8 ā”œā”€ swap-case@2.0.2 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ taffydb@2.6.2 ā”œā”€ tapable@1.1.3 ā”œā”€ tar-fs@2.1.1 ā”‚ ā”œā”€ chownr@^1.1.1 ā”‚ ā”œā”€ mkdirp-classic@^0.5.2 ā”‚ ā”œā”€ pump@^3.0.0 ā”‚ ā””ā”€ tar-stream@^2.1.4 ā”œā”€ tar-stream@2.2.0 ā”‚ ā”œā”€ bl@^4.0.3 ā”‚ ā”œā”€ end-of-stream@^1.4.1 ā”‚ ā”œā”€ fs-constants@^1.0.0 ā”‚ ā”œā”€ inherits@^2.0.3 ā”‚ ā””ā”€ readable-stream@^3.1.1 ā”œā”€ tar@4.4.19 ā”‚ ā”œā”€ chownr@^1.1.4 ā”‚ ā”œā”€ fs-minipass@^1.2.7 ā”‚ ā”œā”€ minipass@^2.9.0 ā”‚ ā”œā”€ minizlib@^1.3.3 ā”‚ ā”œā”€ mkdirp@^0.5.5 ā”‚ ā”œā”€ mkdirp@0.5.6 ā”‚ ā”‚ ā””ā”€ minimist@^1.2.6 ā”‚ ā”œā”€ safe-buffer@^5.2.1 ā”‚ ā”œā”€ yallist@^3.1.1 ā”‚ ā””ā”€ yallist@3.1.1 ā”œā”€ teeny-request@8.0.0 ā”‚ ā”œā”€ http-proxy-agent@^5.0.0 ā”‚ ā”œā”€ https-proxy-agent@^5.0.0 ā”‚ ā”œā”€ node-fetch@^2.6.1 ā”‚ ā”œā”€ stream-events@^1.0.5 ā”‚ ā””ā”€ uuid@^8.0.0 ā”œā”€ terminal-link@2.1.1 ā”‚ ā”œā”€ ansi-escapes@^4.2.1 ā”‚ ā””ā”€ supports-hyperlinks@^2.0.0 ā”œā”€ terser@5.14.2 ā”‚ ā”œā”€ @jridgewell/source-map@^0.3.2 ā”‚ ā”œā”€ acorn@^8.5.0 ā”‚ ā”œā”€ commander@^2.20.0 ā”‚ ā””ā”€ source-map-support@~0.5.20 ā”œā”€ test-exclude@6.0.0 ā”‚ ā”œā”€ @istanbuljs/schema@^0.1.2 ā”‚ ā”œā”€ glob@^7.1.4 ā”‚ ā””ā”€ minimatch@^3.0.4 ā”œā”€ text-table@0.2.0 ā”œā”€ through@2.3.8 ā”œā”€ tiny-invariant@1.2.0 ā”œā”€ title-case@3.0.3 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ tmp@0.0.33 ā”‚ ā””ā”€ os-tmpdir@~1.0.2 ā”œā”€ tmpl@1.0.5 ā”œā”€ to-fast-properties@2.0.0 ā”œā”€ to-regex-range@5.0.1 ā”‚ ā””ā”€ is-number@^7.0.0 ā”œā”€ toidentifier@1.0.1 ā”œā”€ totalist@3.0.0 ā”œā”€ tr46@0.0.3 ā”œā”€ trim-lines@3.0.1 ā”œā”€ trim-trailing-lines@2.0.0 ā”œā”€ trough@2.1.0 ā”œā”€ ts-enum-util@4.0.2 ā”œā”€ ts-jest@28.0.8 ā”‚ ā”œā”€ bs-logger@0.x ā”‚ ā”œā”€ fast-json-stable-stringify@2.x ā”‚ ā”œā”€ jest-util@^28.0.0 ā”‚ ā”œā”€ json5@^2.2.1 ā”‚ ā”œā”€ lodash.memoize@4.x ā”‚ ā”œā”€ make-error@1.x ā”‚ ā”œā”€ semver@7.x ā”‚ ā””ā”€ yargs-parser@^21.0.1 ā”œā”€ ts-log@2.2.4 ā”œā”€ ts-node@10.9.1 ā”‚ ā”œā”€ @cspotcode/source-map-support@^0.8.0 ā”‚ ā”œā”€ @tsconfig/node10@^1.0.7 ā”‚ ā”œā”€ @tsconfig/node12@^1.0.7 ā”‚ ā”œā”€ @tsconfig/node14@^1.0.0 ā”‚ ā”œā”€ @tsconfig/node16@^1.0.2 ā”‚ ā”œā”€ acorn-walk@^8.1.1 ā”‚ ā”œā”€ acorn@^8.4.1 ā”‚ ā”œā”€ arg@^4.1.0 ā”‚ ā”œā”€ create-require@^1.1.0 ā”‚ ā”œā”€ diff@^4.0.1 ā”‚ ā”œā”€ diff@4.0.2 ā”‚ ā”œā”€ make-error@^1.1.1 ā”‚ ā”œā”€ v8-compile-cache-lib@^3.0.1 ā”‚ ā””ā”€ yn@3.1.1 ā”œā”€ tsconfig-paths@3.14.1 ā”‚ ā”œā”€ @types/json5@^0.0.29 ā”‚ ā”œā”€ json5@^1.0.1 ā”‚ ā”œā”€ json5@1.0.1 ā”‚ ā”‚ ā””ā”€ minimist@^1.2.0 ā”‚ ā”œā”€ minimist@^1.2.6 ā”‚ ā””ā”€ strip-bom@^3.0.0 ā”œā”€ tslib@2.4.0 ā”œā”€ tsutils@3.21.0 ā”‚ ā”œā”€ tslib@^1.8.1 ā”‚ ā””ā”€ tslib@1.14.1 ā”œā”€ tunnel-agent@0.6.0 ā”‚ ā””ā”€ safe-buffer@^5.0.1 ā”œā”€ type-check@0.3.2 ā”‚ ā””ā”€ prelude-ls@~1.1.2 ā”œā”€ type-detect@4.0.8 ā”œā”€ type-fest@0.21.3 ā”œā”€ typescript@4.7.4 ā”œā”€ ua-parser-js@0.7.31 ā”œā”€ uc.micro@1.0.6 ā”œā”€ ufo@0.8.5 ā”œā”€ uglify-js@3.17.0 ā”œā”€ unbox-primitive@1.0.2 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ has-bigints@^1.0.2 ā”‚ ā”œā”€ has-symbols@^1.0.3 ā”‚ ā””ā”€ which-boxed-primitive@^1.0.2 ā”œā”€ unbzip2-stream@1.4.3 ā”‚ ā”œā”€ buffer@^5.2.1 ā”‚ ā””ā”€ through@^2.3.8 ā”œā”€ unc-path-regex@0.1.2 ā”œā”€ unconfig@0.3.5 ā”‚ ā”œā”€ @antfu/utils@^0.5.2 ā”‚ ā”œā”€ defu@^6.0.0 ā”‚ ā””ā”€ jiti@^1.14.0 ā”œā”€ unctx@2.0.1 ā”‚ ā”œā”€ acorn@^8.8.0 ā”‚ ā”œā”€ estree-walker@^3.0.1 ā”‚ ā”œā”€ estree-walker@3.0.1 ā”‚ ā”œā”€ magic-string@^0.26.2 ā”‚ ā”œā”€ unplugin@^0.8.0 ā”‚ ā””ā”€ unplugin@0.8.1 ā”‚ ā”œā”€ acorn@^8.8.0 ā”‚ ā”œā”€ chokidar@^3.5.3 ā”‚ ā”œā”€ webpack-sources@^3.2.3 ā”‚ ā””ā”€ webpack-virtual-modules@^0.4.4 ā”œā”€ underscore@1.13.4 ā”œā”€ undici@5.9.1 ā”œā”€ unenv@0.5.4 ā”‚ ā”œā”€ defu@^6.0.0 ā”‚ ā”œā”€ mime@^3.0.0 ā”‚ ā”œā”€ node-fetch-native@^0.1.4 ā”‚ ā””ā”€ pathe@^0.3.3 ā”œā”€ unherit@3.0.0 ā”œā”€ unified@10.1.2 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ bail@^2.0.0 ā”‚ ā”œā”€ extend@^3.0.0 ā”‚ ā”œā”€ is-buffer@^2.0.0 ā”‚ ā”œā”€ is-buffer@2.0.5 ā”‚ ā”œā”€ is-plain-obj@^4.0.0 ā”‚ ā”œā”€ trough@^2.0.0 ā”‚ ā””ā”€ vfile@^5.0.0 ā”œā”€ unimport@0.6.7 ā”‚ ā”œā”€ @rollup/pluginutils@^4.2.1 ā”‚ ā”œā”€ @rollup/pluginutils@4.2.1 ā”‚ ā”‚ ā”œā”€ estree-walker@^2.0.1 ā”‚ ā”‚ ā””ā”€ picomatch@^2.2.2 ā”‚ ā”œā”€ escape-string-regexp@^5.0.0 ā”‚ ā”œā”€ fast-glob@^3.2.11 ā”‚ ā”œā”€ local-pkg@^0.4.2 ā”‚ ā”œā”€ magic-string@^0.26.2 ā”‚ ā”œā”€ mlly@^0.5.7 ā”‚ ā”œā”€ pathe@^0.3.3 ā”‚ ā”œā”€ scule@^0.3.2 ā”‚ ā”œā”€ strip-literal@^0.4.0 ā”‚ ā””ā”€ unplugin@^0.9.0 ā”œā”€ unique-username-generator@1.1.1 ā”œā”€ unist-builder@3.0.0 ā”‚ ā””ā”€ @types/unist@^2.0.0 ā”œā”€ unist-util-filter@4.0.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ unist-util-is@^5.0.0 ā”‚ ā””ā”€ unist-util-visit-parents@^5.0.0 ā”œā”€ unist-util-find-after@4.0.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā””ā”€ unist-util-is@^5.0.0 ā”œā”€ unist-util-generated@2.0.0 ā”œā”€ unist-util-inspect@7.0.1 ā”‚ ā””ā”€ @types/unist@^2.0.0 ā”œā”€ unist-util-is@5.1.1 ā”œā”€ unist-util-modify-children@2.0.0 ā”‚ ā””ā”€ array-iterate@^1.0.0 ā”œā”€ unist-util-position@4.0.3 ā”‚ ā””ā”€ @types/unist@^2.0.0 ā”œā”€ unist-util-remove@3.1.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ unist-util-is@^5.0.0 ā”‚ ā””ā”€ unist-util-visit-parents@^5.0.0 ā”œā”€ unist-util-stringify-position@3.0.2 ā”‚ ā””ā”€ @types/unist@^2.0.0 ā”œā”€ unist-util-visit-children@1.1.4 ā”œā”€ unist-util-visit-parents@5.1.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā””ā”€ unist-util-is@^5.0.0 ā”œā”€ unist-util-visit@4.1.0 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ unist-util-is@^5.0.0 ā”‚ ā””ā”€ unist-util-visit-parents@^5.0.0 ā”œā”€ universalify@2.0.0 ā”œā”€ unixify@1.0.0 ā”‚ ā”œā”€ normalize-path@^2.1.1 ā”‚ ā””ā”€ normalize-path@2.1.1 ā”‚ ā””ā”€ remove-trailing-separator@^1.0.1 ā”œā”€ unocss@0.45.8 ā”‚ ā”œā”€ @unocss/cli@0.45.8 ā”‚ ā”œā”€ @unocss/core@0.45.8 ā”‚ ā”œā”€ @unocss/preset-attributify@0.45.8 ā”‚ ā”œā”€ @unocss/preset-icons@0.45.8 ā”‚ ā”œā”€ @unocss/preset-mini@0.45.8 ā”‚ ā”œā”€ @unocss/preset-tagify@0.45.8 ā”‚ ā”œā”€ @unocss/preset-typography@0.45.8 ā”‚ ā”œā”€ @unocss/preset-uno@0.45.8 ā”‚ ā”œā”€ @unocss/preset-web-fonts@0.45.8 ā”‚ ā”œā”€ @unocss/preset-wind@0.45.8 ā”‚ ā”œā”€ @unocss/reset@0.45.8 ā”‚ ā”œā”€ @unocss/transformer-attributify-jsx@0.45.8 ā”‚ ā”œā”€ @unocss/transformer-compile-class@0.45.8 ā”‚ ā”œā”€ @unocss/transformer-directives@0.45.8 ā”‚ ā”œā”€ @unocss/transformer-variant-group@0.45.8 ā”‚ ā””ā”€ @unocss/vite@0.45.8 ā”œā”€ unplugin@0.9.3 ā”‚ ā”œā”€ acorn@^8.8.0 ā”‚ ā”œā”€ chokidar@^3.5.3 ā”‚ ā”œā”€ webpack-sources@^3.2.3 ā”‚ ā””ā”€ webpack-virtual-modules@^0.4.4 ā”œā”€ unstorage@0.5.6 ā”‚ ā”œā”€ anymatch@^3.1.2 ā”‚ ā”œā”€ chokidar@^3.5.3 ā”‚ ā”œā”€ destr@^1.1.1 ā”‚ ā”œā”€ h3@^0.7.12 ā”‚ ā”œā”€ ioredis@^5.2.2 ā”‚ ā”œā”€ listhen@^0.2.13 ā”‚ ā”œā”€ mri@^1.2.0 ā”‚ ā”œā”€ ohmyfetch@^0.4.18 ā”‚ ā”œā”€ ufo@^0.8.5 ā”‚ ā””ā”€ ws@^8.8.1 ā”œā”€ untyped@0.4.5 ā”‚ ā”œā”€ @babel/core@^7.18.10 ā”‚ ā”œā”€ @babel/standalone@^7.18.11 ā”‚ ā”œā”€ @babel/types@^7.18.10 ā”‚ ā””ā”€ scule@^0.3.2 ā”œā”€ update-browserslist-db@1.0.5 ā”‚ ā”œā”€ escalade@^3.1.1 ā”‚ ā””ā”€ picocolors@^1.0.0 ā”œā”€ upper-case-first@2.0.2 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ upper-case@2.0.2 ā”‚ ā””ā”€ tslib@^2.0.3 ā”œā”€ uri-js@4.4.1 ā”‚ ā”œā”€ punycode@^2.1.0 ā”‚ ā””ā”€ punycode@2.1.1 ā”œā”€ urijs@1.19.11 ā”œā”€ url@0.10.3 ā”‚ ā”œā”€ punycode@1.3.2 ā”‚ ā””ā”€ querystring@0.2.0 ā”œā”€ util-deprecate@1.0.2 ā”œā”€ util@0.12.4 ā”‚ ā”œā”€ inherits@^2.0.3 ā”‚ ā”œā”€ is-arguments@^1.0.4 ā”‚ ā”œā”€ is-generator-function@^1.0.7 ā”‚ ā”œā”€ is-typed-array@^1.1.3 ā”‚ ā”œā”€ safe-buffer@^5.1.2 ā”‚ ā””ā”€ which-typed-array@^1.1.2 ā”œā”€ utility-types@3.10.0 ā”œā”€ uuid@8.3.2 ā”œā”€ uvu@0.5.6 ā”‚ ā”œā”€ dequal@^2.0.0 ā”‚ ā”œā”€ diff@^5.0.0 ā”‚ ā”œā”€ kleur@^4.0.3 ā”‚ ā””ā”€ sade@^1.7.3 ā”œā”€ v8-compile-cache-lib@3.0.1 ā”œā”€ v8-compile-cache@2.3.0 ā”œā”€ v8-to-istanbul@9.0.1 ā”‚ ā”œā”€ @jridgewell/trace-mapping@^0.3.12 ā”‚ ā”œā”€ @types/istanbul-lib-coverage@^2.0.1 ā”‚ ā””ā”€ convert-source-map@^1.6.0 ā”œā”€ validate-npm-package-license@3.0.4 ā”‚ ā”œā”€ spdx-correct@^3.0.0 ā”‚ ā””ā”€ spdx-expression-parse@^3.0.0 ā”œā”€ validator@13.7.0 ā”œā”€ value-or-promise@1.0.11 ā”œā”€ vfile-location@4.0.1 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā””ā”€ vfile@^5.0.0 ā”œā”€ vfile-message@3.1.2 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā””ā”€ unist-util-stringify-position@^3.0.0 ā”œā”€ vfile@5.3.4 ā”‚ ā”œā”€ @types/unist@^2.0.0 ā”‚ ā”œā”€ is-buffer@^2.0.0 ā”‚ ā”œā”€ is-buffer@2.0.5 ā”‚ ā”œā”€ unist-util-stringify-position@^3.0.0 ā”‚ ā””ā”€ vfile-message@^3.0.0 ā”œā”€ vite-node@0.21.1 ā”‚ ā”œā”€ debug@^4.3.4 ā”‚ ā”œā”€ mlly@^0.5.7 ā”‚ ā”œā”€ pathe@^0.2.0 ā”‚ ā”œā”€ pathe@0.2.0 ā”‚ ā””ā”€ vite@^2.9.12 || ^3.0.0-0 ā”œā”€ vite-plugin-checker@0.4.9 ā”‚ ā”œā”€ @babel/code-frame@^7.12.13 ā”‚ ā”œā”€ ansi-escapes@^4.3.0 ā”‚ ā”œā”€ chalk@^4.1.1 ā”‚ ā”œā”€ chokidar@^3.5.1 ā”‚ ā”œā”€ commander@^8.0.0 ā”‚ ā”œā”€ commander@8.3.0 ā”‚ ā”œā”€ fast-glob@^3.2.7 ā”‚ ā”œā”€ lodash.debounce@^4.0.8 ā”‚ ā”œā”€ lodash.pick@^4.4.0 ā”‚ ā”œā”€ npm-run-path@^4.0.1 ā”‚ ā”œā”€ strip-ansi@^6.0.0 ā”‚ ā”œā”€ tiny-invariant@^1.1.0 ā”‚ ā”œā”€ vscode-languageclient@^7.0.0 ā”‚ ā”œā”€ vscode-languageserver-textdocument@^1.0.1 ā”‚ ā”œā”€ vscode-languageserver@^7.0.0 ā”‚ ā””ā”€ vscode-uri@^3.0.2 ā”œā”€ vite@3.0.9 ā”‚ ā”œā”€ esbuild@^0.14.47 ā”‚ ā”œā”€ fsevents@~2.3.2 ā”‚ ā”œā”€ postcss@^8.4.16 ā”‚ ā”œā”€ resolve@^1.22.1 ā”‚ ā”œā”€ rollup@>=2.75.6 <2.77.0 || ~2.77.0 ā”‚ ā””ā”€ rollup@2.77.3 ā”‚ ā””ā”€ fsevents@~2.3.2 ā”œā”€ vscode-jsonrpc@6.0.0 ā”œā”€ vscode-languageclient@7.0.0 ā”‚ ā”œā”€ minimatch@^3.0.4 ā”‚ ā”œā”€ semver@^7.3.4 ā”‚ ā””ā”€ vscode-languageserver-protocol@3.16.0 ā”œā”€ vscode-languageserver-protocol@3.16.0 ā”‚ ā”œā”€ vscode-jsonrpc@6.0.0 ā”‚ ā””ā”€ vscode-languageserver-types@3.16.0 ā”œā”€ vscode-languageserver-textdocument@1.0.5 ā”œā”€ vscode-languageserver-types@3.16.0 ā”œā”€ vscode-languageserver@7.0.0 ā”‚ ā””ā”€ vscode-languageserver-protocol@3.16.0 ā”œā”€ vscode-uri@3.0.3 ā”œā”€ vue-bundle-renderer@0.4.2 ā”‚ ā””ā”€ ufo@^0.8.3 ā”œā”€ vue-demi@0.13.8 ā”œā”€ vue-eslint-parser@9.0.3 ā”‚ ā”œā”€ debug@^4.3.4 ā”‚ ā”œā”€ eslint-scope@^7.1.1 ā”‚ ā”œā”€ eslint-visitor-keys@^3.3.0 ā”‚ ā”œā”€ espree@^9.3.1 ā”‚ ā”œā”€ esquery@^1.4.0 ā”‚ ā”œā”€ lodash@^4.17.21 ā”‚ ā””ā”€ semver@^7.3.6 ā”œā”€ vue-router@4.1.3 ā”‚ ā””ā”€ @vue/devtools-api@^6.1.4 ā”œā”€ vue@3.2.37 ā”‚ ā”œā”€ @vue/compiler-dom@3.2.37 ā”‚ ā”œā”€ @vue/compiler-sfc@3.2.37 ā”‚ ā”œā”€ @vue/runtime-dom@3.2.37 ā”‚ ā”œā”€ @vue/server-renderer@3.2.37 ā”‚ ā””ā”€ @vue/shared@3.2.37 ā”œā”€ walker@1.0.8 ā”‚ ā””ā”€ makeerror@1.0.12 ā”œā”€ wanakana@5.0.2 ā”œā”€ wcwidth@1.0.1 ā”‚ ā””ā”€ defaults@^1.0.3 ā”œā”€ web-namespaces@2.0.1 ā”œā”€ web-streams-polyfill@3.2.1 ā”œā”€ webcrypto-core@1.7.5 ā”‚ ā”œā”€ @peculiar/asn1-schema@^2.1.6 ā”‚ ā”œā”€ @peculiar/json-schema@^1.1.12 ā”‚ ā”œā”€ asn1js@^3.0.1 ā”‚ ā”œā”€ pvtsutils@^1.3.2 ā”‚ ā””ā”€ tslib@^2.4.0 ā”œā”€ webidl-conversions@3.0.1 ā”œā”€ webpack-sources@3.2.3 ā”œā”€ webpack-virtual-modules@0.4.4 ā”œā”€ whatwg-fetch@3.6.2 ā”œā”€ whatwg-mimetype@3.0.0 ā”œā”€ whatwg-url@5.0.0 ā”‚ ā”œā”€ tr46@~0.0.3 ā”‚ ā””ā”€ webidl-conversions@^3.0.0 ā”œā”€ which-boxed-primitive@1.0.2 ā”‚ ā”œā”€ is-bigint@^1.0.1 ā”‚ ā”œā”€ is-boolean-object@^1.1.0 ā”‚ ā”œā”€ is-number-object@^1.0.4 ā”‚ ā”œā”€ is-string@^1.0.5 ā”‚ ā””ā”€ is-symbol@^1.0.3 ā”œā”€ which-module@2.0.0 ā”œā”€ which-typed-array@1.1.8 ā”‚ ā”œā”€ available-typed-arrays@^1.0.5 ā”‚ ā”œā”€ call-bind@^1.0.2 ā”‚ ā”œā”€ es-abstract@^1.20.0 ā”‚ ā”œā”€ for-each@^0.3.3 ā”‚ ā”œā”€ has-tostringtag@^1.0.0 ā”‚ ā””ā”€ is-typed-array@^1.1.9 ā”œā”€ which@2.0.2 ā”‚ ā””ā”€ isexe@^2.0.0 ā”œā”€ wide-align@1.1.5 ā”‚ ā””ā”€ string-width@^1.0.2 || 2 || 3 || 4 ā”œā”€ wonka@6.0.0 ā”œā”€ word-wrap@1.2.3 ā”œā”€ wrap-ansi@7.0.0 ā”‚ ā”œā”€ ansi-styles@^4.0.0 ā”‚ ā”œā”€ string-width@^4.1.0 ā”‚ ā””ā”€ strip-ansi@^6.0.0 ā”œā”€ wrappy@1.0.2 ā”œā”€ write-file-atomic@4.0.2 ā”‚ ā”œā”€ imurmurhash@^0.1.4 ā”‚ ā””ā”€ signal-exit@^3.0.7 ā”œā”€ ws@8.8.1 ā”œā”€ xml-name-validator@4.0.0 ā”œā”€ xml2js@0.4.19 ā”‚ ā”œā”€ sax@>=0.6.0 ā”‚ ā”œā”€ sax@1.2.4 ā”‚ ā””ā”€ xmlbuilder@~9.0.1 ā”œā”€ xmlbuilder@9.0.7 ā”œā”€ xmlbuilder2@3.0.2 ā”‚ ā”œā”€ @oozcitak/dom@1.15.10 ā”‚ ā”œā”€ @oozcitak/infra@1.0.8 ā”‚ ā”œā”€ @oozcitak/util@8.3.8 ā”‚ ā”œā”€ @types/node@* ā”‚ ā”œā”€ js-yaml@3.14.0 ā”‚ ā””ā”€ js-yaml@3.14.0 ā”‚ ā”œā”€ argparse@^1.0.7 ā”‚ ā””ā”€ esprima@^4.0.0 ā”œā”€ xmlcreate@2.0.4 ā”œā”€ xss@1.0.14 ā”‚ ā”œā”€ commander@^2.20.3 ā”‚ ā””ā”€ cssfilter@0.0.10 ā”œā”€ xtend@4.0.2 ā”œā”€ xxhashjs@0.2.2 ā”‚ ā””ā”€ cuint@^0.2.2 ā”œā”€ y18n@5.0.8 ā”œā”€ yallist@4.0.0 ā”œā”€ yaml-ast-parser@0.0.43 ā”œā”€ yaml-eslint-parser@1.1.0 ā”‚ ā”œā”€ eslint-visitor-keys@^3.0.0 ā”‚ ā”œā”€ lodash@^4.17.21 ā”‚ ā”œā”€ yaml@^2.0.0 ā”‚ ā””ā”€ yaml@2.1.1 ā”œā”€ yaml@1.10.2 ā”œā”€ yargs-parser@21.1.1 ā”œā”€ yargs@17.5.1 ā”‚ ā”œā”€ cliui@^7.0.2 ā”‚ ā”œā”€ escalade@^3.1.1 ā”‚ ā”œā”€ get-caller-file@^2.0.5 ā”‚ ā”œā”€ require-directory@^2.1.1 ā”‚ ā”œā”€ string-width@^4.2.3 ā”‚ ā”œā”€ y18n@^5.0.5 ā”‚ ā””ā”€ yargs-parser@^21.0.0 ā”œā”€ yauzl@2.10.0 ā”‚ ā”œā”€ buffer-crc32@~0.2.3 ā”‚ ā””ā”€ fd-slicer@~1.1.0 ā”œā”€ yn@3.1.1 ā”œā”€ yocto-queue@0.1.0 ā”œā”€ zip-stream@4.1.0 ā”‚ ā”œā”€ archiver-utils@^2.1.0 ā”‚ ā”œā”€ compress-commons@^4.1.0 ā”‚ ā””ā”€ readable-stream@^3.6.0 ā””ā”€ zwitch@2.0.2 Done in 1.03s.
kitten commented 2 years ago

That's alright, I found the relevant section šŸ‘ You indeed don't have any duplicate sub-dependencies for urql, so I'm wondering whether the executeExchange has a subtle regression. I'll try to track it down

shtse8 commented 2 years ago

That's alright, I found the relevant section šŸ‘ You indeed don't have any duplicate sub-dependencies for urql, so I'm wondering whether the executeExchange has a subtle regression. I'll try to track it down

For your reference, I tried to use fetchExchange instead of executeExchange, but the issue still exists.

the trace is pointing me to this.

image

I thought it is about vue + useQuery. I don't know how to test if I don't use useQuery. It seems lots of codes need to change for testing.

shtse8 commented 2 years ago

ok, I can confirm one thing. useQuery causes the issue.

I replace all Urql.useQuery with my self implemented useQuery as follow, and everything works fine.

import type { AnyVariables, OperationContext } from '@urql/core/dist/types/types'
import type { Client, UseQueryArgs } from '@urql/vue'
import type { Ref } from '@vue/reactivity'
import { get, resolveUnref } from '@vueuse/shared'

export function useQuery<Data = any, Variables extends AnyVariables = AnyVariables>(_args: UseQueryArgs<Data, Variables>, context?: Partial<OperationContext>): ReturnType<typeof executeQuery> & Awaited<ReturnType<typeof executeQuery>> {
  const client = inject('$urql') as Ref<Client>
  const data = ref<Data>()
  const error = ref<Error>()
  const fetching = ref<boolean>(false)
  const isPausing = ref(resolveUnref(_args.pause))
  const returnObject = {
    data,
    error,
    fetching,
    pause() {
      isPausing.value = true
    },
    resume() {
      isPausing.value = false
    },
  }

  function executeQuery(context?: Partial<OperationContext>) {
    try {
      const query = get(_args.query)
      let variables = resolveUnref(_args.variables)
      if (variables) {
        // clone object
        variables = Object.assign({}, variables)
        for (const key in variables)
          variables[key] = resolveUnref(variables[key])
      }
      fetching.value = true
      return client.value.query<Data, Variables>(query, variables as Variables, context).toPromise().then((result) => {
        fetching.value = false
        data.value = result.data
        error.value = result.error
        return {
          ...returnObject,
          executeQuery,
        }
      })
    }
    catch (e) {
      if (e instanceof Error)
        error.value = e
      throw e
    }
  }

  let result: ReturnType<typeof executeQuery>
  watchEffect(() => {
    if (isPausing.value)
      return
    result = executeQuery(context)
  })
  return {
    ...returnObject,
    executeQuery,
    then(...args: any[]) {
      return result.then(...args)
    },
  } as any
}

for others who facing the same issue, don't take this version to production as it is rough and just for finding the cause.

kitten commented 2 years ago

Ah, I see what's going on here. I inspected the code and it landed on an immediately invoked subscription object, which couldn't actually be declared in time, since it uses a const variable. This was previously using a var statement, hence hoisting its declaration and it becoming usable in time.

Edit: I also want to point out, thank you not only for reporting this, but also for sending me the error with a fully sourcemapped stack trace! Without it, this could've taken me hours to hunt down, since I don't have a full Vue+urql app set up yet šŸ˜…

kitten commented 2 years ago

This should now be resolved in the latest release (@urql/vue@1.0.2) https://github.com/FormidableLabs/urql/pull/2630

shtse8 commented 2 years ago

Ah, I see what's going on here. I inspected the code and it landed on an immediately invoked subscription object, which couldn't actually be declared in time, since it uses a const variable. This was previously using a var statement, hence hoisting its declaration and it becoming usable in time.

Edit: I also want to point out, thank you not only for reporting this, but also for sending me the error with a fully sourcemapped stack trace! Without it, this could've taken me hours to hunt down, since I don't have a full Vue+urql app set up yet šŸ˜…

Awesome! I can confirm the bug is fixed and it works perfectly! Thanks for your effective help! was being worried it will last long and that's why I made a workaround solution for my project.