Commit c6e135195a30f4c05dfcbd127799daec219042cc
Committed by
GitHub
1 parent
1262e130
修复合并代码导致的冲突 (#2905)
* fix: 合并代码导致的问题,升级vite 4.4.0 * fix: stylelint
Showing
22 changed files
with
1297 additions
and
1490 deletions
apps/test-server/package.json
internal/eslint-config/package.json
... | ... | @@ -36,8 +36,8 @@ |
36 | 36 | "stub": "pnpm unbuild --stub" |
37 | 37 | }, |
38 | 38 | "devDependencies": { |
39 | - "@typescript-eslint/eslint-plugin": "^5.60.1", | |
40 | - "@typescript-eslint/parser": "^5.60.1", | |
39 | + "@typescript-eslint/eslint-plugin": "^5.61.0", | |
40 | + "@typescript-eslint/parser": "^5.61.0", | |
41 | 41 | "eslint": "^8.44.0", |
42 | 42 | "eslint-config-prettier": "^8.8.0", |
43 | 43 | "eslint-plugin-import": "^2.27.5", | ... | ... |
internal/stylelint-config/package.json
... | ... | @@ -36,12 +36,12 @@ |
36 | 36 | "postcss-less": "^6.0.0", |
37 | 37 | "postcss-scss": "^4.0.6", |
38 | 38 | "prettier": "^2.8.8", |
39 | - "stylelint": "^15.9.0", | |
39 | + "stylelint": "^15.10.1", | |
40 | 40 | "stylelint-config-property-sort-order-smacss": "^9.1.0", |
41 | - "stylelint-config-recommended": "^12.0.0", | |
41 | + "stylelint-config-recommended": "^13.0.0", | |
42 | 42 | "stylelint-config-recommended-scss": "^12.0.0", |
43 | 43 | "stylelint-config-recommended-vue": "^1.4.0", |
44 | - "stylelint-config-standard": "^33.0.0", | |
44 | + "stylelint-config-standard": "^34.0.0", | |
45 | 45 | "stylelint-config-standard-scss": "^10.0.0", |
46 | 46 | "stylelint-order": "^6.0.3", |
47 | 47 | "stylelint-prettier": "^3.0.0" | ... | ... |
internal/ts-config/package.json
internal/vite-config/package.json
... | ... | @@ -32,7 +32,7 @@ |
32 | 32 | }, |
33 | 33 | "dependencies": { |
34 | 34 | "@ant-design/colors": "^7.0.0", |
35 | - "vite": "^4.3.9" | |
35 | + "vite": "^4.4.0" | |
36 | 36 | }, |
37 | 37 | "devDependencies": { |
38 | 38 | "@types/fs-extra": "^11.0.1", |
... | ... | @@ -49,7 +49,7 @@ |
49 | 49 | "sass": "^1.63.6", |
50 | 50 | "unocss": "^0.53.4", |
51 | 51 | "vite-plugin-compression": "^0.5.1", |
52 | - "vite-plugin-dts": "^3.0.2", | |
52 | + "vite-plugin-dts": "^3.1.0", | |
53 | 53 | "vite-plugin-html": "^3.2.0", |
54 | 54 | "vite-plugin-mock": "^2.9.6", |
55 | 55 | "vite-plugin-purge-icons": "^0.9.2", | ... | ... |
internal/vite-config/src/plugins/index.ts
... | ... | @@ -2,7 +2,6 @@ import vue from '@vitejs/plugin-vue'; |
2 | 2 | import vueJsx from '@vitejs/plugin-vue-jsx'; |
3 | 3 | import { type PluginOption } from 'vite'; |
4 | 4 | import purgeIcons from 'vite-plugin-purge-icons'; |
5 | -import vueSetupExtend from 'vite-plugin-vue-setup-extend'; | |
6 | 5 | |
7 | 6 | import { createAppConfigPlugin } from './appConfig'; |
8 | 7 | import { configCompressPlugin } from './compress'; | ... | ... |
package.json
... | ... | @@ -29,7 +29,7 @@ |
29 | 29 | "lint": "turbo run lint", |
30 | 30 | "lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix", |
31 | 31 | "lint:prettier": "prettier --write .", |
32 | - "lint:stylelint": "stylelint \"**/*.{vue,css,less.scss}\" --fix --cache --cache-location node_modules/.cache/stylelint/", | |
32 | + "lint:stylelint": "stylelint \"**/*.{vue,css,less,scss}\" --fix --cache --cache-location node_modules/.cache/stylelint/", | |
33 | 33 | "prepare": "husky install", |
34 | 34 | "preview": "npm run build && vite preview", |
35 | 35 | "reinstall": "rimraf pnpm-lock.yaml && rimraf package.lock.json && rimraf node_modules && npm run bootstrap", |
... | ... | @@ -101,12 +101,10 @@ |
101 | 101 | "vue": "^3.3.4", |
102 | 102 | "vue-i18n": "^9.2.2", |
103 | 103 | "vue-json-pretty": "^2.2.4", |
104 | - "vue-router": "^4.2.2", | |
104 | + "vue-router": "^4.2.3", | |
105 | 105 | "vue-types": "^5.1.0", |
106 | 106 | "vuedraggable": "^4.1.0", |
107 | - | |
108 | 107 | "vxe-table": "^4.4.5", |
109 | - | |
110 | 108 | "vxe-table-plugin-export-xlsx": "^3.0.4", |
111 | 109 | "xe-utils": "^3.5.11", |
112 | 110 | "xlsx": "^0.18.5" |
... | ... | @@ -114,7 +112,7 @@ |
114 | 112 | "devDependencies": { |
115 | 113 | "@commitlint/cli": "^17.6.6", |
116 | 114 | "@commitlint/config-conventional": "^17.6.6", |
117 | - "@iconify/json": "^2.2.85", | |
115 | + "@iconify/json": "^2.2.87", | |
118 | 116 | "@purge-icons/generated": "^0.9.0", |
119 | 117 | "@types/codemirror": "^5.60.8", |
120 | 118 | "@types/crypto-js": "^4.1.1", |
... | ... | @@ -139,14 +137,14 @@ |
139 | 137 | "husky": "^8.0.3", |
140 | 138 | "lint-staged": "13.2.3", |
141 | 139 | "prettier": "^2.8.8", |
142 | - "prettier-plugin-packagejson": "^2.4.3", | |
140 | + "prettier-plugin-packagejson": "^2.4.4", | |
143 | 141 | "rimraf": "^5.0.1", |
144 | 142 | "turbo": "^1.10.7", |
145 | 143 | "typescript": "^5.1.6", |
146 | 144 | "unbuild": "^1.2.1", |
147 | - "vite": "^4.3.9", | |
145 | + "vite": "^4.4.0", | |
148 | 146 | "vite-plugin-mock": "^2.9.6", |
149 | - "vue-tsc": "^1.8.3" | |
147 | + "vue-tsc": "^1.8.4" | |
150 | 148 | }, |
151 | 149 | "packageManager": "pnpm@8.1.0", |
152 | 150 | "engines": { | ... | ... |
pnpm-lock.yaml
... | ... | @@ -4,10 +4,6 @@ settings: |
4 | 4 | autoInstallPeers: true |
5 | 5 | excludeLinksFromLockfile: false |
6 | 6 | |
7 | -settings: | |
8 | - autoInstallPeers: true | |
9 | - excludeLinksFromLockfile: false | |
10 | - | |
11 | 7 | importers: |
12 | 8 | |
13 | 9 | .: |
... | ... | @@ -103,10 +99,8 @@ importers: |
103 | 99 | specifier: ^5.10.7 |
104 | 100 | version: 5.10.7 |
105 | 101 | vditor: |
106 | - | |
107 | 102 | specifier: ^3.9.4 |
108 | 103 | version: 3.9.4 |
109 | - | |
110 | 104 | vue: |
111 | 105 | specifier: ^3.3.4 |
112 | 106 | version: 3.3.4 |
... | ... | @@ -117,8 +111,8 @@ importers: |
117 | 111 | specifier: ^2.2.4 |
118 | 112 | version: 2.2.4(vue@3.3.4) |
119 | 113 | vue-router: |
120 | - specifier: ^4.2.2 | |
121 | - version: 4.2.2(vue@3.3.4) | |
114 | + specifier: ^4.2.3 | |
115 | + version: 4.2.3(vue@3.3.4) | |
122 | 116 | vue-types: |
123 | 117 | specifier: ^5.1.0 |
124 | 118 | version: 5.1.0(vue@3.3.4) |
... | ... | @@ -126,13 +120,11 @@ importers: |
126 | 120 | specifier: ^4.1.0 |
127 | 121 | version: 4.1.0(vue@3.3.4) |
128 | 122 | vxe-table: |
129 | - | |
130 | 123 | specifier: ^4.4.5 |
131 | - version: 4.4.5(vue@3.2.47)(xe-utils@3.5.7) | |
124 | + version: 4.4.5(vue@3.3.4)(xe-utils@3.5.11) | |
132 | 125 | vxe-table-plugin-export-xlsx: |
133 | 126 | specifier: ^3.0.4 |
134 | 127 | version: 3.0.4(vxe-table@4.4.5) |
135 | - | |
136 | 128 | xe-utils: |
137 | 129 | specifier: ^3.5.11 |
138 | 130 | version: 3.5.11 |
... | ... | @@ -147,8 +139,8 @@ importers: |
147 | 139 | specifier: ^17.6.6 |
148 | 140 | version: 17.6.6 |
149 | 141 | '@iconify/json': |
150 | - specifier: ^2.2.85 | |
151 | - version: 2.2.85 | |
142 | + specifier: ^2.2.87 | |
143 | + version: 2.2.87 | |
152 | 144 | '@purge-icons/generated': |
153 | 145 | specifier: ^0.9.0 |
154 | 146 | version: 0.9.0 |
... | ... | @@ -222,8 +214,8 @@ importers: |
222 | 214 | specifier: ^2.8.8 |
223 | 215 | version: 2.8.8 |
224 | 216 | prettier-plugin-packagejson: |
225 | - specifier: ^2.4.3 | |
226 | - version: 2.4.3(prettier@2.8.8) | |
217 | + specifier: ^2.4.4 | |
218 | + version: 2.4.4(prettier@2.8.8) | |
227 | 219 | rimraf: |
228 | 220 | specifier: ^5.0.1 |
229 | 221 | version: 5.0.1 |
... | ... | @@ -237,20 +229,14 @@ importers: |
237 | 229 | specifier: ^1.2.1 |
238 | 230 | version: 1.2.1 |
239 | 231 | vite: |
240 | - specifier: ^4.3.9 | |
241 | - version: 4.3.9(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6) | |
232 | + specifier: ^4.4.0 | |
233 | + version: 4.4.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6) | |
242 | 234 | vite-plugin-mock: |
243 | 235 | specifier: ^2.9.6 |
244 | - | |
245 | - version: 2.9.6(mockjs@1.1.0)(rollup@2.79.1)(vite@4.3.9) | |
246 | - | |
247 | - vite-plugin-vue-setup-extend: | |
248 | - specifier: ^0.4.0 | |
249 | - version: 0.4.0(vite@4.3.0-beta.2) | |
250 | - | |
236 | + version: 2.9.6(mockjs@1.1.0)(rollup@2.79.1)(vite@4.4.0) | |
251 | 237 | vue-tsc: |
252 | - specifier: ^1.8.3 | |
253 | - version: 1.8.3(typescript@5.1.6) | |
238 | + specifier: ^1.8.4 | |
239 | + version: 1.8.4(typescript@5.1.6) | |
254 | 240 | |
255 | 241 | apps/test-server: |
256 | 242 | dependencies: |
... | ... | @@ -292,8 +278,8 @@ importers: |
292 | 278 | specifier: ^7.4.4 |
293 | 279 | version: 7.4.4 |
294 | 280 | '@types/node': |
295 | - specifier: ^20.3.3 | |
296 | - version: 20.3.3 | |
281 | + specifier: ^20.4.0 | |
282 | + version: 20.4.0 | |
297 | 283 | nodemon: |
298 | 284 | specifier: ^2.0.22 |
299 | 285 | version: 2.0.22 |
... | ... | @@ -305,7 +291,7 @@ importers: |
305 | 291 | version: 5.0.1 |
306 | 292 | ts-node: |
307 | 293 | specifier: ^10.9.1 |
308 | - version: 10.9.1(@types/node@20.3.3)(typescript@5.1.6) | |
294 | + version: 10.9.1(@types/node@20.4.0)(typescript@5.1.6) | |
309 | 295 | tsconfig-paths: |
310 | 296 | specifier: ^4.2.0 |
311 | 297 | version: 4.2.0 |
... | ... | @@ -319,11 +305,11 @@ importers: |
319 | 305 | internal/eslint-config: |
320 | 306 | devDependencies: |
321 | 307 | '@typescript-eslint/eslint-plugin': |
322 | - specifier: ^5.60.1 | |
323 | - version: 5.60.1(@typescript-eslint/parser@5.60.1)(eslint@8.44.0)(typescript@5.1.6) | |
308 | + specifier: ^5.61.0 | |
309 | + version: 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.1.6) | |
324 | 310 | '@typescript-eslint/parser': |
325 | - specifier: ^5.60.1 | |
326 | - version: 5.60.1(eslint@8.44.0)(typescript@5.1.6) | |
311 | + specifier: ^5.61.0 | |
312 | + version: 5.61.0(eslint@8.44.0)(typescript@5.1.6) | |
327 | 313 | eslint: |
328 | 314 | specifier: ^8.44.0 |
329 | 315 | version: 8.44.0 |
... | ... | @@ -332,7 +318,7 @@ importers: |
332 | 318 | version: 8.8.0(eslint@8.44.0) |
333 | 319 | eslint-plugin-import: |
334 | 320 | specifier: ^2.27.5 |
335 | - version: 2.27.5(@typescript-eslint/parser@5.60.1)(eslint@8.44.0) | |
321 | + version: 2.27.5(@typescript-eslint/parser@5.61.0)(eslint@8.44.0) | |
336 | 322 | eslint-plugin-prettier: |
337 | 323 | specifier: ^4.2.1 |
338 | 324 | version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@8.44.0)(prettier@2.8.8) |
... | ... | @@ -364,41 +350,41 @@ importers: |
364 | 350 | specifier: ^2.8.8 |
365 | 351 | version: 2.8.8 |
366 | 352 | stylelint: |
367 | - specifier: ^15.9.0 | |
368 | - version: 15.9.0 | |
353 | + specifier: ^15.10.1 | |
354 | + version: 15.10.1 | |
369 | 355 | stylelint-config-property-sort-order-smacss: |
370 | 356 | specifier: ^9.1.0 |
371 | - version: 9.1.0(stylelint@15.9.0) | |
357 | + version: 9.1.0(stylelint@15.10.1) | |
372 | 358 | stylelint-config-recommended: |
373 | - specifier: ^12.0.0 | |
374 | - version: 12.0.0(stylelint@15.9.0) | |
359 | + specifier: ^13.0.0 | |
360 | + version: 13.0.0(stylelint@15.10.1) | |
375 | 361 | stylelint-config-recommended-scss: |
376 | 362 | specifier: ^12.0.0 |
377 | - version: 12.0.0(postcss@8.4.24)(stylelint@15.9.0) | |
363 | + version: 12.0.0(postcss@8.4.24)(stylelint@15.10.1) | |
378 | 364 | stylelint-config-recommended-vue: |
379 | 365 | specifier: ^1.4.0 |
380 | - version: 1.4.0(postcss-html@1.5.0)(stylelint@15.9.0) | |
366 | + version: 1.4.0(postcss-html@1.5.0)(stylelint@15.10.1) | |
381 | 367 | stylelint-config-standard: |
382 | - specifier: ^33.0.0 | |
383 | - version: 33.0.0(stylelint@15.9.0) | |
368 | + specifier: ^34.0.0 | |
369 | + version: 34.0.0(stylelint@15.10.1) | |
384 | 370 | stylelint-config-standard-scss: |
385 | 371 | specifier: ^10.0.0 |
386 | - version: 10.0.0(postcss@8.4.24)(stylelint@15.9.0) | |
372 | + version: 10.0.0(postcss@8.4.24)(stylelint@15.10.1) | |
387 | 373 | stylelint-order: |
388 | 374 | specifier: ^6.0.3 |
389 | - version: 6.0.3(stylelint@15.9.0) | |
375 | + version: 6.0.3(stylelint@15.10.1) | |
390 | 376 | stylelint-prettier: |
391 | 377 | specifier: ^3.0.0 |
392 | - version: 3.0.0(prettier@2.8.8)(stylelint@15.9.0) | |
378 | + version: 3.0.0(prettier@2.8.8)(stylelint@15.10.1) | |
393 | 379 | |
394 | 380 | internal/ts-config: |
395 | 381 | dependencies: |
396 | 382 | '@types/node': |
397 | - specifier: ^20.3.3 | |
398 | - version: 20.3.3 | |
383 | + specifier: ^20.4.0 | |
384 | + version: 20.4.0 | |
399 | 385 | vite: |
400 | - specifier: ^4.3.9 | |
401 | - version: 4.3.9(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6) | |
386 | + specifier: ^4.4.0 | |
387 | + version: 4.4.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6) | |
402 | 388 | |
403 | 389 | internal/vite-config: |
404 | 390 | dependencies: |
... | ... | @@ -406,18 +392,18 @@ importers: |
406 | 392 | specifier: ^7.0.0 |
407 | 393 | version: 7.0.0 |
408 | 394 | vite: |
409 | - specifier: ^4.3.9 | |
410 | - version: 4.3.9(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6) | |
395 | + specifier: ^4.4.0 | |
396 | + version: 4.4.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6) | |
411 | 397 | devDependencies: |
412 | 398 | '@types/fs-extra': |
413 | 399 | specifier: ^11.0.1 |
414 | 400 | version: 11.0.1 |
415 | 401 | '@vitejs/plugin-vue': |
416 | 402 | specifier: ^4.2.3 |
417 | - version: 4.2.3(vite@4.3.9)(vue@3.3.4) | |
403 | + version: 4.2.3(vite@4.4.0)(vue@3.3.4) | |
418 | 404 | '@vitejs/plugin-vue-jsx': |
419 | 405 | specifier: ^3.0.1 |
420 | - version: 3.0.1(vite@4.3.9)(vue@3.3.4) | |
406 | + version: 3.0.1(vite@4.4.0)(vue@3.3.4) | |
421 | 407 | ant-design-vue: |
422 | 408 | specifier: ^3.2.20 |
423 | 409 | version: 3.2.20(vue@3.3.4) |
... | ... | @@ -447,25 +433,25 @@ importers: |
447 | 433 | version: 1.63.6 |
448 | 434 | unocss: |
449 | 435 | specifier: ^0.53.4 |
450 | - version: 0.53.4(postcss@8.4.24)(rollup@2.79.1)(vite@4.3.9) | |
436 | + version: 0.53.4(postcss@8.4.24)(rollup@2.79.1)(vite@4.4.0) | |
451 | 437 | vite-plugin-compression: |
452 | 438 | specifier: ^0.5.1 |
453 | - version: 0.5.1(vite@4.3.9) | |
439 | + version: 0.5.1(vite@4.4.0) | |
454 | 440 | vite-plugin-dts: |
455 | - specifier: ^3.0.2 | |
456 | - version: 3.0.2(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6)(typescript@5.1.6) | |
441 | + specifier: ^3.1.0 | |
442 | + version: 3.1.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6)(typescript@5.1.6) | |
457 | 443 | vite-plugin-html: |
458 | 444 | specifier: ^3.2.0 |
459 | - version: 3.2.0(vite@4.3.9) | |
445 | + version: 3.2.0(vite@4.4.0) | |
460 | 446 | vite-plugin-mock: |
461 | 447 | specifier: ^2.9.6 |
462 | - version: 2.9.6(mockjs@1.1.0)(rollup@2.79.1)(vite@4.3.9) | |
448 | + version: 2.9.6(mockjs@1.1.0)(rollup@2.79.1)(vite@4.4.0) | |
463 | 449 | vite-plugin-purge-icons: |
464 | 450 | specifier: ^0.9.2 |
465 | - version: 0.9.2(vite@4.3.9) | |
451 | + version: 0.9.2(vite@4.4.0) | |
466 | 452 | vite-plugin-svg-icons: |
467 | 453 | specifier: ^2.0.1 |
468 | - version: 2.0.1(vite@4.3.9) | |
454 | + version: 2.0.1(vite@4.4.0) | |
469 | 455 | |
470 | 456 | packages/hooks: |
471 | 457 | dependencies: |
... | ... | @@ -489,20 +475,12 @@ packages: |
489 | 475 | engines: {node: '>=0.10.0'} |
490 | 476 | dev: true |
491 | 477 | |
492 | - /@ampproject/remapping@2.2.0: | |
493 | - resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} | |
494 | - engines: {node: '>=6.0.0'} | |
495 | - dependencies: | |
496 | - '@jridgewell/gen-mapping': 0.1.1 | |
497 | - '@jridgewell/trace-mapping': 0.3.17 | |
498 | - | |
499 | 478 | /@ampproject/remapping@2.2.1: |
500 | 479 | resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} |
501 | 480 | engines: {node: '>=6.0.0'} |
502 | 481 | dependencies: |
503 | - '@jridgewell/gen-mapping': 0.3.2 | |
504 | - '@jridgewell/trace-mapping': 0.3.17 | |
505 | - dev: true | |
482 | + '@jridgewell/gen-mapping': 0.3.3 | |
483 | + '@jridgewell/trace-mapping': 0.3.18 | |
506 | 484 | |
507 | 485 | /@ant-design/colors@6.0.0: |
508 | 486 | resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==} |
... | ... | @@ -534,419 +512,396 @@ packages: |
534 | 512 | find-up: 5.0.0 |
535 | 513 | dev: true |
536 | 514 | |
537 | - /@antfu/utils@0.7.4: | |
538 | - resolution: {integrity: sha512-qe8Nmh9rYI/HIspLSTwtbMFPj6dISG6+dJnOguTlPNXtCvS2uezdxscVBb7/3DrmNbQK49TDqpkSQ1chbRGdpQ==} | |
515 | + /@antfu/utils@0.7.5: | |
516 | + resolution: {integrity: sha512-dlR6LdS+0SzOAPx/TPRhnoi7hE251OVeT2Snw0RguNbBSbjUHdWr0l3vcUUDg26rEysT89kCbtw1lVorBXLLCg==} | |
539 | 517 | dev: true |
540 | 518 | |
541 | - /@babel/code-frame@7.21.4: | |
542 | - resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==} | |
519 | + /@babel/code-frame@7.22.5: | |
520 | + resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==} | |
543 | 521 | engines: {node: '>=6.9.0'} |
544 | 522 | dependencies: |
545 | - '@babel/highlight': 7.18.6 | |
523 | + '@babel/highlight': 7.22.5 | |
546 | 524 | |
547 | - /@babel/compat-data@7.21.4: | |
548 | - resolution: {integrity: sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==} | |
525 | + /@babel/compat-data@7.22.6: | |
526 | + resolution: {integrity: sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg==} | |
549 | 527 | engines: {node: '>=6.9.0'} |
550 | 528 | |
551 | - /@babel/core@7.21.4: | |
552 | - resolution: {integrity: sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==} | |
529 | + /@babel/core@7.22.6: | |
530 | + resolution: {integrity: sha512-HPIyDa6n+HKw5dEuway3vVAhBboYCtREBMp+IWeseZy6TFtzn6MHkCH2KKYUOC/vKKwgSMHQW4htBOrmuRPXfw==} | |
553 | 531 | engines: {node: '>=6.9.0'} |
554 | 532 | dependencies: |
555 | - '@ampproject/remapping': 2.2.0 | |
556 | - '@babel/code-frame': 7.21.4 | |
557 | - '@babel/generator': 7.21.4 | |
558 | - '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4) | |
559 | - '@babel/helper-module-transforms': 7.21.2 | |
560 | - '@babel/helpers': 7.21.0 | |
561 | - '@babel/parser': 7.21.4 | |
562 | - '@babel/template': 7.20.7 | |
563 | - '@babel/traverse': 7.21.4 | |
564 | - '@babel/types': 7.21.4 | |
533 | + '@ampproject/remapping': 2.2.1 | |
534 | + '@babel/code-frame': 7.22.5 | |
535 | + '@babel/generator': 7.22.5 | |
536 | + '@babel/helper-compilation-targets': 7.22.6(@babel/core@7.22.6) | |
537 | + '@babel/helper-module-transforms': 7.22.5 | |
538 | + '@babel/helpers': 7.22.6 | |
539 | + '@babel/parser': 7.22.6 | |
540 | + '@babel/template': 7.22.5 | |
541 | + '@babel/traverse': 7.22.6 | |
542 | + '@babel/types': 7.22.5 | |
543 | + '@nicolo-ribaudo/semver-v6': 6.3.3 | |
565 | 544 | convert-source-map: 1.9.0 |
566 | 545 | debug: 4.3.4 |
567 | 546 | gensync: 1.0.0-beta.2 |
568 | 547 | json5: 2.2.3 |
569 | - semver: 6.3.0 | |
570 | 548 | transitivePeerDependencies: |
571 | 549 | - supports-color |
572 | 550 | |
573 | - /@babel/generator@7.21.4: | |
574 | - resolution: {integrity: sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==} | |
551 | + /@babel/generator@7.22.5: | |
552 | + resolution: {integrity: sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==} | |
575 | 553 | engines: {node: '>=6.9.0'} |
576 | 554 | dependencies: |
577 | - '@babel/types': 7.21.4 | |
578 | - '@jridgewell/gen-mapping': 0.3.2 | |
579 | - '@jridgewell/trace-mapping': 0.3.17 | |
555 | + '@babel/types': 7.22.5 | |
556 | + '@jridgewell/gen-mapping': 0.3.3 | |
557 | + '@jridgewell/trace-mapping': 0.3.18 | |
580 | 558 | jsesc: 2.5.2 |
581 | 559 | |
582 | - /@babel/helper-annotate-as-pure@7.18.6: | |
583 | - resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} | |
560 | + /@babel/helper-annotate-as-pure@7.22.5: | |
561 | + resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} | |
584 | 562 | engines: {node: '>=6.9.0'} |
585 | 563 | dependencies: |
586 | - '@babel/types': 7.21.4 | |
564 | + '@babel/types': 7.22.5 | |
587 | 565 | dev: true |
588 | 566 | |
589 | - /@babel/helper-compilation-targets@7.21.4(@babel/core@7.21.4): | |
590 | - resolution: {integrity: sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==} | |
567 | + /@babel/helper-compilation-targets@7.22.6(@babel/core@7.22.6): | |
568 | + resolution: {integrity: sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA==} | |
591 | 569 | engines: {node: '>=6.9.0'} |
592 | 570 | peerDependencies: |
593 | 571 | '@babel/core': ^7.0.0 |
594 | 572 | dependencies: |
595 | - '@babel/compat-data': 7.21.4 | |
596 | - '@babel/core': 7.21.4 | |
597 | - '@babel/helper-validator-option': 7.21.0 | |
598 | - browserslist: 4.21.5 | |
573 | + '@babel/compat-data': 7.22.6 | |
574 | + '@babel/core': 7.22.6 | |
575 | + '@babel/helper-validator-option': 7.22.5 | |
576 | + '@nicolo-ribaudo/semver-v6': 6.3.3 | |
577 | + browserslist: 4.21.9 | |
599 | 578 | lru-cache: 5.1.1 |
600 | - semver: 6.3.0 | |
601 | 579 | |
602 | - /@babel/helper-create-class-features-plugin@7.21.4(@babel/core@7.21.4): | |
603 | - resolution: {integrity: sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==} | |
580 | + /@babel/helper-create-class-features-plugin@7.22.6(@babel/core@7.22.6): | |
581 | + resolution: {integrity: sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ==} | |
604 | 582 | engines: {node: '>=6.9.0'} |
605 | 583 | peerDependencies: |
606 | 584 | '@babel/core': ^7.0.0 |
607 | 585 | dependencies: |
608 | - '@babel/core': 7.21.4 | |
609 | - '@babel/helper-annotate-as-pure': 7.18.6 | |
610 | - '@babel/helper-environment-visitor': 7.18.9 | |
611 | - '@babel/helper-function-name': 7.21.0 | |
612 | - '@babel/helper-member-expression-to-functions': 7.21.0 | |
613 | - '@babel/helper-optimise-call-expression': 7.18.6 | |
614 | - '@babel/helper-replace-supers': 7.20.7 | |
615 | - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 | |
616 | - '@babel/helper-split-export-declaration': 7.18.6 | |
586 | + '@babel/core': 7.22.6 | |
587 | + '@babel/helper-annotate-as-pure': 7.22.5 | |
588 | + '@babel/helper-environment-visitor': 7.22.5 | |
589 | + '@babel/helper-function-name': 7.22.5 | |
590 | + '@babel/helper-member-expression-to-functions': 7.22.5 | |
591 | + '@babel/helper-optimise-call-expression': 7.22.5 | |
592 | + '@babel/helper-replace-supers': 7.22.5 | |
593 | + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 | |
594 | + '@babel/helper-split-export-declaration': 7.22.6 | |
595 | + '@nicolo-ribaudo/semver-v6': 6.3.3 | |
617 | 596 | transitivePeerDependencies: |
618 | 597 | - supports-color |
619 | 598 | dev: true |
620 | 599 | |
621 | - /@babel/helper-environment-visitor@7.18.9: | |
622 | - resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} | |
600 | + /@babel/helper-environment-visitor@7.22.5: | |
601 | + resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} | |
623 | 602 | engines: {node: '>=6.9.0'} |
624 | 603 | |
625 | - /@babel/helper-function-name@7.21.0: | |
626 | - resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==} | |
604 | + /@babel/helper-function-name@7.22.5: | |
605 | + resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} | |
627 | 606 | engines: {node: '>=6.9.0'} |
628 | 607 | dependencies: |
629 | - '@babel/template': 7.20.7 | |
630 | - '@babel/types': 7.21.4 | |
608 | + '@babel/template': 7.22.5 | |
609 | + '@babel/types': 7.22.5 | |
631 | 610 | |
632 | - /@babel/helper-hoist-variables@7.18.6: | |
633 | - resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} | |
611 | + /@babel/helper-hoist-variables@7.22.5: | |
612 | + resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} | |
634 | 613 | engines: {node: '>=6.9.0'} |
635 | 614 | dependencies: |
636 | - '@babel/types': 7.21.4 | |
615 | + '@babel/types': 7.22.5 | |
637 | 616 | |
638 | - /@babel/helper-member-expression-to-functions@7.21.0: | |
639 | - resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==} | |
617 | + /@babel/helper-member-expression-to-functions@7.22.5: | |
618 | + resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==} | |
640 | 619 | engines: {node: '>=6.9.0'} |
641 | 620 | dependencies: |
642 | - '@babel/types': 7.21.4 | |
621 | + '@babel/types': 7.22.5 | |
643 | 622 | dev: true |
644 | 623 | |
645 | - /@babel/helper-module-imports@7.21.4: | |
646 | - resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==} | |
624 | + /@babel/helper-module-imports@7.22.5: | |
625 | + resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} | |
647 | 626 | engines: {node: '>=6.9.0'} |
648 | 627 | dependencies: |
649 | - '@babel/types': 7.21.4 | |
628 | + '@babel/types': 7.22.5 | |
650 | 629 | |
651 | - /@babel/helper-module-transforms@7.21.2: | |
652 | - resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==} | |
630 | + /@babel/helper-module-transforms@7.22.5: | |
631 | + resolution: {integrity: sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==} | |
653 | 632 | engines: {node: '>=6.9.0'} |
654 | 633 | dependencies: |
655 | - '@babel/helper-environment-visitor': 7.18.9 | |
656 | - '@babel/helper-module-imports': 7.21.4 | |
657 | - '@babel/helper-simple-access': 7.20.2 | |
658 | - '@babel/helper-split-export-declaration': 7.18.6 | |
659 | - '@babel/helper-validator-identifier': 7.19.1 | |
660 | - '@babel/template': 7.20.7 | |
661 | - '@babel/traverse': 7.21.4 | |
662 | - '@babel/types': 7.21.4 | |
634 | + '@babel/helper-environment-visitor': 7.22.5 | |
635 | + '@babel/helper-module-imports': 7.22.5 | |
636 | + '@babel/helper-simple-access': 7.22.5 | |
637 | + '@babel/helper-split-export-declaration': 7.22.6 | |
638 | + '@babel/helper-validator-identifier': 7.22.5 | |
639 | + '@babel/template': 7.22.5 | |
640 | + '@babel/traverse': 7.22.6 | |
641 | + '@babel/types': 7.22.5 | |
663 | 642 | transitivePeerDependencies: |
664 | 643 | - supports-color |
665 | 644 | |
666 | - /@babel/helper-optimise-call-expression@7.18.6: | |
667 | - resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} | |
645 | + /@babel/helper-optimise-call-expression@7.22.5: | |
646 | + resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} | |
668 | 647 | engines: {node: '>=6.9.0'} |
669 | 648 | dependencies: |
670 | - '@babel/types': 7.21.4 | |
649 | + '@babel/types': 7.22.5 | |
671 | 650 | dev: true |
672 | 651 | |
673 | - /@babel/helper-plugin-utils@7.20.2: | |
674 | - resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} | |
652 | + /@babel/helper-plugin-utils@7.22.5: | |
653 | + resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} | |
675 | 654 | engines: {node: '>=6.9.0'} |
676 | 655 | |
677 | - /@babel/helper-replace-supers@7.20.7: | |
678 | - resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==} | |
656 | + /@babel/helper-replace-supers@7.22.5: | |
657 | + resolution: {integrity: sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==} | |
679 | 658 | engines: {node: '>=6.9.0'} |
680 | 659 | dependencies: |
681 | - '@babel/helper-environment-visitor': 7.18.9 | |
682 | - '@babel/helper-member-expression-to-functions': 7.21.0 | |
683 | - '@babel/helper-optimise-call-expression': 7.18.6 | |
684 | - '@babel/template': 7.20.7 | |
685 | - '@babel/traverse': 7.21.4 | |
686 | - '@babel/types': 7.21.4 | |
660 | + '@babel/helper-environment-visitor': 7.22.5 | |
661 | + '@babel/helper-member-expression-to-functions': 7.22.5 | |
662 | + '@babel/helper-optimise-call-expression': 7.22.5 | |
663 | + '@babel/template': 7.22.5 | |
664 | + '@babel/traverse': 7.22.6 | |
665 | + '@babel/types': 7.22.5 | |
687 | 666 | transitivePeerDependencies: |
688 | 667 | - supports-color |
689 | 668 | dev: true |
690 | 669 | |
691 | - /@babel/helper-simple-access@7.20.2: | |
692 | - resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} | |
670 | + /@babel/helper-simple-access@7.22.5: | |
671 | + resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} | |
693 | 672 | engines: {node: '>=6.9.0'} |
694 | 673 | dependencies: |
695 | - '@babel/types': 7.21.4 | |
674 | + '@babel/types': 7.22.5 | |
696 | 675 | |
697 | - /@babel/helper-skip-transparent-expression-wrappers@7.20.0: | |
698 | - resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} | |
676 | + /@babel/helper-skip-transparent-expression-wrappers@7.22.5: | |
677 | + resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} | |
699 | 678 | engines: {node: '>=6.9.0'} |
700 | 679 | dependencies: |
701 | - '@babel/types': 7.21.4 | |
680 | + '@babel/types': 7.22.5 | |
702 | 681 | dev: true |
703 | 682 | |
704 | - /@babel/helper-split-export-declaration@7.18.6: | |
705 | - resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} | |
683 | + /@babel/helper-split-export-declaration@7.22.6: | |
684 | + resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} | |
706 | 685 | engines: {node: '>=6.9.0'} |
707 | 686 | dependencies: |
708 | - '@babel/types': 7.21.4 | |
709 | - | |
710 | - /@babel/helper-string-parser@7.19.4: | |
711 | - resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} | |
712 | - engines: {node: '>=6.9.0'} | |
687 | + '@babel/types': 7.22.5 | |
713 | 688 | |
714 | 689 | /@babel/helper-string-parser@7.22.5: |
715 | 690 | resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} |
716 | 691 | engines: {node: '>=6.9.0'} |
717 | 692 | |
718 | - /@babel/helper-validator-identifier@7.19.1: | |
719 | - resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} | |
720 | - engines: {node: '>=6.9.0'} | |
721 | - | |
722 | 693 | /@babel/helper-validator-identifier@7.22.5: |
723 | 694 | resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} |
724 | 695 | engines: {node: '>=6.9.0'} |
725 | 696 | |
726 | - /@babel/helper-validator-option@7.21.0: | |
727 | - resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==} | |
697 | + /@babel/helper-validator-option@7.22.5: | |
698 | + resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} | |
728 | 699 | engines: {node: '>=6.9.0'} |
729 | 700 | |
730 | - /@babel/helpers@7.21.0: | |
731 | - resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==} | |
701 | + /@babel/helpers@7.22.6: | |
702 | + resolution: {integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==} | |
732 | 703 | engines: {node: '>=6.9.0'} |
733 | 704 | dependencies: |
734 | - '@babel/template': 7.20.7 | |
735 | - '@babel/traverse': 7.21.4 | |
736 | - '@babel/types': 7.21.4 | |
705 | + '@babel/template': 7.22.5 | |
706 | + '@babel/traverse': 7.22.6 | |
707 | + '@babel/types': 7.22.5 | |
737 | 708 | transitivePeerDependencies: |
738 | 709 | - supports-color |
739 | 710 | |
740 | - /@babel/highlight@7.18.6: | |
741 | - resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} | |
711 | + /@babel/highlight@7.22.5: | |
712 | + resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==} | |
742 | 713 | engines: {node: '>=6.9.0'} |
743 | 714 | dependencies: |
744 | - '@babel/helper-validator-identifier': 7.19.1 | |
715 | + '@babel/helper-validator-identifier': 7.22.5 | |
745 | 716 | chalk: 2.4.2 |
746 | 717 | js-tokens: 4.0.0 |
747 | 718 | |
748 | - /@babel/parser@7.21.4: | |
749 | - resolution: {integrity: sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==} | |
750 | - engines: {node: '>=6.0.0'} | |
751 | - hasBin: true | |
752 | - dependencies: | |
753 | - '@babel/types': 7.21.4 | |
754 | - | |
755 | - /@babel/parser@7.22.5: | |
756 | - resolution: {integrity: sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==} | |
719 | + /@babel/parser@7.22.6: | |
720 | + resolution: {integrity: sha512-EIQu22vNkceq3LbjAq7knDf/UmtI2qbcNI8GRBlijez6TpQLvSodJPYfydQmNA5buwkxxxa/PVI44jjYZ+/cLw==} | |
757 | 721 | engines: {node: '>=6.0.0'} |
758 | 722 | hasBin: true |
759 | 723 | dependencies: |
760 | 724 | '@babel/types': 7.22.5 |
761 | - dev: false | |
762 | 725 | |
763 | - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.4): | |
726 | + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.6): | |
764 | 727 | resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} |
765 | 728 | peerDependencies: |
766 | 729 | '@babel/core': ^7.0.0-0 |
767 | 730 | dependencies: |
768 | - '@babel/core': 7.21.4 | |
769 | - '@babel/helper-plugin-utils': 7.20.2 | |
731 | + '@babel/core': 7.22.6 | |
732 | + '@babel/helper-plugin-utils': 7.22.5 | |
770 | 733 | dev: false |
771 | 734 | |
772 | - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.4): | |
735 | + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.6): | |
773 | 736 | resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} |
774 | 737 | peerDependencies: |
775 | 738 | '@babel/core': ^7.0.0-0 |
776 | 739 | dependencies: |
777 | - '@babel/core': 7.21.4 | |
778 | - '@babel/helper-plugin-utils': 7.20.2 | |
740 | + '@babel/core': 7.22.6 | |
741 | + '@babel/helper-plugin-utils': 7.22.5 | |
779 | 742 | dev: false |
780 | 743 | |
781 | - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.4): | |
744 | + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.6): | |
782 | 745 | resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} |
783 | 746 | peerDependencies: |
784 | 747 | '@babel/core': ^7.0.0-0 |
785 | 748 | dependencies: |
786 | - '@babel/core': 7.21.4 | |
787 | - '@babel/helper-plugin-utils': 7.20.2 | |
749 | + '@babel/core': 7.22.6 | |
750 | + '@babel/helper-plugin-utils': 7.22.5 | |
788 | 751 | dev: false |
789 | 752 | |
790 | - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.4): | |
753 | + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.6): | |
791 | 754 | resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} |
792 | 755 | peerDependencies: |
793 | 756 | '@babel/core': ^7.0.0-0 |
794 | 757 | dependencies: |
795 | - '@babel/core': 7.21.4 | |
796 | - '@babel/helper-plugin-utils': 7.20.2 | |
758 | + '@babel/core': 7.22.6 | |
759 | + '@babel/helper-plugin-utils': 7.22.5 | |
797 | 760 | dev: false |
798 | 761 | |
799 | - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.4): | |
762 | + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.6): | |
800 | 763 | resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} |
801 | 764 | peerDependencies: |
802 | 765 | '@babel/core': ^7.0.0-0 |
803 | 766 | dependencies: |
804 | - '@babel/core': 7.21.4 | |
805 | - '@babel/helper-plugin-utils': 7.20.2 | |
767 | + '@babel/core': 7.22.6 | |
768 | + '@babel/helper-plugin-utils': 7.22.5 | |
806 | 769 | dev: false |
807 | 770 | |
808 | - /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.21.4): | |
809 | - resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==} | |
771 | + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.6): | |
772 | + resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} | |
810 | 773 | engines: {node: '>=6.9.0'} |
811 | 774 | peerDependencies: |
812 | 775 | '@babel/core': ^7.0.0-0 |
813 | 776 | dependencies: |
814 | - '@babel/core': 7.21.4 | |
815 | - '@babel/helper-plugin-utils': 7.20.2 | |
777 | + '@babel/core': 7.22.6 | |
778 | + '@babel/helper-plugin-utils': 7.22.5 | |
816 | 779 | dev: true |
817 | 780 | |
818 | - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.4): | |
781 | + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.6): | |
819 | 782 | resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} |
820 | 783 | peerDependencies: |
821 | 784 | '@babel/core': ^7.0.0-0 |
822 | 785 | dependencies: |
823 | - '@babel/core': 7.21.4 | |
824 | - '@babel/helper-plugin-utils': 7.20.2 | |
786 | + '@babel/core': 7.22.6 | |
787 | + '@babel/helper-plugin-utils': 7.22.5 | |
825 | 788 | dev: false |
826 | 789 | |
827 | - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.4): | |
790 | + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.6): | |
828 | 791 | resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} |
829 | 792 | peerDependencies: |
830 | 793 | '@babel/core': ^7.0.0-0 |
831 | 794 | dependencies: |
832 | - '@babel/core': 7.21.4 | |
833 | - '@babel/helper-plugin-utils': 7.20.2 | |
795 | + '@babel/core': 7.22.6 | |
796 | + '@babel/helper-plugin-utils': 7.22.5 | |
834 | 797 | dev: false |
835 | 798 | |
836 | - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.4): | |
799 | + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.6): | |
837 | 800 | resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} |
838 | 801 | peerDependencies: |
839 | 802 | '@babel/core': ^7.0.0-0 |
840 | 803 | dependencies: |
841 | - '@babel/core': 7.21.4 | |
842 | - '@babel/helper-plugin-utils': 7.20.2 | |
804 | + '@babel/core': 7.22.6 | |
805 | + '@babel/helper-plugin-utils': 7.22.5 | |
843 | 806 | dev: false |
844 | 807 | |
845 | - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.4): | |
808 | + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.6): | |
846 | 809 | resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} |
847 | 810 | peerDependencies: |
848 | 811 | '@babel/core': ^7.0.0-0 |
849 | 812 | dependencies: |
850 | - '@babel/core': 7.21.4 | |
851 | - '@babel/helper-plugin-utils': 7.20.2 | |
813 | + '@babel/core': 7.22.6 | |
814 | + '@babel/helper-plugin-utils': 7.22.5 | |
852 | 815 | dev: false |
853 | 816 | |
854 | - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.4): | |
817 | + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.6): | |
855 | 818 | resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} |
856 | 819 | peerDependencies: |
857 | 820 | '@babel/core': ^7.0.0-0 |
858 | 821 | dependencies: |
859 | - '@babel/core': 7.21.4 | |
860 | - '@babel/helper-plugin-utils': 7.20.2 | |
822 | + '@babel/core': 7.22.6 | |
823 | + '@babel/helper-plugin-utils': 7.22.5 | |
861 | 824 | dev: false |
862 | 825 | |
863 | - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.4): | |
826 | + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.6): | |
864 | 827 | resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} |
865 | 828 | peerDependencies: |
866 | 829 | '@babel/core': ^7.0.0-0 |
867 | 830 | dependencies: |
868 | - '@babel/core': 7.21.4 | |
869 | - '@babel/helper-plugin-utils': 7.20.2 | |
831 | + '@babel/core': 7.22.6 | |
832 | + '@babel/helper-plugin-utils': 7.22.5 | |
870 | 833 | dev: false |
871 | 834 | |
872 | - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.4): | |
835 | + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.6): | |
873 | 836 | resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} |
874 | 837 | engines: {node: '>=6.9.0'} |
875 | 838 | peerDependencies: |
876 | 839 | '@babel/core': ^7.0.0-0 |
877 | 840 | dependencies: |
878 | - '@babel/core': 7.21.4 | |
879 | - '@babel/helper-plugin-utils': 7.20.2 | |
841 | + '@babel/core': 7.22.6 | |
842 | + '@babel/helper-plugin-utils': 7.22.5 | |
880 | 843 | dev: false |
881 | 844 | |
882 | - /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.21.4): | |
883 | - resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==} | |
845 | + /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.6): | |
846 | + resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} | |
884 | 847 | engines: {node: '>=6.9.0'} |
885 | 848 | peerDependencies: |
886 | 849 | '@babel/core': ^7.0.0-0 |
887 | 850 | dependencies: |
888 | - '@babel/core': 7.21.4 | |
889 | - '@babel/helper-plugin-utils': 7.20.2 | |
851 | + '@babel/core': 7.22.6 | |
852 | + '@babel/helper-plugin-utils': 7.22.5 | |
890 | 853 | |
891 | - /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.21.4): | |
892 | - resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==} | |
854 | + /@babel/plugin-transform-typescript@7.22.5(@babel/core@7.22.6): | |
855 | + resolution: {integrity: sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==} | |
893 | 856 | engines: {node: '>=6.9.0'} |
894 | 857 | peerDependencies: |
895 | 858 | '@babel/core': ^7.0.0-0 |
896 | 859 | dependencies: |
897 | - '@babel/core': 7.21.4 | |
898 | - '@babel/helper-annotate-as-pure': 7.18.6 | |
899 | - '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4) | |
900 | - '@babel/helper-plugin-utils': 7.20.2 | |
901 | - '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.21.4) | |
860 | + '@babel/core': 7.22.6 | |
861 | + '@babel/helper-annotate-as-pure': 7.22.5 | |
862 | + '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.22.6) | |
863 | + '@babel/helper-plugin-utils': 7.22.5 | |
864 | + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.6) | |
902 | 865 | transitivePeerDependencies: |
903 | 866 | - supports-color |
904 | 867 | dev: true |
905 | 868 | |
906 | - /@babel/runtime@7.21.0: | |
907 | - resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==} | |
869 | + /@babel/runtime@7.22.6: | |
870 | + resolution: {integrity: sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==} | |
908 | 871 | engines: {node: '>=6.9.0'} |
909 | 872 | dependencies: |
910 | 873 | regenerator-runtime: 0.13.11 |
911 | 874 | |
912 | - /@babel/standalone@7.21.4: | |
913 | - resolution: {integrity: sha512-Rw4nGqH/iyVeYxARKcz7iGP+njkPsVqJ45TmXMONoGoxooWjXCAs+CUcLeAZdBGCLqgaPvHKCYvIaDT2Iq+KfA==} | |
875 | + /@babel/standalone@7.22.6: | |
876 | + resolution: {integrity: sha512-xVLT1r+JZMnvt47EmIr7cJb3xUDqHmyc/wr783/+Q+pLJfSVmV8bwwcSjXnqT4ajteUT0CufADWpcqRcwidL4w==} | |
914 | 877 | engines: {node: '>=6.9.0'} |
915 | 878 | dev: true |
916 | 879 | |
917 | - /@babel/template@7.20.7: | |
918 | - resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} | |
880 | + /@babel/template@7.22.5: | |
881 | + resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} | |
919 | 882 | engines: {node: '>=6.9.0'} |
920 | 883 | dependencies: |
921 | - '@babel/code-frame': 7.21.4 | |
922 | - '@babel/parser': 7.21.4 | |
923 | - '@babel/types': 7.21.4 | |
884 | + '@babel/code-frame': 7.22.5 | |
885 | + '@babel/parser': 7.22.6 | |
886 | + '@babel/types': 7.22.5 | |
924 | 887 | |
925 | - /@babel/traverse@7.21.4: | |
926 | - resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==} | |
888 | + /@babel/traverse@7.22.6: | |
889 | + resolution: {integrity: sha512-53CijMvKlLIDlOTrdWiHileRddlIiwUIyCKqYa7lYnnPldXCG5dUSN38uT0cA6i7rHWNKJLH0VU/Kxdr1GzB3w==} | |
927 | 890 | engines: {node: '>=6.9.0'} |
928 | 891 | dependencies: |
929 | - '@babel/code-frame': 7.21.4 | |
930 | - '@babel/generator': 7.21.4 | |
931 | - '@babel/helper-environment-visitor': 7.18.9 | |
932 | - '@babel/helper-function-name': 7.21.0 | |
933 | - '@babel/helper-hoist-variables': 7.18.6 | |
934 | - '@babel/helper-split-export-declaration': 7.18.6 | |
935 | - '@babel/parser': 7.21.4 | |
936 | - '@babel/types': 7.21.4 | |
892 | + '@babel/code-frame': 7.22.5 | |
893 | + '@babel/generator': 7.22.5 | |
894 | + '@babel/helper-environment-visitor': 7.22.5 | |
895 | + '@babel/helper-function-name': 7.22.5 | |
896 | + '@babel/helper-hoist-variables': 7.22.5 | |
897 | + '@babel/helper-split-export-declaration': 7.22.6 | |
898 | + '@babel/parser': 7.22.6 | |
899 | + '@babel/types': 7.22.5 | |
937 | 900 | debug: 4.3.4 |
938 | 901 | globals: 11.12.0 |
939 | 902 | transitivePeerDependencies: |
940 | 903 | - supports-color |
941 | 904 | |
942 | - /@babel/types@7.21.4: | |
943 | - resolution: {integrity: sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==} | |
944 | - engines: {node: '>=6.9.0'} | |
945 | - dependencies: | |
946 | - '@babel/helper-string-parser': 7.19.4 | |
947 | - '@babel/helper-validator-identifier': 7.19.1 | |
948 | - to-fast-properties: 2.0.0 | |
949 | - | |
950 | 905 | /@babel/types@7.22.5: |
951 | 906 | resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==} |
952 | 907 | engines: {node: '>=6.9.0'} |
... | ... | @@ -973,7 +928,7 @@ packages: |
973 | 928 | lodash.isfunction: 3.0.9 |
974 | 929 | resolve-from: 5.0.0 |
975 | 930 | resolve-global: 1.0.0 |
976 | - yargs: 17.7.1 | |
931 | + yargs: 17.7.2 | |
977 | 932 | transitivePeerDependencies: |
978 | 933 | - '@swc/core' |
979 | 934 | - '@swc/wasm' |
... | ... | @@ -1045,15 +1000,15 @@ packages: |
1045 | 1000 | '@commitlint/execute-rule': 17.4.0 |
1046 | 1001 | '@commitlint/resolve-extends': 17.4.4 |
1047 | 1002 | '@commitlint/types': 17.4.4 |
1048 | - '@types/node': 20.3.3 | |
1003 | + '@types/node': 20.4.0 | |
1049 | 1004 | chalk: 4.1.2 |
1050 | 1005 | cosmiconfig: 8.2.0 |
1051 | - cosmiconfig-typescript-loader: 4.3.0(@types/node@20.3.3)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@5.1.6) | |
1006 | + cosmiconfig-typescript-loader: 4.3.0(@types/node@20.4.0)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@5.1.6) | |
1052 | 1007 | lodash.isplainobject: 4.0.6 |
1053 | 1008 | lodash.merge: 4.6.2 |
1054 | 1009 | lodash.uniq: 4.5.0 |
1055 | 1010 | resolve-from: 5.0.0 |
1056 | - ts-node: 10.9.1(@types/node@20.3.3)(typescript@5.1.6) | |
1011 | + ts-node: 10.9.1(@types/node@20.4.0)(typescript@5.1.6) | |
1057 | 1012 | typescript: 5.1.6 |
1058 | 1013 | transitivePeerDependencies: |
1059 | 1014 | - '@swc/core' |
... | ... | @@ -1133,8 +1088,8 @@ packages: |
1133 | 1088 | dependencies: |
1134 | 1089 | '@jridgewell/trace-mapping': 0.3.9 |
1135 | 1090 | |
1136 | - /@csstools/css-parser-algorithms@2.2.0(@csstools/css-tokenizer@2.1.1): | |
1137 | - resolution: {integrity: sha512-9BoQ/jSrPq4vv3b9jjLW+PNNv56KlDH5JMx5yASSNrCtvq70FCNZUjXRvbCeR9hYj9ZyhURtqpU/RFIgg6kiOw==} | |
1091 | + /@csstools/css-parser-algorithms@2.3.0(@csstools/css-tokenizer@2.1.1): | |
1092 | + resolution: {integrity: sha512-dTKSIHHWc0zPvcS5cqGP+/TPFUJB0ekJ9dGKvMAFoNuBFhDPBt9OMGNZiIA5vTiNdGHHBeScYPXIGBMnVOahsA==} | |
1138 | 1093 | engines: {node: ^14 || ^16 || >=18} |
1139 | 1094 | peerDependencies: |
1140 | 1095 | '@csstools/css-tokenizer': ^2.1.1 |
... | ... | @@ -1147,22 +1102,22 @@ packages: |
1147 | 1102 | engines: {node: ^14 || ^16 || >=18} |
1148 | 1103 | dev: true |
1149 | 1104 | |
1150 | - /@csstools/media-query-list-parser@2.1.1(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1): | |
1151 | - resolution: {integrity: sha512-pUjtFbaKbiFNjJo8pprrIaXLvQvWIlwPiFnRI4sEnc4F0NIGTOsw8kaJSR3CmZAKEvV8QYckovgAnWQC0bgLLQ==} | |
1105 | + /@csstools/media-query-list-parser@2.1.2(@csstools/css-parser-algorithms@2.3.0)(@csstools/css-tokenizer@2.1.1): | |
1106 | + resolution: {integrity: sha512-M8cFGGwl866o6++vIY7j1AKuq9v57cf+dGepScwCcbut9ypJNr4Cj+LLTWligYUZ0uyhEoJDKt5lvyBfh2L3ZQ==} | |
1152 | 1107 | engines: {node: ^14 || ^16 || >=18} |
1153 | 1108 | peerDependencies: |
1154 | - '@csstools/css-parser-algorithms': ^2.2.0 | |
1109 | + '@csstools/css-parser-algorithms': ^2.3.0 | |
1155 | 1110 | '@csstools/css-tokenizer': ^2.1.1 |
1156 | 1111 | dependencies: |
1157 | - '@csstools/css-parser-algorithms': 2.2.0(@csstools/css-tokenizer@2.1.1) | |
1112 | + '@csstools/css-parser-algorithms': 2.3.0(@csstools/css-tokenizer@2.1.1) | |
1158 | 1113 | '@csstools/css-tokenizer': 2.1.1 |
1159 | 1114 | dev: true |
1160 | 1115 | |
1161 | - /@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.13): | |
1162 | - resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==} | |
1116 | + /@csstools/selector-specificity@3.0.0(postcss-selector-parser@6.0.13): | |
1117 | + resolution: {integrity: sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g==} | |
1163 | 1118 | engines: {node: ^14 || ^16 || >=18} |
1164 | 1119 | peerDependencies: |
1165 | - postcss-selector-parser: ^6.0.10 | |
1120 | + postcss-selector-parser: ^6.0.13 | |
1166 | 1121 | dependencies: |
1167 | 1122 | postcss-selector-parser: 6.0.13 |
1168 | 1123 | dev: true |
... | ... | @@ -1171,14 +1126,6 @@ packages: |
1171 | 1126 | resolution: {integrity: sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ==} |
1172 | 1127 | engines: {node: '>=10'} |
1173 | 1128 | |
1174 | - /@esbuild/android-arm64@0.17.15: | |
1175 | - resolution: {integrity: sha512-0kOB6Y7Br3KDVgHeg8PRcvfLkq+AccreK///B4Z6fNZGr/tNHX0z2VywCc7PTeWp+bPvjA5WMvNXltHw5QjAIA==} | |
1176 | - engines: {node: '>=12'} | |
1177 | - cpu: [arm64] | |
1178 | - os: [android] | |
1179 | - requiresBuild: true | |
1180 | - optional: true | |
1181 | - | |
1182 | 1129 | /@esbuild/android-arm64@0.17.19: |
1183 | 1130 | resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==} |
1184 | 1131 | engines: {node: '>=12'} |
... | ... | @@ -1188,21 +1135,12 @@ packages: |
1188 | 1135 | dev: true |
1189 | 1136 | optional: true |
1190 | 1137 | |
1191 | - /@esbuild/android-arm64@0.18.8: | |
1192 | - resolution: {integrity: sha512-8N8gkGu8vBq/cRPs8DDQmdwmS097A+XRHC/ay6wJjSEdLV3onTnfIkzew+g86k5bcakbxsE7zynCIhG0IgCT5Q==} | |
1138 | + /@esbuild/android-arm64@0.18.11: | |
1139 | + resolution: {integrity: sha512-snieiq75Z1z5LJX9cduSAjUr7vEI1OdlzFPMw0HH5YI7qQHDd3qs+WZoMrWYDsfRJSq36lIA6mfZBkvL46KoIw==} | |
1193 | 1140 | engines: {node: '>=12'} |
1194 | 1141 | cpu: [arm64] |
1195 | 1142 | os: [android] |
1196 | 1143 | requiresBuild: true |
1197 | - dev: true | |
1198 | - optional: true | |
1199 | - | |
1200 | - /@esbuild/android-arm@0.17.15: | |
1201 | - resolution: {integrity: sha512-sRSOVlLawAktpMvDyJIkdLI/c/kdRTOqo8t6ImVxg8yT7LQDUYV5Rp2FKeEosLr6ZCja9UjYAzyRSxGteSJPYg==} | |
1202 | - engines: {node: '>=12'} | |
1203 | - cpu: [arm] | |
1204 | - os: [android] | |
1205 | - requiresBuild: true | |
1206 | 1144 | optional: true |
1207 | 1145 | |
1208 | 1146 | /@esbuild/android-arm@0.17.19: |
... | ... | @@ -1214,21 +1152,12 @@ packages: |
1214 | 1152 | dev: true |
1215 | 1153 | optional: true |
1216 | 1154 | |
1217 | - /@esbuild/android-arm@0.18.8: | |
1218 | - resolution: {integrity: sha512-xDncukyW2b/JU04AZJ6cSAp4FaoAMyxFFTgmmNEKbjn2MwThw/ekHwt3d84Nm0fJG2KqKBS3D6uGDo2jzDN/uQ==} | |
1155 | + /@esbuild/android-arm@0.18.11: | |
1156 | + resolution: {integrity: sha512-q4qlUf5ucwbUJZXF5tEQ8LF7y0Nk4P58hOsGk3ucY0oCwgQqAnqXVbUuahCddVHfrxmpyewRpiTHwVHIETYu7Q==} | |
1219 | 1157 | engines: {node: '>=12'} |
1220 | 1158 | cpu: [arm] |
1221 | 1159 | os: [android] |
1222 | 1160 | requiresBuild: true |
1223 | - dev: true | |
1224 | - optional: true | |
1225 | - | |
1226 | - /@esbuild/android-x64@0.17.15: | |
1227 | - resolution: {integrity: sha512-MzDqnNajQZ63YkaUWVl9uuhcWyEyh69HGpMIrf+acR4otMkfLJ4sUCxqwbCyPGicE9dVlrysI3lMcDBjGiBBcQ==} | |
1228 | - engines: {node: '>=12'} | |
1229 | - cpu: [x64] | |
1230 | - os: [android] | |
1231 | - requiresBuild: true | |
1232 | 1161 | optional: true |
1233 | 1162 | |
1234 | 1163 | /@esbuild/android-x64@0.17.19: |
... | ... | @@ -1240,21 +1169,12 @@ packages: |
1240 | 1169 | dev: true |
1241 | 1170 | optional: true |
1242 | 1171 | |
1243 | - /@esbuild/android-x64@0.18.8: | |
1244 | - resolution: {integrity: sha512-vLTz/naWZMVY01T0B6gneUmm9RTYBlhRzjSCDuQCZURC1Lp3Fw2gP32ZFTtIaMBK+hfSJilnmgTPuUkCTH6CwA==} | |
1172 | + /@esbuild/android-x64@0.18.11: | |
1173 | + resolution: {integrity: sha512-iPuoxQEV34+hTF6FT7om+Qwziv1U519lEOvekXO9zaMMlT9+XneAhKL32DW3H7okrCOBQ44BMihE8dclbZtTuw==} | |
1245 | 1174 | engines: {node: '>=12'} |
1246 | 1175 | cpu: [x64] |
1247 | 1176 | os: [android] |
1248 | 1177 | requiresBuild: true |
1249 | - dev: true | |
1250 | - optional: true | |
1251 | - | |
1252 | - /@esbuild/darwin-arm64@0.17.15: | |
1253 | - resolution: {integrity: sha512-7siLjBc88Z4+6qkMDxPT2juf2e8SJxmsbNVKFY2ifWCDT72v5YJz9arlvBw5oB4W/e61H1+HDB/jnu8nNg0rLA==} | |
1254 | - engines: {node: '>=12'} | |
1255 | - cpu: [arm64] | |
1256 | - os: [darwin] | |
1257 | - requiresBuild: true | |
1258 | 1178 | optional: true |
1259 | 1179 | |
1260 | 1180 | /@esbuild/darwin-arm64@0.17.19: |
... | ... | @@ -1266,21 +1186,12 @@ packages: |
1266 | 1186 | dev: true |
1267 | 1187 | optional: true |
1268 | 1188 | |
1269 | - /@esbuild/darwin-arm64@0.18.8: | |
1270 | - resolution: {integrity: sha512-14oQ5IgillH6K7j750ug0IUfy86ql1CrHx4uxRMlq0lH5NthxEH+QIgqIzUUyDJdw0lOodtr4L905Q9VYIG2+g==} | |
1189 | + /@esbuild/darwin-arm64@0.18.11: | |
1190 | + resolution: {integrity: sha512-Gm0QkI3k402OpfMKyQEEMG0RuW2LQsSmI6OeO4El2ojJMoF5NLYb3qMIjvbG/lbMeLOGiW6ooU8xqc+S0fgz2w==} | |
1271 | 1191 | engines: {node: '>=12'} |
1272 | 1192 | cpu: [arm64] |
1273 | 1193 | os: [darwin] |
1274 | 1194 | requiresBuild: true |
1275 | - dev: true | |
1276 | - optional: true | |
1277 | - | |
1278 | - /@esbuild/darwin-x64@0.17.15: | |
1279 | - resolution: {integrity: sha512-NbImBas2rXwYI52BOKTW342Tm3LTeVlaOQ4QPZ7XuWNKiO226DisFk/RyPk3T0CKZkKMuU69yOvlapJEmax7cg==} | |
1280 | - engines: {node: '>=12'} | |
1281 | - cpu: [x64] | |
1282 | - os: [darwin] | |
1283 | - requiresBuild: true | |
1284 | 1195 | optional: true |
1285 | 1196 | |
1286 | 1197 | /@esbuild/darwin-x64@0.17.19: |
... | ... | @@ -1292,21 +1203,12 @@ packages: |
1292 | 1203 | dev: true |
1293 | 1204 | optional: true |
1294 | 1205 | |
1295 | - /@esbuild/darwin-x64@0.18.8: | |
1296 | - resolution: {integrity: sha512-OyEf+21R32glxR+IJpPhBgcbxSbc7adPe4hYggu2mbjqAAjJJAaYoYjNeojyp+ZKY2ZRX3FimBbeExVoPdEDfg==} | |
1206 | + /@esbuild/darwin-x64@0.18.11: | |
1207 | + resolution: {integrity: sha512-N15Vzy0YNHu6cfyDOjiyfJlRJCB/ngKOAvoBf1qybG3eOq0SL2Lutzz9N7DYUbb7Q23XtHPn6lMDF6uWbGv9Fw==} | |
1297 | 1208 | engines: {node: '>=12'} |
1298 | 1209 | cpu: [x64] |
1299 | 1210 | os: [darwin] |
1300 | 1211 | requiresBuild: true |
1301 | - dev: true | |
1302 | - optional: true | |
1303 | - | |
1304 | - /@esbuild/freebsd-arm64@0.17.15: | |
1305 | - resolution: {integrity: sha512-Xk9xMDjBVG6CfgoqlVczHAdJnCs0/oeFOspFap5NkYAmRCT2qTn1vJWA2f419iMtsHSLm+O8B6SLV/HlY5cYKg==} | |
1306 | - engines: {node: '>=12'} | |
1307 | - cpu: [arm64] | |
1308 | - os: [freebsd] | |
1309 | - requiresBuild: true | |
1310 | 1212 | optional: true |
1311 | 1213 | |
1312 | 1214 | /@esbuild/freebsd-arm64@0.17.19: |
... | ... | @@ -1318,21 +1220,12 @@ packages: |
1318 | 1220 | dev: true |
1319 | 1221 | optional: true |
1320 | 1222 | |
1321 | - /@esbuild/freebsd-arm64@0.18.8: | |
1322 | - resolution: {integrity: sha512-ur5cFSmlE5YPqD+5X9E32wJ2nBnz/Lk30QuAiotam0kx2e2f9+dgTarqaDhUKt+xJo+6OLhCpHAlogQ1TAvJrw==} | |
1223 | + /@esbuild/freebsd-arm64@0.18.11: | |
1224 | + resolution: {integrity: sha512-atEyuq6a3omEY5qAh5jIORWk8MzFnCpSTUruBgeyN9jZq1K/QI9uke0ATi3MHu4L8c59CnIi4+1jDKMuqmR71A==} | |
1323 | 1225 | engines: {node: '>=12'} |
1324 | 1226 | cpu: [arm64] |
1325 | 1227 | os: [freebsd] |
1326 | 1228 | requiresBuild: true |
1327 | - dev: true | |
1328 | - optional: true | |
1329 | - | |
1330 | - /@esbuild/freebsd-x64@0.17.15: | |
1331 | - resolution: {integrity: sha512-3TWAnnEOdclvb2pnfsTWtdwthPfOz7qAfcwDLcfZyGJwm1SRZIMOeB5FODVhnM93mFSPsHB9b/PmxNNbSnd0RQ==} | |
1332 | - engines: {node: '>=12'} | |
1333 | - cpu: [x64] | |
1334 | - os: [freebsd] | |
1335 | - requiresBuild: true | |
1336 | 1229 | optional: true |
1337 | 1230 | |
1338 | 1231 | /@esbuild/freebsd-x64@0.17.19: |
... | ... | @@ -1344,21 +1237,12 @@ packages: |
1344 | 1237 | dev: true |
1345 | 1238 | optional: true |
1346 | 1239 | |
1347 | - /@esbuild/freebsd-x64@0.18.8: | |
1348 | - resolution: {integrity: sha512-j0dgVXUyInggnvEgFGS7FXTQncRwAmHkgAy8YE52kOsozkimpapE3Kuuwb6MXbhnqLvJevaFgGSAlseDlkXAlg==} | |
1240 | + /@esbuild/freebsd-x64@0.18.11: | |
1241 | + resolution: {integrity: sha512-XtuPrEfBj/YYYnAAB7KcorzzpGTvOr/dTtXPGesRfmflqhA4LMF0Gh/n5+a9JBzPuJ+CGk17CA++Hmr1F/gI0Q==} | |
1349 | 1242 | engines: {node: '>=12'} |
1350 | 1243 | cpu: [x64] |
1351 | 1244 | os: [freebsd] |
1352 | 1245 | requiresBuild: true |
1353 | - dev: true | |
1354 | - optional: true | |
1355 | - | |
1356 | - /@esbuild/linux-arm64@0.17.15: | |
1357 | - resolution: {integrity: sha512-T0MVnYw9KT6b83/SqyznTs/3Jg2ODWrZfNccg11XjDehIved2oQfrX/wVuev9N936BpMRaTR9I1J0tdGgUgpJA==} | |
1358 | - engines: {node: '>=12'} | |
1359 | - cpu: [arm64] | |
1360 | - os: [linux] | |
1361 | - requiresBuild: true | |
1362 | 1246 | optional: true |
1363 | 1247 | |
1364 | 1248 | /@esbuild/linux-arm64@0.17.19: |
... | ... | @@ -1370,21 +1254,12 @@ packages: |
1370 | 1254 | dev: true |
1371 | 1255 | optional: true |
1372 | 1256 | |
1373 | - /@esbuild/linux-arm64@0.18.8: | |
1374 | - resolution: {integrity: sha512-Xp8brdqVVSTiN3/GGEAkMN1V2VCUrt11lxqHopYsbAvIf2YAfaW02/NFlekMq7SaAVcReYqbO7LReaOLzHaxgw==} | |
1257 | + /@esbuild/linux-arm64@0.18.11: | |
1258 | + resolution: {integrity: sha512-c6Vh2WS9VFKxKZ2TvJdA7gdy0n6eSy+yunBvv4aqNCEhSWVor1TU43wNRp2YLO9Vng2G+W94aRz+ILDSwAiYog==} | |
1375 | 1259 | engines: {node: '>=12'} |
1376 | 1260 | cpu: [arm64] |
1377 | 1261 | os: [linux] |
1378 | 1262 | requiresBuild: true |
1379 | - dev: true | |
1380 | - optional: true | |
1381 | - | |
1382 | - /@esbuild/linux-arm@0.17.15: | |
1383 | - resolution: {integrity: sha512-MLTgiXWEMAMr8nmS9Gigx43zPRmEfeBfGCwxFQEMgJ5MC53QKajaclW6XDPjwJvhbebv+RzK05TQjvH3/aM4Xw==} | |
1384 | - engines: {node: '>=12'} | |
1385 | - cpu: [arm] | |
1386 | - os: [linux] | |
1387 | - requiresBuild: true | |
1388 | 1263 | optional: true |
1389 | 1264 | |
1390 | 1265 | /@esbuild/linux-arm@0.17.19: |
... | ... | @@ -1396,21 +1271,12 @@ packages: |
1396 | 1271 | dev: true |
1397 | 1272 | optional: true |
1398 | 1273 | |
1399 | - /@esbuild/linux-arm@0.18.8: | |
1400 | - resolution: {integrity: sha512-moCWasFnLWfVmZjux2wE1YRoJlQ36hlthVD/B+UTic3UgCZ5LvpHTeqnF037JL9zS1W6d+cB0hUwithdIyZ/1w==} | |
1274 | + /@esbuild/linux-arm@0.18.11: | |
1275 | + resolution: {integrity: sha512-Idipz+Taso/toi2ETugShXjQ3S59b6m62KmLHkJlSq/cBejixmIydqrtM2XTvNCywFl3VC7SreSf6NV0i6sRyg==} | |
1401 | 1276 | engines: {node: '>=12'} |
1402 | 1277 | cpu: [arm] |
1403 | 1278 | os: [linux] |
1404 | 1279 | requiresBuild: true |
1405 | - dev: true | |
1406 | - optional: true | |
1407 | - | |
1408 | - /@esbuild/linux-ia32@0.17.15: | |
1409 | - resolution: {integrity: sha512-wp02sHs015T23zsQtU4Cj57WiteiuASHlD7rXjKUyAGYzlOKDAjqK6bk5dMi2QEl/KVOcsjwL36kD+WW7vJt8Q==} | |
1410 | - engines: {node: '>=12'} | |
1411 | - cpu: [ia32] | |
1412 | - os: [linux] | |
1413 | - requiresBuild: true | |
1414 | 1280 | optional: true |
1415 | 1281 | |
1416 | 1282 | /@esbuild/linux-ia32@0.17.19: |
... | ... | @@ -1422,21 +1288,12 @@ packages: |
1422 | 1288 | dev: true |
1423 | 1289 | optional: true |
1424 | 1290 | |
1425 | - /@esbuild/linux-ia32@0.18.8: | |
1426 | - resolution: {integrity: sha512-mUDNdkY8mr4kZrekGLwZBFpvVX1VJLpwYUsbKTM/w0h4xVgsupc440nlsUfyz8OKeE92ZdMUUG8wrdOeZaONiQ==} | |
1291 | + /@esbuild/linux-ia32@0.18.11: | |
1292 | + resolution: {integrity: sha512-S3hkIF6KUqRh9n1Q0dSyYcWmcVa9Cg+mSoZEfFuzoYXXsk6196qndrM+ZiHNwpZKi3XOXpShZZ+9dfN5ykqjjw==} | |
1427 | 1293 | engines: {node: '>=12'} |
1428 | 1294 | cpu: [ia32] |
1429 | 1295 | os: [linux] |
1430 | 1296 | requiresBuild: true |
1431 | - dev: true | |
1432 | - optional: true | |
1433 | - | |
1434 | - /@esbuild/linux-loong64@0.17.15: | |
1435 | - resolution: {integrity: sha512-k7FsUJjGGSxwnBmMh8d7IbObWu+sF/qbwc+xKZkBe/lTAF16RqxRCnNHA7QTd3oS2AfGBAnHlXL67shV5bBThQ==} | |
1436 | - engines: {node: '>=12'} | |
1437 | - cpu: [loong64] | |
1438 | - os: [linux] | |
1439 | - requiresBuild: true | |
1440 | 1297 | optional: true |
1441 | 1298 | |
1442 | 1299 | /@esbuild/linux-loong64@0.17.19: |
... | ... | @@ -1448,21 +1305,12 @@ packages: |
1448 | 1305 | dev: true |
1449 | 1306 | optional: true |
1450 | 1307 | |
1451 | - /@esbuild/linux-loong64@0.18.8: | |
1452 | - resolution: {integrity: sha512-wuzn8pABeFielmccZjn44eyVFo9G5rThVT91QdxZ02H7Yxek623ODpZoauAWwdBDFfK1R25RtKkxCvzfeJ1akg==} | |
1308 | + /@esbuild/linux-loong64@0.18.11: | |
1309 | + resolution: {integrity: sha512-MRESANOoObQINBA+RMZW+Z0TJWpibtE7cPFnahzyQHDCA9X9LOmGh68MVimZlM9J8n5Ia8lU773te6O3ILW8kw==} | |
1453 | 1310 | engines: {node: '>=12'} |
1454 | 1311 | cpu: [loong64] |
1455 | 1312 | os: [linux] |
1456 | 1313 | requiresBuild: true |
1457 | - dev: true | |
1458 | - optional: true | |
1459 | - | |
1460 | - /@esbuild/linux-mips64el@0.17.15: | |
1461 | - resolution: {integrity: sha512-ZLWk6czDdog+Q9kE/Jfbilu24vEe/iW/Sj2d8EVsmiixQ1rM2RKH2n36qfxK4e8tVcaXkvuV3mU5zTZviE+NVQ==} | |
1462 | - engines: {node: '>=12'} | |
1463 | - cpu: [mips64el] | |
1464 | - os: [linux] | |
1465 | - requiresBuild: true | |
1466 | 1314 | optional: true |
1467 | 1315 | |
1468 | 1316 | /@esbuild/linux-mips64el@0.17.19: |
... | ... | @@ -1474,21 +1322,12 @@ packages: |
1474 | 1322 | dev: true |
1475 | 1323 | optional: true |
1476 | 1324 | |
1477 | - /@esbuild/linux-mips64el@0.18.8: | |
1478 | - resolution: {integrity: sha512-9vIq+bR1PYqTV0Ea38a9h/r2xAecC56eQemOBXyzM3jQ9Bo8f3Q9On7mpiDrXich1eQuo9nna0ZBcaIJxaO58g==} | |
1325 | + /@esbuild/linux-mips64el@0.18.11: | |
1326 | + resolution: {integrity: sha512-qVyPIZrXNMOLYegtD1u8EBccCrBVshxMrn5MkuFc3mEVsw7CCQHaqZ4jm9hbn4gWY95XFnb7i4SsT3eflxZsUg==} | |
1479 | 1327 | engines: {node: '>=12'} |
1480 | 1328 | cpu: [mips64el] |
1481 | 1329 | os: [linux] |
1482 | 1330 | requiresBuild: true |
1483 | - dev: true | |
1484 | - optional: true | |
1485 | - | |
1486 | - /@esbuild/linux-ppc64@0.17.15: | |
1487 | - resolution: {integrity: sha512-mY6dPkIRAiFHRsGfOYZC8Q9rmr8vOBZBme0/j15zFUKM99d4ILY4WpOC7i/LqoY+RE7KaMaSfvY8CqjJtuO4xg==} | |
1488 | - engines: {node: '>=12'} | |
1489 | - cpu: [ppc64] | |
1490 | - os: [linux] | |
1491 | - requiresBuild: true | |
1492 | 1331 | optional: true |
1493 | 1332 | |
1494 | 1333 | /@esbuild/linux-ppc64@0.17.19: |
... | ... | @@ -1500,21 +1339,12 @@ packages: |
1500 | 1339 | dev: true |
1501 | 1340 | optional: true |
1502 | 1341 | |
1503 | - /@esbuild/linux-ppc64@0.18.8: | |
1504 | - resolution: {integrity: sha512-9AFk6CgYytoQ0/RMnmr1zlpTA88g9ksxk0gmo9apY+O8Yzmcjd+Dl9LUX9k89dLnyyLgkHl6uLg1tpEzpQS+yA==} | |
1342 | + /@esbuild/linux-ppc64@0.18.11: | |
1343 | + resolution: {integrity: sha512-T3yd8vJXfPirZaUOoA9D2ZjxZX4Gr3QuC3GztBJA6PklLotc/7sXTOuuRkhE9W/5JvJP/K9b99ayPNAD+R+4qQ==} | |
1505 | 1344 | engines: {node: '>=12'} |
1506 | 1345 | cpu: [ppc64] |
1507 | 1346 | os: [linux] |
1508 | 1347 | requiresBuild: true |
1509 | - dev: true | |
1510 | - optional: true | |
1511 | - | |
1512 | - /@esbuild/linux-riscv64@0.17.15: | |
1513 | - resolution: {integrity: sha512-EcyUtxffdDtWjjwIH8sKzpDRLcVtqANooMNASO59y+xmqqRYBBM7xVLQhqF7nksIbm2yHABptoioS9RAbVMWVA==} | |
1514 | - engines: {node: '>=12'} | |
1515 | - cpu: [riscv64] | |
1516 | - os: [linux] | |
1517 | - requiresBuild: true | |
1518 | 1348 | optional: true |
1519 | 1349 | |
1520 | 1350 | /@esbuild/linux-riscv64@0.17.19: |
... | ... | @@ -1526,21 +1356,12 @@ packages: |
1526 | 1356 | dev: true |
1527 | 1357 | optional: true |
1528 | 1358 | |
1529 | - /@esbuild/linux-riscv64@0.18.8: | |
1530 | - resolution: {integrity: sha512-AyuhgbWMSbYrgr3Qz8OT6C92PSbSh7X9ckSgz4xnZYUWrBkR6YaRTp5L7zgcouA/cSm1AiOQauHgQb+EOCNBVQ==} | |
1359 | + /@esbuild/linux-riscv64@0.18.11: | |
1360 | + resolution: {integrity: sha512-evUoRPWiwuFk++snjH9e2cAjF5VVSTj+Dnf+rkO/Q20tRqv+644279TZlPK8nUGunjPAtQRCj1jQkDAvL6rm2w==} | |
1531 | 1361 | engines: {node: '>=12'} |
1532 | 1362 | cpu: [riscv64] |
1533 | 1363 | os: [linux] |
1534 | 1364 | requiresBuild: true |
1535 | - dev: true | |
1536 | - optional: true | |
1537 | - | |
1538 | - /@esbuild/linux-s390x@0.17.15: | |
1539 | - resolution: {integrity: sha512-BuS6Jx/ezxFuHxgsfvz7T4g4YlVrmCmg7UAwboeyNNg0OzNzKsIZXpr3Sb/ZREDXWgt48RO4UQRDBxJN3B9Rbg==} | |
1540 | - engines: {node: '>=12'} | |
1541 | - cpu: [s390x] | |
1542 | - os: [linux] | |
1543 | - requiresBuild: true | |
1544 | 1365 | optional: true |
1545 | 1366 | |
1546 | 1367 | /@esbuild/linux-s390x@0.17.19: |
... | ... | @@ -1552,21 +1373,12 @@ packages: |
1552 | 1373 | dev: true |
1553 | 1374 | optional: true |
1554 | 1375 | |
1555 | - /@esbuild/linux-s390x@0.18.8: | |
1556 | - resolution: {integrity: sha512-XU3UTgyFx80B+kCD82kun9usGT1+3YILtGeGx+StNWGT8wjHYCc5ZTsh4g+58kDoGPezquGO+Kso5VSlX2GU2g==} | |
1376 | + /@esbuild/linux-s390x@0.18.11: | |
1377 | + resolution: {integrity: sha512-/SlRJ15XR6i93gRWquRxYCfhTeC5PdqEapKoLbX63PLCmAkXZHY2uQm2l9bN0oPHBsOw2IswRZctMYS0MijFcg==} | |
1557 | 1378 | engines: {node: '>=12'} |
1558 | 1379 | cpu: [s390x] |
1559 | 1380 | os: [linux] |
1560 | 1381 | requiresBuild: true |
1561 | - dev: true | |
1562 | - optional: true | |
1563 | - | |
1564 | - /@esbuild/linux-x64@0.17.15: | |
1565 | - resolution: {integrity: sha512-JsdS0EgEViwuKsw5tiJQo9UdQdUJYuB+Mf6HxtJSPN35vez1hlrNb1KajvKWF5Sa35j17+rW1ECEO9iNrIXbNg==} | |
1566 | - engines: {node: '>=12'} | |
1567 | - cpu: [x64] | |
1568 | - os: [linux] | |
1569 | - requiresBuild: true | |
1570 | 1382 | optional: true |
1571 | 1383 | |
1572 | 1384 | /@esbuild/linux-x64@0.17.19: |
... | ... | @@ -1578,21 +1390,12 @@ packages: |
1578 | 1390 | dev: true |
1579 | 1391 | optional: true |
1580 | 1392 | |
1581 | - /@esbuild/linux-x64@0.18.8: | |
1582 | - resolution: {integrity: sha512-/zBMV9cAFYFVTiyf7zg4ubMSfH0BGn5IPD+XZT0m2cYhtlMQLRQlNDpkaz5UlAIZBnBTCpjsbnI8X73xP2Zgtw==} | |
1393 | + /@esbuild/linux-x64@0.18.11: | |
1394 | + resolution: {integrity: sha512-xcncej+wF16WEmIwPtCHi0qmx1FweBqgsRtEL1mSHLFR6/mb3GEZfLQnx+pUDfRDEM4DQF8dpXIW7eDOZl1IbA==} | |
1583 | 1395 | engines: {node: '>=12'} |
1584 | 1396 | cpu: [x64] |
1585 | 1397 | os: [linux] |
1586 | 1398 | requiresBuild: true |
1587 | - dev: true | |
1588 | - optional: true | |
1589 | - | |
1590 | - /@esbuild/netbsd-x64@0.17.15: | |
1591 | - resolution: {integrity: sha512-R6fKjtUysYGym6uXf6qyNephVUQAGtf3n2RCsOST/neIwPqRWcnc3ogcielOd6pT+J0RDR1RGcy0ZY7d3uHVLA==} | |
1592 | - engines: {node: '>=12'} | |
1593 | - cpu: [x64] | |
1594 | - os: [netbsd] | |
1595 | - requiresBuild: true | |
1596 | 1399 | optional: true |
1597 | 1400 | |
1598 | 1401 | /@esbuild/netbsd-x64@0.17.19: |
... | ... | @@ -1604,21 +1407,12 @@ packages: |
1604 | 1407 | dev: true |
1605 | 1408 | optional: true |
1606 | 1409 | |
1607 | - /@esbuild/netbsd-x64@0.18.8: | |
1608 | - resolution: {integrity: sha512-/Aqh6SoP6UpLrgdfgFzi1Von4D5OhnJEYZNdkZA0AREuwSBcZh6X5eUsSCiEszJaeOt/oOZOvSwNR7i2VjmDnA==} | |
1410 | + /@esbuild/netbsd-x64@0.18.11: | |
1411 | + resolution: {integrity: sha512-aSjMHj/F7BuS1CptSXNg6S3M4F3bLp5wfFPIJM+Km2NfIVfFKhdmfHF9frhiCLIGVzDziggqWll0B+9AUbud/Q==} | |
1609 | 1412 | engines: {node: '>=12'} |
1610 | 1413 | cpu: [x64] |
1611 | 1414 | os: [netbsd] |
1612 | 1415 | requiresBuild: true |
1613 | - dev: true | |
1614 | - optional: true | |
1615 | - | |
1616 | - /@esbuild/openbsd-x64@0.17.15: | |
1617 | - resolution: {integrity: sha512-mVD4PGc26b8PI60QaPUltYKeSX0wxuy0AltC+WCTFwvKCq2+OgLP4+fFd+hZXzO2xW1HPKcytZBdjqL6FQFa7w==} | |
1618 | - engines: {node: '>=12'} | |
1619 | - cpu: [x64] | |
1620 | - os: [openbsd] | |
1621 | - requiresBuild: true | |
1622 | 1416 | optional: true |
1623 | 1417 | |
1624 | 1418 | /@esbuild/openbsd-x64@0.17.19: |
... | ... | @@ -1630,21 +1424,12 @@ packages: |
1630 | 1424 | dev: true |
1631 | 1425 | optional: true |
1632 | 1426 | |
1633 | - /@esbuild/openbsd-x64@0.18.8: | |
1634 | - resolution: {integrity: sha512-twRW7IQ4ar1BilPDFf/IpsQY77dU50IUKZxs7veZVo4rnQbOXw6FPl2rWVJcVx+I6dkGzmt/yM6YW6FBdqA3DA==} | |
1427 | + /@esbuild/openbsd-x64@0.18.11: | |
1428 | + resolution: {integrity: sha512-tNBq+6XIBZtht0xJGv7IBB5XaSyvYPCm1PxJ33zLQONdZoLVM0bgGqUrXnJyiEguD9LU4AHiu+GCXy/Hm9LsdQ==} | |
1635 | 1429 | engines: {node: '>=12'} |
1636 | 1430 | cpu: [x64] |
1637 | 1431 | os: [openbsd] |
1638 | 1432 | requiresBuild: true |
1639 | - dev: true | |
1640 | - optional: true | |
1641 | - | |
1642 | - /@esbuild/sunos-x64@0.17.15: | |
1643 | - resolution: {integrity: sha512-U6tYPovOkw3459t2CBwGcFYfFRjivcJJc1WC8Q3funIwX8x4fP+R6xL/QuTPNGOblbq/EUDxj9GU+dWKX0oWlQ==} | |
1644 | - engines: {node: '>=12'} | |
1645 | - cpu: [x64] | |
1646 | - os: [sunos] | |
1647 | - requiresBuild: true | |
1648 | 1433 | optional: true |
1649 | 1434 | |
1650 | 1435 | /@esbuild/sunos-x64@0.17.19: |
... | ... | @@ -1656,21 +1441,12 @@ packages: |
1656 | 1441 | dev: true |
1657 | 1442 | optional: true |
1658 | 1443 | |
1659 | - /@esbuild/sunos-x64@0.18.8: | |
1660 | - resolution: {integrity: sha512-DSgYAFzvRisJQPxtTsUTFJ/Kr1KYZxxrKGfHPMnW2f/0KxOdLwRKbzWeG8g15gSBcDuDCZXnuUSFyu3ZyqbCzA==} | |
1444 | + /@esbuild/sunos-x64@0.18.11: | |
1445 | + resolution: {integrity: sha512-kxfbDOrH4dHuAAOhr7D7EqaYf+W45LsAOOhAet99EyuxxQmjbk8M9N4ezHcEiCYPaiW8Dj3K26Z2V17Gt6p3ng==} | |
1661 | 1446 | engines: {node: '>=12'} |
1662 | 1447 | cpu: [x64] |
1663 | 1448 | os: [sunos] |
1664 | 1449 | requiresBuild: true |
1665 | - dev: true | |
1666 | - optional: true | |
1667 | - | |
1668 | - /@esbuild/win32-arm64@0.17.15: | |
1669 | - resolution: {integrity: sha512-W+Z5F++wgKAleDABemiyXVnzXgvRFs+GVKThSI+mGgleLWluv0D7Diz4oQpgdpNzh4i2nNDzQtWbjJiqutRp6Q==} | |
1670 | - engines: {node: '>=12'} | |
1671 | - cpu: [arm64] | |
1672 | - os: [win32] | |
1673 | - requiresBuild: true | |
1674 | 1450 | optional: true |
1675 | 1451 | |
1676 | 1452 | /@esbuild/win32-arm64@0.17.19: |
... | ... | @@ -1682,21 +1458,12 @@ packages: |
1682 | 1458 | dev: true |
1683 | 1459 | optional: true |
1684 | 1460 | |
1685 | - /@esbuild/win32-arm64@0.18.8: | |
1686 | - resolution: {integrity: sha512-eWoYo48Hp1yWbe2SSnmMNqnVprNgKtp0mP+aUeX/Lkw3gcsgRju5Qj7psfpA8cR0ULeWkrhmaSS4mgj4wfo97A==} | |
1461 | + /@esbuild/win32-arm64@0.18.11: | |
1462 | + resolution: {integrity: sha512-Sh0dDRyk1Xi348idbal7lZyfSkjhJsdFeuC13zqdipsvMetlGiFQNdO+Yfp6f6B4FbyQm7qsk16yaZk25LChzg==} | |
1687 | 1463 | engines: {node: '>=12'} |
1688 | 1464 | cpu: [arm64] |
1689 | 1465 | os: [win32] |
1690 | 1466 | requiresBuild: true |
1691 | - dev: true | |
1692 | - optional: true | |
1693 | - | |
1694 | - /@esbuild/win32-ia32@0.17.15: | |
1695 | - resolution: {integrity: sha512-Muz/+uGgheShKGqSVS1KsHtCyEzcdOn/W/Xbh6H91Etm+wiIfwZaBn1W58MeGtfI8WA961YMHFYTthBdQs4t+w==} | |
1696 | - engines: {node: '>=12'} | |
1697 | - cpu: [ia32] | |
1698 | - os: [win32] | |
1699 | - requiresBuild: true | |
1700 | 1467 | optional: true |
1701 | 1468 | |
1702 | 1469 | /@esbuild/win32-ia32@0.17.19: |
... | ... | @@ -1708,21 +1475,12 @@ packages: |
1708 | 1475 | dev: true |
1709 | 1476 | optional: true |
1710 | 1477 | |
1711 | - /@esbuild/win32-ia32@0.18.8: | |
1712 | - resolution: {integrity: sha512-A5mph1zmf7eEbAKZYqRHUBkO5PRdSO0bjH4XMAnYCXfndk72uHzvMmTNS5ZZ1dVUb55P45MFBBlZyW7SsnXxXw==} | |
1478 | + /@esbuild/win32-ia32@0.18.11: | |
1479 | + resolution: {integrity: sha512-o9JUIKF1j0rqJTFbIoF4bXj6rvrTZYOrfRcGyL0Vm5uJ/j5CkBD/51tpdxe9lXEDouhRgdr/BYzUrDOvrWwJpg==} | |
1713 | 1480 | engines: {node: '>=12'} |
1714 | 1481 | cpu: [ia32] |
1715 | 1482 | os: [win32] |
1716 | 1483 | requiresBuild: true |
1717 | - dev: true | |
1718 | - optional: true | |
1719 | - | |
1720 | - /@esbuild/win32-x64@0.17.15: | |
1721 | - resolution: {integrity: sha512-DjDa9ywLUUmjhV2Y9wUTIF+1XsmuFGvZoCmOWkli1XcNAh5t25cc7fgsCx4Zi/Uurep3TTLyDiKATgGEg61pkA==} | |
1722 | - engines: {node: '>=12'} | |
1723 | - cpu: [x64] | |
1724 | - os: [win32] | |
1725 | - requiresBuild: true | |
1726 | 1484 | optional: true |
1727 | 1485 | |
1728 | 1486 | /@esbuild/win32-x64@0.17.19: |
... | ... | @@ -1734,13 +1492,12 @@ packages: |
1734 | 1492 | dev: true |
1735 | 1493 | optional: true |
1736 | 1494 | |
1737 | - /@esbuild/win32-x64@0.18.8: | |
1738 | - resolution: {integrity: sha512-/NKlWmdR5oxLswW/pdMKF8qwwtC7zpeTWvWffXpqNZ4Nib6lmnU2L5ijfSvWy8vxWhwmfR/CXA7GzuRL5nRxow==} | |
1495 | + /@esbuild/win32-x64@0.18.11: | |
1496 | + resolution: {integrity: sha512-rQI4cjLHd2hGsM1LqgDI7oOCYbQ6IBOVsX9ejuRMSze0GqXUG2ekwiKkiBU1pRGSeCqFFHxTrcEydB2Hyoz9CA==} | |
1739 | 1497 | engines: {node: '>=12'} |
1740 | 1498 | cpu: [x64] |
1741 | 1499 | os: [win32] |
1742 | 1500 | requiresBuild: true |
1743 | - dev: true | |
1744 | 1501 | optional: true |
1745 | 1502 | |
1746 | 1503 | /@eslint-community/eslint-utils@4.4.0(eslint@8.44.0): |
... | ... | @@ -1753,8 +1510,8 @@ packages: |
1753 | 1510 | eslint-visitor-keys: 3.4.1 |
1754 | 1511 | dev: true |
1755 | 1512 | |
1756 | - /@eslint-community/regexpp@4.5.0: | |
1757 | - resolution: {integrity: sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==} | |
1513 | + /@eslint-community/regexpp@4.5.1: | |
1514 | + resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==} | |
1758 | 1515 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} |
1759 | 1516 | dev: true |
1760 | 1517 | |
... | ... | @@ -1783,7 +1540,7 @@ packages: |
1783 | 1540 | /@fast-csv/format@4.3.5: |
1784 | 1541 | resolution: {integrity: sha512-8iRn6QF3I8Ak78lNAa+Gdl5MJJBM5vRHivFtMRUWINdevNo00K7OXxS2PshawLKTejVwieIlPmK5YlLu6w4u8A==} |
1785 | 1542 | dependencies: |
1786 | - '@types/node': 14.18.42 | |
1543 | + '@types/node': 14.18.53 | |
1787 | 1544 | lodash.escaperegexp: 4.1.2 |
1788 | 1545 | lodash.isboolean: 3.0.3 |
1789 | 1546 | lodash.isequal: 4.5.0 |
... | ... | @@ -1794,7 +1551,7 @@ packages: |
1794 | 1551 | /@fast-csv/parse@4.3.6: |
1795 | 1552 | resolution: {integrity: sha512-uRsLYksqpbDmWaSmzvJcuApSEe38+6NQZBUsuAyMZKqHxH0g1wcJgsKUvN3WC8tewaqFjBMMGrkHmC+T7k8LvA==} |
1796 | 1553 | dependencies: |
1797 | - '@types/node': 14.18.42 | |
1554 | + '@types/node': 14.18.53 | |
1798 | 1555 | lodash.escaperegexp: 4.1.2 |
1799 | 1556 | lodash.groupby: 4.6.0 |
1800 | 1557 | lodash.isfunction: 3.0.9 |
... | ... | @@ -1826,7 +1583,7 @@ packages: |
1826 | 1583 | /@iconify/iconify@2.1.2: |
1827 | 1584 | resolution: {integrity: sha512-QcUzFeEWkE/mW+BVtEGmcWATClcCOIJFiYUD/PiCWuTcdEA297o8D4oN6Ra44WrNOHu1wqNW4J0ioaDIiqaFOQ==} |
1828 | 1585 | dependencies: |
1829 | - cross-fetch: 3.1.5 | |
1586 | + cross-fetch: 3.1.8 | |
1830 | 1587 | transitivePeerDependencies: |
1831 | 1588 | - encoding |
1832 | 1589 | dev: true |
... | ... | @@ -1836,8 +1593,8 @@ packages: |
1836 | 1593 | dependencies: |
1837 | 1594 | '@iconify/types': 2.0.0 |
1838 | 1595 | |
1839 | - /@iconify/json@2.2.85: | |
1840 | - resolution: {integrity: sha512-T72zjZlpP311ftbdzpOFbRCictazlrX1xR8lLu3swVvFo22b/SZNBN4r0cv+e+eVNZvMxhF/cFww2fkaZ3m7Pg==} | |
1596 | + /@iconify/json@2.2.87: | |
1597 | + resolution: {integrity: sha512-sIFqYdTa5St7yjCHQ8wxgugNFVSjcboEOErf2ouxMGg8OACj/r+X6RXqIm+Y2OzEtjVnz6pR2WwlSbFPrijhGQ==} | |
1841 | 1598 | dependencies: |
1842 | 1599 | '@iconify/types': 2.0.0 |
1843 | 1600 | pathe: 1.1.1 |
... | ... | @@ -1850,7 +1607,7 @@ packages: |
1850 | 1607 | resolution: {integrity: sha512-P8S3z/L1LcV4Qem9AoCfVAaTFGySEMzFEY4CHZLkfRj0Fv9LiR+AwjDgrDrzyI93U2L2mg9JHsbTJ52mF8suNw==} |
1851 | 1608 | dependencies: |
1852 | 1609 | '@antfu/install-pkg': 0.1.1 |
1853 | - '@antfu/utils': 0.7.4 | |
1610 | + '@antfu/utils': 0.7.5 | |
1854 | 1611 | '@iconify/types': 2.0.0 |
1855 | 1612 | debug: 4.3.4 |
1856 | 1613 | kolorist: 1.8.0 |
... | ... | @@ -1903,7 +1660,7 @@ packages: |
1903 | 1660 | dependencies: |
1904 | 1661 | string-width: 5.1.2 |
1905 | 1662 | string-width-cjs: /string-width@4.2.3 |
1906 | - strip-ansi: 7.0.1 | |
1663 | + strip-ansi: 7.1.0 | |
1907 | 1664 | strip-ansi-cjs: /strip-ansi@6.0.1 |
1908 | 1665 | wrap-ansi: 8.1.0 |
1909 | 1666 | wrap-ansi-cjs: /wrap-ansi@7.0.0 |
... | ... | @@ -1930,7 +1687,7 @@ packages: |
1930 | 1687 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
1931 | 1688 | dependencies: |
1932 | 1689 | '@jest/types': 27.5.1 |
1933 | - '@types/node': 20.3.3 | |
1690 | + '@types/node': 20.4.0 | |
1934 | 1691 | chalk: 4.1.2 |
1935 | 1692 | jest-message-util: 27.5.1 |
1936 | 1693 | jest-util: 27.5.1 |
... | ... | @@ -1951,7 +1708,7 @@ packages: |
1951 | 1708 | '@jest/test-result': 27.5.1 |
1952 | 1709 | '@jest/transform': 27.5.1 |
1953 | 1710 | '@jest/types': 27.5.1 |
1954 | - '@types/node': 20.3.3 | |
1711 | + '@types/node': 20.4.0 | |
1955 | 1712 | ansi-escapes: 4.3.2 |
1956 | 1713 | chalk: 4.1.2 |
1957 | 1714 | emittery: 0.8.1 |
... | ... | @@ -1988,7 +1745,7 @@ packages: |
1988 | 1745 | dependencies: |
1989 | 1746 | '@jest/fake-timers': 27.5.1 |
1990 | 1747 | '@jest/types': 27.5.1 |
1991 | - '@types/node': 20.3.3 | |
1748 | + '@types/node': 20.4.0 | |
1992 | 1749 | jest-mock: 27.5.1 |
1993 | 1750 | dev: false |
1994 | 1751 | |
... | ... | @@ -1998,7 +1755,7 @@ packages: |
1998 | 1755 | dependencies: |
1999 | 1756 | '@jest/types': 27.5.1 |
2000 | 1757 | '@sinonjs/fake-timers': 8.1.0 |
2001 | - '@types/node': 20.3.3 | |
1758 | + '@types/node': 20.4.0 | |
2002 | 1759 | jest-message-util: 27.5.1 |
2003 | 1760 | jest-mock: 27.5.1 |
2004 | 1761 | jest-util: 27.5.1 |
... | ... | @@ -2027,9 +1784,9 @@ packages: |
2027 | 1784 | '@jest/test-result': 27.5.1 |
2028 | 1785 | '@jest/transform': 27.5.1 |
2029 | 1786 | '@jest/types': 27.5.1 |
2030 | - '@types/node': 20.3.3 | |
1787 | + '@types/node': 20.4.0 | |
2031 | 1788 | chalk: 4.1.2 |
2032 | - collect-v8-coverage: 1.0.1 | |
1789 | + collect-v8-coverage: 1.0.2 | |
2033 | 1790 | exit: 0.1.2 |
2034 | 1791 | glob: 7.2.3 |
2035 | 1792 | graceful-fs: 4.2.11 |
... | ... | @@ -2067,7 +1824,7 @@ packages: |
2067 | 1824 | '@jest/console': 27.5.1 |
2068 | 1825 | '@jest/types': 27.5.1 |
2069 | 1826 | '@types/istanbul-lib-coverage': 2.0.4 |
2070 | - collect-v8-coverage: 1.0.1 | |
1827 | + collect-v8-coverage: 1.0.2 | |
2071 | 1828 | dev: false |
2072 | 1829 | |
2073 | 1830 | /@jest/test-sequencer@27.5.1: |
... | ... | @@ -2086,7 +1843,7 @@ packages: |
2086 | 1843 | resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} |
2087 | 1844 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
2088 | 1845 | dependencies: |
2089 | - '@babel/core': 7.21.4 | |
1846 | + '@babel/core': 7.22.6 | |
2090 | 1847 | '@jest/types': 27.5.1 |
2091 | 1848 | babel-plugin-istanbul: 6.1.1 |
2092 | 1849 | chalk: 4.1.2 |
... | ... | @@ -2097,7 +1854,7 @@ packages: |
2097 | 1854 | jest-regex-util: 27.5.1 |
2098 | 1855 | jest-util: 27.5.1 |
2099 | 1856 | micromatch: 4.0.5 |
2100 | - pirates: 4.0.5 | |
1857 | + pirates: 4.0.6 | |
2101 | 1858 | slash: 3.0.0 |
2102 | 1859 | source-map: 0.6.1 |
2103 | 1860 | write-file-atomic: 3.0.3 |
... | ... | @@ -2111,46 +1868,46 @@ packages: |
2111 | 1868 | dependencies: |
2112 | 1869 | '@types/istanbul-lib-coverage': 2.0.4 |
2113 | 1870 | '@types/istanbul-reports': 3.0.1 |
2114 | - '@types/node': 20.3.3 | |
1871 | + '@types/node': 20.4.0 | |
2115 | 1872 | '@types/yargs': 16.0.5 |
2116 | 1873 | chalk: 4.1.2 |
2117 | 1874 | dev: false |
2118 | 1875 | |
2119 | - /@jridgewell/gen-mapping@0.1.1: | |
2120 | - resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} | |
1876 | + /@jridgewell/gen-mapping@0.3.3: | |
1877 | + resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} | |
2121 | 1878 | engines: {node: '>=6.0.0'} |
2122 | 1879 | dependencies: |
2123 | 1880 | '@jridgewell/set-array': 1.1.2 |
2124 | - '@jridgewell/sourcemap-codec': 1.4.14 | |
2125 | - | |
2126 | - /@jridgewell/gen-mapping@0.3.2: | |
2127 | - resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} | |
2128 | - engines: {node: '>=6.0.0'} | |
2129 | - dependencies: | |
2130 | - '@jridgewell/set-array': 1.1.2 | |
2131 | - '@jridgewell/sourcemap-codec': 1.4.14 | |
2132 | - '@jridgewell/trace-mapping': 0.3.17 | |
1881 | + '@jridgewell/sourcemap-codec': 1.4.15 | |
1882 | + '@jridgewell/trace-mapping': 0.3.18 | |
2133 | 1883 | |
2134 | 1884 | /@jridgewell/resolve-uri@3.1.0: |
2135 | 1885 | resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} |
2136 | 1886 | engines: {node: '>=6.0.0'} |
2137 | 1887 | |
1888 | + /@jridgewell/resolve-uri@3.1.1: | |
1889 | + resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} | |
1890 | + engines: {node: '>=6.0.0'} | |
1891 | + | |
2138 | 1892 | /@jridgewell/set-array@1.1.2: |
2139 | 1893 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} |
2140 | 1894 | engines: {node: '>=6.0.0'} |
2141 | 1895 | |
2142 | - /@jridgewell/source-map@0.3.2: | |
2143 | - resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} | |
1896 | + /@jridgewell/source-map@0.3.5: | |
1897 | + resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} | |
2144 | 1898 | dependencies: |
2145 | - '@jridgewell/gen-mapping': 0.3.2 | |
2146 | - '@jridgewell/trace-mapping': 0.3.17 | |
1899 | + '@jridgewell/gen-mapping': 0.3.3 | |
1900 | + '@jridgewell/trace-mapping': 0.3.18 | |
2147 | 1901 | dev: true |
2148 | 1902 | |
2149 | 1903 | /@jridgewell/sourcemap-codec@1.4.14: |
2150 | 1904 | resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} |
2151 | 1905 | |
2152 | - /@jridgewell/trace-mapping@0.3.17: | |
2153 | - resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} | |
1906 | + /@jridgewell/sourcemap-codec@1.4.15: | |
1907 | + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} | |
1908 | + | |
1909 | + /@jridgewell/trace-mapping@0.3.18: | |
1910 | + resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} | |
2154 | 1911 | dependencies: |
2155 | 1912 | '@jridgewell/resolve-uri': 3.1.0 |
2156 | 1913 | '@jridgewell/sourcemap-codec': 1.4.14 |
... | ... | @@ -2158,15 +1915,15 @@ packages: |
2158 | 1915 | /@jridgewell/trace-mapping@0.3.9: |
2159 | 1916 | resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} |
2160 | 1917 | dependencies: |
2161 | - '@jridgewell/resolve-uri': 3.1.0 | |
2162 | - '@jridgewell/sourcemap-codec': 1.4.14 | |
1918 | + '@jridgewell/resolve-uri': 3.1.1 | |
1919 | + '@jridgewell/sourcemap-codec': 1.4.15 | |
2163 | 1920 | |
2164 | 1921 | /@logicflow/core@1.2.9: |
2165 | 1922 | resolution: {integrity: sha512-3He1BXLYB+5bzgl28hZ24akLebPBGbnmNSvmKWZZdKn9jHVvqPbE3Yt3XEKzwTwSP92yPnGtkzx2FOOEgXa0iQ==} |
2166 | 1923 | dependencies: |
2167 | 1924 | '@types/mousetrap': 1.6.11 |
2168 | 1925 | mousetrap: 1.6.5 |
2169 | - preact: 10.13.2 | |
1926 | + preact: 10.15.1 | |
2170 | 1927 | dev: false |
2171 | 1928 | |
2172 | 1929 | /@logicflow/extension@1.2.9(ts-node@10.9.1): |
... | ... | @@ -2176,7 +1933,7 @@ packages: |
2176 | 1933 | ids: 1.0.0 |
2177 | 1934 | jest: 27.5.1(ts-node@10.9.1) |
2178 | 1935 | lodash-es: 4.17.21 |
2179 | - preact: 10.13.2 | |
1936 | + preact: 10.15.1 | |
2180 | 1937 | transitivePeerDependencies: |
2181 | 1938 | - bufferutil |
2182 | 1939 | - canvas |
... | ... | @@ -2186,29 +1943,29 @@ packages: |
2186 | 1943 | - utf-8-validate |
2187 | 1944 | dev: false |
2188 | 1945 | |
2189 | - /@microsoft/api-extractor-model@7.27.3(@types/node@20.3.3): | |
2190 | - resolution: {integrity: sha512-fSFvw7otYHduOkyshjTbapKKgwF8bgquVHvgF8VgeKtMYvqXkoaj7W6VcM7PNY7E2bbblhUgC4XNdqZLD4SJGw==} | |
1946 | + /@microsoft/api-extractor-model@7.27.4(@types/node@20.4.0): | |
1947 | + resolution: {integrity: sha512-HjqQFmuGPOS20rtnu+9Jj0QrqZyR59E+piUWXPMZTTn4jaZI+4UmsHSf3Id8vyueAhOBH2cgwBuRTE5R+MfSMw==} | |
2191 | 1948 | dependencies: |
2192 | 1949 | '@microsoft/tsdoc': 0.14.2 |
2193 | 1950 | '@microsoft/tsdoc-config': 0.16.2 |
2194 | - '@rushstack/node-core-library': 3.59.4(@types/node@20.3.3) | |
1951 | + '@rushstack/node-core-library': 3.59.5(@types/node@20.4.0) | |
2195 | 1952 | transitivePeerDependencies: |
2196 | 1953 | - '@types/node' |
2197 | 1954 | dev: true |
2198 | 1955 | |
2199 | - /@microsoft/api-extractor@7.36.0(@types/node@20.3.3): | |
2200 | - resolution: {integrity: sha512-P+kYgJFDXIr+UNzhRMhlpM/dderi6ab4lxn35vdhfAIMPtGCSXIJxrrtpTOQmQW8CZtmoZX06LYoUsKCc1zjow==} | |
1956 | + /@microsoft/api-extractor@7.36.1(@types/node@20.4.0): | |
1957 | + resolution: {integrity: sha512-2SPp1jq6wDY5IOsRLUv/4FxngslctBZJlztAJ3uWpCAwqKQG7ESdL3DhEza+StbYLtBQmu1Pk6q1Vkhl7qD/bg==} | |
2201 | 1958 | hasBin: true |
2202 | 1959 | dependencies: |
2203 | - '@microsoft/api-extractor-model': 7.27.3(@types/node@20.3.3) | |
1960 | + '@microsoft/api-extractor-model': 7.27.4(@types/node@20.4.0) | |
2204 | 1961 | '@microsoft/tsdoc': 0.14.2 |
2205 | 1962 | '@microsoft/tsdoc-config': 0.16.2 |
2206 | - '@rushstack/node-core-library': 3.59.4(@types/node@20.3.3) | |
1963 | + '@rushstack/node-core-library': 3.59.5(@types/node@20.4.0) | |
2207 | 1964 | '@rushstack/rig-package': 0.4.0 |
2208 | 1965 | '@rushstack/ts-command-line': 4.15.1 |
2209 | 1966 | colors: 1.2.5 |
2210 | 1967 | lodash: 4.17.21 |
2211 | - resolve: 1.22.1 | |
1968 | + resolve: 1.22.2 | |
2212 | 1969 | semver: 7.3.8 |
2213 | 1970 | source-map: 0.6.1 |
2214 | 1971 | typescript: 5.0.4 |
... | ... | @@ -2229,6 +1986,10 @@ packages: |
2229 | 1986 | resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==} |
2230 | 1987 | dev: true |
2231 | 1988 | |
1989 | + /@nicolo-ribaudo/semver-v6@6.3.3: | |
1990 | + resolution: {integrity: sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg==} | |
1991 | + hasBin: true | |
1992 | + | |
2232 | 1993 | /@nodelib/fs.scandir@2.1.5: |
2233 | 1994 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} |
2234 | 1995 | engines: {node: '>= 8'} |
... | ... | @@ -2287,16 +2048,16 @@ packages: |
2287 | 2048 | dev: true |
2288 | 2049 | optional: true |
2289 | 2050 | |
2290 | - /@pkgr/utils@2.3.1: | |
2291 | - resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==} | |
2051 | + /@pkgr/utils@2.4.1: | |
2052 | + resolution: {integrity: sha512-JOqwkgFEyi+OROIyq7l4Jy28h/WwhDnG/cPkXG2Z1iFbubB6jsHW1NDvmyOzTBxHr3yg68YGirmh1JUgMqa+9w==} | |
2292 | 2053 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} |
2293 | 2054 | dependencies: |
2294 | 2055 | cross-spawn: 7.0.3 |
2056 | + fast-glob: 3.3.0 | |
2295 | 2057 | is-glob: 4.0.3 |
2296 | - open: 8.4.2 | |
2058 | + open: 9.1.0 | |
2297 | 2059 | picocolors: 1.0.0 |
2298 | - tiny-glob: 0.2.9 | |
2299 | - tslib: 2.5.0 | |
2060 | + tslib: 2.6.0 | |
2300 | 2061 | dev: true |
2301 | 2062 | |
2302 | 2063 | /@pm2/agent@2.0.1: |
... | ... | @@ -2372,7 +2133,7 @@ packages: |
2372 | 2133 | '@iconify/iconify': 2.1.2 |
2373 | 2134 | axios: 0.26.1(debug@4.3.4) |
2374 | 2135 | debug: 4.3.4 |
2375 | - fast-glob: 3.2.12 | |
2136 | + fast-glob: 3.3.0 | |
2376 | 2137 | fs-extra: 10.1.0 |
2377 | 2138 | transitivePeerDependencies: |
2378 | 2139 | - encoding |
... | ... | @@ -2385,7 +2146,7 @@ packages: |
2385 | 2146 | '@iconify/iconify': 3.1.1 |
2386 | 2147 | dev: true |
2387 | 2148 | |
2388 | - /@rollup/plugin-alias@5.0.0(rollup@3.25.2): | |
2149 | + /@rollup/plugin-alias@5.0.0(rollup@3.26.1): | |
2389 | 2150 | resolution: {integrity: sha512-l9hY5chSCjuFRPsnRm16twWBiSApl2uYFLsepQYwtBuAxNMQ/1dJqADld40P0Jkqm65GRTLy/AC6hnpVebtLsA==} |
2390 | 2151 | engines: {node: '>=14.0.0'} |
2391 | 2152 | peerDependencies: |
... | ... | @@ -2394,11 +2155,11 @@ packages: |
2394 | 2155 | rollup: |
2395 | 2156 | optional: true |
2396 | 2157 | dependencies: |
2397 | - rollup: 3.25.2 | |
2158 | + rollup: 3.26.1 | |
2398 | 2159 | slash: 4.0.0 |
2399 | 2160 | dev: true |
2400 | 2161 | |
2401 | - /@rollup/plugin-commonjs@24.1.0(rollup@3.25.2): | |
2162 | + /@rollup/plugin-commonjs@24.1.0(rollup@3.26.1): | |
2402 | 2163 | resolution: {integrity: sha512-eSL45hjhCWI0jCCXcNtLVqM5N1JlBGvlFfY0m6oOYnLCJ6N0qEXoZql4sY2MOUArzhH4SA/qBpTxvvZp2Sc+DQ==} |
2403 | 2164 | engines: {node: '>=14.0.0'} |
2404 | 2165 | peerDependencies: |
... | ... | @@ -2407,16 +2168,16 @@ packages: |
2407 | 2168 | rollup: |
2408 | 2169 | optional: true |
2409 | 2170 | dependencies: |
2410 | - '@rollup/pluginutils': 5.0.2(rollup@3.25.2) | |
2171 | + '@rollup/pluginutils': 5.0.2(rollup@3.26.1) | |
2411 | 2172 | commondir: 1.0.1 |
2412 | 2173 | estree-walker: 2.0.2 |
2413 | 2174 | glob: 8.1.0 |
2414 | 2175 | is-reference: 1.2.1 |
2415 | 2176 | magic-string: 0.27.0 |
2416 | - rollup: 3.25.2 | |
2177 | + rollup: 3.26.1 | |
2417 | 2178 | dev: true |
2418 | 2179 | |
2419 | - /@rollup/plugin-json@6.0.0(rollup@3.25.2): | |
2180 | + /@rollup/plugin-json@6.0.0(rollup@3.26.1): | |
2420 | 2181 | resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==} |
2421 | 2182 | engines: {node: '>=14.0.0'} |
2422 | 2183 | peerDependencies: |
... | ... | @@ -2425,8 +2186,8 @@ packages: |
2425 | 2186 | rollup: |
2426 | 2187 | optional: true |
2427 | 2188 | dependencies: |
2428 | - '@rollup/pluginutils': 5.0.2(rollup@3.25.2) | |
2429 | - rollup: 3.25.2 | |
2189 | + '@rollup/pluginutils': 5.0.2(rollup@3.26.1) | |
2190 | + rollup: 3.26.1 | |
2430 | 2191 | dev: true |
2431 | 2192 | |
2432 | 2193 | /@rollup/plugin-node-resolve@13.3.0(rollup@2.79.1): |
... | ... | @@ -2440,12 +2201,12 @@ packages: |
2440 | 2201 | deepmerge: 4.3.1 |
2441 | 2202 | is-builtin-module: 3.2.1 |
2442 | 2203 | is-module: 1.0.0 |
2443 | - resolve: 1.22.1 | |
2204 | + resolve: 1.22.2 | |
2444 | 2205 | rollup: 2.79.1 |
2445 | 2206 | dev: true |
2446 | 2207 | |
2447 | - /@rollup/plugin-node-resolve@15.0.2(rollup@3.25.2): | |
2448 | - resolution: {integrity: sha512-Y35fRGUjC3FaurG722uhUuG8YHOJRJQbI6/CkbRkdPotSpDj9NtIN85z1zrcyDcCQIW4qp5mgG72U+gJ0TAFEg==} | |
2208 | + /@rollup/plugin-node-resolve@15.1.0(rollup@3.26.1): | |
2209 | + resolution: {integrity: sha512-xeZHCgsiZ9pzYVgAo9580eCGqwh/XCEUM9q6iQfGNocjgkufHAqC3exA+45URvhiYV8sBF9RlBai650eNs7AsA==} | |
2449 | 2210 | engines: {node: '>=14.0.0'} |
2450 | 2211 | peerDependencies: |
2451 | 2212 | rollup: ^2.78.0||^3.0.0 |
... | ... | @@ -2453,16 +2214,16 @@ packages: |
2453 | 2214 | rollup: |
2454 | 2215 | optional: true |
2455 | 2216 | dependencies: |
2456 | - '@rollup/pluginutils': 5.0.2(rollup@3.25.2) | |
2217 | + '@rollup/pluginutils': 5.0.2(rollup@3.26.1) | |
2457 | 2218 | '@types/resolve': 1.20.2 |
2458 | 2219 | deepmerge: 4.3.1 |
2459 | 2220 | is-builtin-module: 3.2.1 |
2460 | 2221 | is-module: 1.0.0 |
2461 | - resolve: 1.22.1 | |
2462 | - rollup: 3.25.2 | |
2222 | + resolve: 1.22.2 | |
2223 | + rollup: 3.26.1 | |
2463 | 2224 | dev: true |
2464 | 2225 | |
2465 | - /@rollup/plugin-replace@5.0.2(rollup@3.25.2): | |
2226 | + /@rollup/plugin-replace@5.0.2(rollup@3.26.1): | |
2466 | 2227 | resolution: {integrity: sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==} |
2467 | 2228 | engines: {node: '>=14.0.0'} |
2468 | 2229 | peerDependencies: |
... | ... | @@ -2471,9 +2232,9 @@ packages: |
2471 | 2232 | rollup: |
2472 | 2233 | optional: true |
2473 | 2234 | dependencies: |
2474 | - '@rollup/pluginutils': 5.0.2(rollup@3.25.2) | |
2235 | + '@rollup/pluginutils': 5.0.2(rollup@3.26.1) | |
2475 | 2236 | magic-string: 0.27.0 |
2476 | - rollup: 3.25.2 | |
2237 | + rollup: 3.26.1 | |
2477 | 2238 | dev: true |
2478 | 2239 | |
2479 | 2240 | /@rollup/pluginutils@3.1.0(rollup@2.79.1): |
... | ... | @@ -2505,13 +2266,13 @@ packages: |
2505 | 2266 | rollup: |
2506 | 2267 | optional: true |
2507 | 2268 | dependencies: |
2508 | - '@types/estree': 1.0.0 | |
2269 | + '@types/estree': 1.0.1 | |
2509 | 2270 | estree-walker: 2.0.2 |
2510 | 2271 | picomatch: 2.3.1 |
2511 | 2272 | rollup: 2.79.1 |
2512 | 2273 | dev: true |
2513 | 2274 | |
2514 | - /@rollup/pluginutils@5.0.2(rollup@3.25.2): | |
2275 | + /@rollup/pluginutils@5.0.2(rollup@3.26.1): | |
2515 | 2276 | resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} |
2516 | 2277 | engines: {node: '>=14.0.0'} |
2517 | 2278 | peerDependencies: |
... | ... | @@ -2520,26 +2281,26 @@ packages: |
2520 | 2281 | rollup: |
2521 | 2282 | optional: true |
2522 | 2283 | dependencies: |
2523 | - '@types/estree': 1.0.0 | |
2284 | + '@types/estree': 1.0.1 | |
2524 | 2285 | estree-walker: 2.0.2 |
2525 | 2286 | picomatch: 2.3.1 |
2526 | - rollup: 3.25.2 | |
2287 | + rollup: 3.26.1 | |
2527 | 2288 | dev: true |
2528 | 2289 | |
2529 | - /@rushstack/node-core-library@3.59.4(@types/node@20.3.3): | |
2530 | - resolution: {integrity: sha512-YAKJDC6Mz/KA1D7bvB88WaRX3knt/ZuLzkRu5G9QADGSjLtvTWzCNCytRF2PCSaaHOZaZsWul4F1KQdgFgUDqA==} | |
2290 | + /@rushstack/node-core-library@3.59.5(@types/node@20.4.0): | |
2291 | + resolution: {integrity: sha512-1IpV7LufrI1EoVO8hYsb3t6L8L+yp40Sa0OaOV2CIu1zx4e6ZeVNaVIEXFgMXBKdGXkAh21MnCaIzlDNpG6ZQw==} | |
2531 | 2292 | peerDependencies: |
2532 | 2293 | '@types/node': '*' |
2533 | 2294 | peerDependenciesMeta: |
2534 | 2295 | '@types/node': |
2535 | 2296 | optional: true |
2536 | 2297 | dependencies: |
2537 | - '@types/node': 20.3.3 | |
2298 | + '@types/node': 20.4.0 | |
2538 | 2299 | colors: 1.2.5 |
2539 | 2300 | fs-extra: 7.0.1 |
2540 | 2301 | import-lazy: 4.0.0 |
2541 | 2302 | jju: 1.4.0 |
2542 | - resolve: 1.22.1 | |
2303 | + resolve: 1.22.2 | |
2543 | 2304 | semver: 7.3.8 |
2544 | 2305 | z-schema: 5.0.5 |
2545 | 2306 | dev: true |
... | ... | @@ -2547,7 +2308,7 @@ packages: |
2547 | 2308 | /@rushstack/rig-package@0.4.0: |
2548 | 2309 | resolution: {integrity: sha512-FnM1TQLJYwSiurP6aYSnansprK5l8WUK8VG38CmAaZs29ZeL1msjK0AP1VS4ejD33G0kE/2cpsPsS9jDenBMxw==} |
2549 | 2310 | dependencies: |
2550 | - resolve: 1.22.1 | |
2311 | + resolve: 1.22.2 | |
2551 | 2312 | strip-json-comments: 3.1.1 |
2552 | 2313 | dev: true |
2553 | 2314 | |
... | ... | @@ -2557,14 +2318,14 @@ packages: |
2557 | 2318 | '@types/argparse': 1.0.38 |
2558 | 2319 | argparse: 1.0.10 |
2559 | 2320 | colors: 1.2.5 |
2560 | - string-argv: 0.3.1 | |
2321 | + string-argv: 0.3.2 | |
2561 | 2322 | dev: true |
2562 | 2323 | |
2563 | 2324 | /@simonwep/pickr@1.8.2: |
2564 | 2325 | resolution: {integrity: sha512-/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA==} |
2565 | 2326 | dependencies: |
2566 | - core-js: 3.30.0 | |
2567 | - nanopop: 2.2.0 | |
2327 | + core-js: 3.31.1 | |
2328 | + nanopop: 2.3.0 | |
2568 | 2329 | |
2569 | 2330 | /@sinonjs/commons@1.8.6: |
2570 | 2331 | resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} |
... | ... | @@ -2596,13 +2357,13 @@ packages: |
2596 | 2357 | /@tsconfig/node14@1.0.3: |
2597 | 2358 | resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} |
2598 | 2359 | |
2599 | - /@tsconfig/node16@1.0.3: | |
2600 | - resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} | |
2360 | + /@tsconfig/node16@1.0.4: | |
2361 | + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} | |
2601 | 2362 | |
2602 | 2363 | /@types/accepts@1.3.5: |
2603 | 2364 | resolution: {integrity: sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==} |
2604 | 2365 | dependencies: |
2605 | - '@types/node': 20.3.3 | |
2366 | + '@types/node': 20.4.0 | |
2606 | 2367 | |
2607 | 2368 | /@types/argparse@1.0.38: |
2608 | 2369 | resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==} |
... | ... | @@ -2611,7 +2372,7 @@ packages: |
2611 | 2372 | /@types/babel__core@7.20.1: |
2612 | 2373 | resolution: {integrity: sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==} |
2613 | 2374 | dependencies: |
2614 | - '@babel/parser': 7.22.5 | |
2375 | + '@babel/parser': 7.22.6 | |
2615 | 2376 | '@babel/types': 7.22.5 |
2616 | 2377 | '@types/babel__generator': 7.6.4 |
2617 | 2378 | '@types/babel__template': 7.4.1 |
... | ... | @@ -2627,7 +2388,7 @@ packages: |
2627 | 2388 | /@types/babel__template@7.4.1: |
2628 | 2389 | resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} |
2629 | 2390 | dependencies: |
2630 | - '@babel/parser': 7.22.5 | |
2391 | + '@babel/parser': 7.22.6 | |
2631 | 2392 | '@babel/types': 7.22.5 |
2632 | 2393 | dev: false |
2633 | 2394 | |
... | ... | @@ -2641,12 +2402,12 @@ packages: |
2641 | 2402 | resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} |
2642 | 2403 | dependencies: |
2643 | 2404 | '@types/connect': 3.4.35 |
2644 | - '@types/node': 20.3.3 | |
2405 | + '@types/node': 20.4.0 | |
2645 | 2406 | |
2646 | 2407 | /@types/co-body@6.1.0: |
2647 | 2408 | resolution: {integrity: sha512-3e0q2jyDAnx/DSZi0z2H0yoZ2wt5yRDZ+P7ymcMObvq0ufWRT4tsajyO+Q1VwVWiv9PRR4W3YEjEzBjeZlhF+w==} |
2648 | 2409 | dependencies: |
2649 | - '@types/node': 20.3.3 | |
2410 | + '@types/node': 20.4.0 | |
2650 | 2411 | '@types/qs': 6.9.7 |
2651 | 2412 | dev: false |
2652 | 2413 | |
... | ... | @@ -2659,7 +2420,7 @@ packages: |
2659 | 2420 | /@types/connect@3.4.35: |
2660 | 2421 | resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} |
2661 | 2422 | dependencies: |
2662 | - '@types/node': 20.3.3 | |
2423 | + '@types/node': 20.4.0 | |
2663 | 2424 | |
2664 | 2425 | /@types/content-disposition@0.5.5: |
2665 | 2426 | resolution: {integrity: sha512-v6LCdKfK6BwcqMo+wYW05rLS12S0ZO0Fl4w1h4aaZMD7bqT3gVUns6FvLJKGZHQmYn3SX55JWGpziwJRwVgutA==} |
... | ... | @@ -2670,7 +2431,7 @@ packages: |
2670 | 2431 | '@types/connect': 3.4.35 |
2671 | 2432 | '@types/express': 4.17.17 |
2672 | 2433 | '@types/keygrip': 1.0.2 |
2673 | - '@types/node': 20.3.3 | |
2434 | + '@types/node': 20.4.0 | |
2674 | 2435 | |
2675 | 2436 | /@types/crypto-js@4.1.1: |
2676 | 2437 | resolution: {integrity: sha512-BG7fQKZ689HIoc5h+6D2Dgq1fABRa0RbBWKBd9SP/MVRVXROflpm5fhwyATX5duFmbStzyzyycPB8qUYKDH3NA==} |
... | ... | @@ -2680,42 +2441,43 @@ packages: |
2680 | 2441 | resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} |
2681 | 2442 | dev: true |
2682 | 2443 | |
2683 | - /@types/estree@1.0.0: | |
2684 | - resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==} | |
2444 | + /@types/estree@1.0.1: | |
2445 | + resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} | |
2685 | 2446 | dev: true |
2686 | 2447 | |
2687 | - /@types/express-serve-static-core@4.17.33: | |
2688 | - resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==} | |
2448 | + /@types/express-serve-static-core@4.17.35: | |
2449 | + resolution: {integrity: sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==} | |
2689 | 2450 | dependencies: |
2690 | - '@types/node': 20.3.3 | |
2451 | + '@types/node': 20.4.0 | |
2691 | 2452 | '@types/qs': 6.9.7 |
2692 | 2453 | '@types/range-parser': 1.2.4 |
2454 | + '@types/send': 0.17.1 | |
2693 | 2455 | |
2694 | 2456 | /@types/express@4.17.17: |
2695 | 2457 | resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==} |
2696 | 2458 | dependencies: |
2697 | 2459 | '@types/body-parser': 1.19.2 |
2698 | - '@types/express-serve-static-core': 4.17.33 | |
2460 | + '@types/express-serve-static-core': 4.17.35 | |
2699 | 2461 | '@types/qs': 6.9.7 |
2700 | - '@types/serve-static': 1.15.1 | |
2462 | + '@types/serve-static': 1.15.2 | |
2701 | 2463 | |
2702 | - /@types/formidable@2.0.5: | |
2703 | - resolution: {integrity: sha512-uvMcdn/KK3maPOaVUAc3HEYbCEhjaGFwww4EsX6IJfWIJ1tzHtDHczuImH3GKdusPnAAmzB07St90uabZeCKPA==} | |
2464 | + /@types/formidable@2.0.6: | |
2465 | + resolution: {integrity: sha512-L4HcrA05IgQyNYJj6kItuIkXrInJvsXTPC5B1i64FggWKKqSL+4hgt7asiSNva75AoLQjq29oPxFfU4GAQ6Z2w==} | |
2704 | 2466 | dependencies: |
2705 | - '@types/node': 20.3.3 | |
2467 | + '@types/node': 20.4.0 | |
2706 | 2468 | dev: false |
2707 | 2469 | |
2708 | 2470 | /@types/fs-extra@11.0.1: |
2709 | 2471 | resolution: {integrity: sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==} |
2710 | 2472 | dependencies: |
2711 | 2473 | '@types/jsonfile': 6.1.1 |
2712 | - '@types/node': 20.3.3 | |
2474 | + '@types/node': 20.4.0 | |
2713 | 2475 | dev: true |
2714 | 2476 | |
2715 | 2477 | /@types/graceful-fs@4.1.6: |
2716 | 2478 | resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} |
2717 | 2479 | dependencies: |
2718 | - '@types/node': 20.3.3 | |
2480 | + '@types/node': 20.4.0 | |
2719 | 2481 | dev: false |
2720 | 2482 | |
2721 | 2483 | /@types/http-assert@1.5.3: |
... | ... | @@ -2744,8 +2506,8 @@ packages: |
2744 | 2506 | '@types/istanbul-lib-report': 3.0.0 |
2745 | 2507 | dev: false |
2746 | 2508 | |
2747 | - /@types/json-schema@7.0.11: | |
2748 | - resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} | |
2509 | + /@types/json-schema@7.0.12: | |
2510 | + resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} | |
2749 | 2511 | dev: true |
2750 | 2512 | |
2751 | 2513 | /@types/json5@0.0.29: |
... | ... | @@ -2755,7 +2517,7 @@ packages: |
2755 | 2517 | /@types/jsonfile@6.1.1: |
2756 | 2518 | resolution: {integrity: sha512-GSgiRCVeapDN+3pqA35IkQwasaCh/0YFH5dEF6S88iDvEn901DjOeH3/QPY+XYP1DFzDZPvIvfeEgk+7br5png==} |
2757 | 2519 | dependencies: |
2758 | - '@types/node': 20.3.3 | |
2520 | + '@types/node': 20.4.0 | |
2759 | 2521 | dev: true |
2760 | 2522 | |
2761 | 2523 | /@types/keygrip@1.0.2: |
... | ... | @@ -2788,18 +2550,21 @@ packages: |
2788 | 2550 | '@types/http-errors': 2.0.1 |
2789 | 2551 | '@types/keygrip': 1.0.2 |
2790 | 2552 | '@types/koa-compose': 3.2.5 |
2791 | - '@types/node': 20.3.3 | |
2553 | + '@types/node': 20.4.0 | |
2792 | 2554 | |
2793 | 2555 | /@types/lodash-es@4.17.7: |
2794 | 2556 | resolution: {integrity: sha512-z0ptr6UI10VlU6l5MYhGwS4mC8DZyYer2mCoyysZtSF7p26zOX8UpbrV0YpNYLGS8K4PUFIyEr62IMFFjveSiQ==} |
2795 | 2557 | dependencies: |
2796 | - '@types/lodash': 4.14.192 | |
2558 | + '@types/lodash': 4.14.195 | |
2797 | 2559 | dev: true |
2798 | 2560 | |
2799 | - /@types/lodash@4.14.192: | |
2800 | - resolution: {integrity: sha512-km+Vyn3BYm5ytMO13k9KTp27O75rbQ0NFw+U//g+PX7VZyjCioXaRFisqSIJRECljcTv73G3i6BpglNGHgUQ5A==} | |
2561 | + /@types/lodash@4.14.195: | |
2562 | + resolution: {integrity: sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==} | |
2801 | 2563 | dev: true |
2802 | 2564 | |
2565 | + /@types/mime@1.3.2: | |
2566 | + resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==} | |
2567 | + | |
2803 | 2568 | /@types/mime@3.0.1: |
2804 | 2569 | resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} |
2805 | 2570 | |
... | ... | @@ -2815,12 +2580,12 @@ packages: |
2815 | 2580 | resolution: {integrity: sha512-F0oAily9Q9QQpv9JKxKn0zMKfOo36KHCW7myYsmUyf2t0g+sBTbG3UleTPoguHdE1z3GLFr3p7/wiOio52QFjQ==} |
2816 | 2581 | dev: false |
2817 | 2582 | |
2818 | - /@types/node@14.18.42: | |
2819 | - resolution: {integrity: sha512-xefu+RBie4xWlK8hwAzGh3npDz/4VhF6icY/shU+zv/1fNn+ZVG7T7CRwe9LId9sAYRPxI+59QBPuKL3WpyGRg==} | |
2583 | + /@types/node@14.18.53: | |
2584 | + resolution: {integrity: sha512-soGmOpVBUq+gaBMwom1M+krC/NNbWlosh4AtGA03SyWNDiqSKtwp7OulO1M6+mg8YkHMvJ/y0AkCeO8d1hNb7A==} | |
2820 | 2585 | dev: false |
2821 | 2586 | |
2822 | - /@types/node@20.3.3: | |
2823 | - resolution: {integrity: sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==} | |
2587 | + /@types/node@20.4.0: | |
2588 | + resolution: {integrity: sha512-jfT7iTf/4kOQ9S7CHV9BIyRaQqHu67mOjsIQBC3BKZvzvUB6zLxEwJ6sBE3ozcvP8kF6Uk5PXN0Q+c0dfhGX0g==} | |
2824 | 2589 | |
2825 | 2590 | /@types/normalize-package-data@2.4.1: |
2826 | 2591 | resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} |
... | ... | @@ -2837,7 +2602,7 @@ packages: |
2837 | 2602 | /@types/qrcode@1.5.1: |
2838 | 2603 | resolution: {integrity: sha512-HpSN675K0PmxIDRpjMI3Mc2GiKo3dNu+X/F5SoItiaDS1lVfgC6Wac1c5lQDfKWbTJUSHWiHKzpJpBZG7k9gaA==} |
2839 | 2604 | dependencies: |
2840 | - '@types/node': 20.3.3 | |
2605 | + '@types/node': 20.4.0 | |
2841 | 2606 | dev: true |
2842 | 2607 | |
2843 | 2608 | /@types/qs@6.9.7: |
... | ... | @@ -2849,22 +2614,29 @@ packages: |
2849 | 2614 | /@types/resolve@1.17.1: |
2850 | 2615 | resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} |
2851 | 2616 | dependencies: |
2852 | - '@types/node': 20.3.3 | |
2617 | + '@types/node': 20.4.0 | |
2853 | 2618 | dev: true |
2854 | 2619 | |
2855 | 2620 | /@types/resolve@1.20.2: |
2856 | 2621 | resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} |
2857 | 2622 | dev: true |
2858 | 2623 | |
2859 | - /@types/semver@7.3.13: | |
2860 | - resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} | |
2624 | + /@types/semver@7.5.0: | |
2625 | + resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==} | |
2861 | 2626 | dev: true |
2862 | 2627 | |
2863 | - /@types/serve-static@1.15.1: | |
2864 | - resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==} | |
2628 | + /@types/send@0.17.1: | |
2629 | + resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==} | |
2630 | + dependencies: | |
2631 | + '@types/mime': 1.3.2 | |
2632 | + '@types/node': 20.4.0 | |
2633 | + | |
2634 | + /@types/serve-static@1.15.2: | |
2635 | + resolution: {integrity: sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==} | |
2865 | 2636 | dependencies: |
2637 | + '@types/http-errors': 2.0.1 | |
2866 | 2638 | '@types/mime': 3.0.1 |
2867 | - '@types/node': 20.3.3 | |
2639 | + '@types/node': 20.4.0 | |
2868 | 2640 | |
2869 | 2641 | /@types/showdown@2.0.1: |
2870 | 2642 | resolution: {integrity: sha512-xdnAw2nFqomkaL0QdtEk0t7yz26UkaVPl4v1pYJvtE1T0fmfQEH3JaxErEhGByEAl3zUZrkNBlneuJp0WJGqEA==} |
... | ... | @@ -2881,13 +2653,13 @@ packages: |
2881 | 2653 | /@types/svgo@2.6.4: |
2882 | 2654 | resolution: {integrity: sha512-l4cmyPEckf8moNYHdJ+4wkHvFxjyW6ulm9l4YGaOxeyBWPhBOT0gvni1InpFPdzx1dKf/2s62qGITwxNWnPQng==} |
2883 | 2655 | dependencies: |
2884 | - '@types/node': 20.3.3 | |
2656 | + '@types/node': 20.4.0 | |
2885 | 2657 | dev: true |
2886 | 2658 | |
2887 | 2659 | /@types/tern@0.23.4: |
2888 | 2660 | resolution: {integrity: sha512-JAUw1iXGO1qaWwEOzxTKJZ/5JxVeON9kvGZ/osgZaJImBnyjyn0cjovPsf6FNLmyGY8Vw9DoXZCMlfMkMwHRWg==} |
2889 | 2661 | dependencies: |
2890 | - '@types/estree': 1.0.0 | |
2662 | + '@types/estree': 1.0.1 | |
2891 | 2663 | dev: true |
2892 | 2664 | |
2893 | 2665 | /@types/web-bluetooth@0.0.17: |
... | ... | @@ -2904,8 +2676,8 @@ packages: |
2904 | 2676 | '@types/yargs-parser': 21.0.0 |
2905 | 2677 | dev: false |
2906 | 2678 | |
2907 | - /@typescript-eslint/eslint-plugin@5.60.1(@typescript-eslint/parser@5.60.1)(eslint@8.44.0)(typescript@5.1.6): | |
2908 | - resolution: {integrity: sha512-KSWsVvsJsLJv3c4e73y/Bzt7OpqMCADUO846bHcuWYSYM19bldbAeDv7dYyV0jwkbMfJ2XdlzwjhXtuD7OY6bw==} | |
2679 | + /@typescript-eslint/eslint-plugin@5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.1.6): | |
2680 | + resolution: {integrity: sha512-A5l/eUAug103qtkwccSCxn8ZRwT+7RXWkFECdA4Cvl1dOlDUgTpAOfSEElZn2uSUxhdDpnCdetrf0jvU4qrL+g==} | |
2909 | 2681 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2910 | 2682 | peerDependencies: |
2911 | 2683 | '@typescript-eslint/parser': ^5.0.0 |
... | ... | @@ -2915,25 +2687,25 @@ packages: |
2915 | 2687 | typescript: |
2916 | 2688 | optional: true |
2917 | 2689 | dependencies: |
2918 | - '@eslint-community/regexpp': 4.5.0 | |
2919 | - '@typescript-eslint/parser': 5.60.1(eslint@8.44.0)(typescript@5.1.6) | |
2920 | - '@typescript-eslint/scope-manager': 5.60.1 | |
2921 | - '@typescript-eslint/type-utils': 5.60.1(eslint@8.44.0)(typescript@5.1.6) | |
2922 | - '@typescript-eslint/utils': 5.60.1(eslint@8.44.0)(typescript@5.1.6) | |
2690 | + '@eslint-community/regexpp': 4.5.1 | |
2691 | + '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@5.1.6) | |
2692 | + '@typescript-eslint/scope-manager': 5.61.0 | |
2693 | + '@typescript-eslint/type-utils': 5.61.0(eslint@8.44.0)(typescript@5.1.6) | |
2694 | + '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@5.1.6) | |
2923 | 2695 | debug: 4.3.4 |
2924 | 2696 | eslint: 8.44.0 |
2925 | - grapheme-splitter: 1.0.4 | |
2697 | + graphemer: 1.4.0 | |
2926 | 2698 | ignore: 5.2.4 |
2927 | 2699 | natural-compare-lite: 1.4.0 |
2928 | - semver: 7.5.2 | |
2700 | + semver: 7.5.3 | |
2929 | 2701 | tsutils: 3.21.0(typescript@5.1.6) |
2930 | 2702 | typescript: 5.1.6 |
2931 | 2703 | transitivePeerDependencies: |
2932 | 2704 | - supports-color |
2933 | 2705 | dev: true |
2934 | 2706 | |
2935 | - /@typescript-eslint/parser@5.60.1(eslint@8.44.0)(typescript@5.1.6): | |
2936 | - resolution: {integrity: sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==} | |
2707 | + /@typescript-eslint/parser@5.61.0(eslint@8.44.0)(typescript@5.1.6): | |
2708 | + resolution: {integrity: sha512-yGr4Sgyh8uO6fSi9hw3jAFXNBHbCtKKFMdX2IkT3ZqpKmtAq3lHS4ixB/COFuAIJpwl9/AqF7j72ZDWYKmIfvg==} | |
2937 | 2709 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2938 | 2710 | peerDependencies: |
2939 | 2711 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 |
... | ... | @@ -2942,9 +2714,9 @@ packages: |
2942 | 2714 | typescript: |
2943 | 2715 | optional: true |
2944 | 2716 | dependencies: |
2945 | - '@typescript-eslint/scope-manager': 5.60.1 | |
2946 | - '@typescript-eslint/types': 5.60.1 | |
2947 | - '@typescript-eslint/typescript-estree': 5.60.1(typescript@5.1.6) | |
2717 | + '@typescript-eslint/scope-manager': 5.61.0 | |
2718 | + '@typescript-eslint/types': 5.61.0 | |
2719 | + '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6) | |
2948 | 2720 | debug: 4.3.4 |
2949 | 2721 | eslint: 8.44.0 |
2950 | 2722 | typescript: 5.1.6 |
... | ... | @@ -2952,16 +2724,16 @@ packages: |
2952 | 2724 | - supports-color |
2953 | 2725 | dev: true |
2954 | 2726 | |
2955 | - /@typescript-eslint/scope-manager@5.60.1: | |
2956 | - resolution: {integrity: sha512-Dn/LnN7fEoRD+KspEOV0xDMynEmR3iSHdgNsarlXNLGGtcUok8L4N71dxUgt3YvlO8si7E+BJ5Fe3wb5yUw7DQ==} | |
2727 | + /@typescript-eslint/scope-manager@5.61.0: | |
2728 | + resolution: {integrity: sha512-W8VoMjoSg7f7nqAROEmTt6LoBpn81AegP7uKhhW5KzYlehs8VV0ZW0fIDVbcZRcaP3aPSW+JZFua+ysQN+m/Nw==} | |
2957 | 2729 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2958 | 2730 | dependencies: |
2959 | - '@typescript-eslint/types': 5.60.1 | |
2960 | - '@typescript-eslint/visitor-keys': 5.60.1 | |
2731 | + '@typescript-eslint/types': 5.61.0 | |
2732 | + '@typescript-eslint/visitor-keys': 5.61.0 | |
2961 | 2733 | dev: true |
2962 | 2734 | |
2963 | - /@typescript-eslint/type-utils@5.60.1(eslint@8.44.0)(typescript@5.1.6): | |
2964 | - resolution: {integrity: sha512-vN6UztYqIu05nu7JqwQGzQKUJctzs3/Hg7E2Yx8rz9J+4LgtIDFWjjl1gm3pycH0P3mHAcEUBd23LVgfrsTR8A==} | |
2735 | + /@typescript-eslint/type-utils@5.61.0(eslint@8.44.0)(typescript@5.1.6): | |
2736 | + resolution: {integrity: sha512-kk8u//r+oVK2Aj3ph/26XdH0pbAkC2RiSjUYhKD+PExemG4XSjpGFeyZ/QM8lBOa7O8aGOU+/yEbMJgQv/DnCg==} | |
2965 | 2737 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2966 | 2738 | peerDependencies: |
2967 | 2739 | eslint: '*' |
... | ... | @@ -2970,8 +2742,8 @@ packages: |
2970 | 2742 | typescript: |
2971 | 2743 | optional: true |
2972 | 2744 | dependencies: |
2973 | - '@typescript-eslint/typescript-estree': 5.60.1(typescript@5.1.6) | |
2974 | - '@typescript-eslint/utils': 5.60.1(eslint@8.44.0)(typescript@5.1.6) | |
2745 | + '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6) | |
2746 | + '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@5.1.6) | |
2975 | 2747 | debug: 4.3.4 |
2976 | 2748 | eslint: 8.44.0 |
2977 | 2749 | tsutils: 3.21.0(typescript@5.1.6) |
... | ... | @@ -2980,13 +2752,13 @@ packages: |
2980 | 2752 | - supports-color |
2981 | 2753 | dev: true |
2982 | 2754 | |
2983 | - /@typescript-eslint/types@5.60.1: | |
2984 | - resolution: {integrity: sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg==} | |
2755 | + /@typescript-eslint/types@5.61.0: | |
2756 | + resolution: {integrity: sha512-ldyueo58KjngXpzloHUog/h9REmHl59G1b3a5Sng1GfBo14BkS3ZbMEb3693gnP1k//97lh7bKsp6/V/0v1veQ==} | |
2985 | 2757 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2986 | 2758 | dev: true |
2987 | 2759 | |
2988 | - /@typescript-eslint/typescript-estree@5.60.1(typescript@5.1.6): | |
2989 | - resolution: {integrity: sha512-hkX70J9+2M2ZT6fhti5Q2FoU9zb+GeZK2SLP1WZlvUDqdMbEKhexZODD1WodNRyO8eS+4nScvT0dts8IdaBzfw==} | |
2760 | + /@typescript-eslint/typescript-estree@5.61.0(typescript@5.1.6): | |
2761 | + resolution: {integrity: sha512-Fud90PxONnnLZ36oR5ClJBLTLfU4pIWBmnvGwTbEa2cXIqj70AEDEmOmpkFComjBZ/037ueKrOdHuYmSFVD7Rw==} | |
2990 | 2762 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2991 | 2763 | peerDependencies: |
2992 | 2764 | typescript: '*' |
... | ... | @@ -2994,52 +2766,52 @@ packages: |
2994 | 2766 | typescript: |
2995 | 2767 | optional: true |
2996 | 2768 | dependencies: |
2997 | - '@typescript-eslint/types': 5.60.1 | |
2998 | - '@typescript-eslint/visitor-keys': 5.60.1 | |
2769 | + '@typescript-eslint/types': 5.61.0 | |
2770 | + '@typescript-eslint/visitor-keys': 5.61.0 | |
2999 | 2771 | debug: 4.3.4 |
3000 | 2772 | globby: 11.1.0 |
3001 | 2773 | is-glob: 4.0.3 |
3002 | - semver: 7.5.2 | |
2774 | + semver: 7.5.3 | |
3003 | 2775 | tsutils: 3.21.0(typescript@5.1.6) |
3004 | 2776 | typescript: 5.1.6 |
3005 | 2777 | transitivePeerDependencies: |
3006 | 2778 | - supports-color |
3007 | 2779 | dev: true |
3008 | 2780 | |
3009 | - /@typescript-eslint/utils@5.60.1(eslint@8.44.0)(typescript@5.1.6): | |
3010 | - resolution: {integrity: sha512-tiJ7FFdFQOWssFa3gqb94Ilexyw0JVxj6vBzaSpfN/8IhoKkDuSAenUKvsSHw2A/TMpJb26izIszTXaqygkvpQ==} | |
2781 | + /@typescript-eslint/utils@5.61.0(eslint@8.44.0)(typescript@5.1.6): | |
2782 | + resolution: {integrity: sha512-mV6O+6VgQmVE6+xzlA91xifndPW9ElFW8vbSF0xCT/czPXVhwDewKila1jOyRwa9AE19zKnrr7Cg5S3pJVrTWQ==} | |
3011 | 2783 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
3012 | 2784 | peerDependencies: |
3013 | 2785 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 |
3014 | 2786 | dependencies: |
3015 | 2787 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.44.0) |
3016 | - '@types/json-schema': 7.0.11 | |
3017 | - '@types/semver': 7.3.13 | |
3018 | - '@typescript-eslint/scope-manager': 5.60.1 | |
3019 | - '@typescript-eslint/types': 5.60.1 | |
3020 | - '@typescript-eslint/typescript-estree': 5.60.1(typescript@5.1.6) | |
2788 | + '@types/json-schema': 7.0.12 | |
2789 | + '@types/semver': 7.5.0 | |
2790 | + '@typescript-eslint/scope-manager': 5.61.0 | |
2791 | + '@typescript-eslint/types': 5.61.0 | |
2792 | + '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6) | |
3021 | 2793 | eslint: 8.44.0 |
3022 | 2794 | eslint-scope: 5.1.1 |
3023 | - semver: 7.5.2 | |
2795 | + semver: 7.5.3 | |
3024 | 2796 | transitivePeerDependencies: |
3025 | 2797 | - supports-color |
3026 | 2798 | - typescript |
3027 | 2799 | dev: true |
3028 | 2800 | |
3029 | - /@typescript-eslint/visitor-keys@5.60.1: | |
3030 | - resolution: {integrity: sha512-xEYIxKcultP6E/RMKqube11pGjXH1DCo60mQoWhVYyKfLkwbIVVjYxmOenNMxILx0TjCujPTjjnTIVzm09TXIw==} | |
2801 | + /@typescript-eslint/visitor-keys@5.61.0: | |
2802 | + resolution: {integrity: sha512-50XQ5VdbWrX06mQXhy93WywSFZZGsv3EOjq+lqp6WC2t+j3mb6A9xYVdrRxafvK88vg9k9u+CT4l6D8PEatjKg==} | |
3031 | 2803 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
3032 | 2804 | dependencies: |
3033 | - '@typescript-eslint/types': 5.60.1 | |
2805 | + '@typescript-eslint/types': 5.61.0 | |
3034 | 2806 | eslint-visitor-keys: 3.4.1 |
3035 | 2807 | dev: true |
3036 | 2808 | |
3037 | - /@unocss/astro@0.53.4(rollup@2.79.1)(vite@4.3.9): | |
2809 | + /@unocss/astro@0.53.4(rollup@2.79.1)(vite@4.4.0): | |
3038 | 2810 | resolution: {integrity: sha512-fR1F0mNktoN79R+t4GD4y3cvfHUVxtV0+9/6vraZTw3SOXTOMdHeisdxDLjJb3N1yer7XoKX+2GHrKCt873IUA==} |
3039 | 2811 | dependencies: |
3040 | 2812 | '@unocss/core': 0.53.4 |
3041 | 2813 | '@unocss/reset': 0.53.4 |
3042 | - '@unocss/vite': 0.53.4(rollup@2.79.1)(vite@4.3.9) | |
2814 | + '@unocss/vite': 0.53.4(rollup@2.79.1)(vite@4.4.0) | |
3043 | 2815 | transitivePeerDependencies: |
3044 | 2816 | - rollup |
3045 | 2817 | - vite |
... | ... | @@ -3058,9 +2830,9 @@ packages: |
3058 | 2830 | cac: 6.7.14 |
3059 | 2831 | chokidar: 3.5.3 |
3060 | 2832 | colorette: 2.0.20 |
3061 | - consola: 3.1.0 | |
3062 | - fast-glob: 3.2.12 | |
3063 | - magic-string: 0.30.0 | |
2833 | + consola: 3.2.3 | |
2834 | + fast-glob: 3.3.0 | |
2835 | + magic-string: 0.30.1 | |
3064 | 2836 | pathe: 1.1.1 |
3065 | 2837 | perfect-debounce: 1.0.0 |
3066 | 2838 | transitivePeerDependencies: |
... | ... | @@ -3101,8 +2873,8 @@ packages: |
3101 | 2873 | '@unocss/config': 0.53.4 |
3102 | 2874 | '@unocss/core': 0.53.4 |
3103 | 2875 | css-tree: 2.3.1 |
3104 | - fast-glob: 3.2.12 | |
3105 | - magic-string: 0.30.0 | |
2876 | + fast-glob: 3.3.0 | |
2877 | + magic-string: 0.30.1 | |
3106 | 2878 | postcss: 8.4.24 |
3107 | 2879 | dev: true |
3108 | 2880 | |
... | ... | @@ -3203,7 +2975,7 @@ packages: |
3203 | 2975 | '@unocss/core': 0.53.4 |
3204 | 2976 | dev: true |
3205 | 2977 | |
3206 | - /@unocss/vite@0.53.4(rollup@2.79.1)(vite@4.3.9): | |
2978 | + /@unocss/vite@0.53.4(rollup@2.79.1)(vite@4.4.0): | |
3207 | 2979 | resolution: {integrity: sha512-s2t7Es2L788MSyPAJUksUaiTLBGyISiyESelyGxBwDpAR6ddHiKB9LU2MVLTU289rmnhebWHFvw7lbE+Trs/Dw==} |
3208 | 2980 | peerDependencies: |
3209 | 2981 | vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 |
... | ... | @@ -3216,107 +2988,85 @@ packages: |
3216 | 2988 | '@unocss/scope': 0.53.4 |
3217 | 2989 | '@unocss/transformer-directives': 0.53.4 |
3218 | 2990 | chokidar: 3.5.3 |
3219 | - fast-glob: 3.2.12 | |
3220 | - magic-string: 0.30.0 | |
3221 | - vite: 4.3.9(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6) | |
2991 | + fast-glob: 3.3.0 | |
2992 | + magic-string: 0.30.1 | |
2993 | + vite: 4.4.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6) | |
3222 | 2994 | transitivePeerDependencies: |
3223 | 2995 | - rollup |
3224 | 2996 | dev: true |
3225 | 2997 | |
3226 | - /@vitejs/plugin-vue-jsx@3.0.1(vite@4.3.9)(vue@3.3.4): | |
2998 | + /@vitejs/plugin-vue-jsx@3.0.1(vite@4.4.0)(vue@3.3.4): | |
3227 | 2999 | resolution: {integrity: sha512-+Jb7ggL48FSPS1uhPnJbJwWa9Sr90vQ+d0InW+AhBM22n+cfuYqJZDckBc+W3QSHe1WDvewMZfa4wZOtk5pRgw==} |
3228 | 3000 | engines: {node: ^14.18.0 || >=16.0.0} |
3229 | 3001 | peerDependencies: |
3230 | 3002 | vite: ^4.0.0 |
3231 | 3003 | vue: ^3.0.0 |
3232 | 3004 | dependencies: |
3233 | - '@babel/core': 7.21.4 | |
3234 | - '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.4) | |
3235 | - '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.21.4) | |
3236 | - vite: 4.3.9(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6) | |
3005 | + '@babel/core': 7.22.6 | |
3006 | + '@babel/plugin-transform-typescript': 7.22.5(@babel/core@7.22.6) | |
3007 | + '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.22.6) | |
3008 | + vite: 4.4.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6) | |
3237 | 3009 | vue: 3.3.4 |
3238 | 3010 | transitivePeerDependencies: |
3239 | 3011 | - supports-color |
3240 | 3012 | dev: true |
3241 | 3013 | |
3242 | - /@vitejs/plugin-vue@4.2.3(vite@4.3.9)(vue@3.3.4): | |
3014 | + /@vitejs/plugin-vue@4.2.3(vite@4.4.0)(vue@3.3.4): | |
3243 | 3015 | resolution: {integrity: sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw==} |
3244 | 3016 | engines: {node: ^14.18.0 || >=16.0.0} |
3245 | 3017 | peerDependencies: |
3246 | 3018 | vite: ^4.0.0 |
3247 | 3019 | vue: ^3.2.25 |
3248 | 3020 | dependencies: |
3249 | - vite: 4.3.9(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6) | |
3021 | + vite: 4.4.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6) | |
3250 | 3022 | vue: 3.3.4 |
3251 | 3023 | dev: true |
3252 | 3024 | |
3253 | - /@volar/language-core@1.7.10: | |
3254 | - resolution: {integrity: sha512-18Gmth5M0UI3hDDqhZngjMnb6WCslcfglkOdepRIhGxRYe7xR7DRRzciisYDMZsvOQxDYme+uaohg0dKUxLV2Q==} | |
3255 | - dependencies: | |
3256 | - '@volar/source-map': 1.7.10 | |
3257 | - dev: true | |
3258 | - | |
3259 | - /@volar/language-core@1.7.8: | |
3260 | - resolution: {integrity: sha512-TPklg4c2e/f1xB/MGZEiQc3AWG+dH64ZfBlYjFB8nNaWJt4Z4k+IHBhmaP52APG+5PHFerwiWI9oF002RrRTPA==} | |
3025 | + /@volar/language-core@1.8.0: | |
3026 | + resolution: {integrity: sha512-ZHTvZPM3pEbOOuaq+ybNz5TQlHUqPQPK0G1+SonvApGq0e3qgGijjhtL5T7hsCtUEmxfix8FrAuCH14tMBOhTg==} | |
3261 | 3027 | dependencies: |
3262 | - '@volar/source-map': 1.7.8 | |
3028 | + '@volar/source-map': 1.8.0 | |
3263 | 3029 | dev: true |
3264 | 3030 | |
3265 | - /@volar/source-map@1.7.10: | |
3266 | - resolution: {integrity: sha512-FBpLEOKJpRxeh2nYbw1mTI5sZOPXYU8LlsCz6xuBY3yNtAizDTTIZtBHe1V8BaMpoSMgRysZe4gVxMEi3rDGVA==} | |
3031 | + /@volar/source-map@1.8.0: | |
3032 | + resolution: {integrity: sha512-d35aV0yFkIrkynRSKgrN5hgbMv6ekkFvcJsJGmOZ8UEjqLStto9zq7RSvpp6/PZ7/pa4Gn1f6K1qDt0bq0oUew==} | |
3267 | 3033 | dependencies: |
3268 | 3034 | muggle-string: 0.3.1 |
3269 | 3035 | dev: true |
3270 | 3036 | |
3271 | - /@volar/source-map@1.7.8: | |
3272 | - resolution: {integrity: sha512-g2dtC2kOghvfzMDWeODIo4HO1Ml4hxzPTZyAFDz+YhRF9HjZYJSCaWaVuPZ+z0kY+T2daOHYA10GdrWQ5q0teA==} | |
3037 | + /@volar/typescript@1.8.0: | |
3038 | + resolution: {integrity: sha512-T/U1XLLhXv6tNr40Awznfc6QZWizSL99t6M0DeXtIMbnvSCqjjCVRnwlsq+DK9C1RlO3k8+i0Z8iJn7O1GGtoA==} | |
3273 | 3039 | dependencies: |
3274 | - | |
3275 | - muggle-string: 0.3.1 | |
3276 | - | |
3277 | - '@volar/language-core': 1.3.0-alpha.0 | |
3278 | - '@volar/source-map': 1.3.0-alpha.0 | |
3279 | - '@vue/compiler-dom': 3.3.4 | |
3280 | - '@vue/compiler-sfc': 3.2.47 | |
3281 | - '@vue/reactivity': 3.2.47 | |
3282 | - '@vue/shared': 3.2.47 | |
3283 | - minimatch: 6.2.0 | |
3284 | - | |
3285 | - vue-template-compiler: 2.7.14 | |
3286 | - | |
3040 | + '@volar/language-core': 1.8.0 | |
3287 | 3041 | dev: true |
3288 | 3042 | |
3289 | - /@volar/typescript@1.7.10: | |
3290 | - resolution: {integrity: sha512-yqIov4wndLU3GE1iE25bU5W6T+P+exPePcE1dFPPBKzQIBki1KvmdQN5jBlJp3Wo+wp7UIxa/RsdNkXT+iFBjg==} | |
3291 | - dependencies: | |
3292 | - '@volar/language-core': 1.7.10 | |
3293 | - dev: true | |
3294 | - | |
3295 | - /@vue/babel-helper-vue-transform-on@1.0.2: | |
3296 | - resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==} | |
3043 | + /@vue/babel-helper-vue-transform-on@1.1.5: | |
3044 | + resolution: {integrity: sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==} | |
3297 | 3045 | dev: true |
3298 | 3046 | |
3299 | - /@vue/babel-plugin-jsx@1.1.1(@babel/core@7.21.4): | |
3300 | - resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==} | |
3047 | + /@vue/babel-plugin-jsx@1.1.5(@babel/core@7.22.6): | |
3048 | + resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==} | |
3049 | + peerDependencies: | |
3050 | + '@babel/core': ^7.0.0-0 | |
3301 | 3051 | dependencies: |
3302 | - '@babel/helper-module-imports': 7.21.4 | |
3303 | - '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.4) | |
3304 | - '@babel/template': 7.20.7 | |
3305 | - '@babel/traverse': 7.21.4 | |
3306 | - '@babel/types': 7.21.4 | |
3307 | - '@vue/babel-helper-vue-transform-on': 1.0.2 | |
3052 | + '@babel/core': 7.22.6 | |
3053 | + '@babel/helper-module-imports': 7.22.5 | |
3054 | + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.6) | |
3055 | + '@babel/template': 7.22.5 | |
3056 | + '@babel/traverse': 7.22.6 | |
3057 | + '@babel/types': 7.22.5 | |
3058 | + '@vue/babel-helper-vue-transform-on': 1.1.5 | |
3308 | 3059 | camelcase: 6.3.0 |
3309 | - html-tags: 3.3.0 | |
3060 | + html-tags: 3.3.1 | |
3310 | 3061 | svg-tags: 1.0.0 |
3311 | 3062 | transitivePeerDependencies: |
3312 | - - '@babel/core' | |
3313 | 3063 | - supports-color |
3314 | 3064 | dev: true |
3315 | 3065 | |
3316 | 3066 | /@vue/compiler-core@3.3.4: |
3317 | 3067 | resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==} |
3318 | 3068 | dependencies: |
3319 | - '@babel/parser': 7.21.4 | |
3069 | + '@babel/parser': 7.22.6 | |
3320 | 3070 | '@vue/shared': 3.3.4 |
3321 | 3071 | estree-walker: 2.0.2 |
3322 | 3072 | source-map-js: 1.0.2 |
... | ... | @@ -3330,14 +3080,14 @@ packages: |
3330 | 3080 | /@vue/compiler-sfc@3.3.4: |
3331 | 3081 | resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==} |
3332 | 3082 | dependencies: |
3333 | - '@babel/parser': 7.21.4 | |
3083 | + '@babel/parser': 7.22.6 | |
3334 | 3084 | '@vue/compiler-core': 3.3.4 |
3335 | 3085 | '@vue/compiler-dom': 3.3.4 |
3336 | 3086 | '@vue/compiler-ssr': 3.3.4 |
3337 | 3087 | '@vue/reactivity-transform': 3.3.4 |
3338 | 3088 | '@vue/shared': 3.3.4 |
3339 | 3089 | estree-walker: 2.0.2 |
3340 | - magic-string: 0.30.0 | |
3090 | + magic-string: 0.30.1 | |
3341 | 3091 | postcss: 8.4.24 |
3342 | 3092 | source-map-js: 1.0.2 |
3343 | 3093 | |
... | ... | @@ -3351,35 +3101,16 @@ packages: |
3351 | 3101 | resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==} |
3352 | 3102 | dev: false |
3353 | 3103 | |
3354 | - /@vue/language-core@1.8.1(typescript@5.1.6): | |
3355 | - resolution: {integrity: sha512-pumv3k4J7P58hVh4YGRM9Qz3HaAr4TlFWM9bnVOkZ/2K9o2CK1lAP2y9Jw+Z0+mNL4F2uWQqnAPzj3seLyfpDA==} | |
3104 | + /@vue/language-core@1.8.4(typescript@5.1.6): | |
3105 | + resolution: {integrity: sha512-pnNtNcJVfkGYluW0vsVO+Y1gyX+eA0voaS7+1JOhCp5zKeCaL/PAmGYOgfvwML62neL+2H8pnhY7sffmrGpEhw==} | |
3356 | 3106 | peerDependencies: |
3357 | 3107 | typescript: '*' |
3358 | 3108 | peerDependenciesMeta: |
3359 | 3109 | typescript: |
3360 | 3110 | optional: true |
3361 | 3111 | dependencies: |
3362 | - '@volar/language-core': 1.7.8 | |
3363 | - '@volar/source-map': 1.7.8 | |
3364 | - '@vue/compiler-dom': 3.3.4 | |
3365 | - '@vue/reactivity': 3.3.4 | |
3366 | - '@vue/shared': 3.3.4 | |
3367 | - minimatch: 9.0.2 | |
3368 | - muggle-string: 0.3.1 | |
3369 | - typescript: 5.1.6 | |
3370 | - vue-template-compiler: 2.7.14 | |
3371 | - dev: true | |
3372 | - | |
3373 | - /@vue/language-core@1.8.3(typescript@5.1.6): | |
3374 | - resolution: {integrity: sha512-AzhvMYoQkK/tg8CpAAttO19kx1zjS3+weYIr2AhlH/M5HebVzfftQoq4jZNFifjq+hyLKi8j9FiDMS8oqA89+A==} | |
3375 | - peerDependencies: | |
3376 | - typescript: '*' | |
3377 | - peerDependenciesMeta: | |
3378 | - typescript: | |
3379 | - optional: true | |
3380 | - dependencies: | |
3381 | - '@volar/language-core': 1.7.10 | |
3382 | - '@volar/source-map': 1.7.10 | |
3112 | + '@volar/language-core': 1.8.0 | |
3113 | + '@volar/source-map': 1.8.0 | |
3383 | 3114 | '@vue/compiler-dom': 3.3.4 |
3384 | 3115 | '@vue/reactivity': 3.3.4 |
3385 | 3116 | '@vue/shared': 3.3.4 |
... | ... | @@ -3392,11 +3123,11 @@ packages: |
3392 | 3123 | /@vue/reactivity-transform@3.3.4: |
3393 | 3124 | resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==} |
3394 | 3125 | dependencies: |
3395 | - '@babel/parser': 7.21.4 | |
3126 | + '@babel/parser': 7.22.6 | |
3396 | 3127 | '@vue/compiler-core': 3.3.4 |
3397 | 3128 | '@vue/shared': 3.3.4 |
3398 | 3129 | estree-walker: 2.0.2 |
3399 | - magic-string: 0.30.0 | |
3130 | + magic-string: 0.30.1 | |
3400 | 3131 | |
3401 | 3132 | /@vue/reactivity@3.3.4: |
3402 | 3133 | resolution: {integrity: sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==} |
... | ... | @@ -3441,24 +3172,17 @@ packages: |
3441 | 3172 | optional: true |
3442 | 3173 | dependencies: |
3443 | 3174 | js-beautify: 1.14.6 |
3444 | - | |
3445 | 3175 | vue: 3.3.4 |
3446 | 3176 | vue-component-type-helpers: 1.6.5 |
3447 | 3177 | dev: true |
3448 | 3178 | |
3449 | - /@vue/typescript@1.8.3(typescript@5.1.6): | |
3450 | - resolution: {integrity: sha512-6bdgSnIFpRYHlt70pHmnmNksPU00bfXgqAISeaNz3W6d2cH0OTfH8h/IhligQ82sJIhsuyfftQJ5518ZuKIhtA==} | |
3179 | + /@vue/typescript@1.8.4(typescript@5.1.6): | |
3180 | + resolution: {integrity: sha512-sioQfIY5xcmEAz+cPLvv6CtzGPtGhIdR0Za87zB8M4mPe4OSsE3MBGkXcslf+EzQgF+fm6Gr1SRMSX8r5ZmzDA==} | |
3451 | 3181 | dependencies: |
3452 | - '@volar/typescript': 1.7.10 | |
3453 | - '@vue/language-core': 1.8.3(typescript@5.1.6) | |
3182 | + '@volar/typescript': 1.8.0 | |
3183 | + '@vue/language-core': 1.8.4(typescript@5.1.6) | |
3454 | 3184 | transitivePeerDependencies: |
3455 | 3185 | - typescript |
3456 | - | |
3457 | - vue: 3.2.47 | |
3458 | - optionalDependencies: | |
3459 | - '@vue/compiler-dom': 3.3.4 | |
3460 | - '@vue/server-renderer': 3.2.47(vue@3.2.47) | |
3461 | - | |
3462 | 3186 | dev: true |
3463 | 3187 | |
3464 | 3188 | /@vueuse/core@10.2.1(vue@3.3.4): |
... | ... | @@ -3523,20 +3247,12 @@ packages: |
3523 | 3247 | acorn-walk: 7.2.0 |
3524 | 3248 | dev: false |
3525 | 3249 | |
3526 | - /acorn-jsx@5.3.2(acorn@8.8.2): | |
3250 | + /acorn-jsx@5.3.2(acorn@8.10.0): | |
3527 | 3251 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} |
3528 | 3252 | peerDependencies: |
3529 | 3253 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 |
3530 | 3254 | dependencies: |
3531 | - acorn: 8.8.2 | |
3532 | - dev: true | |
3533 | - | |
3534 | - /acorn-jsx@5.3.2(acorn@8.9.0): | |
3535 | - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} | |
3536 | - peerDependencies: | |
3537 | - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 | |
3538 | - dependencies: | |
3539 | - acorn: 8.9.0 | |
3255 | + acorn: 8.10.0 | |
3540 | 3256 | dev: true |
3541 | 3257 | |
3542 | 3258 | /acorn-walk@7.2.0: |
... | ... | @@ -3554,13 +3270,8 @@ packages: |
3554 | 3270 | hasBin: true |
3555 | 3271 | dev: false |
3556 | 3272 | |
3557 | - /acorn@8.8.2: | |
3558 | - resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} | |
3559 | - engines: {node: '>=0.4.0'} | |
3560 | - hasBin: true | |
3561 | - | |
3562 | - /acorn@8.9.0: | |
3563 | - resolution: {integrity: sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==} | |
3273 | + /acorn@8.10.0: | |
3274 | + resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} | |
3564 | 3275 | engines: {node: '>=0.4.0'} |
3565 | 3276 | hasBin: true |
3566 | 3277 | |
... | ... | @@ -3673,7 +3384,7 @@ packages: |
3673 | 3384 | dependencies: |
3674 | 3385 | '@ant-design/colors': 6.0.0 |
3675 | 3386 | '@ant-design/icons-vue': 6.1.0(vue@3.3.4) |
3676 | - '@babel/runtime': 7.21.0 | |
3387 | + '@babel/runtime': 7.22.6 | |
3677 | 3388 | '@ctrl/tinycolor': 3.6.0 |
3678 | 3389 | '@simonwep/pickr': 1.8.2 |
3679 | 3390 | array-tree-filter: 2.1.0 |
... | ... | @@ -3725,7 +3436,7 @@ packages: |
3725 | 3436 | async: 3.2.4 |
3726 | 3437 | buffer-crc32: 0.2.13 |
3727 | 3438 | readable-stream: 3.6.2 |
3728 | - readdir-glob: 1.1.2 | |
3439 | + readdir-glob: 1.1.3 | |
3729 | 3440 | tar-stream: 2.2.0 |
3730 | 3441 | zip-stream: 4.1.0 |
3731 | 3442 | dev: false |
... | ... | @@ -3775,7 +3486,7 @@ packages: |
3775 | 3486 | call-bind: 1.0.2 |
3776 | 3487 | define-properties: 1.2.0 |
3777 | 3488 | es-abstract: 1.21.2 |
3778 | - get-intrinsic: 1.2.0 | |
3489 | + get-intrinsic: 1.2.1 | |
3779 | 3490 | is-string: 1.0.7 |
3780 | 3491 | dev: true |
3781 | 3492 | |
... | ... | @@ -3830,7 +3541,7 @@ packages: |
3830 | 3541 | resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} |
3831 | 3542 | engines: {node: '>=4'} |
3832 | 3543 | dependencies: |
3833 | - tslib: 2.5.0 | |
3544 | + tslib: 2.6.0 | |
3834 | 3545 | dev: true |
3835 | 3546 | |
3836 | 3547 | /astral-regex@2.0.0: |
... | ... | @@ -3899,18 +3610,18 @@ packages: |
3899 | 3610 | - debug |
3900 | 3611 | dev: false |
3901 | 3612 | |
3902 | - /babel-jest@27.5.1(@babel/core@7.21.4): | |
3613 | + /babel-jest@27.5.1(@babel/core@7.22.6): | |
3903 | 3614 | resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} |
3904 | 3615 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
3905 | 3616 | peerDependencies: |
3906 | 3617 | '@babel/core': ^7.8.0 |
3907 | 3618 | dependencies: |
3908 | - '@babel/core': 7.21.4 | |
3619 | + '@babel/core': 7.22.6 | |
3909 | 3620 | '@jest/transform': 27.5.1 |
3910 | 3621 | '@jest/types': 27.5.1 |
3911 | 3622 | '@types/babel__core': 7.20.1 |
3912 | 3623 | babel-plugin-istanbul: 6.1.1 |
3913 | - babel-preset-jest: 27.5.1(@babel/core@7.21.4) | |
3624 | + babel-preset-jest: 27.5.1(@babel/core@7.22.6) | |
3914 | 3625 | chalk: 4.1.2 |
3915 | 3626 | graceful-fs: 4.2.11 |
3916 | 3627 | slash: 3.0.0 |
... | ... | @@ -3922,7 +3633,7 @@ packages: |
3922 | 3633 | resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} |
3923 | 3634 | engines: {node: '>=8'} |
3924 | 3635 | dependencies: |
3925 | - '@babel/helper-plugin-utils': 7.20.2 | |
3636 | + '@babel/helper-plugin-utils': 7.22.5 | |
3926 | 3637 | '@istanbuljs/load-nyc-config': 1.1.0 |
3927 | 3638 | '@istanbuljs/schema': 0.1.3 |
3928 | 3639 | istanbul-lib-instrument: 5.2.1 |
... | ... | @@ -3935,41 +3646,41 @@ packages: |
3935 | 3646 | resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==} |
3936 | 3647 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
3937 | 3648 | dependencies: |
3938 | - '@babel/template': 7.20.7 | |
3649 | + '@babel/template': 7.22.5 | |
3939 | 3650 | '@babel/types': 7.22.5 |
3940 | 3651 | '@types/babel__core': 7.20.1 |
3941 | 3652 | '@types/babel__traverse': 7.20.1 |
3942 | 3653 | dev: false |
3943 | 3654 | |
3944 | - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.21.4): | |
3655 | + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.6): | |
3945 | 3656 | resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} |
3946 | 3657 | peerDependencies: |
3947 | 3658 | '@babel/core': ^7.0.0 |
3948 | 3659 | dependencies: |
3949 | - '@babel/core': 7.21.4 | |
3950 | - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.4) | |
3951 | - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.21.4) | |
3952 | - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.4) | |
3953 | - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.4) | |
3954 | - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.4) | |
3955 | - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.4) | |
3956 | - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.4) | |
3957 | - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.4) | |
3958 | - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.4) | |
3959 | - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.4) | |
3960 | - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.4) | |
3961 | - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.4) | |
3962 | - dev: false | |
3963 | - | |
3964 | - /babel-preset-jest@27.5.1(@babel/core@7.21.4): | |
3660 | + '@babel/core': 7.22.6 | |
3661 | + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.6) | |
3662 | + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.6) | |
3663 | + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.6) | |
3664 | + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.6) | |
3665 | + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.6) | |
3666 | + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.6) | |
3667 | + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.6) | |
3668 | + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.6) | |
3669 | + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.6) | |
3670 | + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.6) | |
3671 | + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.6) | |
3672 | + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.6) | |
3673 | + dev: false | |
3674 | + | |
3675 | + /babel-preset-jest@27.5.1(@babel/core@7.22.6): | |
3965 | 3676 | resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} |
3966 | 3677 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
3967 | 3678 | peerDependencies: |
3968 | 3679 | '@babel/core': ^7.0.0 |
3969 | 3680 | dependencies: |
3970 | - '@babel/core': 7.21.4 | |
3681 | + '@babel/core': 7.22.6 | |
3971 | 3682 | babel-plugin-jest-hoist: 27.5.1 |
3972 | - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.4) | |
3683 | + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.6) | |
3973 | 3684 | dev: false |
3974 | 3685 | |
3975 | 3686 | /balanced-match@1.0.2: |
... | ... | @@ -3999,7 +3710,6 @@ packages: |
3999 | 3710 | /big-integer@1.6.51: |
4000 | 3711 | resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} |
4001 | 3712 | engines: {node: '>=0.6'} |
4002 | - dev: false | |
4003 | 3713 | |
4004 | 3714 | /big.js@5.2.2: |
4005 | 3715 | resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} |
... | ... | @@ -4046,6 +3756,13 @@ packages: |
4046 | 3756 | resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} |
4047 | 3757 | dev: true |
4048 | 3758 | |
3759 | + /bplist-parser@0.2.0: | |
3760 | + resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} | |
3761 | + engines: {node: '>= 5.10.0'} | |
3762 | + dependencies: | |
3763 | + big-integer: 1.6.51 | |
3764 | + dev: true | |
3765 | + | |
4049 | 3766 | /brace-expansion@1.1.11: |
4050 | 3767 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} |
4051 | 3768 | dependencies: |
... | ... | @@ -4085,15 +3802,15 @@ packages: |
4085 | 3802 | resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} |
4086 | 3803 | dev: false |
4087 | 3804 | |
4088 | - /browserslist@4.21.5: | |
4089 | - resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==} | |
3805 | + /browserslist@4.21.9: | |
3806 | + resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==} | |
4090 | 3807 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} |
4091 | 3808 | hasBin: true |
4092 | 3809 | dependencies: |
4093 | - caniuse-lite: 1.0.30001474 | |
4094 | - electron-to-chromium: 1.4.350 | |
4095 | - node-releases: 2.0.10 | |
4096 | - update-browserslist-db: 1.0.10(browserslist@4.21.5) | |
3810 | + caniuse-lite: 1.0.30001512 | |
3811 | + electron-to-chromium: 1.4.451 | |
3812 | + node-releases: 2.0.12 | |
3813 | + update-browserslist-db: 1.0.11(browserslist@4.21.9) | |
4097 | 3814 | |
4098 | 3815 | /bser@2.1.1: |
4099 | 3816 | resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} |
... | ... | @@ -4130,13 +3847,20 @@ packages: |
4130 | 3847 | engines: {node: '>=6'} |
4131 | 3848 | dev: true |
4132 | 3849 | |
4133 | - /bundle-require@4.0.1(esbuild@0.18.8): | |
3850 | + /bundle-name@3.0.0: | |
3851 | + resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} | |
3852 | + engines: {node: '>=12'} | |
3853 | + dependencies: | |
3854 | + run-applescript: 5.0.0 | |
3855 | + dev: true | |
3856 | + | |
3857 | + /bundle-require@4.0.1(esbuild@0.18.11): | |
4134 | 3858 | resolution: {integrity: sha512-9NQkRHlNdNpDBGmLpngF3EFDcwodhMUuLz9PaWYciVcQF9SE4LFjM2DB/xV1Li5JiuDMv7ZUWuC3rGbqR0MAXQ==} |
4135 | 3859 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
4136 | 3860 | peerDependencies: |
4137 | 3861 | esbuild: '>=0.17' |
4138 | 3862 | dependencies: |
4139 | - esbuild: 0.18.8 | |
3863 | + esbuild: 0.18.11 | |
4140 | 3864 | load-tsconfig: 0.2.5 |
4141 | 3865 | dev: true |
4142 | 3866 | |
... | ... | @@ -4176,7 +3900,7 @@ packages: |
4176 | 3900 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} |
4177 | 3901 | dependencies: |
4178 | 3902 | function-bind: 1.1.1 |
4179 | - get-intrinsic: 1.2.0 | |
3903 | + get-intrinsic: 1.2.1 | |
4180 | 3904 | |
4181 | 3905 | /callsites@3.1.0: |
4182 | 3906 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} |
... | ... | @@ -4186,7 +3910,7 @@ packages: |
4186 | 3910 | resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} |
4187 | 3911 | dependencies: |
4188 | 3912 | pascal-case: 3.1.2 |
4189 | - tslib: 2.5.0 | |
3913 | + tslib: 2.6.0 | |
4190 | 3914 | dev: true |
4191 | 3915 | |
4192 | 3916 | /camelcase-keys@6.2.2: |
... | ... | @@ -4198,6 +3922,16 @@ packages: |
4198 | 3922 | quick-lru: 4.0.1 |
4199 | 3923 | dev: true |
4200 | 3924 | |
3925 | + /camelcase-keys@7.0.2: | |
3926 | + resolution: {integrity: sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==} | |
3927 | + engines: {node: '>=12'} | |
3928 | + dependencies: | |
3929 | + camelcase: 6.3.0 | |
3930 | + map-obj: 4.3.0 | |
3931 | + quick-lru: 5.1.1 | |
3932 | + type-fest: 1.4.0 | |
3933 | + dev: true | |
3934 | + | |
4201 | 3935 | /camelcase@5.3.1: |
4202 | 3936 | resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} |
4203 | 3937 | engines: {node: '>=6'} |
... | ... | @@ -4206,8 +3940,8 @@ packages: |
4206 | 3940 | resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} |
4207 | 3941 | engines: {node: '>=10'} |
4208 | 3942 | |
4209 | - /caniuse-lite@1.0.30001474: | |
4210 | - resolution: {integrity: sha512-iaIZ8gVrWfemh5DG3T9/YqarVZoYf0r188IjaGwx68j4Pf0SGY6CQkmJUIE+NZHkkecQGohzXmBGEwWDr9aM3Q==} | |
3943 | + /caniuse-lite@1.0.30001512: | |
3944 | + resolution: {integrity: sha512-2S9nK0G/mE+jasCUsMPlARhRCts1ebcp2Ji8Y8PWi4NDE1iRdLCnEPHkEfeBrGC45L4isBx5ur3IQ6yTE2mRZw==} | |
4211 | 3945 | |
4212 | 3946 | /cfb@1.2.2: |
4213 | 3947 | resolution: {integrity: sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==} |
... | ... | @@ -4262,6 +3996,11 @@ packages: |
4262 | 3996 | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} |
4263 | 3997 | dev: true |
4264 | 3998 | |
3999 | + /chalk@5.3.0: | |
4000 | + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} | |
4001 | + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} | |
4002 | + dev: true | |
4003 | + | |
4265 | 4004 | /char-regex@1.0.2: |
4266 | 4005 | resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} |
4267 | 4006 | engines: {node: '>=10'} |
... | ... | @@ -4399,8 +4138,8 @@ packages: |
4399 | 4138 | engines: {node: '>=0.8'} |
4400 | 4139 | dev: false |
4401 | 4140 | |
4402 | - /collect-v8-coverage@1.0.1: | |
4403 | - resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} | |
4141 | + /collect-v8-coverage@1.0.2: | |
4142 | + resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} | |
4404 | 4143 | dev: false |
4405 | 4144 | |
4406 | 4145 | /collection-visit@1.0.0: |
... | ... | @@ -4432,10 +4171,6 @@ packages: |
4432 | 4171 | resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} |
4433 | 4172 | dev: true |
4434 | 4173 | |
4435 | - /colorette@2.0.19: | |
4436 | - resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} | |
4437 | - dev: true | |
4438 | - | |
4439 | 4174 | /colorette@2.0.20: |
4440 | 4175 | resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} |
4441 | 4176 | dev: true |
... | ... | @@ -4452,9 +4187,14 @@ packages: |
4452 | 4187 | delayed-stream: 1.0.0 |
4453 | 4188 | dev: false |
4454 | 4189 | |
4455 | - /commander@10.0.0: | |
4456 | - resolution: {integrity: sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==} | |
4190 | + /commander@10.0.1: | |
4191 | + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} | |
4457 | 4192 | engines: {node: '>=14'} |
4193 | + dev: true | |
4194 | + | |
4195 | + /commander@11.0.0: | |
4196 | + resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==} | |
4197 | + engines: {node: '>=16'} | |
4458 | 4198 | |
4459 | 4199 | /commander@2.15.1: |
4460 | 4200 | resolution: {integrity: sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==} |
... | ... | @@ -4542,8 +4282,9 @@ packages: |
4542 | 4282 | resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==} |
4543 | 4283 | dev: true |
4544 | 4284 | |
4545 | - /consola@3.1.0: | |
4546 | - resolution: {integrity: sha512-rrrJE6rP0qzl/Srg+C9x/AE5Kxfux7reVm1Wh0wCjuXvih6DqZgqDZe8auTD28fzJ9TF0mHlSDrPpWlujQRo1Q==} | |
4285 | + /consola@3.2.3: | |
4286 | + resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} | |
4287 | + engines: {node: ^14.18.0 || >=16.10.0} | |
4547 | 4288 | dev: true |
4548 | 4289 | |
4549 | 4290 | /content-disposition@0.5.4: |
... | ... | @@ -4620,8 +4361,8 @@ packages: |
4620 | 4361 | resolution: {integrity: sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==} |
4621 | 4362 | dev: false |
4622 | 4363 | |
4623 | - /core-js@3.30.0: | |
4624 | - resolution: {integrity: sha512-hQotSSARoNh1mYPi9O2YaWeiq/cEB95kOrFb4NCrO4RIFt1qqNpKsaE+vy/L3oiqvND5cThqXzUU3r9F7Efztg==} | |
4364 | + /core-js@3.31.1: | |
4365 | + resolution: {integrity: sha512-2sKLtfq1eFST7l7v62zaqXacPc7uG8ZAya8ogijLhTtaKNcpzpB4TMoTw2Si+8GYKRwFPMMtUT0263QFWFfqyQ==} | |
4625 | 4366 | requiresBuild: true |
4626 | 4367 | |
4627 | 4368 | /core-util-is@1.0.3: |
... | ... | @@ -4635,7 +4376,7 @@ packages: |
4635 | 4376 | vary: 1.1.2 |
4636 | 4377 | dev: true |
4637 | 4378 | |
4638 | - /cosmiconfig-typescript-loader@4.3.0(@types/node@20.3.3)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@5.1.6): | |
4379 | + /cosmiconfig-typescript-loader@4.3.0(@types/node@20.4.0)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@5.1.6): | |
4639 | 4380 | resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} |
4640 | 4381 | engines: {node: '>=12', npm: '>=6'} |
4641 | 4382 | peerDependencies: |
... | ... | @@ -4644,9 +4385,9 @@ packages: |
4644 | 4385 | ts-node: '>=10' |
4645 | 4386 | typescript: '>=3' |
4646 | 4387 | dependencies: |
4647 | - '@types/node': 20.3.3 | |
4388 | + '@types/node': 20.4.0 | |
4648 | 4389 | cosmiconfig: 8.2.0 |
4649 | - ts-node: 10.9.1(@types/node@20.3.3)(typescript@5.1.6) | |
4390 | + ts-node: 10.9.1(@types/node@20.4.0)(typescript@5.1.6) | |
4650 | 4391 | typescript: 5.1.6 |
4651 | 4392 | dev: true |
4652 | 4393 | |
... | ... | @@ -4693,10 +4434,10 @@ packages: |
4693 | 4434 | cross-spawn: 7.0.3 |
4694 | 4435 | dev: true |
4695 | 4436 | |
4696 | - /cross-fetch@3.1.5: | |
4697 | - resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==} | |
4437 | + /cross-fetch@3.1.8: | |
4438 | + resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==} | |
4698 | 4439 | dependencies: |
4699 | - node-fetch: 2.6.7 | |
4440 | + node-fetch: 2.6.12 | |
4700 | 4441 | transitivePeerDependencies: |
4701 | 4442 | - encoding |
4702 | 4443 | dev: true |
... | ... | @@ -4816,10 +4557,6 @@ packages: |
4816 | 4557 | whatwg-url: 8.7.0 |
4817 | 4558 | dev: false |
4818 | 4559 | |
4819 | - /dayjs@1.11.7: | |
4820 | - resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==} | |
4821 | - dev: true | |
4822 | - | |
4823 | 4560 | /dayjs@1.11.9: |
4824 | 4561 | resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==} |
4825 | 4562 | |
... | ... | @@ -4876,6 +4613,11 @@ packages: |
4876 | 4613 | resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} |
4877 | 4614 | engines: {node: '>=0.10.0'} |
4878 | 4615 | |
4616 | + /decamelize@5.0.1: | |
4617 | + resolution: {integrity: sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==} | |
4618 | + engines: {node: '>=10'} | |
4619 | + dev: true | |
4620 | + | |
4879 | 4621 | /decimal.js@10.4.3: |
4880 | 4622 | resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} |
4881 | 4623 | dev: false |
... | ... | @@ -4895,16 +4637,40 @@ packages: |
4895 | 4637 | |
4896 | 4638 | /deep-is@0.1.4: |
4897 | 4639 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} |
4640 | + dev: true | |
4898 | 4641 | |
4899 | 4642 | /deepmerge@4.3.1: |
4900 | 4643 | resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} |
4901 | 4644 | engines: {node: '>=0.10.0'} |
4902 | 4645 | |
4646 | + /default-browser-id@3.0.0: | |
4647 | + resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} | |
4648 | + engines: {node: '>=12'} | |
4649 | + dependencies: | |
4650 | + bplist-parser: 0.2.0 | |
4651 | + untildify: 4.0.0 | |
4652 | + dev: true | |
4653 | + | |
4654 | + /default-browser@4.0.0: | |
4655 | + resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} | |
4656 | + engines: {node: '>=14.16'} | |
4657 | + dependencies: | |
4658 | + bundle-name: 3.0.0 | |
4659 | + default-browser-id: 3.0.0 | |
4660 | + execa: 7.1.1 | |
4661 | + titleize: 3.0.0 | |
4662 | + dev: true | |
4663 | + | |
4903 | 4664 | /define-lazy-prop@2.0.0: |
4904 | 4665 | resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} |
4905 | 4666 | engines: {node: '>=8'} |
4906 | 4667 | dev: true |
4907 | 4668 | |
4669 | + /define-lazy-prop@3.0.0: | |
4670 | + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} | |
4671 | + engines: {node: '>=12'} | |
4672 | + dev: true | |
4673 | + | |
4908 | 4674 | /define-properties@1.2.0: |
4909 | 4675 | resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} |
4910 | 4676 | engines: {node: '>= 0.4'} |
... | ... | @@ -4939,14 +4705,14 @@ packages: |
4939 | 4705 | resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==} |
4940 | 4706 | dev: true |
4941 | 4707 | |
4942 | - /degenerator@3.0.3: | |
4943 | - resolution: {integrity: sha512-FTq/qYMeBJACu1gHcXJvzsRBTK6aw5zWCYbEnIOyamOt5UJufWJRQ5XfDb6OuayfJWvmWAHgcZyt43vm/hbj7g==} | |
4708 | + /degenerator@3.0.4: | |
4709 | + resolution: {integrity: sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==} | |
4944 | 4710 | engines: {node: '>= 6'} |
4945 | 4711 | dependencies: |
4946 | 4712 | ast-types: 0.13.4 |
4947 | 4713 | escodegen: 1.14.3 |
4948 | 4714 | esprima: 4.0.1 |
4949 | - vm2: 3.9.14 | |
4715 | + vm2: 3.9.19 | |
4950 | 4716 | dev: true |
4951 | 4717 | |
4952 | 4718 | /delayed-stream@1.0.0: |
... | ... | @@ -5011,8 +4777,8 @@ packages: |
5011 | 4777 | resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} |
5012 | 4778 | engines: {node: '>=0.3.1'} |
5013 | 4779 | |
5014 | - /dijkstrajs@1.0.2: | |
5015 | - resolution: {integrity: sha512-QV6PMaHTCNmKSeP6QoXhVTw9snc9VD8MulTT0Bd99Pacp4SS1cjcrYPgBPmibqKVtMJJfqC6XvOXgPMEEPH/fg==} | |
4780 | + /dijkstrajs@1.0.3: | |
4781 | + resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==} | |
5016 | 4782 | dev: false |
5017 | 4783 | |
5018 | 4784 | /dir-glob@3.0.1: |
... | ... | @@ -5062,7 +4828,7 @@ packages: |
5062 | 4828 | dependencies: |
5063 | 4829 | domelementtype: 2.3.0 |
5064 | 4830 | domhandler: 5.0.3 |
5065 | - entities: 4.4.0 | |
4831 | + entities: 4.5.0 | |
5066 | 4832 | dev: true |
5067 | 4833 | |
5068 | 4834 | /domelementtype@1.3.1: |
... | ... | @@ -5115,8 +4881,8 @@ packages: |
5115 | 4881 | domhandler: 4.3.1 |
5116 | 4882 | dev: true |
5117 | 4883 | |
5118 | - /domutils@3.0.1: | |
5119 | - resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==} | |
4884 | + /domutils@3.1.0: | |
4885 | + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} | |
5120 | 4886 | dependencies: |
5121 | 4887 | dom-serializer: 2.0.0 |
5122 | 4888 | domelementtype: 2.3.0 |
... | ... | @@ -5127,7 +4893,7 @@ packages: |
5127 | 4893 | resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} |
5128 | 4894 | dependencies: |
5129 | 4895 | no-case: 3.0.4 |
5130 | - tslib: 2.5.0 | |
4896 | + tslib: 2.6.0 | |
5131 | 4897 | dev: true |
5132 | 4898 | |
5133 | 4899 | /dot-prop@5.3.0: |
... | ... | @@ -5186,11 +4952,11 @@ packages: |
5186 | 4952 | engines: {node: '>=0.10.0'} |
5187 | 4953 | hasBin: true |
5188 | 4954 | dependencies: |
5189 | - jake: 10.8.5 | |
4955 | + jake: 10.8.7 | |
5190 | 4956 | dev: true |
5191 | 4957 | |
5192 | - /electron-to-chromium@1.4.350: | |
5193 | - resolution: {integrity: sha512-XnXcWpVnOfHZ4C3NPiL+SubeoGV8zc/pg8GEubRtc1dPA/9jKS2vsOPmtClJHhWxUb2RSGC1OBLCbgNUJMtZPw==} | |
4958 | + /electron-to-chromium@1.4.451: | |
4959 | + resolution: {integrity: sha512-YYbXHIBxAHe3KWvGOJOuWa6f3tgow44rBW+QAuwVp2DvGqNZeE//K2MowNdWS7XE8li5cgQDrX1LdBr41LufkA==} | |
5194 | 4960 | |
5195 | 4961 | /emitter-listener@1.1.2: |
5196 | 4962 | resolution: {integrity: sha512-Bt1sBAGFHY9DKY+4/2cV6izcKJUf5T7/gkdmkxzX/qv9CcGH8xSwVRW5mtX03SWJtRTWSOpzCuWN9rBFYZepZQ==} |
... | ... | @@ -5244,8 +5010,8 @@ packages: |
5244 | 5010 | resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} |
5245 | 5011 | dev: true |
5246 | 5012 | |
5247 | - /entities@4.4.0: | |
5248 | - resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==} | |
5013 | + /entities@4.5.0: | |
5014 | + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} | |
5249 | 5015 | engines: {node: '>=0.12'} |
5250 | 5016 | dev: true |
5251 | 5017 | |
... | ... | @@ -5272,7 +5038,7 @@ packages: |
5272 | 5038 | es-set-tostringtag: 2.0.1 |
5273 | 5039 | es-to-primitive: 1.2.1 |
5274 | 5040 | function.prototype.name: 1.1.5 |
5275 | - get-intrinsic: 1.2.0 | |
5041 | + get-intrinsic: 1.2.1 | |
5276 | 5042 | get-symbol-description: 1.0.0 |
5277 | 5043 | globalthis: 1.0.3 |
5278 | 5044 | gopd: 1.0.1 |
... | ... | @@ -5292,7 +5058,7 @@ packages: |
5292 | 5058 | object-inspect: 1.12.3 |
5293 | 5059 | object-keys: 1.1.1 |
5294 | 5060 | object.assign: 4.1.4 |
5295 | - regexp.prototype.flags: 1.4.3 | |
5061 | + regexp.prototype.flags: 1.5.0 | |
5296 | 5062 | safe-regex-test: 1.0.0 |
5297 | 5063 | string.prototype.trim: 1.2.7 |
5298 | 5064 | string.prototype.trimend: 1.0.6 |
... | ... | @@ -5306,7 +5072,7 @@ packages: |
5306 | 5072 | resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} |
5307 | 5073 | engines: {node: '>= 0.4'} |
5308 | 5074 | dependencies: |
5309 | - get-intrinsic: 1.2.0 | |
5075 | + get-intrinsic: 1.2.1 | |
5310 | 5076 | has: 1.0.3 |
5311 | 5077 | has-tostringtag: 1.0.0 |
5312 | 5078 | dev: true |
... | ... | @@ -5332,35 +5098,6 @@ packages: |
5332 | 5098 | requiresBuild: true |
5333 | 5099 | dev: true |
5334 | 5100 | |
5335 | - /esbuild@0.17.15: | |
5336 | - resolution: {integrity: sha512-LBUV2VsUIc/iD9ME75qhT4aJj0r75abCVS0jakhFzOtR7TQsqQA5w0tZ+KTKnwl3kXE0MhskNdHDh/I5aCR1Zw==} | |
5337 | - engines: {node: '>=12'} | |
5338 | - hasBin: true | |
5339 | - requiresBuild: true | |
5340 | - optionalDependencies: | |
5341 | - '@esbuild/android-arm': 0.17.15 | |
5342 | - '@esbuild/android-arm64': 0.17.15 | |
5343 | - '@esbuild/android-x64': 0.17.15 | |
5344 | - '@esbuild/darwin-arm64': 0.17.15 | |
5345 | - '@esbuild/darwin-x64': 0.17.15 | |
5346 | - '@esbuild/freebsd-arm64': 0.17.15 | |
5347 | - '@esbuild/freebsd-x64': 0.17.15 | |
5348 | - '@esbuild/linux-arm': 0.17.15 | |
5349 | - '@esbuild/linux-arm64': 0.17.15 | |
5350 | - '@esbuild/linux-ia32': 0.17.15 | |
5351 | - '@esbuild/linux-loong64': 0.17.15 | |
5352 | - '@esbuild/linux-mips64el': 0.17.15 | |
5353 | - '@esbuild/linux-ppc64': 0.17.15 | |
5354 | - '@esbuild/linux-riscv64': 0.17.15 | |
5355 | - '@esbuild/linux-s390x': 0.17.15 | |
5356 | - '@esbuild/linux-x64': 0.17.15 | |
5357 | - '@esbuild/netbsd-x64': 0.17.15 | |
5358 | - '@esbuild/openbsd-x64': 0.17.15 | |
5359 | - '@esbuild/sunos-x64': 0.17.15 | |
5360 | - '@esbuild/win32-arm64': 0.17.15 | |
5361 | - '@esbuild/win32-ia32': 0.17.15 | |
5362 | - '@esbuild/win32-x64': 0.17.15 | |
5363 | - | |
5364 | 5101 | /esbuild@0.17.19: |
5365 | 5102 | resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==} |
5366 | 5103 | engines: {node: '>=12'} |
... | ... | @@ -5391,35 +5128,34 @@ packages: |
5391 | 5128 | '@esbuild/win32-x64': 0.17.19 |
5392 | 5129 | dev: true |
5393 | 5130 | |
5394 | - /esbuild@0.18.8: | |
5395 | - resolution: {integrity: sha512-3hJ4I81Wp1IT5z29FAlTAlbX+ElIqy4AuIf1GNcFjsRIfyO3linxmEVqoP865KTYT9BWosrCl081RM/35Z+scw==} | |
5131 | + /esbuild@0.18.11: | |
5132 | + resolution: {integrity: sha512-i8u6mQF0JKJUlGR3OdFLKldJQMMs8OqM9Cc3UCi9XXziJ9WERM5bfkHaEAy0YAvPRMgqSW55W7xYn84XtEFTtA==} | |
5396 | 5133 | engines: {node: '>=12'} |
5397 | 5134 | hasBin: true |
5398 | 5135 | requiresBuild: true |
5399 | 5136 | optionalDependencies: |
5400 | - '@esbuild/android-arm': 0.18.8 | |
5401 | - '@esbuild/android-arm64': 0.18.8 | |
5402 | - '@esbuild/android-x64': 0.18.8 | |
5403 | - '@esbuild/darwin-arm64': 0.18.8 | |
5404 | - '@esbuild/darwin-x64': 0.18.8 | |
5405 | - '@esbuild/freebsd-arm64': 0.18.8 | |
5406 | - '@esbuild/freebsd-x64': 0.18.8 | |
5407 | - '@esbuild/linux-arm': 0.18.8 | |
5408 | - '@esbuild/linux-arm64': 0.18.8 | |
5409 | - '@esbuild/linux-ia32': 0.18.8 | |
5410 | - '@esbuild/linux-loong64': 0.18.8 | |
5411 | - '@esbuild/linux-mips64el': 0.18.8 | |
5412 | - '@esbuild/linux-ppc64': 0.18.8 | |
5413 | - '@esbuild/linux-riscv64': 0.18.8 | |
5414 | - '@esbuild/linux-s390x': 0.18.8 | |
5415 | - '@esbuild/linux-x64': 0.18.8 | |
5416 | - '@esbuild/netbsd-x64': 0.18.8 | |
5417 | - '@esbuild/openbsd-x64': 0.18.8 | |
5418 | - '@esbuild/sunos-x64': 0.18.8 | |
5419 | - '@esbuild/win32-arm64': 0.18.8 | |
5420 | - '@esbuild/win32-ia32': 0.18.8 | |
5421 | - '@esbuild/win32-x64': 0.18.8 | |
5422 | - dev: true | |
5137 | + '@esbuild/android-arm': 0.18.11 | |
5138 | + '@esbuild/android-arm64': 0.18.11 | |
5139 | + '@esbuild/android-x64': 0.18.11 | |
5140 | + '@esbuild/darwin-arm64': 0.18.11 | |
5141 | + '@esbuild/darwin-x64': 0.18.11 | |
5142 | + '@esbuild/freebsd-arm64': 0.18.11 | |
5143 | + '@esbuild/freebsd-x64': 0.18.11 | |
5144 | + '@esbuild/linux-arm': 0.18.11 | |
5145 | + '@esbuild/linux-arm64': 0.18.11 | |
5146 | + '@esbuild/linux-ia32': 0.18.11 | |
5147 | + '@esbuild/linux-loong64': 0.18.11 | |
5148 | + '@esbuild/linux-mips64el': 0.18.11 | |
5149 | + '@esbuild/linux-ppc64': 0.18.11 | |
5150 | + '@esbuild/linux-riscv64': 0.18.11 | |
5151 | + '@esbuild/linux-s390x': 0.18.11 | |
5152 | + '@esbuild/linux-x64': 0.18.11 | |
5153 | + '@esbuild/netbsd-x64': 0.18.11 | |
5154 | + '@esbuild/openbsd-x64': 0.18.11 | |
5155 | + '@esbuild/sunos-x64': 0.18.11 | |
5156 | + '@esbuild/win32-arm64': 0.18.11 | |
5157 | + '@esbuild/win32-ia32': 0.18.11 | |
5158 | + '@esbuild/win32-x64': 0.18.11 | |
5423 | 5159 | |
5424 | 5160 | /escalade@3.1.1: |
5425 | 5161 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} |
... | ... | @@ -5455,15 +5191,14 @@ packages: |
5455 | 5191 | source-map: 0.6.1 |
5456 | 5192 | dev: true |
5457 | 5193 | |
5458 | - /escodegen@2.0.0: | |
5459 | - resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==} | |
5194 | + /escodegen@2.1.0: | |
5195 | + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} | |
5460 | 5196 | engines: {node: '>=6.0'} |
5461 | 5197 | hasBin: true |
5462 | 5198 | dependencies: |
5463 | 5199 | esprima: 4.0.1 |
5464 | 5200 | estraverse: 5.3.0 |
5465 | 5201 | esutils: 2.0.3 |
5466 | - optionator: 0.8.3 | |
5467 | 5202 | optionalDependencies: |
5468 | 5203 | source-map: 0.6.1 |
5469 | 5204 | dev: false |
... | ... | @@ -5481,14 +5216,14 @@ packages: |
5481 | 5216 | resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} |
5482 | 5217 | dependencies: |
5483 | 5218 | debug: 3.2.7(supports-color@5.5.0) |
5484 | - is-core-module: 2.11.0 | |
5485 | - resolve: 1.22.1 | |
5219 | + is-core-module: 2.12.1 | |
5220 | + resolve: 1.22.2 | |
5486 | 5221 | transitivePeerDependencies: |
5487 | 5222 | - supports-color |
5488 | 5223 | dev: true |
5489 | 5224 | |
5490 | - /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.60.1)(eslint-import-resolver-node@0.3.7)(eslint@8.44.0): | |
5491 | - resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} | |
5225 | + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.61.0)(eslint-import-resolver-node@0.3.7)(eslint@8.44.0): | |
5226 | + resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} | |
5492 | 5227 | engines: {node: '>=4'} |
5493 | 5228 | peerDependencies: |
5494 | 5229 | '@typescript-eslint/parser': '*' |
... | ... | @@ -5508,7 +5243,7 @@ packages: |
5508 | 5243 | eslint-import-resolver-webpack: |
5509 | 5244 | optional: true |
5510 | 5245 | dependencies: |
5511 | - '@typescript-eslint/parser': 5.60.1(eslint@8.44.0)(typescript@5.1.6) | |
5246 | + '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@5.1.6) | |
5512 | 5247 | debug: 3.2.7(supports-color@5.5.0) |
5513 | 5248 | eslint: 8.44.0 |
5514 | 5249 | eslint-import-resolver-node: 0.3.7 |
... | ... | @@ -5516,7 +5251,7 @@ packages: |
5516 | 5251 | - supports-color |
5517 | 5252 | dev: true |
5518 | 5253 | |
5519 | - /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.60.1)(eslint@8.44.0): | |
5254 | + /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.61.0)(eslint@8.44.0): | |
5520 | 5255 | resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} |
5521 | 5256 | engines: {node: '>=4'} |
5522 | 5257 | peerDependencies: |
... | ... | @@ -5526,7 +5261,7 @@ packages: |
5526 | 5261 | '@typescript-eslint/parser': |
5527 | 5262 | optional: true |
5528 | 5263 | dependencies: |
5529 | - '@typescript-eslint/parser': 5.60.1(eslint@8.44.0)(typescript@5.1.6) | |
5264 | + '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@5.1.6) | |
5530 | 5265 | array-includes: 3.1.6 |
5531 | 5266 | array.prototype.flat: 1.3.1 |
5532 | 5267 | array.prototype.flatmap: 1.3.1 |
... | ... | @@ -5534,13 +5269,13 @@ packages: |
5534 | 5269 | doctrine: 2.1.0 |
5535 | 5270 | eslint: 8.44.0 |
5536 | 5271 | eslint-import-resolver-node: 0.3.7 |
5537 | - eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.60.1)(eslint-import-resolver-node@0.3.7)(eslint@8.44.0) | |
5272 | + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.61.0)(eslint-import-resolver-node@0.3.7)(eslint@8.44.0) | |
5538 | 5273 | has: 1.0.3 |
5539 | - is-core-module: 2.11.0 | |
5274 | + is-core-module: 2.12.1 | |
5540 | 5275 | is-glob: 4.0.3 |
5541 | 5276 | minimatch: 3.1.2 |
5542 | 5277 | object.values: 1.1.6 |
5543 | - resolve: 1.22.1 | |
5278 | + resolve: 1.22.2 | |
5544 | 5279 | semver: 6.3.0 |
5545 | 5280 | tsconfig-paths: 3.14.2 |
5546 | 5281 | transitivePeerDependencies: |
... | ... | @@ -5585,7 +5320,7 @@ packages: |
5585 | 5320 | natural-compare: 1.4.0 |
5586 | 5321 | nth-check: 2.1.1 |
5587 | 5322 | postcss-selector-parser: 6.0.13 |
5588 | - semver: 7.3.8 | |
5323 | + semver: 7.5.3 | |
5589 | 5324 | vue-eslint-parser: 9.3.1(eslint@8.44.0) |
5590 | 5325 | xml-name-validator: 4.0.0 |
5591 | 5326 | transitivePeerDependencies: |
... | ... | @@ -5600,14 +5335,6 @@ packages: |
5600 | 5335 | estraverse: 4.3.0 |
5601 | 5336 | dev: true |
5602 | 5337 | |
5603 | - /eslint-scope@7.1.1: | |
5604 | - resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} | |
5605 | - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | |
5606 | - dependencies: | |
5607 | - esrecurse: 4.3.0 | |
5608 | - estraverse: 5.3.0 | |
5609 | - dev: true | |
5610 | - | |
5611 | 5338 | /eslint-scope@7.2.0: |
5612 | 5339 | resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==} |
5613 | 5340 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
... | ... | @@ -5616,11 +5343,6 @@ packages: |
5616 | 5343 | estraverse: 5.3.0 |
5617 | 5344 | dev: true |
5618 | 5345 | |
5619 | - /eslint-visitor-keys@3.4.0: | |
5620 | - resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==} | |
5621 | - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | |
5622 | - dev: true | |
5623 | - | |
5624 | 5346 | /eslint-visitor-keys@3.4.1: |
5625 | 5347 | resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==} |
5626 | 5348 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
... | ... | @@ -5632,7 +5354,7 @@ packages: |
5632 | 5354 | hasBin: true |
5633 | 5355 | dependencies: |
5634 | 5356 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.44.0) |
5635 | - '@eslint-community/regexpp': 4.5.0 | |
5357 | + '@eslint-community/regexpp': 4.5.1 | |
5636 | 5358 | '@eslint/eslintrc': 2.1.0 |
5637 | 5359 | '@eslint/js': 8.44.0 |
5638 | 5360 | '@humanwhocodes/config-array': 0.11.10 |
... | ... | @@ -5674,21 +5396,12 @@ packages: |
5674 | 5396 | - supports-color |
5675 | 5397 | dev: true |
5676 | 5398 | |
5677 | - /espree@9.5.1: | |
5678 | - resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==} | |
5679 | - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | |
5680 | - dependencies: | |
5681 | - acorn: 8.8.2 | |
5682 | - acorn-jsx: 5.3.2(acorn@8.8.2) | |
5683 | - eslint-visitor-keys: 3.4.1 | |
5684 | - dev: true | |
5685 | - | |
5686 | 5399 | /espree@9.6.0: |
5687 | 5400 | resolution: {integrity: sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==} |
5688 | 5401 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
5689 | 5402 | dependencies: |
5690 | - acorn: 8.9.0 | |
5691 | - acorn-jsx: 5.3.2(acorn@8.9.0) | |
5403 | + acorn: 8.10.0 | |
5404 | + acorn-jsx: 5.3.2(acorn@8.10.0) | |
5692 | 5405 | eslint-visitor-keys: 3.4.1 |
5693 | 5406 | dev: true |
5694 | 5407 | |
... | ... | @@ -5759,7 +5472,7 @@ packages: |
5759 | 5472 | readable-stream: 3.6.2 |
5760 | 5473 | saxes: 5.0.1 |
5761 | 5474 | tmp: 0.2.1 |
5762 | - unzipper: 0.10.11 | |
5475 | + unzipper: 0.10.14 | |
5763 | 5476 | uuid: 8.3.2 |
5764 | 5477 | dev: false |
5765 | 5478 | |
... | ... | @@ -5865,12 +5578,12 @@ packages: |
5865 | 5578 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} |
5866 | 5579 | dev: true |
5867 | 5580 | |
5868 | - /fast-diff@1.2.0: | |
5869 | - resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} | |
5581 | + /fast-diff@1.3.0: | |
5582 | + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} | |
5870 | 5583 | dev: true |
5871 | 5584 | |
5872 | - /fast-glob@3.2.12: | |
5873 | - resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} | |
5585 | + /fast-glob@3.3.0: | |
5586 | + resolution: {integrity: sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==} | |
5874 | 5587 | engines: {node: '>=8.6.0'} |
5875 | 5588 | dependencies: |
5876 | 5589 | '@nodelib/fs.stat': 2.0.5 |
... | ... | @@ -5889,6 +5602,7 @@ packages: |
5889 | 5602 | |
5890 | 5603 | /fast-levenshtein@2.0.6: |
5891 | 5604 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} |
5605 | + dev: true | |
5892 | 5606 | |
5893 | 5607 | /fastest-levenshtein@1.0.16: |
5894 | 5608 | resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} |
... | ... | @@ -6034,8 +5748,8 @@ packages: |
6034 | 5748 | mime-types: 2.1.35 |
6035 | 5749 | dev: false |
6036 | 5750 | |
6037 | - /formidable@2.1.1: | |
6038 | - resolution: {integrity: sha512-0EcS9wCFEzLvfiks7omJ+SiYJAiD+TzK4Pcw1UlUoGnhUxDcMKjt0P7x8wEb0u6OHu8Nb98WG3nxtlF5C7bvUQ==} | |
5751 | + /formidable@2.1.2: | |
5752 | + resolution: {integrity: sha512-CM3GuJ57US06mlpQ47YcunuUZ9jpm8Vx+P2CGt2j7HpgkKZO/DJYQ0Bobim8G6PFQmK5lOqOOdUXboU+h73A4g==} | |
6039 | 5753 | dependencies: |
6040 | 5754 | dezalgo: 1.0.4 |
6041 | 5755 | hexoid: 1.0.0 |
... | ... | @@ -6152,11 +5866,12 @@ packages: |
6152 | 5866 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} |
6153 | 5867 | engines: {node: 6.* || 8.* || >= 10.*} |
6154 | 5868 | |
6155 | - /get-intrinsic@1.2.0: | |
6156 | - resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} | |
5869 | + /get-intrinsic@1.2.1: | |
5870 | + resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} | |
6157 | 5871 | dependencies: |
6158 | 5872 | function-bind: 1.1.1 |
6159 | 5873 | has: 1.0.3 |
5874 | + has-proto: 1.0.1 | |
6160 | 5875 | has-symbols: 1.0.3 |
6161 | 5876 | |
6162 | 5877 | /get-package-type@0.1.0: |
... | ... | @@ -6164,6 +5879,11 @@ packages: |
6164 | 5879 | engines: {node: '>=8.0.0'} |
6165 | 5880 | dev: false |
6166 | 5881 | |
5882 | + /get-stdin@9.0.0: | |
5883 | + resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==} | |
5884 | + engines: {node: '>=12'} | |
5885 | + dev: true | |
5886 | + | |
6167 | 5887 | /get-stream@6.0.1: |
6168 | 5888 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} |
6169 | 5889 | engines: {node: '>=10'} |
... | ... | @@ -6173,7 +5893,7 @@ packages: |
6173 | 5893 | engines: {node: '>= 0.4'} |
6174 | 5894 | dependencies: |
6175 | 5895 | call-bind: 1.0.2 |
6176 | - get-intrinsic: 1.2.0 | |
5896 | + get-intrinsic: 1.2.1 | |
6177 | 5897 | dev: true |
6178 | 5898 | |
6179 | 5899 | /get-uri@3.0.2: |
... | ... | @@ -6239,8 +5959,8 @@ packages: |
6239 | 5959 | is-glob: 4.0.3 |
6240 | 5960 | dev: true |
6241 | 5961 | |
6242 | - /glob@10.3.0: | |
6243 | - resolution: {integrity: sha512-AQ1/SB9HH0yCx1jXAT4vmCbTOPe5RQ+kCurjbel5xSCGhebumUv+GJZfa1rEqor3XIViqwSEmlkZCQD43RWrBg==} | |
5962 | + /glob@10.3.1: | |
5963 | + resolution: {integrity: sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==} | |
6244 | 5964 | engines: {node: '>=16 || 14 >=14.17'} |
6245 | 5965 | hasBin: true |
6246 | 5966 | dependencies: |
... | ... | @@ -6248,7 +5968,7 @@ packages: |
6248 | 5968 | jackspeak: 2.2.1 |
6249 | 5969 | minimatch: 9.0.2 |
6250 | 5970 | minipass: 6.0.2 |
6251 | - path-scurry: 1.9.2 | |
5971 | + path-scurry: 1.10.0 | |
6252 | 5972 | dev: true |
6253 | 5973 | |
6254 | 5974 | /glob@7.1.6: |
... | ... | @@ -6324,39 +6044,24 @@ packages: |
6324 | 6044 | define-properties: 1.2.0 |
6325 | 6045 | dev: true |
6326 | 6046 | |
6327 | - /globalyzer@0.1.0: | |
6328 | - resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} | |
6329 | - dev: true | |
6330 | - | |
6331 | 6047 | /globby@11.1.0: |
6332 | 6048 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} |
6333 | 6049 | engines: {node: '>=10'} |
6334 | 6050 | dependencies: |
6335 | 6051 | array-union: 2.1.0 |
6336 | 6052 | dir-glob: 3.0.1 |
6337 | - fast-glob: 3.2.12 | |
6053 | + fast-glob: 3.3.0 | |
6338 | 6054 | ignore: 5.2.4 |
6339 | 6055 | merge2: 1.4.1 |
6340 | 6056 | slash: 3.0.0 |
6341 | 6057 | dev: true |
6342 | 6058 | |
6343 | - /globby@13.1.3: | |
6344 | - resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==} | |
6059 | + /globby@13.2.2: | |
6060 | + resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==} | |
6345 | 6061 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
6346 | 6062 | dependencies: |
6347 | 6063 | dir-glob: 3.0.1 |
6348 | - fast-glob: 3.2.12 | |
6349 | - ignore: 5.2.4 | |
6350 | - merge2: 1.4.1 | |
6351 | - slash: 4.0.0 | |
6352 | - dev: true | |
6353 | - | |
6354 | - /globby@13.2.0: | |
6355 | - resolution: {integrity: sha512-jWsQfayf13NvqKUIL3Ta+CIqMnvlaIDFveWE/dpOZ9+3AMEJozsxDvKA02zync9UuvOM8rOXzsD5GqKP4OnWPQ==} | |
6356 | - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} | |
6357 | - dependencies: | |
6358 | - dir-glob: 3.0.1 | |
6359 | - fast-glob: 3.2.12 | |
6064 | + fast-glob: 3.3.0 | |
6360 | 6065 | ignore: 5.2.4 |
6361 | 6066 | merge2: 1.4.1 |
6362 | 6067 | slash: 4.0.0 |
... | ... | @@ -6366,23 +6071,15 @@ packages: |
6366 | 6071 | resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==} |
6367 | 6072 | dev: true |
6368 | 6073 | |
6369 | - /globrex@0.1.2: | |
6370 | - resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} | |
6371 | - dev: true | |
6372 | - | |
6373 | 6074 | /gopd@1.0.1: |
6374 | 6075 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} |
6375 | 6076 | dependencies: |
6376 | - get-intrinsic: 1.2.0 | |
6077 | + get-intrinsic: 1.2.1 | |
6377 | 6078 | dev: true |
6378 | 6079 | |
6379 | 6080 | /graceful-fs@4.2.11: |
6380 | 6081 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} |
6381 | 6082 | |
6382 | - /grapheme-splitter@1.0.4: | |
6383 | - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} | |
6384 | - dev: true | |
6385 | - | |
6386 | 6083 | /graphemer@1.4.0: |
6387 | 6084 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} |
6388 | 6085 | dev: true |
... | ... | @@ -6426,13 +6123,12 @@ packages: |
6426 | 6123 | /has-property-descriptors@1.0.0: |
6427 | 6124 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} |
6428 | 6125 | dependencies: |
6429 | - get-intrinsic: 1.2.0 | |
6126 | + get-intrinsic: 1.2.1 | |
6430 | 6127 | dev: true |
6431 | 6128 | |
6432 | 6129 | /has-proto@1.0.1: |
6433 | 6130 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} |
6434 | 6131 | engines: {node: '>= 0.4'} |
6435 | - dev: true | |
6436 | 6132 | |
6437 | 6133 | /has-symbols@1.0.3: |
6438 | 6134 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} |
... | ... | @@ -6528,12 +6224,7 @@ packages: |
6528 | 6224 | he: 1.2.0 |
6529 | 6225 | param-case: 3.0.4 |
6530 | 6226 | relateurl: 0.2.7 |
6531 | - terser: 5.16.8 | |
6532 | - dev: true | |
6533 | - | |
6534 | - /html-tags@3.3.0: | |
6535 | - resolution: {integrity: sha512-mH3dWNbvfCKcAEysbpD7wvtIJ6ImPog8aFhfzqog9gCN8CJFhKjLDtjpohG3IxYRLqHMJ1PWpBvnSMkFJBQ6Jg==} | |
6536 | - engines: {node: '>=8'} | |
6227 | + terser: 5.18.2 | |
6537 | 6228 | dev: true |
6538 | 6229 | |
6539 | 6230 | /html-tags@3.3.1: |
... | ... | @@ -6557,8 +6248,8 @@ packages: |
6557 | 6248 | dependencies: |
6558 | 6249 | domelementtype: 2.3.0 |
6559 | 6250 | domhandler: 5.0.3 |
6560 | - domutils: 3.0.1 | |
6561 | - entities: 4.4.0 | |
6251 | + domutils: 3.1.0 | |
6252 | + entities: 4.5.0 | |
6562 | 6253 | dev: true |
6563 | 6254 | |
6564 | 6255 | /http-assert@1.5.0: |
... | ... | @@ -6707,6 +6398,11 @@ packages: |
6707 | 6398 | engines: {node: '>=8'} |
6708 | 6399 | dev: true |
6709 | 6400 | |
6401 | + /indent-string@5.0.0: | |
6402 | + resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} | |
6403 | + engines: {node: '>=12'} | |
6404 | + dev: true | |
6405 | + | |
6710 | 6406 | /inflation@2.0.0: |
6711 | 6407 | resolution: {integrity: sha512-m3xv4hJYR2oXw4o4Y5l6P5P16WYmazYof+el6Al3f+YlggGj6qT9kImBAnzDelRALnP5d3h4jGBPKzYCizjZZw==} |
6712 | 6408 | engines: {node: '>= 0.8.0'} |
... | ... | @@ -6733,7 +6429,7 @@ packages: |
6733 | 6429 | resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} |
6734 | 6430 | engines: {node: '>= 0.4'} |
6735 | 6431 | dependencies: |
6736 | - get-intrinsic: 1.2.0 | |
6432 | + get-intrinsic: 1.2.1 | |
6737 | 6433 | has: 1.0.3 |
6738 | 6434 | side-channel: 1.0.4 |
6739 | 6435 | dev: true |
... | ... | @@ -6768,7 +6464,7 @@ packages: |
6768 | 6464 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} |
6769 | 6465 | dependencies: |
6770 | 6466 | call-bind: 1.0.2 |
6771 | - get-intrinsic: 1.2.0 | |
6467 | + get-intrinsic: 1.2.1 | |
6772 | 6468 | is-typed-array: 1.1.10 |
6773 | 6469 | dev: true |
6774 | 6470 | |
... | ... | @@ -6811,8 +6507,8 @@ packages: |
6811 | 6507 | engines: {node: '>= 0.4'} |
6812 | 6508 | dev: true |
6813 | 6509 | |
6814 | - /is-core-module@2.11.0: | |
6815 | - resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} | |
6510 | + /is-core-module@2.12.1: | |
6511 | + resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==} | |
6816 | 6512 | dependencies: |
6817 | 6513 | has: 1.0.3 |
6818 | 6514 | |
... | ... | @@ -6861,6 +6557,12 @@ packages: |
6861 | 6557 | hasBin: true |
6862 | 6558 | dev: true |
6863 | 6559 | |
6560 | + /is-docker@3.0.0: | |
6561 | + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} | |
6562 | + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} | |
6563 | + hasBin: true | |
6564 | + dev: true | |
6565 | + | |
6864 | 6566 | /is-extendable@0.1.1: |
6865 | 6567 | resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} |
6866 | 6568 | engines: {node: '>=0.10.0'} |
... | ... | @@ -6904,6 +6606,14 @@ packages: |
6904 | 6606 | dependencies: |
6905 | 6607 | is-extglob: 2.1.1 |
6906 | 6608 | |
6609 | + /is-inside-container@1.0.0: | |
6610 | + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} | |
6611 | + engines: {node: '>=14.16'} | |
6612 | + hasBin: true | |
6613 | + dependencies: | |
6614 | + is-docker: 3.0.0 | |
6615 | + dev: true | |
6616 | + | |
6907 | 6617 | /is-module@1.0.0: |
6908 | 6618 | resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} |
6909 | 6619 | dev: true |
... | ... | @@ -6973,7 +6683,7 @@ packages: |
6973 | 6683 | /is-reference@1.2.1: |
6974 | 6684 | resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} |
6975 | 6685 | dependencies: |
6976 | - '@types/estree': 1.0.0 | |
6686 | + '@types/estree': 1.0.1 | |
6977 | 6687 | dev: true |
6978 | 6688 | |
6979 | 6689 | /is-regex@1.1.4: |
... | ... | @@ -7086,8 +6796,8 @@ packages: |
7086 | 6796 | resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} |
7087 | 6797 | engines: {node: '>=8'} |
7088 | 6798 | dependencies: |
7089 | - '@babel/core': 7.21.4 | |
7090 | - '@babel/parser': 7.22.5 | |
6799 | + '@babel/core': 7.22.6 | |
6800 | + '@babel/parser': 7.22.6 | |
7091 | 6801 | '@istanbuljs/schema': 0.1.3 |
7092 | 6802 | istanbul-lib-coverage: 3.2.0 |
7093 | 6803 | semver: 6.3.0 |
... | ... | @@ -7132,8 +6842,8 @@ packages: |
7132 | 6842 | '@pkgjs/parseargs': 0.11.0 |
7133 | 6843 | dev: true |
7134 | 6844 | |
7135 | - /jake@10.8.5: | |
7136 | - resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==} | |
6845 | + /jake@10.8.7: | |
6846 | + resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} | |
7137 | 6847 | engines: {node: '>=10'} |
7138 | 6848 | hasBin: true |
7139 | 6849 | dependencies: |
... | ... | @@ -7159,7 +6869,7 @@ packages: |
7159 | 6869 | '@jest/environment': 27.5.1 |
7160 | 6870 | '@jest/test-result': 27.5.1 |
7161 | 6871 | '@jest/types': 27.5.1 |
7162 | - '@types/node': 20.3.3 | |
6872 | + '@types/node': 20.4.0 | |
7163 | 6873 | chalk: 4.1.2 |
7164 | 6874 | co: 4.6.0 |
7165 | 6875 | dedent: 0.7.0 |
... | ... | @@ -7218,10 +6928,10 @@ packages: |
7218 | 6928 | ts-node: |
7219 | 6929 | optional: true |
7220 | 6930 | dependencies: |
7221 | - '@babel/core': 7.21.4 | |
6931 | + '@babel/core': 7.22.6 | |
7222 | 6932 | '@jest/test-sequencer': 27.5.1 |
7223 | 6933 | '@jest/types': 27.5.1 |
7224 | - babel-jest: 27.5.1(@babel/core@7.21.4) | |
6934 | + babel-jest: 27.5.1(@babel/core@7.22.6) | |
7225 | 6935 | chalk: 4.1.2 |
7226 | 6936 | ci-info: 3.8.0 |
7227 | 6937 | deepmerge: 4.3.1 |
... | ... | @@ -7242,7 +6952,7 @@ packages: |
7242 | 6952 | pretty-format: 27.5.1 |
7243 | 6953 | slash: 3.0.0 |
7244 | 6954 | strip-json-comments: 3.1.1 |
7245 | - ts-node: 10.9.1(@types/node@20.3.3)(typescript@5.1.6) | |
6955 | + ts-node: 10.9.1(@types/node@20.4.0)(typescript@5.1.6) | |
7246 | 6956 | transitivePeerDependencies: |
7247 | 6957 | - bufferutil |
7248 | 6958 | - canvas |
... | ... | @@ -7285,7 +6995,7 @@ packages: |
7285 | 6995 | '@jest/environment': 27.5.1 |
7286 | 6996 | '@jest/fake-timers': 27.5.1 |
7287 | 6997 | '@jest/types': 27.5.1 |
7288 | - '@types/node': 20.3.3 | |
6998 | + '@types/node': 20.4.0 | |
7289 | 6999 | jest-mock: 27.5.1 |
7290 | 7000 | jest-util: 27.5.1 |
7291 | 7001 | jsdom: 16.7.0 |
... | ... | @@ -7303,7 +7013,7 @@ packages: |
7303 | 7013 | '@jest/environment': 27.5.1 |
7304 | 7014 | '@jest/fake-timers': 27.5.1 |
7305 | 7015 | '@jest/types': 27.5.1 |
7306 | - '@types/node': 20.3.3 | |
7016 | + '@types/node': 20.4.0 | |
7307 | 7017 | jest-mock: 27.5.1 |
7308 | 7018 | jest-util: 27.5.1 |
7309 | 7019 | dev: false |
... | ... | @@ -7319,7 +7029,7 @@ packages: |
7319 | 7029 | dependencies: |
7320 | 7030 | '@jest/types': 27.5.1 |
7321 | 7031 | '@types/graceful-fs': 4.1.6 |
7322 | - '@types/node': 20.3.3 | |
7032 | + '@types/node': 20.4.0 | |
7323 | 7033 | anymatch: 3.1.3 |
7324 | 7034 | fb-watchman: 2.0.2 |
7325 | 7035 | graceful-fs: 4.2.11 |
... | ... | @@ -7341,7 +7051,7 @@ packages: |
7341 | 7051 | '@jest/source-map': 27.5.1 |
7342 | 7052 | '@jest/test-result': 27.5.1 |
7343 | 7053 | '@jest/types': 27.5.1 |
7344 | - '@types/node': 20.3.3 | |
7054 | + '@types/node': 20.4.0 | |
7345 | 7055 | chalk: 4.1.2 |
7346 | 7056 | co: 4.6.0 |
7347 | 7057 | expect: 27.5.1 |
... | ... | @@ -7380,7 +7090,7 @@ packages: |
7380 | 7090 | resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==} |
7381 | 7091 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7382 | 7092 | dependencies: |
7383 | - '@babel/code-frame': 7.21.4 | |
7093 | + '@babel/code-frame': 7.22.5 | |
7384 | 7094 | '@jest/types': 27.5.1 |
7385 | 7095 | '@types/stack-utils': 2.0.1 |
7386 | 7096 | chalk: 4.1.2 |
... | ... | @@ -7396,7 +7106,7 @@ packages: |
7396 | 7106 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7397 | 7107 | dependencies: |
7398 | 7108 | '@jest/types': 27.5.1 |
7399 | - '@types/node': 20.3.3 | |
7109 | + '@types/node': 20.4.0 | |
7400 | 7110 | dev: false |
7401 | 7111 | |
7402 | 7112 | /jest-pnp-resolver@1.2.3(jest-resolve@27.5.1): |
... | ... | @@ -7438,7 +7148,7 @@ packages: |
7438 | 7148 | jest-pnp-resolver: 1.2.3(jest-resolve@27.5.1) |
7439 | 7149 | jest-util: 27.5.1 |
7440 | 7150 | jest-validate: 27.5.1 |
7441 | - resolve: 1.22.1 | |
7151 | + resolve: 1.22.2 | |
7442 | 7152 | resolve.exports: 1.1.1 |
7443 | 7153 | slash: 3.0.0 |
7444 | 7154 | dev: false |
... | ... | @@ -7452,7 +7162,7 @@ packages: |
7452 | 7162 | '@jest/test-result': 27.5.1 |
7453 | 7163 | '@jest/transform': 27.5.1 |
7454 | 7164 | '@jest/types': 27.5.1 |
7455 | - '@types/node': 20.3.3 | |
7165 | + '@types/node': 20.4.0 | |
7456 | 7166 | chalk: 4.1.2 |
7457 | 7167 | emittery: 0.8.1 |
7458 | 7168 | graceful-fs: 4.2.11 |
... | ... | @@ -7488,7 +7198,7 @@ packages: |
7488 | 7198 | '@jest/types': 27.5.1 |
7489 | 7199 | chalk: 4.1.2 |
7490 | 7200 | cjs-module-lexer: 1.2.3 |
7491 | - collect-v8-coverage: 1.0.1 | |
7201 | + collect-v8-coverage: 1.0.2 | |
7492 | 7202 | execa: 5.1.1 |
7493 | 7203 | glob: 7.2.3 |
7494 | 7204 | graceful-fs: 4.2.11 |
... | ... | @@ -7509,7 +7219,7 @@ packages: |
7509 | 7219 | resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} |
7510 | 7220 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7511 | 7221 | dependencies: |
7512 | - '@types/node': 20.3.3 | |
7222 | + '@types/node': 20.4.0 | |
7513 | 7223 | graceful-fs: 4.2.11 |
7514 | 7224 | dev: false |
7515 | 7225 | |
... | ... | @@ -7517,16 +7227,16 @@ packages: |
7517 | 7227 | resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} |
7518 | 7228 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7519 | 7229 | dependencies: |
7520 | - '@babel/core': 7.21.4 | |
7521 | - '@babel/generator': 7.21.4 | |
7522 | - '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.21.4) | |
7523 | - '@babel/traverse': 7.21.4 | |
7230 | + '@babel/core': 7.22.6 | |
7231 | + '@babel/generator': 7.22.5 | |
7232 | + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.6) | |
7233 | + '@babel/traverse': 7.22.6 | |
7524 | 7234 | '@babel/types': 7.22.5 |
7525 | 7235 | '@jest/transform': 27.5.1 |
7526 | 7236 | '@jest/types': 27.5.1 |
7527 | 7237 | '@types/babel__traverse': 7.20.1 |
7528 | 7238 | '@types/prettier': 2.7.3 |
7529 | - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.4) | |
7239 | + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.6) | |
7530 | 7240 | chalk: 4.1.2 |
7531 | 7241 | expect: 27.5.1 |
7532 | 7242 | graceful-fs: 4.2.11 |
... | ... | @@ -7538,7 +7248,7 @@ packages: |
7538 | 7248 | jest-util: 27.5.1 |
7539 | 7249 | natural-compare: 1.4.0 |
7540 | 7250 | pretty-format: 27.5.1 |
7541 | - semver: 7.5.2 | |
7251 | + semver: 7.5.3 | |
7542 | 7252 | transitivePeerDependencies: |
7543 | 7253 | - supports-color |
7544 | 7254 | dev: false |
... | ... | @@ -7548,7 +7258,7 @@ packages: |
7548 | 7258 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7549 | 7259 | dependencies: |
7550 | 7260 | '@jest/types': 27.5.1 |
7551 | - '@types/node': 20.3.3 | |
7261 | + '@types/node': 20.4.0 | |
7552 | 7262 | chalk: 4.1.2 |
7553 | 7263 | ci-info: 3.8.0 |
7554 | 7264 | graceful-fs: 4.2.11 |
... | ... | @@ -7573,7 +7283,7 @@ packages: |
7573 | 7283 | dependencies: |
7574 | 7284 | '@jest/test-result': 27.5.1 |
7575 | 7285 | '@jest/types': 27.5.1 |
7576 | - '@types/node': 20.3.3 | |
7286 | + '@types/node': 20.4.0 | |
7577 | 7287 | ansi-escapes: 4.3.2 |
7578 | 7288 | chalk: 4.1.2 |
7579 | 7289 | jest-util: 27.5.1 |
... | ... | @@ -7584,7 +7294,7 @@ packages: |
7584 | 7294 | resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} |
7585 | 7295 | engines: {node: '>= 10.13.0'} |
7586 | 7296 | dependencies: |
7587 | - '@types/node': 20.3.3 | |
7297 | + '@types/node': 20.4.0 | |
7588 | 7298 | merge-stream: 2.0.0 |
7589 | 7299 | supports-color: 8.1.1 |
7590 | 7300 | dev: false |
... | ... | @@ -7610,8 +7320,8 @@ packages: |
7610 | 7320 | - utf-8-validate |
7611 | 7321 | dev: false |
7612 | 7322 | |
7613 | - /jiti@1.18.2: | |
7614 | - resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==} | |
7323 | + /jiti@1.19.1: | |
7324 | + resolution: {integrity: sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==} | |
7615 | 7325 | hasBin: true |
7616 | 7326 | dev: true |
7617 | 7327 | |
... | ... | @@ -7680,20 +7390,20 @@ packages: |
7680 | 7390 | optional: true |
7681 | 7391 | dependencies: |
7682 | 7392 | abab: 2.0.6 |
7683 | - acorn: 8.9.0 | |
7393 | + acorn: 8.10.0 | |
7684 | 7394 | acorn-globals: 6.0.0 |
7685 | 7395 | cssom: 0.4.4 |
7686 | 7396 | cssstyle: 2.3.0 |
7687 | 7397 | data-urls: 2.0.0 |
7688 | 7398 | decimal.js: 10.4.3 |
7689 | 7399 | domexception: 2.0.1 |
7690 | - escodegen: 2.0.0 | |
7400 | + escodegen: 2.1.0 | |
7691 | 7401 | form-data: 3.0.1 |
7692 | 7402 | html-encoding-sniffer: 2.0.1 |
7693 | 7403 | http-proxy-agent: 4.0.1 |
7694 | 7404 | https-proxy-agent: 5.0.1 |
7695 | 7405 | is-potential-custom-element-name: 1.0.1 |
7696 | - nwsapi: 2.2.5 | |
7406 | + nwsapi: 2.2.6 | |
7697 | 7407 | parse5: 6.0.1 |
7698 | 7408 | saxes: 5.0.1 |
7699 | 7409 | symbol-tree: 3.2.4 |
... | ... | @@ -7824,10 +7534,10 @@ packages: |
7824 | 7534 | resolution: {integrity: sha512-M8ZvMD8r+kPHy28aWP9VxL7kY8oPWA+C7ZgCljrCMeaU7uX6wsIQgDHskyrAr9sw+jqnIXyv4Mlxri5R4InIJg==} |
7825 | 7535 | dependencies: |
7826 | 7536 | '@types/co-body': 6.1.0 |
7827 | - '@types/formidable': 2.0.5 | |
7537 | + '@types/formidable': 2.0.6 | |
7828 | 7538 | '@types/koa': 2.13.6 |
7829 | 7539 | co-body: 6.1.0 |
7830 | - formidable: 2.1.1 | |
7540 | + formidable: 2.1.2 | |
7831 | 7541 | zod: 3.21.4 |
7832 | 7542 | dev: false |
7833 | 7543 | |
... | ... | @@ -7965,7 +7675,7 @@ packages: |
7965 | 7675 | dependencies: |
7966 | 7676 | copy-anything: 2.0.6 |
7967 | 7677 | parse-node-version: 1.0.1 |
7968 | - tslib: 2.5.0 | |
7678 | + tslib: 2.6.0 | |
7969 | 7679 | optionalDependencies: |
7970 | 7680 | errno: 0.1.8 |
7971 | 7681 | graceful-fs: 4.2.11 |
... | ... | @@ -7988,6 +7698,7 @@ packages: |
7988 | 7698 | dependencies: |
7989 | 7699 | prelude-ls: 1.1.2 |
7990 | 7700 | type-check: 0.3.2 |
7701 | + dev: true | |
7991 | 7702 | |
7992 | 7703 | /levn@0.4.1: |
7993 | 7704 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} |
... | ... | @@ -8018,7 +7729,7 @@ packages: |
8018 | 7729 | dependencies: |
8019 | 7730 | chalk: 5.2.0 |
8020 | 7731 | cli-truncate: 3.1.0 |
8021 | - commander: 10.0.0 | |
7732 | + commander: 10.0.1 | |
8022 | 7733 | debug: 4.3.4 |
8023 | 7734 | execa: 7.1.1 |
8024 | 7735 | lilconfig: 2.1.0 |
... | ... | @@ -8027,7 +7738,7 @@ packages: |
8027 | 7738 | normalize-path: 3.0.0 |
8028 | 7739 | object-inspect: 1.12.3 |
8029 | 7740 | pidtree: 0.6.0 |
8030 | - string-argv: 0.3.1 | |
7741 | + string-argv: 0.3.2 | |
8031 | 7742 | yaml: 2.3.1 |
8032 | 7743 | transitivePeerDependencies: |
8033 | 7744 | - enquirer |
... | ... | @@ -8052,7 +7763,7 @@ packages: |
8052 | 7763 | log-update: 4.0.0 |
8053 | 7764 | p-map: 4.0.0 |
8054 | 7765 | rfdc: 1.3.0 |
8055 | - rxjs: 7.8.0 | |
7766 | + rxjs: 7.8.1 | |
8056 | 7767 | through: 2.3.8 |
8057 | 7768 | wrap-ansi: 7.0.0 |
8058 | 7769 | dev: true |
... | ... | @@ -8207,7 +7918,12 @@ packages: |
8207 | 7918 | /lower-case@2.0.2: |
8208 | 7919 | resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} |
8209 | 7920 | dependencies: |
8210 | - tslib: 2.5.0 | |
7921 | + tslib: 2.6.0 | |
7922 | + dev: true | |
7923 | + | |
7924 | + /lru-cache@10.0.0: | |
7925 | + resolution: {integrity: sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==} | |
7926 | + engines: {node: 14 || >=16.14} | |
8211 | 7927 | dev: true |
8212 | 7928 | |
8213 | 7929 | /lru-cache@4.1.5: |
... | ... | @@ -8228,23 +7944,18 @@ packages: |
8228 | 7944 | dependencies: |
8229 | 7945 | yallist: 4.0.0 |
8230 | 7946 | |
8231 | - /lru-cache@9.1.2: | |
8232 | - resolution: {integrity: sha512-ERJq3FOzJTxBbFjZ7iDs+NiK4VI9Wz+RdrrAB8dio1oV+YvdPzUEE4QNiT2VD51DkIbCYRUUzCRkssXCHqSnKQ==} | |
8233 | - engines: {node: 14 || >=16.14} | |
8234 | - dev: true | |
8235 | - | |
8236 | 7947 | /magic-string@0.27.0: |
8237 | 7948 | resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} |
8238 | 7949 | engines: {node: '>=12'} |
8239 | 7950 | dependencies: |
8240 | - '@jridgewell/sourcemap-codec': 1.4.14 | |
7951 | + '@jridgewell/sourcemap-codec': 1.4.15 | |
8241 | 7952 | dev: true |
8242 | 7953 | |
8243 | - /magic-string@0.30.0: | |
8244 | - resolution: {integrity: sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==} | |
7954 | + /magic-string@0.30.1: | |
7955 | + resolution: {integrity: sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==} | |
8245 | 7956 | engines: {node: '>=12'} |
8246 | 7957 | dependencies: |
8247 | - '@jridgewell/sourcemap-codec': 1.4.14 | |
7958 | + '@jridgewell/sourcemap-codec': 1.4.15 | |
8248 | 7959 | |
8249 | 7960 | /make-dir@2.1.0: |
8250 | 7961 | resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} |
... | ... | @@ -8310,30 +8021,30 @@ packages: |
8310 | 8021 | engines: {node: '>= 0.6'} |
8311 | 8022 | dev: false |
8312 | 8023 | |
8313 | - /meow@8.1.2: | |
8314 | - resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} | |
8315 | - engines: {node: '>=10'} | |
8024 | + /meow@10.1.5: | |
8025 | + resolution: {integrity: sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==} | |
8026 | + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} | |
8316 | 8027 | dependencies: |
8317 | 8028 | '@types/minimist': 1.2.2 |
8318 | - camelcase-keys: 6.2.2 | |
8029 | + camelcase-keys: 7.0.2 | |
8030 | + decamelize: 5.0.1 | |
8319 | 8031 | decamelize-keys: 1.1.1 |
8320 | 8032 | hard-rejection: 2.1.0 |
8321 | 8033 | minimist-options: 4.1.0 |
8322 | 8034 | normalize-package-data: 3.0.3 |
8323 | - read-pkg-up: 7.0.1 | |
8324 | - redent: 3.0.0 | |
8325 | - trim-newlines: 3.0.1 | |
8326 | - type-fest: 0.18.1 | |
8035 | + read-pkg-up: 8.0.0 | |
8036 | + redent: 4.0.0 | |
8037 | + trim-newlines: 4.1.1 | |
8038 | + type-fest: 1.4.0 | |
8327 | 8039 | yargs-parser: 20.2.9 |
8328 | 8040 | dev: true |
8329 | 8041 | |
8330 | - /meow@9.0.0: | |
8331 | - resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==} | |
8042 | + /meow@8.1.2: | |
8043 | + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} | |
8332 | 8044 | engines: {node: '>=10'} |
8333 | 8045 | dependencies: |
8334 | 8046 | '@types/minimist': 1.2.2 |
8335 | 8047 | camelcase-keys: 6.2.2 |
8336 | - decamelize: 1.2.0 | |
8337 | 8048 | decamelize-keys: 1.1.1 |
8338 | 8049 | hard-rejection: 2.1.0 |
8339 | 8050 | minimist-options: 4.1.0 |
... | ... | @@ -8497,28 +8208,28 @@ packages: |
8497 | 8208 | defu: 6.1.2 |
8498 | 8209 | esbuild: 0.17.19 |
8499 | 8210 | fs-extra: 11.1.1 |
8500 | - globby: 13.2.0 | |
8501 | - jiti: 1.18.2 | |
8502 | - mlly: 1.2.0 | |
8211 | + globby: 13.2.2 | |
8212 | + jiti: 1.19.1 | |
8213 | + mlly: 1.4.0 | |
8503 | 8214 | mri: 1.2.0 |
8504 | 8215 | pathe: 1.1.1 |
8505 | 8216 | typescript: 5.1.6 |
8506 | 8217 | dev: true |
8507 | 8218 | |
8508 | - /mlly@1.2.0: | |
8509 | - resolution: {integrity: sha512-+c7A3CV0KGdKcylsI6khWyts/CYrGTrRVo4R/I7u/cUsy0Conxa6LUhiEzVKIw14lc2L5aiO4+SeVe4TeGRKww==} | |
8219 | + /mlly@1.4.0: | |
8220 | + resolution: {integrity: sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==} | |
8510 | 8221 | dependencies: |
8511 | - acorn: 8.8.2 | |
8512 | - pathe: 1.1.0 | |
8222 | + acorn: 8.10.0 | |
8223 | + pathe: 1.1.1 | |
8513 | 8224 | pkg-types: 1.0.3 |
8514 | - ufo: 1.1.1 | |
8225 | + ufo: 1.1.2 | |
8515 | 8226 | dev: true |
8516 | 8227 | |
8517 | 8228 | /mockjs@1.1.0: |
8518 | 8229 | resolution: {integrity: sha512-eQsKcWzIaZzEZ07NuEyO4Nw65g0hdWAyurVol1IPl1gahRwY+svqzfgfey8U8dahLwG44d6/RwEzuK52rSa/JQ==} |
8519 | 8230 | hasBin: true |
8520 | 8231 | dependencies: |
8521 | - commander: 10.0.0 | |
8232 | + commander: 11.0.0 | |
8522 | 8233 | |
8523 | 8234 | /module-details-from-path@1.0.3: |
8524 | 8235 | resolution: {integrity: sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==} |
... | ... | @@ -8588,8 +8299,8 @@ packages: |
8588 | 8299 | - supports-color |
8589 | 8300 | dev: true |
8590 | 8301 | |
8591 | - /nanopop@2.2.0: | |
8592 | - resolution: {integrity: sha512-E9JaHcxh3ere8/BEZHAcnuD10RluTSPyTToBvoFWS9/7DcCx6gyKjbn7M7Bx7E1veCxCuY1iO6h4+gdAf1j73Q==} | |
8302 | + /nanopop@2.3.0: | |
8303 | + resolution: {integrity: sha512-fzN+T2K7/Ah25XU02MJkPZ5q4Tj5FpjmIYq4rvoHX4yb16HzFdCO6JxFFn5Y/oBhQ8no8fUZavnyIv9/+xkBBw==} | |
8593 | 8304 | |
8594 | 8305 | /natural-compare-lite@1.4.0: |
8595 | 8306 | resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} |
... | ... | @@ -8637,15 +8348,15 @@ packages: |
8637 | 8348 | resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} |
8638 | 8349 | dependencies: |
8639 | 8350 | lower-case: 2.0.2 |
8640 | - tslib: 2.5.0 | |
8351 | + tslib: 2.6.0 | |
8641 | 8352 | dev: true |
8642 | 8353 | |
8643 | 8354 | /node-fetch-native@1.2.0: |
8644 | 8355 | resolution: {integrity: sha512-5IAMBTl9p6PaAjYCnMv5FmqIF6GcZnawAVnzaCG0rX2aYZJ4CxEkZNtVPuTRug7fL7wyM5BQYTlAzcyMPi6oTQ==} |
8645 | 8356 | dev: true |
8646 | 8357 | |
8647 | - /node-fetch@2.6.7: | |
8648 | - resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} | |
8358 | + /node-fetch@2.6.12: | |
8359 | + resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==} | |
8649 | 8360 | engines: {node: 4.x || >=6.0.0} |
8650 | 8361 | peerDependencies: |
8651 | 8362 | encoding: ^0.1.0 |
... | ... | @@ -8667,8 +8378,8 @@ packages: |
8667 | 8378 | resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} |
8668 | 8379 | dev: false |
8669 | 8380 | |
8670 | - /node-releases@2.0.10: | |
8671 | - resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==} | |
8381 | + /node-releases@2.0.12: | |
8382 | + resolution: {integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==} | |
8672 | 8383 | |
8673 | 8384 | /nodemon@2.0.22: |
8674 | 8385 | resolution: {integrity: sha512-B8YqaKMmyuCO7BowF1Z1/mkPqLk6cs/l63Ojtd6otKjMx47Dq1utxfRxcavH1I7VSaL8n5BUaoutadnsX3AAVQ==} |
... | ... | @@ -8706,7 +8417,7 @@ packages: |
8706 | 8417 | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} |
8707 | 8418 | dependencies: |
8708 | 8419 | hosted-git-info: 2.8.9 |
8709 | - resolve: 1.22.1 | |
8420 | + resolve: 1.22.2 | |
8710 | 8421 | semver: 5.7.1 |
8711 | 8422 | validate-npm-package-license: 3.0.4 |
8712 | 8423 | dev: true |
... | ... | @@ -8716,8 +8427,8 @@ packages: |
8716 | 8427 | engines: {node: '>=10'} |
8717 | 8428 | dependencies: |
8718 | 8429 | hosted-git-info: 4.1.0 |
8719 | - is-core-module: 2.11.0 | |
8720 | - semver: 7.5.2 | |
8430 | + is-core-module: 2.12.1 | |
8431 | + semver: 7.5.3 | |
8721 | 8432 | validate-npm-package-license: 3.0.4 |
8722 | 8433 | dev: true |
8723 | 8434 | |
... | ... | @@ -8756,8 +8467,8 @@ packages: |
8756 | 8467 | boolbase: 1.0.0 |
8757 | 8468 | dev: true |
8758 | 8469 | |
8759 | - /nwsapi@2.2.5: | |
8760 | - resolution: {integrity: sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==} | |
8470 | + /nwsapi@2.2.6: | |
8471 | + resolution: {integrity: sha512-vSZ4miHQ4FojLjmz2+ux4B0/XA16jfwt/LBzIUftDpRd8tujHFkXjMyLwjS08fIZCzesj2z7gJukOKJwqebJAQ==} | |
8761 | 8472 | dev: false |
8762 | 8473 | |
8763 | 8474 | /object-assign@4.1.1: |
... | ... | @@ -8868,6 +8579,16 @@ packages: |
8868 | 8579 | is-wsl: 2.2.0 |
8869 | 8580 | dev: true |
8870 | 8581 | |
8582 | + /open@9.1.0: | |
8583 | + resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} | |
8584 | + engines: {node: '>=14.16'} | |
8585 | + dependencies: | |
8586 | + default-browser: 4.0.0 | |
8587 | + define-lazy-prop: 3.0.0 | |
8588 | + is-inside-container: 1.0.0 | |
8589 | + is-wsl: 2.2.0 | |
8590 | + dev: true | |
8591 | + | |
8871 | 8592 | /optionator@0.8.3: |
8872 | 8593 | resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} |
8873 | 8594 | engines: {node: '>= 0.8.0'} |
... | ... | @@ -8878,6 +8599,7 @@ packages: |
8878 | 8599 | prelude-ls: 1.1.2 |
8879 | 8600 | type-check: 0.3.2 |
8880 | 8601 | word-wrap: 1.2.3 |
8602 | + dev: true | |
8881 | 8603 | |
8882 | 8604 | /optionator@0.9.3: |
8883 | 8605 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} |
... | ... | @@ -8949,7 +8671,7 @@ packages: |
8949 | 8671 | resolution: {integrity: sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==} |
8950 | 8672 | engines: {node: '>= 8'} |
8951 | 8673 | dependencies: |
8952 | - degenerator: 3.0.3 | |
8674 | + degenerator: 3.0.4 | |
8953 | 8675 | ip: 1.1.8 |
8954 | 8676 | netmask: 2.0.2 |
8955 | 8677 | dev: true |
... | ... | @@ -8966,7 +8688,7 @@ packages: |
8966 | 8688 | resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} |
8967 | 8689 | dependencies: |
8968 | 8690 | dot-case: 3.0.4 |
8969 | - tslib: 2.5.0 | |
8691 | + tslib: 2.6.0 | |
8970 | 8692 | dev: true |
8971 | 8693 | |
8972 | 8694 | /parent-module@1.0.1: |
... | ... | @@ -8980,7 +8702,7 @@ packages: |
8980 | 8702 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} |
8981 | 8703 | engines: {node: '>=8'} |
8982 | 8704 | dependencies: |
8983 | - '@babel/code-frame': 7.21.4 | |
8705 | + '@babel/code-frame': 7.22.5 | |
8984 | 8706 | error-ex: 1.3.2 |
8985 | 8707 | json-parse-even-better-errors: 2.3.1 |
8986 | 8708 | lines-and-columns: 1.2.4 |
... | ... | @@ -9001,7 +8723,7 @@ packages: |
9001 | 8723 | resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} |
9002 | 8724 | dependencies: |
9003 | 8725 | no-case: 3.0.4 |
9004 | - tslib: 2.5.0 | |
8726 | + tslib: 2.6.0 | |
9005 | 8727 | dev: true |
9006 | 8728 | |
9007 | 8729 | /pascalcase@0.1.1: |
... | ... | @@ -9029,11 +8751,11 @@ packages: |
9029 | 8751 | /path-parse@1.0.7: |
9030 | 8752 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} |
9031 | 8753 | |
9032 | - /path-scurry@1.9.2: | |
9033 | - resolution: {integrity: sha512-qSDLy2aGFPm8i4rsbHd4MNyTcrzHFsLQykrtbuGRknZZCBBVXSv2tSCDN2Cg6Rt/GFRw8GoW9y9Ecw5rIPG1sg==} | |
8754 | + /path-scurry@1.10.0: | |
8755 | + resolution: {integrity: sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==} | |
9034 | 8756 | engines: {node: '>=16 || 14 >=14.17'} |
9035 | 8757 | dependencies: |
9036 | - lru-cache: 9.1.2 | |
8758 | + lru-cache: 10.0.0 | |
9037 | 8759 | minipass: 6.0.2 |
9038 | 8760 | dev: true |
9039 | 8761 | |
... | ... | @@ -9055,10 +8777,6 @@ packages: |
9055 | 8777 | resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==} |
9056 | 8778 | dev: true |
9057 | 8779 | |
9058 | - /pathe@1.1.0: | |
9059 | - resolution: {integrity: sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==} | |
9060 | - dev: true | |
9061 | - | |
9062 | 8780 | /pathe@1.1.1: |
9063 | 8781 | resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} |
9064 | 8782 | dev: true |
... | ... | @@ -9118,8 +8836,8 @@ packages: |
9118 | 8836 | vue-demi: 0.14.5(vue@3.3.4) |
9119 | 8837 | dev: false |
9120 | 8838 | |
9121 | - /pirates@4.0.5: | |
9122 | - resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} | |
8839 | + /pirates@4.0.6: | |
8840 | + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} | |
9123 | 8841 | engines: {node: '>= 6'} |
9124 | 8842 | |
9125 | 8843 | /pkg-dir@4.2.0: |
... | ... | @@ -9133,8 +8851,8 @@ packages: |
9133 | 8851 | resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} |
9134 | 8852 | dependencies: |
9135 | 8853 | jsonc-parser: 3.2.0 |
9136 | - mlly: 1.2.0 | |
9137 | - pathe: 1.1.0 | |
8854 | + mlly: 1.4.0 | |
8855 | + pathe: 1.1.1 | |
9138 | 8856 | dev: true |
9139 | 8857 | |
9140 | 8858 | /pm2-axon-rpc@0.7.1: |
... | ... | @@ -9179,7 +8897,7 @@ packages: |
9179 | 8897 | async: 3.2.4 |
9180 | 8898 | debug: 4.3.4 |
9181 | 8899 | pidusage: 2.0.21 |
9182 | - systeminformation: 5.17.12 | |
8900 | + systeminformation: 5.18.6 | |
9183 | 8901 | tx2: 1.0.5 |
9184 | 8902 | transitivePeerDependencies: |
9185 | 8903 | - supports-color |
... | ... | @@ -9202,7 +8920,7 @@ packages: |
9202 | 8920 | cli-tableau: 2.0.1 |
9203 | 8921 | commander: 2.15.1 |
9204 | 8922 | croner: 4.1.97 |
9205 | - dayjs: 1.11.7 | |
8923 | + dayjs: 1.11.9 | |
9206 | 8924 | debug: 4.3.4 |
9207 | 8925 | enquirer: 2.3.6 |
9208 | 8926 | eventemitter2: 5.0.1 |
... | ... | @@ -9215,7 +8933,7 @@ packages: |
9215 | 8933 | pm2-deploy: 1.0.2 |
9216 | 8934 | pm2-multimeter: 0.1.2 |
9217 | 8935 | promptly: 2.2.0 |
9218 | - semver: 7.3.8 | |
8936 | + semver: 7.5.3 | |
9219 | 8937 | source-map-support: 0.5.21 |
9220 | 8938 | sprintf-js: 1.1.2 |
9221 | 8939 | vizion: 2.2.1 |
... | ... | @@ -9270,7 +8988,7 @@ packages: |
9270 | 8988 | optional: true |
9271 | 8989 | dependencies: |
9272 | 8990 | lilconfig: 2.1.0 |
9273 | - ts-node: 10.9.1(@types/node@20.3.3)(typescript@5.1.6) | |
8991 | + ts-node: 10.9.1(@types/node@20.4.0)(typescript@5.1.6) | |
9274 | 8992 | yaml: 2.3.1 |
9275 | 8993 | dev: true |
9276 | 8994 | |
... | ... | @@ -9381,13 +9099,14 @@ packages: |
9381 | 9099 | posthtml-render: 1.4.0 |
9382 | 9100 | dev: true |
9383 | 9101 | |
9384 | - /preact@10.13.2: | |
9385 | - resolution: {integrity: sha512-q44QFLhOhty2Bd0Y46fnYW0gD/cbVM9dUVtNTDKPcdXSMA7jfY+Jpd6rk3GB0lcQss0z5s/6CmVP0Z/hV+g6pw==} | |
9102 | + /preact@10.15.1: | |
9103 | + resolution: {integrity: sha512-qs2ansoQEwzNiV5eAcRT1p1EC/dmEzaATVDJNiB3g2sRDWdA7b7MurXdJjB2+/WQktGWZwxvDrnuRFbWuIr64g==} | |
9386 | 9104 | dev: false |
9387 | 9105 | |
9388 | 9106 | /prelude-ls@1.1.2: |
9389 | 9107 | resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} |
9390 | 9108 | engines: {node: '>= 0.8.0'} |
9109 | + dev: true | |
9391 | 9110 | |
9392 | 9111 | /prelude-ls@1.2.1: |
9393 | 9112 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} |
... | ... | @@ -9398,11 +9117,11 @@ packages: |
9398 | 9117 | resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} |
9399 | 9118 | engines: {node: '>=6.0.0'} |
9400 | 9119 | dependencies: |
9401 | - fast-diff: 1.2.0 | |
9120 | + fast-diff: 1.3.0 | |
9402 | 9121 | dev: true |
9403 | 9122 | |
9404 | - /prettier-plugin-packagejson@2.4.3(prettier@2.8.8): | |
9405 | - resolution: {integrity: sha512-kPeeviJiwy0BgOSk7No8NmzzXfW4R9FYWni6ziA5zc1kGVVrKnBzMZdu2TUhI+I7h8/5Htt3vARYOk7KKJTTNQ==} | |
9123 | + /prettier-plugin-packagejson@2.4.4(prettier@2.8.8): | |
9124 | + resolution: {integrity: sha512-Xk74PATiZDW+kELIh8e8EY0JpwHo9xbSGc4YfIfxmITWAF8yqHa7A+yAQLLMRoQEkKNi+xaMnR8BX2F9zrsczg==} | |
9406 | 9125 | peerDependencies: |
9407 | 9126 | prettier: '>= 1.16.0' |
9408 | 9127 | peerDependenciesMeta: |
... | ... | @@ -9410,7 +9129,7 @@ packages: |
9410 | 9129 | optional: true |
9411 | 9130 | dependencies: |
9412 | 9131 | prettier: 2.8.8 |
9413 | - sort-package-json: 2.4.1 | |
9132 | + sort-package-json: 2.5.0 | |
9414 | 9133 | synckit: 0.8.5 |
9415 | 9134 | dev: true |
9416 | 9135 | |
... | ... | @@ -9509,7 +9228,7 @@ packages: |
9509 | 9228 | engines: {node: '>=10.13.0'} |
9510 | 9229 | hasBin: true |
9511 | 9230 | dependencies: |
9512 | - dijkstrajs: 1.0.2 | |
9231 | + dijkstrajs: 1.0.3 | |
9513 | 9232 | encode-utf8: 1.0.3 |
9514 | 9233 | pngjs: 5.0.0 |
9515 | 9234 | yargs: 15.4.1 |
... | ... | @@ -9543,6 +9262,11 @@ packages: |
9543 | 9262 | engines: {node: '>=8'} |
9544 | 9263 | dev: true |
9545 | 9264 | |
9265 | + /quick-lru@5.1.1: | |
9266 | + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} | |
9267 | + engines: {node: '>=10'} | |
9268 | + dev: true | |
9269 | + | |
9546 | 9270 | /raw-body@2.5.2: |
9547 | 9271 | resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} |
9548 | 9272 | engines: {node: '>= 0.8'} |
... | ... | @@ -9565,6 +9289,15 @@ packages: |
9565 | 9289 | type-fest: 0.8.1 |
9566 | 9290 | dev: true |
9567 | 9291 | |
9292 | + /read-pkg-up@8.0.0: | |
9293 | + resolution: {integrity: sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==} | |
9294 | + engines: {node: '>=12'} | |
9295 | + dependencies: | |
9296 | + find-up: 5.0.0 | |
9297 | + read-pkg: 6.0.0 | |
9298 | + type-fest: 1.4.0 | |
9299 | + dev: true | |
9300 | + | |
9568 | 9301 | /read-pkg@5.2.0: |
9569 | 9302 | resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} |
9570 | 9303 | engines: {node: '>=8'} |
... | ... | @@ -9575,6 +9308,16 @@ packages: |
9575 | 9308 | type-fest: 0.6.0 |
9576 | 9309 | dev: true |
9577 | 9310 | |
9311 | + /read-pkg@6.0.0: | |
9312 | + resolution: {integrity: sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==} | |
9313 | + engines: {node: '>=12'} | |
9314 | + dependencies: | |
9315 | + '@types/normalize-package-data': 2.4.1 | |
9316 | + normalize-package-data: 3.0.3 | |
9317 | + parse-json: 5.2.0 | |
9318 | + type-fest: 1.4.0 | |
9319 | + dev: true | |
9320 | + | |
9578 | 9321 | /read@1.0.7: |
9579 | 9322 | resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} |
9580 | 9323 | engines: {node: '>=0.8'} |
... | ... | @@ -9611,8 +9354,8 @@ packages: |
9611 | 9354 | string_decoder: 1.3.0 |
9612 | 9355 | util-deprecate: 1.0.2 |
9613 | 9356 | |
9614 | - /readdir-glob@1.1.2: | |
9615 | - resolution: {integrity: sha512-6RLVvwJtVwEDfPdn6X6Ille4/lxGl0ATOY4FN/B9nxQcgOazvvI0nodiD19ScKq0PvA/29VpaOQML36o5IzZWA==} | |
9357 | + /readdir-glob@1.1.3: | |
9358 | + resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==} | |
9616 | 9359 | dependencies: |
9617 | 9360 | minimatch: 5.1.6 |
9618 | 9361 | dev: false |
... | ... | @@ -9631,6 +9374,14 @@ packages: |
9631 | 9374 | strip-indent: 3.0.0 |
9632 | 9375 | dev: true |
9633 | 9376 | |
9377 | + /redent@4.0.0: | |
9378 | + resolution: {integrity: sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==} | |
9379 | + engines: {node: '>=12'} | |
9380 | + dependencies: | |
9381 | + indent-string: 5.0.0 | |
9382 | + strip-indent: 4.0.0 | |
9383 | + dev: true | |
9384 | + | |
9634 | 9385 | /regenerator-runtime@0.13.11: |
9635 | 9386 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} |
9636 | 9387 | |
... | ... | @@ -9642,8 +9393,8 @@ packages: |
9642 | 9393 | safe-regex: 1.1.0 |
9643 | 9394 | dev: true |
9644 | 9395 | |
9645 | - /regexp.prototype.flags@1.4.3: | |
9646 | - resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} | |
9396 | + /regexp.prototype.flags@1.5.0: | |
9397 | + resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} | |
9647 | 9398 | engines: {node: '>= 0.4'} |
9648 | 9399 | dependencies: |
9649 | 9400 | call-bind: 1.0.2 |
... | ... | @@ -9681,7 +9432,7 @@ packages: |
9681 | 9432 | dependencies: |
9682 | 9433 | debug: 4.3.4 |
9683 | 9434 | module-details-from-path: 1.0.3 |
9684 | - resolve: 1.22.1 | |
9435 | + resolve: 1.22.2 | |
9685 | 9436 | transitivePeerDependencies: |
9686 | 9437 | - supports-color |
9687 | 9438 | dev: true |
... | ... | @@ -9741,15 +9492,15 @@ packages: |
9741 | 9492 | /resolve@1.19.0: |
9742 | 9493 | resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} |
9743 | 9494 | dependencies: |
9744 | - is-core-module: 2.11.0 | |
9495 | + is-core-module: 2.12.1 | |
9745 | 9496 | path-parse: 1.0.7 |
9746 | 9497 | dev: true |
9747 | 9498 | |
9748 | - /resolve@1.22.1: | |
9749 | - resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} | |
9499 | + /resolve@1.22.2: | |
9500 | + resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} | |
9750 | 9501 | hasBin: true |
9751 | 9502 | dependencies: |
9752 | - is-core-module: 2.11.0 | |
9503 | + is-core-module: 2.12.1 | |
9753 | 9504 | path-parse: 1.0.7 |
9754 | 9505 | supports-preserve-symlinks-flag: 1.0.0 |
9755 | 9506 | |
... | ... | @@ -9793,21 +9544,21 @@ packages: |
9793 | 9544 | engines: {node: '>=14'} |
9794 | 9545 | hasBin: true |
9795 | 9546 | dependencies: |
9796 | - glob: 10.3.0 | |
9547 | + glob: 10.3.1 | |
9797 | 9548 | dev: true |
9798 | 9549 | |
9799 | - /rollup-plugin-dts@5.3.0(rollup@3.25.2)(typescript@5.1.6): | |
9550 | + /rollup-plugin-dts@5.3.0(rollup@3.26.1)(typescript@5.1.6): | |
9800 | 9551 | resolution: {integrity: sha512-8FXp0ZkyZj1iU5klkIJYLjIq/YZSwBoERu33QBDxm/1yw5UU4txrEtcmMkrq+ZiKu3Q4qvPCNqc3ovX6rjqzbQ==} |
9801 | 9552 | engines: {node: '>=v14'} |
9802 | 9553 | peerDependencies: |
9803 | 9554 | rollup: ^3.0.0 |
9804 | 9555 | typescript: ^4.1 || ^5.0 |
9805 | 9556 | dependencies: |
9806 | - magic-string: 0.30.0 | |
9807 | - rollup: 3.25.2 | |
9557 | + magic-string: 0.30.1 | |
9558 | + rollup: 3.26.1 | |
9808 | 9559 | typescript: 5.1.6 |
9809 | 9560 | optionalDependencies: |
9810 | - '@babel/code-frame': 7.21.4 | |
9561 | + '@babel/code-frame': 7.22.5 | |
9811 | 9562 | dev: true |
9812 | 9563 | |
9813 | 9564 | /rollup-plugin-purge-icons@0.9.1: |
... | ... | @@ -9835,7 +9586,7 @@ packages: |
9835 | 9586 | picomatch: 2.3.1 |
9836 | 9587 | rollup: 2.79.1 |
9837 | 9588 | source-map: 0.7.4 |
9838 | - yargs: 17.7.1 | |
9589 | + yargs: 17.7.2 | |
9839 | 9590 | dev: true |
9840 | 9591 | |
9841 | 9592 | /rollup@2.79.1: |
... | ... | @@ -9846,13 +9597,20 @@ packages: |
9846 | 9597 | fsevents: 2.3.2 |
9847 | 9598 | dev: true |
9848 | 9599 | |
9849 | - /rollup@3.25.2: | |
9850 | - resolution: {integrity: sha512-VLnkxZMDr3jpxgtmS8pQZ0UvhslmF4ADq/9w4erkctbgjCqLW9oa89fJuXEs4ZmgyoF7Dm8rMDKSS5b5u2hHUg==} | |
9600 | + /rollup@3.26.1: | |
9601 | + resolution: {integrity: sha512-I5gJCSpSMr3U9wv4D5YA8g7w7cj3eaSDeo7t+JcaFQOmoOUBgu4K9iMp8k3EZnwbJrjQxUMSKxMyB8qEQzzaSg==} | |
9851 | 9602 | engines: {node: '>=14.18.0', npm: '>=8.0.0'} |
9852 | 9603 | hasBin: true |
9853 | 9604 | optionalDependencies: |
9854 | 9605 | fsevents: 2.3.2 |
9855 | 9606 | |
9607 | + /run-applescript@5.0.0: | |
9608 | + resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} | |
9609 | + engines: {node: '>=12'} | |
9610 | + dependencies: | |
9611 | + execa: 5.1.1 | |
9612 | + dev: true | |
9613 | + | |
9856 | 9614 | /run-parallel@1.2.0: |
9857 | 9615 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} |
9858 | 9616 | dependencies: |
... | ... | @@ -9863,10 +9621,10 @@ packages: |
9863 | 9621 | resolution: {integrity: sha512-Arc4hUN896vjkqCYrUXquBFtRZdv1PfLbTYP71efP6butxyQ0kWpiNJyAgsxscmQg1cqvHY32/UCBzXedTpU2g==} |
9864 | 9622 | dev: true |
9865 | 9623 | |
9866 | - /rxjs@7.8.0: | |
9867 | - resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} | |
9624 | + /rxjs@7.8.1: | |
9625 | + resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} | |
9868 | 9626 | dependencies: |
9869 | - tslib: 2.5.0 | |
9627 | + tslib: 2.6.0 | |
9870 | 9628 | dev: true |
9871 | 9629 | |
9872 | 9630 | /safe-buffer@5.1.2: |
... | ... | @@ -9880,7 +9638,7 @@ packages: |
9880 | 9638 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} |
9881 | 9639 | dependencies: |
9882 | 9640 | call-bind: 1.0.2 |
9883 | - get-intrinsic: 1.2.0 | |
9641 | + get-intrinsic: 1.2.1 | |
9884 | 9642 | is-regex: 1.1.4 |
9885 | 9643 | dev: true |
9886 | 9644 | |
... | ... | @@ -9954,6 +9712,14 @@ packages: |
9954 | 9712 | hasBin: true |
9955 | 9713 | dependencies: |
9956 | 9714 | lru-cache: 6.0.0 |
9715 | + dev: true | |
9716 | + | |
9717 | + /semver@7.5.3: | |
9718 | + resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} | |
9719 | + engines: {node: '>=10'} | |
9720 | + hasBin: true | |
9721 | + dependencies: | |
9722 | + lru-cache: 6.0.0 | |
9957 | 9723 | |
9958 | 9724 | /set-blocking@2.0.0: |
9959 | 9725 | resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} |
... | ... | @@ -10008,7 +9774,7 @@ packages: |
10008 | 9774 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} |
10009 | 9775 | dependencies: |
10010 | 9776 | call-bind: 1.0.2 |
10011 | - get-intrinsic: 1.2.0 | |
9777 | + get-intrinsic: 1.2.1 | |
10012 | 9778 | object-inspect: 1.12.3 |
10013 | 9779 | |
10014 | 9780 | /sigmund@1.0.1: |
... | ... | @@ -10138,14 +9904,15 @@ packages: |
10138 | 9904 | resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==} |
10139 | 9905 | dev: true |
10140 | 9906 | |
10141 | - /sort-package-json@2.4.1: | |
10142 | - resolution: {integrity: sha512-Nd3rgLBJcZ4iw7tpuOhwBupG6SvUDU0Fy1cZGAMorA2JmDUb+29Dg5phJK9gapa2Ak9d15w/RuMl/viwX+nKwQ==} | |
9907 | + /sort-package-json@2.5.0: | |
9908 | + resolution: {integrity: sha512-KIsqEi/ameVyhhatpzwialQVSMP1mFzRLJgTBKJDz0duQmhnBDjf8MFyFoIoVnW69SqjH3/bziCSlgiuz2KbHg==} | |
10143 | 9909 | hasBin: true |
10144 | 9910 | dependencies: |
10145 | 9911 | detect-indent: 7.0.1 |
10146 | 9912 | detect-newline: 4.0.0 |
9913 | + get-stdin: 9.0.0 | |
10147 | 9914 | git-hooks-list: 3.1.0 |
10148 | - globby: 13.1.3 | |
9915 | + globby: 13.2.2 | |
10149 | 9916 | is-plain-obj: 4.1.0 |
10150 | 9917 | sort-object-keys: 1.1.3 |
10151 | 9918 | dev: true |
... | ... | @@ -10286,8 +10053,8 @@ packages: |
10286 | 10053 | engines: {node: '>=0.10.0'} |
10287 | 10054 | dev: true |
10288 | 10055 | |
10289 | - /string-argv@0.3.1: | |
10290 | - resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==} | |
10056 | + /string-argv@0.3.2: | |
10057 | + resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} | |
10291 | 10058 | engines: {node: '>=0.6.19'} |
10292 | 10059 | dev: true |
10293 | 10060 | |
... | ... | @@ -10313,7 +10080,7 @@ packages: |
10313 | 10080 | dependencies: |
10314 | 10081 | eastasianwidth: 0.2.0 |
10315 | 10082 | emoji-regex: 9.2.2 |
10316 | - strip-ansi: 7.0.1 | |
10083 | + strip-ansi: 7.1.0 | |
10317 | 10084 | dev: true |
10318 | 10085 | |
10319 | 10086 | /string.prototype.trim@1.2.7: |
... | ... | @@ -10369,8 +10136,8 @@ packages: |
10369 | 10136 | dependencies: |
10370 | 10137 | ansi-regex: 5.0.1 |
10371 | 10138 | |
10372 | - /strip-ansi@7.0.1: | |
10373 | - resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} | |
10139 | + /strip-ansi@7.1.0: | |
10140 | + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} | |
10374 | 10141 | engines: {node: '>=12'} |
10375 | 10142 | dependencies: |
10376 | 10143 | ansi-regex: 6.0.1 |
... | ... | @@ -10402,6 +10169,13 @@ packages: |
10402 | 10169 | min-indent: 1.0.1 |
10403 | 10170 | dev: true |
10404 | 10171 | |
10172 | + /strip-indent@4.0.0: | |
10173 | + resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==} | |
10174 | + engines: {node: '>=12'} | |
10175 | + dependencies: | |
10176 | + min-indent: 1.0.1 | |
10177 | + dev: true | |
10178 | + | |
10405 | 10179 | /strip-json-comments@3.1.1: |
10406 | 10180 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} |
10407 | 10181 | engines: {node: '>=8'} |
... | ... | @@ -10410,7 +10184,7 @@ packages: |
10410 | 10184 | resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} |
10411 | 10185 | dev: true |
10412 | 10186 | |
10413 | - /stylelint-config-html@1.1.0(postcss-html@1.5.0)(stylelint@15.9.0): | |
10187 | + /stylelint-config-html@1.1.0(postcss-html@1.5.0)(stylelint@15.10.1): | |
10414 | 10188 | resolution: {integrity: sha512-IZv4IVESjKLumUGi+HWeb7skgO6/g4VMuAYrJdlqQFndgbj6WJAXPhaysvBiXefX79upBdQVumgYcdd17gCpjQ==} |
10415 | 10189 | engines: {node: ^12 || >=14} |
10416 | 10190 | peerDependencies: |
... | ... | @@ -10418,20 +10192,20 @@ packages: |
10418 | 10192 | stylelint: '>=14.0.0' |
10419 | 10193 | dependencies: |
10420 | 10194 | postcss-html: 1.5.0 |
10421 | - stylelint: 15.9.0 | |
10195 | + stylelint: 15.10.1 | |
10422 | 10196 | dev: true |
10423 | 10197 | |
10424 | - /stylelint-config-property-sort-order-smacss@9.1.0(stylelint@15.9.0): | |
10198 | + /stylelint-config-property-sort-order-smacss@9.1.0(stylelint@15.10.1): | |
10425 | 10199 | resolution: {integrity: sha512-TijYeDoDgHAFjpn9NnziQrmUCGrm2AM4e1HzsdI2mCWBRkQRuewc343YqDwdFgQ5eHoMZ3JRL02i72W3vktuDA==} |
10426 | 10200 | peerDependencies: |
10427 | 10201 | stylelint: ^14.0.0 || ^15.0.0 |
10428 | 10202 | dependencies: |
10429 | 10203 | css-property-sort-order-smacss: 2.2.0 |
10430 | - stylelint: 15.9.0 | |
10431 | - stylelint-order: 6.0.3(stylelint@15.9.0) | |
10204 | + stylelint: 15.10.1 | |
10205 | + stylelint-order: 6.0.3(stylelint@15.10.1) | |
10432 | 10206 | dev: true |
10433 | 10207 | |
10434 | - /stylelint-config-recommended-scss@12.0.0(postcss@8.4.24)(stylelint@15.9.0): | |
10208 | + /stylelint-config-recommended-scss@12.0.0(postcss@8.4.24)(stylelint@15.10.1): | |
10435 | 10209 | resolution: {integrity: sha512-5Bb2mlGy6WLa30oNeKpZvavv2lowJUsUJO25+OA68GFTemlwd1zbFsL7q0bReKipOSU3sG47hKneZ6Nd+ctrFA==} |
10436 | 10210 | peerDependencies: |
10437 | 10211 | postcss: ^8.3.3 |
... | ... | @@ -10442,12 +10216,12 @@ packages: |
10442 | 10216 | dependencies: |
10443 | 10217 | postcss: 8.4.24 |
10444 | 10218 | postcss-scss: 4.0.6(postcss@8.4.24) |
10445 | - stylelint: 15.9.0 | |
10446 | - stylelint-config-recommended: 12.0.0(stylelint@15.9.0) | |
10447 | - stylelint-scss: 5.0.1(stylelint@15.9.0) | |
10219 | + stylelint: 15.10.1 | |
10220 | + stylelint-config-recommended: 12.0.0(stylelint@15.10.1) | |
10221 | + stylelint-scss: 5.0.1(stylelint@15.10.1) | |
10448 | 10222 | dev: true |
10449 | 10223 | |
10450 | - /stylelint-config-recommended-vue@1.4.0(postcss-html@1.5.0)(stylelint@15.9.0): | |
10224 | + /stylelint-config-recommended-vue@1.4.0(postcss-html@1.5.0)(stylelint@15.10.1): | |
10451 | 10225 | resolution: {integrity: sha512-DVJqyX2KvMCn9U0+keL12r7xlsH26K4Vg8NrIZuq5MoF7g82DpMp326Om4E0Q+Il1o+bTHuUyejf2XAI0iD04Q==} |
10452 | 10226 | engines: {node: ^12 || >=14} |
10453 | 10227 | peerDependencies: |
... | ... | @@ -10455,21 +10229,30 @@ packages: |
10455 | 10229 | stylelint: '>=14.0.0' |
10456 | 10230 | dependencies: |
10457 | 10231 | postcss-html: 1.5.0 |
10458 | - semver: 7.3.8 | |
10459 | - stylelint: 15.9.0 | |
10460 | - stylelint-config-html: 1.1.0(postcss-html@1.5.0)(stylelint@15.9.0) | |
10461 | - stylelint-config-recommended: 12.0.0(stylelint@15.9.0) | |
10232 | + semver: 7.5.3 | |
10233 | + stylelint: 15.10.1 | |
10234 | + stylelint-config-html: 1.1.0(postcss-html@1.5.0)(stylelint@15.10.1) | |
10235 | + stylelint-config-recommended: 13.0.0(stylelint@15.10.1) | |
10462 | 10236 | dev: true |
10463 | 10237 | |
10464 | - /stylelint-config-recommended@12.0.0(stylelint@15.9.0): | |
10238 | + /stylelint-config-recommended@12.0.0(stylelint@15.10.1): | |
10465 | 10239 | resolution: {integrity: sha512-x6x8QNARrGO2sG6iURkzqL+Dp+4bJorPMMRNPScdvaUK8PsynriOcMW7AFDKqkWAS5wbue/u8fUT/4ynzcmqdQ==} |
10466 | 10240 | peerDependencies: |
10467 | 10241 | stylelint: ^15.5.0 |
10468 | 10242 | dependencies: |
10469 | - stylelint: 15.9.0 | |
10243 | + stylelint: 15.10.1 | |
10470 | 10244 | dev: true |
10471 | 10245 | |
10472 | - /stylelint-config-standard-scss@10.0.0(postcss@8.4.24)(stylelint@15.9.0): | |
10246 | + /stylelint-config-recommended@13.0.0(stylelint@15.10.1): | |
10247 | + resolution: {integrity: sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==} | |
10248 | + engines: {node: ^14.13.1 || >=16.0.0} | |
10249 | + peerDependencies: | |
10250 | + stylelint: ^15.10.0 | |
10251 | + dependencies: | |
10252 | + stylelint: 15.10.1 | |
10253 | + dev: true | |
10254 | + | |
10255 | + /stylelint-config-standard-scss@10.0.0(postcss@8.4.24)(stylelint@15.10.1): | |
10473 | 10256 | resolution: {integrity: sha512-bChBEo1p3xUVWh/wenJI+josoMk21f2yuLDGzGjmKYcALfl2u3DFltY+n4UHswYiXghqXaA8mRh+bFy/q1hQlg==} |
10474 | 10257 | peerDependencies: |
10475 | 10258 | postcss: ^8.3.3 |
... | ... | @@ -10479,31 +10262,41 @@ packages: |
10479 | 10262 | optional: true |
10480 | 10263 | dependencies: |
10481 | 10264 | postcss: 8.4.24 |
10482 | - stylelint: 15.9.0 | |
10483 | - stylelint-config-recommended-scss: 12.0.0(postcss@8.4.24)(stylelint@15.9.0) | |
10484 | - stylelint-config-standard: 33.0.0(stylelint@15.9.0) | |
10265 | + stylelint: 15.10.1 | |
10266 | + stylelint-config-recommended-scss: 12.0.0(postcss@8.4.24)(stylelint@15.10.1) | |
10267 | + stylelint-config-standard: 33.0.0(stylelint@15.10.1) | |
10485 | 10268 | dev: true |
10486 | 10269 | |
10487 | - /stylelint-config-standard@33.0.0(stylelint@15.9.0): | |
10270 | + /stylelint-config-standard@33.0.0(stylelint@15.10.1): | |
10488 | 10271 | resolution: {integrity: sha512-eyxnLWoXImUn77+ODIuW9qXBDNM+ALN68L3wT1lN2oNspZ7D9NVGlNHb2QCUn4xDug6VZLsh0tF8NyoYzkgTzg==} |
10489 | 10272 | peerDependencies: |
10490 | 10273 | stylelint: ^15.5.0 |
10491 | 10274 | dependencies: |
10492 | - stylelint: 15.9.0 | |
10493 | - stylelint-config-recommended: 12.0.0(stylelint@15.9.0) | |
10275 | + stylelint: 15.10.1 | |
10276 | + stylelint-config-recommended: 12.0.0(stylelint@15.10.1) | |
10277 | + dev: true | |
10278 | + | |
10279 | + /stylelint-config-standard@34.0.0(stylelint@15.10.1): | |
10280 | + resolution: {integrity: sha512-u0VSZnVyW9VSryBG2LSO+OQTjN7zF9XJaAJRX/4EwkmU0R2jYwmBSN10acqZisDitS0CLiEiGjX7+Hrq8TAhfQ==} | |
10281 | + engines: {node: ^14.13.1 || >=16.0.0} | |
10282 | + peerDependencies: | |
10283 | + stylelint: ^15.10.0 | |
10284 | + dependencies: | |
10285 | + stylelint: 15.10.1 | |
10286 | + stylelint-config-recommended: 13.0.0(stylelint@15.10.1) | |
10494 | 10287 | dev: true |
10495 | 10288 | |
10496 | - /stylelint-order@6.0.3(stylelint@15.9.0): | |
10289 | + /stylelint-order@6.0.3(stylelint@15.10.1): | |
10497 | 10290 | resolution: {integrity: sha512-1j1lOb4EU/6w49qZeT2SQVJXm0Ht+Qnq9GMfUa3pMwoyojIWfuA+JUDmoR97Bht1RLn4ei0xtLGy87M7d29B1w==} |
10498 | 10291 | peerDependencies: |
10499 | 10292 | stylelint: ^14.0.0 || ^15.0.0 |
10500 | 10293 | dependencies: |
10501 | 10294 | postcss: 8.4.24 |
10502 | 10295 | postcss-sorting: 8.0.2(postcss@8.4.24) |
10503 | - stylelint: 15.9.0 | |
10296 | + stylelint: 15.10.1 | |
10504 | 10297 | dev: true |
10505 | 10298 | |
10506 | - /stylelint-prettier@3.0.0(prettier@2.8.8)(stylelint@15.9.0): | |
10299 | + /stylelint-prettier@3.0.0(prettier@2.8.8)(stylelint@15.10.1): | |
10507 | 10300 | resolution: {integrity: sha512-kIks1xw6np0zElokMT2kP6ar3S4MBoj6vUtPJuND1pFELMpZxVS/0uHPR4HDAVn0WAD3I5oF0IA3qBFxBpMkLg==} |
10508 | 10301 | engines: {node: ^14.17.0 || >=16.0.0} |
10509 | 10302 | peerDependencies: |
... | ... | @@ -10512,10 +10305,10 @@ packages: |
10512 | 10305 | dependencies: |
10513 | 10306 | prettier: 2.8.8 |
10514 | 10307 | prettier-linter-helpers: 1.0.0 |
10515 | - stylelint: 15.9.0 | |
10308 | + stylelint: 15.10.1 | |
10516 | 10309 | dev: true |
10517 | 10310 | |
10518 | - /stylelint-scss@5.0.1(stylelint@15.9.0): | |
10311 | + /stylelint-scss@5.0.1(stylelint@15.10.1): | |
10519 | 10312 | resolution: {integrity: sha512-n87iCRZrr2J7//I/QFsDXxFLnHKw633U4qvWZ+mOW6KDAp/HLj06H+6+f9zOuTYy+MdGdTuCSDROCpQIhw5fvQ==} |
10520 | 10313 | peerDependencies: |
10521 | 10314 | stylelint: ^14.5.1 || ^15.0.0 |
... | ... | @@ -10524,25 +10317,25 @@ packages: |
10524 | 10317 | postcss-resolve-nested-selector: 0.1.1 |
10525 | 10318 | postcss-selector-parser: 6.0.13 |
10526 | 10319 | postcss-value-parser: 4.2.0 |
10527 | - stylelint: 15.9.0 | |
10320 | + stylelint: 15.10.1 | |
10528 | 10321 | dev: true |
10529 | 10322 | |
10530 | - /stylelint@15.9.0: | |
10531 | - resolution: {integrity: sha512-sXtAZi64CllWr6A+8ymDWnlIaYwuAa7XRmGnJxLQXFNnLjd3Izm4HAD+loKVaZ7cpK6SLxhAUX1lwPJKGCn0mg==} | |
10323 | + /stylelint@15.10.1: | |
10324 | + resolution: {integrity: sha512-CYkzYrCFfA/gnOR+u9kJ1PpzwG10WLVnoxHDuBA/JiwGqdM9+yx9+ou6SE/y9YHtfv1mcLo06fdadHTOx4gBZQ==} | |
10532 | 10325 | engines: {node: ^14.13.1 || >=16.0.0} |
10533 | 10326 | hasBin: true |
10534 | 10327 | dependencies: |
10535 | - '@csstools/css-parser-algorithms': 2.2.0(@csstools/css-tokenizer@2.1.1) | |
10328 | + '@csstools/css-parser-algorithms': 2.3.0(@csstools/css-tokenizer@2.1.1) | |
10536 | 10329 | '@csstools/css-tokenizer': 2.1.1 |
10537 | - '@csstools/media-query-list-parser': 2.1.1(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) | |
10538 | - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) | |
10330 | + '@csstools/media-query-list-parser': 2.1.2(@csstools/css-parser-algorithms@2.3.0)(@csstools/css-tokenizer@2.1.1) | |
10331 | + '@csstools/selector-specificity': 3.0.0(postcss-selector-parser@6.0.13) | |
10539 | 10332 | balanced-match: 2.0.0 |
10540 | 10333 | colord: 2.9.3 |
10541 | 10334 | cosmiconfig: 8.2.0 |
10542 | 10335 | css-functions-list: 3.1.0 |
10543 | 10336 | css-tree: 2.3.1 |
10544 | 10337 | debug: 4.3.4 |
10545 | - fast-glob: 3.2.12 | |
10338 | + fast-glob: 3.3.0 | |
10546 | 10339 | fastest-levenshtein: 1.0.16 |
10547 | 10340 | file-entry-cache: 6.0.1 |
10548 | 10341 | global-modules: 2.0.0 |
... | ... | @@ -10555,12 +10348,11 @@ packages: |
10555 | 10348 | is-plain-object: 5.0.0 |
10556 | 10349 | known-css-properties: 0.27.0 |
10557 | 10350 | mathml-tag-names: 2.1.3 |
10558 | - meow: 9.0.0 | |
10351 | + meow: 10.1.5 | |
10559 | 10352 | micromatch: 4.0.5 |
10560 | 10353 | normalize-path: 3.0.0 |
10561 | 10354 | picocolors: 1.0.0 |
10562 | 10355 | postcss: 8.4.24 |
10563 | - postcss-media-query-parser: 0.2.3 | |
10564 | 10356 | postcss-resolve-nested-selector: 0.1.1 |
10565 | 10357 | postcss-safe-parser: 6.0.0(postcss@8.4.24) |
10566 | 10358 | postcss-selector-parser: 6.0.13 |
... | ... | @@ -10577,16 +10369,17 @@ packages: |
10577 | 10369 | - supports-color |
10578 | 10370 | dev: true |
10579 | 10371 | |
10580 | - /sucrase@3.31.0: | |
10581 | - resolution: {integrity: sha512-6QsHnkqyVEzYcaiHsOKkzOtOgdJcb8i54x6AV2hDwyZcY9ZyykGZVw6L/YN98xC0evwTP6utsWWrKRaa8QlfEQ==} | |
10372 | + /sucrase@3.32.0: | |
10373 | + resolution: {integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==} | |
10582 | 10374 | engines: {node: '>=8'} |
10583 | 10375 | hasBin: true |
10584 | 10376 | dependencies: |
10377 | + '@jridgewell/gen-mapping': 0.3.3 | |
10585 | 10378 | commander: 4.1.1 |
10586 | 10379 | glob: 7.1.6 |
10587 | 10380 | lines-and-columns: 1.2.4 |
10588 | 10381 | mz: 2.7.0 |
10589 | - pirates: 4.0.5 | |
10382 | + pirates: 4.0.6 | |
10590 | 10383 | ts-interface-checker: 0.1.13 |
10591 | 10384 | dev: true |
10592 | 10385 | |
... | ... | @@ -10687,12 +10480,12 @@ packages: |
10687 | 10480 | resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} |
10688 | 10481 | engines: {node: ^14.18.0 || >=16.0.0} |
10689 | 10482 | dependencies: |
10690 | - '@pkgr/utils': 2.3.1 | |
10691 | - tslib: 2.5.0 | |
10483 | + '@pkgr/utils': 2.4.1 | |
10484 | + tslib: 2.6.0 | |
10692 | 10485 | dev: true |
10693 | 10486 | |
10694 | - /systeminformation@5.17.12: | |
10695 | - resolution: {integrity: sha512-I3pfMW2vue53u+X08BNxaJieaHkRoMMKjWetY9lbYJeWFaeWPO6P4FkNc4XOCX8F9vbQ0HqQ25RJoz3U/B7liw==} | |
10487 | + /systeminformation@5.18.6: | |
10488 | + resolution: {integrity: sha512-pLXv6kjJZ1xUcVs9SrCqbQ9y0x1rgRWxBUc8/KxpOp9IRxFGFfzVK5efsxBn/KdYog4C9rPcKk+kHNIL2SB/8Q==} | |
10696 | 10489 | engines: {node: '>=8.0.0'} |
10697 | 10490 | os: [darwin, linux, win32, freebsd, openbsd, netbsd, sunos, android] |
10698 | 10491 | hasBin: true |
... | ... | @@ -10729,13 +10522,13 @@ packages: |
10729 | 10522 | supports-hyperlinks: 2.3.0 |
10730 | 10523 | dev: false |
10731 | 10524 | |
10732 | - /terser@5.16.8: | |
10733 | - resolution: {integrity: sha512-QI5g1E/ef7d+PsDifb+a6nnVgC4F22Bg6T0xrBrz6iloVB4PUkkunp6V8nzoOOZJIzjWVdAGqCdlKlhLq/TbIA==} | |
10525 | + /terser@5.18.2: | |
10526 | + resolution: {integrity: sha512-Ah19JS86ypbJzTzvUCX7KOsEIhDaRONungA4aYBjEP3JZRf4ocuDzTg4QWZnPn9DEMiMYGJPiSOy7aykoCc70w==} | |
10734 | 10527 | engines: {node: '>=10'} |
10735 | 10528 | hasBin: true |
10736 | 10529 | dependencies: |
10737 | - '@jridgewell/source-map': 0.3.2 | |
10738 | - acorn: 8.8.2 | |
10530 | + '@jridgewell/source-map': 0.3.5 | |
10531 | + acorn: 8.10.0 | |
10739 | 10532 | commander: 2.20.3 |
10740 | 10533 | source-map-support: 0.5.21 |
10741 | 10534 | dev: true |
... | ... | @@ -10785,17 +10578,15 @@ packages: |
10785 | 10578 | resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} |
10786 | 10579 | dev: true |
10787 | 10580 | |
10788 | - /tiny-glob@0.2.9: | |
10789 | - resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} | |
10790 | - dependencies: | |
10791 | - globalyzer: 0.1.0 | |
10792 | - globrex: 0.1.2 | |
10793 | - dev: true | |
10794 | - | |
10795 | 10581 | /tinymce@5.10.7: |
10796 | 10582 | resolution: {integrity: sha512-9UUjaO0R7FxcFo0oxnd1lMs7H+D0Eh+dDVo5hKbVe1a+VB0nit97vOqlinj+YwgoBDt6/DSCUoWqAYlLI8BLYA==} |
10797 | 10583 | dev: false |
10798 | 10584 | |
10585 | + /titleize@3.0.0: | |
10586 | + resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} | |
10587 | + engines: {node: '>=12'} | |
10588 | + dev: true | |
10589 | + | |
10799 | 10590 | /tmp@0.2.1: |
10800 | 10591 | resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} |
10801 | 10592 | engines: {node: '>=8.17.0'} |
... | ... | @@ -10903,11 +10694,16 @@ packages: |
10903 | 10694 | engines: {node: '>=8'} |
10904 | 10695 | dev: true |
10905 | 10696 | |
10697 | + /trim-newlines@4.1.1: | |
10698 | + resolution: {integrity: sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==} | |
10699 | + engines: {node: '>=12'} | |
10700 | + dev: true | |
10701 | + | |
10906 | 10702 | /ts-interface-checker@0.1.13: |
10907 | 10703 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} |
10908 | 10704 | dev: true |
10909 | 10705 | |
10910 | - /ts-node@10.9.1(@types/node@20.3.3)(typescript@5.1.6): | |
10706 | + /ts-node@10.9.1(@types/node@20.4.0)(typescript@5.1.6): | |
10911 | 10707 | resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} |
10912 | 10708 | hasBin: true |
10913 | 10709 | peerDependencies: |
... | ... | @@ -10925,9 +10721,9 @@ packages: |
10925 | 10721 | '@tsconfig/node10': 1.0.9 |
10926 | 10722 | '@tsconfig/node12': 1.0.11 |
10927 | 10723 | '@tsconfig/node14': 1.0.3 |
10928 | - '@tsconfig/node16': 1.0.3 | |
10929 | - '@types/node': 20.3.3 | |
10930 | - acorn: 8.8.2 | |
10724 | + '@tsconfig/node16': 1.0.4 | |
10725 | + '@types/node': 20.4.0 | |
10726 | + acorn: 8.10.0 | |
10931 | 10727 | acorn-walk: 8.2.0 |
10932 | 10728 | arg: 4.1.3 |
10933 | 10729 | create-require: 1.1.1 |
... | ... | @@ -10967,8 +10763,8 @@ packages: |
10967 | 10763 | resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==} |
10968 | 10764 | dev: false |
10969 | 10765 | |
10970 | - /tslib@2.5.0: | |
10971 | - resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} | |
10766 | + /tslib@2.6.0: | |
10767 | + resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==} | |
10972 | 10768 | |
10973 | 10769 | /tsscmp@1.0.6: |
10974 | 10770 | resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} |
... | ... | @@ -10991,19 +10787,19 @@ packages: |
10991 | 10787 | typescript: |
10992 | 10788 | optional: true |
10993 | 10789 | dependencies: |
10994 | - bundle-require: 4.0.1(esbuild@0.18.8) | |
10790 | + bundle-require: 4.0.1(esbuild@0.18.11) | |
10995 | 10791 | cac: 6.7.14 |
10996 | 10792 | chokidar: 3.5.3 |
10997 | 10793 | debug: 4.3.4 |
10998 | - esbuild: 0.18.8 | |
10794 | + esbuild: 0.18.11 | |
10999 | 10795 | execa: 5.1.1 |
11000 | 10796 | globby: 11.1.0 |
11001 | 10797 | joycon: 3.1.1 |
11002 | 10798 | postcss-load-config: 4.0.1(ts-node@10.9.1) |
11003 | 10799 | resolve-from: 5.0.0 |
11004 | - rollup: 3.25.2 | |
10800 | + rollup: 3.26.1 | |
11005 | 10801 | source-map: 0.8.0-beta.0 |
11006 | - sucrase: 3.31.0 | |
10802 | + sucrase: 3.32.0 | |
11007 | 10803 | tree-kill: 1.2.2 |
11008 | 10804 | typescript: 5.1.6 |
11009 | 10805 | transitivePeerDependencies: |
... | ... | @@ -11099,6 +10895,7 @@ packages: |
11099 | 10895 | engines: {node: '>= 0.8.0'} |
11100 | 10896 | dependencies: |
11101 | 10897 | prelude-ls: 1.1.2 |
10898 | + dev: true | |
11102 | 10899 | |
11103 | 10900 | /type-check@0.4.0: |
11104 | 10901 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} |
... | ... | @@ -11136,6 +10933,11 @@ packages: |
11136 | 10933 | engines: {node: '>=8'} |
11137 | 10934 | dev: true |
11138 | 10935 | |
10936 | + /type-fest@1.4.0: | |
10937 | + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} | |
10938 | + engines: {node: '>=10'} | |
10939 | + dev: true | |
10940 | + | |
11139 | 10941 | /type-is@1.6.18: |
11140 | 10942 | resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} |
11141 | 10943 | engines: {node: '>= 0.6'} |
... | ... | @@ -11169,10 +10971,6 @@ packages: |
11169 | 10971 | engines: {node: '>=14.17'} |
11170 | 10972 | hasBin: true |
11171 | 10973 | |
11172 | - /ufo@1.1.1: | |
11173 | - resolution: {integrity: sha512-MvlCc4GHrmZdAllBc0iUDowff36Q9Ndw/UzqmEKyrfSzokTd9ZCy1i+IIk5hrYKkjoYVQyNbrw7/F8XJ2rEwTg==} | |
11174 | - dev: true | |
11175 | - | |
11176 | 10974 | /ufo@1.1.2: |
11177 | 10975 | resolution: {integrity: sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==} |
11178 | 10976 | dev: true |
... | ... | @@ -11190,28 +10988,28 @@ packages: |
11190 | 10988 | resolution: {integrity: sha512-J4efk69Aye43tWcBPCsLK7TIRppGrEN4pAlDzRKo3HSE6MgTSTBxSEuE3ccx7ixc62JvGQ/CoFXYqqF2AHozow==} |
11191 | 10989 | hasBin: true |
11192 | 10990 | dependencies: |
11193 | - '@rollup/plugin-alias': 5.0.0(rollup@3.25.2) | |
11194 | - '@rollup/plugin-commonjs': 24.1.0(rollup@3.25.2) | |
11195 | - '@rollup/plugin-json': 6.0.0(rollup@3.25.2) | |
11196 | - '@rollup/plugin-node-resolve': 15.0.2(rollup@3.25.2) | |
11197 | - '@rollup/plugin-replace': 5.0.2(rollup@3.25.2) | |
11198 | - '@rollup/pluginutils': 5.0.2(rollup@3.25.2) | |
11199 | - chalk: 5.2.0 | |
11200 | - consola: 3.1.0 | |
10991 | + '@rollup/plugin-alias': 5.0.0(rollup@3.26.1) | |
10992 | + '@rollup/plugin-commonjs': 24.1.0(rollup@3.26.1) | |
10993 | + '@rollup/plugin-json': 6.0.0(rollup@3.26.1) | |
10994 | + '@rollup/plugin-node-resolve': 15.1.0(rollup@3.26.1) | |
10995 | + '@rollup/plugin-replace': 5.0.2(rollup@3.26.1) | |
10996 | + '@rollup/pluginutils': 5.0.2(rollup@3.26.1) | |
10997 | + chalk: 5.3.0 | |
10998 | + consola: 3.2.3 | |
11201 | 10999 | defu: 6.1.2 |
11202 | 11000 | esbuild: 0.17.19 |
11203 | - globby: 13.2.0 | |
11001 | + globby: 13.2.2 | |
11204 | 11002 | hookable: 5.5.3 |
11205 | - jiti: 1.18.2 | |
11206 | - magic-string: 0.30.0 | |
11003 | + jiti: 1.19.1 | |
11004 | + magic-string: 0.30.1 | |
11207 | 11005 | mkdist: 1.2.0(typescript@5.1.6) |
11208 | - mlly: 1.2.0 | |
11006 | + mlly: 1.4.0 | |
11209 | 11007 | mri: 1.2.0 |
11210 | - pathe: 1.1.0 | |
11008 | + pathe: 1.1.1 | |
11211 | 11009 | pkg-types: 1.0.3 |
11212 | 11010 | pretty-bytes: 6.1.0 |
11213 | - rollup: 3.25.2 | |
11214 | - rollup-plugin-dts: 5.3.0(rollup@3.25.2)(typescript@5.1.6) | |
11011 | + rollup: 3.26.1 | |
11012 | + rollup-plugin-dts: 5.3.0(rollup@3.26.1)(typescript@5.1.6) | |
11215 | 11013 | scule: 1.0.0 |
11216 | 11014 | typescript: 5.1.6 |
11217 | 11015 | untyped: 1.3.2 |
... | ... | @@ -11223,9 +11021,9 @@ packages: |
11223 | 11021 | /unconfig@0.3.9: |
11224 | 11022 | resolution: {integrity: sha512-8yhetFd48M641mxrkWA+C/lZU4N0rCOdlo3dFsyFPnBHBjMJfjT/3eAZBRT2RxCRqeBMAKBVgikejdS6yeBjMw==} |
11225 | 11023 | dependencies: |
11226 | - '@antfu/utils': 0.7.4 | |
11024 | + '@antfu/utils': 0.7.5 | |
11227 | 11025 | defu: 6.1.2 |
11228 | - jiti: 1.18.2 | |
11026 | + jiti: 1.19.1 | |
11229 | 11027 | dev: true |
11230 | 11028 | |
11231 | 11029 | /undefsafe@2.0.5: |
... | ... | @@ -11256,7 +11054,7 @@ packages: |
11256 | 11054 | resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} |
11257 | 11055 | engines: {node: '>= 10.0.0'} |
11258 | 11056 | |
11259 | - /unocss@0.53.4(postcss@8.4.24)(rollup@2.79.1)(vite@4.3.9): | |
11057 | + /unocss@0.53.4(postcss@8.4.24)(rollup@2.79.1)(vite@4.4.0): | |
11260 | 11058 | resolution: {integrity: sha512-UUEi+oh1rngHHP0DVESRS+ScoKMRF8q6GIQrElHb67gqG7GDEGpy3oocIA/6+1t71I4FFvnnxLMGIo9qAD0TEw==} |
11261 | 11059 | engines: {node: '>=14'} |
11262 | 11060 | peerDependencies: |
... | ... | @@ -11265,7 +11063,7 @@ packages: |
11265 | 11063 | '@unocss/webpack': |
11266 | 11064 | optional: true |
11267 | 11065 | dependencies: |
11268 | - '@unocss/astro': 0.53.4(rollup@2.79.1)(vite@4.3.9) | |
11066 | + '@unocss/astro': 0.53.4(rollup@2.79.1)(vite@4.4.0) | |
11269 | 11067 | '@unocss/cli': 0.53.4(rollup@2.79.1) |
11270 | 11068 | '@unocss/core': 0.53.4 |
11271 | 11069 | '@unocss/extractor-arbitrary-variants': 0.53.4 |
... | ... | @@ -11284,7 +11082,7 @@ packages: |
11284 | 11082 | '@unocss/transformer-compile-class': 0.53.4 |
11285 | 11083 | '@unocss/transformer-directives': 0.53.4 |
11286 | 11084 | '@unocss/transformer-variant-group': 0.53.4 |
11287 | - '@unocss/vite': 0.53.4(rollup@2.79.1)(vite@4.3.9) | |
11085 | + '@unocss/vite': 0.53.4(rollup@2.79.1)(vite@4.4.0) | |
11288 | 11086 | transitivePeerDependencies: |
11289 | 11087 | - postcss |
11290 | 11088 | - rollup |
... | ... | @@ -11304,23 +11102,28 @@ packages: |
11304 | 11102 | isobject: 3.0.1 |
11305 | 11103 | dev: true |
11306 | 11104 | |
11105 | + /untildify@4.0.0: | |
11106 | + resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} | |
11107 | + engines: {node: '>=8'} | |
11108 | + dev: true | |
11109 | + | |
11307 | 11110 | /untyped@1.3.2: |
11308 | 11111 | resolution: {integrity: sha512-z219Z65rOGD6jXIvIhpZFfwWdqQckB8sdZec2NO+TkcH1Bph7gL0hwLzRJs1KsOo4Jz4mF9guBXhsEnyEBGVfw==} |
11309 | 11112 | hasBin: true |
11310 | 11113 | dependencies: |
11311 | - '@babel/core': 7.21.4 | |
11312 | - '@babel/standalone': 7.21.4 | |
11114 | + '@babel/core': 7.22.6 | |
11115 | + '@babel/standalone': 7.22.6 | |
11313 | 11116 | '@babel/types': 7.22.5 |
11314 | 11117 | defu: 6.1.2 |
11315 | - jiti: 1.18.2 | |
11118 | + jiti: 1.19.1 | |
11316 | 11119 | mri: 1.2.0 |
11317 | 11120 | scule: 1.0.0 |
11318 | 11121 | transitivePeerDependencies: |
11319 | 11122 | - supports-color |
11320 | 11123 | dev: true |
11321 | 11124 | |
11322 | - /unzipper@0.10.11: | |
11323 | - resolution: {integrity: sha512-+BrAq2oFqWod5IESRjL3S8baohbevGcVA+teAIOYWM3pDVdseogqbzhhvvmiyQrUNKFUnDMtELW3X8ykbyDCJw==} | |
11125 | + /unzipper@0.10.14: | |
11126 | + resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==} | |
11324 | 11127 | dependencies: |
11325 | 11128 | big-integer: 1.6.51 |
11326 | 11129 | binary: 0.3.0 |
... | ... | @@ -11334,13 +11137,13 @@ packages: |
11334 | 11137 | setimmediate: 1.0.5 |
11335 | 11138 | dev: false |
11336 | 11139 | |
11337 | - /update-browserslist-db@1.0.10(browserslist@4.21.5): | |
11338 | - resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} | |
11140 | + /update-browserslist-db@1.0.11(browserslist@4.21.9): | |
11141 | + resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} | |
11339 | 11142 | hasBin: true |
11340 | 11143 | peerDependencies: |
11341 | 11144 | browserslist: '>= 4.21.0' |
11342 | 11145 | dependencies: |
11343 | - browserslist: 4.21.5 | |
11146 | + browserslist: 4.21.9 | |
11344 | 11147 | escalade: 3.1.1 |
11345 | 11148 | picocolors: 1.0.0 |
11346 | 11149 | |
... | ... | @@ -11420,7 +11223,7 @@ packages: |
11420 | 11223 | diff-match-patch: 1.0.5 |
11421 | 11224 | dev: false |
11422 | 11225 | |
11423 | - /vite-plugin-compression@0.5.1(vite@4.3.9): | |
11226 | + /vite-plugin-compression@0.5.1(vite@4.4.0): | |
11424 | 11227 | resolution: {integrity: sha512-5QJKBDc+gNYVqL/skgFAP81Yuzo9R+EAf19d+EtsMF/i8kFUpNi3J/H01QD3Oo8zBQn+NzoCIFkpPLynoOzaJg==} |
11425 | 11228 | peerDependencies: |
11426 | 11229 | vite: '>=2.0.0' |
... | ... | @@ -11428,31 +11231,32 @@ packages: |
11428 | 11231 | chalk: 4.1.2 |
11429 | 11232 | debug: 4.3.4 |
11430 | 11233 | fs-extra: 10.1.0 |
11431 | - vite: 4.3.9(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6) | |
11234 | + vite: 4.4.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6) | |
11432 | 11235 | transitivePeerDependencies: |
11433 | 11236 | - supports-color |
11434 | 11237 | dev: true |
11435 | 11238 | |
11436 | - /vite-plugin-dts@3.0.2(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6)(typescript@5.1.6): | |
11437 | - resolution: {integrity: sha512-NcBOWlP94B79uB8gR2Y3h8Go7nDozqpD8GYkPZ7zTmg4xG8H2H5ituSht8aL4jYMCPwKH0cmqMRtRa2lrsDa9A==} | |
11239 | + /vite-plugin-dts@3.1.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6)(typescript@5.1.6): | |
11240 | + resolution: {integrity: sha512-KMrbt07OVJlsVQyrhJ4gBd+1xlboxJiYyoMJLmEEYlKYAhxmIlb50KlCxYYiNbrEt2FDQ+Ocl0fbFqHmP19gTg==} | |
11438 | 11241 | engines: {node: ^14.18.0 || >=16.0.0} |
11439 | 11242 | peerDependencies: |
11440 | 11243 | typescript: '*' |
11441 | 11244 | dependencies: |
11442 | - '@microsoft/api-extractor': 7.36.0(@types/node@20.3.3) | |
11443 | - '@rollup/pluginutils': 5.0.2(rollup@3.25.2) | |
11444 | - '@rushstack/node-core-library': 3.59.4(@types/node@20.3.3) | |
11445 | - '@vue/language-core': 1.8.1(typescript@5.1.6) | |
11245 | + '@microsoft/api-extractor': 7.36.1(@types/node@20.4.0) | |
11246 | + '@rollup/pluginutils': 5.0.2(rollup@3.26.1) | |
11247 | + '@rushstack/node-core-library': 3.59.5(@types/node@20.4.0) | |
11248 | + '@vue/language-core': 1.8.4(typescript@5.1.6) | |
11446 | 11249 | debug: 4.3.4 |
11447 | 11250 | kolorist: 1.8.0 |
11448 | 11251 | typescript: 5.1.6 |
11449 | - vue-tsc: 1.8.3(typescript@5.1.6) | |
11252 | + vue-tsc: 1.8.4(typescript@5.1.6) | |
11450 | 11253 | optionalDependencies: |
11451 | - rollup: 3.25.2 | |
11452 | - vite: 4.3.9(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6) | |
11254 | + rollup: 3.26.1 | |
11255 | + vite: 4.4.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6) | |
11453 | 11256 | transitivePeerDependencies: |
11454 | 11257 | - '@types/node' |
11455 | 11258 | - less |
11259 | + - lightningcss | |
11456 | 11260 | - sass |
11457 | 11261 | - stylus |
11458 | 11262 | - sugarss |
... | ... | @@ -11460,27 +11264,27 @@ packages: |
11460 | 11264 | - terser |
11461 | 11265 | dev: true |
11462 | 11266 | |
11463 | - /vite-plugin-html@3.2.0(vite@4.3.9): | |
11267 | + /vite-plugin-html@3.2.0(vite@4.4.0): | |
11464 | 11268 | resolution: {integrity: sha512-2VLCeDiHmV/BqqNn5h2V+4280KRgQzCFN47cst3WiNK848klESPQnzuC3okH5XHtgwHH/6s1Ho/YV6yIO0pgoQ==} |
11465 | 11269 | peerDependencies: |
11466 | 11270 | vite: '>=2.0.0' |
11467 | 11271 | dependencies: |
11468 | 11272 | '@rollup/pluginutils': 4.2.1 |
11469 | - colorette: 2.0.19 | |
11273 | + colorette: 2.0.20 | |
11470 | 11274 | connect-history-api-fallback: 1.6.0 |
11471 | 11275 | consola: 2.15.3 |
11472 | 11276 | dotenv: 16.3.1 |
11473 | 11277 | dotenv-expand: 8.0.3 |
11474 | 11278 | ejs: 3.1.9 |
11475 | - fast-glob: 3.2.12 | |
11279 | + fast-glob: 3.3.0 | |
11476 | 11280 | fs-extra: 10.1.0 |
11477 | 11281 | html-minifier-terser: 6.1.0 |
11478 | 11282 | node-html-parser: 5.4.2 |
11479 | 11283 | pathe: 0.2.0 |
11480 | - vite: 4.3.9(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6) | |
11284 | + vite: 4.4.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6) | |
11481 | 11285 | dev: true |
11482 | 11286 | |
11483 | - /vite-plugin-mock@2.9.6(mockjs@1.1.0)(rollup@2.79.1)(vite@4.3.9): | |
11287 | + /vite-plugin-mock@2.9.6(mockjs@1.1.0)(rollup@2.79.1)(vite@4.4.0): | |
11484 | 11288 | resolution: {integrity: sha512-/Rm59oPppe/ncbkSrUuAxIQihlI2YcBmnbR4ST1RA2VzM1C0tEQc1KlbQvnUGhXECAGTaQN2JyasiwXP6EtKgg==} |
11485 | 11289 | engines: {node: '>=12.0.0'} |
11486 | 11290 | peerDependencies: |
... | ... | @@ -11494,16 +11298,16 @@ packages: |
11494 | 11298 | connect: 3.7.0 |
11495 | 11299 | debug: 4.3.4 |
11496 | 11300 | esbuild: 0.11.3 |
11497 | - fast-glob: 3.2.12 | |
11301 | + fast-glob: 3.3.0 | |
11498 | 11302 | mockjs: 1.1.0 |
11499 | 11303 | path-to-regexp: 6.2.1 |
11500 | - vite: 4.3.9(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6) | |
11304 | + vite: 4.4.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6) | |
11501 | 11305 | transitivePeerDependencies: |
11502 | 11306 | - rollup |
11503 | 11307 | - supports-color |
11504 | 11308 | dev: true |
11505 | 11309 | |
11506 | - /vite-plugin-purge-icons@0.9.2(vite@4.3.9): | |
11310 | + /vite-plugin-purge-icons@0.9.2(vite@4.4.0): | |
11507 | 11311 | resolution: {integrity: sha512-vxJEMyNyckqLr/4HPsW9P6BMLUvOVMvjjFz3jLl4Wke1KWE8ITJUxIUwodxaOmEp9L2lxVk5an3TYeycZCfqFw==} |
11508 | 11312 | engines: {node: '>= 12'} |
11509 | 11313 | peerDependencies: |
... | ... | @@ -11512,13 +11316,13 @@ packages: |
11512 | 11316 | '@purge-icons/core': 0.9.1 |
11513 | 11317 | '@purge-icons/generated': 0.9.0 |
11514 | 11318 | rollup-plugin-purge-icons: 0.9.1 |
11515 | - vite: 4.3.9(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6) | |
11319 | + vite: 4.4.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6) | |
11516 | 11320 | transitivePeerDependencies: |
11517 | 11321 | - encoding |
11518 | 11322 | - supports-color |
11519 | 11323 | dev: true |
11520 | 11324 | |
11521 | - /vite-plugin-svg-icons@2.0.1(vite@4.3.9): | |
11325 | + /vite-plugin-svg-icons@2.0.1(vite@4.4.0): | |
11522 | 11326 | resolution: {integrity: sha512-6ktD+DhV6Rz3VtedYvBKKVA2eXF+sAQVaKkKLDSqGUfnhqXl3bj5PPkVTl3VexfTuZy66PmINi8Q6eFnVfRUmA==} |
11523 | 11327 | peerDependencies: |
11524 | 11328 | vite: '>=2.0.0' |
... | ... | @@ -11531,30 +11335,19 @@ packages: |
11531 | 11335 | pathe: 0.2.0 |
11532 | 11336 | svg-baker: 1.7.0 |
11533 | 11337 | svgo: 2.8.0 |
11534 | - vite: 4.3.9(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6) | |
11338 | + vite: 4.4.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6) | |
11535 | 11339 | transitivePeerDependencies: |
11536 | 11340 | - supports-color |
11537 | 11341 | dev: true |
11538 | 11342 | |
11539 | - | |
11540 | - /vite@4.3.9(@types/node@20.3.3)(less@4.1.3)(sass@1.63.6): | |
11541 | - resolution: {integrity: sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==} | |
11542 | - | |
11543 | - /vite-plugin-vue-setup-extend@0.4.0(vite@4.3.0-beta.2): | |
11544 | - resolution: {integrity: sha512-WMbjPCui75fboFoUTHhdbXzu4Y/bJMv5N9QT9a7do3wNMNHHqrk+Tn2jrSJU0LS5fGl/EG+FEDBYVUeWIkDqXQ==} | |
11545 | - peerDependencies: | |
11546 | - vite: '>=2.0.0' | |
11547 | - dependencies: | |
11548 | - '@vue/compiler-sfc': 3.2.47 | |
11549 | - magic-string: 0.25.9 | |
11550 | - vite: 4.3.0-beta.2(@types/node@18.15.11)(less@4.1.3)(sass@1.60.0) | |
11551 | - dev: true | |
11552 | -n | |
11343 | + /vite@4.4.0(@types/node@20.4.0)(less@4.1.3)(sass@1.63.6): | |
11344 | + resolution: {integrity: sha512-Wf+DCEjuM8aGavEYiF77hnbxEZ+0+/jC9nABR46sh5Xi+GYeSvkeEFRiVuI3x+tPjxgZeS91h1jTAQTPFgePpA==} | |
11553 | 11345 | engines: {node: ^14.18.0 || >=16.0.0} |
11554 | 11346 | hasBin: true |
11555 | 11347 | peerDependencies: |
11556 | 11348 | '@types/node': '>= 14' |
11557 | 11349 | less: '*' |
11350 | + lightningcss: ^1.21.0 | |
11558 | 11351 | sass: '*' |
11559 | 11352 | stylus: '*' |
11560 | 11353 | sugarss: '*' |
... | ... | @@ -11564,6 +11357,8 @@ n |
11564 | 11357 | optional: true |
11565 | 11358 | less: |
11566 | 11359 | optional: true |
11360 | + lightningcss: | |
11361 | + optional: true | |
11567 | 11362 | sass: |
11568 | 11363 | optional: true |
11569 | 11364 | stylus: |
... | ... | @@ -11573,11 +11368,11 @@ n |
11573 | 11368 | terser: |
11574 | 11369 | optional: true |
11575 | 11370 | dependencies: |
11576 | - '@types/node': 20.3.3 | |
11577 | - esbuild: 0.17.15 | |
11371 | + '@types/node': 20.4.0 | |
11372 | + esbuild: 0.18.11 | |
11578 | 11373 | less: 4.1.3 |
11579 | 11374 | postcss: 8.4.24 |
11580 | - rollup: 3.25.2 | |
11375 | + rollup: 3.26.1 | |
11581 | 11376 | sass: 1.63.6 |
11582 | 11377 | optionalDependencies: |
11583 | 11378 | fsevents: 2.3.2 |
... | ... | @@ -11592,12 +11387,12 @@ n |
11592 | 11387 | js-git: 0.7.8 |
11593 | 11388 | dev: true |
11594 | 11389 | |
11595 | - /vm2@3.9.14: | |
11596 | - resolution: {integrity: sha512-HgvPHYHeQy8+QhzlFryvSteA4uQLBCOub02mgqdR+0bN/akRZ48TGB1v0aCv7ksyc0HXx16AZtMHKS38alc6TA==} | |
11390 | + /vm2@3.9.19: | |
11391 | + resolution: {integrity: sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==} | |
11597 | 11392 | engines: {node: '>=6.0'} |
11598 | 11393 | hasBin: true |
11599 | 11394 | dependencies: |
11600 | - acorn: 8.9.0 | |
11395 | + acorn: 8.10.0 | |
11601 | 11396 | acorn-walk: 8.2.0 |
11602 | 11397 | dev: true |
11603 | 11398 | |
... | ... | @@ -11628,12 +11423,12 @@ n |
11628 | 11423 | dependencies: |
11629 | 11424 | debug: 4.3.4 |
11630 | 11425 | eslint: 8.44.0 |
11631 | - eslint-scope: 7.1.1 | |
11632 | - eslint-visitor-keys: 3.4.0 | |
11633 | - espree: 9.5.1 | |
11426 | + eslint-scope: 7.2.0 | |
11427 | + eslint-visitor-keys: 3.4.1 | |
11428 | + espree: 9.6.0 | |
11634 | 11429 | esquery: 1.5.0 |
11635 | 11430 | lodash: 4.17.21 |
11636 | - semver: 7.3.8 | |
11431 | + semver: 7.5.3 | |
11637 | 11432 | transitivePeerDependencies: |
11638 | 11433 | - supports-color |
11639 | 11434 | dev: true |
... | ... | @@ -11660,8 +11455,8 @@ n |
11660 | 11455 | vue: 3.3.4 |
11661 | 11456 | dev: false |
11662 | 11457 | |
11663 | - /vue-router@4.2.2(vue@3.3.4): | |
11664 | - resolution: {integrity: sha512-cChBPPmAflgBGmy3tBsjeoe3f3VOSG6naKyY5pjtrqLGbNEXdzCigFUHgBvp9e3ysAtFtEx7OLqcSDh/1Cq2TQ==} | |
11458 | + /vue-router@4.2.3(vue@3.3.4): | |
11459 | + resolution: {integrity: sha512-ynQ/edCZNUC/9koONOSgxGJbEBXZ1nUA0lKI3xTiOd3Ywe4QRCf2q8pGCG1v5ovdzPggoq3M09FxNCZTM9pZfw==} | |
11665 | 11460 | peerDependencies: |
11666 | 11461 | vue: ^3.2.0 |
11667 | 11462 | dependencies: |
... | ... | @@ -11676,15 +11471,15 @@ n |
11676 | 11471 | he: 1.2.0 |
11677 | 11472 | dev: true |
11678 | 11473 | |
11679 | - /vue-tsc@1.8.3(typescript@5.1.6): | |
11680 | - resolution: {integrity: sha512-Ua4DHuYxjudlhCW2nRZtaXbhIDVncRGIbDjZhHpF8Z8vklct/G/35/kAPuGNSOmq0JcvhPAe28Oa7LWaUerZVA==} | |
11474 | + /vue-tsc@1.8.4(typescript@5.1.6): | |
11475 | + resolution: {integrity: sha512-+hgpOhIx11vbi8/AxEdaPj3fiRwN9wy78LpsNNw2V995/IWa6TMyQxHbaw2ZKUpdwjySSHgrT6ohDEhUgFxGYw==} | |
11681 | 11476 | hasBin: true |
11682 | 11477 | peerDependencies: |
11683 | 11478 | typescript: '*' |
11684 | 11479 | dependencies: |
11685 | - '@vue/language-core': 1.8.3(typescript@5.1.6) | |
11686 | - '@vue/typescript': 1.8.3(typescript@5.1.6) | |
11687 | - semver: 7.5.2 | |
11480 | + '@vue/language-core': 1.8.4(typescript@5.1.6) | |
11481 | + '@vue/typescript': 1.8.4(typescript@5.1.6) | |
11482 | + semver: 7.5.3 | |
11688 | 11483 | typescript: 5.1.6 |
11689 | 11484 | dev: true |
11690 | 11485 | |
... | ... | @@ -11728,18 +11523,15 @@ n |
11728 | 11523 | vue: 3.3.4 |
11729 | 11524 | dev: false |
11730 | 11525 | |
11731 | - | |
11732 | 11526 | /vxe-table-plugin-export-xlsx@3.0.4(vxe-table@4.4.5): |
11733 | - | |
11734 | 11527 | resolution: {integrity: sha512-Og/NbXRIb+BS6sJ48oDNVrZnlkcpaCd/zS8JBAZjHLgioWr1Xoob6FEpaeXBebGPPgTumZNUrrBO57JhhYAerA==} |
11735 | 11528 | peerDependencies: |
11736 | 11529 | vxe-table: ^4.0.27 |
11737 | 11530 | dependencies: |
11738 | - | |
11739 | - vxe-table: 4.4.5(vue@3.2.47)(xe-utils@3.5.7) | |
11531 | + vxe-table: 4.4.5(vue@3.3.4)(xe-utils@3.5.11) | |
11740 | 11532 | dev: false |
11741 | 11533 | |
11742 | - /vxe-table@4.4.5(vue@3.2.47)(xe-utils@3.5.7): | |
11534 | + /vxe-table@4.4.5(vue@3.3.4)(xe-utils@3.5.11): | |
11743 | 11535 | resolution: {integrity: sha512-5huB/p0pVgFZjH/abLkWBFnBFe/9mozdQmbXehiGZJHQ6KfzLEsqpKbPsKAnMYEhezPmH4igdhYkXxb7ohWbTA==} |
11744 | 11536 | peerDependencies: |
11745 | 11537 | vue: ^3.2.28 |
... | ... | @@ -11836,8 +11628,8 @@ n |
11836 | 11628 | is-symbol: 1.0.4 |
11837 | 11629 | dev: true |
11838 | 11630 | |
11839 | - /which-module@2.0.0: | |
11840 | - resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==} | |
11631 | + /which-module@2.0.1: | |
11632 | + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} | |
11841 | 11633 | dev: false |
11842 | 11634 | |
11843 | 11635 | /which-typed-array@1.1.9: |
... | ... | @@ -11874,6 +11666,7 @@ n |
11874 | 11666 | /word-wrap@1.2.3: |
11875 | 11667 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} |
11876 | 11668 | engines: {node: '>=0.10.0'} |
11669 | + dev: true | |
11877 | 11670 | |
11878 | 11671 | /word@0.3.0: |
11879 | 11672 | resolution: {integrity: sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==} |
... | ... | @@ -11902,7 +11695,7 @@ n |
11902 | 11695 | dependencies: |
11903 | 11696 | ansi-styles: 6.2.1 |
11904 | 11697 | string-width: 5.1.2 |
11905 | - strip-ansi: 7.0.1 | |
11698 | + strip-ansi: 7.1.0 | |
11906 | 11699 | dev: true |
11907 | 11700 | |
11908 | 11701 | /wrappy@1.0.2: |
... | ... | @@ -12058,7 +11851,7 @@ n |
12058 | 11851 | require-main-filename: 2.0.0 |
12059 | 11852 | set-blocking: 2.0.0 |
12060 | 11853 | string-width: 4.2.3 |
12061 | - which-module: 2.0.0 | |
11854 | + which-module: 2.0.1 | |
12062 | 11855 | y18n: 4.0.3 |
12063 | 11856 | yargs-parser: 18.1.3 |
12064 | 11857 | dev: false |
... | ... | @@ -12076,8 +11869,8 @@ n |
12076 | 11869 | yargs-parser: 20.2.9 |
12077 | 11870 | dev: false |
12078 | 11871 | |
12079 | - /yargs@17.7.1: | |
12080 | - resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==} | |
11872 | + /yargs@17.7.2: | |
11873 | + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} | |
12081 | 11874 | engines: {node: '>=12'} |
12082 | 11875 | dependencies: |
12083 | 11876 | cliui: 8.0.1 | ... | ... |
src/components/Menu/src/index.less
... | ... | @@ -29,8 +29,8 @@ |
29 | 29 | .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open, |
30 | 30 | .ant-menu-submenu-active, |
31 | 31 | .ant-menu-submenu-title:hover { |
32 | - color: #fff; | |
33 | 32 | background-color: @top-menu-active-bg-color !important; |
33 | + color: #fff; | |
34 | 34 | } |
35 | 35 | |
36 | 36 | .ant-menu-item:hover, |
... | ... | @@ -68,7 +68,7 @@ |
68 | 68 | } |
69 | 69 | |
70 | 70 | .ant-menu-inline.ant-menu-sub { |
71 | - box-shadow: unset !important; | |
72 | 71 | transition: unset; |
72 | + box-shadow: unset !important; | |
73 | 73 | } |
74 | 74 | } | ... | ... |
src/components/Modal/src/index.less
1 | +/* stylelint-disable media-feature-range-notation */ | |
1 | 2 | .fullscreen-modal { |
2 | 3 | overflow: hidden; |
3 | 4 | |
4 | 5 | .ant-modal { |
5 | - top: 0 !important; | |
6 | - right: 0 !important; | |
7 | - bottom: 0 !important; | |
8 | - left: 0 !important; | |
6 | + inset: 0 !important; | |
9 | 7 | width: 100% !important; |
10 | 8 | height: 100%; |
11 | 9 | |
... | ... | @@ -63,8 +61,8 @@ |
63 | 61 | } |
64 | 62 | |
65 | 63 | &-close { |
66 | - font-weight: normal; | |
67 | 64 | outline: none; |
65 | + font-weight: normal; | |
68 | 66 | } |
69 | 67 | |
70 | 68 | &-close-x { |
... | ... | @@ -110,16 +108,19 @@ |
110 | 108 | .ant-modal-confirm .ant-modal-body { |
111 | 109 | padding: 24px !important; |
112 | 110 | } |
111 | + | |
113 | 112 | @media screen and (max-height: 600px) { |
114 | 113 | .ant-modal { |
115 | 114 | top: 60px; |
116 | 115 | } |
117 | 116 | } |
117 | + | |
118 | 118 | @media screen and (max-height: 540px) { |
119 | 119 | .ant-modal { |
120 | 120 | top: 30px; |
121 | 121 | } |
122 | 122 | } |
123 | + | |
123 | 124 | @media screen and (max-height: 480px) { |
124 | 125 | .ant-modal { |
125 | 126 | top: 10px; | ... | ... |
src/components/SimpleMenu/src/components/menu.less
... | ... | @@ -7,13 +7,13 @@ |
7 | 7 | |
8 | 8 | .light-border { |
9 | 9 | &::after { |
10 | + content: ''; | |
11 | + display: block; | |
10 | 12 | position: absolute; |
11 | 13 | top: 0; |
12 | 14 | right: 0; |
13 | 15 | bottom: 0; |
14 | - display: block; | |
15 | 16 | width: 2px; |
16 | - content: ''; | |
17 | 17 | background-color: @primary-color; |
18 | 18 | } |
19 | 19 | } |
... | ... | @@ -37,16 +37,16 @@ |
37 | 37 | position: relative; |
38 | 38 | z-index: 1; |
39 | 39 | padding: 12px 20px; |
40 | + transition: all @transition-time @ease-in-out; | |
40 | 41 | color: @menu-dark-subsidiary-color; |
41 | 42 | cursor: pointer; |
42 | - transition: all @transition-time @ease-in-out; | |
43 | 43 | |
44 | 44 | &-icon { |
45 | 45 | position: absolute; |
46 | 46 | top: 50%; |
47 | 47 | right: 18px; |
48 | - transition: transform @transition-time @ease-in-out; | |
49 | 48 | transform: translateY(-50%) rotate(-90deg); |
49 | + transition: transform @transition-time @ease-in-out; | |
50 | 50 | } |
51 | 51 | } |
52 | 52 | |
... | ... | @@ -61,8 +61,8 @@ |
61 | 61 | } |
62 | 62 | |
63 | 63 | &-selected { |
64 | - color: #fff; | |
65 | 64 | background-color: @primary-color !important; |
65 | + color: #fff; | |
66 | 66 | } |
67 | 67 | } |
68 | 68 | } |
... | ... | @@ -78,8 +78,8 @@ |
78 | 78 | |
79 | 79 | &-selected { |
80 | 80 | z-index: 2; |
81 | - color: @primary-color; | |
82 | 81 | background-color: fade(@primary-color, 10); |
82 | + color: @primary-color; | |
83 | 83 | |
84 | 84 | .light-border(); |
85 | 85 | } |
... | ... | @@ -91,15 +91,15 @@ |
91 | 91 | .content(); |
92 | 92 | .content() { |
93 | 93 | .@{menu-prefix-cls} { |
94 | - position: relative; | |
95 | 94 | display: block; |
95 | + position: relative; | |
96 | 96 | width: 100%; |
97 | - padding: 0; | |
98 | 97 | margin: 0; |
99 | - font-size: @font-size-base; | |
98 | + padding: 0; | |
99 | + outline: none; | |
100 | 100 | color: @text-color-base; |
101 | + font-size: @font-size-base; | |
101 | 102 | list-style: none; |
102 | - outline: none; | |
103 | 103 | |
104 | 104 | // .collapse-transition { |
105 | 105 | // transition: @transition-time height ease-in-out, @transition-time padding-top ease-in-out, |
... | ... | @@ -125,15 +125,15 @@ |
125 | 125 | } |
126 | 126 | |
127 | 127 | &-item { |
128 | + display: flex; | |
128 | 129 | position: relative; |
129 | 130 | z-index: 1; |
130 | - display: flex; | |
131 | 131 | align-items: center; |
132 | - font-size: @font-size-base; | |
132 | + outline: none; | |
133 | 133 | color: inherit; |
134 | + font-size: @font-size-base; | |
134 | 135 | list-style: none; |
135 | 136 | cursor: pointer; |
136 | - outline: none; | |
137 | 137 | |
138 | 138 | &:hover, |
139 | 139 | &:active { |
... | ... | @@ -218,8 +218,8 @@ |
218 | 218 | &-light&-vertical &-item { |
219 | 219 | &-active:not(.@{menu-prefix-cls}-submenu) { |
220 | 220 | z-index: 2; |
221 | - color: @primary-color; | |
222 | 221 | background-color: fade(@primary-color, 10); |
222 | + color: @primary-color; | |
223 | 223 | |
224 | 224 | .light-border(); |
225 | 225 | } |
... | ... | @@ -239,12 +239,12 @@ |
239 | 239 | } |
240 | 240 | |
241 | 241 | &::before { |
242 | + content: ''; | |
242 | 243 | position: absolute; |
243 | 244 | top: 0; |
244 | 245 | left: 0; |
245 | 246 | width: 3px; |
246 | 247 | height: 100%; |
247 | - content: ''; | |
248 | 248 | background-color: @primary-color; |
249 | 249 | } |
250 | 250 | } |
... | ... | @@ -254,8 +254,8 @@ |
254 | 254 | &-dark&-vertical &-submenu-title { |
255 | 255 | color: @menu-dark-subsidiary-color; |
256 | 256 | &-active:not(.@{menu-prefix-cls}-submenu) { |
257 | - color: #fff !important; | |
258 | 257 | background-color: @primary-color !important; |
258 | + color: #fff !important; | |
259 | 259 | } |
260 | 260 | |
261 | 261 | &:hover { |
... | ... | @@ -267,16 +267,16 @@ |
267 | 267 | > li.@{menu-prefix-cls}-item-active, |
268 | 268 | .@{menu-prefix-cls}-submenu-active { |
269 | 269 | position: relative; |
270 | - color: #fff !important; | |
271 | 270 | background-color: @sider-dark-darken-bg-color !important; |
271 | + color: #fff !important; | |
272 | 272 | |
273 | 273 | &::before { |
274 | + content: ''; | |
274 | 275 | position: absolute; |
275 | 276 | top: 0; |
276 | 277 | left: 0; |
277 | 278 | width: 3px; |
278 | 279 | height: 100%; |
279 | - content: ''; | |
280 | 280 | background-color: @primary-color; |
281 | 281 | } |
282 | 282 | |
... | ... | @@ -289,8 +289,8 @@ |
289 | 289 | &-dark&-vertical &-submenu &-item { |
290 | 290 | &-active, |
291 | 291 | &-active:hover { |
292 | - color: #fff; | |
293 | 292 | border-right: none; |
293 | + color: #fff; | |
294 | 294 | } |
295 | 295 | } |
296 | 296 | ... | ... |
src/components/SimpleMenu/src/index.less
... | ... | @@ -28,22 +28,22 @@ |
28 | 28 | .@{simple-prefix-cls} { |
29 | 29 | &-sub-title { |
30 | 30 | overflow: hidden; |
31 | + transition: all 0.3s; | |
31 | 32 | text-overflow: ellipsis; |
32 | 33 | white-space: nowrap; |
33 | - transition: all 0.3s; | |
34 | 34 | } |
35 | 35 | |
36 | 36 | &-tag { |
37 | + display: inline-block; | |
37 | 38 | position: absolute; |
38 | 39 | top: calc(50% - 8px); |
39 | 40 | right: 30px; |
40 | - display: inline-block; | |
41 | - padding: 2px 3px; | |
42 | 41 | margin-right: 4px; |
42 | + padding: 2px 3px; | |
43 | + border-radius: 2px; | |
44 | + color: #fff; | |
43 | 45 | font-size: 10px; |
44 | 46 | line-height: 14px; |
45 | - color: #fff; | |
46 | - border-radius: 2px; | |
47 | 47 | |
48 | 48 | &--collapse { |
49 | 49 | top: 6px !important; | ... | ... |
src/components/Tree/style/index.less
... | ... | @@ -17,8 +17,8 @@ |
17 | 17 | } |
18 | 18 | |
19 | 19 | &__title { |
20 | - position: relative; | |
21 | 20 | display: flex; |
21 | + position: relative; | |
22 | 22 | align-items: center; |
23 | 23 | width: 100%; |
24 | 24 | padding-right: 10px; |
... | ... | @@ -35,15 +35,15 @@ |
35 | 35 | } |
36 | 36 | |
37 | 37 | &__actions { |
38 | + display: flex; | |
38 | 39 | position: absolute; |
39 | 40 | //top: 2px; |
40 | 41 | right: 3px; |
41 | - display: flex; | |
42 | 42 | } |
43 | 43 | |
44 | 44 | &__action { |
45 | - margin-left: 4px; | |
46 | 45 | visibility: hidden; |
46 | + margin-left: 4px; | |
47 | 47 | } |
48 | 48 | |
49 | 49 | &-header { | ... | ... |
src/components/VxeTable/src/css/component.scss
1 | +/* stylelint-disable scss/percent-placeholder-pattern */ | |
1 | 2 | %ResetBorder { |
2 | 3 | border: 0; |
3 | 4 | box-shadow: none; |
... | ... | @@ -13,11 +14,13 @@ |
13 | 14 | width: 100%; |
14 | 15 | } |
15 | 16 | } |
17 | + | |
16 | 18 | .vxe-form { |
17 | 19 | .vxe-form--item-content { |
18 | 20 | @extend %CompWidth; |
19 | 21 | } |
20 | 22 | } |
23 | + | |
21 | 24 | .vxe-table--filter-antd-wrapper { |
22 | 25 | & > .ant-input, |
23 | 26 | & > .ant-input-number, |
... | ... | @@ -26,16 +29,20 @@ |
26 | 29 | width: 180px; |
27 | 30 | } |
28 | 31 | } |
32 | + | |
29 | 33 | .vxe-cell, |
30 | 34 | .vxe-tree-cell { |
31 | 35 | @extend %CompWidth; |
36 | + | |
32 | 37 | & > .ant-rate { |
33 | 38 | vertical-align: bottom; |
39 | + | |
34 | 40 | .anticon-star { |
35 | 41 | display: block; |
36 | 42 | } |
37 | 43 | } |
38 | 44 | } |
45 | + | |
39 | 46 | .col--valid-error { |
40 | 47 | & > .vxe-cell, |
41 | 48 | & > .vxe-tree-cell { |
... | ... | @@ -50,55 +57,67 @@ |
50 | 57 | } |
51 | 58 | } |
52 | 59 | } |
60 | + | |
53 | 61 | .vxe-table.cell--highlight { |
54 | 62 | .vxe-cell, |
55 | 63 | .vxe-tree-cell { |
56 | 64 | & > .ant-input, |
57 | 65 | & > .ant-input-number { |
58 | - padding: 0; | |
59 | 66 | @extend %ResetBorder; |
67 | + | |
68 | + padding: 0; | |
60 | 69 | } |
70 | + | |
61 | 71 | & > .ant-select { |
62 | 72 | .ant-input { |
73 | + @extend %ResetBorder; | |
74 | + | |
63 | 75 | padding: 0; |
76 | + } | |
77 | + | |
78 | + .ant-select-selection { | |
64 | 79 | @extend %ResetBorder; |
80 | + | |
81 | + .ant-select-selection__rendered { | |
82 | + margin: 0; | |
83 | + } | |
65 | 84 | } |
66 | 85 | } |
86 | + | |
67 | 87 | & > .ant-input-number { |
68 | 88 | .ant-input-number-input { |
69 | 89 | padding: 0; |
70 | 90 | } |
91 | + | |
71 | 92 | .ant-input-number-handler-wrap, |
72 | 93 | .ant-input-number-handler-down { |
73 | 94 | @extend %ResetBorder; |
74 | 95 | } |
75 | 96 | } |
76 | - & > .ant-select { | |
77 | - .ant-select-selection { | |
78 | - @extend %ResetBorder; | |
79 | - .ant-select-selection__rendered { | |
80 | - margin: 0; | |
81 | - } | |
82 | - } | |
83 | - } | |
97 | + | |
84 | 98 | & > .ant-cascader-picker { |
85 | 99 | .ant-input { |
86 | 100 | @extend %ResetBorder; |
87 | 101 | } |
102 | + | |
88 | 103 | .ant-cascader-picker-label { |
89 | 104 | padding: 0; |
90 | 105 | } |
91 | 106 | } |
107 | + | |
92 | 108 | & > .ant-calendar-picker { |
93 | 109 | .ant-calendar-picker-input { |
94 | - padding: 0; | |
95 | 110 | @extend %ResetBorder; |
111 | + | |
112 | + padding: 0; | |
96 | 113 | } |
97 | 114 | } |
115 | + | |
98 | 116 | & > .ant-time-picker { |
99 | 117 | .ant-time-picker-input { |
100 | - padding: 0; | |
101 | 118 | @extend %ResetBorder; |
119 | + | |
120 | + padding: 0; | |
102 | 121 | } |
103 | 122 | } |
104 | 123 | } | ... | ... |
src/components/VxeTable/src/css/index.scss
1 | -@import './common.scss'; | |
2 | -@import './variable.scss'; | |
3 | -@import './scrollbar.scss'; | |
4 | -@import './toolbar.scss'; | |
5 | -@import './component.scss'; | |
6 | -@import 'vxe-table/styles/index.scss'; | |
1 | +@import './common'; | |
2 | +@import './variable'; | |
3 | +@import './scrollbar'; | |
4 | +@import './toolbar'; | |
5 | +@import './component'; | |
6 | +@import 'vxe-table/styles/index'; | ... | ... |
src/components/VxeTable/src/css/scrollbar.scss
... | ... | @@ -3,22 +3,27 @@ |
3 | 3 | width: 8px; |
4 | 4 | height: 8px; |
5 | 5 | } |
6 | + | |
6 | 7 | ::-webkit-scrollbar-track { |
7 | - background-color: #ffffff; | |
8 | + background-color: #fff; | |
8 | 9 | } |
10 | + | |
9 | 11 | ::-webkit-scrollbar-thumb { |
10 | - background-color: rgba(0, 0, 0, 0.1); | |
11 | - border-radius: 5px; | |
12 | 12 | border: 1px solid #f1f1f1; |
13 | - box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); | |
13 | + border-radius: 5px; | |
14 | + background-color: rgb(0 0 0 / 10%); | |
15 | + box-shadow: inset 0 0 6px rgb(0 0 0 / 30%); | |
14 | 16 | } |
17 | + | |
15 | 18 | ::-webkit-scrollbar-thumb:hover { |
16 | 19 | background-color: #a8a8a8; |
17 | 20 | } |
21 | + | |
18 | 22 | ::-webkit-scrollbar-thumb:active { |
19 | 23 | background-color: #a8a8a8; |
20 | 24 | } |
25 | + | |
21 | 26 | ::-webkit-scrollbar-corner { |
22 | - background-color: #ffffff; | |
27 | + background-color: #fff; | |
23 | 28 | } |
24 | 29 | } | ... | ... |
src/components/VxeTable/src/css/toolbar.scss
... | ... | @@ -5,6 +5,7 @@ |
5 | 5 | .vxe-toolbar .vxe-tools--wrapper, |
6 | 6 | .vxe-toolbar .vxe-tools--operate button:first-child { |
7 | 7 | margin: 0; |
8 | + margin-left: 10px; | |
8 | 9 | } |
9 | 10 | |
10 | 11 | .vxe-toolbar .vxe-tools--wrapper, |
... | ... | @@ -14,11 +15,6 @@ |
14 | 15 | } |
15 | 16 | |
16 | 17 | .vxe-toolbar .vxe-tools--wrapper, |
17 | -.vxe-toolbar .vxe-tools--operate button:first-child { | |
18 | - margin-left: 10px; | |
19 | -} | |
20 | - | |
21 | -.vxe-toolbar .vxe-tools--wrapper, | |
22 | 18 | .vxe-toolbar .vxe-tools--operate .vxe-custom--wrapper { |
23 | 19 | margin-left: 1px; |
24 | 20 | border-radius: 0 !important; | ... | ... |
src/components/VxeTable/src/css/variable.scss
1 | -$vxe-primary-color: rgb(9, 96, 189) !default; | |
2 | -$vxe-table-row-current-background-color: rgba(9, 96, 189, 0.3); | |
3 | -$vxe-table-row-hover-current-background-color: rgba(9, 96, 189, 0.2); | |
4 | -$vxe-table-column-hover-background-color: rgba(9, 96, 189, 0.3); | |
5 | -$vxe-table-column-current-background-color: rgba(9, 96, 189, 0.2); | |
1 | +$vxe-primary-color: rgb(9 96 189) !default; | |
2 | +$vxe-table-row-current-background-color: rgb(9 96 189 / 30%); | |
3 | +$vxe-table-row-hover-current-background-color: rgb(9 96 189 / 20%); | |
4 | +$vxe-table-column-hover-background-color: rgb(9 96 189 / 30%); | |
5 | +$vxe-table-column-current-background-color: rgb(9 96 189 / 20%); | |
6 | 6 | $vxe-table-validate-error-color: #f56c6c; | ... | ... |
src/design/ant/table.less
src/layouts/default/header/index.less
... | ... | @@ -5,14 +5,14 @@ |
5 | 5 | |
6 | 6 | .@{header-prefix-cls} { |
7 | 7 | display: flex; |
8 | + align-items: center; | |
9 | + justify-content: space-between; | |
8 | 10 | height: @header-height; |
9 | - padding: 0; | |
10 | 11 | margin-left: -1px; |
11 | - line-height: @header-height; | |
12 | - color: @white; | |
12 | + padding: 0; | |
13 | 13 | background-color: @white; |
14 | - align-items: center; | |
15 | - justify-content: space-between; | |
14 | + color: @white; | |
15 | + line-height: @header-height; | |
16 | 16 | |
17 | 17 | &--mobile { |
18 | 18 | .@{breadcrumb-prefix-cls}, |
... | ... | @@ -40,15 +40,15 @@ |
40 | 40 | |
41 | 41 | &--fixed { |
42 | 42 | position: fixed; |
43 | + z-index: @layout-header-fixed-z-index; | |
43 | 44 | top: 0; |
44 | 45 | left: 0; |
45 | - z-index: @layout-header-fixed-z-index; | |
46 | 46 | width: 100%; |
47 | 47 | } |
48 | 48 | |
49 | 49 | &-logo { |
50 | - height: @header-height; | |
51 | 50 | min-width: 192px; |
51 | + height: @header-height; | |
52 | 52 | padding: 0 10px; |
53 | 53 | font-size: 14px; |
54 | 54 | |
... | ... | @@ -61,15 +61,15 @@ |
61 | 61 | |
62 | 62 | &-left { |
63 | 63 | display: flex; |
64 | - height: 100%; | |
65 | 64 | align-items: center; |
65 | + height: 100%; | |
66 | 66 | |
67 | 67 | .@{header-trigger-prefix-cls} { |
68 | 68 | display: flex; |
69 | + align-items: center; | |
69 | 70 | height: 100%; |
70 | 71 | padding: 1px 10px 0; |
71 | 72 | cursor: pointer; |
72 | - align-items: center; | |
73 | 73 | |
74 | 74 | .anticon { |
75 | 75 | font-size: 16px; |
... | ... | @@ -94,25 +94,25 @@ |
94 | 94 | } |
95 | 95 | |
96 | 96 | &-menu { |
97 | - height: 100%; | |
98 | - min-width: 0; | |
99 | 97 | flex: 1; |
100 | 98 | align-items: center; |
99 | + min-width: 0; | |
100 | + height: 100%; | |
101 | 101 | } |
102 | 102 | |
103 | 103 | &-action { |
104 | 104 | display: flex; |
105 | - min-width: 180px; | |
106 | 105 | // padding-right: 12px; |
107 | 106 | align-items: center; |
107 | + min-width: 180px; | |
108 | 108 | |
109 | 109 | &__item { |
110 | 110 | display: flex !important; |
111 | + align-items: center; | |
111 | 112 | height: @header-height; |
112 | 113 | padding: 0 2px; |
113 | 114 | font-size: 1.2em; |
114 | 115 | cursor: pointer; |
115 | - align-items: center; | |
116 | 116 | |
117 | 117 | .ant-badge { |
118 | 118 | height: @header-height; |
... | ... | @@ -131,9 +131,9 @@ |
131 | 131 | } |
132 | 132 | |
133 | 133 | &--light { |
134 | - background-color: @white !important; | |
135 | 134 | border-bottom: 1px solid @header-light-bottom-border-color; |
136 | 135 | border-left: 1px solid @header-light-bottom-border-color; |
136 | + background-color: @white !important; | |
137 | 137 | |
138 | 138 | .@{header-prefix-cls}-logo { |
139 | 139 | color: @text-color-base; |
... | ... | @@ -165,9 +165,9 @@ |
165 | 165 | } |
166 | 166 | |
167 | 167 | &--dark { |
168 | - background-color: @header-dark-bg-color !important; | |
169 | 168 | // border-bottom: 1px solid @border-color-base; |
170 | 169 | border-left: 1px solid @border-color-base; |
170 | + background-color: @header-dark-bg-color !important; | |
171 | 171 | .@{header-prefix-cls}-logo { |
172 | 172 | &:hover { |
173 | 173 | background-color: @header-dark-bg-hover-color; | ... | ... |
src/layouts/default/tabs/index.less
... | ... | @@ -19,9 +19,9 @@ html[data-theme='light'] { |
19 | 19 | .@{prefix-cls} { |
20 | 20 | z-index: 10; |
21 | 21 | height: @multiple-height + 2; |
22 | - line-height: @multiple-height + 2; | |
23 | - background-color: @component-background; | |
24 | 22 | border-bottom: 1px solid @border-color-base; |
23 | + background-color: @component-background; | |
24 | + line-height: @multiple-height + 2; | |
25 | 25 | |
26 | 26 | .ant-tabs-small { |
27 | 27 | height: @multiple-height; |
... | ... | @@ -29,11 +29,11 @@ html[data-theme='light'] { |
29 | 29 | |
30 | 30 | .ant-tabs.ant-tabs-card { |
31 | 31 | .ant-tabs-nav { |
32 | - padding-top: 2px; | |
33 | 32 | height: @multiple-height; |
34 | 33 | margin: 0; |
35 | - background-color: @component-background; | |
34 | + padding-top: 2px; | |
36 | 35 | border: 0; |
36 | + background-color: @component-background; | |
37 | 37 | box-shadow: none; |
38 | 38 | |
39 | 39 | .ant-tabs-nav-container { |
... | ... | @@ -44,10 +44,10 @@ html[data-theme='light'] { |
44 | 44 | .ant-tabs-tab { |
45 | 45 | height: calc(@multiple-height - 2px); |
46 | 46 | padding-right: 12px; |
47 | - line-height: calc(@multiple-height - 2px); | |
48 | - color: @text-color-base; | |
49 | - background-color: @component-background; | |
50 | 47 | transition: none; |
48 | + background-color: @component-background; | |
49 | + color: @text-color-base; | |
50 | + line-height: calc(@multiple-height - 2px); | |
51 | 51 | |
52 | 52 | &:hover { |
53 | 53 | .ant-tabs-tab-remove { |
... | ... | @@ -58,12 +58,12 @@ html[data-theme='light'] { |
58 | 58 | .ant-tabs-tab-remove { |
59 | 59 | width: 8px; |
60 | 60 | height: 28px; |
61 | - font-size: 12px; | |
62 | - color: inherit; | |
63 | - opacity: 0; | |
64 | - transition: none; | |
65 | - margin-left: 2px; | |
66 | 61 | margin-right: -4px; |
62 | + margin-left: 2px; | |
63 | + transition: none; | |
64 | + opacity: 0; | |
65 | + color: inherit; | |
66 | + font-size: 12px; | |
67 | 67 | |
68 | 68 | &:hover { |
69 | 69 | svg { |
... | ... | @@ -92,9 +92,9 @@ html[data-theme='light'] { |
92 | 92 | .ant-tabs-tab-active { |
93 | 93 | position: relative; |
94 | 94 | padding-left: 18px; |
95 | - background: @primary-color; | |
96 | - border: 0; | |
97 | 95 | transition: none; |
96 | + border: 0; | |
97 | + background: @primary-color; | |
98 | 98 | |
99 | 99 | span { |
100 | 100 | color: @white !important; |
... | ... | @@ -147,11 +147,11 @@ html[data-theme='light'] { |
147 | 147 | display: inline-block; |
148 | 148 | width: 36px; |
149 | 149 | height: @multiple-height; |
150 | - line-height: @multiple-height; | |
150 | + border-left: 1px solid @border-color-base; | |
151 | 151 | color: @text-color-secondary; |
152 | + line-height: @multiple-height; | |
152 | 153 | text-align: center; |
153 | 154 | cursor: pointer; |
154 | - border-left: 1px solid @border-color-base; | |
155 | 155 | |
156 | 156 | &:hover { |
157 | 157 | color: @text-color-base; |
... | ... | @@ -172,8 +172,8 @@ html[data-theme='light'] { |
172 | 172 | display: inline-block; |
173 | 173 | width: 100%; |
174 | 174 | height: @multiple-height - 2; |
175 | - padding-left: 0; | |
176 | 175 | margin-left: -10px; |
176 | + padding-left: 0; | |
177 | 177 | font-size: 12px; |
178 | 178 | cursor: pointer; |
179 | 179 | user-select: none; | ... | ... |
src/views/form-design/components/VFormDesign/styles/drag.less
... | ... | @@ -3,36 +3,36 @@ |
3 | 3 | overflow: auto; |
4 | 4 | |
5 | 5 | :deep(.list-main) { |
6 | - overflow: hidden; | |
7 | - padding: 5px; | |
8 | 6 | position: relative; |
7 | + padding: 5px; | |
8 | + overflow: hidden; | |
9 | 9 | |
10 | 10 | .moving { |
11 | + position: relative; | |
12 | + box-sizing: border-box; | |
11 | 13 | // 拖放移动中; |
12 | 14 | min-height: 35px; |
13 | - box-sizing: border-box; | |
14 | - overflow: hidden; | |
15 | 15 | padding: 0 !important; |
16 | - position: relative; | |
16 | + overflow: hidden; | |
17 | 17 | |
18 | 18 | &::before { |
19 | 19 | content: ''; |
20 | - height: 5px; | |
21 | - width: 100%; | |
22 | - background-color: @primary-color; | |
23 | 20 | position: absolute; |
24 | 21 | top: 0; |
25 | 22 | right: 0; |
23 | + width: 100%; | |
24 | + height: 5px; | |
25 | + background-color: @primary-color; | |
26 | 26 | } |
27 | 27 | } |
28 | 28 | |
29 | 29 | .drag-move-box { |
30 | 30 | position: relative; |
31 | 31 | box-sizing: border-box; |
32 | + min-height: 60px; | |
32 | 33 | padding: 8px; |
33 | 34 | overflow: hidden; |
34 | 35 | transition: all 0.3s; |
35 | - min-height: 60px; | |
36 | 36 | |
37 | 37 | &:hover { |
38 | 38 | background-color: @primary-hover-bg-color; |
... | ... | @@ -41,18 +41,18 @@ |
41 | 41 | // 选择时 start |
42 | 42 | &::before { |
43 | 43 | content: ''; |
44 | - height: 5px; | |
45 | - width: 100%; | |
46 | - background-color: @primary-color; | |
47 | 44 | position: absolute; |
48 | 45 | top: 0; |
49 | 46 | right: -100%; |
47 | + width: 100%; | |
48 | + height: 5px; | |
50 | 49 | transition: all 0.3s; |
50 | + background-color: @primary-color; | |
51 | 51 | } |
52 | 52 | |
53 | 53 | &.active { |
54 | - background-color: @primary-hover-bg-color; | |
55 | 54 | outline-offset: 0; |
55 | + background-color: @primary-hover-bg-color; | |
56 | 56 | |
57 | 57 | &::before { |
58 | 58 | right: 0; |
... | ... | @@ -68,10 +68,10 @@ |
68 | 68 | &::before { |
69 | 69 | content: ''; |
70 | 70 | position: absolute; |
71 | - width: 100%; | |
72 | - height: 100%; | |
73 | 71 | top: 0; |
74 | 72 | left: 0; |
73 | + width: 100%; | |
74 | + height: 100%; | |
75 | 75 | } |
76 | 76 | |
77 | 77 | .ant-form-item { |
... | ... | @@ -84,11 +84,11 @@ |
84 | 84 | .show-key-box { |
85 | 85 | // 显示key |
86 | 86 | position: absolute; |
87 | - bottom: 2px; | |
88 | 87 | right: 5px; |
89 | - font-size: 14px; | |
88 | + bottom: 2px; | |
90 | 89 | // z-index: 999; |
91 | 90 | color: @primary-color; |
91 | + font-size: 14px; | |
92 | 92 | } |
93 | 93 | |
94 | 94 | .copy, |
... | ... | @@ -97,11 +97,11 @@ |
97 | 97 | top: 0; |
98 | 98 | width: 30px; |
99 | 99 | height: 30px; |
100 | - line-height: 30px; | |
101 | - text-align: center; | |
102 | - color: #fff; | |
103 | 100 | // z-index: 989; |
104 | 101 | transition: all 0.3s; |
102 | + color: #fff; | |
103 | + line-height: 30px; | |
104 | + text-align: center; | |
105 | 105 | |
106 | 106 | &.unactivated { |
107 | 107 | opacity: 0 !important; |
... | ... | @@ -114,8 +114,8 @@ |
114 | 114 | } |
115 | 115 | |
116 | 116 | .copy { |
117 | - border-radius: 0 0 0 8px; | |
118 | 117 | right: 30px; |
118 | + border-radius: 0 0 0 8px; | |
119 | 119 | background-color: @primary-color; |
120 | 120 | } |
121 | 121 | |
... | ... | @@ -128,11 +128,11 @@ |
128 | 128 | .grid-box { |
129 | 129 | position: relative; |
130 | 130 | box-sizing: border-box; |
131 | - padding: 5px; | |
132 | - background-color: @layout-background-color; | |
133 | 131 | width: 100%; |
134 | - transition: all 0.3s; | |
132 | + padding: 5px; | |
135 | 133 | overflow: hidden; |
134 | + transition: all 0.3s; | |
135 | + background-color: @layout-background-color; | |
136 | 136 | |
137 | 137 | .form-item-box { |
138 | 138 | position: relative; |
... | ... | @@ -150,14 +150,14 @@ |
150 | 150 | |
151 | 151 | .grid-col { |
152 | 152 | .draggable-box { |
153 | - min-height: 80px; | |
154 | 153 | min-width: 50px; |
154 | + min-height: 80px; | |
155 | 155 | border: 1px #ccc dashed; |
156 | 156 | // background: #fff; |
157 | 157 | |
158 | 158 | .list-main { |
159 | - min-height: 83px; | |
160 | 159 | position: relative; |
160 | + min-height: 83px; | |
161 | 161 | border: 1px #ccc dashed; |
162 | 162 | } |
163 | 163 | } |
... | ... | @@ -167,22 +167,22 @@ |
167 | 167 | // 选择时 start |
168 | 168 | &::before { |
169 | 169 | content: ''; |
170 | - height: 5px; | |
171 | - width: 100%; | |
172 | - background: transparent; | |
173 | 170 | position: absolute; |
174 | 171 | top: 0; |
175 | 172 | right: -100%; |
173 | + width: 100%; | |
174 | + height: 5px; | |
176 | 175 | transition: all 0.3s; |
176 | + background: transparent; | |
177 | 177 | } |
178 | 178 | |
179 | 179 | &.active { |
180 | - background-color: @layout-hover-bg-color; | |
181 | 180 | outline-offset: 0; |
181 | + background-color: @layout-hover-bg-color; | |
182 | 182 | |
183 | 183 | &::before { |
184 | - background-color: @layout-color; | |
185 | 184 | right: 0; |
185 | + background-color: @layout-color; | |
186 | 186 | } |
187 | 187 | } |
188 | 188 | // 选择时 end |
... | ... | @@ -193,11 +193,11 @@ |
193 | 193 | top: 0; |
194 | 194 | width: 30px; |
195 | 195 | height: 30px; |
196 | - line-height: 30px; | |
197 | - text-align: center; | |
198 | - color: #fff; | |
199 | 196 | // z-index: 989; |
200 | 197 | transition: all 0.3s; |
198 | + color: #fff; | |
199 | + line-height: 30px; | |
200 | + text-align: center; | |
201 | 201 | |
202 | 202 | &.unactivated { |
203 | 203 | opacity: 0 !important; |
... | ... | @@ -210,8 +210,8 @@ |
210 | 210 | } |
211 | 211 | |
212 | 212 | > .copy { |
213 | - border-radius: 0 0 0 8px; | |
214 | 213 | right: 30px; |
214 | + border-radius: 0 0 0 8px; | |
215 | 215 | background-color: @layout-color; |
216 | 216 | } |
217 | 217 | ... | ... |