fontastic 1.3.1 → 1.4.0

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 (74) hide show
  1. package/.github/workflows/claude-code-review.yml +1 -1
  2. package/.github/workflows/claude.yml +1 -1
  3. package/.github/workflows/macos.yml +5 -5
  4. package/.github/workflows/release-please.yml +1 -1
  5. package/.github/workflows/release.yml +2 -2
  6. package/.github/workflows/ubuntu.yml +7 -7
  7. package/.github/workflows/windows.yml +5 -5
  8. package/.release-please-manifest.json +1 -1
  9. package/CHANGELOG.md +7 -0
  10. package/README.md +4 -4
  11. package/angular.json +8 -3
  12. package/app/core/FontFinder.js +17 -12
  13. package/app/core/FontFinder.ts +18 -12
  14. package/app/core/FontManager.js +13 -14
  15. package/app/core/FontManager.ts +12 -13
  16. package/app/core/MessageHandler.js +0 -1
  17. package/app/core/MessageHandler.ts +0 -4
  18. package/app/database/entity/Store.schema.js +1 -0
  19. package/app/database/entity/Store.schema.ts +1 -0
  20. package/app/database/repository/Collection.repository.js +0 -11
  21. package/app/database/repository/Collection.repository.ts +0 -22
  22. package/app/database/repository/Store.repository.js +50 -69
  23. package/app/database/repository/Store.repository.ts +47 -86
  24. package/app/enums/ChannelType.js +0 -1
  25. package/app/enums/ChannelType.ts +0 -1
  26. package/app/main.js +3 -2
  27. package/app/main.ts +3 -2
  28. package/app/package-lock.json +144 -1104
  29. package/app/package.json +4 -6
  30. package/app/preload.js +51 -0
  31. package/app/preload.ts +59 -0
  32. package/app/types/Bridge.js +3 -0
  33. package/app/types/Bridge.ts +19 -0
  34. package/app/types/index.js +1 -0
  35. package/app/types/index.ts +1 -0
  36. package/knip.json +18 -0
  37. package/package.json +44 -53
  38. package/src/app/app.component.spec.ts +3 -3
  39. package/src/app/app.component.ts +2 -15
  40. package/src/app/core/services/database/database.service.ts +8 -15
  41. package/src/app/core/services/electron/electron.service.ts +5 -46
  42. package/src/app/core/services/font-loader/font-loader.service.ts +60 -0
  43. package/src/app/core/services/index.ts +1 -0
  44. package/src/app/core/services/message/message.service.ts +19 -27
  45. package/src/app/core/services/presentation/presentation.service.ts +9 -2
  46. package/src/app/home/home.component.spec.ts +3 -3
  47. package/src/app/home/home.component.ts +4 -8
  48. package/src/app/layout/footer/footer.component.ts +6 -6
  49. package/src/app/shared/components/index.ts +0 -1
  50. package/src/app/shared/components/page-not-found/page-not-found.component.ts +2 -8
  51. package/src/app/shared/components/preview/preview.component.html +1 -0
  52. package/src/app/shared/components/preview/preview.component.ts +3 -31
  53. package/src/app/shared/components/rule-builder/rule-builder.component.html +4 -4
  54. package/src/app/shared/components/rule-builder/rule-builder.component.ts +13 -13
  55. package/src/app/shared/components/waterfall/waterfall.component.ts +1 -1
  56. package/src/app/shared/directives/index.ts +1 -1
  57. package/src/app/shared/directives/lazy-font/lazy-font.directive.ts +23 -0
  58. package/src/app/shared/shared.module.ts +3 -3
  59. package/src/main.ts +2 -2
  60. package/tsconfig.serve.json +4 -16
  61. package/app/helpers/command.js +0 -28
  62. package/app/helpers/command.ts +0 -20
  63. package/app/helpers/random.js +0 -16
  64. package/app/helpers/random.ts +0 -12
  65. package/src/app/shared/components/prompt-dialog/prompt-dialog.component.html +0 -36
  66. package/src/app/shared/components/prompt-dialog/prompt-dialog.component.ts +0 -40
  67. package/src/app/shared/directives/webview/webview.directive.spec.ts +0 -8
  68. package/src/app/shared/directives/webview/webview.directive.ts +0 -9
  69. package/src/styles/themes/dashboard.scss +0 -293
  70. package/src/styles/themes/euphoria.scss +0 -284
  71. package/src/styles/themes/mellow.scss +0 -281
  72. package/src/styles/themes/midnight.scss +0 -284
  73. package/src/styles/themes/passion.scss +0 -281
  74. package/src/styles/themes/swiss.scss +0 -284
@@ -1,50 +1,21 @@
1
1
  {
2
2
  "name": "fontastic",
3
- "version": "1.0.0",
3
+ "version": "1.3.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "fontastic",
9
- "version": "1.0.0",
9
+ "version": "1.3.2",
10
10
  "dependencies": {
11
- "better-sqlite3": "^12.6.2",
12
- "electron-log": "^4.4.8",
11
+ "better-sqlite3": "^12.11.1",
12
+ "electron-log": "^5.4.4",
13
13
  "electron-store": "^8.2.0",
14
14
  "fontkit": "^2.0.4",
15
15
  "mime": "^3.0.0",
16
- "node-fetch": "^2.7.0",
17
16
  "node-machine-id": "^1.1.12",
18
17
  "pretty-bytes": "^5.6.0",
19
- "sudo-prompt": "^9.2.1",
20
- "typeorm": "^0.3.20"
21
- }
22
- },
23
- "node_modules/@isaacs/cliui": {
24
- "version": "8.0.2",
25
- "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
26
- "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
27
- "license": "ISC",
28
- "dependencies": {
29
- "string-width": "^5.1.2",
30
- "string-width-cjs": "npm:string-width@^4.2.0",
31
- "strip-ansi": "^7.0.1",
32
- "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
33
- "wrap-ansi": "^8.1.0",
34
- "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
35
- },
36
- "engines": {
37
- "node": ">=12"
38
- }
39
- },
40
- "node_modules/@pkgjs/parseargs": {
41
- "version": "0.11.0",
42
- "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
43
- "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
44
- "license": "MIT",
45
- "optional": true,
46
- "engines": {
47
- "node": ">=14"
18
+ "typeorm": "^1.0.0"
48
19
  }
49
20
  },
50
21
  "node_modules/@sqltools/formatter": {
@@ -54,18 +25,18 @@
54
25
  "license": "MIT"
55
26
  },
56
27
  "node_modules/@swc/helpers": {
57
- "version": "0.5.19",
58
- "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.19.tgz",
59
- "integrity": "sha512-QamiFeIK3txNjgUTNppE6MiG3p7TdninpZu0E0PbqVh1a9FNLT2FRhisaa4NcaX52XVhA5l7Pk58Ft7Sqi/2sA==",
28
+ "version": "0.5.23",
29
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.23.tgz",
30
+ "integrity": "sha512-5lSsMOTXURePglDfvuAQUqkGek9Hg2kksOYay2m0+XR++b2NWYL/4sWyuvVBIs8oKnJaxkdi9whaL/sqN13afw==",
60
31
  "license": "Apache-2.0",
61
32
  "dependencies": {
62
33
  "tslib": "^2.8.0"
63
34
  }
64
35
  },
65
36
  "node_modules/ajv": {
66
- "version": "8.18.0",
67
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz",
68
- "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==",
37
+ "version": "8.20.0",
38
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
39
+ "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
69
40
  "license": "MIT",
70
41
  "dependencies": {
71
42
  "fast-deep-equal": "^3.1.3",
@@ -120,23 +91,14 @@
120
91
  }
121
92
  },
