openuispec 0.1.45 → 0.1.46

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 (133) hide show
  1. package/README.md +2 -1
  2. package/cli/init.ts +5 -2
  3. package/examples/social-app/.mcp.json +10 -0
  4. package/examples/social-app/AGENTS.md +105 -0
  5. package/examples/social-app/CLAUDE.md +105 -0
  6. package/examples/social-app/README.md +19 -0
  7. package/examples/social-app/backend/.gitkeep +1 -0
  8. package/examples/social-app/generated/android/social-app/app/build.gradle.kts +92 -0
  9. package/examples/social-app/generated/android/social-app/app/src/main/AndroidManifest.xml +26 -0
  10. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/AppContainer.kt +20 -0
  11. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/MainActivity.kt +35 -0
  12. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/SocialAppApplication.kt +13 -0
  13. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/data/MockData.kt +98 -0
  14. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/data/preferences/AppPreferences.kt +19 -0
  15. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/data/preferences/DataStorePreferencesRepository.kt +68 -0
  16. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/data/preferences/PreferencesRepository.kt +15 -0
  17. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/model/Models.kt +34 -0
  18. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/MainShell.kt +390 -0
  19. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/components/Components.kt +234 -0
  20. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/components/ContractPrimitives.kt +641 -0
  21. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/navigation/RootComponent.kt +113 -0
  22. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/screens/ChatDetailScreen.kt +212 -0
  23. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/screens/CreatePostScreen.kt +113 -0
  24. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/screens/DiscoverScreen.kt +137 -0
  25. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/screens/EditProfileScreen.kt +180 -0
  26. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/screens/HomeFeedScreen.kt +157 -0
  27. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/screens/MessagesInboxScreen.kt +85 -0
  28. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/screens/NotificationsScreen.kt +74 -0
  29. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/screens/PostDetailScreen.kt +293 -0
  30. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/screens/ProfileSelfScreen.kt +116 -0
  31. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/screens/SearchResultsScreen.kt +161 -0
  32. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/screens/SettingsScreen.kt +162 -0
  33. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/screens/SettingsStore.kt +95 -0
  34. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/screens/UserProfileScreen.kt +123 -0
  35. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/theme/Color.kt +33 -0
  36. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/theme/Shape.kt +41 -0
  37. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/theme/Spacing.kt +20 -0
  38. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/theme/Theme.kt +82 -0
  39. package/examples/social-app/generated/android/social-app/app/src/main/java/com/social/app/ui/theme/Type.kt +60 -0
  40. package/examples/social-app/generated/android/social-app/app/src/main/res/drawable/ic_launcher_foreground.xml +9 -0
  41. package/examples/social-app/generated/android/social-app/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
  42. package/examples/social-app/generated/android/social-app/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
  43. package/examples/social-app/generated/android/social-app/app/src/main/res/values/strings.xml +91 -0
  44. package/examples/social-app/generated/android/social-app/app/src/main/res/values/themes.xml +10 -0
  45. package/examples/social-app/generated/android/social-app/app/src/main/res/values-ru/strings.xml +79 -0
  46. package/examples/social-app/generated/android/social-app/app/src/main/res/values-uz/strings.xml +79 -0
  47. package/examples/social-app/generated/android/social-app/app/src/main/xml/AndroidManifest.xml +23 -0
  48. package/examples/social-app/generated/android/social-app/build.gradle.kts +6 -0
  49. package/examples/social-app/generated/android/social-app/gradle/libs.versions.toml +48 -0
  50. package/examples/social-app/generated/android/social-app/gradle/wrapper/gradle-wrapper.properties +8 -0
  51. package/examples/social-app/generated/android/social-app/gradle.properties +11 -0
  52. package/examples/social-app/generated/android/social-app/gradlew +25 -0
  53. package/examples/social-app/generated/android/social-app/settings.gradle.kts +23 -0
  54. package/examples/social-app/generated/web/social-app/index.html +12 -0
  55. package/examples/social-app/generated/web/social-app/package-lock.json +2517 -0
  56. package/examples/social-app/generated/web/social-app/package.json +27 -0
  57. package/examples/social-app/generated/web/social-app/src/app/App.tsx +58 -0
  58. package/examples/social-app/generated/web/social-app/src/components/Shell.tsx +247 -0
  59. package/examples/social-app/generated/web/social-app/src/components/cards.tsx +317 -0
  60. package/examples/social-app/generated/web/social-app/src/components/ui.tsx +328 -0
  61. package/examples/social-app/generated/web/social-app/src/flows/CreatePostFlow.tsx +86 -0
  62. package/examples/social-app/generated/web/social-app/src/i18n.tsx +59 -0
  63. package/examples/social-app/generated/web/social-app/src/lib/icons.tsx +85 -0
  64. package/examples/social-app/generated/web/social-app/src/lib/tokens.ts +70 -0
  65. package/examples/social-app/generated/web/social-app/src/lib/utils.ts +97 -0
  66. package/examples/social-app/generated/web/social-app/src/locales/en.json +67 -0
  67. package/examples/social-app/generated/web/social-app/src/locales/ru.json +67 -0
  68. package/examples/social-app/generated/web/social-app/src/locales/uz.json +67 -0
  69. package/examples/social-app/generated/web/social-app/src/main.tsx +16 -0
  70. package/examples/social-app/generated/web/social-app/src/screens/ChatDetailScreen.tsx +90 -0
  71. package/examples/social-app/generated/web/social-app/src/screens/DiscoverScreen.tsx +86 -0
  72. package/examples/social-app/generated/web/social-app/src/screens/EditProfileScreen.tsx +57 -0
  73. package/examples/social-app/generated/web/social-app/src/screens/HomeFeedScreen.tsx +113 -0
  74. package/examples/social-app/generated/web/social-app/src/screens/MessagesInboxScreen.tsx +52 -0
  75. package/examples/social-app/generated/web/social-app/src/screens/NotificationsScreen.tsx +41 -0
  76. package/examples/social-app/generated/web/social-app/src/screens/PostDetailScreen.tsx +115 -0
  77. package/examples/social-app/generated/web/social-app/src/screens/ProfileSelfScreen.tsx +57 -0
  78. package/examples/social-app/generated/web/social-app/src/screens/ProfileUserScreen.tsx +76 -0
  79. package/examples/social-app/generated/web/social-app/src/screens/SearchResultsScreen.tsx +96 -0
  80. package/examples/social-app/generated/web/social-app/src/screens/SettingsScreen.tsx +77 -0
  81. package/examples/social-app/generated/web/social-app/src/state/store.ts +592 -0
  82. package/examples/social-app/generated/web/social-app/src/styles.css +124 -0
  83. package/examples/social-app/generated/web/social-app/src/vite-env.d.ts +1 -0
  84. package/examples/social-app/generated/web/social-app/tsconfig.json +22 -0
  85. package/examples/social-app/generated/web/social-app/tsconfig.node.json +13 -0
  86. package/examples/social-app/generated/web/social-app/tsconfig.node.tsbuildinfo +1 -0
  87. package/examples/social-app/generated/web/social-app/tsconfig.tsbuildinfo +1 -0
  88. package/examples/social-app/generated/web/social-app/vite.config.d.ts +2 -0
  89. package/examples/social-app/generated/web/social-app/vite.config.js +6 -0
  90. package/examples/social-app/generated/web/social-app/vite.config.ts +7 -0
  91. package/examples/social-app/openuispec/README.md +56 -0
  92. package/examples/social-app/openuispec/contracts/.gitkeep +0 -0
  93. package/examples/social-app/openuispec/contracts/action_trigger.yaml +73 -0
  94. package/examples/social-app/openuispec/contracts/collection.yaml +43 -0
  95. package/examples/social-app/openuispec/contracts/data_display.yaml +47 -0
  96. package/examples/social-app/openuispec/contracts/feedback.yaml +49 -0
  97. package/examples/social-app/openuispec/contracts/input_field.yaml +41 -0
  98. package/examples/social-app/openuispec/contracts/nav_container.yaml +34 -0
  99. package/examples/social-app/openuispec/contracts/surface.yaml +41 -0
  100. package/examples/social-app/openuispec/flows/.gitkeep +0 -0
  101. package/examples/social-app/openuispec/flows/create_post.yaml +66 -0
  102. package/examples/social-app/openuispec/locales/.gitkeep +0 -0
  103. package/examples/social-app/openuispec/locales/en.json +67 -0
  104. package/examples/social-app/openuispec/locales/ru.json +67 -0
  105. package/examples/social-app/openuispec/locales/uz.json +67 -0
  106. package/examples/social-app/openuispec/openuispec.yaml +214 -0
  107. package/examples/social-app/openuispec/platform/.gitkeep +0 -0
  108. package/examples/social-app/openuispec/platform/android.yaml +30 -0
  109. package/examples/social-app/openuispec/platform/ios.yaml +19 -0
  110. package/examples/social-app/openuispec/platform/web.yaml +23 -0
  111. package/examples/social-app/openuispec/screens/.gitkeep +0 -0
  112. package/examples/social-app/openuispec/screens/chat_detail.yaml +53 -0
  113. package/examples/social-app/openuispec/screens/discover.yaml +78 -0
  114. package/examples/social-app/openuispec/screens/edit_profile.yaml +78 -0
  115. package/examples/social-app/openuispec/screens/home_feed.yaml +123 -0
  116. package/examples/social-app/openuispec/screens/messages_inbox.yaml +43 -0
  117. package/examples/social-app/openuispec/screens/notifications.yaml +29 -0
  118. package/examples/social-app/openuispec/screens/post_detail.yaml +86 -0
  119. package/examples/social-app/openuispec/screens/profile_self.yaml +53 -0
  120. package/examples/social-app/openuispec/screens/profile_user.yaml +60 -0
  121. package/examples/social-app/openuispec/screens/search_results.yaml +62 -0
  122. package/examples/social-app/openuispec/screens/settings.yaml +94 -0
  123. package/examples/social-app/openuispec/tokens/.gitkeep +0 -0
  124. package/examples/social-app/openuispec/tokens/color.yaml +76 -0
  125. package/examples/social-app/openuispec/tokens/elevation.yaml +31 -0
  126. package/examples/social-app/openuispec/tokens/icons.yaml +147 -0
  127. package/examples/social-app/openuispec/tokens/layout.yaml +37 -0
  128. package/examples/social-app/openuispec/tokens/motion.yaml +28 -0
  129. package/examples/social-app/openuispec/tokens/spacing.yaml +19 -0
  130. package/examples/social-app/openuispec/tokens/themes.yaml +31 -0
  131. package/examples/social-app/openuispec/tokens/typography.yaml +50 -0
  132. package/examples/social-app/package.json +12 -0
  133. package/package.json +1 -1
