@ui5/cli 3.11.0 → 3.11.2

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.
package/CHANGELOG.md CHANGED
@@ -2,7 +2,16 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
4
4
 
5
- A list of unreleased changes can be found [here](https://github.com/SAP/ui5-cli/compare/v3.11.0...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-cli/compare/v3.11.2...HEAD).
6
+
7
+ <a name="v3.11.2"></a>
8
+ ## [v3.11.2] - 2024-08-25
9
+
10
+ <a name="v3.11.1"></a>
11
+ ## [v3.11.1] - 2024-07-22
12
+ ### Dependency Updates
13
+ - Bump [@ui5](https://github.com/ui5)/builder from 3.5.0 to 3.5.1 [`00c050f`](https://github.com/SAP/ui5-cli/commit/00c050f929aa6204a5d57ead9845dd24fe5f8704)
14
+
6
15
 
7
16
  <a name="v3.11.0"></a>
8
17
  ## [v3.11.0] - 2024-06-24
@@ -1204,6 +1213,8 @@ Only Node.js v10 or higher is supported.
1204
1213
 
1205
1214
  <a name="v0.0.1"></a>
1206
1215
  ## v0.0.1 - 2018-06-06
1216
+ [v3.11.2]: https://github.com/SAP/ui5-cli/compare/v3.11.1...v3.11.2
1217
+ [v3.11.1]: https://github.com/SAP/ui5-cli/compare/v3.11.0...v3.11.1
1207
1218
  [v3.11.0]: https://github.com/SAP/ui5-cli/compare/v3.10.3...v3.11.0
1208
1219
  [v3.10.3]: https://github.com/SAP/ui5-cli/compare/v3.10.2...v3.10.3
1209
1220
  [v3.10.2]: https://github.com/SAP/ui5-cli/compare/v3.10.1...v3.10.2
@@ -1,26 +1,26 @@
1
1
  {
2
2
  "name": "@ui5/cli",
3
- "version": "3.11.0",
3
+ "version": "3.11.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@ui5/cli",
9
- "version": "3.11.0",
9
+ "version": "3.11.2",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
- "@ui5/builder": "^3.5.0",
12
+ "@ui5/builder": "^3.5.1",
13
13
  "@ui5/fs": "^3.0.5",
14
14
  "@ui5/logger": "^3.0.0",
15
15
  "@ui5/project": "^3.9.2",
16
16
  "@ui5/server": "^3.2.1",
17
17
  "chalk": "^5.3.0",
18
18
  "data-with-position": "^0.5.0",
19
- "import-local": "^3.1.0",
19
+ "import-local": "^3.2.0",
20
20
  "js-yaml": "^4.1.0",
21
21
  "open": "^9.1.0",
22
22
  "pretty-hrtime": "^1.0.3",
23
- "semver": "^7.6.2",
23
+ "semver": "^7.6.3",
24
24
  "update-notifier": "^6.0.2",
25
25
  "yargs": "^17.7.2"
26
26
  },
@@ -50,6 +50,14 @@
50
50
  "node": ">=6.9.0"
51
51
  }
52
52
  },
53
+ "node_modules/@babel/helper-string-parser": {
54
+ "version": "7.24.8",
55
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz",
56
+ "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==",
57
+ "engines": {
58
+ "node": ">=6.9.0"
59
+ }
60
+ },
53
61
  "node_modules/@babel/helper-validator-identifier": {
54
62
  "version": "7.24.7",
55
63
  "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz",
@@ -124,9 +132,12 @@
124
132
  }
125
133
  },
126
134
  "node_modules/@babel/parser": {
127
- "version": "7.24.7",
128
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz",
129
- "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==",
135
+ "version": "7.25.4",
136
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.4.tgz",
137
+ "integrity": "sha512-nq+eWrOgdtu3jG5Os4TQP3x3cLA8hR8TvJNjD8vnPa20WGycimcparWnLK4jJhElTK6SDyuJo1weMKO/5LpmLA==",
138
+ "dependencies": {
139
+ "@babel/types": "^7.25.4"
140
+ },
130
141
  "bin": {
131
142
  "parser": "bin/babel-parser.js"
132
143
  },
@@ -134,6 +145,19 @@
134
145
  "node": ">=6.0.0"
135
146
  }
136
147
  },
148
+ "node_modules/@babel/types": {
149
+ "version": "7.25.4",
150
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.4.tgz",
151
+ "integrity": "sha512-zQ1ijeeCXVEh+aNL0RlmkPkG8HUiDcU2pzQQFjtbntgAczRASFzj4H+6+bV+dy1ntKR14I/DypeuRG1uma98iQ==",
152
+ "dependencies": {
153
+ "@babel/helper-string-parser": "^7.24.8",
154
+ "@babel/helper-validator-identifier": "^7.24.7",
155
+ "to-fast-properties": "^2.0.0"
156
+ },
157
+ "engines": {
158
+ "node": ">=6.9.0"
159
+ }
160
+ },
137
161
  "node_modules/@isaacs/cliui": {
138
162
  "version": "8.0.2",
139
163
  "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
@@ -210,9 +234,9 @@
210
234
  }
211
235
  },
212
236
  "node_modules/@jridgewell/sourcemap-codec": {
213
- "version": "1.4.15",
214
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
215
- "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
237
+ "version": "1.5.0",
238
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
239
+ "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="
216
240
  },
217
241
  "node_modules/@jridgewell/trace-mapping": {
218
242
  "version": "0.3.25",
@@ -282,24 +306,21 @@
282
306
  }
