create-tauri-ui 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (268) hide show
  1. package/README.md +22 -11
  2. package/dist/index.mjs +26 -26
  3. package/package.json +3 -2
  4. package/templates/.shared/app-icon.png +0 -0
  5. package/templates/.shared/src-tauri/Cargo.lock +270 -139
  6. package/templates/.shared/src-tauri/Cargo.toml +39 -36
  7. package/templates/.shared/src-tauri/src/main.rs +3 -0
  8. package/templates/.shared/src-tauri/tauri.conf.json +71 -79
  9. package/templates/next/components.json +15 -15
  10. package/templates/next/next.config.js +14 -14
  11. package/templates/next/package.json +18 -14
  12. package/templates/next/pnpm-lock.yaml +608 -566
  13. package/templates/next/src/app/examples/cards/components/date-picker.tsx +3 -1
  14. package/templates/next/src/app/examples/cards/components/github-card.tsx +2 -0
  15. package/templates/next/src/app/examples/cards/components/notifications.tsx +2 -0
  16. package/templates/next/src/app/examples/cards/components/payment-method.tsx +3 -1
  17. package/templates/next/src/app/examples/cards/components/team-members.tsx +3 -5
  18. package/templates/next/src/app/examples/forms/page.tsx +1 -1
  19. package/templates/next/src/app/layout.tsx +47 -47
  20. package/templates/next/src/assets/Inter-VariableFont_slnt,wght.ttf +0 -0
  21. package/templates/next/src/components/about-dialog.tsx +111 -0
  22. package/templates/next/src/components/icons.tsx +156 -154
  23. package/templates/next/src/components/menu-mode-toggle.tsx +47 -46
  24. package/templates/next/src/components/menu.tsx +223 -259
  25. package/templates/next/src/components/page-header.tsx +2 -0
  26. package/templates/next/src/components/ui/accordion.tsx +60 -60
  27. package/templates/next/src/components/ui/alert-dialog.tsx +145 -145
  28. package/templates/next/src/components/ui/alert.tsx +59 -59
  29. package/templates/next/src/components/ui/aspect-ratio.tsx +7 -7
  30. package/templates/next/src/components/ui/avatar.tsx +50 -50
  31. package/templates/next/src/components/ui/badge.tsx +36 -36
  32. package/templates/next/src/components/ui/button.tsx +56 -56
  33. package/templates/next/src/components/ui/calendar.tsx +64 -64
  34. package/templates/next/src/components/ui/card.tsx +79 -79
  35. package/templates/next/src/components/ui/checkbox.tsx +30 -30
  36. package/templates/next/src/components/ui/collapsible.tsx +11 -11
  37. package/templates/next/src/components/ui/command.tsx +155 -155
  38. package/templates/next/src/components/ui/context-menu.tsx +200 -200
  39. package/templates/next/src/components/ui/dialog.tsx +123 -123
  40. package/templates/next/src/components/ui/dropdown-menu.tsx +200 -200
  41. package/templates/next/src/components/ui/form.tsx +176 -176
  42. package/templates/next/src/components/ui/hover-card.tsx +29 -29
  43. package/templates/next/src/components/ui/input.tsx +25 -25
  44. package/templates/next/src/components/ui/label.tsx +26 -26
  45. package/templates/next/src/components/ui/menubar.tsx +236 -236
  46. package/templates/next/src/components/ui/navigation-menu.tsx +128 -128
  47. package/templates/next/src/components/ui/popover.tsx +31 -31
  48. package/templates/next/src/components/ui/progress.tsx +28 -28
  49. package/templates/next/src/components/ui/radio-group.tsx +44 -44
  50. package/templates/next/src/components/ui/scroll-area.tsx +48 -48
  51. package/templates/next/src/components/ui/select.tsx +121 -121
  52. package/templates/next/src/components/ui/separator.tsx +31 -31
  53. package/templates/next/src/components/ui/sheet.tsx +144 -144
  54. package/templates/next/src/components/ui/skeleton.tsx +15 -15
  55. package/templates/next/src/components/ui/slider.tsx +28 -28
  56. package/templates/next/src/components/ui/switch.tsx +29 -29
  57. package/templates/next/src/components/ui/table.tsx +114 -114
  58. package/templates/next/src/components/ui/tabs.tsx +55 -55
  59. package/templates/next/src/components/ui/textarea.tsx +24 -24
  60. package/templates/next/src/components/ui/toast.tsx +127 -127
  61. package/templates/next/src/components/ui/toaster.tsx +35 -35
  62. package/templates/next/src/components/ui/toggle.tsx +45 -45
  63. package/templates/next/src/components/ui/tooltip.tsx +30 -30
  64. package/templates/next/src/components/ui/use-toast.ts +192 -192
  65. package/templates/next/src/lib/utils.ts +6 -6
  66. package/templates/next/src/styles/globals.css +88 -86
  67. package/templates/next/src-tauri/Cargo.lock +3832 -3701
  68. package/templates/next/src-tauri/Cargo.toml +4 -1
  69. package/templates/next/src-tauri/src/main.rs +22 -19
  70. package/templates/next/src-tauri/tauri.conf.json +71 -79
  71. package/templates/next/tailwind.config.js +77 -77
  72. package/templates/next/tsconfig.json +34 -34
  73. package/templates/sveltekit/.github/workflows/release.yml +108 -108
  74. package/templates/sveltekit/package.json +22 -22
  75. package/templates/sveltekit/pnpm-lock.yaml +1069 -691
  76. package/templates/sveltekit/src/app.html +1 -1
  77. package/templates/sveltekit/src-tauri/Cargo.lock +136 -136
  78. package/templates/sveltekit/src-tauri/tauri.conf.json +2 -10
  79. package/templates/sveltekit/static/favicon.ico +0 -0
  80. package/templates/sveltekit/vite.config.js +10 -6
  81. package/templates/vite/components.json +15 -15
  82. package/templates/vite/index.html +1 -1
  83. package/templates/vite/package.json +20 -13
  84. package/templates/vite/pnpm-lock.yaml +598 -530
  85. package/templates/vite/src/assets/Inter-VariableFont_slnt,wght.ttf +0 -0
  86. package/templates/vite/src/components/about-dialog.tsx +101 -0
  87. package/templates/vite/src/components/icons.tsx +2 -2
  88. package/templates/vite/src/components/menu-mode-toggle.tsx +4 -3
  89. package/templates/vite/src/components/menu.tsx +177 -197
  90. package/templates/vite/src/components/ui/accordion.tsx +1 -3
  91. package/templates/vite/src/components/ui/alert-dialog.tsx +3 -10
  92. package/templates/vite/src/components/ui/alert.tsx +3 -5
  93. package/templates/vite/src/components/ui/aspect-ratio.tsx +0 -2
  94. package/templates/vite/src/components/ui/avatar.tsx +0 -2
  95. package/templates/vite/src/components/ui/badge.tsx +5 -5
  96. package/templates/vite/src/components/ui/button.tsx +15 -10
  97. package/templates/vite/src/components/ui/calendar.tsx +0 -2
  98. package/templates/vite/src/components/ui/card.tsx +1 -3
  99. package/templates/vite/src/components/ui/checkbox.tsx +2 -4
  100. package/templates/vite/src/components/ui/collapsible.tsx +0 -2
  101. package/templates/vite/src/components/ui/command.tsx +2 -4
  102. package/templates/vite/src/components/ui/context-menu.tsx +6 -8
  103. package/templates/vite/src/components/ui/dialog.tsx +4 -11
  104. package/templates/vite/src/components/ui/dropdown-menu.tsx +6 -8
  105. package/templates/vite/src/components/ui/form.tsx +176 -0
  106. package/templates/vite/src/components/ui/hover-card.tsx +1 -3
  107. package/templates/vite/src/components/ui/input.tsx +1 -3
  108. package/templates/vite/src/components/ui/label.tsx +1 -3
  109. package/templates/vite/src/components/ui/menubar.tsx +7 -9
  110. package/templates/vite/src/components/ui/navigation-menu.tsx +2 -4
  111. package/templates/vite/src/components/ui/popover.tsx +1 -3
  112. package/templates/vite/src/components/ui/progress.tsx +0 -2
  113. package/templates/vite/src/components/ui/radio-group.tsx +2 -4
  114. package/templates/vite/src/components/ui/scroll-area.tsx +0 -2
  115. package/templates/vite/src/components/ui/select.tsx +4 -5
  116. package/templates/vite/src/components/ui/separator.tsx +0 -2
  117. package/templates/vite/src/components/ui/sheet.tsx +22 -110
  118. package/templates/vite/src/components/ui/skeleton.tsx +0 -2
  119. package/templates/vite/src/components/ui/slider.tsx +0 -2
  120. package/templates/vite/src/components/ui/switch.tsx +1 -3
  121. package/templates/vite/src/components/ui/table.tsx +1 -1
  122. package/templates/vite/src/components/ui/tabs.tsx +1 -3
  123. package/templates/vite/src/components/ui/textarea.tsx +1 -3
  124. package/templates/vite/src/components/ui/toast.tsx +6 -8
  125. package/templates/vite/src/components/ui/toaster.tsx +0 -2
  126. package/templates/vite/src/components/ui/toggle.tsx +3 -5
  127. package/templates/vite/src/components/ui/tooltip.tsx +1 -3
  128. package/templates/vite/src/components/ui/use-toast.ts +5 -4
  129. package/templates/vite/src/styles/globals.css +5 -3
  130. package/templates/vite/src-tauri/Cargo.lock +270 -139
  131. package/templates/vite/src-tauri/Cargo.toml +4 -1
  132. package/templates/vite/src-tauri/src/main.rs +8 -2
  133. package/templates/vite/src-tauri/tauri.conf.json +71 -79
  134. package/templates/vite/vite.config.ts +2 -2
  135. package/templates/next/src/assets/Inter.var.woff2 +0 -0
  136. package/templates/vite/src/assets/Inter.var.woff2 +0 -0
  137. package/templates/viteuno/.github/workflows/release.yml +0 -108
  138. package/templates/viteuno/.vscode/extensions.json +0 -3
  139. package/templates/viteuno/README.md +0 -1
  140. package/templates/viteuno/app-icon.png +0 -0
  141. package/templates/viteuno/components.json +0 -16
  142. package/templates/viteuno/index.html +0 -16
  143. package/templates/viteuno/package.json +0 -73
  144. package/templates/viteuno/pnpm-lock.yaml +0 -5298
  145. package/templates/viteuno/preset.shadcn.ts +0 -160
  146. package/templates/viteuno/prettier.config.cjs +0 -34
  147. package/templates/viteuno/public/avatars/01.png +0 -0
  148. package/templates/viteuno/public/avatars/02.png +0 -0
  149. package/templates/viteuno/public/avatars/03.png +0 -0
  150. package/templates/viteuno/public/avatars/04.png +0 -0
  151. package/templates/viteuno/public/avatars/05.png +0 -0
  152. package/templates/viteuno/src/App.tsx +0 -39
  153. package/templates/viteuno/src/assets/Inter.var.woff2 +0 -0
  154. package/templates/viteuno/src/components/icons.tsx +0 -154
  155. package/templates/viteuno/src/components/menu-mode-toggle.tsx +0 -46
  156. package/templates/viteuno/src/components/menu.tsx +0 -232
  157. package/templates/viteuno/src/components/tailwind-indicator.tsx +0 -18
  158. package/templates/viteuno/src/components/theme-provider.tsx +0 -9
  159. package/templates/viteuno/src/components/ui/accordion.tsx +0 -60
  160. package/templates/viteuno/src/components/ui/alert-dialog.tsx +0 -150
  161. package/templates/viteuno/src/components/ui/alert.tsx +0 -61
  162. package/templates/viteuno/src/components/ui/aspect-ratio.tsx +0 -7
  163. package/templates/viteuno/src/components/ui/avatar.tsx +0 -50
  164. package/templates/viteuno/src/components/ui/badge.tsx +0 -36
  165. package/templates/viteuno/src/components/ui/button.tsx +0 -51
  166. package/templates/viteuno/src/components/ui/calendar.tsx +0 -64
  167. package/templates/viteuno/src/components/ui/card.tsx +0 -81
  168. package/templates/viteuno/src/components/ui/checkbox.tsx +0 -30
  169. package/templates/viteuno/src/components/ui/collapsible.tsx +0 -11
  170. package/templates/viteuno/src/components/ui/command.tsx +0 -155
  171. package/templates/viteuno/src/components/ui/context-menu.tsx +0 -200
  172. package/templates/viteuno/src/components/ui/dialog.tsx +0 -128
  173. package/templates/viteuno/src/components/ui/dropdown-menu.tsx +0 -200
  174. package/templates/viteuno/src/components/ui/hover-card.tsx +0 -29
  175. package/templates/viteuno/src/components/ui/index.ts +0 -0
  176. package/templates/viteuno/src/components/ui/input.tsx +0 -27
  177. package/templates/viteuno/src/components/ui/label.tsx +0 -26
  178. package/templates/viteuno/src/components/ui/menubar.tsx +0 -236
  179. package/templates/viteuno/src/components/ui/navigation-menu.tsx +0 -130
  180. package/templates/viteuno/src/components/ui/popover.tsx +0 -31
  181. package/templates/viteuno/src/components/ui/progress.tsx +0 -28
  182. package/templates/viteuno/src/components/ui/radio-group.tsx +0 -44
  183. package/templates/viteuno/src/components/ui/scroll-area.tsx +0 -48
  184. package/templates/viteuno/src/components/ui/select.tsx +0 -120
  185. package/templates/viteuno/src/components/ui/separator.tsx +0 -31
  186. package/templates/viteuno/src/components/ui/sheet.tsx +0 -230
  187. package/templates/viteuno/src/components/ui/skeleton.tsx +0 -17
  188. package/templates/viteuno/src/components/ui/slider.tsx +0 -28
  189. package/templates/viteuno/src/components/ui/switch.tsx +0 -29
  190. package/templates/viteuno/src/components/ui/table.tsx +0 -114
  191. package/templates/viteuno/src/components/ui/tabs.tsx +0 -55
  192. package/templates/viteuno/src/components/ui/textarea.tsx +0 -26
  193. package/templates/viteuno/src/components/ui/toast.tsx +0 -129
  194. package/templates/viteuno/src/components/ui/toaster.tsx +0 -35
  195. package/templates/viteuno/src/components/ui/toggle.tsx +0 -45
  196. package/templates/viteuno/src/components/ui/tooltip.tsx +0 -30
  197. package/templates/viteuno/src/components/ui/use-toast.ts +0 -191
  198. package/templates/viteuno/src/dashboard/components/date-range-picker.tsx +0 -66
  199. package/templates/viteuno/src/dashboard/components/main-nav.tsx +0 -38
  200. package/templates/viteuno/src/dashboard/components/overview.tsx +0 -78
  201. package/templates/viteuno/src/dashboard/components/recent-sales.tsx +0 -67
  202. package/templates/viteuno/src/dashboard/components/search.tsx +0 -13
  203. package/templates/viteuno/src/dashboard/components/team-switcher.tsx +0 -205
  204. package/templates/viteuno/src/dashboard/components/user-nav.tsx +0 -67
  205. package/templates/viteuno/src/dashboard/page.tsx +0 -140
  206. package/templates/viteuno/src/lib/utils.ts +0 -19
  207. package/templates/viteuno/src/main.tsx +0 -14
  208. package/templates/viteuno/src/styles/globals.css +0 -4
  209. package/templates/viteuno/src/vite-env.d.ts +0 -1
  210. package/templates/viteuno/src-tauri/Cargo.lock +0 -3701
  211. package/templates/viteuno/src-tauri/Cargo.toml +0 -36
  212. package/templates/viteuno/src-tauri/build.rs +0 -3
  213. package/templates/viteuno/src-tauri/icons/128x128.png +0 -0
  214. package/templates/viteuno/src-tauri/icons/128x128@2x.png +0 -0
  215. package/templates/viteuno/src-tauri/icons/32x32.png +0 -0
  216. package/templates/viteuno/src-tauri/icons/Square107x107Logo.png +0 -0
  217. package/templates/viteuno/src-tauri/icons/Square142x142Logo.png +0 -0
  218. package/templates/viteuno/src-tauri/icons/Square150x150Logo.png +0 -0
  219. package/templates/viteuno/src-tauri/icons/Square284x284Logo.png +0 -0
  220. package/templates/viteuno/src-tauri/icons/Square30x30Logo.png +0 -0
  221. package/templates/viteuno/src-tauri/icons/Square310x310Logo.png +0 -0
  222. package/templates/viteuno/src-tauri/icons/Square44x44Logo.png +0 -0
  223. package/templates/viteuno/src-tauri/icons/Square71x71Logo.png +0 -0
  224. package/templates/viteuno/src-tauri/icons/Square89x89Logo.png +0 -0
  225. package/templates/viteuno/src-tauri/icons/StoreLogo.png +0 -0
  226. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
  227. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
  228. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
  229. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
  230. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
  231. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
  232. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
  233. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
  234. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
  235. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
  236. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
  237. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  238. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
  239. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
  240. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  241. package/templates/viteuno/src-tauri/icons/icon.icns +0 -0
  242. package/templates/viteuno/src-tauri/icons/icon.ico +0 -0
  243. package/templates/viteuno/src-tauri/icons/icon.png +0 -0
  244. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
  245. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
  246. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
  247. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
  248. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
  249. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
  250. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
  251. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
  252. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
  253. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
  254. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
  255. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
  256. package/templates/viteuno/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
  257. package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
  258. package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
  259. package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
  260. package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
  261. package/templates/viteuno/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
  262. package/templates/viteuno/src-tauri/src/main.rs +0 -16
  263. package/templates/viteuno/src-tauri/tauri.conf.json +0 -79
  264. package/templates/viteuno/tsconfig.json +0 -26
  265. package/templates/viteuno/tsconfig.node.json +0 -9
  266. package/templates/viteuno/uno.config.ts +0 -111
  267. package/templates/viteuno/vite.config.ts +0 -33
  268. /package/templates/next/src/app/examples/forms/{profile-form.tsx → components/profile-form.tsx} +0 -0
@@ -1,4 +1,4 @@
1
- lockfileVersion: '6.1'
1
+ lockfileVersion: '6.0'
2
2
 
3
3
  settings:
4
4
  autoInstallPeers: true
@@ -6,20 +6,20 @@ settings:
6
6
 
7
7
  dependencies:
8
8
  '@tanstack/svelte-table':
9
- specifier: ^8.9.1
10
- version: 8.9.1(svelte@3.59.1)
9
+ specifier: ^8.9.4
10
+ version: 8.9.4(svelte@4.1.2)
11
11
  '@tauri-apps/api':
12
- specifier: 2.0.0-alpha.4
13
- version: 2.0.0-alpha.4
12
+ specifier: 2.0.0-alpha.5
13
+ version: 2.0.0-alpha.5
14
14
  '@tauri-apps/plugin-window':
15
15
  specifier: 2.0.0-alpha.0
16
16
  version: 2.0.0-alpha.0
17
17
  class-variance-authority:
18
- specifier: ^0.6.0
19
- version: 0.6.0(typescript@5.1.3)
18
+ specifier: ^0.7.0
19
+ version: 0.7.0
20
20
  clsx:
21
- specifier: ^1.2.1
22
- version: 1.2.1
21
+ specifier: ^2.0.0
22
+ version: 2.0.0
23
23
  d3-scale:
24
24
  specifier: ^4.0.2
25
25
  version: 4.0.2
@@ -33,17 +33,17 @@ dependencies:
33
33
  specifier: ^8.0.4
34
34
  version: 8.0.4
35
35
  lucide-svelte:
36
- specifier: ^0.236.0
37
- version: 0.236.0(svelte@3.59.1)
36
+ specifier: ^0.263.0
37
+ version: 0.263.0(svelte@4.1.2)
38
38
  mdast-util-to-string:
39
- specifier: ^3.2.0
40
- version: 3.2.0
39
+ specifier: ^4.0.0
40
+ version: 4.0.0
41
41
  radix-svelte:
42
- specifier: ^0.7.1
43
- version: 0.7.1(svelte@3.59.1)
42
+ specifier: ^0.9.0
43
+ version: 0.9.0(svelte@4.1.2)
44
44
  rehype-pretty-code:
45
- specifier: ^0.9.6
46
- version: 0.9.6(shiki@0.14.2)
45
+ specifier: ^0.10.0
46
+ version: 0.10.0(shiki@0.14.3)
47
47
  rehype-slug:
48
48
  specifier: ^5.1.0
49
49
  version: 5.1.0
@@ -57,40 +57,40 @@ dependencies:
57
57
  specifier: ^3.0.1
58
58
  version: 3.0.1
59
59
  shiki:
60
- specifier: ^0.14.2
61
- version: 0.14.2
60
+ specifier: ^0.14.3
61
+ version: 0.14.3
62
62
  svelte-legos:
63
63
  specifier: ^0.2.1
64
- version: 0.2.1(svelte@3.59.1)
64
+ version: 0.2.1(svelte@4.1.2)
65
65
  svelte-wrap-balancer:
66
- specifier: ^0.0.3
67
- version: 0.0.3
66
+ specifier: ^0.0.4
67
+ version: 0.0.4
68
68
  tailwind-merge:
69
- specifier: ^1.13.0
70
- version: 1.13.0
69
+ specifier: ^1.14.0
70
+ version: 1.14.0
71
71
  unified:
72
72
  specifier: ^10.1.2
73
73
  version: 10.1.2
74
74
  unist-builder:
75
- specifier: ^3.0.1
76
- version: 3.0.1
75
+ specifier: ^4.0.0
76
+ version: 4.0.0
77
77
  unist-util-visit:
78
- specifier: ^4.1.2
79
- version: 4.1.2
78
+ specifier: ^5.0.0
79
+ version: 5.0.0
80
80
 
81
81
  devDependencies:
82
82
  '@sveltejs/adapter-auto':
83
83
  specifier: ^2.1.0
84
- version: 2.1.0(@sveltejs/kit@1.20.1)
84
+ version: 2.1.0(@sveltejs/kit@1.22.4)
85
85
  '@sveltejs/adapter-static':
86
- specifier: 2.0.2
87
- version: 2.0.2(@sveltejs/kit@1.20.1)
86
+ specifier: 2.0.3
87
+ version: 2.0.3(@sveltejs/kit@1.22.4)
88
88
  '@sveltejs/kit':
89
- specifier: ^1.20.1
90
- version: 1.20.1(svelte@3.59.1)(vite@4.3.9)
89
+ specifier: ^1.22.4
90
+ version: 1.22.4(svelte@4.1.2)(vite@4.4.7)
91
91
  '@tauri-apps/cli':
92
- specifier: 2.0.0-alpha.9
93
- version: 2.0.0-alpha.9
92
+ specifier: 2.0.0-alpha.10
93
+ version: 2.0.0-alpha.10
94
94
  '@types/d3-scale':