@@ -0,0 +1,2517 @@
1
+ {
2
+ "name": "social-app-web",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "social-app-web",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "react": "latest",
12
+ "react-dom": "latest",
13
+ "react-router": "latest",
14
+ "zustand": "latest"
15
+ },
16
+ "devDependencies": {
17
+ "@tailwindcss/vite": "latest",
18
+ "@types/node": "latest",
19
+ "@types/react": "latest",
20
+ "@types/react-dom": "latest",
21
+ "@vitejs/plugin-react": "^5.0.0",
22
+ "tailwindcss": "latest",
23
+ "typescript": "latest",
24
+ "vite": "^7.0.0"
25
+ }
26
+ },
27
+ "node_modules/@babel/code-frame": {
28
+ "version": "7.29.0",
29
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
30
+ "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
31
+ "dev": true,
32
+ "license": "MIT",
33
+ "dependencies": {
34
+ "@babel/helper-validator-identifier": "^7.28.5",
35
+ "js-tokens": "^4.0.0",
36
+ "picocolors": "^1.1.1"
37
+ },
38
+ "engines": {
39
+ "node": ">=6.9.0"
40
+ }
41
+ },
42
+ "node_modules/@babel/compat-data": {
43
+ "version": "7.29.0",
44
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
45
+ "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
46
+ "dev": true,
47
+ "license": "MIT",
48
+ "engines": {
49
+ "node": ">=6.9.0"
50
+ }
51
+ },
52
+ "node_modules/@babel/core": {
53
+ "version": "7.29.0",
54
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
55
+ "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
56
+ "dev": true,
57
+ "license": "MIT",
58
+ "dependencies": {
59
+ "@babel/code-frame": "^7.29.0",
60
+ "@babel/generator": "^7.29.0",
61
+ "@babel/helper-compilation-targets": "^7.28.6",
62
+ "@babel/helper-module-transforms": "^7.28.6",
63
+ "@babel/helpers": "^7.28.6",
64
+ "@babel/parser": "^7.29.0",
65
+ "@babel/template": "^7.28.6",
66
+ "@babel/traverse": "^7.29.0",
67
+ "@babel/types": "^7.29.0",
68
+ "@jridgewell/remapping": "^2.3.5",
69
+ "convert-source-map": "^2.0.0",
70
+ "debug": "^4.1.0",
71
+ "gensync": "^1.0.0-beta.2",
72
+ "json5": "^2.2.3",
73
+ "semver": "^6.3.1"
74
+ },
75
+ "engines": {
76
+ "node": ">=6.9.0"
77
+ },
78
+ "funding": {
79
+ "type": "opencollective",
80
+ "url": "https://opencollective.com/babel"
81
+ }
82
+ },
83
+ "node_modules/@babel/generator": {
84
+ "version": "7.29.1",
85
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
86
+ "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
87
+ "dev": true,
88
+ "license": "MIT",
89
+ "dependencies": {
90
+ "@babel/parser": "^7.29.0",
91
+ "@babel/types": "^7.29.0",
92
+ "@jridgewell/gen-mapping": "^0.3.12",
93
+ "@jridgewell/trace-mapping": "^0.3.28",
94
+ "jsesc": "^3.0.2"
95
+ },
96
+ "engines": {
97
+ "node": ">=6.9.0"
98
+ }
99
+ },
100
+ "node_modules/@babel/helper-compilation-targets": {
101
+ "version": "7.28.6",
102
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
103
+ "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
104
+ "dev": true,
105
+ "license": "MIT",
106
+ "dependencies": {
107
+ "@babel/compat-data": "^7.28.6",
108
+ "@babel/helper-validator-option": "^7.27.1",
109
+ "browserslist": "^4.24.0",
110
+ "lru-cache": "^5.1.1",
111
+ "semver": "^6.3.1"
112
+ },
113
+ "engines": {
114
+ "node": ">=6.9.0"
115
+ }
116
+ },
117
+ "node_modules/@babel/helper-globals": {
118
+ "version": "7.28.0",
119
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
120
+ "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
121
+ "dev": true,
122
+ "license": "MIT",
123
+ "engines": {
124
+ "node": ">=6.9.0"
125
+ }
126
+ },
127
+ "node_modules/@babel/helper-module-imports": {
128
+ "version": "7.28.6",
129
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
130
+ "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
131
+ "dev": true,
132
+ "license": "MIT",
133
+ "dependencies": {
134
+ "@babel/traverse": "^7.28.6",
135
+ "@babel/types": "^7.28.6"
136
+ },
137
+ "engines": {
138
+ "node": ">=6.9.0"
139
+ }
140
+ },
141
+ "node_modules/@babel/helper-module-transforms": {
142
+ "version": "7.28.6",
143
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
144
+ "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
145
+ "dev": true,
146
+ "license": "MIT",
147
+ "dependencies": {
148
+ "@babel/helper-module-imports": "^7.28.6",
149
+ "@babel/helper-validator-identifier": "^7.28.5",
150
+ "@babel/traverse": "^7.28.6"
151
+ },
152
+ "engines": {
153
+ "node": ">=6.9.0"
154
+ },
155
+ "peerDependencies": {
156
+ "@babel/core": "^7.0.0"
157
+ }
158
+ },
159
+ "node_modules/@babel/helper-plugin-utils": {
160
+ "version": "7.28.6",
161
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz",
162
+ "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
163
+ "dev": true,
164
+ "license": "MIT",
165
+ "engines": {
166
+ "node": ">=6.9.0"
167
+ }
168
+ },
169
+ "node_modules/@babel/helper-string-parser": {
170
+ "version": "7.27.1",
171
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
172
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
173
+ "dev": true,
174
+ "license": "MIT",
175
+ "engines": {
176
+ "node": ">=6.9.0"
177
+ }
178
+ },
179
+ "node_modules/@babel/helper-validator-identifier": {
180
+ "version": "7.28.5",
181
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
182
+ "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
183
+ "dev": true,
184
+ "license": "MIT",
185
+ "engines": {
186
+ "node": ">=6.9.0"
187
+ }
188
+ },
189
+ "node_modules/@babel/helper-validator-option": {
190
+ "version": "7.27.1",
191
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
192
+ "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
193
+ "dev": true,
194
+ "license": "MIT",
195
+ "engines": {
196
+ "node": ">=6.9.0"
197
+ }
198
+ },
199
+ "node_modules/@babel/helpers": {
200
+ "version": "7.28.6",
201
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz",
202
+ "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==",
203
+ "dev": true,
204
+ "license": "MIT",
205
+ "dependencies": {
206
+ "@babel/template": "^7.28.6",
207
+ "@babel/types": "^7.28.6"
208
+ },
209
+ "engines": {
210
+ "node": ">=6.9.0"
211
+ }
212
+ },
213
+ "node_modules/@babel/parser": {
214
+ "version": "7.29.0",
215
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.0.tgz",
216
+ "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
217
+ "dev": true,
218
+ "license": "MIT",
219
+ "dependencies": {
220
+ "@babel/types": "^7.29.0"
221
+ },
222
+ "bin": {
223
+ "parser": "bin/babel-parser.js"
224
+ },
225
+ "engines": {
226
+ "node": ">=6.0.0"
227
+ }
228
+ },
229
+ "node_modules/@babel/plugin-transform-react-jsx-self": {
230
+ "version": "7.27.1",
231
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
232
+ "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
233
+ "dev": true,
234
+ "license": "MIT",
235
+ "dependencies": {
236
+ "@babel/helper-plugin-utils": "^7.27.1"
237
+ },
238
+ "engines": {
239
+ "node": ">=6.9.0"
240
+ },
241
+ "peerDependencies": {
242
+ "@babel/core": "^7.0.0-0"
243
+ }
244
+ },
245
+ "node_modules/@babel/plugin-transform-react-jsx-source": {
246
+ "version": "7.27.1",
247
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
248
+ "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
249
+ "dev": true,
250
+ "license": "MIT",
251
+ "dependencies": {
252
+ "@babel/helper-plugin-utils": "^7.27.1"
253
+ },
254
+ "engines": {
255
+ "node": ">=6.9.0"
256
+ },
257
+ "peerDependencies": {
258
+ "@babel/core": "^7.0.0-0"
259
+ }
260
+ },
261
+ "node_modules/@babel/template": {
262
+ "version": "7.28.6",
263
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
264
+ "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
265
+ "dev": true,
266
+ "license": "MIT",
267
+ "dependencies": {
268
+ "@babel/code-frame": "^7.28.6",
269
+ "@babel/parser": "^7.28.6",
270
+ "@babel/types": "^7.28.6"
271
+ },
272
+ "engines": {
273
+ "node": ">=6.9.0"
274
+ }
275
+ },
276
+ "node_modules/@babel/traverse": {
277
+ "version": "7.29.0",
278
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
279
+ "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
280
+ "dev": true,
281
+ "license": "MIT",
282
+ "dependencies": {
283
+ "@babel/code-frame": "^7.29.0",
284
+ "@babel/generator": "^7.29.0",
285
+ "@babel/helper-globals": "^7.28.0",
286
+ "@babel/parser": "^7.29.0",
287
+ "@babel/template": "^7.28.6",
288
+ "@babel/types": "^7.29.0",
289
+ "debug": "^4.3.1"
290
+ },
291
+ "engines": {
292
+ "node": ">=6.9.0"
293
+ }
294
+ },
295
+ "node_modules/@babel/types": {
296
+ "version": "7.29.0",
297
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
298
+ "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
299
+ "dev": true,
300
+ "license": "MIT",
301
+ "dependencies": {
302
+ "@babel/helper-string-parser": "^7.27.1",
303
+ "@babel/helper-validator-identifier": "^7.28.5"
304
+ },
305
+ "engines": {
306
+ "node": ">=6.9.0"
307
+ }
308
+ },
309
+ "node_modules/@esbuild/aix-ppc64": {
310
+ "version": "0.27.4",
311
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.4.tgz",
312
+ "integrity": "sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==",
313
+ "cpu": [
314
+ "ppc64"
315
+ ],
316
+ "dev": true,
317
+ "license": "MIT",
318
+ "optional": true,
319
+ "os": [
320
+ "aix"
321
+ ],
322
+ "engines": {
323
+ "node": ">=18"
324
+ }
325
+ },
326
+ "node_modules/@esbuild/android-arm": {
327
+ "version": "0.27.4",
328
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.4.tgz",
329
+ "integrity": "sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==",
330
+ "cpu": [
331
+ "arm"
332
+ ],
333
+ "dev": true,
334
+ "license": "MIT",
335
+ "optional": true,
336
+ "os": [
337
+ "android"
338
+ ],
339
+ "engines": {
340
+ "node": ">=18"
341
+ }
342
+ },
343
+ "node_modules/@esbuild/android-arm64": {
344
+ "version": "0.27.4",
345
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.4.tgz",
346
+ "integrity": "sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==",
347
+ "cpu": [
348
+ "arm64"
349
+ ],
350
+ "dev": true,
351
+ "license": "MIT",
352
+ "optional": true,
353
+ "os": [
354
+ "android"
355
+ ],
356
+ "engines": {
357
+ "node": ">=18"
358
+ }
359
+ },
360
+ "node_modules/@esbuild/android-x64": {
361
+ "version": "0.27.4",
362
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.4.tgz",
363
+ "integrity": "sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==",
364
+ "cpu": [
365
+ "x64"
366
+ ],
367
+ "dev": true,
368
+ "license": "MIT",
369
+ "optional": true,
370
+ "os": [
371
+ "android"
372
+ ],
373
+ "engines": {
374
+ "node": ">=18"
375
+ }
376
+ },
377
+ "node_modules/@esbuild/darwin-arm64": {
378
+ "version": "0.27.4",
379
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.4.tgz",
380
+ "integrity": "sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==",
381
+ "cpu": [
382
+ "arm64"
383
+ ],
384
+ "dev": true,
385
+ "license": "MIT",
386
+ "optional": true,
387
+ "os": [
388
+ "darwin"
389
+ ],
390
+ "engines": {
391
+ "node": ">=18"
392
+ }
393
+ },
394
+ "node_modules/@esbuild/darwin-x64": {
395
+ "version": "0.27.4",
396
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.4.tgz",
397
+ "integrity": "sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==",
398
+ "cpu": [
399
+ "x64"
400
+ ],
401
+ "dev": true,
402
+ "license": "MIT",
403
+ "optional": true,
404
+ "os": [
405
+ "darwin"
406
+ ],
407
+ "engines": {
408
+ "node": ">=18"
409
+ }
410
+ },
411
+ "node_modules/@esbuild/freebsd-arm64": {
412
+ "version": "0.27.4",
413
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.4.tgz",
414
+ "integrity": "sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==",
415
+ "cpu": [
416
+ "arm64"
417
+ ],
418
+ "dev": true,
419
+ "license": "MIT",
420
+ "optional": true,
421
+ "os": [
422
+ "freebsd"
423
+ ],
424
+ "engines": {
425
+ "node": ">=18"
426
+ }
427
+ },
428
+ "node_modules/@esbuild/freebsd-x64": {
429
+ "version": "0.27.4",
430
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.4.tgz",
431
+ "integrity": "sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==",
432
+ "cpu": [
433
+ "x64"
434
+ ],
435
+ "dev": true,
436
+ "license": "MIT",
437
+ "optional": true,
438
+ "os": [
439
+ "freebsd"
440
+ ],
441
+ "engines": {
442
+ "node": ">=18"
443
+ }
444
+ },
445
+ "node_modules/@esbuild/linux-arm": {
446
+ "version": "0.27.4",
447
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.4.tgz",
448
+ "integrity": "sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==",
449
+ "cpu": [
450
+ "arm"
451
+ ],
452
+ "dev": true,
453
+ "license": "MIT",
454
+ "optional": true,
455
+ "os": [
456
+ "linux"
457
+ ],
458
+ "engines": {
459
+ "node": ">=18"
460
+ }
461
+ },
462
+ "node_modules/@esbuild/linux-arm64": {
463
+ "version": "0.27.4",
464
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.4.tgz",
465
+ "integrity": "sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==",
466
+ "cpu": [
467
+ "arm64"
468
+ ],
469
+ "dev": true,
470
+ "license": "MIT",
471
+ "optional": true,
472
+ "os": [
473
+ "linux"
474
+ ],
475
+ "engines": {
476
+ "node": ">=18"
477
+ }
478
+ },
479
+ "node_modules/@esbuild/linux-ia32": {
480
+ "version": "0.27.4",
481
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.4.tgz",
482
+ "integrity": "sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==",
483
+ "cpu": [
484
+ "ia32"
485
+ ],
486
+ "dev": true,
487
+ "license": "MIT",
488
+ "optional": true,
489
+ "os": [
490
+ "linux"
491
+ ],
492
+ "engines": {
493
+ "node": ">=18"
494
+ }
495
+ },
496
+ "node_modules/@esbuild/linux-loong64": {
497
+ "version": "0.27.4",
498
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.4.tgz",
499
+ "integrity": "sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==",
500
+ "cpu": [
501
+ "loong64"
502
+ ],
503
+ "dev": true,
504
+ "license": "MIT",
505
+ "optional": true,
506
+ "os": [
507
+ "linux"
508
+ ],
509
+ "engines": {
510
+ "node": ">=18"
511
+ }
512
+ },
513
+ "node_modules/@esbuild/linux-mips64el": {
514
+ "version": "0.27.4",
515
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.4.tgz",
516
+ "integrity": "sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==",
517
+ "cpu": [
518
+ "mips64el"
519
+ ],
520
+ "dev": true,
521
+ "license": "MIT",
522
+ "optional": true,
523
+ "os": [
524
+ "linux"
525
+ ],
526
+ "engines": {
527
+ "node": ">=18"
528
+ }
529
+ },
530
+ "node_modules/@esbuild/linux-ppc64": {
531
+ "version": "0.27.4",
532
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.4.tgz",
533
+ "integrity": "sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==",
534
+ "cpu": [
535
+ "ppc64"
536
+ ],
537
+ "dev": true,
538
+ "license": "MIT",
539
+ "optional": true,
540
+ "os": [
541
+ "linux"
542
+ ],
543
+ "engines": {
544
+ "node": ">=18"
545
+ }
546
+ },
547
+ "node_modules/@esbuild/linux-riscv64": {
548
+ "version": "0.27.4",
549
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.4.tgz",
550
+ "integrity": "sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==",
551
+ "cpu": [
552
+ "riscv64"
553
+ ],
554
+ "dev": true,
555
+ "license": "MIT",
556
+ "optional": true,
557
+ "os": [
558
+ "linux"
559
+ ],
560
+ "engines": {
561
+ "node": ">=18"
562
+ }
563
+ },
564
+ "node_modules/@esbuild/linux-s390x": {
565
+ "version": "0.27.4",
566
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.4.tgz",
567
+ "integrity": "sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==",
568
+ "cpu": [
569
+ "s390x"
570
+ ],
571
+ "dev": true,
572
+ "license": "MIT",
573
+ "optional": true,
574
+ "os": [
575
+ "linux"
576
+ ],
577
+ "engines": {
578
+ "node": ">=18"
579
+ }
580
+ },
581
+ "node_modules/@esbuild/linux-x64": {
582
+ "version": "0.27.4",
583
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.4.tgz",
584
+ "integrity": "sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==",
585
+ "cpu": [
586
+ "x64"
587
+ ],
588
+ "dev": true,
589
+ "license": "MIT",
590
+ "optional": true,
591
+ "os": [
592
+ "linux"
593
+ ],
594
+ "engines": {
595
+ "node": ">=18"
596
+ }
597
+ },
598
+ "node_modules/@esbuild/netbsd-arm64": {
599
+ "version": "0.27.4",
600
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.4.tgz",
601
+ "integrity": "sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==",
602
+ "cpu": [
603
+ "arm64"
604
+ ],
605
+ "dev": true,
606
+ "license": "MIT",
607
+ "optional": true,
608
+ "os": [
609
+ "netbsd"
610
+ ],
611
+ "engines": {
612
+ "node": ">=18"
613
+ }
614
+ },
615
+ "node_modules/@esbuild/netbsd-x64": {
616
+ "version": "0.27.4",
617
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.4.tgz",
618
+ "integrity": "sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==",
619
+ "cpu": [
620
+ "x64"
621
+ ],
622
+ "dev": true,
623
+ "license": "MIT",
624
+ "optional": true,
625
+ "os": [
626
+ "netbsd"
627
+ ],
628
+ "engines": {
629
+ "node": ">=18"
630
+ }
631
+ },
632
+ "node_modules/@esbuild/openbsd-arm64": {
633
+ "version": "0.27.4",
634
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.4.tgz",
635
+ "integrity": "sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==",
636
+ "cpu": [
637
+ "arm64"
638
+ ],
639
+ "dev": true,
640
+ "license": "MIT",
641
+ "optional": true,
642
+ "os": [
643
+ "openbsd"
644
+ ],
645
+ "engines": {
646
+ "node": ">=18"
647
+ }
648
+ },
649
+ "node_modules/@esbuild/openbsd-x64": {
650
+ "version": "0.27.4",
651
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.4.tgz",
652
+ "integrity": "sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==",
653
+ "cpu": [
654
+ "x64"
655
+ ],
656
+ "dev": true,
657
+ "license": "MIT",
658
+ "optional": true,
659
+ "os": [
660
+ "openbsd"
661
+ ],
662
+ "engines": {
663
+ "node": ">=18"
664
+ }
665
+ },
666
+ "node_modules/@esbuild/openharmony-arm64": {
667
+ "version": "0.27.4",
668
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.4.tgz",
669
+ "integrity": "sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==",
670
+ "cpu": [
671
+ "arm64"
672
+ ],
673
+ "dev": true,
674
+ "license": "MIT",
675
+ "optional": true,
676
+ "os": [
677
+ "openharmony"
678
+ ],
679
+ "engines": {
680
+ "node": ">=18"
681
+ }
682
+ },
683
+ "node_modules/@esbuild/sunos-x64": {
684
+ "version": "0.27.4",
685
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.4.tgz",
686
+ "integrity": "sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==",
687
+ "cpu": [
688
+ "x64"
689
+ ],
690
+ "dev": true,
691
+ "license": "MIT",
692
+ "optional": true,
693
+ "os": [
694
+ "sunos"
695
+ ],
696
+ "engines": {
697
+ "node": ">=18"
698
+ }
699
+ },
700
+ "node_modules/@esbuild/win32-arm64": {
701
+ "version": "0.27.4",
702
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.4.tgz",
703
+ "integrity": "sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==",
704
+ "cpu": [
705
+ "arm64"
706
+ ],
707
+ "dev": true,
708
+ "license": "MIT",
709
+ "optional": true,
710
+ "os": [
711
+ "win32"
712
+ ],
713
+ "engines": {
714
+ "node": ">=18"
715
+ }
716
+ },
717
+ "node_modules/@esbuild/win32-ia32": {
718
+ "version": "0.27.4",
719
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.4.tgz",
720
+ "integrity": "sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==",
721
+ "cpu": [
722
+ "ia32"
723
+ ],
724
+ "dev": true,
725
+ "license": "MIT",
726
+ "optional": true,
727
+ "os": [
728
+ "win32"
729
+ ],
730
+ "engines": {
731
+ "node": ">=18"
732
+ }
733
+ },
734
+ "node_modules/@esbuild/win32-x64": {
735
+ "version": "0.27.4",
736
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.4.tgz",
737
+ "integrity": "sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==",
738
+ "cpu": [
739
+ "x64"
740
+ ],
741
+ "dev": true,
742
+ "license": "MIT",
743
+ "optional": true,
744
+ "os": [
745
+ "win32"
746
+ ],
747
+ "engines": {
748
+ "node": ">=18"
749
+ }
750
+ },
751
+ "node_modules/@jridgewell/gen-mapping": {
752
+ "version": "0.3.13",
753
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
754
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
755
+ "dev": true,
756
+ "license": "MIT",
757
+ "dependencies": {
758
+ "@jridgewell/sourcemap-codec": "^1.5.0",
759
+ "@jridgewell/trace-mapping": "^0.3.24"
760
+ }
761
+ },
762
+ "node_modules/@jridgewell/remapping": {
763
+ "version": "2.3.5",
764
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
765
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
766
+ "dev": true,
767
+ "license": "MIT",
768
+ "dependencies": {
769
+ "@jridgewell/gen-mapping": "^0.3.5",
770
+ "@jridgewell/trace-mapping": "^0.3.24"
771
+ }
772
+ },
773
+ "node_modules/@jridgewell/resolve-uri": {
774
+ "version": "3.1.2",
775
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
776
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
777
+ "dev": true,
778
+ "license": "MIT",
779
+ "engines": {
780
+ "node": ">=6.0.0"
781
+ }
782
+ },
783
+ "node_modules/@jridgewell/sourcemap-codec": {
784
+ "version": "1.5.5",
785
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
786
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
787
+ "dev": true,
788
+ "license": "MIT"
789
+ },
790
+ "node_modules/@jridgewell/trace-mapping": {
791
+ "version": "0.3.31",
792
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
793
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
794
+ "dev": true,
795
+ "license": "MIT",
796
+ "dependencies": {
797
+ "@jridgewell/resolve-uri": "^3.1.0",
798
+ "@jridgewell/sourcemap-codec": "^1.4.14"
799
+ }
800
+ },
801
+ "node_modules/@rolldown/pluginutils": {
802
+ "version": "1.0.0-rc.3",
803
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.3.tgz",
804
+ "integrity": "sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==",
805
+ "dev": true,
806
+ "license": "MIT"
807
+ },
808
+ "node_modules/@rollup/rollup-android-arm-eabi": {
809
+ "version": "4.59.0",
810
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz",
811
+ "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==",
812
+ "cpu": [
813
+ "arm"
814
+ ],
815
+ "dev": true,
816
+ "license": "MIT",
817
+ "optional": true,
818
+ "os": [
819
+ "android"
820
+ ]
821
+ },
822
+ "node_modules/@rollup/rollup-android-arm64": {
823
+ "version": "4.59.0",
824
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz",
825
+ "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==",
826
+ "cpu": [
827
+ "arm64"
828
+ ],
829
+ "dev": true,
830
+ "license": "MIT",
831
+ "optional": true,
832
+ "os": [
833
+ "android"
834
+ ]
835
+ },
836
+ "node_modules/@rollup/rollup-darwin-arm64": {
837
+ "version": "4.59.0",
838
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz",
839
+ "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==",
840
+ "cpu": [
841
+ "arm64"
842
+ ],
843
+ "dev": true,
844
+ "license": "MIT",
845
+ "optional": true,
846
+ "os": [
847
+ "darwin"
848
+ ]
849
+ },
850
+ "node_modules/@rollup/rollup-darwin-x64": {
851
+ "version": "4.59.0",
852
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz",
853
+ "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==",
854
+ "cpu": [
855
+ "x64"
856
+ ],
857
+ "dev": true,
858
+ "license": "MIT",
859
+ "optional": true,
860
+ "os": [
861
+ "darwin"
862
+ ]
863
+ },
864
+ "node_modules/@rollup/rollup-freebsd-arm64": {
865
+ "version": "4.59.0",
866
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz",
867
+ "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==",
868
+ "cpu": [
869
+ "arm64"
870
+ ],
871
+ "dev": true,
872
+ "license": "MIT",
873
+ "optional": true,
874
+ "os": [
875
+ "freebsd"
876
+ ]
877
+ },
878
+ "node_modules/@rollup/rollup-freebsd-x64": {
879
+ "version": "4.59.0",
880
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz",
881
+ "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==",
882
+ "cpu": [
883
+ "x64"
884
+ ],
885
+ "dev": true,
886
+ "license": "MIT",
887
+ "optional": true,
888
+ "os": [
889
+ "freebsd"
890
+ ]
891
+ },
892
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
893
+ "version": "4.59.0",
894
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz",
895
+ "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==",
896
+ "cpu": [
897
+ "arm"
898
+ ],
899
+ "dev": true,
900
+ "license": "MIT",
901
+ "optional": true,
902
+ "os": [
903
+ "linux"
904
+ ]
905
+ },
906
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
907
+ "version": "4.59.0",
908
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz",
909
+ "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==",
910
+ "cpu": [
911
+ "arm"
912
+ ],
913
+ "dev": true,
914
+ "license": "MIT",
915
+ "optional": true,
916
+ "os": [
917
+ "linux"
918
+ ]
919
+ },
920
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
921
+ "version": "4.59.0",
922
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz",
923
+ "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==",
924
+ "cpu": [
925
+ "arm64"
926
+ ],
927
+ "dev": true,
928
+ "license": "MIT",
929
+ "optional": true,
930
+ "os": [
931
+ "linux"
932
+ ]
933
+ },
934
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
935
+ "version": "4.59.0",
936
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz",
937
+ "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==",
938
+ "cpu": [
939
+ "arm64"
940
+ ],
941
+ "dev": true,
942
+ "license": "MIT",
943
+ "optional": true,
944
+ "os": [
945
+ "linux"
946
+ ]
947
+ },
948
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
949
+ "version": "4.59.0",
950
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz",
951
+ "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==",
952
+ "cpu": [
953
+ "loong64"
954
+ ],
955
+ "dev": true,
956
+ "license": "MIT",
957
+ "optional": true,
958
+ "os": [
959
+ "linux"
960
+ ]
961
+ },
962
+ "node_modules/@rollup/rollup-linux-loong64-musl": {
963
+ "version": "4.59.0",
964
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz",
965
+ "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==",
966
+ "cpu": [
967
+ "loong64"
968
+ ],
969
+ "dev": true,
970
+ "license": "MIT",
971
+ "optional": true,
972
+ "os": [
973
+ "linux"
974
+ ]
975
+ },
976
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
977
+ "version": "4.59.0",
978
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz",
979
+ "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==",
980
+ "cpu": [
981
+ "ppc64"
982
+ ],
983
+ "dev": true,
984
+ "license": "MIT",
985
+ "optional": true,
986
+ "os": [
987
+ "linux"
988
+ ]
989
+ },
990
+ "node_modules/@rollup/rollup-linux-ppc64-musl": {
991
+ "version": "4.59.0",
992
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz",
993
+ "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==",
994
+ "cpu": [
995
+ "ppc64"
996
+ ],
997
+ "dev": true,
998
+ "license": "MIT",
999
+ "optional": true,
1000
+ "os": [
1001
+ "linux"
1002
+ ]
1003
+ },
1004
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
1005
+ "version": "4.59.0",
1006
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz",
1007
+ "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==",
1008
+ "cpu": [
1009
+ "riscv64"
1010
+ ],
1011
+ "dev": true,
1012
+ "license": "MIT",
1013
+ "optional": true,
1014
+ "os": [
1015
+ "linux"
1016
+ ]
1017
+ },
1018
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
1019
+ "version": "4.59.0",
1020
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz",
1021
+ "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==",
1022
+ "cpu": [
1023
+ "riscv64"
1024
+ ],
1025
+ "dev": true,
1026
+ "license": "MIT",
1027
+ "optional": true,
1028
+ "os": [
1029
+ "linux"
1030
+ ]
1031
+ },
1032
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
1033
+ "version": "4.59.0",
1034
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz",
1035
+ "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==",
1036
+ "cpu": [
1037
+ "s390x"
1038
+ ],
1039
+ "dev": true,
1040
+ "license": "MIT",
1041
+ "optional": true,
1042
+ "os": [
1043
+ "linux"
1044
+ ]
1045
+ },
1046
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
1047
+ "version": "4.59.0",
1048
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz",
1049
+ "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==",
1050
+ "cpu": [
1051
+ "x64"
1052
+ ],
1053
+ "dev": true,
1054
+ "license": "MIT",
1055
+ "optional": true,
1056
+ "os": [
1057
+ "linux"
1058
+ ]
1059
+ },
1060
+ "node_modules/@rollup/rollup-linux-x64-musl": {
1061
+ "version": "4.59.0",
1062
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz",
1063
+ "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==",
1064
+ "cpu": [
1065
+ "x64"
1066
+ ],
1067
+ "dev": true,
1068
+ "license": "MIT",
1069
+ "optional": true,
1070
+ "os": [
1071
+ "linux"
1072
+ ]
1073
+ },
1074
+ "node_modules/@rollup/rollup-openbsd-x64": {
1075
+ "version": "4.59.0",
1076
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz",
1077
+ "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==",
1078
+ "cpu": [
1079
+ "x64"
1080
+ ],
1081
+ "dev": true,
1082
+ "license": "MIT",
1083
+ "optional": true,
1084
+ "os": [
1085
+ "openbsd"
1086
+ ]
1087
+ },
1088
+ "node_modules/@rollup/rollup-openharmony-arm64": {
1089
+ "version": "4.59.0",
1090
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz",
1091
+ "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==",
1092
+ "cpu": [
1093
+ "arm64"
1094
+ ],
1095
+ "dev": true,
1096
+ "license": "MIT",
1097
+ "optional": true,
1098
+ "os": [
1099
+ "openharmony"
1100
+ ]
1101
+ },
1102
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
1103
+ "version": "4.59.0",
1104
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz",
1105
+ "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==",
1106
+ "cpu": [
1107
+ "arm64"
1108
+ ],
1109
+ "dev": true,
1110
+ "license": "MIT",
1111
+ "optional": true,
1112
+ "os": [
1113
+ "win32"
1114
+ ]
1115
+ },
1116
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
1117
+ "version": "4.59.0",
1118
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz",
1119
+ "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==",
1120
+ "cpu": [
1121
+ "ia32"
1122
+ ],
1123
+ "dev": true,
1124
+ "license": "MIT",
1125
+ "optional": true,
1126
+ "os": [
1127
+ "win32"
1128
+ ]
1129
+ },
1130
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
1131
+ "version": "4.59.0",
1132
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz",
1133
+ "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==",
1134
+ "cpu": [
1135
+ "x64"
1136
+ ],
1137
+ "dev": true,
1138
+ "license": "MIT",
1139
+ "optional": true,
1140
+ "os": [
1141
+ "win32"
1142
+ ]
1143
+ },
1144
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
1145
+ "version": "4.59.0",
1146
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz",
1147
+ "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==",
1148
+ "cpu": [
1149
+ "x64"
1150
+ ],
1151
+ "dev": true,
1152
+ "license": "MIT",
1153
+ "optional": true,
1154
+ "os": [
1155
+ "win32"
1156
+ ]
1157
+ },
1158
+ "node_modules/@tailwindcss/node": {
1159
+ "version": "4.2.1",
1160
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.1.tgz",
1161
+ "integrity": "sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==",
1162
+ "dev": true,
1163
+ "license": "MIT",
1164
+ "dependencies": {
1165
+ "@jridgewell/remapping": "^2.3.5",
1166
+ "enhanced-resolve": "^5.19.0",
1167
+ "jiti": "^2.6.1",
1168
+ "lightningcss": "1.31.1",
1169
+ "magic-string": "^0.30.21",
1170
+ "source-map-js": "^1.2.1",
1171
+ "tailwindcss": "4.2.1"
1172
+ }
1173
+ },
1174
+ "node_modules/@tailwindcss/oxide": {
1175
+ "version": "4.2.1",
1176
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.1.tgz",
1177
+ "integrity": "sha512-yv9jeEFWnjKCI6/T3Oq50yQEOqmpmpfzG1hcZsAOaXFQPfzWprWrlHSdGPEF3WQTi8zu8ohC9Mh9J470nT5pUw==",
1178
+ "dev": true,
1179
+ "license": "MIT",
1180
+ "engines": {
1181
+ "node": ">= 20"
1182
+ },
1183
+ "optionalDependencies": {
1184
+ "@tailwindcss/oxide-android-arm64": "4.2.1",
1185
+ "@tailwindcss/oxide-darwin-arm64": "4.2.1",
1186
+ "@tailwindcss/oxide-darwin-x64": "4.2.1",
1187
+ "@tailwindcss/oxide-freebsd-x64": "4.2.1",
1188
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.1",
1189
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.2.1",
1190
+ "@tailwindcss/oxide-linux-arm64-musl": "4.2.1",
1191
+ "@tailwindcss/oxide-linux-x64-gnu": "4.2.1",
1192
+ "@tailwindcss/oxide-linux-x64-musl": "4.2.1",
1193
+ "@tailwindcss/oxide-wasm32-wasi": "4.2.1",
1194
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.2.1",
1195
+ "@tailwindcss/oxide-win32-x64-msvc": "4.2.1"
1196
+ }
1197
+ },
1198
+ "node_modules/@tailwindcss/oxide-android-arm64": {
1199
+ "version": "4.2.1",
1200
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.1.tgz",
1201
+ "integrity": "sha512-eZ7G1Zm5EC8OOKaesIKuw77jw++QJ2lL9N+dDpdQiAB/c/B2wDh0QPFHbkBVrXnwNugvrbJFk1gK2SsVjwWReg==",
1202
+ "cpu": [
1203
+ "arm64"
1204
+ ],
1205
+ "dev": true,
1206
+ "license": "MIT",
1207
+ "optional": true,
1208
+ "os": [
1209
+ "android"
1210
+ ],
1211
+ "engines": {
1212
+ "node": ">= 20"
1213
+ }
1214
+ },
1215
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
1216
+ "version": "4.2.1",
1217
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.1.tgz",
1218
+ "integrity": "sha512-q/LHkOstoJ7pI1J0q6djesLzRvQSIfEto148ppAd+BVQK0JYjQIFSK3JgYZJa+Yzi0DDa52ZsQx2rqytBnf8Hw==",
1219
+ "cpu": [
1220
+ "arm64"
1221
+ ],
1222
+ "dev": true,
1223
+ "license": "MIT",
1224
+ "optional": true,
1225
+ "os": [
1226
+ "darwin"
1227
+ ],
1228
+ "engines": {
1229
+ "node": ">= 20"
1230
+ }
1231
+ },
1232
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
1233
+ "version": "4.2.1",
1234
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.1.tgz",
1235
+ "integrity": "sha512-/f/ozlaXGY6QLbpvd/kFTro2l18f7dHKpB+ieXz+Cijl4Mt9AI2rTrpq7V+t04nK+j9XBQHnSMdeQRhbGyt6fw==",
1236
+ "cpu": [
1237
+ "x64"
1238
+ ],
1239
+ "dev": true,
1240
+ "license": "MIT",
1241
+ "optional": true,
1242
+ "os": [
1243
+ "darwin"
1244
+ ],
1245
+ "engines": {
1246
+ "node": ">= 20"
1247
+ }
1248
+ },
1249
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
1250
+ "version": "4.2.1",
1251
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.1.tgz",
1252
+ "integrity": "sha512-5e/AkgYJT/cpbkys/OU2Ei2jdETCLlifwm7ogMC7/hksI2fC3iiq6OcXwjibcIjPung0kRtR3TxEITkqgn0TcA==",
1253
+ "cpu": [
1254
+ "x64"
1255
+ ],
1256
+ "dev": true,
1257
+ "license": "MIT",
1258
+ "optional": true,
1259
+ "os": [
1260
+ "freebsd"
1261
+ ],
1262
+ "engines": {
1263
+ "node": ">= 20"
1264
+ }
1265
+ },
1266
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
1267
+ "version": "4.2.1",
1268
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.1.tgz",
1269
+ "integrity": "sha512-Uny1EcVTTmerCKt/1ZuKTkb0x8ZaiuYucg2/kImO5A5Y/kBz41/+j0gxUZl+hTF3xkWpDmHX+TaWhOtba2Fyuw==",
1270
+ "cpu": [
1271
+ "arm"
1272
+ ],
1273
+ "dev": true,
1274
+ "license": "MIT",
1275
+ "optional": true,
1276
+ "os": [
1277
+ "linux"
1278
+ ],
1279
+ "engines": {
1280
+ "node": ">= 20"
1281
+ }
1282
+ },
1283
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
1284
+ "version": "4.2.1",
1285
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.1.tgz",
1286
+ "integrity": "sha512-CTrwomI+c7n6aSSQlsPL0roRiNMDQ/YzMD9EjcR+H4f0I1SQ8QqIuPnsVp7QgMkC1Qi8rtkekLkOFjo7OlEFRQ==",
1287
+ "cpu": [
1288
+ "arm64"
1289
+ ],
1290
+ "dev": true,
1291
+ "license": "MIT",
1292
+ "optional": true,
1293
+ "os": [
1294
+ "linux"
1295
+ ],
1296
+ "engines": {
1297
+ "node": ">= 20"
1298
+ }
1299
+ },
1300
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
1301
+ "version": "4.2.1",
1302
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.1.tgz",
1303
+ "integrity": "sha512-WZA0CHRL/SP1TRbA5mp9htsppSEkWuQ4KsSUumYQnyl8ZdT39ntwqmz4IUHGN6p4XdSlYfJwM4rRzZLShHsGAQ==",
1304
+ "cpu": [
1305
+ "arm64"
1306
+ ],
1307
+ "dev": true,
1308
+ "license": "MIT",
1309
+ "optional": true,
1310
+ "os": [
1311
+ "linux"
1312
+ ],
1313
+ "engines": {
1314
+ "node": ">= 20"
1315
+ }
1316
+ },
1317
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
1318
+ "version": "4.2.1",
1319
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.1.tgz",
1320
+ "integrity": "sha512-qMFzxI2YlBOLW5PhblzuSWlWfwLHaneBE0xHzLrBgNtqN6mWfs+qYbhryGSXQjFYB1Dzf5w+LN5qbUTPhW7Y5g==",
1321
+ "cpu": [
1322
+ "x64"
1323
+ ],
1324
+ "dev": true,
1325
+ "license": "MIT",
1326
+ "optional": true,
1327
+ "os": [
1328
+ "linux"
1329
+ ],
1330
+ "engines": {
1331
+ "node": ">= 20"
1332
+ }
1333
+ },
1334
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
1335
+ "version": "4.2.1",
1336
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.1.tgz",
1337
+ "integrity": "sha512-5r1X2FKnCMUPlXTWRYpHdPYUY6a1Ar/t7P24OuiEdEOmms5lyqjDRvVY1yy9Rmioh+AunQ0rWiOTPE8F9A3v5g==",
1338
+ "cpu": [
1339
+ "x64"
1340
+ ],
1341
+ "dev": true,
1342
+ "license": "MIT",
1343
+ "optional": true,
1344
+ "os": [
1345
+ "linux"
1346
+ ],
1347
+ "engines": {
1348
+ "node": ">= 20"
1349
+ }
1350
+ },
1351
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
1352
+ "version": "4.2.1",
1353
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.1.tgz",
1354
+ "integrity": "sha512-MGFB5cVPvshR85MTJkEvqDUnuNoysrsRxd6vnk1Lf2tbiqNlXpHYZqkqOQalydienEWOHHFyyuTSYRsLfxFJ2Q==",
1355
+ "bundleDependencies": [
1356
+ "@napi-rs/wasm-runtime",
1357
+ "@emnapi/core",
1358
+ "@emnapi/runtime",
1359
+ "@tybys/wasm-util",
1360
+ "@emnapi/wasi-threads",
1361
+ "tslib"
1362
+ ],
1363
+ "cpu": [
1364
+ "wasm32"
1365
+ ],
1366
+ "dev": true,
1367
+ "license": "MIT",
1368
+ "optional": true,
1369
+ "dependencies": {
1370
+ "@emnapi/core": "^1.8.1",
1371
+ "@emnapi/runtime": "^1.8.1",
1372
+ "@emnapi/wasi-threads": "^1.1.0",
1373
+ "@napi-rs/wasm-runtime": "^1.1.1",
1374
+ "@tybys/wasm-util": "^0.10.1",
1375
+ "tslib": "^2.8.1"
1376
+ },
1377
+ "engines": {
1378
+ "node": ">=14.0.0"
1379
+ }
1380
+ },
1381
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
1382
+ "version": "4.2.1",
1383
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.1.tgz",
1384
+ "integrity": "sha512-YlUEHRHBGnCMh4Nj4GnqQyBtsshUPdiNroZj8VPkvTZSoHsilRCwXcVKnG9kyi0ZFAS/3u+qKHBdDc81SADTRA==",
1385
+ "cpu": [
1386
+ "arm64"
1387
+ ],
1388
+ "dev": true,
1389
+ "license": "MIT",
1390
+ "optional": true,
1391
+ "os": [
1392
+ "win32"
1393
+ ],
1394
+ "engines": {
1395
+ "node": ">= 20"
1396
+ }
1397
+ },
1398
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
1399
+ "version": "4.2.1",
1400
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.1.tgz",
1401
+ "integrity": "sha512-rbO34G5sMWWyrN/idLeVxAZgAKWrn5LiR3/I90Q9MkA67s6T1oB0xtTe+0heoBvHSpbU9Mk7i6uwJnpo4u21XQ==",
1402
+ "cpu": [
1403
+ "x64"
1404
+ ],
1405
+ "dev": true,
1406
+ "license": "MIT",
1407
+ "optional": true,
1408
+ "os": [
1409
+ "win32"
1410
+ ],
1411
+ "engines": {
1412
+ "node": ">= 20"
1413
+ }
1414
+ },
1415
+ "node_modules/@tailwindcss/vite": {
1416
+ "version": "4.2.1",
1417
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.2.1.tgz",
1418
+ "integrity": "sha512-TBf2sJjYeb28jD2U/OhwdW0bbOsxkWPwQ7SrqGf9sVcoYwZj7rkXljroBO9wKBut9XnmQLXanuDUeqQK0lGg/w==",
1419
+ "dev": true,
1420
+ "license": "MIT",
1421
+ "dependencies": {
1422
+ "@tailwindcss/node": "4.2.1",
1423
+ "@tailwindcss/oxide": "4.2.1",
1424
+ "tailwindcss": "4.2.1"
1425
+ },
1426
+ "peerDependencies": {
1427
+ "vite": "^5.2.0 || ^6 || ^7"
1428
+ }
1429
+ },
1430
+ "node_modules/@types/babel__core": {
1431
+ "version": "7.20.5",
1432
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
1433
+ "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
1434
+ "dev": true,
1435
+ "license": "MIT",
1436
+ "dependencies": {
1437
+ "@babel/parser": "^7.20.7",
1438
+ "@babel/types": "^7.20.7",
1439
+ "@types/babel__generator": "*",
1440
+ "@types/babel__template": "*",
1441
+ "@types/babel__traverse": "*"
1442
+ }
1443
+ },
1444
+ "node_modules/@types/babel__generator": {
1445
+ "version": "7.27.0",
1446
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
1447
+ "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
1448
+ "dev": true,
1449
+ "license": "MIT",
1450
+ "dependencies": {
1451
+ "@babel/types": "^7.0.0"
1452
+ }
1453
+ },
1454
+ "node_modules/@types/babel__template": {
1455
+ "version": "7.4.4",
1456
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
1457
+ "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
1458
+ "dev": true,
1459
+ "license": "MIT",
1460
+ "dependencies": {
1461
+ "@babel/parser": "^7.1.0",
1462
+ "@babel/types": "^7.0.0"
1463
+ }
1464
+ },
1465
+ "node_modules/@types/babel__traverse": {
1466
+ "version": "7.28.0",
1467
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
1468
+ "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
1469
+ "dev": true,
1470
+ "license": "MIT",
1471
+ "dependencies": {
1472
+ "@babel/types": "^7.28.2"
1473
+ }
1474
+ },
1475
+ "node_modules/@types/estree": {
1476
+ "version": "1.0.8",
1477
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
1478
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
1479
+ "dev": true,
1480
+ "license": "MIT"
1481
+ },
1482
+ "node_modules/@types/node": {
1483
+ "version": "25.5.0",
1484
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-25.5.0.tgz",
1485
+ "integrity": "sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==",
1486
+ "dev": true,
1487
+ "license": "MIT",
1488
+ "dependencies": {
1489
+ "undici-types": "~7.18.0"
1490
+ }
1491
+ },
1492
+ "node_modules/@types/react": {
1493
+ "version": "19.2.14",
1494
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
1495
+ "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
1496
+ "devOptional": true,
1497
+ "license": "MIT",
1498
+ "dependencies": {
1499
+ "csstype": "^3.2.2"
1500
+ }
1501
+ },
1502
+ "node_modules/@types/react-dom": {
1503
+ "version": "19.2.3",
1504
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
1505
+ "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
1506
+ "dev": true,
1507
+ "license": "MIT",
1508
+ "peerDependencies": {
1509
+ "@types/react": "^19.2.0"
1510
+ }
1511
+ },
1512
+ "node_modules/@vitejs/plugin-react": {
1513
+ "version": "5.2.0",
1514
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.2.0.tgz",
1515
+ "integrity": "sha512-YmKkfhOAi3wsB1PhJq5Scj3GXMn3WvtQ/JC0xoopuHoXSdmtdStOpFrYaT1kie2YgFBcIe64ROzMYRjCrYOdYw==",
1516
+ "dev": true,
1517
+ "license": "MIT",
1518
+ "dependencies": {
1519
+ "@babel/core": "^7.29.0",
1520
+ "@babel/plugin-transform-react-jsx-self": "^7.27.1",
1521
+ "@babel/plugin-transform-react-jsx-source": "^7.27.1",
1522
+ "@rolldown/pluginutils": "1.0.0-rc.3",
1523
+ "@types/babel__core": "^7.20.5",
1524
+ "react-refresh": "^0.18.0"
1525
+ },
1526
+ "engines": {
1527
+ "node": "^20.19.0 || >=22.12.0"
1528
+ },
1529
+ "peerDependencies": {
1530
+ "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
1531
+ }
1532
+ },
1533
+ "node_modules/baseline-browser-mapping": {
1534
+ "version": "2.10.8",
1535
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.8.tgz",
1536
+ "integrity": "sha512-PCLz/LXGBsNTErbtB6i5u4eLpHeMfi93aUv5duMmj6caNu6IphS4q6UevDnL36sZQv9lrP11dbPKGMaXPwMKfQ==",
1537
+ "dev": true,
1538
+ "license": "Apache-2.0",
1539
+ "bin": {
1540
+ "baseline-browser-mapping": "dist/cli.cjs"
1541
+ },
1542
+ "engines": {
1543
+ "node": ">=6.0.0"
1544
+ }
1545
+ },
1546
+ "node_modules/browserslist": {
1547
+ "version": "4.28.1",
1548
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
1549
+ "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
1550
+ "dev": true,
1551
+ "funding": [
1552
+ {
1553
+ "type": "opencollective",
1554
+ "url": "https://opencollective.com/browserslist"
1555
+ },
1556
+ {
1557
+ "type": "tidelift",
1558
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
1559
+ },
1560
+ {
1561
+ "type": "github",
1562
+ "url": "https://github.com/sponsors/ai"
1563
+ }
1564
+ ],
1565
+ "license": "MIT",
1566
+ "dependencies": {
1567
+ "baseline-browser-mapping": "^2.9.0",
1568
+ "caniuse-lite": "^1.0.30001759",
1569
+ "electron-to-chromium": "^1.5.263",
1570
+ "node-releases": "^2.0.27",
1571
+ "update-browserslist-db": "^1.2.0"
1572
+ },
1573
+ "bin": {
1574
+ "browserslist": "cli.js"
1575
+ },
1576
+ "engines": {
1577
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1578
+ }
1579
+ },
1580
+ "node_modules/caniuse-lite": {
1581
+ "version": "1.0.30001779",
1582
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001779.tgz",
1583
+ "integrity": "sha512-U5og2PN7V4DMgF50YPNtnZJGWVLFjjsN3zb6uMT5VGYIewieDj1upwfuVNXf4Kor+89c3iCRJnSzMD5LmTvsfA==",
1584
+ "dev": true,
1585
+ "funding": [
1586
+ {
1587
+ "type": "opencollective",
1588
+ "url": "https://opencollective.com/browserslist"
1589
+ },
1590
+ {
1591
+ "type": "tidelift",
1592
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1593
+ },
1594
+ {
1595
+ "type": "github",
1596
+ "url": "https://github.com/sponsors/ai"
1597
+ }
1598
+ ],
1599
+ "license": "CC-BY-4.0"
1600
+ },
1601
+ "node_modules/convert-source-map": {
1602
+ "version": "2.0.0",
1603
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
1604
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
1605
+ "dev": true,
1606
+ "license": "MIT"
1607
+ },
1608
+ "node_modules/cookie": {
1609
+ "version": "1.1.1",
1610
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
1611
+ "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
1612
+ "license": "MIT",
1613
+ "engines": {
1614
+ "node": ">=18"
1615
+ },
1616
+ "funding": {
1617
+ "type": "opencollective",
1618
+ "url": "https://opencollective.com/express"
1619
+ }
1620
+ },
1621
+ "node_modules/csstype": {
1622
+ "version": "3.2.3",
1623
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
1624
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
1625
+ "devOptional": true,
1626
+ "license": "MIT"
1627
+ },
1628
+ "node_modules/debug": {
1629
+ "version": "4.4.3",
1630
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1631
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1632
+ "dev": true,
1633
+ "license": "MIT",
1634
+ "dependencies": {
1635
+ "ms": "^2.1.3"
1636
+ },
1637
+ "engines": {
1638
+ "node": ">=6.0"
1639
+ },
1640
+ "peerDependenciesMeta": {
1641
+ "supports-color": {
1642
+ "optional": true
1643
+ }
1644
+ }
1645
+ },
1646
+ "node_modules/detect-libc": {
1647
+ "version": "2.1.2",
1648
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1649
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1650
+ "dev": true,
1651
+ "license": "Apache-2.0",
1652
+ "engines": {
1653
+ "node": ">=8"
1654
+ }
1655
+ },
1656
+ "node_modules/electron-to-chromium": {
1657
+ "version": "1.5.313",
1658
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.313.tgz",
1659
+ "integrity": "sha512-QBMrTWEf00GXZmJyx2lbYD45jpI3TUFnNIzJ5BBc8piGUDwMPa1GV6HJWTZVvY/eiN3fSopl7NRbgGp9sZ9LTA==",
1660
+ "dev": true,
1661
+ "license": "ISC"
1662
+ },
1663
+ "node_modules/enhanced-resolve": {
1664
+ "version": "5.20.0",
1665
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.0.tgz",
1666
+ "integrity": "sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==",
1667
+ "dev": true,
1668
+ "license": "MIT",
1669
+ "dependencies": {
1670
+ "graceful-fs": "^4.2.4",
1671
+ "tapable": "^2.3.0"
1672
+ },
1673
+ "engines": {
1674
+ "node": ">=10.13.0"
1675
+ }
1676
+ },
1677
+ "node_modules/esbuild": {
1678
+ "version": "0.27.4",
1679
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.4.tgz",
1680
+ "integrity": "sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==",
1681
+ "dev": true,
1682
+ "hasInstallScript": true,
1683
+ "license": "MIT",
1684
+ "bin": {
1685
+ "esbuild": "bin/esbuild"
1686
+ },
1687
+ "engines": {
1688
+ "node": ">=18"
1689
+ },
1690
+ "optionalDependencies": {
1691
+ "@esbuild/aix-ppc64": "0.27.4",
1692
+ "@esbuild/android-arm": "0.27.4",
1693
+ "@esbuild/android-arm64": "0.27.4",
1694
+ "@esbuild/android-x64": "0.27.4",
1695
+ "@esbuild/darwin-arm64": "0.27.4",
1696
+ "@esbuild/darwin-x64": "0.27.4",
1697
+ "@esbuild/freebsd-arm64": "0.27.4",
1698
+ "@esbuild/freebsd-x64": "0.27.4",
1699
+ "@esbuild/linux-arm": "0.27.4",
1700
+ "@esbuild/linux-arm64": "0.27.4",
1701
+ "@esbuild/linux-ia32": "0.27.4",
1702
+ "@esbuild/linux-loong64": "0.27.4",
1703
+ "@esbuild/linux-mips64el": "0.27.4",
1704
+ "@esbuild/linux-ppc64": "0.27.4",
1705
+ "@esbuild/linux-riscv64": "0.27.4",
1706
+ "@esbuild/linux-s390x": "0.27.4",
1707
+ "@esbuild/linux-x64": "0.27.4",
1708
+ "@esbuild/netbsd-arm64": "0.27.4",
1709
+ "@esbuild/netbsd-x64": "0.27.4",
1710
+ "@esbuild/openbsd-arm64": "0.27.4",
1711
+ "@esbuild/openbsd-x64": "0.27.4",
1712
+ "@esbuild/openharmony-arm64": "0.27.4",
1713
+ "@esbuild/sunos-x64": "0.27.4",
1714
+ "@esbuild/win32-arm64": "0.27.4",
1715
+ "@esbuild/win32-ia32": "0.27.4",
1716
+ "@esbuild/win32-x64": "0.27.4"
1717
+ }
1718
+ },
1719
+ "node_modules/escalade": {
1720
+ "version": "3.2.0",
1721
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
1722
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
1723
+ "dev": true,
1724
+ "license": "MIT",
1725
+ "engines": {
1726
+ "node": ">=6"
1727
+ }
1728
+ },
1729
+ "node_modules/fdir": {
1730
+ "version": "6.5.0",
1731
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
1732
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
1733
+ "dev": true,
1734
+ "license": "MIT",
1735
+ "engines": {
1736
+ "node": ">=12.0.0"
1737
+ },
1738
+ "peerDependencies": {
1739
+ "picomatch": "^3 || ^4"
1740
+ },
1741
+ "peerDependenciesMeta": {
1742
+ "picomatch": {
1743
+ "optional": true
1744
+ }
1745
+ }
1746
+ },
1747
+ "node_modules/fsevents": {
1748
+ "version": "2.3.3",
1749
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1750
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1751
+ "dev": true,
1752
+ "hasInstallScript": true,
1753
+ "license": "MIT",
1754
+ "optional": true,
1755
+ "os": [
1756
+ "darwin"
1757
+ ],
1758
+ "engines": {
1759
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1760
+ }
1761
+ },
1762
+ "node_modules/gensync": {
1763
+ "version": "1.0.0-beta.2",
1764
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
1765
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
1766
+ "dev": true,
1767
+ "license": "MIT",
1768
+ "engines": {
1769
+ "node": ">=6.9.0"
1770
+ }
1771
+ },
1772
+ "node_modules/graceful-fs": {
1773
+ "version": "4.2.11",
1774
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1775
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1776
+ "dev": true,
1777
+ "license": "ISC"
1778
+ },
1779
+ "node_modules/jiti": {
1780
+ "version": "2.6.1",
1781
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
1782
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
1783
+ "dev": true,
1784
+ "license": "MIT",
1785
+ "bin": {
1786
+ "jiti": "lib/jiti-cli.mjs"
1787
+ }
1788
+ },
1789
+ "node_modules/js-tokens": {
1790
+ "version": "4.0.0",
1791
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
1792
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
1793
+ "dev": true,
1794
+ "license": "MIT"
1795
+ },
1796
+ "node_modules/jsesc": {
1797
+ "version": "3.1.0",
1798
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
1799
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
1800
+ "dev": true,
1801
+ "license": "MIT",
1802
+ "bin": {
1803
+ "jsesc": "bin/jsesc"
1804
+ },
1805
+ "engines": {
1806
+ "node": ">=6"
1807
+ }
1808
+ },
1809
+ "node_modules/json5": {
1810
+ "version": "2.2.3",
1811
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
1812
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
1813
+ "dev": true,
1814
+ "license": "MIT",
1815
+ "bin": {
1816
+ "json5": "lib/cli.js"
1817
+ },
1818
+ "engines": {
1819
+ "node": ">=6"
1820
+ }
1821
+ },
1822
+ "node_modules/lightningcss": {
1823
+ "version": "1.31.1",
1824
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.31.1.tgz",
1825
+ "integrity": "sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==",
1826
+ "dev": true,
1827
+ "license": "MPL-2.0",
1828
+ "dependencies": {
1829
+ "detect-libc": "^2.0.3"
1830
+ },
1831
+ "engines": {
1832
+ "node": ">= 12.0.0"
1833
+ },
1834
+ "funding": {
1835
+ "type": "opencollective",
1836
+ "url": "https://opencollective.com/parcel"
1837
+ },
1838
+ "optionalDependencies": {
1839
+ "lightningcss-android-arm64": "1.31.1",
1840
+ "lightningcss-darwin-arm64": "1.31.1",
1841
+ "lightningcss-darwin-x64": "1.31.1",
1842
+ "lightningcss-freebsd-x64": "1.31.1",
1843
+ "lightningcss-linux-arm-gnueabihf": "1.31.1",
1844
+ "lightningcss-linux-arm64-gnu": "1.31.1",
1845
+ "lightningcss-linux-arm64-musl": "1.31.1",
1846
+ "lightningcss-linux-x64-gnu": "1.31.1",
1847
+ "lightningcss-linux-x64-musl": "1.31.1",
1848
+ "lightningcss-win32-arm64-msvc": "1.31.1",
1849
+ "lightningcss-win32-x64-msvc": "1.31.1"
1850
+ }
1851
+ },
1852
+ "node_modules/lightningcss-android-arm64": {
1853
+ "version": "1.31.1",
1854
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.31.1.tgz",
1855
+ "integrity": "sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==",
1856
+ "cpu": [
1857
+ "arm64"
1858
+ ],
1859
+ "dev": true,
1860
+ "license": "MPL-2.0",
1861
+ "optional": true,
1862
+ "os": [
1863
+ "android"
1864
+ ],
1865
+ "engines": {
1866
+ "node": ">= 12.0.0"
1867
+ },
1868
+ "funding": {
1869
+ "type": "opencollective",
1870
+ "url": "https://opencollective.com/parcel"
1871
+ }
1872
+ },
1873
+ "node_modules/lightningcss-darwin-arm64": {
1874
+ "version": "1.31.1",
1875
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.31.1.tgz",
1876
+ "integrity": "sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==",
1877
+ "cpu": [
1878
+ "arm64"
1879
+ ],
1880
+ "dev": true,
1881
+ "license": "MPL-2.0",
1882
+ "optional": true,
1883
+ "os": [
1884
+ "darwin"
1885
+ ],
1886
+ "engines": {
1887
+ "node": ">= 12.0.0"
1888
+ },
1889
+ "funding": {
1890
+ "type": "opencollective",
1891
+ "url": "https://opencollective.com/parcel"
1892
+ }
1893
+ },
1894
+ "node_modules/lightningcss-darwin-x64": {
1895
+ "version": "1.31.1",
1896
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.31.1.tgz",
1897
+ "integrity": "sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==",
1898
+ "cpu": [
1899
+ "x64"
1900
+ ],
1901
+ "dev": true,
1902
+ "license": "MPL-2.0",
1903
+ "optional": true,
1904
+ "os": [
1905
+ "darwin"
1906
+ ],
1907
+ "engines": {
1908
+ "node": ">= 12.0.0"
1909
+ },
1910
+ "funding": {
1911
+ "type": "opencollective",
1912
+ "url": "https://opencollective.com/parcel"
1913
+ }
1914
+ },
1915
+ "node_modules/lightningcss-freebsd-x64": {
1916
+ "version": "1.31.1",
1917
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.31.1.tgz",
1918
+ "integrity": "sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==",
1919
+ "cpu": [
1920
+ "x64"
1921
+ ],
1922
+ "dev": true,
1923
+ "license": "MPL-2.0",
1924
+ "optional": true,
1925
+ "os": [
1926
+ "freebsd"
1927
+ ],
1928
+ "engines": {
1929
+ "node": ">= 12.0.0"
1930
+ },
1931
+ "funding": {
1932
+ "type": "opencollective",
1933
+ "url": "https://opencollective.com/parcel"
1934
+ }
1935
+ },
1936
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
1937
+ "version": "1.31.1",
1938
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.31.1.tgz",
1939
+ "integrity": "sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==",
1940
+ "cpu": [
1941
+ "arm"
1942
+ ],
1943
+ "dev": true,
1944
+ "license": "MPL-2.0",
1945
+ "optional": true,
1946
+ "os": [
1947
+ "linux"
1948
+ ],
1949
+ "engines": {
1950
+ "node": ">= 12.0.0"
1951
+ },
1952
+ "funding": {
1953
+ "type": "opencollective",
1954
+ "url": "https://opencollective.com/parcel"
1955
+ }
1956
+ },
1957
+ "node_modules/lightningcss-linux-arm64-gnu": {
1958
+ "version": "1.31.1",
1959
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.31.1.tgz",
1960
+ "integrity": "sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==",
1961
+ "cpu": [
1962
+ "arm64"
1963
+ ],
1964
+ "dev": true,
1965
+ "license": "MPL-2.0",
1966
+ "optional": true,
1967
+ "os": [
1968
+ "linux"
1969
+ ],
1970
+ "engines": {
1971
+ "node": ">= 12.0.0"
1972
+ },
1973
+ "funding": {
1974
+ "type": "opencollective",
1975
+ "url": "https://opencollective.com/parcel"
1976
+ }
1977
+ },
1978
+ "node_modules/lightningcss-linux-arm64-musl": {
1979
+ "version": "1.31.1",
1980
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.31.1.tgz",
1981
+ "integrity": "sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==",
1982
+ "cpu": [
1983
+ "arm64"
1984
+ ],
1985
+ "dev": true,
1986
+ "license": "MPL-2.0",
1987
+ "optional": true,
1988
+ "os": [
1989
+ "linux"
1990
+ ],
1991
+ "engines": {
1992
+ "node": ">= 12.0.0"
1993
+ },
1994
+ "funding": {
1995
+ "type": "opencollective",
1996
+ "url": "https://opencollective.com/parcel"
1997
+ }
1998
+ },
1999
+ "node_modules/lightningcss-linux-x64-gnu": {
2000
+ "version": "1.31.1",
2001
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.31.1.tgz",
2002
+ "integrity": "sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==",
2003
+ "cpu": [
2004
+ "x64"
2005
+ ],
2006
+ "dev": true,
2007
+ "license": "MPL-2.0",
2008
+ "optional": true,
2009
+ "os": [
2010
+ "linux"
2011
+ ],
2012
+ "engines": {
2013
+ "node": ">= 12.0.0"
2014
+ },
2015
+ "funding": {
2016
+ "type": "opencollective",
2017
+ "url": "https://opencollective.com/parcel"
2018
+ }
2019
+ },
2020
+ "node_modules/lightningcss-linux-x64-musl": {
2021
+ "version": "1.31.1",
2022
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.31.1.tgz",
2023
+ "integrity": "sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==",
2024
+ "cpu": [
2025
+ "x64"
2026
+ ],
2027
+ "dev": true,
2028
+ "license": "MPL-2.0",
2029
+ "optional": true,
2030
+ "os": [
2031
+ "linux"
2032
+ ],
2033
+ "engines": {
2034
+ "node": ">= 12.0.0"
2035
+ },
2036
+ "funding": {
2037
+ "type": "opencollective",
2038
+ "url": "https://opencollective.com/parcel"
2039
+ }
2040
+ },
2041
+ "node_modules/lightningcss-win32-arm64-msvc": {
2042
+ "version": "1.31.1",
2043
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.31.1.tgz",
2044
+ "integrity": "sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==",
2045
+ "cpu": [
2046
+ "arm64"
2047
+ ],
2048
+ "dev": true,
2049
+ "license": "MPL-2.0",
2050
+ "optional": true,
2051
+ "os": [
2052
+ "win32"
2053
+ ],
2054
+ "engines": {
2055
+ "node": ">= 12.0.0"
2056
+ },
2057
+ "funding": {
2058
+ "type": "opencollective",
2059
+ "url": "https://opencollective.com/parcel"
2060
+ }
2061
+ },
2062
+ "node_modules/lightningcss-win32-x64-msvc": {
2063
+ "version": "1.31.1",
2064
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.31.1.tgz",
2065
+ "integrity": "sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==",
2066
+ "cpu": [
2067
+ "x64"
2068
+ ],
2069
+ "dev": true,
2070
+ "license": "MPL-2.0",
2071
+ "optional": true,
2072
+ "os": [
2073
+ "win32"
2074
+ ],
2075
+ "engines": {
2076
+ "node": ">= 12.0.0"
2077
+ },
2078
+ "funding": {
2079
+ "type": "opencollective",
2080
+ "url": "https://opencollective.com/parcel"
2081
+ }
2082
+ },
2083
+ "node_modules/lru-cache": {
2084
+ "version": "5.1.1",
2085
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
2086
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
2087
+ "dev": true,
2088
+ "license": "ISC",
2089
+ "dependencies": {
2090
+ "yallist": "^3.0.2"
2091
+ }
2092
+ },
2093
+ "node_modules/magic-string": {
2094
+ "version": "0.30.21",
2095
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
2096
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
2097
+ "dev": true,
2098
+ "license": "MIT",
2099
+ "dependencies": {
2100
+ "@jridgewell/sourcemap-codec": "^1.5.5"
2101
+ }
2102
+ },
2103
+ "node_modules/ms": {
2104
+ "version": "2.1.3",
2105
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2106
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2107
+ "dev": true,
2108
+ "license": "MIT"
2109
+ },
2110
+ "node_modules/nanoid": {
2111
+ "version": "3.3.11",
2112
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
2113
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
2114
+ "dev": true,
2115
+ "funding": [
2116
+ {
2117
+ "type": "github",
2118
+ "url": "https://github.com/sponsors/ai"
2119
+ }
2120
+ ],
2121
+ "license": "MIT",
2122
+ "bin": {
2123
+ "nanoid": "bin/nanoid.cjs"
2124
+ },
2125
+ "engines": {
2126
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2127
+ }
2128
+ },
2129
+ "node_modules/node-releases": {
2130
+ "version": "2.0.36",
2131
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz",
2132
+ "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
2133
+ "dev": true,
2134
+ "license": "MIT"
2135
+ },
2136
+ "node_modules/picocolors": {
2137
+ "version": "1.1.1",
2138
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2139
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2140
+ "dev": true,
2141
+ "license": "ISC"
2142
+ },
2143
+ "node_modules/picomatch": {
2144
+ "version": "4.0.3",
2145
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
2146
+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
2147
+ "dev": true,
2148
+ "license": "MIT",
2149
+ "engines": {
2150
+ "node": ">=12"
2151
+ },
2152
+ "funding": {
2153
+ "url": "https://github.com/sponsors/jonschlinkert"
2154
+ }
2155
+ },
2156
+ "node_modules/postcss": {
2157
+ "version": "8.5.8",
2158
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
2159
+ "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
2160
+ "dev": true,
2161
+ "funding": [
2162
+ {
2163
+ "type": "opencollective",
2164
+ "url": "https://opencollective.com/postcss/"
2165
+ },
2166
+ {
2167
+ "type": "tidelift",
2168
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2169
+ },
2170
+ {
2171
+ "type": "github",
2172
+ "url": "https://github.com/sponsors/ai"
2173
+ }
2174
+ ],
2175
+ "license": "MIT",
2176
+ "dependencies": {
2177
+ "nanoid": "^3.3.11",
2178
+ "picocolors": "^1.1.1",
2179
+ "source-map-js": "^1.2.1"
2180
+ },
2181
+ "engines": {
2182
+ "node": "^10 || ^12 || >=14"
2183
+ }
2184
+ },
2185
+ "node_modules/react": {
2186
+ "version": "19.2.4",
2187
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
2188
+ "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
2189
+ "license": "MIT",
2190
+ "engines": {
2191
+ "node": ">=0.10.0"
2192
+ }
2193
+ },
2194
+ "node_modules/react-dom": {
2195
+ "version": "19.2.4",
2196
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
2197
+ "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
2198
+ "license": "MIT",
2199
+ "dependencies": {
2200
+ "scheduler": "^0.27.0"
2201
+ },
2202
+ "peerDependencies": {
2203
+ "react": "^19.2.4"
2204
+ }
2205
+ },
2206
+ "node_modules/react-refresh": {
2207
+ "version": "0.18.0",
2208
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz",
2209
+ "integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==",
2210
+ "dev": true,
2211
+ "license": "MIT",
2212
+ "engines": {
2213
+ "node": ">=0.10.0"
2214
+ }
2215
+ },
2216
+ "node_modules/react-router": {
2217
+ "version": "7.13.1",
2218
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.13.1.tgz",
2219
+ "integrity": "sha512-td+xP4X2/6BJvZoX6xw++A2DdEi++YypA69bJUV5oVvqf6/9/9nNlD70YO1e9d3MyamJEBQFEzk6mbfDYbqrSA==",
2220
+ "license": "MIT",
2221
+ "dependencies": {
2222
+ "cookie": "^1.0.1",
2223
+ "set-cookie-parser": "^2.6.0"
2224
+ },
2225
+ "engines": {
2226
+ "node": ">=20.0.0"
2227
+ },
2228
+ "peerDependencies": {
2229
+ "react": ">=18",
2230
+ "react-dom": ">=18"
2231
+ },
2232
+ "peerDependenciesMeta": {
2233
+ "react-dom": {
2234
+ "optional": true
2235
+ }
2236
+ }
2237
+ },
2238
+ "node_modules/rollup": {
2239
+ "version": "4.59.0",
2240
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.59.0.tgz",
2241
+ "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==",
2242
+ "dev": true,
2243
+ "license": "MIT",
2244
+ "dependencies": {
2245
+ "@types/estree": "1.0.8"
2246
+ },
2247
+ "bin": {
2248
+ "rollup": "dist/bin/rollup"
2249
+ },
2250
+ "engines": {
2251
+ "node": ">=18.0.0",
2252
+ "npm": ">=8.0.0"
2253
+ },
2254
+ "optionalDependencies": {
2255
+ "@rollup/rollup-android-arm-eabi": "4.59.0",
2256
+ "@rollup/rollup-android-arm64": "4.59.0",
2257
+ "@rollup/rollup-darwin-arm64": "4.59.0",
2258
+ "@rollup/rollup-darwin-x64": "4.59.0",
2259
+ "@rollup/rollup-freebsd-arm64": "4.59.0",
2260
+ "@rollup/rollup-freebsd-x64": "4.59.0",
2261
+ "@rollup/rollup-linux-arm-gnueabihf": "4.59.0",
2262
+ "@rollup/rollup-linux-arm-musleabihf": "4.59.0",
2263
+ "@rollup/rollup-linux-arm64-gnu": "4.59.0",
2264
+ "@rollup/rollup-linux-arm64-musl": "4.59.0",
2265
+ "@rollup/rollup-linux-loong64-gnu": "4.59.0",
2266
+ "@rollup/rollup-linux-loong64-musl": "4.59.0",
2267
+ "@rollup/rollup-linux-ppc64-gnu": "4.59.0",
2268
+ "@rollup/rollup-linux-ppc64-musl": "4.59.0",
2269
+ "@rollup/rollup-linux-riscv64-gnu": "4.59.0",
2270
+ "@rollup/rollup-linux-riscv64-musl": "4.59.0",
2271
+ "@rollup/rollup-linux-s390x-gnu": "4.59.0",
2272
+ "@rollup/rollup-linux-x64-gnu": "4.59.0",
2273
+ "@rollup/rollup-linux-x64-musl": "4.59.0",
2274
+ "@rollup/rollup-openbsd-x64": "4.59.0",
2275
+ "@rollup/rollup-openharmony-arm64": "4.59.0",
2276
+ "@rollup/rollup-win32-arm64-msvc": "4.59.0",
2277
+ "@rollup/rollup-win32-ia32-msvc": "4.59.0",
2278
+ "@rollup/rollup-win32-x64-gnu": "4.59.0",
2279
+ "@rollup/rollup-win32-x64-msvc": "4.59.0",
2280
+ "fsevents": "~2.3.2"
2281
+ }
2282
+ },
2283
+ "node_modules/scheduler": {
2284
+ "version": "0.27.0",
2285
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
2286
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
2287
+ "license": "MIT"
2288
+ },
2289
+ "node_modules/semver": {
2290
+ "version": "6.3.1",
2291
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
2292
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
2293
+ "dev": true,
2294
+ "license": "ISC",
2295
+ "bin": {
2296
+ "semver": "bin/semver.js"
2297
+ }
2298
+ },
2299
+ "node_modules/set-cookie-parser": {
2300
+ "version": "2.7.2",
2301
+ "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz",
2302
+ "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==",
2303
+ "license": "MIT"
2304
+ },
2305
+ "node_modules/source-map-js": {
2306
+ "version": "1.2.1",
2307
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
2308
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
2309
+ "dev": true,
2310
+ "license": "BSD-3-Clause",
2311
+ "engines": {
2312
+ "node": ">=0.10.0"
2313
+ }
2314
+ },
2315
+ "node_modules/tailwindcss": {
2316
+ "version": "4.2.1",
2317
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.1.tgz",
2318
+ "integrity": "sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==",
2319
+ "dev": true,
2320
+ "license": "MIT"
2321
+ },
2322
+ "node_modules/tapable": {
2323
+ "version": "2.3.0",
2324
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
2325
+ "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
2326
+ "dev": true,
2327
+ "license": "MIT",
2328
+ "engines": {
2329
+ "node": ">=6"
2330
+ },
2331
+ "funding": {
2332
+ "type": "opencollective",
2333
+ "url": "https://opencollective.com/webpack"
2334
+ }
2335
+ },
2336
+ "node_modules/tinyglobby": {
2337
+ "version": "0.2.15",
2338
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
2339
+ "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
2340
+ "dev": true,
2341
+ "license": "MIT",
2342
+ "dependencies": {
2343
+ "fdir": "^6.5.0",
2344
+ "picomatch": "^4.0.3"
2345
+ },
2346
+ "engines": {
2347
+ "node": ">=12.0.0"
2348
+ },
2349
+ "funding": {
2350
+ "url": "https://github.com/sponsors/SuperchupuDev"
2351
+ }
2352
+ },
2353
+ "node_modules/typescript": {
2354
+ "version": "5.9.3",
2355
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
2356
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
2357
+ "dev": true,
2358
+ "license": "Apache-2.0",
2359
+ "bin": {
2360
+ "tsc": "bin/tsc",
2361
+ "tsserver": "bin/tsserver"
2362
+ },
2363
+ "engines": {
2364
+ "node": ">=14.17"
2365
+ }
2366
+ },
2367
+ "node_modules/undici-types": {
2368
+ "version": "7.18.2",
2369
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz",
2370
+ "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
2371
+ "dev": true,
2372
+ "license": "MIT"
2373
+ },
2374
+ "node_modules/update-browserslist-db": {
2375
+ "version": "1.2.3",
2376
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
2377
+ "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
2378
+ "dev": true,
2379
+ "funding": [
2380
+ {
2381
+ "type": "opencollective",
2382
+ "url": "https://opencollective.com/browserslist"
2383
+ },
2384
+ {
2385
+ "type": "tidelift",
2386
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
2387
+ },
2388
+ {
2389
+ "type": "github",
2390
+ "url": "https://github.com/sponsors/ai"
2391
+ }
2392
+ ],
2393
+ "license": "MIT",
2394
+ "dependencies": {
2395
+ "escalade": "^3.2.0",
2396
+ "picocolors": "^1.1.1"
2397
+ },
2398
+ "bin": {
2399
+ "update-browserslist-db": "cli.js"
2400
+ },
2401
+ "peerDependencies": {
2402
+ "browserslist": ">= 4.21.0"
2403
+ }
2404
+ },
2405
+ "node_modules/vite": {
2406
+ "version": "7.3.1",
2407
+ "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz",
2408
+ "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==",
2409
+ "dev": true,
2410
+ "license": "MIT",
2411
+ "dependencies": {
2412
+ "esbuild": "^0.27.0",
2413
+ "fdir": "^6.5.0",
2414
+ "picomatch": "^4.0.3",
2415
+ "postcss": "^8.5.6",
2416
+ "rollup": "^4.43.0",
2417
+ "tinyglobby": "^0.2.15"
2418
+ },
2419
+ "bin": {
2420
+ "vite": "bin/vite.js"
2421
+ },
2422
+ "engines": {
2423
+ "node": "^20.19.0 || >=22.12.0"
2424
+ },
2425
+ "funding": {
2426
+ "url": "https://github.com/vitejs/vite?sponsor=1"
2427
+ },
2428
+ "optionalDependencies": {
2429
+ "fsevents": "~2.3.3"
2430
+ },
2431
+ "peerDependencies": {
2432
+ "@types/node": "^20.19.0 || >=22.12.0",
2433
+ "jiti": ">=1.21.0",
2434
+ "less": "^4.0.0",
2435
+ "lightningcss": "^1.21.0",
2436
+ "sass": "^1.70.0",
2437
+ "sass-embedded": "^1.70.0",
2438
+ "stylus": ">=0.54.8",
2439
+ "sugarss": "^5.0.0",
2440
+ "terser": "^5.16.0",
2441
+ "tsx": "^4.8.1",
2442
+ "yaml": "^2.4.2"
2443
+ },
2444
+ "peerDependenciesMeta": {
2445
+ "@types/node": {
2446
+ "optional": true
2447
+ },
2448
+ "jiti": {
2449
+ "optional": true
2450
+ },
2451
+ "less": {
2452
+ "optional": true
2453
+ },
2454
+ "lightningcss": {
2455
+ "optional": true
2456
+ },
2457
+ "sass": {
2458
+ "optional": true
2459
+ },
2460
+ "sass-embedded": {
2461
+ "optional": true
2462
+ },
2463
+ "stylus": {
2464
+ "optional": true
2465
+ },
2466
+ "sugarss": {
2467
+ "optional": true
2468
+ },
2469
+ "terser": {
2470
+ "optional": true
2471
+ },
2472
+ "tsx": {
2473
+ "optional": true
2474
+ },
2475
+ "yaml": {
2476
+ "optional": true
2477
+ }
2478
+ }
2479
+ },
2480
+ "node_modules/yallist": {
2481
+ "version": "3.1.1",
2482
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
2483
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
2484
+ "dev": true,
2485
+ "license": "ISC"
2486
+ },
2487
+ "node_modules/zustand": {
2488
+ "version": "5.0.12",
2489
+ "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.12.tgz",
2490
+ "integrity": "sha512-i77ae3aZq4dhMlRhJVCYgMLKuSiZAaUPAct2AksxQ+gOtimhGMdXljRT21P5BNpeT4kXlLIckvkPM029OljD7g==",
2491
+ "license": "MIT",
2492
+ "engines": {
2493
+ "node": ">=12.20.0"
2494
+ },
2495
+ "peerDependencies": {
2496
+ "@types/react": ">=18.0.0",
2497
+ "immer": ">=9.0.6",
2498
+ "react": ">=18.0.0",
2499
+ "use-sync-external-store": ">=1.2.0"
2500
+ },
2501
+ "peerDependenciesMeta": {
2502
+ "@types/react": {
2503
+ "optional": true
2504
+ },
2505
+ "immer": {
2506
+ "optional": true
2507
+ },
2508
+ "react": {
2509
+ "optional": true
2510
+ },
2511
+ "use-sync-external-store": {
2512
+ "optional": true
2513
+ }
2514
+ }
2515
+ }
2516
+ }
2517
+ }