@ui5/cli 3.7.1 → 3.7.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,19 @@
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.7.1...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-cli/compare/v3.7.2...HEAD).
6
+
7
+ <a name="v3.7.2"></a>
8
+ ## [v3.7.2] - 2023-11-20
9
+ ### Bug Fixes
10
+ - **ui5 init:** Improve error message ([#661](https://github.com/SAP/ui5-cli/issues/661)) [`07e68b0`](https://github.com/SAP/ui5-cli/commit/07e68b00ff5cd2e80c0b1b52fa644e27752ccecb)
11
+ - **ui5.yaml:** Use double quotes for string values ([#660](https://github.com/SAP/ui5-cli/issues/660)) [`c30e371`](https://github.com/SAP/ui5-cli/commit/c30e371be147d859539afbe9a44cc03202a8c870)
12
+
13
+ ### Dependency Updates
14
+ - Bump [@ui5](https://github.com/ui5)/project from 3.7.3 to 3.8.0 [`2566170`](https://github.com/SAP/ui5-cli/commit/25661708c2b84f9c21d326c2d4ccb84464d7d2b5)
15
+ - Bump [@ui5](https://github.com/ui5)/server from 3.1.3 to 3.1.4 [`2c90ff5`](https://github.com/SAP/ui5-cli/commit/2c90ff542dd5862603ebd0cc927ca71cd243cb8c)
16
+ - Bump [@ui5](https://github.com/ui5)/builder from 3.1.0 to 3.1.1 [`7b97356`](https://github.com/SAP/ui5-cli/commit/7b973566aa647ba1e2b271fa1c77b1bd7025c9ca)
17
+
6
18
 
7
19
  <a name="v3.7.1"></a>
8
20
  ## [v3.7.1] - 2023-10-20
@@ -36,11 +48,16 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-cli/
36
48
 
37
49
  <a name="v3.5.0"></a>
38
50
  ## [v3.5.0] - 2023-08-22
51
+ ### Dependency Updates
52
+ - Bump [@ui5](https://github.com/ui5)/project from 3.5.1 to 3.6.0 [`e5627d8`](https://github.com/SAP/ui5-cli/commit/e5627d81c9e66668bb99d128a304d403df9fd224)
53
+
54
+
55
+ <a name="v3.4.1"></a>
56
+ ## [v3.4.1] - 2023-10-24
39
57
  ### Bug Fixes
40
58
  - **ui5 config:** Allow usage of all Configuration options ([#645](https://github.com/SAP/ui5-cli/issues/645)) [`78e032e`](https://github.com/SAP/ui5-cli/commit/78e032ebd7d71ee59e6f6fd4f21dc0564e108d44)
41
59
 
42
60
  ### Dependency Updates
43
- - Bump [@ui5](https://github.com/ui5)/project from 3.5.1 to 3.6.0 [`e5627d8`](https://github.com/SAP/ui5-cli/commit/e5627d81c9e66668bb99d128a304d403df9fd224)
44
61
  - Bump [@ui5](https://github.com/ui5)/project from 3.5.0 to 3.5.1 [`4ca30c3`](https://github.com/SAP/ui5-cli/commit/4ca30c3dc4066919f68af47307b4dc8b0bd898f7)
45
62
 
46
63
 
@@ -1129,11 +1146,13 @@ Only Node.js v10 or higher is supported.
1129
1146
 
1130
1147
  <a name="v0.0.1"></a>
1131
1148
  ## v0.0.1 - 2018-06-06
1149
+ [v3.7.2]: https://github.com/SAP/ui5-cli/compare/v3.7.1...v3.7.2
1132
1150
  [v3.7.1]: https://github.com/SAP/ui5-cli/compare/v3.7.0...v3.7.1
1133
1151
  [v3.7.0]: https://github.com/SAP/ui5-cli/compare/v3.6.1...v3.7.0
1134
1152
  [v3.6.1]: https://github.com/SAP/ui5-cli/compare/v3.6.0...v3.6.1
1135
1153
  [v3.6.0]: https://github.com/SAP/ui5-cli/compare/v3.5.0...v3.6.0
1136
- [v3.5.0]: https://github.com/SAP/ui5-cli/compare/v3.4.0...v3.5.0
1154
+ [v3.5.0]: https://github.com/SAP/ui5-cli/compare/v3.4.1...v3.5.0
1155
+ [v3.4.1]: https://github.com/SAP/ui5-cli/compare/v3.4.0...v3.4.1
1137
1156
  [v3.4.0]: https://github.com/SAP/ui5-cli/compare/v3.3.4...v3.4.0
1138
1157
  [v3.3.4]: https://github.com/SAP/ui5-cli/compare/v3.3.3...v3.3.4
1139
1158
  [v3.3.3]: https://github.com/SAP/ui5-cli/compare/v3.3.2...v3.3.3
@@ -20,7 +20,7 @@ initCommand.handler = async function() {
20
20
  }
21
21
 
22
22
  const projectConfig = await init();
23
- const yaml = jsYaml.dump(projectConfig);
23
+ const yaml = jsYaml.dump(projectConfig, {quotingType: `"`});
24
24
 
25
25
  await writeFile(yamlPath, yaml);
26
26
  console.log(`Wrote ui5.yaml to ${yamlPath}:\n`);
package/lib/init/init.js CHANGED
@@ -48,7 +48,10 @@ function getProjectType(hasWebapp, hasSrc, hasTest) {
48
48
 
49
49
  let message = `Could not detect project type: ${errorReason}`;
50
50
  message += "Applications should only have a 'webapp' folder.\n";
51
- message += "Libraries should only have a 'src' and (optional) 'test' folder.";
51
+ message += "Libraries should only have an 'src' and (optional) 'test' folder.";
52
+ message += "\n\n";
53
+ message += "If you are about to start a new project, please refer to:\n";
54
+ message += "https://sap.github.io/ui5-tooling/v3/pages/GettingStarted/#starting-a-new-project";
52
55
  throw new Error(message);
53
56
  }
54
57
 
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@ui5/cli",
3
- "version": "3.7.1",
3
+ "version": "3.7.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@ui5/cli",
9
- "version": "3.7.1",
9
+ "version": "3.7.2",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
- "@ui5/builder": "^3.1.0",
12
+ "@ui5/builder": "^3.1.1",
13
13
  "@ui5/fs": "^3.0.5",
14
14
  "@ui5/logger": "^3.0.0",
15
- "@ui5/project": "^3.7.3",
16
- "@ui5/server": "^3.1.3",
15
+ "@ui5/project": "^3.8.0",
16
+ "@ui5/server": "^3.1.4",
17
17
  "chalk": "^5.3.0",
18
18
  "data-with-position": "^0.5.0",
19
19
  "import-local": "^3.1.0",
@@ -174,9 +174,9 @@
174
174
  }
175
175
  },
176
176
  "node_modules/@babel/parser": {
177
- "version": "7.23.0",
178
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz",
179
- "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==",
177
+ "version": "7.23.3",
178
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.3.tgz",
179
+ "integrity": "sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==",
180
180
  "bin": {
181
181
  "parser": "bin/babel-parser.js"
182
182
  },
@@ -274,9 +274,9 @@
274
274
  }
275
275
  },
276
276
  "node_modules/@jsdoc/salty": {
277
- "version": "0.2.5",
278
- "resolved": "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.5.tgz",
279
- "integrity": "sha512-TfRP53RqunNe2HBobVBJ0VLhK1HbfvBYeTC1ahnN64PWvyYyGebmMiPkuwvD9fpw2ZbkoPb8Q7mwy0aR8Z9rvw==",
277
+ "version": "0.2.6",
278
+ "resolved": "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.6.tgz",
279
+ "integrity": "sha512-aA+awb5yoml8TQ3CzI5Ue7sM3VMRC4l1zJJW4fgZ8OCL1wshJZhNzaf0PL85DSnOUw6QuFgeHGD/eq/xwwAF2g==",
280
280
  "dependencies": {
281
281
  "lodash": "^4.17.21"
282
282
  },
@@ -332,20 +332,23 @@
332
332
  }
333
333
  },
334
334
  "node_modules/@npmcli/agent/node_modules/lru-cache": {
335
- "version": "10.0.1",
336
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz",
337
- "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==",
335
+ "version": "10.0.2",
336
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.2.tgz",
337
+ "integrity": "sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==",
338
+ "dependencies": {
339
+ "semver": "^7.3.5"
340
+ },
338
341
  "engines": {
339
342
  "node": "14 || >=16.14"
340
343
  }
341
344
  },
342
345
  "node_modules/@npmcli/config": {
343
- "version": "8.0.1",
344
- "resolved": "https://registry.npmjs.org/@npmcli/config/-/config-8.0.1.tgz",
345
- "integrity": "sha512-NKGmMYv/YTLwJr+qK9CvADSe82NTM9AFwFFpsZpVcPCT3XTdxvJBdXi8xvXWjHSCMb0Cb+7FtU/a5qqguCOhxA==",
346
+ "version": "8.0.2",
347
+ "resolved": "https://registry.npmjs.org/@npmcli/config/-/config-8.0.2.tgz",
348
+ "integrity": "sha512-g+DAp7bUsiUDynRI4jTO0wPAXJpy3puhovHHg8S4iq54NF8zd00588GJOm5ARxDaDUdKCUYu9E5fNc+esYl5JA==",
346
349
  "dependencies": {
347
350
  "@npmcli/map-workspaces": "^3.0.2",
348
- "ci-info": "^3.8.0",
351
+ "ci-info": "^4.0.0",
349
352
  "ini": "^4.1.0",
350
353
  "nopt": "^7.0.0",
351
354
  "proc-log": "^3.0.0",
@@ -395,9 +398,12 @@
395
398
  }
396
399
  },
397
400
  "node_modules/@npmcli/git/node_modules/lru-cache": {
398
- "version": "10.0.1",
399
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz",
400
- "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==",
401
+ "version": "10.0.2",
402
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.2.tgz",
403
+ "integrity": "sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==",
404
+ "dependencies": {
405
+ "semver": "^7.3.5"
406
+ },
401
407
  "engines": {
402
408
  "node": "14 || >=16.14"
403
409
  }
@@ -495,13 +501,13 @@
495
501
  }
496
502
  },
497
503
  "node_modules/@npmcli/run-script": {
498
- "version": "7.0.1",
499
- "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-7.0.1.tgz",
500
- "integrity": "sha512-Od/JMrgkjZ8alyBE0IzeqZDiF1jgMez9Gkc/OYrCkHHiXNwM0wc6s7+h+xM7kYDZkS0tAoOLr9VvygyE5+2F7g==",
504
+ "version": "7.0.2",
505
+ "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-7.0.2.tgz",
506
+ "integrity": "sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==",
501
507
  "dependencies": {
502
508
  "@npmcli/node-gyp": "^3.0.0",
503
509
  "@npmcli/promise-spawn": "^7.0.0",
504
- "node-gyp": "^9.0.0",
510
+ "node-gyp": "^10.0.0",
505
511
  "read-package-json-fast": "^3.0.0",
506
512
  "which": "^4.0.0"
507
513
  },
@@ -597,9 +603,9 @@
597
603
  }
598
604
  },
599
605
  "node_modules/@sigstore/sign": {
600
- "version": "2.1.0",
601
- "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-2.1.0.tgz",
602
- "integrity": "sha512-4VRpfJxs+8eLqzLVrZngVNExVA/zAhVbi4UT4zmtLi4xRd7vz5qie834OgkrGsLlLB1B2nz/3wUxT1XAUBe8gw==",
606
+ "version": "2.2.0",
607
+ "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-2.2.0.tgz",
608
+ "integrity": "sha512-AAbmnEHDQv6CSfrWA5wXslGtzLPtAtHZleKOgxdQYvx/s76Fk6T6ZVt7w2IGV9j1UrFeBocTTQxaXG2oRrDhYA==",
603
609
  "dependencies": {
604
610
  "@sigstore/bundle": "^2.1.0",
605
611
  "@sigstore/protobuf-specs": "^0.2.1",
@@ -643,14 +649,6 @@
643
649
  "node": ">=14.16"
644
650
  }
645
651
  },
646
- "node_modules/@tootallnate/once": {
647
- "version": "2.0.0",
648
- "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz",
649
- "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==",
650
- "engines": {
651
- "node": ">= 10"
652
- }
653
- },
654
652
  "node_modules/@tufjs/canonical-json": {
655
653
  "version": "2.0.0",
656
654
  "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz",
@@ -672,14 +670,14 @@
672
670
  }
673
671
  },
674
672
  "node_modules/@types/http-cache-semantics": {
675
- "version": "4.0.3",
676
- "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.3.tgz",
677
- "integrity": "sha512-V46MYLFp08Wf2mmaBhvgjStM3tPa+2GAdy/iqoX+noX1//zje2x4XmrIU0cAwyClATsTmahbtoQ2EwP7I5WSiA=="
673
+ "version": "4.0.4",
674
+ "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz",
675
+ "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA=="
678
676
  },
679
677
  "node_modules/@types/linkify-it": {
680
- "version": "3.0.4",
681
- "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-3.0.4.tgz",
682
- "integrity": "sha512-hPpIeeHb/2UuCw06kSNAOVWgehBLXEo0/fUs0mw3W2qhqX89PI2yvok83MnuctYGCPrabGIoi0fFso4DQ+sNUQ=="
678
+ "version": "3.0.5",
679
+ "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-3.0.5.tgz",
680
+ "integrity": "sha512-yg6E+u0/+Zjva+buc3EIb+29XEg4wltq7cSmd4Uc2EE/1nUVmxyzpX6gUXD0V8jIrG0r7YeOGVIbYRkxeooCtw=="
683
681
  },
684
682
  "node_modules/@types/markdown-it": {
685
683
  "version": "12.2.3",
@@ -691,19 +689,19 @@
691
689
  }
692
690
  },
693
691
  "node_modules/@types/mdurl": {
694
- "version": "1.0.4",
695
- "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.4.tgz",
696
- "integrity": "sha512-ARVxjAEX5TARFRzpDRVC6cEk0hUIXCCwaMhz8y7S1/PxU6zZS1UMjyobz7q4w/D/R552r4++EhwmXK1N2rAy0A=="
692
+ "version": "1.0.5",
693
+ "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.5.tgz",
694
+ "integrity": "sha512-6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cUA=="
697
695
  },
698
696
  "node_modules/@types/normalize-package-data": {
699
- "version": "2.4.3",
700
- "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.3.tgz",
701
- "integrity": "sha512-ehPtgRgaULsFG8x0NeYJvmyH1hmlfsNLujHe9dQEia/7MAJYdzMSi19JtchUHjmBA6XC/75dK55mzZH+RyieSg=="
697
+ "version": "2.4.4",
698
+ "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz",
699
+ "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA=="
702
700
  },
703
701
  "node_modules/@ui5/builder": {
704
- "version": "3.1.0",
705
- "resolved": "https://registry.npmjs.org/@ui5/builder/-/builder-3.1.0.tgz",
706
- "integrity": "sha512-v3oyBcNaUp34UiBchjSAnJMiZMPaTot8PcZKWEghWOozw0hyASin18dtzp/BBmb0zc9HsH320rtUO4HoS2YrGQ==",
702
+ "version": "3.1.1",
703
+ "resolved": "https://registry.npmjs.org/@ui5/builder/-/builder-3.1.1.tgz",
704
+ "integrity": "sha512-FVALny9FKWzkDkoGZk9PO0XhL1jTS5FVX/5AhM6zvfBsCu0QPMCQrxkkvmWvv5ryJpjF0PCNBMhxejUBoPF+Yg==",
707
705
  "dependencies": {
708
706
  "@jridgewell/sourcemap-codec": "^1.4.15",
709
707
  "@ui5/fs": "^3.0.5",
@@ -718,8 +716,8 @@
718
716
  "pretty-data": "^0.40.0",
719
717
  "rimraf": "^5.0.5",
720
718
  "semver": "^7.5.4",
721
- "terser": "^5.21.0",
722
- "workerpool": "^6.5.0",
719
+ "terser": "^5.24.0",
720
+ "workerpool": "^6.5.1",
723
721
  "xml2js": "^0.6.2"
724
722
  },
725
723
  "engines": {
@@ -762,12 +760,12 @@
762
760
  }
763
761
  },
764
762
  "node_modules/@ui5/project": {
765
- "version": "3.7.3",
766
- "resolved": "https://registry.npmjs.org/@ui5/project/-/project-3.7.3.tgz",
767
- "integrity": "sha512-SRi7gc3pJyR50R93gpJMY/gshbRSn9D5UNnAzAXUvp1ffDVgnTj0nkmXLGB9cpGwwZ3KyA22C2nRqphmU+GMaw==",
763
+ "version": "3.8.0",
764
+ "resolved": "https://registry.npmjs.org/@ui5/project/-/project-3.8.0.tgz",
765
+ "integrity": "sha512-SLooYGkEsoGjehz6eWYg0wzipCPRiuALKYBvrTUqW8vnU0uV8b13AEdAEGvmevPxBAYZ3gWKnO3Z8soR39/T1g==",
768
766
  "dependencies": {
769
- "@npmcli/config": "^8.0.1",
770
- "@ui5/builder": "^3.1.0",
767
+ "@npmcli/config": "^8.0.2",
768
+ "@ui5/builder": "^3.1.1",
771
769
  "@ui5/fs": "^3.0.5",
772
770
  "@ui5/logger": "^3.0.0",
773
771
  "ajv": "^6.12.6",
@@ -796,12 +794,12 @@
796
794
  }
797
795
  },
798
796
  "node_modules/@ui5/server": {
799
- "version": "3.1.3",
800
- "resolved": "https://registry.npmjs.org/@ui5/server/-/server-3.1.3.tgz",
801
- "integrity": "sha512-LdGkdJqDBkIXBbg7LiTH9GYhU3hMNiAmm5j46+jxsGwSyi82IfZEQ3aTjh+Y3NyRrhPBmRMWlhAbztglbbvVKQ==",
797
+ "version": "3.1.4",
798
+ "resolved": "https://registry.npmjs.org/@ui5/server/-/server-3.1.4.tgz",
799
+ "integrity": "sha512-Do0DodNlq5E46t66rIEpPG0OD1JX4c8Jbt20cDLhQkpES2D0ECQzrDu5sHwzhu0GznlB+asJEQYYgUtTJFo7fg==",
802
800
  "dependencies": {
803
- "@ui5/builder": "^3.0.5",
804
- "@ui5/fs": "^3.0.4",
801
+ "@ui5/builder": "^3.1.1",
802
+ "@ui5/fs": "^3.0.5",
805
803
  "@ui5/logger": "^3.0.0",
806
804
  "body-parser": "^1.20.2",
807
805
  "compression": "^1.7.4",
@@ -846,9 +844,9 @@
846
844
  }
847
845
  },
848
846
  "node_modules/acorn": {
849
- "version": "8.10.0",
850
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz",
851
- "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==",
847
+ "version": "8.11.2",
848
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz",
849
+ "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==",
852
850
  "bin": {
853
851
  "acorn": "bin/acorn"
854
852
  },
@@ -875,17 +873,6 @@
875
873
  "node": ">= 14"
876
874
  }
877
875
  },
878
- "node_modules/agentkeepalive": {
879
- "version": "4.5.0",
880
- "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz",
881
- "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==",
882
- "dependencies": {
883
- "humanize-ms": "^1.2.1"
884
- },
885
- "engines": {
886
- "node": ">= 8.0.0"
887
- }
888
- },
889
876
  "node_modules/ajv": {
890
877
  "version": "6.12.6",
891
878
  "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
@@ -939,23 +926,6 @@
939
926
  "url": "https://github.com/chalk/ansi-styles?sponsor=1"
940
927
  }
941
928
  },
942
- "node_modules/aproba": {
943
- "version": "2.0.0",
944
- "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
945
- "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="
946
- },
947
- "node_modules/are-we-there-yet": {
948
- "version": "3.0.1",
949
- "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz",
950
- "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==",
951
- "dependencies": {
952
- "delegates": "^1.0.0",
953
- "readable-stream": "^3.6.0"
954
- },
955
- "engines": {
956
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
957
- }
958
- },
959
929
  "node_modules/argparse": {
960
930
  "version": "2.0.1",
961
931
  "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
@@ -1213,9 +1183,12 @@
1213
1183
  }
1214
1184
  },
1215
1185
  "node_modules/cacache/node_modules/lru-cache": {
1216
- "version": "10.0.1",
1217
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz",
1218
- "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==",
1186
+ "version": "10.0.2",
1187
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.2.tgz",
1188
+ "integrity": "sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==",
1189
+ "dependencies": {
1190
+ "semver": "^7.3.5"
1191
+ },
1219
1192
  "engines": {
1220
1193
  "node": "14 || >=16.14"
1221
1194
  }
@@ -1271,12 +1244,13 @@
1271
1244
  }
1272
1245
  },