95
95
  specifier: ^4.0.3
96
96
  version: 4.0.3
@@ -98,79 +98,87 @@ devDependencies:
98
98
  specifier: ^1.0.2
99
99
  version: 1.0.2
100
100
  '@types/node':
101
- specifier: ^20.2.5
102
- version: 20.2.5
101
+ specifier: ^20.4.5
102
+ version: 20.4.5
103
103
  '@typescript-eslint/eslint-plugin':
104
- specifier: ^5.59.8
105
- version: 5.59.8(@typescript-eslint/parser@5.59.8)(eslint@8.42.0)(typescript@5.1.3)
104
+ specifier: ^6.2.0
105
+ version: 6.2.0(@typescript-eslint/parser@6.2.0)(eslint@8.46.0)(typescript@5.1.6)
106
106
  '@typescript-eslint/parser':
107
- specifier: ^5.59.8
108
- version: 5.59.8(eslint@8.42.0)(typescript@5.1.3)
107
+ specifier: ^6.2.0
108
+ version: 6.2.0(eslint@8.46.0)(typescript@5.1.6)
109
109
  autoprefixer:
110
110
  specifier: ^10.4.14
111
- version: 10.4.14(postcss@8.4.24)
111
+ version: 10.4.14(postcss@8.4.27)
112
112
  eslint:
113
- specifier: ^8.42.0
114
- version: 8.42.0
113
+ specifier: ^8.46.0
114
+ version: 8.46.0
115
115
  eslint-config-prettier:
116
- specifier: ^8.8.0
117
- version: 8.8.0(eslint@8.42.0)
116
+ specifier: ^8.9.0
117
+ version: 8.9.0(eslint@8.46.0)
118
118
  eslint-plugin-svelte:
119
- specifier: ^2.30.0
120
- version: 2.30.0(eslint@8.42.0)(svelte@3.59.1)
119
+ specifier: ^2.32.4
120
+ version: 2.32.4(eslint@8.46.0)(svelte@4.1.2)
121
121
  mdsvex:
122
- specifier: 0.10.6
123
- version: 0.10.6(svelte@3.59.1)
122
+ specifier: 0.11.0
123
+ version: 0.11.0(svelte@4.1.2)
124
124
  postcss:
125
- specifier: ^8.4.24
126
- version: 8.4.24
125
+ specifier: ^8.4.27
126
+ version: 8.4.27
127
127
  postcss-load-config:
128
128
  specifier: ^4.0.1
129
- version: 4.0.1(postcss@8.4.24)
129
+ version: 4.0.1(postcss@8.4.27)
130
130
  prettier:
131
- specifier: ^2.8.8
132
- version: 2.8.8
131
+ specifier: ^3.0.0
132
+ version: 3.0.0
133
133
  prettier-plugin-svelte:
134
- specifier: ^2.10.1
135
- version: 2.10.1(prettier@2.8.8)(svelte@3.59.1)
134
+ specifier: ^3.0.3
135
+ version: 3.0.3(prettier@3.0.0)(svelte@4.1.2)
136
136
  prettier-plugin-tailwindcss:
137
- specifier: ^0.3.0
138
- version: 0.3.0(prettier-plugin-svelte@2.10.1)(prettier@2.8.8)
137
+ specifier: ^0.4.1
138
+ version: 0.4.1(prettier-plugin-svelte@3.0.3)(prettier@3.0.0)
139
139
  svelte:
140
- specifier: ^3.59.1
141
- version: 3.59.1
140
+ specifier: ^4.1.2
141
+ version: 4.1.2
142
142
  svelte-check:
143
- specifier: ^3.4.3
144
- version: 3.4.3(postcss-load-config@4.0.1)(postcss@8.4.24)(svelte@3.59.1)
143
+ specifier: ^3.4.6
144
+ version: 3.4.6(postcss-load-config@4.0.1)(postcss@8.4.27)(svelte@4.1.2)
145
145
  svelte-preprocess:
146
146
  specifier: ^5.0.4
147
- version: 5.0.4(postcss-load-config@4.0.1)(postcss@8.4.24)(svelte@3.59.1)(typescript@5.1.3)
147
+ version: 5.0.4(postcss-load-config@4.0.1)(postcss@8.4.27)(svelte@4.1.2)(typescript@5.1.6)
148
148
  tailwind-scrollbar:
149
149
  specifier: ^3.0.4
150
- version: 3.0.4(tailwindcss@3.3.2)
150
+ version: 3.0.4(tailwindcss@3.3.3)
151
151
  tailwindcss:
152
- specifier: ^3.3.2
153
- version: 3.3.2
152
+ specifier: ^3.3.3
153
+ version: 3.3.3
154
154
  tailwindcss-animate:
155
- specifier: ^1.0.5
156
- version: 1.0.5(tailwindcss@3.3.2)
155
+ specifier: ^1.0.6
156
+ version: 1.0.6(tailwindcss@3.3.3)
157
157
  tslib:
158
- specifier: ^2.5.3
159
- version: 2.5.3
158
+ specifier: ^2.6.1
159
+ version: 2.6.1
160
160
  tsx:
161
161
  specifier: ^3.12.7
162
162
  version: 3.12.7
163
163
  typescript:
164
- specifier: ^5.1.3
165
- version: 5.1.3
164
+ specifier: ^5.1.6
165
+ version: 5.1.6
166
166
  vite:
167
- specifier: ^4.3.9
168
- version: 4.3.9(@types/node@20.2.5)
167
+ specifier: ^4.4.7
168
+ version: 4.4.7(@types/node@20.4.5)
169
169
  vitest:
170
- specifier: ^0.31.4
171
- version: 0.31.4
170
+ specifier: ^0.33.0
171
+ version: 0.33.0
172
172
 
173
173
  packages:
174
+ /@aashutoshrathi/word-wrap@1.2.6:
175
+ resolution:
176
+ {
177
+ integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==
178
+ }
179
+ engines: { node: '>=0.10.0' }
180
+ dev: true
181
+
174
182
  /@alloc/quick-lru@5.2.0:
175
183
  resolution:
176
184
  {
@@ -179,6 +187,16 @@ packages:
179
187
  engines: { node: '>=10' }
180
188
  dev: true
181
189
 
190
+ /@ampproject/remapping@2.2.1:
191
+ resolution:
192
+ {
193
+ integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==
194
+ }
195
+ engines: { node: '>=6.0.0' }
196
+ dependencies:
197
+ '@jridgewell/gen-mapping': 0.3.3
198
+ '@jridgewell/trace-mapping': 0.3.18
199
+
182
200
  /@esbuild-kit/cjs-loader@2.4.2:
183
201
  resolution:
184
202
  {
@@ -186,7 +204,7 @@ packages:
186
204
  }
187
205
  dependencies:
188
206
  '@esbuild-kit/core-utils': 3.1.0
189
- get-tsconfig: 4.6.0
207
+ get-tsconfig: 4.6.2
190
208
  dev: true
191
209
 
192
210
  /@esbuild-kit/core-utils@3.1.0:
@@ -206,7 +224,7 @@ packages:
206
224
  }
207
225
  dependencies:
208
226
  '@esbuild-kit/core-utils': 3.1.0
209
- get-tsconfig: 4.6.0
227
+ get-tsconfig: 4.6.2
210
228
  dev: true
211
229
 
212
230
  /@esbuild/android-arm64@0.17.19:
@@ -221,6 +239,18 @@ packages:
221
239
  dev: true
222
240
  optional: true
223
241
 
242
+ /@esbuild/android-arm64@0.18.17:
243
+ resolution:
244
+ {
245
+ integrity: sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==
246
+ }
247
+ engines: { node: '>=12' }
248
+ cpu: [arm64]
249
+ os: [android]
250
+ requiresBuild: true
251
+ dev: true
252
+ optional: true
253
+
224
254
  /@esbuild/android-arm@0.17.19:
225
255
  resolution:
226
256
  {
@@ -233,6 +263,18 @@ packages:
233
263
  dev: true
234
264
  optional: true
235
265
 
266
+ /@esbuild/android-arm@0.18.17:
267
+ resolution:
268
+ {
269
+ integrity: sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==
270
+ }
271
+ engines: { node: '>=12' }
272
+ cpu: [arm]
273
+ os: [android]
274
+ requiresBuild: true
275
+ dev: true
276
+ optional: true
277
+
236
278
  /@esbuild/android-x64@0.17.19:
237
279
  resolution:
238
280
  {
@@ -245,6 +287,18 @@ packages:
245
287
  dev: true
246
288
  optional: true
247
289
 
290
+ /@esbuild/android-x64@0.18.17:
291
+ resolution:
292
+ {
293
+ integrity: sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==
294
+ }
295
+ engines: { node: '>=12' }
296
+ cpu: [x64]
297
+ os: [android]
298
+ requiresBuild: true
299
+ dev: true
300
+ optional: true
301
+
248
302
  /@esbuild/darwin-arm64@0.17.19:
249
303
  resolution:
250
304
  {
@@ -257,6 +311,18 @@ packages:
257
311
  dev: true
258
312
  optional: true
259
313
 
314
+ /@esbuild/darwin-arm64@0.18.17:
315
+ resolution:
316
+ {
317
+ integrity: sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==
318
+ }
319
+ engines: { node: '>=12' }
320
+ cpu: [arm64]
321
+ os: [darwin]
322
+ requiresBuild: true
323
+ dev: true
324
+ optional: true
325
+
260
326
  /@esbuild/darwin-x64@0.17.19:
261
327
  resolution:
262
328
  {
@@ -269,6 +335,18 @@ packages:
269
335
  dev: true
270
336
  optional: true
271
337
 
338
+ /@esbuild/darwin-x64@0.18.17:
339
+ resolution:
340
+ {
341
+ integrity: sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==
342
+ }
343
+ engines: { node: '>=12' }
344
+ cpu: [x64]
345
+ os: [darwin]
346
+ requiresBuild: true
347
+ dev: true
348
+ optional: true
349
+
272
350
  /@esbuild/freebsd-arm64@0.17.19:
273
351
  resolution:
274
352
  {
@@ -281,6 +359,18 @@ packages:
281
359
  dev: true
282
360
  optional: true
283
361
 
362
+ /@esbuild/freebsd-arm64@0.18.17:
363
+ resolution:
364
+ {
365
+ integrity: sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==
366
+ }
367
+ engines: { node: '>=12' }
368
+ cpu: [arm64]
369
+ os: [freebsd]
370
+ requiresBuild: true
371
+ dev: true
372
+ optional: true
373
+
284
374
  /@esbuild/freebsd-x64@0.17.19:
285
375
  resolution:
286
376
  {
@@ -293,6 +383,18 @@ packages:
293
383
  dev: true
294
384
  optional: true
295
385
 
386
+ /@esbuild/freebsd-x64@0.18.17:
387
+ resolution:
388
+ {
389
+ integrity: sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==
390
+ }
391
+ engines: { node: '>=12' }
392
+ cpu: [x64]
393
+ os: [freebsd]
394
+ requiresBuild: true
395
+ dev: true
396
+ optional: true
397
+
296
398
  /@esbuild/linux-arm64@0.17.19:
297
399
  resolution:
298
400
  {
@@ -305,6 +407,18 @@ packages:
305
407
  dev: true
306
408
  optional: true
307
409
 
410
+ /@esbuild/linux-arm64@0.18.17:
411
+ resolution:
412
+ {
413
+ integrity: sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==
414
+ }
415
+ engines: { node: '>=12' }
416
+ cpu: [arm64]
417
+ os: [linux]
418
+ requiresBuild: true
419
+ dev: true
420
+ optional: true
421
+
308
422
  /@esbuild/linux-arm@0.17.19:
309
423
  resolution:
310
424
  {
@@ -317,6 +431,18 @@ packages:
317
431
  dev: true
318
432
  optional: true
319
433
 
434
+ /@esbuild/linux-arm@0.18.17:
435
+ resolution:
436
+ {
437
+ integrity: sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==
438
+ }
439
+ engines: { node: '>=12' }
440
+ cpu: [arm]
441
+ os: [linux]
442
+ requiresBuild: true
443
+ dev: true
444
+ optional: true
445
+
320
446
  /@esbuild/linux-ia32@0.17.19:
321
447
  resolution:
322
448
  {
@@ -329,6 +455,18 @@ packages:
329
455
  dev: true
330
456
  optional: true
331
457
 
458
+ /@esbuild/linux-ia32@0.18.17:
459
+ resolution:
460
+ {
461
+ integrity: sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==
462
+ }
463
+ engines: { node: '>=12' }
464
+ cpu: [ia32]
465
+ os: [linux]
466
+ requiresBuild: true
467
+ dev: true
468
+ optional: true
469
+
332
470
  /@esbuild/linux-loong64@0.17.19:
333
471
  resolution:
334
472
  {
@@ -341,6 +479,18 @@ packages:
341
479
  dev: true
342
480
  optional: true
343
481
 
482
+ /@esbuild/linux-loong64@0.18.17:
483
+ resolution:
484
+ {
485
+ integrity: sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==
486
+ }
487
+ engines: { node: '>=12' }
488
+ cpu: [loong64]
489
+ os: [linux]
490
+ requiresBuild: true
491
+ dev: true
492
+ optional: true
493
+
344
494
  /@esbuild/linux-mips64el@0.17.19:
345
495
  resolution:
346
496
  {
@@ -353,6 +503,18 @@ packages:
353
503
  dev: true
354
504
  optional: true
355
505
 
506
+ /@esbuild/linux-mips64el@0.18.17:
507
+ resolution:
508
+ {
509
+ integrity: sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==
510
+ }
511
+ engines: { node: '>=12' }
512
+ cpu: [mips64el]
513
+ os: [linux]
514
+ requiresBuild: true
515
+ dev: true
516
+ optional: true
517
+
356
518
  /@esbuild/linux-ppc64@0.17.19:
357
519
  resolution:
358
520
  {
@@ -365,6 +527,18 @@ packages:
365
527
  dev: true
366
528
  optional: true
367
529
 
530
+ /@esbuild/linux-ppc64@0.18.17:
531
+ resolution:
532
+ {
533
+ integrity: sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==
534
+ }
535
+ engines: { node: '>=12' }
536
+ cpu: [ppc64]
537
+ os: [linux]
538
+ requiresBuild: true
539
+ dev: true
540
+ optional: true
541
+
368
542
  /@esbuild/linux-riscv64@0.17.19:
369
543
  resolution:
370
544
  {
@@ -377,6 +551,18 @@ packages:
377
551
  dev: true
378
552
  optional: true
379
553
 
554
+ /@esbuild/linux-riscv64@0.18.17:
555
+ resolution:
556
+ {
557
+ integrity: sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==
558
+ }
559
+ engines: { node: '>=12' }
560
+ cpu: [riscv64]
561
+ os: [linux]
562
+ requiresBuild: true
563
+ dev: true
564
+ optional: true
565
+
380
566
  /@esbuild/linux-s390x@0.17.19:
381
567
  resolution:
382
568
  {
@@ -389,6 +575,18 @@ packages:
389
575
  dev: true
390
576
  optional: true
391
577
 
578
+ /@esbuild/linux-s390x@0.18.17:
579
+ resolution:
580
+ {
581
+ integrity: sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==
582
+ }
583
+ engines: { node: '>=12' }
584
+ cpu: [s390x]
585
+ os: [linux]
586
+ requiresBuild: true
587
+ dev: true
588
+ optional: true
589
+
392
590
  /@esbuild/linux-x64@0.17.19:
393
591
  resolution:
394
592
  {
@@ -401,6 +599,18 @@ packages:
401
599
  dev: true
402
600
  optional: true
403
601
 
602
+ /@esbuild/linux-x64@0.18.17:
603
+ resolution:
604
+ {
605
+ integrity: sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==
606
+ }
607
+ engines: { node: '>=12' }
608
+ cpu: [x64]
609
+ os: [linux]
610
+ requiresBuild: true
611
+ dev: true
612
+ optional: true
613
+
404
614
  /@esbuild/netbsd-x64@0.17.19:
405
615
  resolution:
406
616
  {
@@ -413,6 +623,18 @@ packages:
413
623
  dev: true
414
624
  optional: true
415
625
 
626
+ /@esbuild/netbsd-x64@0.18.17:
627
+ resolution:
628
+ {
629
+ integrity: sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==
630
+ }
631
+ engines: { node: '>=12' }
632
+ cpu: [x64]
633
+ os: [netbsd]
634
+ requiresBuild: true
635
+ dev: true
636
+ optional: true
637
+
416
638
  /@esbuild/openbsd-x64@0.17.19:
417
639
  resolution:
418
640
  {
@@ -425,6 +647,18 @@ packages:
425
647
  dev: true
426
648
  optional: true
427
649
 
650
+ /@esbuild/openbsd-x64@0.18.17:
651
+ resolution:
652
+ {
653
+ integrity: sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==
654
+ }
655
+ engines: { node: '>=12' }
656
+ cpu: [x64]
657
+ os: [openbsd]
658
+ requiresBuild: true
659
+ dev: true
660
+ optional: true
661
+
428
662
  /@esbuild/sunos-x64@0.17.19:
429
663
  resolution:
430
664
  {
@@ -437,6 +671,18 @@ packages:
437
671
  dev: true
438
672
  optional: true
439
673
 
674
+ /@esbuild/sunos-x64@0.18.17:
675
+ resolution:
676
+ {
677
+ integrity: sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==
678
+ }
679
+ engines: { node: '>=12' }
680
+ cpu: [x64]
681
+ os: [sunos]
682
+ requiresBuild: true
683
+ dev: true
684
+ optional: true
685
+
440
686
  /@esbuild/win32-arm64@0.17.19:
441
687
  resolution:
442
688
  {
@@ -449,6 +695,18 @@ packages:
449
695
  dev: true
450
696
  optional: true
451
697
 
698
+ /@esbuild/win32-arm64@0.18.17:
699
+ resolution:
700
+ {
701
+ integrity: sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==
702
+ }
703
+ engines: { node: '>=12' }
704
+ cpu: [arm64]
705
+ os: [win32]
706
+ requiresBuild: true
707
+ dev: true
708
+ optional: true
709
+
452
710
  /@esbuild/win32-ia32@0.17.19:
453
711
  resolution:
454
712
  {
@@ -461,6 +719,18 @@ packages:
461
719
  dev: true
462
720
  optional: true
463
721
 
722
+ /@esbuild/win32-ia32@0.18.17:
723
+ resolution:
724
+ {
725
+ integrity: sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==
726
+ }
727
+ engines: { node: '>=12' }
728
+ cpu: [ia32]
729
+ os: [win32]
730
+ requiresBuild: true
731
+ dev: true
732
+ optional: true
733
+
464
734
  /@esbuild/win32-x64@0.17.19:
465
735
  resolution:
466
736
  {
@@ -473,7 +743,19 @@ packages:
473
743
  dev: true
474
744
  optional: true
475
745
 
476
- /@eslint-community/eslint-utils@4.4.0(eslint@8.42.0):
746
+ /@esbuild/win32-x64@0.18.17:
747
+ resolution:
748
+ {
749
+ integrity: sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==
750
+ }
751
+ engines: { node: '>=12' }
752
+ cpu: [x64]
753
+ os: [win32]
754
+ requiresBuild: true
755
+ dev: true
756
+ optional: true
757
+
758
+ /@eslint-community/eslint-utils@4.4.0(eslint@8.46.0):
477
759
  resolution:
478
760
  {
479
761
  integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
@@ -482,28 +764,28 @@ packages:
482
764
  peerDependencies:
483
765
  eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
484
766
  dependencies:
485
- eslint: 8.42.0
486
- eslint-visitor-keys: 3.4.1
767
+ eslint: 8.46.0
768
+ eslint-visitor-keys: 3.4.2
487
769
  dev: true
488
770
 
489
- /@eslint-community/regexpp@4.5.1:
771
+ /@eslint-community/regexpp@4.6.2:
490
772
  resolution:
491
773
  {
492
- integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==
774
+ integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==
493
775
  }
494
776
  engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 }
495
777
  dev: true
496
778
 
497
- /@eslint/eslintrc@2.0.3:
779
+ /@eslint/eslintrc@2.1.1:
498
780
  resolution:
499
781
  {
500
- integrity: sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==
782
+ integrity: sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==
501
783
  }
502
784
  engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
503
785
  dependencies:
504
786
  ajv: 6.12.6
505
787
  debug: 4.3.4
506
- espree: 9.5.2
788
+ espree: 9.6.1
507
789
  globals: 13.20.0
508
790
  ignore: 5.2.4
509
791
  import-fresh: 3.3.0
@@ -514,28 +796,38 @@ packages:
514
796
  - supports-color
515
797
  dev: true
516
798
 
517
- /@eslint/js@8.42.0:
799
+ /@eslint/js@8.46.0:
518
800
  resolution:
519
801
  {
520
- integrity: sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw==
802
+ integrity: sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA==
521
803
  }
522
804
  engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
523
805
  dev: true
524
806
 
525
- /@floating-ui/core@1.2.6:
807
+ /@floating-ui/core@1.4.1:
526
808
  resolution:
527
809
  {
528
- integrity: sha512-EvYTiXet5XqweYGClEmpu3BoxmsQ4hkj3QaYA6qEnigCWffTP3vNRwBReTdrwDwo7OoJ3wM8Uoe9Uk4n+d4hfg==
810
+ integrity: sha512-jk3WqquEJRlcyu7997NtR5PibI+y5bi+LS3hPmguVClypenMsCY3CBa3LAQnozRCtCrYWSEtAdiskpamuJRFOQ==
529
811
  }
812
+ dependencies:
813
+ '@floating-ui/utils': 0.1.1
530
814
  dev: false
531
815
 
532
- /@floating-ui/dom@1.2.9:
816
+ /@floating-ui/dom@1.5.1:
533
817
  resolution:
534
818
  {
535
- integrity: sha512-sosQxsqgxMNkV3C+3UqTS6LxP7isRLwX8WMepp843Rb3/b0Wz8+MdUkxJksByip3C2WwLugLHN1b4ibn//zKwQ==
819
+ integrity: sha512-KwvVcPSXg6mQygvA1TjbN/gh///36kKtllIF8SUm0qpFj8+rvYrpvlYdL1JoA71SHpDqgSSdGOSoQ0Mp3uY5aw==
536
820
  }
537
821
  dependencies:
538
- '@floating-ui/core': 1.2.6
822
+ '@floating-ui/core': 1.4.1
823
+ '@floating-ui/utils': 0.1.1
824
+ dev: false
825
+
826
+ /@floating-ui/utils@0.1.1:
827
+ resolution:
828
+ {
829
+ integrity: sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw==
830
+ }
539
831
  dev: false
540
832
 
541
833
  /@humanwhocodes/config-array@0.11.10:
@@ -567,6 +859,16 @@ packages:
567
859
  }
568
860
  dev: true
569
861
 
862
+ /@jest/schemas@29.6.0:
863
+ resolution:
864
+ {
865
+ integrity: sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==
866
+ }
867
+ engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
868
+ dependencies:
869
+ '@sinclair/typebox': 0.27.8
870
+ dev: true
871
+
570
872
  /@jridgewell/gen-mapping@0.3.3:
571
873
  resolution:
572
874
  {
@@ -577,7 +879,6 @@ packages:
577
879
  '@jridgewell/set-array': 1.1.2
578
880
  '@jridgewell/sourcemap-codec': 1.4.15
579
881
  '@jridgewell/trace-mapping': 0.3.18
580
- dev: true
581
882
 
582
883
  /@jridgewell/resolve-uri@3.1.0:
583
884
  resolution:
@@ -585,7 +886,6 @@ packages:
585
886
  integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
586
887
  }
587
888
  engines: { node: '>=6.0.0' }
588
- dev: true
589
889
 
590
890
  /@jridgewell/set-array@1.1.2:
591
891
  resolution:
@@ -593,21 +893,18 @@ packages:
593
893
  integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
594
894
  }
595
895
  engines: { node: '>=6.0.0' }
596
- dev: true
597
896
 
598
897
  /@jridgewell/sourcemap-codec@1.4.14:
599
898
  resolution:
600
899
  {
601
900
  integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
602
901
  }
603
- dev: true
604
902
 
605
903
  /@jridgewell/sourcemap-codec@1.4.15:
606
904
  resolution:
607
905
  {
608
906
  integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
609
907
  }
610
- dev: true
611
908
 
612
909
  /@jridgewell/trace-mapping@0.3.18:
613
910
  resolution:
@@ -617,7 +914,6 @@ packages:
617
914
  dependencies:
618
915
  '@jridgewell/resolve-uri': 3.1.0
619
916
  '@jridgewell/sourcemap-codec': 1.4.14
620
- dev: true
621
917
 
622
918
  /@nodelib/fs.scandir@2.1.5:
623
919
  resolution:
@@ -656,7 +952,14 @@ packages:
656
952
  }
657
953
  dev: true
658
954
 
659
- /@sveltejs/adapter-auto@2.1.0(@sveltejs/kit@1.20.1):
955
+ /@sinclair/typebox@0.27.8:
956
+ resolution:
957
+ {
958
+ integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==
959
+ }
960
+ dev: true
961
+
962
+ /@sveltejs/adapter-auto@2.1.0(@sveltejs/kit@1.22.4):
660
963
  resolution:
661
964
  {
662
965
  integrity: sha512-o2pZCfATFtA/Gw/BB0Xm7k4EYaekXxaPGER3xGSY3FvzFJGTlJlZjBseaXwYSM94lZ0HniOjTokN3cWaLX6fow==
@@ -664,25 +967,25 @@ packages:
664
967
  peerDependencies:
665
968
  '@sveltejs/kit': ^1.0.0
666
969
  dependencies:
667
- '@sveltejs/kit': 1.20.1(svelte@3.59.1)(vite@4.3.9)
970
+ '@sveltejs/kit': 1.22.4(svelte@4.1.2)(vite@4.4.7)
668
971
  import-meta-resolve: 3.0.0
669
972
  dev: true
670
973
 
671
- /@sveltejs/adapter-static@2.0.2(@sveltejs/kit@1.20.1):
974
+ /@sveltejs/adapter-static@2.0.3(@sveltejs/kit@1.22.4):
672
975
  resolution:
673
976
  {
674
- integrity: sha512-9wYtf6s6ew7DHUHMrt55YpD1FgV7oWql2IGsW5BXquLxqcY9vjrqCFo0TzzDpo+ZPZkW/v77k0eOP6tsAb8HmQ==
977
+ integrity: sha512-VUqTfXsxYGugCpMqQv1U0LIdbR3S5nBkMMDmpjGVJyM6Q2jHVMFtdWJCkeHMySc6mZxJ+0eZK3T7IgmUCDrcUQ==
675
978
  }
676
979
  peerDependencies:
677
980
  '@sveltejs/kit': ^1.5.0
678
981
  dependencies:
679
- '@sveltejs/kit': 1.20.1(svelte@3.59.1)(vite@4.3.9)
982
+ '@sveltejs/kit': 1.22.4(svelte@4.1.2)(vite@4.4.7)
680
983
  dev: true
681
984
 
682
- /@sveltejs/kit@1.20.1(svelte@3.59.1)(vite@4.3.9):
985
+ /@sveltejs/kit@1.22.4(svelte@4.1.2)(vite@4.4.7):
683
986
  resolution:
684
987
  {
685
- integrity: sha512-iZ7PvbM45sdLR3KIXFTbwIwP4PmeO/7JdNdpKRc/T9xMgDabNlPhL1gnJ/Hi1w00g4nc3Zpo/HNrzbRmuOnUjQ==
988
+ integrity: sha512-Opkqw1QXk4Cc25b/heJP2D7mX+OUBFAq4MXKfET58svTTxdeiHFKzmnuRsSF3nmxESqrLjqPAgHpib+knNGzRw==
686
989
  }
687
990
  engines: { node: ^16.14 || >=18 }
688
991
  hasBin: true
@@ -691,100 +994,107 @@ packages:
691
994
  svelte: ^3.54.0 || ^4.0.0-next.0
692
995
  vite: ^4.0.0
693
996
  dependencies:
694
- '@sveltejs/vite-plugin-svelte': 2.4.1(svelte@3.59.1)(vite@4.3.9)
997
+ '@sveltejs/vite-plugin-svelte': 2.4.3(svelte@4.1.2)(vite@4.4.7)
695
998
  '@types/cookie': 0.5.1
696
999
  cookie: 0.5.0
697
1000
  devalue: 4.3.2
698
1001
  esm-env: 1.0.0
699
1002
  kleur: 4.1.5
700
- magic-string: 0.30.0
1003
+ magic-string: 0.30.2
701
1004
  mime: 3.0.0
702
1005
  sade: 1.8.1
703
1006
  set-cookie-parser: 2.6.0
704
1007
  sirv: 2.0.3
705
- svelte: 3.59.1
706
- tiny-glob: 0.2.9
1008
+ svelte: 4.1.2
707
1009
  undici: 5.22.1
708
- vite: 4.3.9(@types/node@20.2.5)
1010
+ vite: 4.4.7(@types/node@20.4.5)
709
1011
  transitivePeerDependencies:
710
1012
  - supports-color
711
1013
  dev: true
712
1014
 
713
- /@sveltejs/vite-plugin-svelte-inspector@1.0.2(@sveltejs/vite-plugin-svelte@2.4.1)(svelte@3.59.1)(vite@4.3.9):
1015
+ /@sveltejs/vite-plugin-svelte-inspector@1.0.3(@sveltejs/vite-plugin-svelte@2.4.3)(svelte@4.1.2)(vite@4.4.7):
714
1016
  resolution:
715
1017
  {
716
- integrity: sha512-Cy1dUMcYCnDVV/hPLXa43YZJ2jGKVW5rA0xuNL9dlmYhT0yoS1g7+FOFSRlgk0BXKk/Oc7grs+8BVA5Iz2fr8A==
1018
+ integrity: sha512-Khdl5jmmPN6SUsVuqSXatKpQTMIifoQPDanaxC84m9JxIibWvSABJyHpyys0Z+1yYrxY5TTEQm+6elh0XCMaOA==
717
1019
  }
718
1020
  engines: { node: ^14.18.0 || >= 16 }
719
1021
  peerDependencies:
720
1022
  '@sveltejs/vite-plugin-svelte': ^2.2.0
721
- svelte: ^3.54.0 || ^4.0.0-next.0
1023
+ svelte: ^3.54.0 || ^4.0.0
722
1024
  vite: ^4.0.0
723
1025
  dependencies:
724
- '@sveltejs/vite-plugin-svelte': 2.4.1(svelte@3.59.1)(vite@4.3.9)
1026
+ '@sveltejs/vite-plugin-svelte': 2.4.3(svelte@4.1.2)(vite@4.4.7)
725
1027
  debug: 4.3.4
726
- svelte: 3.59.1
727
- vite: 4.3.9(@types/node@20.2.5)
1028
+ svelte: 4.1.2
1029
+ vite: 4.4.7(@types/node@20.4.5)
728
1030
  transitivePeerDependencies:
729
1031
  - supports-color
730
1032
  dev: true
731
1033
 
732
- /@sveltejs/vite-plugin-svelte@2.4.1(svelte@3.59.1)(vite@4.3.9):
1034
+ /@sveltejs/vite-plugin-svelte@2.4.3(svelte@4.1.2)(vite@4.4.7):
733
1035
  resolution:
734
1036
  {
735
- integrity: sha512-bNNKvoRY89ptY7udeBSCmTdCVwkjmMcZ0j/z9J5MuedT8jPjq0zrknAo/jF1sToAza4NVaAgR9AkZoD9oJJmnA==
1037
+ integrity: sha512-NY2h+B54KHZO3kDURTdARqthn6D4YSIebtfW75NvZ/fwyk4G+AJw3V/i0OBjyN4406Ht9yZcnNWMuRUFnDNNiA==
736
1038
  }
737
1039
  engines: { node: ^14.18.0 || >= 16 }
738
1040
  peerDependencies:
739
- svelte: ^3.54.0 || ^4.0.0-next.0
1041
+ svelte: ^3.54.0 || ^4.0.0
740
1042
  vite: ^4.0.0
741
1043
  dependencies:
742
- '@sveltejs/vite-plugin-svelte-inspector': 1.0.2(@sveltejs/vite-plugin-svelte@2.4.1)(svelte@3.59.1)(vite@4.3.9)
1044
+ '@sveltejs/vite-plugin-svelte-inspector': 1.0.3(@sveltejs/vite-plugin-svelte@2.4.3)(svelte@4.1.2)(vite@4.4.7)
743
1045
  debug: 4.3.4
744
1046
  deepmerge: 4.3.1
745
1047
  kleur: 4.1.5
746
- magic-string: 0.30.0
747
- svelte: 3.59.1
748
- svelte-hmr: 0.15.2(svelte@3.59.1)
749
- vite: 4.3.9(@types/node@20.2.5)
750
- vitefu: 0.2.4(vite@4.3.9)
1048
+ magic-string: 0.30.2
1049
+ svelte: 4.1.2
1050
+ svelte-hmr: 0.15.2(svelte@4.1.2)
1051
+ vite: 4.4.7(@types/node@20.4.5)
1052
+ vitefu: 0.2.4(vite@4.4.7)
751
1053
  transitivePeerDependencies:
752
1054
  - supports-color
753
1055
  dev: true
754
1056
 
755
- /@tanstack/svelte-table@8.9.1(svelte@3.59.1):
1057
+ /@tanstack/svelte-table@8.9.4(svelte@4.1.2):
756
1058
  resolution:
757
1059
  {
758
- integrity: sha512-c84SBP2rRbloBcA3/WFsfm0a4vJCeztbRxox4MHAPCwfLW955tmCYbIF6ihcDUZg5fsDvu992qdDEhKKLLxmEg==
1060
+ integrity: sha512-Qz8rRnsCGAg5PQlxzU/ikgZ81gaLeqFlRXVEmKgr3H59Rbs1nZ1JQP27BQMJ+Oi0y4Br7q5P6IfThenwf6qc6g==
759
1061
  }
760
1062
  engines: { node: '>=12' }
761
1063
  peerDependencies:
762
1064
  svelte: ^3.49.0
763
1065
  dependencies:
764
- '@tanstack/table-core': 8.9.1
765
- svelte: 3.59.1
1066
+ '@tanstack/table-core': 8.9.3
1067
+ svelte: 4.1.2
766
1068
  dev: false
767
1069
 
768
- /@tanstack/table-core@8.9.1:
1070
+ /@tanstack/table-core@8.9.3:
769
1071
  resolution:
770
1072
  {
771
- integrity: sha512-2+R83n8vMZND0q3W1lSiF7co9nFbeWbjAErFf27xwbeA9E0wtUu5ZDfgj+TZ6JzdAEQAgfxkk/QNFAKiS8E4MA==
1073
+ integrity: sha512-NpHZBoHTfqyJk0m/s/+CSuAiwtebhYK90mDuf5eylTvgViNOujiaOaxNDxJkQQAsVvHWZftUGAx1EfO1rkKtLg==
1074
+ }
1075
+ engines: { node: '>=12' }
1076
+ dev: false
1077
+
1078
+ /@tauri-apps/api@2.0.0-alpha.4:
1079
+ resolution:
1080
+ {
1081
+ integrity: sha512-gWe5fFHbwFM+dmdDPtlDvVDVtoMneGRM+S8mECevWhKpXYxId0yxznE56YGAvPSJXC3vgsXw16mOmkTnEVKnaw==
772
1082
  }
773
- engines: { node: '>=12' }
1083
+ engines: { node: '>= 14.6.0', npm: '>= 6.6.0', yarn: '>= 1.19.1' }
774
1084
  dev: false
775
1085
 
776
- /@tauri-apps/api@2.0.0-alpha.4:
1086
+ /@tauri-apps/api@2.0.0-alpha.5:
777
1087
  resolution:
778
1088
  {
779
- integrity: sha512-gWe5fFHbwFM+dmdDPtlDvVDVtoMneGRM+S8mECevWhKpXYxId0yxznE56YGAvPSJXC3vgsXw16mOmkTnEVKnaw==
1089
+ integrity: sha512-OqysC4c819itGxic50RoDMrmd+ofX+MMNkXKeRS0BV2rkKqrnuV17o3TrQXFI1xs/kXRmmPC+3Y42P9Y5uNvRg==
780
1090
  }
781
1091
  engines: { node: '>= 14.6.0', npm: '>= 6.6.0', yarn: '>= 1.19.1' }
782
1092
  dev: false
783
1093
 
784
- /@tauri-apps/cli-darwin-arm64@2.0.0-alpha.9:
1094
+ /@tauri-apps/cli-darwin-arm64@2.0.0-alpha.10:
785
1095
  resolution:
786
1096
  {
787
- integrity: sha512-h7AQY4MbHyy7CLANfoegJyaypKQ3fYPlBA3mnhtF+zntrMxVTv+HO9sgn98jGnwlOak8y0NPPKJ6gZFu5GYiNg==
1097
+ integrity: sha512-z6DoKRUm1Yygu2Tpatu7Fej0eZejZQcsDKsHWc3b5yoIsrodxvKbko2SvYczUx4ecXWplJBTIfTZNo6ciIRRmw==
788
1098
  }
789
1099
  engines: { node: '>= 10' }
790
1100
  cpu: [arm64]
@@ -793,10 +1103,10 @@ packages:
793
1103
  dev: true
794
1104
  optional: true
795
1105
 
796
- /@tauri-apps/cli-darwin-x64@2.0.0-alpha.9:
1106
+ /@tauri-apps/cli-darwin-x64@2.0.0-alpha.10:
797
1107
  resolution:
798
1108
  {
799
- integrity: sha512-8RtvzZ4/1gZU8SvMaCygtjc9Q0bMnA0NuQKOMrehRfpvvy2gw/q8MMdw3WEawYGQHqEbr6YtNJmaR5wlsVk+IQ==
1109
+ integrity: sha512-xqPUC5uI6zo5+1IXSwZLj1uyRWCeZgQgpyaExGDOYBjcC8HUc2NRdFGsGVtGhFWE+HftppD9p8elJLQM90B02w==
800
1110
  }
801
1111
  engines: { node: '>= 10' }
802
1112
  cpu: [x64]
@@ -805,10 +1115,10 @@ packages:
805
1115
  dev: true
806
1116
  optional: true
807
1117
 
808
- /@tauri-apps/cli-linux-arm-gnueabihf@2.0.0-alpha.9:
1118
+ /@tauri-apps/cli-linux-arm-gnueabihf@2.0.0-alpha.10:
809
1119
  resolution:
810
1120
  {
811
- integrity: sha512-nHAgFEJ2DXXEx96FLPnqZ9vfFGw7Hr2ZaY+xy28llXWljCOguWi8wdHv4OMnq0hbOkegVGplYPc4RSQ5uUia2Q==
1121
+ integrity: sha512-UpjG9qpF/7fkfrBoM6N+Lo08HRAKR9k7LENAFU+zd81JestxOCs0hxuX2/lGkVydtOuSXfVvMn1W5YpGKkgp3A==
812
1122
  }
813
1123
  engines: { node: '>= 10' }
814
1124
  cpu: [arm]
@@ -817,10 +1127,10 @@ packages:
817
1127
  dev: true
818
1128
  optional: true
819
1129
 
820
- /@tauri-apps/cli-linux-arm64-gnu@2.0.0-alpha.9:
1130
+ /@tauri-apps/cli-linux-arm64-gnu@2.0.0-alpha.10:
821
1131
  resolution:
822
1132
  {
823
- integrity: sha512-ETmUoTp+UgHypPpsq3OYwbcmX8MqjCGIUAzDHoVFpYuj2oqHw0ZaCx2lQPTnqW5G5L9X9VXhMAcRB8OBZG5KFw==
1133
+ integrity: sha512-Pc8seZINcbHDgOC0ThZ5EPUqOYbL94wEUecKkiaKn7gCl3/ZyIlRte5gizBeLwmnG4fkSLZc0UMvRilu4hGK3g==
824
1134
  }
825
1135
  engines: { node: '>= 10' }
826
1136
  cpu: [arm64]
@@ -829,10 +1139,10 @@ packages:
829
1139
  dev: true
830
1140
  optional: true
831
1141
 
832
- /@tauri-apps/cli-linux-arm64-musl@2.0.0-alpha.9:
1142
+ /@tauri-apps/cli-linux-arm64-musl@2.0.0-alpha.10:
833
1143
  resolution:
834
1144
  {
835
- integrity: sha512-S55E2u4LsQajoxkpYqd2skPEVG5hp+Mkhhnixfi+87q87n9iIvIqcH+4ejDXAPUrWNMsRKIWVURV2ZzivqK5Kw==
1145
+ integrity: sha512-ZlaBbJq5yXP6VmNOrUGgSDnM1JcDsYf7XfVOm/kLVVrZ3iEzYA18v4SZH2kR18bU7h5+YVCPwwnfD+B8ROGidA==
836
1146
  }
837
1147
  engines: { node: '>= 10' }
838
1148
  cpu: [arm64]
@@ -841,10 +1151,10 @@ packages:
841
1151
  dev: true
842
1152
  optional: true
843
1153
 
844
- /@tauri-apps/cli-linux-x64-gnu@2.0.0-alpha.9:
1154
+ /@tauri-apps/cli-linux-x64-gnu@2.0.0-alpha.10:
845
1155
  resolution:
846
1156
  {
847
- integrity: sha512-/0J5sJDu+cSrj67L4Q4FVANe1ffpsz3LZMQRkbWmT2ggd2Mxg8LZBtg7y5ysMfJg8xjKvymi+1mS2yU1B7/k9Q==
1157
+ integrity: sha512-7fo0u56URSFZwJpwPMeNiYypbgYcT8i5KPMe1CQgWW19sJLHBMK1Kd0L8SeAZDlCPpY2coNifAdEm3C7Ca7xMQ==
848
1158
  }
849
1159
  engines: { node: '>= 10' }
850
1160
  cpu: [x64]
@@ -853,10 +1163,10 @@ packages:
853
1163
  dev: true
854
1164
  optional: true
855
1165
 
856
- /@tauri-apps/cli-linux-x64-musl@2.0.0-alpha.9:
1166
+ /@tauri-apps/cli-linux-x64-musl@2.0.0-alpha.10:
857
1167
  resolution:
858
1168
  {
859
- integrity: sha512-zjtf5H3c4amlBjIdDiQ3pmiMV/cmcPxaiH4KgyRD6NZXY9+gDk5dkzj3WAWegiD1ycz3bv5INO/tDxjk5ZSYlw==
1169
+ integrity: sha512-9lY7YJmsm7SndlIxKzj/faX/bYX1q0dib88kpxT2xW4qNt9RihTI6PST1PDce5DmEoheLU9Xp9ere8SfoHgE2A==
860
1170
  }
861
1171
  engines: { node: '>= 10' }
862
1172
  cpu: [x64]
@@ -865,10 +1175,22 @@ packages:
865
1175
  dev: true
866
1176
  optional: true
867
1177
 
868
- /@tauri-apps/cli-win32-ia32-msvc@2.0.0-alpha.9:
1178
+ /@tauri-apps/cli-win32-arm64-msvc@2.0.0-alpha.10:
1179
+ resolution:
1180
+ {
1181
+ integrity: sha512-tJOHIy13vjYRkfw7++aRDQEb5CVzVQKDiJ35Zg4I8YcaPExgj6LKCpDo8N8AD4RXy4SnYKzqYTt8K9xcyIonzA==
1182
+ }
1183
+ engines: { node: '>= 10' }
1184
+ cpu: [arm64]
1185
+ os: [win32]
1186
+ requiresBuild: true
1187
+ dev: true
1188
+ optional: true
1189
+
1190
+ /@tauri-apps/cli-win32-ia32-msvc@2.0.0-alpha.10:
869
1191
  resolution:
870
1192
  {
871
- integrity: sha512-Hn0xDaEEMeXRzWCtew2MIYDky8hF+BOos0PP4qyCX14LfChpgSIT0aMYC8xbSfj9N9pwznhNBxgOtCADaTPWcg==
1193
+ integrity: sha512-DN4TlOU8e6cRRVXAnldHhfDDr0ER000fojJ/Vb33fgGvaXury3jBtNyKQuoscvg6T8fLUBc72O6+4tDnXlIBwQ==
872
1194
  }
873
1195
  engines: { node: '>= 10' }
874
1196
  cpu: [ia32]
@@ -877,10 +1199,10 @@ packages:
877
1199
  dev: true
878
1200
  optional: true
879
1201
 
880
- /@tauri-apps/cli-win32-x64-msvc@2.0.0-alpha.9:
1202
+ /@tauri-apps/cli-win32-x64-msvc@2.0.0-alpha.10:
881
1203
  resolution:
882
1204
  {
883
- integrity: sha512-541nR7UoasX/fnEWhC14H4Ppj17Aa1fbCyFb9+zmWjupVkEGf/yQFvdWRHdmCkgOdGuxPahR5hbOPh+jvaklFw==
1205
+ integrity: sha512-H5Y+L7H24n9EVB/Dw5HHGo+wQZHTLVgWrkOwsxqssDhTPiM5CbEuyjEf/B1y8uqp4YoIlw5t7Db+GBg12KejAA==
884
1206
  }
885
1207
  engines: { node: '>= 10' }
886
1208
  cpu: [x64]
@@ -889,23 +1211,24 @@ packages:
889
1211
  dev: true
890
1212
  optional: true
891
1213
 
892
- /@tauri-apps/cli@2.0.0-alpha.9:
1214
+ /@tauri-apps/cli@2.0.0-alpha.10:
893
1215
  resolution:
894
1216
  {
895
- integrity: sha512-roQNpFC3Ijni/c7TCkCpUg3gWKfxs1ftWSQJyCthqIPRM5J7I2vOfhcUXIZw9glrxDp5npyRW0xYyI7W/424uQ==
1217
+ integrity: sha512-8SkTAxg5J06f7BWgJjNt1NEBPRsffmj4X+PckHX3ZguZd8xqpGtACufUg0zVqaFZPmd+9OCvoEJSP5veO4utDQ==
896
1218
  }
897
1219
  engines: { node: '>= 10' }
898
1220
  hasBin: true
899
1221
  optionalDependencies:
900
- '@tauri-apps/cli-darwin-arm64': 2.0.0-alpha.9
901
- '@tauri-apps/cli-darwin-x64': 2.0.0-alpha.9
902
- '@tauri-apps/cli-linux-arm-gnueabihf': 2.0.0-alpha.9
903
- '@tauri-apps/cli-linux-arm64-gnu': 2.0.0-alpha.9
904
- '@tauri-apps/cli-linux-arm64-musl': 2.0.0-alpha.9
905
- '@tauri-apps/cli-linux-x64-gnu': 2.0.0-alpha.9
906
- '@tauri-apps/cli-linux-x64-musl': 2.0.0-alpha.9
907
- '@tauri-apps/cli-win32-ia32-msvc': 2.0.0-alpha.9
908
- '@tauri-apps/cli-win32-x64-msvc': 2.0.0-alpha.9
1222
+ '@tauri-apps/cli-darwin-arm64': 2.0.0-alpha.10
1223
+ '@tauri-apps/cli-darwin-x64': 2.0.0-alpha.10
1224
+ '@tauri-apps/cli-linux-arm-gnueabihf': 2.0.0-alpha.10
1225
+ '@tauri-apps/cli-linux-arm64-gnu': 2.0.0-alpha.10
1226
+ '@tauri-apps/cli-linux-arm64-musl': 2.0.0-alpha.10
1227
+ '@tauri-apps/cli-linux-x64-gnu': 2.0.0-alpha.10
1228
+ '@tauri-apps/cli-linux-x64-musl': 2.0.0-alpha.10
1229
+ '@tauri-apps/cli-win32-arm64-msvc': 2.0.0-alpha.10
1230
+ '@tauri-apps/cli-win32-ia32-msvc': 2.0.0-alpha.10
1231
+ '@tauri-apps/cli-win32-x64-msvc': 2.0.0-alpha.10
909
1232
  dev: true
910
1233
 
911
1234
  /@tauri-apps/plugin-window@2.0.0-alpha.0:
@@ -972,13 +1295,19 @@ packages:
972
1295
  }
973
1296
  dev: true
974
1297
 
975
- /@types/hast@2.3.4:
1298
+ /@types/estree@1.0.1:
1299
+ resolution:
1300
+ {
1301
+ integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==
1302
+ }
1303
+
1304
+ /@types/hast@2.3.5:
976
1305
  resolution:
977
1306
  {
978
- integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==
1307
+ integrity: sha512-SvQi0L/lNpThgPoleH53cdjB3y9zpLlVjRbqB3rH8hx1jiRSBGAhyjV3H+URFjNVRqt2EdYNrbZE5IsGlNfpRg==
979
1308
  }
980
1309
  dependencies:
981
- '@types/unist': 2.0.6
1310
+ '@types/unist': 2.0.7
982
1311
  dev: false
983
1312
 
984
1313
  /@types/json-schema@7.0.12:
@@ -988,13 +1317,22 @@ packages:
988
1317
  }
989
1318
  dev: true
990
1319
 
991
- /@types/mdast@3.0.11:
1320
+ /@types/mdast@3.0.12:
1321
+ resolution:
1322
+ {
1323
+ integrity: sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg==
1324
+ }
1325
+ dependencies:
1326
+ '@types/unist': 2.0.7
1327
+ dev: false
1328
+
1329
+ /@types/mdast@4.0.0:
992
1330
  resolution:
993
1331
  {
994
- integrity: sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==
1332
+ integrity: sha512-YLeG8CujC9adtj/kuDzq1N4tCDYKoZ5l/bnjq8d74+t/3q/tHquJOJKUQXJrLCflOHpKjXgcI/a929gpmLOEng==
995
1333
  }
996
1334
  dependencies:
997
- '@types/unist': 2.0.6
1335
+ '@types/unist': 3.0.0
998
1336
  dev: false
999
1337
 
1000
1338
  /@types/ms@0.7.31:
@@ -1004,10 +1342,10 @@ packages:
1004
1342
  }
1005
1343
  dev: false
1006
1344
 
1007
- /@types/node@20.2.5:
1345
+ /@types/node@20.4.5:
1008
1346
  resolution:
1009
1347
  {
1010
- integrity: sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==
1348
+ integrity: sha512-rt40Nk13II9JwQBdeYqmbn2Q6IVTA5uPhvSO+JVqdXw/6/4glI6oR9ezty/A9Hg5u7JH4OmYmuQ+XvjKm0Datg==
1011
1349
  }
1012
1350
  dev: true
1013
1351
 
@@ -1032,221 +1370,229 @@ packages:
1032
1370
  }
1033
1371
  dev: true
1034
1372
 
1035
- /@types/unist@2.0.6:
1373
+ /@types/unist@2.0.7:
1036
1374
  resolution:
1037
1375
  {
1038
- integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==
1376
+ integrity: sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g==
1039
1377
  }
1040
1378
 
1041
- /@typescript-eslint/eslint-plugin@5.59.8(@typescript-eslint/parser@5.59.8)(eslint@8.42.0)(typescript@5.1.3):
1379
+ /@types/unist@3.0.0:
1042
1380
  resolution:
1043
1381
  {
1044
- integrity: sha512-JDMOmhXteJ4WVKOiHXGCoB96ADWg9q7efPWHRViT/f09bA8XOMLAVHHju3l0MkZnG1izaWXYmgvQcUjTRcpShQ==
1382
+ integrity: sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w==
1045
1383
  }
1046
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
1384
+ dev: false
1385
+
1386
+ /@typescript-eslint/eslint-plugin@6.2.0(@typescript-eslint/parser@6.2.0)(eslint@8.46.0)(typescript@5.1.6):
1387
+ resolution:
1388
+ {
1389
+ integrity: sha512-rClGrMuyS/3j0ETa1Ui7s6GkLhfZGKZL3ZrChLeAiACBE/tRc1wq8SNZESUuluxhLj9FkUefRs2l6bCIArWBiQ==
1390
+ }
1391
+ engines: { node: ^16.0.0 || >=18.0.0 }
1047
1392
  peerDependencies:
1048
- '@typescript-eslint/parser': ^5.0.0
1049
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
1393
+ '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
1394
+ eslint: ^7.0.0 || ^8.0.0
1050
1395
  typescript: '*'
1051
1396
  peerDependenciesMeta:
1052
1397
  typescript:
1053
1398
  optional: true
1054
1399
  dependencies:
1055
- '@eslint-community/regexpp': 4.5.1
1056
- '@typescript-eslint/parser': 5.59.8(eslint@8.42.0)(typescript@5.1.3)
1057
- '@typescript-eslint/scope-manager': 5.59.8
1058
- '@typescript-eslint/type-utils': 5.59.8(eslint@8.42.0)(typescript@5.1.3)
1059
- '@typescript-eslint/utils': 5.59.8(eslint@8.42.0)(typescript@5.1.3)
1400
+ '@eslint-community/regexpp': 4.6.2
1401
+ '@typescript-eslint/parser': 6.2.0(eslint@8.46.0)(typescript@5.1.6)
1402
+ '@typescript-eslint/scope-manager': 6.2.0
1403
+ '@typescript-eslint/type-utils': 6.2.0(eslint@8.46.0)(typescript@5.1.6)
1404
+ '@typescript-eslint/utils': 6.2.0(eslint@8.46.0)(typescript@5.1.6)
1405
+ '@typescript-eslint/visitor-keys': 6.2.0
1060
1406
  debug: 4.3.4
1061
- eslint: 8.42.0
1062
- grapheme-splitter: 1.0.4
1407
+ eslint: 8.46.0
1408
+ graphemer: 1.4.0
1063
1409
  ignore: 5.2.4
1410
+ natural-compare: 1.4.0
1064
1411
  natural-compare-lite: 1.4.0
1065
- semver: 7.5.1
1066
- tsutils: 3.21.0(typescript@5.1.3)
1067
- typescript: 5.1.3
1412
+ semver: 7.5.4
1413
+ ts-api-utils: 1.0.1(typescript@5.1.6)
1414
+ typescript: 5.1.6
1068
1415
  transitivePeerDependencies:
1069
1416
  - supports-color
1070
1417
  dev: true
1071
1418
 
1072
- /@typescript-eslint/parser@5.59.8(eslint@8.42.0)(typescript@5.1.3):
1419
+ /@typescript-eslint/parser@6.2.0(eslint@8.46.0)(typescript@5.1.6):
1073
1420
  resolution:
1074
1421
  {
1075
- integrity: sha512-AnR19RjJcpjoeGojmwZtCwBX/RidqDZtzcbG3xHrmz0aHHoOcbWnpDllenRDmDvsV0RQ6+tbb09/kyc+UT9Orw==
1422
+ integrity: sha512-igVYOqtiK/UsvKAmmloQAruAdUHihsOCvplJpplPZ+3h4aDkC/UKZZNKgB6h93ayuYLuEymU3h8nF1xMRbh37g==
1076
1423
  }
1077
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
1424
+ engines: { node: ^16.0.0 || >=18.0.0 }
1078
1425
  peerDependencies:
1079
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
1426
+ eslint: ^7.0.0 || ^8.0.0
1080
1427
  typescript: '*'
1081
1428
  peerDependenciesMeta:
1082
1429
  typescript:
1083
1430
  optional: true
1084
1431
  dependencies:
1085
- '@typescript-eslint/scope-manager': 5.59.8
1086
- '@typescript-eslint/types': 5.59.8
1087
- '@typescript-eslint/typescript-estree': 5.59.8(typescript@5.1.3)
1432
+ '@typescript-eslint/scope-manager': 6.2.0
1433
+ '@typescript-eslint/types': 6.2.0
1434
+ '@typescript-eslint/typescript-estree': 6.2.0(typescript@5.1.6)
1435
+ '@typescript-eslint/visitor-keys': 6.2.0
1088
1436
  debug: 4.3.4
1089
- eslint: 8.42.0
1090
- typescript: 5.1.3
1437
+ eslint: 8.46.0
1438
+ typescript: 5.1.6
1091
1439
  transitivePeerDependencies:
1092
1440
  - supports-color
1093
1441
  dev: true
1094
1442
 
1095
- /@typescript-eslint/scope-manager@5.59.8:
1443
+ /@typescript-eslint/scope-manager@6.2.0:
1096
1444
  resolution:
1097
1445
  {
1098
- integrity: sha512-/w08ndCYI8gxGf+9zKf1vtx/16y8MHrZs5/tnjHhMLNSixuNcJavSX4wAiPf4aS5x41Es9YPCn44MIe4cxIlig==
1446
+ integrity: sha512-1ZMNVgm5nnHURU8ZSJ3snsHzpFeNK84rdZjluEVBGNu7jDymfqceB3kdIZ6A4xCfEFFhRIB6rF8q/JIqJd2R0Q==
1099
1447
  }
1100
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
1448
+ engines: { node: ^16.0.0 || >=18.0.0 }
1101
1449
  dependencies:
1102
- '@typescript-eslint/types': 5.59.8
1103
- '@typescript-eslint/visitor-keys': 5.59.8
1450
+ '@typescript-eslint/types': 6.2.0
1451
+ '@typescript-eslint/visitor-keys': 6.2.0
1104
1452
  dev: true
1105
1453
 
1106
- /@typescript-eslint/type-utils@5.59.8(eslint@8.42.0)(typescript@5.1.3):
1454
+ /@typescript-eslint/type-utils@6.2.0(eslint@8.46.0)(typescript@5.1.6):
1107
1455
  resolution:
1108
1456
  {
1109
- integrity: sha512-+5M518uEIHFBy3FnyqZUF3BMP+AXnYn4oyH8RF012+e7/msMY98FhGL5SrN29NQ9xDgvqCgYnsOiKp1VjZ/fpA==
1457
+ integrity: sha512-DnGZuNU2JN3AYwddYIqrVkYW0uUQdv0AY+kz2M25euVNlujcN2u+rJgfJsBFlUEzBB6OQkUqSZPyuTLf2bP5mw==
1110
1458
  }
1111
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
1459
+ engines: { node: ^16.0.0 || >=18.0.0 }
1112
1460
  peerDependencies:
1113
- eslint: '*'
1461
+ eslint: ^7.0.0 || ^8.0.0
1114
1462
  typescript: '*'
1115
1463
  peerDependenciesMeta:
1116
1464
  typescript:
1117
1465
  optional: true
1118
1466
  dependencies:
1119
- '@typescript-eslint/typescript-estree': 5.59.8(typescript@5.1.3)
1120
- '@typescript-eslint/utils': 5.59.8(eslint@8.42.0)(typescript@5.1.3)
1467
+ '@typescript-eslint/typescript-estree': 6.2.0(typescript@5.1.6)
1468
+ '@typescript-eslint/utils': 6.2.0(eslint@8.46.0)(typescript@5.1.6)
1121
1469
  debug: 4.3.4
1122
- eslint: 8.42.0
1123
- tsutils: 3.21.0(typescript@5.1.3)
1124
- typescript: 5.1.3
1470
+ eslint: 8.46.0
1471
+ ts-api-utils: 1.0.1(typescript@5.1.6)
1472
+ typescript: 5.1.6
1125
1473
  transitivePeerDependencies:
1126
1474
  - supports-color
1127
1475
  dev: true
1128
1476
 
1129
- /@typescript-eslint/types@5.59.8:
1477
+ /@typescript-eslint/types@6.2.0:
1130
1478
  resolution:
1131
1479
  {
1132
- integrity: sha512-+uWuOhBTj/L6awoWIg0BlWy0u9TyFpCHrAuQ5bNfxDaZ1Ppb3mx6tUigc74LHcbHpOHuOTOJrBoAnhdHdaea1w==
1480
+ integrity: sha512-1nRRaDlp/XYJQLvkQJG5F3uBTno5SHPT7XVcJ5n1/k2WfNI28nJsvLakxwZRNY5spuatEKO7d5nZWsQpkqXwBA==
1133
1481
  }
1134
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
1482
+ engines: { node: ^16.0.0 || >=18.0.0 }
1135
1483
  dev: true
1136
1484
 
1137
- /@typescript-eslint/typescript-estree@5.59.8(typescript@5.1.3):
1485
+ /@typescript-eslint/typescript-estree@6.2.0(typescript@5.1.6):
1138
1486
  resolution:
1139
1487
  {
1140
- integrity: sha512-Jy/lPSDJGNow14vYu6IrW790p7HIf/SOV1Bb6lZ7NUkLc2iB2Z9elESmsaUtLw8kVqogSbtLH9tut5GCX1RLDg==
1488
+ integrity: sha512-Mts6+3HQMSM+LZCglsc2yMIny37IhUgp1Qe8yJUYVyO6rHP7/vN0vajKu3JvHCBIy8TSiKddJ/Zwu80jhnGj1w==
1141
1489
  }
1142
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
1490
+ engines: { node: ^16.0.0 || >=18.0.0 }
1143
1491
  peerDependencies:
1144
1492
  typescript: '*'
1145
1493
  peerDependenciesMeta:
1146
1494
  typescript:
1147
1495
  optional: true
1148
1496
  dependencies:
1149
- '@typescript-eslint/types': 5.59.8
1150
- '@typescript-eslint/visitor-keys': 5.59.8
1497
+ '@typescript-eslint/types': 6.2.0
1498
+ '@typescript-eslint/visitor-keys': 6.2.0
1151
1499
  debug: 4.3.4
1152
1500
  globby: 11.1.0
1153
1501
  is-glob: 4.0.3
1154
- semver: 7.5.1
1155
- tsutils: 3.21.0(typescript@5.1.3)
1156
- typescript: 5.1.3
1502
+ semver: 7.5.4
1503
+ ts-api-utils: 1.0.1(typescript@5.1.6)
1504
+ typescript: 5.1.6
1157
1505
  transitivePeerDependencies:
1158
1506
  - supports-color
1159
1507
  dev: true
1160
1508
 
1161
- /@typescript-eslint/utils@5.59.8(eslint@8.42.0)(typescript@5.1.3):
1509
+ /@typescript-eslint/utils@6.2.0(eslint@8.46.0)(typescript@5.1.6):
1162
1510
  resolution:
1163
1511
  {
1164
- integrity: sha512-Tr65630KysnNn9f9G7ROF3w1b5/7f6QVCJ+WK9nhIocWmx9F+TmCAcglF26Vm7z8KCTwoKcNEBZrhlklla3CKg==
1512
+ integrity: sha512-RCFrC1lXiX1qEZN8LmLrxYRhOkElEsPKTVSNout8DMzf8PeWoQG7Rxz2SadpJa3VSh5oYKGwt7j7X/VRg+Y3OQ==
1165
1513
  }
1166
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
1514
+ engines: { node: ^16.0.0 || >=18.0.0 }
1167
1515
  peerDependencies:
1168
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
1516
+ eslint: ^7.0.0 || ^8.0.0
1169
1517
  dependencies:
1170
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.42.0)
1518
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0)
1171
1519
  '@types/json-schema': 7.0.12
1172
1520
  '@types/semver': 7.5.0
1173
- '@typescript-eslint/scope-manager': 5.59.8
1174
- '@typescript-eslint/types': 5.59.8
1175
- '@typescript-eslint/typescript-estree': 5.59.8(typescript@5.1.3)
1176
- eslint: 8.42.0
1177
- eslint-scope: 5.1.1
1178
- semver: 7.5.1
1521
+ '@typescript-eslint/scope-manager': 6.2.0
1522
+ '@typescript-eslint/types': 6.2.0
1523
+ '@typescript-eslint/typescript-estree': 6.2.0(typescript@5.1.6)
1524
+ eslint: 8.46.0
1525
+ semver: 7.5.4
1179
1526
  transitivePeerDependencies:
1180
1527
  - supports-color
1181
1528
  - typescript
1182
1529
  dev: true
1183
1530
 
1184
- /@typescript-eslint/visitor-keys@5.59.8:
1531
+ /@typescript-eslint/visitor-keys@6.2.0:
1185
1532
  resolution:
1186
1533
  {
1187
- integrity: sha512-pJhi2ms0x0xgloT7xYabil3SGGlojNNKjK/q6dB3Ey0uJLMjK2UDGJvHieiyJVW/7C3KI+Z4Q3pEHkm4ejA+xQ==
1534
+ integrity: sha512-QbaYUQVKKo9bgCzpjz45llCfwakyoxHetIy8CAvYCtd16Zu1KrpzNHofwF8kGkpPOxZB2o6kz+0nqH8ZkIzuoQ==
1188
1535
  }
1189
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
1536
+ engines: { node: ^16.0.0 || >=18.0.0 }
1190
1537
  dependencies:
1191
- '@typescript-eslint/types': 5.59.8
1192
- eslint-visitor-keys: 3.4.1
1538
+ '@typescript-eslint/types': 6.2.0
1539
+ eslint-visitor-keys: 3.4.2
1193
1540
  dev: true
1194
1541
 
1195
- /@vitest/expect@0.31.4:
1542
+ /@vitest/expect@0.33.0:
1196
1543
  resolution:
1197
1544
  {
1198
- integrity: sha512-tibyx8o7GUyGHZGyPgzwiaPaLDQ9MMuCOrc03BYT0nryUuhLbL7NV2r/q98iv5STlwMgaKuFJkgBW/8iPKwlSg==
1545
+ integrity: sha512-sVNf+Gla3mhTCxNJx+wJLDPp/WcstOe0Ksqz4Vec51MmgMth/ia0MGFEkIZmVGeTL5HtjYR4Wl/ZxBxBXZJTzQ==
1199
1546
  }
1200
1547
  dependencies:
1201
- '@vitest/spy': 0.31.4
1202
- '@vitest/utils': 0.31.4
1548
+ '@vitest/spy': 0.33.0
1549
+ '@vitest/utils': 0.33.0
1203
1550
  chai: 4.3.7
1204
1551
  dev: true
1205
1552
 
1206
- /@vitest/runner@0.31.4:
1553
+ /@vitest/runner@0.33.0:
1207
1554
  resolution:
1208
1555
  {
1209
- integrity: sha512-Wgm6UER+gwq6zkyrm5/wbpXGF+g+UBB78asJlFkIOwyse0pz8lZoiC6SW5i4gPnls/zUcPLWS7Zog0LVepXnpg==
1556
+ integrity: sha512-UPfACnmCB6HKRHTlcgCoBh6ppl6fDn+J/xR8dTufWiKt/74Y9bHci5CKB8tESSV82zKYtkBJo9whU3mNvfaisg==
1210
1557
  }
1211
1558
  dependencies:
1212
- '@vitest/utils': 0.31.4
1213
- concordance: 5.0.4
1559
+ '@vitest/utils': 0.33.0
1214
1560
  p-limit: 4.0.0
1215
1561
  pathe: 1.1.1
1216
1562
  dev: true
1217
1563
 
1218
- /@vitest/snapshot@0.31.4:
1564
+ /@vitest/snapshot@0.33.0:
1219
1565
  resolution:
1220
1566
  {
1221
- integrity: sha512-LemvNumL3NdWSmfVAMpXILGyaXPkZbG5tyl6+RQSdcHnTj6hvA49UAI8jzez9oQyE/FWLKRSNqTGzsHuk89LRA==
1567
+ integrity: sha512-tJjrl//qAHbyHajpFvr8Wsk8DIOODEebTu7pgBrP07iOepR5jYkLFiqLq2Ltxv+r0uptUb4izv1J8XBOwKkVYA==
1222
1568
  }
1223
1569
  dependencies:
1224
- magic-string: 0.30.0
1570
+ magic-string: 0.30.2
1225
1571
  pathe: 1.1.1
1226
- pretty-format: 27.5.1
1572
+ pretty-format: 29.6.2
1227
1573
  dev: true
1228
1574
 
1229
- /@vitest/spy@0.31.4:
1575
+ /@vitest/spy@0.33.0:
1230
1576
  resolution:
1231
1577
  {
1232
- integrity: sha512-3ei5ZH1s3aqbEyftPAzSuunGICRuhE+IXOmpURFdkm5ybUADk+viyQfejNk6q8M5QGX8/EVKw+QWMEP3DTJDag==
1578
+ integrity: sha512-Kv+yZ4hnH1WdiAkPUQTpRxW8kGtH8VRTnus7ZTGovFYM1ZezJpvGtb9nPIjPnptHbsyIAxYZsEpVPYgtpjGnrg==
1233
1579
  }
1234
1580
  dependencies:
1235
1581
  tinyspy: 2.1.1
1236
1582
  dev: true
1237
1583
 
1238
- /@vitest/utils@0.31.4:
1584
+ /@vitest/utils@0.33.0:
1239
1585
  resolution:
1240
1586
  {
1241
- integrity: sha512-DobZbHacWznoGUfYU8XDPY78UubJxXfMNY1+SUdOp1NsI34eopSA6aZMeaGu10waSOeYwE8lxrd/pLfT0RMxjQ==
1587
+ integrity: sha512-pF1w22ic965sv+EN6uoePkAOTkAPWM03Ri/jXNyMIKBb/XHLDPfhLvf/Fa9g0YECevAIz56oVYXhodLvLQ/awA==
1242
1588
  }
1243
1589
  dependencies:
1244
- concordance: 5.0.4
1590
+ diff-sequences: 29.4.3
1245
1591
  loupe: 2.3.6
1246
- pretty-format: 27.5.1
1592
+ pretty-format: 29.6.2
1247
1593
  dev: true
1248
1594
 
1249
- /acorn-jsx@5.3.2(acorn@8.8.2):
1595
+ /acorn-jsx@5.3.2(acorn@8.10.0):
1250
1596
  resolution:
1251
1597
  {
1252
1598
  integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
@@ -1254,7 +1600,7 @@ packages:
1254
1600
  peerDependencies:
1255
1601
  acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
1256
1602
  dependencies:
1257
- acorn: 8.8.2
1603
+ acorn: 8.10.0
1258
1604
  dev: true
1259
1605
 
1260
1606
  /acorn-walk@8.2.0:
@@ -1265,14 +1611,13 @@ packages:
1265
1611
  engines: { node: '>=0.4.0' }
1266
1612
  dev: true
1267
1613
 
1268
- /acorn@8.8.2:
1614
+ /acorn@8.10.0:
1269
1615
  resolution:
1270
1616
  {
1271
- integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==
1617
+ integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==
1272
1618
  }
1273
1619
  engines: { node: '>=0.4.0' }
1274
1620
  hasBin: true
1275
- dev: true
1276
1621
 
1277
1622
  /ajv@6.12.6:
1278
1623
  resolution:
@@ -1294,10 +1639,10 @@ packages:
1294
1639
  engines: { node: '>=8' }
1295
1640
  dev: true
1296
1641
 
1297
- /ansi-sequence-parser@1.1.0:
1642
+ /ansi-sequence-parser@1.1.1:
1298
1643
  resolution:
1299
1644
  {
1300
- integrity: sha512-lEm8mt52to2fT8GhciPCGeCXACSz2UwIN4X2e2LJSnZ5uAbn2/dsYdOmUXq0AtWS5cpAupysIneExOgH0Vd2TQ==
1645
+ integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==
1301
1646
  }
1302
1647
  dev: false
1303
1648
 
@@ -1351,6 +1696,14 @@ packages:
1351
1696
  }
1352
1697
  dev: true
1353
1698
 
1699
+ /aria-query@5.3.0:
1700
+ resolution:
1701
+ {
1702
+ integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==
1703
+ }
1704
+ dependencies:
1705
+ dequal: 2.0.3
1706
+
1354
1707
  /array-union@2.1.0:
1355
1708
  resolution:
1356
1709
  {
@@ -1366,7 +1719,7 @@ packages:
1366
1719
  }
1367
1720
  dev: true
1368
1721
 
1369
- /autoprefixer@10.4.14(postcss@8.4.24):
1722
+ /autoprefixer@10.4.14(postcss@8.4.27):
1370
1723
  resolution:
1371
1724
  {
1372
1725
  integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==
@@ -1376,15 +1729,23 @@ packages:
1376
1729
  peerDependencies:
1377
1730
  postcss: ^8.1.0
1378
1731
  dependencies:
1379
- browserslist: 4.21.7
1380
- caniuse-lite: 1.0.30001494
1732
+ browserslist: 4.21.9
1733
+ caniuse-lite: 1.0.30001517
1381
1734
  fraction.js: 4.2.0
1382
1735
  normalize-range: 0.1.2
1383
1736
  picocolors: 1.0.0
1384
- postcss: 8.4.24
1737
+ postcss: 8.4.27
1385
1738
  postcss-value-parser: 4.2.0
1386
1739
  dev: true
1387
1740
 
1741
+ /axobject-query@3.2.1:
1742
+ resolution:
1743
+ {
1744
+ integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==
1745
+ }
1746
+ dependencies:
1747
+ dequal: 2.0.3
1748
+
1388
1749
  /bail@2.0.2:
1389
1750
  resolution:
1390
1751
  {
@@ -1407,13 +1768,6 @@ packages:
1407
1768
  engines: { node: '>=8' }
1408
1769
  dev: true
1409
1770
 
1410
- /blueimp-md5@2.19.0:
1411
- resolution:
1412
- {
1413
- integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==
1414
- }
1415
- dev: true
1416
-
1417
1771
  /brace-expansion@1.1.11:
1418
1772
  resolution:
1419
1773
  {
@@ -1434,18 +1788,18 @@ packages:
1434
1788
  fill-range: 7.0.1
1435
1789
  dev: true
1436
1790
 
1437
- /browserslist@4.21.7:
1791
+ /browserslist@4.21.9:
1438
1792
  resolution:
1439
1793
  {
1440
- integrity: sha512-BauCXrQ7I2ftSqd2mvKHGo85XR0u7Ru3C/Hxsy/0TkfCtjrmAbPdzLGasmoiBxplpDXlPvdjX9u7srIMfgasNA==
1794
+ integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==
1441
1795
  }
1442
1796
  engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
1443
1797
  hasBin: true
1444
1798
  dependencies:
1445
- caniuse-lite: 1.0.30001494
1446
- electron-to-chromium: 1.4.419
1447
- node-releases: 2.0.12
1448
- update-browserslist-db: 1.0.11(browserslist@4.21.7)
1799
+ caniuse-lite: 1.0.30001517
1800
+ electron-to-chromium: 1.4.477
1801
+ node-releases: 2.0.13
1802
+ update-browserslist-db: 1.0.11(browserslist@4.21.9)
1449
1803
  dev: true
1450
1804
 
1451
1805
  /buffer-crc32@0.2.13:
@@ -1496,10 +1850,10 @@ packages:
1496
1850
  engines: { node: '>= 6' }
1497
1851
  dev: true
1498
1852
 
1499
- /caniuse-lite@1.0.30001494:
1853
+ /caniuse-lite@1.0.30001517:
1500
1854
  resolution:
1501
1855
  {
1502
- integrity: sha512-sY2B5Qyl46ZzfYDegrl8GBCzdawSLT4ThM9b9F+aDYUrAG2zCOyMbd2Tq34mS1g4ZKBfjRlzOohQMxx28x6wJg==
1856
+ integrity: sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==
1503
1857
  }
1504
1858
  dev: true
1505
1859
 
@@ -1590,29 +1944,35 @@ packages:
1590
1944
  fsevents: 2.3.2
1591
1945
  dev: true
1592
1946
 
1593
- /class-variance-authority@0.6.0(typescript@5.1.3):
1947
+ /class-variance-authority@0.7.0:
1594
1948
  resolution:
1595
1949
  {
1596
- integrity: sha512-qdRDgfjx3GRb9fpwpSvn+YaidnT7IUJNe4wt5/SWwM+PmUwJUhQRk/8zAyNro0PmVfmen2635UboTjIBXXxy5A==
1950
+ integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==
1597
1951
  }
1598
- peerDependencies:
1599
- typescript: '>= 4.5.5 < 6'
1600
- peerDependenciesMeta:
1601
- typescript:
1602
- optional: true
1603
1952
  dependencies:
1604
- clsx: 1.2.1
1605
- typescript: 5.1.3
1953
+ clsx: 2.0.0
1606
1954
  dev: false
1607
1955
 
1608
- /clsx@1.2.1:
1956
+ /clsx@2.0.0:
1609
1957
  resolution:
1610
1958
  {
1611
- integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==
1959
+ integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==
1612
1960
  }
1613
1961
  engines: { node: '>=6' }
1614
1962
  dev: false
1615
1963
 
1964
+ /code-red@1.0.3:
1965
+ resolution:
1966
+ {
1967
+ integrity: sha512-kVwJELqiILQyG5aeuyKFbdsI1fmQy1Cmf7dQ8eGmVuJoaRVdwey7WaMknr2ZFeVSYSKT0rExsa8EGw0aoI/1QQ==
1968
+ }
1969
+ dependencies:
1970
+ '@jridgewell/sourcemap-codec': 1.4.15
1971
+ '@types/estree': 1.0.1
1972
+ acorn: 8.10.0
1973
+ estree-walker: 3.0.3
1974
+ periscopic: 3.1.0
1975
+
1616
1976
  /color-convert@2.0.1:
1617
1977
  resolution:
1618
1978
  {
@@ -1652,23 +2012,6 @@ packages:
1652
2012
  }
1653
2013
  dev: true
1654
2014
 
1655
- /concordance@5.0.4:
1656
- resolution:
1657
- {
1658
- integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==
1659
- }
1660
- engines: { node: '>=10.18.0 <11 || >=12.14.0 <13 || >=14' }
1661
- dependencies:
1662
- date-time: 3.1.0
1663
- esutils: 2.0.3
1664
- fast-diff: 1.3.0
1665
- js-string-escape: 1.0.1
1666
- lodash: 4.17.21
1667
- md5-hex: 3.0.1
1668
- semver: 7.5.1
1669
- well-known-symbols: 2.0.0
1670
- dev: true
1671
-
1672
2015
  /cookie@0.5.0:
1673
2016
  resolution:
1674
2017
  {
@@ -1689,6 +2032,16 @@ packages:
1689
2032
  which: 2.0.2
1690
2033
  dev: true
1691
2034
 
2035
+ /css-tree@2.3.1:
2036
+ resolution:
2037
+ {
2038
+ integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==
2039
+ }
2040
+ engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0 }
2041
+ dependencies:
2042
+ mdn-data: 2.0.30
2043
+ source-map-js: 1.0.2
2044
+
1692
2045
  /cssesc@3.0.0:
1693
2046
  resolution:
1694
2047
  {
@@ -1768,16 +2121,6 @@ packages:
1768
2121
  d3-array: 3.2.4
1769
2122
  dev: false
1770
2123
 
1771
- /date-time@3.1.0:
1772
- resolution:
1773
- {
1774
- integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==
1775
- }
1776
- engines: { node: '>=6' }
1777
- dependencies:
1778
- time-zone: 1.0.0
1779
- dev: true
1780
-
1781
2124
  /debug@4.3.4:
1782
2125
  resolution:
1783
2126
  {
@@ -1832,7 +2175,6 @@ packages:
1832
2175
  integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==
1833
2176
  }
1834
2177
  engines: { node: '>=6' }
1835
- dev: false
1836
2178
 
1837
2179
  /detect-indent@6.1.0:
1838
2180
  resolution:
@@ -1856,6 +2198,14 @@ packages:
1856
2198
  }
1857
2199
  dev: true
1858
2200
 
2201
+ /diff-sequences@29.4.3:
2202
+ resolution:
2203
+ {
2204
+ integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==
2205
+ }
2206
+ engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
2207
+ dev: true
2208
+
1859
2209
  /diff@5.1.0:
1860
2210
  resolution:
1861
2211
  {
@@ -1891,10 +2241,10 @@ packages:
1891
2241
  esutils: 2.0.3
1892
2242
  dev: true
1893
2243
 
1894
- /electron-to-chromium@1.4.419:
2244
+ /electron-to-chromium@1.4.477:
1895
2245
  resolution:
1896
2246
  {
1897
- integrity: sha512-jdie3RiEgygvDTyS2sgjq71B36q2cDSBfPlwzUyuOrfYTNoYWyBxxjGJV/HAu3A2hB0Y+HesvCVkVAFoCKwCSw==
2247
+ integrity: sha512-shUVy6Eawp33dFBFIoYbIwLHrX0IZ857AlH9ug2o4rvbWmpaCUdBpQ5Zw39HRrfzAFm4APJE9V+E2A/WB0YqJw==
1898
2248
  }
1899
2249
  dev: true
1900
2250
 
@@ -1938,6 +2288,39 @@ packages:
1938
2288
  '@esbuild/win32-x64': 0.17.19
1939
2289
  dev: true
1940
2290
 
2291
+ /esbuild@0.18.17:
2292
+ resolution:
2293
+ {
2294
+ integrity: sha512-1GJtYnUxsJreHYA0Y+iQz2UEykonY66HNWOb0yXYZi9/kNrORUEHVg87eQsCtqh59PEJ5YVZJO98JHznMJSWjg==
2295
+ }
2296
+ engines: { node: '>=12' }
2297
+ hasBin: true
2298
+ requiresBuild: true
2299
+ optionalDependencies:
2300
+ '@esbuild/android-arm': 0.18.17
2301
+ '@esbuild/android-arm64': 0.18.17
2302
+ '@esbuild/android-x64': 0.18.17
2303
+ '@esbuild/darwin-arm64': 0.18.17
2304
+ '@esbuild/darwin-x64': 0.18.17
2305
+ '@esbuild/freebsd-arm64': 0.18.17
2306
+ '@esbuild/freebsd-x64': 0.18.17
2307
+ '@esbuild/linux-arm': 0.18.17
2308
+ '@esbuild/linux-arm64': 0.18.17
2309
+ '@esbuild/linux-ia32': 0.18.17
2310
+ '@esbuild/linux-loong64': 0.18.17
2311
+ '@esbuild/linux-mips64el': 0.18.17
2312
+ '@esbuild/linux-ppc64': 0.18.17
2313
+ '@esbuild/linux-riscv64': 0.18.17
2314
+ '@esbuild/linux-s390x': 0.18.17
2315
+ '@esbuild/linux-x64': 0.18.17
2316
+ '@esbuild/netbsd-x64': 0.18.17
2317
+ '@esbuild/openbsd-x64': 0.18.17
2318
+ '@esbuild/sunos-x64': 0.18.17
2319
+ '@esbuild/win32-arm64': 0.18.17
2320
+ '@esbuild/win32-ia32': 0.18.17
2321
+ '@esbuild/win32-x64': 0.18.17
2322
+ dev: true
2323
+
1941
2324
  /escalade@3.1.1:
1942
2325
  resolution:
1943
2326
  {
@@ -1969,62 +2352,53 @@ packages:
1969
2352
  engines: { node: '>=12' }
1970
2353
  dev: false
1971
2354
 
1972
- /eslint-config-prettier@8.8.0(eslint@8.42.0):
2355
+ /eslint-config-prettier@8.9.0(eslint@8.46.0):
1973
2356
  resolution:
1974
2357
  {
1975
- integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==
2358
+ integrity: sha512-+sbni7NfVXnOpnRadUA8S28AUlsZt9GjgFvABIRL9Hkn8KqNzOp+7Lw4QWtrwn20KzU3wqu1QoOj2m+7rKRqkA==
1976
2359
  }
1977
2360
  hasBin: true
1978
2361
  peerDependencies:
1979
2362
  eslint: '>=7.0.0'
1980
2363
  dependencies:
1981
- eslint: 8.42.0
2364
+ eslint: 8.46.0
1982
2365
  dev: true
1983
2366
 
1984
- /eslint-plugin-svelte@2.30.0(eslint@8.42.0)(svelte@3.59.1):
2367
+ /eslint-plugin-svelte@2.32.4(eslint@8.46.0)(svelte@4.1.2):
1985
2368
  resolution:
1986
2369
  {
1987
- integrity: sha512-2/qj0BJsfM0U2j4EjGb7iC/0nbUvXx1Gn78CdtyuXpi/rSomLPCPwnsZsloXMzlt6Xwe8LBlpRvZObSKEHLP5A==
2370
+ integrity: sha512-VJ12i2Iogug1jvhwxSlognnfGj76P5gks/V4pUD4SCSVQOp14u47MNP0zAG8AQR3LT0Fi1iUvIFnY4l9z5Rwbg==
1988
2371
  }
1989
2372
  engines: { node: ^14.17.0 || >=16.0.0 }
1990
2373
  peerDependencies:
1991
2374
  eslint: ^7.0.0 || ^8.0.0-0
1992
- svelte: ^3.37.0 || ^4.0.0-0
2375
+ svelte: ^3.37.0 || ^4.0.0
1993
2376
  peerDependenciesMeta:
1994
2377
  svelte:
1995
2378
  optional: true
1996
2379
  dependencies:
1997
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.42.0)
2380
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0)
1998
2381
  '@jridgewell/sourcemap-codec': 1.4.15
1999
2382
  debug: 4.3.4
2000
- eslint: 8.42.0
2383
+ eslint: 8.46.0
2001
2384
  esutils: 2.0.3
2002
- known-css-properties: 0.27.0
2003
- postcss: 8.4.24
2004
- postcss-load-config: 3.1.4(postcss@8.4.24)
2005
- postcss-safe-parser: 6.0.0(postcss@8.4.24)
2006
- svelte: 3.59.1
2007
- svelte-eslint-parser: 0.30.0(svelte@3.59.1)
2385
+ known-css-properties: 0.28.0
2386
+ postcss: 8.4.27
2387
+ postcss-load-config: 3.1.4(postcss@8.4.27)
2388
+ postcss-safe-parser: 6.0.0(postcss@8.4.27)
2389
+ postcss-selector-parser: 6.0.13
2390
+ semver: 7.5.4
2391
+ svelte: 4.1.2
2392
+ svelte-eslint-parser: 0.32.2(svelte@4.1.2)
2008
2393
  transitivePeerDependencies:
2009
2394
  - supports-color
2010
2395
  - ts-node
2011
2396
  dev: true
2012
2397
 
2013
- /eslint-scope@5.1.1:
2014
- resolution:
2015
- {
2016
- integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
2017
- }
2018
- engines: { node: '>=8.0.0' }
2019
- dependencies:
2020
- esrecurse: 4.3.0
2021
- estraverse: 4.3.0
2022
- dev: true
2023
-
2024
- /eslint-scope@7.2.0:
2398
+ /eslint-scope@7.2.2:
2025
2399
  resolution:
2026
2400
  {
2027
- integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==
2401
+ integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==
2028
2402
  }
2029
2403
  engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
2030
2404
  dependencies:
@@ -2032,26 +2406,26 @@ packages:
2032
2406
  estraverse: 5.3.0
2033
2407
  dev: true
2034
2408
 
2035
- /eslint-visitor-keys@3.4.1:
2409
+ /eslint-visitor-keys@3.4.2:
2036
2410
  resolution:
2037
2411
  {
2038
- integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==
2412
+ integrity: sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw==
2039
2413
  }
2040
2414
  engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
2041
2415
  dev: true
2042
2416
 
2043
- /eslint@8.42.0:
2417
+ /eslint@8.46.0:
2044
2418
  resolution:
2045
2419
  {
2046
- integrity: sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A==
2420
+ integrity: sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==
2047
2421
  }
2048
2422
  engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
2049
2423
  hasBin: true
2050
2424
  dependencies:
2051
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.42.0)
2052
- '@eslint-community/regexpp': 4.5.1
2053
- '@eslint/eslintrc': 2.0.3
2054
- '@eslint/js': 8.42.0
2425
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0)
2426
+ '@eslint-community/regexpp': 4.6.2
2427
+ '@eslint/eslintrc': 2.1.1
2428
+ '@eslint/js': 8.46.0
2055
2429
  '@humanwhocodes/config-array': 0.11.10
2056
2430
  '@humanwhocodes/module-importer': 1.0.1
2057
2431
  '@nodelib/fs.walk': 1.2.8
@@ -2061,9 +2435,9 @@ packages:
2061
2435
  debug: 4.3.4
2062
2436
  doctrine: 3.0.0
2063
2437
  escape-string-regexp: 4.0.0
2064
- eslint-scope: 7.2.0
2065
- eslint-visitor-keys: 3.4.1
2066
- espree: 9.5.2
2438
+ eslint-scope: 7.2.2
2439
+ eslint-visitor-keys: 3.4.2
2440
+ espree: 9.6.1
2067
2441
  esquery: 1.5.0
2068
2442
  esutils: 2.0.3
2069
2443
  fast-deep-equal: 3.1.3
@@ -2073,7 +2447,6 @@ packages:
2073
2447
  globals: 13.20.0
2074
2448
  graphemer: 1.4.0
2075
2449
  ignore: 5.2.4
2076
- import-fresh: 3.3.0
2077
2450
  imurmurhash: 0.1.4
2078
2451
  is-glob: 4.0.3
2079
2452
  is-path-inside: 3.0.3
@@ -2083,9 +2456,8 @@ packages:
2083
2456
  lodash.merge: 4.6.2
2084
2457
  minimatch: 3.1.2
2085
2458
  natural-compare: 1.4.0
2086
- optionator: 0.9.1
2459
+ optionator: 0.9.3
2087
2460
  strip-ansi: 6.0.1
2088
- strip-json-comments: 3.1.1
2089
2461
  text-table: 0.2.0
2090
2462
  transitivePeerDependencies:
2091
2463
  - supports-color
@@ -2097,16 +2469,16 @@ packages:
2097
2469
  integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==
2098
2470
  }
2099
2471
 
2100
- /espree@9.5.2:
2472
+ /espree@9.6.1:
2101
2473
  resolution:
2102
2474
  {
2103
- integrity: sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==
2475
+ integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==
2104
2476
  }
2105
2477
  engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
2106
2478
  dependencies:
2107
- acorn: 8.8.2
2108
- acorn-jsx: 5.3.2(acorn@8.8.2)
2109
- eslint-visitor-keys: 3.4.1
2479
+ acorn: 8.10.0
2480
+ acorn-jsx: 5.3.2(acorn@8.10.0)
2481
+ eslint-visitor-keys: 3.4.2
2110
2482
  dev: true
2111
2483
 
2112
2484
  /esquery@1.5.0:
@@ -2129,21 +2501,21 @@ packages:
2129
2501
  estraverse: 5.3.0
2130
2502
  dev: true
2131
2503
 
2132
- /estraverse@4.3.0:
2504
+ /estraverse@5.3.0:
2133
2505
  resolution:
2134
2506
  {
2135
- integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
2507
+ integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
2136
2508
  }
2137
2509
  engines: { node: '>=4.0' }
2138
2510
  dev: true
2139
2511
 
2140
- /estraverse@5.3.0:
2512
+ /estree-walker@3.0.3:
2141
2513
  resolution:
2142
2514
  {
2143
- integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
2515
+ integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==
2144
2516
  }
2145
- engines: { node: '>=4.0' }
2146
- dev: true
2517
+ dependencies:
2518
+ '@types/estree': 1.0.1
2147
2519
 
2148
2520
  /esutils@2.0.3:
2149
2521
  resolution:
@@ -2167,17 +2539,10 @@ packages:
2167
2539
  }
2168
2540
  dev: true
2169
2541
 
2170
- /fast-diff@1.3.0:
2171
- resolution:
2172
- {
2173
- integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==
2174
- }
2175
- dev: true
2176
-
2177
- /fast-glob@3.2.12:
2542
+ /fast-glob@3.3.1:
2178
2543
  resolution:
2179
2544
  {
2180
- integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==
2545
+ integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==
2181
2546
  }
2182
2547
  engines: { node: '>=8.6.0' }
2183
2548
  dependencies:
@@ -2299,10 +2664,10 @@ packages:
2299
2664
  }
2300
2665
  dev: true
2301
2666
 
2302
- /get-tsconfig@4.6.0:
2667
+ /get-tsconfig@4.6.2:
2303
2668
  resolution:
2304
2669
  {
2305
- integrity: sha512-lgbo68hHTQnFddybKbbs/RDRJnJT5YyGy2kQzVwbq+g67X73i+5MVTval34QxGkOe9X5Ujf1UYpCaphLyltjEg==
2670
+ integrity: sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==
2306
2671
  }
2307
2672
  dependencies:
2308
2673
  resolve-pkg-maps: 1.0.0
@@ -2373,13 +2738,6 @@ packages:
2373
2738
  type-fest: 0.20.2
2374
2739
  dev: true
2375
2740
 
2376
- /globalyzer@0.1.0:
2377
- resolution:
2378
- {
2379
- integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==
2380
- }
2381
- dev: true
2382
-
2383
2741
  /globby@11.1.0:
2384
2742
  resolution:
2385
2743
  {
@@ -2389,19 +2747,12 @@ packages:
2389
2747
  dependencies:
2390
2748
  array-union: 2.1.0
2391
2749
  dir-glob: 3.0.1
2392
- fast-glob: 3.2.12
2750
+ fast-glob: 3.3.1
2393
2751
  ignore: 5.2.4
2394
2752
  merge2: 1.4.1
2395
2753
  slash: 3.0.0
2396
2754
  dev: true
2397
2755
 
2398
- /globrex@0.1.2:
2399
- resolution:
2400
- {
2401
- integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==
2402
- }
2403
- dev: true
2404
-
2405
2756
  /graceful-fs@4.2.11:
2406
2757
  resolution:
2407
2758
  {
@@ -2409,13 +2760,6 @@ packages:
2409
2760
  }
2410
2761
  dev: true
2411
2762
 
2412
- /grapheme-splitter@1.0.4:
2413
- resolution:
2414
- {
2415
- integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==
2416
- }
2417
- dev: true
2418
-
2419
2763
  /graphemer@1.4.0:
2420
2764
  resolution:
2421
2765
  {
@@ -2459,8 +2803,8 @@ packages:
2459
2803
  integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==
2460
2804
  }
2461
2805
  dependencies:
2462
- '@types/hast': 2.3.4
2463
- '@types/unist': 2.0.6
2806
+ '@types/hast': 2.3.5
2807
+ '@types/unist': 2.0.7
2464
2808
  hastscript: 7.2.0
2465
2809
  property-information: 6.2.0
2466
2810
  vfile: 5.3.7
@@ -2481,7 +2825,7 @@ packages:
2481
2825
  integrity: sha512-iAuRp+ESgJoRFJbSyaqsfvJDY6zzmFoEnL1gtz1+U8gKtGGj1p0CVlysuUAUjq95qlZESHINLThwJzNGmgGZxA==
2482
2826
  }
2483
2827
  dependencies:
2484
- '@types/hast': 2.3.4
2828
+ '@types/hast': 2.3.5
2485
2829
  dev: false
2486
2830
 
2487
2831
  /hast-util-parse-selector@3.1.1:
@@ -2490,7 +2834,7 @@ packages:
2490
2834
  integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==
2491
2835
  }
2492
2836
  dependencies:
2493
- '@types/hast': 2.3.4
2837
+ '@types/hast': 2.3.5
2494
2838
  dev: false
2495
2839
 
2496
2840
  /hast-util-raw@7.2.3:
@@ -2499,7 +2843,7 @@ packages:
2499
2843
  integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==
2500
2844
  }
2501
2845
  dependencies:
2502
- '@types/hast': 2.3.4
2846
+ '@types/hast': 2.3.5
2503
2847
  '@types/parse5': 6.0.3
2504
2848
  hast-util-from-parse5: 7.1.2
2505
2849
  hast-util-to-parse5: 7.1.0
@@ -2518,8 +2862,8 @@ packages:
2518
2862
  integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==
2519
2863
  }
2520
2864
  dependencies:
2521
- '@types/hast': 2.3.4
2522
- '@types/unist': 2.0.6
2865
+ '@types/hast': 2.3.5
2866
+ '@types/unist': 2.0.7
2523
2867
  ccount: 2.0.1
2524
2868
  comma-separated-tokens: 2.0.3
2525
2869
  hast-util-raw: 7.2.3
@@ -2537,7 +2881,7 @@ packages:
2537
2881
  integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==
2538
2882
  }
2539
2883
  dependencies:
2540
- '@types/hast': 2.3.4
2884
+ '@types/hast': 2.3.5
2541
2885
  comma-separated-tokens: 2.0.3
2542
2886
  property-information: 6.2.0
2543
2887
  space-separated-tokens: 2.0.2
@@ -2551,7 +2895,7 @@ packages:
2551
2895
  integrity: sha512-02AQ3vLhuH3FisaMM+i/9sm4OXGSq1UhOOCpTLLQtHdL3tZt7qil69r8M8iDkZYyC0HCFylcYoP+8IO7ddta1A==
2552
2896
  }
2553
2897
  dependencies:
2554
- '@types/hast': 2.3.4
2898
+ '@types/hast': 2.3.5
2555
2899
  dev: false
2556
2900
 
2557
2901
  /hast-util-whitespace@2.0.1:
@@ -2567,7 +2911,7 @@ packages:
2567
2911
  integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==
2568
2912
  }
2569
2913
  dependencies:
2570
- '@types/hast': 2.3.4
2914
+ '@types/hast': 2.3.5
2571
2915
  comma-separated-tokens: 2.0.3
2572
2916
  hast-util-parse-selector: 3.1.1
2573
2917
  property-information: 6.2.0
@@ -2717,27 +3061,27 @@ packages:
2717
3061
  engines: { node: '>=12' }
2718
3062
  dev: false
2719
3063
 
2720
- /isexe@2.0.0:
3064
+ /is-reference@3.0.1:
2721
3065
  resolution:
2722
3066
  {
2723
- integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
3067
+ integrity: sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==
2724
3068
  }
2725
- dev: true
3069
+ dependencies:
3070
+ '@types/estree': 1.0.1
2726
3071
 
2727
- /jiti@1.18.2:
3072
+ /isexe@2.0.0:
2728
3073
  resolution:
2729
3074
  {
2730
- integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==
3075
+ integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
2731
3076
  }
2732
- hasBin: true
2733
3077
  dev: true
2734
3078
 
2735
- /js-string-escape@1.0.1:
3079
+ /jiti@1.19.1:
2736
3080
  resolution:
2737
3081
  {
2738
- integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==
3082
+ integrity: sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==
2739
3083
  }
2740
- engines: { node: '>= 0.8' }
3084
+ hasBin: true
2741
3085
  dev: true
2742
3086
 
2743
3087
  /js-yaml@4.1.0:
@@ -2777,10 +3121,10 @@ packages:
2777
3121
  }
2778
3122
  engines: { node: '>=6' }
2779
3123
 
2780
- /known-css-properties@0.27.0:
3124
+ /known-css-properties@0.28.0:
2781
3125
  resolution:
2782
3126
  {
2783
- integrity: sha512-uMCj6+hZYDoffuvAJjFAPz56E9uoowFHmTkqRtRq5WyC5Q6Cu/fTZKNQpX/RbzChBYLLl3lo8CjFZBAZXq9qFg==
3127
+ integrity: sha512-9pSL5XB4J+ifHP0e0jmmC98OGC1nL8/JjS+fi6mnTlIf//yt/MfVLtKg7S6nCtj/8KTcWX7nRlY0XywoYY1ISQ==
2784
3128
  }
2785
3129
  dev: true
2786
3130
 
@@ -2818,6 +3162,12 @@ packages:
2818
3162
  engines: { node: '>=14' }
2819
3163
  dev: true
2820
3164
 
3165
+ /locate-character@3.0.0:
3166
+ resolution:
3167
+ {
3168
+ integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==
3169
+ }
3170
+
2821
3171
  /locate-path@6.0.0:
2822
3172
  resolution:
2823
3173
  {
@@ -2835,13 +3185,6 @@ packages:
2835
3185
  }
2836
3186
  dev: true
2837
3187
 
2838
- /lodash@4.17.21:
2839
- resolution:
2840
- {
2841
- integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
2842
- }
2843
- dev: true
2844
-
2845
3188
  /longest-streak@3.1.0:
2846
3189
  resolution:
2847
3190
  {
@@ -2868,15 +3211,15 @@ packages:
2868
3211
  yallist: 4.0.0
2869
3212
  dev: true
2870
3213
 
2871
- /lucide-svelte@0.236.0(svelte@3.59.1):
3214
+ /lucide-svelte@0.263.0(svelte@4.1.2):
2872
3215
  resolution:
2873
3216
  {
2874
- integrity: sha512-ngVXuNa+zoX0BZjazoMljTl/IIcnUZxRHjAD+mP2yKBaMVwEZqwuOFfF0uxHN4XYN2YEWeEm9aw46TLoBfQP4A==
3217
+ integrity: sha512-1cB+DPsX7PbHJ+aDbc2nKKRdv3DYHK81mRVUw7kNb7bVw2Dh9QsNVON918WjnSlmXEt9lUnJ7TkNymreZwnLgg==
2875
3218
  }
2876
3219
  peerDependencies:
2877
- svelte: ^3.49.0
3220
+ svelte: '>=3 <5'
2878
3221
  dependencies:
2879
- svelte: 3.59.1
3222
+ svelte: 4.1.2
2880
3223
  dev: false
2881
3224
 
2882
3225
  /magic-string@0.27.0:
@@ -2889,15 +3232,14 @@ packages:
2889
3232
  '@jridgewell/sourcemap-codec': 1.4.15
2890
3233
  dev: true
2891
3234
 
2892
- /magic-string@0.30.0:
3235
+ /magic-string@0.30.2:
2893
3236
  resolution:
2894
3237
  {
2895
- integrity: sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==
3238
+ integrity: sha512-lNZdu7pewtq/ZvWUp9Wpf/x7WzMTsR26TWV03BRZrXFsv+BI6dy8RAiKgm1uM/kyR0rCfUcqvOlXKG66KhIGug==
2896
3239
  }
2897
3240
  engines: { node: '>=12' }
2898
3241
  dependencies:
2899
3242
  '@jridgewell/sourcemap-codec': 1.4.15
2900
- dev: true
2901
3243
 
2902
3244
  /markdown-table@3.0.3:
2903
3245
  resolution:
@@ -2906,23 +3248,13 @@ packages:
2906
3248
  }
2907
3249
  dev: false
2908
3250
 
2909
- /md5-hex@3.0.1:
2910
- resolution:
2911
- {
2912
- integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==
2913
- }
2914
- engines: { node: '>=8' }
2915
- dependencies:
2916
- blueimp-md5: 2.19.0
2917
- dev: true
2918
-
2919
3251
  /mdast-util-find-and-replace@2.2.2:
2920
3252
  resolution:
2921
3253
  {
2922
3254
  integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==
2923
3255
  }
2924
3256
  dependencies:
2925
- '@types/mdast': 3.0.11
3257
+ '@types/mdast': 3.0.12
2926
3258
  escape-string-regexp: 5.0.0
2927
3259
  unist-util-is: 5.2.1
2928
3260
  unist-util-visit-parents: 5.1.3
@@ -2934,8 +3266,8 @@ packages:
2934
3266
  integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==
2935
3267
  }
2936
3268
  dependencies:
2937
- '@types/mdast': 3.0.11
2938
- '@types/unist': 2.0.6
3269
+ '@types/mdast': 3.0.12
3270
+ '@types/unist': 2.0.7
2939
3271
  decode-named-character-reference: 1.0.2
2940
3272
  mdast-util-to-string: 3.2.0
2941
3273
  micromark: 3.2.0
@@ -2956,7 +3288,7 @@ packages:
2956
3288
  integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==
2957
3289
  }
2958
3290
  dependencies:
2959
- '@types/mdast': 3.0.11
3291
+ '@types/mdast': 3.0.12
2960
3292
  ccount: 2.0.1
2961
3293
  mdast-util-find-and-replace: 2.2.2
2962
3294
  micromark-util-character: 1.2.0
@@ -2968,7 +3300,7 @@ packages:
2968
3300
  integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==
2969
3301
  }
2970
3302
  dependencies:
2971
- '@types/mdast': 3.0.11
3303
+ '@types/mdast': 3.0.12
2972
3304
  mdast-util-to-markdown: 1.5.0
2973
3305
  micromark-util-normalize-identifier: 1.1.0
2974
3306
  dev: false
@@ -2979,7 +3311,7 @@ packages:
2979
3311
  integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==
2980
3312
  }
