prostgles-server 4.0.16 → 4.0.18

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.
Files changed (135) hide show
  1. package/dist/AuthHandler.js +214 -210
  2. package/dist/AuthHandler.js.map +1 -1
  3. package/dist/DBEventsManager.js +34 -31
  4. package/dist/DBEventsManager.js.map +1 -1
  5. package/dist/DBSchemaBuilder.js +3 -2
  6. package/dist/DBSchemaBuilder.js.map +1 -1
  7. package/dist/DboBuilder/QueryBuilder/QueryBuilder.d.ts +19 -14
  8. package/dist/DboBuilder/QueryBuilder/QueryBuilder.d.ts.map +1 -1
  9. package/dist/DboBuilder/QueryBuilder/QueryBuilder.js +159 -151
  10. package/dist/DboBuilder/QueryBuilder/QueryBuilder.js.map +1 -1
  11. package/dist/DboBuilder/TableHandler.d.ts +9 -14
  12. package/dist/DboBuilder/TableHandler.d.ts.map +1 -1
  13. package/dist/DboBuilder/TableHandler.js +21 -41
  14. package/dist/DboBuilder/TableHandler.js.map +1 -1
  15. package/dist/DboBuilder/ViewHandler.d.ts +3 -3
  16. package/dist/DboBuilder/ViewHandler.d.ts.map +1 -1
  17. package/dist/DboBuilder/ViewHandler.js +24 -9
  18. package/dist/DboBuilder/ViewHandler.js.map +1 -1
  19. package/dist/DboBuilder/getSubscribeRelatedTables.d.ts +1 -1
  20. package/dist/DboBuilder/getSubscribeRelatedTables.d.ts.map +1 -1
  21. package/dist/DboBuilder/parseUpdateRules.d.ts.map +1 -1
  22. package/dist/DboBuilder/parseUpdateRules.js.map +1 -1
  23. package/dist/DboBuilder/runSQL.js +5 -5
  24. package/dist/DboBuilder/runSQL.js.map +1 -1
  25. package/dist/DboBuilder.d.ts.map +1 -1
  26. package/dist/DboBuilder.js +85 -78
  27. package/dist/DboBuilder.js.map +1 -1
  28. package/dist/FileManager/FileManager.d.ts +143 -0
  29. package/dist/FileManager/FileManager.d.ts.map +1 -0
  30. package/dist/FileManager/FileManager.js +278 -0
  31. package/dist/FileManager/FileManager.js.map +1 -0
  32. package/dist/FileManager/initFileManager.d.ts +4 -0
  33. package/dist/FileManager/initFileManager.d.ts.map +1 -0
  34. package/dist/FileManager/initFileManager.js +209 -0
  35. package/dist/FileManager/initFileManager.js.map +1 -0
  36. package/dist/FileManager/parseFile.d.ts +15 -0
  37. package/dist/FileManager/parseFile.d.ts.map +1 -0
  38. package/dist/FileManager/parseFile.js +59 -0
  39. package/dist/FileManager/parseFile.js.map +1 -0
  40. package/dist/FileManager/upload.d.ts +6 -0
  41. package/dist/FileManager/upload.d.ts.map +1 -0
  42. package/dist/FileManager/upload.js +76 -0
  43. package/dist/FileManager/upload.js.map +1 -0
  44. package/dist/FileManager/uploadStream.d.ts +5 -0
  45. package/dist/FileManager/uploadStream.d.ts.map +1 -0
  46. package/dist/FileManager/uploadStream.js +70 -0
  47. package/dist/FileManager/uploadStream.js.map +1 -0
  48. package/dist/Filtering.d.ts +1 -1
  49. package/dist/Filtering.d.ts.map +1 -1
  50. package/dist/PostgresNotifListenManager.js +26 -20
  51. package/dist/PostgresNotifListenManager.js.map +1 -1
  52. package/dist/Prostgles.d.ts +2 -2
  53. package/dist/Prostgles.d.ts.map +1 -1
  54. package/dist/Prostgles.js +192 -172
  55. package/dist/Prostgles.js.map +1 -1
  56. package/dist/PubSubManager/PubSubManager.d.ts +3 -3
  57. package/dist/PubSubManager/PubSubManager.js +164 -154
  58. package/dist/PubSubManager/PubSubManager.js.map +1 -1
  59. package/dist/PublishParser.d.ts +13 -13
  60. package/dist/PublishParser.d.ts.map +1 -1
  61. package/dist/PublishParser.js +8 -2
  62. package/dist/PublishParser.js.map +1 -1
  63. package/dist/SchemaWatch.js +2 -1
  64. package/dist/SchemaWatch.js.map +1 -1
  65. package/dist/TableConfig/TableConfig.d.ts.map +1 -1
  66. package/dist/TableConfig/TableConfig.js +100 -92
  67. package/dist/TableConfig/TableConfig.js.map +1 -1
  68. package/lib/AuthHandler.js +1 -1
  69. package/lib/AuthHandler.ts +1 -1
  70. package/lib/DBSchemaBuilder.js +3 -2
  71. package/lib/DBSchemaBuilder.ts +3 -2
  72. package/lib/DboBuilder/TableHandler.d.ts +4 -9
  73. package/lib/DboBuilder/TableHandler.d.ts.map +1 -1
  74. package/lib/DboBuilder/TableHandler.js +1 -22
  75. package/lib/DboBuilder/TableHandler.ts +3 -31
  76. package/lib/DboBuilder/ViewHandler.ts +1 -1
  77. package/lib/DboBuilder/getSubscribeRelatedTables.d.ts +1 -1
  78. package/lib/DboBuilder/getSubscribeRelatedTables.d.ts.map +1 -1
  79. package/lib/DboBuilder/getSubscribeRelatedTables.ts +1 -1
  80. package/lib/DboBuilder/parseUpdateRules.d.ts.map +1 -1
  81. package/lib/DboBuilder/parseUpdateRules.ts +2 -2
  82. package/lib/DboBuilder.d.ts.map +1 -1
  83. package/lib/DboBuilder.js +0 -13
  84. package/lib/DboBuilder.ts +1 -16
  85. package/lib/{FileManager.d.ts → FileManager/FileManager.d.ts} +12 -20
  86. package/lib/FileManager/FileManager.d.ts.map +1 -0
  87. package/lib/FileManager/FileManager.js +303 -0
  88. package/lib/FileManager/FileManager.ts +378 -0
  89. package/lib/FileManager/initFileManager.d.ts +4 -0
  90. package/lib/FileManager/initFileManager.d.ts.map +1 -0
  91. package/lib/FileManager/initFileManager.js +231 -0
  92. package/lib/FileManager/initFileManager.ts +236 -0
  93. package/lib/FileManager/parseFile.d.ts +15 -0
  94. package/lib/FileManager/parseFile.d.ts.map +1 -0
  95. package/lib/FileManager/parseFile.js +58 -0
  96. package/lib/FileManager/parseFile.ts +69 -0
  97. package/lib/FileManager/upload.d.ts +6 -0
  98. package/lib/FileManager/upload.d.ts.map +1 -0
  99. package/lib/FileManager/upload.js +98 -0
  100. package/lib/FileManager/upload.ts +83 -0
  101. package/lib/FileManager/uploadStream.d.ts +5 -0
  102. package/lib/FileManager/uploadStream.d.ts.map +1 -0
  103. package/lib/FileManager/uploadStream.js +92 -0
  104. package/lib/FileManager/uploadStream.ts +80 -0
  105. package/lib/Filtering.d.ts +1 -1
  106. package/lib/Filtering.d.ts.map +1 -1
  107. package/lib/Filtering.ts +1 -1
  108. package/lib/JSONBValidation/validate_jsonb_schema_sql.ts +1 -1
  109. package/lib/Prostgles.d.ts +2 -2
  110. package/lib/Prostgles.d.ts.map +1 -1
  111. package/lib/Prostgles.js +8 -5
  112. package/lib/Prostgles.ts +10 -6
  113. package/lib/PublishParser.d.ts +13 -13
  114. package/lib/PublishParser.d.ts.map +1 -1
  115. package/lib/PublishParser.js +1 -0
  116. package/lib/PublishParser.ts +13 -12
  117. package/lib/TableConfig/TableConfig.d.ts.map +1 -1
  118. package/lib/TableConfig/TableConfig.js +12 -7
  119. package/lib/TableConfig/TableConfig.ts +13 -8
  120. package/package.json +3 -3
  121. package/tests/client/PID.txt +1 -1
  122. package/tests/client/index.d.ts.map +1 -1
  123. package/tests/client/index.ts +1 -3
  124. package/tests/client/package-lock.json +31 -4561
  125. package/tests/client/package.json +2 -2
  126. package/tests/client/tsconfig.json +1 -0
  127. package/tests/isomorphic_queries.d.ts.map +1 -1
  128. package/tests/isomorphic_queries.ts +3 -3
  129. package/tests/server/package-lock.json +13 -13
  130. package/tests/server/package.json +1 -1
  131. package/tests/server/tsconfig.json +1 -0
  132. package/tsconfig.json +3 -2
  133. package/lib/FileManager.d.ts.map +0 -1
  134. package/lib/FileManager.js +0 -676
  135. package/lib/FileManager.ts +0 -811
@@ -10,11 +10,11 @@
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
12
  "@types/node": "^14.14.16",
13
- "prostgles-client": "^4.0.4",
13
+ "prostgles-client": "^4.0.11",
14
14
  "socket.io-client": "^4.6.1"
15
15
  },
16
16
  "devDependencies": {
17
- "typescript": "^4.9.5"
17
+ "typescript": "^5.0.3"
18
18
  }
19
19
  },
20
20
  "node_modules/@socket.io/component-emitter": {
@@ -63,2762 +63,28 @@
63
63
  "node": ">=10.0.0"
64
64
  }
65
65
  },
