{"_attachments":{},"_id":"ufo","_rev":"299572-61f1ce5eefbf788ede95505b","description":"URL utils for humans","dist-tags":{"0.5x":"0.5.5","0.6x":"0.6.12","latest":"1.6.4"},"license":"MIT","maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"name":"ufo","readme":"# ufo\n\n[![npm version][npm-version-src]][npm-version-href]\n[![npm downloads][npm-downloads-src]][npm-downloads-href]\n[![bundle][bundle-src]][bundle-href]\n[![Codecov][codecov-src]][codecov-href]\n\nURL utils for humans.\n\n## Install\n\nInstall using npm or your favourite package manager:\n\nInstall package:\n\n```sh\n# npm\nnpm install ufo\n\n# yarn\nyarn add ufo\n\n# pnpm\npnpm install ufo\n\n# bun\nbun install ufo\n```\n\nImport utils:\n\n```js\n// ESM\nimport { normalizeURL, joinURL } from \"ufo\";\n\n// CommonJS\nconst { normalizeURL, joinURL } = require(\"ufo\");\n\n// Deno\nimport { parseURL } from \"https://unpkg.com/ufo/dist/index.mjs\";\n```\n\n<!-- automd:jsdocs src=./src defaultGroup=utils -->\n\n## Encoding Utils\n\n### `decode(text)`\n\nDecodes text using `decodeURIComponent`. Returns the original text if it fails.\n\n### `decodePath(text)`\n\nDecodes path section of URL (consistent with encodePath for slash encoding).\n\n### `decodeQueryKey(text)`\n\nDecodes query key (consistent with `encodeQueryKey` for plus encoding).\n\n### `decodeQueryValue(text)`\n\nDecodes query value (consistent with `encodeQueryValue` for plus encoding).\n\n### `encode(text)`\n\nEncodes characters that need to be encoded in the path, search and hash sections of the URL.\n\n### `encodeHash(text)`\n\nEncodes characters that need to be encoded in the hash section of the URL.\n\n### `encodeHost(name)`\n\nEncodes hostname with punycode encoding.\n\n### `encodeParam(text)`\n\nEncodes characters that need to be encoded in the path section of the URL as a param. This function encodes everything `encodePath` does plus the slash (`/`) character.\n\n### `encodePath(text)`\n\nEncodes characters that need to be encoded in the path section of the URL.\n\n### `encodeQueryKey(text)`\n\nEncodes characters that need to be encoded for query values in the query section of the URL and also encodes the `=` character.\n\n### `encodeQueryValue(input)`\n\nEncodes characters that need to be encoded for query values in the query section of the URL.\n\n## Parsing Utils\n\n### `parseAuth(input)`\n\nTakes a string of the form `username:password` and returns an object with the username and password decoded.\n\n### `parseFilename(input, opts?: { strict? })`\n\nParses a URL and returns last segment in path as filename.\n\nIf `{ strict: true }` is passed as the second argument, it will only return the last segment only if ending with an extension.\n\n**Example:**\n\n```js\n// Result: filename.ext\nparseFilename(\"http://example.com/path/to/filename.ext\");\n\n// Result: undefined\nparseFilename(\"/path/to/.hidden-file\", { strict: true });\n```\n\n### `parseHost(input)`\n\nTakes a string, and returns an object with two properties: `hostname` and `port`.\n\n**Example:**\n\n```js\nparseHost(\"foo.com:8080\");\n// { hostname: 'foo.com', port: '8080' }\n```\n\n### `parsePath(input)`\n\nSplits the input string into three parts, and returns an object with those three parts.\n\n**Example:**\n\n```js\nparsePath(\"http://foo.com/foo?test=123#token\");\n// { pathname: 'http://foo.com/foo', search: '?test=123', hash: '#token' }\n```\n\n### `parseURL(input, defaultProto?)`\n\nTakes a URL string and returns an object with the URL's `protocol`, `auth`, `host`, `pathname`, `search`, and `hash`.\n\n**Example:**\n\n```js\nparseURL(\"http://foo.com/foo?test=123#token\");\n// { protocol: 'http:', auth: '', host: 'foo.com', pathname: '/foo', search: '?test=123', hash: '#token' }\n\nparseURL(\"foo.com/foo?test=123#token\");\n// { pathname: 'foo.com/foo', search: '?test=123', hash: '#token' }\n\nparseURL(\"foo.com/foo?test=123#token\", \"https://\");\n// { protocol: 'https:', auth: '', host: 'foo.com', pathname: '/foo', search: '?test=123', hash: '#token' }\n```\n\n### `stringifyParsedURL(parsed)`\n\nTakes a `ParsedURL` object and returns the stringified URL.\n\n**Example:**\n\n```js\nconst obj = parseURL(\"http://foo.com/foo?test=123#token\");\nobj.host = \"bar.com\";\n\nstringifyParsedURL(obj); // \"http://bar.com/foo?test=123#token\"\n```\n\n## Query Utils\n\n### `encodeQueryItem(key, value)`\n\nEncodes a pair of key and value into a url query string value.\n\nIf the value is an array, it will be encoded as multiple key-value pairs with the same key.\n\n**Example:**\n\n```js\nencodeQueryItem('message', 'Hello World')\n// 'message=Hello+World'\n\nencodeQueryItem('tags', ['javascript', 'web', 'dev'])\n// 'tags=javascript&tags=web&tags=dev'\n```\n\n### `parseQuery(parametersString)`\n\nParses and decodes a query string into an object.\n\nThe input can be a query string with or without the leading `?`.\n\n**Example:**\n\n```js\nparseQuery(\"?foo=bar&baz=qux\");\n// { foo: \"bar\", baz: \"qux\" }\n\nparseQuery(\"tags=javascript&tags=web&tags=dev\");\n// { tags: [\"javascript\", \"web\", \"dev\"] }\n```\n\n### `stringifyQuery(query)`\n\nStringfies and encodes a query object into a query string.\n\n**Example:**\n\n```js\nstringifyQuery({ foo: 'bar', baz: 'qux' })\n// 'foo=bar&baz=qux'\n\nstringifyQuery({ foo: 'bar', baz: undefined })\n// 'foo=bar'\n```\n\n## Utils\n\n### `$URL()`\n\n### `cleanDoubleSlashes(input)`\n\nRemoves double slashes from the URL.\n\n**Example:**\n\n```js\ncleanDoubleSlashes(\"//foo//bar//\"); // \"/foo/bar/\"\n\ncleanDoubleSlashes(\"http://example.com/analyze//http://localhost:3000//\");\n// Returns \"http://example.com/analyze/http://localhost:3000/\"\n```\n\n### `filterQuery(input, predicate)`\n\nRemoves the query section of the URL.\n\n**Example:**\n\n```js\nfilterQuery(\"/foo?bar=1&baz=2\", (key) => key !== \"bar\"); // \"/foo?baz=2\"\n```\n\n### `getQuery(input)`\n\nParses and decodes the query object of an input URL into an object.\n\n**Example:**\n\n```js\ngetQuery(\"http://foo.com/foo?test=123&unicode=%E5%A5%BD\");\n// { test: \"123\", unicode: \"好\" }\n```\n\n### `hasLeadingSlash(input)`\n\nChecks if the input has a leading slash (e.g. `/foo`).\n\n### `hasProtocol(inputString, opts)`\n\nChecks if the input has a protocol.\n\nYou can use `{ acceptRelative: true }` to accept relative URLs as valid protocol.\n\n**Example:**\n\n```js\nhasProtocol('https://example.com'); // true\n\nhasProtocol(\"//example.com\"); // false\n\nhasProtocol('//example.com', { acceptRelative: true });  // true\n\nhasProtocol(\"ftp://example.com\"); // true\n\nhasProtocol('data:text/plain'); // true\n\nhasProtocol('data:text/plain', { strict: true }); // false\n```\n\n### `hasTrailingSlash(input, respectQueryAndFragment?)`\n\nChecks if the input has a trailing slash.\n\n**Example:**\n\n```js\nhasTrailingSlash(\"/foo/\"); // true\n\nhasTrailingSlash(\"/foo\"); // false\n\nhasTrailingSlash(\"/foo?query=true\", true); // false\n\nhasTrailingSlash(\"/foo/?query=true\", true); // true\n```\n\n### `isEmptyURL(url)`\n\nChecks if the input URL is empty or `/`.\n\n### `isEqual(a, b, options)`\n\nChecks if two paths are equal regardless of encoding, trailing slash, and leading slash differences.\n\nYou can make slash check strict by setting `{ trailingSlash: true, leadingSlash: true }` as options.\n\nYou can make encoding check strict by setting `{ encoding: true }` as options.\n\n**Example:**\n\n```js\nisEqual(\"/foo\", \"foo\"); // true\nisEqual(\"foo/\", \"foo\"); // true\nisEqual(\"/foo bar\", \"/foo%20bar\"); // true\n\n// Strict compare\nisEqual(\"/foo\", \"foo\", { leadingSlash: true }); // false\nisEqual(\"foo/\", \"foo\", { trailingSlash: true }); // false\nisEqual(\"/foo bar\", \"/foo%20bar\", { encoding: true }); // false\n```\n\n### `isNonEmptyURL(url)`\n\nChecks if the input URL is neither empty nor `/`.\n\n### `isRelative(inputString)`\n\nCheck if a path starts with `./` or `../`.\n\n**Example:**\n\n```js\nisRelative(\"./foo\"); // true\n```\n\n### `isSamePath(p1, p2)`\n\nCheck if two paths are equal or not. Trailing slash and encoding are normalized before comparison.\n\n**Example:**\n\n```js\nisSamePath(\"/foo\", \"/foo/\"); // true\n```\n\n### `isScriptProtocol(protocol?)`\n\nChecks if the input protocol is any of the dangerous `blob:`, `data:`, `javascript`: or `vbscript:` protocols.\n\n**Example:**\n\n```js\nisScriptProtocol(\"javascript:alert(1)\"); // true\n\nisScriptProtocol(\"data:text/html,hello\"); // true\n\nisScriptProtocol(\"blob:hello\"); // true\n\nisScriptProtocol(\"vbscript:alert(1)\"); // true\n\nisScriptProtocol(\"https://example.com\"); // false\n```\n\n### `joinRelativeURL()`\n\nJoins multiple URL segments into a single URL and also handles relative paths with `./` and `../`.\n\n**Example:**\n\n```js\njoinRelativeURL(\"/a\", \"../b\", \"./c\"); // \"/b/c\"\n```\n\n### `joinURL(base)`\n\nJoins multiple URL segments into a single URL.\n\n**Example:**\n\n```js\njoinURL(\"a\", \"/b\", \"/c\"); // \"a/b/c\"\n```\n\n### `normalizeURL(input)`\n\nNormalizes the input URL:\n\n- Ensures the URL is properly encoded - Ensures pathname starts with a slash - Preserves protocol/host if provided\n\n**Example:**\n\n```js\nnormalizeURL(\"test?query=123 123#hash, test\");\n// Returns \"test?query=123%20123#hash,%20test\"\n\nnormalizeURL(\"http://localhost:3000\");\n// Returns \"http://localhost:3000\"\n```\n\n### `resolveURL(base)`\n\nResolves multiple URL segments into a single URL.\n\n**Example:**\n\n```js\nresolveURL(\"http://foo.com/foo?test=123#token\", \"bar\", \"baz\");\n// Returns \"http://foo.com/foo/bar/baz?test=123#token\"\n```\n\n### `withBase(input, base)`\n\nEnsures the URL or pathname starts with base.\n\nIf input already starts with base, it will not be added again.\n\n**Example:**\n\n```js\nwithBase(\"/foo/bar\", \"/foo\"); // \"/foo/bar\"\n\nwithBase(\"/foo/bar\", \"/baz\"); // \"/baz/foo/bar\"\n```\n\n### `withFragment(input, hash)`\n\nAdds or replaces the fragment section of the URL.\n\n**Example:**\n\n```js\nwithFragment(\"/foo\", \"bar\"); // \"/foo#bar\"\nwithFragment(\"/foo#bar\", \"baz\"); // \"/foo#baz\"\nwithFragment(\"/foo#bar\", \"\"); // \"/foo\"\n```\n\n### `withHttp(input)`\n\nAdds or replaces the URL protocol to `http://`.\n\n**Example:**\n\n```js\nwithHttp(\"https://example.com\"); // http://example.com\n```\n\n### `withHttps(input)`\n\nAdds or replaces the URL protocol to `https://`.\n\n**Example:**\n\n```js\nwithHttps(\"http://example.com\"); // https://example.com\n```\n\n### `withLeadingSlash(input)`\n\nEnsures the URL or pathname has a leading slash.\n\n**Example:**\n\n```js\nwithLeadingSlash(\"foo\"); // \"/foo\"\n```\n\n### `withoutBase(input, base)`\n\nRemoves the base from the URL or pathname.\n\nIf input does not start with base, it will not be removed.\n\n**Example:**\n\n```js\nwithoutBase(\"/foo/bar\", \"/foo\"); // \"/bar\"\n```\n\n### `withoutFragment(input)`\n\nRemoves the fragment section from the URL.\n\n**Example:**\n\n```js\nwithoutFragment(\"http://example.com/foo?q=123#bar\")\n// Returns \"http://example.com/foo?q=123\"\n```\n\n### `withoutHost(input)`\n\nRemoves the host from the URL while preserving everything else.\n\n**Example:**\n\n```js\nwithoutHost(\"http://example.com/foo?q=123#bar\")\n// Returns \"/foo?q=123#bar\"\n```\n\n### `withoutLeadingSlash(input)`\n\nRemoves leading slash from the URL or pathname.\n\n**Example:**\n\n```js\nwithoutLeadingSlash(\"/foo\"); // \"foo\"\n```\n\n### `withoutProtocol(input)`\n\nRemoves the protocol from the input.\n\n**Example:**\n\n```js\nwithoutProtocol(\"http://example.com\"); // \"example.com\"\n```\n\n### `withoutTrailingSlash(input, respectQueryAndFragment?)`\n\nRemoves the trailing slash from the URL or pathname.\n\nIf second argument is `true`, it will only remove the trailing slash if it's not part of the query or fragment with cost of more expensive operations.\n\n**Example:**\n\n```js\nwithoutTrailingSlash(\"/foo/\"); // \"/foo\"\n\nwithoutTrailingSlash(\"/path/?query=true\", true); // \"/path?query=true\"\n```\n\n### `withProtocol(input, protocol)`\n\nAdds or replaces protocol of the input URL.\n\n**Example:**\n\n```js\nwithProtocol(\"http://example.com\", \"ftp://\"); // \"ftp://example.com\"\n```\n\n### `withQuery(input, query)`\n\nAdd/Replace the query section of the URL.\n\n**Example:**\n\n```js\nwithQuery(\"/foo?page=a\", { token: \"secret\" }); // \"/foo?page=a&token=secret\"\n```\n\n### `withTrailingSlash(input, respectQueryAndFragment?)`\n\nEnsures the URL ends with a trailing slash.\n\nIf second argument is `true`, it will only add the trailing slash if it's not part of the query or fragment with cost of more expensive operation.\n\n**Example:**\n\n```js\nwithTrailingSlash(\"/foo\"); // \"/foo/\"\n\nwithTrailingSlash(\"/path?query=true\", true); // \"/path/?query=true\"\n```\n\n<!-- /automd -->\n\n## License\n\n[MIT](./LICENSE)\n\nSpecial thanks to Eduardo San Martin Morote ([posva](https://github.com/posva)) for [encoding utilities](https://github.com/vuejs/vue-router-next/blob/v4.0.1/src/encoding.ts)\n\n<!-- Badges -->\n\n[npm-version-src]: https://img.shields.io/npm/v/ufo?style=flat&colorA=18181B&colorB=F0DB4F\n[npm-version-href]: https://npmjs.com/package/ufo\n[npm-downloads-src]: https://img.shields.io/npm/dm/ufo?style=flat&colorA=18181B&colorB=F0DB4F\n[npm-downloads-href]: https://npmjs.com/package/ufo\n[codecov-src]: https://img.shields.io/codecov/c/gh/unjs/ufo/main?style=flat&colorA=18181B&colorB=F0DB4F\n[codecov-href]: https://codecov.io/gh/unjs/ufo\n[bundle-src]: https://img.shields.io/bundlephobia/minzip/ufo?style=flat&colorA=18181B&colorB=F0DB4F\n[bundle-href]: https://bundlephobia.com/result?p=ufo\n","time":{"created":"2022-01-26T22:42:38.527Z","modified":"2026-04-29T10:52:06.555Z","0.5.5":"2022-01-31T11:47:28.561Z","0.6.12":"2022-01-31T11:44:57.880Z","0.7.10":"2022-01-31T11:41:53.308Z","0.7.9":"2021-08-17T17:52:39.478Z","0.7.8":"2021-08-17T17:21:49.399Z","0.7.7":"2021-06-30T17:46:43.043Z","0.7.6":"2021-06-30T16:24:49.018Z","0.7.5":"2021-05-17T10:36:24.961Z","0.7.4":"2021-05-11T18:52:32.903Z","0.7.3":"2021-05-11T11:17:23.423Z","0.7.2":"2021-04-28T10:48:18.256Z","0.7.1":"2021-04-23T18:19:23.849Z","0.7.0":"2021-04-23T12:02:48.325Z","0.6.11":"2021-04-06T20:41:47.438Z","0.6.10":"2021-03-09T17:39:57.520Z","0.6.9":"2021-03-05T12:40:09.148Z","0.6.8":"2021-03-05T11:21:35.911Z","0.6.7":"2021-02-22T20:38:58.660Z","0.6.6":"2021-02-10T11:56:46.590Z","0.6.5":"2021-02-10T11:17:16.985Z","0.6.4":"2021-02-08T23:37:22.366Z","0.6.3":"2021-02-08T23:11:14.764Z","0.6.2":"2021-02-08T10:19:50.695Z","0.6.1":"2021-02-02T22:45:08.566Z","0.6.0":"2021-02-02T22:34:44.533Z","0.5.4":"2021-01-07T13:11:25.457Z","0.5.3":"2021-01-06T17:16:22.956Z","0.5.2":"2020-12-22T17:18:28.453Z","0.1.5":"2012-06-21T07:45:33.294Z","0.1.4":"2012-06-20T10:05:14.434Z","0.1.3":"2012-06-07T11:41:55.930Z","0.1.2":"2012-05-23T07:51:09.248Z","0.1.1":"2012-05-18T09:46:30.588Z","0.1.0":"2012-05-16T09:27:59.320Z","0.7.11":"2022-02-25T21:40:56.125Z","0.8.0":"2022-03-15T20:39:13.463Z","0.8.1":"2022-03-16T10:20:12.090Z","0.8.2":"2022-03-31T18:47:19.313Z","0.8.3":"2022-03-31T19:01:31.200Z","0.8.4":"2022-05-06T15:48:19.001Z","0.8.5":"2022-07-07T16:01:12.840Z","0.8.6":"2022-10-15T16:54:41.512Z","1.0.0":"2022-11-14T17:23:31.931Z","1.0.1":"2022-11-29T12:28:18.562Z","1.1.0":"2023-02-16T23:01:28.490Z","1.1.1":"2023-02-27T16:52:39.681Z","1.1.2":"2023-05-03T23:35:56.096Z","1.2.0":"2023-07-29T06:43:09.500Z","1.3.0":"2023-08-24T18:19:49.437Z","1.3.1":"2023-09-28T10:38:53.629Z","1.3.2":"2023-11-15T16:37:58.637Z","1.4.0":"2024-02-06T10:20:53.702Z","1.5.0":"2024-03-15T16:25:51.911Z","1.5.1":"2024-03-15T22:49:15.474Z","1.5.2":"2024-03-18T11:45:13.967Z","1.5.3":"2024-03-20T11:33:03.453Z","1.5.4":"2024-07-16T18:29:38.850Z","1.6.0":"2025-04-07T14:31:55.190Z","1.6.1":"2025-04-08T08:11:18.539Z","1.6.2":"2026-01-06T11:28:14.312Z","1.6.3":"2026-01-14T23:46:35.800Z","1.6.4":"2026-04-29T10:51:58.509Z"},"versions":{"0.5.5":{"name":"ufo","version":"0.5.5","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","release":"yarn test && yarn build && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"readmeFilename":"README.md","gitHead":"752de3c257533a9de15b53e913cec79c6d3eaffd","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.5.5","_nodeVersion":"14.18.2","_npmVersion":"8.3.0","dist":{"integrity":"sha512-C+VZCzo9JSBbLX5AklKIdWRYXghVM00PXFmIfG23++y2XsmV6C70L8KQg6IvGNdGI2txE+j8ywzKpYzv81sn1Q==","shasum":"5183a87d7d58af35d446352cf9fe187a8a20b4bd","tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.5.5.tgz","fileCount":6,"unpackedSize":31152,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh98xQCRA9TVsSAnZWagAAeSkP/RChgRBP0wJnPn+lPClc\n/EpqhpC3tsN3vm3KR/u0Yu+kBD/JEe1yIapBnfjlTn+hncvKWvCYQbWA1J0F\n3SMpmZ+AjXO9CjfgVG0/4R9L/oovu+cBFI3o2U5eIh/VY+80QFO3+8W7cGFR\nBe+xS7asu5lUoYIEva8IGxsAk2mPifv/d3tbUUTdQeCfTd6Q7FeHQVCZexby\nJRGDhNmj9a/MUPDXIdgdJ1NmVk9o2StOMXBk/HSWUaLEYCqR4T9iqwrgoadV\nZgkTZxhwKgL1PZFTNetIz5Ee+WWYtTg6kw04jao+QBuHdAS0iW+erXUB71Bz\nLwfkH1xqrn0uxd+V8uTQqqFgJCFTgYV4w1S8N0iRg6ZVuJwLJrDA3qGnol9d\nw7QrXqdSlSzW9/lRG4SkQMljRcW1ICraQLCBM479Ut4lH7JG4rAL8JskXsDR\nz68XwRd3sgC7WLg2kp1Nnp0YurScTAVeSZTvc7TWI3bLpgb84MoZtVcS4arI\ngHCCrGb1ImNCgzWY4pSoT4FhCIr4bIJDo9/tr2q2NHhUUqjSAhWmG/leZ3PZ\nKVOtZPFonr/B9HtAAnykUK0py1bQ+/Kk5VxYwZ7HZJTgbsw9eYqQcjsW0V0u\narOqEMzrdlLFWZ0CM4tK68ba4rFy2w+OrBMcTlKH8ogSxs8r/WpUyOkNXlFJ\nZ/Ur\r\n=gMcn\r\n-----END PGP SIGNATURE-----\r\n","size":6769},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"pi0","email":"pyapar@gmail.com"},{"name":"danielroe","email":"daniel@roe.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.5.5_1643629648404_0.4787205181556702"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-31T11:47:34.287Z"},"0.6.12":{"name":"ufo","version":"0.6.12","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"readmeFilename":"README.md","gitHead":"fc9960ede2f8ecdc9ff1b9790f8fedbff03494ce","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.6.12","_nodeVersion":"14.18.2","_npmVersion":"8.3.0","dist":{"integrity":"sha512-+Sg92qbu7XRaqO1y2DKEDuT83ggmYN/PhymUk6XrApJ0XOTs5LFODQt7aPqhRGB7jkKKhJatcOSi3OOxVAzRAw==","shasum":"10a4c8875e5bbe19bf85250b47805d74f37350af","tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.6.12.tgz","fileCount":6,"unpackedSize":34964,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh98u5CRA9TVsSAnZWagAAwY0P/1jnLs4Jcf+cHDK5NNMB\n+BC5/8hwt7mcQR6CfdWIqjqP2nSRtc0Os9BjDl09meuGhU2E8LdZqsTyyWZL\nGA7GDHm7n/k7Ii+7pmBoeRGPOSueRpphv1mzt7OKx0UQwPGCj47iC6Z0IVxu\nctpqQ+FlqBkd9KFz+YAMIUk33/0qRssTSdsk+Z/rAsWbzOxsjmsdnIjeno59\nnu1o7fnnL4Yt/hPpXODTCto0fKmgp9UmqLEyQxNS3/9lTd4ZaXHevPnbUjq3\nBnRYaUE7RbG5BRaI1PSw2+Q2jenG37ixpjNHh3WMgA+n8bVi2BTWTAsQ/8Op\ndWXDqYVAeWuCdg1ADeDtVV+U5FUD3K8BFvW/2WbaYx2mto2N+3nROCxHg3Xz\nc/RMOjAZEDB3RvdSd6qjQ8lBa6CfsTw5ZzDOpTDgQ6ZghsCIfXCBw3duedmc\nPkwuLbGfgv3lsg0/szqJtbjejrSzNpk/soYl4T8zgk03adRkFqYL0UASsqIl\n85QgdTe5djM3ZW6aNYu65+3ttfWAJl2vWPHS20rhrI8qk+uqB1rTuCLpU72D\nfU02VS0nWY20FQOv+9w6Qp8JAybayXpEZgQS3qdkOWA/CA2rJaZNRivVRZve\nY4bnRbj/lWKic0JkTUCrki3T7QQwqMXxTKeAE5DH5Gny2Q6ygAIBO1zvD9iG\nSPaC\r\n=wPOx\r\n-----END PGP SIGNATURE-----\r\n","size":7320},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"pi0","email":"pyapar@gmail.com"},{"name":"danielroe","email":"daniel@roe.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.6.12_1643629497737_0.7422518587691196"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-31T11:45:04.230Z"},"0.7.10":{"name":"ufo","version":"0.7.10","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.js","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"dd470b09120e70d13c252e688c67401023488055","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.7.10","_nodeVersion":"14.18.2","_npmVersion":"8.3.0","dist":{"integrity":"sha512-YTnDRlE1cIofRqOFN8ioAbz9qenDvkgVMSn0cnxvIDjM9sfEOMKB0ybMr+otSlCXMfQ/X35haYRoI7Nua82RrA==","shasum":"278942c326e3da344b6b97637ed7f322e817261e","tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.7.10.tgz","fileCount":6,"unpackedSize":38159,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh98sBCRA9TVsSAnZWagAADecP/iVEf7qJQW1dmlClRKrd\n5PKzHdcuL+h/ngis2YsCxz+0cMZclzeEJ0crm0YxuHskN5QWFBCjqWcAnPhF\nDoWoeYILH8vLf3bkEXGGbR8Ko4YIUmwpL+VmqBaYzvWjTzZS86n6t2G5dd6k\nDR7nhxGBPJAq6Fwpukt8M57mn5W6igYZfhedse5CD3PtJ4mVGBOgly6w5ZMj\nV0K6wHdPMh7RFi5NluscbdDACKfLtdAX4sh9Y/K0W5d+AAA+WhVNpaGwMKvY\nnc9sOGbJSLgbc1/xDBrAz/cY3OXoTXV1HFcOG0VtuU1wE9Gh9Iw35JZpcaK6\nxVGYPWIAsatZgMdSPYXQJrWYDOMqyVXBSzS4/GIcV4MrbVBHlaXhA/ttauAl\nXNfaZUxrS5K71raGeC7OmrZoBx1Hqc6hT/yK/Gr/R20DxNoC9mcwGtZk5DOm\nzDtGWP7732JqictltGqlrIf+6LCbHx1wZS5/a9rL3RNQ4th4tizseCGt7nqg\nvXCXtoekkOkcWLVfNCpcgTs0jOUSDG2leYenAfddDBqN2U1I0sr6/z8rXhaM\n4k8et3ljsgTB5E6uv5lb76v8b7/wYTfxkU7cxaExykvgpSXP3la5Yuk/keoX\ny6OjysF1K2jYY+cMLPcCAEBq39K8usxDJYfeduiT2AqJILTt+mIrcObLtp50\naf09\r\n=GPIU\r\n-----END PGP SIGNATURE-----\r\n","size":7754},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"pi0","email":"pyapar@gmail.com"},{"name":"danielroe","email":"daniel@roe.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.7.10_1643629313184_0.40942270114688206"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-31T11:41:58.156Z"},"0.7.9":{"name":"ufo","version":"0.7.9","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.js","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"2152bd8f5a7203df93e56911c3cf83ee6dbc0f29","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.7.9","_nodeVersion":"14.17.3","_npmVersion":"6.14.13","dist":{"shasum":"0268e3734b413c9ed6f3510201f42372821b875c","size":14346,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.7.9.tgz","integrity":"sha512-6t9LrLk3FhqTS+GW3IqlITtfRB5JAVr5MMNjpBECfK827W+Vh5Ilw/LhTcHWrt6b3hkeBvcbjx4Ti7QVFzmcww=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.7.9_1629222759302_0.8638782988500433"},"_hasShrinkwrap":false,"publish_time":1629222759478,"_cnpm_publish_time":1629222759478,"_cnpmcore_publish_time":"2021-12-16T15:10:58.440Z","deprecated":"security: please use latest version"},"0.7.8":{"name":"ufo","version":"0.7.8","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.js","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"ef4f41231eedea8326e9781e5b70a68eead4561b","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.7.8","_nodeVersion":"14.17.3","_npmVersion":"6.14.13","dist":{"shasum":"25a29493a7f4321dd197fd47e3da762ad2e0b4aa","size":13994,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.7.8.tgz","integrity":"sha512-SXYVhsOPnOKTPUszaGUwM35DqR0ZCm9OPaNHsA7FTVDdzpoQtsm+3uB3XeuHbww0e5vIHEdvDi/u6Qu6GT6Wog=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.7.8_1629220909208_0.5275593417094417"},"_hasShrinkwrap":false,"publish_time":1629220909399,"_cnpm_publish_time":1629220909399,"_cnpmcore_publish_time":"2021-12-16T15:10:58.658Z","deprecated":"security: please use latest version"},"0.7.7":{"name":"ufo","version":"0.7.7","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.js","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"9dbf95c9f5f4a15f44508bcf8a0c475bb1a0dd10","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.7.7","_nodeVersion":"14.16.1","_npmVersion":"7.12.1","dist":{"shasum":"0062f9e5e790819b0fb23ca24d7c63a4011c036a","size":7729,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.7.7.tgz","integrity":"sha512-N25aY3HBkJBnahm+2l4JRBBrX5I+JPakF/tDHYDTjd3wUR7iFLdyiPhj8mBwBz21v728BKwM9L9tgBfCntgdlw=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.7.7_1625075202818_0.33877852047311463"},"_hasShrinkwrap":false,"publish_time":1625075203043,"_cnpm_publish_time":1625075203043,"_cnpmcore_publish_time":"2021-12-16T15:10:58.877Z","deprecated":"security: please use latest version"},"0.7.6":{"name":"ufo","version":"0.7.6","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.js","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"005bbf60d9b5df5d776d0fcdf4ecfc832524f0d5","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.7.6","_nodeVersion":"14.16.1","_npmVersion":"7.12.1","dist":{"shasum":"d10f3707afff9e140d1a097c8b26ad75c1651ccc","size":7579,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.7.6.tgz","integrity":"sha512-T017b40nyN5EKKakegyjXBxWI2nFJxcQQifTN1LeQjL2wck7pa/Q7JEdkvrVsciHd5fsl1jiLidY+LScZiY0PA=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.7.6_1625070288850_0.6996942938496478"},"_hasShrinkwrap":false,"publish_time":1625070289018,"_cnpm_publish_time":1625070289018,"_cnpmcore_publish_time":"2021-12-16T15:10:59.223Z","deprecated":"security: please use latest version"},"0.7.5":{"name":"ufo","version":"0.7.5","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.js","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"2a21bc6b821eafd2284cacdf1f99a4bd133c1fd7","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.7.5","_nodeVersion":"14.16.1","_npmVersion":"7.12.1","dist":{"shasum":"5d5b2174747c0072edd30501994c8ac4ad2e77ea","size":7490,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.7.5.tgz","integrity":"sha512-FGG+EgguC1oz5dTE1JptPWCyj6Z9mYpwvZY8PTu9Vh/Aoy+Mj9cpeQ3gg4kyEMDbMrH+lTYiw7bomG58B8X7Kg=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.7.5_1621247784856_0.9096359099918161"},"_hasShrinkwrap":false,"publish_time":1621247784961,"_cnpm_publish_time":1621247784961,"_cnpmcore_publish_time":"2021-12-16T15:10:59.484Z","deprecated":"security: please use latest version"},"0.7.4":{"name":"ufo","version":"0.7.4","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.js","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"93e401c2675231dd8da1a4ac0503a1b63c4b45be","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.7.4","_nodeVersion":"14.16.1","_npmVersion":"6.14.12","dist":{"shasum":"06e971738bea098b95056755ba006a6b73a63f97","size":10574,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.7.4.tgz","integrity":"sha512-qFCjO4/IAaejZ6QKVBdM7FZkjhd8zQmBmE6i2bcSwBRrctPVtKXFojJa2flaqNUd7YWQoCFwd44MpOt1g94ekQ=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.7.4_1620759152744_0.8950001025923409"},"_hasShrinkwrap":false,"publish_time":1620759152903,"_cnpm_publish_time":1620759152903,"_cnpmcore_publish_time":"2021-12-16T15:10:59.698Z","deprecated":"security: please use latest version"},"0.7.3":{"name":"ufo","version":"0.7.3","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.js","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"19f780750530340f77eed9a713e2652db24aacf7","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.7.3","_nodeVersion":"14.16.1","_npmVersion":"6.14.12","dist":{"shasum":"e17478063b0e0243a7d7fa6622dd932325eb77f1","size":10596,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.7.3.tgz","integrity":"sha512-HxsMs4hntypF/RDBDYVPjUtLNxCcUuJ3/jRXAuRriaBDSvqQSsUhiJeCxAbcOELMtKIXURQaUw1gW68HdKoQ3Q=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.7.3_1620731843313_0.7726249326557433"},"_hasShrinkwrap":false,"publish_time":1620731843423,"deprecated":"please use 0.7.4. trailingSlash query support is reverted to avoid regression","_cnpm_publish_time":1620731843423,"_cnpmcore_publish_time":"2021-12-16T15:10:59.902Z"},"0.7.2":{"name":"ufo","version":"0.7.2","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.js","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"257939e806a752543e842169ce05bc37a288533c","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.7.2","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"a0e3c9f1b1d9b55f60e068d17afd6ffbdc4fbd62","size":10244,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.7.2.tgz","integrity":"sha512-cfxpkL4g79LrCXa1RyvhM/obxunKRjHApD4Ml4UG0CZcKvfodfKH0YTmnm6ofKKUnLzBMdfXSZzlgyQmj6b3sw=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.7.2_1619606898086_0.7539545704008224"},"_hasShrinkwrap":false,"publish_time":1619606898256,"_cnpm_publish_time":1619606898256,"_cnpmcore_publish_time":"2021-12-16T15:11:00.099Z","deprecated":"security: please use latest version"},"0.7.1":{"name":"ufo","version":"0.7.1","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"}},"main":"./dist/index.js","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"8ac0895c19b61cfeff65bab46514d1455b2ae4b3","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.7.1","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"shasum":"32441d4c034721223a1f471b362e73588f0fe669","size":10163,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.7.1.tgz","integrity":"sha512-Kt3fZl3vV5FgHTUZFeBB+kWFASPmPdvJLyGX00SceK/iIKyq3QqaOLoplAPCc7q/O2+ynIVpLH8dTOjICWGUew=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.7.1_1619201963687_0.3613243219408435"},"_hasShrinkwrap":false,"publish_time":1619201963849,"_cnpm_publish_time":1619201963849,"_cnpmcore_publish_time":"2021-12-16T15:11:00.339Z","deprecated":"security: please use latest version"},"0.7.0":{"name":"ufo","version":"0.7.0","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.js","module":"./dist/index.mjs"}},"main":"./dist/index.js","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"78aaf9ecad955ef339e61c0fb432c9fe8db3f708","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.7.0","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"shasum":"6d8f496a48be78cc284ef0be72976433985bdb76","size":10156,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.7.0.tgz","integrity":"sha512-bUkZICzmvrnuyyq+Ey2WK9zrl3u7ahvn4nRdXpi110yV0QMTYIhRAFAXPOg9Jmxl+EyShcphFBgiphV7pAkBDQ=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.7.0_1619179368190_0.9030251726619565"},"_hasShrinkwrap":false,"publish_time":1619179368325,"deprecated":"please upgrade to 0.7.1 or higher","_cnpm_publish_time":1619179368325,"_cnpmcore_publish_time":"2021-12-16T15:11:00.702Z"},"0.6.11":{"name":"ufo","version":"0.6.11","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"46f76e9a753df36c1feef0037a537ffa54f7cf45","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.6.11","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"shasum":"69311ed4abc8ab671c83754b79ce0d396fea1075","size":10060,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.6.11.tgz","integrity":"sha512-Yu7TJThwlr23peOkX/+hm6LfkyBs+eDWV880468PTrjKBKjjsNWFFwIuOqDfmXngRo9TZ4+twFYueRH0OLl0Gw=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.6.11_1617741707251_0.5078982530780098"},"_hasShrinkwrap":false,"publish_time":1617741707438,"_cnpm_publish_time":1617741707438,"_cnpmcore_publish_time":"2021-12-16T15:11:00.917Z","deprecated":"security: please use latest version"},"0.6.10":{"name":"ufo","version":"0.6.10","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"7760519d0595fa37f28be525ac6cc4eae5b51aa3","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.6.10","_nodeVersion":"14.15.0","_npmVersion":"7.5.4","dist":{"shasum":"c7ace9b8f72cb08c35e3a8c8edc76f062fbaa7d0","size":10041,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.6.10.tgz","integrity":"sha512-sMbJnrBcKKsbVyr6++hb0n9lCmrMqkJrNnJIOJ3sckeqY6NMfAULcRGbBWcASSnN1HDV3YqiGCPzi9RVs511bw=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.6.10_1615311597248_0.12895182044567233"},"_hasShrinkwrap":false,"publish_time":1615311597520,"_cnpm_publish_time":1615311597520,"_cnpmcore_publish_time":"2021-12-16T15:11:01.266Z","deprecated":"security: please use latest version"},"0.6.9":{"name":"ufo","version":"0.6.9","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"228da3707ddc64f01ad968e55d92ee116b1938aa","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.6.9","_nodeVersion":"14.15.0","_npmVersion":"7.5.4","dist":{"shasum":"9f1f830d11ec059e957149002cbd1d34b3ddeab0","size":9971,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.6.9.tgz","integrity":"sha512-+Yr0CwPqrug7Svt6zZRhx+WcxGZaOws0JlWB+NHKCp+BOnds9jHFFyTYeigpRWGRDZDf1LiBKl2x5WbWhGhBVQ=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.6.9_1614948008981_0.8930393569686144"},"_hasShrinkwrap":false,"publish_time":1614948009148,"_cnpm_publish_time":1614948009148,"_cnpmcore_publish_time":"2021-12-16T15:11:01.497Z","deprecated":"security: please use latest version"},"0.6.8":{"name":"ufo","version":"0.6.8","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"7782d824d280f71360c4006146ddb963acecdea0","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.6.8","_nodeVersion":"14.15.0","_npmVersion":"7.5.4","dist":{"shasum":"9186f367be7dec32d8c6e31b5a47ac8f2c43c0d2","size":9825,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.6.8.tgz","integrity":"sha512-f+WYfUx2KXkJDq6b45ztUSLTrfboiE3G62oSNm0XjSHkDowgwNcUdTMEHHqC/68L9SvOakGGUYTNljo/oH5sDg=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.6.8_1614943295724_0.8056318447635578"},"_hasShrinkwrap":false,"publish_time":1614943295911,"_cnpm_publish_time":1614943295911,"_cnpmcore_publish_time":"2021-12-16T15:11:02.198Z","deprecated":"security: please use latest version"},"0.6.7":{"name":"ufo","version":"0.6.7","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"e0a159928dc4cefe900a619e55a1cdbfeadb4257","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.6.7","_nodeVersion":"14.15.0","_npmVersion":"7.5.4","dist":{"shasum":"e39995c2208ac66f23fc1dfbc090e307ab0ab92b","size":9688,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.6.7.tgz","integrity":"sha512-pSaIXMAb5RTmuGEzSwqxvIt9x6qgsSXh3/dJXAaLGedT9oz2xqWCXvliFTCSUQxwHlG2fL3tseCFKoNEWpo31w=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.6.7_1614026338521_0.6965232459040029"},"_hasShrinkwrap":false,"publish_time":1614026338660,"_cnpm_publish_time":1614026338660,"_cnpmcore_publish_time":"2021-12-16T15:11:02.446Z","deprecated":"security: please use latest version"},"0.6.6":{"name":"ufo","version":"0.6.6","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"0168c21fe6db58fd20b38d1ab14451c1153f678b","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.6.6","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"6bc4b4de19ff9a9cb68134719190196b0cc7353b","size":9495,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.6.6.tgz","integrity":"sha512-HDhml2KskY1VVtQGckmaf/p3rTuleC2M7qL9Wf1dJZMw7glFk6oVjRsddf6LJp0I+pHERZzfttVmBMq1nR3PGA=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.6.6_1612958206478_0.3440628608495384"},"_hasShrinkwrap":false,"publish_time":1612958206590,"_cnpm_publish_time":1612958206590,"_cnpmcore_publish_time":"2021-12-16T15:11:02.653Z","deprecated":"security: please use latest version"},"0.6.5":{"name":"ufo","version":"0.6.5","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"1895024cfc9af9d4f09d3cc832a8f3d47203f485","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.6.5","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"90b14d516daf4cc66674f6a5ea5b32c6b257e3d2","size":9411,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.6.5.tgz","integrity":"sha512-QwmHDefpQSmULSXO0q6LPiaBBi7sDVYpunWaxs+P97I5PnK04IkcN5vp28Mk+b11FmAMgEhrGhuLuHdw8a0tEw=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.6.5_1612955836822_0.26813226246193067"},"_hasShrinkwrap":false,"publish_time":1612955836985,"_cnpm_publish_time":1612955836985,"_cnpmcore_publish_time":"2021-12-16T15:11:02.837Z","deprecated":"security: please use latest version"},"0.6.4":{"name":"ufo","version":"0.6.4","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"3a9c9733fd3cceb98482a95b692e3a2515a482d1","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.6.4","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"d2332bdcb8a31a399d1a6ab06a4646a524524a81","size":9194,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.6.4.tgz","integrity":"sha512-pi9H3gE8CSyM/IeKAKiozUP7ImtKh+qip5v8nzGiErFVGx9HEDThwT1+R1yCS+JQW56mEqQ9t/r4STviUqaebQ=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.6.4_1612827442240_0.021503337478365747"},"_hasShrinkwrap":false,"publish_time":1612827442366,"_cnpm_publish_time":1612827442366,"_cnpmcore_publish_time":"2021-12-16T15:11:03.074Z","deprecated":"security: please use latest version"},"0.6.3":{"name":"ufo","version":"0.6.3","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"bb2a64a0b1adeab10718d0d86068f27670cf884d","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.6.3","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"1c93bb56c601dae1b1ffa5eff0e25caf3e546f39","size":9074,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.6.3.tgz","integrity":"sha512-tIlJoRxc7XhIhXN+mpx14hEVntx7nNlZGVU0EVgyyI/+x/TYTWwvg9/jXQj5ecD3zeAL7sgTfRqENK8FBqQksw=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.6.3_1612825874653_0.12632415796227692"},"_hasShrinkwrap":false,"publish_time":1612825874764,"_cnpm_publish_time":1612825874764,"_cnpmcore_publish_time":"2021-12-16T15:11:03.282Z","deprecated":"security: please use latest version"},"0.6.2":{"name":"ufo","version":"0.6.2","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","prepublishOnly":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"5b8e2c5a70c8ad71ed5f3ec90b1f9f2a70e570ad","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.6.2","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"0def51a6c4ecbd6e1a4d192622a1cefdb9103164","size":8996,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.6.2.tgz","integrity":"sha512-BRoE0KTw4s+oVJ5GqYaNthVOFcLbdzw5qbHMmGRxZ3YHZJ0m5Zqvni0u+Ipugt5fHLzE2mC8FtaUZyta0EfUDw=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.6.2_1612779590595_0.4503679689620803"},"_hasShrinkwrap":false,"publish_time":1612779590695,"_cnpm_publish_time":1612779590695,"_cnpmcore_publish_time":"2021-12-16T15:11:03.530Z","deprecated":"security: please use latest version"},"0.6.1":{"name":"ufo","version":"0.6.1","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","release":"yarn test && yarn build && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"125906bdca9908a91bb66e34309b4bfe980b3577","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.6.1","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"a604175fb68d2f13740391a28af0c5e901124122","size":8786,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.6.1.tgz","integrity":"sha512-5fILNEcWgmB+8jEOZAS5h/KfK+BFNN84rQgfUacaQze+L5y3TIvIsBS88lG9nEKU8NRoA0/jGCw8+Jdudzqj3A=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.6.1_1612305908429_0.517368167904996"},"_hasShrinkwrap":false,"publish_time":1612305908566,"_cnpm_publish_time":1612305908566,"_cnpmcore_publish_time":"2021-12-16T15:11:03.730Z","deprecated":"security: please use latest version"},"0.6.0":{"name":"ufo","version":"0.6.0","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","release":"yarn test && yarn build && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"37fea9113201549edb1372c16b6363413138f24f","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.6.0","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"cfddbd744f44bba53a131a5ec652a7fa9a6c6ea4","size":8734,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.6.0.tgz","integrity":"sha512-4JXoDghrWmrbO3iKMts3SwtgXkqoDHWJJezrR90IiWvcEwjKHatKSkgvySlwb5immK1NKI27Va8AHHh/jgsvyg=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.6.0_1612305284430_0.6208296889275724"},"_hasShrinkwrap":false,"publish_time":1612305284533,"_cnpm_publish_time":1612305284533,"_cnpmcore_publish_time":"2021-12-16T15:11:03.958Z","deprecated":"security: please use latest version"},"0.5.4":{"name":"ufo","version":"0.5.4","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","release":"yarn test && yarn build && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"5c6b320efd7b843dcc82543dd164548462d976bf","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.5.4","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"a9b469fdc56fe27169f6f474ed590cc7b0fd4ebe","size":8639,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.5.4.tgz","integrity":"sha512-JxWFr31rhXXufMQKpV2CxFNrc1p9//aqHguWR32M0jPQnw2TNK9sERd7Bic+ZSprlmDPRPR4yuSueLNT8hsdQA=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.5.4_1610025085274_0.28725153301127304"},"_hasShrinkwrap":false,"publish_time":1610025085457,"_cnpm_publish_time":1610025085457,"_cnpmcore_publish_time":"2021-12-16T15:11:04.476Z","deprecated":"security: please use latest version"},"0.5.3":{"name":"ufo","version":"0.5.3","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","release":"yarn test && yarn build && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"d53a80003ca215b5face5dd86b504ed9187a6f68","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.5.3","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"9ed19774225d7847202b62b5a70ad4a2d81ab482","size":8529,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.5.3.tgz","integrity":"sha512-e3ptU9oixRcLA75+5bqo2qROHQlztr6oX9Ij94IsDFhWjLwhgzoDbFcBRCw8a0g8S/bwINKU1x6D5TE0x8YFzw=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.5.3_1609953382763_0.15614592813977302"},"_hasShrinkwrap":false,"publish_time":1609953382956,"_cnpm_publish_time":1609953382956,"_cnpmcore_publish_time":"2021-12-16T15:11:04.675Z","deprecated":"security: please use latest version"},"0.5.2":{"name":"ufo","version":"0.5.2","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/nuxt-contrib/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"},"./":"./"},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"build":"siroc build","lint":"eslint --ext .ts .","release":"yarn test && yarn build && standard-version && git push --follow-tags && npm publish","test":"yarn lint && jest"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/jest":"latest","@types/node":"latest","eslint":"latest","jest":"latest","siroc":"latest","standard-version":"latest","ts-jest":"latest","typescript":"latest"},"gitHead":"3e25080ad10643430670e7f3d0653b0dc0d79b51","bugs":{"url":"https://github.com/nuxt-contrib/ufo/issues"},"homepage":"https://github.com/nuxt-contrib/ufo#readme","_id":"ufo@0.5.2","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"7e84494a985a19c164b9c0a912a3785f174f6b7a","size":8448,"noattachment":false,"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.5.2.tgz","integrity":"sha512-ysCWIUdny1zMJJMX5imhBSP8zraKmQd7hgYngnS9bsDSyFndZ/xPZ+YwFdtF7CwhTp/NaeACQ7r55rUxK0XsNw=="},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.5.2_1608657508311_0.45409487522986103"},"_hasShrinkwrap":false,"publish_time":1608657508453,"_cnpm_publish_time":1608657508453,"_cnpmcore_publish_time":"2021-12-16T15:11:04.916Z","deprecated":"security: please use latest version"},"0.1.5":{"name":"ufo","version":"0.1.5","description":"UFO is a develope environment for front-end developer","author":{"name":"UFO Team of Sogou-inc."},"contributors":[{"name":"Zheng Xin","email":"zhengxin@sogou-inc.com"}],"dependencies":{"express":"2.5.9","request":"2.9.202","colors":"0.6.0","requirejs":"2.0.1"},"keywords":["framework","webapp"],"main":"lib/index","bin":{"ufo":"bin/ufo"},"engines":{"node":">= 0.4.0 < 0.7.0","npm":">= 1.0.0"},"devDependencies":{},"homepage":"","repository":{"type":"git","url":"git://github.com/sogou-ufo/ufo.git"},"bugs":{"url":"https://github.com/sogou-ufo/ufo/issues"},"scripts":{"start":"ufo start","test":"ufo test"},"_npmUser":{"name":"demix","email":"demixcn@gmail.com"},"_id":"ufo@0.1.5","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.24","_nodeVersion":"v0.6.15","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.1.5.tgz","shasum":"eda00ebe79c31ac2d246232ebe48183b8baf989d","size":925266,"noattachment":false,"integrity":"sha512-v1PJCjvYPQ2qkzitAuaBu4DM3hNy7yGgGg4ot6hqXStHlYLet5OFmBg2EUtnfmPy6GbTTS6/klc0piJcYLax+A=="},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"directories":{},"publish_time":1340264733294,"_hasShrinkwrap":false,"_cnpm_publish_time":1340264733294,"_cnpmcore_publish_time":"2021-12-16T15:11:05.284Z","deprecated":"deprecated"},"0.1.4":{"name":"ufo","version":"0.1.4","description":"UFO is a develope environment for front-end developer","author":{"name":"UFO Team of Sogou-inc."},"contributors":[{"name":"Zheng Xin","email":"zhengxin@sogou-inc.com"}],"dependencies":{"express":"2.5.9","request":"2.9.202","colors":"0.6.0","requirejs":"2.0.1"},"keywords":["framework","webapp"],"main":"lib/index","bin":{"ufo":"bin/ufo"},"engines":{"node":">= 0.4.0 < 0.7.0","npm":">= 1.0.0"},"devDependencies":{},"homepage":"","repository":{"type":"git","url":"git://github.com/sogou-ufo/ufo.git"},"bugs":{"url":"https://github.com/sogou-ufo/ufo/issues"},"scripts":{"start":"ufo start","test":"ufo test"},"_npmUser":{"name":"demix","email":"demixcn@gmail.com"},"_id":"ufo@0.1.4","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.24","_nodeVersion":"v0.6.15","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.1.4.tgz","shasum":"b5a82ec55a57815eb6c9806d0d08cd274eb78992","size":924601,"noattachment":false,"integrity":"sha512-Bf7CoXQWGL317Lp1xiIkbJ+DZXfMvs6IEy8edkxb8RVfXFfupdppuj8iE+iXYsBrNU/+GZBre2//pk/RmRDeEw=="},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"directories":{},"publish_time":1340186714434,"_hasShrinkwrap":false,"_cnpm_publish_time":1340186714434,"_cnpmcore_publish_time":"2021-12-16T15:11:05.807Z","deprecated":"security: please use latest version"},"0.1.3":{"name":"ufo","version":"0.1.3","description":"UFO is a develope environment for front-end developer","author":{"name":"UFO Team of Sogou-inc."},"contributors":[{"name":"Zheng Xin","email":"zhengxin@sogou-inc.com"}],"dependencies":{"express":"2.5.9","request":"2.9.202","colors":"0.6.0","requirejs":"2.0.1"},"keywords":["framework","webapp"],"main":"lib/index","bin":{"ufo":"bin/ufo"},"engines":{"node":">= 0.4.0 < 0.7.0","npm":">= 1.0.0"},"devDependencies":{},"homepage":"","repository":{"type":"git","url":"git://github.com/sogou-ufo/ufo.git"},"bugs":{"url":"https://github.com/sogou-ufo/ufo/issues"},"scripts":{"start":"ufo start","test":"ufo test"},"_npmUser":{"name":"demix","email":"demixcn@gmail.com"},"_id":"ufo@0.1.3","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.24","_nodeVersion":"v0.6.15","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.1.3.tgz","shasum":"f30e7b9cd9b5a91962c9d96251955604f61b17f4","size":924095,"noattachment":false,"integrity":"sha512-IQoydrHOkI0+UwSU4JI2+BSCy86J1K4ibLSe15D/vIhb8l+Li2qrMfBfa9cEQb2/ZA7KKNH6TDhM4nRcGSq7yQ=="},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"directories":{},"publish_time":1339069315930,"_hasShrinkwrap":false,"_cnpm_publish_time":1339069315930,"_cnpmcore_publish_time":"2021-12-16T15:11:06.283Z","deprecated":"deprecated"},"0.1.2":{"name":"ufo","version":"0.1.2","description":"UFO is a develope environment for front-end developer","author":{"name":"UFO Team of Sogou-inc."},"contributors":[{"name":"Zheng Xin","email":"zhengxin@sogou-inc.com"}],"dependencies":{"express":"2.5.9","request":"2.9.202","colors":"0.6.0","requirejs":"1.0.8"},"keywords":["framework","webapp"],"main":"lib/index","bin":{"ufo":"bin/ufo"},"engines":{"node":">= 0.4.0 < 0.7.0","npm":">= 1.0.0"},"devDependencies":{},"homepage":"","repository":{"type":"git","url":"git://github.com/sogou-ufo/ufo.git"},"bugs":{"url":"https://github.com/sogou-ufo/ufo/issues"},"scripts":{"start":"ufo start","test":"ufo test"},"_npmUser":{"name":"demix","email":"demixcn@gmail.com"},"_id":"ufo@0.1.2","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.16","_nodeVersion":"v0.6.15","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.1.2.tgz","shasum":"646e9f3b383bcb321f0103c394a2893d3a8879c9","size":914117,"noattachment":false,"integrity":"sha512-44mTNOyy20FSzfmrZckbpSTPlmjahO2Ez7PSLsXh9cgNvXxVKAXlLH2OvkccxsKsyUnqfbU8eO/az3cSA+3wmA=="},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"directories":{},"publish_time":1337759469248,"_hasShrinkwrap":false,"_cnpm_publish_time":1337759469248,"_cnpmcore_publish_time":"2021-12-16T15:11:06.949Z","deprecated":"security: please use latest version"},"0.1.1":{"name":"ufo","version":"0.1.1","description":"UFO is a develope environment for front-end developer","author":{"name":"UFO Team of Sogou-inc."},"contributors":[{"name":"Zheng Xin","email":"zhengxin@sogou-inc.com"}],"dependencies":{"express":"2.5.9","request":"2.9.202","colors":"0.6.0","requirejs":"1.0.8"},"keywords":["framework","webapp"],"main":"lib/index","bin":{"ufo":"bin/ufo"},"engines":{"node":">= 0.4.0 < 0.7.0","npm":">= 1.0.0"},"devDependencies":{},"homepage":"","repository":{"type":"git","url":"git://github.com/sogou-ufo/ufo.git"},"bugs":{"url":"https://github.com/sogou-ufo/ufo/issues"},"scripts":{"start":"ufo start","test":"ufo test"},"_npmUser":{"name":"demix","email":"demixcn@gmail.com"},"_id":"ufo@0.1.1","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.16","_nodeVersion":"v0.6.15","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.1.1.tgz","shasum":"acd912f3ee647cf2260ee6088f244c538c237c1e","size":851003,"noattachment":false,"integrity":"sha512-Zhue4C1onne2trN4oLET02uUcQIQScfpTTRvR05cHS52EzsSBHdXS1RuKwbkLH4DGoLblQRaUd/T0ONvX6Z2dg=="},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"directories":{},"publish_time":1337334390588,"_hasShrinkwrap":false,"_cnpm_publish_time":1337334390588,"_cnpmcore_publish_time":"2021-12-16T15:11:07.496Z","deprecated":"security: please use latest version"},"0.1.0":{"name":"ufo","version":"0.1.0","description":"UFO is a develope environment for front-end developer","author":{"name":"UFO Team of Sogou-inc."},"contributors":[{"name":"Zheng Xin","email":"zhengxin@sogou-inc.com"}],"dependencies":{"express":"2.5.9","request":"2.9.202","colors":"0.6.0","requirejs":"1.0.8"},"keywords":["framework","webapp"],"main":"lib/index","bin":{"ufo":"bin/ufo"},"engines":{"node":">= 0.4.0 < 0.7.0","npm":">= 1.0.0"},"devDependencies":{},"homepage":"","repository":{"type":"git","url":"git://github.com/sogou-ufo/ufo.git"},"bugs":{"url":"https://github.com/sogou-ufo/ufo/issues"},"scripts":{"start":"ufo start","test":"ufo test"},"_npmUser":{"name":"demix","email":"demixcn@gmail.com"},"_id":"ufo@0.1.0","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.16","_nodeVersion":"v0.6.15","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.1.0.tgz","shasum":"549b9a73fa1174253e84c20e1ab4b76bdf0dbda3","size":4999,"noattachment":false,"integrity":"sha512-ypC5vjpR47CiUSXPpy8PWm2iyP3s2UHE2cgVPbzSvfYPd/4l28cIiCjmjyaR+uHYC9PTmHVQzKzGr/VkQ3qvsA=="},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"danielroe","email":"daniel@concision.co.uk"},{"name":"pi0","email":"pyapar@gmail.com"}],"directories":{},"publish_time":1337160479320,"_hasShrinkwrap":false,"_cnpm_publish_time":1337160479320,"_cnpmcore_publish_time":"2021-12-16T15:11:07.768Z","deprecated":"security: please use latest version"},"0.7.11":{"name":"ufo","version":"0.7.11","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts .","prepack":"yarn build","release":"yarn test && standard-version && git push --follow-tags && npm publish","test":"yarn lint && vitest run"},"dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/node":"latest","c8":"^7.11.0","eslint":"latest","standard-version":"latest","typescript":"latest","unbuild":"latest","vitest":"latest"},"gitHead":"e0f9d30965dda1be4dff83a0df791c78f42a8d88","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.7.11","_nodeVersion":"14.18.2","_npmVersion":"8.3.0","dist":{"integrity":"sha512-IT3q0lPvtkqQ8toHQN/BkOi4VIqoqheqM1FnkNWT9y0G8B3xJhwnoKBu5OHx8zHDOvveQzfKuFowJ0VSARiIDg==","shasum":"17defad497981290383c5d26357773431fdbadcb","tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.7.11.tgz","fileCount":6,"unpackedSize":38145,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiGUzoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpBZQ//fviYV8ZyG5js0MjhqMSMWehaeHHLESskkCoLp8BoeFBOeaKn\r\n31JwKiCeC3Kkc+zVipDNK18ZpZQy+DHoWNTTaTlj8fJiyFANAUayek82Z43I\r\ncDaxXA1+8gigvtXKtszC6NKYMeICwMo6XPZ+O1h3rro+qLbAG0IiNvNY++Lz\r\nrOHaHJXcYc6ioQQCjg6NW4Kd6OkWr9o6iSHBrOwom/jGXPRT/Mb2XhSse3rW\r\nBInrYNwkLpncXEiOM8Idl7Wi2kSKkCsayARef7VlqF08lupsf3tA6claki+T\r\nvYfNFuxywKehM5nykKzEj9GqrPJDzuYYoauw4nLjfmU+bPoI2gg9EcySYqn+\r\n7jgdBVf2QhQvEV9X/dfU5IDnldK/4v8wc/WeUeqlfsSjZLsF3jz/NQyMzCrD\r\nA0PsRzrClJQp7hzLMAShvPjQKuZ9TsrXC5lV4zGkrkKTtERiT1Um1MaOhL5B\r\n7rNoT9n6KjtHE5AlrQHwqXHxfkSB1UeVDQqHpEDxMgpsS4OnYyiYLZYjJ/+a\r\nOx24Fe9zC+DB27ei6kz+Jb0X5BjG1qxAs0B1kuIlkPq8WY4/yc9C917PFQgR\r\nVWFKXpuzdVfKjnwhSKjwcOhrS92J89tWZIczEyVtU0H41QhF2UDWz+p04eO8\r\nKDofEvcI6TJgosxQpWZyu8xyfdH7NKMxZVE=\r\n=39yi\r\n-----END PGP SIGNATURE-----\r\n","size":7753},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"pi0","email":"pyapar@gmail.com"},{"name":"danielroe","email":"daniel@roe.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.7.11_1645825255979_0.020577340338226113"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-25T21:41:08.080Z"},"0.8.0":{"name":"ufo","version":"0.8.0","description":"URL utils for humans","repository":"unjs/ufo","license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/node":"latest","c8":"^7.11.0","eslint":"latest","standard-version":"latest","typescript":"latest","unbuild":"latest","vitest":"latest"},"packageManager":"pnpm@6.32.3","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts .","release":"pnpm test && standard-version && git push --follow-tags && pnpm publish","test":"pnpm lint && vitest run"},"_id":"ufo@0.8.0","_integrity":"sha512-w2U54d0LBlhz+xUleORZAQI0jRMnJpLlMY9NGNEZHVl/XCR/lf0wk8DylbBfjsBb+EkNDghux74nU4H8c9JAoQ==","_resolved":"/home/pooya/Code/ufo/ufo-0.8.0.tgz","_from":"file:ufo-0.8.0.tgz","_nodeVersion":"16.14.0","_npmVersion":"8.3.1","dist":{"integrity":"sha512-w2U54d0LBlhz+xUleORZAQI0jRMnJpLlMY9NGNEZHVl/XCR/lf0wk8DylbBfjsBb+EkNDghux74nU4H8c9JAoQ==","shasum":"349cf2ccdd5aa4d2e19f64cef038788ef42c94fd","tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.8.0.tgz","fileCount":6,"unpackedSize":42684,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiMPlxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5CxAAkNZhHqPgvZk1l7YXbys5bwW+wn5IzE37xkVmPr8g80J3vs07\r\nnM2ZTec5ES06dDwqDrfVtfdF2yDbWYr6Udgt+WAaAJhvGxXl7lWm8GOMzOH0\r\ng4Sh5ScQEnR+Y1WirQ4zfDEaqDeeHTfFABx2wX1CFmpY/epmmatdMTE6Yz5v\r\na+ETg32oHh3xB4IXIJl/3iksoDcS+s66qgOACXErBO6EF0uNEsD6afU2nGEr\r\nawPXa/3nPAmMYF+REm4BR/QPkm23IUhHaT6LsJdaDnv9ubEQHGgP4oF1bkbj\r\nXq7Xz4hhMXigs8dBHD4DQBj8vQeTzUhASRD8bjq1zo8dG9vByrNZloS/y+dm\r\n90gNj/mz28QGk9EIa4F8Jn24KTEjIB18fZlnIidS8IthewK08W+M8ilc1+TN\r\noCrZLjBQ7quyJf9e5Lcp8IVSNvaXKgBIRlzzx+y6hdVcKT3ZZ51bVf8vMbxW\r\nfamtV5Agi9AetMZ+jnBrdfzqcIiO0VDN0rjOeBI19MZODLqS+FbiqvrfhTnT\r\nc776HLoxVszHjSErDVIhW8RJf67lD7i7mcmKok67d+OvkN0c+LJyI0/i+EGl\r\nYDgPRnWdQat7qTzeXEQcBrRMX8zncQ2VBuhzhBzpeew5Uc/NK5jwQUZSy9Ze\r\nF/zOy8QaQuXRA4G9lrcXaYawJW3X+FwESS0=\r\n=UJMS\r\n-----END PGP SIGNATURE-----\r\n","size":8289},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"pi0","email":"pyapar@gmail.com"},{"name":"danielroe","email":"daniel@roe.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.8.0_1647376753263_0.9101656687652973"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-15T20:39:17.580Z"},"0.8.1":{"name":"ufo","version":"0.8.1","description":"URL utils for humans","repository":"unjs/ufo","license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/node":"latest","c8":"^7.11.0","eslint":"latest","standard-version":"latest","typescript":"latest","unbuild":"latest","vitest":"latest"},"packageManager":"pnpm@6.32.3","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts .","release":"pnpm test && standard-version && git push --follow-tags && pnpm publish","test":"pnpm lint && vitest run"},"_id":"ufo@0.8.1","_integrity":"sha512-1hqVxwcvBvzwwMRjR8pQEJ0CYOCGo49VF11caCe1hxKGiMGpL5ge/JiRX8ttf+YoIMomoEAim2SbD4jQ4tKbXw==","_resolved":"/home/pooya/Code/ufo/ufo-0.8.1.tgz","_from":"file:ufo-0.8.1.tgz","_nodeVersion":"16.14.0","_npmVersion":"8.3.1","dist":{"integrity":"sha512-1hqVxwcvBvzwwMRjR8pQEJ0CYOCGo49VF11caCe1hxKGiMGpL5ge/JiRX8ttf+YoIMomoEAim2SbD4jQ4tKbXw==","shasum":"e45182ac01fc37eda5cf89879a70166fecde9642","tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.8.1.tgz","fileCount":6,"unpackedSize":42694,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiMbncACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqUDA//UKhQiA2NQH7OWFw3xqH3G2i5Er6+bwNZyVkt1TO/po6kK5FB\r\nZ69QzMVhVXjEgP01vm1Dz0L82zF7y2KZ1UtBIqkF9PsK6VCXO2jZg7cpV5JV\r\n/JcbHErRb0yrVoHdIpX77koiqqBgr6LiOcok2RS8SvdITXzrbGf1po42Gl6o\r\nagcR/ItxGBSnZSPl+gdmosjrxH5++JZF//8nZXxuYlyg7AZ8N2GV/SsspTRu\r\nIYe6vM4/nxZZt8YHERFtdFlGGF8WVW1ZHs+NCYNgMrYqco4D3OYu0nkeKl8t\r\nt0rIVLgROuGLAeFdSdBXgcS4R5ohXgbLXko9drib2M4eA0xpMRkfqQqaqUwo\r\nKrCGf+fq9ApNPUBMXUCEfoEDSrXdK+WQzhbVpoND6V3kGknSipcis306O+f8\r\nXNPhBPuDj/Byyz0JXSVjhVplVblJP/gmme2vfse7VLBSvi0uJjXOeqz4m6AQ\r\nIPwna+2F6SRGfWRoIOmDcKCTspOQwW+hZuZF4R9F/HMUSaeZpab1C8ZRXN31\r\ntzuqNdN2tFgXp3ZVJOlG91mqqTVBe7pNf2rxDNzb4PKerzhghskg+EWPKzaI\r\niesfItwqXlHZG9TvzLqu4CytEmfT09VhxqgVzsxwbcq+A9Ctv5K4TIfv3IUN\r\nYQZkZp7Up8Mnie7+VLVjlVh7dLEFvHDLUb8=\r\n=LV7+\r\n-----END PGP SIGNATURE-----\r\n","size":8290},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"pi0","email":"pyapar@gmail.com"},{"name":"danielroe","email":"daniel@roe.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.8.1_1647426011969_0.7213853821315686"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-16T10:20:30.503Z"},"0.8.2":{"name":"ufo","version":"0.8.2","description":"URL utils for humans","repository":"unjs/ufo","license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/node":"latest","c8":"^7.11.0","eslint":"latest","standard-version":"latest","typescript":"latest","unbuild":"latest","vitest":"latest"},"packageManager":"pnpm@6.32.3","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts .","release":"pnpm test && standard-version && git push --follow-tags && pnpm publish","test":"pnpm lint && vitest run"},"_id":"ufo@0.8.2","_integrity":"sha512-rR2dElme/npyZU45yAcRcknSymJDG1j9kBCixtXk6fenTPzzzen3+g045tHbuZ3McSE1jqddoi6UOPDVbRiZ2w==","_resolved":"/home/pooya/Code/ufo/ufo-0.8.2.tgz","_from":"file:ufo-0.8.2.tgz","_nodeVersion":"16.14.0","_npmVersion":"8.3.1","dist":{"integrity":"sha512-rR2dElme/npyZU45yAcRcknSymJDG1j9kBCixtXk6fenTPzzzen3+g045tHbuZ3McSE1jqddoi6UOPDVbRiZ2w==","shasum":"b9430e012c99f7e0e186bb2ebc7ac27c8e8de789","tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.8.2.tgz","fileCount":6,"unpackedSize":44900,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCtmb0iJvUI3lXNAiz+XsJIQeG6S2DEwfFsmLm3pI3G+wIhAKLvnUWWFA2X5nPEOQ3FTW7gf4DM1ax+dSgtyc50tGWl"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRfc3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqM4w//QrZva51Zb9SvMyLKrlEao4jFHqbNOMRJeGyGZ+TuciqcZADi\r\nHIKC1oaaZ5+th0cbu+KWiSoQiO/LKiHwLxro9QhonXZiI+bg7Y1WOXkJU2vQ\r\n0PnsA8Q5sMerU/lgJ3E+4yPVB0JjBXX6Rwh2ygl66wRsRtZwIDIl/xMA/X8+\r\nSj1KlApEU7NSdUa2Rl/IcTeL3RJ2aELEX1nwNBnnhInL+7aeaFlS8vvg5hos\r\nP7H1oUiEEp0fbc/fnm6vxy+HQOs+ctYW/2JGMT/12tq/koVaurgdg/20Llgz\r\nb9Wp0g6oXrNozxwtyxSU4mGkpLD0OXqf36Y35/0XnmFIPk5pFcXmlbfw6E3i\r\nXWGMKLir5vICOluN79GuHSZBwHOGi4wtexr7gdO4cCkEtrjNuWlO7qICIAQu\r\n/6CDbdbP6ENMrkZEzb3P012x17QIAyeZMSfRFpzAQxCo0NwC6obQ2tfbHlI3\r\npfsTpy22JrCOOoGJP3t8V0koj6q+iEDHnsmT52VZqwyYa7cFp8b1eq0yXWgT\r\nY+e7j15HkVk55WQhX4V0c3vkC6dlEUhusJuke7IUC+bzEOkvRuBgIbMQ+JwT\r\nXWtymFXUm93Vbd4sUchofwZ/HSEmqhc9hPLlZlqralByg9I+8Hpx02l7CAxs\r\nSDi/Kf17wXYl3h0+Y+1b1F9jIVgmERphdnU=\r\n=pR/s\r\n-----END PGP SIGNATURE-----\r\n","size":8579},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"pi0","email":"pyapar@gmail.com"},{"name":"danielroe","email":"daniel@roe.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.8.2_1648752439173_0.8562776657190234"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-31T18:47:23.160Z"},"0.8.3":{"name":"ufo","version":"0.8.3","description":"URL utils for humans","repository":"unjs/ufo","license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/node":"latest","c8":"^7.11.0","eslint":"latest","standard-version":"latest","typescript":"latest","unbuild":"latest","vitest":"latest"},"packageManager":"pnpm@6.32.3","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts .","release":"pnpm test && standard-version && git push --follow-tags && pnpm publish","test":"pnpm lint && vitest run"},"_id":"ufo@0.8.3","_integrity":"sha512-AIkk06G21y/P+NCatfU+1qldCmI0XCszZLn8AkuKotffF3eqCvlce0KuwM7ZemLE/my0GSYADOAeM5zDYWMB+A==","_resolved":"/home/pooya/Code/ufo/ufo-0.8.3.tgz","_from":"file:ufo-0.8.3.tgz","_nodeVersion":"16.14.0","_npmVersion":"8.3.1","dist":{"integrity":"sha512-AIkk06G21y/P+NCatfU+1qldCmI0XCszZLn8AkuKotffF3eqCvlce0KuwM7ZemLE/my0GSYADOAeM5zDYWMB+A==","shasum":"3a2430f94afc13ba556f6dad498a2a6520dcb5d3","tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.8.3.tgz","fileCount":6,"unpackedSize":45284,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCR6FZq/rNIAGrSH8Yqo0XWxP87j9sq1uxLYvYP2RyEmAIhAOuqESlodF8vrD4Xd1/Clo3b5dUqanx2Dlo+SSwFM7TK"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRfqLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmokOQ/8CaX8H/fzb+KGW7Go+hvz0buUQTnqJVlX1duZeXm14v/khkQ1\r\nwhT5OTkLhHdcLmENd8E7MZTCdw+r06e5Jn3FW/zrD3wYYp6cSbNwWP07hln9\r\nH40/flAw51R9NG2yzh1JV/3NuFOldX0pd+do5dWLMIwviiULF3+ysrr+JSMI\r\nNqc8E1Y5b02ZeyghcK87ZeQdscnjEsjYYbVnLc/83rJGH+TH9dRoW44wM7Ed\r\nG7Cetl7dWqIqPxMCM4tHPWGzN+kzlQ97s8Ouo+nJ0yOYxloo3YKiT5YNNSa7\r\neQrjrUuD80mAAPxh+aP3MAFLzE1ZklLqtI6HTxQ9gHuEzBRxpkNUWimKue2a\r\n1u0+Rn3brHpybmH82gMZvEgA2uTY2dDV6hC/DPVxLuJYRjbnucWByXaHZMmg\r\nrt+H5MFd23OUfl2mOkVy/1EFAqp7hUeuSOSFJ3hiKggb6mRAbQGlhhpYa5EG\r\n/LcfAYOAtbbwbrnXOe5jATIWrKbIzbuAuht7eioStkVLAGdB8+PPXibTeEYs\r\njCo6YPmd5BFLAh6XmwKnTVcEuyN8XGHnnJnXxZ8Sd3OHqA+yKJVI0yvTE7bT\r\nXr7Wk64NiYmp7lCt+c0e21P5baOWh+UGN52cWp7GdPcnqZts6yMlQPkyUyGH\r\nCK0HhiAzcUAixm8YsjseWMlanPniJjzPbhY=\r\n=YfVe\r\n-----END PGP SIGNATURE-----\r\n","size":8647},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"pi0","email":"pyapar@gmail.com"},{"name":"danielroe","email":"daniel@roe.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.8.3_1648753290787_0.6398193058845976"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-31T19:01:50.236Z"},"0.8.4":{"name":"ufo","version":"0.8.4","description":"URL utils for humans","repository":"unjs/ufo","license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/node":"latest","c8":"^7.11.2","eslint":"latest","standard-version":"latest","typescript":"latest","unbuild":"latest","vitest":"latest"},"packageManager":"pnpm@6.32.11","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts .","release":"pnpm test && standard-version && git push --follow-tags && pnpm publish","test":"pnpm lint && vitest run"},"_id":"ufo@0.8.4","_integrity":"sha512-/+BmBDe8GvlB2nIflWasLLAInjYG0bC9HRnfEpNi4sw77J2AJNnEVnTDReVrehoh825+Q/evF3THXTAweyam2g==","_resolved":"/tmp/1e839397fc823c26a4747d7645913a68/ufo-0.8.4.tgz","_from":"file:ufo-0.8.4.tgz","_nodeVersion":"16.14.0","_npmVersion":"8.3.1","dist":{"integrity":"sha512-/+BmBDe8GvlB2nIflWasLLAInjYG0bC9HRnfEpNi4sw77J2AJNnEVnTDReVrehoh825+Q/evF3THXTAweyam2g==","shasum":"23e9ed82398d2116dcb378e8fba5ced8eca2ee40","tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.8.4.tgz","fileCount":6,"unpackedSize":46901,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDk4NiMeU5xlCJjZkGFTc6lL0/RbfvL9gGomS90+dcIJAiBqjQWMUCIIPiBRzzzA271wH8gbuVfoQOJcU+HmG75Eww=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJidUNDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpVlA/9HN5xLiMBMyj1wMDyIezkJ4C1yaif6PKULLXAjITsRUuGHYlQ\r\nej8uqnVYxTayM7i7FrYtrur/6BcAjarMOy8xdAiW9OPg8q18SBl4ZeruaSEH\r\nAV4wmwcBODdkKHwPFPvu1rajsl2cMJA4Hre6Ss26DvdtroR/sNAzogXIYkM4\r\nJUQlJR0n6JTr134zvP1yK49A1Fyb5onLShVxRvhgBngzGTHgKBVEu4WPf+m8\r\nUvRv8dgGoRN2G/bNv4n2mFVncEEHsaK+o+PMFeUGaVKl9DhuxodpReR6p6x3\r\nAirzb/h52rY57sHL+TNRbUI6JXe3kVlrJqTGqoQp8705t5AyqjKnYVTtW9nY\r\ndO2vwyYSPb1EAq0YWi705+xJPs6SkrdECcxDSB++t2tG4gJpdO/CKNHnBwns\r\nKlxQI/frmvGbW/l460qLYfeITxJMFM9MoSsjDvMyc0OKGuZZKagjGVZxRsbE\r\npkuFd3OIZyXvnszvPuGxkaR2n88xBrPc9lyYKvepyr8lHqYNvyeIqEoA2Dw+\r\nW6C00+PfRKyfL5HKCPAhUadU4E5UONeu78bomQ45Km7Uk0CCS980wctRbqFn\r\nu892ZdcbUZE95bLwiYTO6Ctr+UCjOVC5ge+JrOHYhKO5b2AhY7yI2/legBn/\r\nIwx46z9BLWT9OpOnPVMMlxludcMAasHeyEw=\r\n=Ax82\r\n-----END PGP SIGNATURE-----\r\n","size":8929},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"pi0","email":"pyapar@gmail.com"},{"name":"danielroe","email":"daniel@roe.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.8.4_1651852098845_0.07009015439736666"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-06T16:12:41.038Z"},"0.8.5":{"name":"ufo","version":"0.8.5","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","dependencies":{},"devDependencies":{"@nuxtjs/eslint-config-typescript":"latest","@types/flat":"latest","@types/node":"latest","c8":"^7.11.3","eslint":"latest","standard-version":"latest","typescript":"latest","unbuild":"latest","vitest":"latest"},"packageManager":"pnpm@7.5.0","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts .","release":"pnpm test && standard-version && git push --follow-tags && pnpm publish","test":"pnpm lint && vitest run"},"bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.8.5","_integrity":"sha512-e4+UtA5IRO+ha6hYklwj6r7BjiGMxS0O+UaSg9HbaTefg4kMkzj4tXzEBajRR+wkxf+golgAWKzLbytCUDMJAA==","_resolved":"/tmp/c6aa735656fbdb0b859c1717a6d57782/ufo-0.8.5.tgz","_from":"file:ufo-0.8.5.tgz","_nodeVersion":"16.15.0","_npmVersion":"8.5.5","dist":{"integrity":"sha512-e4+UtA5IRO+ha6hYklwj6r7BjiGMxS0O+UaSg9HbaTefg4kMkzj4tXzEBajRR+wkxf+golgAWKzLbytCUDMJAA==","shasum":"e367b4205ece9d9723f2fa54f887d43ed1bce5d0","tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.8.5.tgz","fileCount":6,"unpackedSize":41671,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDTrqZ2StKfXWIrIYGgbdNlVTroLcX/qKyaHy/6Mj4zmQIhAPbL5KS2JS9ruLHnQzx06WYTf54LByQv3uN9aIrZFrzY"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixwNIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr3ug//fFghLHwzWeaI6XgiG0DwKCzxwNLkwAyhFx/lmxoxoqzzKX5M\r\n7XcbE9xjWX24l5gImjLei1eOBAA96bTNgVf5KERH1gj7a8MR74/u5+FQlryk\r\nEr4os5OOUsu6g9NungIM+b69Grw746yaM2zPkcI3E5+ZLfXbbRS4SJzvmV9Z\r\nBO0/2hUgxxj3B7DYEmVpE85tJBicu1Ez5KZz6bELWwf/IWZVbzxvzZxXbiyi\r\nbdKNTx5jYghiUkZBgsO1MXMbAC43vxH9mhA4Kh/xTXymixUlQ5Rb2MpOAr3r\r\nnXV3yNy0oXmAy10yhfY49ihcMyCjnnNSVj9Huc2N69+NNGn9s2+cr5Xnmb99\r\n3QwWwGCy6ZG9zfkrQje3tdlhRPa4mfbtXtykPwmnM71eP6RVYQhaWlWyR0/S\r\nSGY9RWVPYtHWg7FVWCfl1t9gKi5poIdj92uiD+FnCAsGsL/3r8LfcXVBN1oA\r\nDvwBgaKg9pw1mt/SAH4yVeHzJiio/EtgbWI6nmnP0Qn9E/OhRK15LZj5ObhT\r\npN1A/4IQOwHQaFck3GIWeKk8MdJ3xr5An6xPGaljcYX8IzglFb476NRax0US\r\nfZG8FvDw7nUefesCWgvHdksVwPFtyP33b4Kt3Oill5vANifuoFkFXKO/3i7U\r\n3zr6Zrkz353voWXWq+z9NMxg1EqmV/GwQ4s=\r\n=LDNg\r\n-----END PGP SIGNATURE-----\r\n","size":8351},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"atinux","email":"atinux@gmail.com"},{"name":"pi0","email":"pyapar@gmail.com"},{"name":"danielroe","email":"daniel@roe.dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.8.5_1657209672640_0.7237106897578767"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-07T16:08:15.439Z"},"0.8.6":{"name":"ufo","version":"0.8.6","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","devDependencies":{"@nuxtjs/eslint-config-typescript":"^11.0.0","@types/node":"^18.11.0","c8":"^7.12.0","eslint":"^8.25.0","standard-version":"^9.5.0","typescript":"^4.8.4","unbuild":"^0.9.2","vitest":"^0.24.3"},"packageManager":"pnpm@7.13.4","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts .","release":"pnpm test && standard-version && git push --follow-tags && pnpm publish","test":"pnpm lint && vitest run"},"bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@0.8.6","_integrity":"sha512-fk6CmUgwKCfX79EzcDQQpSCMxrHstvbLswFChHS0Vump+kFkw7nJBfTZoC1j0bOGoY9I7R3n2DGek5ajbcYnOw==","_resolved":"/private/var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/c907e521816cd8ab6772fe2426e906aa/ufo-0.8.6.tgz","_from":"file:ufo-0.8.6.tgz","_nodeVersion":"16.17.0","_npmVersion":"8.15.0","dist":{"integrity":"sha512-fk6CmUgwKCfX79EzcDQQpSCMxrHstvbLswFChHS0Vump+kFkw7nJBfTZoC1j0bOGoY9I7R3n2DGek5ajbcYnOw==","shasum":"c0ec89bc0e0c9fa59a683680feb0f28b55ec323b","tarball":"https://registry.npmmirror.com/ufo/-/ufo-0.8.6.tgz","fileCount":6,"unpackedSize":41606,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDqgRTdWoUH7ocj2IMpJJ7C+p4O/diJsSGvg+XuoOEuXAIhAON5O6xekMoUA3W80leDyEnoSwDbWzF/a2pHYb+Jz7Me"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjSuXRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqUKQ/+P2xSWdNVo2BzCe+9ks8zLGHK2BKkcmYATBUz4SEOa+rq1tfj\r\nW/BHrPkodrXN7Apuc+cO6f9kczqMbDjvQFckCC3IbYouQjyckuCb9VQuERQa\r\n7A59aTh9Ka11XGm5ay007MEprPjzvO73MIDc6C/79SV8ebfpGW9WYpD9xLke\r\nNXrbcJiBMx7gNynXkndbDOB4oFj0TuAm5weOGO4LlRGKUfpE+33EPURvioFA\r\n2mmtXflFk2ST89nT1V67Hg1+98ZOH6lwtFah3CotfNPDBZy6/P3Ricor2/vU\r\nEiLxRJfWdw9PXJItjHfM+a+U7w6merWtmieQQw6Soo3ycmcdu+DHvhlxbq4D\r\nv1CGHqOAOx+97XLrdw3IkVuWLzLwsQ3mpuicHpKuPAvir49kRkFgXq0+q7gB\r\naWbSzUMryXBxUchkoS4KEnAUgmoZMxoQL3q4gBKw/i98bO2jf/XohOvp5Gl/\r\nMQQQ/4qqE+k0fxKlbRY8+ZF664sGwyEARKY4X0jOaEvkCsZB/cQfQKFdRodE\r\nYQZ62WooxF98OKYpBlK45y0uVom3o/DJIYYEcrUmrtZr+OvH5pAG8v4iJTgz\r\nOo0M46fkE3aGx4Bhb/0NeciKGQlrSSIP+2gDly8S1QxxGMOHe6YNI2E4UBEu\r\nSqCtUM8RpRrTLT/7bG9NgjcC70gnECu2EIo=\r\n=zPMq\r\n-----END PGP SIGNATURE-----\r\n","size":8352},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_0.8.6_1665852881368_0.5077932097365332"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-15T16:57:09.400Z"},"1.0.0":{"name":"ufo","version":"1.0.0","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts .","prepack":"pnpm build","release":"pnpm test && standard-version && git push --follow-tags && pnpm publish","test":"pnpm lint && vitest run"},"devDependencies":{"@types/node":"^18.11.9","@vitest/coverage-c8":"^0.25.2","eslint":"^8.27.0","eslint-config-unjs":"^0.0.2","standard-version":"^9.5.0","typescript":"^4.8.4","unbuild":"^0.9.4","vitest":"^0.25.2"},"packageManager":"pnpm@7.16.0","gitHead":"8345363dbf51b150b8e667f19537090e0c30ee41","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@1.0.0","_nodeVersion":"16.17.0","_npmVersion":"8.15.0","dist":{"integrity":"sha512-DRty0ZBNlJ2R59y4mEupJRKLbkLQsc4qtxjpQv78AwEDuBkaUogMc2LkeqW3HddFlw6NwnXYfdThEZOiNgkmmQ==","shasum":"eb64f4c8797d6aa6c710a836abab0bade9d11ca6","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.0.0.tgz","fileCount":6,"unpackedSize":42292,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDGX28ZFzM93cisWjYx+Vjg47+3uXsgh0SoEOR9iJqtoAiEAxZ/W8n31hO2Bnv1MWpbnCp5rf9n7t/nVMZy9Fi8nF9A="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjcnmTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrC0Q//cV6HAVQJAbphFUMcTMMH2hJZsNmKyWg1tAuUVkPUmLqxlN7j\r\nWjlfuwGyLrMn5olUfn9T/HFz6ucroi6QEAd/zUfHLgEFb0f9o5m33cX4qX1R\r\nmKSSlnFpxKHsseLbtbgbfH/LSGhLBjgM0BviKR/L3+Mo+VtPd2hzaYYhQb5N\r\nb7E0zew66up4yz3fvQmVuiA6gLs6fF+hoHUPItrgwVit6ijR8Qfa0JsDSZKP\r\nteyEgauQnA3zNFsSzXCBb3hMYcS8+eiimlVKiaZ2F+5CjmfcIvPZndXcNMvY\r\nAGd5RH0CJkmZutfi6/oW2hN+NwyaZjhXMNEsL4BcCWzJbAyHVC/XUPcvjEeC\r\nBkPEIwzQCUoZ89JSCSoPgM6f98tdceGZONN4LKxMEOzqtcU4yXBOak2HoQ7y\r\n1qgHhkEeABFHVsysbxor6scKJWHl215+32mBo+1/Ayd4U/ByX4t3dDkIkmvm\r\n+8d9klwLEwgcIgml4wVo/ICXTL31R3s3FYFcVnyp+iGHJzTnhGk1223LJMbx\r\nF5rfkVyaBZfZOuanKxQbcKRjAZ8DiS2c9OqiTc9aD4NFqMvktnBXRdwwXNux\r\nnhydhu2yB54v2Fd6+oxYVGohuaIkCxpxs8brxvp0baZW/rxUl1rcFBi7dGeV\r\njkrfQv3GgXvfSpB+E1bxOWCkYOQDGVpRNXk=\r\n=5rjl\r\n-----END PGP SIGNATURE-----\r\n","size":8396},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.0.0_1668446611726_0.6516513367172116"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-11-14T17:47:02.471Z"},"1.0.1":{"name":"ufo","version":"1.0.1","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","devDependencies":{"@types/node":"^18.11.9","@vitest/coverage-c8":"^0.25.3","eslint":"^8.28.0","eslint-config-unjs":"^0.0.2","standard-version":"^9.5.0","typescript":"^4.9.3","unbuild":"^1.0.1","vitest":"^0.25.3"},"packageManager":"pnpm@7.17.1","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts .","release":"pnpm test && standard-version && git push --follow-tags && pnpm publish","test":"pnpm lint && vitest run"},"bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@1.0.1","_integrity":"sha512-boAm74ubXHY7KJQZLlXrtMz52qFvpsbOxDcZOnw/Wf+LS4Mmyu7JxmzD4tDLtUQtmZECypJ0FrCz4QIe6dvKRA==","_resolved":"/private/var/folders/s0/k4lcb4b50bj9r4fch4_1h_l40000gn/T/408ceab0b7e5b15d151daf8eb08dea6e/ufo-1.0.1.tgz","_from":"file:ufo-1.0.1.tgz","_nodeVersion":"16.17.0","_npmVersion":"8.15.0","dist":{"integrity":"sha512-boAm74ubXHY7KJQZLlXrtMz52qFvpsbOxDcZOnw/Wf+LS4Mmyu7JxmzD4tDLtUQtmZECypJ0FrCz4QIe6dvKRA==","shasum":"64ed43b530706bda2e4892f911f568cf4cf67d29","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.0.1.tgz","fileCount":6,"unpackedSize":42317,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCe35/rwqsknbZpq6xZwBjOIvrElv+bAUyZHCLIxZXOWQIhAIqoDip8cSen/fh6wQ4O1yBCyW1CT/zWXK3uTkJY4OIF"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhfriACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo78w/+JlAuaRZ89A4Mppx1Fh7a+xTh7QX5sGvaOyA6A/CCwIN/Kk4v\r\nT265ol5QYhTmsWfePA9zzx5BLCmt39pti4s7iR8Sw6N7Znki6EPhrcRFHztZ\r\nNi6at9dEV+JvjAFtWqXMhQqU+Oiv/wYUcn4eKjB+yS4uA2O3xcTQPEKG54fW\r\nAod1KwbxyNiNByLbP4DBktjIoFQ1rDAG0/6Shd05+f7b8Iu5xkG6vT4dOkWO\r\nmcbXmjxyG9GhoEvnfOyBWNRT8p9gxxF3F1ytm/MR1bOjdrt+VWuXxFwoNdA0\r\n0A4GKTsudGLhVaZOxrert4hnw1TtPvtq2Xf1eYXgUuoZF7AMTTvgh5IDZ5Pi\r\nZ3ORn3kx1sx4s38bUiHKaohGn3nRpirh3QlG/xe6vgMf8UIKXjvqx4a5YAj4\r\njGKbtBjRdlfVzZXFzALuHukkNPuP+kKtjQPxu5RiAkHMtEFjARitZvrt/JAb\r\n+GCcARQSwjIt2KlUp+6HmE5W7IVypxFUNXjsl2uI5gFnp2+HLq4+KHp2Gz+l\r\n+Z78ZSjQ0ir13XCUAGD8wFvIssDgoET1k7P3gJr6U53u/LiqE07pqBGgw4N6\r\nRmUbUESiqKPFYhYpoekVqp/AvRG2upFA5RGaVP7T5wDL1cSDN08u0yBfpKyH\r\ntI74U0qcBMRiU5YcIAKNVdG1oQWP+ulpN6o=\r\n=Ijf/\r\n-----END PGP SIGNATURE-----\r\n","size":8418},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.0.1_1669724898359_0.44554138830717815"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-11-29T12:40:37.751Z"},"1.1.0":{"name":"ufo","version":"1.1.0","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts . && prettier -c src test","lint:fix":"eslint --fix --ext .ts . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest run"},"devDependencies":{"@types/node":"^18.13.0","@vitest/coverage-c8":"^0.28.5","changelogen":"^0.4.1","eslint":"^8.34.0","eslint-config-unjs":"^0.1.0","prettier":"^2.8.4","typescript":"^4.9.5","unbuild":"^1.1.1","vitest":"^0.28.5"},"packageManager":"pnpm@7.27.0","gitHead":"a30a3ed7a58317dc7e1217985a6be3bcfa491cfb","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@1.1.0","_nodeVersion":"16.19.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-LQc2s/ZDMaCN3QLpa+uzHUOQ7SdV0qgv3VBXOolQGXTaaZpIur6PwUclF5nN2hNkiTRcUugXd1zFOW3FLJ135Q==","shasum":"a5c4c814b0a98f7e0ca42c478688663fd3e3c037","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.1.0.tgz","fileCount":6,"unpackedSize":43110,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE2bjkynV/9ijk9XPKs47uEzrWQT+wbHuqc8FrgSBBcJAiB3LeOqGGcM8lQFzLmL/4DL+m0w59AfLc85Z2x+N+p4ig=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj7rXIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrUeQ//T3EcRkC6kO7vJOIk4kEXk60t93H+YKef1Kqnf/E017u9mpqB\r\n95PjkECvwGBwKvi4hjfHfjYVkAzEZVRSReWacGMINfWCuz+xg4z/+i5tdGiU\r\nPEU0T24kjSdS0toOUzVCWKZYwnxVtRkDa1X1q43xUgZ3RkOTBf7UU+m5lldd\r\niRmIcGO1XHLuESJu40NzOxVIqtYjd7eGVQcogS295rBwcv5utc2ZvTIOTgOv\r\nvWZm+BdXOGLUA5IoeiY0pK5VXlkFDWDxueGSSv7toxJoPEt+B2o0u/D9FgaX\r\nLZY+DVnIznkBY2YrvAv7nEjqD4a1P5WZkkE9MfBvqPd4gQSnQvoEpsMpvWVP\r\nqt1f/CP45npqvIrI9cv7Q+ajQUJKPU6DOzn/opDms+VcJW0VQPhzga4tUwl1\r\nruGbWamtw8ETCzP2k4j8nuO91Ba4Zq4BQkALOlVNIBsOWqvDoNo4tN04Y80G\r\nGSNWh7rQ3hdv81iW//4gN0G/NJWWUyhC7wSQRnK/fmZGx0J7N2Xfh9/rA9FT\r\nrALa8z+32A7OAOlSTHHotC4vWVBEbHNK0F71mbHG3vJQAk7SdtDKxUjK5tVp\r\najTs0kV6fs6nE8bEgNoqu157Gna306qFPb3823E1l3WoBTz+BniC/5U2TaNP\r\nozh/1M39TwV5JDGCkOOrbUcRr8BAI+qsqVw=\r\n=0YRw\r\n-----END PGP SIGNATURE-----\r\n","size":8599},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.1.0_1676588488137_0.5380416312657423"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-02-16T23:01:28.490Z","publish_time":1676588488490},"1.1.1":{"name":"ufo","version":"1.1.1","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts . && prettier -c src test","lint:fix":"eslint --fix --ext .ts . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest run"},"devDependencies":{"@types/node":"^18.14.2","@vitest/coverage-c8":"^0.29.1","changelogen":"^0.4.1","eslint":"^8.35.0","eslint-config-unjs":"^0.1.0","prettier":"^2.8.4","typescript":"^4.9.5","unbuild":"^1.1.2","vitest":"^0.29.1"},"packageManager":"pnpm@7.28.0","gitHead":"9621bdd83161d5c3ed75197deff7892edf24bddb","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@1.1.1","_nodeVersion":"16.19.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-MvlCc4GHrmZdAllBc0iUDowff36Q9Ndw/UzqmEKyrfSzokTd9ZCy1i+IIk5hrYKkjoYVQyNbrw7/F8XJ2rEwTg==","shasum":"e70265e7152f3aba425bd013d150b2cdf4056d7c","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.1.1.tgz","fileCount":6,"unpackedSize":43122,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDDHAFMKAbi+qnS/rgLclkBgnO+wPyEpvSeYgJBItXLpAiEAzRmO+h68rMPdUYV2097brZTmJGfWWVcoxiYwal3QVpg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/N/XACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqixw/+MxQGG/GMsY5iA3VaTJ4E0qkH8SZjW0igI/4f9Byb2nE3upXn\r\nj960J1C6KogLPdg4fBmpk7t1bNc8vpgogkZlhCNvO0LtCixRAwiDf2/EWpAG\r\nJ+al7GUb3ti/PvM/+cKF2GTwgqumBWw4y6TJRhR2VhxLbP4cwZhETIEXGBUO\r\ngnp55Yv9ZFkORgQZUoUrFcztw5P8Xe0QvZotMm/ZyNxHG6DdzfQyR329RS2/\r\n5Or+wPSu72mBiieJou9QbbyMHxkVUBfql6yiq6KHVGrHRkIL4GUCoSFiqX6q\r\n/kniYONuaQgSJ2OB5QFCetOeGLLaVMwq9+/fN82JOEAsCRq0U6LLq4xAY17o\r\nu0YJeFnoEmtLtMFutPdWdjM73ApAAkZCiPItT+2D3w58Bm5INA/Elr1bwf0p\r\nz3asJsOLf0qodCynPPfuyDLoCHxFBDN4pM4/Inxbw9e+Eh+tolOjso8r/dKr\r\nb3CBGEoDTY5uOCz+PC4ILyJdYrvCM8uCeV7jVv6YRfEpr+mZ9D8uZ6bwVB3F\r\ny0257F2CYzybF3W5bp1XrPCCQz7iut1owOBMFsh6/Gb4oEimTrTEwJLepJWu\r\nfjDvcucvulmm6JAD3hwVW3he0Up21wr39VUIkWk9WsZ6EbMU/spPlADQ6qa6\r\nDVza/vLR07O4iudNsCPR7qugW09qn10ed08=\r\n=jWSR\r\n-----END PGP SIGNATURE-----\r\n","size":8602},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.1.1_1677516759507_0.8709218338960913"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-02-27T16:52:39.681Z","publish_time":1677516759681},"1.1.2":{"name":"ufo","version":"1.1.2","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts . && prettier -c src test","lint:fix":"eslint --fix --ext .ts . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest run"},"devDependencies":{"@types/node":"^18.16.3","@vitest/coverage-c8":"^0.31.0","changelogen":"^0.5.3","eslint":"^8.39.0","eslint-config-unjs":"^0.1.0","prettier":"^2.8.8","typescript":"^5.0.4","unbuild":"^1.2.1","vitest":"^0.31.0"},"packageManager":"pnpm@8.4.0","gitHead":"8f36c4f14ae2f160b67cae61655e61d05d4dd109","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@1.1.2","_nodeVersion":"16.19.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==","shasum":"d0d9e0fa09dece0c31ffd57bd363f030a35cfe76","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.1.2.tgz","fileCount":6,"unpackedSize":44842,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJjOHlRVKxzqvgn5tkmLt0V9tn+eSe9K/90iuEZFCUiQIgRONIct814Q4xVCHrbjImqmDVUOb2I74WdocxnfsxT5Q="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkUu/cACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp07Q//WFQGr80Ijnvxi6WZfcOmFxx0kQihGuj5mEIGY8M/JCEWKAX6\r\nLZP53yVB/r+hkSfefIszp9rKoU8AIBYkjPP7abhqT9Cnmv0Zga5nir/91vbQ\r\nB4azKyMO8pj5ZCwC7rmMAyNJA7sowZbz0eV84k0w17xGWcbzcKuU0N71hQm+\r\nLr/QHPljzvvJiGsMtLiDk7ehxM5YvxraPOIduEwvtznPJ1TWWPcTrVI+XgKQ\r\nNYOMwJtqwGqKy0cn3gH/Gz8qL2zqYrg6OsQ0aGAru47YE8nR9Xm34WgfC8GJ\r\nXzvKL2uENxDvs8FcL1ZsX0QXuOL083AqKPu/bPiFdXkz82WhiitNiN0ifHaI\r\nXvDz+5iyVdfVR7inNjfo5EVJtxwavv6/uCcJIZPjg82WvJ8oZFkbfhACVSLx\r\nf4mZQILgrWl1anXXi2gZKfwMWf5Xw2a/y1xwDQD5K7pH0A3WbnZawszLaJ9c\r\nytyE5ugdlp+YxXb4O91MGIk9mZB0svwqnfczV5/gcc87RYELD6VtMAhkmlcr\r\nxD+RKsxYqmGW9UK1VoZvFWw7VUofm+PqAjf/RJF2NVKMqeXSSs8v2wFPjbQa\r\nGbveH6I40tct0EXWnfFGIgB7/A+lDWy96rYTQSk4QYaLIGlhcSaIf+Bhhje8\r\nZiSz2bMAlmPW8Otua18Li7hmYpeJ8wFXvTo=\r\n=d9fS\r\n-----END PGP SIGNATURE-----\r\n","size":9026},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.1.2_1683156955881_0.3681185597184913"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-05-03T23:35:56.096Z","publish_time":1683156956096,"_source_registry_name":"default"},"1.2.0":{"name":"ufo","version":"1.2.0","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts . && prettier -c src test","lint:fix":"eslint --fix --ext .ts . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest --run typecheck && vitest run"},"devDependencies":{"@types/node":"^20.4.5","@vitest/coverage-v8":"^0.33.0","changelogen":"^0.5.4","eslint":"^8.46.0","eslint-config-unjs":"^0.2.1","prettier":"^3.0.0","typescript":"^5.1.6","unbuild":"^1.2.1","vitest":"^0.33.0"},"packageManager":"pnpm@8.6.10","gitHead":"eee29eeab9ffce37ac099887b62051623392767f","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@1.2.0","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-RsPyTbqORDNDxqAdQPQBpgqhWle1VcTSou/FraClYlHf6TZnQcGslpLcAphNR+sQW4q5lLWLbOsRlh9j24baQg==","shasum":"28d127a087a46729133fdc89cb1358508b3f80ba","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.2.0.tgz","fileCount":6,"unpackedSize":47255,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDIwJmkiG1qCJLcuIYF4T/CKRoRivE2+WYhc8pQynyalgIhAKJDfC0nwCBx5MgCEiAgLjUKpjheGD7gy94lYHxlzhll"}],"size":9511},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.2.0_1690612989365_0.5665157905267943"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-07-29T06:43:09.500Z","publish_time":1690612989500,"_source_registry_name":"default"},"1.3.0":{"name":"ufo","version":"1.3.0","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts . && prettier -c src test","lint:fix":"eslint --fix --ext .ts . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest --run typecheck && vitest run"},"devDependencies":{"@types/node":"^20.5.4","@vitest/coverage-v8":"^0.34.2","changelogen":"^0.5.5","eslint":"^8.47.0","eslint-config-unjs":"^0.2.1","prettier":"^3.0.2","typescript":"^5.1.6","unbuild":"^2.0.0","vitest":"^0.34.2"},"packageManager":"pnpm@8.6.12","gitHead":"908a5d52835346caa889abf6f0edf82556436f35","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@1.3.0","_nodeVersion":"18.16.1","_npmVersion":"9.5.1","dist":{"integrity":"sha512-bRn3CsoojyNStCZe0BG0Mt4Nr/4KF+rhFlnNXybgqt5pXHNFRlqinSoQaTrGyzE4X8aHplSb+TorH+COin9Yxw==","shasum":"c92f8ac209daff607c57bbd75029e190930a0019","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.3.0.tgz","fileCount":6,"unpackedSize":48233,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDfPppVHdCD9F27zs9zPcFwJj2nCg5j0sPYFXJpNF5WjQIgL+c7CbeaK3kd2u3xVzi7IYxWX/kIBi1d+Q1/PKPr2nE="}],"size":9665},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.3.0_1692901189230_0.6597709203144375"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-08-24T18:19:49.437Z","publish_time":1692901189437,"_source_registry_name":"default"},"1.3.1":{"name":"ufo","version":"1.3.1","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts . && prettier -c src test","lint:fix":"eslint --fix --ext .ts . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest --run typecheck && vitest run"},"devDependencies":{"@types/node":"^20.7.1","@vitest/coverage-v8":"^0.34.5","changelogen":"^0.5.5","eslint":"^8.50.0","eslint-config-unjs":"^0.2.1","prettier":"^3.0.3","typescript":"^5.2.2","unbuild":"^2.0.0","vitest":"^0.34.5"},"packageManager":"pnpm@8.7.6","gitHead":"5da74c4c6aee89a9240fcb5ff06c363c7f09e1d3","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@1.3.1","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw==","shasum":"e085842f4627c41d4c1b60ebea1f75cdab4ce86b","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.3.1.tgz","fileCount":8,"unpackedSize":65567,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDLrvn/jOZWkqCDpF/49He1n73CkgKxTPPQu3CoBUxdYgIgbex4dUvfCScoYOljurjogjJ9eLuOZQIFqM1cF5MybPs="}],"size":15139},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.3.1_1695897533362_0.025969815277593344"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-09-28T10:38:53.629Z","publish_time":1695897533629,"_source_registry_name":"default"},"1.3.2":{"name":"ufo","version":"1.3.2","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"unbuild","dev":"vitest","lint":"eslint --ext .ts . && prettier -c src test","lint:fix":"eslint --fix --ext .ts . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest --run typecheck && vitest run"},"devDependencies":{"@types/node":"^20.9.0","@vitest/coverage-v8":"^0.34.6","changelogen":"^0.5.5","eslint":"^8.53.0","eslint-config-unjs":"^0.2.1","prettier":"^3.1.0","typescript":"^5.2.2","unbuild":"^2.0.0","vitest":"^0.34.6"},"packageManager":"pnpm@8.10.5","gitHead":"9c1d90ef0fb8811ea282aaa2da1a2402d4070eb3","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_id":"ufo@1.3.2","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==","shasum":"c7d719d0628a1c80c006d2240e0d169f6e3c0496","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.3.2.tgz","fileCount":8,"unpackedSize":66714,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHq1Idwz43jBGyZOQNxnQ0l4CoIDxvI6lGC/d3KznwyBAiEAzQOiSHn55Ibn/ISEGz+YGi5ZgvNGHubmeq5UMF2C27M="}],"size":15379},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.3.2_1700066278447_0.036593762335823454"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-11-15T16:37:58.637Z","publish_time":1700066278637,"_source_registry_name":"default"},"1.4.0":{"name":"ufo","version":"1.4.0","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"automd && unbuild","automd":"automd","dev":"vitest","lint":"eslint --ext .ts . && prettier -c src test","lint:fix":"eslint --fix --ext .ts . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest run --typecheck"},"devDependencies":{"@types/node":"^20.11.16","@vitest/coverage-v8":"^1.2.2","automd":"^0.1.1","changelogen":"^0.5.5","eslint":"^8.56.0","eslint-config-unjs":"^0.2.1","jiti":"^1.21.0","prettier":"^3.2.5","typescript":"^5.3.3","unbuild":"^2.0.0","untyped":"^1.4.2","vitest":"^1.2.2"},"packageManager":"pnpm@8.15.1","_id":"ufo@1.4.0","gitHead":"541bc6255ad8f3fcaf299949de48e1c4579abd4c","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_nodeVersion":"20.11.0","_npmVersion":"10.2.4","dist":{"integrity":"sha512-Hhy+BhRBleFjpJ2vchUNN40qgkh0366FWJGqVLYBHev0vpHTrXSA0ryT+74UiW6KWsldNurQMKGqCm1M2zBciQ==","shasum":"39845b31be81b4f319ab1d99fd20c56cac528d32","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.4.0.tgz","fileCount":8,"unpackedSize":97753,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDGkoL/LBslx4m6vUoRTggiLUcjNbfc+aE4j55MKbXARgIgEVvmczktgJmlgCQBMfZB4TVSXhnRaPAELLC4GFxRvos="}],"size":18829},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.4.0_1707214853534_0.5340583449561194"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-02-06T10:20:53.702Z","publish_time":1707214853702,"_source_registry_name":"default"},"1.5.0":{"name":"ufo","version":"1.5.0","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"automd && unbuild","automd":"automd","dev":"vitest","lint":"eslint --ext .ts . && prettier -c src test","lint:fix":"eslint --fix --ext .ts . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest run --typecheck"},"devDependencies":{"@types/node":"^20.11.25","@vitest/coverage-v8":"^1.3.1","automd":"^0.3.6","changelogen":"^0.5.5","eslint":"^8.57.0","eslint-config-unjs":"^0.2.1","jiti":"^1.21.0","prettier":"^3.2.5","typescript":"^5.4.2","unbuild":"^2.0.0","untyped":"^1.4.2","vitest":"^1.3.1"},"packageManager":"pnpm@8.15.4","_id":"ufo@1.5.0","gitHead":"bd65b41b50ef22a0c7c44cf349a16e1271996431","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-c7SxU8XB0LTO7hALl6CcE1Q92ZrLzr1iE0IVIsUa9SlFfkn2B2p6YLO6dLxOj7qCWY98PB3Q3EZbN6bEu8p7jA==","shasum":"a6f358bf16d4f847d830f23395768638bc21c632","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.5.0.tgz","fileCount":8,"unpackedSize":102394,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAnxZco2PfVUskB64NpI6B0Em9P0UETu1nXPChPHofnjAiEA1ALrcy9R5y/cps2qXPzXmQUJ3sQ2KM3y77Syb9jKzQo="}],"size":19992},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.5.0_1710519951693_0.8039681560311991"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-03-15T16:25:51.911Z","publish_time":1710519951911,"_source_registry_name":"default"},"1.5.1":{"name":"ufo","version":"1.5.1","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"automd && unbuild","automd":"automd","dev":"vitest","lint":"eslint --ext .ts . && prettier -c src test","lint:fix":"eslint --fix --ext .ts . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest run --typecheck"},"devDependencies":{"@types/node":"^20.11.25","@vitest/coverage-v8":"^1.3.1","automd":"^0.3.6","changelogen":"^0.5.5","eslint":"^8.57.0","eslint-config-unjs":"^0.2.1","jiti":"^1.21.0","prettier":"^3.2.5","typescript":"^5.4.2","unbuild":"^2.0.0","untyped":"^1.4.2","vitest":"^1.3.1"},"packageManager":"pnpm@8.15.4","_id":"ufo@1.5.1","gitHead":"2dd616e5dcf8f62a85b2dc742ee72454f393b577","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-HGyF79+/qZ4soRvM+nHERR2pJ3VXDZ/8sL1uLahdgEDf580NkgiWOxLk33FetExqOWp352JZRsgXbG/4MaGOSg==","shasum":"ec42543a918def8d0ce185e498d080016f35daf6","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.5.1.tgz","fileCount":8,"unpackedSize":102718,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDxS9e4bpcFHJ3QAi466Wy13PFZ1zv5ll30YePEZPY2cgIgP0aWlFHedzrEw+IoD8NU/4fTYXqMXkZBMuXMXbGK9Xo="}],"size":20097},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.5.1_1710542955298_0.2472652173005898"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-03-15T22:49:15.474Z","publish_time":1710542955474,"_source_registry_name":"default"},"1.5.2":{"name":"ufo","version":"1.5.2","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"automd && unbuild","automd":"automd","dev":"vitest","lint":"eslint --ext .ts . && prettier -c src test","lint:fix":"eslint --fix --ext .ts . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest run --typecheck"},"devDependencies":{"@types/node":"^20.11.28","@vitest/coverage-v8":"^1.4.0","automd":"^0.3.6","changelogen":"^0.5.5","eslint":"^8.57.0","eslint-config-unjs":"^0.2.1","jiti":"^1.21.0","prettier":"^3.2.5","typescript":"^5.4.2","unbuild":"^2.0.0","untyped":"^1.4.2","vitest":"^1.4.0"},"packageManager":"pnpm@8.15.5","_id":"ufo@1.5.2","gitHead":"c84812a178d07168d44e6ad29ad3e2da9b9a06ea","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-eiutMaL0J2MKdhcOM1tUy13pIrYnyR87fEd8STJQFrrAwImwvlXkxlZEjaKah8r2viPohld08lt73QfLG1NxMg==","shasum":"e547561ac56896fc8b9a3f2fb2552169f3629035","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.5.2.tgz","fileCount":8,"unpackedSize":102722,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHHK2VDkvHXn10oYAeJfsFK8WZfT0HzuPBAh4scbrZKfAiAVOxadXViqW25IXUjDMcuNNhMT9bz4hgdT+JSWkANPIQ=="}],"size":20103},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.5.2_1710762313815_0.6530492906322849"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-03-18T11:45:13.967Z","publish_time":1710762313967,"_source_registry_name":"default"},"1.5.3":{"name":"ufo","version":"1.5.3","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"automd && unbuild","automd":"automd","dev":"vitest","lint":"eslint --ext .ts . && prettier -c src test","lint:fix":"eslint --fix --ext .ts . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest run --typecheck"},"devDependencies":{"@types/node":"^20.11.30","@vitest/coverage-v8":"^1.4.0","automd":"^0.3.6","changelogen":"^0.5.5","eslint":"^8.57.0","eslint-config-unjs":"^0.2.1","jiti":"^1.21.0","prettier":"^3.2.5","typescript":"^5.4.2","unbuild":"^2.0.0","untyped":"^1.4.2","vitest":"^1.4.0"},"packageManager":"pnpm@8.15.5","_id":"ufo@1.5.3","gitHead":"27573123da6c36b9837fbc9cb021c3f1e4b1a340","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==","shasum":"3325bd3c977b6c6cd3160bf4ff52989adc9d3344","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.5.3.tgz","fileCount":8,"unpackedSize":103050,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFT+/YX1YSAGjHHc24dqbQCwh9XNhUCR+SGScqcc7oOlAiB3nyhbu2EFUi343M4uLAAJVjeXT6qbD+u/DR0B/nRwuQ=="}],"size":20240},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.5.3_1710934383275_0.783797114821752"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-03-20T11:33:03.453Z","publish_time":1710934383453,"_source_registry_name":"default"},"1.5.4":{"name":"ufo","version":"1.5.4","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"automd && unbuild","automd":"automd","dev":"vitest","lint":"eslint . && prettier -c src test","lint:fix":"eslint --fix . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest run --typecheck"},"devDependencies":{"@types/node":"^20.14.10","@vitest/coverage-v8":"^2.0.3","automd":"^0.3.8","changelogen":"^0.5.5","eslint":"^9.7.0","eslint-config-unjs":"^0.3.2","jiti":"^1.21.6","prettier":"^3.3.3","typescript":"^5.5.3","unbuild":"^2.0.0","untyped":"^1.4.2","vitest":"^2.0.3"},"packageManager":"pnpm@9.5.0","_id":"ufo@1.5.4","gitHead":"0f15ddc67f06c7abe16ef863d71a58b0c615b477","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_nodeVersion":"20.15.0","_npmVersion":"10.7.0","dist":{"integrity":"sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==","shasum":"16d6949674ca0c9e0fbbae1fa20a71d7b1ded754","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.5.4.tgz","fileCount":8,"unpackedSize":103218,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE4sz7kB9rTpZMvYwXQkBwO76QlLx+IuTZjY/FnoF+jRAiBmGh2rWWJgjwA4oe++qFciBR0EKLrOWNIcjwAk90pVAg=="}],"size":20292},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ufo_1.5.4_1721154578635_0.45845732604627387"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-07-16T18:29:38.850Z","publish_time":1721154578850,"_source_registry_name":"default"},"1.6.0":{"name":"ufo","version":"1.6.0","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"automd && unbuild","automd":"automd","dev":"vitest","lint":"eslint . && prettier -c src test","lint:fix":"eslint --fix . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest run --typecheck"},"devDependencies":{"@types/node":"^22.14.0","@vitest/coverage-v8":"^3.1.1","automd":"^0.4.0","changelogen":"^0.6.1","eslint":"^9.24.0","eslint-config-unjs":"^0.4.2","jiti":"^2.4.2","prettier":"^3.5.3","typescript":"^5.8.3","unbuild":"^3.5.0","untyped":"^2.0.0","vitest":"^3.1.1"},"packageManager":"pnpm@10.7.1","_id":"ufo@1.6.0","gitHead":"5b87427f05d0f34f484b1c9559175d65573b8e1c","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_nodeVersion":"22.14.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-AkgU2cV/+Xb4Uz6cic0kMZbtM42nbltnGvTVOt/8gMCbO2/z64nE47TOygh7HjgFPkUkVRBEyNFqpqi3zo+BJA==","shasum":"97c0729950279476b94b4ccdfd264a7206f7c872","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.6.0.tgz","fileCount":8,"unpackedSize":105013,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIEadfPSDmb6SskM73DYhqy2g1QUvZE5z+0ZSNN3DEsChAiEA5yD/IyHPmO43hspHvMVpxmHweD42WnpCHoUWqOwvroQ="}],"size":20434},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/ufo_1.6.0_1744036315026_0.816824429828733"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-04-07T14:31:55.190Z","publish_time":1744036315190,"_source_registry_name":"default"},"1.6.1":{"name":"ufo","version":"1.6.1","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"automd && unbuild","automd":"automd","dev":"vitest","lint":"eslint . && prettier -c src test","lint:fix":"eslint --fix . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest run --typecheck"},"devDependencies":{"@types/node":"^22.14.0","@vitest/coverage-v8":"^3.1.1","automd":"^0.4.0","changelogen":"^0.6.1","eslint":"^9.24.0","eslint-config-unjs":"^0.4.2","jiti":"^2.4.2","prettier":"^3.5.3","typescript":"^5.8.3","unbuild":"^3.5.0","untyped":"^2.0.0","vitest":"^3.1.1"},"packageManager":"pnpm@10.7.1","_id":"ufo@1.6.1","gitHead":"b83cbea04b7cabdfb0592f357520c08f1bf647c4","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_nodeVersion":"22.14.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==","shasum":"ac2db1d54614d1b22c1d603e3aef44a85d8f146b","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.6.1.tgz","fileCount":8,"unpackedSize":104757,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCzXhoiLwX2CwJuy03Ic3KB6wOKIiKd8twAKvMU7i5HIQIgRGcrj1kPqESMfBgpBOqUzW0phe6lkeIZnVdJviW46hs="}],"size":20356},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/ufo_1.6.1_1744099878367_0.8333590075231165"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-04-08T08:11:18.539Z","publish_time":1744099878539,"_source_registry_name":"default"},"1.6.2":{"name":"ufo","version":"1.6.2","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","require":"./dist/index.cjs","default":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"automd && unbuild","automd":"automd","dev":"vitest","lint":"eslint . && prettier -c src test","lint:fix":"eslint --fix . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest run --typecheck"},"devDependencies":{"@types/node":"^25.0.3","@vitest/coverage-v8":"^4.0.16","automd":"^0.4.2","changelogen":"^0.6.2","eslint":"^9.39.2","eslint-config-unjs":"^0.6.2","jiti":"^2.6.1","prettier":"^3.7.4","typescript":"^5.9.3","unbuild":"^3.6.1","untyped":"^2.0.0","vitest":"^4.0.16"},"packageManager":"pnpm@10.27.0","gitHead":"7da3795f204bc89d9b7da00e16853a62f402b245","_id":"ufo@1.6.2","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_nodeVersion":"24.11.1","_npmVersion":"11.6.2","dist":{"integrity":"sha512-heMioaxBcG9+Znsda5Q8sQbWnLJSl98AFDXTO80wELWEzX3hordXsTdxrIfMQoO9IY1MEnoGoPjpoKpMj+Yx0Q==","shasum":"aaf4d46b98425b2fb5031abe8d65ca069e93e755","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.6.2.tgz","fileCount":8,"unpackedSize":111791,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDndcTA1PSg1wpuISP71OWeBkqN14DM02AhSkshat8s3wIhAIGWVdwdHrJEoruOOG9HOvxhBdQVlPs4gyB9wbgjcwgA"}],"size":21304},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/ufo_1.6.2_1767698894172_0.766658404688803"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-01-06T11:28:14.312Z","publish_time":1767698894312,"_source_registry_name":"default"},"1.6.3":{"name":"ufo","version":"1.6.3","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","require":"./dist/index.cjs","default":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"automd && unbuild","automd":"automd","dev":"vitest","lint":"eslint . && prettier -c src test","lint:fix":"eslint --fix . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest run --typecheck"},"devDependencies":{"@types/node":"^25.0.8","@vitest/coverage-v8":"^4.0.17","automd":"^0.4.2","changelogen":"^0.6.2","eslint":"^9.39.2","eslint-config-unjs":"^0.6.2","jiti":"^2.6.1","prettier":"^3.7.4","typescript":"^5.9.3","unbuild":"^3.6.1","untyped":"^2.0.0","vitest":"^4.0.17"},"packageManager":"pnpm@10.28.0","gitHead":"11308c0bb5cb4a4bc3bfcbdc5c03177b097423e6","_id":"ufo@1.6.3","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_nodeVersion":"24.11.1","_npmVersion":"11.6.2","dist":{"integrity":"sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==","shasum":"799666e4e88c122a9659805e30b9dc071c3aed4f","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.6.3.tgz","fileCount":8,"unpackedSize":112253,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDZ5bhrq3AM3kE5qzKeQvaC7XhI/mudMVTks9RxeZiLnQIhAPWq4ykENLXdX1XFgZk+0u0XErRO5t8E/Q8Yy7liJjKH"}],"size":21419},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/ufo_1.6.3_1768434395615_0.2826429576780347"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-01-14T23:46:35.800Z","publish_time":1768434395800,"_source_registry_name":"default"},"1.6.4":{"name":"ufo","version":"1.6.4","description":"URL utils for humans","repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"license":"MIT","sideEffects":false,"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","require":"./dist/index.cjs","default":"./dist/index.mjs"},"./*":"./*"},"main":"./dist/index.cjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","scripts":{"build":"automd && unbuild","automd":"automd","dev":"vitest","lint":"eslint . && prettier -c src test","lint:fix":"eslint --fix . && prettier -w src test","prepack":"pnpm build","release":"pnpm test && changelogen --release && npm publish && git push --follow-tags","test":"pnpm lint && vitest run --typecheck"},"devDependencies":{"@types/node":"^25.6.0","@vitest/coverage-v8":"^4.1.5","automd":"^0.4.3","changelogen":"^0.6.2","eslint":"^10.2.1","eslint-config-unjs":"^0.6.2","jiti":"^2.6.1","prettier":"^3.8.3","typescript":"^6.0.3","unbuild":"^3.6.1","untyped":"^2.0.0","vitest":"^4.1.5"},"packageManager":"pnpm@10.33.2","gitHead":"f06c800d0c59f2a4a1b9ba65eb6cb61a84419be6","_id":"ufo@1.6.4","bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_nodeVersion":"24.10.0","_npmVersion":"11.6.1","dist":{"integrity":"sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==","shasum":"7a8fb875fcc6382d2c7d0b3692738b0500a92467","tarball":"https://registry.npmmirror.com/ufo/-/ufo-1.6.4.tgz","fileCount":8,"unpackedSize":112244,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCICcps1qpMsCmS60pwcCPypiCz5TePNWlFGKUbjFaANVCAiEA2HNK8xAr9z5EIMcH8SfwagRCaMQl6eNhpJ9e1XLE/5U="}],"size":21428},"_npmUser":{"name":"pi0","email":"pyapar@gmail.com"},"directories":{},"maintainers":[{"name":"pi0","email":"pyapar@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/ufo_1.6.4_1777459918353_0.19921381552704132"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-04-29T10:51:58.509Z","publish_time":1777459918509,"_source_registry_name":"default"}},"repository":{"type":"git","url":"git+https://github.com/unjs/ufo.git"},"bugs":{"url":"https://github.com/unjs/ufo/issues"},"homepage":"https://github.com/unjs/ufo#readme","_source_registry_name":"default"}