{"_id":"undici-types","_rev":"43-c68575542b5f74ead16cf1596def902a","name":"undici-types","dist-tags":{"latest":"6.13.0","test":"5.24.0-test.6"},"versions":{"0.0.1":{"name":"undici-types","version":"0.0.1","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","author":{"name":"Matteo Collina","email":"hello@matteocollina.com"},"gitHead":"4d7c319d67a73f7284216ac38e81be4f94f70cde","_id":"undici-types@0.0.1","_nodeVersion":"16.20.0","_npmVersion":"8.19.4","dist":{"integrity":"sha512-coq2VfeV80wvuLUDdbpcg4vBJQiWbPSSoJk2ra6a6BvehnZaqwh3M9CubAJRfCMujX4uM8JTVPXTYaCihJuOSw==","shasum":"2dde5a7111c75a79446548d943fe4fd64adb6c99","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-0.0.1.tgz","fileCount":36,"unpackedSize":89683,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCXiMT8UhahBI/MeKUYpli//nUE0ip0Xam2p7CZWrFljwIhANmuJCbHZiKzJYiduLW9eyaAQXEJRdYHz/K0PLzXqlx1"}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_0.0.1_1695136175361_0.8015107674328446"},"_hasShrinkwrap":false},"5.24.0-test.2":{"name":"undici-types","version":"5.24.0-test.2","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","author":{"name":"Matteo Collina","email":"hello@matteocollina.com"},"readme":"# undici\n\n[![Node CI](https://github.com/nodejs/undici/actions/workflows/nodejs.yml/badge.svg)](https://github.com/nodejs/undici/actions/workflows/nodejs.yml) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](http://standardjs.com/) [![npm version](https://badge.fury.io/js/undici.svg)](https://badge.fury.io/js/undici) [![codecov](https://codecov.io/gh/nodejs/undici/branch/main/graph/badge.svg?token=yZL6LtXkOA)](https://codecov.io/gh/nodejs/undici)\n\nAn HTTP/1.1 client, written from scratch for Node.js.\n\n> Undici means eleven in Italian. 1.1 -> 11 -> Eleven -> Undici.\nIt is also a Stranger Things reference.\n\nHave a question about using Undici? Open a [Q&A Discussion](https://github.com/nodejs/undici/discussions/new) or join our official OpenJS [Slack](https://openjs-foundation.slack.com/archives/C01QF9Q31QD) channel.\n\n## Install\n\n```\nnpm i undici\n```\n\n## Benchmarks\n\nThe benchmark is a simple `hello world` [example](benchmarks/benchmark.js) using a\nnumber of unix sockets (connections) with a pipelining depth of 10 running on Node 20.6.0.\n\n### Connections 1\n\n\n| Tests               | Samples |        Result | Tolerance | Difference with slowest |\n|---------------------|---------|---------------|-----------|-------------------------|\n| http - no keepalive |      15 |  5.32 req/sec |  ± 2.61 % |                       - |\n| http - keepalive    |      10 |  5.35 req/sec |  ± 2.47 % |                + 0.44 % |\n| undici - fetch      |      15 | 41.85 req/sec |  ± 2.49 % |              + 686.04 % |\n| undici - pipeline   |      40 | 50.36 req/sec |  ± 2.77 % |              + 845.92 % |\n| undici - stream     |      15 | 60.58 req/sec |  ± 2.75 % |             + 1037.72 % |\n| undici - request    |      10 | 61.19 req/sec |  ± 2.60 % |             + 1049.24 % |\n| undici - dispatch   |      20 | 64.84 req/sec |  ± 2.81 % |             + 1117.81 % |\n\n\n### Connections 50\n\n| Tests               | Samples |           Result | Tolerance | Difference with slowest |\n|---------------------|---------|------------------|-----------|-------------------------|\n| undici - fetch      |      30 |  2107.19 req/sec |  ± 2.69 % |                       - |\n| http - no keepalive |      10 |  2698.90 req/sec |  ± 2.68 % |               + 28.08 % |\n| http - keepalive    |      10 |  4639.49 req/sec |  ± 2.55 % |              + 120.17 % |\n| undici - pipeline   |      40 |  6123.33 req/sec |  ± 2.97 % |              + 190.59 % |\n| undici - stream     |      50 |  9426.51 req/sec |  ± 2.92 % |              + 347.35 % |\n| undici - request    |      10 | 10162.88 req/sec |  ± 2.13 % |              + 382.29 % |\n| undici - dispatch   |      50 | 11191.11 req/sec |  ± 2.98 % |              + 431.09 % |\n\n\n## Quick Start\n\n```js\nimport { request } from 'undici'\n\nconst {\n  statusCode,\n  headers,\n  trailers,\n  body\n} = await request('http://localhost:3000/foo')\n\nconsole.log('response received', statusCode)\nconsole.log('headers', headers)\n\nfor await (const data of body) {\n  console.log('data', data)\n}\n\nconsole.log('trailers', trailers)\n```\n\n## Body Mixins\n\nThe `body` mixins are the most common way to format the request/response body. Mixins include:\n\n- [`.formData()`](https://fetch.spec.whatwg.org/#dom-body-formdata)\n- [`.json()`](https://fetch.spec.whatwg.org/#dom-body-json)\n- [`.text()`](https://fetch.spec.whatwg.org/#dom-body-text)\n\nExample usage:\n\n```js\nimport { request } from 'undici'\n\nconst {\n  statusCode,\n  headers,\n  trailers,\n  body\n} = await request('http://localhost:3000/foo')\n\nconsole.log('response received', statusCode)\nconsole.log('headers', headers)\nconsole.log('data', await body.json())\nconsole.log('trailers', trailers)\n```\n\n_Note: Once a mixin has been called then the body cannot be reused, thus calling additional mixins on `.body`, e.g. `.body.json(); .body.text()` will result in an error `TypeError: unusable` being thrown and returned through the `Promise` rejection._\n\nShould you need to access the `body` in plain-text after using a mixin, the best practice is to use the `.text()` mixin first and then manually parse the text to the desired format.\n\nFor more information about their behavior, please reference the body mixin from the [Fetch Standard](https://fetch.spec.whatwg.org/#body-mixin).\n\n## Common API Methods\n\nThis section documents our most commonly used API methods. Additional APIs are documented in their own files within the [docs](./docs/) folder and are accessible via the navigation list on the left side of the docs site.\n\n### `undici.request([url, options]): Promise`\n\nArguments:\n\n* **url** `string | URL | UrlObject`\n* **options** [`RequestOptions`](./docs/api/Dispatcher.md#parameter-requestoptions)\n  * **dispatcher** `Dispatcher` - Default: [getGlobalDispatcher](#undicigetglobaldispatcher)\n  * **method** `String` - Default: `PUT` if `options.body`, otherwise `GET`\n  * **maxRedirections** `Integer` - Default: `0`\n\nReturns a promise with the result of the `Dispatcher.request` method.\n\nCalls `options.dispatcher.request(options)`.\n\nSee [Dispatcher.request](./docs/api/Dispatcher.md#dispatcherrequestoptions-callback) for more details.\n\n### `undici.stream([url, options, ]factory): Promise`\n\nArguments:\n\n* **url** `string | URL | UrlObject`\n* **options** [`StreamOptions`](./docs/api/Dispatcher.md#parameter-streamoptions)\n  * **dispatcher** `Dispatcher` - Default: [getGlobalDispatcher](#undicigetglobaldispatcher)\n  * **method** `String` - Default: `PUT` if `options.body`, otherwise `GET`\n  * **maxRedirections** `Integer` - Default: `0`\n* **factory** `Dispatcher.stream.factory`\n\nReturns a promise with the result of the `Dispatcher.stream` method.\n\nCalls `options.dispatcher.stream(options, factory)`.\n\nSee [Dispatcher.stream](docs/api/Dispatcher.md#dispatcherstreamoptions-factory-callback) for more details.\n\n### `undici.pipeline([url, options, ]handler): Duplex`\n\nArguments:\n\n* **url** `string | URL | UrlObject`\n* **options** [`PipelineOptions`](docs/api/Dispatcher.md#parameter-pipelineoptions)\n  * **dispatcher** `Dispatcher` - Default: [getGlobalDispatcher](#undicigetglobaldispatcher)\n  * **method** `String` - Default: `PUT` if `options.body`, otherwise `GET`\n  * **maxRedirections** `Integer` - Default: `0`\n* **handler** `Dispatcher.pipeline.handler`\n\nReturns: `stream.Duplex`\n\nCalls `options.dispatch.pipeline(options, handler)`.\n\nSee [Dispatcher.pipeline](docs/api/Dispatcher.md#dispatcherpipelineoptions-handler) for more details.\n\n### `undici.connect([url, options]): Promise`\n\nStarts two-way communications with the requested resource using [HTTP CONNECT](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/CONNECT).\n\nArguments:\n\n* **url** `string | URL | UrlObject`\n* **options** [`ConnectOptions`](docs/api/Dispatcher.md#parameter-connectoptions)\n  * **dispatcher** `Dispatcher` - Default: [getGlobalDispatcher](#undicigetglobaldispatcher)\n  * **maxRedirections** `Integer` - Default: `0`\n* **callback** `(err: Error | null, data: ConnectData | null) => void` (optional)\n\nReturns a promise with the result of the `Dispatcher.connect` method.\n\nCalls `options.dispatch.connect(options)`.\n\nSee [Dispatcher.connect](docs/api/Dispatcher.md#dispatcherconnectoptions-callback) for more details.\n\n### `undici.fetch(input[, init]): Promise`\n\nImplements [fetch](https://fetch.spec.whatwg.org/#fetch-method).\n\n* https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch\n* https://fetch.spec.whatwg.org/#fetch-method\n\nOnly supported on Node 16.8+.\n\nBasic usage example:\n\n```js\nimport { fetch } from 'undici'\n\n\nconst res = await fetch('https://example.com')\nconst json = await res.json()\nconsole.log(json)\n```\n\nYou can pass an optional dispatcher to `fetch` as:\n\n```js\nimport { fetch, Agent } from 'undici'\n\nconst res = await fetch('https://example.com', {\n  // Mocks are also supported\n  dispatcher: new Agent({\n    keepAliveTimeout: 10,\n    keepAliveMaxTimeout: 10\n  })\n})\nconst json = await res.json()\nconsole.log(json)\n```\n\n#### `request.body`\n\nA body can be of the following types:\n\n- ArrayBuffer\n- ArrayBufferView\n- AsyncIterables\n- Blob\n- Iterables\n- String\n- URLSearchParams\n- FormData\n\nIn this implementation of fetch, ```request.body``` now accepts ```Async Iterables```. It is not present in the [Fetch Standard.](https://fetch.spec.whatwg.org)\n\n```js\nimport { fetch } from 'undici'\n\nconst data = {\n  async *[Symbol.asyncIterator]() {\n    yield 'hello'\n    yield 'world'\n  },\n}\n\nawait fetch('https://example.com', { body: data, method: 'POST', duplex: 'half' })\n```\n\n#### `request.duplex`\n\n- half\n\nIn this implementation of fetch, `request.duplex` must be set if `request.body` is `ReadableStream` or `Async Iterables`. And fetch requests are currently always be full duplex. More detail refer to [Fetch Standard.](https://fetch.spec.whatwg.org/#dom-requestinit-duplex)\n\n#### `response.body`\n\nNodejs has two kinds of streams: [web streams](https://nodejs.org/dist/latest-v16.x/docs/api/webstreams.html), which follow the API of the WHATWG web standard found in browsers, and an older Node-specific [streams API](https://nodejs.org/api/stream.html). `response.body` returns a readable web stream. If you would prefer to work with a Node stream you can convert a web stream using `.fromWeb()`.\n\n```js\nimport { fetch } from 'undici'\nimport { Readable } from 'node:stream'\n\nconst response = await fetch('https://example.com')\nconst readableWebStream = response.body\nconst readableNodeStream = Readable.fromWeb(readableWebStream)\n```\n\n#### Specification Compliance\n\nThis section documents parts of the [Fetch Standard](https://fetch.spec.whatwg.org) that Undici does\nnot support or does not fully implement.\n\n##### Garbage Collection\n\n* https://fetch.spec.whatwg.org/#garbage-collection\n\nThe [Fetch Standard](https://fetch.spec.whatwg.org) allows users to skip consuming the response body by relying on\n[garbage collection](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Memory_Management#garbage_collection) to release connection resources. Undici does not do the same. Therefore, it is important to always either consume or cancel the response body.\n\nGarbage collection in Node is less aggressive and deterministic\n(due to the lack of clear idle periods that browsers have through the rendering refresh rate)\nwhich means that leaving the release of connection resources to the garbage collector can lead\nto excessive connection usage, reduced performance (due to less connection re-use), and even\nstalls or deadlocks when running out of connections.\n\n```js\n// Do\nconst headers = await fetch(url)\n  .then(async res => {\n    for await (const chunk of res.body) {\n      // force consumption of body\n    }\n    return res.headers\n  })\n\n// Do not\nconst headers = await fetch(url)\n  .then(res => res.headers)\n```\n\nHowever, if you want to get only headers, it might be better to use `HEAD` request method. Usage of this method will obviate the need for consumption or cancelling of the response body. See [MDN - HTTP - HTTP request methods - HEAD](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/HEAD) for more details.\n\n```js\nconst headers = await fetch(url, { method: 'HEAD' })\n  .then(res => res.headers)\n```\n\n##### Forbidden and Safelisted Header Names\n\n* https://fetch.spec.whatwg.org/#cors-safelisted-response-header-name\n* https://fetch.spec.whatwg.org/#forbidden-header-name\n* https://fetch.spec.whatwg.org/#forbidden-response-header-name\n* https://github.com/wintercg/fetch/issues/6\n\nThe [Fetch Standard](https://fetch.spec.whatwg.org) requires implementations to exclude certain headers from requests and responses. In browser environments, some headers are forbidden so the user agent remains in full control over them. In Undici, these constraints are removed to give more control to the user.\n\n### `undici.upgrade([url, options]): Promise`\n\nUpgrade to a different protocol. See [MDN - HTTP - Protocol upgrade mechanism](https://developer.mozilla.org/en-US/docs/Web/HTTP/Protocol_upgrade_mechanism) for more details.\n\nArguments:\n\n* **url** `string | URL | UrlObject`\n* **options** [`UpgradeOptions`](docs/api/Dispatcher.md#parameter-upgradeoptions)\n  * **dispatcher** `Dispatcher` - Default: [getGlobalDispatcher](#undicigetglobaldispatcher)\n  * **maxRedirections** `Integer` - Default: `0`\n* **callback** `(error: Error | null, data: UpgradeData) => void` (optional)\n\nReturns a promise with the result of the `Dispatcher.upgrade` method.\n\nCalls `options.dispatcher.upgrade(options)`.\n\nSee [Dispatcher.upgrade](docs/api/Dispatcher.md#dispatcherupgradeoptions-callback) for more details.\n\n### `undici.setGlobalDispatcher(dispatcher)`\n\n* dispatcher `Dispatcher`\n\nSets the global dispatcher used by Common API Methods.\n\n### `undici.getGlobalDispatcher()`\n\nGets the global dispatcher used by Common API Methods.\n\nReturns: `Dispatcher`\n\n### `undici.setGlobalOrigin(origin)`\n\n* origin `string | URL | undefined`\n\nSets the global origin used in `fetch`.\n\nIf `undefined` is passed, the global origin will be reset. This will cause `Response.redirect`, `new Request()`, and `fetch` to throw an error when a relative path is passed.\n\n```js\nsetGlobalOrigin('http://localhost:3000')\n\nconst response = await fetch('/api/ping')\n\nconsole.log(response.url) // http://localhost:3000/api/ping\n```\n\n### `undici.getGlobalOrigin()`\n\nGets the global origin used in `fetch`.\n\nReturns: `URL`\n\n### `UrlObject`\n\n* **port** `string | number` (optional)\n* **path** `string` (optional)\n* **pathname** `string` (optional)\n* **hostname** `string` (optional)\n* **origin** `string` (optional)\n* **protocol** `string` (optional)\n* **search** `string` (optional)\n\n## Specification Compliance\n\nThis section documents parts of the HTTP/1.1 specification that Undici does\nnot support or does not fully implement.\n\n### Expect\n\nUndici does not support the `Expect` request header field. The request\nbody is  always immediately sent and the `100 Continue` response will be\nignored.\n\nRefs: https://tools.ietf.org/html/rfc7231#section-5.1.1\n\n### Pipelining\n\nUndici will only use pipelining if configured with a `pipelining` factor\ngreater than `1`.\n\nUndici always assumes that connections are persistent and will immediately\npipeline requests, without checking whether the connection is persistent.\nHence, automatic fallback to HTTP/1.0 or HTTP/1.1 without pipelining is\nnot supported.\n\nUndici will immediately pipeline when retrying requests after a failed\nconnection. However, Undici will not retry the first remaining requests in\nthe prior pipeline and instead error the corresponding callback/promise/stream.\n\nUndici will abort all running requests in the pipeline when any of them are\naborted.\n\n* Refs: https://tools.ietf.org/html/rfc2616#section-8.1.2.2\n* Refs: https://tools.ietf.org/html/rfc7230#section-6.3.2\n\n### Manual Redirect\n\nSince it is not possible to manually follow an HTTP redirect on the server-side,\nUndici returns the actual response instead of an `opaqueredirect` filtered one\nwhen invoked with a `manual` redirect. This aligns `fetch()` with the other\nimplementations in Deno and Cloudflare Workers.\n\nRefs: https://fetch.spec.whatwg.org/#atomic-http-redirect-handling\n\n## Workarounds\n\n### Network address family autoselection.\n\nIf you experience problem when connecting to a remote server that is resolved by your DNS servers to a IPv6 (AAAA record)\nfirst, there are chances that your local router or ISP might have problem connecting to IPv6 networks. In that case\nundici will throw an error with code `UND_ERR_CONNECT_TIMEOUT`. \n\nIf the target server resolves to both a IPv6 and IPv4 (A records) address and you are using a compatible Node version \n(18.3.0 and above), you can fix the problem by providing the `autoSelectFamily` option (support by both `undici.request`\nand `undici.Agent`) which will enable the family autoselection algorithm when establishing the connection.\n\n## Collaborators\n\n* [__Daniele Belardi__](https://github.com/dnlup), <https://www.npmjs.com/~dnlup>\n* [__Ethan Arrowood__](https://github.com/ethan-arrowood), <https://www.npmjs.com/~ethan_arrowood>\n* [__Matteo Collina__](https://github.com/mcollina), <https://www.npmjs.com/~matteo.collina>\n* [__Matthew Aitken__](https://github.com/KhafraDev), <https://www.npmjs.com/~khaf>\n* [__Robert Nagy__](https://github.com/ronag), <https://www.npmjs.com/~ronag>\n* [__Szymon Marczak__](https://github.com/szmarczak), <https://www.npmjs.com/~szmarczak>\n* [__Tomas Della Vedova__](https://github.com/delvedor), <https://www.npmjs.com/~delvedor>\n\n### Releasers\n\n* [__Ethan Arrowood__](https://github.com/ethan-arrowood), <https://www.npmjs.com/~ethan_arrowood>\n* [__Matteo Collina__](https://github.com/mcollina), <https://www.npmjs.com/~matteo.collina>\n* [__Robert Nagy__](https://github.com/ronag), <https://www.npmjs.com/~ronag>\n\n## License\n\nMIT\n","readmeFilename":"README.md","gitHead":"9c3e7d7ef367ebde507a3111a4bef99d8571cd46","_id":"undici-types@5.24.0-test.2","_nodeVersion":"16.20.0","_npmVersion":"8.19.4","dist":{"integrity":"sha512-zJ7TI5zCiq/xCmtpsJMOTbzFzH6gkftm/5VKP3V4UHvjPlIxTgnajPGFJ0N2l4oOY+nKFL5LPJgom4Uw2ZX5pw==","shasum":"1aee4918d6405d486eddfafb402230ea8993a35a","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.24.0-test.2.tgz","fileCount":36,"unpackedSize":89690,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDOjKU5u8s9X2kwIikeDGcE30bjwvTI+pXcBD3d5DAa/gIhAJhixME1q97PyfuKrbkegiF7BYQ1c1tjEjwa/fGp8Da0"}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.24.0-test.2_1695143978031_0.09775288326284604"},"_hasShrinkwrap":false},"5.24.0-test.5":{"name":"undici-types","version":"5.24.0-test.5","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","author":{"name":"Matteo Collina","email":"hello@matteocollina.com"},"gitHead":"2ac9c5cc5bc4117bd288d82983fe3ff3a735cf03","readme":"ERROR: No README data found!","_id":"undici-types@5.24.0-test.5","_nodeVersion":"16.20.0","_npmVersion":"8.19.4","dist":{"integrity":"sha512-xKqn8NTd9tEzIOgDhiyXaP3G82+pKKABLc6XtvgsReYZVMZ8OnP0DQRNpmgWfU1gDrTQjlQWKONZljgRwq7P3A==","shasum":"ce780c35343772a64b6aad4ddccc35d1fcbaa440","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.24.0-test.5.tgz","fileCount":1,"unpackedSize":475,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDQooopw0iOlnCB7+nHCWIKSo1XbtgfPWxotaVP77EsDwIgdnc6o8OpEjzEJWA3ruquabF7RjsRJxIAeLATvpRJt7I="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.24.0-test.5_1695145293875_0.1539863504520682"},"_hasShrinkwrap":false},"5.24.0-test.6":{"name":"undici-types","version":"5.24.0-test.6","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"271f1d9b7c4b03c223a22bf2ea1b6f2a0cdf4cb6","readme":"ERROR: No README data found!","_id":"undici-types@5.24.0-test.6","_nodeVersion":"16.20.0","_npmVersion":"8.19.4","dist":{"integrity":"sha512-M9MV3OjD6YuaF4kLb1uR+66dlE/U3nvv4oDU3ia2YIusjsxoVmjP6Ra0+u7hQmXpXMeNPDzt3SKSk8pag4XMkw==","shasum":"480b4f87c6a68b5a445a5f90db9f389d9c56c2f9","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.24.0-test.6.tgz","fileCount":34,"unpackedSize":72231,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF1HnWWYKM99wLoVk36IRbsa8cIcur/gndQ+r3P7ywJIAiBubNjSvbCjGi9gD8UH/nHS6g5y/IDE6B7ebOnfWkl0bQ=="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.24.0-test.6_1695242965290_0.7724505524131717"},"_hasShrinkwrap":false},"5.25.1":{"name":"undici-types","version":"5.25.1","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"c86279c9bcf62fe28d124b124b91eb364d478a25","_id":"undici-types@5.25.1","_nodeVersion":"16.20.0","_npmVersion":"8.19.4","dist":{"integrity":"sha512-k98JkedWuLf5oOAKuzRH+hZviKnEavAW5FL5Ls3Vys19rSittLWcxGiHAkAVoM29t588sLs0ZwK1BqUUIZLLAw==","shasum":"4d783e20541212a2af9659f476c31d920626ac0e","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.25.1.tgz","fileCount":35,"unpackedSize":72679,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHcmjQkXsbvQW2XwRnkvFEBJCHrbN0S0xA9vnayi5Eh9AiAGCHyIZkeVd5zxWJ6inKSHEQ2qHIIvZ3UMy0C/hhPbvA=="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.25.1_1695243829363_0.3590322704548976"},"_hasShrinkwrap":false},"5.25.2":{"name":"undici-types","version":"5.25.2","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"4013c4b8932e73728809e4106d5c9d9d40648031","_id":"undici-types@5.25.2","_nodeVersion":"16.20.0","_npmVersion":"8.19.4","dist":{"integrity":"sha512-Q88IZXwVbathaQqOdzAvpGRdRtXbu4pzgcxTMmp/u7EbbLWmoLmGv0uQybm82A1weU5/gSYeIn4mC6ztlgsLfg==","shasum":"5e959fa2abf90a0a5caa02a73b63ce40c84d3256","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.25.2.tgz","fileCount":35,"unpackedSize":72680,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDhxqdLnH9N5yf8i62j5udGNeO8kf6iUaxhRlaPKUgCsgIhAOnWTfjytEdBe4h7eDLPzCdsvILdYZkVIJzhTExCk+3b"}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.25.2_1695673013262_0.2355764246047658"},"_hasShrinkwrap":false},"5.25.3":{"name":"undici-types","version":"5.25.3","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"96f1425ca7ab7b6f0578fe0ff9badbc16ff11ff6","_id":"undici-types@5.25.3","_nodeVersion":"18.17.1","_npmVersion":"9.6.7","dist":{"integrity":"sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==","shasum":"e044115914c85f0bcbb229f346ab739f064998c3","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.25.3.tgz","fileCount":35,"unpackedSize":72679,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHOX6VrKn1H0TB+ZDD60CSBWnjAKxxjn/xeSXr3wmprkAiEAkhMpcEM9HaDkMbrY6n2vEQaYVCIWcBzpCpT5Uv7dVHc="}]},"_npmUser":{"name":"matteo.collina","email":"hello@matteocollina.com"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.25.3_1696171998049_0.2455461148389746"},"_hasShrinkwrap":false},"5.26.0":{"name":"undici-types","version":"5.26.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"89e0c00b37f28e0ba6930273a8b45510fd851019","_id":"undici-types@5.26.0","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-NuS953vC338lTCrOAAyqkPOhbJTnkoZqbZ1h9fNVEr8asP1HJEJW0DkqofDk0bYFNMOQ+1/Gqx03uR8446bBnQ==","shasum":"b51f55526c5147ff733109f7bce1b9ddc47a6880","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.26.0.tgz","fileCount":35,"unpackedSize":72748,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCpkBQGBcDcpfYnNultbVa+JKN2JGpmF5L3eNrM+jsadQIgZAEx9hMJ99wyeG1biuyiA1FvkZJmYPUmRHMHarFt07c="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.26.0_1697037692429_0.3458628500807821"},"_hasShrinkwrap":false},"5.26.1":{"name":"undici-types","version":"5.26.1","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"c8c80b1115d668664d8cf3acec7535b0258c3079","_id":"undici-types@5.26.1","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-ztSmnRYqYiYwie4TcCR3tyaNl1tEEYWDkcxEeYmBCmdXCWJ7qaD6Uc6ZzPOLHVfBWh/bl0zqstQ6oC3+4mF5zA==","shasum":"f744acb3be2b31b1fe9463ee9d49431145cbcf0d","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.26.1.tgz","fileCount":35,"unpackedSize":72748,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQChERezsEViJgMGEUfpmJVOocNe4AiCIQIVtG8N6s+pXwIgcWW1pqo+uIelqOwsS8uUTH1tEYtz9NW43NKF49wXEb4="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.26.1_1697048879293_0.2991261502806115"},"_hasShrinkwrap":false},"5.26.2":{"name":"undici-types","version":"5.26.2","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"12a62187d45f332cf39dd405f7c52b759cf40cdd","_id":"undici-types@5.26.2","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-hwP+iAUYI/aE56tnK5w0DsKnsnVreg4Va8Q62BWCXjRGATmJr7+bQsVLqqqJMHTcyMMo7X/JX0qiYg+Qq1bPMg==","shasum":"f8fad3fc072c885d9fa82fc19353e93592b769ef","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.26.2.tgz","fileCount":35,"unpackedSize":72748,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGwUjGoZTOu5U2oWzQJmKCX1bJdfKhCkd70tvnFAksICAiEAqKGJYDef1I9DH3GBvHDR+dfxduBFv/xpQBrgyA6Dca8="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.26.2_1697050792650_0.16197507825093083"},"_hasShrinkwrap":false},"5.26.3":{"name":"undici-types","version":"5.26.3","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"227b9bedf233f741b86dda4ae9d1c7ad69f5d75c","_id":"undici-types@5.26.3","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-sD45goX3K5aoPnrxgiHFK1XFuU6UpckJfoRoZ2mFrLJs1tdqX0yFtuOgHU24Y6kbPy4hM5nENcrtNyI+GZVOOQ==","shasum":"8022b823f663300dce32cf850e247173c376b004","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.26.3.tgz","fileCount":35,"unpackedSize":72748,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICoHEDcBZlszG8JoeWLfkkgKNKjVjiexzsbRYWclP46CAiEAtFstxIMZtKwFHtuYHQzmwZbHl6EZ5vwCa1iHcOv+ZaA="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.26.3_1697051647031_0.22010038149479616"},"_hasShrinkwrap":false},"5.26.4":{"name":"undici-types","version":"5.26.4","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"dea70e27e4d14952eb7b96da021eb44d24d1159e","_id":"undici-types@5.26.4","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-nSNuWyiXbGptNQjUVhJGKA0KufCryCa6yjc2IAfg4HRblpUNgF5xhqEXNO3+F8cVYFiJsIgurydTuKphzszEmA==","shasum":"0b81fe7bbae26c8082ec180f6dd06154ee94d0ec","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.26.4.tgz","fileCount":35,"unpackedSize":72748,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCoC382cJ9FPHHd8MkC/2hIEWmQfchj/4iT8XpJzhFjFgIhAINp+U3sjeXp7yVG2EnyzKVbla7hsX1gRqd0adQ8ZdpB"}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.26.4_1697705245698_0.5186810367698944"},"_hasShrinkwrap":false},"5.26.5":{"name":"undici-types","version":"5.26.5","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"9197790ae0d015b40b75fd0c5cdb7420704b5272","_id":"undici-types@5.26.5","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==","shasum":"bcd539893d00b56e964fd2657a4866b221a65617","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz","fileCount":35,"unpackedSize":73053,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD/EnrCkJJ7oe1TmYqBRI4n2tewrdux8HM6ufRIs2fk2QIgHMUCkefGQiUVfEJ2YpbQKlLRqYnOVdUF+ghWEE2T3Fs="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.26.5_1698046044515_0.657448767936649"},"_hasShrinkwrap":false},"5.27.0":{"name":"undici-types","version":"5.27.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"41c253d0c23fd1cf63b8033d8ab61c2cf13e8c6e","_id":"undici-types@5.27.0","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-vBblTWiSquVYNHW8Xgnho3vhWyi1ARrAqaTXIdwpsp4CVn2wXRh/AVjBzpAo0f09Rqg98ihf+AIXGb2jGsILtg==","shasum":"7c43adb723d24eaf8bcac9009242e3fc7adbf5b7","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.27.0.tgz","fileCount":35,"unpackedSize":73053,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFgbry0KX0ozH/T2qU6bRlorXlrYoAO+Wht9f5vK2uEZAiEAyJzHgQd2gWWv9GjHtWTzyIO4fXe1kRTncH7JyLQ14Eg="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.27.0_1698320954558_0.8574250233454885"},"_hasShrinkwrap":false},"5.27.1":{"name":"undici-types","version":"5.27.1","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"2aedba485b539335b7ade6977615f9f94173eab2","_id":"undici-types@5.27.1","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-DKi9rtM6gl9JVWRUVeywgWRRYW7jKr29Q8GNlia9jD6P9FDi09z6NJyM6W2D1C4ISHc0OrUJCOTZqPPoi7TzTg==","shasum":"7e6fd541f9138b01d0934c44f06c5a77ca0d4ddf","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.27.1.tgz","fileCount":35,"unpackedSize":73053,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDmuQcV0e6OpG/Gi642D8ibnF/cRMehXXM5HEbxb/yg6QIgGwtzCAJea30IF82RsVOSPsMfLSG2MPXkKeWmBKFWQlk="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.27.1_1699030492099_0.5038985376436489"},"_hasShrinkwrap":false},"5.27.2":{"name":"undici-types","version":"5.27.2","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"1541173d7a728eaf88bcd87263cef2ea0d993e74","_id":"undici-types@5.27.2","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-jq2b5ZpcQl5WYBYs7F1Mnit4B1VZtT61eeHF+fr+M0By0DLua/45PNizT2gqzcZlOU1RUVhpj5MGLiTF20he5Q==","shasum":"a57c2eb2cc5f98147fec92d3980ccf118ea13a0b","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.27.2.tgz","fileCount":35,"unpackedSize":73053,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBmFHCasIy2BYYL2as/AWAiT3bS7591xMSOtisV8XYH9AiBzUiXntD8kapqVdOejAJ6/4yq3BHlbZ1fom4KeISc/IA=="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.27.2_1699043837939_0.8269660928690659"},"_hasShrinkwrap":false},"5.28.0":{"name":"undici-types","version":"5.28.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"66029d1b317c0cfe38543553055cc86c658d7635","_id":"undici-types@5.28.0","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-boHJxuxqgtSQnp22xKSLe6iNYMk8GaCMfKALCgUsvtSC0Gj9Gf2Vaz75otJGnN8Is4ij1CHztHkwzpko/CzCJA==","shasum":"59a3a52cb57c1c41a487c858ea7e8203248c611e","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.28.0.tgz","fileCount":37,"unpackedSize":77288,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF3YhwwgkvgRxV9gy+kqrLMZBGgq+PN7+76/zRLvNAulAiBRVfaYboM03W2hCPmuUy3/ohsthzXu1XRtcGNzHcrtqw=="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.28.0_1700816462731_0.9014521332174086"},"_hasShrinkwrap":false},"5.28.1":{"name":"undici-types","version":"5.28.1","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"286bb4463b05e01e809737214e8eb1c161b78240","_id":"undici-types@5.28.1","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-1C+CctX9yXPVSUFpkGPNRnBcrLxhhJtDqjJZGpuevDaoH8xXql4SXlJRqqb9ZSEah/YuGfpi0oAvY78jD3kMFg==","shasum":"262b059e8b071bb747d99426d53a513261262565","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.28.1.tgz","fileCount":37,"unpackedSize":77288,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDrarkI07sx+gSNc05LG07ibi02Hq2DUC6vGyVVzr98jAIgUGQWeIGnTersO+m9pt0TOeMR9F7mvYca9IL9oZqTjPk="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.28.1_1701078568827_0.2538512334195526"},"_hasShrinkwrap":false},"5.28.2":{"name":"undici-types","version":"5.28.2","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"9a14e5f32a118fa93e769cc15ae8de9de552f2e4","_id":"undici-types@5.28.2","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-W71OLwDqzIO0d3k07qg1xc7d4cX8SsSwuCO4bQ4V7ITwduXXie/lcImofabP5VV+NvuvSe8ovKvHVJcizVc1JA==","shasum":"6d86278547d81c2cad72425cf275e8dfbaa8bc42","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.28.2.tgz","fileCount":37,"unpackedSize":77295,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEXKvMM3RzH2zGClJFK7ettJ8fqrERhnG+ZEBaw/0IfmAiBvM2Lyo597FTIcTSOyAEew9VNQlCucEqnbIMamrCu6AQ=="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.28.2_1701358945884_0.0016210716759952337"},"_hasShrinkwrap":false},"6.0.0":{"name":"undici-types","version":"6.0.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"e218fc61eda46da8784e0cedcaa88cd7e84dee99","_id":"undici-types@6.0.0","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-I7ax/e3PkfMlo4ohi+jUEbjCKXHbTsHTc18EVhbzD+FtOeIW+CoHIPVu0JRWdJnD7czzE960J25NfaVv9VTOGw==","shasum":"705e359362533096ec410cfeb2b8ce1385146669","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.0.0.tgz","fileCount":37,"unpackedSize":77294,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDrDeUurXAuzAqBBhP798TSYgxqDCTthNYr6Rs/pM3SGgIhAL0h5z7x8WLwF5hBesbtJ7f6H1AkxX6uSTqysU1NN7C3"}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.0.0_1701766084084_0.24827363271812963"},"_hasShrinkwrap":false},"6.0.1":{"name":"undici-types","version":"6.0.1","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"0c3c6f8474857497ad1d8ca3d2687a66589079d3","_id":"undici-types@6.0.1","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-i9dNdkCziyqGpFxhatR9LITcInbFWh+ExlWkrZQpZHje8FfCcJKgps0IbmMd7D1o8c8syG4pIOV+aKIoC9JEyA==","shasum":"62e2af9fcd3ce359634175658de39df8d0f37197","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.0.1.tgz","fileCount":37,"unpackedSize":77294,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFuj/YcEeF0zmxmhGWhoyccWn6ey9owoi3IhoZcczX+lAiEA2OHTiqIDPz4CyY2jhoNRmhUUdArN860ok+s68iV+ujo="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.0.1_1701850976312_0.3786176052242136"},"_hasShrinkwrap":false},"6.1.0":{"name":"undici-types","version":"6.1.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"250b89af0ae27b93aaacbb885e852636e2c78ce6","_id":"undici-types@6.1.0","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-yN8XCXMkvhKbL/gXK0DVtMPRbriSdYKF+piDAbZnX9jPT+itcqRMGiOA/KtTkpVUfLgqWnD4vUpOVHE5BVhyag==","shasum":"af3ead3fefd6a003f8b9c4a68e76231b2ec02d78","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.1.0.tgz","fileCount":38,"unpackedSize":78533,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD316yVBCHsFaaXf49Fy9BoEkwC48N3ARBQS7GcgAGEfgIgMiokeHtZbcJdUg9UTuFDhie2d0Gbnr6IXsBIRmR23ww="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.1.0_1703080912101_0.8490038691267285"},"_hasShrinkwrap":false},"6.2.0":{"name":"undici-types","version":"6.2.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"0c4c4504852c71dac1a6eb8dfae0f2411b6f2fc6","_id":"undici-types@6.2.0","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-IHRfqL4BhOW3lK3jpLx6Ul3BqFSeB4ykHIvamF5zUQ3GRxvcQU8uS1tXEFaRlPemCHz2tvMz4GMF1jEND51vDA==","shasum":"c138e2d254d12bdcb9b0285083c4f4be3d80fcc0","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.2.0.tgz","fileCount":38,"unpackedSize":78533,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCBA8smCQxrehklMhsRtdNXnkkxmlnfREzASw0Fh93lQwIgEu9Eg3O8jR96sJorKOIG0xC/LFu3zg3HVOt0n13iQ9c="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.2.0_1703086445823_0.9246380697761818"},"_hasShrinkwrap":false},"6.2.1":{"name":"undici-types","version":"6.2.1","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"f51f917061aec737edfe635e52db5bccc6fc0ac6","_id":"undici-types@6.2.1","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-iD2yLpYLPK+BZwQbl5X+iDZblu3Nsc4lJgqJwxvIWhrT4IC8iNgmhhfmAm0JIeYP5mlXXlUBcpgRy212MoEjuQ==","shasum":"b67078581ef640f7420f113cf45ddb3ca4076dc3","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.2.1.tgz","fileCount":38,"unpackedSize":78533,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDN0Q51lkN6/iNfMdrTQ1K1baC6EijZQ+ur/I8uXomUQgIhAKezzzXmiXap8p6tZFl+JUj7nvs/mknntKXIcfIEAxdb"}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.2.1_1703237841473_0.26133404526965287"},"_hasShrinkwrap":false},"6.3.0":{"name":"undici-types","version":"6.3.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"887d1cb2df84abdf7c57fb74342d3a51db681652","_id":"undici-types@6.3.0","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-LwelOasW+A7zT4t0EmBtD2x1UGNgQvLgrT/Sqkjf45uY2d2jv7Y9vZkXNnU2hJFIYrQrSSzIrHVTlANOOy/qkg==","shasum":"5c2d24bf9f05af1345806111d0925fa2296149a2","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.3.0.tgz","fileCount":38,"unpackedSize":79517,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHnZIS9xzC2KFK8M234BxmPAKIKkcTrTQuu/11ltsxIaAiEAkUyMhTGCcEI1eW74kHWJvNCKGNgdA0OOIqmP3A856ms="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.3.0_1704725847188_0.10800977637101972"},"_hasShrinkwrap":false},"6.4.0":{"name":"undici-types","version":"6.4.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"9b8ee28b1080cebba211b84b6d89682d6fcb2df4","_id":"undici-types@6.4.0","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-hF4VKFUTypcLYImmZ13xVhjDaFhRlNULLUCOpm2ADKjuoqWpBFL1oXJXe2+hPq7aBv4v/FagI+MEDUNb8H9vHA==","shasum":"59bd2eaa6928683466202f7f0df3ffbc76aa6a1a","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.4.0.tgz","fileCount":38,"unpackedSize":79719,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDHeIW7eeOjRyTuklvyZ6I7DgNHFFVTetojga///tmQAwIhAN6LdBCx+6iRHrEqMcLpv6j5UKpeG+nw2Pav5EwFQUhG"}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.4.0_1705676504316_0.7430173575621501"},"_hasShrinkwrap":false},"6.5.0":{"name":"undici-types","version":"6.5.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"519b9e13543a594bcfa4d1954bf639c10cf3e824","_id":"undici-types@6.5.0","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-j+GtfW/Ce3WnWiiL9mWfvg5kM//OaW0YsSoE+xe8Z/72cmpHK0uC1kSx3sHl1b0fTzOSYpnLYTsG1ZEieSiJqw==","shasum":"c78812d4845076b90a08871d403d8c83a07d6ae3","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.5.0.tgz","fileCount":39,"unpackedSize":81791,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCT3IJ7ENivV08nKVyrj5RWqYsTUCfYFWDZZdFBkQ+JFwIhAJisoc4pl+rV2xSLm/KjvdM1e6sYK19iSLaWTf+ipkEh"}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.5.0_1706281889107_0.2551530033099956"},"_hasShrinkwrap":false},"6.6.0":{"name":"undici-types","version":"6.6.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"fa2d2d29a46412f8fb1f1a1ecf07b73e0db66a32","_id":"undici-types@6.6.0","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-WqF3FrzJ4oJR8/EIPVY5LtxAkskhsSrdUdAcxEt9sHje/jUkrVI33ye4op0TJ6UhNSdrLOqMQk2/ppn5+oCFVg==","shasum":"b13ec38d9fb7aeaf73f1902be956f695ac7fe997","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.6.0.tgz","fileCount":39,"unpackedSize":81791,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCcjsoiLxn9VDrvAZD5CR7jAFnrRDUVYh80z2AS7td1FQIhAItsCMOJUd867scwEDFJWNnB9GxRAtjm9vo6DtickpL1"}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.6.0_1706780199006_0.7002501392334055"},"_hasShrinkwrap":false},"6.6.1":{"name":"undici-types","version":"6.6.1","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"d36b19eeaf89b0c02e309bb3bb780c1977b21feb","_id":"undici-types@6.6.1","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-I9w6ZtO5ygMnENrKhJ5BRQqnJUDmrqGUl3vl4EwZkncFafkqvLVvYr/i+KUZhzBKGUwQyPUgZW3LBB2299HSFg==","shasum":"4283acfc9362c6ba0be2d1980fc0a55bcd909d3e","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.6.1.tgz","fileCount":39,"unpackedSize":81791,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICiQZ0sZrilEPikH3HVExKbnlLH1P+ldMLmbOJmPLmy8AiAEqanr6zN9meFxqgsGN4xkIFKTZ/D9R6F6lYrdrFh4JQ=="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.6.1_1707132762340_0.5433042956772609"},"_hasShrinkwrap":false},"5.28.3":{"name":"undici-types","version":"5.28.3","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"e71cb4c88faae5670a129fde5552266afc2dbc39","_id":"undici-types@5.28.3","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-VJD0un4i6M1/lFOJPhacHdq6FadtlkdhKBed2W6yBqmrAr/W58oqENaOIX031stDVFwz9AemOLkIj/2AXAMLCg==","shasum":"698aa430db5e60dbf3799385ad8e15085751fcc0","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.28.3.tgz","fileCount":37,"unpackedSize":77295,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDf743GL4C+o9IBLO7zpOVXTeOeMo7Eb1PeAZz0ApccAAIgVVrJPe39Kvz8GtyDH6K98eEksFv0fP4rpVjhrslfdZ0="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.28.3_1707133249317_0.6737349324979853"},"_hasShrinkwrap":false},"6.6.2":{"name":"undici-types","version":"6.6.2","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"e48df9620edf1428bd457f481d47fa2c77f75322","_id":"undici-types@6.6.2","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-acoBcoBobgsg3YUEO/Oht8JJCuFYpzWLFKbqEbcEZcXdkQrTzkF/yWj9JoLaFDa6ArI31dFEmNZkCjQZ7mlf7w==","shasum":"48c65d30bfcae492c3c89b1d147fed9d43a16b79","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.6.2.tgz","fileCount":39,"unpackedSize":81791,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCpgPZEHvuz+lJEe/2dBcqpuVGfwI58GSG9q5g4j/DXnwIhAN+ONadmXQTF++1l1yg+C4nHdhRkCxYozxTir6HfNZiz"}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.6.2_1707315251999_0.2887340812558947"},"_hasShrinkwrap":false},"6.7.0":{"name":"undici-types","version":"6.7.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"_id":"undici-types@6.7.0","gitHead":"2316bae1b790517b9fbc8d066582410604ab733b","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-dZuEp06dJ32FQ/0HdqsA/ci0LbMDsTo8h0w7bOlThZXfY3tqNC6Vg68koejjl9dr6Kcw3Q6PdWjaPTMYzipO4g==","shasum":"1b7025585e712a07ddec7f2f642fbe8ffc5dbc28","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.7.0.tgz","fileCount":40,"unpackedSize":82403,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDqSkEPV9bf+gJvgzhn2xiJnVUb8i68F8MhKf1qrl2rOQIhAOIk0DJO0BwHNI/eRWyoleppexPoFs1QgP6gPKsjRYM1"}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.7.0_1709485757816_0.5943616282969899"},"_hasShrinkwrap":false},"6.7.1":{"name":"undici-types","version":"6.7.1","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"_id":"undici-types@6.7.1","gitHead":"219da8b7b3fea7e38a7644b8bc35fe6fec97d66e","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-7r+rI8EcAjs3Th8JYhJUW4K6cNne8aPoQ7f44Y8zZIkLEcn7UkKvbQpFgBu/fbn2YY7k44pn1e7PnTY/vzBnVQ==","shasum":"1be08ee81dd361f9563289af202b7730e247153a","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.7.1.tgz","fileCount":40,"unpackedSize":82403,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCGddnlgJLE/KteEAm/jA5QMaudnT1SvSamYR6pmOTOQQIgDgH9B/69A1TcV4/fTHgsA8fulu/Gg+O/UuiNNjpb69M="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.7.1_1709887775297_0.5427621491349508"},"_hasShrinkwrap":false},"6.8.0":{"name":"undici-types","version":"6.8.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"_id":"undici-types@6.8.0","gitHead":"f84ec8087e11a26ee3553a0c601f6a73373edae6","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-5Nx4nBLLJBqhMezWmoEP+xpKmSGuOYagWgaxImc38hre6h6CxoMRRxkPbHKBsz+MZcSUaxgDNGKRGixBmSDoOw==","shasum":"812c7ded1c9ef92eb12e774e7fd52309177eb725","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.8.0.tgz","fileCount":40,"unpackedSize":82403,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB4S2lIhQaqe1KeRG1ah9xCL6v8555ziY0eZHHgfMpI4AiAjxZTiDhSmBK1US5YhFGtbroXycyWUEAhP1g1WWhAXIQ=="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.8.0_1710319533155_0.9043564445184484"},"_hasShrinkwrap":false},"6.9.0":{"name":"undici-types","version":"6.9.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"_id":"undici-types@6.9.0","gitHead":"3e59a2d7d82ba62b3fd11796f6479579f35a6871","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-SwFgFJtloS7+CcTkjRdpwjCA0RWtZXZH26DIcy+cn6+7AfciCBi2oWYImlaBMvgq5b5DbhFe37ebaUphbmi9QA==","shasum":"345650ac91d7faa758f64c47946220880c72a8eb","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.9.0.tgz","fileCount":40,"unpackedSize":82410,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC1qgC11I3ruPune9VCX0nuDpW8Rq1T3aTlvgOYtwg53QIhALOMr4gI1Cfq4Tjc/Ns30B5bl1zlUAwxlq3lsNcIAH8a"}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.9.0_1710436424086_0.6002660075998916"},"_hasShrinkwrap":false},"6.10.0":{"name":"undici-types","version":"6.10.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"_id":"undici-types@6.10.0","gitHead":"e434060efc659e30865d711eafb71a6b01915533","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-hnbshH4eaJunfBee1JWEt+7//qGu/lAoArnPZ9YmRxB4wxE4yq+SWRstWEKM5aC1/vRLByzFXa/ULyYEv2obIA==","shasum":"fced15f25a3bf23bb30838567fa981115e28e097","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.10.0.tgz","fileCount":40,"unpackedSize":82753,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGlLUMf6st7Qxa8KH9aLD7tU8KZsA2enu8OjAX4I/Gv4AiEA6A9F9QK88eKjohqg0r67YHe6VorSNqXD6Bj3HRfepbU="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.10.0_1711019141128_0.09692671248680784"},"_hasShrinkwrap":false},"6.10.2":{"name":"undici-types","version":"6.10.2","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"_id":"undici-types@6.10.2","gitHead":"7485cd9b4cf9a86cb76b1597df527eba15755bfc","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-6/AUdsIOYVNllcOhIStipEzDyx/u8C5LdKq2gnJXtlMc42WodPl+qJBydPzlzyyo919+DNjRRwgsJUKsoiF7EQ==","shasum":"b7857f613e0db97b9409917dfcb7d9c234160a28","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.10.2.tgz","fileCount":40,"unpackedSize":82773,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDkCPJtht3NE2yiZYJ2cgRW7ANrR4sUrAXBdNJ17UfapAiA+RKsAWlrcnXveKD/zj66YxJD37xHgPa4xVk1Qcpr7Uw=="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.10.2_1711532174047_0.6121523778960483"},"_hasShrinkwrap":false},"6.10.1":{"name":"undici-types","version":"6.10.1","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"_id":"undici-types@6.10.1","gitHead":"dd3918fee4f90e02fb93ff1bc04e707144041938","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-A9gdHGE8EFZnd4IdrfizVgmnTvR8iWZUE2dqPIpAYEO4yZKv3Fed0Xhs8y17JKtQfthDMVwJBv8dOqFe52t3sw==","shasum":"5f9c1fcbf249f7c6f835896fec17e9510b143c50","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.10.1.tgz","fileCount":40,"unpackedSize":82753,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGwNloeL6tDvZ9PVcx41g+d+RHuiZMTXSoqPGY2+9RuWAiBG+GnKEZqezvkEcih6C6l8Y1vuceaMFsJMQX8ciniWLA=="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.10.1_1711533000411_0.8780367552404467"},"_hasShrinkwrap":false},"6.11.0":{"name":"undici-types","version":"6.11.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"_id":"undici-types@6.11.0","gitHead":"ee5f892f3955eaca37730ed30349153ba203e9cd","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-poAjeKpLaKuV41mZfeiUuc7mO/kFAixPpvadHZ6U2Xy8HnL1xz3unkXEwULbeukqt9bjOucc6FxG8E+ATnzJww==","shasum":"70d843cec4074858c8ecf733da07e55c3d88cc26","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.11.0.tgz","fileCount":40,"unpackedSize":82718,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDBR8IYfBCWQamGB+pVz+FNQM3tRvs7DgKPEfeSAR8pcQIgJXOyEBVT22ktwxsQ8KCrXeGfNNzdTbrht3YjXqyIeXg="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.11.0_1712075253700_0.30114187538157866"},"_hasShrinkwrap":false},"5.28.4":{"name":"undici-types","version":"5.28.4","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"gitHead":"fb983069071f52e0a7ea0e71078459c765aae172","_id":"undici-types@5.28.4","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-3OeMF5Lyowe8VW0skf5qaIE7Or3yS9LS7fvMUI0gg4YxpIBVg0L8BxCmROw2CcYhSkpR68Epz7CGc8MPj94Uww==","shasum":"501669b1af1f288a9cbc2e273811965c9178306d","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-5.28.4.tgz","fileCount":37,"unpackedSize":77295,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCrOu1jzD6guNF3QjG8IXbT+xFg/NbiWl7I2xNuBBqN+wIgdPlmyAMTgDIBEgyEQoEoPGmmi4SzhZcNEQPhlc4CIy0="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_5.28.4_1712075984861_0.13614113613342949"},"_hasShrinkwrap":false},"6.11.1":{"name":"undici-types","version":"6.11.1","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"_id":"undici-types@6.11.1","gitHead":"6df3c738d03dc4014a26640316bf699950d62024","_nodeVersion":"20.12.0","_npmVersion":"10.5.0","dist":{"integrity":"sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ==","shasum":"432ea6e8efd54a48569705a699e62d8f4981b197","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.11.1.tgz","fileCount":40,"unpackedSize":82718,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGZ5BAc1f4hyJqG9maPkYAtOTY+OgPwVnnwJSQXpL/mvAiEA7EEAV2omKwJkfIwzLqkvz1pDGG2DcwcBKphzSd3oV2I="}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.11.1_1712076394919_0.2860254040968042"},"_hasShrinkwrap":false},"6.12.0":{"name":"undici-types","version":"6.12.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"_id":"undici-types@6.12.0","gitHead":"7751d9bcd5bbba45b60c90183aeab450b60c0831","_nodeVersion":"20.12.0","_npmVersion":"10.5.0","dist":{"integrity":"sha512-spYS3Hq2I215rLthdNw/oP0RnRzz24MDQOkcb4azgmIM/bdx+B2u/xZjbWCFjqJHx/qFv2k3sRYg6+snBjDNqg==","shasum":"ee8205806a68ecacba267b266f8597eba2b0bca7","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.12.0.tgz","fileCount":40,"unpackedSize":82708,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDL4yxqyfNTWxws4sYDotQjvvn117dKqFsv/GNZpAJkBQIhAKpL97TZaGHrAQEGJMoK4cead80PpLUPcv6Bzax49Ufb"}]},"_npmUser":{"name":"ethan_arrowood","email":"ethan@arrowood.dev"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.12.0_1712569641470_0.16119400575140386"},"_hasShrinkwrap":false},"6.13.0":{"name":"undici-types","version":"6.13.0","description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","bugs":{"url":"https://github.com/nodejs/undici/issues"},"repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"license":"MIT","types":"index.d.ts","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}],"_id":"undici-types@6.13.0","gitHead":"65f768c72762b38e3d35a8a4934c0830c41b0f6c","_nodeVersion":"20.12.1","_npmVersion":"10.5.2","dist":{"integrity":"sha512-xtFJHudx8S2DSoujjMd1WeWvn7KKWFRESZTMeL1RptAYERu29D6jphMjjY+vn96jvN3kVPDNxU/E13VTaXj6jg==","shasum":"e3e79220ab8c81ed1496b5812471afd7cf075ea5","tarball":"https://registry.npmjs.org/undici-types/-/undici-types-6.13.0.tgz","fileCount":40,"unpackedSize":82708,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/undici-types@6.13.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCbDfAdZqPbxwx+yg1Zjz8UwQXO8pFRtsw1+srTq9l1WwIgCRSwJMdhlkciKNpBQSq/LFpP0Ma/90+u+1D0v8HuA/o="}]},"_npmUser":{"name":"matteo.collina","email":"hello@matteocollina.com"},"directories":{},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/undici-types_6.13.0_1712911369533_0.0882651436465316"},"_hasShrinkwrap":false}},"time":{"created":"2023-09-19T15:09:35.360Z","0.0.1":"2023-09-19T15:09:35.622Z","modified":"2024-04-12T08:42:50.080Z","5.24.0-test.2":"2023-09-19T17:19:38.262Z","5.24.0-test.5":"2023-09-19T17:41:34.002Z","5.24.0-test.6":"2023-09-20T20:49:25.511Z","5.25.1":"2023-09-20T21:03:49.603Z","5.25.2":"2023-09-25T20:16:53.499Z","5.25.3":"2023-10-01T14:53:18.228Z","5.26.0":"2023-10-11T15:21:32.601Z","5.26.1":"2023-10-11T18:27:59.617Z","5.26.2":"2023-10-11T18:59:52.872Z","5.26.3":"2023-10-11T19:14:07.297Z","5.26.4":"2023-10-19T08:47:25.917Z","5.26.5":"2023-10-23T07:27:24.774Z","5.27.0":"2023-10-26T11:49:15.569Z","5.27.1":"2023-11-03T16:54:52.309Z","5.27.2":"2023-11-03T20:37:18.275Z","5.28.0":"2023-11-24T09:01:02.889Z","5.28.1":"2023-11-27T09:49:28.995Z","5.28.2":"2023-11-30T15:42:26.134Z","6.0.0":"2023-12-05T08:48:04.311Z","6.0.1":"2023-12-06T08:22:56.497Z","6.1.0":"2023-12-20T14:01:52.231Z","6.2.0":"2023-12-20T15:34:06.004Z","6.2.1":"2023-12-22T09:37:21.622Z","6.3.0":"2024-01-08T14:57:27.332Z","6.4.0":"2024-01-19T15:01:44.494Z","6.5.0":"2024-01-26T15:11:29.270Z","6.6.0":"2024-02-01T09:36:39.188Z","6.6.1":"2024-02-05T11:32:42.518Z","5.28.3":"2024-02-05T11:40:49.458Z","6.6.2":"2024-02-07T14:14:12.171Z","6.7.0":"2024-03-03T17:09:18.008Z","6.7.1":"2024-03-08T08:49:35.476Z","6.8.0":"2024-03-13T08:45:33.330Z","6.9.0":"2024-03-14T17:13:44.251Z","6.10.0":"2024-03-21T11:05:41.367Z","6.10.2":"2024-03-27T09:36:14.196Z","6.10.1":"2024-03-27T09:50:00.588Z","6.11.0":"2024-04-02T16:27:33.919Z","5.28.4":"2024-04-02T16:39:45.034Z","6.11.1":"2024-04-02T16:46:35.085Z","6.12.0":"2024-04-08T09:47:21.640Z","6.13.0":"2024-04-12T08:42:49.701Z"},"maintainers":[{"name":"matteo.collina","email":"hello@matteocollina.com"},{"name":"ethan_arrowood","email":"ethan@arrowood.dev"}],"description":"A stand-alone types package for Undici","homepage":"https://undici.nodejs.org","repository":{"type":"git","url":"git+https://github.com/nodejs/undici.git"},"bugs":{"url":"https://github.com/nodejs/undici/issues"},"license":"MIT","readme":"# undici-types\n\nThis package is a dual-publish of the [undici](https://www.npmjs.com/package/undici) library types. The `undici` package **still contains types**. This package is for users who _only_ need undici types (such as for `@types/node`). It is published alongside every release of `undici`, so you can always use the same version.\n\n- [GitHub nodejs/undici](https://github.com/nodejs/undici)\n- [Undici Documentation](https://undici.nodejs.org/#/)\n","readmeFilename":"README.md","contributors":[{"name":"Daniele Belardi","url":"https://github.com/dnlup"},{"name":"Ethan Arrowood","url":"https://github.com/ethan-arrowood"},{"name":"Matteo Collina","url":"https://github.com/mcollina"},{"name":"Matthew Aitken","url":"https://github.com/KhafraDev"},{"name":"Robert Nagy","url":"https://github.com/ronag"},{"name":"Szymon Marczak","url":"https://github.com/szmarczak"},{"name":"Tomas Della Vedova","url":"https://github.com/delvedor"}]}