122
93
  "node_modules/ansis": {
123
- "version": "4.2.0",
124
- "resolved": "https://registry.npmjs.org/ansis/-/ansis-4.2.0.tgz",
125
- "integrity": "sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==",
94
+ "version": "4.3.1",
95
+ "resolved": "https://registry.npmjs.org/ansis/-/ansis-4.3.1.tgz",
96
+ "integrity": "sha512-BJ8/l4R5LRE7hW9WdSuGYrLSHi2ynxeFpDFbH0K/CgNeY/tyhk+vO6TYxXC5r5CpUhNVX310xzPsN/H9lCdfOA==",
126
97
  "license": "ISC",
127
98
  "engines": {
128
99
  "node": ">=14"
129
100
  }
130
101
  },
131
- "node_modules/app-root-path": {
132
- "version": "3.1.0",
133
- "resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-3.1.0.tgz",
134
- "integrity": "sha512-biN3PwB2gUtjaYy/isrU3aNWI5w+fAfvHkSvCKeQGxhmYpwKFUxudR3Yya+KqVRHBmEDYh+/lTozYCFbmzX4nA==",
135
- "license": "MIT",
136
- "engines": {
137
- "node": ">= 6.0.0"
138
- }
139
- },
140
102
  "node_modules/atomically": {
141
103
  "version": "1.7.0",
142
104
  "resolved": "https://registry.npmjs.org/atomically/-/atomically-1.7.0.tgz",
@@ -146,27 +108,6 @@
146
108
  "node": ">=10.12.0"
147
109
  }
148
110
  },
149
- "node_modules/available-typed-arrays": {
150
- "version": "1.0.7",
151
- "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
152
- "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
153
- "license": "MIT",
154
- "dependencies": {
155
- "possible-typed-array-names": "^1.0.0"
156
- },
157
- "engines": {
158
- "node": ">= 0.4"
159
- },
160
- "funding": {
161
- "url": "https://github.com/sponsors/ljharb"
162
- }
163
- },
164
- "node_modules/balanced-match": {
165
- "version": "1.0.2",
166
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
167
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
168
- "license": "MIT"
169
- },
170
111
  "node_modules/base64-js": {
171
112
  "version": "1.5.1",
172
113
  "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
@@ -188,9 +129,9 @@
188
129
  "license": "MIT"
189
130
  },
190
131
  "node_modules/better-sqlite3": {
191
- "version": "12.6.2",
192
- "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-12.6.2.tgz",
193
- "integrity": "sha512-8VYKM3MjCa9WcaSAI3hzwhmyHVlH8tiGFwf0RlTsZPWJ1I5MkzjiudCo4KC4DxOaL/53A5B1sI/IbldNFDbsKA==",
132
+ "version": "12.11.1",
133
+ "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-12.11.1.tgz",
134
+ "integrity": "sha512-dq9AtApgg5PGFtBzPFSBl3HZQjHok5gaQCM6zh2Yk0aSmDCs1CbnVI8/HgASQkNKsWFpseIO9beg5xxpYhbIfA==",
194
135
  "hasInstallScript": true,
195
136
  "license": "MIT",
196
137
  "dependencies": {
@@ -198,7 +139,7 @@
198
139
  "prebuild-install": "^7.1.1"
199
140
  },
200
141
  "engines": {
201
- "node": "20.x || 22.x || 23.x || 24.x || 25.x"
142
+ "node": "20.x || 22.x || 23.x || 24.x || 25.x || 26.x"
202
143
  }
203
144
  },
204
145
  "node_modules/bindings": {
@@ -221,39 +162,6 @@
221
162
  "readable-stream": "^3.4.0"
222
163
  }
223
164
  },
224
- "node_modules/bl/node_modules/buffer": {
225
- "version": "5.7.1",
226
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
227
- "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
228
- "funding": [
229
- {
230
- "type": "github",
231
- "url": "https://github.com/sponsors/feross"
232
- },
233
- {
234
- "type": "patreon",
235
- "url": "https://www.patreon.com/feross"
236
- },
237
- {
238
- "type": "consulting",
239
- "url": "https://feross.org/support"
240
- }
241
- ],
242
- "license": "MIT",
243
- "dependencies": {
244
- "base64-js": "^1.3.1",
245
- "ieee754": "^1.1.13"
246
- }
247
- },
248
- "node_modules/brace-expansion": {
249
- "version": "2.0.2",
250
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
251
- "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
252
- "license": "MIT",
253
- "dependencies": {
254
- "balanced-match": "^1.0.0"
255
- }
256
- },
257
165
  "node_modules/brotli": {
258
166
  "version": "1.3.3",
259
167
  "resolved": "https://registry.npmjs.org/brotli/-/brotli-1.3.3.tgz",
@@ -264,9 +172,9 @@
264
172
  }
265
173
  },
