@basicbenframework/core 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (186) hide show
  1. package/.github/workflows/publish.yml +35 -0
  2. package/README.md +588 -0
  3. package/bin/cli.js +8 -0
  4. package/create-basicben-app/index.js +205 -0
  5. package/create-basicben-app/package.json +30 -0
  6. package/create-basicben-app/template/.env.example +24 -0
  7. package/create-basicben-app/template/README.md +59 -0
  8. package/create-basicben-app/template/basicben.config.js +33 -0
  9. package/create-basicben-app/template/index.html +54 -0
  10. package/create-basicben-app/template/migrations/001_create_users.js +15 -0
  11. package/create-basicben-app/template/migrations/002_create_posts.js +18 -0
  12. package/create-basicben-app/template/public/.gitkeep +0 -0
  13. package/create-basicben-app/template/seeds/01_users.js +29 -0
  14. package/create-basicben-app/template/seeds/02_posts.js +43 -0
  15. package/create-basicben-app/template/src/client/components/Alert.jsx +11 -0
  16. package/create-basicben-app/template/src/client/components/Avatar.jsx +11 -0
  17. package/create-basicben-app/template/src/client/components/BackLink.jsx +10 -0
  18. package/create-basicben-app/template/src/client/components/Button.jsx +19 -0
  19. package/create-basicben-app/template/src/client/components/Card.jsx +10 -0
  20. package/create-basicben-app/template/src/client/components/Empty.jsx +6 -0
  21. package/create-basicben-app/template/src/client/components/Input.jsx +12 -0
  22. package/create-basicben-app/template/src/client/components/Loading.jsx +6 -0
  23. package/create-basicben-app/template/src/client/components/Logo.jsx +40 -0
  24. package/create-basicben-app/template/src/client/components/Nav/DarkModeToggle.jsx +23 -0
  25. package/create-basicben-app/template/src/client/components/Nav/DesktopNav.jsx +32 -0
  26. package/create-basicben-app/template/src/client/components/Nav/MobileNav.jsx +107 -0
  27. package/create-basicben-app/template/src/client/components/NavLink.jsx +10 -0
  28. package/create-basicben-app/template/src/client/components/PageHeader.jsx +8 -0
  29. package/create-basicben-app/template/src/client/components/PostCard.jsx +19 -0
  30. package/create-basicben-app/template/src/client/components/Textarea.jsx +12 -0
  31. package/create-basicben-app/template/src/client/components/ThemeContext.jsx +5 -0
  32. package/create-basicben-app/template/src/client/contexts/ToastContext.jsx +94 -0
  33. package/create-basicben-app/template/src/client/layouts/AppLayout.jsx +60 -0
  34. package/create-basicben-app/template/src/client/layouts/AuthLayout.jsx +33 -0
  35. package/create-basicben-app/template/src/client/layouts/DocsLayout.jsx +60 -0
  36. package/create-basicben-app/template/src/client/layouts/RootLayout.jsx +25 -0
  37. package/create-basicben-app/template/src/client/pages/Auth.jsx +55 -0
  38. package/create-basicben-app/template/src/client/pages/Authentication.jsx +236 -0
  39. package/create-basicben-app/template/src/client/pages/Database.jsx +426 -0
  40. package/create-basicben-app/template/src/client/pages/Feed.jsx +34 -0
  41. package/create-basicben-app/template/src/client/pages/FeedPost.jsx +37 -0
  42. package/create-basicben-app/template/src/client/pages/GettingStarted.jsx +136 -0
  43. package/create-basicben-app/template/src/client/pages/Home.jsx +206 -0
  44. package/create-basicben-app/template/src/client/pages/PostForm.jsx +69 -0
  45. package/create-basicben-app/template/src/client/pages/Posts.jsx +59 -0
  46. package/create-basicben-app/template/src/client/pages/Profile.jsx +68 -0
  47. package/create-basicben-app/template/src/client/pages/Routing.jsx +207 -0
  48. package/create-basicben-app/template/src/client/pages/Testing.jsx +251 -0
  49. package/create-basicben-app/template/src/client/pages/Validation.jsx +210 -0
  50. package/create-basicben-app/template/src/controllers/AuthController.js +81 -0
  51. package/create-basicben-app/template/src/controllers/HomeController.js +17 -0
  52. package/create-basicben-app/template/src/controllers/PostController.js +86 -0
  53. package/create-basicben-app/template/src/controllers/ProfileController.js +66 -0
  54. package/create-basicben-app/template/src/helpers/api.js +24 -0
  55. package/create-basicben-app/template/src/main.jsx +9 -0
  56. package/create-basicben-app/template/src/middleware/auth.js +16 -0
  57. package/create-basicben-app/template/src/models/Post.js +63 -0
  58. package/create-basicben-app/template/src/models/User.js +42 -0
  59. package/create-basicben-app/template/src/routes/App.jsx +38 -0
  60. package/create-basicben-app/template/src/routes/api/auth.js +7 -0
  61. package/create-basicben-app/template/src/routes/api/posts.js +15 -0
  62. package/create-basicben-app/template/src/routes/api/profile.js +8 -0
  63. package/create-basicben-app/template/src/server/index.js +16 -0
  64. package/create-basicben-app/template/vite.config.js +18 -0
  65. package/database.sqlite +0 -0
  66. package/my-test-app/.env.example +24 -0
  67. package/my-test-app/README.md +59 -0
  68. package/my-test-app/basicben.config.js +33 -0
  69. package/my-test-app/database.sqlite-shm +0 -0
  70. package/my-test-app/database.sqlite-wal +0 -0
  71. package/my-test-app/index.html +54 -0
  72. package/my-test-app/migrations/001_create_users.js +15 -0
  73. package/my-test-app/migrations/002_create_posts.js +18 -0
  74. package/my-test-app/package-lock.json +2160 -0
  75. package/my-test-app/package.json +29 -0
  76. package/my-test-app/public/.gitkeep +0 -0
  77. package/my-test-app/seeds/01_users.js +29 -0
  78. package/my-test-app/seeds/02_posts.js +43 -0
  79. package/my-test-app/src/client/components/Alert.jsx +11 -0
  80. package/my-test-app/src/client/components/Avatar.jsx +11 -0
  81. package/my-test-app/src/client/components/BackLink.jsx +10 -0
  82. package/my-test-app/src/client/components/Button.jsx +19 -0
  83. package/my-test-app/src/client/components/Card.jsx +10 -0
  84. package/my-test-app/src/client/components/Empty.jsx +6 -0
  85. package/my-test-app/src/client/components/Input.jsx +12 -0
  86. package/my-test-app/src/client/components/Loading.jsx +6 -0
  87. package/my-test-app/src/client/components/Logo.jsx +40 -0
  88. package/my-test-app/src/client/components/Nav/DarkModeToggle.jsx +23 -0
  89. package/my-test-app/src/client/components/Nav/DesktopNav.jsx +32 -0
  90. package/my-test-app/src/client/components/Nav/MobileNav.jsx +107 -0
  91. package/my-test-app/src/client/components/NavLink.jsx +10 -0
  92. package/my-test-app/src/client/components/PageHeader.jsx +8 -0
  93. package/my-test-app/src/client/components/PostCard.jsx +19 -0
  94. package/my-test-app/src/client/components/Textarea.jsx +12 -0
  95. package/my-test-app/src/client/components/ThemeContext.jsx +5 -0
  96. package/my-test-app/src/client/contexts/AppContext.jsx +13 -0
  97. package/my-test-app/src/client/contexts/ToastContext.jsx +94 -0
  98. package/my-test-app/src/client/layouts/AppLayout.jsx +60 -0
  99. package/my-test-app/src/client/layouts/AuthLayout.jsx +33 -0
  100. package/my-test-app/src/client/layouts/DocsLayout.jsx +60 -0
  101. package/my-test-app/src/client/layouts/RootLayout.jsx +25 -0
  102. package/my-test-app/src/client/pages/Auth.jsx +55 -0
  103. package/my-test-app/src/client/pages/Authentication.jsx +236 -0
  104. package/my-test-app/src/client/pages/Database.jsx +426 -0
  105. package/my-test-app/src/client/pages/Feed.jsx +34 -0
  106. package/my-test-app/src/client/pages/FeedPost.jsx +37 -0
  107. package/my-test-app/src/client/pages/GettingStarted.jsx +136 -0
  108. package/my-test-app/src/client/pages/Home.jsx +206 -0
  109. package/my-test-app/src/client/pages/PostForm.jsx +69 -0
  110. package/my-test-app/src/client/pages/Posts.jsx +59 -0
  111. package/my-test-app/src/client/pages/Profile.jsx +68 -0
  112. package/my-test-app/src/client/pages/Routing.jsx +207 -0
  113. package/my-test-app/src/client/pages/Testing.jsx +251 -0
  114. package/my-test-app/src/client/pages/Validation.jsx +210 -0
  115. package/my-test-app/src/controllers/AuthController.js +81 -0
  116. package/my-test-app/src/controllers/HomeController.js +17 -0
  117. package/my-test-app/src/controllers/PostController.js +86 -0
  118. package/my-test-app/src/controllers/ProfileController.js +66 -0
  119. package/my-test-app/src/helpers/api.js +24 -0
  120. package/my-test-app/src/main.jsx +9 -0
  121. package/my-test-app/src/middleware/auth.js +16 -0
  122. package/my-test-app/src/models/Post.js +63 -0
  123. package/my-test-app/src/models/User.js +42 -0
  124. package/my-test-app/src/routes/App.jsx +38 -0
  125. package/my-test-app/src/routes/api/auth.js +7 -0
  126. package/my-test-app/src/routes/api/posts.js +15 -0
  127. package/my-test-app/src/routes/api/profile.js +8 -0
  128. package/my-test-app/src/server/index.js +16 -0
  129. package/my-test-app/vite.config.js +18 -0
  130. package/package.json +61 -0
  131. package/scripts/test-app.sh +59 -0
  132. package/src/auth/jwt.js +195 -0
  133. package/src/auth/password.js +132 -0
  134. package/src/cli/colors.js +31 -0
  135. package/src/cli/dispatcher.js +168 -0
  136. package/src/cli/parser.js +91 -0
  137. package/src/client/context.js +4 -0
  138. package/src/client/hooks.js +50 -0
  139. package/src/client/index.js +3 -0
  140. package/src/client/router.js +184 -0
  141. package/src/commands/build.js +155 -0
  142. package/src/commands/dev.js +206 -0
  143. package/src/commands/help.js +84 -0
  144. package/src/commands/make-controller.js +36 -0
  145. package/src/commands/make-middleware.js +44 -0
  146. package/src/commands/make-migration.js +51 -0
  147. package/src/commands/make-model.js +38 -0
  148. package/src/commands/make-route.js +36 -0
  149. package/src/commands/make-seed.js +38 -0
  150. package/src/commands/migrate-fresh.js +32 -0
  151. package/src/commands/migrate-rollback.js +30 -0
  152. package/src/commands/migrate-status.js +41 -0
  153. package/src/commands/migrate.js +30 -0
  154. package/src/commands/seed.js +47 -0
  155. package/src/commands/start.js +69 -0
  156. package/src/commands/test.js +46 -0
  157. package/src/db/Grammar.js +125 -0
  158. package/src/db/QueryBuilder.js +476 -0
  159. package/src/db/adapters/neon.js +170 -0
  160. package/src/db/adapters/planetscale.js +146 -0
  161. package/src/db/adapters/postgres.js +166 -0
  162. package/src/db/adapters/sqlite.js +125 -0
  163. package/src/db/adapters/turso.js +165 -0
  164. package/src/db/index.js +156 -0
  165. package/src/db/migrator.js +250 -0
  166. package/src/db/seeder.js +124 -0
  167. package/src/index.js +12 -0
  168. package/src/scaffolding/index.js +152 -0
  169. package/src/server/body-parser.js +159 -0
  170. package/src/server/cors.js +63 -0
  171. package/src/server/default-entry.js +13 -0
  172. package/src/server/http.js +221 -0
  173. package/src/server/index.js +168 -0
  174. package/src/server/loader.js +128 -0
  175. package/src/server/router.js +281 -0
  176. package/src/server/static.js +139 -0
  177. package/src/validation/index.js +436 -0
  178. package/src/vite/config.js +49 -0
  179. package/stubs/controller.stub +48 -0
  180. package/stubs/middleware-auth.stub +29 -0
  181. package/stubs/middleware.stub +9 -0
  182. package/stubs/migration.stub +17 -0
  183. package/stubs/model.stub +77 -0
  184. package/stubs/route.stub +13 -0
  185. package/stubs/seed.stub +16 -0
  186. package/stubs/vite.config.stub +18 -0
