@socketsecurity/lib 6.0.3 → 6.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/dist/_virtual/_rolldown/runtime.js +45 -0
- package/dist/abort/signal.js +53 -59
- package/dist/ai/discover.js +110 -110
- package/dist/ai/profiles.js +94 -65
- package/dist/ai/spawn.js +172 -194
- package/dist/ai/types.js +1 -17
- package/dist/ai/worktree.js +160 -183
- package/dist/ansi/constants.js +16 -38
- package/dist/ansi/strip.js +44 -41
- package/dist/archives/_internal.js +64 -73
- package/dist/archives/detect.js +30 -43
- package/dist/archives/extract.js +43 -50
- package/dist/archives/tar.js +197 -228
- package/dist/archives/types.js +1 -17
- package/dist/archives/zip.js +85 -121
- package/dist/argv/flag-predicates.js +203 -101
- package/dist/argv/flag-types.js +96 -113
- package/dist/argv/parse-args-string.d.ts +16 -14
- package/dist/argv/parse-args-string.js +42 -39
- package/dist/argv/parse.js +145 -163
- package/dist/arrays/_internal.js +65 -48
- package/dist/arrays/chunk.js +51 -40
- package/dist/arrays/join.js +87 -35
- package/dist/arrays/predicates.js +46 -28
- package/dist/arrays/unique.js +45 -31
- package/dist/bin/_internal.js +34 -42
- package/dist/bin/check-primordials.js +175 -233
- package/dist/bin/check.js +51 -72
- package/dist/bin/exec.js +70 -74
- package/dist/bin/find.js +151 -134
- package/dist/bin/resolve.js +180 -246
- package/dist/bin/shadow.js +24 -33
- package/dist/bin/socket-lib.js +51 -73
- package/dist/bin/types.js +1 -17
- package/dist/bin/which.js +211 -146
- package/dist/cacache/_internal.js +25 -40
- package/dist/cacache/clear.js +79 -72
- package/dist/cacache/read.js +48 -46
- package/dist/cacache/tmp.js +29 -36
- package/dist/cacache/types.js +1 -17
- package/dist/cacache/write.js +43 -48
- package/dist/cache/ttl/store.js +232 -288
- package/dist/cache/ttl/types.js +1 -17
- package/dist/checks/primordials-defaults.js +83 -89
- package/dist/checks/primordials.js +225 -277
- package/dist/colors/convert.js +45 -37
- package/dist/colors/palette.js +88 -45
- package/dist/colors/socket-palette.js +74 -84
- package/dist/colors/types.js +1 -17
- package/dist/compression/_internal.js +57 -72
- package/dist/compression/brotli.js +94 -127
- package/dist/compression/gzip.js +95 -121
- package/dist/compression/types.js +1 -17
- package/dist/constants/agents.js +61 -113
- package/dist/constants/encoding.js +19 -42
- package/dist/constants/github.js +12 -30
- package/dist/constants/licenses.js +48 -63
- package/dist/constants/lifecycle-script-names.js +31 -45
- package/dist/constants/maintained-node-versions.js +22 -37
- package/dist/constants/node.js +226 -167
- package/dist/constants/package-default-node-range.js +16 -41
- package/dist/constants/package-default-socket-categories.js +12 -30
- package/dist/constants/packages.js +77 -126
- package/dist/constants/platform.js +27 -49
- package/dist/constants/sentinels.js +23 -48
- package/dist/constants/socket.js +42 -87
- package/dist/constants/testing.js +15 -34
- package/dist/constants/time.js +16 -36
- package/dist/constants/typescript.js +32 -52
- package/dist/cover/code.js +111 -142
- package/dist/cover/formatters.js +118 -101
- package/dist/cover/type.js +50 -76
- package/dist/cover/types.js +1 -17
- package/dist/crypto/hash.js +54 -46
- package/dist/debug/_internal.js +62 -71
- package/dist/debug/caller-info.js +53 -64
- package/dist/debug/namespace.js +80 -90
- package/dist/debug/output.js +172 -188
- package/dist/debug/types.js +1 -17
- package/dist/dlx/_internal.js +24 -43
- package/dist/dlx/arborist.js +162 -160
- package/dist/dlx/binary-cache.js +228 -200
- package/dist/dlx/binary-download.js +172 -211
- package/dist/dlx/binary-resolution.js +165 -157
- package/dist/dlx/binary-types.js +1 -17
- package/dist/dlx/binary.js +149 -189
- package/dist/dlx/cache.js +45 -30
- package/dist/dlx/detect.js +245 -159
- package/dist/dlx/dir.js +67 -51
- package/dist/dlx/firewall.js +62 -100
- package/dist/dlx/lockfile.js +122 -127
- package/dist/dlx/manifest.js +264 -274
- package/dist/dlx/package.js +241 -244
- package/dist/dlx/packages.js +99 -96
- package/dist/dlx/paths.js +73 -59
- package/dist/dlx/spec.js +52 -60
- package/dist/dlx/types.js +1 -17
- package/dist/eco/cargo/lockfile-format.js +19 -36
- package/dist/eco/cargo/manifest-format.js +17 -35
- package/dist/eco/cargo/parse-lockfile.js +210 -237
- package/dist/eco/manifest/analyze-lockfile.js +46 -63
- package/dist/eco/manifest/detect-format.js +66 -90
- package/dist/eco/manifest/find-packages.js +39 -64
- package/dist/eco/manifest/get-package-versions.js +27 -48
- package/dist/eco/manifest/get-package.js +21 -40
- package/dist/eco/manifest/manifest-error.js +14 -35
- package/dist/eco/manifest/parse-lockfile.js +40 -86
- package/dist/eco/manifest/parse-manifest.js +26 -43
- package/dist/eco/manifest/parse.js +26 -47
- package/dist/eco/manifest/types.js +1 -17
- package/dist/eco/npm/bun/exec.js +23 -32
- package/dist/eco/npm/manifest-format.js +21 -35
- package/dist/eco/npm/npm/exec.js +51 -61
- package/dist/eco/npm/npm/extract-package-name-from-path.js +28 -50
- package/dist/eco/npm/npm/flags.js +80 -52
- package/dist/eco/npm/npm/lockfile-format.js +21 -40
- package/dist/eco/npm/npm/parse-git-url.js +26 -40
- package/dist/eco/npm/npm/parse-lockfile.js +184 -210
- package/dist/eco/npm/parse-package-json.js +71 -102
- package/dist/eco/npm/pnpm/detect-pnpm-version.js +22 -43
- package/dist/eco/npm/pnpm/exec.js +51 -62
- package/dist/eco/npm/pnpm/flags.js +75 -68
- package/dist/eco/npm/pnpm/lockfile-format.js +19 -36
- package/dist/eco/npm/pnpm/parse-lockfile.js +235 -259
- package/dist/eco/npm/pnpm/parse-pnpm-package-id-v5.js +37 -47
- package/dist/eco/npm/pnpm/parse-pnpm-package-id-v6-v9.js +36 -49
- package/dist/eco/npm/script.js +82 -90
- package/dist/eco/npm/vlt/exec.js +24 -32
- package/dist/eco/npm/yarnpkg/yarn/exec.js +60 -59
- package/dist/eco/npm/yarnpkg/yarn/lockfile-format.js +20 -36
- package/dist/eco/npm/yarnpkg/yarn/parse-lockfile.js +194 -242
- package/dist/eco/npm/yarnpkg/yarn/parse-yarn-descriptor.js +37 -61
- package/dist/eco/purl.js +50 -60
- package/dist/eco/types.js +1 -17
- package/dist/effects/pulse-frames.js +64 -65
- package/dist/effects/shimmer-keyframes.js +71 -52
- package/dist/effects/shimmer-terminal.js +81 -50
- package/dist/effects/shimmer.js +290 -153
- package/dist/env/boolean.js +42 -43
- package/dist/env/case-insensitive.js +54 -39
- package/dist/env/ci.js +29 -31
- package/dist/env/debug.js +28 -31
- package/dist/env/github.js +144 -59
- package/dist/env/home.js +38 -31
- package/dist/env/locale.js +59 -39
- package/dist/env/node-auth-token.js +28 -31
- package/dist/env/node-env.js +28 -31
- package/dist/env/npm.js +94 -47
- package/dist/env/number.js +50 -51
- package/dist/env/package-manager.js +95 -83
- package/dist/env/path.js +28 -31
- package/dist/env/pre-commit.js +30 -32
- package/dist/env/proxy.js +121 -122
- package/dist/env/rewire.js +204 -96
- package/dist/env/shell.js +28 -31
- package/dist/env/socket-cli.js +233 -81
- package/dist/env/socket.js +521 -156
- package/dist/env/string.js +43 -44
- package/dist/env/temp-dir.js +59 -39
- package/dist/env/term.js +28 -31
- package/dist/env/test.js +65 -43
- package/dist/env/types.js +1 -17
- package/dist/env/windows.js +78 -43
- package/dist/env/xdg.js +62 -39
- package/dist/errors/message.js +40 -46
- package/dist/errors/predicates.js +61 -49
- package/dist/errors/stack.js +24 -36
- package/dist/events/exit/_internal.js +86 -103
- package/dist/events/exit/handler.js +48 -55
- package/dist/events/exit/intercept.js +49 -70
- package/dist/events/exit/lifecycle.js +92 -101
- package/dist/events/exit/signals.js +25 -31
- package/dist/events/exit/types.js +1 -17
- package/dist/events/warning/handler.js +43 -40
- package/dist/events/warning/suppress.js +111 -90
- package/dist/external/@npmcli/package-json/lib/read-package.js +132 -153
- package/dist/external/@npmcli/package-json/lib/sort.js +73 -105
- package/dist/external/@npmcli/package-json.js +12705 -15140
- package/dist/external/@npmcli/promise-spawn.js +451 -472
- package/dist/external/@sinclair/typebox/value.js +7443 -9002
- package/dist/external/@sinclair/typebox.js +7516 -7885
- package/dist/external/@socketregistry/is-unicode-supported.js +31 -39
- package/dist/external/@socketregistry/packageurl-js.js +6127 -7369
- package/dist/external/@socketregistry/yocto-spinner.js +394 -455
- package/dist/external/@yarnpkg/extensions.js +435 -1022
- package/dist/external/adm-zip.js +2313 -2673
- package/dist/external/debug.js +700 -687
- package/dist/external/external-pack.js +2658 -3171
- package/dist/external/fast-sort.js +124 -138
- package/dist/external/get-east-asian-width.js +70 -64
- package/dist/external/libnpmexec.js +28 -31
- package/dist/external/npm-pack.js +43617 -50137
- package/dist/external/p-map.js +198 -222
- package/dist/external/pico-pack.js +6735 -7304
- package/dist/external/pony-cause.js +143 -139
- package/dist/external/shell-quote.js +226 -0
- package/dist/external/spdx-pack.js +1283 -1403
- package/dist/external/streaming-iterables.js +835 -1052
- package/dist/external/tar-fs.js +2769 -3048
- package/dist/external/which.js +267 -251
- package/dist/external/yargs-parser.js +851 -1074
- package/dist/external-tools/bazel/asset-names.js +98 -90
- package/dist/external-tools/bazel/from-download.js +52 -46
- package/dist/external-tools/bazel/from-path.js +27 -38
- package/dist/external-tools/bazel/read-bazel-version-file.js +35 -57
- package/dist/external-tools/bazel/resolve-asset-url.js +24 -39
- package/dist/external-tools/bazel/resolve-bazel-version.js +34 -56
- package/dist/external-tools/bazel/resolve.js +44 -58
- package/dist/external-tools/bazel/types.js +1 -17
- package/dist/external-tools/cdxgen/asset-names.js +59 -66
- package/dist/external-tools/cdxgen/from-download.js +52 -80
- package/dist/external-tools/cdxgen/from-path.js +19 -37
- package/dist/external-tools/cdxgen/from-vfs.js +22 -43
- package/dist/external-tools/cdxgen/resolve.js +48 -63
- package/dist/external-tools/cdxgen/types.js +1 -17
- package/dist/external-tools/from-download.js +107 -67
- package/dist/external-tools/janus/asset-names.js +44 -51
- package/dist/external-tools/janus/from-download.js +45 -70
- package/dist/external-tools/janus/from-path.js +19 -37
- package/dist/external-tools/janus/from-vfs.js +22 -43
- package/dist/external-tools/janus/resolve.js +45 -63
- package/dist/external-tools/janus/types.js +1 -17
- package/dist/external-tools/jre/asset-names.js +109 -82
- package/dist/external-tools/jre/detect-platform-arch.js +25 -49
- package/dist/external-tools/jre/from-download.js +71 -67
- package/dist/external-tools/jre/from-java-home.js +27 -54
- package/dist/external-tools/jre/from-path.js +27 -49
- package/dist/external-tools/jre/from-vfs.js +39 -60
- package/dist/external-tools/jre/resolve.js +55 -68
- package/dist/external-tools/jre/types.js +1 -17
- package/dist/external-tools/manifest.js +130 -150
- package/dist/external-tools/opengrep/asset-names.js +60 -72
- package/dist/external-tools/opengrep/from-download.js +58 -80
- package/dist/external-tools/opengrep/from-path.js +19 -37
- package/dist/external-tools/opengrep/from-vfs.js +23 -43
- package/dist/external-tools/opengrep/resolve.js +43 -63
- package/dist/external-tools/opengrep/types.js +1 -17
- package/dist/external-tools/sbt/asset-names.js +21 -30
- package/dist/external-tools/sbt/from-download.js +50 -61
- package/dist/external-tools/sbt/from-path.js +23 -38
- package/dist/external-tools/sbt/from-vfs.js +30 -44
- package/dist/external-tools/sbt/resolve.js +45 -63
- package/dist/external-tools/sbt/types.js +1 -17
- package/dist/external-tools/synp/asset-names.js +11 -29
- package/dist/external-tools/synp/from-download.js +24 -41
- package/dist/external-tools/synp/from-path.js +19 -37
- package/dist/external-tools/synp/from-vfs.js +22 -43
- package/dist/external-tools/synp/resolve.js +43 -62
- package/dist/external-tools/synp/types.js +1 -17
- package/dist/external-tools/trivy/asset-names.js +51 -62
- package/dist/external-tools/trivy/from-download.js +42 -64
- package/dist/external-tools/trivy/from-path.js +19 -37
- package/dist/external-tools/trivy/from-vfs.js +22 -43
- package/dist/external-tools/trivy/resolve.js +43 -63
- package/dist/external-tools/trivy/types.js +1 -17
- package/dist/external-tools/trufflehog/asset-names.js +54 -66
- package/dist/external-tools/trufflehog/from-download.js +44 -62
- package/dist/external-tools/trufflehog/from-path.js +21 -37
- package/dist/external-tools/trufflehog/from-vfs.js +26 -43
- package/dist/external-tools/trufflehog/resolve.js +43 -63
- package/dist/external-tools/trufflehog/types.js +1 -17
- package/dist/external-tools/uv/asset-names.js +64 -74
- package/dist/external-tools/uv/from-download.js +44 -65
- package/dist/external-tools/uv/from-path.js +19 -37
- package/dist/external-tools/uv/from-vfs.js +22 -43
- package/dist/external-tools/uv/resolve.js +42 -63
- package/dist/external-tools/uv/types.js +1 -17
- package/dist/fs/_internal.js +40 -42
- package/dist/fs/access.js +57 -54
- package/dist/fs/encoding.js +80 -97
- package/dist/fs/find-up.js +126 -125
- package/dist/fs/inspect.js +168 -99
- package/dist/fs/path-cache.js +31 -32
- package/dist/fs/read-dir.js +102 -79
- package/dist/fs/read-file.js +177 -118
- package/dist/fs/read-json-cache.js +150 -134
- package/dist/fs/read-json.js +172 -187
- package/dist/fs/resolve-module.js +35 -58
- package/dist/fs/safe.js +278 -169
- package/dist/fs/types.js +1 -17
- package/dist/fs/unique.js +52 -48
- package/dist/fs/validate.js +56 -40
- package/dist/fs/write-json.js +109 -75
- package/dist/git/_internal.js +251 -216
- package/dist/git/changed.js +191 -74
- package/dist/git/repo.js +118 -104
- package/dist/git/staged.js +172 -62
- package/dist/git/types.js +1 -17
- package/dist/git/unstaged.js +175 -62
- package/dist/github/constants.js +25 -33
- package/dist/github/errors.js +46 -38
- package/dist/github/fetch.js +137 -82
- package/dist/github/ghsa.js +217 -151
- package/dist/github/refs-cache.js +54 -43
- package/dist/github/refs-graphql.js +97 -89
- package/dist/github/refs-rest.js +70 -101
- package/dist/github/refs.js +105 -64
- package/dist/github/token.js +96 -48
- package/dist/github/types.js +1 -17
- package/dist/globs/_internal.js +73 -82
- package/dist/globs/defaults.js +40 -59
- package/dist/globs/match.js +93 -77
- package/dist/globs/matcher.js +104 -92
- package/dist/globs/stream.js +43 -55
- package/dist/globs/types.js +1 -17
- package/dist/http-request/_internal.js +11 -38
- package/dist/http-request/browser-fetch.js +19 -29
- package/dist/http-request/browser.js +188 -206
- package/dist/http-request/checksums.js +101 -65
- package/dist/http-request/download-types.js +1 -17
- package/dist/http-request/download.js +195 -196
- package/dist/http-request/errors.js +39 -47
- package/dist/http-request/headers.js +95 -80
- package/dist/http-request/http-request.js +10 -35
- package/dist/http-request/node.js +71 -97
- package/dist/http-request/request-attempt.js +232 -285
- package/dist/http-request/request-types.js +1 -17
- package/dist/http-request/request.js +106 -108
- package/dist/http-request/response-reader.js +47 -51
- package/dist/http-request/response-types.js +22 -38
- package/dist/http-request/user-agent.js +73 -55
- package/dist/integrity.js +105 -106
- package/dist/ipc/_internal.js +34 -48
- package/dist/ipc/directory.js +55 -63
- package/dist/ipc/paths.js +52 -45
- package/dist/ipc/types.js +1 -17
- package/dist/ipc/write.js +81 -74
- package/dist/ipc-cli/get.js +29 -56
- package/dist/ipc-cli/types.js +1 -17
- package/dist/json/edit.js +182 -242
- package/dist/json/format.js +202 -103
- package/dist/json/parse.js +206 -109
- package/dist/json/types.js +1 -17
- package/dist/links/create.js +93 -60
- package/dist/links/types.js +1 -17
- package/dist/logger/_internal.js +109 -73
- package/dist/logger/browser.js +45 -56
- package/dist/logger/colors.js +31 -49
- package/dist/logger/console.js +89 -112
- package/dist/logger/default.js +19 -33
- package/dist/logger/logger.js +5 -29
- package/dist/logger/node.js +793 -854
- package/dist/logger/symbols-builder.js +54 -56
- package/dist/logger/symbols.js +135 -118
- package/dist/logger/types.js +1 -17
- package/dist/memo/_internal.js +39 -49
- package/dist/memo/async.js +133 -117
- package/dist/memo/clear.js +25 -34
- package/dist/memo/decorator.js +43 -37
- package/dist/memo/memoize.js +97 -88
- package/dist/memo/once.js +42 -41
- package/dist/memo/types.js +1 -17
- package/dist/memo/weak.js +45 -41
- package/dist/node/async-hooks.js +9 -30
- package/dist/node/child-process.js +9 -30
- package/dist/node/crypto.js +9 -30
- package/dist/node/events.js +9 -30
- package/dist/node/fs-promises.js +9 -30
- package/dist/node/fs.js +9 -30
- package/dist/node/http.js +9 -30
- package/dist/node/https.js +9 -30
- package/dist/node/module.js +20 -34
- package/dist/node/os.js +9 -30
- package/dist/node/path.js +9 -30
- package/dist/node/timers-promises.js +9 -30
- package/dist/node/url.js +9 -30
- package/dist/node/util.js +9 -30
- package/dist/objects/getters.js +185 -126
- package/dist/objects/inspect.js +85 -52
- package/dist/objects/mutate.js +96 -76
- package/dist/objects/predicates.js +112 -59
- package/dist/objects/sort.js +120 -76
- package/dist/objects/types.js +1 -17
- package/dist/packages/edit-class.js +198 -265
- package/dist/packages/edit.js +79 -86
- package/dist/packages/exports.js +146 -157
- package/dist/packages/isolation.js +159 -209
- package/dist/packages/licenses.js +207 -189
- package/dist/packages/manifest.js +134 -172
- package/dist/packages/normalize.js +91 -102
- package/dist/packages/operations.d.ts +2 -0
- package/dist/packages/operations.js +283 -254
- package/dist/packages/provenance.js +195 -245
- package/dist/packages/specs.js +94 -84
- package/dist/packages/types.js +1 -17
- package/dist/packages/validation.js +49 -50
- package/dist/paths/_internal.js +82 -86
- package/dist/paths/conversion.js +112 -65
- package/dist/paths/dirnames.js +17 -42
- package/dist/paths/exts.js +23 -54
- package/dist/paths/filenames.js +21 -50
- package/dist/paths/globs.js +15 -38
- package/dist/paths/normalize.js +215 -236
- package/dist/paths/packages.js +34 -49
- package/dist/paths/predicates.js +184 -106
- package/dist/paths/resolve.js +146 -128
- package/dist/paths/rewire.js +108 -72
- package/dist/paths/socket.js +252 -132
- package/dist/paths/walk.js +55 -60
- package/dist/perf/_internal.js +10 -28
- package/dist/perf/enabled.js +21 -30
- package/dist/perf/metrics.js +81 -67
- package/dist/perf/report.js +79 -80
- package/dist/perf/timer.js +180 -126
- package/dist/perf/types.js +1 -17
- package/dist/pkg-ext/data.js +29 -82
- package/dist/pkg-ext/types.js +1 -17
- package/dist/primordials/array.js +120 -198
- package/dist/primordials/buffer.js +28 -51
- package/dist/primordials/date.js +26 -51
- package/dist/primordials/error.js +33 -59
- package/dist/primordials/function.js +21 -41
- package/dist/primordials/globals.js +25 -48
- package/dist/primordials/json.js +14 -30
- package/dist/primordials/map-set.js +88 -152
- package/dist/primordials/math.js +59 -116
- package/dist/primordials/number.js +41 -76
- package/dist/primordials/object.js +56 -116
- package/dist/primordials/promise.js +28 -52
- package/dist/primordials/reflect.js +24 -52
- package/dist/primordials/regexp.js +25 -47
- package/dist/primordials/string.js +114 -167
- package/dist/primordials/symbol.js +40 -72
- package/dist/primordials/uncurry.js +38 -55
- package/dist/primordials/url.js +27 -66
- package/dist/process/_internal.js +7 -32
- package/dist/process/abort.js +29 -35
- package/dist/process/lock-instance.js +26 -30
- package/dist/process/lock-manager.js +279 -307
- package/dist/process/lock-types.js +1 -17
- package/dist/process/spawn/_internal.js +43 -55
- package/dist/process/spawn/child.js +172 -211
- package/dist/process/spawn/errors.js +116 -113
- package/dist/process/spawn/stdio.js +51 -35
- package/dist/process/spawn/types.js +1 -17
- package/dist/process/transient.js +49 -66
- package/dist/promises/_internal.js +31 -34
- package/dist/promises/iterate.js +238 -102
- package/dist/promises/options.js +123 -101
- package/dist/promises/queue.js +115 -136
- package/dist/promises/resolvers.js +77 -46
- package/dist/promises/retry.js +156 -101
- package/dist/promises/types.js +1 -17
- package/dist/regexps/escape.js +32 -30
- package/dist/regexps/hex.js +16 -33
- package/dist/regexps/spec.js +53 -81
- package/dist/releases/github-archives.js +127 -118
- package/dist/releases/github-asset-url.js +162 -146
- package/dist/releases/github-assets.js +37 -49
- package/dist/releases/github-auth.js +32 -48
- package/dist/releases/github-downloads.js +118 -138
- package/dist/releases/github-listing.js +175 -145
- package/dist/releases/github-retry-config.js +41 -47
- package/dist/releases/github-types.js +1 -17
- package/dist/releases/socket-btm.js +273 -192
- package/dist/schema/parse.js +35 -36
- package/dist/schema/types.js +1 -17
- package/dist/schema/validate.js +118 -99
- package/dist/sea/detect.js +57 -52
- package/dist/secrets/_internal.js +86 -67
- package/dist/secrets/find.js +96 -77
- package/dist/secrets/keychain.js +315 -309
- package/dist/secrets/linux.js +133 -135
- package/dist/secrets/macos.js +151 -147
- package/dist/secrets/rc.js +182 -181
- package/dist/secrets/socket-api-token.js +28 -43
- package/dist/secrets/types.js +1 -17
- package/dist/secrets/windows.js +184 -242
- package/dist/shadow/skip.js +51 -70
- package/dist/shadow/types.js +1 -17
- package/dist/shell/parse.d.ts +26 -0
- package/dist/shell/parse.js +35 -0
- package/dist/shell/quote.d.ts +19 -0
- package/dist/shell/quote.js +30 -0
- package/dist/smol/detect.js +67 -43
- package/dist/smol/http.js +33 -37
- package/dist/smol/https.js +31 -37
- package/dist/smol/manifest.js +33 -37
- package/dist/smol/path.js +33 -37
- package/dist/smol/primordial.js +35 -37
- package/dist/smol/purl.js +34 -37
- package/dist/smol/versions.js +31 -37
- package/dist/smol/vfs.js +46 -38
- package/dist/sorts/_internal.js +14 -40
- package/dist/sorts/natural.js +57 -64
- package/dist/sorts/semver.js +33 -43
- package/dist/sorts/strings.js +24 -30
- package/dist/sorts/types.js +1 -17
- package/dist/spinner/default.js +72 -63
- package/dist/spinner/format.js +86 -71
- package/dist/spinner/spinner.js +749 -797
- package/dist/spinner/types.js +1 -17
- package/dist/spinner/with.js +193 -137
- package/dist/ssri/convert.js +64 -47
- package/dist/ssri/parse.js +38 -37
- package/dist/ssri/validate.js +51 -34
- package/dist/stdio/_internal.js +50 -46
- package/dist/stdio/clear.js +208 -86
- package/dist/stdio/divider.js +170 -97
- package/dist/stdio/footer.js +116 -110
- package/dist/stdio/header.js +117 -90
- package/dist/stdio/progress.js +189 -218
- package/dist/stdio/prompts.js +244 -168
- package/dist/stdio/stderr.js +173 -78
- package/dist/stdio/stdout.js +177 -94
- package/dist/streams/parallel.js +58 -50
- package/dist/streams/transform.js +36 -45
- package/dist/strings/format.js +145 -63
- package/dist/strings/predicates.js +56 -34
- package/dist/strings/search.js +52 -42
- package/dist/strings/transform.js +113 -72
- package/dist/strings/types.js +1 -17
- package/dist/strings/width.js +89 -82
- package/dist/tables/bordered.js +81 -81
- package/dist/tables/padding.js +36 -46
- package/dist/tables/simple.js +62 -70
- package/dist/tables/types.js +1 -17
- package/dist/temporal/instant.js +72 -81
- package/dist/temporal/now.js +40 -31
- package/dist/temporal/slots.js +42 -36
- package/dist/temporal/system.js +36 -36
- package/dist/temporal/temporal.js +11 -41
- package/dist/themes/context.js +131 -69
- package/dist/themes/resolve.js +207 -132
- package/dist/themes/themes.js +225 -194
- package/dist/themes/types.js +1 -17
- package/dist/url/parse.js +48 -51
- package/dist/url/predicates.js +24 -31
- package/dist/url/search-params.js +133 -101
- package/dist/url/types.js +1 -17
- package/dist/versions/_internal.js +31 -33
- package/dist/versions/compare.js +80 -58
- package/dist/versions/modify.js +41 -39
- package/dist/versions/parse.js +88 -64
- package/dist/versions/range.js +58 -41
- package/dist/versions/types.js +1 -17
- package/dist/words/article.js +22 -30
- package/dist/words/capitalize.js +25 -34
- package/dist/words/pluralize.js +23 -31
- package/dist/words/types.js +1 -17
- package/package.json +17 -5
|
@@ -2,1030 +2,443 @@ const { ObjectDefineProperty: _p_ObjectDefineProperty } = require('../../primord
|
|
|
2
2
|
"use strict";
|
|
3
3
|
/**
|
|
4
4
|
* Bundled from @yarnpkg/extensions
|
|
5
|
-
* This is a zero-dependency bundle created by
|
|
5
|
+
* This is a zero-dependency bundle created by rolldown.
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
9
|
-
var __commonJS = (cb, mod) => function __require() {
|
|
10
|
-
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
11
|
-
};
|
|
7
|
+
'use strict';
|
|
12
8
|
|
|
13
|
-
|
|
14
|
-
var
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
exports2.packageExtensions = void 0;
|
|
19
|
-
var optionalPeerDep = {
|
|
20
|
-
optional: true
|
|
21
|
-
};
|
|
22
|
-
exports2.packageExtensions = [
|
|
23
|
-
// https://github.com/tailwindlabs/tailwindcss-aspect-ratio/pull/14
|
|
24
|
-
[`@tailwindcss/aspect-ratio@<0.2.1`, {
|
|
25
|
-
peerDependencies: {
|
|
26
|
-
[`tailwindcss`]: `^2.0.2`
|
|
27
|
-
}
|
|
28
|
-
}],
|
|
29
|
-
// https://github.com/tailwindlabs/tailwindcss-line-clamp/pull/6
|
|
30
|
-
[`@tailwindcss/line-clamp@<0.2.1`, {
|
|
31
|
-
peerDependencies: {
|
|
32
|
-
[`tailwindcss`]: `^2.0.2`
|
|
33
|
-
}
|
|
34
|
-
}],
|
|
35
|
-
// https://github.com/FullHuman/purgecss/commit/24116f394dc54c913e4fd254cf2d78c03db971f2
|
|
36
|
-
[`@fullhuman/postcss-purgecss@3.1.3 || 3.1.3-alpha.0`, {
|
|
37
|
-
peerDependencies: {
|
|
38
|
-
[`postcss`]: `^8.0.0`
|
|
39
|
-
}
|
|
40
|
-
}],
|
|
41
|
-
// https://github.com/SamVerschueren/stream-to-observable/pull/5
|
|
42
|
-
[`@samverschueren/stream-to-observable@<0.3.1`, {
|
|
43
|
-
peerDependenciesMeta: {
|
|
44
|
-
[`rxjs`]: optionalPeerDep,
|
|
45
|
-
[`zenObservable`]: optionalPeerDep
|
|
46
|
-
}
|
|
47
|
-
}],
|
|
48
|
-
// https://github.com/sindresorhus/any-observable/pull/25
|
|
49
|
-
[`any-observable@<0.5.1`, {
|
|
50
|
-
peerDependenciesMeta: {
|
|
51
|
-
[`rxjs`]: optionalPeerDep,
|
|
52
|
-
[`zenObservable`]: optionalPeerDep
|
|
53
|
-
}
|
|
54
|
-
}],
|
|
55
|
-
// https://github.com/keymetrics/pm2-io-agent/pull/125
|
|
56
|
-
[`@pm2/agent@<1.0.4`, {
|
|
57
|
-
dependencies: {
|
|
58
|
-
[`debug`]: `*`
|
|
59
|
-
}
|
|
60
|
-
}],
|
|
61
|
-
// https://github.com/visionmedia/debug/pull/727
|
|
62
|
-
[`debug@<4.2.0`, {
|
|
63
|
-
peerDependenciesMeta: {
|
|
64
|
-
[`supports-color`]: optionalPeerDep
|
|
65
|
-
}
|
|
66
|
-
}],
|
|
67
|
-
// https://github.com/sindresorhus/got/pull/1125
|
|
68
|
-
[`got@<11`, {
|
|
69
|
-
dependencies: {
|
|
70
|
-
[`@types/responselike`]: `^1.0.0`,
|
|
71
|
-
[`@types/keyv`]: `^3.1.1`
|
|
72
|
-
}
|
|
73
|
-
}],
|
|
74
|
-
// https://github.com/szmarczak/cacheable-lookup/pull/12
|
|
75
|
-
[`cacheable-lookup@<4.1.2`, {
|
|
76
|
-
dependencies: {
|
|
77
|
-
[`@types/keyv`]: `^3.1.1`
|
|
78
|
-
}
|
|
79
|
-
}],
|
|
80
|
-
// https://github.com/prisma-labs/http-link-dataloader/pull/22
|
|
81
|
-
[`http-link-dataloader@*`, {
|
|
82
|
-
peerDependencies: {
|
|
83
|
-
[`graphql`]: `^0.13.1 || ^14.0.0`
|
|
84
|
-
}
|
|
85
|
-
}],
|
|
86
|
-
// https://github.com/theia-ide/typescript-language-server/issues/144
|
|
87
|
-
[`typescript-language-server@*`, {
|
|
88
|
-
dependencies: {
|
|
89
|
-
[`vscode-jsonrpc`]: `^5.0.1`,
|
|
90
|
-
[`vscode-languageserver-protocol`]: `^3.15.0`
|
|
91
|
-
}
|
|
92
|
-
}],
|
|
93
|
-
// https://github.com/gucong3000/postcss-syntax/pull/46
|
|
94
|
-
[`postcss-syntax@*`, {
|
|
95
|
-
peerDependenciesMeta: {
|
|
96
|
-
[`postcss-html`]: optionalPeerDep,
|
|
97
|
-
[`postcss-jsx`]: optionalPeerDep,
|
|
98
|
-
[`postcss-less`]: optionalPeerDep,
|
|
99
|
-
[`postcss-markdown`]: optionalPeerDep,
|
|
100
|
-
[`postcss-scss`]: optionalPeerDep
|
|
101
|
-
}
|
|
102
|
-
}],
|
|
103
|
-
// https://github.com/cssinjs/jss/pull/1315
|
|
104
|
-
[`jss-plugin-rule-value-function@<=10.1.1`, {
|
|
105
|
-
dependencies: {
|
|
106
|
-
[`tiny-warning`]: `^1.0.2`
|
|
107
|
-
}
|
|
108
|
-
}],
|
|
109
|
-
// https://github.com/vadimdemedes/ink-select-input/pull/26
|
|
110
|
-
[`ink-select-input@<4.1.0`, {
|
|
111
|
-
peerDependencies: {
|
|
112
|
-
react: `^16.8.2`
|
|
113
|
-
}
|
|
114
|
-
}],
|
|
115
|
-
// https://github.com/xz64/license-webpack-plugin/pull/100
|
|
116
|
-
[`license-webpack-plugin@<2.3.18`, {
|
|
117
|
-
peerDependenciesMeta: {
|
|
118
|
-
[`webpack`]: optionalPeerDep
|
|
119
|
-
}
|
|
120
|
-
}],
|
|
121
|
-
// https://github.com/snowpackjs/snowpack/issues/3158
|
|
122
|
-
[`snowpack@>=3.3.0`, {
|
|
123
|
-
dependencies: {
|
|
124
|
-
[`node-gyp`]: `^7.1.0`
|
|
125
|
-
}
|
|
126
|
-
}],
|
|
127
|
-
// https://github.com/iarna/promise-inflight/pull/4
|
|
128
|
-
[`promise-inflight@*`, {
|
|
129
|
-
peerDependenciesMeta: {
|
|
130
|
-
[`bluebird`]: optionalPeerDep
|
|
131
|
-
}
|
|
132
|
-
}],
|
|
133
|
-
// https://github.com/casesandberg/reactcss/pull/153
|
|
134
|
-
[`reactcss@*`, {
|
|
135
|
-
peerDependencies: {
|
|
136
|
-
react: `*`
|
|
137
|
-
}
|
|
138
|
-
}],
|
|
139
|
-
// https://github.com/casesandberg/react-color/pull/746
|
|
140
|
-
[`react-color@<=2.19.0`, {
|
|
141
|
-
peerDependencies: {
|
|
142
|
-
react: `*`
|
|
143
|
-
}
|
|
144
|
-
}],
|
|
145
|
-
// https://github.com/angeloocana/gatsby-plugin-i18n/pull/145
|
|
146
|
-
[`gatsby-plugin-i18n@*`, {
|
|
147
|
-
dependencies: {
|
|
148
|
-
ramda: `^0.24.1`
|
|
149
|
-
}
|
|
150
|
-
}],
|
|
151
|
-
// https://github.com/3rd-Eden/useragent/pull/159
|
|
152
|
-
[`useragent@^2.0.0`, {
|
|
153
|
-
dependencies: {
|
|
154
|
-
request: `^2.88.0`,
|
|
155
|
-
yamlparser: `0.0.x`,
|
|
156
|
-
semver: `5.5.x`
|
|
157
|
-
}
|
|
158
|
-
}],
|
|
159
|
-
// https://github.com/apollographql/apollo-tooling/pull/2049
|
|
160
|
-
[`@apollographql/apollo-tools@<=0.5.2`, {
|
|
161
|
-
peerDependencies: {
|
|
162
|
-
graphql: `^14.2.1 || ^15.0.0`
|
|
163
|
-
}
|
|
164
|
-
}],
|
|
165
|
-
// https://github.com/mbrn/material-table/pull/2374
|
|
166
|
-
[`material-table@^2.0.0`, {
|
|
167
|
-
dependencies: {
|
|
168
|
-
"@babel/runtime": `^7.11.2`
|
|
169
|
-
}
|
|
170
|
-
}],
|
|
171
|
-
// https://github.com/babel/babel/pull/11118
|
|
172
|
-
[`@babel/parser@*`, {
|
|
173
|
-
dependencies: {
|
|
174
|
-
"@babel/types": `^7.8.3`
|
|
175
|
-
}
|
|
176
|
-
}],
|
|
177
|
-
// https://github.com/TypeStrong/fork-ts-checker-webpack-plugin/pull/507
|
|
178
|
-
[`fork-ts-checker-webpack-plugin@<=6.3.4`, {
|
|
179
|
-
peerDependencies: {
|
|
180
|
-
eslint: `>= 6`,
|
|
181
|
-
typescript: `>= 2.7`,
|
|
182
|
-
webpack: `>= 4`,
|
|
183
|
-
"vue-template-compiler": `*`
|
|
184
|
-
},
|
|
185
|
-
peerDependenciesMeta: {
|
|
186
|
-
eslint: optionalPeerDep,
|
|
187
|
-
"vue-template-compiler": optionalPeerDep
|
|
188
|
-
}
|
|
189
|
-
}],
|
|
190
|
-
// https://github.com/react-component/animate/pull/116
|
|
191
|
-
[`rc-animate@<=3.1.1`, {
|
|
192
|
-
peerDependencies: {
|
|
193
|
-
react: `>=16.9.0`,
|
|
194
|
-
"react-dom": `>=16.9.0`
|
|
195
|
-
}
|
|
196
|
-
}],
|
|
197
|
-
// https://github.com/react-bootstrap-table/react-bootstrap-table2/pull/1491
|
|
198
|
-
[`react-bootstrap-table2-paginator@*`, {
|
|
199
|
-
dependencies: {
|
|
200
|
-
classnames: `^2.2.6`
|
|
201
|
-
}
|
|
202
|
-
}],
|
|
203
|
-
// https://github.com/STRML/react-draggable/pull/525
|
|
204
|
-
[`react-draggable@<=4.4.3`, {
|
|
205
|
-
peerDependencies: {
|
|
206
|
-
react: `>= 16.3.0`,
|
|
207
|
-
"react-dom": `>= 16.3.0`
|
|
208
|
-
}
|
|
209
|
-
}],
|
|
210
|
-
// https://github.com/jaydenseric/apollo-upload-client/commit/336691cec6698661ab404649e4e8435750255803
|
|
211
|
-
[`apollo-upload-client@<14`, {
|
|
212
|
-
peerDependencies: {
|
|
213
|
-
graphql: `14 - 15`
|
|
214
|
-
}
|
|
215
|
-
}],
|
|
216
|
-
// https://github.com/algolia/react-instantsearch/pull/2975
|
|
217
|
-
[`react-instantsearch-core@<=6.7.0`, {
|
|
218
|
-
peerDependencies: {
|
|
219
|
-
algoliasearch: `>= 3.1 < 5`
|
|
220
|
-
}
|
|
221
|
-
}],
|
|
222
|
-
// https://github.com/algolia/react-instantsearch/pull/2975
|
|
223
|
-
[`react-instantsearch-dom@<=6.7.0`, {
|
|
224
|
-
dependencies: {
|
|
225
|
-
"react-fast-compare": `^3.0.0`
|
|
226
|
-
}
|
|
227
|
-
}],
|
|
228
|
-
// https://github.com/websockets/ws/pull/1626
|
|
229
|
-
[`ws@<7.2.1`, {
|
|
230
|
-
peerDependencies: {
|
|
231
|
-
bufferutil: `^4.0.1`,
|
|
232
|
-
"utf-8-validate": `^5.0.2`
|
|
233
|
-
},
|
|
234
|
-
peerDependenciesMeta: {
|
|
235
|
-
bufferutil: optionalPeerDep,
|
|
236
|
-
"utf-8-validate": optionalPeerDep
|
|
237
|
-
}
|
|
238
|
-
}],
|
|
239
|
-
// https://github.com/tajo/react-portal/pull/233
|
|
240
|
-
// https://github.com/tajo/react-portal/commit/daf85792c2fce25a3481b6f9132ef61a110f3d78
|
|
241
|
-
[`react-portal@<4.2.2`, {
|
|
242
|
-
peerDependencies: {
|
|
243
|
-
"react-dom": `^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0`
|
|
244
|
-
}
|
|
245
|
-
}],
|
|
246
|
-
// https://github.com/facebook/create-react-app/pull/9872
|
|
247
|
-
[`react-scripts@<=4.0.1`, {
|
|
248
|
-
peerDependencies: {
|
|
249
|
-
[`react`]: `*`
|
|
250
|
-
}
|
|
251
|
-
}],
|
|
252
|
-
// https://github.com/DevExpress/testcafe/pull/5872
|
|
253
|
-
[`testcafe@<=1.10.1`, {
|
|
254
|
-
dependencies: {
|
|
255
|
-
"@babel/plugin-transform-for-of": `^7.12.1`,
|
|
256
|
-
"@babel/runtime": `^7.12.5`
|
|
257
|
-
}
|
|
258
|
-
}],
|
|
259
|
-
// https://github.com/DevExpress/testcafe-legacy-api/pull/51
|
|
260
|
-
[`testcafe-legacy-api@<=4.2.0`, {
|
|
261
|
-
dependencies: {
|
|
262
|
-
"testcafe-hammerhead": `^17.0.1`,
|
|
263
|
-
"read-file-relative": `^1.2.0`
|
|
264
|
-
}
|
|
265
|
-
}],
|
|
266
|
-
// https://github.com/googleapis/nodejs-firestore/pull/1425
|
|
267
|
-
[`@google-cloud/firestore@<=4.9.3`, {
|
|
268
|
-
dependencies: {
|
|
269
|
-
protobufjs: `^6.8.6`
|
|
270
|
-
}
|
|
271
|
-
}],
|
|
272
|
-
// https://github.com/thinhle-agilityio/gatsby-source-apiserver/pull/58
|
|
273
|
-
[`gatsby-source-apiserver@*`, {
|
|
274
|
-
dependencies: {
|
|
275
|
-
[`babel-polyfill`]: `^6.26.0`
|
|
276
|
-
}
|
|
277
|
-
}],
|
|
278
|
-
// https://github.com/webpack/webpack-cli/pull/2097
|
|
279
|
-
[`@webpack-cli/package-utils@<=1.0.1-alpha.4`, {
|
|
280
|
-
dependencies: {
|
|
281
|
-
[`cross-spawn`]: `^7.0.3`
|
|
282
|
-
}
|
|
283
|
-
}],
|
|
284
|
-
// https://github.com/gatsbyjs/gatsby/pull/20156
|
|
285
|
-
[`gatsby-remark-prismjs@<3.3.28`, {
|
|
286
|
-
dependencies: {
|
|
287
|
-
[`lodash`]: `^4`
|
|
288
|
-
}
|
|
289
|
-
}],
|
|
290
|
-
// https://github.com/Creatiwity/gatsby-plugin-favicon/pull/65
|
|
291
|
-
[`gatsby-plugin-favicon@*`, {
|
|
292
|
-
peerDependencies: {
|
|
293
|
-
[`webpack`]: `*`
|
|
294
|
-
}
|
|
295
|
-
}],
|
|
296
|
-
// https://github.com/gatsbyjs/gatsby/pull/28759
|
|
297
|
-
[`gatsby-plugin-sharp@<=4.6.0-next.3`, {
|
|
298
|
-
dependencies: {
|
|
299
|
-
[`debug`]: `^4.3.1`
|
|
300
|
-
}
|
|
301
|
-
}],
|
|
302
|
-
// https://github.com/gatsbyjs/gatsby/pull/28759
|
|
303
|
-
[`gatsby-react-router-scroll@<=5.6.0-next.0`, {
|
|
304
|
-
dependencies: {
|
|
305
|
-
[`prop-types`]: `^15.7.2`
|
|
306
|
-
}
|
|
307
|
-
}],
|
|
308
|
-
// https://github.com/rebassjs/rebass/pull/934
|
|
309
|
-
[`@rebass/forms@*`, {
|
|
310
|
-
dependencies: {
|
|
311
|
-
[`@styled-system/should-forward-prop`]: `^5.0.0`
|
|
312
|
-
},
|
|
313
|
-
peerDependencies: {
|
|
314
|
-
react: `^16.8.6`
|
|
315
|
-
}
|
|
316
|
-
}],
|
|
317
|
-
// https://github.com/rebassjs/rebass/pull/934
|
|
318
|
-
[`rebass@*`, {
|
|
319
|
-
peerDependencies: {
|
|
320
|
-
react: `^16.8.6`
|
|
321
|
-
}
|
|
322
|
-
}],
|
|
323
|
-
// https://github.com/ant-design/react-slick/pull/95
|
|
324
|
-
[`@ant-design/react-slick@<=0.28.3`, {
|
|
325
|
-
peerDependencies: {
|
|
326
|
-
react: `>=16.0.0`
|
|
327
|
-
}
|
|
328
|
-
}],
|
|
329
|
-
// https://github.com/mqttjs/MQTT.js/pull/1266
|
|
330
|
-
[`mqtt@<4.2.7`, {
|
|
331
|
-
dependencies: {
|
|
332
|
-
duplexify: `^4.1.1`
|
|
333
|
-
}
|
|
334
|
-
}],
|
|
335
|
-
// https://github.com/vuetifyjs/vue-cli-plugins/pull/155
|
|
336
|
-
[`vue-cli-plugin-vuetify@<=2.0.3`, {
|
|
337
|
-
dependencies: {
|
|
338
|
-
semver: `^6.3.0`
|
|
339
|
-
},
|
|
340
|
-
peerDependenciesMeta: {
|
|
341
|
-
"sass-loader": optionalPeerDep,
|
|
342
|
-
"vuetify-loader": optionalPeerDep
|
|
343
|
-
}
|
|
344
|
-
}],
|
|
345
|
-
// https://github.com/vuetifyjs/vue-cli-plugins/pull/152
|
|
346
|
-
[`vue-cli-plugin-vuetify@<=2.0.4`, {
|
|
347
|
-
dependencies: {
|
|
348
|
-
"null-loader": `^3.0.0`
|
|
349
|
-
}
|
|
350
|
-
}],
|
|
351
|
-
// https://github.com/vuetifyjs/vue-cli-plugins/pull/324
|
|
352
|
-
[`vue-cli-plugin-vuetify@>=2.4.3`, {
|
|
353
|
-
peerDependencies: {
|
|
354
|
-
vue: `*`
|
|
355
|
-
}
|
|
356
|
-
}],
|
|
357
|
-
// https://github.com/vuetifyjs/vue-cli-plugins/pull/155
|
|
358
|
-
[`@vuetify/cli-plugin-utils@<=0.0.4`, {
|
|
359
|
-
dependencies: {
|
|
360
|
-
semver: `^6.3.0`
|
|
361
|
-
},
|
|
362
|
-
peerDependenciesMeta: {
|
|
363
|
-
"sass-loader": optionalPeerDep
|
|
364
|
-
}
|
|
365
|
-
}],
|
|
366
|
-
// https://github.com/vuejs/vue-cli/pull/6060/files#diff-857cfb6f3e9a676b0de4a00c2c712297068c038a7d5820c133b8d6aa8cceb146R28
|
|
367
|
-
[`@vue/cli-plugin-typescript@<=5.0.0-alpha.0`, {
|
|
368
|
-
dependencies: {
|
|
369
|
-
"babel-loader": `^8.1.0`
|
|
370
|
-
}
|
|
371
|
-
}],
|
|
372
|
-
// https://github.com/vuejs/vue-cli/pull/6456
|
|
373
|
-
[`@vue/cli-plugin-typescript@<=5.0.0-beta.0`, {
|
|
374
|
-
dependencies: {
|
|
375
|
-
"@babel/core": `^7.12.16`
|
|
376
|
-
},
|
|
377
|
-
peerDependencies: {
|
|
378
|
-
"vue-template-compiler": `^2.0.0`
|
|
379
|
-
},
|
|
380
|
-
peerDependenciesMeta: {
|
|
381
|
-
"vue-template-compiler": optionalPeerDep
|
|
382
|
-
}
|
|
383
|
-
}],
|
|
384
|
-
// https://github.com/apache/cordova-ios/pull/1105
|
|
385
|
-
[`cordova-ios@<=6.3.0`, {
|
|
386
|
-
dependencies: {
|
|
387
|
-
underscore: `^1.9.2`
|
|
388
|
-
}
|
|
389
|
-
}],
|
|
390
|
-
// https://github.com/apache/cordova-lib/pull/871
|
|
391
|
-
[`cordova-lib@<=10.0.1`, {
|
|
392
|
-
dependencies: {
|
|
393
|
-
underscore: `^1.9.2`
|
|
394
|
-
}
|
|
395
|
-
}],
|
|
396
|
-
// https://github.com/creationix/git-node-fs/pull/8
|
|
397
|
-
[`git-node-fs@*`, {
|
|
398
|
-
peerDependencies: {
|
|
399
|
-
"js-git": `^0.7.8`
|
|
400
|
-
},
|
|
401
|
-
peerDependenciesMeta: {
|
|
402
|
-
"js-git": optionalPeerDep
|
|
403
|
-
}
|
|
404
|
-
}],
|
|
405
|
-
// https://github.com/tj/consolidate.js/pull/339
|
|
406
|
-
// https://github.com/tj/consolidate.js/commit/6068c17fd443897e540d69b1786db07a0d64b53b
|
|
407
|
-
[`consolidate@<0.16.0`, {
|
|
408
|
-
peerDependencies: {
|
|
409
|
-
mustache: `^3.0.0`
|
|
410
|
-
},
|
|
411
|
-
peerDependenciesMeta: {
|
|
412
|
-
mustache: optionalPeerDep
|
|
413
|
-
}
|
|
414
|
-
}],
|
|
415
|
-
// https://github.com/tj/consolidate.js/pull/339
|
|
416
|
-
[`consolidate@<=0.16.0`, {
|
|
417
|
-
peerDependencies: {
|
|
418
|
-
velocityjs: `^2.0.1`,
|
|
419
|
-
tinyliquid: `^0.2.34`,
|
|
420
|
-
"liquid-node": `^3.0.1`,
|
|
421
|
-
jade: `^1.11.0`,
|
|
422
|
-
"then-jade": `*`,
|
|
423
|
-
dust: `^0.3.0`,
|
|
424
|
-
"dustjs-helpers": `^1.7.4`,
|
|
425
|
-
"dustjs-linkedin": `^2.7.5`,
|
|
426
|
-
swig: `^1.4.2`,
|
|
427
|
-
"swig-templates": `^2.0.3`,
|
|
428
|
-
"razor-tmpl": `^1.3.1`,
|
|
429
|
-
atpl: `>=0.7.6`,
|
|
430
|
-
liquor: `^0.0.5`,
|
|
431
|
-
twig: `^1.15.2`,
|
|
432
|
-
ejs: `^3.1.5`,
|
|
433
|
-
eco: `^1.1.0-rc-3`,
|
|
434
|
-
jazz: `^0.0.18`,
|
|
435
|
-
jqtpl: `~1.1.0`,
|
|
436
|
-
hamljs: `^0.6.2`,
|
|
437
|
-
hamlet: `^0.3.3`,
|
|
438
|
-
whiskers: `^0.4.0`,
|
|
439
|
-
"haml-coffee": `^1.14.1`,
|
|
440
|
-
"hogan.js": `^3.0.2`,
|
|
441
|
-
templayed: `>=0.2.3`,
|
|
442
|
-
handlebars: `^4.7.6`,
|
|
443
|
-
underscore: `^1.11.0`,
|
|
444
|
-
lodash: `^4.17.20`,
|
|
445
|
-
pug: `^3.0.0`,
|
|
446
|
-
"then-pug": `*`,
|
|
447
|
-
qejs: `^3.0.5`,
|
|
448
|
-
walrus: `^0.10.1`,
|
|
449
|
-
mustache: `^4.0.1`,
|
|
450
|
-
just: `^0.1.8`,
|
|
451
|
-
ect: `^0.5.9`,
|
|
452
|
-
mote: `^0.2.0`,
|
|
453
|
-
toffee: `^0.3.6`,
|
|
454
|
-
dot: `^1.1.3`,
|
|
455
|
-
"bracket-template": `^1.1.5`,
|
|
456
|
-
ractive: `^1.3.12`,
|
|
457
|
-
nunjucks: `^3.2.2`,
|
|
458
|
-
htmling: `^0.0.8`,
|
|
459
|
-
"babel-core": `^6.26.3`,
|
|
460
|
-
plates: `~0.4.11`,
|
|
461
|
-
"react-dom": `^16.13.1`,
|
|
462
|
-
react: `^16.13.1`,
|
|
463
|
-
"arc-templates": `^0.5.3`,
|
|
464
|
-
vash: `^0.13.0`,
|
|
465
|
-
slm: `^2.0.0`,
|
|
466
|
-
marko: `^3.14.4`,
|
|
467
|
-
teacup: `^2.0.0`,
|
|
468
|
-
"coffee-script": `^1.12.7`,
|
|
469
|
-
squirrelly: `^5.1.0`,
|
|
470
|
-
twing: `^5.0.2`
|
|
471
|
-
},
|
|
472
|
-
peerDependenciesMeta: {
|
|
473
|
-
velocityjs: optionalPeerDep,
|
|
474
|
-
tinyliquid: optionalPeerDep,
|
|
475
|
-
"liquid-node": optionalPeerDep,
|
|
476
|
-
jade: optionalPeerDep,
|
|
477
|
-
"then-jade": optionalPeerDep,
|
|
478
|
-
dust: optionalPeerDep,
|
|
479
|
-
"dustjs-helpers": optionalPeerDep,
|
|
480
|
-
"dustjs-linkedin": optionalPeerDep,
|
|
481
|
-
swig: optionalPeerDep,
|
|
482
|
-
"swig-templates": optionalPeerDep,
|
|
483
|
-
"razor-tmpl": optionalPeerDep,
|
|
484
|
-
atpl: optionalPeerDep,
|
|
485
|
-
liquor: optionalPeerDep,
|
|
486
|
-
twig: optionalPeerDep,
|
|
487
|
-
ejs: optionalPeerDep,
|
|
488
|
-
eco: optionalPeerDep,
|
|
489
|
-
jazz: optionalPeerDep,
|
|
490
|
-
jqtpl: optionalPeerDep,
|
|
491
|
-
hamljs: optionalPeerDep,
|
|
492
|
-
hamlet: optionalPeerDep,
|
|
493
|
-
whiskers: optionalPeerDep,
|
|
494
|
-
"haml-coffee": optionalPeerDep,
|
|
495
|
-
"hogan.js": optionalPeerDep,
|
|
496
|
-
templayed: optionalPeerDep,
|
|
497
|
-
handlebars: optionalPeerDep,
|
|
498
|
-
underscore: optionalPeerDep,
|
|
499
|
-
lodash: optionalPeerDep,
|
|
500
|
-
pug: optionalPeerDep,
|
|
501
|
-
"then-pug": optionalPeerDep,
|
|
502
|
-
qejs: optionalPeerDep,
|
|
503
|
-
walrus: optionalPeerDep,
|
|
504
|
-
mustache: optionalPeerDep,
|
|
505
|
-
just: optionalPeerDep,
|
|
506
|
-
ect: optionalPeerDep,
|
|
507
|
-
mote: optionalPeerDep,
|
|
508
|
-
toffee: optionalPeerDep,
|
|
509
|
-
dot: optionalPeerDep,
|
|
510
|
-
"bracket-template": optionalPeerDep,
|
|
511
|
-
ractive: optionalPeerDep,
|
|
512
|
-
nunjucks: optionalPeerDep,
|
|
513
|
-
htmling: optionalPeerDep,
|
|
514
|
-
"babel-core": optionalPeerDep,
|
|
515
|
-
plates: optionalPeerDep,
|
|
516
|
-
"react-dom": optionalPeerDep,
|
|
517
|
-
react: optionalPeerDep,
|
|
518
|
-
"arc-templates": optionalPeerDep,
|
|
519
|
-
vash: optionalPeerDep,
|
|
520
|
-
slm: optionalPeerDep,
|
|
521
|
-
marko: optionalPeerDep,
|
|
522
|
-
teacup: optionalPeerDep,
|
|
523
|
-
"coffee-script": optionalPeerDep,
|
|
524
|
-
squirrelly: optionalPeerDep,
|
|
525
|
-
twing: optionalPeerDep
|
|
526
|
-
}
|
|
527
|
-
}],
|
|
528
|
-
// https://github.com/vuejs/vue-loader/pull/1853
|
|
529
|
-
// https://github.com/vuejs/vue-loader/commit/089473af97077b8e14b3feff48d32d2733ad792c
|
|
530
|
-
[`vue-loader@<=16.3.3`, {
|
|
531
|
-
peerDependencies: {
|
|
532
|
-
"@vue/compiler-sfc": `^3.0.8`,
|
|
533
|
-
webpack: `^4.1.0 || ^5.0.0-0`
|
|
534
|
-
},
|
|
535
|
-
peerDependenciesMeta: {
|
|
536
|
-
"@vue/compiler-sfc": optionalPeerDep
|
|
537
|
-
}
|
|
538
|
-
}],
|
|
539
|
-
// https://github.com/vuejs/vue-loader/pull/1944
|
|
540
|
-
[`vue-loader@^16.7.0`, {
|
|
541
|
-
peerDependencies: {
|
|
542
|
-
"@vue/compiler-sfc": `^3.0.8`,
|
|
543
|
-
vue: `^3.2.13`
|
|
544
|
-
},
|
|
545
|
-
peerDependenciesMeta: {
|
|
546
|
-
"@vue/compiler-sfc": optionalPeerDep,
|
|
547
|
-
vue: optionalPeerDep
|
|
548
|
-
}
|
|
549
|
-
}],
|
|
550
|
-
// https://github.com/salesforce-ux/scss-parser/pull/43
|
|
551
|
-
[`scss-parser@<=1.0.5`, {
|
|
552
|
-
dependencies: {
|
|
553
|
-
lodash: `^4.17.21`
|
|
554
|
-
}
|
|
555
|
-
}],
|
|
556
|
-
// https://github.com/salesforce-ux/query-ast/pull/25
|
|
557
|
-
[`query-ast@<1.0.5`, {
|
|
558
|
-
dependencies: {
|
|
559
|
-
lodash: `^4.17.21`
|
|
560
|
-
}
|
|
561
|
-
}],
|
|
562
|
-
// https://github.com/reduxjs/redux-thunk/pull/251
|
|
563
|
-
[`redux-thunk@<=2.3.0`, {
|
|
564
|
-
peerDependencies: {
|
|
565
|
-
redux: `^4.0.0`
|
|
566
|
-
}
|
|
567
|
-
}],
|
|
568
|
-
// https://github.com/snowpackjs/snowpack/pull/3556
|
|
569
|
-
[`skypack@<=0.3.2`, {
|
|
570
|
-
dependencies: {
|
|
571
|
-
tar: `^6.1.0`
|
|
572
|
-
}
|
|
573
|
-
}],
|
|
574
|
-
// https://github.com/npm/metavuln-calculator/pull/8
|
|
575
|
-
[`@npmcli/metavuln-calculator@<2.0.0`, {
|
|
576
|
-
dependencies: {
|
|
577
|
-
"json-parse-even-better-errors": `^2.3.1`
|
|
578
|
-
}
|
|
579
|
-
}],
|
|
580
|
-
// https://github.com/npm/bin-links/pull/17
|
|
581
|
-
[`bin-links@<2.3.0`, {
|
|
582
|
-
dependencies: {
|
|
583
|
-
"mkdirp-infer-owner": `^1.0.2`
|
|
584
|
-
}
|
|
585
|
-
}],
|
|
586
|
-
// https://github.com/snowpackjs/rollup-plugin-polyfill-node/pull/30
|
|
587
|
-
[`rollup-plugin-polyfill-node@<=0.8.0`, {
|
|
588
|
-
peerDependencies: {
|
|
589
|
-
rollup: `^1.20.0 || ^2.0.0`
|
|
590
|
-
}
|
|
591
|
-
}],
|
|
592
|
-
// https://github.com/snowpackjs/snowpack/pull/3673
|
|
593
|
-
[`snowpack@<3.8.6`, {
|
|
594
|
-
dependencies: {
|
|
595
|
-
"magic-string": `^0.25.7`
|
|
596
|
-
}
|
|
597
|
-
}],
|
|
598
|
-
// https://github.com/elm-community/elm-webpack-loader/pull/202
|
|
599
|
-
[`elm-webpack-loader@*`, {
|
|
600
|
-
dependencies: {
|
|
601
|
-
temp: `^0.9.4`
|
|
602
|
-
}
|
|
603
|
-
}],
|
|
604
|
-
// https://github.com/winstonjs/winston-transport/pull/58
|
|
605
|
-
[`winston-transport@<=4.4.0`, {
|
|
606
|
-
dependencies: {
|
|
607
|
-
logform: `^2.2.0`
|
|
608
|
-
}
|
|
609
|
-
}],
|
|
610
|
-
// https://github.com/vire/jest-vue-preprocessor/pull/177
|
|
611
|
-
[`jest-vue-preprocessor@*`, {
|
|
612
|
-
dependencies: {
|
|
613
|
-
"@babel/core": `7.8.7`,
|
|
614
|
-
"@babel/template": `7.8.6`
|
|
615
|
-
},
|
|
616
|
-
peerDependencies: {
|
|
617
|
-
pug: `^2.0.4`
|
|
618
|
-
},
|
|
619
|
-
peerDependenciesMeta: {
|
|
620
|
-
pug: optionalPeerDep
|
|
621
|
-
}
|
|
622
|
-
}],
|
|
623
|
-
// https://github.com/rt2zz/redux-persist/pull/1336
|
|
624
|
-
[`redux-persist@*`, {
|
|
625
|
-
peerDependencies: {
|
|
626
|
-
react: `>=16`
|
|
627
|
-
},
|
|
628
|
-
peerDependenciesMeta: {
|
|
629
|
-
react: optionalPeerDep
|
|
630
|
-
}
|
|
631
|
-
}],
|
|
632
|
-
// https://github.com/paixaop/node-sodium/pull/159
|
|
633
|
-
[`sodium@>=3`, {
|
|
634
|
-
dependencies: {
|
|
635
|
-
"node-gyp": `^3.8.0`
|
|
636
|
-
}
|
|
637
|
-
}],
|
|
638
|
-
// https://github.com/gajus/babel-plugin-graphql-tag/pull/63
|
|
639
|
-
[`babel-plugin-graphql-tag@<=3.1.0`, {
|
|
640
|
-
peerDependencies: {
|
|
641
|
-
graphql: `^14.0.0 || ^15.0.0`
|
|
642
|
-
}
|
|
643
|
-
}],
|
|
644
|
-
// https://github.com/microsoft/playwright/pull/8501
|
|
645
|
-
[`@playwright/test@<=1.14.1`, {
|
|
646
|
-
dependencies: {
|
|
647
|
-
"jest-matcher-utils": `^26.4.2`
|
|
648
|
-
}
|
|
649
|
-
}],
|
|
650
|
-
// https://github.com/gatsbyjs/gatsby/pull/32954
|
|
651
|
-
...[
|
|
652
|
-
`babel-plugin-remove-graphql-queries@<3.14.0-next.1`,
|
|
653
|
-
`babel-preset-gatsby-package@<1.14.0-next.1`,
|
|
654
|
-
`create-gatsby@<1.14.0-next.1`,
|
|
655
|
-
`gatsby-admin@<0.24.0-next.1`,
|
|
656
|
-
`gatsby-cli@<3.14.0-next.1`,
|
|
657
|
-
`gatsby-core-utils@<2.14.0-next.1`,
|
|
658
|
-
`gatsby-design-tokens@<3.14.0-next.1`,
|
|
659
|
-
`gatsby-legacy-polyfills@<1.14.0-next.1`,
|
|
660
|
-
`gatsby-plugin-benchmark-reporting@<1.14.0-next.1`,
|
|
661
|
-
`gatsby-plugin-graphql-config@<0.23.0-next.1`,
|
|
662
|
-
`gatsby-plugin-image@<1.14.0-next.1`,
|
|
663
|
-
`gatsby-plugin-mdx@<2.14.0-next.1`,
|
|
664
|
-
`gatsby-plugin-netlify-cms@<5.14.0-next.1`,
|
|
665
|
-
`gatsby-plugin-no-sourcemaps@<3.14.0-next.1`,
|
|
666
|
-
`gatsby-plugin-page-creator@<3.14.0-next.1`,
|
|
667
|
-
`gatsby-plugin-preact@<5.14.0-next.1`,
|
|
668
|
-
`gatsby-plugin-preload-fonts@<2.14.0-next.1`,
|
|
669
|
-
`gatsby-plugin-schema-snapshot@<2.14.0-next.1`,
|
|
670
|
-
`gatsby-plugin-styletron@<6.14.0-next.1`,
|
|
671
|
-
`gatsby-plugin-subfont@<3.14.0-next.1`,
|
|
672
|
-
`gatsby-plugin-utils@<1.14.0-next.1`,
|
|
673
|
-
`gatsby-recipes@<0.25.0-next.1`,
|
|
674
|
-
`gatsby-source-shopify@<5.6.0-next.1`,
|
|
675
|
-
`gatsby-source-wikipedia@<3.14.0-next.1`,
|
|
676
|
-
`gatsby-transformer-screenshot@<3.14.0-next.1`,
|
|
677
|
-
`gatsby-worker@<0.5.0-next.1`
|
|
678
|
-
].map((descriptorString) => [
|
|
679
|
-
descriptorString,
|
|
680
|
-
{
|
|
681
|
-
dependencies: {
|
|
682
|
-
"@babel/runtime": `^7.14.8`
|
|
683
|
-
}
|
|
684
|
-
}
|
|
685
|
-
]),
|
|
686
|
-
// Originally fixed in https://github.com/gatsbyjs/gatsby/pull/31837 (https://github.com/gatsbyjs/gatsby/commit/6378692d7ec1eb902520720e27aca97e8eb42c21)
|
|
687
|
-
// Version updated and added in https://github.com/gatsbyjs/gatsby/pull/32928
|
|
688
|
-
[`gatsby-core-utils@<2.14.0-next.1`, {
|
|
689
|
-
dependencies: {
|
|
690
|
-
got: `8.3.2`
|
|
691
|
-
}
|
|
692
|
-
}],
|
|
693
|
-
// https://github.com/gatsbyjs/gatsby/pull/32861
|
|
694
|
-
[`gatsby-plugin-gatsby-cloud@<=3.1.0-next.0`, {
|
|
695
|
-
dependencies: {
|
|
696
|
-
"gatsby-core-utils": `^2.13.0-next.0`
|
|
697
|
-
}
|
|
698
|
-
}],
|
|
699
|
-
// https://github.com/gatsbyjs/gatsby/pull/31837
|
|
700
|
-
[`gatsby-plugin-gatsby-cloud@<=3.2.0-next.1`, {
|
|
701
|
-
peerDependencies: {
|
|
702
|
-
webpack: `*`
|
|
703
|
-
}
|
|
704
|
-
}],
|
|
705
|
-
// https://github.com/gatsbyjs/gatsby/pull/31837
|
|
706
|
-
[`babel-plugin-remove-graphql-queries@<=3.14.0-next.1`, {
|
|
707
|
-
dependencies: {
|
|
708
|
-
"gatsby-core-utils": `^2.8.0-next.1`
|
|
709
|
-
}
|
|
710
|
-
}],
|
|
711
|
-
// https://github.com/gatsbyjs/gatsby/pull/32861
|
|
712
|
-
[`gatsby-plugin-netlify@3.13.0-next.1`, {
|
|
713
|
-
dependencies: {
|
|
714
|
-
"gatsby-core-utils": `^2.13.0-next.0`
|
|
715
|
-
}
|
|
716
|
-
}],
|
|
717
|
-
// https://github.com/paul-soporan/clipanion-v3-codemod/pull/1
|
|
718
|
-
[`clipanion-v3-codemod@<=0.2.0`, {
|
|
719
|
-
peerDependencies: {
|
|
720
|
-
jscodeshift: `^0.11.0`
|
|
721
|
-
}
|
|
722
|
-
}],
|
|
723
|
-
// https://github.com/FormidableLabs/react-live/pull/180
|
|
724
|
-
[`react-live@*`, {
|
|
725
|
-
peerDependencies: {
|
|
726
|
-
"react-dom": `*`,
|
|
727
|
-
react: `*`
|
|
728
|
-
}
|
|
729
|
-
}],
|
|
730
|
-
// https://github.com/webpack/webpack/pull/11190
|
|
731
|
-
[`webpack@<4.44.1`, {
|
|
732
|
-
peerDependenciesMeta: {
|
|
733
|
-
"webpack-cli": optionalPeerDep,
|
|
734
|
-
"webpack-command": optionalPeerDep
|
|
735
|
-
}
|
|
736
|
-
}],
|
|
737
|
-
// https://github.com/webpack/webpack/pull/11189
|
|
738
|
-
[`webpack@<5.0.0-beta.23`, {
|
|
739
|
-
peerDependenciesMeta: {
|
|
740
|
-
"webpack-cli": optionalPeerDep
|
|
741
|
-
}
|
|
742
|
-
}],
|
|
743
|
-
// https://github.com/webpack/webpack-dev-server/pull/2396
|
|
744
|
-
[`webpack-dev-server@<3.10.2`, {
|
|
745
|
-
peerDependenciesMeta: {
|
|
746
|
-
"webpack-cli": optionalPeerDep
|
|
747
|
-
}
|
|
748
|
-
}],
|
|
749
|
-
// https://github.com/slorber/responsive-loader/pull/1/files
|
|
750
|
-
[`@docusaurus/responsive-loader@<1.5.0`, {
|
|
751
|
-
peerDependenciesMeta: {
|
|
752
|
-
sharp: optionalPeerDep,
|
|
753
|
-
jimp: optionalPeerDep
|
|
754
|
-
}
|
|
755
|
-
}],
|
|
756
|
-
// https://github.com/import-js/eslint-plugin-import/pull/2283
|
|
757
|
-
[`eslint-module-utils@*`, {
|
|
758
|
-
peerDependenciesMeta: {
|
|
759
|
-
"eslint-import-resolver-node": optionalPeerDep,
|
|
760
|
-
"eslint-import-resolver-typescript": optionalPeerDep,
|
|
761
|
-
"eslint-import-resolver-webpack": optionalPeerDep,
|
|
762
|
-
"@typescript-eslint/parser": optionalPeerDep
|
|
763
|
-
}
|
|
764
|
-
}],
|
|
765
|
-
// https://github.com/import-js/eslint-plugin-import/pull/2283
|
|
766
|
-
[`eslint-plugin-import@*`, {
|
|
767
|
-
peerDependenciesMeta: {
|
|
768
|
-
"@typescript-eslint/parser": optionalPeerDep
|
|
769
|
-
}
|
|
770
|
-
}],
|
|
771
|
-
// https://github.com/GoogleChromeLabs/critters/pull/91
|
|
772
|
-
[`critters-webpack-plugin@<3.0.2`, {
|
|
773
|
-
peerDependenciesMeta: {
|
|
774
|
-
"html-webpack-plugin": optionalPeerDep
|
|
775
|
-
}
|
|
776
|
-
}],
|
|
777
|
-
// https://github.com/terser/terser/commit/05b23eeb682d732484ad51b19bf528258fd5dc2a
|
|
778
|
-
[`terser@<=5.10.0`, {
|
|
779
|
-
dependencies: {
|
|
780
|
-
acorn: `^8.5.0`
|
|
781
|
-
}
|
|
782
|
-
}],
|
|
783
|
-
// https://github.com/facebook/create-react-app/pull/12364
|
|
784
|
-
[`babel-preset-react-app@10.0.x <10.0.2`, {
|
|
785
|
-
dependencies: {
|
|
786
|
-
"@babel/plugin-proposal-private-property-in-object": `^7.16.7`
|
|
787
|
-
}
|
|
788
|
-
}],
|
|
789
|
-
// https://github.com/facebook/create-react-app/pull/11751
|
|
790
|
-
[`eslint-config-react-app@*`, {
|
|
791
|
-
peerDependenciesMeta: {
|
|
792
|
-
typescript: optionalPeerDep
|
|
793
|
-
}
|
|
794
|
-
}],
|
|
795
|
-
// https://github.com/vuejs/eslint-config-typescript/pull/39
|
|
796
|
-
[`@vue/eslint-config-typescript@<11.0.0`, {
|
|
797
|
-
peerDependenciesMeta: {
|
|
798
|
-
typescript: optionalPeerDep
|
|
799
|
-
}
|
|
800
|
-
}],
|
|
801
|
-
// https://github.com/antfu/unplugin-vue2-script-setup/pull/100
|
|
802
|
-
[`unplugin-vue2-script-setup@<0.9.1`, {
|
|
803
|
-
peerDependencies: {
|
|
804
|
-
"@vue/composition-api": `^1.4.3`,
|
|
805
|
-
"@vue/runtime-dom": `^3.2.26`
|
|
806
|
-
}
|
|
807
|
-
}],
|
|
808
|
-
// https://github.com/cypress-io/snapshot/pull/159
|
|
809
|
-
[`@cypress/snapshot@*`, {
|
|
810
|
-
dependencies: {
|
|
811
|
-
debug: `^3.2.7`
|
|
812
|
-
}
|
|
813
|
-
}],
|
|
814
|
-
// https://github.com/wemaintain/auto-relay/pull/95
|
|
815
|
-
[`auto-relay@<=0.14.0`, {
|
|
816
|
-
peerDependencies: {
|
|
817
|
-
"reflect-metadata": `^0.1.13`
|
|
818
|
-
}
|
|
819
|
-
}],
|
|
820
|
-
// https://github.com/JuniorTour/vue-template-babel-compiler/pull/40
|
|
821
|
-
[`vue-template-babel-compiler@<1.2.0`, {
|
|
822
|
-
peerDependencies: {
|
|
823
|
-
[`vue-template-compiler`]: `^2.6.0`
|
|
824
|
-
}
|
|
825
|
-
}],
|
|
826
|
-
// https://github.com/parcel-bundler/parcel/pull/7977
|
|
827
|
-
[`@parcel/transformer-image@<2.5.0`, {
|
|
828
|
-
peerDependencies: {
|
|
829
|
-
[`@parcel/core`]: `*`
|
|
830
|
-
}
|
|
831
|
-
}],
|
|
832
|
-
// https://github.com/parcel-bundler/parcel/pull/7977
|
|
833
|
-
[`@parcel/transformer-js@<2.5.0`, {
|
|
834
|
-
peerDependencies: {
|
|
835
|
-
[`@parcel/core`]: `*`
|
|
836
|
-
}
|
|
837
|
-
}],
|
|
838
|
-
// Experiment to unblock the usage of Parcel in E2E tests
|
|
839
|
-
[`parcel@*`, {
|
|
840
|
-
peerDependenciesMeta: {
|
|
841
|
-
[`@parcel/core`]: optionalPeerDep
|
|
842
|
-
}
|
|
843
|
-
}],
|
|
844
|
-
// This doesn't have an upstream PR.
|
|
845
|
-
// The auto types causes two instances of eslint-config-react-app,
|
|
846
|
-
// one that has access to @types/eslint and one that doesn't.
|
|
847
|
-
// ESLint doesn't allow the same plugin to show up multiple times so it throws.
|
|
848
|
-
// As a temporary workaround until create-react-app fixes their ESLint
|
|
849
|
-
// setup we make eslint a peer dependency /w fallback.
|
|
850
|
-
// TODO: Lock the range when create-react-app fixes their ESLint setup
|
|
851
|
-
[`react-scripts@*`, {
|
|
852
|
-
peerDependencies: {
|
|
853
|
-
[`eslint`]: `*`
|
|
854
|
-
}
|
|
855
|
-
}],
|
|
856
|
-
// https://github.com/focus-trap/focus-trap-react/pull/691
|
|
857
|
-
[`focus-trap-react@^8.0.0`, {
|
|
858
|
-
dependencies: {
|
|
859
|
-
tabbable: `^5.3.2`
|
|
860
|
-
}
|
|
861
|
-
}],
|
|
862
|
-
// https://github.com/bokuweb/react-rnd/pull/864
|
|
863
|
-
[`react-rnd@<10.3.7`, {
|
|
864
|
-
peerDependencies: {
|
|
865
|
-
react: `>=16.3.0`,
|
|
866
|
-
"react-dom": `>=16.3.0`
|
|
867
|
-
}
|
|
868
|
-
}],
|
|
869
|
-
// https://github.com/jdesboeufs/connect-mongo/pull/458
|
|
870
|
-
// https://github.com/jdesboeufs/connect-mongo/commit/f462a2598d1dea0722a89e1f101937d427462458
|
|
871
|
-
[`connect-mongo@<5.0.0`, {
|
|
872
|
-
peerDependencies: {
|
|
873
|
-
"express-session": `^1.17.1`
|
|
874
|
-
}
|
|
875
|
-
}],
|
|
876
|
-
// https://github.com/intlify/vue-i18n-next/commit/ed932b9e575807dc27c30573b280ad8ae48e98c9
|
|
877
|
-
[`vue-i18n@<9`, {
|
|
878
|
-
peerDependencies: {
|
|
879
|
-
vue: `^2`
|
|
880
|
-
}
|
|
881
|
-
}],
|
|
882
|
-
// https://github.com/vuejs/router/commit/c2305083a8fcb42d1bb1f3f0d92f09930124b530
|
|
883
|
-
[`vue-router@<4`, {
|
|
884
|
-
peerDependencies: {
|
|
885
|
-
vue: `^2`
|
|
886
|
-
}
|
|
887
|
-
}],
|
|
888
|
-
// https://github.com/unifiedjs/unified/pull/146
|
|
889
|
-
[`unified@<10`, {
|
|
890
|
-
dependencies: {
|
|
891
|
-
"@types/unist": `^2.0.0`
|
|
892
|
-
}
|
|
893
|
-
}],
|
|
894
|
-
// https://github.com/ntkme/react-github-btn/pull/23
|
|
895
|
-
[`react-github-btn@<=1.3.0`, {
|
|
896
|
-
peerDependencies: {
|
|
897
|
-
react: `>=16.3.0`
|
|
898
|
-
}
|
|
899
|
-
}],
|
|
900
|
-
// There are two candidates upstream, clean this up when either is merged.
|
|
901
|
-
// - https://github.com/facebook/create-react-app/pull/11526
|
|
902
|
-
// - https://github.com/facebook/create-react-app/pull/11716
|
|
903
|
-
[`react-dev-utils@*`, {
|
|
904
|
-
peerDependencies: {
|
|
905
|
-
typescript: `>=2.7`,
|
|
906
|
-
webpack: `>=4`
|
|
907
|
-
},
|
|
908
|
-
peerDependenciesMeta: {
|
|
909
|
-
typescript: optionalPeerDep
|
|
910
|
-
}
|
|
911
|
-
}],
|
|
912
|
-
// https://github.com/asyncapi/asyncapi-react/pull/614
|
|
913
|
-
[`@asyncapi/react-component@<=1.0.0-next.39`, {
|
|
914
|
-
peerDependencies: {
|
|
915
|
-
react: `>=16.8.0`,
|
|
916
|
-
"react-dom": `>=16.8.0`
|
|
917
|
-
}
|
|
918
|
-
}],
|
|
919
|
-
// https://github.com/xojs/xo/pull/678
|
|
920
|
-
[`xo@*`, {
|
|
921
|
-
peerDependencies: {
|
|
922
|
-
webpack: `>=1.11.0`
|
|
923
|
-
},
|
|
924
|
-
peerDependenciesMeta: {
|
|
925
|
-
webpack: optionalPeerDep
|
|
926
|
-
}
|
|
927
|
-
}],
|
|
928
|
-
// https://github.com/gatsbyjs/gatsby/pull/36230
|
|
929
|
-
[`babel-plugin-remove-graphql-queries@<=4.20.0-next.0`, {
|
|
930
|
-
dependencies: {
|
|
931
|
-
"@babel/types": `^7.15.4`
|
|
932
|
-
}
|
|
933
|
-
}],
|
|
934
|
-
// https://github.com/gatsbyjs/gatsby/pull/36230
|
|
935
|
-
[`gatsby-plugin-page-creator@<=4.20.0-next.1`, {
|
|
936
|
-
dependencies: {
|
|
937
|
-
"fs-extra": `^10.1.0`
|
|
938
|
-
}
|
|
939
|
-
}],
|
|
940
|
-
// https://github.com/gatsbyjs/gatsby/pull/36230
|
|
941
|
-
[`gatsby-plugin-utils@<=3.14.0-next.1`, {
|
|
942
|
-
dependencies: {
|
|
943
|
-
fastq: `^1.13.0`
|
|
944
|
-
},
|
|
945
|
-
peerDependencies: {
|
|
946
|
-
graphql: `^15.0.0`
|
|
947
|
-
}
|
|
948
|
-
}],
|
|
949
|
-
// https://github.com/gatsbyjs/gatsby/pull/33724
|
|
950
|
-
[`gatsby-plugin-mdx@<3.1.0-next.1`, {
|
|
951
|
-
dependencies: {
|
|
952
|
-
mkdirp: `^1.0.4`
|
|
953
|
-
}
|
|
954
|
-
}],
|
|
955
|
-
// https://github.com/gatsbyjs/gatsby/pull/33170
|
|
956
|
-
[`gatsby-plugin-mdx@^2`, {
|
|
957
|
-
peerDependencies: {
|
|
958
|
-
gatsby: `^3.0.0-next`
|
|
959
|
-
}
|
|
960
|
-
}],
|
|
961
|
-
// https://github.com/thecodrr/fdir/pull/76
|
|
962
|
-
// https://github.com/thecodrr/fdir/pull/80
|
|
963
|
-
[`fdir@<=5.2.0`, {
|
|
964
|
-
peerDependencies: {
|
|
965
|
-
picomatch: `2.x`
|
|
966
|
-
},
|
|
967
|
-
peerDependenciesMeta: {
|
|
968
|
-
picomatch: optionalPeerDep
|
|
969
|
-
}
|
|
970
|
-
}],
|
|
971
|
-
// https://github.com/leonardfactory/babel-plugin-transform-typescript-metadata/pull/61
|
|
972
|
-
[`babel-plugin-transform-typescript-metadata@<=0.3.2`, {
|
|
973
|
-
peerDependencies: {
|
|
974
|
-
"@babel/core": `^7`,
|
|
975
|
-
"@babel/traverse": `^7`
|
|
976
|
-
},
|
|
977
|
-
peerDependenciesMeta: {
|
|
978
|
-
"@babel/traverse": optionalPeerDep
|
|
979
|
-
}
|
|
980
|
-
}],
|
|
981
|
-
// https://github.com/graphql-compose/graphql-compose/pull/398
|
|
982
|
-
[`graphql-compose@>=9.0.10`, {
|
|
983
|
-
peerDependencies: {
|
|
984
|
-
graphql: `^14.2.0 || ^15.0.0 || ^16.0.0`
|
|
985
|
-
}
|
|
986
|
-
}],
|
|
987
|
-
// https://github.com/vuetifyjs/vuetify-loader/commit/6634db3218dcc706db1c5c9e90f338ce76e9fff3
|
|
988
|
-
[`vite-plugin-vuetify@<=1.0.2`, {
|
|
989
|
-
peerDependencies: {
|
|
990
|
-
vue: `^3.0.0`
|
|
991
|
-
}
|
|
992
|
-
}],
|
|
993
|
-
// https://github.com/vuetifyjs/vuetify-loader/commit/6634db3218dcc706db1c5c9e90f338ce76e9fff3
|
|
994
|
-
[`webpack-plugin-vuetify@<=2.0.1`, {
|
|
995
|
-
peerDependencies: {
|
|
996
|
-
vue: `^3.2.6`
|
|
997
|
-
}
|
|
998
|
-
}],
|
|
999
|
-
// https://github.com/pzmosquito/eslint-import-resolver-vite/pull/22
|
|
1000
|
-
// https://github.com/pzmosquito/eslint-import-resolver-vite/commit/97b8111b03d3f8c66506732ac965e906568e8dc1#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519
|
|
1001
|
-
[`eslint-import-resolver-vite@<2.0.1`, {
|
|
1002
|
-
dependencies: {
|
|
1003
|
-
debug: `^4.3.4`,
|
|
1004
|
-
resolve: `^1.22.8`
|
|
1005
|
-
}
|
|
1006
|
-
}],
|
|
1007
|
-
// https://github.com/iamhosseindhv/notistack/issues/561
|
|
1008
|
-
// https://github.com/iamhosseindhv/notistack/pull/562
|
|
1009
|
-
[`notistack@^3.0.0`, {
|
|
1010
|
-
dependencies: {
|
|
1011
|
-
csstype: `^3.0.10`
|
|
1012
|
-
}
|
|
1013
|
-
}],
|
|
1014
|
-
// https://github.com/fastify/fastify-type-provider-typebox/issues/114
|
|
1015
|
-
// https://github.com/fastify/fastify-type-provider-typebox/pull/165
|
|
1016
|
-
[`@fastify/type-provider-typebox@^5.0.0`, {
|
|
1017
|
-
peerDependencies: {
|
|
1018
|
-
fastify: `^5.0.0`
|
|
1019
|
-
}
|
|
1020
|
-
}],
|
|
1021
|
-
[`@fastify/type-provider-typebox@^4.0.0`, {
|
|
1022
|
-
peerDependencies: {
|
|
1023
|
-
fastify: `^4.0.0`
|
|
1024
|
-
}
|
|
1025
|
-
}]
|
|
1026
|
-
];
|
|
1027
|
-
}
|
|
9
|
+
//#region \0rolldown/runtime.js
|
|
10
|
+
var __defProp = Object.defineProperty;
|
|
11
|
+
var __name = (target, value) => __defProp(target, "name", {
|
|
12
|
+
value,
|
|
13
|
+
configurable: true
|
|
1028
14
|
});
|
|
15
|
+
var __commonJSMin = (cb, mod) => () => (mod || (cb((mod = { exports: {} }).exports, mod), cb = null), mod.exports);
|
|
16
|
+
|
|
17
|
+
//#endregion
|
|
1029
18
|
|
|
1030
|
-
|
|
19
|
+
//#region node_modules/.pnpm/@yarnpkg+extensions@2.0.6_@yarnpkg+core@4.5.0_typanion@3.14.0_/node_modules/@yarnpkg/extensions/lib/index.js
|
|
20
|
+
var require_lib = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
21
|
+
_p_ObjectDefineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
exports.packageExtensions = void 0;
|
|
23
|
+
const optionalPeerDep = { optional: true };
|
|
24
|
+
exports.packageExtensions = [
|
|
25
|
+
[`@tailwindcss/aspect-ratio@<0.2.1`, { peerDependencies: { [`tailwindcss`]: `^2.0.2` } }],
|
|
26
|
+
[`@tailwindcss/line-clamp@<0.2.1`, { peerDependencies: { [`tailwindcss`]: `^2.0.2` } }],
|
|
27
|
+
[`@fullhuman/postcss-purgecss@3.1.3 || 3.1.3-alpha.0`, { peerDependencies: { [`postcss`]: `^8.0.0` } }],
|
|
28
|
+
[`@samverschueren/stream-to-observable@<0.3.1`, { peerDependenciesMeta: {
|
|
29
|
+
[`rxjs`]: optionalPeerDep,
|
|
30
|
+
[`zenObservable`]: optionalPeerDep
|
|
31
|
+
} }],
|
|
32
|
+
[`any-observable@<0.5.1`, { peerDependenciesMeta: {
|
|
33
|
+
[`rxjs`]: optionalPeerDep,
|
|
34
|
+
[`zenObservable`]: optionalPeerDep
|
|
35
|
+
} }],
|
|
36
|
+
[`@pm2/agent@<1.0.4`, { dependencies: { [`debug`]: `*` } }],
|
|
37
|
+
[`debug@<4.2.0`, { peerDependenciesMeta: { [`supports-color`]: optionalPeerDep } }],
|
|
38
|
+
[`got@<11`, { dependencies: {
|
|
39
|
+
[`@types/responselike`]: `^1.0.0`,
|
|
40
|
+
[`@types/keyv`]: `^3.1.1`
|
|
41
|
+
} }],
|
|
42
|
+
[`cacheable-lookup@<4.1.2`, { dependencies: { [`@types/keyv`]: `^3.1.1` } }],
|
|
43
|
+
[`http-link-dataloader@*`, { peerDependencies: { [`graphql`]: `^0.13.1 || ^14.0.0` } }],
|
|
44
|
+
[`typescript-language-server@*`, { dependencies: {
|
|
45
|
+
[`vscode-jsonrpc`]: `^5.0.1`,
|
|
46
|
+
[`vscode-languageserver-protocol`]: `^3.15.0`
|
|
47
|
+
} }],
|
|
48
|
+
[`postcss-syntax@*`, { peerDependenciesMeta: {
|
|
49
|
+
[`postcss-html`]: optionalPeerDep,
|
|
50
|
+
[`postcss-jsx`]: optionalPeerDep,
|
|
51
|
+
[`postcss-less`]: optionalPeerDep,
|
|
52
|
+
[`postcss-markdown`]: optionalPeerDep,
|
|
53
|
+
[`postcss-scss`]: optionalPeerDep
|
|
54
|
+
} }],
|
|
55
|
+
[`jss-plugin-rule-value-function@<=10.1.1`, { dependencies: { [`tiny-warning`]: `^1.0.2` } }],
|
|
56
|
+
[`ink-select-input@<4.1.0`, { peerDependencies: { react: `^16.8.2` } }],
|
|
57
|
+
[`license-webpack-plugin@<2.3.18`, { peerDependenciesMeta: { [`webpack`]: optionalPeerDep } }],
|
|
58
|
+
[`snowpack@>=3.3.0`, { dependencies: { [`node-gyp`]: `^7.1.0` } }],
|
|
59
|
+
[`promise-inflight@*`, { peerDependenciesMeta: { [`bluebird`]: optionalPeerDep } }],
|
|
60
|
+
[`reactcss@*`, { peerDependencies: { react: `*` } }],
|
|
61
|
+
[`react-color@<=2.19.0`, { peerDependencies: { react: `*` } }],
|
|
62
|
+
[`gatsby-plugin-i18n@*`, { dependencies: { ramda: `^0.24.1` } }],
|
|
63
|
+
[`useragent@^2.0.0`, { dependencies: {
|
|
64
|
+
request: `^2.88.0`,
|
|
65
|
+
yamlparser: `0.0.x`,
|
|
66
|
+
semver: `5.5.x`
|
|
67
|
+
} }],
|
|
68
|
+
[`@apollographql/apollo-tools@<=0.5.2`, { peerDependencies: { graphql: `^14.2.1 || ^15.0.0` } }],
|
|
69
|
+
[`material-table@^2.0.0`, { dependencies: { "@babel/runtime": `^7.11.2` } }],
|
|
70
|
+
[`@babel/parser@*`, { dependencies: { "@babel/types": `^7.8.3` } }],
|
|
71
|
+
[`fork-ts-checker-webpack-plugin@<=6.3.4`, {
|
|
72
|
+
peerDependencies: {
|
|
73
|
+
eslint: `>= 6`,
|
|
74
|
+
typescript: `>= 2.7`,
|
|
75
|
+
webpack: `>= 4`,
|
|
76
|
+
"vue-template-compiler": `*`
|
|
77
|
+
},
|
|
78
|
+
peerDependenciesMeta: {
|
|
79
|
+
eslint: optionalPeerDep,
|
|
80
|
+
"vue-template-compiler": optionalPeerDep
|
|
81
|
+
}
|
|
82
|
+
}],
|
|
83
|
+
[`rc-animate@<=3.1.1`, { peerDependencies: {
|
|
84
|
+
react: `>=16.9.0`,
|
|
85
|
+
"react-dom": `>=16.9.0`
|
|
86
|
+
} }],
|
|
87
|
+
[`react-bootstrap-table2-paginator@*`, { dependencies: { classnames: `^2.2.6` } }],
|
|
88
|
+
[`react-draggable@<=4.4.3`, { peerDependencies: {
|
|
89
|
+
react: `>= 16.3.0`,
|
|
90
|
+
"react-dom": `>= 16.3.0`
|
|
91
|
+
} }],
|
|
92
|
+
[`apollo-upload-client@<14`, { peerDependencies: { graphql: `14 - 15` } }],
|
|
93
|
+
[`react-instantsearch-core@<=6.7.0`, { peerDependencies: { algoliasearch: `>= 3.1 < 5` } }],
|
|
94
|
+
[`react-instantsearch-dom@<=6.7.0`, { dependencies: { "react-fast-compare": `^3.0.0` } }],
|
|
95
|
+
[`ws@<7.2.1`, {
|
|
96
|
+
peerDependencies: {
|
|
97
|
+
bufferutil: `^4.0.1`,
|
|
98
|
+
"utf-8-validate": `^5.0.2`
|
|
99
|
+
},
|
|
100
|
+
peerDependenciesMeta: {
|
|
101
|
+
bufferutil: optionalPeerDep,
|
|
102
|
+
"utf-8-validate": optionalPeerDep
|
|
103
|
+
}
|
|
104
|
+
}],
|
|
105
|
+
[`react-portal@<4.2.2`, { peerDependencies: { "react-dom": `^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0` } }],
|
|
106
|
+
[`react-scripts@<=4.0.1`, { peerDependencies: { [`react`]: `*` } }],
|
|
107
|
+
[`testcafe@<=1.10.1`, { dependencies: {
|
|
108
|
+
"@babel/plugin-transform-for-of": `^7.12.1`,
|
|
109
|
+
"@babel/runtime": `^7.12.5`
|
|
110
|
+
} }],
|
|
111
|
+
[`testcafe-legacy-api@<=4.2.0`, { dependencies: {
|
|
112
|
+
"testcafe-hammerhead": `^17.0.1`,
|
|
113
|
+
"read-file-relative": `^1.2.0`
|
|
114
|
+
} }],
|
|
115
|
+
[`@google-cloud/firestore@<=4.9.3`, { dependencies: { protobufjs: `^6.8.6` } }],
|
|
116
|
+
[`gatsby-source-apiserver@*`, { dependencies: { [`babel-polyfill`]: `^6.26.0` } }],
|
|
117
|
+
[`@webpack-cli/package-utils@<=1.0.1-alpha.4`, { dependencies: { [`cross-spawn`]: `^7.0.3` } }],
|
|
118
|
+
[`gatsby-remark-prismjs@<3.3.28`, { dependencies: { [`lodash`]: `^4` } }],
|
|
119
|
+
[`gatsby-plugin-favicon@*`, { peerDependencies: { [`webpack`]: `*` } }],
|
|
120
|
+
[`gatsby-plugin-sharp@<=4.6.0-next.3`, { dependencies: { [`debug`]: `^4.3.1` } }],
|
|
121
|
+
[`gatsby-react-router-scroll@<=5.6.0-next.0`, { dependencies: { [`prop-types`]: `^15.7.2` } }],
|
|
122
|
+
[`@rebass/forms@*`, {
|
|
123
|
+
dependencies: { [`@styled-system/should-forward-prop`]: `^5.0.0` },
|
|
124
|
+
peerDependencies: { react: `^16.8.6` }
|
|
125
|
+
}],
|
|
126
|
+
[`rebass@*`, { peerDependencies: { react: `^16.8.6` } }],
|
|
127
|
+
[`@ant-design/react-slick@<=0.28.3`, { peerDependencies: { react: `>=16.0.0` } }],
|
|
128
|
+
[`mqtt@<4.2.7`, { dependencies: { duplexify: `^4.1.1` } }],
|
|
129
|
+
[`vue-cli-plugin-vuetify@<=2.0.3`, {
|
|
130
|
+
dependencies: { semver: `^6.3.0` },
|
|
131
|
+
peerDependenciesMeta: {
|
|
132
|
+
"sass-loader": optionalPeerDep,
|
|
133
|
+
"vuetify-loader": optionalPeerDep
|
|
134
|
+
}
|
|
135
|
+
}],
|
|
136
|
+
[`vue-cli-plugin-vuetify@<=2.0.4`, { dependencies: { "null-loader": `^3.0.0` } }],
|
|
137
|
+
[`vue-cli-plugin-vuetify@>=2.4.3`, { peerDependencies: { vue: `*` } }],
|
|
138
|
+
[`@vuetify/cli-plugin-utils@<=0.0.4`, {
|
|
139
|
+
dependencies: { semver: `^6.3.0` },
|
|
140
|
+
peerDependenciesMeta: { "sass-loader": optionalPeerDep }
|
|
141
|
+
}],
|
|
142
|
+
[`@vue/cli-plugin-typescript@<=5.0.0-alpha.0`, { dependencies: { "babel-loader": `^8.1.0` } }],
|
|
143
|
+
[`@vue/cli-plugin-typescript@<=5.0.0-beta.0`, {
|
|
144
|
+
dependencies: { "@babel/core": `^7.12.16` },
|
|
145
|
+
peerDependencies: { "vue-template-compiler": `^2.0.0` },
|
|
146
|
+
peerDependenciesMeta: { "vue-template-compiler": optionalPeerDep }
|
|
147
|
+
}],
|
|
148
|
+
[`cordova-ios@<=6.3.0`, { dependencies: { underscore: `^1.9.2` } }],
|
|
149
|
+
[`cordova-lib@<=10.0.1`, { dependencies: { underscore: `^1.9.2` } }],
|
|
150
|
+
[`git-node-fs@*`, {
|
|
151
|
+
peerDependencies: { "js-git": `^0.7.8` },
|
|
152
|
+
peerDependenciesMeta: { "js-git": optionalPeerDep }
|
|
153
|
+
}],
|
|
154
|
+
[`consolidate@<0.16.0`, {
|
|
155
|
+
peerDependencies: { mustache: `^3.0.0` },
|
|
156
|
+
peerDependenciesMeta: { mustache: optionalPeerDep }
|
|
157
|
+
}],
|
|
158
|
+
[`consolidate@<=0.16.0`, {
|
|
159
|
+
peerDependencies: {
|
|
160
|
+
velocityjs: `^2.0.1`,
|
|
161
|
+
tinyliquid: `^0.2.34`,
|
|
162
|
+
"liquid-node": `^3.0.1`,
|
|
163
|
+
jade: `^1.11.0`,
|
|
164
|
+
"then-jade": `*`,
|
|
165
|
+
dust: `^0.3.0`,
|
|
166
|
+
"dustjs-helpers": `^1.7.4`,
|
|
167
|
+
"dustjs-linkedin": `^2.7.5`,
|
|
168
|
+
swig: `^1.4.2`,
|
|
169
|
+
"swig-templates": `^2.0.3`,
|
|
170
|
+
"razor-tmpl": `^1.3.1`,
|
|
171
|
+
atpl: `>=0.7.6`,
|
|
172
|
+
liquor: `^0.0.5`,
|
|
173
|
+
twig: `^1.15.2`,
|
|
174
|
+
ejs: `^3.1.5`,
|
|
175
|
+
eco: `^1.1.0-rc-3`,
|
|
176
|
+
jazz: `^0.0.18`,
|
|
177
|
+
jqtpl: `~1.1.0`,
|
|
178
|
+
hamljs: `^0.6.2`,
|
|
179
|
+
hamlet: `^0.3.3`,
|
|
180
|
+
whiskers: `^0.4.0`,
|
|
181
|
+
"haml-coffee": `^1.14.1`,
|
|
182
|
+
"hogan.js": `^3.0.2`,
|
|
183
|
+
templayed: `>=0.2.3`,
|
|
184
|
+
handlebars: `^4.7.6`,
|
|
185
|
+
underscore: `^1.11.0`,
|
|
186
|
+
lodash: `^4.17.20`,
|
|
187
|
+
pug: `^3.0.0`,
|
|
188
|
+
"then-pug": `*`,
|
|
189
|
+
qejs: `^3.0.5`,
|
|
190
|
+
walrus: `^0.10.1`,
|
|
191
|
+
mustache: `^4.0.1`,
|
|
192
|
+
just: `^0.1.8`,
|
|
193
|
+
ect: `^0.5.9`,
|
|
194
|
+
mote: `^0.2.0`,
|
|
195
|
+
toffee: `^0.3.6`,
|
|
196
|
+
dot: `^1.1.3`,
|
|
197
|
+
"bracket-template": `^1.1.5`,
|
|
198
|
+
ractive: `^1.3.12`,
|
|
199
|
+
nunjucks: `^3.2.2`,
|
|
200
|
+
htmling: `^0.0.8`,
|
|
201
|
+
"babel-core": `^6.26.3`,
|
|
202
|
+
plates: `~0.4.11`,
|
|
203
|
+
"react-dom": `^16.13.1`,
|
|
204
|
+
react: `^16.13.1`,
|
|
205
|
+
"arc-templates": `^0.5.3`,
|
|
206
|
+
vash: `^0.13.0`,
|
|
207
|
+
slm: `^2.0.0`,
|
|
208
|
+
marko: `^3.14.4`,
|
|
209
|
+
teacup: `^2.0.0`,
|
|
210
|
+
"coffee-script": `^1.12.7`,
|
|
211
|
+
squirrelly: `^5.1.0`,
|
|
212
|
+
twing: `^5.0.2`
|
|
213
|
+
},
|
|
214
|
+
peerDependenciesMeta: {
|
|
215
|
+
velocityjs: optionalPeerDep,
|
|
216
|
+
tinyliquid: optionalPeerDep,
|
|
217
|
+
"liquid-node": optionalPeerDep,
|
|
218
|
+
jade: optionalPeerDep,
|
|
219
|
+
"then-jade": optionalPeerDep,
|
|
220
|
+
dust: optionalPeerDep,
|
|
221
|
+
"dustjs-helpers": optionalPeerDep,
|
|
222
|
+
"dustjs-linkedin": optionalPeerDep,
|
|
223
|
+
swig: optionalPeerDep,
|
|
224
|
+
"swig-templates": optionalPeerDep,
|
|
225
|
+
"razor-tmpl": optionalPeerDep,
|
|
226
|
+
atpl: optionalPeerDep,
|
|
227
|
+
liquor: optionalPeerDep,
|
|
228
|
+
twig: optionalPeerDep,
|
|
229
|
+
ejs: optionalPeerDep,
|
|
230
|
+
eco: optionalPeerDep,
|
|
231
|
+
jazz: optionalPeerDep,
|
|
232
|
+
jqtpl: optionalPeerDep,
|
|
233
|
+
hamljs: optionalPeerDep,
|
|
234
|
+
hamlet: optionalPeerDep,
|
|
235
|
+
whiskers: optionalPeerDep,
|
|
236
|
+
"haml-coffee": optionalPeerDep,
|
|
237
|
+
"hogan.js": optionalPeerDep,
|
|
238
|
+
templayed: optionalPeerDep,
|
|
239
|
+
handlebars: optionalPeerDep,
|
|
240
|
+
underscore: optionalPeerDep,
|
|
241
|
+
lodash: optionalPeerDep,
|
|
242
|
+
pug: optionalPeerDep,
|
|
243
|
+
"then-pug": optionalPeerDep,
|
|
244
|
+
qejs: optionalPeerDep,
|
|
245
|
+
walrus: optionalPeerDep,
|
|
246
|
+
mustache: optionalPeerDep,
|
|
247
|
+
just: optionalPeerDep,
|
|
248
|
+
ect: optionalPeerDep,
|
|
249
|
+
mote: optionalPeerDep,
|
|
250
|
+
toffee: optionalPeerDep,
|
|
251
|
+
dot: optionalPeerDep,
|
|
252
|
+
"bracket-template": optionalPeerDep,
|
|
253
|
+
ractive: optionalPeerDep,
|
|
254
|
+
nunjucks: optionalPeerDep,
|
|
255
|
+
htmling: optionalPeerDep,
|
|
256
|
+
"babel-core": optionalPeerDep,
|
|
257
|
+
plates: optionalPeerDep,
|
|
258
|
+
"react-dom": optionalPeerDep,
|
|
259
|
+
react: optionalPeerDep,
|
|
260
|
+
"arc-templates": optionalPeerDep,
|
|
261
|
+
vash: optionalPeerDep,
|
|
262
|
+
slm: optionalPeerDep,
|
|
263
|
+
marko: optionalPeerDep,
|
|
264
|
+
teacup: optionalPeerDep,
|
|
265
|
+
"coffee-script": optionalPeerDep,
|
|
266
|
+
squirrelly: optionalPeerDep,
|
|
267
|
+
twing: optionalPeerDep
|
|
268
|
+
}
|
|
269
|
+
}],
|
|
270
|
+
[`vue-loader@<=16.3.3`, {
|
|
271
|
+
peerDependencies: {
|
|
272
|
+
"@vue/compiler-sfc": `^3.0.8`,
|
|
273
|
+
webpack: `^4.1.0 || ^5.0.0-0`
|
|
274
|
+
},
|
|
275
|
+
peerDependenciesMeta: { "@vue/compiler-sfc": optionalPeerDep }
|
|
276
|
+
}],
|
|
277
|
+
[`vue-loader@^16.7.0`, {
|
|
278
|
+
peerDependencies: {
|
|
279
|
+
"@vue/compiler-sfc": `^3.0.8`,
|
|
280
|
+
vue: `^3.2.13`
|
|
281
|
+
},
|
|
282
|
+
peerDependenciesMeta: {
|
|
283
|
+
"@vue/compiler-sfc": optionalPeerDep,
|
|
284
|
+
vue: optionalPeerDep
|
|
285
|
+
}
|
|
286
|
+
}],
|
|
287
|
+
[`scss-parser@<=1.0.5`, { dependencies: { lodash: `^4.17.21` } }],
|
|
288
|
+
[`query-ast@<1.0.5`, { dependencies: { lodash: `^4.17.21` } }],
|
|
289
|
+
[`redux-thunk@<=2.3.0`, { peerDependencies: { redux: `^4.0.0` } }],
|
|
290
|
+
[`skypack@<=0.3.2`, { dependencies: { tar: `^6.1.0` } }],
|
|
291
|
+
[`@npmcli/metavuln-calculator@<2.0.0`, { dependencies: { "json-parse-even-better-errors": `^2.3.1` } }],
|
|
292
|
+
[`bin-links@<2.3.0`, { dependencies: { "mkdirp-infer-owner": `^1.0.2` } }],
|
|
293
|
+
[`rollup-plugin-polyfill-node@<=0.8.0`, { peerDependencies: { rollup: `^1.20.0 || ^2.0.0` } }],
|
|
294
|
+
[`snowpack@<3.8.6`, { dependencies: { "magic-string": `^0.25.7` } }],
|
|
295
|
+
[`elm-webpack-loader@*`, { dependencies: { temp: `^0.9.4` } }],
|
|
296
|
+
[`winston-transport@<=4.4.0`, { dependencies: { logform: `^2.2.0` } }],
|
|
297
|
+
[`jest-vue-preprocessor@*`, {
|
|
298
|
+
dependencies: {
|
|
299
|
+
"@babel/core": `7.8.7`,
|
|
300
|
+
"@babel/template": `7.8.6`
|
|
301
|
+
},
|
|
302
|
+
peerDependencies: { pug: `^2.0.4` },
|
|
303
|
+
peerDependenciesMeta: { pug: optionalPeerDep }
|
|
304
|
+
}],
|
|
305
|
+
[`redux-persist@*`, {
|
|
306
|
+
peerDependencies: { react: `>=16` },
|
|
307
|
+
peerDependenciesMeta: { react: optionalPeerDep }
|
|
308
|
+
}],
|
|
309
|
+
[`sodium@>=3`, { dependencies: { "node-gyp": `^3.8.0` } }],
|
|
310
|
+
[`babel-plugin-graphql-tag@<=3.1.0`, { peerDependencies: { graphql: `^14.0.0 || ^15.0.0` } }],
|
|
311
|
+
[`@playwright/test@<=1.14.1`, { dependencies: { "jest-matcher-utils": `^26.4.2` } }],
|
|
312
|
+
...[
|
|
313
|
+
`babel-plugin-remove-graphql-queries@<3.14.0-next.1`,
|
|
314
|
+
`babel-preset-gatsby-package@<1.14.0-next.1`,
|
|
315
|
+
`create-gatsby@<1.14.0-next.1`,
|
|
316
|
+
`gatsby-admin@<0.24.0-next.1`,
|
|
317
|
+
`gatsby-cli@<3.14.0-next.1`,
|
|
318
|
+
`gatsby-core-utils@<2.14.0-next.1`,
|
|
319
|
+
`gatsby-design-tokens@<3.14.0-next.1`,
|
|
320
|
+
`gatsby-legacy-polyfills@<1.14.0-next.1`,
|
|
321
|
+
`gatsby-plugin-benchmark-reporting@<1.14.0-next.1`,
|
|
322
|
+
`gatsby-plugin-graphql-config@<0.23.0-next.1`,
|
|
323
|
+
`gatsby-plugin-image@<1.14.0-next.1`,
|
|
324
|
+
`gatsby-plugin-mdx@<2.14.0-next.1`,
|
|
325
|
+
`gatsby-plugin-netlify-cms@<5.14.0-next.1`,
|
|
326
|
+
`gatsby-plugin-no-sourcemaps@<3.14.0-next.1`,
|
|
327
|
+
`gatsby-plugin-page-creator@<3.14.0-next.1`,
|
|
328
|
+
`gatsby-plugin-preact@<5.14.0-next.1`,
|
|
329
|
+
`gatsby-plugin-preload-fonts@<2.14.0-next.1`,
|
|
330
|
+
`gatsby-plugin-schema-snapshot@<2.14.0-next.1`,
|
|
331
|
+
`gatsby-plugin-styletron@<6.14.0-next.1`,
|
|
332
|
+
`gatsby-plugin-subfont@<3.14.0-next.1`,
|
|
333
|
+
`gatsby-plugin-utils@<1.14.0-next.1`,
|
|
334
|
+
`gatsby-recipes@<0.25.0-next.1`,
|
|
335
|
+
`gatsby-source-shopify@<5.6.0-next.1`,
|
|
336
|
+
`gatsby-source-wikipedia@<3.14.0-next.1`,
|
|
337
|
+
`gatsby-transformer-screenshot@<3.14.0-next.1`,
|
|
338
|
+
`gatsby-worker@<0.5.0-next.1`
|
|
339
|
+
].map((descriptorString) => [descriptorString, { dependencies: { "@babel/runtime": `^7.14.8` } }]),
|
|
340
|
+
[`gatsby-core-utils@<2.14.0-next.1`, { dependencies: { got: `8.3.2` } }],
|
|
341
|
+
[`gatsby-plugin-gatsby-cloud@<=3.1.0-next.0`, { dependencies: { "gatsby-core-utils": `^2.13.0-next.0` } }],
|
|
342
|
+
[`gatsby-plugin-gatsby-cloud@<=3.2.0-next.1`, { peerDependencies: { webpack: `*` } }],
|
|
343
|
+
[`babel-plugin-remove-graphql-queries@<=3.14.0-next.1`, { dependencies: { "gatsby-core-utils": `^2.8.0-next.1` } }],
|
|
344
|
+
[`gatsby-plugin-netlify@3.13.0-next.1`, { dependencies: { "gatsby-core-utils": `^2.13.0-next.0` } }],
|
|
345
|
+
[`clipanion-v3-codemod@<=0.2.0`, { peerDependencies: { jscodeshift: `^0.11.0` } }],
|
|
346
|
+
[`react-live@*`, { peerDependencies: {
|
|
347
|
+
"react-dom": `*`,
|
|
348
|
+
react: `*`
|
|
349
|
+
} }],
|
|
350
|
+
[`webpack@<4.44.1`, { peerDependenciesMeta: {
|
|
351
|
+
"webpack-cli": optionalPeerDep,
|
|
352
|
+
"webpack-command": optionalPeerDep
|
|
353
|
+
} }],
|
|
354
|
+
[`webpack@<5.0.0-beta.23`, { peerDependenciesMeta: { "webpack-cli": optionalPeerDep } }],
|
|
355
|
+
[`webpack-dev-server@<3.10.2`, { peerDependenciesMeta: { "webpack-cli": optionalPeerDep } }],
|
|
356
|
+
[`@docusaurus/responsive-loader@<1.5.0`, { peerDependenciesMeta: {
|
|
357
|
+
sharp: optionalPeerDep,
|
|
358
|
+
jimp: optionalPeerDep
|
|
359
|
+
} }],
|
|
360
|
+
[`eslint-module-utils@*`, { peerDependenciesMeta: {
|
|
361
|
+
"eslint-import-resolver-node": optionalPeerDep,
|
|
362
|
+
"eslint-import-resolver-typescript": optionalPeerDep,
|
|
363
|
+
"eslint-import-resolver-webpack": optionalPeerDep,
|
|
364
|
+
"@typescript-eslint/parser": optionalPeerDep
|
|
365
|
+
} }],
|
|
366
|
+
[`eslint-plugin-import@*`, { peerDependenciesMeta: { "@typescript-eslint/parser": optionalPeerDep } }],
|
|
367
|
+
[`critters-webpack-plugin@<3.0.2`, { peerDependenciesMeta: { "html-webpack-plugin": optionalPeerDep } }],
|
|
368
|
+
[`terser@<=5.10.0`, { dependencies: { acorn: `^8.5.0` } }],
|
|
369
|
+
[`babel-preset-react-app@10.0.x <10.0.2`, { dependencies: { "@babel/plugin-proposal-private-property-in-object": `^7.16.7` } }],
|
|
370
|
+
[`eslint-config-react-app@*`, { peerDependenciesMeta: { typescript: optionalPeerDep } }],
|
|
371
|
+
[`@vue/eslint-config-typescript@<11.0.0`, { peerDependenciesMeta: { typescript: optionalPeerDep } }],
|
|
372
|
+
[`unplugin-vue2-script-setup@<0.9.1`, { peerDependencies: {
|
|
373
|
+
"@vue/composition-api": `^1.4.3`,
|
|
374
|
+
"@vue/runtime-dom": `^3.2.26`
|
|
375
|
+
} }],
|
|
376
|
+
[`@cypress/snapshot@*`, { dependencies: { debug: `^3.2.7` } }],
|
|
377
|
+
[`auto-relay@<=0.14.0`, { peerDependencies: { "reflect-metadata": `^0.1.13` } }],
|
|
378
|
+
[`vue-template-babel-compiler@<1.2.0`, { peerDependencies: { [`vue-template-compiler`]: `^2.6.0` } }],
|
|
379
|
+
[`@parcel/transformer-image@<2.5.0`, { peerDependencies: { [`@parcel/core`]: `*` } }],
|
|
380
|
+
[`@parcel/transformer-js@<2.5.0`, { peerDependencies: { [`@parcel/core`]: `*` } }],
|
|
381
|
+
[`parcel@*`, { peerDependenciesMeta: { [`@parcel/core`]: optionalPeerDep } }],
|
|
382
|
+
[`react-scripts@*`, { peerDependencies: { [`eslint`]: `*` } }],
|
|
383
|
+
[`focus-trap-react@^8.0.0`, { dependencies: { tabbable: `^5.3.2` } }],
|
|
384
|
+
[`react-rnd@<10.3.7`, { peerDependencies: {
|
|
385
|
+
react: `>=16.3.0`,
|
|
386
|
+
"react-dom": `>=16.3.0`
|
|
387
|
+
} }],
|
|
388
|
+
[`connect-mongo@<5.0.0`, { peerDependencies: { "express-session": `^1.17.1` } }],
|
|
389
|
+
[`vue-i18n@<9`, { peerDependencies: { vue: `^2` } }],
|
|
390
|
+
[`vue-router@<4`, { peerDependencies: { vue: `^2` } }],
|
|
391
|
+
[`unified@<10`, { dependencies: { "@types/unist": `^2.0.0` } }],
|
|
392
|
+
[`react-github-btn@<=1.3.0`, { peerDependencies: { react: `>=16.3.0` } }],
|
|
393
|
+
[`react-dev-utils@*`, {
|
|
394
|
+
peerDependencies: {
|
|
395
|
+
typescript: `>=2.7`,
|
|
396
|
+
webpack: `>=4`
|
|
397
|
+
},
|
|
398
|
+
peerDependenciesMeta: { typescript: optionalPeerDep }
|
|
399
|
+
}],
|
|
400
|
+
[`@asyncapi/react-component@<=1.0.0-next.39`, { peerDependencies: {
|
|
401
|
+
react: `>=16.8.0`,
|
|
402
|
+
"react-dom": `>=16.8.0`
|
|
403
|
+
} }],
|
|
404
|
+
[`xo@*`, {
|
|
405
|
+
peerDependencies: { webpack: `>=1.11.0` },
|
|
406
|
+
peerDependenciesMeta: { webpack: optionalPeerDep }
|
|
407
|
+
}],
|
|
408
|
+
[`babel-plugin-remove-graphql-queries@<=4.20.0-next.0`, { dependencies: { "@babel/types": `^7.15.4` } }],
|
|
409
|
+
[`gatsby-plugin-page-creator@<=4.20.0-next.1`, { dependencies: { "fs-extra": `^10.1.0` } }],
|
|
410
|
+
[`gatsby-plugin-utils@<=3.14.0-next.1`, {
|
|
411
|
+
dependencies: { fastq: `^1.13.0` },
|
|
412
|
+
peerDependencies: { graphql: `^15.0.0` }
|
|
413
|
+
}],
|
|
414
|
+
[`gatsby-plugin-mdx@<3.1.0-next.1`, { dependencies: { mkdirp: `^1.0.4` } }],
|
|
415
|
+
[`gatsby-plugin-mdx@^2`, { peerDependencies: { gatsby: `^3.0.0-next` } }],
|
|
416
|
+
[`fdir@<=5.2.0`, {
|
|
417
|
+
peerDependencies: { picomatch: `2.x` },
|
|
418
|
+
peerDependenciesMeta: { picomatch: optionalPeerDep }
|
|
419
|
+
}],
|
|
420
|
+
[`babel-plugin-transform-typescript-metadata@<=0.3.2`, {
|
|
421
|
+
peerDependencies: {
|
|
422
|
+
"@babel/core": `^7`,
|
|
423
|
+
"@babel/traverse": `^7`
|
|
424
|
+
},
|
|
425
|
+
peerDependenciesMeta: { "@babel/traverse": optionalPeerDep }
|
|
426
|
+
}],
|
|
427
|
+
[`graphql-compose@>=9.0.10`, { peerDependencies: { graphql: `^14.2.0 || ^15.0.0 || ^16.0.0` } }],
|
|
428
|
+
[`vite-plugin-vuetify@<=1.0.2`, { peerDependencies: { vue: `^3.0.0` } }],
|
|
429
|
+
[`webpack-plugin-vuetify@<=2.0.1`, { peerDependencies: { vue: `^3.2.6` } }],
|
|
430
|
+
[`eslint-import-resolver-vite@<2.0.1`, { dependencies: {
|
|
431
|
+
debug: `^4.3.4`,
|
|
432
|
+
resolve: `^1.22.8`
|
|
433
|
+
} }],
|
|
434
|
+
[`notistack@^3.0.0`, { dependencies: { csstype: `^3.0.10` } }],
|
|
435
|
+
[`@fastify/type-provider-typebox@^5.0.0`, { peerDependencies: { fastify: `^5.0.0` } }],
|
|
436
|
+
[`@fastify/type-provider-typebox@^4.0.0`, { peerDependencies: { fastify: `^4.0.0` } }]
|
|
437
|
+
];
|
|
438
|
+
}));
|
|
439
|
+
|
|
440
|
+
//#endregion
|
|
441
|
+
//#region src/external/@yarnpkg/extensions.js
|
|
1031
442
|
module.exports = require_lib();
|
|
443
|
+
|
|
444
|
+
//#endregion
|