266
174
  "node_modules/buffer": {
267
- "version": "6.0.3",
268
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
269
- "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
175
+ "version": "5.7.1",
176
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
177
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
270
178
  "funding": [
271
179
  {
272
180
  "type": "github",
@@ -284,54 +192,7 @@
284
192
  "license": "MIT",
285
193
  "dependencies": {
286
194
  "base64-js": "^1.3.1",
287
- "ieee754": "^1.2.1"
288
- }
289
- },
290
- "node_modules/call-bind": {
291
- "version": "1.0.8",
292
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
293
- "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
294
- "license": "MIT",
295
- "dependencies": {
296
- "call-bind-apply-helpers": "^1.0.0",
297
- "es-define-property": "^1.0.0",
298
- "get-intrinsic": "^1.2.4",
299
- "set-function-length": "^1.2.2"
300
- },
301
- "engines": {
302
- "node": ">= 0.4"
303
- },
304
- "funding": {
305
- "url": "https://github.com/sponsors/ljharb"
306
- }
307
- },
308
- "node_modules/call-bind-apply-helpers": {
309
- "version": "1.0.2",
310
- "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
311
- "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
312
- "license": "MIT",
313
- "dependencies": {
314
- "es-errors": "^1.3.0",
315
- "function-bind": "^1.1.2"
316
- },
317
- "engines": {
318
- "node": ">= 0.4"
319
- }
320
- },
321
- "node_modules/call-bound": {
322
- "version": "1.0.4",
323
- "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
324
- "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
325
- "license": "MIT",
326
- "dependencies": {
327
- "call-bind-apply-helpers": "^1.0.2",
328
- "get-intrinsic": "^1.3.0"
329
- },
330
- "engines": {
331
- "node": ">= 0.4"
332
- },
333
- "funding": {
334
- "url": "https://github.com/sponsors/ljharb"
195
+ "ieee754": "^1.1.13"
335
196
  }
336
197
  },
337
198
  "node_modules/chownr": {
@@ -341,90 +202,17 @@
341
202
  "license": "ISC"
342
203
  },
343
204
  "node_modules/cliui": {
344
- "version": "8.0.1",
345
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
346
- "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
205
+ "version": "9.0.1",
206
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-9.0.1.tgz",
207
+ "integrity": "sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==",
347
208
  "license": "ISC",
348
209
  "dependencies": {
349
- "string-width": "^4.2.0",
350
- "strip-ansi": "^6.0.1",
351
- "wrap-ansi": "^7.0.0"
210
+ "string-width": "^7.2.0",
211
+ "strip-ansi": "^7.1.0",
212
+ "wrap-ansi": "^9.0.0"
352
213
  },
353
214
  "engines": {
354
- "node": ">=12"
355
- }
356
- },
357
- "node_modules/cliui/node_modules/ansi-regex": {
358
- "version": "5.0.1",
359
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
360
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
361
- "license": "MIT",
362
- "engines": {
363
- "node": ">=8"
364
- }
365
- },
366
- "node_modules/cliui/node_modules/ansi-styles": {
367
- "version": "4.3.0",
368
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
369
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
370
- "license": "MIT",
371
- "dependencies": {
372
- "color-convert": "^2.0.1"
373
- },
374
- "engines": {
375
- "node": ">=8"
376
- },
377
- "funding": {
378
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
379
- }
380
- },
381
- "node_modules/cliui/node_modules/emoji-regex": {
382
- "version": "8.0.0",
383
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
384
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
385
- "license": "MIT"
386
- },
387
- "node_modules/cliui/node_modules/string-width": {
388
- "version": "4.2.3",
389
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
390
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
391
- "license": "MIT",
392
- "dependencies": {
393
- "emoji-regex": "^8.0.0",
394
- "is-fullwidth-code-point": "^3.0.0",
395
- "strip-ansi": "^6.0.1"
396
- },
397
- "engines": {
398
- "node": ">=8"
399
- }
400
- },
401
- "node_modules/cliui/node_modules/strip-ansi": {
402
- "version": "6.0.1",
403
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
404
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
405
- "license": "MIT",
406
- "dependencies": {
407
- "ansi-regex": "^5.0.1"
408
- },
409
- "engines": {
410
- "node": ">=8"
411
- }
412
- },
413
- "node_modules/cliui/node_modules/wrap-ansi": {
414
- "version": "7.0.0",
415
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
416
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
417
- "license": "MIT",
418
- "dependencies": {
419
- "ansi-styles": "^4.0.0",
420
- "string-width": "^4.1.0",
421
- "strip-ansi": "^6.0.0"
422
- },
423
- "engines": {
424
- "node": ">=10"
425
- },
426
- "funding": {
427
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
215
+ "node": ">=20"
428
216
  }
429
217
  },
430
218
  "node_modules/clone": {
@@ -436,24 +224,6 @@
436
224
  "node": ">=0.8"
437
225
  }
438
226
  },
439
- "node_modules/color-convert": {
440
- "version": "2.0.1",
441
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
442
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
443
- "license": "MIT",
444
- "dependencies": {
445
- "color-name": "~1.1.4"
446
- },
447
- "engines": {
448
- "node": ">=7.0.0"
449
- }
450
- },
451
- "node_modules/color-name": {
452
- "version": "1.1.4",
453
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
454
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
455
- "license": "MIT"
456
- },
457
227
  "node_modules/conf": {
458
228
  "version": "10.2.0",
459
229
  "resolved": "https://registry.npmjs.org/conf/-/conf-10.2.0.tgz",
@@ -478,24 +248,10 @@
478
248
  "url": "https://github.com/sponsors/sindresorhus"
479
249
  }
480
250
  },
481
- "node_modules/cross-spawn": {
482
- "version": "7.0.6",
483
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
484
- "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
485
- "license": "MIT",
486
- "dependencies": {
487
- "path-key": "^3.1.0",
488
- "shebang-command": "^2.0.0",
489
- "which": "^2.0.1"
490
- },
491
- "engines": {
492
- "node": ">= 8"
493
- }
494
- },
495
251
  "node_modules/dayjs": {
496
- "version": "1.11.19",
497
- "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.19.tgz",
498
- "integrity": "sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==",
252
+ "version": "1.11.21",
253
+ "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.21.tgz",
254
+ "integrity": "sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA==",
499
255
  "license": "MIT"
500
256
  },
501
257
  "node_modules/debounce-fn": {
@@ -568,23 +324,6 @@
568
324
  "node": ">=4.0.0"
569
325
  }
570
326
  },
571
- "node_modules/define-data-property": {
572
- "version": "1.1.4",
573
- "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
574
- "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
575
- "license": "MIT",
576
- "dependencies": {
577
- "es-define-property": "^1.0.0",
578
- "es-errors": "^1.3.0",
579
- "gopd": "^1.0.1"
580
- },
581
- "engines": {
582
- "node": ">= 0.4"
583
- },
584
- "funding": {
585
- "url": "https://github.com/sponsors/ljharb"
586
- }
587
- },
588
327
  "node_modules/detect-libc": {
589
328
  "version": "2.1.2",
590
329
  "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
@@ -615,44 +354,15 @@
615
354
  "url": "https://github.com/sponsors/sindresorhus"
616
355
  }
617
356
  },
618
- "node_modules/dotenv": {
619
- "version": "16.6.1",
620
- "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz",
621
- "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==",
622
- "license": "BSD-2-Clause",
623
- "engines": {
624
- "node": ">=12"
625
- },
626
- "funding": {
627
- "url": "https://dotenvx.com"
628
- }
629
- },
630
- "node_modules/dunder-proto": {
631
- "version": "1.0.1",
632
- "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
633
- "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
357
+ "node_modules/electron-log": {
358
+ "version": "5.4.4",
359
+ "resolved": "https://registry.npmjs.org/electron-log/-/electron-log-5.4.4.tgz",
360
+ "integrity": "sha512-istWgaXjBfURBSS8LWVW9C3jsc6+ac+tY1lXrQEOTp0lVj+a4OlO1Tmqb36GgnEUDv92DGC9VI1HNXwJinWpgA==",
634
361
  "license": "MIT",
635
- "dependencies": {
636
- "call-bind-apply-helpers": "^1.0.1",
637
- "es-errors": "^1.3.0",
638
- "gopd": "^1.2.0"
639
- },
640
362
  "engines": {
641
- "node": ">= 0.4"
363
+ "node": ">= 14"
642
364
  }
643
365
  },
644
- "node_modules/eastasianwidth": {
645
- "version": "0.2.0",
646
- "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
647
- "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
648
- "license": "MIT"
649
- },
650
- "node_modules/electron-log": {
651
- "version": "4.4.8",
652
- "resolved": "https://registry.npmjs.org/electron-log/-/electron-log-4.4.8.tgz",
653
- "integrity": "sha512-QQ4GvrXO+HkgqqEOYbi+DHL7hj5JM+nHi/j+qrN9zeeXVKy8ZABgbu4CnG+BBqDZ2+tbeq9tUC4DZfIWFU5AZA==",
654
- "license": "MIT"
655
- },
656
366
  "node_modules/electron-store": {
657
367
  "version": "8.2.0",
658
368
  "resolved": "https://registry.npmjs.org/electron-store/-/electron-store-8.2.0.tgz",
@@ -667,9 +377,9 @@
667
377
  }
668
378
  },
669
379
  "node_modules/emoji-regex": {
670
- "version": "9.2.2",
671
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
672
- "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
380
+ "version": "10.6.0",
381
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz",
382
+ "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==",
673
383
  "license": "MIT"
674
384
  },
675
385
  "node_modules/end-of-stream": {
@@ -690,36 +400,6 @@
690
400
  "node": ">=6"
691
401
  }
692
402
  },
