nitropack-nightly 2.11.7-20250317-115902.2cf38327 → 2.11.7-20250318-111257.10c8e534

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import { NitroPreset, NitroPresetMeta, Nitro } from 'nitropack/types';
2
- import { N as NitroModule } from '../shared/nitro.ZcB8T5yn.mjs';
2
+ import { N as NitroModule } from '../shared/nitro.BvFZg7IX.mjs';
3
3
  import 'consola';
4
4
  import 'h3';
5
5
  import 'hookable';
@@ -1,5 +1,5 @@
1
1
  import { NitroPreset, NitroPresetMeta, Nitro } from 'nitropack/types';
2
- import { N as NitroModule } from '../shared/nitro.ZcB8T5yn.js';
2
+ import { N as NitroModule } from '../shared/nitro.BvFZg7IX.js';
3
3
  import 'consola';
4
4
  import 'h3';
5
5
  import 'hookable';
@@ -1,3 +1,3 @@
1
- const version = "2.11.7-20250317-115902.2cf38327";
1
+ const version = "2.11.7-20250318-111257.10c8e534";
2
2
 
3
3
  export { version };
@@ -1,3 +1,3 @@
1
- const version = "2.11.7-20250317-115902.2cf38327";
1
+ const version = "2.11.7-20250318-111257.10c8e534";
2
2
 
3
3
  export { version };
@@ -1,3 +1,3 @@
1
- const version = "2.11.7-20250317-115902.2cf38327";
1
+ const version = "2.11.7-20250318-111257.10c8e534";
2
2
 
3
3
  export { version };
@@ -1,6 +1,2 @@
1
- export declare function hash(value: any): any;
2
- /**
3
- Source: https://github.com/unjs/ohash/blob/v1/src/object-hash.ts
4
- Based on https://github.com/puleos/object-hash v3.0.0 (MIT)
5
- */
6
1
  export declare function serialize(object: any): string;
2
+ export declare function hash(value: any): any;
@@ -1,179 +1,183 @@
1
1
  import { digest } from "ohash";
