diff --git a/example/package-lock.json b/example/package-lock.json index ec0b36b..295026f 100644 --- a/example/package-lock.json +++ b/example/package-lock.json @@ -9,7 +9,7 @@ "version": "0.0.0", "dependencies": { "@awesomeorganization/hyperlink": "..", - "undici": "4.7.0" + "undici": "^5.26.2" } }, "..": { @@ -213,12 +213,23 @@ "resolved": "..", "link": true }, + "node_modules/@fastify/busboy": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.0.0.tgz", + "integrity": "sha512-JUFJad5lv7jxj926GPgymrWQxxjPYuJNiNjNMzqT+HiuP6Vl3dk5xzG+8sTX96np0ZAluvaMzPsjhHZ5rNuNQQ==", + "engines": { + "node": ">=14" + } + }, "node_modules/undici": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-4.7.0.tgz", - "integrity": "sha512-O1q+/EIs4g0HnVMH8colei3qODGiYBLpavWYv3kI+JazBBsBIndnZfUqZ2MEfPJ12H9d56yVdwZG1/nV/xcoSQ==", + "version": "5.26.2", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.26.2.tgz", + "integrity": "sha512-a4PDLQgLTPHVzOK+x3F79/M4GtyYPl+aX9AAK7aQxpwxDwCqkeZCScy7Gk5kWT3JtdFq1uhO3uZJdLtHI4dK9A==", + "dependencies": { + "@fastify/busboy": "^2.0.0" + }, "engines": { - "node": ">=12.18" + "node": ">=14.0" } } }, @@ -366,10 +377,18 @@ } } }, + "@fastify/busboy": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.0.0.tgz", + "integrity": "sha512-JUFJad5lv7jxj926GPgymrWQxxjPYuJNiNjNMzqT+HiuP6Vl3dk5xzG+8sTX96np0ZAluvaMzPsjhHZ5rNuNQQ==" + }, "undici": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-4.7.0.tgz", - "integrity": "sha512-O1q+/EIs4g0HnVMH8colei3qODGiYBLpavWYv3kI+JazBBsBIndnZfUqZ2MEfPJ12H9d56yVdwZG1/nV/xcoSQ==" + "version": "5.26.2", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.26.2.tgz", + "integrity": "sha512-a4PDLQgLTPHVzOK+x3F79/M4GtyYPl+aX9AAK7aQxpwxDwCqkeZCScy7Gk5kWT3JtdFq1uhO3uZJdLtHI4dK9A==", + "requires": { + "@fastify/busboy": "^2.0.0" + } } } } diff --git a/example/package.json b/example/package.json index 34c11d4..3bd0dcc 100644 --- a/example/package.json +++ b/example/package.json @@ -5,6 +5,6 @@ "type": "module", "dependencies": { "@awesomeorganization/hyperlink": "..", - "undici": "4.7.0" + "undici": "5.26.2" } }