693
- "node_modules/es-define-property": {
694
- "version": "1.0.1",
695
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
696
- "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
697
- "license": "MIT",
698
- "engines": {
699
- "node": ">= 0.4"
700
- }
701
- },
702
- "node_modules/es-errors": {
703
- "version": "1.3.0",
704
- "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
705
- "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
706
- "license": "MIT",
707
- "engines": {
708
- "node": ">= 0.4"
709
- }
710
- },
711
- "node_modules/es-object-atoms": {
712
- "version": "1.1.1",
713
- "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
714
- "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
715
- "license": "MIT",
716
- "dependencies": {
717
- "es-errors": "^1.3.0"
718
- },
719
- "engines": {
720
- "node": ">= 0.4"
721
- }
722
- },
723
403
  "node_modules/escalade": {
724
404
  "version": "3.2.0",
725
405
  "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
@@ -745,9 +425,9 @@
745
425
  "license": "MIT"
746
426
  },
747
427
  "node_modules/fast-uri": {
748
- "version": "3.1.0",
749
- "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz",
750
- "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==",
428
+ "version": "3.1.3",
429
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.3.tgz",
430
+ "integrity": "sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==",
751
431
  "funding": [
752
432
  {
753
433
  "type": "github",
@@ -760,6 +440,23 @@
760
440
  ],
761
441
  "license": "BSD-3-Clause"
762
442
  },
443
+ "node_modules/fdir": {
444
+ "version": "6.5.0",
445
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
446
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
447
+ "license": "MIT",
448
+ "engines": {
449
+ "node": ">=12.0.0"
450
+ },
451
+ "peerDependencies": {
452
+ "picomatch": "^3 || ^4"
453
+ },
454
+ "peerDependenciesMeta": {
455
+ "picomatch": {
456
+ "optional": true
457
+ }
458
+ }
459
+ },
763
460
  "node_modules/file-uri-to-path": {
764
461
  "version": "1.0.0",
765
462
  "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
@@ -795,52 +492,12 @@
795
492
  "unicode-trie": "^2.0.0"
796
493
  }
797
494
  },
798
- "node_modules/for-each": {
799
- "version": "0.3.5",
800
- "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz",
801
- "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==",
802
- "license": "MIT",
803
- "dependencies": {
804
- "is-callable": "^1.2.7"
805
- },
806
- "engines": {
807
- "node": ">= 0.4"
808
- },
809
- "funding": {
810
- "url": "https://github.com/sponsors/ljharb"
811
- }
812
- },
813
- "node_modules/foreground-child": {
814
- "version": "3.3.1",
815
- "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
816
- "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
817
- "license": "ISC",
818
- "dependencies": {
819
- "cross-spawn": "^7.0.6",
820
- "signal-exit": "^4.0.1"
821
- },
822
- "engines": {
823
- "node": ">=14"
824
- },
825
- "funding": {
826
- "url": "https://github.com/sponsors/isaacs"
827
- }
828
- },
829
495
  "node_modules/fs-constants": {
830
496
  "version": "1.0.0",
831
497
  "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
832
498
  "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
833
499
  "license": "MIT"
834
500
  },
835
- "node_modules/function-bind": {
836
- "version": "1.1.2",
837
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
838
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
839
- "license": "MIT",
840
- "funding": {
841
- "url": "https://github.com/sponsors/ljharb"
842
- }
843
- },
844
501
  "node_modules/get-caller-file": {
845
502
  "version": "2.0.5",
846
503
  "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
@@ -850,41 +507,16 @@
850
507
  "node": "6.* || 8.* || >= 10.*"
851
508
  }
852
509
  },