283
307
  },
284
308
  "node_modules/@npmcli/agent/node_modules/lru-cache": {
285
- "version": "10.2.2",
286
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz",
287
- "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==",
288
- "engines": {
289
- "node": "14 || >=16.14"
290
- }
309
+ "version": "10.4.3",
310
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
311
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
291
312
  },
292
313
  "node_modules/@npmcli/config": {
293
- "version": "8.3.3",
294
- "resolved": "https://registry.npmjs.org/@npmcli/config/-/config-8.3.3.tgz",
295
- "integrity": "sha512-sIMKHiiYr91ALiHjhPq64F5P/SCaiSyDfpNmgYHtlIJtLY445+3+r3VoREzpdDrOwIqwQ6iEHinbTfaocL0UgA==",
314
+ "version": "8.3.4",
315
+ "resolved": "https://registry.npmjs.org/@npmcli/config/-/config-8.3.4.tgz",
316
+ "integrity": "sha512-01rtHedemDNhUXdicU7s+QYz/3JyV5Naj84cvdXGH4mgCdL+agmSYaLF4LUG4vMCLzhBO8YtS0gPpH1FGvbgAw==",
296
317
  "dependencies": {
297
318
  "@npmcli/map-workspaces": "^3.0.2",
319
+ "@npmcli/package-json": "^5.1.1",
298
320
  "ci-info": "^4.0.0",
299
321
  "ini": "^4.1.2",
300
322
  "nopt": "^7.2.1",
301
323
  "proc-log": "^4.2.0",
302
- "read-package-json-fast": "^3.0.2",
303
324
  "semver": "^7.3.5",
304
325
  "walk-up-path": "^3.0.1"
305
326
  },
@@ -318,6 +339,30 @@
318
339
  "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
319
340
  }
320
341
  },
342
+ "node_modules/@npmcli/git": {
343
+ "version": "5.0.8",
344
+ "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.8.tgz",
345
+ "integrity": "sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ==",
346
+ "dependencies": {
347
+ "@npmcli/promise-spawn": "^7.0.0",
348
+ "ini": "^4.1.3",
349
+ "lru-cache": "^10.0.1",
350
+ "npm-pick-manifest": "^9.0.0",
351
+ "proc-log": "^4.0.0",
352
+ "promise-inflight": "^1.0.1",
353
+ "promise-retry": "^2.0.1",
354
+ "semver": "^7.3.5",
355
+ "which": "^4.0.0"
356
+ },
357
+ "engines": {
358
+ "node": "^16.14.0 || >=18.0.0"
359
+ }
360
+ },
361
+ "node_modules/@npmcli/git/node_modules/lru-cache": {
362
+ "version": "10.4.3",
363
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
364
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
365
+ },
321
366
  "node_modules/@npmcli/installed-package-contents": {
322
367
  "version": "2.1.0",
323
368
  "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz",
@@ -363,6 +408,34 @@
363
408
  "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
364
409
  }
365
410
  },
411
+ "node_modules/@npmcli/package-json": {
412
+ "version": "5.2.0",
413
+ "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-5.2.0.tgz",
414
+ "integrity": "sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==",
415
+ "dependencies": {
416
+ "@npmcli/git": "^5.0.0",
417
+ "glob": "^10.2.2",
418
+ "hosted-git-info": "^7.0.0",
419
+ "json-parse-even-better-errors": "^3.0.0",
420
+ "normalize-package-data": "^6.0.0",
421
+ "proc-log": "^4.0.0",
422
+ "semver": "^7.5.3"
423
+ },
424
+ "engines": {
425
+ "node": "^16.14.0 || >=18.0.0"
426
+ }
427
+ },
428
+ "node_modules/@npmcli/promise-spawn": {
429
+ "version": "7.0.2",
430
+ "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-7.0.2.tgz",
431
+ "integrity": "sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==",
432
+ "dependencies": {
433
+ "which": "^4.0.0"
434
+ },
435
+ "engines": {
436
+ "node": "^16.14.0 || >=18.0.0"
437
+ }
438
+ },
366
439
  "node_modules/@npmcli/redact": {
367
440
  "version": "2.0.1",
368
441
  "resolved": "https://registry.npmjs.org/@npmcli/redact/-/redact-2.0.1.tgz",
@@ -405,9 +478,9 @@
405
478
  "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="
406
479
  },