1273
1246
  "node_modules/call-bind": {
1274
- "version": "1.0.2",
1275
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
1276
- "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
1247
+ "version": "1.0.5",
1248
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz",
1249
+ "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==",
1277
1250
  "dependencies": {
1278
- "function-bind": "^1.1.1",
1279
- "get-intrinsic": "^1.0.2"
1251
+ "function-bind": "^1.1.2",
1252
+ "get-intrinsic": "^1.2.1",
1253
+ "set-function-length": "^1.1.1"
1280
1254
  },
1281
1255
  "funding": {
1282
1256
  "url": "https://github.com/sponsors/ljharb"
@@ -1349,9 +1323,9 @@
1349
1323
  }
1350
1324
  },
1351
1325
  "node_modules/ci-info": {
1352
- "version": "3.9.0",
1353
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
1354
- "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
1326
+ "version": "4.0.0",
1327
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz",
1328
+ "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==",
1355
1329
  "funding": [
1356
1330
  {
1357
1331
  "type": "github",
@@ -1483,14 +1457,6 @@
1483
1457
  "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
1484
1458
  "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
1485
1459
  },
1486
- "node_modules/color-support": {
1487
- "version": "1.1.3",
1488
- "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
1489
- "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
1490
- "bin": {
1491
- "color-support": "bin.js"
1492
- }
1493
- },
1494
1460
  "node_modules/command-exists": {
1495
1461
  "version": "1.2.9",
1496
1462
  "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz",
@@ -1603,11 +1569,6 @@
1603
1569
  "typedarray-to-buffer": "^3.1.5"
1604
1570
  }
1605
1571
  },
1606
- "node_modules/console-control-strings": {
1607
- "version": "1.1.0",
1608
- "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
1609
- "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ=="
1610
- },
1611
1572
  "node_modules/content-disposition": {
1612
1573
  "version": "0.5.4",
1613
1574
  "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
@@ -1888,6 +1849,19 @@
1888
1849
  "node": ">=10"
1889
1850
  }
1890
1851
  },
