[READ-ONLY] Mirror of https://github.com/danielroe/nuxt-vitest. An vitest environment with support for testing code that needs a Nuxt runtime environment
nuxt nuxt-module testing unit-testing vitest
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: add `setupState` type to `mountSuspended` return type (#400)

+96 -599
+4 -1
.github/workflows/ci.yml
··· 46 46 run: pnpm build 47 47 48 48 - name: 🧪 Playground Test with Happy-DOM 49 - run: pnpm -C playground run test:unit --coverage 49 + run: pnpm -C playground run test:happy-dom --coverage 50 50 51 51 - name: 🧪 Playground Test with JSDOM 52 52 run: pnpm -C playground run test:jsdom --coverage 53 53 54 54 - name: 🧪 Playground Test on Dev 55 55 run: pnpm -C playground run test:dev 56 + 57 + - name: 💪 Build project 58 + run: pnpm -C playground run test:types 56 59 57 60 - name: 🟩 Coverage 58 61 uses: codecov/codecov-action@v3
+2 -2
packages/vitest-environment-nuxt/src/runtime/mount.ts
··· 45 45 export async function mountSuspended<T>( 46 46 component: T, 47 47 options?: MountSuspendedOptions<T> 48 - ): Promise<ReturnType<typeof mount<T>>> { 48 + ): Promise<ReturnType<typeof mount<T>> & { setupState: any }> { 49 49 const { 50 50 props = {}, 51 51 attrs = {}, ··· 71 71 } 72 72 } 73 73 74 - return new Promise<ReturnType<typeof mount<T>>>(resolve => { 74 + return new Promise<ReturnType<typeof mount<T>> & { setupState: any }>(resolve => { 75 75 const vm = mount( 76 76 { 77 77 setup: (props: Record<string, any>, ctx: SetupContext) => {
+90 -596
pnpm-lock.yaml
··· 79 79 version: 0.33.0(vitest@0.33.0) 80 80 defu: 81 81 specifier: ^6.1.2 82 - version: 6.1.2 82 + version: 6.1.3 83 83 get-port-please: 84 84 specifier: ^3.1.1 85 85 version: 3.1.1 ··· 119 119 version: 2.4.1(vue@3.3.4) 120 120 defu: 121 121 specifier: ^6.1.2 122 - version: 6.1.2 122 + version: 6.1.3 123 123 estree-walker: 124 124 specifier: ^3.0.3 125 125 version: 3.0.3 ··· 134 134 version: 0.5.0 135 135 magic-string: 136 136 specifier: ^0.30.3 137 - version: 0.30.4 137 + version: 0.30.5 138 138 ofetch: 139 139 specifier: ^1.3.3 140 140 version: 1.3.3 ··· 246 246 '@babel/helper-compilation-targets': 7.22.15 247 247 '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) 248 248 '@babel/helpers': 7.23.1 249 - '@babel/parser': 7.23.0 249 + '@babel/parser': 7.23.3 250 250 '@babel/template': 7.22.15 251 251 '@babel/traverse': 7.23.0 252 - '@babel/types': 7.23.0 252 + '@babel/types': 7.23.3 253 253 convert-source-map: 2.0.0 254 254 debug: 4.3.4 255 255 gensync: 1.0.0-beta.2 ··· 262 262 resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==} 263 263 engines: {node: '>=6.9.0'} 264 264 dependencies: 265 - '@babel/types': 7.23.0 265 + '@babel/types': 7.23.3 266 266 '@jridgewell/gen-mapping': 0.3.3 267 267 '@jridgewell/trace-mapping': 0.3.19 268 268 jsesc: 2.5.2 ··· 271 271 resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} 272 272 engines: {node: '>=6.9.0'} 273 273 dependencies: 274 - '@babel/types': 7.23.0 274 + '@babel/types': 7.23.3 275 275 276 276 /@babel/helper-compilation-targets@7.22.15: 277 277 resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} ··· 309 309 engines: {node: '>=6.9.0'} 310 310 dependencies: 311 311 '@babel/template': 7.22.15 312 - '@babel/types': 7.23.0 312 + '@babel/types': 7.23.3 313 313 314 314 /@babel/helper-hoist-variables@7.22.5: 315 315 resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} 316 316 engines: {node: '>=6.9.0'} 317 317 dependencies: 318 - '@babel/types': 7.23.0 318 + '@babel/types': 7.23.3 319 319 320 320 /@babel/helper-member-expression-to-functions@7.23.0: 321 321 resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} 322 322 engines: {node: '>=6.9.0'} 323 323 dependencies: 324 - '@babel/types': 7.23.0 324 + '@babel/types': 7.23.3 325 325 326 326 /@babel/helper-module-imports@7.22.15: 327 327 resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} 328 328 engines: {node: '>=6.9.0'} 329 329 dependencies: 330 - '@babel/types': 7.23.0 330 + '@babel/types': 7.23.3 331 331 332 332 /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.0): 333 333 resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} ··· 346 346 resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} 347 347 engines: {node: '>=6.9.0'} 348 348 dependencies: 349 - '@babel/types': 7.23.0 349 + '@babel/types': 7.23.3 350 350 351 351 /@babel/helper-plugin-utils@7.22.5: 352 352 resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} ··· 367 367 resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} 368 368 engines: {node: '>=6.9.0'} 369 369 dependencies: 370 - '@babel/types': 7.23.0 370 + '@babel/types': 7.23.3 371 371 372 372 /@babel/helper-skip-transparent-expression-wrappers@7.22.5: 373 373 resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} 374 374 engines: {node: '>=6.9.0'} 375 375 dependencies: 376 - '@babel/types': 7.23.0 376 + '@babel/types': 7.23.3 377 377 378 378 /@babel/helper-split-export-declaration@7.22.6: 379 379 resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} 380 380 engines: {node: '>=6.9.0'} 381 381 dependencies: 382 - '@babel/types': 7.23.0 382 + '@babel/types': 7.23.3 383 383 384 384 /@babel/helper-string-parser@7.22.5: 385 385 resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} ··· 399 399 dependencies: 400 400 '@babel/template': 7.22.15 401 401 '@babel/traverse': 7.23.0 402 - '@babel/types': 7.23.0 402 + '@babel/types': 7.23.3 403 403 transitivePeerDependencies: 404 404 - supports-color 405 405 ··· 411 411 chalk: 2.4.2 412 412 js-tokens: 4.0.0 413 413 414 - /@babel/parser@7.23.0: 415 - resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==} 416 - engines: {node: '>=6.0.0'} 417 - hasBin: true 418 - dependencies: 419 - '@babel/types': 7.23.0 420 - 421 414 /@babel/parser@7.23.3: 422 415 resolution: {integrity: sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==} 423 416 engines: {node: '>=6.0.0'} 424 417 hasBin: true 425 418 dependencies: 426 419 '@babel/types': 7.23.3 427 - dev: true 428 420 429 421 /@babel/plugin-proposal-decorators@7.23.0(@babel/core@7.23.0): 430 422 resolution: {integrity: sha512-kYsT+f5ARWF6AdFmqoEEp+hpqxEB8vGmRWfw2aj78M2vTwS2uHW91EF58iFm1Z9U8Y/RrLu2XKJn46P9ca1b0w==} ··· 515 507 engines: {node: '>=6.9.0'} 516 508 dependencies: 517 509 '@babel/code-frame': 7.22.13 518 - '@babel/parser': 7.23.0 519 - '@babel/types': 7.23.0 510 + '@babel/parser': 7.23.3 511 + '@babel/types': 7.23.3 520 512 521 513 /@babel/traverse@7.23.0: 522 514 resolution: {integrity: sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==} ··· 528 520 '@babel/helper-function-name': 7.23.0 529 521 '@babel/helper-hoist-variables': 7.22.5 530 522 '@babel/helper-split-export-declaration': 7.22.6 531 - '@babel/parser': 7.23.0 532 - '@babel/types': 7.23.0 523 + '@babel/parser': 7.23.3 524 + '@babel/types': 7.23.3 533 525 debug: 4.3.4 534 526 globals: 11.12.0 535 527 transitivePeerDependencies: 536 528 - supports-color 537 529 538 - /@babel/types@7.23.0: 539 - resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==} 540 - engines: {node: '>=6.9.0'} 541 - dependencies: 542 - '@babel/helper-string-parser': 7.22.5 543 - '@babel/helper-validator-identifier': 7.22.20 544 - to-fast-properties: 2.0.0 545 - 546 530 /@babel/types@7.23.3: 547 531 resolution: {integrity: sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==} 548 532 engines: {node: '>=6.9.0'} ··· 550 534 '@babel/helper-string-parser': 7.22.5 551 535 '@babel/helper-validator-identifier': 7.22.20 552 536 to-fast-properties: 2.0.0 553 - dev: true 554 537 555 538 /@bcoe/v8-coverage@0.2.3: 556 539 resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} ··· 570 553 requiresBuild: true 571 554 optional: true 572 555 573 - /@esbuild/android-arm64@0.19.4: 574 - resolution: {integrity: sha512-mRsi2vJsk4Bx/AFsNBqOH2fqedxn5L/moT58xgg51DjX1la64Z3Npicut2VbhvDFO26qjWtPMsVxCd80YTFVeg==} 575 - engines: {node: '>=12'} 576 - cpu: [arm64] 577 - os: [android] 578 - requiresBuild: true 579 - dev: true 580 - optional: true 581 - 582 556 /@esbuild/android-arm64@0.19.5: 583 557 resolution: {integrity: sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==} 584 558 engines: {node: '>=12'} ··· 596 570 requiresBuild: true 597 571 optional: true 598 572 599 - /@esbuild/android-arm@0.19.4: 600 - resolution: {integrity: sha512-uBIbiYMeSsy2U0XQoOGVVcpIktjLMEKa7ryz2RLr7L/vTnANNEsPVAh4xOv7ondGz6ac1zVb0F8Jx20rQikffQ==} 601 - engines: {node: '>=12'} 602 - cpu: [arm] 603 - os: [android] 604 - requiresBuild: true 605 - dev: true 606 - optional: true 607 - 608 573 /@esbuild/android-arm@0.19.5: 609 574 resolution: {integrity: sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==} 610 575 engines: {node: '>=12'} ··· 622 587 requiresBuild: true 623 588 optional: true 624 589 625 - /@esbuild/android-x64@0.19.4: 626 - resolution: {integrity: sha512-4iPufZ1TMOD3oBlGFqHXBpa3KFT46aLl6Vy7gwed0ZSYgHaZ/mihbYb4t7Z9etjkC9Al3ZYIoOaHrU60gcMy7g==} 627 - engines: {node: '>=12'} 628 - cpu: [x64] 629 - os: [android] 630 - requiresBuild: true 631 - dev: true 632 - optional: true 633 - 634 590 /@esbuild/android-x64@0.19.5: 635 591 resolution: {integrity: sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==} 636 592 engines: {node: '>=12'} ··· 648 604 requiresBuild: true 649 605 optional: true 650 606 651 - /@esbuild/darwin-arm64@0.19.4: 652 - resolution: {integrity: sha512-Lviw8EzxsVQKpbS+rSt6/6zjn9ashUZ7Tbuvc2YENgRl0yZTktGlachZ9KMJUsVjZEGFVu336kl5lBgDN6PmpA==} 653 - engines: {node: '>=12'} 654 - cpu: [arm64] 655 - os: [darwin] 656 - requiresBuild: true 657 - dev: true 658 - optional: true 659 - 660 607 /@esbuild/darwin-arm64@0.19.5: 661 608 resolution: {integrity: sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==} 662 609 engines: {node: '>=12'} ··· 674 621 requiresBuild: true 675 622 optional: true 676 623 677 - /@esbuild/darwin-x64@0.19.4: 678 - resolution: {integrity: sha512-YHbSFlLgDwglFn0lAO3Zsdrife9jcQXQhgRp77YiTDja23FrC2uwnhXMNkAucthsf+Psr7sTwYEryxz6FPAVqw==} 679 - engines: {node: '>=12'} 680 - cpu: [x64] 681 - os: [darwin] 682 - requiresBuild: true 683 - dev: true 684 - optional: true 685 - 686 624 /@esbuild/darwin-x64@0.19.5: 687 625 resolution: {integrity: sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==} 688 626 engines: {node: '>=12'} ··· 700 638 requiresBuild: true 701 639 optional: true 702 640 703 - /@esbuild/freebsd-arm64@0.19.4: 704 - resolution: {integrity: sha512-vz59ijyrTG22Hshaj620e5yhs2dU1WJy723ofc+KUgxVCM6zxQESmWdMuVmUzxtGqtj5heHyB44PjV/HKsEmuQ==} 705 - engines: {node: '>=12'} 706 - cpu: [arm64] 707 - os: [freebsd] 708 - requiresBuild: true 709 - dev: true 710 - optional: true 711 - 712 641 /@esbuild/freebsd-arm64@0.19.5: 713 642 resolution: {integrity: sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==} 714 643 engines: {node: '>=12'} ··· 726 655 requiresBuild: true 727 656 optional: true 728 657 729 - /@esbuild/freebsd-x64@0.19.4: 730 - resolution: {integrity: sha512-3sRbQ6W5kAiVQRBWREGJNd1YE7OgzS0AmOGjDmX/qZZecq8NFlQsQH0IfXjjmD0XtUYqr64e0EKNFjMUlPL3Cw==} 731 - engines: {node: '>=12'} 732 - cpu: [x64] 733 - os: [freebsd] 734 - requiresBuild: true 735 - dev: true 736 - optional: true 737 - 738 658 /@esbuild/freebsd-x64@0.19.5: 739 659 resolution: {integrity: sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==} 740 660 engines: {node: '>=12'} ··· 750 670 cpu: [arm64] 751 671 os: [linux] 752 672 requiresBuild: true 753 - optional: true 754 - 755 - /@esbuild/linux-arm64@0.19.4: 756 - resolution: {integrity: sha512-ZWmWORaPbsPwmyu7eIEATFlaqm0QGt+joRE9sKcnVUG3oBbr/KYdNE2TnkzdQwX6EDRdg/x8Q4EZQTXoClUqqA==} 757 - engines: {node: '>=12'} 758 - cpu: [arm64] 759 - os: [linux] 760 - requiresBuild: true 761 - dev: true 762 673 optional: true 763 674 764 675 /@esbuild/linux-arm64@0.19.5: ··· 778 689 requiresBuild: true 779 690 optional: true 780 691 781 - /@esbuild/linux-arm@0.19.4: 782 - resolution: {integrity: sha512-z/4ArqOo9EImzTi4b6Vq+pthLnepFzJ92BnofU1jgNlcVb+UqynVFdoXMCFreTK7FdhqAzH0vmdwW5373Hm9pg==} 783 - engines: {node: '>=12'} 784 - cpu: [arm] 785 - os: [linux] 786 - requiresBuild: true 787 - dev: true 788 - optional: true 789 - 790 692 /@esbuild/linux-arm@0.19.5: 791 693 resolution: {integrity: sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==} 792 694 engines: {node: '>=12'} ··· 804 706 requiresBuild: true 805 707 optional: true 806 708 807 - /@esbuild/linux-ia32@0.19.4: 808 - resolution: {integrity: sha512-EGc4vYM7i1GRUIMqRZNCTzJh25MHePYsnQfKDexD8uPTCm9mK56NIL04LUfX2aaJ+C9vyEp2fJ7jbqFEYgO9lQ==} 809 - engines: {node: '>=12'} 810 - cpu: [ia32] 811 - os: [linux] 812 - requiresBuild: true 813 - dev: true 814 - optional: true 815 - 816 709 /@esbuild/linux-ia32@0.19.5: 817 710 resolution: {integrity: sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==} 818 711 engines: {node: '>=12'} ··· 830 723 requiresBuild: true 831 724 optional: true 832 725 833 - /@esbuild/linux-loong64@0.19.4: 834 - resolution: {integrity: sha512-WVhIKO26kmm8lPmNrUikxSpXcgd6HDog0cx12BUfA2PkmURHSgx9G6vA19lrlQOMw+UjMZ+l3PpbtzffCxFDRg==} 835 - engines: {node: '>=12'} 836 - cpu: [loong64] 837 - os: [linux] 838 - requiresBuild: true 839 - dev: true 840 - optional: true 841 - 842 726 /@esbuild/linux-loong64@0.19.5: 843 727 resolution: {integrity: sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==} 844 728 engines: {node: '>=12'} ··· 856 740 requiresBuild: true 857 741 optional: true 858 742 859 - /@esbuild/linux-mips64el@0.19.4: 860 - resolution: {integrity: sha512-keYY+Hlj5w86hNp5JJPuZNbvW4jql7c1eXdBUHIJGTeN/+0QFutU3GrS+c27L+NTmzi73yhtojHk+lr2+502Mw==} 861 - engines: {node: '>=12'} 862 - cpu: [mips64el] 863 - os: [linux] 864 - requiresBuild: true 865 - dev: true 866 - optional: true 867 - 868 743 /@esbuild/linux-mips64el@0.19.5: 869 744 resolution: {integrity: sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==} 870 745 engines: {node: '>=12'} ··· 882 757 requiresBuild: true 883 758 optional: true 884 759 885 - /@esbuild/linux-ppc64@0.19.4: 886 - resolution: {integrity: sha512-tQ92n0WMXyEsCH4m32S21fND8VxNiVazUbU4IUGVXQpWiaAxOBvtOtbEt3cXIV3GEBydYsY8pyeRMJx9kn3rvw==} 887 - engines: {node: '>=12'} 888 - cpu: [ppc64] 889 - os: [linux] 890 - requiresBuild: true 891 - dev: true 892 - optional: true 893 - 894 760 /@esbuild/linux-ppc64@0.19.5: 895 761 resolution: {integrity: sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==} 896 762 engines: {node: '>=12'} ··· 906 772 cpu: [riscv64] 907 773 os: [linux] 908 774 requiresBuild: true 909 - optional: true 910 - 911 - /@esbuild/linux-riscv64@0.19.4: 912 - resolution: {integrity: sha512-tRRBey6fG9tqGH6V75xH3lFPpj9E8BH+N+zjSUCnFOX93kEzqS0WdyJHkta/mmJHn7MBaa++9P4ARiU4ykjhig==} 913 - engines: {node: '>=12'} 914 - cpu: [riscv64] 915 - os: [linux] 916 - requiresBuild: true 917 - dev: true 918 775 optional: true 919 776 920 777 /@esbuild/linux-riscv64@0.19.5: ··· 934 791 requiresBuild: true 935 792 optional: true 936 793 937 - /@esbuild/linux-s390x@0.19.4: 938 - resolution: {integrity: sha512-152aLpQqKZYhThiJ+uAM4PcuLCAOxDsCekIbnGzPKVBRUDlgaaAfaUl5NYkB1hgY6WN4sPkejxKlANgVcGl9Qg==} 939 - engines: {node: '>=12'} 940 - cpu: [s390x] 941 - os: [linux] 942 - requiresBuild: true 943 - dev: true 944 - optional: true 945 - 946 794 /@esbuild/linux-s390x@0.19.5: 947 795 resolution: {integrity: sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==} 948 796 engines: {node: '>=12'} ··· 960 808 requiresBuild: true 961 809 optional: true 962 810 963 - /@esbuild/linux-x64@0.19.4: 964 - resolution: {integrity: sha512-Mi4aNA3rz1BNFtB7aGadMD0MavmzuuXNTaYL6/uiYIs08U7YMPETpgNn5oue3ICr+inKwItOwSsJDYkrE9ekVg==} 965 - engines: {node: '>=12'} 966 - cpu: [x64] 967 - os: [linux] 968 - requiresBuild: true 969 - dev: true 970 - optional: true 971 - 972 811 /@esbuild/linux-x64@0.19.5: 973 812 resolution: {integrity: sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==} 974 813 engines: {node: '>=12'} ··· 986 825 requiresBuild: true 987 826 optional: true 988 827 989 - /@esbuild/netbsd-x64@0.19.4: 990 - resolution: {integrity: sha512-9+Wxx1i5N/CYo505CTT7T+ix4lVzEdz0uCoYGxM5JDVlP2YdDC1Bdz+Khv6IbqmisT0Si928eAxbmGkcbiuM/A==} 991 - engines: {node: '>=12'} 992 - cpu: [x64] 993 - os: [netbsd] 994 - requiresBuild: true 995 - dev: true 996 - optional: true 997 - 998 828 /@esbuild/netbsd-x64@0.19.5: 999 829 resolution: {integrity: sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==} 1000 830 engines: {node: '>=12'} ··· 1012 842 requiresBuild: true 1013 843 optional: true 1014 844 1015 - /@esbuild/openbsd-x64@0.19.4: 1016 - resolution: {integrity: sha512-MFsHleM5/rWRW9EivFssop+OulYVUoVcqkyOkjiynKBCGBj9Lihl7kh9IzrreDyXa4sNkquei5/DTP4uCk25xw==} 1017 - engines: {node: '>=12'} 1018 - cpu: [x64] 1019 - os: [openbsd] 1020 - requiresBuild: true 1021 - dev: true 1022 - optional: true 1023 - 1024 845 /@esbuild/openbsd-x64@0.19.5: 1025 846 resolution: {integrity: sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==} 1026 847 engines: {node: '>=12'} ··· 1038 859 requiresBuild: true 1039 860 optional: true 1040 861 1041 - /@esbuild/sunos-x64@0.19.4: 1042 - resolution: {integrity: sha512-6Xq8SpK46yLvrGxjp6HftkDwPP49puU4OF0hEL4dTxqCbfx09LyrbUj/D7tmIRMj5D5FCUPksBbxyQhp8tmHzw==} 1043 - engines: {node: '>=12'} 1044 - cpu: [x64] 1045 - os: [sunos] 1046 - requiresBuild: true 1047 - dev: true 1048 - optional: true 1049 - 1050 862 /@esbuild/sunos-x64@0.19.5: 1051 863 resolution: {integrity: sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==} 1052 864 engines: {node: '>=12'} ··· 1064 876 requiresBuild: true 1065 877 optional: true 1066 878 1067 - /@esbuild/win32-arm64@0.19.4: 1068 - resolution: {integrity: sha512-PkIl7Jq4mP6ke7QKwyg4fD4Xvn8PXisagV/+HntWoDEdmerB2LTukRZg728Yd1Fj+LuEX75t/hKXE2Ppk8Hh1w==} 1069 - engines: {node: '>=12'} 1070 - cpu: [arm64] 1071 - os: [win32] 1072 - requiresBuild: true 1073 - dev: true 1074 - optional: true 1075 - 1076 879 /@esbuild/win32-arm64@0.19.5: 1077 880 resolution: {integrity: sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==} 1078 881 engines: {node: '>=12'} ··· 1090 893 requiresBuild: true 1091 894 optional: true 1092 895 1093 - /@esbuild/win32-ia32@0.19.4: 1094 - resolution: {integrity: sha512-ga676Hnvw7/ycdKB53qPusvsKdwrWzEyJ+AtItHGoARszIqvjffTwaaW3b2L6l90i7MO9i+dlAW415INuRhSGg==} 1095 - engines: {node: '>=12'} 1096 - cpu: [ia32] 1097 - os: [win32] 1098 - requiresBuild: true 1099 - dev: true 1100 - optional: true 1101 - 1102 896 /@esbuild/win32-ia32@0.19.5: 1103 897 resolution: {integrity: sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==} 1104 898 engines: {node: '>=12'} ··· 1114 908 cpu: [x64] 1115 909 os: [win32] 1116 910 requiresBuild: true 1117 - optional: true 1118 - 1119 - /@esbuild/win32-x64@0.19.4: 1120 - resolution: {integrity: sha512-HP0GDNla1T3ZL8Ko/SHAS2GgtjOg+VmWnnYLhuTksr++EnduYB0f3Y2LzHsUwb2iQ13JGoY6G3R8h6Du/WG6uA==} 1121 - engines: {node: '>=12'} 1122 - cpu: [x64] 1123 - os: [win32] 1124 - requiresBuild: true 1125 - dev: true 1126 911 optional: true 1127 912 1128 913 /@esbuild/win32-x64@0.19.5: ··· 1285 1070 - supports-color 1286 1071 dev: true 1287 1072 1288 - /@netlify/functions@2.2.1: 1289 - resolution: {integrity: sha512-qx/yZF0/8mZHhxLG6U/OvHyq/lHsPXNeAtw85ELW7YYYXV4kVXnpjx1sM3H/eL+FiFTG8LwJes16agWingM2iQ==} 1290 - engines: {node: '>=14.0.0'} 1291 - dependencies: 1292 - '@netlify/serverless-functions-api': 1.8.0 1293 - is-promise: 4.0.0 1294 - dev: true 1295 - 1296 1073 /@netlify/functions@2.4.0: 1297 1074 resolution: {integrity: sha512-dIqhdj5u4Lu/8qbYwtYpn8NfvIyPHbSTV2lAP4ocL+iwC9As06AXT0wa/xOpO2vRWJa0IMxdZaqCPnkyHlHiyg==} 1298 1075 engines: {node: '>=14.0.0'} ··· 1308 1085 1309 1086 /@netlify/serverless-functions-api@1.11.0: 1310 1087 resolution: {integrity: sha512-3splAsr2CekL7VTwgo6yTvzD2+f269/s+TJafYazonqMNNo31yzvFxD5HpLtni4DNE1ppymVKZ4X/rLN3yl0vQ==} 1311 - engines: {node: ^14.18.0 || >=16.0.0} 1312 - dependencies: 1313 - '@netlify/node-cookies': 0.1.0 1314 - urlpattern-polyfill: 8.0.2 1315 - dev: true 1316 - 1317 - /@netlify/serverless-functions-api@1.8.0: 1318 - resolution: {integrity: sha512-+dsowkoEA+LF4wS9kKafToHNSace7MxD2q3pgBik3N8UjAXBZo7J9t/E7rpkcm5w2ZXklvrDM815bOrzfDE5Jg==} 1319 1088 engines: {node: ^14.18.0 || >=16.0.0} 1320 1089 dependencies: 1321 1090 '@netlify/node-cookies': 0.1.0 ··· 1533 1302 engines: {node: ^14.18.0 || >=16.10.0} 1534 1303 dependencies: 1535 1304 '@nuxt/schema': 3.7.4(rollup@3.29.4) 1536 - c12: 1.4.2 1305 + c12: 1.5.1 1537 1306 consola: 3.2.3 1538 - defu: 6.1.2 1307 + defu: 6.1.3 1539 1308 globby: 13.2.2 1540 1309 hash-sum: 2.0.0 1541 1310 ignore: 5.2.4 ··· 1548 1317 semver: 7.5.4 1549 1318 ufo: 1.3.1 1550 1319 unctx: 2.3.1 1551 - unimport: 3.4.0(rollup@3.29.4) 1320 + unimport: 3.5.0(rollup@3.29.4) 1552 1321 untyped: 1.4.0 1553 1322 transitivePeerDependencies: 1554 1323 - rollup ··· 1580 1349 dependencies: 1581 1350 '@nuxt/ui-templates': 1.3.1 1582 1351 consola: 3.2.3 1583 - defu: 6.1.2 1352 + defu: 6.1.3 1584 1353 hookable: 5.5.3 1585 1354 pathe: 1.1.1 1586 1355 pkg-types: 1.0.3 1587 1356 postcss-import-resolver: 2.0.0 1588 1357 std-env: 3.4.3 1589 1358 ufo: 1.3.1 1590 - unimport: 3.4.0(rollup@3.29.4) 1359 + unimport: 3.5.0(rollup@3.29.4) 1591 1360 untyped: 1.4.0 1592 1361 transitivePeerDependencies: 1593 1362 - rollup ··· 1601 1370 ci-info: 3.9.0 1602 1371 consola: 3.2.3 1603 1372 create-require: 1.1.1 1604 - defu: 6.1.2 1605 - destr: 2.0.1 1373 + defu: 6.1.3 1374 + destr: 2.0.2 1606 1375 dotenv: 16.3.1 1607 1376 git-url-parse: 13.1.0 1608 1377 is-docker: 3.0.0 ··· 1629 1398 vue: ^3.3.4 1630 1399 dependencies: 1631 1400 '@nuxt/kit': 3.7.4(rollup@3.29.4) 1632 - '@rollup/plugin-replace': 5.0.3(rollup@3.29.4) 1401 + '@rollup/plugin-replace': 5.0.5(rollup@3.29.4) 1633 1402 '@vitejs/plugin-vue': 4.4.0(vite@4.4.11)(vue@3.3.4) 1634 1403 '@vitejs/plugin-vue-jsx': 3.0.2(vite@4.4.11)(vue@3.3.4) 1635 1404 autoprefixer: 10.4.16(postcss@8.4.31) 1636 1405 clear: 0.1.0 1637 1406 consola: 3.2.3 1638 1407 cssnano: 6.0.1(postcss@8.4.31) 1639 - defu: 6.1.2 1640 - esbuild: 0.19.4 1408 + defu: 6.1.3 1409 + esbuild: 0.19.5 1641 1410 escape-string-regexp: 5.0.0 1642 1411 estree-walker: 3.0.3 1643 1412 externality: 1.0.2 ··· 1645 1414 get-port-please: 3.1.1 1646 1415 h3: 1.8.2 1647 1416 knitwork: 1.0.0 1648 - magic-string: 0.30.4 1417 + magic-string: 0.30.5 1649 1418 mlly: 1.4.2 1650 1419 ohash: 1.1.3 1651 1420 pathe: 1.1.1 ··· 1774 1543 dependencies: 1775 1544 is-glob: 4.0.3 1776 1545 micromatch: 4.0.5 1777 - napi-wasm: 1.1.0 1778 1546 dev: true 1779 1547 bundledDependencies: 1780 1548 - napi-wasm ··· 1841 1609 engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 1842 1610 dependencies: 1843 1611 cross-spawn: 7.0.3 1844 - fast-glob: 3.3.1 1612 + fast-glob: 3.3.2 1845 1613 is-glob: 4.0.3 1846 1614 open: 9.1.0 1847 1615 picocolors: 1.0.0 ··· 1864 1632 slash: 4.0.0 1865 1633 dev: true 1866 1634 1867 - /@rollup/plugin-commonjs@25.0.5(rollup@3.29.4): 1868 - resolution: {integrity: sha512-xY8r/A9oisSeSuLCTfhssyDjo9Vp/eDiRLXkg1MXCcEEgEjPmLU+ZyDB20OOD0NlyDa/8SGbK5uIggF5XTx77w==} 1869 - engines: {node: '>=14.0.0'} 1870 - peerDependencies: 1871 - rollup: ^2.68.0||^3.0.0||^4.0.0 1872 - peerDependenciesMeta: 1873 - rollup: 1874 - optional: true 1875 - dependencies: 1876 - '@rollup/pluginutils': 5.0.5(rollup@3.29.4) 1877 - commondir: 1.0.1 1878 - estree-walker: 2.0.2 1879 - glob: 8.1.0 1880 - is-reference: 1.2.1 1881 - magic-string: 0.27.0 1882 - rollup: 3.29.4 1883 - dev: true 1884 - 1885 1635 /@rollup/plugin-commonjs@25.0.7(rollup@3.29.4): 1886 1636 resolution: {integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==} 1887 1637 engines: {node: '>=14.0.0'} ··· 1900 1650 rollup: 3.29.4 1901 1651 dev: true 1902 1652 1903 - /@rollup/plugin-inject@5.0.4(rollup@3.29.4): 1904 - resolution: {integrity: sha512-dM93Nyqp9Ah14jvThFFA30ifjB8cDKk3Bx69M1nIIHGytXug3VrTv5HEuYBzevu45HvZ0ho7t+40bmScmkzZhg==} 1905 - engines: {node: '>=14.0.0'} 1906 - peerDependencies: 1907 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 1908 - peerDependenciesMeta: 1909 - rollup: 1910 - optional: true 1911 - dependencies: 1912 - '@rollup/pluginutils': 5.0.5(rollup@3.29.4) 1913 - estree-walker: 2.0.2 1914 - magic-string: 0.27.0 1915 - rollup: 3.29.4 1916 - dev: true 1917 - 1918 1653 /@rollup/plugin-inject@5.0.5(rollup@3.29.4): 1919 1654 resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} 1920 1655 engines: {node: '>=14.0.0'} ··· 1958 1693 is-builtin-module: 3.2.1 1959 1694 is-module: 1.0.0 1960 1695 resolve: 1.22.6 1961 - rollup: 3.29.4 1962 - dev: true 1963 - 1964 - /@rollup/plugin-replace@5.0.3(rollup@3.29.4): 1965 - resolution: {integrity: sha512-je7fu05B800IrMlWjb2wzJcdXzHYW46iTipfChnBDbIbDXhASZs27W1B58T2Yf45jZtJUONegpbce+9Ut2Ti/Q==} 1966 - engines: {node: '>=14.0.0'} 1967 - peerDependencies: 1968 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 1969 - peerDependenciesMeta: 1970 - rollup: 1971 - optional: true 1972 - dependencies: 1973 - '@rollup/pluginutils': 5.0.5(rollup@3.29.4) 1974 - magic-string: 0.27.0 1975 1696 rollup: 3.29.4 1976 1697 dev: true 1977 1698 ··· 2146 1867 /@types/estree@1.0.2: 2147 1868 resolution: {integrity: sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==} 2148 1869 2149 - /@types/http-proxy@1.17.12: 2150 - resolution: {integrity: sha512-kQtujO08dVtQ2wXAuSFfk9ASy3sug4+ogFR8Kd8UgP8PEuc1/G/8yjYRmp//PcDNJEUKOza/MrQu15bouEUCiw==} 2151 - dependencies: 2152 - '@types/node': 20.8.3 2153 - dev: true 2154 - 2155 1870 /@types/http-proxy@1.17.14: 2156 1871 resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} 2157 1872 dependencies: ··· 2359 2074 vue: 3.3.4 2360 2075 dev: true 2361 2076 2362 - /@vercel/nft@0.23.1: 2363 - resolution: {integrity: sha512-NE0xSmGWVhgHF1OIoir71XAd0W0C1UE3nzFyhpFiMr3rVhetww7NvM1kc41trBsPG37Bh+dE5FYCTMzM/gBu0w==} 2364 - engines: {node: '>=14'} 2365 - hasBin: true 2366 - dependencies: 2367 - '@mapbox/node-pre-gyp': 1.0.11 2368 - '@rollup/pluginutils': 4.2.1 2369 - acorn: 8.10.0 2370 - async-sema: 3.1.1 2371 - bindings: 1.5.0 2372 - estree-walker: 2.0.2 2373 - glob: 7.2.3 2374 - graceful-fs: 4.2.11 2375 - micromatch: 4.0.5 2376 - node-gyp-build: 4.6.1 2377 - resolve-from: 5.0.0 2378 - transitivePeerDependencies: 2379 - - encoding 2380 - - supports-color 2381 - dev: true 2382 - 2383 2077 /@vercel/nft@0.24.3: 2384 2078 resolution: {integrity: sha512-IyBdIxmFAeGZnEfMgt4QrGK7XX4lWazlQj34HEi9dw04/WeDBJ7r1yaOIO5tTf9pbfvwUFodj9b0H+NDGGoOMg==} 2385 2079 engines: {node: '>=16'} ··· 2437 2131 istanbul-lib-report: 3.0.1 2438 2132 istanbul-lib-source-maps: 4.0.1 2439 2133 istanbul-reports: 3.1.6 2440 - magic-string: 0.30.4 2134 + magic-string: 0.30.5 2441 2135 picocolors: 1.0.0 2442 2136 std-env: 3.4.3 2443 2137 test-exclude: 6.0.0 ··· 2464 2158 /@vitest/snapshot@0.33.0: 2465 2159 resolution: {integrity: sha512-tJjrl//qAHbyHajpFvr8Wsk8DIOODEebTu7pgBrP07iOepR5jYkLFiqLq2Ltxv+r0uptUb4izv1J8XBOwKkVYA==} 2466 2160 dependencies: 2467 - magic-string: 0.30.4 2161 + magic-string: 0.30.5 2468 2162 pathe: 1.1.1 2469 2163 pretty-format: 29.7.0 2470 2164 ··· 2479 2173 vitest: '>=0.30.1 <1' 2480 2174 dependencies: 2481 2175 '@vitest/utils': 0.33.0 2482 - fast-glob: 3.3.1 2176 + fast-glob: 3.3.2 2483 2177 fflate: 0.8.1 2484 2178 flatted: 3.2.9 2485 2179 pathe: 1.1.1 ··· 2521 2215 vue: 2522 2216 optional: true 2523 2217 dependencies: 2524 - '@babel/types': 7.23.0 2218 + '@babel/types': 7.23.3 2525 2219 '@rollup/pluginutils': 5.0.5(rollup@3.29.4) 2526 2220 '@vue/compiler-sfc': 3.3.4 2527 2221 ast-kit: 0.11.2(rollup@3.29.4) ··· 2545 2239 '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0) 2546 2240 '@babel/template': 7.22.15 2547 2241 '@babel/traverse': 7.23.0 2548 - '@babel/types': 7.23.0 2242 + '@babel/types': 7.23.3 2549 2243 '@vue/babel-helper-vue-transform-on': 1.1.5 2550 2244 camelcase: 6.3.0 2551 2245 html-tags: 3.3.1 ··· 2556 2250 /@vue/compiler-core@3.3.4: 2557 2251 resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==} 2558 2252 dependencies: 2559 - '@babel/parser': 7.23.0 2253 + '@babel/parser': 7.23.3 2560 2254 '@vue/shared': 3.3.4 2561 2255 estree-walker: 2.0.2 2562 2256 source-map-js: 1.0.2 ··· 2570 2264 /@vue/compiler-sfc@3.3.4: 2571 2265 resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==} 2572 2266 dependencies: 2573 - '@babel/parser': 7.23.0 2267 + '@babel/parser': 7.23.3 2574 2268 '@vue/compiler-core': 3.3.4 2575 2269 '@vue/compiler-dom': 3.3.4 2576 2270 '@vue/compiler-ssr': 3.3.4 2577 2271 '@vue/reactivity-transform': 3.3.4 2578 2272 '@vue/shared': 3.3.4 2579 2273 estree-walker: 2.0.2 2580 - magic-string: 0.30.4 2274 + magic-string: 0.30.5 2581 2275 postcss: 8.4.31 2582 2276 source-map-js: 1.0.2 2583 2277 ··· 2612 2306 /@vue/reactivity-transform@3.3.4: 2613 2307 resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==} 2614 2308 dependencies: 2615 - '@babel/parser': 7.23.0 2309 + '@babel/parser': 7.23.3 2616 2310 '@vue/compiler-core': 3.3.4 2617 2311 '@vue/shared': 3.3.4 2618 2312 estree-walker: 2.0.2 2619 - magic-string: 0.30.4 2313 + magic-string: 0.30.5 2620 2314 2621 2315 /@vue/reactivity@3.3.4: 2622 2316 resolution: {integrity: sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==} ··· 2869 2563 resolution: {integrity: sha512-Q0DjXK4ApbVoIf9GLyCo252tUH44iTnD/hiJ2TQaJeydYWSpKk0sI34+WMel8S9Wt5pbLgG02oJ+gkgX5DV3sQ==} 2870 2564 engines: {node: '>=16.14.0'} 2871 2565 dependencies: 2872 - '@babel/parser': 7.23.0 2566 + '@babel/parser': 7.23.3 2873 2567 '@rollup/pluginutils': 5.0.5(rollup@3.29.4) 2874 2568 pathe: 1.1.1 2875 2569 transitivePeerDependencies: ··· 2880 2574 resolution: {integrity: sha512-kbL7ERlqjXubdDd+szuwdlQ1xUxEz9mCz1+m07ftNVStgwRb2RWw+U6oKo08PAvOishMxiqz1mlJyLl8yQx2Qg==} 2881 2575 engines: {node: '>=16.14.0'} 2882 2576 dependencies: 2883 - '@babel/parser': 7.23.0 2577 + '@babel/parser': 7.23.3 2884 2578 '@rollup/pluginutils': 5.0.5(rollup@3.29.4) 2885 2579 pathe: 1.1.1 2886 2580 transitivePeerDependencies: ··· 2891 2585 resolution: {integrity: sha512-NsyHMxBh4dmdEHjBo1/TBZvCKxffmZxRYhmclfu0PP6Aftre47jOHYaYaNqJcV0bxihxFXhDkzLHUwHc0ocd0Q==} 2892 2586 engines: {node: '>=16.14.0'} 2893 2587 dependencies: 2894 - '@babel/parser': 7.23.0 2588 + '@babel/parser': 7.23.3 2895 2589 ast-kit: 0.9.5(rollup@3.29.4) 2896 2590 transitivePeerDependencies: 2897 2591 - rollup ··· 3020 2714 run-applescript: 5.0.0 3021 2715 dev: true 3022 2716 3023 - /c12@1.4.2: 3024 - resolution: {integrity: sha512-3IP/MuamSVRVw8W8+CHWAz9gKN4gd+voF2zm/Ln6D25C2RhytEZ1ABbC8MjKr4BR9rhoV1JQ7jJA158LDiTkLg==} 3025 - dependencies: 3026 - chokidar: 3.5.3 3027 - defu: 6.1.2 3028 - dotenv: 16.3.1 3029 - giget: 1.1.3 3030 - jiti: 1.20.0 3031 - mlly: 1.4.2 3032 - ohash: 1.1.3 3033 - pathe: 1.1.1 3034 - perfect-debounce: 1.0.0 3035 - pkg-types: 1.0.3 3036 - rc9: 2.1.1 3037 - transitivePeerDependencies: 3038 - - supports-color 3039 - 3040 2717 /c12@1.5.1: 3041 2718 resolution: {integrity: sha512-BWZRJgDEveT8uI+cliCwvYSSSSvb4xKoiiu5S0jaDbKBopQLQF7E+bq9xKk1pTcG+mUa3yXuFO7bD9d8Lr9Xxg==} 3042 2719 dependencies: ··· 3053 2730 rc9: 2.1.1 3054 2731 transitivePeerDependencies: 3055 2732 - supports-color 3056 - dev: true 3057 2733 3058 2734 /cac@6.7.14: 3059 2735 resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} ··· 3160 2836 resolution: {integrity: sha512-IzgToIJ/R9NhVKmL+PW33ozYkv53bXvufDNUSH3GTKXq1iCHGgkbgbtqEWbo8tnWNnt7nPDpjL8PwSG2iS8RVw==} 3161 2837 hasBin: true 3162 2838 dependencies: 3163 - c12: 1.4.2 2839 + c12: 1.5.1 3164 2840 colorette: 2.0.20 3165 2841 consola: 3.2.3 3166 2842 convert-gitmoji: 0.1.3 3167 2843 execa: 8.0.1 3168 2844 mri: 1.2.0 3169 - node-fetch-native: 1.4.0 2845 + node-fetch-native: 1.4.1 3170 2846 ofetch: 1.3.3 3171 2847 open: 9.1.0 3172 2848 pathe: 1.1.1 ··· 3174 2850 scule: 1.0.0 3175 2851 semver: 7.5.4 3176 2852 std-env: 3.4.3 3177 - yaml: 2.3.2 2853 + yaml: 2.3.3 3178 2854 transitivePeerDependencies: 3179 2855 - supports-color 3180 2856 dev: true ··· 3640 3316 object-keys: 1.1.1 3641 3317 dev: true 3642 3318 3643 - /defu@6.1.2: 3644 - resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==} 3645 - 3646 3319 /defu@6.1.3: 3647 3320 resolution: {integrity: sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==} 3648 - dev: true 3649 3321 3650 3322 /delayed-stream@1.0.0: 3651 3323 resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} ··· 3664 3336 resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 3665 3337 engines: {node: '>= 0.8'} 3666 3338 dev: true 3667 - 3668 - /destr@2.0.1: 3669 - resolution: {integrity: sha512-M1Ob1zPSIvlARiJUkKqvAZ3VAqQY6Jcuth/pBKQ2b1dX/Qx0OnJ8Vux6J2H5PTMQeRzWrrbTu70VxBfv/OPDJA==} 3670 3339 3671 3340 /destr@2.0.2: 3672 3341 resolution: {integrity: sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==} ··· 3889 3558 '@esbuild/win32-ia32': 0.18.20 3890 3559 '@esbuild/win32-x64': 0.18.20 3891 3560 3892 - /esbuild@0.19.4: 3893 - resolution: {integrity: sha512-x7jL0tbRRpv4QUyuDMjONtWFciygUxWaUM1kMX2zWxI0X2YWOt7MSA0g4UdeSiHM8fcYVzpQhKYOycZwxTdZkA==} 3894 - engines: {node: '>=12'} 3895 - hasBin: true 3896 - requiresBuild: true 3897 - optionalDependencies: 3898 - '@esbuild/android-arm': 0.19.4 3899 - '@esbuild/android-arm64': 0.19.4 3900 - '@esbuild/android-x64': 0.19.4 3901 - '@esbuild/darwin-arm64': 0.19.4 3902 - '@esbuild/darwin-x64': 0.19.4 3903 - '@esbuild/freebsd-arm64': 0.19.4 3904 - '@esbuild/freebsd-x64': 0.19.4 3905 - '@esbuild/linux-arm': 0.19.4 3906 - '@esbuild/linux-arm64': 0.19.4 3907 - '@esbuild/linux-ia32': 0.19.4 3908 - '@esbuild/linux-loong64': 0.19.4 3909 - '@esbuild/linux-mips64el': 0.19.4 3910 - '@esbuild/linux-ppc64': 0.19.4 3911 - '@esbuild/linux-riscv64': 0.19.4 3912 - '@esbuild/linux-s390x': 0.19.4 3913 - '@esbuild/linux-x64': 0.19.4 3914 - '@esbuild/netbsd-x64': 0.19.4 3915 - '@esbuild/openbsd-x64': 0.19.4 3916 - '@esbuild/sunos-x64': 0.19.4 3917 - '@esbuild/win32-arm64': 0.19.4 3918 - '@esbuild/win32-ia32': 0.19.4 3919 - '@esbuild/win32-x64': 0.19.4 3920 - dev: true 3921 - 3922 3561 /esbuild@0.19.5: 3923 3562 resolution: {integrity: sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==} 3924 3563 engines: {node: '>=12'} ··· 4202 3841 resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} 4203 3842 dev: true 4204 3843 4205 - /fast-glob@3.3.1: 4206 - resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} 4207 - engines: {node: '>=8.6.0'} 4208 - dependencies: 4209 - '@nodelib/fs.stat': 2.0.5 4210 - '@nodelib/fs.walk': 1.2.8 4211 - glob-parent: 5.1.2 4212 - merge2: 1.4.1 4213 - micromatch: 4.0.5 4214 - 4215 3844 /fast-glob@3.3.2: 4216 3845 resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 4217 3846 engines: {node: '>=8.6.0'} ··· 4221 3850 glob-parent: 5.1.2 4222 3851 merge2: 1.4.1 4223 3852 micromatch: 4.0.5 4224 - dev: true 4225 3853 4226 3854 /fast-json-stable-stringify@2.1.0: 4227 3855 resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} ··· 4419 4047 hasBin: true 4420 4048 dependencies: 4421 4049 colorette: 2.0.20 4422 - defu: 6.1.2 4050 + defu: 6.1.3 4423 4051 https-proxy-agent: 7.0.2 4424 4052 mri: 1.2.0 4425 - node-fetch-native: 1.4.0 4053 + node-fetch-native: 1.4.1 4426 4054 pathe: 1.1.1 4427 4055 tar: 6.2.0 4428 4056 transitivePeerDependencies: ··· 4516 4144 dependencies: 4517 4145 array-union: 2.1.0 4518 4146 dir-glob: 3.0.1 4519 - fast-glob: 3.3.1 4147 + fast-glob: 3.3.2 4520 4148 ignore: 5.2.4 4521 4149 merge2: 1.4.1 4522 4150 slash: 3.0.0 ··· 4527 4155 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4528 4156 dependencies: 4529 4157 dir-glob: 3.0.1 4530 - fast-glob: 3.3.1 4158 + fast-glob: 3.3.2 4531 4159 ignore: 5.2.4 4532 4160 merge2: 1.4.1 4533 4161 slash: 4.0.0 ··· 4556 4184 resolution: {integrity: sha512-1Ca0orJJlCaiFY68BvzQtP2lKLk46kcLAxVM8JgYbtm2cUg6IY7pjpYgWMwUvDO9QI30N5JAukOKoT8KD3Q0PQ==} 4557 4185 dependencies: 4558 4186 cookie-es: 1.0.0 4559 - defu: 6.1.2 4560 - destr: 2.0.1 4187 + defu: 6.1.3 4188 + destr: 2.0.2 4561 4189 iron-webcrypto: 0.10.1 4562 4190 radix3: 1.1.0 4563 4191 ufo: 1.3.1 ··· 5316 4944 citty: 0.1.4 5317 4945 clipboardy: 3.0.0 5318 4946 consola: 3.2.3 5319 - defu: 6.1.2 4947 + defu: 6.1.3 5320 4948 get-port-please: 3.1.1 5321 4949 h3: 1.8.2 5322 4950 http-shutdown: 1.2.2 ··· 5438 5066 resolution: {integrity: sha512-0shqecEPgdFpnI3AP90epXyxZy9g6CRZ+SZ7BcqFwYmtFEnZ1jpevcV5HoyVnlDS9gCnc1UIg3Rsvp3Ci7r8OA==} 5439 5067 engines: {node: '>=16.14.0'} 5440 5068 dependencies: 5441 - magic-string: 0.30.4 5442 - dev: true 5443 - 5444 - /magic-string@0.27.0: 5445 - resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} 5446 - engines: {node: '>=12'} 5447 - dependencies: 5448 - '@jridgewell/sourcemap-codec': 1.4.15 5069 + magic-string: 0.30.5 5449 5070 dev: true 5450 5071 5451 - /magic-string@0.30.4: 5452 - resolution: {integrity: sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg==} 5453 - engines: {node: '>=12'} 5454 - dependencies: 5455 - '@jridgewell/sourcemap-codec': 1.4.15 5456 - 5457 5072 /magic-string@0.30.5: 5458 5073 resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} 5459 5074 engines: {node: '>=12'} 5460 5075 dependencies: 5461 5076 '@jridgewell/sourcemap-codec': 1.4.15 5462 - dev: true 5463 5077 5464 5078 /magicast@0.3.2: 5465 5079 resolution: {integrity: sha512-Fjwkl6a0syt9TFN0JSYpOybxiMCkYNEeOTnOTNRbjphirLakznZXAqrXgj/7GG3D1dvETONNwrBfinvAbpunDg==} ··· 5709 5323 optional: true 5710 5324 dependencies: 5711 5325 citty: 0.1.4 5712 - defu: 6.1.2 5326 + defu: 6.1.3 5713 5327 esbuild: 0.18.20 5714 5328 fs-extra: 11.1.1 5715 5329 globby: 13.2.2 ··· 5762 5376 hasBin: true 5763 5377 dev: true 5764 5378 5765 - /napi-wasm@1.1.0: 5766 - resolution: {integrity: sha512-lHwIAJbmLSjF9VDRm9GoVOy9AGp3aIvkjv+Kvz9h16QR3uSVYH78PNQUnT2U4X53mhlnV2M7wrhibQ3GHicDmg==} 5767 - dev: true 5768 - 5769 5379 /natural-compare@1.4.0: 5770 5380 resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 5771 5381 dev: true ··· 5775 5385 engines: {node: '>= 0.6'} 5776 5386 dev: true 5777 5387 5778 - /nitropack@2.6.3(idb-keyval@6.2.1): 5779 - resolution: {integrity: sha512-k1GC9GiIrjAmLx48g52/38u6OfWVUAhvWtxm5G4vFUaGAt82WPVl+P5S9YXMRXgNtUnTFfzC4Vfp5TUEG0i7zQ==} 5780 - engines: {node: ^16.11.0 || >=17.0.0} 5781 - hasBin: true 5782 - peerDependencies: 5783 - xml2js: ^0.6.2 5784 - peerDependenciesMeta: 5785 - xml2js: 5786 - optional: true 5787 - dependencies: 5788 - '@cloudflare/kv-asset-handler': 0.3.0 5789 - '@netlify/functions': 2.2.1 5790 - '@rollup/plugin-alias': 5.0.1(rollup@3.29.4) 5791 - '@rollup/plugin-commonjs': 25.0.5(rollup@3.29.4) 5792 - '@rollup/plugin-inject': 5.0.4(rollup@3.29.4) 5793 - '@rollup/plugin-json': 6.0.1(rollup@3.29.4) 5794 - '@rollup/plugin-node-resolve': 15.2.3(rollup@3.29.4) 5795 - '@rollup/plugin-replace': 5.0.3(rollup@3.29.4) 5796 - '@rollup/plugin-terser': 0.4.4(rollup@3.29.4) 5797 - '@rollup/plugin-wasm': 6.2.2(rollup@3.29.4) 5798 - '@rollup/pluginutils': 5.0.5(rollup@3.29.4) 5799 - '@types/http-proxy': 1.17.12 5800 - '@vercel/nft': 0.23.1 5801 - archiver: 6.0.1 5802 - c12: 1.4.2 5803 - chalk: 5.3.0 5804 - chokidar: 3.5.3 5805 - citty: 0.1.4 5806 - consola: 3.2.3 5807 - cookie-es: 1.0.0 5808 - defu: 6.1.2 5809 - destr: 2.0.1 5810 - dot-prop: 8.0.2 5811 - esbuild: 0.19.4 5812 - escape-string-regexp: 5.0.0 5813 - etag: 1.8.1 5814 - fs-extra: 11.1.1 5815 - globby: 13.2.2 5816 - gzip-size: 7.0.0 5817 - h3: 1.8.2 5818 - hookable: 5.5.3 5819 - httpxy: 0.1.5 5820 - is-primitive: 3.0.1 5821 - jiti: 1.20.0 5822 - klona: 2.0.6 5823 - knitwork: 1.0.0 5824 - listhen: 1.5.5 5825 - magic-string: 0.30.4 5826 - mime: 3.0.0 5827 - mlly: 1.4.2 5828 - mri: 1.2.0 5829 - node-fetch-native: 1.4.0 5830 - ofetch: 1.3.3 5831 - ohash: 1.1.3 5832 - openapi-typescript: 6.7.0 5833 - pathe: 1.1.1 5834 - perfect-debounce: 1.0.0 5835 - pkg-types: 1.0.3 5836 - pretty-bytes: 6.1.1 5837 - radix3: 1.1.0 5838 - rollup: 3.29.4 5839 - rollup-plugin-visualizer: 5.9.2(rollup@3.29.4) 5840 - scule: 1.0.0 5841 - semver: 7.5.4 5842 - serve-placeholder: 2.0.1 5843 - serve-static: 1.15.0 5844 - std-env: 3.4.3 5845 - ufo: 1.3.1 5846 - uncrypto: 0.1.3 5847 - unctx: 2.3.1 5848 - unenv: 1.7.4 5849 - unimport: 3.4.0(rollup@3.29.4) 5850 - unstorage: 1.9.0(idb-keyval@6.2.1) 5851 - transitivePeerDependencies: 5852 - - '@azure/app-configuration' 5853 - - '@azure/cosmos' 5854 - - '@azure/data-tables' 5855 - - '@azure/identity' 5856 - - '@azure/keyvault-secrets' 5857 - - '@azure/storage-blob' 5858 - - '@capacitor/preferences' 5859 - - '@planetscale/database' 5860 - - '@upstash/redis' 5861 - - '@vercel/kv' 5862 - - encoding 5863 - - idb-keyval 5864 - - supports-color 5865 - dev: true 5866 - 5867 5388 /nitropack@2.7.2(idb-keyval@6.2.1): 5868 5389 resolution: {integrity: sha512-6vQbGdBNR20N8wTChzIQUZQmNVhWVDrjUdpOYD68u2hlyUiJembth2fQuoWw3KlsoNYWFvcyqL9X3DPjjnoEUQ==} 5869 5390 engines: {node: ^16.11.0 || >=17.0.0} ··· 5957 5478 resolution: {integrity: sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA==} 5958 5479 dev: true 5959 5480 5960 - /node-fetch-native@1.4.0: 5961 - resolution: {integrity: sha512-F5kfEj95kX8tkDhUCYdV8dg3/8Olx/94zB8+ZNthFs6Bz31UpUi8Xh40TN3thLwXgrwXry1pEg9lJ++tLWTcqA==} 5962 - 5963 5481 /node-fetch-native@1.4.1: 5964 5482 resolution: {integrity: sha512-NsXBU0UgBxo2rQLOeWNZqS3fvflWePMECr8CoSWoSTqCqGbVVsvl9vZu1HfQicYN0g5piV9Gh8RTEvo/uP752w==} 5965 - dev: true 5966 5483 5967 5484 /node-fetch@2.7.0: 5968 5485 resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} ··· 6175 5692 '@unhead/vue': 1.7.4(vue@3.3.4) 6176 5693 '@vue/shared': 3.3.4 6177 5694 acorn: 8.10.0 6178 - c12: 1.4.2 5695 + c12: 1.5.1 6179 5696 chokidar: 3.5.3 6180 5697 cookie-es: 1.0.0 6181 - defu: 6.1.2 6182 - destr: 2.0.1 5698 + defu: 6.1.3 5699 + destr: 2.0.2 6183 5700 devalue: 4.3.2 6184 - esbuild: 0.19.4 5701 + esbuild: 0.19.5 6185 5702 escape-string-regexp: 5.0.0 6186 5703 estree-walker: 3.0.3 6187 5704 fs-extra: 11.1.1 ··· 6191 5708 jiti: 1.20.0 6192 5709 klona: 2.0.6 6193 5710 knitwork: 1.0.0 6194 - magic-string: 0.30.4 5711 + magic-string: 0.30.5 6195 5712 mlly: 1.4.2 6196 - nitropack: 2.6.3(idb-keyval@6.2.1) 5713 + nitropack: 2.7.2(idb-keyval@6.2.1) 6197 5714 nuxi: 3.9.0 6198 5715 nypm: 0.3.3 6199 5716 ofetch: 1.3.3 ··· 6210 5727 uncrypto: 0.1.3 6211 5728 unctx: 2.3.1 6212 5729 unenv: 1.7.4 6213 - unimport: 3.4.0(rollup@3.29.4) 5730 + unimport: 3.5.0(rollup@3.29.4) 6214 5731 unplugin: 1.5.0 6215 5732 unplugin-vue-router: 0.7.0(rollup@3.29.4)(vue-router@4.2.5)(vue@3.3.4) 6216 5733 untyped: 1.4.0 ··· 6299 5816 /ofetch@1.3.3: 6300 5817 resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==} 6301 5818 dependencies: 6302 - destr: 2.0.1 6303 - node-fetch-native: 1.4.0 5819 + destr: 2.0.2 5820 + node-fetch-native: 1.4.1 6304 5821 ufo: 1.3.1 6305 5822 6306 5823 /ohash@1.1.3: ··· 6356 5873 hasBin: true 6357 5874 dependencies: 6358 5875 ansi-colors: 4.1.3 6359 - fast-glob: 3.3.1 5876 + fast-glob: 3.3.2 6360 5877 js-yaml: 4.1.0 6361 5878 supports-color: 9.4.0 6362 5879 undici: 5.25.4 ··· 6986 6503 /rc9@2.1.1: 6987 6504 resolution: {integrity: sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==} 6988 6505 dependencies: 6989 - defu: 6.1.2 6506 + defu: 6.1.3 6990 6507 destr: 2.0.2 6991 6508 flat: 5.0.2 6992 6509 ··· 7140 6657 rollup: ^3.29.4 || ^4 7141 6658 typescript: ^4.5 || ^5.0 7142 6659 dependencies: 7143 - magic-string: 0.30.4 6660 + magic-string: 0.30.5 7144 6661 rollup: 3.29.4 7145 6662 typescript: 5.2.2 7146 6663 optionalDependencies: ··· 7246 6763 /serve-placeholder@2.0.1: 7247 6764 resolution: {integrity: sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==} 7248 6765 dependencies: 7249 - defu: 6.1.2 6766 + defu: 6.1.3 7250 6767 dev: true 7251 6768 7252 6769 /serve-static@1.15.0: ··· 7800 7317 optional: true 7801 7318 dependencies: 7802 7319 '@rollup/plugin-alias': 5.0.1(rollup@3.29.4) 7803 - '@rollup/plugin-commonjs': 25.0.5(rollup@3.29.4) 7320 + '@rollup/plugin-commonjs': 25.0.7(rollup@3.29.4) 7804 7321 '@rollup/plugin-json': 6.0.1(rollup@3.29.4) 7805 7322 '@rollup/plugin-node-resolve': 15.2.3(rollup@3.29.4) 7806 - '@rollup/plugin-replace': 5.0.3(rollup@3.29.4) 7323 + '@rollup/plugin-replace': 5.0.5(rollup@3.29.4) 7807 7324 '@rollup/pluginutils': 5.0.5(rollup@3.29.4) 7808 7325 chalk: 5.3.0 7809 7326 citty: 0.1.4 7810 7327 consola: 3.2.3 7811 - defu: 6.1.2 7812 - esbuild: 0.19.4 7328 + defu: 6.1.3 7329 + esbuild: 0.19.5 7813 7330 globby: 13.2.2 7814 7331 hookable: 5.5.3 7815 7332 jiti: 1.20.0 7816 - magic-string: 0.30.4 7333 + magic-string: 0.30.5 7817 7334 mkdist: 1.3.0(typescript@5.2.2) 7818 7335 mlly: 1.4.2 7819 7336 pathe: 1.1.1 ··· 7837 7354 dependencies: 7838 7355 acorn: 8.10.0 7839 7356 estree-walker: 3.0.3 7840 - magic-string: 0.30.4 7357 + magic-string: 0.30.5 7841 7358 unplugin: 1.5.0 7842 7359 7843 7360 /undici@5.25.4: ··· 7851 7368 resolution: {integrity: sha512-fjYsXYi30It0YCQYqLOcT6fHfMXsBr2hw9XC7ycf8rTG7Xxpe3ZssiqUnD0khrjiZEmkBXWLwm42yCSCH46fMw==} 7852 7369 dependencies: 7853 7370 consola: 3.2.3 7854 - defu: 6.1.2 7371 + defu: 6.1.3 7855 7372 mime: 3.0.0 7856 - node-fetch-native: 1.4.0 7373 + node-fetch-native: 1.4.1 7857 7374 pathe: 1.1.1 7858 7375 7859 7376 /unhead@1.7.4: ··· 7865 7382 hookable: 5.5.3 7866 7383 dev: true 7867 7384 7868 - /unimport@3.4.0(rollup@3.29.4): 7869 - resolution: {integrity: sha512-M/lfFEgufIT156QAr/jWHLUn55kEmxBBiQsMxvRSIbquwmeJEyQYgshHDEvQDWlSJrVOOTAgnJ3FvlsrpGkanA==} 7870 - dependencies: 7871 - '@rollup/pluginutils': 5.0.5(rollup@3.29.4) 7872 - escape-string-regexp: 5.0.0 7873 - fast-glob: 3.3.1 7874 - local-pkg: 0.4.3 7875 - magic-string: 0.30.4 7876 - mlly: 1.4.2 7877 - pathe: 1.1.1 7878 - pkg-types: 1.0.3 7879 - scule: 1.0.0 7880 - strip-literal: 1.3.0 7881 - unplugin: 1.5.0 7882 - transitivePeerDependencies: 7883 - - rollup 7884 - 7885 7385 /unimport@3.5.0(rollup@3.29.4): 7886 7386 resolution: {integrity: sha512-0Ei1iTeSYxs7oxxUf79/KaBc2dPjZxe7qdVpw7yIz5YcdTZjmBYO6ToLDW+fX9QOHiueZ3xtwb5Z/wqaSfXx6A==} 7887 7387 dependencies: ··· 7898 7398 unplugin: 1.5.0 7899 7399 transitivePeerDependencies: 7900 7400 - rollup 7901 - dev: true 7902 7401 7903 7402 /unique-filename@3.0.0: 7904 7403 resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} ··· 7931 7430 vue-router: 7932 7431 optional: true 7933 7432 dependencies: 7934 - '@babel/types': 7.23.0 7433 + '@babel/types': 7.23.3 7935 7434 '@rollup/pluginutils': 5.0.5(rollup@3.29.4) 7936 7435 '@vue-macros/common': 1.8.0(rollup@3.29.4)(vue@3.3.4) 7937 7436 ast-walker-scope: 0.5.0(rollup@3.29.4) 7938 7437 chokidar: 3.5.3 7939 - fast-glob: 3.3.1 7438 + fast-glob: 3.3.2 7940 7439 json5: 2.2.3 7941 7440 local-pkg: 0.4.3 7942 7441 mlly: 1.4.2 ··· 7944 7443 scule: 1.0.0 7945 7444 unplugin: 1.5.0 7946 7445 vue-router: 4.2.5(vue@3.3.4) 7947 - yaml: 2.3.2 7446 + yaml: 2.3.3 7948 7447 transitivePeerDependencies: 7949 7448 - rollup 7950 7449 - vue ··· 7998 7497 dependencies: 7999 7498 anymatch: 3.1.3 8000 7499 chokidar: 3.5.3 8001 - destr: 2.0.1 7500 + destr: 2.0.2 8002 7501 h3: 1.8.2 8003 7502 idb-keyval: 6.2.1 8004 7503 ioredis: 5.3.2 8005 7504 listhen: 1.5.5 8006 7505 lru-cache: 10.0.1 8007 7506 mri: 1.2.0 8008 - node-fetch-native: 1.4.0 7507 + node-fetch-native: 1.4.1 8009 7508 ofetch: 1.3.3 8010 7509 ufo: 1.3.1 8011 7510 transitivePeerDependencies: ··· 8032 7531 dependencies: 8033 7532 '@babel/core': 7.23.0 8034 7533 '@babel/standalone': 7.23.1 8035 - '@babel/types': 7.23.0 8036 - defu: 6.1.2 7534 + '@babel/types': 7.23.3 7535 + defu: 6.1.3 8037 7536 jiti: 1.20.0 8038 7537 mri: 1.2.0 8039 7538 scule: 1.0.0 ··· 8154 7653 chokidar: 3.5.3 8155 7654 commander: 8.3.0 8156 7655 eslint: 8.51.0 8157 - fast-glob: 3.3.1 7656 + fast-glob: 3.3.2 8158 7657 fs-extra: 11.1.1 8159 7658 lodash.debounce: 4.0.8 8160 7659 lodash.pick: 4.4.0 ··· 8209 7708 '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.0) 8210 7709 '@vue/compiler-dom': 3.3.4 8211 7710 kolorist: 1.8.0 8212 - magic-string: 0.30.4 7711 + magic-string: 0.30.5 8213 7712 vite: 4.4.11(@types/node@20.8.3) 8214 7713 transitivePeerDependencies: 8215 7714 - supports-color ··· 8296 7795 chai: 4.3.10 8297 7796 debug: 4.3.4 8298 7797 local-pkg: 0.4.3 8299 - magic-string: 0.30.4 7798 + magic-string: 0.30.5 8300 7799 pathe: 1.1.1 8301 7800 picocolors: 1.0.0 8302 7801 std-env: 3.4.3 ··· 8362 7861 happy-dom: 12.1.2 8363 7862 jsdom: 22.1.0 8364 7863 local-pkg: 0.4.3 8365 - magic-string: 0.30.4 7864 + magic-string: 0.30.5 8366 7865 pathe: 1.1.1 8367 7866 picocolors: 1.0.0 8368 7867 std-env: 3.4.3 ··· 8429 7928 happy-dom: 12.1.6 8430 7929 jsdom: 22.1.0 8431 7930 local-pkg: 0.4.3 8432 - magic-string: 0.30.4 7931 + magic-string: 0.30.5 8433 7932 pathe: 1.1.1 8434 7933 picocolors: 1.0.0 8435 7934 std-env: 3.4.3 ··· 8725 8224 8726 8225 /yallist@4.0.0: 8727 8226 resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 8728 - 8729 - /yaml@2.3.2: 8730 - resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==} 8731 - engines: {node: '>= 14'} 8732 - dev: true 8733 8227 8734 8228 /yaml@2.3.3: 8735 8229 resolution: {integrity: sha512-zw0VAJxgeZ6+++/su5AFoqBbZbrEakwu+X0M5HmcwUiBL7AzcuPKjj5we4xfQLp78LkEMpD0cOnUhmgOVy3KdQ==}