407
480
  "node_modules/@pnpm/npm-conf": {
408
- "version": "2.2.2",
409
- "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz",
410
- "integrity": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==",
481
+ "version": "2.3.1",
482
+ "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz",
483
+ "integrity": "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==",
411
484
  "dependencies": {
412
485
  "@pnpm/config.env-replace": "^1.1.0",
413
486
  "@pnpm/network.ca-file": "^1.0.1",
@@ -538,9 +611,9 @@
538
611
  "integrity": "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q=="
539
612
  },
540
613
  "node_modules/@types/markdown-it": {
541
- "version": "14.1.1",
542
- "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.1.tgz",
543
- "integrity": "sha512-4NpsnpYl2Gt1ljyBGrKMxFYAYvpqbnnkgP/i/g+NLpjEUa3obn1XJCur9YbEXKDAkaXqsR1LbDnGEJ0MmKFxfg==",
614
+ "version": "14.1.2",
615
+ "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.2.tgz",
616
+ "integrity": "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==",
544
617
  "dependencies": {
545
618
  "@types/linkify-it": "^5",
546
619
  "@types/mdurl": "^2"
@@ -557,11 +630,11 @@
557
630
  "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA=="
558
631
  },
559
632
  "node_modules/@ui5/builder": {
560
- "version": "3.5.0",
561
- "resolved": "https://registry.npmjs.org/@ui5/builder/-/builder-3.5.0.tgz",
562
- "integrity": "sha512-Z7/4Nh5/Pc2vBnAbAahleXe7CEj0OVFpPnQFizp+wYE60XR7748ea2wSt7NoKB3HStDzGS8lvWnJ3SqBzAyDDA==",
633
+ "version": "3.5.1",
634
+ "resolved": "https://registry.npmjs.org/@ui5/builder/-/builder-3.5.1.tgz",
635
+ "integrity": "sha512-RpiWIarR876+CILtbzCM0hAjMA0oYkS6N/UIocnwPIOKCfZKrDJnpBoAnzgyq/fOF+jm9XXhSnJrkXnyvPPysw==",
563
636
  "dependencies": {
564
- "@jridgewell/sourcemap-codec": "^1.4.15",
637
+ "@jridgewell/sourcemap-codec": "^1.5.0",
565
638
  "@ui5/fs": "^3.0.5",
566
639
  "@ui5/logger": "^3.0.0",
567
640
  "cheerio": "1.0.0-rc.12",
@@ -572,9 +645,9 @@
572
645
  "jsdoc": "^4.0.3",
573
646
  "less-openui5": "^0.11.6",
574
647
  "pretty-data": "^0.40.0",
575
- "rimraf": "^5.0.7",
576
- "semver": "^7.6.2",
577
- "terser": "^5.31.1",
648
+ "rimraf": "^5.0.9",
649
+ "semver": "^7.6.3",
650
+ "terser": "^5.31.3",
578
651
  "workerpool": "^6.5.1",
579
652
  "xml2js": "^0.6.2"
580
653
  },
@@ -702,9 +775,9 @@
702
775
  }
703
776
  },
704
777
  "node_modules/acorn": {
705
- "version": "8.12.0",
706
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz",
707
- "integrity": "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==",
778
+ "version": "8.12.1",
779
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz",
780
+ "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==",
708
781
  "bin": {
709
782
  "acorn": "bin/acorn"
710
783
  },
@@ -1430,6 +1503,25 @@
1430
1503
  "node": ">= 8"
1431
1504
  }
1432
1505
  },
1506
+ "node_modules/cross-spawn/node_modules/isexe": {
1507
+ "version": "2.0.0",
1508
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1509
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
1510
+ },
1511
+ "node_modules/cross-spawn/node_modules/which": {
1512
+ "version": "2.0.2",
1513
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
1514
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
1515
+ "dependencies": {
1516
+ "isexe": "^2.0.0"
1517
+ },
1518
+ "bin": {
1519
+ "node-which": "bin/node-which"
1520
+ },
1521
+ "engines": {
1522
+ "node": ">= 8"
1523
+ }
1524
+ },
1433
1525
  "node_modules/crypto-random-string": {
1434
1526
  "version": "4.0.0",
1435
1527
  "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz",
@@ -1490,9 +1582,9 @@
1490
1582
  }
1491
1583
  },
1492
1584
  "node_modules/debug": {
1493
- "version": "4.3.5",
1494
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz",
1495
- "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==",
1585
+ "version": "4.3.6",
1586
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz",
1587
+ "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==",
1496
1588
  "dependencies": {
1497
1589
  "ms": "2.1.2"
1498
1590
  },
@@ -2210,9 +2302,9 @@
2210
2302
  }
2211
2303
  },
2212
2304
  "node_modules/foreground-child": {
2213
- "version": "3.2.1",
2214
- "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz",
2215
- "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==",
2305
+ "version": "3.3.0",
2306
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz",
2307
+ "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
2216
2308
  "dependencies": {
2217
2309
  "cross-spawn": "^7.0.0",
2218
2310
  "signal-exit": "^4.0.1"
@@ -2307,9 +2399,9 @@
2307
2399
  }
2308
2400
  },
2309
2401
  "node_modules/glob": {
2310
- "version": "10.4.2",
2311
- "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz",
2312
- "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==",
2402
+ "version": "10.4.5",
2403
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
2404
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
2313
2405
  "dependencies": {
2314
2406
  "foreground-child": "^3.1.0",
2315
2407
  "jackspeak": "^3.1.2",
@@ -2321,9 +2413,6 @@
2321
2413
  "bin": {
2322
2414
  "glob": "dist/esm/bin.mjs"
2323
2415
  },
2324
- "engines": {
2325
- "node": ">=16 || 14 >=14.18"
2326
- },
2327
2416
  "funding": {
2328
2417
  "url": "https://github.com/sponsors/isaacs"
2329
2418
  }
@@ -2490,6 +2579,22 @@
2490
2579
  "node": ">= 0.4"
2491
2580
  }
2492
2581
  },
2582
+ "node_modules/hosted-git-info": {
2583
+ "version": "7.0.2",
2584
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz",
2585
+ "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==",
2586
+ "dependencies": {
2587
+ "lru-cache": "^10.0.1"
2588
+ },
2589
+ "engines": {
2590
+ "node": "^16.14.0 || >=18.0.0"
2591
+ }
2592
+ },
2593
+ "node_modules/hosted-git-info/node_modules/lru-cache": {
2594
+ "version": "10.4.3",
2595
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
2596
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
2597
+ },
2493
2598
  "node_modules/hpack.js": {
2494
2599
  "version": "2.1.6",
2495
2600
  "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz",
@@ -2602,9 +2707,9 @@
2602
2707
  }