853
- "node_modules/get-intrinsic": {
854
- "version": "1.3.0",
855
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
856
- "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
510
+ "node_modules/get-east-asian-width": {
511
+ "version": "1.6.0",
512
+ "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz",
513
+ "integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==",
857
514
  "license": "MIT",
858
- "dependencies": {
859
- "call-bind-apply-helpers": "^1.0.2",
860
- "es-define-property": "^1.0.1",
861
- "es-errors": "^1.3.0",
862
- "es-object-atoms": "^1.1.1",
863
- "function-bind": "^1.1.2",
864
- "get-proto": "^1.0.1",
865
- "gopd": "^1.2.0",
866
- "has-symbols": "^1.1.0",
867
- "hasown": "^2.0.2",
868
- "math-intrinsics": "^1.1.0"
869
- },
870
515
  "engines": {
871
- "node": ">= 0.4"
516
+ "node": ">=18"
872
517
  },
873
518
  "funding": {
874
- "url": "https://github.com/sponsors/ljharb"
875
- }
876
- },
877
- "node_modules/get-proto": {
878
- "version": "1.0.1",
879
- "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
880
- "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
881
- "license": "MIT",
882
- "dependencies": {
883
- "dunder-proto": "^1.0.1",
884
- "es-object-atoms": "^1.0.0"
885
- },
886
- "engines": {
887
- "node": ">= 0.4"
519
+ "url": "https://github.com/sponsors/sindresorhus"
888
520
  }
889
521
  },
890
522
  "node_modules/github-from-package": {
@@ -893,90 +525,6 @@
893
525
  "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==",
894
526
  "license": "MIT"
895
527
  },
896
- "node_modules/glob": {
897
- "version": "10.5.0",
898
- "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz",
899
- "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==",
900
- "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
901
- "license": "ISC",
902
- "dependencies": {
903
- "foreground-child": "^3.1.0",
904
- "jackspeak": "^3.1.2",
905
- "minimatch": "^9.0.4",
906
- "minipass": "^7.1.2",
907
- "package-json-from-dist": "^1.0.0",
908
- "path-scurry": "^1.11.1"
909
- },
910
- "bin": {
911
- "glob": "dist/esm/bin.mjs"
912
- },
913
- "funding": {
914
- "url": "https://github.com/sponsors/isaacs"
915
- }
916
- },
917
- "node_modules/gopd": {
918
- "version": "1.2.0",
919
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
920
- "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
921
- "license": "MIT",
922
- "engines": {
923
- "node": ">= 0.4"
924
- },
925
- "funding": {
926
- "url": "https://github.com/sponsors/ljharb"
927
- }
928
- },
929
- "node_modules/has-property-descriptors": {
930
- "version": "1.0.2",
931
- "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
932
- "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
933
- "license": "MIT",
934
- "dependencies": {
935
- "es-define-property": "^1.0.0"
936
- },
937
- "funding": {
938
- "url": "https://github.com/sponsors/ljharb"
939
- }
940
- },
941
- "node_modules/has-symbols": {
942
- "version": "1.1.0",
943
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
944
- "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
945
- "license": "MIT",
946
- "engines": {
947
- "node": ">= 0.4"
948
- },
949
- "funding": {
950
- "url": "https://github.com/sponsors/ljharb"
951
- }
952
- },
953
- "node_modules/has-tostringtag": {
954
- "version": "1.0.2",
955
- "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
956
- "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
957
- "license": "MIT",
958
- "dependencies": {
959
- "has-symbols": "^1.0.3"
960
- },
961
- "engines": {
962
- "node": ">= 0.4"
963
- },
964
- "funding": {
965
- "url": "https://github.com/sponsors/ljharb"
966
- }
967
- },
968
- "node_modules/hasown": {
969
- "version": "2.0.2",
970
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
971
- "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
972
- "license": "MIT",
973
- "dependencies": {
974
- "function-bind": "^1.1.2"
975
- },
976
- "engines": {
977
- "node": ">= 0.4"
978
- }
979
- },
980
528
  "node_modules/ieee754": {
981
529
  "version": "1.2.1",
982
530
  "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
@@ -1001,84 +549,21 @@
1001
549
  "version": "2.0.4",
1002
550
  "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
1003
551
  "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
1004
- "license": "ISC"
1005
- },
1006
- "node_modules/ini": {
1007
- "version": "1.3.8",
1008
- "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
1009
- "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
1010
- "license": "ISC"
1011
- },
1012
- "node_modules/is-callable": {
1013
- "version": "1.2.7",
1014
- "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
1015
- "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
1016
- "license": "MIT",
1017
- "engines": {
1018
- "node": ">= 0.4"
1019
- },
1020
- "funding": {
1021
- "url": "https://github.com/sponsors/ljharb"
1022
- }
1023
- },
1024
- "node_modules/is-fullwidth-code-point": {
1025
- "version": "3.0.0",
1026
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
1027
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
1028
- "license": "MIT",
1029
- "engines": {
1030
- "node": ">=8"
1031
- }
1032
- },
1033
- "node_modules/is-obj": {
1034
- "version": "2.0.0",
1035
- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
1036
- "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
1037
- "license": "MIT",
1038
- "engines": {
1039
- "node": ">=8"
1040
- }
1041
- },
1042
- "node_modules/is-typed-array": {
1043
- "version": "1.1.15",
1044
- "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz",
1045
- "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==",
1046
- "license": "MIT",
1047
- "dependencies": {
1048
- "which-typed-array": "^1.1.16"
1049
- },
1050
- "engines": {
1051
- "node": ">= 0.4"
1052
- },
1053
- "funding": {
1054
- "url": "https://github.com/sponsors/ljharb"
1055
- }
1056
- },
1057
- "node_modules/isarray": {
1058
- "version": "2.0.5",
1059
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
1060
- "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
1061
- "license": "MIT"
552
+ "license": "ISC"
1062
553
  },
1063
- "node_modules/isexe": {
1064
- "version": "2.0.0",
1065
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1066
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
554
+ "node_modules/ini": {
555
+ "version": "1.3.8",
556
+ "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
557
+ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
1067
558
  "license": "ISC"
1068
559
  },
1069
- "node_modules/jackspeak": {
1070
- "version": "3.4.3",
1071
- "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
1072
- "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
1073
- "license": "BlueOak-1.0.0",
1074
- "dependencies": {
1075
- "@isaacs/cliui": "^8.0.2"
1076
- },
1077
- "funding": {
1078
- "url": "https://github.com/sponsors/isaacs"
1079
- },
1080
- "optionalDependencies": {
1081
- "@pkgjs/parseargs": "^0.11.0"
560
+ "node_modules/is-obj": {
561
+ "version": "2.0.0",
562
+ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
563
+ "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
564
+ "license": "MIT",
565
+ "engines": {
566
+ "node": ">=8"
1082
567
  }
1083
568
  },
1084
569
  "node_modules/json-schema-traverse": {
@@ -1106,21 +591,6 @@
1106
591
  "node": ">=6"
1107
592
  }
1108
593
  },
1109
- "node_modules/lru-cache": {
1110
- "version": "10.4.3",
1111
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
1112
- "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
1113
- "license": "ISC"
1114
- },
1115
- "node_modules/math-intrinsics": {
1116
- "version": "1.1.0",
1117
- "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
1118
- "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
1119
- "license": "MIT",
1120
- "engines": {
1121
- "node": ">= 0.4"
1122
- }
1123
- },
1124
594
  "node_modules/mime": {
1125
595
  "version": "3.0.0",
1126
596
  "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz",
@@ -1154,21 +624,6 @@
1154
624
  "url": "https://github.com/sponsors/sindresorhus"
1155
625
  }
1156
626
  },
1157
- "node_modules/minimatch": {
1158
- "version": "9.0.9",
1159
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz",
1160
- "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==",
1161
- "license": "ISC",
1162
- "dependencies": {
1163
- "brace-expansion": "^2.0.2"
1164
- },
1165
- "engines": {
1166
- "node": ">=16 || 14 >=14.17"
1167
- },
1168
- "funding": {
1169
- "url": "https://github.com/sponsors/isaacs"
1170
- }
1171
- },
1172
627
  "node_modules/minimist": {
1173
628
  "version": "1.2.8",
1174
629
  "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
@@ -1178,15 +633,6 @@
1178
633
  "url": "https://github.com/sponsors/ljharb"
1179
634
  }
1180
635
  },
1181
- "node_modules/minipass": {
1182
- "version": "7.1.3",
1183
- "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz",
1184
- "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
1185
- "license": "BlueOak-1.0.0",
1186
- "engines": {
1187
- "node": ">=16 || 14 >=14.17"
1188
- }
1189
- },
1190
636
  "node_modules/mkdirp-classic": {
1191
637
  "version": "0.5.3",
1192
638
  "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
@@ -1206,9 +652,9 @@
1206
652
  "license": "MIT"
1207
653
  },
1208
654
  "node_modules/node-abi": {
1209
- "version": "3.87.0",
1210
- "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.87.0.tgz",
1211
- "integrity": "sha512-+CGM1L1CgmtheLcBuleyYOn7NWPVu0s0EJH2C4puxgEZb9h8QpR9G2dBfZJOAUhi7VQxuBPMd0hiISWcTyiYyQ==",
655
+ "version": "3.94.0",
656
+ "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.94.0.tgz",
657
+ "integrity": "sha512-W5ZNO5KRPB5TkYmGVD9F6YqhsglXJzE6etpbmT+f6EQElhiX/UTG551cnsRGvLG3fyZEg9HwaDmNmj5nwJ4z9g==",
1212
658
  "license": "MIT",
1213
659
  "dependencies": {
1214
660
  "semver": "^7.3.5"
@@ -1217,26 +663,6 @@
1217
663
  "node": ">=10"
1218
664
  }
1219
665
  },
1220
- "node_modules/node-fetch": {
1221
- "version": "2.7.0",
1222
- "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
1223
- "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
1224
- "license": "MIT",
1225
- "dependencies": {
1226
- "whatwg-url": "^5.0.0"
1227
- },
1228
- "engines": {
1229
- "node": "4.x || >=6.0.0"
1230
- },
1231
- "peerDependencies": {
1232
- "encoding": "^0.1.0"
1233
- },
1234
- "peerDependenciesMeta": {
1235
- "encoding": {
1236
- "optional": true
1237
- }
1238
- }
1239
- },
1240
666
  "node_modules/node-machine-id": {
1241
667
  "version": "1.1.12",
1242
668
  "resolved": "https://registry.npmjs.org/node-machine-id/-/node-machine-id-1.1.12.tgz",
@@ -1312,12 +738,6 @@
1312
738
  "node": ">=6"
1313
739
  }
1314
740
  },
1315
- "node_modules/package-json-from-dist": {
1316
- "version": "1.0.1",
1317
- "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
1318
- "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
1319
- "license": "BlueOak-1.0.0"
1320
- },
1321
741
  "node_modules/pako": {
1322
742
  "version": "0.2.9",
1323
743
  "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz",
@@ -1333,29 +753,16 @@
1333
753
  "node": ">=4"
1334
754
  }
1335
755
  },
1336
- "node_modules/path-key": {
1337
- "version": "3.1.1",
1338
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
1339
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
756
+ "node_modules/picomatch": {
757
+ "version": "4.0.5",
758
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz",
759
+ "integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
1340
760
  "license": "MIT",
1341
761
  "engines": {
1342
- "node": ">=8"
1343
- }
1344
- },
1345
- "node_modules/path-scurry": {
1346
- "version": "1.11.1",
1347
- "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
1348
- "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
1349
- "license": "BlueOak-1.0.0",
1350
- "dependencies": {
1351
- "lru-cache": "^10.2.0",
1352
- "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
1353
- },
1354
- "engines": {
1355
- "node": ">=16 || 14 >=14.18"
762
+ "node": ">=12"
1356
763
  },
1357
764
  "funding": {
1358
- "url": "https://github.com/sponsors/isaacs"
765
+ "url": "https://github.com/sponsors/jonschlinkert"
1359
766
  }
1360
767
  },
1361
768
  "node_modules/pkg-up": {
@@ -1370,15 +777,6 @@
1370
777
  "node": ">=8"
1371
778
  }
1372
779
  },