1852
+ "node_modules/define-data-property": {
1853
+ "version": "1.1.1",
1854
+ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz",
1855
+ "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==",
1856
+ "dependencies": {
1857
+ "get-intrinsic": "^1.2.1",
1858
+ "gopd": "^1.0.1",
1859
+ "has-property-descriptors": "^1.0.0"
1860
+ },
1861
+ "engines": {
1862
+ "node": ">= 0.4"
1863
+ }
1864
+ },
1891
1865
  "node_modules/define-lazy-prop": {
1892
1866
  "version": "3.0.0",
1893
1867
  "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
@@ -1899,11 +1873,6 @@
1899
1873
  "url": "https://github.com/sponsors/sindresorhus"
1900
1874
  }
1901
1875
  },
1902
- "node_modules/delegates": {
1903
- "version": "1.0.0",
1904
- "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
1905
- "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ=="
1906
- },
1907
1876
  "node_modules/depd": {
1908
1877
  "version": "2.0.0",
1909
1878
  "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
@@ -2378,9 +2347,9 @@
2378
2347
  "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
2379
2348
  },
2380
2349
  "node_modules/fast-glob": {
2381
- "version": "3.3.1",
2382
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz",
2383
- "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==",
2350
+ "version": "3.3.2",
2351
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
2352
+ "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
2384
2353
  "dependencies": {
2385
2354
  "@nodelib/fs.stat": "^2.0.2",
2386
2355
  "@nodelib/fs.walk": "^1.2.3",
@@ -2536,48 +2505,6 @@
2536
2505
  "url": "https://github.com/sponsors/ljharb"
2537
2506
  }
2538
2507
  },