2603
2708
  },
2604
2709
  "node_modules/https-proxy-agent": {
2605
- "version": "7.0.4",
2606
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz",
2607
- "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==",
2710
+ "version": "7.0.5",
2711
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz",
2712
+ "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==",
2608
2713
  "dependencies": {
2609
2714
  "agent-base": "^7.0.2",
2610
2715
  "debug": "4"
@@ -2625,9 +2730,9 @@
2625
2730
  }
2626
2731
  },
2627
2732
  "node_modules/ignore": {
2628
- "version": "5.3.1",
2629
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz",
2630
- "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==",
2733
+ "version": "5.3.2",
2734
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
2735
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
2631
2736
  "engines": {
2632
2737
  "node": ">= 4"
2633
2738
  }
@@ -2652,9 +2757,9 @@
2652
2757
  }
2653
2758
  },
2654
2759
  "node_modules/import-local": {
2655
- "version": "3.1.0",
2656
- "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz",
2657
- "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==",
2760
+ "version": "3.2.0",
2761
+ "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz",
2762
+ "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==",
2658
2763
  "dependencies": {
2659
2764
  "pkg-dir": "^4.2.0",
2660
2765
  "resolve-cwd": "^3.0.0"
@@ -2762,9 +2867,9 @@
2762
2867
  }
2763
2868
  },
2764
2869
  "node_modules/is-core-module": {
2765
- "version": "2.14.0",
2766
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.14.0.tgz",
2767
- "integrity": "sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==",
2870
+ "version": "2.15.1",
2871
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz",
2872
+ "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==",
2768
2873
  "dependencies": {
2769
2874
  "hasown": "^2.0.2"
2770
2875
  },
@@ -2954,20 +3059,20 @@
2954
3059
  "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
2955
3060
  },
2956
3061
  "node_modules/isexe": {
2957
- "version": "2.0.0",
2958
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2959
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
3062
+ "version": "3.1.1",
3063
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz",
3064
+ "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==",
3065
+ "engines": {
3066
+ "node": ">=16"
3067
+ }
2960
3068
  },
2961
3069
  "node_modules/jackspeak": {
2962
- "version": "3.4.0",
2963
- "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz",
2964
- "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==",
3070
+ "version": "3.4.3",
3071
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
3072
+ "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
2965
3073
  "dependencies": {
2966
3074
  "@isaacs/cliui": "^8.0.2"
2967
3075
  },
2968
- "engines": {
2969
- "node": ">=14"
2970
- },
2971
3076
  "funding": {
2972
3077
  "url": "https://github.com/sponsors/isaacs"
2973
3078
  },
@@ -3209,9 +3314,9 @@
3209
3314
  }
3210
3315
  },
3211
3316
  "node_modules/make-fetch-happen/node_modules/cacache": {
3212
- "version": "18.0.3",
3213
- "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.3.tgz",
3214
- "integrity": "sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==",
3317
+ "version": "18.0.4",
3318
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz",
3319
+ "integrity": "sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==",
3215
3320
  "dependencies": {
3216
3321
  "@npmcli/fs": "^3.1.0",
3217
3322
  "fs-minipass": "^3.0.0",
@@ -3247,12 +3352,9 @@
3247
3352
  }
3248
3353
  },
3249
3354
  "node_modules/make-fetch-happen/node_modules/lru-cache": {
3250
- "version": "10.2.2",
3251
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz",
3252
- "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==",
3253
- "engines": {
3254
- "node": "14 || >=16.14"
3255
- }
3355
+ "version": "10.4.3",
3356
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
3357
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
3256
3358
  },
3257
3359
  "node_modules/make-fetch-happen/node_modules/minipass-collect": {
3258
3360
  "version": "2.0.1",
@@ -3355,9 +3457,9 @@
3355
3457
  }
3356
3458
  },
3357
3459
  "node_modules/micromatch": {
3358
- "version": "4.0.7",
3359
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz",
3360
- "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==",
3460
+ "version": "4.0.8",
3461
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
3462
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
3361
3463
  "dependencies": {
3362
3464
  "braces": "^3.0.3",
3363
3465
  "picomatch": "^2.3.1"
@@ -3378,9 +3480,9 @@
3378
3480
  }
3379
3481
  },
3380
3482
  "node_modules/mime-db": {
3381
- "version": "1.52.0",
3382
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
3383
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
3483
+ "version": "1.53.0",
3484
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz",
3485
+ "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==",
3384
3486
  "engines": {
3385
3487
  "node": ">= 0.6"
3386
3488
  }
@@ -3396,6 +3498,14 @@
3396
3498
  "node": ">= 0.6"
3397
3499
  }
3398
3500
  },
3501
+ "node_modules/mime-types/node_modules/mime-db": {
3502
+ "version": "1.52.0",
3503
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
3504
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
3505
+ "engines": {
3506
+ "node": ">= 0.6"
3507
+ }
3508
+ },
3399
3509
  "node_modules/mimic-fn": {
3400
3510
  "version": "4.0.0",
3401
3511
  "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
@@ -3424,9 +3534,9 @@
3424
3534
  "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="
3425
3535
  },
3426
3536
  "node_modules/minimatch": {
3427
- "version": "9.0.4",
3428
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
3429
- "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
3537
+ "version": "9.0.5",
3538
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
3539
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
3430
3540
  "dependencies": {
3431
3541
  "brace-expansion": "^2.0.1"
3432
3542
  },
@@ -3628,6 +3738,19 @@
3628
3738
  "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
3629
3739
  }