66
- "node_modules/i": {
67
- "version": "0.3.7",
68
- "resolved": "https://registry.npmjs.org/i/-/i-0.3.7.tgz",
69
- "integrity": "sha512-FYz4wlXgkQwIPqhzC5TdNMLSE5+GS1IIDJZY/1ZiEPCT2S3COUVZeT5OW4BmW4r5LHLQuOosSwsvnroG9GR59Q==",
70
- "engines": {
71
- "node": ">=0.4"
72
- }
73
- },
74
- "node_modules/json-schema": {
75
- "version": "0.4.0",
76
- "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
77
- "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA=="
78
- },
79
- "node_modules/ms": {
80
- "version": "2.1.2",
81
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
82
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
83
- },
84
- "node_modules/npm": {
85
- "version": "9.6.2",
86
- "resolved": "https://registry.npmjs.org/npm/-/npm-9.6.2.tgz",
87
- "integrity": "sha512-TnXoXhlFkH/9wI4+aXSq0aPLwKG7Ge17t1ME4/rQt+0DZWQCRk9PwhBuX/shqdUiHeKicSLSkzWx+QZgTRE+/A==",
88
- "bundleDependencies": [
89
- "@isaacs/string-locale-compare",
90
- "@npmcli/arborist",
91
- "@npmcli/config",
92
- "@npmcli/map-workspaces",
93
- "@npmcli/package-json",
94
- "@npmcli/run-script",
95
- "abbrev",
96
- "archy",
97
- "cacache",
98
- "chalk",
99
- "ci-info",
100
- "cli-columns",
101
- "cli-table3",
102
- "columnify",
103
- "fastest-levenshtein",
104
- "fs-minipass",
105
- "glob",
106
- "graceful-fs",
107
- "hosted-git-info",
108
- "ini",
109
- "init-package-json",
110
- "is-cidr",
111
- "json-parse-even-better-errors",
112
- "libnpmaccess",
113
- "libnpmdiff",
114
- "libnpmexec",
115
- "libnpmfund",
116
- "libnpmhook",
117
- "libnpmorg",
118
- "libnpmpack",
119
- "libnpmpublish",
120
- "libnpmsearch",
121
- "libnpmteam",
122
- "libnpmversion",
123
- "make-fetch-happen",
124
- "minimatch",
125
- "minipass",
126
- "minipass-pipeline",
127
- "ms",
128
- "node-gyp",
129
- "nopt",
130
- "npm-audit-report",
131
- "npm-install-checks",
132
- "npm-package-arg",
133
- "npm-pick-manifest",
134
- "npm-profile",
135
- "npm-registry-fetch",
136
- "npm-user-validate",
137
- "npmlog",
138
- "p-map",
139
- "pacote",
140
- "parse-conflict-json",
141
- "proc-log",
142
- "qrcode-terminal",
143
- "read",
144
- "read-package-json",
145
- "read-package-json-fast",
146
- "semver",
147
- "ssri",
148
- "tar",
149
- "text-table",
150
- "tiny-relative-date",
151
- "treeverse",
152
- "validate-npm-package-name",
153
- "which",
154
- "write-file-atomic"
155
- ],
156
- "dependencies": {
157
- "@isaacs/string-locale-compare": "^1.1.0",
158
- "@npmcli/arborist": "^6.2.5",
159
- "@npmcli/config": "^6.1.4",
160
- "@npmcli/map-workspaces": "^3.0.2",
161
- "@npmcli/package-json": "^3.0.0",
162
- "@npmcli/run-script": "^6.0.0",
163
- "abbrev": "^2.0.0",
164
- "archy": "~1.0.0",
165
- "cacache": "^17.0.4",
166
- "chalk": "^4.1.2",
167
- "ci-info": "^3.8.0",
168
- "cli-columns": "^4.0.0",
169
- "cli-table3": "^0.6.3",
170
- "columnify": "^1.6.0",
171
- "fastest-levenshtein": "^1.0.16",
172
- "fs-minipass": "^3.0.1",
173
- "glob": "^8.1.0",
174
- "graceful-fs": "^4.2.10",
175
- "hosted-git-info": "^6.1.1",
176
- "ini": "^3.0.1",
177
- "init-package-json": "^5.0.0",
178
- "is-cidr": "^4.0.2",
179
- "json-parse-even-better-errors": "^3.0.0",
180
- "libnpmaccess": "^7.0.2",
181
- "libnpmdiff": "^5.0.13",
182
- "libnpmexec": "^5.0.13",
183
- "libnpmfund": "^4.0.13",
184
- "libnpmhook": "^9.0.3",
185
- "libnpmorg": "^5.0.3",
186
- "libnpmpack": "^5.0.13",
187
- "libnpmpublish": "^7.1.2",
188
- "libnpmsearch": "^6.0.2",
189
- "libnpmteam": "^5.0.3",
190
- "libnpmversion": "^4.0.2",
191
- "make-fetch-happen": "^11.0.3",
192
- "minimatch": "^6.2.0",
193
- "minipass": "^4.2.4",
194
- "minipass-pipeline": "^1.2.4",
195
- "ms": "^2.1.2",
196
- "node-gyp": "^9.3.1",
197
- "nopt": "^7.0.0",
198
- "npm-audit-report": "^4.0.0",
199
- "npm-install-checks": "^6.0.0",
200
- "npm-package-arg": "^10.1.0",
201
- "npm-pick-manifest": "^8.0.1",
202
- "npm-profile": "^7.0.1",
203
- "npm-registry-fetch": "^14.0.3",
204
- "npm-user-validate": "^2.0.0",
205
- "npmlog": "^7.0.1",
206
- "p-map": "^4.0.0",
207
- "pacote": "^15.1.1",
208
- "parse-conflict-json": "^3.0.0",
209
- "proc-log": "^3.0.0",
210
- "qrcode-terminal": "^0.12.0",
211
- "read": "^2.0.0",
212
- "read-package-json": "^6.0.0",
213
- "read-package-json-fast": "^3.0.2",
214
- "semver": "^7.3.8",
215
- "ssri": "^10.0.1",
216
- "tar": "^6.1.13",
217
- "text-table": "~0.2.0",
218
- "tiny-relative-date": "^1.3.0",
219
- "treeverse": "^3.0.0",
220
- "validate-npm-package-name": "^5.0.0",
221
- "which": "^3.0.0",
222
- "write-file-atomic": "^5.0.0"
223
- },
224
- "bin": {
225
- "npm": "bin/npm-cli.js",
226
- "npx": "bin/npx-cli.js"
227
- },
228
- "engines": {
229
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
230
- }
231
- },
232
- "node_modules/npm/node_modules/@colors/colors": {
233
- "version": "1.5.0",
234
- "inBundle": true,
235
- "license": "MIT",
236
- "optional": true,
237
- "engines": {
238
- "node": ">=0.1.90"
239
- }
240
- },
241
- "node_modules/npm/node_modules/@gar/promisify": {
242
- "version": "1.1.3",
243
- "inBundle": true,
244
- "license": "MIT"
245
- },
246
- "node_modules/npm/node_modules/@isaacs/string-locale-compare": {
247
- "version": "1.1.0",
248
- "inBundle": true,
249
- "license": "ISC"
250
- },
251
- "node_modules/npm/node_modules/@npmcli/arborist": {
252
- "version": "6.2.5",
253
- "inBundle": true,
254
- "license": "ISC",
255
- "dependencies": {
256
- "@isaacs/string-locale-compare": "^1.1.0",
257
- "@npmcli/fs": "^3.1.0",
258
- "@npmcli/installed-package-contents": "^2.0.2",
259
- "@npmcli/map-workspaces": "^3.0.2",
260
- "@npmcli/metavuln-calculator": "^5.0.0",
261
- "@npmcli/name-from-folder": "^2.0.0",
262
- "@npmcli/node-gyp": "^3.0.0",
263
- "@npmcli/package-json": "^3.0.0",
264
- "@npmcli/query": "^3.0.0",
265
- "@npmcli/run-script": "^6.0.0",
266
- "bin-links": "^4.0.1",
267
- "cacache": "^17.0.4",
268
- "common-ancestor-path": "^1.0.1",
269
- "hosted-git-info": "^6.1.1",
270
- "json-parse-even-better-errors": "^3.0.0",
271
- "json-stringify-nice": "^1.1.4",
272
- "minimatch": "^6.1.6",
273
- "nopt": "^7.0.0",
274
- "npm-install-checks": "^6.0.0",
275
- "npm-package-arg": "^10.1.0",
276
- "npm-pick-manifest": "^8.0.1",
277
- "npm-registry-fetch": "^14.0.3",
278
- "npmlog": "^7.0.1",
279
- "pacote": "^15.0.8",
280
- "parse-conflict-json": "^3.0.0",
281
- "proc-log": "^3.0.0",
282
- "promise-all-reject-late": "^1.0.0",
283
- "promise-call-limit": "^1.0.1",
284
- "read-package-json-fast": "^3.0.2",
285
- "semver": "^7.3.7",
286
- "ssri": "^10.0.1",
287
- "treeverse": "^3.0.0",
288
- "walk-up-path": "^1.0.0"
289
- },
290
- "bin": {
291
- "arborist": "bin/index.js"
292
- },
293
- "engines": {
294
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
295
- }
296
- },
297
- "node_modules/npm/node_modules/@npmcli/config": {
298
- "version": "6.1.4",
299
- "inBundle": true,
300
- "license": "ISC",
301
- "dependencies": {
302
- "@npmcli/map-workspaces": "^3.0.2",
303
- "ini": "^3.0.0",
304
- "nopt": "^7.0.0",
305
- "proc-log": "^3.0.0",
306
- "read-package-json-fast": "^3.0.2",
307
- "semver": "^7.3.5",
308
- "walk-up-path": "^1.0.0"
309
- },
310
- "engines": {
311
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
312
- }
313
- },
314
- "node_modules/npm/node_modules/@npmcli/disparity-colors": {
315
- "version": "3.0.0",
316
- "inBundle": true,
317
- "license": "ISC",
318
- "dependencies": {
319
- "ansi-styles": "^4.3.0"
320
- },
321
- "engines": {
322
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
323
- }
324
- },
325
- "node_modules/npm/node_modules/@npmcli/fs": {
326
- "version": "3.1.0",
327
- "inBundle": true,
328
- "license": "ISC",
329
- "dependencies": {
330
- "semver": "^7.3.5"
331
- },
332
- "engines": {
333
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
334
- }
335
- },
336
- "node_modules/npm/node_modules/@npmcli/git": {
337
- "version": "4.0.3",
338
- "inBundle": true,
339
- "license": "ISC",
340
- "dependencies": {
341
- "@npmcli/promise-spawn": "^6.0.0",
342
- "lru-cache": "^7.4.4",
343
- "mkdirp": "^1.0.4",
344
- "npm-pick-manifest": "^8.0.0",
345
- "proc-log": "^3.0.0",
346
- "promise-inflight": "^1.0.1",
347
- "promise-retry": "^2.0.1",
348
- "semver": "^7.3.5",
349
- "which": "^3.0.0"
350
- },
351
- "engines": {
352
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
353
- }
354
- },
355
- "node_modules/npm/node_modules/@npmcli/installed-package-contents": {
356
- "version": "2.0.2",
357
- "inBundle": true,
358
- "license": "ISC",
359
- "dependencies": {
360
- "npm-bundled": "^3.0.0",
361
- "npm-normalize-package-bin": "^3.0.0"
362
- },
363
- "bin": {
364
- "installed-package-contents": "lib/index.js"
365
- },
366
- "engines": {
367
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
368
- }
369
- },
370
- "node_modules/npm/node_modules/@npmcli/map-workspaces": {
371
- "version": "3.0.2",
372
- "inBundle": true,
373
- "license": "ISC",
374
- "dependencies": {
375
- "@npmcli/name-from-folder": "^2.0.0",
376
- "glob": "^8.0.1",
377
- "minimatch": "^6.1.6",
378
- "read-package-json-fast": "^3.0.0"
379
- },
380
- "engines": {
381
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
382
- }
383
- },
384
- "node_modules/npm/node_modules/@npmcli/metavuln-calculator": {
385
- "version": "5.0.0",
386
- "inBundle": true,
387
- "license": "ISC",
388
- "dependencies": {
389
- "cacache": "^17.0.0",
390
- "json-parse-even-better-errors": "^3.0.0",
391
- "pacote": "^15.0.0",
392
- "semver": "^7.3.5"
393
- },
394
- "engines": {
395
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
396
- }
397
- },
398
- "node_modules/npm/node_modules/@npmcli/move-file": {
399
- "version": "2.0.1",
400
- "inBundle": true,
401
- "license": "MIT",
402
- "dependencies": {
403
- "mkdirp": "^1.0.4",
404
- "rimraf": "^3.0.2"
405
- },
406
- "engines": {
407
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
408
- }
409
- },
410
- "node_modules/npm/node_modules/@npmcli/name-from-folder": {
411
- "version": "2.0.0",
412
- "inBundle": true,
413
- "license": "ISC",
414
- "engines": {
415
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
416
- }
417
- },
418
- "node_modules/npm/node_modules/@npmcli/node-gyp": {
419
- "version": "3.0.0",
420
- "inBundle": true,
421
- "license": "ISC",
422
- "engines": {
423
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
424
- }
425
- },
426
- "node_modules/npm/node_modules/@npmcli/package-json": {
427
- "version": "3.0.0",
428
- "inBundle": true,
429
- "license": "ISC",
430
- "dependencies": {
431
- "json-parse-even-better-errors": "^3.0.0"
432
- },
433
- "engines": {
434
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
435
- }
436
- },
437
- "node_modules/npm/node_modules/@npmcli/promise-spawn": {
438
- "version": "6.0.2",
439
- "inBundle": true,
440
- "license": "ISC",
441
- "dependencies": {
442
- "which": "^3.0.0"
443
- },
444
- "engines": {
445
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
446
- }
447
- },
448
- "node_modules/npm/node_modules/@npmcli/query": {
449
- "version": "3.0.0",
450
- "inBundle": true,
451
- "license": "ISC",
452
- "dependencies": {
453
- "postcss-selector-parser": "^6.0.10"
454
- },
455
- "engines": {
456
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
457
- }
458
- },
459
- "node_modules/npm/node_modules/@npmcli/run-script": {
460
- "version": "6.0.0",
461
- "inBundle": true,
462
- "license": "ISC",
463
- "dependencies": {
464
- "@npmcli/node-gyp": "^3.0.0",
465
- "@npmcli/promise-spawn": "^6.0.0",
466
- "node-gyp": "^9.0.0",
467
- "read-package-json-fast": "^3.0.0",
468
- "which": "^3.0.0"
469
- },
470
- "engines": {
471
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
472
- }
473
- },
474
- "node_modules/npm/node_modules/@sigstore/protobuf-specs": {
475
- "version": "0.1.0",
476
- "inBundle": true,
477
- "license": "Apache-2.0",
478
- "engines": {
479
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
480
- }
481
- },
482
- "node_modules/npm/node_modules/@tootallnate/once": {
483
- "version": "2.0.0",
484
- "inBundle": true,
485
- "license": "MIT",
486
- "engines": {
487
- "node": ">= 10"
488
- }
489
- },
490
- "node_modules/npm/node_modules/@tufjs/models": {
491
- "version": "1.0.0",
492
- "inBundle": true,
493
- "license": "MIT",
494
- "dependencies": {
495
- "minimatch": "^6.1.0"
496
- },
497
- "engines": {
498
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
499
- }
500
- },
501
- "node_modules/npm/node_modules/abbrev": {
502
- "version": "2.0.0",
503
- "inBundle": true,
504
- "license": "ISC",
505
- "engines": {
506
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
507
- }
508
- },
509
- "node_modules/npm/node_modules/abort-controller": {
510
- "version": "3.0.0",
511
- "inBundle": true,
512
- "license": "MIT",
513
- "dependencies": {
514
- "event-target-shim": "^5.0.0"
515
- },
516
- "engines": {
517
- "node": ">=6.5"
518
- }
519
- },
520
- "node_modules/npm/node_modules/agent-base": {
521
- "version": "6.0.2",
522
- "inBundle": true,
523
- "license": "MIT",
524
- "dependencies": {
525
- "debug": "4"
526
- },
527
- "engines": {
528
- "node": ">= 6.0.0"
529
- }
530
- },
531
- "node_modules/npm/node_modules/agentkeepalive": {
532
- "version": "4.3.0",
533
- "inBundle": true,
534
- "license": "MIT",
535
- "dependencies": {
536
- "debug": "^4.1.0",
537
- "depd": "^2.0.0",
538
- "humanize-ms": "^1.2.1"
539
- },
540
- "engines": {
541
- "node": ">= 8.0.0"
542
- }
543
- },
544
- "node_modules/npm/node_modules/aggregate-error": {
545
- "version": "3.1.0",
546
- "inBundle": true,
547
- "license": "MIT",
548
- "dependencies": {
549
- "clean-stack": "^2.0.0",
550
- "indent-string": "^4.0.0"
551
- },
552
- "engines": {
553
- "node": ">=8"
554
- }
555
- },
556
- "node_modules/npm/node_modules/ansi-regex": {
557
- "version": "5.0.1",
558
- "inBundle": true,
559
- "license": "MIT",
560
- "engines": {
561
- "node": ">=8"
562
- }
563
- },
564
- "node_modules/npm/node_modules/ansi-styles": {
565
- "version": "4.3.0",
566
- "inBundle": true,
567
- "license": "MIT",
568
- "dependencies": {
569
- "color-convert": "^2.0.1"
570
- },
571
- "engines": {
572
- "node": ">=8"
573
- },
574
- "funding": {
575
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
576
- }
577
- },
578
- "node_modules/npm/node_modules/aproba": {
579
- "version": "2.0.0",
580
- "inBundle": true,
581
- "license": "ISC"
582
- },
583
- "node_modules/npm/node_modules/archy": {
584
- "version": "1.0.0",
585
- "inBundle": true,
586
- "license": "MIT"
587
- },
588
- "node_modules/npm/node_modules/are-we-there-yet": {
589
- "version": "4.0.0",
590
- "inBundle": true,
591
- "license": "ISC",
592
- "dependencies": {
593
- "delegates": "^1.0.0",
594
- "readable-stream": "^4.1.0"
595
- },
596
- "engines": {
597
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
598
- }
599
- },
600
- "node_modules/npm/node_modules/balanced-match": {
601
- "version": "1.0.2",
602
- "inBundle": true,
603
- "license": "MIT"
604
- },
605
- "node_modules/npm/node_modules/base64-js": {
606
- "version": "1.5.1",
607
- "funding": [
608
- {
609
- "type": "github",
610
- "url": "https://github.com/sponsors/feross"
611
- },
612
- {
613
- "type": "patreon",
614
- "url": "https://www.patreon.com/feross"
615
- },
616
- {
617
- "type": "consulting",
618
- "url": "https://feross.org/support"
619
- }
620
- ],
621
- "inBundle": true,
622
- "license": "MIT"
623
- },
624
- "node_modules/npm/node_modules/bin-links": {
625
- "version": "4.0.1",
626
- "inBundle": true,
627
- "license": "ISC",
628
- "dependencies": {
629
- "cmd-shim": "^6.0.0",
630
- "npm-normalize-package-bin": "^3.0.0",
631
- "read-cmd-shim": "^4.0.0",
632
- "write-file-atomic": "^5.0.0"
633
- },
634
- "engines": {
635
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
636
- }
637
- },
638
- "node_modules/npm/node_modules/binary-extensions": {
639
- "version": "2.2.0",
640
- "inBundle": true,
641
- "license": "MIT",
642
- "engines": {
643
- "node": ">=8"
644
- }
645
- },
646
- "node_modules/npm/node_modules/brace-expansion": {
647
- "version": "2.0.1",
648
- "inBundle": true,
649
- "license": "MIT",
650
- "dependencies": {
651
- "balanced-match": "^1.0.0"
652
- }
653
- },
654
- "node_modules/npm/node_modules/buffer": {
655
- "version": "6.0.3",
656
- "funding": [
657
- {
658
- "type": "github",
659
- "url": "https://github.com/sponsors/feross"
660
- },
661
- {
662
- "type": "patreon",
663
- "url": "https://www.patreon.com/feross"
664
- },
665
- {
666
- "type": "consulting",
667
- "url": "https://feross.org/support"
668
- }
669
- ],
670
- "inBundle": true,
671
- "license": "MIT",
672
- "dependencies": {
673
- "base64-js": "^1.3.1",
674
- "ieee754": "^1.2.1"
675
- }
676
- },
677
- "node_modules/npm/node_modules/builtins": {
678
- "version": "5.0.1",
679
- "inBundle": true,
680
- "license": "MIT",
681
- "dependencies": {
682
- "semver": "^7.0.0"
683
- }
684
- },
685
- "node_modules/npm/node_modules/cacache": {
686
- "version": "17.0.4",
687
- "inBundle": true,
688
- "license": "ISC",
689
- "dependencies": {
690
- "@npmcli/fs": "^3.1.0",
691
- "fs-minipass": "^3.0.0",
692
- "glob": "^8.0.1",
693
- "lru-cache": "^7.7.1",
694
- "minipass": "^4.0.0",
695
- "minipass-collect": "^1.0.2",
696
- "minipass-flush": "^1.0.5",
697
- "minipass-pipeline": "^1.2.4",
698
- "p-map": "^4.0.0",
699
- "promise-inflight": "^1.0.1",
700
- "ssri": "^10.0.0",
701
- "tar": "^6.1.11",
702
- "unique-filename": "^3.0.0"
703
- },
704
- "engines": {
705
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
706
- }
707
- },
708
- "node_modules/npm/node_modules/chalk": {
709
- "version": "4.1.2",
710
- "inBundle": true,
711
- "license": "MIT",
712
- "dependencies": {
713
- "ansi-styles": "^4.1.0",
714
- "supports-color": "^7.1.0"
715
- },
716
- "engines": {
717
- "node": ">=10"
718
- },
719
- "funding": {
720
- "url": "https://github.com/chalk/chalk?sponsor=1"
721
- }
722
- },
723
- "node_modules/npm/node_modules/chownr": {
724
- "version": "2.0.0",
725
- "inBundle": true,
726
- "license": "ISC",
727
- "engines": {
728
- "node": ">=10"
729
- }
730
- },
731
- "node_modules/npm/node_modules/ci-info": {
732
- "version": "3.8.0",
733
- "funding": [
734
- {
735
- "type": "github",
736
- "url": "https://github.com/sponsors/sibiraj-s"
737
- }
738
- ],
739
- "inBundle": true,
740
- "license": "MIT",
741
- "engines": {
742
- "node": ">=8"
743
- }
744
- },
745
- "node_modules/npm/node_modules/cidr-regex": {
746
- "version": "3.1.1",
747
- "inBundle": true,
748
- "license": "BSD-2-Clause",
749
- "dependencies": {
750
- "ip-regex": "^4.1.0"
751
- },
752
- "engines": {
753
- "node": ">=10"
754
- }
755
- },
756
- "node_modules/npm/node_modules/clean-stack": {
757
- "version": "2.2.0",
758
- "inBundle": true,
759
- "license": "MIT",
760
- "engines": {
761
- "node": ">=6"
762
- }
763
- },
764
- "node_modules/npm/node_modules/cli-columns": {
765
- "version": "4.0.0",
766
- "inBundle": true,
767
- "license": "MIT",
768
- "dependencies": {
769
- "string-width": "^4.2.3",
770
- "strip-ansi": "^6.0.1"
771
- },
772
- "engines": {
773
- "node": ">= 10"
774
- }
775
- },
776
- "node_modules/npm/node_modules/cli-table3": {
777
- "version": "0.6.3",
778
- "inBundle": true,
779
- "license": "MIT",
780
- "dependencies": {
781
- "string-width": "^4.2.0"
782
- },
783
- "engines": {
784
- "node": "10.* || >= 12.*"
785
- },
786
- "optionalDependencies": {
787
- "@colors/colors": "1.5.0"
788
- }
789
- },
790
- "node_modules/npm/node_modules/clone": {
791
- "version": "1.0.4",
792
- "inBundle": true,
793
- "license": "MIT",
794
- "engines": {
795
- "node": ">=0.8"
796
- }
797
- },
798
- "node_modules/npm/node_modules/cmd-shim": {
799
- "version": "6.0.1",
800
- "inBundle": true,
801
- "license": "ISC",
802
- "engines": {
803
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
804
- }
805
- },
806
- "node_modules/npm/node_modules/color-convert": {
807
- "version": "2.0.1",
808
- "inBundle": true,
809
- "license": "MIT",
810
- "dependencies": {
811
- "color-name": "~1.1.4"
812
- },
813
- "engines": {
814
- "node": ">=7.0.0"
815
- }
816
- },
817
- "node_modules/npm/node_modules/color-name": {
818
- "version": "1.1.4",
819
- "inBundle": true,
820
- "license": "MIT"
821
- },
822
- "node_modules/npm/node_modules/color-support": {
823
- "version": "1.1.3",
824
- "inBundle": true,
825
- "license": "ISC",
826
- "bin": {
827
- "color-support": "bin.js"
828
- }
829
- },
830
- "node_modules/npm/node_modules/columnify": {
831
- "version": "1.6.0",
832
- "inBundle": true,
833
- "license": "MIT",
834
- "dependencies": {
835
- "strip-ansi": "^6.0.1",
836
- "wcwidth": "^1.0.0"
837
- },
838
- "engines": {
839
- "node": ">=8.0.0"
840
- }
841
- },
842
- "node_modules/npm/node_modules/common-ancestor-path": {
843
- "version": "1.0.1",
844
- "inBundle": true,
845
- "license": "ISC"
846
- },
847
- "node_modules/npm/node_modules/concat-map": {
848
- "version": "0.0.1",
849
- "inBundle": true,
850
- "license": "MIT"
851
- },
852
- "node_modules/npm/node_modules/console-control-strings": {
853
- "version": "1.1.0",
854
- "inBundle": true,
855
- "license": "ISC"
856
- },
857
- "node_modules/npm/node_modules/cssesc": {
858
- "version": "3.0.0",
859
- "inBundle": true,
860
- "license": "MIT",
861
- "bin": {
862
- "cssesc": "bin/cssesc"
863
- },
864
- "engines": {
865
- "node": ">=4"
866
- }
867
- },
868
- "node_modules/npm/node_modules/debug": {
869
- "version": "4.3.4",
870
- "inBundle": true,
871
- "license": "MIT",
872
- "dependencies": {
873
- "ms": "2.1.2"
874
- },
875
- "engines": {
876
- "node": ">=6.0"
877
- },
878
- "peerDependenciesMeta": {
879
- "supports-color": {
880
- "optional": true
881
- }
882
- }
883
- },
884
- "node_modules/npm/node_modules/debug/node_modules/ms": {
885
- "version": "2.1.2",
886
- "inBundle": true,
887
- "license": "MIT"
888
- },
889
- "node_modules/npm/node_modules/defaults": {
890
- "version": "1.0.4",
891
- "inBundle": true,
892
- "license": "MIT",
893
- "dependencies": {
894
- "clone": "^1.0.2"
895
- },
896
- "funding": {
897
- "url": "https://github.com/sponsors/sindresorhus"
898
- }
899
- },
900
- "node_modules/npm/node_modules/delegates": {
901
- "version": "1.0.0",
902
- "inBundle": true,
903
- "license": "MIT"
904
- },
905
- "node_modules/npm/node_modules/depd": {
906
- "version": "2.0.0",
907
- "inBundle": true,
908
- "license": "MIT",
909
- "engines": {
910
- "node": ">= 0.8"
911
- }
912
- },
913
- "node_modules/npm/node_modules/diff": {
914
- "version": "5.1.0",
915
- "inBundle": true,
916
- "license": "BSD-3-Clause",
917
- "engines": {
918
- "node": ">=0.3.1"
919
- }
920
- },
921
- "node_modules/npm/node_modules/emoji-regex": {
922
- "version": "8.0.0",
923
- "inBundle": true,
924
- "license": "MIT"
925
- },
926
- "node_modules/npm/node_modules/encoding": {
927
- "version": "0.1.13",
928
- "inBundle": true,
929
- "license": "MIT",
930
- "optional": true,
931
- "dependencies": {
932
- "iconv-lite": "^0.6.2"
933
- }
934
- },
935
- "node_modules/npm/node_modules/env-paths": {
936
- "version": "2.2.1",
937
- "inBundle": true,
938
- "license": "MIT",
939
- "engines": {
940
- "node": ">=6"
941
- }
942
- },
943
- "node_modules/npm/node_modules/err-code": {
944
- "version": "2.0.3",
945
- "inBundle": true,
946
- "license": "MIT"
947
- },
948
- "node_modules/npm/node_modules/event-target-shim": {
949
- "version": "5.0.1",
950
- "inBundle": true,
951
- "license": "MIT",
952
- "engines": {
953
- "node": ">=6"
954
- }
955
- },
956
- "node_modules/npm/node_modules/events": {
957
- "version": "3.3.0",
958
- "inBundle": true,
959
- "license": "MIT",
960
- "engines": {
961
- "node": ">=0.8.x"
962
- }
963
- },
964
- "node_modules/npm/node_modules/fastest-levenshtein": {
965
- "version": "1.0.16",
966
- "inBundle": true,
967
- "license": "MIT",
968
- "engines": {
969
- "node": ">= 4.9.1"
970
- }
971
- },
972
- "node_modules/npm/node_modules/fs-minipass": {
973
- "version": "3.0.1",
974
- "inBundle": true,
975
- "license": "ISC",
976
- "dependencies": {
977
- "minipass": "^4.0.0"
978
- },
979
- "engines": {
980
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
981
- }
982
- },
983
- "node_modules/npm/node_modules/fs.realpath": {
984
- "version": "1.0.0",
985
- "inBundle": true,
986
- "license": "ISC"
987
- },
988
- "node_modules/npm/node_modules/function-bind": {
989
- "version": "1.1.1",
990
- "inBundle": true,
991
- "license": "MIT"
992
- },
993
- "node_modules/npm/node_modules/gauge": {
994
- "version": "5.0.0",
995
- "inBundle": true,
996
- "license": "ISC",
997
- "dependencies": {
998
- "aproba": "^1.0.3 || ^2.0.0",
999
- "color-support": "^1.1.3",
1000
- "console-control-strings": "^1.1.0",
1001
- "has-unicode": "^2.0.1",
1002
- "signal-exit": "^3.0.7",
1003
- "string-width": "^4.2.3",
1004
- "strip-ansi": "^6.0.1",
1005
- "wide-align": "^1.1.5"
1006
- },
1007
- "engines": {
1008
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1009
- }
1010
- },
1011
- "node_modules/npm/node_modules/glob": {
1012
- "version": "8.1.0",
1013
- "inBundle": true,
1014
- "license": "ISC",
1015
- "dependencies": {
1016
- "fs.realpath": "^1.0.0",
1017
- "inflight": "^1.0.4",
1018
- "inherits": "2",
1019
- "minimatch": "^5.0.1",
1020
- "once": "^1.3.0"
1021
- },
1022
- "engines": {
1023
- "node": ">=12"
1024
- },
1025
- "funding": {
1026
- "url": "https://github.com/sponsors/isaacs"
1027
- }
1028
- },
1029
- "node_modules/npm/node_modules/glob/node_modules/minimatch": {
1030
- "version": "5.1.6",
1031
- "inBundle": true,
1032
- "license": "ISC",
1033
- "dependencies": {
1034
- "brace-expansion": "^2.0.1"
1035
- },
1036
- "engines": {
1037
- "node": ">=10"
1038
- }
1039
- },
1040
- "node_modules/npm/node_modules/graceful-fs": {
1041
- "version": "4.2.10",
1042
- "inBundle": true,
1043
- "license": "ISC"
1044
- },
1045
- "node_modules/npm/node_modules/has": {
1046
- "version": "1.0.3",
1047
- "inBundle": true,
1048
- "license": "MIT",
1049
- "dependencies": {
1050
- "function-bind": "^1.1.1"
1051
- },
1052
- "engines": {
1053
- "node": ">= 0.4.0"
1054
- }
1055
- },
1056
- "node_modules/npm/node_modules/has-flag": {
1057
- "version": "4.0.0",
1058
- "inBundle": true,
1059
- "license": "MIT",
1060
- "engines": {
1061
- "node": ">=8"
1062
- }
1063
- },
1064
- "node_modules/npm/node_modules/has-unicode": {
1065
- "version": "2.0.1",
1066
- "inBundle": true,
1067
- "license": "ISC"
1068
- },
1069
- "node_modules/npm/node_modules/hosted-git-info": {
1070
- "version": "6.1.1",
1071
- "inBundle": true,
1072
- "license": "ISC",
1073
- "dependencies": {
1074
- "lru-cache": "^7.5.1"
1075
- },
1076
- "engines": {
1077
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1078
- }
1079
- },
1080
- "node_modules/npm/node_modules/http-cache-semantics": {
1081
- "version": "4.1.1",
1082
- "inBundle": true,
1083
- "license": "BSD-2-Clause"
1084
- },
1085
- "node_modules/npm/node_modules/http-proxy-agent": {
1086
- "version": "5.0.0",
1087
- "inBundle": true,
1088
- "license": "MIT",
1089
- "dependencies": {
1090
- "@tootallnate/once": "2",
1091
- "agent-base": "6",
1092
- "debug": "4"
1093
- },
1094
- "engines": {
1095
- "node": ">= 6"
1096
- }
1097
- },
1098
- "node_modules/npm/node_modules/https-proxy-agent": {
1099
- "version": "5.0.1",
1100
- "inBundle": true,
1101
- "license": "MIT",
1102
- "dependencies": {
1103
- "agent-base": "6",
1104
- "debug": "4"
1105
- },
1106
- "engines": {
1107
- "node": ">= 6"
1108
- }
1109
- },
1110
- "node_modules/npm/node_modules/humanize-ms": {
1111
- "version": "1.2.1",
1112
- "inBundle": true,
1113
- "license": "MIT",
1114
- "dependencies": {
1115
- "ms": "^2.0.0"
1116
- }
1117
- },
1118
- "node_modules/npm/node_modules/iconv-lite": {
1119
- "version": "0.6.3",
1120
- "inBundle": true,
1121
- "license": "MIT",
1122
- "optional": true,
1123
- "dependencies": {
1124
- "safer-buffer": ">= 2.1.2 < 3.0.0"
1125
- },
1126
- "engines": {
1127
- "node": ">=0.10.0"
1128
- }
1129
- },
1130
- "node_modules/npm/node_modules/ieee754": {
1131
- "version": "1.2.1",
1132
- "funding": [
1133
- {
1134
- "type": "github",
1135
- "url": "https://github.com/sponsors/feross"
1136
- },
1137
- {
1138
- "type": "patreon",
1139
- "url": "https://www.patreon.com/feross"
1140
- },
1141
- {
1142
- "type": "consulting",
1143
- "url": "https://feross.org/support"
1144
- }
1145
- ],
1146
- "inBundle": true,
1147
- "license": "BSD-3-Clause"
1148
- },
1149
- "node_modules/npm/node_modules/ignore-walk": {
1150
- "version": "6.0.1",
1151
- "inBundle": true,
1152
- "license": "ISC",
1153
- "dependencies": {
1154
- "minimatch": "^6.1.6"
1155
- },
1156
- "engines": {
1157
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1158
- }
1159
- },
1160
- "node_modules/npm/node_modules/imurmurhash": {
1161
- "version": "0.1.4",
1162
- "inBundle": true,
1163
- "license": "MIT",
1164
- "engines": {
1165
- "node": ">=0.8.19"
1166
- }
1167
- },
1168
- "node_modules/npm/node_modules/indent-string": {
1169
- "version": "4.0.0",
1170
- "inBundle": true,
1171
- "license": "MIT",
1172
- "engines": {
1173
- "node": ">=8"
1174
- }
1175
- },
1176
- "node_modules/npm/node_modules/infer-owner": {
1177
- "version": "1.0.4",
1178
- "inBundle": true,
1179
- "license": "ISC"
1180
- },
1181
- "node_modules/npm/node_modules/inflight": {
1182
- "version": "1.0.6",
1183
- "inBundle": true,
1184
- "license": "ISC",
1185
- "dependencies": {
1186
- "once": "^1.3.0",
1187
- "wrappy": "1"
1188
- }
1189
- },
1190
- "node_modules/npm/node_modules/inherits": {
1191
- "version": "2.0.4",
1192
- "inBundle": true,
1193
- "license": "ISC"
1194
- },
1195
- "node_modules/npm/node_modules/ini": {
1196
- "version": "3.0.1",
1197
- "inBundle": true,
1198
- "license": "ISC",
1199
- "engines": {
1200
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
1201
- }
1202
- },
1203
- "node_modules/npm/node_modules/init-package-json": {
1204
- "version": "5.0.0",
1205
- "inBundle": true,
1206
- "license": "ISC",
1207
- "dependencies": {
1208
- "npm-package-arg": "^10.0.0",
1209
- "promzard": "^1.0.0",
1210
- "read": "^2.0.0",
1211
- "read-package-json": "^6.0.0",
1212
- "semver": "^7.3.5",
1213
- "validate-npm-package-license": "^3.0.4",
1214
- "validate-npm-package-name": "^5.0.0"
1215
- },
1216
- "engines": {
1217
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1218
- }
1219
- },
1220
- "node_modules/npm/node_modules/ip": {
1221
- "version": "2.0.0",
1222
- "inBundle": true,
1223
- "license": "MIT"
1224
- },
1225
- "node_modules/npm/node_modules/ip-regex": {
1226
- "version": "4.3.0",
1227
- "inBundle": true,
1228
- "license": "MIT",
1229
- "engines": {
1230
- "node": ">=8"
1231
- }
1232
- },
1233
- "node_modules/npm/node_modules/is-cidr": {
1234
- "version": "4.0.2",
1235
- "inBundle": true,
1236
- "license": "BSD-2-Clause",
1237
- "dependencies": {
1238
- "cidr-regex": "^3.1.1"
1239
- },
1240
- "engines": {
1241
- "node": ">=10"
1242
- }
1243
- },
1244
- "node_modules/npm/node_modules/is-core-module": {
1245
- "version": "2.11.0",
1246
- "inBundle": true,
1247
- "license": "MIT",
1248
- "dependencies": {
1249
- "has": "^1.0.3"
1250
- },
1251
- "funding": {
1252
- "url": "https://github.com/sponsors/ljharb"
1253
- }
1254
- },
1255
- "node_modules/npm/node_modules/is-fullwidth-code-point": {
1256
- "version": "3.0.0",
1257
- "inBundle": true,
1258
- "license": "MIT",
1259
- "engines": {
1260
- "node": ">=8"
1261
- }
1262
- },
1263
- "node_modules/npm/node_modules/is-lambda": {
1264
- "version": "1.0.1",
1265
- "inBundle": true,
1266
- "license": "MIT"
1267
- },
1268
- "node_modules/npm/node_modules/isexe": {
1269
- "version": "2.0.0",
1270
- "inBundle": true,
1271
- "license": "ISC"
1272
- },
1273
- "node_modules/npm/node_modules/json-parse-even-better-errors": {
1274
- "version": "3.0.0",
1275
- "inBundle": true,
1276
- "license": "MIT",
1277
- "engines": {
1278
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1279
- }
1280
- },
1281
- "node_modules/npm/node_modules/json-stringify-nice": {
1282
- "version": "1.1.4",
1283
- "inBundle": true,
1284
- "license": "ISC",
1285
- "funding": {
1286
- "url": "https://github.com/sponsors/isaacs"
1287
- }
1288
- },
1289
- "node_modules/npm/node_modules/jsonparse": {
1290
- "version": "1.3.1",
1291
- "engines": [
1292
- "node >= 0.2.0"
1293
- ],
1294
- "inBundle": true,
1295
- "license": "MIT"
1296
- },
1297
- "node_modules/npm/node_modules/just-diff": {
1298
- "version": "5.2.0",
1299
- "inBundle": true,
1300
- "license": "MIT"
1301
- },
1302
- "node_modules/npm/node_modules/just-diff-apply": {
1303
- "version": "5.5.0",
1304
- "inBundle": true,
1305
- "license": "MIT"
1306
- },
1307
- "node_modules/npm/node_modules/libnpmaccess": {
1308
- "version": "7.0.2",
1309
- "inBundle": true,
1310
- "license": "ISC",
1311
- "dependencies": {
1312
- "npm-package-arg": "^10.1.0",
1313
- "npm-registry-fetch": "^14.0.3"
1314
- },
1315
- "engines": {
1316
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1317
- }
1318
- },
1319
- "node_modules/npm/node_modules/libnpmdiff": {
1320
- "version": "5.0.13",
1321
- "inBundle": true,
1322
- "license": "ISC",
1323
- "dependencies": {
1324
- "@npmcli/arborist": "^6.2.5",
1325
- "@npmcli/disparity-colors": "^3.0.0",
1326
- "@npmcli/installed-package-contents": "^2.0.2",
1327
- "binary-extensions": "^2.2.0",
1328
- "diff": "^5.1.0",
1329
- "minimatch": "^6.1.6",
1330
- "npm-package-arg": "^10.1.0",
1331
- "pacote": "^15.0.8",
1332
- "tar": "^6.1.13"
1333
- },
1334
- "engines": {
1335
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1336
- }
1337
- },
1338
- "node_modules/npm/node_modules/libnpmexec": {
1339
- "version": "5.0.13",
1340
- "inBundle": true,
1341
- "license": "ISC",
1342
- "dependencies": {
1343
- "@npmcli/arborist": "^6.2.5",
1344
- "@npmcli/run-script": "^6.0.0",
1345
- "chalk": "^4.1.0",
1346
- "ci-info": "^3.7.1",
1347
- "npm-package-arg": "^10.1.0",
1348
- "npmlog": "^7.0.1",
1349
- "pacote": "^15.0.8",
1350
- "proc-log": "^3.0.0",
1351
- "read": "^2.0.0",
1352
- "read-package-json-fast": "^3.0.2",
1353
- "semver": "^7.3.7",
1354
- "walk-up-path": "^1.0.0"
1355
- },
1356
- "engines": {
1357
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1358
- }
1359
- },
1360
- "node_modules/npm/node_modules/libnpmfund": {
1361
- "version": "4.0.13",
1362
- "inBundle": true,
1363
- "license": "ISC",
1364
- "dependencies": {
1365
- "@npmcli/arborist": "^6.2.5"
1366
- },
1367
- "engines": {
1368
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1369
- }
1370
- },
1371
- "node_modules/npm/node_modules/libnpmhook": {
1372
- "version": "9.0.3",
1373
- "inBundle": true,
1374
- "license": "ISC",
1375
- "dependencies": {
1376
- "aproba": "^2.0.0",
1377
- "npm-registry-fetch": "^14.0.3"
1378
- },
1379
- "engines": {
1380
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1381
- }
1382
- },
1383
- "node_modules/npm/node_modules/libnpmorg": {
1384
- "version": "5.0.3",
1385
- "inBundle": true,
1386
- "license": "ISC",
1387
- "dependencies": {
1388
- "aproba": "^2.0.0",
1389
- "npm-registry-fetch": "^14.0.3"
1390
- },
1391
- "engines": {
1392
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1393
- }
1394
- },
1395
- "node_modules/npm/node_modules/libnpmpack": {
1396
- "version": "5.0.13",
1397
- "inBundle": true,
1398
- "license": "ISC",
1399
- "dependencies": {
1400
- "@npmcli/arborist": "^6.2.5",
1401
- "@npmcli/run-script": "^6.0.0",
1402
- "npm-package-arg": "^10.1.0",
1403
- "pacote": "^15.0.8"
1404
- },
1405
- "engines": {
1406
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1407
- }
1408
- },
1409
- "node_modules/npm/node_modules/libnpmpublish": {
1410
- "version": "7.1.2",
1411
- "inBundle": true,
1412
- "license": "ISC",
1413
- "dependencies": {
1414
- "ci-info": "^3.6.1",
1415
- "normalize-package-data": "^5.0.0",
1416
- "npm-package-arg": "^10.1.0",
1417
- "npm-registry-fetch": "^14.0.3",
1418
- "proc-log": "^3.0.0",
1419
- "semver": "^7.3.7",
1420
- "sigstore": "^1.0.0",
1421
- "ssri": "^10.0.1"
1422
- },
1423
- "engines": {
1424
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1425
- }
1426
- },
1427
- "node_modules/npm/node_modules/libnpmsearch": {
1428
- "version": "6.0.2",
1429
- "inBundle": true,
1430
- "license": "ISC",
1431
- "dependencies": {
1432
- "npm-registry-fetch": "^14.0.3"
1433
- },
1434
- "engines": {
1435
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1436
- }
1437
- },
1438
- "node_modules/npm/node_modules/libnpmteam": {
1439
- "version": "5.0.3",
1440
- "inBundle": true,
1441
- "license": "ISC",
1442
- "dependencies": {
1443
- "aproba": "^2.0.0",
1444
- "npm-registry-fetch": "^14.0.3"
1445
- },
1446
- "engines": {
1447
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1448
- }
1449
- },
1450
- "node_modules/npm/node_modules/libnpmversion": {
1451
- "version": "4.0.2",
1452
- "inBundle": true,
1453
- "license": "ISC",
1454
- "dependencies": {
1455
- "@npmcli/git": "^4.0.1",
1456
- "@npmcli/run-script": "^6.0.0",
1457
- "json-parse-even-better-errors": "^3.0.0",
1458
- "proc-log": "^3.0.0",
1459
- "semver": "^7.3.7"
1460
- },
1461
- "engines": {
1462
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1463
- }
1464
- },
1465
- "node_modules/npm/node_modules/lru-cache": {
1466
- "version": "7.18.3",
1467
- "inBundle": true,
1468
- "license": "ISC",
1469
- "engines": {
1470
- "node": ">=12"
1471
- }
1472
- },
1473
- "node_modules/npm/node_modules/make-fetch-happen": {
1474
- "version": "11.0.3",
1475
- "inBundle": true,
1476
- "license": "ISC",
1477
- "dependencies": {
1478
- "agentkeepalive": "^4.2.1",
1479
- "cacache": "^17.0.0",
1480
- "http-cache-semantics": "^4.1.1",
1481
- "http-proxy-agent": "^5.0.0",
1482
- "https-proxy-agent": "^5.0.0",
1483
- "is-lambda": "^1.0.1",
1484
- "lru-cache": "^7.7.1",
1485
- "minipass": "^4.0.0",
1486
- "minipass-fetch": "^3.0.0",
1487
- "minipass-flush": "^1.0.5",
1488
- "minipass-pipeline": "^1.2.4",
1489
- "negotiator": "^0.6.3",
1490
- "promise-retry": "^2.0.1",
1491
- "socks-proxy-agent": "^7.0.0",
1492
- "ssri": "^10.0.0"
1493
- },
1494
- "engines": {
1495
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1496
- }
1497
- },
1498
- "node_modules/npm/node_modules/minimatch": {
1499
- "version": "6.2.0",
1500
- "inBundle": true,
1501
- "license": "ISC",
1502
- "dependencies": {
1503
- "brace-expansion": "^2.0.1"
1504
- },
1505
- "engines": {
1506
- "node": ">=10"
1507
- },
1508
- "funding": {
1509
- "url": "https://github.com/sponsors/isaacs"
1510
- }
1511
- },
1512
- "node_modules/npm/node_modules/minipass": {
1513
- "version": "4.2.4",
1514
- "inBundle": true,
1515
- "license": "ISC",
1516
- "engines": {
1517
- "node": ">=8"
1518
- }
1519
- },
1520
- "node_modules/npm/node_modules/minipass-collect": {
1521
- "version": "1.0.2",
1522
- "inBundle": true,
1523
- "license": "ISC",
1524
- "dependencies": {
1525
- "minipass": "^3.0.0"
1526
- },
1527
- "engines": {
1528
- "node": ">= 8"
1529
- }
1530
- },
1531
- "node_modules/npm/node_modules/minipass-collect/node_modules/minipass": {
1532
- "version": "3.3.6",
1533
- "inBundle": true,
1534
- "license": "ISC",
1535
- "dependencies": {
1536
- "yallist": "^4.0.0"
1537
- },
1538
- "engines": {
1539
- "node": ">=8"
1540
- }
1541
- },
1542
- "node_modules/npm/node_modules/minipass-fetch": {
1543
- "version": "3.0.1",
1544
- "inBundle": true,
1545
- "license": "MIT",
1546
- "dependencies": {
1547
- "minipass": "^4.0.0",
1548
- "minipass-sized": "^1.0.3",
1549
- "minizlib": "^2.1.2"
1550
- },
1551
- "engines": {
1552
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1553
- },
1554
- "optionalDependencies": {
1555
- "encoding": "^0.1.13"
1556
- }
1557
- },
1558
- "node_modules/npm/node_modules/minipass-flush": {
1559
- "version": "1.0.5",
1560
- "inBundle": true,
1561
- "license": "ISC",
1562
- "dependencies": {
1563
- "minipass": "^3.0.0"
1564
- },
1565
- "engines": {
1566
- "node": ">= 8"
1567
- }
1568
- },
1569
- "node_modules/npm/node_modules/minipass-flush/node_modules/minipass": {
1570
- "version": "3.3.6",
1571
- "inBundle": true,
1572
- "license": "ISC",
1573
- "dependencies": {
1574
- "yallist": "^4.0.0"
1575
- },
1576
- "engines": {
1577
- "node": ">=8"
1578
- }
1579
- },
1580
- "node_modules/npm/node_modules/minipass-json-stream": {
1581
- "version": "1.0.1",
1582
- "inBundle": true,
1583
- "license": "MIT",
1584
- "dependencies": {
1585
- "jsonparse": "^1.3.1",
1586
- "minipass": "^3.0.0"
1587
- }
1588
- },
1589
- "node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass": {
1590
- "version": "3.3.6",
1591
- "inBundle": true,
1592
- "license": "ISC",
1593
- "dependencies": {
1594
- "yallist": "^4.0.0"
1595
- },
1596
- "engines": {
1597
- "node": ">=8"
1598
- }
1599
- },
1600
- "node_modules/npm/node_modules/minipass-pipeline": {
1601
- "version": "1.2.4",
1602
- "inBundle": true,
1603
- "license": "ISC",
1604
- "dependencies": {
1605
- "minipass": "^3.0.0"
1606
- },
1607
- "engines": {
1608
- "node": ">=8"
1609
- }
1610
- },
1611
- "node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass": {
1612
- "version": "3.3.6",
1613
- "inBundle": true,
1614
- "license": "ISC",
1615
- "dependencies": {
1616
- "yallist": "^4.0.0"
1617
- },
1618
- "engines": {
1619
- "node": ">=8"
1620
- }
1621
- },
1622
- "node_modules/npm/node_modules/minipass-sized": {
1623
- "version": "1.0.3",
1624
- "inBundle": true,
1625
- "license": "ISC",
1626
- "dependencies": {
1627
- "minipass": "^3.0.0"
1628
- },
1629
- "engines": {
1630
- "node": ">=8"
1631
- }
1632
- },
1633
- "node_modules/npm/node_modules/minipass-sized/node_modules/minipass": {
1634
- "version": "3.3.6",
1635
- "inBundle": true,
1636
- "license": "ISC",
1637
- "dependencies": {
1638
- "yallist": "^4.0.0"
1639
- },
1640
- "engines": {
1641
- "node": ">=8"
1642
- }
1643
- },
1644
- "node_modules/npm/node_modules/minizlib": {
1645
- "version": "2.1.2",
1646
- "inBundle": true,
1647
- "license": "MIT",
1648
- "dependencies": {
1649
- "minipass": "^3.0.0",
1650
- "yallist": "^4.0.0"
1651
- },
1652
- "engines": {
1653
- "node": ">= 8"
1654
- }
1655
- },
1656
- "node_modules/npm/node_modules/minizlib/node_modules/minipass": {
1657
- "version": "3.3.6",
1658
- "inBundle": true,
1659
- "license": "ISC",
1660
- "dependencies": {
1661
- "yallist": "^4.0.0"
1662
- },
1663
- "engines": {
1664
- "node": ">=8"
1665
- }
1666
- },
1667
- "node_modules/npm/node_modules/mkdirp": {
1668
- "version": "1.0.4",
1669
- "inBundle": true,
1670
- "license": "MIT",
1671
- "bin": {
1672
- "mkdirp": "bin/cmd.js"
1673
- },
1674
- "engines": {
1675
- "node": ">=10"
1676
- }
1677
- },
1678
- "node_modules/npm/node_modules/ms": {
1679
- "version": "2.1.3",
1680
- "inBundle": true,
1681
- "license": "MIT"
1682
- },
1683
- "node_modules/npm/node_modules/mute-stream": {
1684
- "version": "1.0.0",
1685
- "inBundle": true,
1686
- "license": "ISC",
1687
- "engines": {
1688
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1689
- }
1690
- },
1691
- "node_modules/npm/node_modules/negotiator": {
1692
- "version": "0.6.3",
1693
- "inBundle": true,
1694
- "license": "MIT",
1695
- "engines": {
1696
- "node": ">= 0.6"
1697
- }
1698
- },
1699
- "node_modules/npm/node_modules/node-gyp": {
1700
- "version": "9.3.1",
1701
- "inBundle": true,
1702
- "license": "MIT",
1703
- "dependencies": {
1704
- "env-paths": "^2.2.0",
1705
- "glob": "^7.1.4",
1706
- "graceful-fs": "^4.2.6",
1707
- "make-fetch-happen": "^10.0.3",
1708
- "nopt": "^6.0.0",
1709
- "npmlog": "^6.0.0",
1710
- "rimraf": "^3.0.2",
1711
- "semver": "^7.3.5",
1712
- "tar": "^6.1.2",
1713
- "which": "^2.0.2"
1714
- },
1715
- "bin": {
1716
- "node-gyp": "bin/node-gyp.js"
1717
- },
1718
- "engines": {
1719
- "node": "^12.13 || ^14.13 || >=16"
1720
- }
1721
- },
1722
- "node_modules/npm/node_modules/node-gyp/node_modules/@npmcli/fs": {
1723
- "version": "2.1.2",
1724
- "inBundle": true,
1725
- "license": "ISC",
1726
- "dependencies": {
1727
- "@gar/promisify": "^1.1.3",
1728
- "semver": "^7.3.5"
1729
- },
1730
- "engines": {
1731
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
1732
- }
1733
- },
1734
- "node_modules/npm/node_modules/node-gyp/node_modules/abbrev": {
1735
- "version": "1.1.1",
1736
- "inBundle": true,
1737
- "license": "ISC"
1738
- },
1739
- "node_modules/npm/node_modules/node-gyp/node_modules/are-we-there-yet": {
1740
- "version": "3.0.1",
1741
- "inBundle": true,
1742
- "license": "ISC",
1743
- "dependencies": {
1744
- "delegates": "^1.0.0",
1745
- "readable-stream": "^3.6.0"
1746
- },
1747
- "engines": {
1748
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
1749
- }
1750
- },
1751
- "node_modules/npm/node_modules/node-gyp/node_modules/brace-expansion": {
1752
- "version": "1.1.11",
1753
- "inBundle": true,
1754
- "license": "MIT",
1755
- "dependencies": {
1756
- "balanced-match": "^1.0.0",
1757
- "concat-map": "0.0.1"
1758
- }
1759
- },
1760
- "node_modules/npm/node_modules/node-gyp/node_modules/cacache": {
1761
- "version": "16.1.3",
1762
- "inBundle": true,
1763
- "license": "ISC",
1764
- "dependencies": {
1765
- "@npmcli/fs": "^2.1.0",
1766
- "@npmcli/move-file": "^2.0.0",
1767
- "chownr": "^2.0.0",
1768
- "fs-minipass": "^2.1.0",
1769
- "glob": "^8.0.1",
1770
- "infer-owner": "^1.0.4",
1771
- "lru-cache": "^7.7.1",
1772
- "minipass": "^3.1.6",
1773
- "minipass-collect": "^1.0.2",
1774
- "minipass-flush": "^1.0.5",
1775
- "minipass-pipeline": "^1.2.4",
1776
- "mkdirp": "^1.0.4",
1777
- "p-map": "^4.0.0",
1778
- "promise-inflight": "^1.0.1",
1779
- "rimraf": "^3.0.2",
1780
- "ssri": "^9.0.0",
1781
- "tar": "^6.1.11",
1782
- "unique-filename": "^2.0.0"
1783
- },
1784
- "engines": {
1785
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
1786
- }
1787
- },
1788
- "node_modules/npm/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion": {
1789
- "version": "2.0.1",
1790
- "inBundle": true,
1791
- "license": "MIT",
1792
- "dependencies": {
1793
- "balanced-match": "^1.0.0"
1794
- }
1795
- },
1796
- "node_modules/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob": {
1797
- "version": "8.1.0",
1798
- "inBundle": true,
1799
- "license": "ISC",
1800
- "dependencies": {
1801
- "fs.realpath": "^1.0.0",
1802
- "inflight": "^1.0.4",
1803
- "inherits": "2",
1804
- "minimatch": "^5.0.1",
1805
- "once": "^1.3.0"
1806
- },
1807
- "engines": {
1808
- "node": ">=12"
1809
- },
1810
- "funding": {
1811
- "url": "https://github.com/sponsors/isaacs"
1812
- }
1813
- },
1814
- "node_modules/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch": {
1815
- "version": "5.1.6",
1816
- "inBundle": true,
1817
- "license": "ISC",
1818
- "dependencies": {
1819
- "brace-expansion": "^2.0.1"
1820
- },
1821
- "engines": {
1822
- "node": ">=10"
1823
- }
1824
- },
1825
- "node_modules/npm/node_modules/node-gyp/node_modules/fs-minipass": {
1826
- "version": "2.1.0",
1827
- "inBundle": true,
1828
- "license": "ISC",
1829
- "dependencies": {
1830
- "minipass": "^3.0.0"
1831
- },
1832
- "engines": {
1833
- "node": ">= 8"
1834
- }
1835
- },
1836
- "node_modules/npm/node_modules/node-gyp/node_modules/gauge": {
1837
- "version": "4.0.4",
1838
- "inBundle": true,
1839
- "license": "ISC",
1840
- "dependencies": {
1841
- "aproba": "^1.0.3 || ^2.0.0",
1842
- "color-support": "^1.1.3",
1843
- "console-control-strings": "^1.1.0",
1844
- "has-unicode": "^2.0.1",
1845
- "signal-exit": "^3.0.7",
1846
- "string-width": "^4.2.3",
1847
- "strip-ansi": "^6.0.1",
1848
- "wide-align": "^1.1.5"
1849
- },
1850
- "engines": {
1851
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
1852
- }
1853
- },
1854
- "node_modules/npm/node_modules/node-gyp/node_modules/glob": {
1855
- "version": "7.2.3",
1856
- "inBundle": true,
1857
- "license": "ISC",
1858
- "dependencies": {
1859
- "fs.realpath": "^1.0.0",
1860
- "inflight": "^1.0.4",
1861
- "inherits": "2",
1862
- "minimatch": "^3.1.1",
1863
- "once": "^1.3.0",
1864
- "path-is-absolute": "^1.0.0"
1865
- },
1866
- "engines": {
1867
- "node": "*"
1868
- },
1869
- "funding": {
1870
- "url": "https://github.com/sponsors/isaacs"
1871
- }
1872
- },
1873
- "node_modules/npm/node_modules/node-gyp/node_modules/make-fetch-happen": {
1874
- "version": "10.2.1",
1875
- "inBundle": true,
1876
- "license": "ISC",
1877
- "dependencies": {
1878
- "agentkeepalive": "^4.2.1",
1879
- "cacache": "^16.1.0",
1880
- "http-cache-semantics": "^4.1.0",
1881
- "http-proxy-agent": "^5.0.0",
1882
- "https-proxy-agent": "^5.0.0",
1883
- "is-lambda": "^1.0.1",
1884
- "lru-cache": "^7.7.1",
1885
- "minipass": "^3.1.6",
1886
- "minipass-collect": "^1.0.2",
1887
- "minipass-fetch": "^2.0.3",
1888
- "minipass-flush": "^1.0.5",
1889
- "minipass-pipeline": "^1.2.4",
1890
- "negotiator": "^0.6.3",
1891
- "promise-retry": "^2.0.1",
1892
- "socks-proxy-agent": "^7.0.0",
1893
- "ssri": "^9.0.0"
1894
- },
1895
- "engines": {
1896
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
1897
- }
1898
- },
1899
- "node_modules/npm/node_modules/node-gyp/node_modules/minimatch": {
1900
- "version": "3.1.2",
1901
- "inBundle": true,
1902
- "license": "ISC",
1903
- "dependencies": {
1904
- "brace-expansion": "^1.1.7"
1905
- },
1906
- "engines": {
1907
- "node": "*"
1908
- }
1909
- },
1910
- "node_modules/npm/node_modules/node-gyp/node_modules/minipass": {
1911
- "version": "3.3.6",
1912
- "inBundle": true,
1913
- "license": "ISC",
1914
- "dependencies": {
1915
- "yallist": "^4.0.0"
1916
- },
1917
- "engines": {
1918
- "node": ">=8"
1919
- }
1920
- },
1921
- "node_modules/npm/node_modules/node-gyp/node_modules/minipass-fetch": {
1922
- "version": "2.1.2",
1923
- "inBundle": true,
1924
- "license": "MIT",
1925
- "dependencies": {
1926
- "minipass": "^3.1.6",
1927
- "minipass-sized": "^1.0.3",
1928
- "minizlib": "^2.1.2"
1929
- },
1930
- "engines": {
1931
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
1932
- },
1933
- "optionalDependencies": {
1934
- "encoding": "^0.1.13"
1935
- }
1936
- },
1937
- "node_modules/npm/node_modules/node-gyp/node_modules/nopt": {
1938
- "version": "6.0.0",
1939
- "inBundle": true,
1940
- "license": "ISC",
1941
- "dependencies": {
1942
- "abbrev": "^1.0.0"
1943
- },
1944
- "bin": {
1945
- "nopt": "bin/nopt.js"
1946
- },
1947
- "engines": {
1948
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
1949
- }
1950
- },
1951
- "node_modules/npm/node_modules/node-gyp/node_modules/npmlog": {
1952
- "version": "6.0.2",
1953
- "inBundle": true,
1954
- "license": "ISC",
1955
- "dependencies": {
1956
- "are-we-there-yet": "^3.0.0",
1957
- "console-control-strings": "^1.1.0",
1958
- "gauge": "^4.0.3",
1959
- "set-blocking": "^2.0.0"
1960
- },
1961
- "engines": {
1962
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
1963
- }
1964
- },
1965
- "node_modules/npm/node_modules/node-gyp/node_modules/readable-stream": {
1966
- "version": "3.6.1",
1967
- "inBundle": true,
1968
- "license": "MIT",
1969
- "dependencies": {
1970
- "inherits": "^2.0.3",
1971
- "string_decoder": "^1.1.1",
1972
- "util-deprecate": "^1.0.1"
1973
- },
1974
- "engines": {
1975
- "node": ">= 6"
1976
- }
1977
- },
1978
- "node_modules/npm/node_modules/node-gyp/node_modules/ssri": {
1979
- "version": "9.0.1",
1980
- "inBundle": true,
1981
- "license": "ISC",
1982
- "dependencies": {
1983
- "minipass": "^3.1.1"
1984
- },
1985
- "engines": {
1986
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
1987
- }
1988
- },
1989
- "node_modules/npm/node_modules/node-gyp/node_modules/unique-filename": {
1990
- "version": "2.0.1",
1991
- "inBundle": true,
1992
- "license": "ISC",
1993
- "dependencies": {
1994
- "unique-slug": "^3.0.0"
1995
- },
1996
- "engines": {
1997
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
1998
- }
1999
- },
2000
- "node_modules/npm/node_modules/node-gyp/node_modules/unique-slug": {
2001
- "version": "3.0.0",
2002
- "inBundle": true,
2003
- "license": "ISC",
2004
- "dependencies": {
2005
- "imurmurhash": "^0.1.4"
2006
- },
2007
- "engines": {
2008
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
2009
- }
2010
- },
2011
- "node_modules/npm/node_modules/node-gyp/node_modules/which": {
2012
- "version": "2.0.2",
2013
- "inBundle": true,
2014
- "license": "ISC",
2015
- "dependencies": {
2016
- "isexe": "^2.0.0"
2017
- },
2018
- "bin": {
2019
- "node-which": "bin/node-which"
2020
- },
2021
- "engines": {
2022
- "node": ">= 8"
2023
- }
2024
- },
2025
- "node_modules/npm/node_modules/nopt": {
2026
- "version": "7.0.0",
2027
- "inBundle": true,
2028
- "license": "ISC",
2029
- "dependencies": {
2030
- "abbrev": "^2.0.0"
2031
- },
2032
- "bin": {
2033
- "nopt": "bin/nopt.js"
2034
- },
2035
- "engines": {
2036
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2037
- }
2038
- },
2039
- "node_modules/npm/node_modules/normalize-package-data": {
2040
- "version": "5.0.0",
2041
- "inBundle": true,
2042
- "license": "BSD-2-Clause",
2043
- "dependencies": {
2044
- "hosted-git-info": "^6.0.0",
2045
- "is-core-module": "^2.8.1",
2046
- "semver": "^7.3.5",
2047
- "validate-npm-package-license": "^3.0.4"
2048
- },
2049
- "engines": {
2050
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2051
- }
2052
- },
2053
- "node_modules/npm/node_modules/npm-audit-report": {
2054
- "version": "4.0.0",
2055
- "inBundle": true,
2056
- "license": "ISC",
2057
- "dependencies": {
2058
- "chalk": "^4.0.0"
2059
- },
2060
- "engines": {
2061
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2062
- }
2063
- },
2064
- "node_modules/npm/node_modules/npm-bundled": {
2065
- "version": "3.0.0",
2066
- "inBundle": true,
2067
- "license": "ISC",
2068
- "dependencies": {
2069
- "npm-normalize-package-bin": "^3.0.0"
2070
- },
2071
- "engines": {
2072
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2073
- }
2074
- },
2075
- "node_modules/npm/node_modules/npm-install-checks": {
2076
- "version": "6.0.0",
2077
- "inBundle": true,
2078
- "license": "BSD-2-Clause",
2079
- "dependencies": {
2080
- "semver": "^7.1.1"
2081
- },
2082
- "engines": {
2083
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2084
- }
2085
- },
2086
- "node_modules/npm/node_modules/npm-normalize-package-bin": {
2087
- "version": "3.0.0",
2088
- "inBundle": true,
2089
- "license": "ISC",
2090
- "engines": {
2091
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2092
- }
2093
- },
2094
- "node_modules/npm/node_modules/npm-package-arg": {
2095
- "version": "10.1.0",
2096
- "inBundle": true,
2097
- "license": "ISC",
2098
- "dependencies": {
2099
- "hosted-git-info": "^6.0.0",
2100
- "proc-log": "^3.0.0",
2101
- "semver": "^7.3.5",
2102
- "validate-npm-package-name": "^5.0.0"
2103
- },
2104
- "engines": {
2105
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2106
- }
2107
- },
2108
- "node_modules/npm/node_modules/npm-packlist": {
2109
- "version": "7.0.4",
2110
- "inBundle": true,
2111
- "license": "ISC",
2112
- "dependencies": {
2113
- "ignore-walk": "^6.0.0"
2114
- },
2115
- "engines": {
2116
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2117
- }
2118
- },
2119
- "node_modules/npm/node_modules/npm-pick-manifest": {
2120
- "version": "8.0.1",
2121
- "inBundle": true,
2122
- "license": "ISC",
2123
- "dependencies": {
2124
- "npm-install-checks": "^6.0.0",
2125
- "npm-normalize-package-bin": "^3.0.0",
2126
- "npm-package-arg": "^10.0.0",
2127
- "semver": "^7.3.5"
2128
- },
2129
- "engines": {
2130
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2131
- }
2132
- },
2133
- "node_modules/npm/node_modules/npm-profile": {
2134
- "version": "7.0.1",
2135
- "inBundle": true,
2136
- "license": "ISC",
2137
- "dependencies": {
2138
- "npm-registry-fetch": "^14.0.0",
2139
- "proc-log": "^3.0.0"
2140
- },
2141
- "engines": {
2142
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2143
- }
2144
- },
2145
- "node_modules/npm/node_modules/npm-registry-fetch": {
2146
- "version": "14.0.3",
2147
- "inBundle": true,
2148
- "license": "ISC",
2149
- "dependencies": {
2150
- "make-fetch-happen": "^11.0.0",
2151
- "minipass": "^4.0.0",
2152
- "minipass-fetch": "^3.0.0",
2153
- "minipass-json-stream": "^1.0.1",
2154
- "minizlib": "^2.1.2",
2155
- "npm-package-arg": "^10.0.0",
2156
- "proc-log": "^3.0.0"
2157
- },
2158
- "engines": {
2159
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2160
- }
2161
- },
2162
- "node_modules/npm/node_modules/npm-user-validate": {
2163
- "version": "2.0.0",
2164
- "inBundle": true,
2165
- "license": "BSD-2-Clause",
2166
- "engines": {
2167
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2168
- }
2169
- },
2170
- "node_modules/npm/node_modules/npmlog": {
2171
- "version": "7.0.1",
2172
- "inBundle": true,
2173
- "license": "ISC",
2174
- "dependencies": {
2175
- "are-we-there-yet": "^4.0.0",
2176
- "console-control-strings": "^1.1.0",
2177
- "gauge": "^5.0.0",
2178
- "set-blocking": "^2.0.0"
2179
- },
2180
- "engines": {
2181
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2182
- }
2183
- },
2184
- "node_modules/npm/node_modules/once": {
2185
- "version": "1.4.0",
2186
- "inBundle": true,
2187
- "license": "ISC",
2188
- "dependencies": {
2189
- "wrappy": "1"
2190
- }
2191
- },
2192
- "node_modules/npm/node_modules/p-map": {
2193
- "version": "4.0.0",
2194
- "inBundle": true,
2195
- "license": "MIT",
2196
- "dependencies": {
2197
- "aggregate-error": "^3.0.0"
2198
- },
2199
- "engines": {
2200
- "node": ">=10"
2201
- },
2202
- "funding": {
2203
- "url": "https://github.com/sponsors/sindresorhus"
2204
- }
2205
- },
2206
- "node_modules/npm/node_modules/pacote": {
2207
- "version": "15.1.1",
2208
- "inBundle": true,
2209
- "license": "ISC",
2210
- "dependencies": {
2211
- "@npmcli/git": "^4.0.0",
2212
- "@npmcli/installed-package-contents": "^2.0.1",
2213
- "@npmcli/promise-spawn": "^6.0.1",
2214
- "@npmcli/run-script": "^6.0.0",
2215
- "cacache": "^17.0.0",
2216
- "fs-minipass": "^3.0.0",
2217
- "minipass": "^4.0.0",
2218
- "npm-package-arg": "^10.0.0",
2219
- "npm-packlist": "^7.0.0",
2220
- "npm-pick-manifest": "^8.0.0",
2221
- "npm-registry-fetch": "^14.0.0",
2222
- "proc-log": "^3.0.0",
2223
- "promise-retry": "^2.0.1",
2224
- "read-package-json": "^6.0.0",
2225
- "read-package-json-fast": "^3.0.0",
2226
- "sigstore": "^1.0.0",
2227
- "ssri": "^10.0.0",
2228
- "tar": "^6.1.11"
2229
- },
2230
- "bin": {
2231
- "pacote": "lib/bin.js"
2232
- },
2233
- "engines": {
2234
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2235
- }
2236
- },
2237
- "node_modules/npm/node_modules/parse-conflict-json": {
2238
- "version": "3.0.0",
2239
- "inBundle": true,
2240
- "license": "ISC",
2241
- "dependencies": {
2242
- "json-parse-even-better-errors": "^3.0.0",
2243
- "just-diff": "^5.0.1",
2244
- "just-diff-apply": "^5.2.0"
2245
- },
2246
- "engines": {
2247
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2248
- }
2249
- },
2250
- "node_modules/npm/node_modules/path-is-absolute": {
2251
- "version": "1.0.1",
2252
- "inBundle": true,
2253
- "license": "MIT",
2254
- "engines": {
2255
- "node": ">=0.10.0"
2256
- }
2257
- },
2258
- "node_modules/npm/node_modules/postcss-selector-parser": {
2259
- "version": "6.0.11",
2260
- "inBundle": true,
2261
- "license": "MIT",
2262
- "dependencies": {
2263
- "cssesc": "^3.0.0",
2264
- "util-deprecate": "^1.0.2"
2265
- },
2266
- "engines": {
2267
- "node": ">=4"
2268
- }
2269
- },
2270
- "node_modules/npm/node_modules/proc-log": {
2271
- "version": "3.0.0",
2272
- "inBundle": true,
2273
- "license": "ISC",
2274
- "engines": {
2275
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2276
- }
2277
- },
2278
- "node_modules/npm/node_modules/process": {
2279
- "version": "0.11.10",
2280
- "inBundle": true,
2281
- "license": "MIT",
2282
- "engines": {
2283
- "node": ">= 0.6.0"
2284
- }
2285
- },
2286
- "node_modules/npm/node_modules/promise-all-reject-late": {
2287
- "version": "1.0.1",
2288
- "inBundle": true,
2289
- "license": "ISC",
2290
- "funding": {
2291
- "url": "https://github.com/sponsors/isaacs"
2292
- }
2293
- },
2294
- "node_modules/npm/node_modules/promise-call-limit": {
2295
- "version": "1.0.1",
2296
- "inBundle": true,
2297
- "license": "ISC",
2298
- "funding": {
2299
- "url": "https://github.com/sponsors/isaacs"
2300
- }
2301
- },
2302
- "node_modules/npm/node_modules/promise-inflight": {
2303
- "version": "1.0.1",
2304
- "inBundle": true,
2305
- "license": "ISC"
2306
- },
2307
- "node_modules/npm/node_modules/promise-retry": {
2308
- "version": "2.0.1",
2309
- "inBundle": true,
2310
- "license": "MIT",
2311
- "dependencies": {
2312
- "err-code": "^2.0.2",
2313
- "retry": "^0.12.0"
2314
- },
2315
- "engines": {
2316
- "node": ">=10"
2317
- }
2318
- },
2319
- "node_modules/npm/node_modules/promzard": {
2320
- "version": "1.0.0",
2321
- "inBundle": true,
2322
- "license": "ISC",
2323
- "dependencies": {
2324
- "read": "^2.0.0"
2325
- },
2326
- "engines": {
2327
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2328
- }
2329
- },
2330
- "node_modules/npm/node_modules/qrcode-terminal": {
2331
- "version": "0.12.0",
2332
- "inBundle": true,
2333
- "bin": {
2334
- "qrcode-terminal": "bin/qrcode-terminal.js"
2335
- }
2336
- },
2337
- "node_modules/npm/node_modules/read": {
2338
- "version": "2.0.0",
2339
- "inBundle": true,
2340
- "license": "ISC",
2341
- "dependencies": {
2342
- "mute-stream": "~1.0.0"
2343
- },
2344
- "engines": {
2345
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2346
- }
2347
- },
2348
- "node_modules/npm/node_modules/read-cmd-shim": {
2349
- "version": "4.0.0",
2350
- "inBundle": true,
2351
- "license": "ISC",
2352
- "engines": {
2353
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2354
- }
2355
- },
2356
- "node_modules/npm/node_modules/read-package-json": {
2357
- "version": "6.0.0",
2358
- "inBundle": true,
2359
- "license": "ISC",
2360
- "dependencies": {
2361
- "glob": "^8.0.1",
2362
- "json-parse-even-better-errors": "^3.0.0",
2363
- "normalize-package-data": "^5.0.0",
2364
- "npm-normalize-package-bin": "^3.0.0"
2365
- },
2366
- "engines": {
2367
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2368
- }
2369
- },
2370
- "node_modules/npm/node_modules/read-package-json-fast": {
2371
- "version": "3.0.2",
2372
- "inBundle": true,
2373
- "license": "ISC",
2374
- "dependencies": {
2375
- "json-parse-even-better-errors": "^3.0.0",
2376
- "npm-normalize-package-bin": "^3.0.0"
2377
- },
2378
- "engines": {
2379
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2380
- }
2381
- },
2382
- "node_modules/npm/node_modules/readable-stream": {
2383
- "version": "4.3.0",
2384
- "inBundle": true,
2385
- "license": "MIT",
2386
- "dependencies": {
2387
- "abort-controller": "^3.0.0",
2388
- "buffer": "^6.0.3",
2389
- "events": "^3.3.0",
2390
- "process": "^0.11.10"
2391
- },
2392
- "engines": {
2393
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2394
- }
2395
- },
2396
- "node_modules/npm/node_modules/retry": {
2397
- "version": "0.12.0",
2398
- "inBundle": true,
2399
- "license": "MIT",
2400
- "engines": {
2401
- "node": ">= 4"
2402
- }
2403
- },
2404
- "node_modules/npm/node_modules/rimraf": {
2405
- "version": "3.0.2",
2406
- "inBundle": true,
2407
- "license": "ISC",
2408
- "dependencies": {
2409
- "glob": "^7.1.3"
2410
- },
2411
- "bin": {
2412
- "rimraf": "bin.js"
2413
- },
2414
- "funding": {
2415
- "url": "https://github.com/sponsors/isaacs"
2416
- }
2417
- },
2418
- "node_modules/npm/node_modules/rimraf/node_modules/brace-expansion": {
2419
- "version": "1.1.11",
2420
- "inBundle": true,
2421
- "license": "MIT",
2422
- "dependencies": {
2423
- "balanced-match": "^1.0.0",
2424
- "concat-map": "0.0.1"
2425
- }
2426
- },
2427
- "node_modules/npm/node_modules/rimraf/node_modules/glob": {
2428
- "version": "7.2.3",
2429
- "inBundle": true,
2430
- "license": "ISC",
2431
- "dependencies": {
2432
- "fs.realpath": "^1.0.0",
2433
- "inflight": "^1.0.4",
2434
- "inherits": "2",
2435
- "minimatch": "^3.1.1",
2436
- "once": "^1.3.0",
2437
- "path-is-absolute": "^1.0.0"
2438
- },
2439
- "engines": {
2440
- "node": "*"
2441
- },
2442
- "funding": {
2443
- "url": "https://github.com/sponsors/isaacs"
2444
- }
2445
- },
2446
- "node_modules/npm/node_modules/rimraf/node_modules/minimatch": {
2447
- "version": "3.1.2",
2448
- "inBundle": true,
2449
- "license": "ISC",
2450
- "dependencies": {
2451
- "brace-expansion": "^1.1.7"
2452
- },
2453
- "engines": {
2454
- "node": "*"
2455
- }
2456
- },
2457
- "node_modules/npm/node_modules/safe-buffer": {
2458
- "version": "5.1.2",
2459
- "inBundle": true,
2460
- "license": "MIT"
2461
- },
2462
- "node_modules/npm/node_modules/safer-buffer": {
2463
- "version": "2.1.2",
2464
- "inBundle": true,
2465
- "license": "MIT",
2466
- "optional": true
2467
- },
2468
- "node_modules/npm/node_modules/semver": {
2469
- "version": "7.3.8",
2470
- "inBundle": true,
2471
- "license": "ISC",
2472
- "dependencies": {
2473
- "lru-cache": "^6.0.0"
2474
- },
2475
- "bin": {
2476
- "semver": "bin/semver.js"
2477
- },
2478
- "engines": {
2479
- "node": ">=10"
2480
- }
2481
- },
2482
- "node_modules/npm/node_modules/semver/node_modules/lru-cache": {
2483
- "version": "6.0.0",
2484
- "inBundle": true,
2485
- "license": "ISC",
2486
- "dependencies": {
2487
- "yallist": "^4.0.0"
2488
- },
2489
- "engines": {
2490
- "node": ">=10"
2491
- }
2492
- },
2493
- "node_modules/npm/node_modules/set-blocking": {
2494
- "version": "2.0.0",
2495
- "inBundle": true,
2496
- "license": "ISC"
2497
- },
2498
- "node_modules/npm/node_modules/signal-exit": {
2499
- "version": "3.0.7",
2500
- "inBundle": true,
2501
- "license": "ISC"
2502
- },
2503
- "node_modules/npm/node_modules/sigstore": {
2504
- "version": "1.1.1",
2505
- "inBundle": true,
2506
- "license": "Apache-2.0",
2507
- "dependencies": {
2508
- "@sigstore/protobuf-specs": "^0.1.0",
2509
- "make-fetch-happen": "^11.0.1",
2510
- "tuf-js": "^1.0.0"
2511
- },
2512
- "bin": {
2513
- "sigstore": "bin/sigstore.js"
2514
- },
2515
- "engines": {
2516
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2517
- }
2518
- },
2519
- "node_modules/npm/node_modules/smart-buffer": {
2520
- "version": "4.2.0",
2521
- "inBundle": true,
2522
- "license": "MIT",
2523
- "engines": {
2524
- "node": ">= 6.0.0",
2525
- "npm": ">= 3.0.0"
2526
- }
2527
- },
2528
- "node_modules/npm/node_modules/socks": {
2529
- "version": "2.7.1",
2530
- "inBundle": true,
2531
- "license": "MIT",
2532
- "dependencies": {
2533
- "ip": "^2.0.0",
2534
- "smart-buffer": "^4.2.0"
2535
- },
2536
- "engines": {
2537
- "node": ">= 10.13.0",
2538
- "npm": ">= 3.0.0"
2539
- }
2540
- },
2541
- "node_modules/npm/node_modules/socks-proxy-agent": {
2542
- "version": "7.0.0",
2543
- "inBundle": true,
2544
- "license": "MIT",
2545
- "dependencies": {
2546
- "agent-base": "^6.0.2",
2547
- "debug": "^4.3.3",
2548
- "socks": "^2.6.2"
2549
- },
2550
- "engines": {
2551
- "node": ">= 10"
2552
- }
2553
- },
2554
- "node_modules/npm/node_modules/spdx-correct": {
2555
- "version": "3.2.0",
2556
- "inBundle": true,
2557
- "license": "Apache-2.0",
2558
- "dependencies": {
2559
- "spdx-expression-parse": "^3.0.0",
2560
- "spdx-license-ids": "^3.0.0"
2561
- }
2562
- },
2563
- "node_modules/npm/node_modules/spdx-exceptions": {
2564
- "version": "2.3.0",
2565
- "inBundle": true,
2566
- "license": "CC-BY-3.0"
2567
- },
2568
- "node_modules/npm/node_modules/spdx-expression-parse": {
2569
- "version": "3.0.1",
2570
- "inBundle": true,
2571
- "license": "MIT",
2572
- "dependencies": {
2573
- "spdx-exceptions": "^2.1.0",
2574
- "spdx-license-ids": "^3.0.0"
2575
- }
2576
- },
2577
- "node_modules/npm/node_modules/spdx-license-ids": {
2578
- "version": "3.0.12",
2579
- "inBundle": true,
2580
- "license": "CC0-1.0"
2581
- },
2582
- "node_modules/npm/node_modules/ssri": {
2583
- "version": "10.0.1",
2584
- "inBundle": true,
2585
- "license": "ISC",
2586
- "dependencies": {
2587
- "minipass": "^4.0.0"
2588
- },
2589
- "engines": {
2590
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2591
- }
2592
- },
2593
- "node_modules/npm/node_modules/string_decoder": {
2594
- "version": "1.1.1",
2595
- "inBundle": true,
2596
- "license": "MIT",
2597
- "dependencies": {
2598
- "safe-buffer": "~5.1.0"
2599
- }
2600
- },
2601
- "node_modules/npm/node_modules/string-width": {
2602
- "version": "4.2.3",
2603
- "inBundle": true,
2604
- "license": "MIT",
2605
- "dependencies": {
2606
- "emoji-regex": "^8.0.0",
2607
- "is-fullwidth-code-point": "^3.0.0",
2608
- "strip-ansi": "^6.0.1"
2609
- },
2610
- "engines": {
2611
- "node": ">=8"
2612
- }
2613
- },
2614
- "node_modules/npm/node_modules/strip-ansi": {
2615
- "version": "6.0.1",
2616
- "inBundle": true,
2617
- "license": "MIT",
2618
- "dependencies": {
2619
- "ansi-regex": "^5.0.1"
2620
- },
2621
- "engines": {
2622
- "node": ">=8"
2623
- }
2624
- },
2625
- "node_modules/npm/node_modules/supports-color": {
2626
- "version": "7.2.0",
2627
- "inBundle": true,
2628
- "license": "MIT",
2629
- "dependencies": {
2630
- "has-flag": "^4.0.0"
2631
- },
2632
- "engines": {
2633
- "node": ">=8"
2634
- }
2635
- },
2636
- "node_modules/npm/node_modules/tar": {
2637
- "version": "6.1.13",
2638
- "inBundle": true,
2639
- "license": "ISC",
2640
- "dependencies": {
2641
- "chownr": "^2.0.0",
2642
- "fs-minipass": "^2.0.0",
2643
- "minipass": "^4.0.0",
2644
- "minizlib": "^2.1.1",
2645
- "mkdirp": "^1.0.3",
2646
- "yallist": "^4.0.0"
2647
- },
2648
- "engines": {
2649
- "node": ">=10"
2650
- }
2651
- },
2652
- "node_modules/npm/node_modules/tar/node_modules/fs-minipass": {
2653
- "version": "2.1.0",
2654
- "inBundle": true,
2655
- "license": "ISC",
2656
- "dependencies": {
2657
- "minipass": "^3.0.0"
2658
- },
2659
- "engines": {
2660
- "node": ">= 8"
2661
- }
2662
- },
2663
- "node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass": {
2664
- "version": "3.3.6",
2665
- "inBundle": true,
2666
- "license": "ISC",
2667
- "dependencies": {
2668
- "yallist": "^4.0.0"
2669
- },
2670
- "engines": {
2671
- "node": ">=8"
2672
- }
2673
- },
2674
- "node_modules/npm/node_modules/text-table": {
2675
- "version": "0.2.0",
2676
- "inBundle": true,
2677
- "license": "MIT"
2678
- },
2679
- "node_modules/npm/node_modules/tiny-relative-date": {
2680
- "version": "1.3.0",
2681
- "inBundle": true,
2682
- "license": "MIT"
2683
- },
2684
- "node_modules/npm/node_modules/treeverse": {
2685
- "version": "3.0.0",
2686
- "inBundle": true,
2687
- "license": "ISC",
2688
- "engines": {
2689
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2690
- }
2691
- },
2692
- "node_modules/npm/node_modules/tuf-js": {
2693
- "version": "1.1.1",
2694
- "inBundle": true,
2695
- "license": "MIT",
2696
- "dependencies": {
2697
- "@tufjs/models": "1.0.0",
2698
- "make-fetch-happen": "^11.0.1"
2699
- },
2700
- "engines": {
2701
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2702
- }
2703
- },
2704
- "node_modules/npm/node_modules/unique-filename": {
2705
- "version": "3.0.0",
2706
- "inBundle": true,
2707
- "license": "ISC",
2708
- "dependencies": {
2709
- "unique-slug": "^4.0.0"
2710
- },
2711
- "engines": {
2712
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2713
- }
2714
- },
2715
- "node_modules/npm/node_modules/unique-slug": {
2716
- "version": "4.0.0",
2717
- "inBundle": true,
2718
- "license": "ISC",
2719
- "dependencies": {
2720
- "imurmurhash": "^0.1.4"
2721
- },
2722
- "engines": {
2723
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2724
- }
2725
- },
2726
- "node_modules/npm/node_modules/util-deprecate": {
2727
- "version": "1.0.2",
2728
- "inBundle": true,
2729
- "license": "MIT"
2730
- },
2731
- "node_modules/npm/node_modules/validate-npm-package-license": {
2732
- "version": "3.0.4",
2733
- "inBundle": true,
2734
- "license": "Apache-2.0",
2735
- "dependencies": {
2736
- "spdx-correct": "^3.0.0",
2737
- "spdx-expression-parse": "^3.0.0"
2738
- }
2739
- },
2740
- "node_modules/npm/node_modules/validate-npm-package-name": {
2741
- "version": "5.0.0",
2742
- "inBundle": true,
2743
- "license": "ISC",
2744
- "dependencies": {
2745
- "builtins": "^5.0.0"
2746
- },
2747
- "engines": {
2748
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2749
- }
2750
- },
2751
- "node_modules/npm/node_modules/walk-up-path": {
2752
- "version": "1.0.0",
2753
- "inBundle": true,
2754
- "license": "ISC"
2755
- },
2756
- "node_modules/npm/node_modules/wcwidth": {
2757
- "version": "1.0.1",
2758
- "inBundle": true,
2759
- "license": "MIT",
2760
- "dependencies": {
2761
- "defaults": "^1.0.3"
2762
- }
2763
- },
2764
- "node_modules/npm/node_modules/which": {
2765
- "version": "3.0.0",
2766
- "inBundle": true,
2767
- "license": "ISC",
2768
- "dependencies": {
2769
- "isexe": "^2.0.0"
2770
- },
2771
- "bin": {
2772
- "node-which": "bin/which.js"
2773
- },
2774
- "engines": {
2775
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2776
- }
2777
- },
2778
- "node_modules/npm/node_modules/wide-align": {
2779
- "version": "1.1.5",
2780
- "inBundle": true,
2781
- "license": "ISC",
2782
- "dependencies": {
2783
- "string-width": "^1.0.2 || 2 || 3 || 4"
2784
- }
2785
- },
2786
- "node_modules/npm/node_modules/wrappy": {
2787
- "version": "1.0.2",
2788
- "inBundle": true,
2789
- "license": "ISC"
2790
- },
2791
- "node_modules/npm/node_modules/write-file-atomic": {
2792
- "version": "5.0.0",
2793
- "inBundle": true,
2794
- "license": "ISC",
2795
- "dependencies": {
2796
- "imurmurhash": "^0.1.4",
2797
- "signal-exit": "^3.0.7"
2798
- },
2799
- "engines": {
2800
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2801
- }
66
+ "node_modules/json-schema": {
67
+ "version": "0.4.0",
68
+ "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
69
+ "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA=="
2802
70
  },
2803
- "node_modules/npm/node_modules/yallist": {
2804
- "version": "4.0.0",
2805
- "inBundle": true,
2806
- "license": "ISC"
71
+ "node_modules/ms": {
72
+ "version": "2.1.2",
73
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
74
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
2807
75
  },
2808
76
  "node_modules/prostgles-client": {
2809
- "version": "4.0.4",
2810
- "resolved": "https://registry.npmjs.org/prostgles-client/-/prostgles-client-4.0.4.tgz",
2811
- "integrity": "sha512-5RTsYsGa4J/0eJPIJKbxPs+uiIuLbEtaepY7OfyrjxJeceutRtB9xkqrDbTV/XFhqf+r3k+4T2GbcPnHX4QuXQ==",
77
+ "version": "4.0.11",
78
+ "resolved": "https://registry.npmjs.org/prostgles-client/-/prostgles-client-4.0.11.tgz",
79
+ "integrity": "sha512-Vq/AFw4qCyWIw3296bGVvBrOyyPpQYjG+NUSqF3hhAk3xhunZxbuVs86n6n6MiAngR3veaNt+oiRx/16/jey4Q==",
2812
80
  "dependencies": {
2813
- "i": "^0.3.7",
2814
- "npm": "^9.6.2",
2815
- "prostgles-types": "^4.0.2"
81
+ "prostgles-types": "^4.0.14"
2816
82
  }
2817
83
  },
2818
84
  "node_modules/prostgles-types": {
2819
- "version": "4.0.2",
2820
- "resolved": "https://registry.npmjs.org/prostgles-types/-/prostgles-types-4.0.2.tgz",
2821
- "integrity": "sha512-Y/XD2TizDjkKJtUNzEhlQvU6yH2A/GMKsopUqd90xfXplqaDgUbpx21i0PtPHphDPOknWfZwbYASOfG3smgcgg==",
85
+ "version": "4.0.14",
86
+ "resolved": "https://registry.npmjs.org/prostgles-types/-/prostgles-types-4.0.14.tgz",
87
+ "integrity": "sha512-QfMBrqJ8a5isDoUrsT3tDsKtdipon9i9wJPX+m1AD4Hc4iv2G1kRHO8ndkFSvs5ccmKCtSilcK4E/waLe3NZyg==",
2822
88
  "dependencies": {
2823
89
  "json-schema": "^0.4.0"
2824
90
  }
@@ -2850,16 +116,16 @@
2850
116
  }
2851
117
  },
2852
118
  "node_modules/typescript": {
2853
- "version": "4.9.5",
2854
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz",
2855
- "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==",
119
+ "version": "5.0.3",
120
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.3.tgz",
121
+ "integrity": "sha512-xv8mOEDnigb/tN9PSMTwSEqAnUvkoXMQlicOb0IUVDBSQCgBSaAAROUZYy2IcUy5qU6XajK5jjjO7TMWqBTKZA==",
2856
122
  "dev": true,
2857
123
  "bin": {
2858
124
  "tsc": "bin/tsc",
2859
125
  "tsserver": "bin/tsserver"
2860
126
  },
2861
127
  "engines": {
2862
- "node": ">=4.2.0"
128
+ "node": ">=12.20"
2863
129
  }
2864
130
  },
2865
131
  "node_modules/ws": {
@@ -2927,11 +193,6 @@
2927
193
  "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz",
2928
194
  "integrity": "sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw=="
2929
195
  },
2930
- "i": {
2931
- "version": "0.3.7",
2932
- "resolved": "https://registry.npmjs.org/i/-/i-0.3.7.tgz",
2933
- "integrity": "sha512-FYz4wlXgkQwIPqhzC5TdNMLSE5+GS1IIDJZY/1ZiEPCT2S3COUVZeT5OW4BmW4r5LHLQuOosSwsvnroG9GR59Q=="
2934
- },
2935
196
  "json-schema": {
2936
197
  "version": "0.4.0",
2937
198
  "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
@@ -2942,1809 +203,18 @@
2942
203
  "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
2943
204
  "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
2944
205
  },
2945
- "npm": {
2946
- "version": "9.6.2",
2947
- "resolved": "https://registry.npmjs.org/npm/-/npm-9.6.2.tgz",
2948
- "integrity": "sha512-TnXoXhlFkH/9wI4+aXSq0aPLwKG7Ge17t1ME4/rQt+0DZWQCRk9PwhBuX/shqdUiHeKicSLSkzWx+QZgTRE+/A==",
2949
- "requires": {
2950
- "@isaacs/string-locale-compare": "^1.1.0",
2951
- "@npmcli/arborist": "^6.2.5",
2952
- "@npmcli/config": "^6.1.4",
2953
- "@npmcli/map-workspaces": "^3.0.2",
2954
- "@npmcli/package-json": "^3.0.0",
2955
- "@npmcli/run-script": "^6.0.0",
2956
- "abbrev": "^2.0.0",
2957
- "archy": "~1.0.0",
2958
- "cacache": "^17.0.4",
2959
- "chalk": "^4.1.2",
2960
- "ci-info": "^3.8.0",
2961
- "cli-columns": "^4.0.0",
2962
- "cli-table3": "^0.6.3",
2963
- "columnify": "^1.6.0",
2964
- "fastest-levenshtein": "^1.0.16",
2965
- "fs-minipass": "^3.0.1",
2966
- "glob": "^8.1.0",
2967
- "graceful-fs": "^4.2.10",
2968
- "hosted-git-info": "^6.1.1",
2969
- "ini": "^3.0.1",
2970
- "init-package-json": "^5.0.0",
2971
- "is-cidr": "^4.0.2",
2972
- "json-parse-even-better-errors": "^3.0.0",
2973
- "libnpmaccess": "^7.0.2",
2974
- "libnpmdiff": "^5.0.13",
2975
- "libnpmexec": "^5.0.13",
2976
- "libnpmfund": "^4.0.13",
2977
- "libnpmhook": "^9.0.3",
2978
- "libnpmorg": "^5.0.3",
2979
- "libnpmpack": "^5.0.13",
2980
- "libnpmpublish": "^7.1.2",
2981
- "libnpmsearch": "^6.0.2",
2982
- "libnpmteam": "^5.0.3",
2983
- "libnpmversion": "^4.0.2",
2984
- "make-fetch-happen": "^11.0.3",
2985
- "minimatch": "^6.2.0",
2986
- "minipass": "^4.2.4",
2987
- "minipass-pipeline": "^1.2.4",
2988
- "ms": "^2.1.2",
2989
- "node-gyp": "^9.3.1",
2990
- "nopt": "^7.0.0",
2991
- "npm-audit-report": "^4.0.0",
2992
- "npm-install-checks": "^6.0.0",
2993
- "npm-package-arg": "^10.1.0",
2994
- "npm-pick-manifest": "^8.0.1",
2995
- "npm-profile": "^7.0.1",
2996
- "npm-registry-fetch": "^14.0.3",
2997
- "npm-user-validate": "^2.0.0",
2998
- "npmlog": "^7.0.1",
2999
- "p-map": "^4.0.0",
3000
- "pacote": "^15.1.1",
3001
- "parse-conflict-json": "^3.0.0",
3002
- "proc-log": "^3.0.0",
3003
- "qrcode-terminal": "^0.12.0",
3004
- "read": "^2.0.0",
3005
- "read-package-json": "^6.0.0",
3006
- "read-package-json-fast": "^3.0.2",
3007
- "semver": "^7.3.8",
3008
- "ssri": "^10.0.1",
3009
- "tar": "^6.1.13",
3010
- "text-table": "~0.2.0",
3011
- "tiny-relative-date": "^1.3.0",
3012
- "treeverse": "^3.0.0",
3013
- "validate-npm-package-name": "^5.0.0",
3014
- "which": "^3.0.0",
3015
- "write-file-atomic": "^5.0.0"
3016
- },
3017
- "dependencies": {
3018
- "@colors/colors": {
3019
- "version": "1.5.0",
3020
- "bundled": true,
3021
- "optional": true
3022
- },
3023
- "@gar/promisify": {
3024
- "version": "1.1.3",
3025
- "bundled": true
3026
- },
3027
- "@isaacs/string-locale-compare": {
3028
- "version": "1.1.0",
3029
- "bundled": true
3030
- },
3031
- "@npmcli/arborist": {
3032
- "version": "6.2.5",
3033
- "bundled": true,
3034
- "requires": {
3035
- "@isaacs/string-locale-compare": "^1.1.0",
3036
- "@npmcli/fs": "^3.1.0",
3037
- "@npmcli/installed-package-contents": "^2.0.2",
3038
- "@npmcli/map-workspaces": "^3.0.2",
3039
- "@npmcli/metavuln-calculator": "^5.0.0",
3040
- "@npmcli/name-from-folder": "^2.0.0",
3041
- "@npmcli/node-gyp": "^3.0.0",
3042
- "@npmcli/package-json": "^3.0.0",
3043
- "@npmcli/query": "^3.0.0",
3044
- "@npmcli/run-script": "^6.0.0",
3045
- "bin-links": "^4.0.1",
3046
- "cacache": "^17.0.4",
3047
- "common-ancestor-path": "^1.0.1",
3048
- "hosted-git-info": "^6.1.1",
3049
- "json-parse-even-better-errors": "^3.0.0",
3050
- "json-stringify-nice": "^1.1.4",
3051
- "minimatch": "^6.1.6",
3052
- "nopt": "^7.0.0",
3053
- "npm-install-checks": "^6.0.0",
3054
- "npm-package-arg": "^10.1.0",
3055
- "npm-pick-manifest": "^8.0.1",
3056
- "npm-registry-fetch": "^14.0.3",
3057
- "npmlog": "^7.0.1",
3058
- "pacote": "^15.0.8",
3059
- "parse-conflict-json": "^3.0.0",
3060
- "proc-log": "^3.0.0",
3061
- "promise-all-reject-late": "^1.0.0",
3062
- "promise-call-limit": "^1.0.1",
3063
- "read-package-json-fast": "^3.0.2",
3064
- "semver": "^7.3.7",
3065
- "ssri": "^10.0.1",
3066
- "treeverse": "^3.0.0",
3067
- "walk-up-path": "^1.0.0"
3068
- }
3069
- },
3070
- "@npmcli/config": {
3071
- "version": "6.1.4",
3072
- "bundled": true,
3073
- "requires": {
3074
- "@npmcli/map-workspaces": "^3.0.2",
3075
- "ini": "^3.0.0",
3076
- "nopt": "^7.0.0",
3077
- "proc-log": "^3.0.0",
3078
- "read-package-json-fast": "^3.0.2",
3079
- "semver": "^7.3.5",
3080
- "walk-up-path": "^1.0.0"
3081
- }
3082
- },
3083
- "@npmcli/disparity-colors": {
3084
- "version": "3.0.0",
3085
- "bundled": true,
3086
- "requires": {
3087
- "ansi-styles": "^4.3.0"
3088
- }
3089
- },
3090
- "@npmcli/fs": {
3091
- "version": "3.1.0",
3092
- "bundled": true,
3093
- "requires": {
3094
- "semver": "^7.3.5"
3095
- }
3096
- },
3097
- "@npmcli/git": {
3098
- "version": "4.0.3",
3099
- "bundled": true,
3100
- "requires": {
3101
- "@npmcli/promise-spawn": "^6.0.0",
3102
- "lru-cache": "^7.4.4",
3103
- "mkdirp": "^1.0.4",
3104
- "npm-pick-manifest": "^8.0.0",
3105
- "proc-log": "^3.0.0",
3106
- "promise-inflight": "^1.0.1",
3107
- "promise-retry": "^2.0.1",
3108
- "semver": "^7.3.5",
3109
- "which": "^3.0.0"
3110
- }
3111
- },
3112
- "@npmcli/installed-package-contents": {
3113
- "version": "2.0.2",
3114
- "bundled": true,
3115
- "requires": {
3116
- "npm-bundled": "^3.0.0",
3117
- "npm-normalize-package-bin": "^3.0.0"
3118
- }
3119
- },
3120
- "@npmcli/map-workspaces": {
3121
- "version": "3.0.2",
3122
- "bundled": true,
3123
- "requires": {
3124
- "@npmcli/name-from-folder": "^2.0.0",
3125
- "glob": "^8.0.1",
3126
- "minimatch": "^6.1.6",
3127
- "read-package-json-fast": "^3.0.0"
3128
- }
3129
- },
3130
- "@npmcli/metavuln-calculator": {
3131
- "version": "5.0.0",
3132
- "bundled": true,
3133
- "requires": {
3134
- "cacache": "^17.0.0",
3135
- "json-parse-even-better-errors": "^3.0.0",
3136
- "pacote": "^15.0.0",
3137
- "semver": "^7.3.5"
3138
- }
3139
- },
3140
- "@npmcli/move-file": {
3141
- "version": "2.0.1",
3142
- "bundled": true,
3143
- "requires": {
3144
- "mkdirp": "^1.0.4",
3145
- "rimraf": "^3.0.2"
3146
- }
3147
- },
3148
- "@npmcli/name-from-folder": {
3149
- "version": "2.0.0",
3150
- "bundled": true
3151
- },
3152
- "@npmcli/node-gyp": {
3153
- "version": "3.0.0",
3154
- "bundled": true
3155
- },
3156
- "@npmcli/package-json": {
3157
- "version": "3.0.0",
3158
- "bundled": true,
3159
- "requires": {
3160
- "json-parse-even-better-errors": "^3.0.0"
3161
- }
3162
- },
3163
- "@npmcli/promise-spawn": {
3164
- "version": "6.0.2",
3165
- "bundled": true,
3166
- "requires": {
3167
- "which": "^3.0.0"
3168
- }
3169
- },
3170
- "@npmcli/query": {
3171
- "version": "3.0.0",
3172
- "bundled": true,
3173
- "requires": {
3174
- "postcss-selector-parser": "^6.0.10"
3175
- }
3176
- },
3177
- "@npmcli/run-script": {
3178
- "version": "6.0.0",
3179
- "bundled": true,
3180
- "requires": {
3181
- "@npmcli/node-gyp": "^3.0.0",
3182
- "@npmcli/promise-spawn": "^6.0.0",
3183
- "node-gyp": "^9.0.0",
3184
- "read-package-json-fast": "^3.0.0",
3185
- "which": "^3.0.0"
3186
- }
3187
- },
3188
- "@sigstore/protobuf-specs": {
3189
- "version": "0.1.0",
3190
- "bundled": true
3191
- },
3192
- "@tootallnate/once": {
3193
- "version": "2.0.0",
3194
- "bundled": true
3195
- },
3196
- "@tufjs/models": {
3197
- "version": "1.0.0",
3198
- "bundled": true,
3199
- "requires": {
3200
- "minimatch": "^6.1.0"
3201
- }
3202
- },
3203
- "abbrev": {
3204
- "version": "2.0.0",
3205
- "bundled": true
3206
- },
3207
- "abort-controller": {
3208
- "version": "3.0.0",
3209
- "bundled": true,
3210
- "requires": {
3211
- "event-target-shim": "^5.0.0"
3212
- }
3213
- },
3214
- "agent-base": {
3215
- "version": "6.0.2",
3216
- "bundled": true,
3217
- "requires": {
3218
- "debug": "4"
3219
- }
3220
- },
3221
- "agentkeepalive": {
3222
- "version": "4.3.0",
3223
- "bundled": true,
3224
- "requires": {
3225
- "debug": "^4.1.0",
3226
- "depd": "^2.0.0",
3227
- "humanize-ms": "^1.2.1"
3228
- }
3229
- },
3230
- "aggregate-error": {
3231
- "version": "3.1.0",
3232
- "bundled": true,
3233
- "requires": {
3234
- "clean-stack": "^2.0.0",
3235
- "indent-string": "^4.0.0"
3236
- }
3237
- },
3238
- "ansi-regex": {
3239
- "version": "5.0.1",
3240
- "bundled": true
3241
- },
3242
- "ansi-styles": {
3243
- "version": "4.3.0",
3244
- "bundled": true,
3245
- "requires": {
3246
- "color-convert": "^2.0.1"
3247
- }
3248
- },
3249
- "aproba": {
3250
- "version": "2.0.0",
3251
- "bundled": true
3252
- },
3253
- "archy": {
3254
- "version": "1.0.0",
3255
- "bundled": true
3256
- },
3257
- "are-we-there-yet": {
3258
- "version": "4.0.0",
3259
- "bundled": true,
3260
- "requires": {
3261
- "delegates": "^1.0.0",
3262
- "readable-stream": "^4.1.0"
3263
- }
3264
- },
3265
- "balanced-match": {
3266
- "version": "1.0.2",
3267
- "bundled": true
3268
- },
3269
- "base64-js": {
3270
- "version": "1.5.1",
3271
- "bundled": true
3272
- },
3273
- "bin-links": {
3274
- "version": "4.0.1",
3275
- "bundled": true,
3276
- "requires": {
3277
- "cmd-shim": "^6.0.0",
3278
- "npm-normalize-package-bin": "^3.0.0",
3279
- "read-cmd-shim": "^4.0.0",
3280
- "write-file-atomic": "^5.0.0"
3281
- }
3282
- },
3283
- "binary-extensions": {
3284
- "version": "2.2.0",
3285
- "bundled": true
3286
- },
3287
- "brace-expansion": {
3288
- "version": "2.0.1",
3289
- "bundled": true,
3290
- "requires": {
3291
- "balanced-match": "^1.0.0"
3292
- }
3293
- },
3294
- "buffer": {
3295
- "version": "6.0.3",
3296
- "bundled": true,
3297
- "requires": {
3298
- "base64-js": "^1.3.1",
3299
- "ieee754": "^1.2.1"
3300
- }
3301
- },
3302
- "builtins": {
3303
- "version": "5.0.1",
3304
- "bundled": true,
3305
- "requires": {
3306
- "semver": "^7.0.0"
3307
- }
3308
- },
3309
- "cacache": {
3310
- "version": "17.0.4",
3311
- "bundled": true,
3312
- "requires": {
3313
- "@npmcli/fs": "^3.1.0",
3314
- "fs-minipass": "^3.0.0",
3315
- "glob": "^8.0.1",
3316
- "lru-cache": "^7.7.1",
3317
- "minipass": "^4.0.0",
3318
- "minipass-collect": "^1.0.2",
3319
- "minipass-flush": "^1.0.5",
3320
- "minipass-pipeline": "^1.2.4",
3321
- "p-map": "^4.0.0",
3322
- "promise-inflight": "^1.0.1",
3323
- "ssri": "^10.0.0",
3324
- "tar": "^6.1.11",
3325
- "unique-filename": "^3.0.0"
3326
- }
3327
- },
3328
- "chalk": {
3329
- "version": "4.1.2",
3330
- "bundled": true,
3331
- "requires": {
3332
- "ansi-styles": "^4.1.0",
3333
- "supports-color": "^7.1.0"
3334
- }
3335
- },
3336
- "chownr": {
3337
- "version": "2.0.0",
3338
- "bundled": true
3339
- },
3340
- "ci-info": {
3341
- "version": "3.8.0",
3342
- "bundled": true
3343
- },
3344
- "cidr-regex": {
3345
- "version": "3.1.1",
3346
- "bundled": true,
3347
- "requires": {
3348
- "ip-regex": "^4.1.0"
3349
- }
3350
- },
3351
- "clean-stack": {
3352
- "version": "2.2.0",
3353
- "bundled": true
3354
- },
3355
- "cli-columns": {
3356
- "version": "4.0.0",
3357
- "bundled": true,
3358
- "requires": {
3359
- "string-width": "^4.2.3",
3360
- "strip-ansi": "^6.0.1"
3361
- }
3362
- },
3363
- "cli-table3": {
3364
- "version": "0.6.3",
3365
- "bundled": true,
3366
- "requires": {
3367
- "@colors/colors": "1.5.0",
3368
- "string-width": "^4.2.0"
3369
- }
3370
- },
3371
- "clone": {
3372
- "version": "1.0.4",
3373
- "bundled": true
3374
- },
3375
- "cmd-shim": {
3376
- "version": "6.0.1",
3377
- "bundled": true
3378
- },
3379
- "color-convert": {
3380
- "version": "2.0.1",
3381
- "bundled": true,
3382
- "requires": {
3383
- "color-name": "~1.1.4"
3384
- }
3385
- },
3386
- "color-name": {
3387
- "version": "1.1.4",
3388
- "bundled": true
3389
- },
3390
- "color-support": {
3391
- "version": "1.1.3",
3392
- "bundled": true
3393
- },
3394
- "columnify": {
3395
- "version": "1.6.0",
3396
- "bundled": true,
3397
- "requires": {
3398
- "strip-ansi": "^6.0.1",
3399
- "wcwidth": "^1.0.0"
3400
- }
3401
- },
3402
- "common-ancestor-path": {
3403
- "version": "1.0.1",
3404
- "bundled": true
3405
- },
3406
- "concat-map": {
3407
- "version": "0.0.1",
3408
- "bundled": true
3409
- },
3410
- "console-control-strings": {
3411
- "version": "1.1.0",
3412
- "bundled": true
3413
- },
3414
- "cssesc": {
3415
- "version": "3.0.0",
3416
- "bundled": true
3417
- },
3418
- "debug": {
3419
- "version": "4.3.4",
3420
- "bundled": true,
3421
- "requires": {
3422
- "ms": "2.1.2"
3423
- },
3424
- "dependencies": {
3425
- "ms": {
3426
- "version": "2.1.2",
3427
- "bundled": true
3428
- }
3429
- }
3430
- },
3431
- "defaults": {
3432
- "version": "1.0.4",
3433
- "bundled": true,
3434
- "requires": {
3435
- "clone": "^1.0.2"
3436
- }
3437
- },
3438
- "delegates": {
3439
- "version": "1.0.0",
3440
- "bundled": true
3441
- },
3442
- "depd": {
3443
- "version": "2.0.0",
3444
- "bundled": true
3445
- },
3446
- "diff": {
3447
- "version": "5.1.0",
3448
- "bundled": true
3449
- },
3450
- "emoji-regex": {
3451
- "version": "8.0.0",
3452
- "bundled": true
3453
- },
3454
- "encoding": {
3455
- "version": "0.1.13",
3456
- "bundled": true,
3457
- "optional": true,
3458
- "requires": {
3459
- "iconv-lite": "^0.6.2"
3460
- }
3461
- },
3462
- "env-paths": {
3463
- "version": "2.2.1",
3464
- "bundled": true
3465
- },
3466
- "err-code": {
3467
- "version": "2.0.3",
3468
- "bundled": true
3469
- },
3470
- "event-target-shim": {
3471
- "version": "5.0.1",
3472
- "bundled": true
3473
- },
3474
- "events": {
3475
- "version": "3.3.0",
3476
- "bundled": true
3477
- },
3478
- "fastest-levenshtein": {
3479
- "version": "1.0.16",
3480
- "bundled": true
3481
- },
3482
- "fs-minipass": {
3483
- "version": "3.0.1",
3484
- "bundled": true,
3485
- "requires": {
3486
- "minipass": "^4.0.0"
3487
- }
3488
- },
3489
- "fs.realpath": {
3490
- "version": "1.0.0",
3491
- "bundled": true
3492
- },
3493
- "function-bind": {
3494
- "version": "1.1.1",
3495
- "bundled": true
3496
- },
3497
- "gauge": {
3498
- "version": "5.0.0",
3499
- "bundled": true,
3500
- "requires": {
3501
- "aproba": "^1.0.3 || ^2.0.0",
3502
- "color-support": "^1.1.3",
3503
- "console-control-strings": "^1.1.0",
3504
- "has-unicode": "^2.0.1",
3505
- "signal-exit": "^3.0.7",
3506
- "string-width": "^4.2.3",
3507
- "strip-ansi": "^6.0.1",
3508
- "wide-align": "^1.1.5"
3509
- }
3510
- },
3511
- "glob": {
3512
- "version": "8.1.0",
3513
- "bundled": true,
3514
- "requires": {
3515
- "fs.realpath": "^1.0.0",
3516
- "inflight": "^1.0.4",
3517
- "inherits": "2",
3518
- "minimatch": "^5.0.1",
3519
- "once": "^1.3.0"
3520
- },
3521
- "dependencies": {
3522
- "minimatch": {
3523
- "version": "5.1.6",
3524
- "bundled": true,
3525
- "requires": {
3526
- "brace-expansion": "^2.0.1"
3527
- }
3528
- }
3529
- }
3530
- },
3531
- "graceful-fs": {
3532
- "version": "4.2.10",
3533
- "bundled": true
3534
- },
3535
- "has": {
3536
- "version": "1.0.3",
3537
- "bundled": true,
3538
- "requires": {
3539
- "function-bind": "^1.1.1"
3540
- }
3541
- },
3542
- "has-flag": {
3543
- "version": "4.0.0",
3544
- "bundled": true
3545
- },
3546
- "has-unicode": {
3547
- "version": "2.0.1",
3548
- "bundled": true
3549
- },
3550
- "hosted-git-info": {
3551
- "version": "6.1.1",
3552
- "bundled": true,
3553
- "requires": {
3554
- "lru-cache": "^7.5.1"
3555
- }
3556
- },
3557
- "http-cache-semantics": {
3558
- "version": "4.1.1",
3559
- "bundled": true
3560
- },
3561
- "http-proxy-agent": {
3562
- "version": "5.0.0",
3563
- "bundled": true,
3564
- "requires": {
3565
- "@tootallnate/once": "2",
3566
- "agent-base": "6",
3567
- "debug": "4"
3568
- }
3569
- },
3570
- "https-proxy-agent": {
3571
- "version": "5.0.1",
3572
- "bundled": true,
3573
- "requires": {
3574
- "agent-base": "6",
3575
- "debug": "4"
3576
- }
3577
- },
3578
- "humanize-ms": {
3579
- "version": "1.2.1",
3580
- "bundled": true,
3581
- "requires": {
3582
- "ms": "^2.0.0"
3583
- }
3584
- },
3585
- "iconv-lite": {
3586
- "version": "0.6.3",
3587
- "bundled": true,
3588
- "optional": true,
3589
- "requires": {
3590
- "safer-buffer": ">= 2.1.2 < 3.0.0"
3591
- }
3592
- },
3593
- "ieee754": {
3594
- "version": "1.2.1",
3595
- "bundled": true
3596
- },
3597
- "ignore-walk": {
3598
- "version": "6.0.1",
3599
- "bundled": true,
3600
- "requires": {
3601
- "minimatch": "^6.1.6"
3602
- }
3603
- },
3604
- "imurmurhash": {
3605
- "version": "0.1.4",
3606
- "bundled": true
3607
- },
3608
- "indent-string": {
3609
- "version": "4.0.0",
3610
- "bundled": true
3611
- },
3612
- "infer-owner": {
3613
- "version": "1.0.4",
3614
- "bundled": true
3615
- },
3616
- "inflight": {
3617
- "version": "1.0.6",
3618
- "bundled": true,
3619
- "requires": {
3620
- "once": "^1.3.0",
3621
- "wrappy": "1"
3622
- }
3623
- },
3624
- "inherits": {
3625
- "version": "2.0.4",
3626
- "bundled": true
3627
- },
3628
- "ini": {
3629
- "version": "3.0.1",
3630
- "bundled": true
3631
- },
3632
- "init-package-json": {
3633
- "version": "5.0.0",
3634
- "bundled": true,
3635
- "requires": {
3636
- "npm-package-arg": "^10.0.0",
3637
- "promzard": "^1.0.0",
3638
- "read": "^2.0.0",
3639
- "read-package-json": "^6.0.0",
3640
- "semver": "^7.3.5",
3641
- "validate-npm-package-license": "^3.0.4",
3642
- "validate-npm-package-name": "^5.0.0"
3643
- }
3644
- },
3645
- "ip": {
3646
- "version": "2.0.0",
3647
- "bundled": true
3648
- },
3649
- "ip-regex": {
3650
- "version": "4.3.0",
3651
- "bundled": true
3652
- },
3653
- "is-cidr": {
3654
- "version": "4.0.2",
3655
- "bundled": true,
3656
- "requires": {
3657
- "cidr-regex": "^3.1.1"
3658
- }
3659
- },
3660
- "is-core-module": {
3661
- "version": "2.11.0",
3662
- "bundled": true,
3663
- "requires": {
3664
- "has": "^1.0.3"
3665
- }
3666
- },
3667
- "is-fullwidth-code-point": {
3668
- "version": "3.0.0",
3669
- "bundled": true
3670
- },
3671
- "is-lambda": {
3672
- "version": "1.0.1",
3673
- "bundled": true
3674
- },
3675
- "isexe": {
3676
- "version": "2.0.0",
3677
- "bundled": true
3678
- },
3679
- "json-parse-even-better-errors": {
3680
- "version": "3.0.0",
3681
- "bundled": true
3682
- },
3683
- "json-stringify-nice": {
3684
- "version": "1.1.4",
3685
- "bundled": true
3686
- },
3687
- "jsonparse": {
3688
- "version": "1.3.1",
3689
- "bundled": true
3690
- },
3691
- "just-diff": {
3692
- "version": "5.2.0",
3693
- "bundled": true
3694
- },
3695
- "just-diff-apply": {
3696
- "version": "5.5.0",
3697
- "bundled": true
3698
- },
3699
- "libnpmaccess": {
3700
- "version": "7.0.2",
3701
- "bundled": true,
3702
- "requires": {
3703
- "npm-package-arg": "^10.1.0",
3704
- "npm-registry-fetch": "^14.0.3"
3705
- }
3706
- },
3707
- "libnpmdiff": {
3708
- "version": "5.0.13",
3709
- "bundled": true,
3710
- "requires": {
3711
- "@npmcli/arborist": "^6.2.5",
3712
- "@npmcli/disparity-colors": "^3.0.0",
3713
- "@npmcli/installed-package-contents": "^2.0.2",
3714
- "binary-extensions": "^2.2.0",
3715
- "diff": "^5.1.0",
3716
- "minimatch": "^6.1.6",
3717
- "npm-package-arg": "^10.1.0",
3718
- "pacote": "^15.0.8",
3719
- "tar": "^6.1.13"
3720
- }
3721
- },
3722
- "libnpmexec": {
3723
- "version": "5.0.13",
3724
- "bundled": true,
3725
- "requires": {
3726
- "@npmcli/arborist": "^6.2.5",
3727
- "@npmcli/run-script": "^6.0.0",
3728
- "chalk": "^4.1.0",
3729
- "ci-info": "^3.7.1",
3730
- "npm-package-arg": "^10.1.0",
3731
- "npmlog": "^7.0.1",
3732
- "pacote": "^15.0.8",
3733
- "proc-log": "^3.0.0",
3734
- "read": "^2.0.0",
3735
- "read-package-json-fast": "^3.0.2",
3736
- "semver": "^7.3.7",
3737
- "walk-up-path": "^1.0.0"
3738
- }
3739
- },
3740
- "libnpmfund": {
3741
- "version": "4.0.13",
3742
- "bundled": true,
3743
- "requires": {
3744
- "@npmcli/arborist": "^6.2.5"
3745
- }
3746
- },
3747
- "libnpmhook": {
3748
- "version": "9.0.3",
3749
- "bundled": true,
3750
- "requires": {
3751
- "aproba": "^2.0.0",
3752
- "npm-registry-fetch": "^14.0.3"
3753
- }
3754
- },
3755
- "libnpmorg": {
3756
- "version": "5.0.3",
3757
- "bundled": true,
3758
- "requires": {
3759
- "aproba": "^2.0.0",
3760
- "npm-registry-fetch": "^14.0.3"
3761
- }
3762
- },
3763
- "libnpmpack": {
3764
- "version": "5.0.13",
3765
- "bundled": true,
3766
- "requires": {
3767
- "@npmcli/arborist": "^6.2.5",
3768
- "@npmcli/run-script": "^6.0.0",
3769
- "npm-package-arg": "^10.1.0",
3770
- "pacote": "^15.0.8"
3771
- }
3772
- },
3773
- "libnpmpublish": {
3774
- "version": "7.1.2",
3775
- "bundled": true,
3776
- "requires": {
3777
- "ci-info": "^3.6.1",
3778
- "normalize-package-data": "^5.0.0",
3779
- "npm-package-arg": "^10.1.0",
3780
- "npm-registry-fetch": "^14.0.3",
3781
- "proc-log": "^3.0.0",
3782
- "semver": "^7.3.7",
3783
- "sigstore": "^1.0.0",
3784
- "ssri": "^10.0.1"
3785
- }
3786
- },
3787
- "libnpmsearch": {
3788
- "version": "6.0.2",
3789
- "bundled": true,
3790
- "requires": {
3791
- "npm-registry-fetch": "^14.0.3"
3792
- }
3793
- },
3794
- "libnpmteam": {
3795
- "version": "5.0.3",
3796
- "bundled": true,
3797
- "requires": {
3798
- "aproba": "^2.0.0",
3799
- "npm-registry-fetch": "^14.0.3"
3800
- }
3801
- },
3802
- "libnpmversion": {
3803
- "version": "4.0.2",
3804
- "bundled": true,
3805
- "requires": {
3806
- "@npmcli/git": "^4.0.1",
3807
- "@npmcli/run-script": "^6.0.0",
3808
- "json-parse-even-better-errors": "^3.0.0",
3809
- "proc-log": "^3.0.0",
3810
- "semver": "^7.3.7"
3811
- }
3812
- },
3813
- "lru-cache": {
3814
- "version": "7.18.3",
3815
- "bundled": true
3816
- },
3817
- "make-fetch-happen": {
3818
- "version": "11.0.3",
3819
- "bundled": true,
3820
- "requires": {
3821
- "agentkeepalive": "^4.2.1",
3822
- "cacache": "^17.0.0",
3823
- "http-cache-semantics": "^4.1.1",
3824
- "http-proxy-agent": "^5.0.0",
3825
- "https-proxy-agent": "^5.0.0",
3826
- "is-lambda": "^1.0.1",
3827
- "lru-cache": "^7.7.1",
3828
- "minipass": "^4.0.0",
3829
- "minipass-fetch": "^3.0.0",
3830
- "minipass-flush": "^1.0.5",
3831
- "minipass-pipeline": "^1.2.4",
3832
- "negotiator": "^0.6.3",
3833
- "promise-retry": "^2.0.1",
3834
- "socks-proxy-agent": "^7.0.0",
3835
- "ssri": "^10.0.0"
3836
- }
3837
- },
3838
- "minimatch": {
3839
- "version": "6.2.0",
3840
- "bundled": true,
3841
- "requires": {
3842
- "brace-expansion": "^2.0.1"
3843
- }
3844
- },
3845
- "minipass": {
3846
- "version": "4.2.4",
3847
- "bundled": true
3848
- },
3849
- "minipass-collect": {
3850
- "version": "1.0.2",
3851
- "bundled": true,
3852
- "requires": {
3853
- "minipass": "^3.0.0"
3854
- },
3855
- "dependencies": {
3856
- "minipass": {
3857
- "version": "3.3.6",
3858
- "bundled": true,
3859
- "requires": {
3860
- "yallist": "^4.0.0"
3861
- }
3862
- }
3863
- }
3864
- },
3865
- "minipass-fetch": {
3866
- "version": "3.0.1",
3867
- "bundled": true,
3868
- "requires": {
3869
- "encoding": "^0.1.13",
3870
- "minipass": "^4.0.0",
3871
- "minipass-sized": "^1.0.3",
3872
- "minizlib": "^2.1.2"
3873
- }
3874
- },
3875
- "minipass-flush": {
3876
- "version": "1.0.5",
3877
- "bundled": true,
3878
- "requires": {
3879
- "minipass": "^3.0.0"
3880
- },
3881
- "dependencies": {
3882
- "minipass": {
3883
- "version": "3.3.6",
3884
- "bundled": true,
3885
- "requires": {
3886
- "yallist": "^4.0.0"
3887
- }
3888
- }
3889
- }
3890
- },
3891
- "minipass-json-stream": {
3892
- "version": "1.0.1",
3893
- "bundled": true,
3894
- "requires": {
3895
- "jsonparse": "^1.3.1",
3896
- "minipass": "^3.0.0"
3897
- },
3898
- "dependencies": {
3899
- "minipass": {
3900
- "version": "3.3.6",
3901
- "bundled": true,
3902
- "requires": {
3903
- "yallist": "^4.0.0"
3904
- }
3905
- }
3906
- }
3907
- },
3908
- "minipass-pipeline": {
3909
- "version": "1.2.4",
3910
- "bundled": true,
3911
- "requires": {
3912
- "minipass": "^3.0.0"
3913
- },
3914
- "dependencies": {
3915
- "minipass": {
3916
- "version": "3.3.6",
3917
- "bundled": true,
3918
- "requires": {
3919
- "yallist": "^4.0.0"
3920
- }
3921
- }
3922
- }
3923
- },
3924
- "minipass-sized": {
3925
- "version": "1.0.3",
3926
- "bundled": true,
3927
- "requires": {
3928
- "minipass": "^3.0.0"
3929
- },
3930
- "dependencies": {
3931
- "minipass": {
3932
- "version": "3.3.6",
3933
- "bundled": true,
3934
- "requires": {
3935
- "yallist": "^4.0.0"
3936
- }
3937
- }
3938
- }
3939
- },
3940
- "minizlib": {
3941
- "version": "2.1.2",
3942
- "bundled": true,
3943
- "requires": {
3944
- "minipass": "^3.0.0",
3945
- "yallist": "^4.0.0"
3946
- },
3947
- "dependencies": {
3948
- "minipass": {
3949
- "version": "3.3.6",
3950
- "bundled": true,
3951
- "requires": {
3952
- "yallist": "^4.0.0"
3953
- }
3954
- }
3955
- }
3956
- },
3957
- "mkdirp": {
3958
- "version": "1.0.4",
3959
- "bundled": true
3960
- },
3961
- "ms": {
3962
- "version": "2.1.3",
3963
- "bundled": true
3964
- },
3965
- "mute-stream": {
3966
- "version": "1.0.0",
3967
- "bundled": true
3968
- },
3969
- "negotiator": {
3970
- "version": "0.6.3",
3971
- "bundled": true
3972
- },
3973
- "node-gyp": {
3974
- "version": "9.3.1",
3975
- "bundled": true,
3976
- "requires": {
3977
- "env-paths": "^2.2.0",
3978
- "glob": "^7.1.4",
3979
- "graceful-fs": "^4.2.6",
3980
- "make-fetch-happen": "^10.0.3",
3981
- "nopt": "^6.0.0",
3982
- "npmlog": "^6.0.0",
3983
- "rimraf": "^3.0.2",
3984
- "semver": "^7.3.5",
3985
- "tar": "^6.1.2",
3986
- "which": "^2.0.2"
3987
- },
3988
- "dependencies": {
3989
- "@npmcli/fs": {
3990
- "version": "2.1.2",
3991
- "bundled": true,
3992
- "requires": {
3993
- "@gar/promisify": "^1.1.3",
3994
- "semver": "^7.3.5"
3995
- }
3996
- },
3997
- "abbrev": {
3998
- "version": "1.1.1",
3999
- "bundled": true
4000
- },
4001
- "are-we-there-yet": {
4002
- "version": "3.0.1",
4003
- "bundled": true,
4004
- "requires": {
4005
- "delegates": "^1.0.0",
4006
- "readable-stream": "^3.6.0"
4007
- }
4008
- },
4009
- "brace-expansion": {
4010
- "version": "1.1.11",
4011
- "bundled": true,
4012
- "requires": {
4013
- "balanced-match": "^1.0.0",
4014
- "concat-map": "0.0.1"
4015
- }
4016
- },
4017
- "cacache": {
4018
- "version": "16.1.3",
4019
- "bundled": true,
4020
- "requires": {
4021
- "@npmcli/fs": "^2.1.0",
4022
- "@npmcli/move-file": "^2.0.0",
4023
- "chownr": "^2.0.0",
4024
- "fs-minipass": "^2.1.0",
4025
- "glob": "^8.0.1",
4026
- "infer-owner": "^1.0.4",
4027
- "lru-cache": "^7.7.1",
4028
- "minipass": "^3.1.6",
4029
- "minipass-collect": "^1.0.2",
4030
- "minipass-flush": "^1.0.5",
4031
- "minipass-pipeline": "^1.2.4",
4032
- "mkdirp": "^1.0.4",
4033
- "p-map": "^4.0.0",
4034
- "promise-inflight": "^1.0.1",
4035
- "rimraf": "^3.0.2",
4036
- "ssri": "^9.0.0",
4037
- "tar": "^6.1.11",
4038
- "unique-filename": "^2.0.0"
4039
- },
4040
- "dependencies": {
4041
- "brace-expansion": {
4042
- "version": "2.0.1",
4043
- "bundled": true,
4044
- "requires": {
4045
- "balanced-match": "^1.0.0"
4046
- }
4047
- },
4048
- "glob": {
4049
- "version": "8.1.0",
4050
- "bundled": true,
4051
- "requires": {
4052
- "fs.realpath": "^1.0.0",
4053
- "inflight": "^1.0.4",
4054
- "inherits": "2",
4055
- "minimatch": "^5.0.1",
4056
- "once": "^1.3.0"
4057
- }
4058
- },
4059
- "minimatch": {
4060
- "version": "5.1.6",
4061
- "bundled": true,
4062
- "requires": {
4063
- "brace-expansion": "^2.0.1"
4064
- }
4065
- }
4066
- }
4067
- },
4068
- "fs-minipass": {
4069
- "version": "2.1.0",
4070
- "bundled": true,
4071
- "requires": {
4072
- "minipass": "^3.0.0"
4073
- }
4074
- },
4075
- "gauge": {
4076
- "version": "4.0.4",
4077
- "bundled": true,
4078
- "requires": {
4079
- "aproba": "^1.0.3 || ^2.0.0",
4080
- "color-support": "^1.1.3",
4081
- "console-control-strings": "^1.1.0",
4082
- "has-unicode": "^2.0.1",
4083
- "signal-exit": "^3.0.7",
4084
- "string-width": "^4.2.3",
4085
- "strip-ansi": "^6.0.1",
4086
- "wide-align": "^1.1.5"
4087
- }
4088
- },
4089
- "glob": {
4090
- "version": "7.2.3",
4091
- "bundled": true,
4092
- "requires": {
4093
- "fs.realpath": "^1.0.0",
4094
- "inflight": "^1.0.4",
4095
- "inherits": "2",
4096
- "minimatch": "^3.1.1",
4097
- "once": "^1.3.0",
4098
- "path-is-absolute": "^1.0.0"
4099
- }
4100
- },
4101
- "make-fetch-happen": {
4102
- "version": "10.2.1",
4103
- "bundled": true,
4104
- "requires": {
4105
- "agentkeepalive": "^4.2.1",
4106
- "cacache": "^16.1.0",
4107
- "http-cache-semantics": "^4.1.0",
4108
- "http-proxy-agent": "^5.0.0",
4109
- "https-proxy-agent": "^5.0.0",
4110
- "is-lambda": "^1.0.1",
4111
- "lru-cache": "^7.7.1",
4112
- "minipass": "^3.1.6",
4113
- "minipass-collect": "^1.0.2",
4114
- "minipass-fetch": "^2.0.3",
4115
- "minipass-flush": "^1.0.5",
4116
- "minipass-pipeline": "^1.2.4",
4117
- "negotiator": "^0.6.3",
4118
- "promise-retry": "^2.0.1",
4119
- "socks-proxy-agent": "^7.0.0",
4120
- "ssri": "^9.0.0"
4121
- }
4122
- },
4123
- "minimatch": {
4124
- "version": "3.1.2",
4125
- "bundled": true,
4126
- "requires": {
4127
- "brace-expansion": "^1.1.7"
4128
- }
4129
- },
4130
- "minipass": {
4131
- "version": "3.3.6",
4132
- "bundled": true,
4133
- "requires": {
4134
- "yallist": "^4.0.0"
4135
- }
4136
- },
4137
- "minipass-fetch": {
4138
- "version": "2.1.2",
4139
- "bundled": true,
4140
- "requires": {
4141
- "encoding": "^0.1.13",
4142
- "minipass": "^3.1.6",
4143
- "minipass-sized": "^1.0.3",
4144
- "minizlib": "^2.1.2"
4145
- }
4146
- },
4147
- "nopt": {
4148
- "version": "6.0.0",
4149
- "bundled": true,
4150
- "requires": {
4151
- "abbrev": "^1.0.0"
4152
- }
4153
- },
4154
- "npmlog": {
4155
- "version": "6.0.2",
4156
- "bundled": true,
4157
- "requires": {
4158
- "are-we-there-yet": "^3.0.0",
4159
- "console-control-strings": "^1.1.0",
4160
- "gauge": "^4.0.3",
4161
- "set-blocking": "^2.0.0"
4162
- }
4163
- },
4164
- "readable-stream": {
4165
- "version": "3.6.1",
4166
- "bundled": true,
4167
- "requires": {
4168
- "inherits": "^2.0.3",
4169
- "string_decoder": "^1.1.1",
4170
- "util-deprecate": "^1.0.1"
4171
- }
4172
- },
4173
- "ssri": {
4174
- "version": "9.0.1",
4175
- "bundled": true,
4176
- "requires": {
4177
- "minipass": "^3.1.1"
4178
- }
4179
- },
4180
- "unique-filename": {
4181
- "version": "2.0.1",
4182
- "bundled": true,
4183
- "requires": {
4184
- "unique-slug": "^3.0.0"
4185
- }
4186
- },
4187
- "unique-slug": {
4188
- "version": "3.0.0",
4189
- "bundled": true,
4190
- "requires": {
4191
- "imurmurhash": "^0.1.4"
4192
- }
4193
- },
4194
- "which": {
4195
- "version": "2.0.2",
4196
- "bundled": true,
4197
- "requires": {
4198
- "isexe": "^2.0.0"
4199
- }
4200
- }
4201
- }
4202
- },
4203
- "nopt": {
4204
- "version": "7.0.0",
4205
- "bundled": true,
4206
- "requires": {
4207
- "abbrev": "^2.0.0"
4208
- }
4209
- },
4210
- "normalize-package-data": {
4211
- "version": "5.0.0",
4212
- "bundled": true,
4213
- "requires": {
4214
- "hosted-git-info": "^6.0.0",
4215
- "is-core-module": "^2.8.1",
4216
- "semver": "^7.3.5",
4217
- "validate-npm-package-license": "^3.0.4"
4218
- }
4219
- },
4220
- "npm-audit-report": {
4221
- "version": "4.0.0",
4222
- "bundled": true,
4223
- "requires": {
4224
- "chalk": "^4.0.0"
4225
- }
4226
- },
4227
- "npm-bundled": {
4228
- "version": "3.0.0",
4229
- "bundled": true,
4230
- "requires": {
4231
- "npm-normalize-package-bin": "^3.0.0"
4232
- }
4233
- },
4234
- "npm-install-checks": {
4235
- "version": "6.0.0",
4236
- "bundled": true,
4237
- "requires": {
4238
- "semver": "^7.1.1"
4239
- }
4240
- },
4241
- "npm-normalize-package-bin": {
4242
- "version": "3.0.0",
4243
- "bundled": true
4244
- },
4245
- "npm-package-arg": {
4246
- "version": "10.1.0",
4247
- "bundled": true,
4248
- "requires": {
4249
- "hosted-git-info": "^6.0.0",
4250
- "proc-log": "^3.0.0",
4251
- "semver": "^7.3.5",
4252
- "validate-npm-package-name": "^5.0.0"
4253
- }
4254
- },
4255
- "npm-packlist": {
4256
- "version": "7.0.4",
4257
- "bundled": true,
4258
- "requires": {
4259
- "ignore-walk": "^6.0.0"
4260
- }
4261
- },
4262
- "npm-pick-manifest": {
4263
- "version": "8.0.1",
4264
- "bundled": true,
4265
- "requires": {
4266
- "npm-install-checks": "^6.0.0",
4267
- "npm-normalize-package-bin": "^3.0.0",
4268
- "npm-package-arg": "^10.0.0",
4269
- "semver": "^7.3.5"
4270
- }
4271
- },
4272
- "npm-profile": {
4273
- "version": "7.0.1",
4274
- "bundled": true,
4275
- "requires": {
4276
- "npm-registry-fetch": "^14.0.0",
4277
- "proc-log": "^3.0.0"
4278
- }
4279
- },
4280
- "npm-registry-fetch": {
4281
- "version": "14.0.3",
4282
- "bundled": true,
4283
- "requires": {
4284
- "make-fetch-happen": "^11.0.0",
4285
- "minipass": "^4.0.0",
4286
- "minipass-fetch": "^3.0.0",
4287
- "minipass-json-stream": "^1.0.1",
4288
- "minizlib": "^2.1.2",
4289
- "npm-package-arg": "^10.0.0",
4290
- "proc-log": "^3.0.0"
4291
- }
4292
- },
4293
- "npm-user-validate": {
4294
- "version": "2.0.0",
4295
- "bundled": true
4296
- },
4297
- "npmlog": {
4298
- "version": "7.0.1",
4299
- "bundled": true,
4300
- "requires": {
4301
- "are-we-there-yet": "^4.0.0",
4302
- "console-control-strings": "^1.1.0",
4303
- "gauge": "^5.0.0",
4304
- "set-blocking": "^2.0.0"
4305
- }
4306
- },
4307
- "once": {
4308
- "version": "1.4.0",
4309
- "bundled": true,
4310
- "requires": {
4311
- "wrappy": "1"
4312
- }
4313
- },
4314
- "p-map": {
4315
- "version": "4.0.0",
4316
- "bundled": true,
4317
- "requires": {
4318
- "aggregate-error": "^3.0.0"
4319
- }
4320
- },
4321
- "pacote": {
4322
- "version": "15.1.1",
4323
- "bundled": true,
4324
- "requires": {
4325
- "@npmcli/git": "^4.0.0",
4326
- "@npmcli/installed-package-contents": "^2.0.1",
4327
- "@npmcli/promise-spawn": "^6.0.1",
4328
- "@npmcli/run-script": "^6.0.0",
4329
- "cacache": "^17.0.0",
4330
- "fs-minipass": "^3.0.0",
4331
- "minipass": "^4.0.0",
4332
- "npm-package-arg": "^10.0.0",
4333
- "npm-packlist": "^7.0.0",
4334
- "npm-pick-manifest": "^8.0.0",
4335
- "npm-registry-fetch": "^14.0.0",
4336
- "proc-log": "^3.0.0",
4337
- "promise-retry": "^2.0.1",
4338
- "read-package-json": "^6.0.0",
4339
- "read-package-json-fast": "^3.0.0",
4340
- "sigstore": "^1.0.0",
4341
- "ssri": "^10.0.0",
4342
- "tar": "^6.1.11"
4343
- }
4344
- },
4345
- "parse-conflict-json": {
4346
- "version": "3.0.0",
4347
- "bundled": true,
4348
- "requires": {
4349
- "json-parse-even-better-errors": "^3.0.0",
4350
- "just-diff": "^5.0.1",
4351
- "just-diff-apply": "^5.2.0"
4352
- }
4353
- },
4354
- "path-is-absolute": {
4355
- "version": "1.0.1",
4356
- "bundled": true
4357
- },
4358
- "postcss-selector-parser": {
4359
- "version": "6.0.11",
4360
- "bundled": true,
4361
- "requires": {
4362
- "cssesc": "^3.0.0",
4363
- "util-deprecate": "^1.0.2"
4364
- }
4365
- },
4366
- "proc-log": {
4367
- "version": "3.0.0",
4368
- "bundled": true
4369
- },
4370
- "process": {
4371
- "version": "0.11.10",
4372
- "bundled": true
4373
- },
4374
- "promise-all-reject-late": {
4375
- "version": "1.0.1",
4376
- "bundled": true
4377
- },
4378
- "promise-call-limit": {
4379
- "version": "1.0.1",
4380
- "bundled": true
4381
- },
4382
- "promise-inflight": {
4383
- "version": "1.0.1",
4384
- "bundled": true
4385
- },
4386
- "promise-retry": {
4387
- "version": "2.0.1",
4388
- "bundled": true,
4389
- "requires": {
4390
- "err-code": "^2.0.2",
4391
- "retry": "^0.12.0"
4392
- }
4393
- },
4394
- "promzard": {
4395
- "version": "1.0.0",
4396
- "bundled": true,
4397
- "requires": {
4398
- "read": "^2.0.0"
4399
- }
4400
- },
4401
- "qrcode-terminal": {
4402
- "version": "0.12.0",
4403
- "bundled": true
4404
- },
4405
- "read": {
4406
- "version": "2.0.0",
4407
- "bundled": true,
4408
- "requires": {
4409
- "mute-stream": "~1.0.0"
4410
- }
4411
- },
4412
- "read-cmd-shim": {
4413
- "version": "4.0.0",
4414
- "bundled": true
4415
- },
4416
- "read-package-json": {
4417
- "version": "6.0.0",
4418
- "bundled": true,
4419
- "requires": {
4420
- "glob": "^8.0.1",
4421
- "json-parse-even-better-errors": "^3.0.0",
4422
- "normalize-package-data": "^5.0.0",
4423
- "npm-normalize-package-bin": "^3.0.0"
4424
- }
4425
- },
4426
- "read-package-json-fast": {
4427
- "version": "3.0.2",
4428
- "bundled": true,
4429
- "requires": {
4430
- "json-parse-even-better-errors": "^3.0.0",
4431
- "npm-normalize-package-bin": "^3.0.0"
4432
- }
4433
- },
4434
- "readable-stream": {
4435
- "version": "4.3.0",
4436
- "bundled": true,
4437
- "requires": {
4438
- "abort-controller": "^3.0.0",
4439
- "buffer": "^6.0.3",
4440
- "events": "^3.3.0",
4441
- "process": "^0.11.10"
4442
- }
4443
- },
4444
- "retry": {
4445
- "version": "0.12.0",
4446
- "bundled": true
4447
- },
4448
- "rimraf": {
4449
- "version": "3.0.2",
4450
- "bundled": true,
4451
- "requires": {
4452
- "glob": "^7.1.3"
4453
- },
4454
- "dependencies": {
4455
- "brace-expansion": {
4456
- "version": "1.1.11",
4457
- "bundled": true,
4458
- "requires": {
4459
- "balanced-match": "^1.0.0",
4460
- "concat-map": "0.0.1"
4461
- }
4462
- },
4463
- "glob": {
4464
- "version": "7.2.3",
4465
- "bundled": true,
4466
- "requires": {
4467
- "fs.realpath": "^1.0.0",
4468
- "inflight": "^1.0.4",
4469
- "inherits": "2",
4470
- "minimatch": "^3.1.1",
4471
- "once": "^1.3.0",
4472
- "path-is-absolute": "^1.0.0"
4473
- }
4474
- },
4475
- "minimatch": {
4476
- "version": "3.1.2",
4477
- "bundled": true,
4478
- "requires": {
4479
- "brace-expansion": "^1.1.7"
4480
- }
4481
- }
4482
- }
4483
- },
4484
- "safe-buffer": {
4485
- "version": "5.1.2",
4486
- "bundled": true
4487
- },
4488
- "safer-buffer": {
4489
- "version": "2.1.2",
4490
- "bundled": true,
4491
- "optional": true
4492
- },
4493
- "semver": {
4494
- "version": "7.3.8",
4495
- "bundled": true,
4496
- "requires": {
4497
- "lru-cache": "^6.0.0"
4498
- },
4499
- "dependencies": {
4500
- "lru-cache": {
4501
- "version": "6.0.0",
4502
- "bundled": true,
4503
- "requires": {
4504
- "yallist": "^4.0.0"
4505
- }
4506
- }
4507
- }
4508
- },
4509
- "set-blocking": {
4510
- "version": "2.0.0",
4511
- "bundled": true
4512
- },
4513
- "signal-exit": {
4514
- "version": "3.0.7",
4515
- "bundled": true
4516
- },
4517
- "sigstore": {
4518
- "version": "1.1.1",
4519
- "bundled": true,
4520
- "requires": {
4521
- "@sigstore/protobuf-specs": "^0.1.0",
4522
- "make-fetch-happen": "^11.0.1",
4523
- "tuf-js": "^1.0.0"
4524
- }
4525
- },
4526
- "smart-buffer": {
4527
- "version": "4.2.0",
4528
- "bundled": true
4529
- },
4530
- "socks": {
4531
- "version": "2.7.1",
4532
- "bundled": true,
4533
- "requires": {
4534
- "ip": "^2.0.0",
4535
- "smart-buffer": "^4.2.0"
4536
- }
4537
- },
4538
- "socks-proxy-agent": {
4539
- "version": "7.0.0",
4540
- "bundled": true,
4541
- "requires": {
4542
- "agent-base": "^6.0.2",
4543
- "debug": "^4.3.3",
4544
- "socks": "^2.6.2"
4545
- }
4546
- },
4547
- "spdx-correct": {
4548
- "version": "3.2.0",
4549
- "bundled": true,
4550
- "requires": {
4551
- "spdx-expression-parse": "^3.0.0",
4552
- "spdx-license-ids": "^3.0.0"
4553
- }
4554
- },
4555
- "spdx-exceptions": {
4556
- "version": "2.3.0",
4557
- "bundled": true
4558
- },
4559
- "spdx-expression-parse": {
4560
- "version": "3.0.1",
4561
- "bundled": true,
4562
- "requires": {
4563
- "spdx-exceptions": "^2.1.0",
4564
- "spdx-license-ids": "^3.0.0"
4565
- }
4566
- },
4567
- "spdx-license-ids": {
4568
- "version": "3.0.12",
4569
- "bundled": true
4570
- },
4571
- "ssri": {
4572
- "version": "10.0.1",
4573
- "bundled": true,
4574
- "requires": {
4575
- "minipass": "^4.0.0"
4576
- }
4577
- },
4578
- "string_decoder": {
4579
- "version": "1.1.1",
4580
- "bundled": true,
4581
- "requires": {
4582
- "safe-buffer": "~5.1.0"
4583
- }
4584
- },
4585
- "string-width": {
4586
- "version": "4.2.3",
4587
- "bundled": true,
4588
- "requires": {
4589
- "emoji-regex": "^8.0.0",
4590
- "is-fullwidth-code-point": "^3.0.0",
4591
- "strip-ansi": "^6.0.1"
4592
- }
4593
- },
4594
- "strip-ansi": {
4595
- "version": "6.0.1",
4596
- "bundled": true,
4597
- "requires": {
4598
- "ansi-regex": "^5.0.1"
4599
- }
4600
- },
4601
- "supports-color": {
4602
- "version": "7.2.0",
4603
- "bundled": true,
4604
- "requires": {
4605
- "has-flag": "^4.0.0"
4606
- }
4607
- },
4608
- "tar": {
4609
- "version": "6.1.13",
4610
- "bundled": true,
4611
- "requires": {
4612
- "chownr": "^2.0.0",
4613
- "fs-minipass": "^2.0.0",
4614
- "minipass": "^4.0.0",
4615
- "minizlib": "^2.1.1",
4616
- "mkdirp": "^1.0.3",
4617
- "yallist": "^4.0.0"
4618
- },
4619
- "dependencies": {
4620
- "fs-minipass": {
4621
- "version": "2.1.0",
4622
- "bundled": true,
4623
- "requires": {
4624
- "minipass": "^3.0.0"
4625
- },
4626
- "dependencies": {
4627
- "minipass": {
4628
- "version": "3.3.6",
4629
- "bundled": true,
4630
- "requires": {
4631
- "yallist": "^4.0.0"
4632
- }
4633
- }
4634
- }
4635
- }
4636
- }
4637
- },
4638
- "text-table": {
4639
- "version": "0.2.0",
4640
- "bundled": true
4641
- },
4642
- "tiny-relative-date": {
4643
- "version": "1.3.0",
4644
- "bundled": true
4645
- },
4646
- "treeverse": {
4647
- "version": "3.0.0",
4648
- "bundled": true
4649
- },
4650
- "tuf-js": {
4651
- "version": "1.1.1",
4652
- "bundled": true,
4653
- "requires": {
4654
- "@tufjs/models": "1.0.0",
4655
- "make-fetch-happen": "^11.0.1"
4656
- }
4657
- },
4658
- "unique-filename": {
4659
- "version": "3.0.0",
4660
- "bundled": true,
4661
- "requires": {
4662
- "unique-slug": "^4.0.0"
4663
- }
4664
- },
4665
- "unique-slug": {
4666
- "version": "4.0.0",
4667
- "bundled": true,
4668
- "requires": {
4669
- "imurmurhash": "^0.1.4"
4670
- }
4671
- },
4672
- "util-deprecate": {
4673
- "version": "1.0.2",
4674
- "bundled": true
4675
- },
4676
- "validate-npm-package-license": {
4677
- "version": "3.0.4",
4678
- "bundled": true,
4679
- "requires": {
4680
- "spdx-correct": "^3.0.0",
4681
- "spdx-expression-parse": "^3.0.0"
4682
- }
4683
- },
4684
- "validate-npm-package-name": {
4685
- "version": "5.0.0",
4686
- "bundled": true,
4687
- "requires": {
4688
- "builtins": "^5.0.0"
4689
- }
4690
- },
4691
- "walk-up-path": {
4692
- "version": "1.0.0",
4693
- "bundled": true
4694
- },
4695
- "wcwidth": {
4696
- "version": "1.0.1",
4697
- "bundled": true,
4698
- "requires": {
4699
- "defaults": "^1.0.3"
4700
- }
4701
- },
4702
- "which": {
4703
- "version": "3.0.0",
4704
- "bundled": true,
4705
- "requires": {
4706
- "isexe": "^2.0.0"
4707
- }
4708
- },
4709
- "wide-align": {
4710
- "version": "1.1.5",
4711
- "bundled": true,
4712
- "requires": {
4713
- "string-width": "^1.0.2 || 2 || 3 || 4"
4714
- }
4715
- },
4716
- "wrappy": {
4717
- "version": "1.0.2",
4718
- "bundled": true
4719
- },
4720
- "write-file-atomic": {
4721
- "version": "5.0.0",
4722
- "bundled": true,
4723
- "requires": {
4724
- "imurmurhash": "^0.1.4",
4725
- "signal-exit": "^3.0.7"
4726
- }
4727
- },
4728
- "yallist": {
4729
- "version": "4.0.0",
4730
- "bundled": true
4731
- }
4732
- }
4733
- },
4734
206
  "prostgles-client": {
4735
- "version": "4.0.4",
4736
- "resolved": "https://registry.npmjs.org/prostgles-client/-/prostgles-client-4.0.4.tgz",
4737
- "integrity": "sha512-5RTsYsGa4J/0eJPIJKbxPs+uiIuLbEtaepY7OfyrjxJeceutRtB9xkqrDbTV/XFhqf+r3k+4T2GbcPnHX4QuXQ==",
207
+ "version": "4.0.11",
208
+ "resolved": "https://registry.npmjs.org/prostgles-client/-/prostgles-client-4.0.11.tgz",
209
+ "integrity": "sha512-Vq/AFw4qCyWIw3296bGVvBrOyyPpQYjG+NUSqF3hhAk3xhunZxbuVs86n6n6MiAngR3veaNt+oiRx/16/jey4Q==",
4738
210
  "requires": {
4739
- "i": "^0.3.7",
4740
- "npm": "^9.6.2",
4741
- "prostgles-types": "^4.0.2"
211
+ "prostgles-types": "^4.0.14"
4742
212
  }
4743
213
  },
4744
214
  "prostgles-types": {
4745
- "version": "4.0.2",
4746
- "resolved": "https://registry.npmjs.org/prostgles-types/-/prostgles-types-4.0.2.tgz",
4747
- "integrity": "sha512-Y/XD2TizDjkKJtUNzEhlQvU6yH2A/GMKsopUqd90xfXplqaDgUbpx21i0PtPHphDPOknWfZwbYASOfG3smgcgg==",
215
+ "version": "4.0.14",
216
+ "resolved": "https://registry.npmjs.org/prostgles-types/-/prostgles-types-4.0.14.tgz",
217
+ "integrity": "sha512-QfMBrqJ8a5isDoUrsT3tDsKtdipon9i9wJPX+m1AD4Hc4iv2G1kRHO8ndkFSvs5ccmKCtSilcK4E/waLe3NZyg==",
4748
218
  "requires": {
4749
219
  "json-schema": "^0.4.0"
4750
220
  }
@@ -4770,9 +240,9 @@
4770
240
  }
4771
241
  },
4772
242
  "typescript": {
4773
- "version": "4.9.5",
4774
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz",
4775
- "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==",
243
+ "version": "5.0.3",
244
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.3.tgz",
245
+ "integrity": "sha512-xv8mOEDnigb/tN9PSMTwSEqAnUvkoXMQlicOb0IUVDBSQCgBSaAAROUZYy2IcUy5qU6XajK5jjjO7TMWqBTKZA==",
4776
246
  "dev": true
4777
247
  },
4778
248
  "ws": {