2539
- "node_modules/gauge": {
2540
- "version": "4.0.4",
2541
- "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz",
2542
- "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==",
2543
- "dependencies": {
2544
- "aproba": "^1.0.3 || ^2.0.0",
2545
- "color-support": "^1.1.3",
2546
- "console-control-strings": "^1.1.0",
2547
- "has-unicode": "^2.0.1",
2548
- "signal-exit": "^3.0.7",
2549
- "string-width": "^4.2.3",
2550
- "strip-ansi": "^6.0.1",
2551
- "wide-align": "^1.1.5"
2552
- },
2553
- "engines": {
2554
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
2555
- }
2556
- },
2557
- "node_modules/gauge/node_modules/ansi-regex": {
2558
- "version": "5.0.1",
2559
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
2560
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
2561
- "engines": {
2562
- "node": ">=8"
2563
- }
2564
- },
2565
- "node_modules/gauge/node_modules/signal-exit": {
2566
- "version": "3.0.7",
2567
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
2568
- "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
2569
- },
2570
- "node_modules/gauge/node_modules/strip-ansi": {
2571
- "version": "6.0.1",
2572
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2573
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2574
- "dependencies": {
2575
- "ansi-regex": "^5.0.1"
2576
- },
2577
- "engines": {
2578
- "node": ">=8"
2579
- }
2580
- },
2581
2508
  "node_modules/get-caller-file": {
2582
2509
  "version": "2.0.5",
2583
2510
  "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
@@ -2587,14 +2514,14 @@
2587
2514
  }
2588
2515
  },
2589
2516
  "node_modules/get-intrinsic": {
2590
- "version": "1.2.1",
2591
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz",
2592
- "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==",
2517
+ "version": "1.2.2",
2518
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz",
2519
+ "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==",
2593
2520
  "dependencies": {
2594
- "function-bind": "^1.1.1",
2595
- "has": "^1.0.3",
2521
+ "function-bind": "^1.1.2",
2596
2522
  "has-proto": "^1.0.1",
2597
- "has-symbols": "^1.0.3"
2523
+ "has-symbols": "^1.0.3",
2524
+ "hasown": "^2.0.0"
2598
2525
  },
2599
2526
  "funding": {
2600
2527
  "url": "https://github.com/sponsors/ljharb"
@@ -2680,6 +2607,17 @@
2680
2607
  "url": "https://github.com/sponsors/sindresorhus"
2681
2608
  }
2682
2609
  },