3630
3740
  },
3741
+ "node_modules/normalize-package-data": {
3742
+ "version": "6.0.2",
3743
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.2.tgz",
3744
+ "integrity": "sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==",
3745
+ "dependencies": {
3746
+ "hosted-git-info": "^7.0.0",
3747
+ "semver": "^7.3.5",
3748
+ "validate-npm-package-license": "^3.0.4"
3749
+ },
3750
+ "engines": {
3751
+ "node": "^16.14.0 || >=18.0.0"
3752
+ }
3753
+ },
3631
3754
  "node_modules/normalize-url": {
3632
3755
  "version": "8.0.1",
3633
3756
  "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz",
@@ -3680,6 +3803,34 @@
3680
3803
  "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
3681
3804
  }
3682
3805
  },
3806
+ "node_modules/npm-pick-manifest": {
3807
+ "version": "9.1.0",
3808
+ "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.1.0.tgz",
3809
+ "integrity": "sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==",
3810
+ "dependencies": {
3811
+ "npm-install-checks": "^6.0.0",
3812
+ "npm-normalize-package-bin": "^3.0.0",
3813
+ "npm-package-arg": "^11.0.0",
3814
+ "semver": "^7.3.5"
3815
+ },
3816
+ "engines": {
3817
+ "node": "^16.14.0 || >=18.0.0"
3818
+ }
3819
+ },
3820
+ "node_modules/npm-pick-manifest/node_modules/npm-package-arg": {
3821
+ "version": "11.0.3",
3822
+ "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.3.tgz",
3823
+ "integrity": "sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==",
3824
+ "dependencies": {
3825
+ "hosted-git-info": "^7.0.0",
3826
+ "proc-log": "^4.0.0",
3827
+ "semver": "^7.3.5",
3828
+ "validate-npm-package-name": "^5.0.0"
3829
+ },
3830
+ "engines": {
3831
+ "node": "^16.14.0 || >=18.0.0"
3832
+ }
3833
+ },
3683
3834
  "node_modules/npm-run-path": {
3684
3835
  "version": "5.3.0",
3685
3836
  "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz",
@@ -3891,52 +4042,6 @@
3891
4042
  "node": "^16.14.0 || >=18.0.0"
3892
4043
  }
3893
4044
  },
3894
- "node_modules/pacote/node_modules/@npmcli/git": {
3895
- "version": "5.0.7",
3896
- "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.7.tgz",
3897
- "integrity": "sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==",
3898
- "dependencies": {
3899
- "@npmcli/promise-spawn": "^7.0.0",
3900
- "lru-cache": "^10.0.1",
3901
- "npm-pick-manifest": "^9.0.0",
3902
- "proc-log": "^4.0.0",
3903
- "promise-inflight": "^1.0.1",
3904
- "promise-retry": "^2.0.1",
3905
- "semver": "^7.3.5",
3906
- "which": "^4.0.0"
3907
- },
3908
- "engines": {
3909
- "node": "^16.14.0 || >=18.0.0"
3910
- }
3911
- },
3912
- "node_modules/pacote/node_modules/@npmcli/package-json": {
3913
- "version": "5.2.0",
3914
- "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-5.2.0.tgz",
3915
- "integrity": "sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==",
3916
- "dependencies": {
3917
- "@npmcli/git": "^5.0.0",
3918
- "glob": "^10.2.2",
3919
- "hosted-git-info": "^7.0.0",
3920
- "json-parse-even-better-errors": "^3.0.0",
3921
- "normalize-package-data": "^6.0.0",
3922
- "proc-log": "^4.0.0",
3923
- "semver": "^7.5.3"
3924
- },
3925
- "engines": {
3926
- "node": "^16.14.0 || >=18.0.0"
3927
- }
3928
- },
3929
- "node_modules/pacote/node_modules/@npmcli/promise-spawn": {
3930
- "version": "7.0.2",
3931
- "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-7.0.2.tgz",
3932
- "integrity": "sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==",
3933
- "dependencies": {
3934
- "which": "^4.0.0"
3935
- },
3936
- "engines": {
3937
- "node": "^16.14.0 || >=18.0.0"
3938
- }
3939
- },
3940
4045
  "node_modules/pacote/node_modules/@npmcli/run-script": {
3941
4046
  "version": "8.1.0",
3942
4047
  "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-8.1.0.tgz",
@@ -3966,9 +4071,9 @@
3966
4071
  }
3967
4072
  },
3968
4073
  "node_modules/pacote/node_modules/cacache": {
3969
- "version": "18.0.3",
3970
- "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.3.tgz",
3971
- "integrity": "sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==",
4074
+ "version": "18.0.4",
4075
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz",
4076
+ "integrity": "sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==",
3972
4077
  "dependencies": {
3973
4078
  "@npmcli/fs": "^3.1.0",
3974
4079
  "fs-minipass": "^3.0.0",
@@ -3995,17 +4100,6 @@
3995
4100
  "node": ">=6"
3996
4101
  }
3997
4102
  },
3998
- "node_modules/pacote/node_modules/hosted-git-info": {
3999
- "version": "7.0.2",
4000
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz",
4001
- "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==",
4002
- "dependencies": {
4003
- "lru-cache": "^10.0.1"
4004
- },
4005
- "engines": {
4006
- "node": "^16.14.0 || >=18.0.0"
4007
- }
4008
- },
4009
4103
  "node_modules/pacote/node_modules/indent-string": {
4010
4104
  "version": "4.0.0",
4011
4105
  "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
@@ -4014,21 +4108,10 @@
4014
4108
  "node": ">=8"
4015
4109
  }
