base-themes 0.1.1 → 0.1.3

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 (282) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/CODE_OF_CONDUCT.md +22 -0
  3. package/CONTRIBUTING.md +98 -0
  4. package/LICENSE +21 -0
  5. package/README.md +324 -5
  6. package/RELEASE.md +80 -0
  7. package/SECURITY.md +49 -0
  8. package/bin/base-themes.mjs +143 -0
  9. package/dist/base-themes.css +1 -1
  10. package/dist/base-themes.js +857 -302
  11. package/dist/llms-full.txt +288 -0
  12. package/dist/llms.txt +79 -0
  13. package/dist/types/blocks/AuthCard.d.ts +2 -0
  14. package/dist/types/blocks/CommandPaletteBlock.d.ts +2 -0
  15. package/dist/types/blocks/DashboardShell.d.ts +2 -0
  16. package/dist/types/blocks/DataTableBlock.d.ts +2 -0
  17. package/dist/types/blocks/PricingPanel.d.ts +2 -0
  18. package/dist/types/blocks/SettingsForm.d.ts +2 -0
  19. package/dist/types/blocks/TeamActivityFeed.d.ts +2 -0
  20. package/dist/types/blocks/ThemeShowcaseCard.d.ts +2 -0
  21. package/dist/types/blocks/index.d.ts +8 -0
  22. package/dist/types/components/ui/Input.d.ts +3 -0
  23. package/dist/types/components/ui/index.d.ts +1 -1
  24. package/dist/types/lib.d.ts +1 -0
  25. package/docs/adoption-dashboard.md +149 -0
  26. package/docs/analytics-setup.md +145 -0
  27. package/docs/community-gallery-proposal.md +64 -0
  28. package/docs/community-proof-telemetry.md +47 -0
  29. package/docs/contributor-issue-seeds.md +240 -0
  30. package/docs/registry-access-telemetry.md +87 -0
  31. package/docs/release-announcement-kit.md +229 -0
  32. package/docs/search-console-setup.md +111 -0
  33. package/docs/theme-token-contract.md +113 -0
  34. package/examples/dashboard/README.md +24 -0
  35. package/examples/dashboard/index.html +12 -0
  36. package/examples/dashboard/package-lock.json +1212 -0
  37. package/examples/dashboard/package.json +24 -0
  38. package/examples/dashboard/src/App.tsx +115 -0
  39. package/examples/dashboard/src/main.tsx +11 -0
  40. package/examples/dashboard/src/styles.css +129 -0
  41. package/examples/dashboard/src/vite-env.d.ts +4 -0
  42. package/examples/dashboard/tsconfig.app.json +23 -0
  43. package/examples/dashboard/tsconfig.json +7 -0
  44. package/examples/dashboard/tsconfig.node.json +15 -0
  45. package/examples/dashboard/vite.config.ts +6 -0
  46. package/examples/next/README.md +29 -0
  47. package/examples/next/app/base-themes-demo.tsx +70 -0
  48. package/examples/next/app/layout.tsx +16 -0
  49. package/examples/next/app/page.tsx +9 -0
  50. package/examples/next/app/styles.css +106 -0
  51. package/examples/next/next-env.d.ts +6 -0
  52. package/examples/next/next.config.ts +5 -0
  53. package/examples/next/package-lock.json +1199 -0
  54. package/examples/next/package.json +27 -0
  55. package/examples/next/tsconfig.json +36 -0
  56. package/examples/registry-copy/README.md +73 -0
  57. package/examples/registry-copy/plan-copy.mjs +130 -0
  58. package/examples/theme-customization/README.md +26 -0
  59. package/examples/theme-customization/index.html +12 -0
  60. package/examples/theme-customization/package-lock.json +1212 -0
  61. package/examples/theme-customization/package.json +24 -0
  62. package/examples/theme-customization/src/App.tsx +138 -0
  63. package/examples/theme-customization/src/main.tsx +11 -0
  64. package/examples/theme-customization/src/styles.css +138 -0
  65. package/examples/theme-customization/src/vite-env.d.ts +4 -0
  66. package/examples/theme-customization/tsconfig.app.json +23 -0
  67. package/examples/theme-customization/tsconfig.json +7 -0
  68. package/examples/theme-customization/tsconfig.node.json +15 -0
  69. package/examples/theme-customization/vite.config.ts +6 -0
  70. package/examples/vite/README.md +32 -0
  71. package/examples/vite/index.html +12 -0
  72. package/examples/vite/package-lock.json +1200 -0
  73. package/examples/vite/package.json +24 -0
  74. package/examples/vite/src/App.tsx +101 -0
  75. package/examples/vite/src/main.tsx +11 -0
  76. package/examples/vite/src/styles.css +125 -0
  77. package/examples/vite/src/vite-env.d.ts +4 -0
  78. package/examples/vite/tsconfig.app.json +23 -0
  79. package/examples/vite/tsconfig.json +7 -0
  80. package/examples/vite/tsconfig.node.json +15 -0
  81. package/examples/vite/vite.config.ts +6 -0
  82. package/llms-full.txt +288 -0
  83. package/llms.txt +79 -0
  84. package/package.json +157 -14
  85. package/public/previews/base-themes-bauhaus.png +0 -0
  86. package/public/previews/base-themes-bento.png +0 -0
  87. package/public/previews/base-themes-calm.png +0 -0
  88. package/public/previews/base-themes-cyberpunk.png +0 -0
  89. package/public/previews/base-themes-data-dense.png +0 -0
  90. package/public/previews/base-themes-editorial.png +0 -0
  91. package/public/previews/base-themes-enterprise.png +0 -0
  92. package/public/previews/base-themes-fluent.png +0 -0
  93. package/public/previews/base-themes-glass.png +0 -0
  94. package/public/previews/base-themes-linear.png +0 -0
  95. package/public/previews/base-themes-luxury.png +0 -0
  96. package/public/previews/base-themes-material.png +0 -0
  97. package/public/previews/base-themes-minimal.png +0 -0
  98. package/public/previews/base-themes-mono.png +0 -0
  99. package/public/previews/base-themes-neo-brutalism.png +0 -0
  100. package/public/previews/base-themes-playful.png +0 -0
  101. package/public/previews/base-themes-retro.png +0 -0
  102. package/public/previews/base-themes-shadcn.png +0 -0
  103. package/public/previews/base-themes-soft-ui.png +0 -0
  104. package/public/previews/base-themes-terminal.png +0 -0
  105. package/registry/items/accordion.json +101 -0
  106. package/registry/items/alert-dialog.json +107 -0
  107. package/registry/items/autocomplete.json +106 -0
  108. package/registry/items/avatar.json +101 -0
  109. package/registry/items/block-auth-card.json +105 -0
  110. package/registry/items/block-command-palette.json +99 -0
  111. package/registry/items/block-dashboard-shell.json +101 -0
  112. package/registry/items/block-data-table.json +99 -0
  113. package/registry/items/block-pricing-panel.json +99 -0
  114. package/registry/items/block-settings-form.json +107 -0
  115. package/registry/items/block-team-activity-feed.json +99 -0
  116. package/registry/items/block-theme-showcase-card.json +99 -0
  117. package/registry/items/button.json +102 -0
  118. package/registry/items/checkbox-group.json +106 -0
  119. package/registry/items/checkbox.json +102 -0
  120. package/registry/items/collapsible.json +101 -0
  121. package/registry/items/combobox.json +101 -0
  122. package/registry/items/context-menu.json +106 -0
  123. package/registry/items/csp-provider.json +96 -0
  124. package/registry/items/dialog.json +102 -0
  125. package/registry/items/direction-provider.json +101 -0
  126. package/registry/items/drawer.json +101 -0
  127. package/registry/items/field.json +101 -0
  128. package/registry/items/fieldset.json +101 -0
  129. package/registry/items/form.json +101 -0
  130. package/registry/items/input.json +102 -0
  131. package/registry/items/menu.json +101 -0
  132. package/registry/items/menubar.json +106 -0
  133. package/registry/items/meter.json +101 -0
  134. package/registry/items/navigation-menu.json +101 -0
  135. package/registry/items/number-field.json +101 -0
  136. package/registry/items/otp-field.json +101 -0
  137. package/registry/items/popover.json +102 -0
  138. package/registry/items/preview-card.json +101 -0
  139. package/registry/items/progress.json +101 -0
  140. package/registry/items/radio-group.json +102 -0
  141. package/registry/items/radio.json +101 -0
  142. package/registry/items/scroll-area.json +101 -0
  143. package/registry/items/select.json +102 -0
  144. package/registry/items/separator.json +101 -0
  145. package/registry/items/slider.json +102 -0
  146. package/registry/items/switch.json +102 -0
  147. package/registry/items/tabs.json +101 -0
  148. package/registry/items/theme-bauhaus.json +107 -0
  149. package/registry/items/theme-bento.json +107 -0
  150. package/registry/items/theme-calm.json +107 -0
  151. package/registry/items/theme-cyberpunk.json +108 -0
  152. package/registry/items/theme-data-dense.json +107 -0
  153. package/registry/items/theme-editorial.json +107 -0
  154. package/registry/items/theme-enterprise.json +108 -0
  155. package/registry/items/theme-fluent.json +107 -0
  156. package/registry/items/theme-glass.json +107 -0
  157. package/registry/items/theme-linear.json +107 -0
  158. package/registry/items/theme-luxury.json +107 -0
  159. package/registry/items/theme-material.json +107 -0
  160. package/registry/items/theme-minimal.json +107 -0
  161. package/registry/items/theme-mono.json +107 -0
  162. package/registry/items/theme-neo-brutalism.json +107 -0
  163. package/registry/items/theme-playful.json +107 -0
  164. package/registry/items/theme-retro.json +107 -0
  165. package/registry/items/theme-shadcn.json +107 -0
  166. package/registry/items/theme-soft-ui.json +107 -0
  167. package/registry/items/theme-terminal.json +107 -0
  168. package/registry/items/toast.json +106 -0
  169. package/registry/items/toggle-group.json +101 -0
  170. package/registry/items/toggle.json +101 -0
  171. package/registry/items/toolbar.json +101 -0
  172. package/registry/items/tooltip.json +102 -0
  173. package/registry/registry.json +564 -49
  174. package/registry/shadcn-registry.json +415 -0
  175. package/research/telemetry-fixtures/analytics-events.jsonl +9 -0
  176. package/research/telemetry-fixtures/bundle-report.json +44 -0
  177. package/research/telemetry-fixtures/community-proof.csv +5 -0
  178. package/research/telemetry-fixtures/registry-access.jsonl +10 -0
  179. package/research/telemetry-fixtures/search-console-export.csv +4 -0
  180. package/scripts/registry-plan.mjs +434 -0
  181. package/scripts/render-launch-actions.mjs +405 -0
  182. package/scripts/render-launch-status.mjs +373 -0
  183. package/scripts/render-release-announcement.mjs +329 -0
  184. package/scripts/verify-launch-readiness.mjs +415 -0
  185. package/scripts/verify-telemetry-fixtures.mjs +85 -0
  186. package/scripts/verify-telemetry-report.mjs +89 -0
  187. package/skills/base-themes/SKILL.md +156 -43
  188. package/src/blocks/AuthCard.tsx +29 -0
  189. package/src/blocks/Blocks.css +182 -0
  190. package/src/blocks/CommandPaletteBlock.tsx +32 -0
  191. package/src/blocks/DashboardShell.tsx +36 -0
  192. package/src/blocks/DataTableBlock.tsx +44 -0
  193. package/src/blocks/PricingPanel.tsx +28 -0
  194. package/src/blocks/SettingsForm.tsx +37 -0
  195. package/src/blocks/TeamActivityFeed.tsx +38 -0
  196. package/src/blocks/ThemeShowcaseCard.tsx +32 -0
  197. package/src/blocks/index.ts +8 -0
  198. package/src/components/ui/Accordion.css +42 -0
  199. package/src/components/ui/Accordion.tsx +41 -0
  200. package/src/components/ui/AlertDialog.css +40 -0
  201. package/src/components/ui/AlertDialog.tsx +52 -0
  202. package/src/components/ui/Autocomplete.css +3 -0
  203. package/src/components/ui/Autocomplete.tsx +50 -0
  204. package/src/components/ui/Avatar.css +45 -0
  205. package/src/components/ui/Avatar.tsx +36 -0
  206. package/src/components/ui/Button.css +79 -0
  207. package/src/components/ui/Button.tsx +20 -0
  208. package/src/components/ui/Checkbox.css +37 -0
  209. package/src/components/ui/Checkbox.tsx +32 -0
  210. package/src/components/ui/CheckboxGroup.tsx +21 -0
  211. package/src/components/ui/Collapsible.css +34 -0
  212. package/src/components/ui/Collapsible.tsx +29 -0
  213. package/src/components/ui/Combobox.css +75 -0
  214. package/src/components/ui/Combobox.tsx +53 -0
  215. package/src/components/ui/ContextMenu.css +9 -0
  216. package/src/components/ui/ContextMenu.tsx +47 -0
  217. package/src/components/ui/CspProvider.tsx +10 -0
  218. package/src/components/ui/Dialog.css +41 -0
  219. package/src/components/ui/Dialog.tsx +45 -0
  220. package/src/components/ui/DirectionProvider.tsx +17 -0
  221. package/src/components/ui/Drawer.css +77 -0
  222. package/src/components/ui/Drawer.tsx +56 -0
  223. package/src/components/ui/Field.css +19 -0
  224. package/src/components/ui/Field.tsx +24 -0
  225. package/src/components/ui/Fieldset.css +16 -0
  226. package/src/components/ui/Fieldset.tsx +19 -0
  227. package/src/components/ui/Form.css +5 -0
  228. package/src/components/ui/Form.tsx +12 -0
  229. package/src/components/ui/Input.css +50 -0
  230. package/src/components/ui/Input.tsx +62 -0
  231. package/src/components/ui/Menu.css +59 -0
  232. package/src/components/ui/Menu.tsx +50 -0
  233. package/src/components/ui/Menubar.css +26 -0
  234. package/src/components/ui/Menubar.tsx +42 -0
  235. package/src/components/ui/Meter.css +45 -0
  236. package/src/components/ui/Meter.tsx +37 -0
  237. package/src/components/ui/NavigationMenu.css +103 -0
  238. package/src/components/ui/NavigationMenu.tsx +64 -0
  239. package/src/components/ui/NumberField.css +38 -0
  240. package/src/components/ui/NumberField.tsx +28 -0
  241. package/src/components/ui/OtpField.css +28 -0
  242. package/src/components/ui/OtpField.tsx +24 -0
  243. package/src/components/ui/Popover.css +25 -0
  244. package/src/components/ui/Popover.tsx +37 -0
  245. package/src/components/ui/PreviewCard.css +33 -0
  246. package/src/components/ui/PreviewCard.tsx +43 -0
  247. package/src/components/ui/Progress.css +33 -0
  248. package/src/components/ui/Progress.tsx +28 -0
  249. package/src/components/ui/Radio.tsx +22 -0
  250. package/src/components/ui/RadioGroup.css +42 -0
  251. package/src/components/ui/RadioGroup.tsx +29 -0
  252. package/src/components/ui/ScrollArea.css +42 -0
  253. package/src/components/ui/ScrollArea.tsx +22 -0
  254. package/src/components/ui/Select.css +86 -0
  255. package/src/components/ui/Select.tsx +39 -0
  256. package/src/components/ui/Separator.css +14 -0
  257. package/src/components/ui/Separator.tsx +12 -0
  258. package/src/components/ui/Slider.css +39 -0
  259. package/src/components/ui/Slider.tsx +21 -0
  260. package/src/components/ui/Switch.css +45 -0
  261. package/src/components/ui/Switch.tsx +29 -0
  262. package/src/components/ui/Tabs.css +72 -0
  263. package/src/components/ui/Tabs.tsx +44 -0
  264. package/src/components/ui/Toast.css +75 -0
  265. package/src/components/ui/Toast.tsx +48 -0
  266. package/src/components/ui/Toggle.tsx +12 -0
  267. package/src/components/ui/ToggleGroup.css +35 -0
  268. package/src/components/ui/ToggleGroup.tsx +30 -0
  269. package/src/components/ui/Toolbar.css +60 -0
  270. package/src/components/ui/Toolbar.tsx +36 -0
  271. package/src/components/ui/Tooltip.css +14 -0
  272. package/src/components/ui/Tooltip.tsx +31 -0
  273. package/src/components/ui/index.ts +83 -0
  274. package/src/components/ui/useDirection.ts +1 -0
  275. package/src/components/ui/useToastManager.ts +11 -0
  276. package/src/docs/blockMeta.json +66 -0
  277. package/src/docs/componentMeta.json +322 -0
  278. package/src/docs/staticPageMeta.json +143 -0
  279. package/src/docs/themeMeta.json +22 -0
  280. package/src/styles/tokenContract.json +61 -0
  281. package/workers/analytics-receiver.mjs +170 -0
  282. package/wrangler.analytics.jsonc +12 -0