2610
+ "node_modules/gopd": {
2611
+ "version": "1.0.1",
2612
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
2613
+ "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
2614
+ "dependencies": {
2615
+ "get-intrinsic": "^1.1.3"
2616
+ },
2617
+ "funding": {
2618
+ "url": "https://github.com/sponsors/ljharb"
2619
+ }
2620
+ },
2683
2621
  "node_modules/got": {
2684
2622
  "version": "12.6.1",
2685
2623
  "resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz",
@@ -2725,12 +2663,15 @@
2725
2663
  "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz",
2726
2664
  "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg=="
2727
2665
  },
2728
- "node_modules/has": {
2729
- "version": "1.0.4",
2730
- "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz",
2731
- "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==",
2732
- "engines": {
2733
- "node": ">= 0.4.0"
2666
+ "node_modules/has-property-descriptors": {
2667
+ "version": "1.0.1",
2668
+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz",
2669
+ "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==",
2670
+ "dependencies": {
2671
+ "get-intrinsic": "^1.2.2"
2672
+ },
2673
+ "funding": {
2674
+ "url": "https://github.com/sponsors/ljharb"
2734
2675
  }
2735
2676
  },
2736
2677
  "node_modules/has-proto": {
@@ -2755,11 +2696,6 @@
2755
2696
  "url": "https://github.com/sponsors/ljharb"
2756
2697
  }
2757
2698
  },
2758
- "node_modules/has-unicode": {
2759
- "version": "2.0.1",
2760
- "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
2761
- "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ=="
2762
- },
2763
2699
  "node_modules/has-yarn": {
2764
2700
  "version": "3.0.0",
2765
2701
  "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz",
@@ -2771,6 +2707,17 @@
2771
2707
  "url": "https://github.com/sponsors/sindresorhus"
2772
2708
  }
2773
2709
  },
2710
+ "node_modules/hasown": {
2711
+ "version": "2.0.0",
2712
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz",
2713
+ "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==",
2714
+ "dependencies": {
2715
+ "function-bind": "^1.1.2"
2716
+ },
2717
+ "engines": {
2718
+ "node": ">= 0.4"
2719
+ }
2720
+ },
2774
2721
  "node_modules/hpack.js": {
2775
2722
  "version": "2.1.6",
2776
2723
  "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz",
@@ -2860,9 +2807,9 @@
2860
2807
  }
2861
2808
  },
2862
2809
  "node_modules/http2-wrapper": {
2863
- "version": "2.2.0",
2864
- "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.0.tgz",
2865
- "integrity": "sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==",
2810
+ "version": "2.2.1",
2811
+ "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz",
2812
+ "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==",
2866
2813
  "dependencies": {
2867
2814
  "quick-lru": "^5.1.1",
2868
2815
  "resolve-alpn": "^1.2.0"
@@ -2894,14 +2841,6 @@
2894
2841
  "node": ">= 14"
2895
2842
  }
2896
2843
  },
2897
- "node_modules/humanize-ms": {
2898
- "version": "1.2.1",
2899
- "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz",
2900
- "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==",
2901
- "dependencies": {
2902
- "ms": "^2.0.0"
2903
- }
2904
- },
2905
2844
  "node_modules/iconv-lite": {
2906
2845
  "version": "0.4.24",
2907
2846
  "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
@@ -2914,9 +2853,9 @@
2914
2853
  }
2915
2854
  },
2916
2855
  "node_modules/ignore": {
2917
- "version": "5.2.4",
2918
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
2919
- "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",
2856
+ "version": "5.3.0",
2857
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz",
2858
+ "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==",
2920
2859
  "engines": {
2921
2860
  "node": ">= 4"
2922
2861
  }
@@ -3028,12 +2967,26 @@
3028
2967
  "is-ci": "bin.js"
3029
2968
  }
3030
2969
  },
2970
+ "node_modules/is-ci/node_modules/ci-info": {
2971
+ "version": "3.9.0",
2972
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
2973
+ "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
2974
+ "funding": [
2975
+ {
2976
+ "type": "github",
2977
+ "url": "https://github.com/sponsors/sibiraj-s"
2978
+ }
2979
+ ],
2980
+ "engines": {
2981
+ "node": ">=8"
2982
+ }
2983
+ },
3031
2984
  "node_modules/is-core-module": {
3032
- "version": "2.13.0",
3033
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz",
3034
- "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==",
2985
+ "version": "2.13.1",
2986
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz",
2987
+ "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==",
3035
2988
  "dependencies": {
3036
- "has": "^1.0.3"
2989
+ "hasown": "^2.0.0"
3037
2990
  },
3038
2991
  "funding": {
3039
2992
  "url": "https://github.com/sponsors/ljharb"
@@ -3829,296 +3782,48 @@
3829
3782
  }
3830
3783
  },