2
- export function hash(value) {
3
- return digest(typeof value === "string" ? value : serialize(value)).replace(/[-_]/g, "").slice(0, 10);
4
- }
5
- export function serialize(object) {
6
- const hasher = new Hasher();
7
- hasher.dispatch(object);
8
- return hasher.buff;
9
- }
10
- class Hasher {
11
- buff = "";
12
- #context = /* @__PURE__ */ new Map();
13
- write(str) {
14
- this.buff += str;
15
- }
16
- dispatch(value) {
17
- const type = value === null ? "null" : typeof value;
18
- return this[type](value);
19
- }
20
- object(object) {
21
- if (object && typeof object.toJSON === "function") {
22
- return this.object(object.toJSON());
23
- }
24
- const objString = Object.prototype.toString.call(object);
25
- let objType = "";
26
- const objectLength = objString.length;
27
- objType = objectLength < 10 ? "unknown:[" + objString + "]" : objString.slice(8, objectLength - 1);
28
- objType = objType.toLowerCase();
29
- let objectNumber = null;
30
- if ((objectNumber = this.#context.get(object)) === void 0) {
31
- this.#context.set(object, this.#context.size);
32
- } else {
33
- return this.dispatch("[CIRCULAR:" + objectNumber + "]");
34
- }
35
- if (typeof Buffer !== "undefined" && Buffer.isBuffer && Buffer.isBuffer(object)) {
36
- this.write("buffer:");
37
- return this.write(object.toString("utf8"));
38
- }
39
- if (objType !== "object" && objType !== "function" && objType !== "asyncfunction") {
40
- if (this[objType]) {
41
- this[objType](object);
2
+ const Hasher = /* @__PURE__ */ (() => {
3
+ class Hasher2 {
4
+ buff = "";
5
+ #context = /* @__PURE__ */ new Map();
6
+ write(str) {
7
+ this.buff += str;
8
+ }
9
+ dispatch(value) {
10
+ const type = value === null ? "null" : typeof value;
11
+ return this[type](value);
12
+ }
13
+ object(object) {
14
+ if (object && typeof object.toJSON === "function") {
15
+ return this.object(object.toJSON());
16
+ }
17
+ const objString = Object.prototype.toString.call(object);
18
+ let objType = "";
19
+ const objectLength = objString.length;
20
+ objType = objectLength < 10 ? "unknown:[" + objString + "]" : objString.slice(8, objectLength - 1);
21
+ objType = objType.toLowerCase();
22
+ let objectNumber = null;
23
+ if ((objectNumber = this.#context.get(object)) === void 0) {
24
+ this.#context.set(object, this.#context.size);
42
25
  } else {
43
- this.unknown(object, objType);
26
+ return this.dispatch("[CIRCULAR:" + objectNumber + "]");
44
27
  }
45
- } else {
46
- const keys = Object.keys(object).sort();
47
- const extraKeys = [];
48
- this.write("object:" + (keys.length + extraKeys.length) + ":");
49
- const dispatchForKey = (key) => {
50
- this.dispatch(key);
51
- this.write(":");
52
- this.dispatch(object[key]);
53
- this.write(",");
54
- };
55
- for (const key of keys) {
56
- dispatchForKey(key);
28
+ if (typeof Buffer !== "undefined" && Buffer.isBuffer && Buffer.isBuffer(object)) {
29
+ this.write("buffer:");
30
+ return this.write(object.toString("utf8"));
57
31
  }
58
- for (const key of extraKeys) {
59
- dispatchForKey(key);
32
+ if (objType !== "object" && objType !== "function" && objType !== "asyncfunction") {
33
+ if (this[objType]) {
34
+ this[objType](object);
35
+ } else {
36
+ this.unknown(object, objType);
37
+ }
38
+ } else {
39
+ const keys = Object.keys(object).sort();
40
+ const extraKeys = [];
41
+ this.write("object:" + (keys.length + extraKeys.length) + ":");
42
+ const dispatchForKey = (key) => {
43
+ this.dispatch(key);
44
+ this.write(":");
45
+ this.dispatch(object[key]);
46
+ this.write(",");
47
+ };
48
+ for (const key of keys) {
49
+ dispatchForKey(key);
50
+ }
51
+ for (const key of extraKeys) {
52
+ dispatchForKey(key);
53
+ }
60
54
  }
61
55
  }
62
- }
63
- array(arr, unordered) {
64
- unordered = unordered === void 0 ? false : unordered;
65
- this.write("array:" + arr.length + ":");
66
- if (!unordered || arr.length <= 1) {
67
- for (const entry of arr) {
68
- this.dispatch(entry);
56
+ array(arr, unordered) {
57
+ unordered = unordered === void 0 ? false : unordered;
58
+ this.write("array:" + arr.length + ":");
59
+ if (!unordered || arr.length <= 1) {
60
+ for (const entry of arr) {
61
+ this.dispatch(entry);
62
+ }
63
+ return;
69
64
  }
70
- return;
71
- }
72
- const contextAdditions = /* @__PURE__ */ new Map();
73
- const entries = arr.map((entry) => {
74
- const hasher = new Hasher();
75
- hasher.dispatch(entry);
76
- for (const [key, value] of hasher.#context) {
77
- contextAdditions.set(key, value);
65
+ const contextAdditions = /* @__PURE__ */ new Map();
66
+ const entries = arr.map((entry) => {
67
+ const hasher = new Hasher2();
68
+ hasher.dispatch(entry);
69
+ for (const [key, value] of hasher.#context) {
70
+ contextAdditions.set(key, value);
71
+ }
72
+ return hasher.toString();
73
+ });
74
+ this.#context = contextAdditions;
75
+ entries.sort();
76
+ return this.array(entries, false);
77
+ }
78
+ date(date) {
79
+ return this.write("date:" + date.toJSON());
80
+ }
81
+ symbol(sym) {
82
+ return this.write("symbol:" + sym.toString());
83
+ }
84
+ unknown(value, type) {
85
+ this.write(type);
86
+ if (!value) {
87
+ return;
88
+ }
89
+ this.write(":");
90
+ if (value && typeof value.entries === "function") {
91
+ return this.array(
92
+ [...value.entries()],
93
+ true
94
+ /* ordered */
95
+ );
78
96
  }
79
- return hasher.toString();
80
- });
81
- this.#context = contextAdditions;
82
- entries.sort();
83
- return this.array(entries, false);
84
- }
85
- date(date) {
86
- return this.write("date:" + date.toJSON());
87
- }
88
- symbol(sym) {
89
- return this.write("symbol:" + sym.toString());
90
- }
91
- unknown(value, type) {
92
- this.write(type);
93
- if (!value) {
94
- return;
95
- }
96
- this.write(":");
97
- if (value && typeof value.entries === "function") {
98
- return this.array(
99
- [...value.entries()],
100
- true
101
- /* ordered */
102
- );
103
97
  }
104
- }
105
- error(err) {
106
- return this.write("error:" + err.toString());
107
- }
108
- boolean(bool) {
109
- return this.write("bool:" + bool);
110
- }
111
- string(string) {
112
- this.write("string:" + string.length + ":");
113
- this.write(string);
114
- }
115
- function(fn) {
116
- this.write("fn:");
117
- if (isNativeFunction(fn)) {
118
- this.dispatch("[native]");
119
- } else {
120
- this.dispatch(fn.toString());
98
+ error(err) {
99
+ return this.write("error:" + err.toString());
100
+ }
101
+ boolean(bool) {
102
+ return this.write("bool:" + bool);
103
+ }
104
+ string(string) {
105
+ this.write("string:" + string.length + ":");
106
+ this.write(string);
107
+ }
108
+ function(fn) {
109
+ this.write("fn:");
110
+ if (isNativeFunction(fn)) {
111
+ this.dispatch("[native]");
112
+ } else {
113
+ this.dispatch(fn.toString());
114
+ }
115
+ }
116
+ number(number) {
117
+ return this.write("number:" + number);
118
+ }
119
+ null() {
120
+ return this.write("Null");
121
+ }
122
+ undefined() {
123
+ return this.write("Undefined");
124
+ }
125
+ regexp(regex) {
126
+ return this.write("regex:" + regex.toString());
127
+ }
128
+ arraybuffer(arr) {
129
+ this.write("arraybuffer:");
130
+ return this.dispatch(new Uint8Array(arr));
131
+ }
132
+ url(url) {
133
+ return this.write("url:" + url.toString());
134
+ }
135
+ map(map) {
136
+ this.write("map:");
137
+ const arr = [...map];
138
+ return this.array(arr, false);
139
+ }
140
+ set(set) {
141
+ this.write("set:");
142
+ const arr = [...set];
143
+ return this.array(arr, false);
144
+ }
145
+ bigint(number) {
146
+ return this.write("bigint:" + number.toString());
121
147
  }
122
148
  }
123
- number(number) {
124
- return this.write("number:" + number);
125
- }
126
- null() {
127
- return this.write("Null");
128
- }
129
- undefined() {
130
- return this.write("Undefined");
131
- }
132
- regexp(regex) {
133
- return this.write("regex:" + regex.toString());
134
- }
135
- arraybuffer(arr) {
136
- this.write("arraybuffer:");
137
- return this.dispatch(new Uint8Array(arr));
138
- }
139
- url(url) {
140
- return this.write("url:" + url.toString());
141
- }
142
- map(map) {
143
- this.write("map:");
144
- const arr = [...map];
145
- return this.array(arr, false);
146
- }
147
- set(set) {
148
- this.write("set:");
149
- const arr = [...set];
150
- return this.array(arr, false);
151
- }
152
- bigint(number) {
153
- return this.write("bigint:" + number.toString());
149
+ for (const type of [
150
+ "uint8array",
151
+ "uint8clampedarray",
152
+ "unt8array",
153
+ "uint16array",
154
+ "unt16array",
155
+ "uint32array",
156
+ "unt32array",
157
+ "float32array",
158
+ "float64array"
159
+ ]) {
160
+ Hasher2.prototype[type] = function(arr) {
161
+ this.write(type + ":");
162
+ return this.array([...arr], false);
163
+ };
164
+ }
165
+ function isNativeFunction(f) {
166
+ if (typeof f !== "function") {
167
+ return false;
168
+ }
169
+ return Function.prototype.toString.call(f).slice(
170
+ -15
171
+ /* "[native code] }".length */
172
+ ) === "[native code] }";
154
173
  }
174
+ return Hasher2;
175
+ })();
176
+ export function serialize(object) {
177
+ const hasher = new Hasher();
178
+ hasher.dispatch(object);
179
+ return hasher.buff;
155
180
  }
156
- for (const type of [
157
- "uint8array",
158
- "uint8clampedarray",
159
- "unt8array",
160
- "uint16array",
161
- "unt16array",
162
- "uint32array",
163
- "unt32array",
164
- "float32array",
165
- "float64array"
166
- ]) {
167
- Hasher.prototype[type] = function(arr) {
168
- this.write(type + ":");
169
- return this.array([...arr], false);
170
- };
171
- }
172
- const nativeFunc = "[native code] }";
173
- const nativeFuncLength = nativeFunc.length;
174
- function isNativeFunction(f) {
175
- if (typeof f !== "function") {
176
- return false;
177
- }
178
- return Function.prototype.toString.call(f).slice(-nativeFuncLength) === nativeFunc;
181
+ export function hash(value) {
182
+ return digest(typeof value === "string" ? value : serialize(value)).replace(/[-_]/g, "").slice(0, 10);
179
183
  }
@@ -8,6 +8,8 @@ export default eventHandler((event) => {
8
8
  const _config = runtimeConfig.nitro.openAPI?.ui?.scalar;
9
9
  const scalarConfig = {
10
10
  ..._config,
11
+ url: openAPIEndpoint,
12
+ // @ts-expect-error (missing types?)
11
13
  spec: { url: openAPIEndpoint, ..._config?.spec }
12
14
  };
13
15
  return (
@@ -25,7 +25,7 @@ import { FilterPattern } from 'unplugin-utils';
25
25
  import { NodeFileTraceOptions } from '@vercel/nft';
26
26
  import { TransformOptions, Loader } from 'esbuild';
27
27
  import { InputOptions, OutputOptions } from 'rollup';
28
- import { ReferenceConfiguration } from '@scalar/api-reference';
28
+ import { ApiReferenceConfiguration } from '@scalar/api-reference';
29
29
  import { ProviderName } from 'std-env';
30
30
 
31
31
  type Enumerate<N extends number, Acc extends number[] = []> = Acc["length"] extends N ? Acc[number] : Enumerate<N, [...Acc, Acc["length"]]>;
@@ -231,7 +231,7 @@ interface NitroOpenAPIConfig {
231
231
  /**
232
232
  * Scalar UI configuration
233
233
  */
234
- scalar?: false | (ReferenceConfiguration & {
234
+ scalar?: false | (Partial<ApiReferenceConfiguration> & {
235
235
  /**
236
236
  * Scalar UI route
237
237
  *
@@ -25,7 +25,7 @@ import { FilterPattern } from 'unplugin-utils';
25
25
  import { NodeFileTraceOptions } from '@vercel/nft';
26
26
  import { TransformOptions, Loader } from 'esbuild';
27
27
  import { InputOptions, OutputOptions } from 'rollup';
28
- import { ReferenceConfiguration } from '@scalar/api-reference';
28
+ import { ApiReferenceConfiguration } from '@scalar/api-reference';
29
29
  import { ProviderName } from 'std-env';
30
30
 
31
31
  type Enumerate<N extends number, Acc extends number[] = []> = Acc["length"] extends N ? Acc[number] : Enumerate<N, [...Acc, Acc["length"]]>;
@@ -231,7 +231,7 @@ interface NitroOpenAPIConfig {
231
231
  /**
232
232
  * Scalar UI configuration
233
233
  */
234
- scalar?: false | (ReferenceConfiguration & {
234
+ scalar?: false | (Partial<ApiReferenceConfiguration> & {
235
235
  /**
236
236
  * Scalar UI route
237
237
  *
@@ -1,7 +1,7 @@
1
1
  import { App, Router, H3Event, RouterMethod } from 'h3';
2
2
  import { FetchRequest, FetchOptions, FetchResponse } from 'ofetch';
3
- import { a as NitroOptions, b as NitroConfig, N as NitroModule } from '../shared/nitro.ZcB8T5yn.mjs';
4
- export { A as AppConfig, C as CacheEntry, c as CacheOptions, d as CachedEventHandlerOptions, e as CompressOptions, g as DatabaseConnectionConfig, h as DatabaseConnectionConfigs, D as DatabaseConnectionName, l as DevServerOptions, I as EsbuildOptions, O as HTTPStatusCode, L as LoadConfigOptions, u as Nitro, y as NitroBuildInfo, q as NitroDevEventHandler, n as NitroDevServer, v as NitroDynamicConfig, r as NitroErrorHandler, p as NitroEventHandler, x as NitroFrameworkInfo, s as NitroHooks, t as NitroModuleInput, k as NitroOpenAPIConfig, E as NitroPreset, F as NitroPresetMeta, Q as NitroRouteConfig, o as NitroRouteMeta, T as NitroRouteRules, j as NitroRuntimeConfig, i as NitroRuntimeConfigApp, w as NitroTypes, m as NitroWorker, J as NodeExternalsOptions, B as PrerenderGenerateRoute, z as PrerenderRoute, P as PublicAssetDir, M as RawOptions, R as ResponseCacheEntry, G as RollupConfig, H as RollupVirtualOptions, S as ServerAssetDir, K as ServerAssetOptions, f as StorageMounts, V as VirtualModule } from '../shared/nitro.ZcB8T5yn.mjs';
3
+ import { a as NitroOptions, b as NitroConfig, N as NitroModule } from '../shared/nitro.BvFZg7IX.mjs';
4
+ export { A as AppConfig, C as CacheEntry, c as CacheOptions, d as CachedEventHandlerOptions, e as CompressOptions, g as DatabaseConnectionConfig, h as DatabaseConnectionConfigs, D as DatabaseConnectionName, l as DevServerOptions, I as EsbuildOptions, O as HTTPStatusCode, L as LoadConfigOptions, u as Nitro, y as NitroBuildInfo, q as NitroDevEventHandler, n as NitroDevServer, v as NitroDynamicConfig, r as NitroErrorHandler, p as NitroEventHandler, x as NitroFrameworkInfo, s as NitroHooks, t as NitroModuleInput, k as NitroOpenAPIConfig, E as NitroPreset, F as NitroPresetMeta, Q as NitroRouteConfig, o as NitroRouteMeta, T as NitroRouteRules, j as NitroRuntimeConfig, i as NitroRuntimeConfigApp, w as NitroTypes, m as NitroWorker, J as NodeExternalsOptions, B as PrerenderGenerateRoute, z as PrerenderRoute, P as PublicAssetDir, M as RawOptions, R as ResponseCacheEntry, G as RollupConfig, H as RollupVirtualOptions, S as ServerAssetDir, K as ServerAssetOptions, f as StorageMounts, V as VirtualModule } from '../shared/nitro.BvFZg7IX.mjs';
5
5
  import { Hookable } from 'hookable';
6
6
  import { NitroRuntimeHooks as NitroRuntimeHooks$1 } from 'nitropack';
7
7
  import { AbstractRequest, AbstractResponse } from 'node-mock-http';
@@ -1,7 +1,7 @@
1
1
  import { App, Router, H3Event, RouterMethod } from 'h3';
2
2
  import { FetchRequest, FetchOptions, FetchResponse } from 'ofetch';
3
- import { a as NitroOptions, b as NitroConfig, N as NitroModule } from '../shared/nitro.ZcB8T5yn.js';
4
- export { A as AppConfig, C as CacheEntry, c as CacheOptions, d as CachedEventHandlerOptions, e as CompressOptions, g as DatabaseConnectionConfig, h as DatabaseConnectionConfigs, D as DatabaseConnectionName, l as DevServerOptions, I as EsbuildOptions, O as HTTPStatusCode, L as LoadConfigOptions, u as Nitro, y as NitroBuildInfo, q as NitroDevEventHandler, n as NitroDevServer, v as NitroDynamicConfig, r as NitroErrorHandler, p as NitroEventHandler, x as NitroFrameworkInfo, s as NitroHooks, t as NitroModuleInput, k as NitroOpenAPIConfig, E as NitroPreset, F as NitroPresetMeta, Q as NitroRouteConfig, o as NitroRouteMeta, T as NitroRouteRules, j as NitroRuntimeConfig, i as NitroRuntimeConfigApp, w as NitroTypes, m as NitroWorker, J as NodeExternalsOptions, B as PrerenderGenerateRoute, z as PrerenderRoute, P as PublicAssetDir, M as RawOptions, R as ResponseCacheEntry, G as RollupConfig, H as RollupVirtualOptions, S as ServerAssetDir, K as ServerAssetOptions, f as StorageMounts, V as VirtualModule } from '../shared/nitro.ZcB8T5yn.js';
3
+ import { a as NitroOptions, b as NitroConfig, N as NitroModule } from '../shared/nitro.BvFZg7IX.js';
4
+ export { A as AppConfig, C as CacheEntry, c as CacheOptions, d as CachedEventHandlerOptions, e as CompressOptions, g as DatabaseConnectionConfig, h as DatabaseConnectionConfigs, D as DatabaseConnectionName, l as DevServerOptions, I as EsbuildOptions, O as HTTPStatusCode, L as LoadConfigOptions, u as Nitro, y as NitroBuildInfo, q as NitroDevEventHandler, n as NitroDevServer, v as NitroDynamicConfig, r as NitroErrorHandler, p as NitroEventHandler, x as NitroFrameworkInfo, s as NitroHooks, t as NitroModuleInput, k as NitroOpenAPIConfig, E as NitroPreset, F as NitroPresetMeta, Q as NitroRouteConfig, o as NitroRouteMeta, T as NitroRouteRules, j as NitroRuntimeConfig, i as NitroRuntimeConfigApp, w as NitroTypes, m as NitroWorker, J as NodeExternalsOptions, B as PrerenderGenerateRoute, z as PrerenderRoute, P as PublicAssetDir, M as RawOptions, R as ResponseCacheEntry, G as RollupConfig, H as RollupVirtualOptions, S as ServerAssetDir, K as ServerAssetOptions, f as StorageMounts, V as VirtualModule } from '../shared/nitro.BvFZg7IX.js';
5
5
  import { Hookable } from 'hookable';
6
6
  import { NitroRuntimeHooks as NitroRuntimeHooks$1 } from 'nitropack';
7
7
  import { AbstractRequest, AbstractResponse } from 'node-mock-http';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nitropack-nightly",
3
- "version": "2.11.7-20250317-115902.2cf38327",
3
+ "version": "2.11.7-20250318-111257.10c8e534",
4
4
  "description": "Build and Deploy Universal JavaScript Servers",
5
5
  "repository": "nitrojs/nitro",
6
6
  "license": "MIT",
@@ -98,16 +98,15 @@
98
98
  "nitropack": "link:."
99
99
  },
100
100
  "dependencies": {
101
- "@cloudflare/kv-asset-handler": "^0.3.4",
102
- "@netlify/functions": "3.0.0",
101
+ "@cloudflare/kv-asset-handler": "^0.4.0",
102
+ "@netlify/functions": "^3.0.2",
103
103
  "@rollup/plugin-alias": "^5.1.1",
104
104
  "@rollup/plugin-commonjs": "^28.0.3",
105
105
  "@rollup/plugin-inject": "^5.0.5",
106
106
  "@rollup/plugin-json": "^6.1.0",
107
- "@rollup/plugin-node-resolve": "^16.0.0",
107
+ "@rollup/plugin-node-resolve": "^16.0.1",
108
108
  "@rollup/plugin-replace": "^6.0.2",
109
109
  "@rollup/plugin-terser": "^0.4.4",
110
- "@types/http-proxy": "^1.17.16",
111
110
  "@vercel/nft": "^0.29.2",
112
111
  "archiver": "^7.0.1",
113
112
  "c12": "^3.0.2",
@@ -115,7 +114,7 @@
115
114
  "citty": "^0.1.6",
116
115
  "compatx": "^0.1.8",
117
116
  "confbox": "^0.2.1",
118
- "consola": "^3.4.0",
117
+ "consola": "^3.4.2",
119
118
  "cookie-es": "^2.0.0",
120
119
  "croner": "^9.0.0",
121
120
  "crossws": "^0.3.4",
@@ -123,11 +122,10 @@
123
122
  "defu": "^6.1.4",
124
123
  "destr": "^2.0.3",
125
124
  "dot-prop": "^9.0.0",
126
- "esbuild": "^0.25.0",
125
+ "esbuild": "^0.25.1",
127
126
  "escape-string-regexp": "^5.0.0",
128
127
  "etag": "^1.8.1",
129
128
  "exsolve": "^1.0.4",
130
- "fs-extra": "^11.3.0",
131
129
  "globby": "^14.1.0",
132
130
  "gzip-size": "^7.0.0",
133
131
  "h3": "npm:h3-nightly@latest",
@@ -152,7 +150,7 @@
152
150
  "pkg-types": "^2.1.0",
153
151
  "pretty-bytes": "^6.1.1",
154
152
  "radix3": "^1.1.2",
155
- "rollup": "^4.35.0",
153
+ "rollup": "^4.36.0",
156
154
  "rollup-plugin-visualizer": "^5.14.0",
157
155
  "scule": "^1.3.0",
158
156
  "semver": "^7.7.1",
@@ -164,7 +162,7 @@
164
162
  "ultrahtml": "^1.5.3",
165
163
  "uncrypto": "^0.1.3",
166
164
  "unctx": "^2.4.1",
167
- "unenv": "^2.0.0-rc.14",
165
+ "unenv": "^2.0.0-rc.15",
168
166
  "unimport": "^4.1.2",
169
167
  "unplugin-utils": "^0.2.4",
170
168
  "unstorage": "^1.15.0",
@@ -176,10 +174,10 @@
176
174
  "devDependencies": {
177
175
  "@azure/functions": "^3.5.1",
178
176
  "@azure/static-web-apps-cli": "^2.0.4",
179
- "@cloudflare/workers-types": "^4.20250303.0",
177
+ "@cloudflare/workers-types": "^4.20250317.0",
180
178
  "@deno/types": "^0.0.1",
181
179
  "@netlify/edge-functions": "^2.11.1",
182
- "@scalar/api-reference": "^1.25.130",
180
+ "@scalar/api-reference": "^1.28.5",
183
181
  "@types/archiver": "^6.0.3",
184
182
  "@types/aws-lambda": "^8.10.147",
185
183
  "@types/estree": "^1.0.6",
@@ -189,7 +187,7 @@
189
187
  "@types/semver": "^7.5.8",
190
188
  "@types/serve-static": "^1.15.7",
191
189
  "@types/xml2js": "^0.4.14",
192
- "@vitest/coverage-v8": "^3.0.8",
190
+ "@vitest/coverage-v8": "^3.0.9",
193
191
  "automd": "^0.4.0",
194
192
  "changelogen": "^0.6.1",
195
193
  "edge-runtime": "^4.0.1",
@@ -200,13 +198,13 @@
200
198
  "firebase-admin": "^12.7.0",
201
199
  "firebase-functions": "^4.9.0",
202
200
  "get-port-please": "^3.1.2",
203
- "miniflare": "^3.20250224.0",
201
+ "miniflare": "^4.20250317.0",
204
202
  "ohash-v1": "npm:ohash@^1.1.6",
205
203
  "prettier": "^3.5.3",
206
204
  "typescript": "^5.8.2",
207
205
  "unbuild": "^3.5.0",
208
- "undici": "^7.4.0",
209
- "vitest": "^3.0.8",
206
+ "undici": "^7.5.0",
207
+ "vitest": "^3.0.9",
210
208
  "xml2js": "^0.6.2"
211
209
  },
212
210
  "peerDependencies": {