4016
4110
  },
4017
- "node_modules/pacote/node_modules/isexe": {
4018
- "version": "3.1.1",
4019
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz",
4020
- "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==",
4021
- "engines": {
4022
- "node": ">=16"
4023
- }
4024
- },
4025
4111
  "node_modules/pacote/node_modules/lru-cache": {
4026
- "version": "10.2.2",
4027
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz",
4028
- "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==",
4029
- "engines": {
4030
- "node": "14 || >=16.14"
4031
- }
4112
+ "version": "10.4.3",
4113
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
4114
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
4032
4115
  },
4033
4116
  "node_modules/pacote/node_modules/minipass-collect": {
4034
4117
  "version": "2.0.1",
@@ -4042,9 +4125,9 @@
4042
4125
  }
4043
4126
  },
4044
4127
  "node_modules/pacote/node_modules/node-gyp": {
4045
- "version": "10.1.0",
4046
- "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.1.0.tgz",
4047
- "integrity": "sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==",
4128
+ "version": "10.2.0",
4129
+ "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.2.0.tgz",
4130
+ "integrity": "sha512-sp3FonBAaFe4aYTcFdZUn2NYkbP7xroPGYvQmP4Nl5PxamznItBnNCgjrVTKrEfQynInMsJvZrdmqUnysCJ8rw==",
4048
4131
  "dependencies": {
4049
4132
  "env-paths": "^2.2.0",
4050
4133
  "exponential-backoff": "^3.1.1",
@@ -4052,9 +4135,9 @@
4052
4135
  "graceful-fs": "^4.2.6",
4053
4136
  "make-fetch-happen": "^13.0.0",
4054
4137
  "nopt": "^7.0.0",
4055
- "proc-log": "^3.0.0",
4138
+ "proc-log": "^4.1.0",
4056
4139
  "semver": "^7.3.5",
4057
- "tar": "^6.1.2",
4140
+ "tar": "^6.2.1",
4058
4141
  "which": "^4.0.0"
4059
4142
  },
4060
4143
  "bin": {
@@ -4064,32 +4147,10 @@
4064
4147
  "node": "^16.14.0 || >=18.0.0"
4065
4148
  }
4066
4149
  },
4067
- "node_modules/pacote/node_modules/node-gyp/node_modules/proc-log": {
4068
- "version": "3.0.0",
4069
- "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz",
4070
- "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==",
4071
- "engines": {
4072
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
4073
- }
4074
- },
4075
- "node_modules/pacote/node_modules/normalize-package-data": {
4076
- "version": "6.0.1",
4077
- "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.1.tgz",
4078
- "integrity": "sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==",
4079
- "dependencies": {
4080
- "hosted-git-info": "^7.0.0",
4081
- "is-core-module": "^2.8.1",
4082
- "semver": "^7.3.5",
4083
- "validate-npm-package-license": "^3.0.4"
4084
- },
4085
- "engines": {
4086
- "node": "^16.14.0 || >=18.0.0"
4087
- }
4088
- },
4089
4150
  "node_modules/pacote/node_modules/npm-package-arg": {
4090
- "version": "11.0.2",
4091
- "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.2.tgz",
4092
- "integrity": "sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==",
4151
+ "version": "11.0.3",
4152
+ "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.3.tgz",
4153
+ "integrity": "sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==",
4093
4154
  "dependencies": {
4094
4155
  "hosted-git-info": "^7.0.0",
4095
4156
  "proc-log": "^4.0.0",
@@ -4100,20 +4161,6 @@
4100
4161
  "node": "^16.14.0 || >=18.0.0"
4101
4162
  }
4102
4163
  },
4103
- "node_modules/pacote/node_modules/npm-pick-manifest": {
4104
- "version": "9.0.1",
4105
- "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.1.tgz",
4106
- "integrity": "sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==",
4107
- "dependencies": {
4108
- "npm-install-checks": "^6.0.0",
4109
- "npm-normalize-package-bin": "^3.0.0",
4110
- "npm-package-arg": "^11.0.0",
4111
- "semver": "^7.3.5"
4112
- },
4113
- "engines": {
4114
- "node": "^16.14.0 || >=18.0.0"
4115
- }
4116
- },
4117
4164
  "node_modules/pacote/node_modules/npm-registry-fetch": {
4118
4165
  "version": "17.1.0",
4119
4166
  "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-17.1.0.tgz",
@@ -4146,20 +4193,6 @@
4146
4193
  "url": "https://github.com/sponsors/sindresorhus"
4147
4194
  }
4148
4195
  },
4149
- "node_modules/pacote/node_modules/which": {
4150
- "version": "4.0.0",
4151
- "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz",
4152
- "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==",
4153
- "dependencies": {
4154
- "isexe": "^3.1.1"
4155
- },
4156
- "bin": {
4157
- "node-which": "bin/which.js"
4158
- },
4159
- "engines": {
4160
- "node": "^16.13.0 || >=18.0.0"
4161
- }
4162
- },
4163
4196
  "node_modules/parse5": {
4164
4197
  "version": "7.1.2",
4165
4198
  "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz",
@@ -4236,12 +4269,9 @@
4236
4269
  }
4237
4270
  },
4238
4271
  "node_modules/path-scurry/node_modules/lru-cache": {
4239
- "version": "10.2.2",
4240
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz",
4241
- "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==",
4242
- "engines": {
4243
- "node": "14 || >=16.14"
4244
- }
4272
+ "version": "10.4.3",
4273
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
4274
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
4245
4275
  },
