@apidevtools/json-schema-ref-parser 11.7.1 → 11.7.3

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.
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  var __importDefault = (this && this.__importDefault) || function (mod) {
26
36
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
37
  };
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  var __importDefault = (this && this.__importDefault) || function (mod) {
26
36
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
37
  };
@@ -140,7 +150,7 @@ function dereference$Ref($ref, path, pathFromRoot, parents, processedObjects, de
140
150
  const shouldResolveOnCwd = isExternalRef && options?.dereference?.externalReferenceResolution === "root";
141
151
  const $refPath = url.resolve(shouldResolveOnCwd ? url.cwd() : path, $ref.$ref);
142
152
  const cache = dereferencedCache.get($refPath);
143
- if (cache) {
153
+ if (cache && !cache.circular) {
144
154
  const refKeys = Object.keys($ref);
145
155
  if (refKeys.length > 1) {
146
156
  const extraKeys = {};
package/dist/lib/index.js CHANGED
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  var __importDefault = (this && this.__importDefault) || function (mod) {
26
36
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
37
  };
@@ -374,10 +374,10 @@ export declare const getNewOptions: <S extends object = JSONSchema, O extends Pa
374
374
  } | undefined;
375
375
  continueOnError?: boolean | undefined;
376
376
  dereference?: {
377
- circular?: (boolean | "ignore") | undefined;
377
+ circular?: boolean | "ignore" | undefined;
378
378
  excludedPathMatcher?: {} | undefined;
379
379
  onDereference?: {} | undefined;
380
- externalReferenceResolution?: ("relative" | "root") | undefined;
380
+ externalReferenceResolution?: "relative" | "root" | undefined;
381
381
  } | undefined;
382
382
  mutateInputSchema?: boolean | undefined;
383
383
  timeoutMs?: number | undefined;
@@ -4,5 +4,5 @@ import type { JSONSchema } from "./types/index.js";
4
4
  /**
5
5
  * Reads and parses the specified file path or URL.
6
6
  */
7
- declare function parse<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(path: string, $refs: $Refs<S, O>, options: O): Promise<string | Buffer | S | undefined>;
7
+ declare function parse<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(path: string, $refs: $Refs<S, O>, options: O): Promise<string | Buffer<ArrayBufferLike> | S | undefined>;
8
8
  export default parse;
package/dist/lib/parse.js CHANGED
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  Object.defineProperty(exports, "__esModule", { value: true });
26
36
  const ono_1 = require("@jsdevtools/ono");
27
37
  const url = __importStar(require("./util/url.js"));
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  var __importDefault = (this && this.__importDefault) || function (mod) {
26
36
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
37
  };
@@ -178,7 +188,7 @@ class Pointer {
178
188
  split[i] = safeDecodeURIComponent(split[i].replace(escapedSlash, "/").replace(escapedTilde, "~"));
179
189
  }
180
190
  if (split[0] !== "") {
181
- throw new errors_js_1.InvalidPointerError(split, originalPath === undefined ? path : originalPath);
191
+ throw new errors_js_1.InvalidPointerError(pointer, originalPath === undefined ? path : originalPath);
182
192
  }
183
193
  return split.slice(1);
184
194
  }
package/dist/lib/refs.js CHANGED
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  var __importDefault = (this && this.__importDefault) || function (mod) {
26
36
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
37
  };
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  var __importDefault = (this && this.__importDefault) || function (mod) {
26
36
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
37
  };
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  var __importDefault = (this && this.__importDefault) || function (mod) {
26
36
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
37
  };
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  Object.defineProperty(exports, "__esModule", { value: true });
26
36
  const ono_1 = require("@jsdevtools/ono");
27
37
  const url = __importStar(require("../util/url.js"));
@@ -41,7 +41,7 @@ export declare class UnmatchedResolverError extends JSONParserError {
41
41
  export declare class MissingPointerError extends JSONParserError {
42
42
  code: JSONParserErrorType;
43
43
  name: string;
44
- constructor(token: any, path: any);
44
+ constructor(token: string, path: string);
45
45
  }
46
46
  export declare class TimeoutError extends JSONParserError {
47
47
  code: JSONParserErrorType;
@@ -51,7 +51,7 @@ export declare class TimeoutError extends JSONParserError {
51
51
  export declare class InvalidPointerError extends JSONParserError {
52
52
  code: JSONParserErrorType;
53
53
  name: string;
54
- constructor(pointer: any, path: any);
54
+ constructor(pointer: string, path: string);
55
55
  }
56
56
  export declare function isHandledError(err: any): err is JSONParserError;
57
57
  export declare function normalizeError(err: any): any;
@@ -79,8 +79,8 @@ class UnmatchedResolverError extends JSONParserError {
79
79
  exports.UnmatchedResolverError = UnmatchedResolverError;
80
80
  class MissingPointerError extends JSONParserError {
81
81
  constructor(token, path) {
82
- super(`Token "${token}" does not exist.`, (0, url_js_1.stripHash)(path));
83
- this.code = "EUNMATCHEDRESOLVER";
82
+ super(`Missing $ref pointer "${(0, url_js_1.getHash)(path)}". Token "${token}" does not exist.`, (0, url_js_1.stripHash)(path));
83
+ this.code = "EMISSINGPOINTER";
84
84
  this.name = "MissingPointerError";
85
85
  }
86
86
  }
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  var __importDefault = (this && this.__importDefault) || function (mod) {
26
36
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
37
  };
@@ -190,7 +190,7 @@ function dereference$Ref<S extends object = JSONSchema, O extends ParserOptions<
190
190
  const $refPath = url.resolve(shouldResolveOnCwd ? url.cwd() : path, $ref.$ref);
191
191
 
192
192
  const cache = dereferencedCache.get($refPath);
193
- if (cache) {
193
+ if (cache && !cache.circular) {
194
194
  const refKeys = Object.keys($ref);
195
195
  if (refKeys.length > 1) {
196
196
  const extraKeys = {};
package/lib/pointer.ts CHANGED
@@ -210,7 +210,7 @@ class Pointer<S extends object = JSONSchema, O extends ParserOptions<S> = Parser
210
210
  }
211
211
 
212
212
  if (split[0] !== "") {
213
- throw new InvalidPointerError(split, originalPath === undefined ? path : originalPath);
213
+ throw new InvalidPointerError(pointer, originalPath === undefined ? path : originalPath);
214
214
  }
215
215
 
216
216
  return split.slice(1);
@@ -1,5 +1,5 @@
1
1
  import { Ono } from "@jsdevtools/ono";
2
- import { stripHash, toFileSystemPath } from "./url.js";
2
+ import { getHash, stripHash, toFileSystemPath } from "./url.js";
3
3
  import type $RefParser from "../index.js";
4
4
  import type { ParserOptions } from "../index.js";
5
5
  import type { JSONSchema } from "../index.js";
@@ -121,10 +121,10 @@ export class UnmatchedResolverError extends JSONParserError {
121
121
  }
122
122
 
123
123
  export class MissingPointerError extends JSONParserError {
124
- code = "EUNMATCHEDRESOLVER" as JSONParserErrorType;
124
+ code = "EMISSINGPOINTER" as JSONParserErrorType;
125
125
  name = "MissingPointerError";
126
- constructor(token: any, path: any) {
127
- super(`Token "${token}" does not exist.`, stripHash(path));
126
+ constructor(token: string, path: string) {
127
+ super(`Missing $ref pointer "${getHash(path)}". Token "${token}" does not exist.`, stripHash(path));
128
128
  }
129
129
  }
130
130
 
@@ -139,7 +139,7 @@ export class TimeoutError extends JSONParserError {
139
139
  export class InvalidPointerError extends JSONParserError {
140
140
  code = "EUNMATCHEDRESOLVER" as JSONParserErrorType;
141
141
  name = "InvalidPointerError";
142
- constructor(pointer: any, path: any) {
142
+ constructor(pointer: string, path: string) {
143
143
  super(`Invalid $ref pointer "${pointer}". Pointers must begin with "#/"`, stripHash(path));
144
144
  }
145
145
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apidevtools/json-schema-ref-parser",
3
- "version": "11.7.1",
3
+ "version": "11.7.3",
4
4
  "description": "Parse, Resolve, and Dereference JSON Schema $ref pointers",
5
5
  "keywords": [
6
6
  "json",
@@ -67,29 +67,29 @@
67
67
  "test:watch": "vitest -w"
68
68
  },
69
69
  "devDependencies": {
70
- "@eslint/compat": "^1.1.1",
71
- "@eslint/js": "^9.8.0",
72
- "@types/eslint": "9.6.0",
70
+ "@eslint/compat": "^1.2.4",
71
+ "@eslint/js": "^9.16.0",
72
+ "@types/eslint": "9.6.1",
73
73
  "@types/js-yaml": "^4.0.9",
74
74
  "@types/node": "^22",
75
- "@typescript-eslint/eslint-plugin": "^8.0.0",
76
- "@typescript-eslint/parser": "^8.0.0",
77
- "@vitest/coverage-v8": "^2.0.5",
75
+ "@typescript-eslint/eslint-plugin": "^8.17.0",
76
+ "@typescript-eslint/parser": "^8.17.0",
77
+ "@vitest/coverage-v8": "^2.1.8",
78
78
  "cross-env": "^7.0.3",
79
- "eslint": "^9.8.0",
79
+ "eslint": "^9.16.0",
80
80
  "eslint-config-prettier": "^9.1.0",
81
81
  "eslint-config-standard": "^17.1.0",
82
- "eslint-plugin-import": "^2.29.1",
82
+ "eslint-plugin-import": "^2.31.0",
83
83
  "eslint-plugin-prettier": "^5.2.1",
84
- "eslint-plugin-promise": "^7.0.0",
85
- "eslint-plugin-unused-imports": "^4.0.1",
86
- "globals": "^15.9.0",
87
- "jsdom": "^24.1.1",
88
- "prettier": "^3.3.3",
84
+ "eslint-plugin-promise": "^7.2.1",
85
+ "eslint-plugin-unused-imports": "^4.1.4",
86
+ "globals": "^15.13.0",
87
+ "jsdom": "^25.0.1",
88
+ "prettier": "^3.4.2",
89
89
  "rimraf": "^6.0.1",
90
- "typescript": "^5.5.4",
91
- "typescript-eslint": "^8.0.0",
92
- "vitest": "^2.0.5"
90
+ "typescript": "^5.7.2",
91
+ "typescript-eslint": "^8.17.0",
92
+ "vitest": "^2.1.8"
93
93
  },
94
94
  "dependencies": {
95
95
  "@jsdevtools/ono": "^7.1.3",