1373
- "node_modules/possible-typed-array-names": {
1374
- "version": "1.1.0",
1375
- "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz",
1376
- "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==",
1377
- "license": "MIT",
1378
- "engines": {
1379
- "node": ">= 0.4"
1380
- }
1381
- },
1382
780
  "node_modules/prebuild-install": {
1383
781
  "version": "7.1.3",
1384
782
  "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.3.tgz",
@@ -1463,15 +861,6 @@
1463
861
  "integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==",
1464
862
  "license": "Apache-2.0"
1465
863
  },
1466
- "node_modules/require-directory": {
1467
- "version": "2.1.1",
1468
- "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
1469
- "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
1470
- "license": "MIT",
1471
- "engines": {
1472
- "node": ">=0.10.0"
1473
- }
1474
- },
1475
864
  "node_modules/require-from-string": {
1476
865
  "version": "2.0.2",
1477
866
  "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
@@ -1508,9 +897,9 @@
1508
897
  "license": "MIT"
1509
898
  },
1510
899
  "node_modules/semver": {
1511
- "version": "7.7.4",
1512
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
1513
- "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
900
+ "version": "7.8.5",
901
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
902
+ "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
1514
903
  "license": "ISC",
1515
904
  "bin": {
1516
905
  "semver": "bin/semver.js"
@@ -1519,76 +908,6 @@
1519
908
  "node": ">=10"
1520
909
  }
1521
910
  },
1522
- "node_modules/set-function-length": {
1523
- "version": "1.2.2",
1524
- "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
1525
- "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
1526
- "license": "MIT",
1527
- "dependencies": {
1528
- "define-data-property": "^1.1.4",
1529
- "es-errors": "^1.3.0",
1530
- "function-bind": "^1.1.2",
1531
- "get-intrinsic": "^1.2.4",
1532
- "gopd": "^1.0.1",
1533
- "has-property-descriptors": "^1.0.2"
1534
- },
1535
- "engines": {
1536
- "node": ">= 0.4"
1537
- }
1538
- },
1539
- "node_modules/sha.js": {
1540
- "version": "2.4.12",
1541
- "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.12.tgz",
1542
- "integrity": "sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==",
1543
- "license": "(MIT AND BSD-3-Clause)",
1544
- "dependencies": {
1545
- "inherits": "^2.0.4",
1546
- "safe-buffer": "^5.2.1",
1547
- "to-buffer": "^1.2.0"
1548
- },
1549
- "bin": {
1550
- "sha.js": "bin.js"
1551
- },
1552
- "engines": {
1553
- "node": ">= 0.10"
1554
- },
1555
- "funding": {
1556
- "url": "https://github.com/sponsors/ljharb"
1557
- }
1558
- },
1559
- "node_modules/shebang-command": {
1560
- "version": "2.0.0",
1561
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
1562
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
1563
- "license": "MIT",
1564
- "dependencies": {
1565
- "shebang-regex": "^3.0.0"
1566
- },
1567
- "engines": {
1568
- "node": ">=8"
1569
- }
1570
- },
1571
- "node_modules/shebang-regex": {
1572
- "version": "3.0.0",
1573
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
1574
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
1575
- "license": "MIT",
1576
- "engines": {
1577
- "node": ">=8"
1578
- }
1579
- },
1580
- "node_modules/signal-exit": {
1581
- "version": "4.1.0",
1582
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
1583
- "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
1584
- "license": "ISC",
1585
- "engines": {
1586
- "node": ">=14"
1587
- },
1588
- "funding": {
1589
- "url": "https://github.com/sponsors/isaacs"
1590
- }
1591
- },
1592
911
  "node_modules/simple-concat": {
1593
912
  "version": "1.0.1",
1594
913
  "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
@@ -1660,64 +979,22 @@
1660
979
  }
1661
980
  },
1662
981
  "node_modules/string-width": {
1663
- "version": "5.1.2",
1664
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
1665
- "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
982
+ "version": "7.2.0",
983
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
984
+ "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
1666
985
  "license": "MIT",
1667
986
  "dependencies": {
1668
- "eastasianwidth": "^0.2.0",
1669
- "emoji-regex": "^9.2.2",
1670
- "strip-ansi": "^7.0.1"
987
+ "emoji-regex": "^10.3.0",
988
+ "get-east-asian-width": "^1.0.0",
989
+ "strip-ansi": "^7.1.0"
1671
990
  },
1672
991
  "engines": {
1673
- "node": ">=12"
992
+ "node": ">=18"
1674
993
  },
1675
994
  "funding": {
1676
995
  "url": "https://github.com/sponsors/sindresorhus"
1677
996
  }
1678
997
  },
1679
- "node_modules/string-width-cjs": {
1680
- "name": "string-width",
1681
- "version": "4.2.3",
1682
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
1683
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
1684
- "license": "MIT",
1685
- "dependencies": {
1686
- "emoji-regex": "^8.0.0",
1687
- "is-fullwidth-code-point": "^3.0.0",
1688
- "strip-ansi": "^6.0.1"
1689
- },
1690
- "engines": {
1691
- "node": ">=8"
1692
- }
1693
- },
1694
- "node_modules/string-width-cjs/node_modules/ansi-regex": {
1695
- "version": "5.0.1",
1696
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
1697
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1698
- "license": "MIT",
1699
- "engines": {
1700
- "node": ">=8"
1701
- }
1702
- },
1703
- "node_modules/string-width-cjs/node_modules/emoji-regex": {
1704
- "version": "8.0.0",
1705
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
1706
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
1707
- "license": "MIT"
1708
- },
1709
- "node_modules/string-width-cjs/node_modules/strip-ansi": {
1710
- "version": "6.0.1",
1711
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
1712
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
1713
- "license": "MIT",
1714
- "dependencies": {
1715
- "ansi-regex": "^5.0.1"
1716
- },
1717
- "engines": {
1718
- "node": ">=8"
1719
- }
1720
- },
1721
998
  "node_modules/strip-ansi": {
1722
999
  "version": "7.2.0",
1723
1000
  "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz",
@@ -1733,28 +1010,6 @@
1733
1010
  "url": "https://github.com/chalk/strip-ansi?sponsor=1"
1734
1011
  }
1735
1012
  },
1736
- "node_modules/strip-ansi-cjs": {
1737
- "name": "strip-ansi",
1738
- "version": "6.0.1",
1739
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
1740
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
1741
- "license": "MIT",
1742
- "dependencies": {
1743
- "ansi-regex": "^5.0.1"
1744
- },
1745
- "engines": {
1746
- "node": ">=8"
1747
- }
1748
- },
1749
- "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
1750
- "version": "5.0.1",
1751
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
1752
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1753
- "license": "MIT",
1754
- "engines": {
1755
- "node": ">=8"
1756
- }
1757
- },
1758
1013
  "node_modules/strip-json-comments": {
1759
1014
  "version": "2.0.1",
1760
1015
  "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
@@ -1764,17 +1019,10 @@
1764
1019
  "node": ">=0.10.0"
1765
1020
  }
1766
1021
  },