2981
3313
  dependencies:
2982
- '@types/mdast': 3.0.11
3314
+ '@types/mdast': 3.0.12
2983
3315
  mdast-util-to-markdown: 1.5.0
2984
3316
  dev: false
2985
3317
 
@@ -2989,7 +3321,7 @@ packages:
2989
3321
  integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==
2990
3322
  }
2991
3323
  dependencies:
2992
- '@types/mdast': 3.0.11
3324
+ '@types/mdast': 3.0.12
2993
3325
  markdown-table: 3.0.3
2994
3326
  mdast-util-from-markdown: 1.3.1
2995
3327
  mdast-util-to-markdown: 1.5.0
@@ -3003,7 +3335,7 @@ packages:
3003
3335
  integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==
3004
3336
  }
3005
3337
  dependencies:
3006
- '@types/mdast': 3.0.11
3338
+ '@types/mdast': 3.0.12
3007
3339
  mdast-util-to-markdown: 1.5.0
3008
3340
  dev: false
3009
3341
 
@@ -3030,7 +3362,7 @@ packages:
3030
3362
  integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==
3031
3363
  }
3032
3364
  dependencies:
3033
- '@types/mdast': 3.0.11
3365
+ '@types/mdast': 3.0.12
3034
3366
  unist-util-is: 5.2.1