3831
3784
  "node_modules/node-gyp": {
3832
- "version": "9.4.0",
3833
- "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.0.tgz",
3834
- "integrity": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==",
3785
+ "version": "10.0.1",
3786
+ "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.0.1.tgz",
3787
+ "integrity": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==",
3835
3788
  "dependencies": {
3836
3789
  "env-paths": "^2.2.0",
3837
3790
  "exponential-backoff": "^3.1.1",
3838
- "glob": "^7.1.4",
3791
+ "glob": "^10.3.10",
3839
3792
  "graceful-fs": "^4.2.6",
3840
- "make-fetch-happen": "^11.0.3",
3841
- "nopt": "^6.0.0",
3842
- "npmlog": "^6.0.0",
3843
- "rimraf": "^3.0.2",
3793
+ "make-fetch-happen": "^13.0.0",
3794
+ "nopt": "^7.0.0",
3795
+ "proc-log": "^3.0.0",
3844
3796
  "semver": "^7.3.5",
3845
3797
  "tar": "^6.1.2",
3846
- "which": "^2.0.2"
3798
+ "which": "^4.0.0"
3847
3799
  },
3848
3800
  "bin": {
3849
3801
  "node-gyp": "bin/node-gyp.js"
3850
3802
  },
3851
3803
  "engines": {
3852
- "node": "^12.13 || ^14.13 || >=16"
3853
- }
3854
- },
3855
- "node_modules/node-gyp/node_modules/abbrev": {
3856
- "version": "1.1.1",
3857
- "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
3858
- "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
3859
- },
3860
- "node_modules/node-gyp/node_modules/agent-base": {
3861
- "version": "6.0.2",
3862
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
3863
- "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
3864
- "dependencies": {
3865
- "debug": "4"
3866
- },
3867
- "engines": {
3868
- "node": ">= 6.0.0"
3869
- }
3870
- },
3871
- "node_modules/node-gyp/node_modules/aggregate-error": {
3872
- "version": "3.1.0",
3873
- "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
3874
- "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
3875
- "dependencies": {
3876
- "clean-stack": "^2.0.0",
3877
- "indent-string": "^4.0.0"
3878
- },
3879
- "engines": {
3880
- "node": ">=8"
3881
- }
3882
- },
3883
- "node_modules/node-gyp/node_modules/brace-expansion": {
3884
- "version": "1.1.11",
3885
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
3886
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
3887
- "dependencies": {
3888
- "balanced-match": "^1.0.0",
3889
- "concat-map": "0.0.1"
3890
- }
3891
- },
3892
- "node_modules/node-gyp/node_modules/cacache": {
3893
- "version": "17.1.4",
3894
- "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.1.4.tgz",
3895
- "integrity": "sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==",
3896
- "dependencies": {
3897
- "@npmcli/fs": "^3.1.0",
3898
- "fs-minipass": "^3.0.0",
3899
- "glob": "^10.2.2",
3900
- "lru-cache": "^7.7.1",
3901
- "minipass": "^7.0.3",
3902
- "minipass-collect": "^1.0.2",
3903
- "minipass-flush": "^1.0.5",
3904
- "minipass-pipeline": "^1.2.4",
3905
- "p-map": "^4.0.0",
3906
- "ssri": "^10.0.0",
3907
- "tar": "^6.1.11",
3908
- "unique-filename": "^3.0.0"
3909
- },
3910
- "engines": {
3911
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
3912
- }
3913
- },
3914
- "node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion": {
3915
- "version": "2.0.1",
3916
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
3917
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
3918
- "dependencies": {
3919
- "balanced-match": "^1.0.0"
3920
- }
3921
- },
3922
- "node_modules/node-gyp/node_modules/cacache/node_modules/glob": {
3923
- "version": "10.3.10",
3924
- "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz",
3925
- "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==",
3926
- "dependencies": {
3927
- "foreground-child": "^3.1.0",
3928
- "jackspeak": "^2.3.5",
3929
- "minimatch": "^9.0.1",
3930
- "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0",
3931
- "path-scurry": "^1.10.1"
3932
- },
3933
- "bin": {
3934
- "glob": "dist/esm/bin.mjs"
3935
- },
3936
- "engines": {
3937
- "node": ">=16 || 14 >=14.17"
3938
- },
3939
- "funding": {
3940
- "url": "https://github.com/sponsors/isaacs"
3941
- }
3942
- },
3943
- "node_modules/node-gyp/node_modules/cacache/node_modules/minimatch": {
3944
- "version": "9.0.3",
3945
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
3946
- "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
3947
- "dependencies": {
3948
- "brace-expansion": "^2.0.1"
3949
- },
3950
- "engines": {
3951
- "node": ">=16 || 14 >=14.17"
3952
- },
3953
- "funding": {
3954
- "url": "https://github.com/sponsors/isaacs"
3955
- }
3956
- },
3957
- "node_modules/node-gyp/node_modules/clean-stack": {
3958
- "version": "2.2.0",
3959
- "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
3960
- "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
3961
- "engines": {
3962
- "node": ">=6"
3963
- }
3964
- },
3965
- "node_modules/node-gyp/node_modules/glob": {
3966
- "version": "7.2.3",
3967
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
3968
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
3969
- "dependencies": {
3970
- "fs.realpath": "^1.0.0",
3971
- "inflight": "^1.0.4",
3972
- "inherits": "2",
3973
- "minimatch": "^3.1.1",
3974
- "once": "^1.3.0",
3975
- "path-is-absolute": "^1.0.0"
3976
- },
3977
- "engines": {
3978
- "node": "*"
3979
- },
3980
- "funding": {
3981
- "url": "https://github.com/sponsors/isaacs"
3982
- }
3983
- },
3984
- "node_modules/node-gyp/node_modules/http-proxy-agent": {
3985
- "version": "5.0.0",
3986
- "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz",
3987
- "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==",
3988
- "dependencies": {
3989
- "@tootallnate/once": "2",
3990
- "agent-base": "6",
3991
- "debug": "4"
3992
- },
3993
- "engines": {
3994
- "node": ">= 6"
3995
- }
3996
- },
3997
- "node_modules/node-gyp/node_modules/https-proxy-agent": {
3998
- "version": "5.0.1",
3999
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
4000
- "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
4001
- "dependencies": {
4002
- "agent-base": "6",
4003
- "debug": "4"
4004
- },
4005
- "engines": {
4006
- "node": ">= 6"
4007
- }
4008
- },
4009
- "node_modules/node-gyp/node_modules/indent-string": {
4010
- "version": "4.0.0",
4011
- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
4012
- "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
4013
- "engines": {
4014
- "node": ">=8"
4015
- }
4016
- },
4017
- "node_modules/node-gyp/node_modules/lru-cache": {
4018
- "version": "7.18.3",
4019
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz",
4020
- "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
4021
- "engines": {
4022
- "node": ">=12"
4023
- }
4024
- },
4025
- "node_modules/node-gyp/node_modules/make-fetch-happen": {
4026
- "version": "11.1.1",
4027
- "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz",
4028
- "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==",
4029
- "dependencies": {
4030
- "agentkeepalive": "^4.2.1",
4031
- "cacache": "^17.0.0",
4032
- "http-cache-semantics": "^4.1.1",
4033
- "http-proxy-agent": "^5.0.0",
4034
- "https-proxy-agent": "^5.0.0",
4035
- "is-lambda": "^1.0.1",
4036
- "lru-cache": "^7.7.1",
4037
- "minipass": "^5.0.0",
4038
- "minipass-fetch": "^3.0.0",
4039
- "minipass-flush": "^1.0.5",
4040
- "minipass-pipeline": "^1.2.4",
4041
- "negotiator": "^0.6.3",
4042
- "promise-retry": "^2.0.1",
4043
- "socks-proxy-agent": "^7.0.0",
4044
- "ssri": "^10.0.0"
4045
- },
4046
- "engines": {
4047
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
4048
- }
4049
- },
4050
- "node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/minipass": {
4051
- "version": "5.0.0",
4052
- "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
4053
- "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
4054
- "engines": {
4055
- "node": ">=8"
4056
- }
4057
- },
4058
- "node_modules/node-gyp/node_modules/minimatch": {
4059
- "version": "3.1.2",
4060
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
4061
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
4062
- "dependencies": {
4063
- "brace-expansion": "^1.1.7"
4064
- },
4065
- "engines": {
4066
- "node": "*"
3804
+ "node": "^16.14.0 || >=18.0.0"
4067
3805
  }
4068
3806
  },