1767
- "node_modules/sudo-prompt": {
1768
- "version": "9.2.1",
1769
- "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz",
1770
- "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==",
1771
- "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.",
1772
- "license": "MIT"
1773
- },
1774
1022
  "node_modules/tar-fs": {
1775
- "version": "2.1.4",
1776
- "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.4.tgz",
1777
- "integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==",
1023
+ "version": "2.1.5",
1024
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.5.tgz",
1025
+ "integrity": "sha512-OboTd8mmMhZDNPV+UjQcK9yKAatXu2aJ+r1w4im1Otd4M4fl2hwvdoXUxIYHFTHWK/3y3FarBP70v3vwmGlOxw==",
1778
1026
  "license": "MIT",
1779
1027
  "dependencies": {
1780
1028
  "chownr": "^1.1.1",
@@ -1805,26 +1053,22 @@
1805
1053
  "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==",
1806
1054
  "license": "MIT"
1807
1055
  },
1808
- "node_modules/to-buffer": {
1809
- "version": "1.2.2",
1810
- "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.2.2.tgz",
1811
- "integrity": "sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==",
1056
+ "node_modules/tinyglobby": {
1057
+ "version": "0.2.17",
1058
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
1059
+ "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
1812
1060
  "license": "MIT",
1813
1061
  "dependencies": {
1814
- "isarray": "^2.0.5",
1815
- "safe-buffer": "^5.2.1",
1816
- "typed-array-buffer": "^1.0.3"
1062
+ "fdir": "^6.5.0",
1063
+ "picomatch": "^4.0.4"
1817
1064
  },
1818
1065
  "engines": {
1819
- "node": ">= 0.4"
1066
+ "node": ">=12.0.0"
1067
+ },
1068
+ "funding": {
1069
+ "url": "https://github.com/sponsors/SuperchupuDev"
1820
1070
  }
1821
1071
  },
1822
- "node_modules/tr46": {
1823
- "version": "0.0.3",
1824
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
1825
- "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
1826
- "license": "MIT"
1827
- },
1828
1072
  "node_modules/tslib": {
1829
1073
  "version": "2.8.1",
1830
1074
  "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
@@ -1855,41 +1099,22 @@
1855
1099
  "url": "https://github.com/sponsors/sindresorhus"
1856
1100
  }
1857
1101
  },
1858
- "node_modules/typed-array-buffer": {
1859
- "version": "1.0.3",
1860
- "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz",
1861
- "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==",
1862
- "license": "MIT",
1863
- "dependencies": {
1864
- "call-bound": "^1.0.3",
1865
- "es-errors": "^1.3.0",
1866
- "is-typed-array": "^1.1.14"
1867
- },
1868
- "engines": {
1869
- "node": ">= 0.4"
1870
- }
1871
- },
1872
1102
  "node_modules/typeorm": {
1873
- "version": "0.3.28",
1874
- "resolved": "https://registry.npmjs.org/typeorm/-/typeorm-0.3.28.tgz",
1875
- "integrity": "sha512-6GH7wXhtfq2D33ZuRXYwIsl/qM5685WZcODZb7noOOcRMteM9KF2x2ap3H0EBjnSV0VO4gNAfJT5Ukp0PkOlvg==",
1103
+ "version": "1.0.0",
1104
+ "resolved": "https://registry.npmjs.org/typeorm/-/typeorm-1.0.0.tgz",
1105
+ "integrity": "sha512-2mSKNqucP8vo+xQLP59xlHUcqLvG6qajxA7q7tnhJgeZjTrA6lK/Ar7LRyiAxdXhyXmGbIPsArPmcUB9Xg+M7w==",
1876
1106
  "license": "MIT",
1877
1107
  "dependencies": {
1878
1108
  "@sqltools/formatter": "^1.2.5",
1879
1109
  "ansis": "^4.2.0",
1880
- "app-root-path": "^3.1.0",
1881
- "buffer": "^6.0.3",
1882
- "dayjs": "^1.11.19",
1110
+ "dayjs": "^1.11.20",
1883
1111
  "debug": "^4.4.3",
1884
- "dedent": "^1.7.0",
1885
- "dotenv": "^16.6.1",
1886
- "glob": "^10.5.0",
1112
+ "dedent": "^1.7.2",
1887
1113
  "reflect-metadata": "^0.2.2",
1888
- "sha.js": "^2.4.12",
1889
1114
  "sql-highlight": "^6.1.0",
1115
+ "tinyglobby": "^0.2.16",
1890
1116
  "tslib": "^2.8.1",
1891
- "uuid": "^11.1.0",
1892
- "yargs": "^17.7.2"
1117
+ "yargs": "^18.0.0"
1893
1118
  },
1894
1119
  "bin": {
1895
1120
  "typeorm": "cli.js",
@@ -1897,28 +1122,27 @@
1897
1122
  "typeorm-ts-node-esm": "cli-ts-node-esm.js"
1898
1123
  },
1899
1124
  "engines": {
1900
- "node": ">=16.13.0"
1125
+ "node": "^20.19.0 || ^22.13.0 || >=24.11.0"
1901
1126
  },
1902
1127
  "funding": {
1903
1128
  "url": "https://opencollective.com/typeorm"
1904
1129
  },
1905
1130
  "peerDependencies": {
1906
- "@google-cloud/spanner": "^5.18.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
1131
+ "@google-cloud/spanner": "^8.0.0",
1907
1132
  "@sap/hana-client": "^2.14.22",
1908
- "better-sqlite3": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0",
1133
+ "better-sqlite3": "^12.0.0",
1909
1134
  "ioredis": "^5.0.4",
1910
- "mongodb": "^5.8.0 || ^6.0.0",
1911
- "mssql": "^9.1.1 || ^10.0.0 || ^11.0.0 || ^12.0.0",
1912
- "mysql2": "^2.2.5 || ^3.0.1",
1135
+ "mongodb": "^7.0.0",
1136
+ "mssql": "^12.0.0",
1137
+ "mysql2": "^3.15.3",
1913
1138
  "oracledb": "^6.3.0",
1914
1139
  "pg": "^8.5.1",
1915
1140
  "pg-native": "^3.0.0",
1916
1141
  "pg-query-stream": "^4.0.0",
1917
- "redis": "^3.1.1 || ^4.0.0 || ^5.0.14",
1142
+ "redis": "^5.0.0",
1918
1143
  "sql.js": "^1.4.0",
1919
- "sqlite3": "^5.0.3",
1920
- "ts-node": "^10.7.0",
1921
- "typeorm-aurora-data-api-driver": "^2.0.0 || ^3.0.0"
1144
+ "ts-node": "^10.9.2",
1145
+ "typeorm-aurora-data-api-driver": "^3.0.0"
1922
1146
  },
1923
1147
  "peerDependenciesMeta": {
1924
1148
  "@google-cloud/spanner": {
@@ -1960,9 +1184,6 @@
1960
1184
  "sql.js": {
1961
1185
  "optional": true
1962
1186
  },
1963
- "sqlite3": {
1964
- "optional": true
1965
- },
1966
1187
  "ts-node": {
1967
1188
  "optional": true
1968
1189
  },
@@ -1997,162 +1218,23 @@
1997
1218
  "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
1998
1219
  "license": "MIT"
1999
1220
  },
2000
- "node_modules/uuid": {
2001
- "version": "11.1.0",
2002
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.0.tgz",
2003
- "integrity": "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==",
2004
- "funding": [
2005
- "https://github.com/sponsors/broofa",
2006
- "https://github.com/sponsors/ctavan"
2007
- ],
2008
- "license": "MIT",
2009
- "bin": {
2010
- "uuid": "dist/esm/bin/uuid"
2011
- }
2012
- },
2013
- "node_modules/webidl-conversions": {
2014
- "version": "3.0.1",
2015
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
2016
- "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
2017
- "license": "BSD-2-Clause"
2018
- },
2019
- "node_modules/whatwg-url": {
2020
- "version": "5.0.0",
2021
- "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
2022
- "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
2023
- "license": "MIT",
2024
- "dependencies": {
2025
- "tr46": "~0.0.3",
2026
- "webidl-conversions": "^3.0.0"
2027
- }
2028
- },
2029
- "node_modules/which": {
2030
- "version": "2.0.2",
2031
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
2032
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
2033
- "license": "ISC",
2034
- "dependencies": {
2035
- "isexe": "^2.0.0"
2036
- },
2037
- "bin": {
2038
- "node-which": "bin/node-which"
2039
- },
2040
- "engines": {
2041
- "node": ">= 8"
2042
- }
2043
- },
2044
- "node_modules/which-typed-array": {
2045
- "version": "1.1.20",
2046
- "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.20.tgz",
2047
- "integrity": "sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==",
2048
- "license": "MIT",
2049
- "dependencies": {
2050
- "available-typed-arrays": "^1.0.7",
2051
- "call-bind": "^1.0.8",
2052
- "call-bound": "^1.0.4",
2053
- "for-each": "^0.3.5",
2054
- "get-proto": "^1.0.1",
2055
- "gopd": "^1.2.0",
2056
- "has-tostringtag": "^1.0.2"
2057
- },
2058
- "engines": {
2059
- "node": ">= 0.4"
2060
- },
2061
- "funding": {
2062
- "url": "https://github.com/sponsors/ljharb"
2063
- }
2064
- },
2065
1221
  "node_modules/wrap-ansi": {
2066
- "version": "8.1.0",
2067
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
2068
- "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
2069
- "license": "MIT",
2070
- "dependencies": {
2071
- "ansi-styles": "^6.1.0",
2072
- "string-width": "^5.0.1",
2073
- "strip-ansi": "^7.0.1"
2074
- },
2075
- "engines": {
2076
- "node": ">=12"
2077
- },
2078
- "funding": {
2079
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2080
- }
2081
- },
2082
- "node_modules/wrap-ansi-cjs": {
2083
- "name": "wrap-ansi",
2084
- "version": "7.0.0",
2085
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
2086
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
1222
+ "version": "9.0.2",
1223
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz",
1224
+ "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==",
2087
1225
  "license": "MIT",
2088
1226
  "dependencies": {
2089
- "ansi-styles": "^4.0.0",
2090
- "string-width": "^4.1.0",
2091
- "strip-ansi": "^6.0.0"
1227
+ "ansi-styles": "^6.2.1",
1228
+ "string-width": "^7.0.0",
1229
+ "strip-ansi": "^7.1.0"
2092
1230
  },
2093
1231
  "engines": {
2094
- "node": ">=10"
1232
+ "node": ">=18"
2095
1233
  },
2096
1234
  "funding": {
2097
1235
  "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2098
1236
  }
2099
1237
  },
2100
- "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
2101
- "version": "5.0.1",
2102
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
2103
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
2104
- "license": "MIT",
2105
- "engines": {
2106
- "node": ">=8"
2107
- }
2108
- },
2109
- "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
2110
- "version": "4.3.0",
2111
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
2112
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
2113
- "license": "MIT",
2114
- "dependencies": {
2115
- "color-convert": "^2.0.1"
2116
- },
2117
- "engines": {
2118
- "node": ">=8"
2119
- },
2120
- "funding": {
2121
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2122
- }
2123
- },
2124
- "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
2125
- "version": "8.0.0",
2126
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
2127
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
2128
- "license": "MIT"
2129
- },
2130
- "node_modules/wrap-ansi-cjs/node_modules/string-width": {
2131
- "version": "4.2.3",
2132
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
2133
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
2134
- "license": "MIT",
2135
- "dependencies": {
2136
- "emoji-regex": "^8.0.0",
2137
- "is-fullwidth-code-point": "^3.0.0",
2138
- "strip-ansi": "^6.0.1"
2139
- },
2140
- "engines": {
2141
- "node": ">=8"
2142
- }
2143
- },
2144
- "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
2145
- "version": "6.0.1",
2146
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2147
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2148
- "license": "MIT",
2149
- "dependencies": {
2150
- "ansi-regex": "^5.0.1"
2151
- },
2152
- "engines": {
2153
- "node": ">=8"
2154
- }
2155
- },
2156
1238
  "node_modules/wrappy": {
2157
1239
  "version": "1.0.2",
2158
1240
  "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
@@ -2169,71 +1251,29 @@
2169
1251
  }
