Comparing version 0.7.4 to 0.7.5
@@ -13,4 +13,8 @@ import http from 'http'; | ||
declare type CompatibilityEvent = H3Event | IncomingMessage; | ||
declare type _JSONValue<T = string | number | boolean> = T | T[] | Record<string, T>; | ||
declare type JSONValue = _JSONValue<_JSONValue>; | ||
interface JSONObject { | ||
[x: string]: JSONValue; | ||
} | ||
interface JSONArray extends Array<JSONValue> { | ||
} | ||
declare type JSONValue = string | number | boolean | JSONObject | JSONArray; | ||
declare type _H3Response = void | JSONValue | Buffer; | ||
@@ -17,0 +21,0 @@ declare type H3Response = _H3Response | Promise<_H3Response>; |
{ | ||
"name": "h3", | ||
"version": "0.7.4", | ||
"version": "0.7.5", | ||
"description": "Tiny JavaScript Server", | ||
@@ -38,3 +38,3 @@ "repository": "unjs/h3", | ||
"express": "latest", | ||
"get-port": "^5.1.1", | ||
"get-port": "^6.1.2", | ||
"jiti": "latest", | ||
@@ -48,3 +48,3 @@ "listhen": "latest", | ||
}, | ||
"packageManager": "pnpm@6.32.7", | ||
"packageManager": "pnpm@6.32.11", | ||
"scripts": { | ||
@@ -51,0 +51,0 @@ "build": "unbuild", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
57112
1287