4069
- "node_modules/node-gyp/node_modules/nopt": {
4070
- "version": "6.0.0",
4071
- "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz",
4072
- "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==",
4073
- "dependencies": {
4074
- "abbrev": "^1.0.0"
4075
- },
4076
- "bin": {
4077
- "nopt": "bin/nopt.js"
4078
- },
3807
+ "node_modules/node-gyp/node_modules/isexe": {
3808
+ "version": "3.1.1",
3809
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz",
3810
+ "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==",
4079
3811
  "engines": {
4080
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
3812
+ "node": ">=16"
4081
3813
  }
4082
3814
  },
4083
- "node_modules/node-gyp/node_modules/p-map": {
3815
+ "node_modules/node-gyp/node_modules/which": {
4084
3816
  "version": "4.0.0",
4085
- "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
4086
- "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
4087
- "dependencies": {
4088
- "aggregate-error": "^3.0.0"
4089
- },
4090
- "engines": {
4091
- "node": ">=10"
4092
- },
4093
- "funding": {
4094
- "url": "https://github.com/sponsors/sindresorhus"
4095
- }
4096
- },
4097
- "node_modules/node-gyp/node_modules/rimraf": {
4098
- "version": "3.0.2",
4099
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
4100
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
3817
+ "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz",
3818
+ "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==",
4101
3819
  "dependencies": {
4102
- "glob": "^7.1.3"
3820
+ "isexe": "^3.1.1"
4103
3821
  },
4104
3822
  "bin": {
4105
- "rimraf": "bin.js"
4106
- },
4107
- "funding": {
4108
- "url": "https://github.com/sponsors/isaacs"
4109
- }
4110
- },
4111
- "node_modules/node-gyp/node_modules/socks-proxy-agent": {
4112
- "version": "7.0.0",
4113
- "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz",
4114
- "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==",
4115
- "dependencies": {
4116
- "agent-base": "^6.0.2",
4117
- "debug": "^4.3.3",
4118
- "socks": "^2.6.2"
3823
+ "node-which": "bin/which.js"
4119
3824
  },
4120
3825
  "engines": {
4121
- "node": ">= 10"
3826
+ "node": "^16.13.0 || >=18.0.0"
4122
3827
  }
4123
3828
  },
4124
3829
  "node_modules/node-stream-zip": {
@@ -4214,9 +3919,12 @@
4214
3919
  }
4215
3920
  },
4216
3921
  "node_modules/npm-package-arg/node_modules/lru-cache": {
4217
- "version": "10.0.1",
4218
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz",
4219
- "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==",
3922
+ "version": "10.0.2",
3923
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.2.tgz",
3924
+ "integrity": "sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==",
3925
+ "dependencies": {
3926
+ "semver": "^7.3.5"
3927
+ },
4220
3928
  "engines": {
4221
3929
  "node": "14 || >=16.14"
4222
3930
  }
@@ -4288,20 +3996,6 @@
4288
3996
  "url": "https://github.com/sponsors/sindresorhus"
4289
3997
  }
4290
3998
  },
4291
- "node_modules/npmlog": {
4292
- "version": "6.0.2",
4293
- "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz",
4294
- "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==",
4295
- "dependencies": {
4296
- "are-we-there-yet": "^3.0.0",
4297
- "console-control-strings": "^1.1.0",
4298
- "gauge": "^4.0.3",
4299
- "set-blocking": "^2.0.0"
4300
- },
4301
- "engines": {
4302
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
4303
- }
4304
- },
4305
3999
  "node_modules/nth-check": {
4306
4000
  "version": "2.1.1",
4307
4001
  "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
@@ -4322,9 +4016,9 @@
4322
4016
  }
4323
4017
  },
4324
4018
  "node_modules/object-inspect": {
4325
- "version": "1.13.0",
4326
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.0.tgz",
4327
- "integrity": "sha512-HQ4J+ic8hKrgIt3mqk6cVOVrW2ozL4KdvHlqpBv9vDYWx9ysAgENAdvy4FoGF+KFdhR7nQTNm5J0ctAeOwn+3g==",
4019
+ "version": "1.13.1",
4020
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz",
4021
+ "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==",
4328
4022
  "funding": {
4329
4023
  "url": "https://github.com/sponsors/ljharb"
4330
4024
  }
@@ -4557,9 +4251,12 @@
4557
4251
  }
4558
4252
  },
4559
4253
  "node_modules/path-scurry/node_modules/lru-cache": {
4560
- "version": "10.0.1",
4561
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz",
4562
- "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==",
4254
+ "version": "10.0.2",
4255
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.2.tgz",
4256
+ "integrity": "sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==",
4257
+ "dependencies": {
4258
+ "semver": "^7.3.5"
4259
+ },
4563
4260
  "engines": {
4564
4261
  "node": "14 || >=16.14"
4565
4262
  }
@@ -4665,9 +4362,9 @@
4665
4362
  }
4666
4363
  },
4667
4364
  "node_modules/punycode": {
4668
- "version": "2.3.0",
4669
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
4670
- "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==",
4365
+ "version": "2.3.1",
4366
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
4367
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
4671
4368
  "engines": {
4672
4369
  "node": ">=6"
4673
4370
  }
@@ -4833,9 +4530,12 @@
4833
4530
  }
4834
4531
  },
4835
4532
  "node_modules/read-package-json/node_modules/lru-cache": {
4836
- "version": "10.0.1",
4837
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz",
4838
- "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==",
4533
+ "version": "10.0.2",
4534
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.2.tgz",
4535
+ "integrity": "sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==",
4536
+ "dependencies": {
4537
+ "semver": "^7.3.5"
4538
+ },
4839
4539
  "engines": {
4840
4540
  "node": "14 || >=16.14"
4841
4541
  }
@@ -4953,9 +4653,9 @@
4953
4653
  }
4954
4654
  },
4955
4655
  "node_modules/read-pkg-up/node_modules/type-fest": {
4956
- "version": "4.5.0",
4957
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.5.0.tgz",
4958
- "integrity": "sha512-diLQivFzddJl4ylL3jxSkEc39Tpw7o1QeEHIPxVwryDK2lpB7Nqhzhuo6v5/Ls08Z0yPSAhsyAWlv1/H0ciNmw==",
4656
+ "version": "4.8.1",
4657
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.1.tgz",
4658
+ "integrity": "sha512-ShaaYnjf+0etG8W/FumARKMjjIToy/haCaTjN2dvcewOSoNqCQzdgG7m2JVOlM5qndGTHjkvsrWZs+k/2Z7E0Q==",
4959
4659
  "engines": {
4960
4660
  "node": ">=16"
4961
4661
  },
@@ -4994,17 +4694,20 @@
4994
4694
  }
