@pnpm/exe 11.0.0-alpha.5 → 11.0.0-alpha.7
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/dist/node-gyp-bin/node-gyp +6 -0
- package/dist/node-gyp-bin/node-gyp.cmd +5 -0
- package/dist/node_modules/@isaacs/cliui/dist/commonjs/ansi-regex/index.js +16 -0
- package/dist/node_modules/@isaacs/cliui/dist/commonjs/ansi-styles/index.js +170 -0
- package/dist/node_modules/@isaacs/cliui/dist/commonjs/eastasianwidth/index.js +307 -0
- package/dist/node_modules/@isaacs/cliui/dist/commonjs/emoji-regex/index.js +7 -0
- package/dist/node_modules/@isaacs/cliui/dist/commonjs/index.js +322 -0
- package/dist/node_modules/@isaacs/cliui/dist/commonjs/index.min.js +12 -0
- package/dist/node_modules/@isaacs/cliui/dist/commonjs/package.json +3 -0
- package/dist/node_modules/@isaacs/cliui/dist/commonjs/string-width/index.js +49 -0
- package/dist/node_modules/@isaacs/cliui/dist/commonjs/strip-ansi/index.js +8 -0
- package/dist/node_modules/@isaacs/cliui/dist/commonjs/wrap-ansi/index.js +176 -0
- package/dist/node_modules/@isaacs/cliui/dist/esm/ansi-regex/index.js +12 -0
- package/dist/node_modules/@isaacs/cliui/dist/esm/ansi-styles/index.js +167 -0
- package/dist/node_modules/@isaacs/cliui/dist/esm/eastasianwidth/index.js +299 -0
- package/dist/node_modules/@isaacs/cliui/dist/esm/emoji-regex/index.js +3 -0
- package/dist/node_modules/@isaacs/cliui/dist/esm/index.js +317 -0
- package/dist/node_modules/@isaacs/cliui/dist/esm/index.min.js +12 -0
- package/dist/node_modules/@isaacs/cliui/dist/esm/package.json +3 -0
- package/dist/node_modules/@isaacs/cliui/dist/esm/string-width/index.js +46 -0
- package/dist/node_modules/@isaacs/cliui/dist/esm/strip-ansi/index.js +4 -0
- package/dist/node_modules/@isaacs/cliui/dist/esm/wrap-ansi/index.js +172 -0
- package/dist/node_modules/@isaacs/cliui/package.json +163 -0
- package/dist/node_modules/@isaacs/fs-minipass/LICENSE +15 -0
- package/dist/node_modules/@isaacs/fs-minipass/dist/commonjs/index.js +430 -0
- package/dist/node_modules/@isaacs/fs-minipass/dist/commonjs/package.json +3 -0
- package/dist/node_modules/@isaacs/fs-minipass/dist/esm/index.js +420 -0
- package/dist/node_modules/@isaacs/fs-minipass/dist/esm/package.json +3 -0
- package/dist/node_modules/@isaacs/fs-minipass/package.json +72 -0
- package/dist/node_modules/@npmcli/agent/lib/agents.js +206 -0
- package/dist/node_modules/@npmcli/agent/lib/dns.js +53 -0
- package/dist/node_modules/@npmcli/agent/lib/errors.js +61 -0
- package/dist/node_modules/@npmcli/agent/lib/index.js +56 -0
- package/dist/node_modules/@npmcli/agent/lib/options.js +86 -0
- package/dist/node_modules/@npmcli/agent/lib/proxy.js +88 -0
- package/dist/node_modules/@npmcli/agent/package.json +60 -0
- package/dist/node_modules/@npmcli/fs/lib/common/get-options.js +20 -0
- package/dist/node_modules/@npmcli/fs/lib/common/node.js +9 -0
- package/dist/node_modules/@npmcli/fs/lib/cp/LICENSE +15 -0
- package/dist/node_modules/@npmcli/fs/lib/cp/errors.js +129 -0
- package/dist/node_modules/@npmcli/fs/lib/cp/index.js +22 -0
- package/dist/node_modules/@npmcli/fs/lib/cp/polyfill.js +428 -0
- package/dist/node_modules/@npmcli/fs/lib/index.js +13 -0
- package/dist/node_modules/@npmcli/fs/lib/move-file.js +78 -0
- package/dist/node_modules/@npmcli/fs/lib/readdir-scoped.js +20 -0
- package/dist/node_modules/@npmcli/fs/lib/with-temp-dir.js +39 -0
- package/dist/node_modules/@npmcli/fs/package.json +54 -0
- package/dist/node_modules/abbrev/LICENSE +46 -0
- package/dist/node_modules/abbrev/lib/index.js +53 -0
- package/dist/node_modules/abbrev/package.json +45 -0
- package/dist/node_modules/agent-base/LICENSE +22 -0
- package/dist/node_modules/agent-base/dist/helpers.js +66 -0
- package/dist/node_modules/agent-base/dist/index.js +178 -0
- package/dist/node_modules/agent-base/package.json +46 -0
- package/dist/node_modules/balanced-match/dist/commonjs/index.js +59 -0
- package/dist/node_modules/balanced-match/dist/commonjs/package.json +3 -0
- package/dist/node_modules/balanced-match/dist/esm/index.js +54 -0
- package/dist/node_modules/balanced-match/dist/esm/package.json +3 -0
- package/dist/node_modules/balanced-match/package.json +71 -0
- package/dist/node_modules/brace-expansion/LICENSE +23 -0
- package/dist/node_modules/brace-expansion/dist/commonjs/index.js +199 -0
- package/dist/node_modules/brace-expansion/dist/commonjs/package.json +3 -0
- package/dist/node_modules/brace-expansion/dist/esm/index.js +195 -0
- package/dist/node_modules/brace-expansion/dist/esm/package.json +3 -0
- package/dist/node_modules/brace-expansion/package.json +64 -0
- package/dist/node_modules/cacache/lib/content/path.js +29 -0
- package/dist/node_modules/cacache/lib/content/read.js +165 -0
- package/dist/node_modules/cacache/lib/content/rm.js +18 -0
- package/dist/node_modules/cacache/lib/content/write.js +206 -0
- package/dist/node_modules/cacache/lib/entry-index.js +336 -0
- package/dist/node_modules/cacache/lib/get.js +170 -0
- package/dist/node_modules/cacache/lib/index.js +42 -0
- package/dist/node_modules/cacache/lib/memoization.js +72 -0
- package/dist/node_modules/cacache/lib/put.js +80 -0
- package/dist/node_modules/cacache/lib/rm.js +31 -0
- package/dist/node_modules/cacache/lib/util/glob.js +7 -0
- package/dist/node_modules/cacache/lib/util/hash-to-segments.js +7 -0
- package/dist/node_modules/cacache/lib/util/tmp.js +26 -0
- package/dist/node_modules/cacache/lib/verify.js +258 -0
- package/dist/node_modules/cacache/package.json +83 -0
- package/dist/node_modules/chownr/dist/commonjs/index.js +93 -0
- package/dist/node_modules/chownr/dist/commonjs/package.json +3 -0
- package/dist/node_modules/chownr/dist/esm/index.js +85 -0
- package/dist/node_modules/chownr/dist/esm/package.json +3 -0
- package/dist/node_modules/chownr/package.json +69 -0
- package/dist/node_modules/cross-spawn/LICENSE +21 -0
- package/dist/node_modules/cross-spawn/index.js +39 -0
- package/dist/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/dist/node_modules/cross-spawn/lib/parse.js +91 -0
- package/dist/node_modules/cross-spawn/lib/util/escape.js +47 -0
- package/dist/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- package/dist/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- package/dist/node_modules/cross-spawn/package.json +73 -0
- package/dist/node_modules/debug/LICENSE +20 -0
- package/dist/node_modules/debug/package.json +64 -0
- package/dist/node_modules/debug/src/browser.js +272 -0
- package/dist/node_modules/debug/src/common.js +292 -0
- package/dist/node_modules/debug/src/index.js +10 -0
- package/dist/node_modules/debug/src/node.js +263 -0
- package/dist/node_modules/encoding/.prettierrc.js +8 -0
- package/dist/node_modules/encoding/LICENSE +16 -0
- package/dist/node_modules/encoding/lib/encoding.js +83 -0
- package/dist/node_modules/encoding/package.json +18 -0
- package/dist/node_modules/env-paths/index.js +74 -0
- package/dist/node_modules/env-paths/license +9 -0
- package/dist/node_modules/env-paths/package.json +45 -0
- package/dist/node_modules/err-code/.eslintrc.json +7 -0
- package/dist/node_modules/err-code/bower.json +30 -0
- package/dist/node_modules/err-code/index.js +47 -0
- package/dist/node_modules/err-code/index.umd.js +51 -0
- package/dist/node_modules/err-code/package.json +34 -0
- package/dist/node_modules/exponential-backoff/LICENSE +202 -0
- package/dist/node_modules/exponential-backoff/dist/backoff.js +124 -0
- package/dist/node_modules/exponential-backoff/dist/delay/always/always.delay.js +25 -0
- package/dist/node_modules/exponential-backoff/dist/delay/delay.base.js +45 -0
- package/dist/node_modules/exponential-backoff/dist/delay/delay.factory.js +17 -0
- package/dist/node_modules/exponential-backoff/dist/delay/delay.interface.js +3 -0
- package/dist/node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.js +82 -0
- package/dist/node_modules/exponential-backoff/dist/jitter/full/full.jitter.js +8 -0
- package/dist/node_modules/exponential-backoff/dist/jitter/jitter.factory.js +15 -0
- package/dist/node_modules/exponential-backoff/dist/jitter/no/no.jitter.js +7 -0
- package/dist/node_modules/exponential-backoff/dist/options.js +31 -0
- package/dist/node_modules/exponential-backoff/package.json +62 -0
- package/dist/node_modules/fdir/LICENSE +7 -0
- package/dist/node_modules/fdir/dist/index.cjs +588 -0
- package/dist/node_modules/fdir/dist/index.d.cts +155 -0
- package/dist/node_modules/fdir/dist/index.d.mts +155 -0
- package/dist/node_modules/fdir/dist/index.mjs +570 -0
- package/dist/node_modules/fdir/package.json +103 -0
- package/dist/node_modules/foreground-child/LICENSE +15 -0
- package/dist/node_modules/foreground-child/dist/commonjs/all-signals.js +58 -0
- package/dist/node_modules/foreground-child/dist/commonjs/index.js +123 -0
- package/dist/node_modules/foreground-child/dist/commonjs/package.json +3 -0
- package/dist/node_modules/foreground-child/dist/commonjs/proxy-signals.js +38 -0
- package/dist/node_modules/foreground-child/dist/commonjs/watchdog.js +50 -0
- package/dist/node_modules/foreground-child/dist/esm/all-signals.js +52 -0
- package/dist/node_modules/foreground-child/dist/esm/index.js +115 -0
- package/dist/node_modules/foreground-child/dist/esm/package.json +3 -0
- package/dist/node_modules/foreground-child/dist/esm/proxy-signals.js +34 -0
- package/dist/node_modules/foreground-child/dist/esm/watchdog.js +46 -0
- package/dist/node_modules/foreground-child/package.json +106 -0
- package/dist/node_modules/fs-minipass/LICENSE +15 -0
- package/dist/node_modules/fs-minipass/lib/index.js +443 -0
- package/dist/node_modules/fs-minipass/package.json +54 -0
- package/dist/node_modules/glob/dist/commonjs/glob.js +247 -0
- package/dist/node_modules/glob/dist/commonjs/has-magic.js +27 -0
- package/dist/node_modules/glob/dist/commonjs/ignore.js +119 -0
- package/dist/node_modules/glob/dist/commonjs/index.js +68 -0
- package/dist/node_modules/glob/dist/commonjs/package.json +3 -0
- package/dist/node_modules/glob/dist/commonjs/pattern.js +219 -0
- package/dist/node_modules/glob/dist/commonjs/processor.js +301 -0
- package/dist/node_modules/glob/dist/commonjs/walker.js +387 -0
- package/dist/node_modules/glob/dist/esm/bin.d.mts +3 -0
- package/dist/node_modules/glob/dist/esm/bin.mjs +346 -0
- package/dist/node_modules/glob/dist/esm/glob.js +243 -0
- package/dist/node_modules/glob/dist/esm/has-magic.js +23 -0
- package/dist/node_modules/glob/dist/esm/ignore.js +115 -0
- package/dist/node_modules/glob/dist/esm/index.js +55 -0
- package/dist/node_modules/glob/dist/esm/package.json +3 -0
- package/dist/node_modules/glob/dist/esm/pattern.js +215 -0
- package/dist/node_modules/glob/dist/esm/processor.js +294 -0
- package/dist/node_modules/glob/dist/esm/walker.js +381 -0
- package/dist/node_modules/glob/package.json +97 -0
- package/dist/node_modules/graceful-fs/LICENSE +15 -0
- package/dist/node_modules/graceful-fs/clone.js +23 -0
- package/dist/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/dist/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/dist/node_modules/graceful-fs/package.json +53 -0
- package/dist/node_modules/graceful-fs/polyfills.js +355 -0
- package/dist/node_modules/http-cache-semantics/LICENSE +9 -0
- package/dist/node_modules/http-cache-semantics/index.js +928 -0
- package/dist/node_modules/http-cache-semantics/package.json +22 -0
- package/dist/node_modules/http-proxy-agent/LICENSE +22 -0
- package/dist/node_modules/http-proxy-agent/dist/index.js +148 -0
- package/dist/node_modules/http-proxy-agent/package.json +47 -0
- package/dist/node_modules/https-proxy-agent/LICENSE +22 -0
- package/dist/node_modules/https-proxy-agent/dist/index.js +180 -0
- package/dist/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
- package/dist/node_modules/https-proxy-agent/package.json +50 -0
- package/dist/node_modules/iconv-lite/.github/dependabot.yml +11 -0
- package/dist/node_modules/iconv-lite/.idea/codeStyles/Project.xml +47 -0
- package/dist/node_modules/iconv-lite/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/dist/node_modules/iconv-lite/.idea/iconv-lite.iml +12 -0
- package/dist/node_modules/iconv-lite/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/dist/node_modules/iconv-lite/.idea/modules.xml +8 -0
- package/dist/node_modules/iconv-lite/.idea/vcs.xml +6 -0
- package/dist/node_modules/iconv-lite/LICENSE +21 -0
- package/dist/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
- package/dist/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
- package/dist/node_modules/iconv-lite/encodings/index.js +23 -0
- package/dist/node_modules/iconv-lite/encodings/internal.js +198 -0
- package/dist/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/dist/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/dist/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
- package/dist/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/dist/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/dist/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/dist/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/dist/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/dist/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/dist/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- package/dist/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/dist/node_modules/iconv-lite/encodings/utf16.js +197 -0
- package/dist/node_modules/iconv-lite/encodings/utf32.js +319 -0
- package/dist/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/dist/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/dist/node_modules/iconv-lite/lib/index.js +180 -0
- package/dist/node_modules/iconv-lite/lib/streams.js +109 -0
- package/dist/node_modules/iconv-lite/package.json +44 -0
- package/dist/node_modules/imurmurhash/imurmurhash.js +138 -0
- package/dist/node_modules/imurmurhash/imurmurhash.min.js +12 -0
- package/dist/node_modules/imurmurhash/package.json +40 -0
- package/dist/node_modules/ip-address/LICENSE +19 -0
- package/dist/node_modules/ip-address/dist/address-error.js +12 -0
- package/dist/node_modules/ip-address/dist/common.js +46 -0
- package/dist/node_modules/ip-address/dist/ip-address.js +35 -0
- package/dist/node_modules/ip-address/dist/ipv4.js +360 -0
- package/dist/node_modules/ip-address/dist/ipv6.js +1003 -0
- package/dist/node_modules/ip-address/dist/v4/constants.js +8 -0
- package/dist/node_modules/ip-address/dist/v6/constants.js +76 -0
- package/dist/node_modules/ip-address/dist/v6/helpers.js +45 -0
- package/dist/node_modules/ip-address/dist/v6/regular-expressions.js +95 -0
- package/dist/node_modules/ip-address/package.json +78 -0
- package/dist/node_modules/isexe/LICENSE +15 -0
- package/dist/node_modules/isexe/index.js +57 -0
- package/dist/node_modules/isexe/mode.js +41 -0
- package/dist/node_modules/isexe/package.json +31 -0
- package/dist/node_modules/isexe/windows.js +42 -0
- package/dist/node_modules/jackspeak/dist/commonjs/index.js +944 -0
- package/dist/node_modules/jackspeak/dist/commonjs/index.min.js +33 -0
- package/dist/node_modules/jackspeak/dist/commonjs/package.json +3 -0
- package/dist/node_modules/jackspeak/dist/esm/index.js +936 -0
- package/dist/node_modules/jackspeak/dist/esm/index.min.js +33 -0
- package/dist/node_modules/jackspeak/dist/esm/package.json +3 -0
- package/dist/node_modules/jackspeak/package.json +115 -0
- package/dist/node_modules/lru-cache/LICENSE +15 -0
- package/dist/node_modules/lru-cache/dist/commonjs/index.js +1546 -0
- package/dist/node_modules/lru-cache/dist/commonjs/index.min.js +2 -0
- package/dist/node_modules/lru-cache/dist/commonjs/package.json +3 -0
- package/dist/node_modules/lru-cache/dist/esm/index.js +1542 -0
- package/dist/node_modules/lru-cache/dist/esm/index.min.js +2 -0
- package/dist/node_modules/lru-cache/dist/esm/package.json +3 -0
- package/dist/node_modules/lru-cache/package.json +116 -0
- package/dist/node_modules/make-fetch-happen/LICENSE +16 -0
- package/dist/node_modules/make-fetch-happen/lib/cache/entry.js +471 -0
- package/dist/node_modules/make-fetch-happen/lib/cache/errors.js +11 -0
- package/dist/node_modules/make-fetch-happen/lib/cache/index.js +49 -0
- package/dist/node_modules/make-fetch-happen/lib/cache/key.js +17 -0
- package/dist/node_modules/make-fetch-happen/lib/cache/policy.js +161 -0
- package/dist/node_modules/make-fetch-happen/lib/fetch.js +118 -0
- package/dist/node_modules/make-fetch-happen/lib/index.js +41 -0
- package/dist/node_modules/make-fetch-happen/lib/options.js +59 -0
- package/dist/node_modules/make-fetch-happen/lib/pipeline.js +41 -0
- package/dist/node_modules/make-fetch-happen/lib/remote.js +132 -0
- package/dist/node_modules/make-fetch-happen/package.json +74 -0
- package/dist/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
- package/dist/node_modules/minimatch/dist/commonjs/ast.js +601 -0
- package/dist/node_modules/minimatch/dist/commonjs/brace-expressions.js +150 -0
- package/dist/node_modules/minimatch/dist/commonjs/escape.js +30 -0
- package/dist/node_modules/minimatch/dist/commonjs/index.js +1035 -0
- package/dist/node_modules/minimatch/dist/commonjs/package.json +3 -0
- package/dist/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
- package/dist/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
- package/dist/node_modules/minimatch/dist/esm/ast.js +597 -0
- package/dist/node_modules/minimatch/dist/esm/brace-expressions.js +146 -0
- package/dist/node_modules/minimatch/dist/esm/escape.js +26 -0
- package/dist/node_modules/minimatch/dist/esm/index.js +1022 -0
- package/dist/node_modules/minimatch/dist/esm/package.json +3 -0
- package/dist/node_modules/minimatch/dist/esm/unescape.js +34 -0
- package/dist/node_modules/minimatch/package.json +67 -0
- package/dist/node_modules/minipass/LICENSE +15 -0
- package/dist/node_modules/minipass/dist/commonjs/index.js +1028 -0
- package/dist/node_modules/minipass/dist/commonjs/package.json +3 -0
- package/dist/node_modules/minipass/dist/esm/index.js +1018 -0
- package/dist/node_modules/minipass/dist/esm/package.json +3 -0
- package/dist/node_modules/minipass/package.json +82 -0
- package/dist/node_modules/minipass-collect/LICENSE +15 -0
- package/dist/node_modules/minipass-collect/index.js +71 -0
- package/dist/node_modules/minipass-collect/package.json +30 -0
- package/dist/node_modules/minipass-fetch/LICENSE +28 -0
- package/dist/node_modules/minipass-fetch/lib/abort-error.js +17 -0
- package/dist/node_modules/minipass-fetch/lib/blob.js +97 -0
- package/dist/node_modules/minipass-fetch/lib/body.js +350 -0
- package/dist/node_modules/minipass-fetch/lib/fetch-error.js +32 -0
- package/dist/node_modules/minipass-fetch/lib/headers.js +267 -0
- package/dist/node_modules/minipass-fetch/lib/index.js +376 -0
- package/dist/node_modules/minipass-fetch/lib/request.js +282 -0
- package/dist/node_modules/minipass-fetch/lib/response.js +90 -0
- package/dist/node_modules/minipass-fetch/package.json +70 -0
- package/dist/node_modules/minipass-flush/LICENSE +15 -0
- package/dist/node_modules/minipass-flush/index.js +39 -0
- package/dist/node_modules/minipass-flush/node_modules/minipass/LICENSE +15 -0
- package/dist/node_modules/minipass-flush/node_modules/minipass/index.js +649 -0
- package/dist/node_modules/minipass-flush/node_modules/minipass/package.json +56 -0
- package/dist/node_modules/minipass-flush/package.json +39 -0
- package/dist/node_modules/minipass-pipeline/LICENSE +15 -0
- package/dist/node_modules/minipass-pipeline/index.js +128 -0
- package/dist/node_modules/minipass-pipeline/node_modules/minipass/LICENSE +15 -0
- package/dist/node_modules/minipass-pipeline/node_modules/minipass/index.js +649 -0
- package/dist/node_modules/minipass-pipeline/node_modules/minipass/package.json +56 -0
- package/dist/node_modules/minipass-pipeline/package.json +29 -0
- package/dist/node_modules/minipass-sized/LICENSE +15 -0
- package/dist/node_modules/minipass-sized/index.js +67 -0
- package/dist/node_modules/minipass-sized/node_modules/minipass/LICENSE +15 -0
- package/dist/node_modules/minipass-sized/node_modules/minipass/index.js +649 -0
- package/dist/node_modules/minipass-sized/node_modules/minipass/package.json +56 -0
- package/dist/node_modules/minipass-sized/package-lock.json +3464 -0
- package/dist/node_modules/minipass-sized/package.json +39 -0
- package/dist/node_modules/minizlib/LICENSE +26 -0
- package/dist/node_modules/minizlib/dist/commonjs/constants.js +123 -0
- package/dist/node_modules/minizlib/dist/commonjs/index.js +416 -0
- package/dist/node_modules/minizlib/dist/commonjs/package.json +3 -0
- package/dist/node_modules/minizlib/dist/esm/constants.js +117 -0
- package/dist/node_modules/minizlib/dist/esm/index.js +363 -0
- package/dist/node_modules/minizlib/dist/esm/package.json +3 -0
- package/dist/node_modules/minizlib/package.json +80 -0
- package/dist/node_modules/ms/index.js +162 -0
- package/dist/node_modules/ms/package.json +38 -0
- package/dist/node_modules/negotiator/LICENSE +24 -0
- package/dist/node_modules/negotiator/index.js +83 -0
- package/dist/node_modules/negotiator/lib/charset.js +169 -0
- package/dist/node_modules/negotiator/lib/encoding.js +205 -0
- package/dist/node_modules/negotiator/lib/language.js +179 -0
- package/dist/node_modules/negotiator/lib/mediaType.js +294 -0
- package/dist/node_modules/negotiator/package.json +43 -0
- package/dist/node_modules/node-gyp/.release-please-manifest.json +3 -0
- package/dist/node_modules/node-gyp/LICENSE +24 -0
- package/dist/node_modules/node-gyp/addon.gypi +204 -0
- package/dist/node_modules/node-gyp/bin/node-gyp.js +138 -0
- package/dist/node_modules/node-gyp/eslint.config.js +3 -0
- package/dist/node_modules/node-gyp/gyp/.release-please-manifest.json +3 -0
- package/dist/node_modules/node-gyp/gyp/LICENSE +28 -0
- package/dist/node_modules/node-gyp/gyp/data/ninja/build.ninja +4 -0
- package/dist/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc +12 -0
- package/dist/node_modules/node-gyp/gyp/gyp +8 -0
- package/dist/node_modules/node-gyp/gyp/gyp.bat +5 -0
- package/dist/node_modules/node-gyp/gyp/gyp_main.py +45 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +365 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +206 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1283 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1545 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +59 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +152 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +270 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +574 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +707 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/common.py +725 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +186 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +170 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +113 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +55 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +805 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1169 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1316 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +128 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +104 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +461 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +88 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +55 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2755 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3970 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +44 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2957 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +67 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1389 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +26 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/input.py +3097 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +99 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +765 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1255 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +174 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +61 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +371 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1936 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation_test.py +54 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +301 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +3180 -0
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +64 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/LICENSE +3 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.APACHE +177 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.BSD +23 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/__init__.py +15 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py +107 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py +252 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py +83 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/_parser.py +359 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/_structures.py +61 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py +192 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/markers.py +251 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +824 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/py.typed +0 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/requirements.py +90 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py +1030 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/tags.py +553 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/utils.py +172 -0
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/version.py +563 -0
- package/dist/node_modules/node-gyp/gyp/pyproject.toml +114 -0
- package/dist/node_modules/node-gyp/gyp/release-please-config.json +11 -0
- package/dist/node_modules/node-gyp/gyp/test_gyp.py +260 -0
- package/dist/node_modules/node-gyp/lib/Find-VisualStudio.cs +250 -0
- package/dist/node_modules/node-gyp/lib/build.js +230 -0
- package/dist/node_modules/node-gyp/lib/clean.js +15 -0
- package/dist/node_modules/node-gyp/lib/configure.js +328 -0
- package/dist/node_modules/node-gyp/lib/create-config-gypi.js +153 -0
- package/dist/node_modules/node-gyp/lib/download.js +39 -0
- package/dist/node_modules/node-gyp/lib/find-node-directory.js +63 -0
- package/dist/node_modules/node-gyp/lib/find-python.js +310 -0
- package/dist/node_modules/node-gyp/lib/find-visualstudio.js +600 -0
- package/dist/node_modules/node-gyp/lib/install.js +411 -0
- package/dist/node_modules/node-gyp/lib/list.js +26 -0
- package/dist/node_modules/node-gyp/lib/log.js +168 -0
- package/dist/node_modules/node-gyp/lib/node-gyp.js +199 -0
- package/dist/node_modules/node-gyp/lib/process-release.js +146 -0
- package/dist/node_modules/node-gyp/lib/rebuild.js +12 -0
- package/dist/node_modules/node-gyp/lib/remove.js +43 -0
- package/dist/node_modules/node-gyp/lib/util.js +81 -0
- package/dist/node_modules/node-gyp/macOS_Catalina_acid_test.sh +21 -0
- package/dist/node_modules/node-gyp/node_modules/isexe/dist/commonjs/index.js +56 -0
- package/dist/node_modules/node-gyp/node_modules/isexe/dist/commonjs/index.min.js +2 -0
- package/dist/node_modules/node-gyp/node_modules/isexe/dist/commonjs/options.js +3 -0
- package/dist/node_modules/node-gyp/node_modules/isexe/dist/commonjs/package.json +3 -0
- package/dist/node_modules/node-gyp/node_modules/isexe/dist/commonjs/posix.js +67 -0
- package/dist/node_modules/node-gyp/node_modules/isexe/dist/commonjs/win32.js +63 -0
- package/dist/node_modules/node-gyp/node_modules/isexe/dist/esm/index.js +16 -0
- package/dist/node_modules/node-gyp/node_modules/isexe/dist/esm/index.min.js +2 -0
- package/dist/node_modules/node-gyp/node_modules/isexe/dist/esm/options.js +2 -0
- package/dist/node_modules/node-gyp/node_modules/isexe/dist/esm/package.json +3 -0
- package/dist/node_modules/node-gyp/node_modules/isexe/dist/esm/posix.js +62 -0
- package/dist/node_modules/node-gyp/node_modules/isexe/dist/esm/win32.js +58 -0
- package/dist/node_modules/node-gyp/node_modules/isexe/package.json +78 -0
- package/dist/node_modules/node-gyp/node_modules/which/LICENSE +15 -0
- package/dist/node_modules/node-gyp/node_modules/which/bin/which.js +52 -0
- package/dist/node_modules/node-gyp/node_modules/which/lib/index.js +111 -0
- package/dist/node_modules/node-gyp/node_modules/which/package.json +52 -0
- package/dist/node_modules/node-gyp/package.json +52 -0
- package/dist/node_modules/node-gyp/release-please-config.json +40 -0
- package/dist/node_modules/node-gyp/src/win_delay_load_hook.cc +41 -0
- package/dist/node_modules/nopt/LICENSE +15 -0
- package/dist/node_modules/nopt/bin/nopt.js +29 -0
- package/dist/node_modules/nopt/lib/debug.js +5 -0
- package/dist/node_modules/nopt/lib/nopt-lib.js +514 -0
- package/dist/node_modules/nopt/lib/nopt.js +34 -0
- package/dist/node_modules/nopt/lib/type-defs.js +91 -0
- package/dist/node_modules/nopt/package.json +52 -0
- package/dist/node_modules/p-map/index.js +283 -0
- package/dist/node_modules/p-map/license +9 -0
- package/dist/node_modules/p-map/package.json +57 -0
- package/dist/node_modules/package-json-from-dist/dist/commonjs/index.js +134 -0
- package/dist/node_modules/package-json-from-dist/dist/commonjs/package.json +3 -0
- package/dist/node_modules/package-json-from-dist/dist/esm/index.js +129 -0
- package/dist/node_modules/package-json-from-dist/dist/esm/package.json +3 -0
- package/dist/node_modules/package-json-from-dist/package.json +68 -0
- package/dist/node_modules/path-key/index.js +16 -0
- package/dist/node_modules/path-key/license +9 -0
- package/dist/node_modules/path-key/package.json +39 -0
- package/dist/node_modules/path-scurry/dist/commonjs/index.js +2018 -0
- package/dist/node_modules/path-scurry/dist/commonjs/package.json +3 -0
- package/dist/node_modules/path-scurry/dist/esm/index.js +1983 -0
- package/dist/node_modules/path-scurry/dist/esm/package.json +3 -0
- package/dist/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.js +1589 -0
- package/dist/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.min.js +2 -0
- package/dist/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/package.json +3 -0
- package/dist/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.js +1585 -0
- package/dist/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.min.js +2 -0
- package/dist/node_modules/path-scurry/node_modules/lru-cache/dist/esm/package.json +3 -0
- package/dist/node_modules/path-scurry/node_modules/lru-cache/package.json +101 -0
- package/dist/node_modules/path-scurry/package.json +88 -0
- package/dist/node_modules/picomatch/LICENSE +21 -0
- package/dist/node_modules/picomatch/index.js +17 -0
- package/dist/node_modules/picomatch/lib/constants.js +180 -0
- package/dist/node_modules/picomatch/lib/parse.js +1085 -0
- package/dist/node_modules/picomatch/lib/picomatch.js +341 -0
- package/dist/node_modules/picomatch/lib/scan.js +391 -0
- package/dist/node_modules/picomatch/lib/utils.js +72 -0
- package/dist/node_modules/picomatch/package.json +83 -0
- package/dist/node_modules/picomatch/posix.js +3 -0
- package/dist/node_modules/proc-log/LICENSE +15 -0
- package/dist/node_modules/proc-log/lib/index.js +153 -0
- package/dist/node_modules/proc-log/package.json +46 -0
- package/dist/node_modules/promise-retry/LICENSE +19 -0
- package/dist/node_modules/promise-retry/index.js +52 -0
- package/dist/node_modules/promise-retry/package.json +37 -0
- package/dist/node_modules/retry/License +21 -0
- package/dist/node_modules/retry/equation.gif +0 -0
- package/dist/node_modules/retry/index.js +1 -0
- package/dist/node_modules/retry/lib/retry.js +100 -0
- package/dist/node_modules/retry/lib/retry_operation.js +158 -0
- package/dist/node_modules/retry/package.json +32 -0
- package/dist/node_modules/safer-buffer/LICENSE +21 -0
- package/dist/node_modules/safer-buffer/dangerous.js +58 -0
- package/dist/node_modules/safer-buffer/package.json +34 -0
- package/dist/node_modules/safer-buffer/safer.js +77 -0
- package/dist/node_modules/safer-buffer/tests.js +406 -0
- package/dist/node_modules/semver/LICENSE +15 -0
- package/dist/node_modules/semver/bin/semver.js +191 -0
- package/dist/node_modules/semver/classes/comparator.js +143 -0
- package/dist/node_modules/semver/classes/index.js +7 -0
- package/dist/node_modules/semver/classes/range.js +557 -0
- package/dist/node_modules/semver/classes/semver.js +333 -0
- package/dist/node_modules/semver/functions/clean.js +8 -0
- package/dist/node_modules/semver/functions/cmp.js +54 -0
- package/dist/node_modules/semver/functions/coerce.js +62 -0
- package/dist/node_modules/semver/functions/compare-build.js +9 -0
- package/dist/node_modules/semver/functions/compare-loose.js +5 -0
- package/dist/node_modules/semver/functions/compare.js +7 -0
- package/dist/node_modules/semver/functions/diff.js +60 -0
- package/dist/node_modules/semver/functions/eq.js +5 -0
- package/dist/node_modules/semver/functions/gt.js +5 -0
- package/dist/node_modules/semver/functions/gte.js +5 -0
- package/dist/node_modules/semver/functions/inc.js +21 -0
- package/dist/node_modules/semver/functions/lt.js +5 -0
- package/dist/node_modules/semver/functions/lte.js +5 -0
- package/dist/node_modules/semver/functions/major.js +5 -0
- package/dist/node_modules/semver/functions/minor.js +5 -0
- package/dist/node_modules/semver/functions/neq.js +5 -0
- package/dist/node_modules/semver/functions/parse.js +18 -0
- package/dist/node_modules/semver/functions/patch.js +5 -0
- package/dist/node_modules/semver/functions/prerelease.js +8 -0
- package/dist/node_modules/semver/functions/rcompare.js +5 -0
- package/dist/node_modules/semver/functions/rsort.js +5 -0
- package/dist/node_modules/semver/functions/satisfies.js +12 -0
- package/dist/node_modules/semver/functions/sort.js +5 -0
- package/dist/node_modules/semver/functions/valid.js +8 -0
- package/dist/node_modules/semver/index.js +91 -0
- package/dist/node_modules/semver/internal/constants.js +37 -0
- package/dist/node_modules/semver/internal/debug.js +11 -0
- package/dist/node_modules/semver/internal/identifiers.js +29 -0
- package/dist/node_modules/semver/internal/lrucache.js +42 -0
- package/dist/node_modules/semver/internal/parse-options.js +17 -0
- package/dist/node_modules/semver/internal/re.js +223 -0
- package/dist/node_modules/semver/package.json +78 -0
- package/dist/node_modules/semver/preload.js +4 -0
- package/dist/node_modules/semver/range.bnf +16 -0
- package/dist/node_modules/semver/ranges/gtr.js +6 -0
- package/dist/node_modules/semver/ranges/intersects.js +9 -0
- package/dist/node_modules/semver/ranges/ltr.js +6 -0
- package/dist/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/dist/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/dist/node_modules/semver/ranges/min-version.js +63 -0
- package/dist/node_modules/semver/ranges/outside.js +82 -0
- package/dist/node_modules/semver/ranges/simplify.js +49 -0
- package/dist/node_modules/semver/ranges/subset.js +249 -0
- package/dist/node_modules/semver/ranges/to-comparators.js +10 -0
- package/dist/node_modules/semver/ranges/valid.js +13 -0
- package/dist/node_modules/shebang-command/index.js +19 -0
- package/dist/node_modules/shebang-command/license +9 -0
- package/dist/node_modules/shebang-command/package.json +34 -0
- package/dist/node_modules/shebang-regex/index.js +2 -0
- package/dist/node_modules/shebang-regex/license +9 -0
- package/dist/node_modules/shebang-regex/package.json +35 -0
- package/dist/node_modules/signal-exit/LICENSE.txt +16 -0
- package/dist/node_modules/signal-exit/dist/cjs/browser.js +10 -0
- package/dist/node_modules/signal-exit/dist/cjs/index.js +279 -0
- package/dist/node_modules/signal-exit/dist/cjs/package.json +3 -0
- package/dist/node_modules/signal-exit/dist/cjs/signals.js +42 -0
- package/dist/node_modules/signal-exit/dist/mjs/browser.js +4 -0
- package/dist/node_modules/signal-exit/dist/mjs/index.js +275 -0
- package/dist/node_modules/signal-exit/dist/mjs/package.json +3 -0
- package/dist/node_modules/signal-exit/dist/mjs/signals.js +39 -0
- package/dist/node_modules/signal-exit/package.json +106 -0
- package/dist/node_modules/smart-buffer/.prettierrc.yaml +5 -0
- package/dist/node_modules/smart-buffer/LICENSE +20 -0
- package/dist/node_modules/smart-buffer/build/smartbuffer.js +1233 -0
- package/dist/node_modules/smart-buffer/build/utils.js +108 -0
- package/dist/node_modules/smart-buffer/package.json +79 -0
- package/dist/node_modules/socks/.eslintrc.cjs +11 -0
- package/dist/node_modules/socks/.prettierrc.yaml +7 -0
- package/dist/node_modules/socks/LICENSE +20 -0
- package/dist/node_modules/socks/build/client/socksclient.js +793 -0
- package/dist/node_modules/socks/build/common/constants.js +108 -0
- package/dist/node_modules/socks/build/common/helpers.js +167 -0
- package/dist/node_modules/socks/build/common/receivebuffer.js +43 -0
- package/dist/node_modules/socks/build/common/util.js +25 -0
- package/dist/node_modules/socks/build/index.js +18 -0
- package/dist/node_modules/socks/package.json +58 -0
- package/dist/node_modules/socks-proxy-agent/LICENSE +22 -0
- package/dist/node_modules/socks-proxy-agent/dist/index.js +195 -0
- package/dist/node_modules/socks-proxy-agent/package.json +142 -0
- package/dist/node_modules/ssri/lib/index.js +580 -0
- package/dist/node_modules/ssri/package.json +66 -0
- package/dist/node_modules/tar/dist/commonjs/create.js +83 -0
- package/dist/node_modules/tar/dist/commonjs/cwd-error.js +18 -0
- package/dist/node_modules/tar/dist/commonjs/extract.js +88 -0
- package/dist/node_modules/tar/dist/commonjs/get-write-flag.js +29 -0
- package/dist/node_modules/tar/dist/commonjs/header.js +325 -0
- package/dist/node_modules/tar/dist/commonjs/index.js +64 -0
- package/dist/node_modules/tar/dist/commonjs/index.min.js +4 -0
- package/dist/node_modules/tar/dist/commonjs/large-numbers.js +99 -0
- package/dist/node_modules/tar/dist/commonjs/list.js +150 -0
- package/dist/node_modules/tar/dist/commonjs/make-command.js +61 -0
- package/dist/node_modules/tar/dist/commonjs/mkdir.js +188 -0
- package/dist/node_modules/tar/dist/commonjs/mode-fix.js +29 -0
- package/dist/node_modules/tar/dist/commonjs/normalize-unicode.js +38 -0
- package/dist/node_modules/tar/dist/commonjs/normalize-windows-path.js +12 -0
- package/dist/node_modules/tar/dist/commonjs/options.js +66 -0
- package/dist/node_modules/tar/dist/commonjs/pack.js +516 -0
- package/dist/node_modules/tar/dist/commonjs/package.json +3 -0
- package/dist/node_modules/tar/dist/commonjs/parse.js +620 -0
- package/dist/node_modules/tar/dist/commonjs/path-reservations.js +170 -0
- package/dist/node_modules/tar/dist/commonjs/pax.js +158 -0
- package/dist/node_modules/tar/dist/commonjs/process-umask.js +7 -0
- package/dist/node_modules/tar/dist/commonjs/read-entry.js +140 -0
- package/dist/node_modules/tar/dist/commonjs/replace.js +232 -0
- package/dist/node_modules/tar/dist/commonjs/strip-absolute-path.js +29 -0
- package/dist/node_modules/tar/dist/commonjs/strip-trailing-slashes.js +18 -0
- package/dist/node_modules/tar/dist/commonjs/symlink-error.js +19 -0
- package/dist/node_modules/tar/dist/commonjs/types.js +50 -0
- package/dist/node_modules/tar/dist/commonjs/unpack.js +957 -0
- package/dist/node_modules/tar/dist/commonjs/update.js +33 -0
- package/dist/node_modules/tar/dist/commonjs/warn-method.js +31 -0
- package/dist/node_modules/tar/dist/commonjs/winchars.js +14 -0
- package/dist/node_modules/tar/dist/commonjs/write-entry.js +699 -0
- package/dist/node_modules/tar/dist/esm/create.js +77 -0
- package/dist/node_modules/tar/dist/esm/cwd-error.js +14 -0
- package/dist/node_modules/tar/dist/esm/extract.js +49 -0
- package/dist/node_modules/tar/dist/esm/get-write-flag.js +23 -0
- package/dist/node_modules/tar/dist/esm/header.js +288 -0
- package/dist/node_modules/tar/dist/esm/index.js +20 -0
- package/dist/node_modules/tar/dist/esm/index.min.js +4 -0
- package/dist/node_modules/tar/dist/esm/large-numbers.js +94 -0
- package/dist/node_modules/tar/dist/esm/list.js +110 -0
- package/dist/node_modules/tar/dist/esm/make-command.js +57 -0
- package/dist/node_modules/tar/dist/esm/mkdir.js +180 -0
- package/dist/node_modules/tar/dist/esm/mode-fix.js +25 -0
- package/dist/node_modules/tar/dist/esm/normalize-unicode.js +34 -0
- package/dist/node_modules/tar/dist/esm/normalize-windows-path.js +9 -0
- package/dist/node_modules/tar/dist/esm/options.js +54 -0
- package/dist/node_modules/tar/dist/esm/pack.js +474 -0
- package/dist/node_modules/tar/dist/esm/package.json +3 -0
- package/dist/node_modules/tar/dist/esm/parse.js +616 -0
- package/dist/node_modules/tar/dist/esm/path-reservations.js +166 -0
- package/dist/node_modules/tar/dist/esm/pax.js +154 -0
- package/dist/node_modules/tar/dist/esm/process-umask.js +3 -0
- package/dist/node_modules/tar/dist/esm/read-entry.js +136 -0
- package/dist/node_modules/tar/dist/esm/replace.js +226 -0
- package/dist/node_modules/tar/dist/esm/strip-absolute-path.js +25 -0
- package/dist/node_modules/tar/dist/esm/strip-trailing-slashes.js +14 -0
- package/dist/node_modules/tar/dist/esm/symlink-error.js +15 -0
- package/dist/node_modules/tar/dist/esm/types.js +45 -0
- package/dist/node_modules/tar/dist/esm/unpack.js +916 -0
- package/dist/node_modules/tar/dist/esm/update.js +30 -0
- package/dist/node_modules/tar/dist/esm/warn-method.js +27 -0
- package/dist/node_modules/tar/dist/esm/winchars.js +9 -0
- package/dist/node_modules/tar/dist/esm/write-entry.js +657 -0
- package/dist/node_modules/tar/node_modules/yallist/dist/commonjs/index.js +384 -0
- package/dist/node_modules/tar/node_modules/yallist/dist/commonjs/package.json +3 -0
- package/dist/node_modules/tar/node_modules/yallist/dist/esm/index.js +379 -0
- package/dist/node_modules/tar/node_modules/yallist/dist/esm/package.json +3 -0
- package/dist/node_modules/tar/node_modules/yallist/package.json +68 -0
- package/dist/node_modules/tar/package.json +292 -0
- package/dist/node_modules/tinyglobby/LICENSE +21 -0
- package/dist/node_modules/tinyglobby/dist/index.cjs +350 -0
- package/dist/node_modules/tinyglobby/dist/index.d.cts +147 -0
- package/dist/node_modules/tinyglobby/dist/index.d.mts +147 -0
- package/dist/node_modules/tinyglobby/dist/index.mjs +318 -0
- package/dist/node_modules/tinyglobby/package.json +73 -0
- package/dist/node_modules/unique-filename/LICENSE +5 -0
- package/dist/node_modules/unique-filename/lib/index.js +7 -0
- package/dist/node_modules/unique-filename/package.json +53 -0
- package/dist/node_modules/unique-slug/LICENSE +15 -0
- package/dist/node_modules/unique-slug/lib/index.js +11 -0
- package/dist/node_modules/unique-slug/package.json +49 -0
- package/{LICENSE → dist/node_modules/v8-compile-cache/LICENSE} +1 -2
- package/dist/node_modules/v8-compile-cache/package.json +34 -0
- package/dist/node_modules/v8-compile-cache/v8-compile-cache.js +373 -0
- package/dist/node_modules/which/LICENSE +15 -0
- package/dist/node_modules/which/bin/node-which +52 -0
- package/dist/node_modules/which/package.json +43 -0
- package/dist/node_modules/which/which.js +125 -0
- package/dist/node_modules/yallist/LICENSE +15 -0
- package/dist/node_modules/yallist/iterator.js +8 -0
- package/dist/node_modules/yallist/package.json +29 -0
- package/dist/node_modules/yallist/yallist.js +426 -0
- package/dist/pnpm.mjs +231795 -0
- package/dist/pnpmrc +2 -0
- package/dist/templates/completion.bash +31 -0
- package/dist/templates/completion.fish +22 -0
- package/dist/templates/completion.ps1 +193 -0
- package/dist/templates/completion.zsh +27 -0
- package/dist/vendor/fastlist-0.3.0-x64.exe +0 -0
- package/dist/vendor/fastlist-0.3.0-x86.exe +0 -0
- package/dist/worker.js +11930 -0
- package/package.json +17 -9
- package/setup.js +2 -1
- package/CHANGELOG.md +0 -15
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "minipass",
|
|
3
|
+
"version": "7.1.2",
|
|
4
|
+
"description": "minimal implementation of a PassThrough stream",
|
|
5
|
+
"main": "./dist/commonjs/index.js",
|
|
6
|
+
"types": "./dist/commonjs/index.d.ts",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"tshy": {
|
|
9
|
+
"selfLink": false,
|
|
10
|
+
"main": true,
|
|
11
|
+
"exports": {
|
|
12
|
+
"./package.json": "./package.json",
|
|
13
|
+
".": "./src/index.ts"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"exports": {
|
|
17
|
+
"./package.json": "./package.json",
|
|
18
|
+
".": {
|
|
19
|
+
"import": {
|
|
20
|
+
"types": "./dist/esm/index.d.ts",
|
|
21
|
+
"default": "./dist/esm/index.js"
|
|
22
|
+
},
|
|
23
|
+
"require": {
|
|
24
|
+
"types": "./dist/commonjs/index.d.ts",
|
|
25
|
+
"default": "./dist/commonjs/index.js"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"preversion": "npm test",
|
|
34
|
+
"postversion": "npm publish",
|
|
35
|
+
"prepublishOnly": "git push origin --follow-tags",
|
|
36
|
+
"prepare": "tshy",
|
|
37
|
+
"pretest": "npm run prepare",
|
|
38
|
+
"presnap": "npm run prepare",
|
|
39
|
+
"test": "tap",
|
|
40
|
+
"snap": "tap",
|
|
41
|
+
"format": "prettier --write . --loglevel warn",
|
|
42
|
+
"typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts"
|
|
43
|
+
},
|
|
44
|
+
"prettier": {
|
|
45
|
+
"semi": false,
|
|
46
|
+
"printWidth": 75,
|
|
47
|
+
"tabWidth": 2,
|
|
48
|
+
"useTabs": false,
|
|
49
|
+
"singleQuote": true,
|
|
50
|
+
"jsxSingleQuote": false,
|
|
51
|
+
"bracketSameLine": true,
|
|
52
|
+
"arrowParens": "avoid",
|
|
53
|
+
"endOfLine": "lf"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@types/end-of-stream": "^1.4.2",
|
|
57
|
+
"@types/node": "^20.1.2",
|
|
58
|
+
"end-of-stream": "^1.4.0",
|
|
59
|
+
"node-abort-controller": "^3.1.1",
|
|
60
|
+
"prettier": "^2.6.2",
|
|
61
|
+
"tap": "^19.0.0",
|
|
62
|
+
"through2": "^2.0.3",
|
|
63
|
+
"tshy": "^1.14.0",
|
|
64
|
+
"typedoc": "^0.25.1"
|
|
65
|
+
},
|
|
66
|
+
"repository": "https://github.com/isaacs/minipass",
|
|
67
|
+
"keywords": [
|
|
68
|
+
"passthrough",
|
|
69
|
+
"stream"
|
|
70
|
+
],
|
|
71
|
+
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
|
|
72
|
+
"license": "ISC",
|
|
73
|
+
"engines": {
|
|
74
|
+
"node": ">=16 || 14 >=14.17"
|
|
75
|
+
},
|
|
76
|
+
"tap": {
|
|
77
|
+
"typecheck": true,
|
|
78
|
+
"include": [
|
|
79
|
+
"test/*.ts"
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
The ISC License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019-2023 Isaac Z. Schlueter and Contributors
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
7
|
+
copyright notice and this permission notice appear in all copies.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
10
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
11
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
12
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
13
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
14
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
15
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
const { Minipass } = require('minipass')
|
|
2
|
+
const _data = Symbol('_data')
|
|
3
|
+
const _length = Symbol('_length')
|
|
4
|
+
class Collect extends Minipass {
|
|
5
|
+
constructor (options) {
|
|
6
|
+
super(options)
|
|
7
|
+
this[_data] = []
|
|
8
|
+
this[_length] = 0
|
|
9
|
+
}
|
|
10
|
+
write (chunk, encoding, cb) {
|
|
11
|
+
if (typeof encoding === 'function')
|
|
12
|
+
cb = encoding, encoding = 'utf8'
|
|
13
|
+
|
|
14
|
+
if (!encoding)
|
|
15
|
+
encoding = 'utf8'
|
|
16
|
+
|
|
17
|
+
const c = Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk, encoding)
|
|
18
|
+
this[_data].push(c)
|
|
19
|
+
this[_length] += c.length
|
|
20
|
+
if (cb)
|
|
21
|
+
cb()
|
|
22
|
+
return true
|
|
23
|
+
}
|
|
24
|
+
end (chunk, encoding, cb) {
|
|
25
|
+
if (typeof chunk === 'function')
|
|
26
|
+
cb = chunk, chunk = null
|
|
27
|
+
if (typeof encoding === 'function')
|
|
28
|
+
cb = encoding, encoding = 'utf8'
|
|
29
|
+
if (chunk)
|
|
30
|
+
this.write(chunk, encoding)
|
|
31
|
+
const result = Buffer.concat(this[_data], this[_length])
|
|
32
|
+
super.write(result)
|
|
33
|
+
return super.end(cb)
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
module.exports = Collect
|
|
37
|
+
|
|
38
|
+
// it would be possible to DRY this a bit by doing something like
|
|
39
|
+
// this.collector = new Collect() and listening on its data event,
|
|
40
|
+
// but it's not much code, and we may as well save the extra obj
|
|
41
|
+
class CollectPassThrough extends Minipass {
|
|
42
|
+
constructor (options) {
|
|
43
|
+
super(options)
|
|
44
|
+
this[_data] = []
|
|
45
|
+
this[_length] = 0
|
|
46
|
+
}
|
|
47
|
+
write (chunk, encoding, cb) {
|
|
48
|
+
if (typeof encoding === 'function')
|
|
49
|
+
cb = encoding, encoding = 'utf8'
|
|
50
|
+
|
|
51
|
+
if (!encoding)
|
|
52
|
+
encoding = 'utf8'
|
|
53
|
+
|
|
54
|
+
const c = Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk, encoding)
|
|
55
|
+
this[_data].push(c)
|
|
56
|
+
this[_length] += c.length
|
|
57
|
+
return super.write(chunk, encoding, cb)
|
|
58
|
+
}
|
|
59
|
+
end (chunk, encoding, cb) {
|
|
60
|
+
if (typeof chunk === 'function')
|
|
61
|
+
cb = chunk, chunk = null
|
|
62
|
+
if (typeof encoding === 'function')
|
|
63
|
+
cb = encoding, encoding = 'utf8'
|
|
64
|
+
if (chunk)
|
|
65
|
+
this.write(chunk, encoding)
|
|
66
|
+
const result = Buffer.concat(this[_data], this[_length])
|
|
67
|
+
this.emit('collect', result)
|
|
68
|
+
return super.end(cb)
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
module.exports.PassThrough = CollectPassThrough
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "minipass-collect",
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "A Minipass stream that collects all the data into a single chunk",
|
|
5
|
+
"author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
|
|
6
|
+
"license": "ISC",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "tap",
|
|
9
|
+
"snap": "tap",
|
|
10
|
+
"preversion": "npm test",
|
|
11
|
+
"postversion": "npm publish",
|
|
12
|
+
"prepublishOnly": "git push origin --follow-tags"
|
|
13
|
+
},
|
|
14
|
+
"tap": {
|
|
15
|
+
"check-coverage": true
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"tap": "^16.3.8"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"minipass": "^7.0.3"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"index.js"
|
|
25
|
+
],
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=16 || 14 >=14.17"
|
|
28
|
+
},
|
|
29
|
+
"repository": "https://github.com/isaacs/minipass-collect"
|
|
30
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
4
|
+
Copyright (c) 2016 David Frank
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
Note: This is a derivative work based on "node-fetch" by David Frank,
|
|
27
|
+
modified and distributed under the terms of the MIT license above.
|
|
28
|
+
https://github.com/bitinn/node-fetch
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
class AbortError extends Error {
|
|
3
|
+
constructor (message) {
|
|
4
|
+
super(message)
|
|
5
|
+
this.code = 'FETCH_ABORTED'
|
|
6
|
+
this.type = 'aborted'
|
|
7
|
+
Error.captureStackTrace(this, this.constructor)
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
get name () {
|
|
11
|
+
return 'AbortError'
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
// don't allow name to be overridden, but don't throw either
|
|
15
|
+
set name (s) {}
|
|
16
|
+
}
|
|
17
|
+
module.exports = AbortError
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
const { Minipass } = require('minipass')
|
|
3
|
+
const TYPE = Symbol('type')
|
|
4
|
+
const BUFFER = Symbol('buffer')
|
|
5
|
+
|
|
6
|
+
class Blob {
|
|
7
|
+
constructor (blobParts, options) {
|
|
8
|
+
this[TYPE] = ''
|
|
9
|
+
|
|
10
|
+
const buffers = []
|
|
11
|
+
let size = 0
|
|
12
|
+
|
|
13
|
+
if (blobParts) {
|
|
14
|
+
const a = blobParts
|
|
15
|
+
const length = Number(a.length)
|
|
16
|
+
for (let i = 0; i < length; i++) {
|
|
17
|
+
const element = a[i]
|
|
18
|
+
const buffer = element instanceof Buffer ? element
|
|
19
|
+
: ArrayBuffer.isView(element)
|
|
20
|
+
? Buffer.from(element.buffer, element.byteOffset, element.byteLength)
|
|
21
|
+
: element instanceof ArrayBuffer ? Buffer.from(element)
|
|
22
|
+
: element instanceof Blob ? element[BUFFER]
|
|
23
|
+
: typeof element === 'string' ? Buffer.from(element)
|
|
24
|
+
: Buffer.from(String(element))
|
|
25
|
+
size += buffer.length
|
|
26
|
+
buffers.push(buffer)
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
this[BUFFER] = Buffer.concat(buffers, size)
|
|
31
|
+
|
|
32
|
+
const type = options && options.type !== undefined
|
|
33
|
+
&& String(options.type).toLowerCase()
|
|
34
|
+
if (type && !/[^\u0020-\u007E]/.test(type)) {
|
|
35
|
+
this[TYPE] = type
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
get size () {
|
|
40
|
+
return this[BUFFER].length
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
get type () {
|
|
44
|
+
return this[TYPE]
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
text () {
|
|
48
|
+
return Promise.resolve(this[BUFFER].toString())
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
arrayBuffer () {
|
|
52
|
+
const buf = this[BUFFER]
|
|
53
|
+
const off = buf.byteOffset
|
|
54
|
+
const len = buf.byteLength
|
|
55
|
+
const ab = buf.buffer.slice(off, off + len)
|
|
56
|
+
return Promise.resolve(ab)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
stream () {
|
|
60
|
+
return new Minipass().end(this[BUFFER])
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
slice (start, end, type) {
|
|
64
|
+
const size = this.size
|
|
65
|
+
const relativeStart = start === undefined ? 0
|
|
66
|
+
: start < 0 ? Math.max(size + start, 0)
|
|
67
|
+
: Math.min(start, size)
|
|
68
|
+
const relativeEnd = end === undefined ? size
|
|
69
|
+
: end < 0 ? Math.max(size + end, 0)
|
|
70
|
+
: Math.min(end, size)
|
|
71
|
+
const span = Math.max(relativeEnd - relativeStart, 0)
|
|
72
|
+
|
|
73
|
+
const buffer = this[BUFFER]
|
|
74
|
+
const slicedBuffer = buffer.slice(
|
|
75
|
+
relativeStart,
|
|
76
|
+
relativeStart + span
|
|
77
|
+
)
|
|
78
|
+
const blob = new Blob([], { type })
|
|
79
|
+
blob[BUFFER] = slicedBuffer
|
|
80
|
+
return blob
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
get [Symbol.toStringTag] () {
|
|
84
|
+
return 'Blob'
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
static get BUFFER () {
|
|
88
|
+
return BUFFER
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
Object.defineProperties(Blob.prototype, {
|
|
93
|
+
size: { enumerable: true },
|
|
94
|
+
type: { enumerable: true },
|
|
95
|
+
})
|
|
96
|
+
|
|
97
|
+
module.exports = Blob
|
|
@@ -0,0 +1,350 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
const { Minipass } = require('minipass')
|
|
3
|
+
const MinipassSized = require('minipass-sized')
|
|
4
|
+
|
|
5
|
+
const Blob = require('./blob.js')
|
|
6
|
+
const { BUFFER } = Blob
|
|
7
|
+
const FetchError = require('./fetch-error.js')
|
|
8
|
+
|
|
9
|
+
// optional dependency on 'encoding'
|
|
10
|
+
let convert
|
|
11
|
+
try {
|
|
12
|
+
convert = require('encoding').convert
|
|
13
|
+
} catch (e) {
|
|
14
|
+
// defer error until textConverted is called
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
const INTERNALS = Symbol('Body internals')
|
|
18
|
+
const CONSUME_BODY = Symbol('consumeBody')
|
|
19
|
+
|
|
20
|
+
class Body {
|
|
21
|
+
constructor (bodyArg, options = {}) {
|
|
22
|
+
const { size = 0, timeout = 0 } = options
|
|
23
|
+
const body = bodyArg === undefined || bodyArg === null ? null
|
|
24
|
+
: isURLSearchParams(bodyArg) ? Buffer.from(bodyArg.toString())
|
|
25
|
+
: isBlob(bodyArg) ? bodyArg
|
|
26
|
+
: Buffer.isBuffer(bodyArg) ? bodyArg
|
|
27
|
+
: Object.prototype.toString.call(bodyArg) === '[object ArrayBuffer]'
|
|
28
|
+
? Buffer.from(bodyArg)
|
|
29
|
+
: ArrayBuffer.isView(bodyArg)
|
|
30
|
+
? Buffer.from(bodyArg.buffer, bodyArg.byteOffset, bodyArg.byteLength)
|
|
31
|
+
: Minipass.isStream(bodyArg) ? bodyArg
|
|
32
|
+
: Buffer.from(String(bodyArg))
|
|
33
|
+
|
|
34
|
+
this[INTERNALS] = {
|
|
35
|
+
body,
|
|
36
|
+
disturbed: false,
|
|
37
|
+
error: null,
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
this.size = size
|
|
41
|
+
this.timeout = timeout
|
|
42
|
+
|
|
43
|
+
if (Minipass.isStream(body)) {
|
|
44
|
+
body.on('error', er => {
|
|
45
|
+
const error = er.name === 'AbortError' ? er
|
|
46
|
+
: new FetchError(`Invalid response while trying to fetch ${
|
|
47
|
+
this.url}: ${er.message}`, 'system', er)
|
|
48
|
+
this[INTERNALS].error = error
|
|
49
|
+
})
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
get body () {
|
|
54
|
+
return this[INTERNALS].body
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
get bodyUsed () {
|
|
58
|
+
return this[INTERNALS].disturbed
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
arrayBuffer () {
|
|
62
|
+
return this[CONSUME_BODY]().then(buf =>
|
|
63
|
+
buf.buffer.slice(buf.byteOffset, buf.byteOffset + buf.byteLength))
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
blob () {
|
|
67
|
+
const ct = this.headers && this.headers.get('content-type') || ''
|
|
68
|
+
return this[CONSUME_BODY]().then(buf => Object.assign(
|
|
69
|
+
new Blob([], { type: ct.toLowerCase() }),
|
|
70
|
+
{ [BUFFER]: buf }
|
|
71
|
+
))
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
async json () {
|
|
75
|
+
const buf = await this[CONSUME_BODY]()
|
|
76
|
+
try {
|
|
77
|
+
return JSON.parse(buf.toString())
|
|
78
|
+
} catch (er) {
|
|
79
|
+
throw new FetchError(
|
|
80
|
+
`invalid json response body at ${this.url} reason: ${er.message}`,
|
|
81
|
+
'invalid-json'
|
|
82
|
+
)
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
text () {
|
|
87
|
+
return this[CONSUME_BODY]().then(buf => buf.toString())
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
buffer () {
|
|
91
|
+
return this[CONSUME_BODY]()
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
textConverted () {
|
|
95
|
+
return this[CONSUME_BODY]().then(buf => convertBody(buf, this.headers))
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
[CONSUME_BODY] () {
|
|
99
|
+
if (this[INTERNALS].disturbed) {
|
|
100
|
+
return Promise.reject(new TypeError(`body used already for: ${
|
|
101
|
+
this.url}`))
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
this[INTERNALS].disturbed = true
|
|
105
|
+
|
|
106
|
+
if (this[INTERNALS].error) {
|
|
107
|
+
return Promise.reject(this[INTERNALS].error)
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
// body is null
|
|
111
|
+
if (this.body === null) {
|
|
112
|
+
return Promise.resolve(Buffer.alloc(0))
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
if (Buffer.isBuffer(this.body)) {
|
|
116
|
+
return Promise.resolve(this.body)
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
const upstream = isBlob(this.body) ? this.body.stream() : this.body
|
|
120
|
+
|
|
121
|
+
/* istanbul ignore if: should never happen */
|
|
122
|
+
if (!Minipass.isStream(upstream)) {
|
|
123
|
+
return Promise.resolve(Buffer.alloc(0))
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
const stream = this.size && upstream instanceof MinipassSized ? upstream
|
|
127
|
+
: !this.size && upstream instanceof Minipass &&
|
|
128
|
+
!(upstream instanceof MinipassSized) ? upstream
|
|
129
|
+
: this.size ? new MinipassSized({ size: this.size })
|
|
130
|
+
: new Minipass()
|
|
131
|
+
|
|
132
|
+
// allow timeout on slow response body, but only if the stream is still writable. this
|
|
133
|
+
// makes the timeout center on the socket stream from lib/index.js rather than the
|
|
134
|
+
// intermediary minipass stream we create to receive the data
|
|
135
|
+
const resTimeout = this.timeout && stream.writable ? setTimeout(() => {
|
|
136
|
+
stream.emit('error', new FetchError(
|
|
137
|
+
`Response timeout while trying to fetch ${
|
|
138
|
+
this.url} (over ${this.timeout}ms)`, 'body-timeout'))
|
|
139
|
+
}, this.timeout) : null
|
|
140
|
+
|
|
141
|
+
// do not keep the process open just for this timeout, even
|
|
142
|
+
// though we expect it'll get cleared eventually.
|
|
143
|
+
if (resTimeout && resTimeout.unref) {
|
|
144
|
+
resTimeout.unref()
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
// do the pipe in the promise, because the pipe() can send too much
|
|
148
|
+
// data through right away and upset the MP Sized object
|
|
149
|
+
return new Promise((resolve) => {
|
|
150
|
+
// if the stream is some other kind of stream, then pipe through a MP
|
|
151
|
+
// so we can collect it more easily.
|
|
152
|
+
if (stream !== upstream) {
|
|
153
|
+
upstream.on('error', er => stream.emit('error', er))
|
|
154
|
+
upstream.pipe(stream)
|
|
155
|
+
}
|
|
156
|
+
resolve()
|
|
157
|
+
}).then(() => stream.concat()).then(buf => {
|
|
158
|
+
clearTimeout(resTimeout)
|
|
159
|
+
return buf
|
|
160
|
+
}).catch(er => {
|
|
161
|
+
clearTimeout(resTimeout)
|
|
162
|
+
// request was aborted, reject with this Error
|
|
163
|
+
if (er.name === 'AbortError' || er.name === 'FetchError') {
|
|
164
|
+
throw er
|
|
165
|
+
} else if (er.name === 'RangeError') {
|
|
166
|
+
throw new FetchError(`Could not create Buffer from response body for ${
|
|
167
|
+
this.url}: ${er.message}`, 'system', er)
|
|
168
|
+
} else {
|
|
169
|
+
// other errors, such as incorrect content-encoding or content-length
|
|
170
|
+
throw new FetchError(`Invalid response body while trying to fetch ${
|
|
171
|
+
this.url}: ${er.message}`, 'system', er)
|
|
172
|
+
}
|
|
173
|
+
})
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
static clone (instance) {
|
|
177
|
+
if (instance.bodyUsed) {
|
|
178
|
+
throw new Error('cannot clone body after it is used')
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
const body = instance.body
|
|
182
|
+
|
|
183
|
+
// check that body is a stream and not form-data object
|
|
184
|
+
// NB: can't clone the form-data object without having it as a dependency
|
|
185
|
+
if (Minipass.isStream(body) && typeof body.getBoundary !== 'function') {
|
|
186
|
+
// create a dedicated tee stream so that we don't lose data
|
|
187
|
+
// potentially sitting in the body stream's buffer by writing it
|
|
188
|
+
// immediately to p1 and not having it for p2.
|
|
189
|
+
const tee = new Minipass()
|
|
190
|
+
const p1 = new Minipass()
|
|
191
|
+
const p2 = new Minipass()
|
|
192
|
+
tee.on('error', er => {
|
|
193
|
+
p1.emit('error', er)
|
|
194
|
+
p2.emit('error', er)
|
|
195
|
+
})
|
|
196
|
+
body.on('error', er => tee.emit('error', er))
|
|
197
|
+
tee.pipe(p1)
|
|
198
|
+
tee.pipe(p2)
|
|
199
|
+
body.pipe(tee)
|
|
200
|
+
// set instance body to one fork, return the other
|
|
201
|
+
instance[INTERNALS].body = p1
|
|
202
|
+
return p2
|
|
203
|
+
} else {
|
|
204
|
+
return instance.body
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
static extractContentType (body) {
|
|
209
|
+
return body === null || body === undefined ? null
|
|
210
|
+
: typeof body === 'string' ? 'text/plain;charset=UTF-8'
|
|
211
|
+
: isURLSearchParams(body)
|
|
212
|
+
? 'application/x-www-form-urlencoded;charset=UTF-8'
|
|
213
|
+
: isBlob(body) ? body.type || null
|
|
214
|
+
: Buffer.isBuffer(body) ? null
|
|
215
|
+
: Object.prototype.toString.call(body) === '[object ArrayBuffer]' ? null
|
|
216
|
+
: ArrayBuffer.isView(body) ? null
|
|
217
|
+
: typeof body.getBoundary === 'function'
|
|
218
|
+
? `multipart/form-data;boundary=${body.getBoundary()}`
|
|
219
|
+
: Minipass.isStream(body) ? null
|
|
220
|
+
: 'text/plain;charset=UTF-8'
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
static getTotalBytes (instance) {
|
|
224
|
+
const { body } = instance
|
|
225
|
+
return (body === null || body === undefined) ? 0
|
|
226
|
+
: isBlob(body) ? body.size
|
|
227
|
+
: Buffer.isBuffer(body) ? body.length
|
|
228
|
+
: body && typeof body.getLengthSync === 'function' && (
|
|
229
|
+
// detect form data input from form-data module
|
|
230
|
+
body._lengthRetrievers &&
|
|
231
|
+
/* istanbul ignore next */ body._lengthRetrievers.length === 0 || // 1.x
|
|
232
|
+
body.hasKnownLength && body.hasKnownLength()) // 2.x
|
|
233
|
+
? body.getLengthSync()
|
|
234
|
+
: null
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
static writeToStream (dest, instance) {
|
|
238
|
+
const { body } = instance
|
|
239
|
+
|
|
240
|
+
if (body === null || body === undefined) {
|
|
241
|
+
dest.end()
|
|
242
|
+
} else if (Buffer.isBuffer(body) || typeof body === 'string') {
|
|
243
|
+
dest.end(body)
|
|
244
|
+
} else {
|
|
245
|
+
// body is stream or blob
|
|
246
|
+
const stream = isBlob(body) ? body.stream() : body
|
|
247
|
+
stream.on('error', er => dest.emit('error', er)).pipe(dest)
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
return dest
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
Object.defineProperties(Body.prototype, {
|
|
255
|
+
body: { enumerable: true },
|
|
256
|
+
bodyUsed: { enumerable: true },
|
|
257
|
+
arrayBuffer: { enumerable: true },
|
|
258
|
+
blob: { enumerable: true },
|
|
259
|
+
json: { enumerable: true },
|
|
260
|
+
text: { enumerable: true },
|
|
261
|
+
})
|
|
262
|
+
|
|
263
|
+
const isURLSearchParams = obj =>
|
|
264
|
+
// Duck-typing as a necessary condition.
|
|
265
|
+
(typeof obj !== 'object' ||
|
|
266
|
+
typeof obj.append !== 'function' ||
|
|
267
|
+
typeof obj.delete !== 'function' ||
|
|
268
|
+
typeof obj.get !== 'function' ||
|
|
269
|
+
typeof obj.getAll !== 'function' ||
|
|
270
|
+
typeof obj.has !== 'function' ||
|
|
271
|
+
typeof obj.set !== 'function') ? false
|
|
272
|
+
// Brand-checking and more duck-typing as optional condition.
|
|
273
|
+
: obj.constructor.name === 'URLSearchParams' ||
|
|
274
|
+
Object.prototype.toString.call(obj) === '[object URLSearchParams]' ||
|
|
275
|
+
typeof obj.sort === 'function'
|
|
276
|
+
|
|
277
|
+
const isBlob = obj =>
|
|
278
|
+
typeof obj === 'object' &&
|
|
279
|
+
typeof obj.arrayBuffer === 'function' &&
|
|
280
|
+
typeof obj.type === 'string' &&
|
|
281
|
+
typeof obj.stream === 'function' &&
|
|
282
|
+
typeof obj.constructor === 'function' &&
|
|
283
|
+
typeof obj.constructor.name === 'string' &&
|
|
284
|
+
/^(Blob|File)$/.test(obj.constructor.name) &&
|
|
285
|
+
/^(Blob|File)$/.test(obj[Symbol.toStringTag])
|
|
286
|
+
|
|
287
|
+
const convertBody = (buffer, headers) => {
|
|
288
|
+
/* istanbul ignore if */
|
|
289
|
+
if (typeof convert !== 'function') {
|
|
290
|
+
throw new Error('The package `encoding` must be installed to use the textConverted() function')
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
const ct = headers && headers.get('content-type')
|
|
294
|
+
let charset = 'utf-8'
|
|
295
|
+
let res
|
|
296
|
+
|
|
297
|
+
// header
|
|
298
|
+
if (ct) {
|
|
299
|
+
res = /charset=([^;]*)/i.exec(ct)
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
// no charset in content type, peek at response body for at most 1024 bytes
|
|
303
|
+
const str = buffer.slice(0, 1024).toString()
|
|
304
|
+
|
|
305
|
+
// html5
|
|
306
|
+
if (!res && str) {
|
|
307
|
+
res = /<meta.+?charset=(['"])(.+?)\1/i.exec(str)
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
// html4
|
|
311
|
+
if (!res && str) {
|
|
312
|
+
res = /<meta[\s]+?http-equiv=(['"])content-type\1[\s]+?content=(['"])(.+?)\2/i.exec(str)
|
|
313
|
+
|
|
314
|
+
if (!res) {
|
|
315
|
+
res = /<meta[\s]+?content=(['"])(.+?)\1[\s]+?http-equiv=(['"])content-type\3/i.exec(str)
|
|
316
|
+
if (res) {
|
|
317
|
+
res.pop()
|
|
318
|
+
} // drop last quote
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
if (res) {
|
|
322
|
+
res = /charset=(.*)/i.exec(res.pop())
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
// xml
|
|
327
|
+
if (!res && str) {
|
|
328
|
+
res = /<\?xml.+?encoding=(['"])(.+?)\1/i.exec(str)
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
// found charset
|
|
332
|
+
if (res) {
|
|
333
|
+
charset = res.pop()
|
|
334
|
+
|
|
335
|
+
// prevent decode issues when sites use incorrect encoding
|
|
336
|
+
// ref: https://hsivonen.fi/encoding-menu/
|
|
337
|
+
if (charset === 'gb2312' || charset === 'gbk') {
|
|
338
|
+
charset = 'gb18030'
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
// turn raw buffers into a single utf-8 buffer
|
|
343
|
+
return convert(
|
|
344
|
+
buffer,
|
|
345
|
+
'UTF-8',
|
|
346
|
+
charset
|
|
347
|
+
).toString()
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
module.exports = Body
|