@@ -0,0 +1,2160 @@
1
+ {
2
+ "name": "my-test-app",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "my-test-app",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "@basicbenframework/core": "file:..",
12
+ "react": "^19.2.0",
13
+ "react-dom": "^19.2.0"
14
+ },
15
+ "devDependencies": {
16
+ "@vitejs/plugin-react": "^5.1.4",
17
+ "vite": "^7.3.1",
18
+ "vitest": "^4.0.0"
19
+ }
20
+ },
21
+ "..": {
22
+ "name": "@basicbenframework/core",
23
+ "version": "0.1.0",
24
+ "license": "MIT",
25
+ "bin": {
26
+ "basicben": "bin/cli.js"
27
+ },
28
+ "engines": {
29
+ "node": ">=24.14.0"
30
+ },
31
+ "optionalDependencies": {
32
+ "@libsql/client": ">=0.17",
33
+ "@neondatabase/serverless": ">=1.0",
34
+ "@planetscale/database": ">=1",
35
+ "better-sqlite3": ">=12",
36
+ "pg": ">=8"
37
+ },
38
+ "peerDependencies": {
39
+ "@vitejs/plugin-react": ">=5",
40
+ "react": ">=18",
41
+ "react-dom": ">=18",
42
+ "vite": ">=7"
43
+ }
44
+ },
45
+ "node_modules/@babel/code-frame": {
46
+ "version": "7.29.0",
47
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
48
+ "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
49
+ "dev": true,
50
+ "license": "MIT",
51
+ "dependencies": {
52
+ "@babel/helper-validator-identifier": "^7.28.5",
53
+ "js-tokens": "^4.0.0",
54
+ "picocolors": "^1.1.1"
55
+ },
56
+ "engines": {
57
+ "node": ">=6.9.0"
58
+ }
59
+ },
60
+ "node_modules/@babel/compat-data": {
61
+ "version": "7.29.0",
62
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
63
+ "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
64
+ "dev": true,
65
+ "license": "MIT",
66
+ "engines": {
67
+ "node": ">=6.9.0"
68
+ }
69
+ },
70
+ "node_modules/@babel/core": {
71
+ "version": "7.29.0",
72
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
73
+ "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
74
+ "dev": true,
75
+ "license": "MIT",
76
+ "dependencies": {
77
+ "@babel/code-frame": "^7.29.0",
78
+ "@babel/generator": "^7.29.0",
79
+ "@babel/helper-compilation-targets": "^7.28.6",
80
+ "@babel/helper-module-transforms": "^7.28.6",
81
+ "@babel/helpers": "^7.28.6",
82
+ "@babel/parser": "^7.29.0",
83
+ "@babel/template": "^7.28.6",
84
+ "@babel/traverse": "^7.29.0",
85
+ "@babel/types": "^7.29.0",
86
+ "@jridgewell/remapping": "^2.3.5",
87
+ "convert-source-map": "^2.0.0",
88
+ "debug": "^4.1.0",
89
+ "gensync": "^1.0.0-beta.2",
90
+ "json5": "^2.2.3",
91
+ "semver": "^6.3.1"
92
+ },
93
+ "engines": {
94
+ "node": ">=6.9.0"
95
+ },
96
+ "funding": {
97
+ "type": "opencollective",
98
+ "url": "https://opencollective.com/babel"
99
+ }
100
+ },
101
+ "node_modules/@babel/generator": {
102
+ "version": "7.29.1",
103
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
104
+ "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
105
+ "dev": true,
106
+ "license": "MIT",
107
+ "dependencies": {
108
+ "@babel/parser": "^7.29.0",
109
+ "@babel/types": "^7.29.0",
110
+ "@jridgewell/gen-mapping": "^0.3.12",
111
+ "@jridgewell/trace-mapping": "^0.3.28",
112
+ "jsesc": "^3.0.2"
113
+ },
114
+ "engines": {
115
+ "node": ">=6.9.0"
116
+ }
117
+ },
118
+ "node_modules/@babel/helper-compilation-targets": {
119
+ "version": "7.28.6",
120
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
121
+ "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
122
+ "dev": true,
123
+ "license": "MIT",
124
+ "dependencies": {
125
+ "@babel/compat-data": "^7.28.6",
126
+ "@babel/helper-validator-option": "^7.27.1",
127
+ "browserslist": "^4.24.0",
128
+ "lru-cache": "^5.1.1",
129
+ "semver": "^6.3.1"
130
+ },
131
+ "engines": {
132
+ "node": ">=6.9.0"
133
+ }
134
+ },
135
+ "node_modules/@babel/helper-globals": {
136
+ "version": "7.28.0",
137
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
138
+ "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
139
+ "dev": true,
140
+ "license": "MIT",
141
+ "engines": {
142
+ "node": ">=6.9.0"
143
+ }
144
+ },
145
+ "node_modules/@babel/helper-module-imports": {
146
+ "version": "7.28.6",
147
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
148
+ "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
149
+ "dev": true,
150
+ "license": "MIT",
151
+ "dependencies": {
152
+ "@babel/traverse": "^7.28.6",
153
+ "@babel/types": "^7.28.6"
154
+ },
155
+ "engines": {
156
+ "node": ">=6.9.0"
157
+ }
158
+ },
159
+ "node_modules/@babel/helper-module-transforms": {
160
+ "version": "7.28.6",
161
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
162
+ "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
163
+ "dev": true,
164
+ "license": "MIT",
165
+ "dependencies": {
166
+ "@babel/helper-module-imports": "^7.28.6",
167
+ "@babel/helper-validator-identifier": "^7.28.5",
168
+ "@babel/traverse": "^7.28.6"
169
+ },
170
+ "engines": {
171
+ "node": ">=6.9.0"
172
+ },
173
+ "peerDependencies": {
174
+ "@babel/core": "^7.0.0"
175
+ }
176
+ },
177
+ "node_modules/@babel/helper-plugin-utils": {
178
+ "version": "7.28.6",
179
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz",
180
+ "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
181
+ "dev": true,
182
+ "license": "MIT",
183
+ "engines": {
184
+ "node": ">=6.9.0"
185
+ }
186
+ },
187
+ "node_modules/@babel/helper-string-parser": {
188
+ "version": "7.27.1",
189
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
190
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
191
+ "dev": true,
192
+ "license": "MIT",
193
+ "engines": {
194
+ "node": ">=6.9.0"
195
+ }
196
+ },
197
+ "node_modules/@babel/helper-validator-identifier": {
198
+ "version": "7.28.5",
199
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
200
+ "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
201
+ "dev": true,
202
+ "license": "MIT",
203
+ "engines": {
204
+ "node": ">=6.9.0"
205
+ }
206
+ },
207
+ "node_modules/@babel/helper-validator-option": {
208
+ "version": "7.27.1",
209
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
210
+ "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
211
+ "dev": true,
212
+ "license": "MIT",
213
+ "engines": {
214
+ "node": ">=6.9.0"
215
+ }
216
+ },
217
+ "node_modules/@babel/helpers": {
218
+ "version": "7.28.6",
219
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz",
220
+ "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==",
221
+ "dev": true,
222
+ "license": "MIT",
223
+ "dependencies": {
224
+ "@babel/template": "^7.28.6",
225
+ "@babel/types": "^7.28.6"
226
+ },
227
+ "engines": {
228
+ "node": ">=6.9.0"
229
+ }
230
+ },
231
+ "node_modules/@babel/parser": {
232
+ "version": "7.29.0",
233
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.0.tgz",
234
+ "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
235
+ "dev": true,
236
+ "license": "MIT",
237
+ "dependencies": {
238
+ "@babel/types": "^7.29.0"
239
+ },
240
+ "bin": {
241
+ "parser": "bin/babel-parser.js"
242
+ },
243
+ "engines": {
244
+ "node": ">=6.0.0"
245
+ }
246
+ },
247
+ "node_modules/@babel/plugin-transform-react-jsx-self": {
248
+ "version": "7.27.1",
249
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
250
+ "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
251
+ "dev": true,
252
+ "license": "MIT",
253
+ "dependencies": {
254
+ "@babel/helper-plugin-utils": "^7.27.1"
255
+ },
256
+ "engines": {
257
+ "node": ">=6.9.0"
258
+ },
259
+ "peerDependencies": {
260
+ "@babel/core": "^7.0.0-0"
261
+ }
262
+ },
263
+ "node_modules/@babel/plugin-transform-react-jsx-source": {
264
+ "version": "7.27.1",
265
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
266
+ "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
267
+ "dev": true,
268
+ "license": "MIT",
269
+ "dependencies": {
270
+ "@babel/helper-plugin-utils": "^7.27.1"
271
+ },
272
+ "engines": {
273
+ "node": ">=6.9.0"
274
+ },
275
+ "peerDependencies": {
276
+ "@babel/core": "^7.0.0-0"
277
+ }
278
+ },
279
+ "node_modules/@babel/template": {
280
+ "version": "7.28.6",
281
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
282
+ "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
283
+ "dev": true,
284
+ "license": "MIT",
285
+ "dependencies": {
286
+ "@babel/code-frame": "^7.28.6",
287
+ "@babel/parser": "^7.28.6",
288
+ "@babel/types": "^7.28.6"
289
+ },
290
+ "engines": {
291
+ "node": ">=6.9.0"
292
+ }
293
+ },
294
+ "node_modules/@babel/traverse": {
295
+ "version": "7.29.0",
296
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
297
+ "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
298
+ "dev": true,
299
+ "license": "MIT",
300
+ "dependencies": {
301
+ "@babel/code-frame": "^7.29.0",
302
+ "@babel/generator": "^7.29.0",
303
+ "@babel/helper-globals": "^7.28.0",
304
+ "@babel/parser": "^7.29.0",
305
+ "@babel/template": "^7.28.6",
306
+ "@babel/types": "^7.29.0",
307
+ "debug": "^4.3.1"
308
+ },
309
+ "engines": {
310
+ "node": ">=6.9.0"
311
+ }
312
+ },
313
+ "node_modules/@babel/types": {
314
+ "version": "7.29.0",
315
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
316
+ "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
317
+ "dev": true,
318
+ "license": "MIT",
319
+ "dependencies": {
320
+ "@babel/helper-string-parser": "^7.27.1",
321
+ "@babel/helper-validator-identifier": "^7.28.5"
322
+ },
323
+ "engines": {
324
+ "node": ">=6.9.0"
325
+ }
326
+ },
327
+ "node_modules/@basicbenframework/core": {
328
+ "resolved": "..",
329
+ "link": true
330
+ },
331
+ "node_modules/@esbuild/aix-ppc64": {
332
+ "version": "0.27.3",
333
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz",
334
+ "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==",
335
+ "cpu": [
336
+ "ppc64"
337
+ ],
338
+ "dev": true,
339
+ "license": "MIT",
340
+ "optional": true,
341
+ "os": [
342
+ "aix"
343
+ ],
344
+ "engines": {
345
+ "node": ">=18"
346
+ }
347
+ },
348
+ "node_modules/@esbuild/android-arm": {
349
+ "version": "0.27.3",
350
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz",
351
+ "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==",
352
+ "cpu": [
353
+ "arm"
354
+ ],
355
+ "dev": true,
356
+ "license": "MIT",
357
+ "optional": true,
358
+ "os": [
359
+ "android"
360
+ ],
361
+ "engines": {
362
+ "node": ">=18"
363
+ }
364
+ },
365
+ "node_modules/@esbuild/android-arm64": {
366
+ "version": "0.27.3",
367
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz",
368
+ "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==",
369
+ "cpu": [
370
+ "arm64"
371
+ ],
372
+ "dev": true,
373
+ "license": "MIT",
374
+ "optional": true,
375
+ "os": [
376
+ "android"
377
+ ],
378
+ "engines": {
379
+ "node": ">=18"
380
+ }
381
+ },
382
+ "node_modules/@esbuild/android-x64": {
383
+ "version": "0.27.3",
384
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz",
385
+ "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==",
386
+ "cpu": [
387
+ "x64"
388
+ ],
389
+ "dev": true,
390
+ "license": "MIT",
391
+ "optional": true,
392
+ "os": [
393
+ "android"
394
+ ],
395
+ "engines": {
396
+ "node": ">=18"
397
+ }
398
+ },
399
+ "node_modules/@esbuild/darwin-arm64": {
400
+ "version": "0.27.3",
401
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz",
402
+ "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==",
403
+ "cpu": [
404
+ "arm64"
405
+ ],
406
+ "dev": true,
407
+ "license": "MIT",
408
+ "optional": true,
409
+ "os": [
410
+ "darwin"
411
+ ],
412
+ "engines": {
413
+ "node": ">=18"
414
+ }
415
+ },
416
+ "node_modules/@esbuild/darwin-x64": {
417
+ "version": "0.27.3",
418
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz",
419
+ "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==",
420
+ "cpu": [
421
+ "x64"
422
+ ],
423
+ "dev": true,
424
+ "license": "MIT",
425
+ "optional": true,
426
+ "os": [
427
+ "darwin"
428
+ ],
429
+ "engines": {
430
+ "node": ">=18"
431
+ }
432
+ },
433
+ "node_modules/@esbuild/freebsd-arm64": {
434
+ "version": "0.27.3",
435
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz",
436
+ "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==",
437
+ "cpu": [
438
+ "arm64"
439
+ ],
440
+ "dev": true,
441
+ "license": "MIT",
442
+ "optional": true,
443
+ "os": [
444
+ "freebsd"
445
+ ],
446
+ "engines": {
447
+ "node": ">=18"
448
+ }
449
+ },
450
+ "node_modules/@esbuild/freebsd-x64": {
451
+ "version": "0.27.3",
452
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz",
453
+ "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==",
454
+ "cpu": [
455
+ "x64"
456
+ ],
457
+ "dev": true,
458
+ "license": "MIT",
459
+ "optional": true,
460
+ "os": [
461
+ "freebsd"
462
+ ],
463
+ "engines": {
464
+ "node": ">=18"
465
+ }
466
+ },
467
+ "node_modules/@esbuild/linux-arm": {
468
+ "version": "0.27.3",
469
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz",
470
+ "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==",
471
+ "cpu": [
472
+ "arm"
473
+ ],
474
+ "dev": true,
475
+ "license": "MIT",
476
+ "optional": true,
477
+ "os": [
478
+ "linux"
479
+ ],
480
+ "engines": {
481
+ "node": ">=18"
482
+ }
483
+ },
484
+ "node_modules/@esbuild/linux-arm64": {
485
+ "version": "0.27.3",
486
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz",
487
+ "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==",
488
+ "cpu": [
489
+ "arm64"
490
+ ],
491
+ "dev": true,
492
+ "license": "MIT",
493
+ "optional": true,
494
+ "os": [
495
+ "linux"
496
+ ],
497
+ "engines": {
498
+ "node": ">=18"
499
+ }
500
+ },
501
+ "node_modules/@esbuild/linux-ia32": {
502
+ "version": "0.27.3",
503
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz",
504
+ "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==",
505
+ "cpu": [
506
+ "ia32"
507
+ ],
508
+ "dev": true,
509
+ "license": "MIT",
510
+ "optional": true,
511
+ "os": [
512
+ "linux"
513
+ ],
514
+ "engines": {
515
+ "node": ">=18"
516
+ }
517
+ },
518
+ "node_modules/@esbuild/linux-loong64": {
519
+ "version": "0.27.3",
520
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz",
521
+ "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==",
522
+ "cpu": [
523
+ "loong64"
524
+ ],
525
+ "dev": true,
526
+ "license": "MIT",
527
+ "optional": true,
528
+ "os": [
529
+ "linux"
530
+ ],
531
+ "engines": {
532
+ "node": ">=18"
533
+ }
534
+ },
535
+ "node_modules/@esbuild/linux-mips64el": {
536
+ "version": "0.27.3",
537
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz",
538
+ "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==",
539
+ "cpu": [
540
+ "mips64el"
541
+ ],
542
+ "dev": true,
543
+ "license": "MIT",
544
+ "optional": true,
545
+ "os": [
546
+ "linux"
547
+ ],
548
+ "engines": {
549
+ "node": ">=18"
550
+ }
551
+ },
552
+ "node_modules/@esbuild/linux-ppc64": {
553
+ "version": "0.27.3",
554
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz",
555
+ "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==",
556
+ "cpu": [
557
+ "ppc64"
558
+ ],
559
+ "dev": true,
560
+ "license": "MIT",
561
+ "optional": true,
562
+ "os": [
563
+ "linux"
564
+ ],
565
+ "engines": {
566
+ "node": ">=18"
567
+ }
568
+ },
569
+ "node_modules/@esbuild/linux-riscv64": {
570
+ "version": "0.27.3",
571
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz",
572
+ "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==",
573
+ "cpu": [
574
+ "riscv64"
575
+ ],
576
+ "dev": true,
577
+ "license": "MIT",
578
+ "optional": true,
579
+ "os": [
580
+ "linux"
581
+ ],
582
+ "engines": {
583
+ "node": ">=18"
584
+ }
585
+ },
586
+ "node_modules/@esbuild/linux-s390x": {
587
+ "version": "0.27.3",
588
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz",
589
+ "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==",
590
+ "cpu": [
591
+ "s390x"
592
+ ],
593
+ "dev": true,
594
+ "license": "MIT",
595
+ "optional": true,
596
+ "os": [
597
+ "linux"
598
+ ],
599
+ "engines": {
600
+ "node": ">=18"
601
+ }
602
+ },
603
+ "node_modules/@esbuild/linux-x64": {
604
+ "version": "0.27.3",
605
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz",
606
+ "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==",
607
+ "cpu": [
608
+ "x64"
609
+ ],
610
+ "dev": true,
611
+ "license": "MIT",
612
+ "optional": true,
613
+ "os": [
614
+ "linux"
615
+ ],
616
+ "engines": {
617
+ "node": ">=18"
618
+ }
619
+ },
620
+ "node_modules/@esbuild/netbsd-arm64": {
621
+ "version": "0.27.3",
622
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz",
623
+ "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==",
624
+ "cpu": [
625
+ "arm64"
626
+ ],
627
+ "dev": true,
628
+ "license": "MIT",
629
+ "optional": true,
630
+ "os": [
631
+ "netbsd"
632
+ ],
633
+ "engines": {
634
+ "node": ">=18"
635
+ }
636
+ },
637
+ "node_modules/@esbuild/netbsd-x64": {
638
+ "version": "0.27.3",
639
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz",
640
+ "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==",
641
+ "cpu": [
642
+ "x64"
643
+ ],
644
+ "dev": true,
645
+ "license": "MIT",
646
+ "optional": true,
647
+ "os": [
648
+ "netbsd"
649
+ ],
650
+ "engines": {
651
+ "node": ">=18"
652
+ }
653
+ },
654
+ "node_modules/@esbuild/openbsd-arm64": {
655
+ "version": "0.27.3",
656
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz",
657
+ "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==",
658
+ "cpu": [
659
+ "arm64"
660
+ ],
661
+ "dev": true,
662
+ "license": "MIT",
663
+ "optional": true,
664
+ "os": [
665
+ "openbsd"
666
+ ],
667
+ "engines": {
668
+ "node": ">=18"
669
+ }
670
+ },
671
+ "node_modules/@esbuild/openbsd-x64": {
672
+ "version": "0.27.3",
673
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz",
674
+ "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==",
675
+ "cpu": [
676
+ "x64"
677
+ ],
678
+ "dev": true,
679
+ "license": "MIT",
680
+ "optional": true,
681
+ "os": [
682
+ "openbsd"
683
+ ],
684
+ "engines": {
685
+ "node": ">=18"
686
+ }
687
+ },
688
+ "node_modules/@esbuild/openharmony-arm64": {
689
+ "version": "0.27.3",
690
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz",
691
+ "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==",
692
+ "cpu": [
693
+ "arm64"
694
+ ],
695
+ "dev": true,
696
+ "license": "MIT",
697
+ "optional": true,
698
+ "os": [
699
+ "openharmony"
700
+ ],
701
+ "engines": {
702
+ "node": ">=18"
703
+ }
704
+ },
705
+ "node_modules/@esbuild/sunos-x64": {
706
+ "version": "0.27.3",
707
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz",
708
+ "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==",
709
+ "cpu": [
710
+ "x64"
711
+ ],
712
+ "dev": true,
713
+ "license": "MIT",
714
+ "optional": true,
715
+ "os": [
716
+ "sunos"
717
+ ],
718
+ "engines": {
719
+ "node": ">=18"
720
+ }
721
+ },
722
+ "node_modules/@esbuild/win32-arm64": {
723
+ "version": "0.27.3",
724
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz",
725
+ "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==",
726
+ "cpu": [
727
+ "arm64"
728
+ ],
729
+ "dev": true,
730
+ "license": "MIT",
731
+ "optional": true,
732
+ "os": [
733
+ "win32"
734
+ ],
735
+ "engines": {
736
+ "node": ">=18"
737
+ }
738
+ },
739
+ "node_modules/@esbuild/win32-ia32": {
740
+ "version": "0.27.3",
741
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz",
742
+ "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==",
743
+ "cpu": [
744
+ "ia32"
745
+ ],
746
+ "dev": true,
747
+ "license": "MIT",
748
+ "optional": true,
749
+ "os": [
750
+ "win32"
751
+ ],
752
+ "engines": {
753
+ "node": ">=18"
754
+ }
755
+ },
756
+ "node_modules/@esbuild/win32-x64": {
757
+ "version": "0.27.3",
758
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz",
759
+ "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==",
760
+ "cpu": [
761
+ "x64"
762
+ ],
763
+ "dev": true,
764
+ "license": "MIT",
765
+ "optional": true,
766
+ "os": [
767
+ "win32"
768
+ ],
769
+ "engines": {
770
+ "node": ">=18"
771
+ }
772
+ },
773
+ "node_modules/@jridgewell/gen-mapping": {
774
+ "version": "0.3.13",
775
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
776
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
777
+ "dev": true,
778
+ "license": "MIT",
779
+ "dependencies": {
780
+ "@jridgewell/sourcemap-codec": "^1.5.0",
781
+ "@jridgewell/trace-mapping": "^0.3.24"
782
+ }
783
+ },
784
+ "node_modules/@jridgewell/remapping": {
785
+ "version": "2.3.5",
786
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
787
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
788
+ "dev": true,
789
+ "license": "MIT",
790
+ "dependencies": {
791
+ "@jridgewell/gen-mapping": "^0.3.5",
792
+ "@jridgewell/trace-mapping": "^0.3.24"
793
+ }
794
+ },
795
+ "node_modules/@jridgewell/resolve-uri": {
796
+ "version": "3.1.2",
797
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
798
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
799
+ "dev": true,
800
+ "license": "MIT",
801
+ "engines": {
802
+ "node": ">=6.0.0"
803
+ }
804
+ },
805
+ "node_modules/@jridgewell/sourcemap-codec": {
806
+ "version": "1.5.5",
807
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
808
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
809
+ "dev": true,
810
+ "license": "MIT"
811
+ },
812
+ "node_modules/@jridgewell/trace-mapping": {
813
+ "version": "0.3.31",
814
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
815
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
816
+ "dev": true,
817
+ "license": "MIT",
818
+ "dependencies": {
819
+ "@jridgewell/resolve-uri": "^3.1.0",
820
+ "@jridgewell/sourcemap-codec": "^1.4.14"
821
+ }
822
+ },
823
+ "node_modules/@rolldown/pluginutils": {
824
+ "version": "1.0.0-rc.3",
825
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.3.tgz",
826
+ "integrity": "sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==",
827
+ "dev": true,
828
+ "license": "MIT"
829
+ },
830
+ "node_modules/@rollup/rollup-android-arm-eabi": {
831
+ "version": "4.59.0",
832
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz",
833
+ "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==",
834
+ "cpu": [
835
+ "arm"
836
+ ],
837
+ "dev": true,
838
+ "license": "MIT",
839
+ "optional": true,
840
+ "os": [
841
+ "android"
842
+ ]
843
+ },
844
+ "node_modules/@rollup/rollup-android-arm64": {
845
+ "version": "4.59.0",
846
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz",
847
+ "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==",
848
+ "cpu": [
849
+ "arm64"
850
+ ],
851
+ "dev": true,
852
+ "license": "MIT",
853
+ "optional": true,
854
+ "os": [
855
+ "android"
856
+ ]
857
+ },
858
+ "node_modules/@rollup/rollup-darwin-arm64": {
859
+ "version": "4.59.0",
860
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz",
861
+ "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==",
862
+ "cpu": [
863
+ "arm64"
864
+ ],
865
+ "dev": true,
866
+ "license": "MIT",
867
+ "optional": true,
868
+ "os": [
869
+ "darwin"
870
+ ]
871
+ },
872
+ "node_modules/@rollup/rollup-darwin-x64": {
873
+ "version": "4.59.0",
874
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz",
875
+ "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==",
876
+ "cpu": [
877
+ "x64"
878
+ ],
879
+ "dev": true,
880
+ "license": "MIT",
881
+ "optional": true,
882
+ "os": [
883
+ "darwin"
884
+ ]
885
+ },
886
+ "node_modules/@rollup/rollup-freebsd-arm64": {
887
+ "version": "4.59.0",
888
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz",
889
+ "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==",
890
+ "cpu": [
891
+ "arm64"
892
+ ],
893
+ "dev": true,
894
+ "license": "MIT",
895
+ "optional": true,
896
+ "os": [
897
+ "freebsd"
898
+ ]
899
+ },
900
+ "node_modules/@rollup/rollup-freebsd-x64": {
901
+ "version": "4.59.0",
902
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz",
903
+ "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==",
904
+ "cpu": [
905
+ "x64"
906
+ ],
907
+ "dev": true,
908
+ "license": "MIT",
909
+ "optional": true,
910
+ "os": [
911
+ "freebsd"
912
+ ]
913
+ },
914
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
915
+ "version": "4.59.0",
916
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz",
917
+ "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==",
918
+ "cpu": [
919
+ "arm"
920
+ ],
921
+ "dev": true,
922
+ "license": "MIT",
923
+ "optional": true,
924
+ "os": [
925
+ "linux"
926
+ ]
927
+ },
928
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
929
+ "version": "4.59.0",
930
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz",
931
+ "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==",
932
+ "cpu": [
933
+ "arm"
934
+ ],
935
+ "dev": true,
936
+ "license": "MIT",
937
+ "optional": true,
938
+ "os": [
939
+ "linux"
940
+ ]
941
+ },
942
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
943
+ "version": "4.59.0",
944
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz",
945
+ "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==",
946
+ "cpu": [
947
+ "arm64"
948
+ ],
949
+ "dev": true,
950
+ "license": "MIT",
951
+ "optional": true,
952
+ "os": [
953
+ "linux"
954
+ ]
955
+ },
956
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
957
+ "version": "4.59.0",
958
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz",
959
+ "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==",
960
+ "cpu": [
961
+ "arm64"
962
+ ],
963
+ "dev": true,
964
+ "license": "MIT",
965
+ "optional": true,
966
+ "os": [
967
+ "linux"
968
+ ]
969
+ },
970
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
971
+ "version": "4.59.0",
972
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz",
973
+ "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==",
974
+ "cpu": [
975
+ "loong64"
976
+ ],
977
+ "dev": true,
978
+ "license": "MIT",
979
+ "optional": true,
980
+ "os": [
981
+ "linux"
982
+ ]
983
+ },
984
+ "node_modules/@rollup/rollup-linux-loong64-musl": {
985
+ "version": "4.59.0",
986
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz",
987
+ "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==",
988
+ "cpu": [
989
+ "loong64"
990
+ ],
991
+ "dev": true,
992
+ "license": "MIT",
993
+ "optional": true,
994
+ "os": [
995
+ "linux"
996
+ ]
997
+ },
998
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
999
+ "version": "4.59.0",
1000
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz",
1001
+ "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==",
1002
+ "cpu": [
1003
+ "ppc64"
1004
+ ],
1005
+ "dev": true,
1006
+ "license": "MIT",
1007
+ "optional": true,
1008
+ "os": [
1009
+ "linux"
1010
+ ]
1011
+ },
1012
+ "node_modules/@rollup/rollup-linux-ppc64-musl": {
1013
+ "version": "4.59.0",
1014
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz",
1015
+ "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==",
1016
+ "cpu": [
1017
+ "ppc64"
1018
+ ],
1019
+ "dev": true,
1020
+ "license": "MIT",
1021
+ "optional": true,
1022
+ "os": [
1023
+ "linux"
1024
+ ]
1025
+ },
1026
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
1027
+ "version": "4.59.0",
1028
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz",
1029
+ "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==",
1030
+ "cpu": [
1031
+ "riscv64"
1032
+ ],
1033
+ "dev": true,
1034
+ "license": "MIT",
1035
+ "optional": true,
1036
+ "os": [
1037
+ "linux"
1038
+ ]
1039
+ },
1040
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
1041
+ "version": "4.59.0",
1042
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz",
1043
+ "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==",
1044
+ "cpu": [
1045
+ "riscv64"
1046
+ ],
1047
+ "dev": true,
1048
+ "license": "MIT",
1049
+ "optional": true,
1050
+ "os": [
1051
+ "linux"
1052
+ ]
1053
+ },
1054
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
1055
+ "version": "4.59.0",
1056
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz",
1057
+ "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==",
1058
+ "cpu": [
1059
+ "s390x"
1060
+ ],
1061
+ "dev": true,
1062
+ "license": "MIT",
1063
+ "optional": true,
1064
+ "os": [
1065
+ "linux"
1066
+ ]
1067
+ },
1068
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
1069
+ "version": "4.59.0",
1070
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz",
1071
+ "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==",
1072
+ "cpu": [
1073
+ "x64"
1074
+ ],
1075
+ "dev": true,
1076
+ "license": "MIT",
1077
+ "optional": true,
1078
+ "os": [
1079
+ "linux"
1080
+ ]
1081
+ },
1082
+ "node_modules/@rollup/rollup-linux-x64-musl": {
1083
+ "version": "4.59.0",
1084
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz",
1085
+ "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==",
1086
+ "cpu": [
1087
+ "x64"
1088
+ ],
1089
+ "dev": true,
1090
+ "license": "MIT",
1091
+ "optional": true,
1092
+ "os": [
1093
+ "linux"
1094
+ ]
1095
+ },
1096
+ "node_modules/@rollup/rollup-openbsd-x64": {
1097
+ "version": "4.59.0",
1098
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz",
1099
+ "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==",
1100
+ "cpu": [
1101
+ "x64"
1102
+ ],
1103
+ "dev": true,
1104
+ "license": "MIT",
1105
+ "optional": true,
1106
+ "os": [
1107
+ "openbsd"
1108
+ ]
1109
+ },
1110
+ "node_modules/@rollup/rollup-openharmony-arm64": {
1111
+ "version": "4.59.0",
1112
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz",
1113
+ "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==",
1114
+ "cpu": [
1115
+ "arm64"
1116
+ ],
1117
+ "dev": true,
1118
+ "license": "MIT",
1119
+ "optional": true,
1120
+ "os": [
1121
+ "openharmony"
1122
+ ]
1123
+ },
1124
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
1125
+ "version": "4.59.0",
1126
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz",
1127
+ "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==",
1128
+ "cpu": [
1129
+ "arm64"
1130
+ ],
1131
+ "dev": true,
1132
+ "license": "MIT",
1133
+ "optional": true,
1134
+ "os": [
1135
+ "win32"
1136
+ ]
1137
+ },
1138
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
1139
+ "version": "4.59.0",
1140
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz",
1141
+ "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==",
1142
+ "cpu": [
1143
+ "ia32"
1144
+ ],
1145
+ "dev": true,
1146
+ "license": "MIT",
1147
+ "optional": true,
1148
+ "os": [
1149
+ "win32"
1150
+ ]
1151
+ },
1152
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
1153
+ "version": "4.59.0",
1154
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz",
1155
+ "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==",
1156
+ "cpu": [
1157
+ "x64"
1158
+ ],
1159
+ "dev": true,
1160
+ "license": "MIT",
1161
+ "optional": true,
1162
+ "os": [
1163
+ "win32"
1164
+ ]
1165
+ },
1166
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
1167
+ "version": "4.59.0",
1168
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz",
1169
+ "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==",
1170
+ "cpu": [
1171
+ "x64"
1172
+ ],
1173
+ "dev": true,
1174
+ "license": "MIT",
1175
+ "optional": true,
1176
+ "os": [
1177
+ "win32"
1178
+ ]
1179
+ },
1180
+ "node_modules/@standard-schema/spec": {
1181
+ "version": "1.1.0",
1182
+ "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
1183
+ "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
1184
+ "dev": true,
1185
+ "license": "MIT"
1186
+ },
1187
+ "node_modules/@types/babel__core": {
1188
+ "version": "7.20.5",
1189
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
1190
+ "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
1191
+ "dev": true,
1192
+ "license": "MIT",
1193
+ "dependencies": {
1194
+ "@babel/parser": "^7.20.7",
1195
+ "@babel/types": "^7.20.7",
1196
+ "@types/babel__generator": "*",
1197
+ "@types/babel__template": "*",
1198
+ "@types/babel__traverse": "*"
1199
+ }
1200
+ },
1201
+ "node_modules/@types/babel__generator": {
1202
+ "version": "7.27.0",
1203
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
1204
+ "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
1205
+ "dev": true,
1206
+ "license": "MIT",
1207
+ "dependencies": {
1208
+ "@babel/types": "^7.0.0"
1209
+ }
1210
+ },
1211
+ "node_modules/@types/babel__template": {
1212
+ "version": "7.4.4",
1213
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
1214
+ "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
1215
+ "dev": true,
1216
+ "license": "MIT",
1217
+ "dependencies": {
1218
+ "@babel/parser": "^7.1.0",
1219
+ "@babel/types": "^7.0.0"
1220
+ }
1221
+ },
1222
+ "node_modules/@types/babel__traverse": {
1223
+ "version": "7.28.0",
1224
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
1225
+ "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
1226
+ "dev": true,
1227
+ "license": "MIT",
1228
+ "dependencies": {
1229
+ "@babel/types": "^7.28.2"
1230
+ }
1231
+ },
1232
+ "node_modules/@types/chai": {
1233
+ "version": "5.2.3",
1234
+ "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz",
1235
+ "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==",
1236
+ "dev": true,
1237
+ "license": "MIT",
1238
+ "dependencies": {
1239
+ "@types/deep-eql": "*",
1240
+ "assertion-error": "^2.0.1"
1241
+ }
1242
+ },
1243
+ "node_modules/@types/deep-eql": {
1244
+ "version": "4.0.2",
1245
+ "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz",
1246
+ "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==",
1247
+ "dev": true,
1248
+ "license": "MIT"
1249
+ },
1250
+ "node_modules/@types/estree": {
1251
+ "version": "1.0.8",
1252
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
1253
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
1254
+ "dev": true,
1255
+ "license": "MIT"
1256
+ },
1257
+ "node_modules/@vitejs/plugin-react": {
1258
+ "version": "5.1.4",
1259
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.1.4.tgz",
1260
+ "integrity": "sha512-VIcFLdRi/VYRU8OL/puL7QXMYafHmqOnwTZY50U1JPlCNj30PxCMx65c494b1K9be9hX83KVt0+gTEwTWLqToA==",
1261
+ "dev": true,
1262
+ "license": "MIT",
1263
+ "dependencies": {
1264
+ "@babel/core": "^7.29.0",
1265
+ "@babel/plugin-transform-react-jsx-self": "^7.27.1",
1266
+ "@babel/plugin-transform-react-jsx-source": "^7.27.1",
1267
+ "@rolldown/pluginutils": "1.0.0-rc.3",
1268
+ "@types/babel__core": "^7.20.5",
1269
+ "react-refresh": "^0.18.0"
1270
+ },
1271
+ "engines": {
1272
+ "node": "^20.19.0 || >=22.12.0"
1273
+ },
1274
+ "peerDependencies": {
1275
+ "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
1276
+ }
1277
+ },
1278
+ "node_modules/@vitest/expect": {
1279
+ "version": "4.0.18",
1280
+ "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.0.18.tgz",
1281
+ "integrity": "sha512-8sCWUyckXXYvx4opfzVY03EOiYVxyNrHS5QxX3DAIi5dpJAAkyJezHCP77VMX4HKA2LDT/Jpfo8i2r5BE3GnQQ==",
1282
+ "dev": true,
1283
+ "license": "MIT",
1284
+ "dependencies": {
1285
+ "@standard-schema/spec": "^1.0.0",
1286
+ "@types/chai": "^5.2.2",
1287
+ "@vitest/spy": "4.0.18",
1288
+ "@vitest/utils": "4.0.18",
1289
+ "chai": "^6.2.1",
1290
+ "tinyrainbow": "^3.0.3"
1291
+ },
1292
+ "funding": {
1293
+ "url": "https://opencollective.com/vitest"
1294
+ }
1295
+ },
1296
+ "node_modules/@vitest/mocker": {
1297
+ "version": "4.0.18",
1298
+ "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.0.18.tgz",
1299
+ "integrity": "sha512-HhVd0MDnzzsgevnOWCBj5Otnzobjy5wLBe4EdeeFGv8luMsGcYqDuFRMcttKWZA5vVO8RFjexVovXvAM4JoJDQ==",
1300
+ "dev": true,
1301
+ "license": "MIT",
1302
+ "dependencies": {
1303
+ "@vitest/spy": "4.0.18",
1304
+ "estree-walker": "^3.0.3",
1305
+ "magic-string": "^0.30.21"
1306
+ },
1307
+ "funding": {
1308
+ "url": "https://opencollective.com/vitest"
1309
+ },
1310
+ "peerDependencies": {
1311
+ "msw": "^2.4.9",
1312
+ "vite": "^6.0.0 || ^7.0.0-0"
1313
+ },
1314
+ "peerDependenciesMeta": {
1315
+ "msw": {
1316
+ "optional": true
1317
+ },
1318
+ "vite": {
1319
+ "optional": true
1320
+ }
1321
+ }
1322
+ },
1323
+ "node_modules/@vitest/pretty-format": {
1324
+ "version": "4.0.18",
1325
+ "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.0.18.tgz",
1326
+ "integrity": "sha512-P24GK3GulZWC5tz87ux0m8OADrQIUVDPIjjj65vBXYG17ZeU3qD7r+MNZ1RNv4l8CGU2vtTRqixrOi9fYk/yKw==",
1327
+ "dev": true,
1328
+ "license": "MIT",
1329
+ "dependencies": {
1330
+ "tinyrainbow": "^3.0.3"
1331
+ },
1332
+ "funding": {
1333
+ "url": "https://opencollective.com/vitest"
1334
+ }
1335
+ },
1336
+ "node_modules/@vitest/runner": {
1337
+ "version": "4.0.18",
1338
+ "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.0.18.tgz",
1339
+ "integrity": "sha512-rpk9y12PGa22Jg6g5M3UVVnTS7+zycIGk9ZNGN+m6tZHKQb7jrP7/77WfZy13Y/EUDd52NDsLRQhYKtv7XfPQw==",
1340
+ "dev": true,
1341
+ "license": "MIT",
1342
+ "dependencies": {
1343
+ "@vitest/utils": "4.0.18",
1344
+ "pathe": "^2.0.3"
1345
+ },
1346
+ "funding": {
1347
+ "url": "https://opencollective.com/vitest"
1348
+ }
1349
+ },
1350
+ "node_modules/@vitest/snapshot": {
1351
+ "version": "4.0.18",
1352
+ "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.0.18.tgz",
1353
+ "integrity": "sha512-PCiV0rcl7jKQjbgYqjtakly6T1uwv/5BQ9SwBLekVg/EaYeQFPiXcgrC2Y7vDMA8dM1SUEAEV82kgSQIlXNMvA==",
1354
+ "dev": true,
1355
+ "license": "MIT",
1356
+ "dependencies": {
1357
+ "@vitest/pretty-format": "4.0.18",
1358
+ "magic-string": "^0.30.21",
1359
+ "pathe": "^2.0.3"
1360
+ },
1361
+ "funding": {
1362
+ "url": "https://opencollective.com/vitest"
1363
+ }
1364
+ },
1365
+ "node_modules/@vitest/spy": {
1366
+ "version": "4.0.18",
1367
+ "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.0.18.tgz",
1368
+ "integrity": "sha512-cbQt3PTSD7P2OARdVW3qWER5EGq7PHlvE+QfzSC0lbwO+xnt7+XH06ZzFjFRgzUX//JmpxrCu92VdwvEPlWSNw==",
1369
+ "dev": true,
1370
+ "license": "MIT",
1371
+ "funding": {
1372
+ "url": "https://opencollective.com/vitest"
1373
+ }
1374
+ },
1375
+ "node_modules/@vitest/utils": {
1376
+ "version": "4.0.18",
1377
+ "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.0.18.tgz",
1378
+ "integrity": "sha512-msMRKLMVLWygpK3u2Hybgi4MNjcYJvwTb0Ru09+fOyCXIgT5raYP041DRRdiJiI3k/2U6SEbAETB3YtBrUkCFA==",
1379
+ "dev": true,
1380
+ "license": "MIT",
1381
+ "dependencies": {
1382
+ "@vitest/pretty-format": "4.0.18",
1383
+ "tinyrainbow": "^3.0.3"
1384
+ },
1385
+ "funding": {
1386
+ "url": "https://opencollective.com/vitest"
1387
+ }
1388
+ },
1389
+ "node_modules/assertion-error": {
1390
+ "version": "2.0.1",
1391
+ "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz",
1392
+ "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==",
1393
+ "dev": true,
1394
+ "license": "MIT",
1395
+ "engines": {
1396
+ "node": ">=12"
1397
+ }
1398
+ },
1399
+ "node_modules/baseline-browser-mapping": {
1400
+ "version": "2.10.0",
1401
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.0.tgz",
1402
+ "integrity": "sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==",
1403
+ "dev": true,
1404
+ "license": "Apache-2.0",
1405
+ "bin": {
1406
+ "baseline-browser-mapping": "dist/cli.cjs"
1407
+ },
1408
+ "engines": {
1409
+ "node": ">=6.0.0"
1410
+ }
1411
+ },
1412
+ "node_modules/browserslist": {
1413
+ "version": "4.28.1",
1414
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
1415
+ "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
1416
+ "dev": true,
1417
+ "funding": [
1418
+ {
1419
+ "type": "opencollective",
1420
+ "url": "https://opencollective.com/browserslist"
1421
+ },
1422
+ {
1423
+ "type": "tidelift",
1424
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
1425
+ },
1426
+ {
1427
+ "type": "github",
1428
+ "url": "https://github.com/sponsors/ai"
1429
+ }
1430
+ ],
1431
+ "license": "MIT",
1432
+ "dependencies": {
1433
+ "baseline-browser-mapping": "^2.9.0",
1434
+ "caniuse-lite": "^1.0.30001759",
1435
+ "electron-to-chromium": "^1.5.263",
1436
+ "node-releases": "^2.0.27",
1437
+ "update-browserslist-db": "^1.2.0"
1438
+ },
1439
+ "bin": {
1440
+ "browserslist": "cli.js"
1441
+ },
1442
+ "engines": {
1443
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1444
+ }
1445
+ },
1446
+ "node_modules/caniuse-lite": {
1447
+ "version": "1.0.30001777",
1448
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001777.tgz",
1449
+ "integrity": "sha512-tmN+fJxroPndC74efCdp12j+0rk0RHwV5Jwa1zWaFVyw2ZxAuPeG8ZgWC3Wz7uSjT3qMRQ5XHZ4COgQmsCMJAQ==",
1450
+ "dev": true,
1451
+ "funding": [
1452
+ {
1453
+ "type": "opencollective",
1454
+ "url": "https://opencollective.com/browserslist"
1455
+ },
1456
+ {
1457
+ "type": "tidelift",
1458
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1459
+ },
1460
+ {
1461
+ "type": "github",
1462
+ "url": "https://github.com/sponsors/ai"
1463
+ }
1464
+ ],
1465
+ "license": "CC-BY-4.0"
1466
+ },
1467
+ "node_modules/chai": {
1468
+ "version": "6.2.2",
1469
+ "resolved": "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz",
1470
+ "integrity": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==",
1471
+ "dev": true,
1472
+ "license": "MIT",
1473
+ "engines": {
1474
+ "node": ">=18"
1475
+ }
1476
+ },
1477
+ "node_modules/convert-source-map": {
1478
+ "version": "2.0.0",
1479
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
1480
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
1481
+ "dev": true,
1482
+ "license": "MIT"
1483
+ },
1484
+ "node_modules/debug": {
1485
+ "version": "4.4.3",
1486
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1487
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1488
+ "dev": true,
1489
+ "license": "MIT",
1490
+ "dependencies": {
1491
+ "ms": "^2.1.3"
1492
+ },
1493
+ "engines": {
1494
+ "node": ">=6.0"
1495
+ },
1496
+ "peerDependenciesMeta": {
1497
+ "supports-color": {
1498
+ "optional": true
1499
+ }
1500
+ }
1501
+ },
1502
+ "node_modules/electron-to-chromium": {
1503
+ "version": "1.5.307",
1504
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.307.tgz",
1505
+ "integrity": "sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==",
1506
+ "dev": true,
1507
+ "license": "ISC"
1508
+ },
1509
+ "node_modules/es-module-lexer": {
1510
+ "version": "1.7.0",
1511
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz",
1512
+ "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==",
1513
+ "dev": true,
1514
+ "license": "MIT"
1515
+ },
1516
+ "node_modules/esbuild": {
1517
+ "version": "0.27.3",
1518
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.3.tgz",
1519
+ "integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==",
1520
+ "dev": true,
1521
+ "hasInstallScript": true,
1522
+ "license": "MIT",
1523
+ "bin": {
1524
+ "esbuild": "bin/esbuild"
1525
+ },
1526
+ "engines": {
1527
+ "node": ">=18"
1528
+ },
1529
+ "optionalDependencies": {
1530
+ "@esbuild/aix-ppc64": "0.27.3",
1531
+ "@esbuild/android-arm": "0.27.3",
1532
+ "@esbuild/android-arm64": "0.27.3",
1533
+ "@esbuild/android-x64": "0.27.3",
1534
+ "@esbuild/darwin-arm64": "0.27.3",
1535
+ "@esbuild/darwin-x64": "0.27.3",
1536
+ "@esbuild/freebsd-arm64": "0.27.3",
1537
+ "@esbuild/freebsd-x64": "0.27.3",
1538
+ "@esbuild/linux-arm": "0.27.3",
1539
+ "@esbuild/linux-arm64": "0.27.3",
1540
+ "@esbuild/linux-ia32": "0.27.3",
1541
+ "@esbuild/linux-loong64": "0.27.3",
1542
+ "@esbuild/linux-mips64el": "0.27.3",
1543
+ "@esbuild/linux-ppc64": "0.27.3",
1544
+ "@esbuild/linux-riscv64": "0.27.3",
1545
+ "@esbuild/linux-s390x": "0.27.3",
1546
+ "@esbuild/linux-x64": "0.27.3",
1547
+ "@esbuild/netbsd-arm64": "0.27.3",
1548
+ "@esbuild/netbsd-x64": "0.27.3",
1549
+ "@esbuild/openbsd-arm64": "0.27.3",
1550
+ "@esbuild/openbsd-x64": "0.27.3",
1551
+ "@esbuild/openharmony-arm64": "0.27.3",
1552
+ "@esbuild/sunos-x64": "0.27.3",
1553
+ "@esbuild/win32-arm64": "0.27.3",
1554
+ "@esbuild/win32-ia32": "0.27.3",
1555
+ "@esbuild/win32-x64": "0.27.3"
1556
+ }
1557
+ },
1558
+ "node_modules/escalade": {
1559
+ "version": "3.2.0",
1560
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
1561
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
1562
+ "dev": true,
1563
+ "license": "MIT",
1564
+ "engines": {
1565
+ "node": ">=6"
1566
+ }
1567
+ },
1568
+ "node_modules/estree-walker": {
1569
+ "version": "3.0.3",
1570
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
1571
+ "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
1572
+ "dev": true,
1573
+ "license": "MIT",
1574
+ "dependencies": {
1575
+ "@types/estree": "^1.0.0"
1576
+ }
1577
+ },
1578
+ "node_modules/expect-type": {
1579
+ "version": "1.3.0",
1580
+ "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.3.0.tgz",
1581
+ "integrity": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==",
1582
+ "dev": true,
1583
+ "license": "Apache-2.0",
1584
+ "engines": {
1585
+ "node": ">=12.0.0"
1586
+ }
1587
+ },
1588
+ "node_modules/fdir": {
1589
+ "version": "6.5.0",
1590
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
1591
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
1592
+ "dev": true,
1593
+ "license": "MIT",
1594
+ "engines": {
1595
+ "node": ">=12.0.0"
1596
+ },
1597
+ "peerDependencies": {
1598
+ "picomatch": "^3 || ^4"
1599
+ },
1600
+ "peerDependenciesMeta": {
1601
+ "picomatch": {
1602
+ "optional": true
1603
+ }
1604
+ }
1605
+ },
1606
+ "node_modules/fsevents": {
1607
+ "version": "2.3.3",
1608
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1609
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1610
+ "dev": true,
1611
+ "hasInstallScript": true,
1612
+ "license": "MIT",
1613
+ "optional": true,
1614
+ "os": [
1615
+ "darwin"
1616
+ ],
1617
+ "engines": {
1618
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1619
+ }
1620
+ },
1621
+ "node_modules/gensync": {
1622
+ "version": "1.0.0-beta.2",
1623
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
1624
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
1625
+ "dev": true,
1626
+ "license": "MIT",
1627
+ "engines": {
1628
+ "node": ">=6.9.0"
1629
+ }
1630
+ },
1631
+ "node_modules/js-tokens": {
1632
+ "version": "4.0.0",
1633
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
1634
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
1635
+ "dev": true,
1636
+ "license": "MIT"
1637
+ },
1638
+ "node_modules/jsesc": {
1639
+ "version": "3.1.0",
1640
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
1641
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
1642
+ "dev": true,
1643
+ "license": "MIT",
1644
+ "bin": {
1645
+ "jsesc": "bin/jsesc"
1646
+ },
1647
+ "engines": {
1648
+ "node": ">=6"
1649
+ }
1650
+ },
1651
+ "node_modules/json5": {
1652
+ "version": "2.2.3",
1653
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
1654
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
1655
+ "dev": true,
1656
+ "license": "MIT",
1657
+ "bin": {
1658
+ "json5": "lib/cli.js"
1659
+ },
1660
+ "engines": {
1661
+ "node": ">=6"
1662
+ }
1663
+ },
1664
+ "node_modules/lru-cache": {
1665
+ "version": "5.1.1",
1666
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
1667
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
1668
+ "dev": true,
1669
+ "license": "ISC",
1670
+ "dependencies": {
1671
+ "yallist": "^3.0.2"
1672
+ }
1673
+ },
1674
+ "node_modules/magic-string": {
1675
+ "version": "0.30.21",
1676
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
1677
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
1678
+ "dev": true,
1679
+ "license": "MIT",
1680
+ "dependencies": {
1681
+ "@jridgewell/sourcemap-codec": "^1.5.5"
1682
+ }
1683
+ },
1684
+ "node_modules/ms": {
1685
+ "version": "2.1.3",
1686
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1687
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1688
+ "dev": true,
1689
+ "license": "MIT"
1690
+ },
1691
+ "node_modules/nanoid": {
1692
+ "version": "3.3.11",
1693
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
1694
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
1695
+ "dev": true,
1696
+ "funding": [
1697
+ {
1698
+ "type": "github",
1699
+ "url": "https://github.com/sponsors/ai"
1700
+ }
1701
+ ],
1702
+ "license": "MIT",
1703
+ "bin": {
1704
+ "nanoid": "bin/nanoid.cjs"
1705
+ },
1706
+ "engines": {
1707
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
1708
+ }
1709
+ },
1710
+ "node_modules/node-releases": {
1711
+ "version": "2.0.36",
1712
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz",
1713
+ "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
1714
+ "dev": true,
1715
+ "license": "MIT"
1716
+ },
1717
+ "node_modules/obug": {
1718
+ "version": "2.1.1",
1719
+ "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.1.tgz",
1720
+ "integrity": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==",
1721
+ "dev": true,
1722
+ "funding": [
1723
+ "https://github.com/sponsors/sxzz",
1724
+ "https://opencollective.com/debug"
1725
+ ],
1726
+ "license": "MIT"
1727
+ },
1728
+ "node_modules/pathe": {
1729
+ "version": "2.0.3",
1730
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
1731
+ "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
1732
+ "dev": true,
1733
+ "license": "MIT"
1734
+ },
1735
+ "node_modules/picocolors": {
1736
+ "version": "1.1.1",
1737
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
1738
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
1739
+ "dev": true,
1740
+ "license": "ISC"
1741
+ },
1742
+ "node_modules/picomatch": {
1743
+ "version": "4.0.3",
1744
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
1745
+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
1746
+ "dev": true,
1747
+ "license": "MIT",
1748
+ "engines": {
1749
+ "node": ">=12"
1750
+ },
1751
+ "funding": {
1752
+ "url": "https://github.com/sponsors/jonschlinkert"
1753
+ }
1754
+ },
1755
+ "node_modules/postcss": {
1756
+ "version": "8.5.8",
1757
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
1758
+ "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
1759
+ "dev": true,
1760
+ "funding": [
1761
+ {
1762
+ "type": "opencollective",
1763
+ "url": "https://opencollective.com/postcss/"
1764
+ },
1765
+ {
1766
+ "type": "tidelift",
1767
+ "url": "https://tidelift.com/funding/github/npm/postcss"
1768
+ },
1769
+ {
1770
+ "type": "github",
1771
+ "url": "https://github.com/sponsors/ai"
1772
+ }
1773
+ ],
1774
+ "license": "MIT",
1775
+ "dependencies": {
1776
+ "nanoid": "^3.3.11",
1777
+ "picocolors": "^1.1.1",
1778
+ "source-map-js": "^1.2.1"
1779
+ },
1780
+ "engines": {
1781
+ "node": "^10 || ^12 || >=14"
1782
+ }
1783
+ },
1784
+ "node_modules/react": {
1785
+ "version": "19.2.4",
1786
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
1787
+ "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
1788
+ "license": "MIT",
1789
+ "engines": {
1790
+ "node": ">=0.10.0"
1791
+ }
1792
+ },
1793
+ "node_modules/react-dom": {
1794
+ "version": "19.2.4",
1795
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
1796
+ "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
1797
+ "license": "MIT",
1798
+ "dependencies": {
1799
+ "scheduler": "^0.27.0"
1800
+ },
1801
+ "peerDependencies": {
1802
+ "react": "^19.2.4"
1803
+ }
1804
+ },
1805
+ "node_modules/react-refresh": {
1806
+ "version": "0.18.0",
1807
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz",
1808
+ "integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==",
1809
+ "dev": true,
1810
+ "license": "MIT",
1811
+ "engines": {
1812
+ "node": ">=0.10.0"
1813
+ }
1814
+ },
1815
+ "node_modules/rollup": {
1816
+ "version": "4.59.0",
1817
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.59.0.tgz",
1818
+ "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==",
1819
+ "dev": true,
1820
+ "license": "MIT",
1821
+ "dependencies": {
1822
+ "@types/estree": "1.0.8"
1823
+ },
1824
+ "bin": {
1825
+ "rollup": "dist/bin/rollup"
1826
+ },
1827
+ "engines": {
1828
+ "node": ">=18.0.0",
1829
+ "npm": ">=8.0.0"
1830
+ },
1831
+ "optionalDependencies": {
1832
+ "@rollup/rollup-android-arm-eabi": "4.59.0",
1833
+ "@rollup/rollup-android-arm64": "4.59.0",
1834
+ "@rollup/rollup-darwin-arm64": "4.59.0",
1835
+ "@rollup/rollup-darwin-x64": "4.59.0",
1836
+ "@rollup/rollup-freebsd-arm64": "4.59.0",
1837
+ "@rollup/rollup-freebsd-x64": "4.59.0",
1838
+ "@rollup/rollup-linux-arm-gnueabihf": "4.59.0",
1839
+ "@rollup/rollup-linux-arm-musleabihf": "4.59.0",
1840
+ "@rollup/rollup-linux-arm64-gnu": "4.59.0",
1841
+ "@rollup/rollup-linux-arm64-musl": "4.59.0",
1842
+ "@rollup/rollup-linux-loong64-gnu": "4.59.0",
1843
+ "@rollup/rollup-linux-loong64-musl": "4.59.0",
1844
+ "@rollup/rollup-linux-ppc64-gnu": "4.59.0",
1845
+ "@rollup/rollup-linux-ppc64-musl": "4.59.0",
1846
+ "@rollup/rollup-linux-riscv64-gnu": "4.59.0",
1847
+ "@rollup/rollup-linux-riscv64-musl": "4.59.0",
1848
+ "@rollup/rollup-linux-s390x-gnu": "4.59.0",
1849
+ "@rollup/rollup-linux-x64-gnu": "4.59.0",
1850
+ "@rollup/rollup-linux-x64-musl": "4.59.0",
1851
+ "@rollup/rollup-openbsd-x64": "4.59.0",
1852
+ "@rollup/rollup-openharmony-arm64": "4.59.0",
1853
+ "@rollup/rollup-win32-arm64-msvc": "4.59.0",
1854
+ "@rollup/rollup-win32-ia32-msvc": "4.59.0",
1855
+ "@rollup/rollup-win32-x64-gnu": "4.59.0",
1856
+ "@rollup/rollup-win32-x64-msvc": "4.59.0",
1857
+ "fsevents": "~2.3.2"
1858
+ }
1859
+ },
1860
+ "node_modules/scheduler": {
1861
+ "version": "0.27.0",
1862
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
1863
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
1864
+ "license": "MIT"
1865
+ },
1866
+ "node_modules/semver": {
1867
+ "version": "6.3.1",
1868
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
1869
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
1870
+ "dev": true,
1871
+ "license": "ISC",
1872
+ "bin": {
1873
+ "semver": "bin/semver.js"
1874
+ }
1875
+ },
1876
+ "node_modules/siginfo": {
1877
+ "version": "2.0.0",
1878
+ "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz",
1879
+ "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==",
1880
+ "dev": true,
1881
+ "license": "ISC"
1882
+ },
1883
+ "node_modules/source-map-js": {
1884
+ "version": "1.2.1",
1885
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
1886
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
1887
+ "dev": true,
1888
+ "license": "BSD-3-Clause",
1889
+ "engines": {
1890
+ "node": ">=0.10.0"
1891
+ }
1892
+ },
1893
+ "node_modules/stackback": {
1894
+ "version": "0.0.2",
1895
+ "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz",
1896
+ "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==",
1897
+ "dev": true,
1898
+ "license": "MIT"
1899
+ },
1900
+ "node_modules/std-env": {
1901
+ "version": "3.10.0",
1902
+ "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz",
1903
+ "integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==",
1904
+ "dev": true,
1905
+ "license": "MIT"
1906
+ },
1907
+ "node_modules/tinybench": {
1908
+ "version": "2.9.0",
1909
+ "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz",
1910
+ "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==",
1911
+ "dev": true,
1912
+ "license": "MIT"
1913
+ },
1914
+ "node_modules/tinyexec": {
1915
+ "version": "1.0.2",
1916
+ "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.0.2.tgz",
1917
+ "integrity": "sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==",
1918
+ "dev": true,
1919
+ "license": "MIT",
1920
+ "engines": {
1921
+ "node": ">=18"
1922
+ }
1923
+ },
1924
+ "node_modules/tinyglobby": {
1925
+ "version": "0.2.15",
1926
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
1927
+ "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
1928
+ "dev": true,
1929
+ "license": "MIT",
1930
+ "dependencies": {
1931
+ "fdir": "^6.5.0",
1932
+ "picomatch": "^4.0.3"
1933
+ },
1934
+ "engines": {
1935
+ "node": ">=12.0.0"
1936
+ },
1937
+ "funding": {
1938
+ "url": "https://github.com/sponsors/SuperchupuDev"
1939
+ }
1940
+ },
1941
+ "node_modules/tinyrainbow": {
1942
+ "version": "3.0.3",
1943
+ "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-3.0.3.tgz",
1944
+ "integrity": "sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==",
1945
+ "dev": true,
1946
+ "license": "MIT",
1947
+ "engines": {
1948
+ "node": ">=14.0.0"
1949
+ }
1950
+ },
1951
+ "node_modules/update-browserslist-db": {
1952
+ "version": "1.2.3",
1953
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
1954
+ "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
1955
+ "dev": true,
1956
+ "funding": [
1957
+ {
1958
+ "type": "opencollective",
1959
+ "url": "https://opencollective.com/browserslist"
1960
+ },
1961
+ {
1962
+ "type": "tidelift",
1963
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
1964
+ },
1965
+ {
1966
+ "type": "github",
1967
+ "url": "https://github.com/sponsors/ai"
1968
+ }
1969
+ ],
1970
+ "license": "MIT",
1971
+ "dependencies": {
1972
+ "escalade": "^3.2.0",
1973
+ "picocolors": "^1.1.1"
1974
+ },
1975
+ "bin": {
1976
+ "update-browserslist-db": "cli.js"
1977
+ },
1978
+ "peerDependencies": {
1979
+ "browserslist": ">= 4.21.0"
1980
+ }
1981
+ },
1982
+ "node_modules/vite": {
1983
+ "version": "7.3.1",
1984
+ "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz",
1985
+ "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==",
1986
+ "dev": true,
1987
+ "license": "MIT",
1988
+ "dependencies": {
1989
+ "esbuild": "^0.27.0",
1990
+ "fdir": "^6.5.0",
1991
+ "picomatch": "^4.0.3",
1992
+ "postcss": "^8.5.6",
1993
+ "rollup": "^4.43.0",
1994
+ "tinyglobby": "^0.2.15"
1995
+ },
1996
+ "bin": {
1997
+ "vite": "bin/vite.js"
1998
+ },
1999
+ "engines": {
2000
+ "node": "^20.19.0 || >=22.12.0"
2001
+ },
2002
+ "funding": {
2003
+ "url": "https://github.com/vitejs/vite?sponsor=1"
2004
+ },
2005
+ "optionalDependencies": {
2006
+ "fsevents": "~2.3.3"
2007
+ },
2008
+ "peerDependencies": {
2009
+ "@types/node": "^20.19.0 || >=22.12.0",
2010
+ "jiti": ">=1.21.0",
2011
+ "less": "^4.0.0",
2012
+ "lightningcss": "^1.21.0",
2013
+ "sass": "^1.70.0",
2014
+ "sass-embedded": "^1.70.0",
2015
+ "stylus": ">=0.54.8",
2016
+ "sugarss": "^5.0.0",
2017
+ "terser": "^5.16.0",
2018
+ "tsx": "^4.8.1",
2019
+ "yaml": "^2.4.2"
2020
+ },
2021
+ "peerDependenciesMeta": {
2022
+ "@types/node": {
2023
+ "optional": true
2024
+ },
2025
+ "jiti": {
2026
+ "optional": true
2027
+ },
2028
+ "less": {
2029
+ "optional": true
2030
+ },
2031
+ "lightningcss": {
2032
+ "optional": true
2033
+ },
2034
+ "sass": {
2035
+ "optional": true
2036
+ },
2037
+ "sass-embedded": {
2038
+ "optional": true
2039
+ },
2040
+ "stylus": {
2041
+ "optional": true
2042
+ },
2043
+ "sugarss": {
2044
+ "optional": true
2045
+ },
2046
+ "terser": {
2047
+ "optional": true
2048
+ },
2049
+ "tsx": {
2050
+ "optional": true
2051
+ },
2052
+ "yaml": {
2053
+ "optional": true
2054
+ }
2055
+ }
2056
+ },
2057
+ "node_modules/vitest": {
2058
+ "version": "4.0.18",
2059
+ "resolved": "https://registry.npmjs.org/vitest/-/vitest-4.0.18.tgz",
2060
+ "integrity": "sha512-hOQuK7h0FGKgBAas7v0mSAsnvrIgAvWmRFjmzpJ7SwFHH3g1k2u37JtYwOwmEKhK6ZO3v9ggDBBm0La1LCK4uQ==",
2061
+ "dev": true,
2062
+ "license": "MIT",
2063
+ "dependencies": {
2064
+ "@vitest/expect": "4.0.18",
2065
+ "@vitest/mocker": "4.0.18",
2066
+ "@vitest/pretty-format": "4.0.18",
2067
+ "@vitest/runner": "4.0.18",
2068
+ "@vitest/snapshot": "4.0.18",
2069
+ "@vitest/spy": "4.0.18",
2070
+ "@vitest/utils": "4.0.18",
2071
+ "es-module-lexer": "^1.7.0",
2072
+ "expect-type": "^1.2.2",
2073
+ "magic-string": "^0.30.21",
2074
+ "obug": "^2.1.1",
2075
+ "pathe": "^2.0.3",
2076
+ "picomatch": "^4.0.3",
2077
+ "std-env": "^3.10.0",
2078
+ "tinybench": "^2.9.0",
2079
+ "tinyexec": "^1.0.2",
2080
+ "tinyglobby": "^0.2.15",
2081
+ "tinyrainbow": "^3.0.3",
2082
+ "vite": "^6.0.0 || ^7.0.0",
2083
+ "why-is-node-running": "^2.3.0"
2084
+ },
2085
+ "bin": {
2086
+ "vitest": "vitest.mjs"
2087
+ },
2088
+ "engines": {
2089
+ "node": "^20.0.0 || ^22.0.0 || >=24.0.0"
2090
+ },
2091
+ "funding": {
2092
+ "url": "https://opencollective.com/vitest"
2093
+ },
2094
+ "peerDependencies": {
2095
+ "@edge-runtime/vm": "*",
2096
+ "@opentelemetry/api": "^1.9.0",
2097
+ "@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0",
2098
+ "@vitest/browser-playwright": "4.0.18",
2099
+ "@vitest/browser-preview": "4.0.18",
2100
+ "@vitest/browser-webdriverio": "4.0.18",
2101
+ "@vitest/ui": "4.0.18",
2102
+ "happy-dom": "*",
2103
+ "jsdom": "*"
2104
+ },
2105
+ "peerDependenciesMeta": {
2106
+ "@edge-runtime/vm": {
2107
+ "optional": true
2108
+ },
2109
+ "@opentelemetry/api": {
2110
+ "optional": true
2111
+ },
2112
+ "@types/node": {
2113
+ "optional": true
2114
+ },
2115
+ "@vitest/browser-playwright": {
2116
+ "optional": true
2117
+ },
2118
+ "@vitest/browser-preview": {
2119
+ "optional": true
2120
+ },
2121
+ "@vitest/browser-webdriverio": {
2122
+ "optional": true
2123
+ },
2124
+ "@vitest/ui": {
2125
+ "optional": true
2126
+ },
2127
+ "happy-dom": {
2128
+ "optional": true
2129
+ },
2130
+ "jsdom": {
2131
+ "optional": true
2132
+ }
2133
+ }
2134
+ },
2135
+ "node_modules/why-is-node-running": {
2136
+ "version": "2.3.0",
2137
+ "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz",
2138
+ "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==",
2139
+ "dev": true,
2140
+ "license": "MIT",
2141
+ "dependencies": {
2142
+ "siginfo": "^2.0.0",
2143
+ "stackback": "0.0.2"
2144
+ },
2145
+ "bin": {
2146
+ "why-is-node-running": "cli.js"
2147
+ },
2148
+ "engines": {
2149
+ "node": ">=8"
2150
+ }
2151
+ },
2152
+ "node_modules/yallist": {
2153
+ "version": "3.1.1",
2154
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
2155
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
2156
+ "dev": true,
2157
+ "license": "ISC"
2158
+ }
2159
+ }
2160
+ }