4246
4276
  "node_modules/path-to-regexp": {
4247
4277
  "version": "0.1.7",
@@ -4582,9 +4612,9 @@
4582
4612
  }
4583
4613
  },
4584
4614
  "node_modules/read-pkg-up/node_modules/type-fest": {
4585
- "version": "4.20.1",
4586
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.20.1.tgz",
4587
- "integrity": "sha512-R6wDsVsoS9xYOpy8vgeBlqpdOyzJ12HNfQhC/aAKWM3YoCV9TtunJzh/QpkMgeDhkoynDcw5f1y+qF9yc/HHyg==",
4615
+ "version": "4.25.0",
4616
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.25.0.tgz",
4617
+ "integrity": "sha512-bRkIGlXsnGBRBQRAY56UXBm//9qH4bmJfFvq83gSz41N282df+fjy8ofcEgc1sM8geNt5cl6mC2g9Fht1cs8Aw==",
4588
4618
  "engines": {
4589
4619
  "node": ">=16"
4590
4620
  },
@@ -4593,9 +4623,9 @@
4593
4623
  }
4594
4624
  },
4595
4625
  "node_modules/read-pkg-up/node_modules/yocto-queue": {
4596
- "version": "1.0.0",
4597
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz",
4598
- "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==",
4626
+ "version": "1.1.1",
4627
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz",
4628
+ "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==",
4599
4629
  "engines": {
4600
4630
  "node": ">=12.20"
4601
4631
  },
@@ -4603,17 +4633,6 @@
4603
4633
  "url": "https://github.com/sponsors/sindresorhus"
4604
4634
  }
4605
4635
  },
4606
- "node_modules/read-pkg/node_modules/hosted-git-info": {
4607
- "version": "7.0.2",
4608
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz",
4609
- "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==",
4610
- "dependencies": {
4611
- "lru-cache": "^10.0.1"
4612
- },
4613
- "engines": {
4614
- "node": "^16.14.0 || >=18.0.0"
4615
- }
4616
- },
4617
4636
  "node_modules/read-pkg/node_modules/lines-and-columns": {
4618
4637
  "version": "2.0.4",
4619
4638
  "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.4.tgz",
@@ -4622,28 +4641,6 @@
4622
4641
  "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
4623
4642
  }
4624
4643
  },
4625
- "node_modules/read-pkg/node_modules/lru-cache": {
4626
- "version": "10.2.2",
4627
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz",
4628
- "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==",
4629
- "engines": {
4630
- "node": "14 || >=16.14"
4631
- }
4632
- },
4633
- "node_modules/read-pkg/node_modules/normalize-package-data": {
4634
- "version": "6.0.1",
4635
- "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.1.tgz",
4636
- "integrity": "sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==",
4637
- "dependencies": {
4638
- "hosted-git-info": "^7.0.0",
4639
- "is-core-module": "^2.8.1",
4640
- "semver": "^7.3.5",
4641
- "validate-npm-package-license": "^3.0.4"
4642
- },
4643
- "engines": {
4644
- "node": "^16.14.0 || >=18.0.0"
4645
- }
4646
- },
4647
4644
  "node_modules/read-pkg/node_modules/parse-json": {
4648
4645
  "version": "7.1.1",
4649
4646
  "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-7.1.1.tgz",
@@ -4674,9 +4671,9 @@
4674
4671
  }
4675
4672
  },
4676
4673
  "node_modules/read-pkg/node_modules/type-fest": {
4677
- "version": "4.20.1",
4678
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.20.1.tgz",
4679
- "integrity": "sha512-R6wDsVsoS9xYOpy8vgeBlqpdOyzJ12HNfQhC/aAKWM3YoCV9TtunJzh/QpkMgeDhkoynDcw5f1y+qF9yc/HHyg==",
4674
+ "version": "4.25.0",
4675
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.25.0.tgz",
4676
+ "integrity": "sha512-bRkIGlXsnGBRBQRAY56UXBm//9qH4bmJfFvq83gSz41N282df+fjy8ofcEgc1sM8geNt5cl6mC2g9Fht1cs8Aw==",
4680
4677
  "engines": {
4681
4678
  "node": ">=16"
4682
4679
  },
@@ -4850,18 +4847,15 @@
4850
4847
  }
4851
4848
  },
4852
4849
  "node_modules/rimraf": {
4853
- "version": "5.0.7",
4854
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.7.tgz",
4855
- "integrity": "sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==",
4850
+ "version": "5.0.10",
4851
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz",
4852
+ "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==",
4856
4853
  "dependencies": {
4857
4854
  "glob": "^10.3.7"
4858
4855
  },
4859
4856
  "bin": {
4860
4857
  "rimraf": "dist/esm/bin.mjs"
4861
4858
  },
4862
- "engines": {
4863
- "node": ">=14.18"
4864
- },
4865
4859
  "funding": {
4866
4860
  "url": "https://github.com/sponsors/isaacs"
4867
4861
  }
@@ -5056,9 +5050,9 @@
5056
5050
  "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg=="
5057
5051
  },
5058
5052
  "node_modules/semver": {
5059
- "version": "7.6.2",
5060
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz",
5061
- "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==",
5053
+ "version": "7.6.3",
5054
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
5055
+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
5062
5056
  "bin": {
5063
5057
  "semver": "bin/semver.js"
5064
5058
  },
@@ -5248,13 +5242,13 @@
5248
5242
  }