4995
4695
  },
4996
4696
  "node_modules/read-pkg/node_modules/lines-and-columns": {
4997
- "version": "2.0.3",
4998
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz",
4999
- "integrity": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==",
4697
+ "version": "2.0.4",
4698
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.4.tgz",
4699
+ "integrity": "sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==",
5000
4700
  "engines": {
5001
4701
  "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
5002
4702
  }
5003
4703
  },
5004
4704
  "node_modules/read-pkg/node_modules/lru-cache": {
5005
- "version": "10.0.1",
5006
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz",
5007
- "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==",
4705
+ "version": "10.0.2",
4706
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.2.tgz",
4707
+ "integrity": "sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==",
4708
+ "dependencies": {
4709
+ "semver": "^7.3.5"
4710
+ },
5008
4711
  "engines": {
5009
4712
  "node": "14 || >=16.14"
5010
4713
  }
@@ -5024,9 +4727,9 @@
5024
4727
  }
5025
4728
  },
5026
4729
  "node_modules/read-pkg/node_modules/parse-json": {
5027
- "version": "7.1.0",
5028
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-7.1.0.tgz",
5029
- "integrity": "sha512-ihtdrgbqdONYD156Ap6qTcaGcGdkdAxodO1wLqQ/j7HP1u2sFYppINiq4jyC8F+Nm+4fVufylCV00QmkTHkSUg==",
4730
+ "version": "7.1.1",
4731
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-7.1.1.tgz",
4732
+ "integrity": "sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw==",
5030
4733
  "dependencies": {
5031
4734
  "@babel/code-frame": "^7.21.4",
5032
4735
  "error-ex": "^1.3.2",
@@ -5053,9 +4756,9 @@
5053
4756
  }
5054
4757
  },
5055
4758
  "node_modules/read-pkg/node_modules/type-fest": {
5056
- "version": "4.5.0",
5057
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.5.0.tgz",
5058
- "integrity": "sha512-diLQivFzddJl4ylL3jxSkEc39Tpw7o1QeEHIPxVwryDK2lpB7Nqhzhuo6v5/Ls08Z0yPSAhsyAWlv1/H0ciNmw==",
4759
+ "version": "4.8.1",
4760
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.1.tgz",
4761
+ "integrity": "sha512-ShaaYnjf+0etG8W/FumARKMjjIToy/haCaTjN2dvcewOSoNqCQzdgG7m2JVOlM5qndGTHjkvsrWZs+k/2Z7E0Q==",
5059
4762
  "engines": {
5060
4763
  "node": ">=16"
5061
4764
  },
@@ -5528,10 +5231,19 @@
5528
5231
  "node": ">= 0.8.0"
5529
5232
  }
5530
5233
  },
5531
- "node_modules/set-blocking": {
5532
- "version": "2.0.0",
5533
- "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
5534
- "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="
5234
+ "node_modules/set-function-length": {
5235
+ "version": "1.1.1",
5236
+ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz",
5237
+ "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==",
5238
+ "dependencies": {
5239
+ "define-data-property": "^1.1.1",
5240
+ "get-intrinsic": "^1.2.1",
5241
+ "gopd": "^1.0.1",
5242
+ "has-property-descriptors": "^1.0.0"
5243
+ },
5244
+ "engines": {
5245
+ "node": ">= 0.4"
5246
+ }
5535
5247
  },
5536
5248
  "node_modules/setprototypeof": {
5537
5249
  "version": "1.2.0",
@@ -5971,9 +5683,9 @@
5971
5683
  "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
5972
5684
  },
5973
5685
  "node_modules/terser": {
5974
- "version": "5.22.0",
5975
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.22.0.tgz",
5976
- "integrity": "sha512-hHZVLgRA2z4NWcN6aS5rQDc+7Dcy58HOf2zbYwmFcQ+ua3h6eEFf5lIDKTzbWwlazPyOZsFQO8V80/IjVNExEw==",
5686
+ "version": "5.24.0",
5687
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.24.0.tgz",
5688
+ "integrity": "sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==",
5977
5689
  "dependencies": {
5978
5690
  "@jridgewell/source-map": "^0.3.3",
5979
5691
  "acorn": "^8.8.2",
@@ -6215,14 +5927,6 @@
6215
5927
  "node": ">= 8"
6216
5928
  }
6217
5929
  },
6218
- "node_modules/wide-align": {
6219
- "version": "1.1.5",
6220
- "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
6221
- "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
6222
- "dependencies": {
6223
- "string-width": "^1.0.2 || 2 || 3 || 4"
6224
- }
6225
- },
6226
5930
  "node_modules/widest-line": {
6227
5931
  "version": "4.0.1",
6228
5932
  "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/cli",
3
- "version": "3.7.1",
3
+ "version": "3.7.2",
4
4
  "description": "UI5 Tooling - CLI",
5
5
  "author": {
6
6
  "name": "SAP SE",
@@ -116,11 +116,11 @@
116
116
  "url": "git@github.com:SAP/ui5-cli.git"
117
117
  },
118
118
  "dependencies": {
119
- "@ui5/builder": "^3.1.0",
119
+ "@ui5/builder": "^3.1.1",
120
120
  "@ui5/fs": "^3.0.5",
121
121
  "@ui5/logger": "^3.0.0",
122
- "@ui5/project": "^3.7.3",
123
- "@ui5/server": "^3.1.3",
122
+ "@ui5/project": "^3.8.0",
123
+ "@ui5/server": "^3.1.4",
124
124
  "chalk": "^5.3.0",
125
125
  "data-with-position": "^0.5.0",
126
126
  "import-local": "^3.1.0",
@@ -138,11 +138,11 @@
138
138
  "cross-env": "^7.0.3",
139
139
  "depcheck": "^1.4.7",
140
140
  "docdash": "^2.0.2",
141
- "eslint": "^8.51.0",
141
+ "eslint": "^8.54.0",
142
142
  "eslint-config-google": "^0.14.0",
143
143
  "eslint-plugin-ava": "^14.0.0",
144
- "eslint-plugin-jsdoc": "^46.8.2",
145
- "esmock": "^2.5.6",
144
+ "eslint-plugin-jsdoc": "^46.9.0",
145
+ "esmock": "^2.6.0",
146
146
  "execa": "^8.0.1",
147
147
  "jsdoc": "^4.0.2",
148
148
  "nyc": "^15.1.0",
@@ -150,6 +150,7 @@
150
150
  "rimraf": "^5.0.5",
151
151
  "sinon": "^16.1.3",
152
152
  "strip-ansi": "^7.1.0",
153
- "tap-xunit": "^2.4.1"
153
+ "tap-xunit": "^2.4.1",
154
+ "testdouble": "^3.20.1"
154
155
  }
155
156
  }