@@ -0,0 +1,1212 @@
1
+ {
2
+ "name": "base-themes-dashboard-example",
3
+ "version": "0.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "base-themes-dashboard-example",
9
+ "version": "0.0.0",
10
+ "dependencies": {
11
+ "@base-ui/react": "^1.5.0",
12
+ "base-themes": "file:../..",
13
+ "react": "^18.2.0",
14
+ "react-dom": "^18.2.0"
15
+ },
16
+ "devDependencies": {
17
+ "@types/react": "^18.3.27",
18
+ "@types/react-dom": "^18.3.7",
19
+ "@vitejs/plugin-react": "^6.0.1",
20
+ "typescript": "~6.0.2",
21
+ "vite": "^8.0.12"
22
+ }
23
+ },
24
+ "../..": {
25
+ "name": "base-themes",
26
+ "version": "0.1.2",
27
+ "license": "MIT",
28
+ "dependencies": {
29
+ "clsx": "^2.1.1",
30
+ "lucide-react": "^1.16.0"
31
+ },
32
+ "bin": {
33
+ "base-themes": "bin/base-themes.mjs"
34
+ },
35
+ "devDependencies": {
36
+ "@base-ui/react": "^1.5.0",
37
+ "@cloudflare/vite-plugin": "^1.39.0",
38
+ "@eslint/js": "^10.0.1",
39
+ "@gsap/react": "^2.1.2",
40
+ "@testing-library/jest-dom": "^6.9.1",
41
+ "@testing-library/react": "^16.3.2",
42
+ "@testing-library/user-event": "^14.6.1",
43
+ "@types/jest-axe": "^3.5.9",
44
+ "@types/node": "^24.12.3",
45
+ "@types/react": "^18.3.27",
46
+ "@types/react-dom": "^18.3.7",
47
+ "@vitejs/plugin-react": "^6.0.1",
48
+ "eslint": "^10.3.0",
49
+ "eslint-plugin-react-hooks": "^7.1.1",
50
+ "eslint-plugin-react-refresh": "^0.5.2",
51
+ "globals": "^17.6.0",
52
+ "gsap": "^3.15.0",
53
+ "jest-axe": "^10.0.0",
54
+ "jsdom": "^29.1.1",
55
+ "pixelmatch": "^7.2.0",
56
+ "pngjs": "^7.0.0",
57
+ "react": "^19.2.6",
58
+ "react-dom": "^19.2.6",
59
+ "typescript": "~6.0.2",
60
+ "typescript-eslint": "^8.59.2",
61
+ "vite": "^8.0.12",
62
+ "vitest": "^4.1.7",
63
+ "wrangler": "^4.95.0"
64
+ },
65
+ "peerDependencies": {
66
+ "@base-ui/react": "^1.5.0",
67
+ "react": "^18.2.0 || ^19.0.0",
68
+ "react-dom": "^18.2.0 || ^19.0.0"
69
+ }
70
+ },
71
+ "node_modules/@babel/runtime": {
72
+ "version": "7.29.7",
73
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
74
+ "integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
75
+ "license": "MIT",
76
+ "engines": {
77
+ "node": ">=6.9.0"
78
+ }
79
+ },
80
+ "node_modules/@base-ui/react": {
81
+ "version": "1.5.0",
82
+ "resolved": "https://registry.npmjs.org/@base-ui/react/-/react-1.5.0.tgz",
83
+ "integrity": "sha512-z1gSAlced1yY+iM+mHDEtIkD8UI3Ebs52MuBPxvV6f5hRutk+xvCH/wuB7hDqDzK9JG5FoMz5nhrqtSs1wjt1A==",
84
+ "license": "MIT",
85
+ "dependencies": {
86
+ "@babel/runtime": "^7.29.2",
87
+ "@base-ui/utils": "0.2.9",
88
+ "@floating-ui/react-dom": "^2.1.8",
89
+ "@floating-ui/utils": "^0.2.11",
90
+ "use-sync-external-store": "^1.6.0"
91
+ },
92
+ "engines": {
93
+ "node": ">=14.0.0"
94
+ },
95
+ "funding": {
96
+ "type": "opencollective",
97
+ "url": "https://opencollective.com/mui-org"
98
+ },
99
+ "peerDependencies": {
100
+ "@date-fns/tz": "^1.2.0",
101
+ "@types/react": "^17 || ^18 || ^19",
102
+ "date-fns": "^4.0.0",
103
+ "react": "^17 || ^18 || ^19",
104
+ "react-dom": "^17 || ^18 || ^19"
105
+ },
106
+ "peerDependenciesMeta": {
107
+ "@date-fns/tz": {
108
+ "optional": true
109
+ },
110
+ "@types/react": {
111
+ "optional": true
112
+ },
113
+ "date-fns": {
114
+ "optional": true
115
+ }
116
+ }
117
+ },
118
+ "node_modules/@base-ui/utils": {
119
+ "version": "0.2.9",
120
+ "resolved": "https://registry.npmjs.org/@base-ui/utils/-/utils-0.2.9.tgz",
121
+ "integrity": "sha512-x/PDDCYzoqPpjrdyb3VcyylTI2IjUXEtYDGi5foh7KsnmNJIIaVwA2GLgDH1dps1GgXiJbA60hM+AyuTfQzIvw==",
122
+ "license": "MIT",
123
+ "dependencies": {
124
+ "@babel/runtime": "^7.29.2",
125
+ "@floating-ui/utils": "^0.2.11",
126
+ "reselect": "^5.1.1",
127
+ "use-sync-external-store": "^1.6.0"
128
+ },
129
+ "peerDependencies": {
130
+ "@types/react": "^17 || ^18 || ^19",
131
+ "react": "^17 || ^18 || ^19",
132
+ "react-dom": "^17 || ^18 || ^19"
133
+ },
134
+ "peerDependenciesMeta": {
135
+ "@types/react": {
136
+ "optional": true
137
+ }
138
+ }
139
+ },
140
+ "node_modules/@emnapi/core": {
141
+ "version": "1.10.0",
142
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
143
+ "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
144
+ "dev": true,
145
+ "license": "MIT",
146
+ "optional": true,
147
+ "dependencies": {
148
+ "@emnapi/wasi-threads": "1.2.1",
149
+ "tslib": "^2.4.0"
150
+ }
151
+ },
152
+ "node_modules/@emnapi/runtime": {
153
+ "version": "1.10.0",
154
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
155
+ "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
156
+ "dev": true,
157
+ "license": "MIT",
158
+ "optional": true,
159
+ "dependencies": {
160
+ "tslib": "^2.4.0"
161
+ }
162
+ },
163
+ "node_modules/@emnapi/wasi-threads": {
164
+ "version": "1.2.1",
165
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
166
+ "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
167
+ "dev": true,
168
+ "license": "MIT",
169
+ "optional": true,
170
+ "dependencies": {
171
+ "tslib": "^2.4.0"
172
+ }
173
+ },
174
+ "node_modules/@floating-ui/core": {
175
+ "version": "1.7.5",
176
+ "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.5.tgz",
177
+ "integrity": "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==",
178
+ "license": "MIT",
179
+ "dependencies": {
180
+ "@floating-ui/utils": "^0.2.11"
181
+ }
182
+ },
183
+ "node_modules/@floating-ui/dom": {
184
+ "version": "1.7.6",
185
+ "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.6.tgz",
186
+ "integrity": "sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==",
187
+ "license": "MIT",
188
+ "dependencies": {
189
+ "@floating-ui/core": "^1.7.5",
190
+ "@floating-ui/utils": "^0.2.11"
191
+ }
192
+ },
193
+ "node_modules/@floating-ui/react-dom": {
194
+ "version": "2.1.8",
195
+ "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.8.tgz",
196
+ "integrity": "sha512-cC52bHwM/n/CxS87FH0yWdngEZrjdtLW/qVruo68qg+prK7ZQ4YGdut2GyDVpoGeAYe/h899rVeOVm6Oi40k2A==",
197
+ "license": "MIT",
198
+ "dependencies": {
199
+ "@floating-ui/dom": "^1.7.6"
200
+ },
201
+ "peerDependencies": {
202
+ "react": ">=16.8.0",
203
+ "react-dom": ">=16.8.0"
204
+ }
205
+ },
206
+ "node_modules/@floating-ui/utils": {
207
+ "version": "0.2.11",
208
+ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.11.tgz",
209
+ "integrity": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==",
210
+ "license": "MIT"
211
+ },
212
+ "node_modules/@napi-rs/wasm-runtime": {
213
+ "version": "1.1.4",
214
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
215
+ "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
216
+ "dev": true,
217
+ "license": "MIT",
218
+ "optional": true,
219
+ "dependencies": {
220
+ "@tybys/wasm-util": "^0.10.1"
221
+ },
222
+ "funding": {
223
+ "type": "github",
224
+ "url": "https://github.com/sponsors/Brooooooklyn"
225
+ },
226
+ "peerDependencies": {
227
+ "@emnapi/core": "^1.7.1",
228
+ "@emnapi/runtime": "^1.7.1"
229
+ }
230
+ },
231
+ "node_modules/@oxc-project/types": {
232
+ "version": "0.132.0",
233
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.132.0.tgz",
234
+ "integrity": "sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ==",
235
+ "dev": true,
236
+ "license": "MIT",
237
+ "funding": {
238
+ "url": "https://github.com/sponsors/Boshen"
239
+ }
240
+ },
241
+ "node_modules/@rolldown/binding-android-arm64": {
242
+ "version": "1.0.2",
243
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.2.tgz",
244
+ "integrity": "sha512-ZS4D1JPGn/MYQN/SYDWftIE/nVsM8j/AFOYEzAoOE2O3NktQOZru+/vYXGbR/qtdLdIfGCP0lcoJiYVzsEz+iQ==",
245
+ "cpu": [
246
+ "arm64"
247
+ ],
248
+ "dev": true,
249
+ "license": "MIT",
250
+ "optional": true,
251
+ "os": [
252
+ "android"
253
+ ],
254
+ "engines": {
255
+ "node": "^20.19.0 || >=22.12.0"
256
+ }
257
+ },
258
+ "node_modules/@rolldown/binding-darwin-arm64": {
259
+ "version": "1.0.2",
260
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.2.tgz",
261
+ "integrity": "sha512-vdFA9+C/rekyGce7WqHs/xoT0ioZEWaOFyZLIV1mEeNFaFDUQrPIo8Vs2GvJ6eetb3rzDUtUBgzto3ExpXJB3w==",
262
+ "cpu": [
263
+ "arm64"
264
+ ],
265
+ "dev": true,
266
+ "license": "MIT",
267
+ "optional": true,
268
+ "os": [
269
+ "darwin"
270
+ ],
271
+ "engines": {
272
+ "node": "^20.19.0 || >=22.12.0"
273
+ }
274
+ },
275
+ "node_modules/@rolldown/binding-darwin-x64": {
276
+ "version": "1.0.2",
277
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.2.tgz",
278
+ "integrity": "sha512-BewSOwTHazv77DTYiAZXSqqKZ4KP/KonFisDMVU7PImxoWfB2aepnPhd2E4SWz3zDzYgDNbs6jBmTdgNnF02GA==",
279
+ "cpu": [
280
+ "x64"
281
+ ],
282
+ "dev": true,
283
+ "license": "MIT",
284
+ "optional": true,
285
+ "os": [
286
+ "darwin"
287
+ ],
288
+ "engines": {
289
+ "node": "^20.19.0 || >=22.12.0"
290
+ }
291
+ },
292
+ "node_modules/@rolldown/binding-freebsd-x64": {
293
+ "version": "1.0.2",
294
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.2.tgz",
295
+ "integrity": "sha512-m41o7M0YWtUdqk61Tb+jnKb2rN++iRdIASlExkUoKfIAH30DOHCB8fVLzSUpbWHHU8esmEioY62PxzexE8MBuA==",
296
+ "cpu": [
297
+ "x64"
298
+ ],
299
+ "dev": true,
300
+ "license": "MIT",
301
+ "optional": true,
302
+ "os": [
303
+ "freebsd"
304
+ ],
305
+ "engines": {
306
+ "node": "^20.19.0 || >=22.12.0"
307
+ }
308
+ },
309
+ "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
310
+ "version": "1.0.2",
311
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.2.tgz",
312
+ "integrity": "sha512-jcojB9H7W/jS29pMKWAK1N+fU99vXodHDTatS3b3y/XSOCiHo0kkA74pL3jJmkoQtYpOCxDvaKs1fo2Ij/1X5w==",
313
+ "cpu": [
314
+ "arm"
315
+ ],
316
+ "dev": true,
317
+ "license": "MIT",
318
+ "optional": true,
319
+ "os": [
320
+ "linux"
321
+ ],
322
+ "engines": {
323
+ "node": "^20.19.0 || >=22.12.0"
324
+ }
325
+ },
326
+ "node_modules/@rolldown/binding-linux-arm64-gnu": {
327
+ "version": "1.0.2",
328
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.2.tgz",
329
+ "integrity": "sha512-1jn6qDU5iiOgFgygDzKUuKP0maTi0/f1+sBLgvij/76C77Nm3ts6ufz9Bjg5q5dduxiUIxtq86JIoBvo1xQ4Ig==",
330
+ "cpu": [
331
+ "arm64"
332
+ ],
333
+ "dev": true,
334
+ "libc": [
335
+ "glibc"
336
+ ],
337
+ "license": "MIT",
338
+ "optional": true,
339
+ "os": [
340
+ "linux"
341
+ ],
342
+ "engines": {
343
+ "node": "^20.19.0 || >=22.12.0"
344
+ }
345
+ },
346
+ "node_modules/@rolldown/binding-linux-arm64-musl": {
347
+ "version": "1.0.2",
348
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.2.tgz",
349
+ "integrity": "sha512-QVLO/czFMdoMFSqlX3bcswcJNm/23r+qoa/jgtmFc/qEp6/jXmIkDjF/XIo8dPfGaiwy1xfQn8o77L79GeXFgw==",
350
+ "cpu": [
351
+ "arm64"
352
+ ],
353
+ "dev": true,
354
+ "libc": [
355
+ "musl"
356
+ ],
357
+ "license": "MIT",
358
+ "optional": true,
359
+ "os": [
360
+ "linux"
361
+ ],
362
+ "engines": {
363
+ "node": "^20.19.0 || >=22.12.0"
364
+ }
365
+ },
366
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
367
+ "version": "1.0.2",
368
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.2.tgz",
369
+ "integrity": "sha512-hgO5Abm0w5UL6FEa2iFnZqo2KlK7TQ5QhV5x09hujBf7t5KzHQ1VmfPuTpqRy/rNlSxua3eWH374xxiVrP+lcA==",
370
+ "cpu": [
371
+ "ppc64"
372
+ ],
373
+ "dev": true,
374
+ "libc": [
375
+ "glibc"
376
+ ],
377
+ "license": "MIT",
378
+ "optional": true,
379
+ "os": [
380
+ "linux"
381
+ ],
382
+ "engines": {
383
+ "node": "^20.19.0 || >=22.12.0"
384
+ }
385
+ },
386
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
387
+ "version": "1.0.2",
388
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.2.tgz",
389
+ "integrity": "sha512-fy8rXxuYEu602abC8MUNaPjYLIFzReOaEIEMKMUa0rFEUxNpVXhs15KSSQ4qlqSaM7B6rcj9rDZgADh/IGDzLQ==",
390
+ "cpu": [
391
+ "s390x"
392
+ ],
393
+ "dev": true,
394
+ "libc": [
395
+ "glibc"
396
+ ],
397
+ "license": "MIT",
398
+ "optional": true,
399
+ "os": [
400
+ "linux"
401
+ ],
402
+ "engines": {
403
+ "node": "^20.19.0 || >=22.12.0"
404
+ }
405
+ },
406
+ "node_modules/@rolldown/binding-linux-x64-gnu": {
407
+ "version": "1.0.2",
408
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.2.tgz",
409
+ "integrity": "sha512-0+bOkiQ779+r1WpoHOWHqncvyySci0vKph+myNDYb+im6meJAzHQXay6oEgnkHuUGouM1LKTZwqKpBow6Kj7CQ==",
410
+ "cpu": [
411
+ "x64"
412
+ ],
413
+ "dev": true,
414
+ "libc": [
415
+ "glibc"
416
+ ],
417
+ "license": "MIT",
418
+ "optional": true,
419
+ "os": [
420
+ "linux"
421
+ ],
422
+ "engines": {
423
+ "node": "^20.19.0 || >=22.12.0"
424
+ }
425
+ },
426
+ "node_modules/@rolldown/binding-linux-x64-musl": {
427
+ "version": "1.0.2",
428
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.2.tgz",
429
+ "integrity": "sha512-mjSkrzZK5Qsl0a9d1JgILOiuZOSDTVdKENcSXBoqbzSrspLR/4/IRVDo5wd2GgZjNss/viBFJdeq+j7qH2nypw==",
430
+ "cpu": [
431
+ "x64"
432
+ ],
433
+ "dev": true,
434
+ "libc": [
435
+ "musl"
436
+ ],
437
+ "license": "MIT",
438
+ "optional": true,
439
+ "os": [
440
+ "linux"
441
+ ],
442
+ "engines": {
443
+ "node": "^20.19.0 || >=22.12.0"
444
+ }
445
+ },
446
+ "node_modules/@rolldown/binding-openharmony-arm64": {
447
+ "version": "1.0.2",
448
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.2.tgz",
449
+ "integrity": "sha512-1v5vHasdfQAZoEHakBV72LIFAC9JjnymsiKxp+GEr/ma3+NJCPSaYK+qavInOovJkgwFrs7GccX2d6IgDA3Z5w==",
450
+ "cpu": [
451
+ "arm64"
452
+ ],
453
+ "dev": true,
454
+ "license": "MIT",
455
+ "optional": true,
456
+ "os": [
457
+ "openharmony"
458
+ ],
459
+ "engines": {
460
+ "node": "^20.19.0 || >=22.12.0"
461
+ }
462
+ },
463
+ "node_modules/@rolldown/binding-wasm32-wasi": {
464
+ "version": "1.0.2",
465
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.2.tgz",
466
+ "integrity": "sha512-mb1VobWn6NheziTk5/WEaR6AKVbrwT5sOi6C7zk3gy/pD1qtJfU1j4PgTo2NJnOtbL9Dl3Aeei8w9jJ7qC2jZQ==",
467
+ "cpu": [
468
+ "wasm32"
469
+ ],
470
+ "dev": true,
471
+ "license": "MIT",
472
+ "optional": true,
473
+ "dependencies": {
474
+ "@emnapi/core": "1.10.0",
475
+ "@emnapi/runtime": "1.10.0",
476
+ "@napi-rs/wasm-runtime": "^1.1.4"
477
+ },
478
+ "engines": {
479
+ "node": "^20.19.0 || >=22.12.0"
480
+ }
481
+ },
482
+ "node_modules/@rolldown/binding-win32-arm64-msvc": {
483
+ "version": "1.0.2",
484
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.2.tgz",
485
+ "integrity": "sha512-SqKonF56vA/L2yHwHYcEp2P34URpOZ7d1fS635cTkpDnUtEGdUbhI6NzsPdqeSWvAAeGDrxjWjNmibDIdFf9/A==",
486
+ "cpu": [
487
+ "arm64"
488
+ ],
489
+ "dev": true,
490
+ "license": "MIT",
491
+ "optional": true,
492
+ "os": [
493
+ "win32"
494
+ ],
495
+ "engines": {
496
+ "node": "^20.19.0 || >=22.12.0"
497
+ }
498
+ },
499
+ "node_modules/@rolldown/binding-win32-x64-msvc": {
500
+ "version": "1.0.2",
501
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.2.tgz",
502
+ "integrity": "sha512-v7qRI7gXLRINcOGXt+7YmAZ6iFuyZVMIoXAxhd8oP+DR9dLfL9GfNIx7PLMxmhZdvq8waUJBQiWN9EKNy+TRBQ==",
503
+ "cpu": [
504
+ "x64"
505
+ ],
506
+ "dev": true,
507
+ "license": "MIT",
508
+ "optional": true,
509
+ "os": [
510
+ "win32"
511
+ ],
512
+ "engines": {
513
+ "node": "^20.19.0 || >=22.12.0"
514
+ }
515
+ },
516
+ "node_modules/@rolldown/pluginutils": {
517
+ "version": "1.0.1",
518
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
519
+ "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
520
+ "dev": true,
521
+ "license": "MIT"
522
+ },
523
+ "node_modules/@tybys/wasm-util": {
524
+ "version": "0.10.2",
525
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
526
+ "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
527
+ "dev": true,
528
+ "license": "MIT",
529
+ "optional": true,
530
+ "dependencies": {
531
+ "tslib": "^2.4.0"
532
+ }
533
+ },
534
+ "node_modules/@types/prop-types": {
535
+ "version": "15.7.15",
536
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz",
537
+ "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==",
538
+ "devOptional": true,
539
+ "license": "MIT"
540
+ },
541
+ "node_modules/@types/react": {
542
+ "version": "18.3.29",
543
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.29.tgz",
544
+ "integrity": "sha512-ch0qJdr2JY0r04NXSprbK6TXOgnaJ1Tz23fm5W+z0/CBah6BSBc3n96h7K9GOtwh0HrilNWHIBzE1Ko4Dcw/Wg==",
545
+ "devOptional": true,
546
+ "license": "MIT",
547
+ "dependencies": {
548
+ "@types/prop-types": "*",
549
+ "csstype": "^3.2.2"
550
+ }
551
+ },
552
+ "node_modules/@types/react-dom": {
553
+ "version": "18.3.7",
554
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz",
555
+ "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==",
556
+ "dev": true,
557
+ "license": "MIT",
558
+ "peerDependencies": {
559
+ "@types/react": "^18.0.0"
560
+ }
561
+ },
562
+ "node_modules/@vitejs/plugin-react": {
563
+ "version": "6.0.2",
564
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.2.tgz",
565
+ "integrity": "sha512-DlSMqo4WhThw4vB8Mpn0Woe9J+Jfq1geJ61AKW0QEgLzGMNwtIMdxbDUzLxcun8W7NbJO0e2Jg/Nxm3cCSVzzg==",
566
+ "dev": true,
567
+ "license": "MIT",
568
+ "dependencies": {
569
+ "@rolldown/pluginutils": "^1.0.0"
570
+ },
571
+ "engines": {
572
+ "node": "^20.19.0 || >=22.12.0"
573
+ },
574
+ "peerDependencies": {
575
+ "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0",
576
+ "babel-plugin-react-compiler": "^1.0.0",
577
+ "vite": "^8.0.0"
578
+ },
579
+ "peerDependenciesMeta": {
580
+ "@rolldown/plugin-babel": {
581
+ "optional": true
582
+ },
583
+ "babel-plugin-react-compiler": {
584
+ "optional": true
585
+ }
586
+ }
587
+ },
588
+ "node_modules/base-themes": {
589
+ "resolved": "../..",
590
+ "link": true
591
+ },
592
+ "node_modules/csstype": {
593
+ "version": "3.2.3",
594
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
595
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
596
+ "devOptional": true,
597
+ "license": "MIT"
598
+ },
599
+ "node_modules/detect-libc": {
600
+ "version": "2.1.2",
601
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
602
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
603
+ "dev": true,
604
+ "license": "Apache-2.0",
605
+ "engines": {
606
+ "node": ">=8"
607
+ }
608
+ },
609
+ "node_modules/fdir": {
610
+ "version": "6.5.0",
611
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
612
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
613
+ "dev": true,
614
+ "license": "MIT",
615
+ "engines": {
616
+ "node": ">=12.0.0"
617
+ },
618
+ "peerDependencies": {
619
+ "picomatch": "^3 || ^4"
620
+ },
621
+ "peerDependenciesMeta": {
622
+ "picomatch": {
623
+ "optional": true
624
+ }
625
+ }
626
+ },
627
+ "node_modules/fsevents": {
628
+ "version": "2.3.3",
629
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
630
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
631
+ "dev": true,
632
+ "hasInstallScript": true,
633
+ "license": "MIT",
634
+ "optional": true,
635
+ "os": [
636
+ "darwin"
637
+ ],
638
+ "engines": {
639
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
640
+ }
641
+ },
642
+ "node_modules/js-tokens": {
643
+ "version": "4.0.0",
644
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
645
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
646
+ "license": "MIT"
647
+ },
648
+ "node_modules/lightningcss": {
649
+ "version": "1.32.0",
650
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
651
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
652
+ "dev": true,
653
+ "license": "MPL-2.0",
654
+ "dependencies": {
655
+ "detect-libc": "^2.0.3"
656
+ },
657
+ "engines": {
658
+ "node": ">= 12.0.0"
659
+ },
660
+ "funding": {
661
+ "type": "opencollective",
662
+ "url": "https://opencollective.com/parcel"
663
+ },
664
+ "optionalDependencies": {
665
+ "lightningcss-android-arm64": "1.32.0",
666
+ "lightningcss-darwin-arm64": "1.32.0",
667
+ "lightningcss-darwin-x64": "1.32.0",
668
+ "lightningcss-freebsd-x64": "1.32.0",
669
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
670
+ "lightningcss-linux-arm64-gnu": "1.32.0",
671
+ "lightningcss-linux-arm64-musl": "1.32.0",
672
+ "lightningcss-linux-x64-gnu": "1.32.0",
673
+ "lightningcss-linux-x64-musl": "1.32.0",
674
+ "lightningcss-win32-arm64-msvc": "1.32.0",
675
+ "lightningcss-win32-x64-msvc": "1.32.0"
676
+ }
677
+ },
678
+ "node_modules/lightningcss-android-arm64": {
679
+ "version": "1.32.0",
680
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
681
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
682
+ "cpu": [
683
+ "arm64"
684
+ ],
685
+ "dev": true,
686
+ "license": "MPL-2.0",
687
+ "optional": true,
688
+ "os": [
689
+ "android"
690
+ ],
691
+ "engines": {
692
+ "node": ">= 12.0.0"
693
+ },
694
+ "funding": {
695
+ "type": "opencollective",
696
+ "url": "https://opencollective.com/parcel"
697
+ }
698
+ },
699
+ "node_modules/lightningcss-darwin-arm64": {
700
+ "version": "1.32.0",
701
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
702
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
703
+ "cpu": [
704
+ "arm64"
705
+ ],
706
+ "dev": true,
707
+ "license": "MPL-2.0",
708
+ "optional": true,
709
+ "os": [
710
+ "darwin"
711
+ ],
712
+ "engines": {
713
+ "node": ">= 12.0.0"
714
+ },
715
+ "funding": {
716
+ "type": "opencollective",
717
+ "url": "https://opencollective.com/parcel"
718
+ }
719
+ },
720
+ "node_modules/lightningcss-darwin-x64": {
721
+ "version": "1.32.0",
722
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
723
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
724
+ "cpu": [
725
+ "x64"
726
+ ],
727
+ "dev": true,
728
+ "license": "MPL-2.0",
729
+ "optional": true,
730
+ "os": [
731
+ "darwin"
732
+ ],
733
+ "engines": {
734
+ "node": ">= 12.0.0"
735
+ },
736
+ "funding": {
737
+ "type": "opencollective",
738
+ "url": "https://opencollective.com/parcel"
739
+ }
740
+ },
741
+ "node_modules/lightningcss-freebsd-x64": {
742
+ "version": "1.32.0",
743
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
744
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
745
+ "cpu": [
746
+ "x64"
747
+ ],
748
+ "dev": true,
749
+ "license": "MPL-2.0",
750
+ "optional": true,
751
+ "os": [
752
+ "freebsd"
753
+ ],
754
+ "engines": {
755
+ "node": ">= 12.0.0"
756
+ },
757
+ "funding": {
758
+ "type": "opencollective",
759
+ "url": "https://opencollective.com/parcel"
760
+ }
761
+ },
762
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
763
+ "version": "1.32.0",
764
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
765
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
766
+ "cpu": [
767
+ "arm"
768
+ ],
769
+ "dev": true,
770
+ "license": "MPL-2.0",
771
+ "optional": true,
772
+ "os": [
773
+ "linux"
774
+ ],
775
+ "engines": {
776
+ "node": ">= 12.0.0"
777
+ },
778
+ "funding": {
779
+ "type": "opencollective",
780
+ "url": "https://opencollective.com/parcel"
781
+ }
782
+ },
783
+ "node_modules/lightningcss-linux-arm64-gnu": {
784
+ "version": "1.32.0",
785
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
786
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
787
+ "cpu": [
788
+ "arm64"
789
+ ],
790
+ "dev": true,
791
+ "libc": [
792
+ "glibc"
793
+ ],
794
+ "license": "MPL-2.0",
795
+ "optional": true,
796
+ "os": [
797
+ "linux"
798
+ ],
799
+ "engines": {
800
+ "node": ">= 12.0.0"
801
+ },
802
+ "funding": {
803
+ "type": "opencollective",
804
+ "url": "https://opencollective.com/parcel"
805
+ }
806
+ },
807
+ "node_modules/lightningcss-linux-arm64-musl": {
808
+ "version": "1.32.0",
809
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
810
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
811
+ "cpu": [
812
+ "arm64"
813
+ ],
814
+ "dev": true,
815
+ "libc": [
816
+ "musl"
817
+ ],
818
+ "license": "MPL-2.0",
819
+ "optional": true,
820
+ "os": [
821
+ "linux"
822
+ ],
823
+ "engines": {
824
+ "node": ">= 12.0.0"
825
+ },
826
+ "funding": {
827
+ "type": "opencollective",
828
+ "url": "https://opencollective.com/parcel"
829
+ }
830
+ },
831
+ "node_modules/lightningcss-linux-x64-gnu": {
832
+ "version": "1.32.0",
833
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
834
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
835
+ "cpu": [
836
+ "x64"
837
+ ],
838
+ "dev": true,
839
+ "libc": [
840
+ "glibc"
841
+ ],
842
+ "license": "MPL-2.0",
843
+ "optional": true,
844
+ "os": [
845
+ "linux"
846
+ ],
847
+ "engines": {
848
+ "node": ">= 12.0.0"
849
+ },
850
+ "funding": {
851
+ "type": "opencollective",
852
+ "url": "https://opencollective.com/parcel"
853
+ }
854
+ },
855
+ "node_modules/lightningcss-linux-x64-musl": {
856
+ "version": "1.32.0",
857
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
858
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
859
+ "cpu": [
860
+ "x64"
861
+ ],
862
+ "dev": true,
863
+ "libc": [
864
+ "musl"
865
+ ],
866
+ "license": "MPL-2.0",
867
+ "optional": true,
868
+ "os": [
869
+ "linux"
870
+ ],
871
+ "engines": {
872
+ "node": ">= 12.0.0"
873
+ },
874
+ "funding": {
875
+ "type": "opencollective",
876
+ "url": "https://opencollective.com/parcel"
877
+ }
878
+ },
879
+ "node_modules/lightningcss-win32-arm64-msvc": {
880
+ "version": "1.32.0",
881
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
882
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
883
+ "cpu": [
884
+ "arm64"
885
+ ],
886
+ "dev": true,
887
+ "license": "MPL-2.0",
888
+ "optional": true,
889
+ "os": [
890
+ "win32"
891
+ ],
892
+ "engines": {
893
+ "node": ">= 12.0.0"
894
+ },
895
+ "funding": {
896
+ "type": "opencollective",
897
+ "url": "https://opencollective.com/parcel"
898
+ }
899
+ },
900
+ "node_modules/lightningcss-win32-x64-msvc": {
901
+ "version": "1.32.0",
902
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
903
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
904
+ "cpu": [
905
+ "x64"
906
+ ],
907
+ "dev": true,
908
+ "license": "MPL-2.0",
909
+ "optional": true,
910
+ "os": [
911
+ "win32"
912
+ ],
913
+ "engines": {
914
+ "node": ">= 12.0.0"
915
+ },
916
+ "funding": {
917
+ "type": "opencollective",
918
+ "url": "https://opencollective.com/parcel"
919
+ }
920
+ },
921
+ "node_modules/loose-envify": {
922
+ "version": "1.4.0",
923
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
924
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
925
+ "license": "MIT",
926
+ "dependencies": {
927
+ "js-tokens": "^3.0.0 || ^4.0.0"
928
+ },
929
+ "bin": {
930
+ "loose-envify": "cli.js"
931
+ }
932
+ },
933
+ "node_modules/nanoid": {
934
+ "version": "3.3.12",
935
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
936
+ "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
937
+ "dev": true,
938
+ "funding": [
939
+ {
940
+ "type": "github",
941
+ "url": "https://github.com/sponsors/ai"
942
+ }
943
+ ],
944
+ "license": "MIT",
945
+ "bin": {
946
+ "nanoid": "bin/nanoid.cjs"
947
+ },
948
+ "engines": {
949
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
950
+ }
951
+ },
952
+ "node_modules/picocolors": {
953
+ "version": "1.1.1",
954
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
955
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
956
+ "dev": true,
957
+ "license": "ISC"
958
+ },
959
+ "node_modules/picomatch": {
960
+ "version": "4.0.4",
961
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
962
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
963
+ "dev": true,
964
+ "license": "MIT",
965
+ "engines": {
966
+ "node": ">=12"
967
+ },
968
+ "funding": {
969
+ "url": "https://github.com/sponsors/jonschlinkert"
970
+ }
971
+ },
972
+ "node_modules/postcss": {
973
+ "version": "8.5.15",
974
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
975
+ "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
976
+ "dev": true,
977
+ "funding": [
978
+ {
979
+ "type": "opencollective",
980
+ "url": "https://opencollective.com/postcss/"
981
+ },
982
+ {
983
+ "type": "tidelift",
984
+ "url": "https://tidelift.com/funding/github/npm/postcss"
985
+ },
986
+ {
987
+ "type": "github",
988
+ "url": "https://github.com/sponsors/ai"
989
+ }
990
+ ],
991
+ "license": "MIT",
992
+ "dependencies": {
993
+ "nanoid": "^3.3.12",
994
+ "picocolors": "^1.1.1",
995
+ "source-map-js": "^1.2.1"
996
+ },
997
+ "engines": {
998
+ "node": "^10 || ^12 || >=14"
999
+ }
1000
+ },
1001
+ "node_modules/react": {
1002
+ "version": "18.3.1",
1003
+ "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
1004
+ "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
1005
+ "license": "MIT",
1006
+ "dependencies": {
1007
+ "loose-envify": "^1.1.0"
1008
+ },
1009
+ "engines": {
1010
+ "node": ">=0.10.0"
1011
+ }
1012
+ },
1013
+ "node_modules/react-dom": {
1014
+ "version": "18.3.1",
1015
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
1016
+ "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
1017
+ "license": "MIT",
1018
+ "dependencies": {
1019
+ "loose-envify": "^1.1.0",
1020
+ "scheduler": "^0.23.2"
1021
+ },
1022
+ "peerDependencies": {
1023
+ "react": "^18.3.1"
1024
+ }
1025
+ },
1026
+ "node_modules/reselect": {
1027
+ "version": "5.2.0",
1028
+ "resolved": "https://registry.npmjs.org/reselect/-/reselect-5.2.0.tgz",
1029
+ "integrity": "sha512-AgZ3UOZm3YndfrJ4OYjgrT7bmCm/1iqkjvEfH/oYjzh6PD2qw4QuT3jjnXIrpdt4MTpMXclMT3lXbmRY+XRakw==",
1030
+ "license": "MIT"
1031
+ },
1032
+ "node_modules/rolldown": {
1033
+ "version": "1.0.2",
1034
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.2.tgz",
1035
+ "integrity": "sha512-oZx5zVDtVB44AW3eaifgDml1gWRDZGvjcfdxonE4swNPG98PrrXjaO/KrnUjzlMnztCCRVlUueA1kCXhARGk6g==",
1036
+ "dev": true,
1037
+ "license": "MIT",
1038
+ "dependencies": {
1039
+ "@oxc-project/types": "=0.132.0",
1040
+ "@rolldown/pluginutils": "^1.0.0"
1041
+ },
1042
+ "bin": {
1043
+ "rolldown": "bin/cli.mjs"
1044
+ },
1045
+ "engines": {
1046
+ "node": "^20.19.0 || >=22.12.0"
1047
+ },
1048
+ "optionalDependencies": {
1049
+ "@rolldown/binding-android-arm64": "1.0.2",
1050
+ "@rolldown/binding-darwin-arm64": "1.0.2",
1051
+ "@rolldown/binding-darwin-x64": "1.0.2",
1052
+ "@rolldown/binding-freebsd-x64": "1.0.2",
1053
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.2",
1054
+ "@rolldown/binding-linux-arm64-gnu": "1.0.2",
1055
+ "@rolldown/binding-linux-arm64-musl": "1.0.2",
1056
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.2",
1057
+ "@rolldown/binding-linux-s390x-gnu": "1.0.2",
1058
+ "@rolldown/binding-linux-x64-gnu": "1.0.2",
1059
+ "@rolldown/binding-linux-x64-musl": "1.0.2",
1060
+ "@rolldown/binding-openharmony-arm64": "1.0.2",
1061
+ "@rolldown/binding-wasm32-wasi": "1.0.2",
1062
+ "@rolldown/binding-win32-arm64-msvc": "1.0.2",
1063
+ "@rolldown/binding-win32-x64-msvc": "1.0.2"
1064
+ }
1065
+ },
1066
+ "node_modules/scheduler": {
1067
+ "version": "0.23.2",
1068
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
1069
+ "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
1070
+ "license": "MIT",
1071
+ "dependencies": {
1072
+ "loose-envify": "^1.1.0"
1073
+ }
1074
+ },
1075
+ "node_modules/source-map-js": {
1076
+ "version": "1.2.1",
1077
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
1078
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
1079
+ "dev": true,
1080
+ "license": "BSD-3-Clause",
1081
+ "engines": {
1082
+ "node": ">=0.10.0"
1083
+ }
1084
+ },
1085
+ "node_modules/tinyglobby": {
1086
+ "version": "0.2.16",
1087
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
1088
+ "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
1089
+ "dev": true,
1090
+ "license": "MIT",
1091
+ "dependencies": {
1092
+ "fdir": "^6.5.0",
1093
+ "picomatch": "^4.0.4"
1094
+ },
1095
+ "engines": {
1096
+ "node": ">=12.0.0"
1097
+ },
1098
+ "funding": {
1099
+ "url": "https://github.com/sponsors/SuperchupuDev"
1100
+ }
1101
+ },
1102
+ "node_modules/tslib": {
1103
+ "version": "2.8.1",
1104
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
1105
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
1106
+ "dev": true,
1107
+ "license": "0BSD",
1108
+ "optional": true
1109
+ },
1110
+ "node_modules/typescript": {
1111
+ "version": "6.0.3",
1112
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
1113
+ "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
1114
+ "dev": true,
1115
+ "license": "Apache-2.0",
1116
+ "bin": {
1117
+ "tsc": "bin/tsc",
1118
+ "tsserver": "bin/tsserver"
1119
+ },
1120
+ "engines": {
1121
+ "node": ">=14.17"
1122
+ }
1123
+ },
1124
+ "node_modules/use-sync-external-store": {
1125
+ "version": "1.6.0",
1126
+ "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz",
1127
+ "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==",
1128
+ "license": "MIT",
1129
+ "peerDependencies": {
1130
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
1131
+ }
1132
+ },
1133
+ "node_modules/vite": {
1134
+ "version": "8.0.14",
1135
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.14.tgz",
1136
+ "integrity": "sha512-s4BJJ+5y1pYL6Otw51FHhVJQhPnuRinKig64g/1+EUNaJsd3gCKdD31IPFvswUgW9/60QT9oFHbZHbQK5imcxw==",
1137
+ "dev": true,
1138
+ "license": "MIT",
1139
+ "dependencies": {
1140
+ "lightningcss": "^1.32.0",
1141
+ "picomatch": "^4.0.4",
1142
+ "postcss": "^8.5.15",
1143
+ "rolldown": "1.0.2",
1144
+ "tinyglobby": "^0.2.16"
1145
+ },
1146
+ "bin": {
1147
+ "vite": "bin/vite.js"
1148
+ },
1149
+ "engines": {
1150
+ "node": "^20.19.0 || >=22.12.0"
1151
+ },
1152
+ "funding": {
1153
+ "url": "https://github.com/vitejs/vite?sponsor=1"
1154
+ },
1155
+ "optionalDependencies": {
1156
+ "fsevents": "~2.3.3"
1157
+ },
1158
+ "peerDependencies": {
1159
+ "@types/node": "^20.19.0 || >=22.12.0",
1160
+ "@vitejs/devtools": "^0.1.18",
1161
+ "esbuild": "^0.27.0 || ^0.28.0",
1162
+ "jiti": ">=1.21.0",
1163
+ "less": "^4.0.0",
1164
+ "sass": "^1.70.0",
1165
+ "sass-embedded": "^1.70.0",
1166
+ "stylus": ">=0.54.8",
1167
+ "sugarss": "^5.0.0",
1168
+ "terser": "^5.16.0",
1169
+ "tsx": "^4.8.1",
1170
+ "yaml": "^2.4.2"
1171
+ },
1172
+ "peerDependenciesMeta": {
1173
+ "@types/node": {
1174
+ "optional": true
1175
+ },
1176
+ "@vitejs/devtools": {
1177
+ "optional": true
1178
+ },
1179
+ "esbuild": {
1180
+ "optional": true
1181
+ },
1182
+ "jiti": {
1183
+ "optional": true
1184
+ },
1185
+ "less": {
1186
+ "optional": true
1187
+ },
1188
+ "sass": {
1189
+ "optional": true
1190
+ },
1191
+ "sass-embedded": {
1192
+ "optional": true
1193
+ },
1194
+ "stylus": {
1195
+ "optional": true
1196
+ },
1197
+ "sugarss": {
1198
+ "optional": true
1199
+ },
1200
+ "terser": {
1201
+ "optional": true
1202
+ },
1203
+ "tsx": {
1204
+ "optional": true
1205
+ },
1206
+ "yaml": {
1207
+ "optional": true
1208
+ }
1209
+ }
1210
+ }
1211
+ }
1212
+ }