2170
1252
  },
2171
1253
  "node_modules/yargs": {
2172
- "version": "17.7.2",
2173
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
2174
- "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
1254
+ "version": "18.0.0",
1255
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-18.0.0.tgz",
1256
+ "integrity": "sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==",
2175
1257
  "license": "MIT",
2176
1258
  "dependencies": {
2177
- "cliui": "^8.0.1",
1259
+ "cliui": "^9.0.1",
2178
1260
  "escalade": "^3.1.1",
2179
1261
  "get-caller-file": "^2.0.5",
2180
- "require-directory": "^2.1.1",
2181
- "string-width": "^4.2.3",
1262
+ "string-width": "^7.2.0",
2182
1263
  "y18n": "^5.0.5",
2183
- "yargs-parser": "^21.1.1"
1264
+ "yargs-parser": "^22.0.0"
2184
1265
  },
2185
1266
  "engines": {
2186
- "node": ">=12"
1267
+ "node": "^20.19.0 || ^22.12.0 || >=23"
2187
1268
  }
2188
1269
  },
2189
1270
  "node_modules/yargs-parser": {
2190
- "version": "21.1.1",
2191
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
2192
- "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
1271
+ "version": "22.0.0",
1272
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-22.0.0.tgz",
1273
+ "integrity": "sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==",
2193
1274
  "license": "ISC",
2194
1275
  "engines": {
2195
- "node": ">=12"
2196
- }
2197
- },
2198
- "node_modules/yargs/node_modules/ansi-regex": {
2199
- "version": "5.0.1",
2200
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
2201
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
2202
- "license": "MIT",
2203
- "engines": {
2204
- "node": ">=8"
2205
- }
2206
- },
2207
- "node_modules/yargs/node_modules/emoji-regex": {
2208
- "version": "8.0.0",
2209
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
2210
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
2211
- "license": "MIT"
2212
- },
2213
- "node_modules/yargs/node_modules/string-width": {
2214
- "version": "4.2.3",
2215
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
2216
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
2217
- "license": "MIT",
2218
- "dependencies": {
2219
- "emoji-regex": "^8.0.0",
2220
- "is-fullwidth-code-point": "^3.0.0",
2221
- "strip-ansi": "^6.0.1"
2222
- },
2223
- "engines": {
2224
- "node": ">=8"
2225
- }
2226
- },
2227
- "node_modules/yargs/node_modules/strip-ansi": {
2228
- "version": "6.0.1",
2229
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2230
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2231
- "license": "MIT",
2232
- "dependencies": {
2233
- "ansi-regex": "^5.0.1"
2234
- },
2235
- "engines": {
2236
- "node": ">=8"
1276
+ "node": "^20.19.0 || ^22.12.0 || >=23"
2237
1277
  }
2238
1278
  }
2239
1279
  }