3035
3367
  dev: false
3036
3368
 
@@ -3040,8 +3372,8 @@ packages:
3040
3372
  integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==
3041
3373
  }
3042
3374
  dependencies:
3043
- '@types/mdast': 3.0.11
3044
- '@types/unist': 2.0.6
3375
+ '@types/mdast': 3.0.12
3376
+ '@types/unist': 2.0.7
3045
3377
  longest-streak: 3.1.0
3046
3378
  mdast-util-phrasing: 3.0.1
3047
3379
  mdast-util-to-string: 3.2.0
@@ -3056,21 +3388,36 @@ packages:
3056
3388
  integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==
3057
3389
  }
3058
3390
  dependencies:
3059
- '@types/mdast': 3.0.11
3391
+ '@types/mdast': 3.0.12
3392
+ dev: false
3393
+
3394
+ /mdast-util-to-string@4.0.0:
3395
+ resolution:
3396
+ {
3397
+ integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==
3398
+ }
3399
+ dependencies:
3400
+ '@types/mdast': 4.0.0
3060
3401
  dev: false
3061
3402
 
3062
- /mdsvex@0.10.6(svelte@3.59.1):
3403
+ /mdn-data@2.0.30:
3404
+ resolution:
3405
+ {
3406
+ integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==
3407
+ }
3408
+
3409
+ /mdsvex@0.11.0(svelte@4.1.2):
3063
3410
  resolution:
3064
3411
  {
3065
- integrity: sha512-aGRDY0r5jx9+OOgFdyB9Xm3EBr9OUmcrTDPWLB7a7g8VPRxzPy4MOBmcVYgz7ErhAJ7bZ/coUoj6aHio3x/2mA==
3412
+ integrity: sha512-gJF1s0N2nCmdxcKn8HDn0LKrN8poStqAicp6bBcsKFd/zkUBGLP5e7vnxu+g0pjBbDFOscUyI1mtHz+YK2TCDw==
3066
3413
  }
3067
3414
  peerDependencies:
3068
- svelte: 3.x
3415
+ svelte: '>=3 <5'
3069
3416
  dependencies:
3070
- '@types/unist': 2.0.6
3417
+ '@types/unist': 2.0.7
3071
3418
  prism-svelte: 0.4.7
3072
3419
  prismjs: 1.29.0
3073
- svelte: 3.59.1
3420
+ svelte: 4.1.2
3074
3421
  vfile-message: 2.0.4
3075
3422
  dev: true
3076
3423
 
@@ -3466,16 +3813,16 @@ packages:
3466
3813
  minimist: 1.2.8
3467
3814
  dev: true
3468
3815
 
3469
- /mlly@1.3.0:
3816
+ /mlly@1.4.0:
3470
3817
  resolution:
3471
3818
  {
3472
- integrity: sha512-HT5mcgIQKkOrZecOjOX3DJorTikWXwsBfpcr/MGBkhfWcjiqvnaL/9ppxvIUXfjT6xt4DVIAsN9fMUz1ev4bIw==
3819
+ integrity: sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==
3473
3820
  }
3474
3821
  dependencies:
3475
- acorn: 8.8.2
3822
+ acorn: 8.10.0
3476
3823
  pathe: 1.1.1
3477
3824
  pkg-types: 1.0.3
3478
- ufo: 1.1.2
3825
+ ufo: 1.2.0
3479
3826
  dev: true
3480
3827
 
3481
3828
  /mri@1.2.0:
@@ -3533,10 +3880,10 @@ packages:
3533
3880
  }
3534
3881
  dev: true
3535
3882
 
3536
- /node-releases@2.0.12:
3883
+ /node-releases@2.0.13:
3537
3884
  resolution:
3538
3885
  {
3539
- integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==
3886
+ integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==
3540
3887
  }
3541
3888
  dev: true
3542
3889
 
@@ -3581,19 +3928,19 @@ packages:
3581
3928
  wrappy: 1.0.2
3582
3929
  dev: true
3583
3930
 
3584
- /optionator@0.9.1:
3931
+ /optionator@0.9.3:
3585
3932
  resolution:
3586
3933
  {
3587
- integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
3934
+ integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==
3588
3935
  }
3589
3936
  engines: { node: '>= 0.8.0' }
3590
3937
  dependencies:
3938
+ '@aashutoshrathi/word-wrap': 1.2.6
3591
3939
  deep-is: 0.1.4
3592
3940
  fast-levenshtein: 2.0.6
3593
3941
  levn: 0.4.1
3594
3942
  prelude-ls: 1.2.1
3595
3943
  type-check: 0.4.0
3596
- word-wrap: 1.2.3
3597
3944
  dev: true
3598
3945
 
3599
3946
  /p-limit@3.1.0:
@@ -3703,6 +4050,16 @@ packages:
3703
4050
  }
3704
4051
  dev: true
3705
4052
 
4053
+ /periscopic@3.1.0:
4054
+ resolution:
4055
+ {
4056
+ integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==
4057
+ }
4058
+ dependencies:
4059
+ '@types/estree': 1.0.1
4060
+ estree-walker: 3.0.3
4061
+ is-reference: 3.0.1
4062
+
3706
4063
  /picocolors@1.0.0:
3707
4064
  resolution:
3708
4065
  {
@@ -3726,10 +4083,10 @@ packages:
3726
4083
  engines: { node: '>=0.10.0' }
3727
4084
  dev: true
3728
4085
 
3729
- /pirates@4.0.5:
4086
+ /pirates@4.0.6:
3730
4087
  resolution:
3731
4088
  {
3732
- integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==
4089
+ integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==
3733
4090
  }
3734
4091
  engines: { node: '>= 6' }
3735
4092
  dev: true
@@ -3741,11 +4098,11 @@ packages:
3741
4098
  }
3742
4099
  dependencies:
3743
4100
  jsonc-parser: 3.2.0
3744
- mlly: 1.3.0
4101
+ mlly: 1.4.0
3745
4102
  pathe: 1.1.1
3746
4103
  dev: true
3747
4104
 
3748
- /postcss-import@15.1.0(postcss@8.4.24):
4105
+ /postcss-import@15.1.0(postcss@8.4.27):
3749
4106
  resolution:
3750
4107
  {
3751
4108
  integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==
@@ -3754,13 +4111,13 @@ packages:
3754
4111
  peerDependencies:
3755
4112
  postcss: ^8.0.0
3756
4113
  dependencies:
3757
- postcss: 8.4.24
4114
+ postcss: 8.4.27
3758
4115
  postcss-value-parser: 4.2.0
3759
4116
  read-cache: 1.0.0
3760
4117
  resolve: 1.22.2
3761
4118
  dev: true
3762
4119
 
3763
- /postcss-js@4.0.1(postcss@8.4.24):
4120
+ /postcss-js@4.0.1(postcss@8.4.27):
3764
4121
  resolution:
3765
4122
  {
3766
4123
  integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==
@@ -3770,10 +4127,10 @@ packages:
3770
4127
  postcss: ^8.4.21
3771
4128
  dependencies:
3772
4129
  camelcase-css: 2.0.1
3773
- postcss: 8.4.24
4130
+ postcss: 8.4.27
3774
4131
  dev: true
3775
4132
 
3776
- /postcss-load-config@3.1.4(postcss@8.4.24):
4133
+ /postcss-load-config@3.1.4(postcss@8.4.27):
3777
4134
  resolution:
3778
4135
  {
3779
4136
  integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==
@@ -3789,11 +4146,11 @@ packages:
3789
4146
  optional: true
3790
4147
  dependencies:
3791
4148
  lilconfig: 2.1.0
3792
- postcss: 8.4.24
4149
+ postcss: 8.4.27
3793
4150
  yaml: 1.10.2
3794
4151
  dev: true
3795
4152
 
3796
- /postcss-load-config@4.0.1(postcss@8.4.24):
4153
+ /postcss-load-config@4.0.1(postcss@8.4.27):
3797
4154
  resolution:
3798
4155
  {
3799
4156
  integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==
@@ -3809,11 +4166,11 @@ packages:
3809
4166
  optional: true
3810
4167
  dependencies:
3811
4168
  lilconfig: 2.1.0
3812
- postcss: 8.4.24
4169
+ postcss: 8.4.27
3813
4170
  yaml: 2.3.1
3814
4171
  dev: true
3815
4172
 
3816
- /postcss-nested@6.0.1(postcss@8.4.24):
4173
+ /postcss-nested@6.0.1(postcss@8.4.27):
3817
4174
  resolution:
3818
4175
  {
3819
4176
  integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==
@@ -3822,11 +4179,11 @@ packages:
3822
4179
  peerDependencies:
3823
4180
  postcss: ^8.2.14
3824
4181
  dependencies:
3825
- postcss: 8.4.24
4182
+ postcss: 8.4.27
3826
4183
  postcss-selector-parser: 6.0.13
3827
4184
  dev: true
3828
4185
 
3829
- /postcss-safe-parser@6.0.0(postcss@8.4.24):
4186
+ /postcss-safe-parser@6.0.0(postcss@8.4.27):
3830
4187
  resolution:
3831
4188
  {
3832
4189
  integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==
@@ -3835,7 +4192,19 @@ packages:
3835
4192
  peerDependencies:
3836
4193
  postcss: ^8.3.3
3837
4194
  dependencies:
3838
- postcss: 8.4.24
4195
+ postcss: 8.4.27
4196
+ dev: true
4197
+
4198
+ /postcss-scss@4.0.6(postcss@8.4.27):
4199
+ resolution:
4200
+ {
4201
+ integrity: sha512-rLDPhJY4z/i4nVFZ27j9GqLxj1pwxE80eAzUNRMXtcpipFYIeowerzBgG3yJhMtObGEXidtIgbUpQ3eLDsf5OQ==
4202
+ }
4203
+ engines: { node: '>=12.0' }
4204
+ peerDependencies:
4205
+ postcss: ^8.4.19
4206
+ dependencies:
4207
+ postcss: 8.4.27
3839
4208
  dev: true
3840
4209
 
3841
4210
  /postcss-selector-parser@6.0.13:
@@ -3856,10 +4225,10 @@ packages:
3856
4225
  }
3857
4226
  dev: true
3858
4227
 
3859
- /postcss@8.4.24:
4228
+ /postcss@8.4.27:
3860
4229
  resolution:
3861
4230
  {
3862
- integrity: sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==
4231
+ integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==
3863
4232
  }
3864
4233
  engines: { node: ^10 || ^12 || >=14 }
3865
4234
  dependencies:
@@ -3876,23 +4245,23 @@ packages:
3876
4245
  engines: { node: '>= 0.8.0' }
3877
4246
  dev: true
3878
4247
 
3879
- /prettier-plugin-svelte@2.10.1(prettier@2.8.8)(svelte@3.59.1):
4248
+ /prettier-plugin-svelte@3.0.3(prettier@3.0.0)(svelte@4.1.2):
3880
4249
  resolution:
3881
4250
  {
3882
- integrity: sha512-Wlq7Z5v2ueCubWo0TZzKc9XHcm7TDxqcuzRuGd0gcENfzfT4JZ9yDlCbEgxWgiPmLHkBjfOtpAWkcT28MCDpUQ==
4251
+ integrity: sha512-dLhieh4obJEK1hnZ6koxF+tMUrZbV5YGvRpf2+OADyanjya5j0z1Llo8iGwiHmFWZVG/hLEw/AJD5chXd9r3XA==
3883
4252
  }
3884
4253
  peerDependencies:
3885
- prettier: ^1.16.4 || ^2.0.0
4254
+ prettier: ^3.0.0
3886
4255
  svelte: ^3.2.0 || ^4.0.0-next.0
3887
4256
  dependencies:
3888
- prettier: 2.8.8
3889
- svelte: 3.59.1
4257
+ prettier: 3.0.0
4258
+ svelte: 4.1.2
3890
4259
  dev: true
3891
4260
 
3892
- /prettier-plugin-tailwindcss@0.3.0(prettier-plugin-svelte@2.10.1)(prettier@2.8.8):
4261
+ /prettier-plugin-tailwindcss@0.4.1(prettier-plugin-svelte@3.0.3)(prettier@3.0.0):
3893
4262
  resolution:
3894
4263
  {
3895
- integrity: sha512-009/Xqdy7UmkcTBpwlq7jsViDqXAYSOMLDrHAdTMlVZOrKfM2o9Ci7EMWTMZ7SkKBFTG04UM9F9iM2+4i6boDA==
4264
+ integrity: sha512-hwn2EiJmv8M+AW4YDkbjJ6HlZCTzLyz1QlySn9sMuKV/Px0fjwldlB7tol8GzdgqtkdPtzT3iJ4UzdnYXP25Ag==
3896
4265
  }
3897
4266
  engines: { node: '>=12.17.0' }
3898
4267
  peerDependencies:
@@ -3901,7 +4270,7 @@ packages:
3901
4270
  '@shopify/prettier-plugin-liquid': '*'
3902
4271
  '@shufo/prettier-plugin-blade': '*'
3903
4272
  '@trivago/prettier-plugin-sort-imports': '*'
3904
- prettier: '>=2.2.0'
4273
+ prettier: ^2.2 || ^3.0
3905
4274
  prettier-plugin-astro: '*'
3906
4275
  prettier-plugin-css-order: '*'
3907
4276
  prettier-plugin-import-sort: '*'
@@ -3944,29 +4313,29 @@ packages:
3944
4313
  prettier-plugin-twig-melody:
3945
4314
  optional: true
3946
4315
  dependencies:
3947
- prettier: 2.8.8
3948
- prettier-plugin-svelte: 2.10.1(prettier@2.8.8)(svelte@3.59.1)
4316
+ prettier: 3.0.0
4317
+ prettier-plugin-svelte: 3.0.3(prettier@3.0.0)(svelte@4.1.2)
3949
4318
  dev: true
3950
4319
 
3951
- /prettier@2.8.8:
4320
+ /prettier@3.0.0:
3952
4321
  resolution:
3953
4322
  {
3954
- integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==
4323
+ integrity: sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==
3955
4324
  }
3956
- engines: { node: '>=10.13.0' }
4325
+ engines: { node: '>=14' }
3957
4326
  hasBin: true
3958
4327
  dev: true
3959
4328
 
3960
- /pretty-format@27.5.1:
4329
+ /pretty-format@29.6.2:
3961
4330
  resolution:
3962
4331
  {
3963
- integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==
4332
+ integrity: sha512-1q0oC8eRveTg5nnBEWMXAU2qpv65Gnuf2eCQzSjxpWFkPaPARwqZZDGuNE0zPAZfTCHzIk3A8dIjwlQKKLphyg==
3964
4333
  }
3965
- engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 }
4334
+ engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
3966
4335
  dependencies:
3967
- ansi-regex: 5.0.1
4336
+ '@jest/schemas': 29.6.0
3968
4337
  ansi-styles: 5.2.0
3969
- react-is: 17.0.2
4338
+ react-is: 18.2.0
3970
4339
  dev: true
3971
4340
 
3972
4341
  /prism-svelte@0.4.7:
@@ -4012,23 +4381,24 @@ packages:
4012
4381
  }
4013
4382
  dev: true
4014
4383
 
4015
- /radix-svelte@0.7.1(svelte@3.59.1):
4384
+ /radix-svelte@0.9.0(svelte@4.1.2):
4016
4385
  resolution:
4017
4386
  {
4018
- integrity: sha512-A6ZJK0uWqWYxIf6bAXs5R9r3Zf3e1ftLCqqWxVom4uIfADhmyC/cMvpDUAN19QqOcety02a5zwAT6RGf1CGWEg==
4387
+ integrity: sha512-0PJMHiZVTjWGrjK7c2/FY+nq0fBGwPXNy6fFvkLZIs73hTIai/Exw+pi3TCvtd80gSjFb5utdHWI3qiuuN0B/Q==
4019
4388
  }
4389
+ engines: { node: '>= 16' }
4020
4390
  peerDependencies:
4021
- svelte: ^3.58.0
4391
+ svelte: ^4.1.1
4022
4392
  dependencies:
4023
- '@floating-ui/core': 1.2.6
4024
- '@floating-ui/dom': 1.2.9
4025
- svelte: 3.59.1
4393
+ '@floating-ui/core': 1.4.1
4394
+ '@floating-ui/dom': 1.5.1
4395
+ svelte: 4.1.2
4026
4396
  dev: false
4027
4397
 
4028
- /react-is@17.0.2:
4398
+ /react-is@18.2.0:
4029
4399
  resolution:
4030
4400
  {
4031
- integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
4401
+ integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==
4032
4402
  }
4033
4403
  dev: true
4034
4404
 
@@ -4051,18 +4421,19 @@ packages:
4051
4421
  picomatch: 2.3.1
4052
4422
  dev: true
4053
4423
 
4054
- /rehype-pretty-code@0.9.6(shiki@0.14.2):
4424
+ /rehype-pretty-code@0.10.0(shiki@0.14.3):
4055
4425
  resolution:
4056
4426
  {
4057
- integrity: sha512-l94QKT6w00AIJp1FsbVnbKmcEckKdYkJQfstgiSI4GTt/hSdDrnQRz6rP8r01x1rXNFC2exMG4WY0X7fOpVQGw==
4427
+ integrity: sha512-qCD071Y+vUxEy9yyrATPk2+W9q7qCbzZgtc9suZhu75bmRQvOlBhJt4d3WvqSMTamkKoFkvqtCjyAk+ggH+aXQ==
4058
4428
  }
4059
- engines: { node: ^12.16.0 || >=13.2.0 }
4429
+ engines: { node: '>=16' }
4060
4430
  peerDependencies:
4061
- shiki: '*'
4431
+ shiki: 0.x
4062
4432
  dependencies:
4433
+ '@types/hast': 2.3.5
4063
4434
  hash-obj: 4.0.0
4064
4435
  parse-numeric-range: 1.3.0
4065
- shiki: 0.14.2
4436
+ shiki: 0.14.3
4066
4437
  dev: false
4067
4438
 
4068
4439
  /rehype-slug@5.1.0:
@@ -4071,7 +4442,7 @@ packages:
4071
4442
  integrity: sha512-Gf91dJoXneiorNEnn+Phx97CO7oRMrpi+6r155tTxzGuLtm+QrI4cTwCa9e1rtePdL4i9tSO58PeSS6HWfgsiw==
4072
4443
  }
4073
4444
  dependencies:
4074
- '@types/hast': 2.3.4
4445
+ '@types/hast': 2.3.5
4075
4446
  github-slugger: 2.0.0
4076
4447
  hast-util-has-property: 2.0.1
4077
4448
  hast-util-heading-rank: 2.1.1
@@ -4086,7 +4457,7 @@ packages:
4086
4457
  integrity: sha512-kWiZ1bgyWlgOxpqD5HnxShKAdXtb2IUljn3hQAhySeak6IOQPPt6DeGnsIh4ixm7yKJWzm8TXFuC/lPfcWHJqw==
4087
4458
  }
4088
4459
  dependencies:
4089
- '@types/hast': 2.3.4
4460
+ '@types/hast': 2.3.5
4090
4461
  hast-util-to-html: 8.0.4
4091
4462
  unified: 10.1.2
4092
4463
  dev: false
@@ -4109,7 +4480,7 @@ packages:
4109
4480
  integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==
4110
4481
  }
4111
4482
  dependencies:
4112
- '@types/mdast': 3.0.11
4483
+ '@types/mdast': 3.0.12
4113
4484
  mdast-util-gfm: 2.0.2
4114
4485
  micromark-extension-gfm: 2.0.3
4115
4486
  unified: 10.1.2
@@ -4172,10 +4543,10 @@ packages:
4172
4543
  glob: 7.2.3
4173
4544
  dev: true
4174
4545
 
4175
- /rollup@3.23.1:
4546
+ /rollup@3.27.0:
4176
4547
  resolution:
4177
4548
  {
4178
- integrity: sha512-ybRdFVHOoljGEFILHLd2g/qateqUdjE6YS41WXq4p3C/WwD3xtWxV4FYWETA1u9TeXQc5K8L8zHE5d/scOvrOQ==
4549
+ integrity: sha512-aOltLCrYZ0FhJDm7fCqwTjIUEVjWjcydKBV/Zeid6Mn8BWgDCUBBWT5beM5ieForYNo/1ZHuGJdka26kvQ3Gzg==
4179
4550
  }
4180
4551
  engines: { node: '>=14.18.0', npm: '>=8.0.0' }
4181
4552
  hasBin: true
@@ -4213,10 +4584,10 @@ packages:
4213
4584
  rimraf: 2.7.1
4214
4585
  dev: true
4215
4586
 
4216
- /semver@7.5.1:
4587
+ /semver@7.5.4:
4217
4588
  resolution:
4218
4589
  {
4219
- integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==
4590
+ integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
4220
4591
  }
4221
4592
  engines: { node: '>=10' }
4222
4593
  hasBin: true
@@ -4249,13 +4620,13 @@ packages:
4249
4620
  engines: { node: '>=8' }
4250
4621
  dev: true
4251
4622
 
4252
- /shiki@0.14.2:
4623
+ /shiki@0.14.3:
4253
4624
  resolution:
4254
4625
  {
4255
- integrity: sha512-ltSZlSLOuSY0M0Y75KA+ieRaZ0Trf5Wl3gutE7jzLuIcWxLp5i/uEnLoQWNvgKXQ5OMpGkJnVMRLAuzjc0LJ2A==
4626
+ integrity: sha512-U3S/a+b0KS+UkTyMjoNojvTgrBHjgp7L6ovhFVZsXmBGnVdQ4K4U9oK0z63w538S91ATngv1vXigHCSWOwnr+g==
4256
4627
  }
4257
4628
  dependencies:
4258
- ansi-sequence-parser: 1.1.0
4629
+ ansi-sequence-parser: 1.1.1
4259
4630
  jsonc-parser: 3.2.0
4260
4631
  vscode-oniguruma: 1.7.0
4261
4632
  vscode-textmate: 8.0.0
@@ -4317,7 +4688,6 @@ packages:
4317
4688
  integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
4318
4689
  }
4319
4690
  engines: { node: '>=0.10.0' }
4320
- dev: true
4321
4691
 
4322
4692
  /source-map-support@0.5.21:
4323
4693
  resolution:
@@ -4420,13 +4790,13 @@ packages:
4420
4790
  integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==
4421
4791
  }
4422
4792
  dependencies:
4423
- acorn: 8.8.2
4793
+ acorn: 8.10.0
4424
4794
  dev: true
4425
4795
 
4426
- /sucrase@3.32.0:
4796
+ /sucrase@3.34.0:
4427
4797
  resolution:
4428
4798
  {
4429
- integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==
4799
+ integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==
4430
4800
  }
4431
4801
  engines: { node: '>=8' }
4432
4802
  hasBin: true
@@ -4436,7 +4806,7 @@ packages:
4436
4806
  glob: 7.1.6
4437
4807
  lines-and-columns: 1.2.4
4438
4808
  mz: 2.7.0
4439
- pirates: 4.0.5
4809
+ pirates: 4.0.6
4440
4810
  ts-interface-checker: 0.1.13
4441
4811
  dev: true
4442
4812
 
@@ -4458,10 +4828,10 @@ packages:
4458
4828
  engines: { node: '>= 0.4' }
4459
4829
  dev: true
4460
4830
 
4461
- /svelte-check@3.4.3(postcss-load-config@4.0.1)(postcss@8.4.24)(svelte@3.59.1):
4831
+ /svelte-check@3.4.6(postcss-load-config@4.0.1)(postcss@8.4.27)(svelte@4.1.2):
4462
4832
  resolution:
4463
4833
  {
4464
- integrity: sha512-O07soQFY3X0VDt+bcGc6D5naz0cLtjwnmNP9JsEBPVyMemFEqUhL2OdLqvkl5H/u8Jwm50EiAU4BPRn5iin/kg==
4834
+ integrity: sha512-OBlY8866Zh1zHQTkBMPS6psPi7o2umTUyj6JWm4SacnIHXpWFm658pG32m3dKvKFL49V4ntAkfFHKo4ztH07og==
4465
4835
  }
4466
4836
  hasBin: true
4467
4837
  peerDependencies:
@@ -4469,13 +4839,13 @@ packages:
4469
4839
  dependencies:
4470
4840
  '@jridgewell/trace-mapping': 0.3.18
4471
4841
  chokidar: 3.5.3
4472
- fast-glob: 3.2.12
4842
+ fast-glob: 3.3.1
4473
4843
  import-fresh: 3.3.0
4474
4844
  picocolors: 1.0.0
4475
4845
  sade: 1.8.1
4476
- svelte: 3.59.1
4477
- svelte-preprocess: 5.0.4(postcss-load-config@4.0.1)(postcss@8.4.24)(svelte@3.59.1)(typescript@5.1.3)
4478
- typescript: 5.1.3
4846
+ svelte: 4.1.2
4847
+ svelte-preprocess: 5.0.4(postcss-load-config@4.0.1)(postcss@8.4.27)(svelte@4.1.2)(typescript@5.1.6)
4848
+ typescript: 5.1.6
4479
4849
  transitivePeerDependencies:
4480
4850
  - '@babel/core'
4481
4851
  - coffeescript
@@ -4488,25 +4858,27 @@ packages:
4488
4858
  - sugarss
4489
4859
  dev: true
4490
4860
 
4491
- /svelte-eslint-parser@0.30.0(svelte@3.59.1):
4861
+ /svelte-eslint-parser@0.32.2(svelte@4.1.2):
4492
4862
  resolution:
4493
4863
  {
4494
- integrity: sha512-H0Cn2TKr70DU9p/Gb04CfwtS7eK28MYumrHYPaDNkIFbfwGDLADpbERBn7u8G1Rcm2RMr2/mL6mq0J2e8iKFlA==
4864
+ integrity: sha512-Ok9D3A4b23iLQsONrjqtXtYDu5ZZ/826Blaw2LeFZVTg1pwofKDG4mz3/GYTax8fQ0plRGHI6j+d9VQYy5Lo/A==
4495
4865
  }
4496
4866
  engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
4497
4867
  peerDependencies:
4498
- svelte: ^3.37.0 || ^4.0.0-0
4868
+ svelte: ^3.37.0 || ^4.0.0
4499
4869
  peerDependenciesMeta:
4500
4870
  svelte:
4501
4871
  optional: true
4502
4872
  dependencies:
4503
- eslint-scope: 7.2.0
4504
- eslint-visitor-keys: 3.4.1
4505
- espree: 9.5.2
4506
- svelte: 3.59.1
4873
+ eslint-scope: 7.2.2
4874
+ eslint-visitor-keys: 3.4.2
4875
+ espree: 9.6.1
4876
+ postcss: 8.4.27
4877
+ postcss-scss: 4.0.6(postcss@8.4.27)
4878
+ svelte: 4.1.2
4507
4879
  dev: true
4508
4880
 
4509
- /svelte-hmr@0.15.2(svelte@3.59.1):
4881
+ /svelte-hmr@0.15.2(svelte@4.1.2):
4510
4882
  resolution:
4511
4883
  {
4512
4884
  integrity: sha512-q/bAruCvFLwvNbeE1x3n37TYFb3mTBJ6TrCq6p2CoFbSTNhDE9oAtEfpy+wmc9So8AG0Tja+X0/mJzX9tSfvIg==
@@ -4515,10 +4887,10 @@ packages:
4515
4887
  peerDependencies:
4516
4888
  svelte: ^3.19.0 || ^4.0.0-next.0
4517
4889
  dependencies:
4518
- svelte: 3.59.1
4890
+ svelte: 4.1.2
4519
4891
  dev: true
4520
4892
 
4521
- /svelte-legos@0.2.1(svelte@3.59.1):
4893
+ /svelte-legos@0.2.1(svelte@4.1.2):
4522
4894
  resolution:
4523
4895
  {
4524
4896
  integrity: sha512-M7IncWP2e8FaHzQN1DSzxLSoq/6aQYWZ93REZam9bYlvLEjdPGWLAYdpPNnnZtXlHco+o3zrgYTdwsyyS9beUQ==
@@ -4529,10 +4901,10 @@ packages:
4529
4901
  canvas-confetti: 1.6.0
4530
4902
  prism-svelte: 0.5.0
4531
4903
  prismjs: 1.29.0
4532
- svelte: 3.59.1
4904
+ svelte: 4.1.2
4533
4905
  dev: false
4534
4906
 
4535
- /svelte-preprocess@5.0.4(postcss-load-config@4.0.1)(postcss@8.4.24)(svelte@3.59.1)(typescript@5.1.3):
4907
+ /svelte-preprocess@5.0.4(postcss-load-config@4.0.1)(postcss@8.4.27)(svelte@4.1.2)(typescript@5.1.6):
4536
4908
  resolution:
4537
4909
  {
4538
4910
  integrity: sha512-ABia2QegosxOGsVlsSBJvoWeXy1wUKSfF7SWJdTjLAbx/Y3SrVevvvbFNQqrSJw89+lNSsM58SipmZJ5SRi5iw==
@@ -4576,36 +4948,50 @@ packages:
4576
4948
  '@types/pug': 2.0.6
4577
4949
  detect-indent: 6.1.0
4578
4950
  magic-string: 0.27.0
4579
- postcss: 8.4.24
4580
- postcss-load-config: 4.0.1(postcss@8.4.24)
4951
+ postcss: 8.4.27
4952
+ postcss-load-config: 4.0.1(postcss@8.4.27)
4581
4953
  sorcery: 0.11.0
4582
4954
  strip-indent: 3.0.0
4583
- svelte: 3.59.1
4584
- typescript: 5.1.3
4955
+ svelte: 4.1.2
4956
+ typescript: 5.1.6
4585
4957
  dev: true
4586
4958
 
4587
- /svelte-wrap-balancer@0.0.3:
4959
+ /svelte-wrap-balancer@0.0.4:
4588
4960
  resolution:
4589
4961
  {
4590
- integrity: sha512-NlHMz+5hy2GiH+JqA1ECdMIG540nKa3ZfbsxBo/LxvP03rkvJ7W6+FeeP2YU38Z5LX8rqV/sSwreF3WPMPRjmw==
4962
+ integrity: sha512-o+WbHrl426YLDUMgNWJ0yKImmecZ6rFI6WFsrMx7YgsgdaZjtJX0d373TbJ35lzeBqsnMvjdRptl12qE0Mbe9w==
4591
4963
  }
4592
4964
  dev: false
4593
4965
 
4594
- /svelte@3.59.1:
4966
+ /svelte@4.1.2:
4595
4967
  resolution:
4596
4968
  {
4597
- integrity: sha512-pKj8fEBmqf6mq3/NfrB9SLtcJcUvjYSWyePlfCqN9gujLB25RitWK8PvFzlwim6hD/We35KbPlRteuA6rnPGcQ==
4969
+ integrity: sha512-/evA8U6CgOHe5ZD1C1W3va9iJG7mWflcCdghBORJaAhD2JzrVERJty/2gl0pIPrJYBGZwZycH6onYf+64XXF9g==
4598
4970
  }
4599
- engines: { node: '>= 8' }
4971
+ engines: { node: '>=16' }
4972
+ dependencies:
4973
+ '@ampproject/remapping': 2.2.1
4974
+ '@jridgewell/sourcemap-codec': 1.4.15
4975
+ '@jridgewell/trace-mapping': 0.3.18
4976
+ acorn: 8.10.0
4977
+ aria-query: 5.3.0
4978
+ axobject-query: 3.2.1
4979
+ code-red: 1.0.3
4980
+ css-tree: 2.3.1
4981
+ estree-walker: 3.0.3
4982
+ is-reference: 3.0.1
4983
+ locate-character: 3.0.0
4984
+ magic-string: 0.30.2
4985
+ periscopic: 3.1.0
4600
4986
 
4601
- /tailwind-merge@1.13.0:
4987
+ /tailwind-merge@1.14.0:
4602
4988
  resolution:
4603
4989
  {
4604
- integrity: sha512-mUTmDbcU+IhOvJ0c42eLQ/nRkvolTqfpVaVQRSxfJAv9TabS6Y2zW/1wKpKLdKzyL3Gh8j6NTLl6MWNmvOM6kA==
4990
+ integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==
4605
4991
  }
4606
4992
  dev: false
4607
4993
 
4608
- /tailwind-scrollbar@3.0.4(tailwindcss@3.3.2):
4994
+ /tailwind-scrollbar@3.0.4(tailwindcss@3.3.3):
4609
4995
  resolution:
4610
4996
  {
4611
4997
  integrity: sha512-X/QBsn/C5u9x6/YvTc1Zo7b09Gqs5BfDe0UK/8LDQUv8IEBKF+p2ISTRwvAr50MH0hn/wTyCEOann7uXoa1/2Q==
@@ -4614,24 +5000,24 @@ packages:
4614
5000
  peerDependencies:
4615
5001
  tailwindcss: 3.x
4616
5002
  dependencies:
4617
- tailwindcss: 3.3.2
5003
+ tailwindcss: 3.3.3
4618
5004
  dev: true
4619
5005
 
4620
- /tailwindcss-animate@1.0.5(tailwindcss@3.3.2):
5006
+ /tailwindcss-animate@1.0.6(tailwindcss@3.3.3):
4621
5007
  resolution:
4622
5008
  {
4623
- integrity: sha512-UU3qrOJ4lFQABY+MVADmBm+0KW3xZyhMdRvejwtXqYOL7YjHYxmuREFAZdmVG5LPe5E9CAst846SLC4j5I3dcw==
5009
+ integrity: sha512-4WigSGMvbl3gCCact62ZvOngA+PRqhAn7si3TQ3/ZuPuQZcIEtVap+ENSXbzWhpojKB8CpvnIsrwBu8/RnHtuw==
4624
5010
  }
4625
5011
  peerDependencies:
4626
5012
  tailwindcss: '>=3.0.0 || insiders'
4627
5013
  dependencies:
4628
- tailwindcss: 3.3.2
5014
+ tailwindcss: 3.3.3
4629
5015
  dev: true
4630
5016
 
4631
- /tailwindcss@3.3.2:
5017
+ /tailwindcss@3.3.3:
4632
5018
  resolution:
4633
5019
  {
4634
- integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==
5020
+ integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==
4635
5021
  }
4636
5022
  engines: { node: '>=14.0.0' }
4637
5023
  hasBin: true
@@ -4641,24 +5027,23 @@ packages:
4641
5027
  chokidar: 3.5.3
4642
5028
  didyoumean: 1.2.2
4643
5029
  dlv: 1.1.3
4644
- fast-glob: 3.2.12
5030
+ fast-glob: 3.3.1
4645
5031
  glob-parent: 6.0.2
4646
5032
  is-glob: 4.0.3
4647
- jiti: 1.18.2
5033
+ jiti: 1.19.1
4648
5034
  lilconfig: 2.1.0
4649
5035
  micromatch: 4.0.5
4650
5036
  normalize-path: 3.0.0
4651
5037
  object-hash: 3.0.0
4652
5038
  picocolors: 1.0.0
4653
- postcss: 8.4.24
4654
- postcss-import: 15.1.0(postcss@8.4.24)
4655
- postcss-js: 4.0.1(postcss@8.4.24)
4656
- postcss-load-config: 4.0.1(postcss@8.4.24)
4657
- postcss-nested: 6.0.1(postcss@8.4.24)
5039
+ postcss: 8.4.27
5040
+ postcss-import: 15.1.0(postcss@8.4.27)
5041
+ postcss-js: 4.0.1(postcss@8.4.27)
5042
+ postcss-load-config: 4.0.1(postcss@8.4.27)
5043
+ postcss-nested: 6.0.1(postcss@8.4.27)
4658
5044
  postcss-selector-parser: 6.0.13
4659
- postcss-value-parser: 4.2.0
4660
5045
  resolve: 1.22.2
4661
- sucrase: 3.32.0
5046
+ sucrase: 3.34.0
4662
5047
  transitivePeerDependencies:
4663
5048
  - ts-node
4664
5049
  dev: true
@@ -4689,24 +5074,6 @@ packages:
4689
5074
  any-promise: 1.3.0
4690
5075
  dev: true
4691
5076
 
4692
- /time-zone@1.0.0:
4693
- resolution:
4694
- {
4695
- integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==
4696
- }
4697
- engines: { node: '>=4' }
4698
- dev: true
4699
-
4700
- /tiny-glob@0.2.9:
4701
- resolution:
4702
- {
4703
- integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==
4704
- }
4705
- dependencies:
4706
- globalyzer: 0.1.0
4707
- globrex: 0.1.2
4708
- dev: true
4709
-
4710
5077
  /tinybench@2.5.0:
4711
5078
  resolution:
4712
5079
  {
@@ -4714,10 +5081,10 @@ packages:
4714
5081
  }
4715
5082
  dev: true
4716
5083
 
4717
- /tinypool@0.5.0:
5084
+ /tinypool@0.6.0:
4718
5085
  resolution:
4719
5086
  {
4720
- integrity: sha512-paHQtnrlS1QZYKF/GnLoOM/DN9fqaGOFbCbxzAhwniySnzl9Ebk8w73/dd34DAhe/obUbPAOldTyYXQZxnPBPQ==
5087
+ integrity: sha512-FdswUUo5SxRizcBc6b1GSuLpLjisa8N8qMyYoP3rl+bym+QauhtJP5bvZY1ytt8krKGmMLYIRl36HBZfeAoqhQ==
4721
5088
  }
4722
5089
  engines: { node: '>=14.0.0' }
4723
5090
  dev: true
@@ -4774,38 +5141,30 @@ packages:
4774
5141
  }
4775
5142
  dev: false
4776
5143
 
4777
- /ts-interface-checker@0.1.13:
4778
- resolution:
4779
- {
4780
- integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==
4781
- }
4782
- dev: true
4783
-
4784
- /tslib@1.14.1:
5144
+ /ts-api-utils@1.0.1(typescript@5.1.6):
4785
5145
  resolution:
4786
5146
  {
4787
- integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
5147
+ integrity: sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==
4788
5148
  }
5149
+ engines: { node: '>=16.13.0' }
5150
+ peerDependencies:
5151
+ typescript: '>=4.2.0'
5152
+ dependencies:
5153
+ typescript: 5.1.6
4789
5154
  dev: true
4790
5155
 
4791
- /tslib@2.5.3:
5156
+ /ts-interface-checker@0.1.13:
4792
5157
  resolution:
4793
5158
  {
4794
- integrity: sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==
5159
+ integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==
4795
5160
  }
4796
5161
  dev: true
4797
5162
 
4798
- /tsutils@3.21.0(typescript@5.1.3):
5163
+ /tslib@2.6.1:
4799
5164
  resolution:
4800
5165
  {
4801
- integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
5166
+ integrity: sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==
4802
5167
  }
4803
- engines: { node: '>= 6' }
4804
- peerDependencies:
4805
- typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
4806
- dependencies:
4807
- tslib: 1.14.1
4808
- typescript: 5.1.3
4809
5168
  dev: true
4810
5169
 
4811
5170
  /tsx@3.12.7:
@@ -4856,18 +5215,19 @@ packages:
4856
5215
  engines: { node: '>=10' }
4857
5216
  dev: false
4858
5217
 
4859
- /typescript@5.1.3:
5218
+ /typescript@5.1.6:
4860
5219
  resolution:
4861
5220
  {
4862
- integrity: sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==
5221
+ integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==
4863
5222
  }
4864
5223
  engines: { node: '>=14.17' }
4865
5224
  hasBin: true
5225
+ dev: true
4866
5226
 
4867
- /ufo@1.1.2:
5227
+ /ufo@1.2.0:
4868
5228
  resolution:
4869
5229
  {
4870
- integrity: sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==
5230
+ integrity: sha512-RsPyTbqORDNDxqAdQPQBpgqhWle1VcTSou/FraClYlHf6TZnQcGslpLcAphNR+sQW4q5lLWLbOsRlh9j24baQg==
4871
5231
  }
4872
5232
  dev: true
4873
5233
 
@@ -4887,7 +5247,7 @@ packages:
4887
5247
  integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==
4888
5248
  }
4889
5249
  dependencies:
4890
- '@types/unist': 2.0.6
5250
+ '@types/unist': 2.0.7
4891
5251
  bail: 2.0.2
4892
5252
  extend: 3.0.2
4893
5253
  is-buffer: 2.0.5
@@ -4896,13 +5256,13 @@ packages:
4896
5256
  vfile: 5.3.7
4897
5257
  dev: false
4898
5258
 
4899
- /unist-builder@3.0.1:
5259
+ /unist-builder@4.0.0:
4900
5260
  resolution:
4901
5261
  {
4902
- integrity: sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==
5262
+ integrity: sha512-wmRFnH+BLpZnTKpc5L7O67Kac89s9HMrtELpnNaE6TAobq5DTZZs5YaTQfAZBA9bFPECx2uVAPO31c+GVug8mg==
4903
5263
  }
4904
5264
  dependencies:
4905
- '@types/unist': 2.0.6
5265
+ '@types/unist': 3.0.0
4906
5266
  dev: false
4907
5267
 
4908
5268
  /unist-util-is@5.2.1:
@@ -4911,7 +5271,16 @@ packages:
4911
5271
  integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==
4912
5272
  }
4913
5273
  dependencies:
4914
- '@types/unist': 2.0.6
5274
+ '@types/unist': 2.0.7
5275
+ dev: false
5276
+
5277
+ /unist-util-is@6.0.0:
5278
+ resolution:
5279
+ {
5280
+ integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==
5281
+ }
5282
+ dependencies:
5283
+ '@types/unist': 3.0.0
4915
5284
  dev: false
4916
5285
 
4917
5286
  /unist-util-position@4.0.4:
@@ -4920,7 +5289,7 @@ packages:
4920
5289
  integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==
4921
5290
  }
4922
5291
  dependencies:
4923
- '@types/unist': 2.0.6
5292
+ '@types/unist': 2.0.7
4924
5293
  dev: false
4925
5294
 
4926
5295
  /unist-util-stringify-position@2.0.3:
@@ -4929,7 +5298,7 @@ packages:
4929
5298
  integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==
4930
5299
  }
4931
5300
  dependencies:
4932
- '@types/unist': 2.0.6
5301
+ '@types/unist': 2.0.7
4933
5302
 
4934
5303
  /unist-util-stringify-position@3.0.3:
4935
5304
  resolution:
@@ -4937,7 +5306,7 @@ packages:
4937
5306
  integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==
4938
5307
  }
4939
5308
  dependencies:
4940
- '@types/unist': 2.0.6
5309
+ '@types/unist': 2.0.7
4941
5310
  dev: false
4942
5311
 
4943
5312
  /unist-util-visit-parents@5.1.3:
@@ -4946,22 +5315,43 @@ packages:
4946
5315
  integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==
4947
5316
  }
4948
5317
  dependencies:
4949
- '@types/unist': 2.0.6
5318
+ '@types/unist': 2.0.7
4950
5319
  unist-util-is: 5.2.1
4951
5320
  dev: false
4952
5321
 
5322
+ /unist-util-visit-parents@6.0.1:
5323
+ resolution:
5324
+ {
5325
+ integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==
5326
+ }
5327
+ dependencies:
5328
+ '@types/unist': 3.0.0
5329
+ unist-util-is: 6.0.0
5330
+ dev: false
5331
+
4953
5332
  /unist-util-visit@4.1.2:
4954
5333
  resolution:
4955
5334
  {
4956
5335
  integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==
4957
5336
  }
4958
5337
  dependencies:
4959
- '@types/unist': 2.0.6
5338
+ '@types/unist': 2.0.7
4960
5339
  unist-util-is: 5.2.1
4961
5340
  unist-util-visit-parents: 5.1.3
4962
5341
  dev: false
4963
5342
 
4964
- /update-browserslist-db@1.0.11(browserslist@4.21.7):
5343
+ /unist-util-visit@5.0.0:
5344
+ resolution:
5345
+ {
5346
+ integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==
5347
+ }
5348
+ dependencies:
5349
+ '@types/unist': 3.0.0
5350
+ unist-util-is: 6.0.0
5351
+ unist-util-visit-parents: 6.0.1
5352
+ dev: false
5353
+
5354
+ /update-browserslist-db@1.0.11(browserslist@4.21.9):
4965
5355
  resolution:
4966
5356
  {
4967
5357
  integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==
@@ -4970,7 +5360,7 @@ packages:
4970
5360
  peerDependencies:
4971
5361
  browserslist: '>= 4.21.0'
4972
5362
  dependencies:
4973
- browserslist: 4.21.7
5363
+ browserslist: 4.21.9
4974
5364
  escalade: 3.1.1
4975
5365
  picocolors: 1.0.0
4976
5366
  dev: true
@@ -5011,7 +5401,7 @@ packages:
5011
5401
  integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==
5012
5402
  }
5013
5403
  dependencies:
5014
- '@types/unist': 2.0.6
5404
+ '@types/unist': 2.0.7
5015
5405
  vfile: 5.3.7
5016
5406
  dev: false
5017
5407
 
@@ -5021,7 +5411,7 @@ packages:
5021
5411
  integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==
5022
5412
  }
5023
5413
  dependencies:
5024
- '@types/unist': 2.0.6
5414
+ '@types/unist': 2.0.7
5025
5415
  unist-util-stringify-position: 2.0.3
5026
5416
 
5027
5417
  /vfile-message@3.1.4:
@@ -5030,7 +5420,7 @@ packages:
5030
5420
  integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==
5031
5421
  }
5032
5422
  dependencies:
5033
- '@types/unist': 2.0.6
5423
+ '@types/unist': 2.0.7
5034
5424
  unist-util-stringify-position: 3.0.3
5035
5425
  dev: false
5036
5426
 
@@ -5040,7 +5430,7 @@ packages:
5040
5430
  integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==
5041
5431
  }
5042
5432
  dependencies:
5043
- '@types/unist': 2.0.6
5433
+ '@types/unist': 2.0.7
5044
5434
  is-buffer: 2.0.5
5045
5435
  unist-util-stringify-position: 2.0.3
5046
5436
  vfile-message: 2.0.4
@@ -5052,29 +5442,30 @@ packages:
5052
5442
  integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==
5053
5443
  }
5054
5444
  dependencies:
5055
- '@types/unist': 2.0.6
5445
+ '@types/unist': 2.0.7
5056
5446
  is-buffer: 2.0.5
5057
5447
  unist-util-stringify-position: 3.0.3
5058
5448
  vfile-message: 3.1.4
5059
5449
  dev: false
5060
5450
 
5061
- /vite-node@0.31.4(@types/node@20.2.5):
5451
+ /vite-node@0.33.0(@types/node@20.4.5):
5062
5452
  resolution:
5063
5453
  {
5064
- integrity: sha512-uzL377GjJtTbuc5KQxVbDu2xfU/x0wVjUtXQR2ihS21q/NK6ROr4oG0rsSkBBddZUVCwzfx22in76/0ZZHXgkQ==
5454
+ integrity: sha512-19FpHYbwWWxDr73ruNahC+vtEdza52kA90Qb3La98yZ0xULqV8A5JLNPUff0f5zID4984tW7l3DH2przTJUZSw==
5065
5455
  }
5066
5456
  engines: { node: '>=v14.18.0' }
5067
5457
  hasBin: true
5068
5458
  dependencies:
5069
5459
  cac: 6.7.14
5070
5460
  debug: 4.3.4
5071
- mlly: 1.3.0
5461
+ mlly: 1.4.0
5072
5462
  pathe: 1.1.1
5073
5463
  picocolors: 1.0.0
5074
- vite: 4.3.9(@types/node@20.2.5)
5464
+ vite: 4.4.7(@types/node@20.4.5)
5075
5465
  transitivePeerDependencies:
5076
5466
  - '@types/node'
5077
5467
  - less
5468
+ - lightningcss
5078
5469
  - sass
5079
5470
  - stylus
5080
5471
  - sugarss
@@ -5082,16 +5473,17 @@ packages:
5082
5473
  - terser
5083
5474
  dev: true
5084
5475
 
5085
- /vite@4.3.9(@types/node@20.2.5):
5476
+ /vite@4.4.7(@types/node@20.4.5):
5086
5477
  resolution:
5087
5478
  {
5088
- integrity: sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==
5479
+ integrity: sha512-6pYf9QJ1mHylfVh39HpuSfMPojPSKVxZvnclX1K1FyZ1PXDOcLBibdq5t1qxJSnL63ca8Wf4zts6mD8u8oc9Fw==
5089
5480
  }
5090
5481
  engines: { node: ^14.18.0 || >=16.0.0 }
5091
5482
  hasBin: true
5092
5483
  peerDependencies:
5093
5484
  '@types/node': '>= 14'
5094
5485
  less: '*'
5486
+ lightningcss: ^1.21.0
5095
5487
  sass: '*'
5096
5488
  stylus: '*'
5097
5489
  sugarss: '*'
@@ -5101,6 +5493,8 @@ packages:
5101
5493
  optional: true
5102
5494
  less:
5103
5495
  optional: true
5496
+ lightningcss:
5497
+ optional: true
5104
5498
  sass:
5105
5499
  optional: true
5106
5500
  stylus:
@@ -5110,15 +5504,15 @@ packages:
5110
5504
  terser:
5111
5505
  optional: true
5112
5506
  dependencies:
5113
- '@types/node': 20.2.5
5114
- esbuild: 0.17.19
5115
- postcss: 8.4.24
5116
- rollup: 3.23.1
5507
+ '@types/node': 20.4.5
5508
+ esbuild: 0.18.17
5509
+ postcss: 8.4.27
5510
+ rollup: 3.27.0
5117
5511
  optionalDependencies:
5118
5512
  fsevents: 2.3.2
5119
5513
  dev: true
5120
5514
 
5121
- /vitefu@0.2.4(vite@4.3.9):
5515
+ /vitefu@0.2.4(vite@4.4.7):
5122
5516
  resolution:
5123
5517
  {
5124
5518
  integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==
@@ -5129,13 +5523,13 @@ packages:
5129
5523
  vite:
5130
5524
  optional: true
5131
5525
  dependencies:
5132
- vite: 4.3.9(@types/node@20.2.5)
5526
+ vite: 4.4.7(@types/node@20.4.5)
5133
5527
  dev: true
5134
5528
 
5135
- /vitest@0.31.4:
5529
+ /vitest@0.33.0:
5136
5530
  resolution:
5137
5531
  {
5138
- integrity: sha512-GoV0VQPmWrUFOZSg3RpQAPN+LPmHg2/gxlMNJlyxJihkz6qReHDV6b0pPDcqFLNEPya4tWJ1pgwUNP9MLmUfvQ==
5532
+ integrity: sha512-1CxaugJ50xskkQ0e969R/hW47za4YXDUfWJDxip1hwbnhUjYolpfUn2AMOulqG/Dtd9WYAtkHmM/m3yKVrEejQ==
5139
5533
  }
5140
5534
  engines: { node: '>=v14.18.0' }
5141
5535
  hasBin: true
@@ -5168,31 +5562,31 @@ packages:
5168
5562
  dependencies:
5169
5563
  '@types/chai': 4.3.5
5170
5564
  '@types/chai-subset': 1.3.3
5171
- '@types/node': 20.2.5
5172
- '@vitest/expect': 0.31.4
5173
- '@vitest/runner': 0.31.4
5174
- '@vitest/snapshot': 0.31.4
5175
- '@vitest/spy': 0.31.4
5176
- '@vitest/utils': 0.31.4
5177
- acorn: 8.8.2
5565
+ '@types/node': 20.4.5
5566
+ '@vitest/expect': 0.33.0
5567
+ '@vitest/runner': 0.33.0
5568
+ '@vitest/snapshot': 0.33.0
5569
+ '@vitest/spy': 0.33.0
5570
+ '@vitest/utils': 0.33.0
5571
+ acorn: 8.10.0
5178
5572
  acorn-walk: 8.2.0
5179
5573
  cac: 6.7.14
5180
5574
  chai: 4.3.7
5181
- concordance: 5.0.4
5182
5575
  debug: 4.3.4
5183
5576
  local-pkg: 0.4.3
5184
- magic-string: 0.30.0
5577
+ magic-string: 0.30.2
5185
5578
  pathe: 1.1.1
5186
5579
  picocolors: 1.0.0
5187
5580
  std-env: 3.3.3
5188
5581
  strip-literal: 1.0.1
5189
5582
  tinybench: 2.5.0
5190
- tinypool: 0.5.0
5191
- vite: 4.3.9(@types/node@20.2.5)
5192
- vite-node: 0.31.4(@types/node@20.2.5)
5583
+ tinypool: 0.6.0
5584
+ vite: 4.4.7(@types/node@20.4.5)
5585
+ vite-node: 0.33.0(@types/node@20.4.5)
5193
5586
  why-is-node-running: 2.2.2
5194
5587
  transitivePeerDependencies:
5195
5588
  - less
5589
+ - lightningcss
5196
5590
  - sass
5197
5591
  - stylus
5198
5592
  - sugarss
@@ -5221,14 +5615,6 @@ packages:
5221
5615
  }
5222
5616
  dev: false
5223
5617
 
5224
- /well-known-symbols@2.0.0:
5225
- resolution:
5226
- {
5227
- integrity: sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==
5228
- }
5229
- engines: { node: '>=6' }
5230
- dev: true
5231
-
5232
5618
  /which@2.0.2:
5233
5619
  resolution:
5234
5620
  {
@@ -5252,14 +5638,6 @@ packages:
5252
5638
  stackback: 0.0.2
5253
5639
  dev: true
5254
5640
 
5255
- /word-wrap@1.2.3:
5256
- resolution:
5257
- {
5258
- integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
5259
- }
5260
- engines: { node: '>=0.10.0' }
5261
- dev: true
5262
-
5263
5641
  /wrappy@1.0.2:
5264
5642
  resolution:
5265
5643
  {