5249
5243
  },
5250
5244
  "node_modules/socks-proxy-agent": {
5251
- "version": "8.0.3",
5252
- "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.3.tgz",
5253
- "integrity": "sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==",
5245
+ "version": "8.0.4",
5246
+ "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz",
5247
+ "integrity": "sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==",
5254
5248
  "dependencies": {
5255
5249
  "agent-base": "^7.1.1",
5256
5250
  "debug": "^4.3.4",
5257
- "socks": "^2.7.1"
5251
+ "socks": "^2.8.3"
5258
5252
  },
5259
5253
  "engines": {
5260
5254
  "node": ">= 14"
@@ -5301,9 +5295,9 @@
5301
5295
  "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w=="
5302
5296
  },
5303
5297
  "node_modules/spdx-license-ids": {
5304
- "version": "3.0.18",
5305
- "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz",
5306
- "integrity": "sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ=="
5298
+ "version": "3.0.20",
5299
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz",
5300
+ "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw=="
5307
5301
  },
5308
5302
  "node_modules/spdy": {
5309
5303
  "version": "4.0.2",
@@ -5595,9 +5589,9 @@
5595
5589
  "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
5596
5590
  },
5597
5591
  "node_modules/terser": {
5598
- "version": "5.31.1",
5599
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.1.tgz",
5600
- "integrity": "sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==",
5592
+ "version": "5.31.6",
5593
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.6.tgz",
5594
+ "integrity": "sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==",
5601
5595
  "dependencies": {
5602
5596
  "@jridgewell/source-map": "^0.3.3",
5603
5597
  "acorn": "^8.8.2",
@@ -5622,6 +5616,14 @@
5622
5616
  "url": "https://github.com/sponsors/sindresorhus"
5623
5617
  }
5624
5618
  },
5619
+ "node_modules/to-fast-properties": {
5620
+ "version": "2.0.0",
5621
+ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
5622
+ "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==",
5623
+ "engines": {
5624
+ "node": ">=4"
5625
+ }
5626
+ },
5625
5627
  "node_modules/to-regex-range": {
5626
5628
  "version": "5.0.1",
5627
5629
  "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
@@ -5680,9 +5682,9 @@
5680
5682
  "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A=="
5681
5683
  },
5682
5684
  "node_modules/underscore": {
5683
- "version": "1.13.6",
5684
- "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz",
5685
- "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A=="
5685
+ "version": "1.13.7",
5686
+ "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.7.tgz",
5687
+ "integrity": "sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g=="
5686
5688
  },
5687
5689
  "node_modules/unique-filename": {
5688
5690
  "version": "3.0.0",
@@ -5832,17 +5834,17 @@
5832
5834
  }
5833
5835
  },
5834
5836
  "node_modules/which": {
5835
- "version": "2.0.2",
5836
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
5837
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
5837
+ "version": "4.0.0",
5838
+ "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz",
5839
+ "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==",
5838
5840
  "dependencies": {
5839
- "isexe": "^2.0.0"
5841
+ "isexe": "^3.1.1"
5840
5842
  },
5841
5843
  "bin": {
5842
- "node-which": "bin/node-which"
5844
+ "node-which": "bin/which.js"
5843
5845
  },
5844
5846
  "engines": {
5845
- "node": ">= 8"
5847
+ "node": "^16.13.0 || >=18.0.0"
5846
5848
  }
5847
5849
  },
5848
5850
  "node_modules/widest-line": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/cli",
3
- "version": "3.11.0",
3
+ "version": "3.11.2",
4
4
  "description": "UI5 Tooling - CLI",
5
5
  "author": {
6
6
  "name": "SAP SE",
@@ -117,18 +117,18 @@
117
117
  "url": "git@github.com:SAP/ui5-cli.git"
118
118
  },
119
119
  "dependencies": {
120
- "@ui5/builder": "^3.5.0",
120
+ "@ui5/builder": "^3.5.1",
121
121
  "@ui5/fs": "^3.0.5",
122
122
  "@ui5/logger": "^3.0.0",
123
123
  "@ui5/project": "^3.9.2",
124
124
  "@ui5/server": "^3.2.1",
125
125
  "chalk": "^5.3.0",
126
126
  "data-with-position": "^0.5.0",
127
- "import-local": "^3.1.0",
127
+ "import-local": "^3.2.0",
128
128
  "js-yaml": "^4.1.0",
129
129
  "open": "^9.1.0",
130
130
  "pretty-hrtime": "^1.0.3",
131
- "semver": "^7.6.2",
131
+ "semver": "^7.6.3",
132
132
  "update-notifier": "^6.0.2",
133
133
  "yargs": "^17.7.2"
134
134
  },
@@ -143,13 +143,13 @@
143
143
  "eslint-config-google": "^0.14.0",
144
144
  "eslint-plugin-ava": "^14.0.0",
145
145
  "eslint-plugin-jsdoc": "^46.10.1",
146
- "esmock": "^2.6.6",
146
+ "esmock": "^2.6.7",
147
147
  "execa": "^8.0.1",
148
148
  "jsdoc": "^4.0.3",
149
149
  "licensee": "^10.0.0",
150
150
  "nyc": "^15.1.0",
151
151
  "open-cli": "^7.2.0",
152
- "rimraf": "^5.0.7",
152
+ "rimraf": "^5.0.10",
153
153
  "sinon": "^16.1.3",
154
154
  "strip-ansi": "^7.1.0",
155
155
  "tap-xunit": "^2.4.1",