create-appraisejs 0.1.10-alpha.8 → 0.2.0-alpha.1

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 (414) hide show
  1. package/README.md +52 -52
  2. package/dist/cli.e2e.test.d.ts +2 -0
  3. package/dist/cli.e2e.test.d.ts.map +1 -0
  4. package/dist/cli.e2e.test.js +73 -0
  5. package/dist/cli.e2e.test.js.map +1 -0
  6. package/dist/config.test.d.ts +2 -0
  7. package/dist/config.test.d.ts.map +1 -0
  8. package/dist/config.test.js +65 -0
  9. package/dist/config.test.js.map +1 -0
  10. package/dist/copy-template.test.d.ts +2 -0
  11. package/dist/copy-template.test.d.ts.map +1 -0
  12. package/dist/copy-template.test.js +71 -0
  13. package/dist/copy-template.test.js.map +1 -0
  14. package/dist/download-repo.test.d.ts +2 -0
  15. package/dist/download-repo.test.d.ts.map +1 -0
  16. package/dist/download-repo.test.js +14 -0
  17. package/dist/download-repo.test.js.map +1 -0
  18. package/dist/install.test.d.ts +2 -0
  19. package/dist/install.test.d.ts.map +1 -0
  20. package/dist/install.test.js +119 -0
  21. package/dist/install.test.js.map +1 -0
  22. package/dist/prepare-template-utils.d.ts.map +1 -1
  23. package/dist/prepare-template-utils.js +5 -0
  24. package/dist/prepare-template-utils.js.map +1 -1
  25. package/dist/prompts.test.d.ts +2 -0
  26. package/dist/prompts.test.d.ts.map +1 -0
  27. package/dist/prompts.test.js +58 -0
  28. package/dist/prompts.test.js.map +1 -0
  29. package/dist/scaffold-gitignore.d.ts +1 -0
  30. package/dist/scaffold-gitignore.d.ts.map +1 -1
  31. package/dist/scaffold-gitignore.js +3 -0
  32. package/dist/scaffold-gitignore.js.map +1 -1
  33. package/package.json +3 -2
  34. package/templates/default/.appraise-template-meta.json +2 -2
  35. package/templates/default/.env.example +2 -2
  36. package/templates/default/.vscode/settings.json +2 -1
  37. package/templates/default/README.md +53 -53
  38. package/templates/default/automation/mapping/locator-map.json +1 -14
  39. package/templates/default/automation/steps/actions/click.step.ts +58 -58
  40. package/templates/default/automation/steps/actions/hover.step.ts +27 -27
  41. package/templates/default/automation/steps/actions/input.step.ts +84 -84
  42. package/templates/default/automation/steps/actions/navigation.step.ts +70 -70
  43. package/templates/default/automation/steps/actions/random_data.step.ts +142 -142
  44. package/templates/default/automation/steps/actions/store.step.ts +86 -86
  45. package/templates/default/automation/steps/actions/wait.step.ts +90 -90
  46. package/templates/default/automation/steps/validations/active_state_assertion.step.ts +30 -30
  47. package/templates/default/automation/steps/validations/navigation_assertion.step.ts +22 -22
  48. package/templates/default/automation/steps/validations/text_assertion.step.ts +107 -107
  49. package/templates/default/automation/steps/validations/visibility_assertion.step.ts +26 -26
  50. package/templates/default/components.json +24 -24
  51. package/templates/default/cucumber.mjs +16 -16
  52. package/templates/default/eslint.config.mjs +16 -16
  53. package/templates/default/gitignore +3 -0
  54. package/templates/default/next-env.d.ts +6 -6
  55. package/templates/default/next.config.ts +11 -11
  56. package/templates/default/package-lock.json +146 -75
  57. package/templates/default/package.json +2 -1
  58. package/templates/default/packages/cucumber-runtime/package.json +13 -13
  59. package/templates/default/packages/cucumber-runtime/src/cache.util.ts +93 -93
  60. package/templates/default/packages/cucumber-runtime/src/cli.ts +68 -68
  61. package/templates/default/packages/cucumber-runtime/src/environment.util.ts +21 -21
  62. package/templates/default/packages/cucumber-runtime/src/executor.ts +32 -32
  63. package/templates/default/packages/cucumber-runtime/src/hooks.ts +25 -3
  64. package/templates/default/packages/cucumber-runtime/src/index.ts +17 -17
  65. package/templates/default/packages/cucumber-runtime/src/locator.util.ts +234 -234
  66. package/templates/default/packages/cucumber-runtime/src/parameter-types.ts +7 -7
  67. package/templates/default/packages/cucumber-runtime/src/paths.ts +66 -1
  68. package/templates/default/packages/cucumber-runtime/src/random-data.util.ts +35 -35
  69. package/templates/default/packages/cucumber-runtime/src/types.ts +13 -13
  70. package/templates/default/packages/cucumber-runtime/src/world.ts +44 -44
  71. package/templates/default/packages/cucumber-runtime/tsconfig.json +11 -11
  72. package/templates/default/packages/locator-picker-companion/dist/cli.d.ts +1 -0
  73. package/templates/default/packages/locator-picker-companion/dist/cli.js +302 -0
  74. package/templates/default/packages/locator-picker-companion/dist/index.d.ts +3 -0
  75. package/templates/default/packages/locator-picker-companion/dist/index.js +3 -0
  76. package/templates/default/packages/locator-picker-companion/dist/injected-picker-script.d.ts +1 -0
  77. package/templates/default/packages/locator-picker-companion/dist/injected-picker-script.js +615 -0
  78. package/templates/default/packages/locator-picker-companion/dist/launcher.d.ts +11 -0
  79. package/templates/default/packages/locator-picker-companion/dist/launcher.js +59 -0
  80. package/templates/default/packages/locator-picker-companion/dist/selector-generator.d.ts +3 -0
  81. package/templates/default/packages/locator-picker-companion/dist/selector-generator.js +257 -0
  82. package/templates/default/packages/locator-picker-companion/dist/session-file.d.ts +22 -0
  83. package/templates/default/packages/locator-picker-companion/dist/session-file.js +150 -0
  84. package/templates/default/packages/locator-picker-companion/dist/types.d.ts +31 -0
  85. package/templates/default/packages/locator-picker-companion/dist/types.js +1 -0
  86. package/templates/default/packages/locator-picker-companion/package.json +17 -0
  87. package/templates/default/packages/locator-picker-companion/src/cli.ts +428 -0
  88. package/templates/default/packages/locator-picker-companion/src/index.ts +3 -0
  89. package/templates/default/packages/locator-picker-companion/src/injected-picker-script.ts +771 -0
  90. package/templates/default/packages/locator-picker-companion/src/launcher.ts +77 -0
  91. package/templates/default/packages/locator-picker-companion/src/selector-generator.ts +339 -0
  92. package/templates/default/packages/locator-picker-companion/src/session-file.ts +226 -0
  93. package/templates/default/packages/locator-picker-companion/src/types.ts +42 -0
  94. package/templates/default/packages/locator-picker-companion/tsconfig.json +14 -0
  95. package/templates/default/postcss.config.mjs +8 -8
  96. package/templates/default/prisma/dev.db +0 -0
  97. package/templates/default/prisma/migrations/20251104113456_add_type_for_template_step_groups/migration.sql +16 -16
  98. package/templates/default/prisma/migrations/20251104170946_add_tags_to_test_suite_and_test_case/migration.sql +27 -27
  99. package/templates/default/prisma/migrations/20251112190024_add_cascade_delete_to_test_run_test_case/migration.sql +17 -17
  100. package/templates/default/prisma/migrations/20251113181100_add_test_run_log/migration.sql +12 -12
  101. package/templates/default/prisma/migrations/20251119191838_add_tag_type/migration.sql +28 -28
  102. package/templates/default/prisma/migrations/20251121164059_add_conflict_resolution/migration.sql +12 -12
  103. package/templates/default/prisma/migrations/20251223183400_add_report_model_to_db_schema/migration.sql +10 -10
  104. package/templates/default/prisma/migrations/20251223183637_add_report_test_case_entity_for_storing_test_results_for_individual_test_cases/migration.sql +10 -10
  105. package/templates/default/prisma/migrations/20251224083549_add_comprehensive_report_storage/migration.sql +108 -108
  106. package/templates/default/prisma/migrations/20251229194422_migrate_duration_to_string/migration.sql +55 -55
  107. package/templates/default/prisma/migrations/20251230124637_add_unique_constraint_to_test_run_name/migration.sql +27 -27
  108. package/templates/default/prisma/migrations/20260115094436_add_dashboard_metrics/migration.sql +59 -59
  109. package/templates/default/prisma/migrations/20260127172022_add_cascade_delete_to_step_parameters/migration.sql +34 -34
  110. package/templates/default/prisma/migrations/20260313093000_add_report_step_screenshot_path/migration.sql +1 -0
  111. package/templates/default/prisma/migrations/20260318120000_add_test_suite_context_to_test_run_test_case/migration.sql +20 -0
  112. package/templates/default/prisma/migrations/20260318173512_add_support_of_test_suite_level_runs/migration.sql +2 -0
  113. package/templates/default/prisma/schema.prisma +4 -0
  114. package/templates/default/scripts/install-playwright.ts +20 -0
  115. package/templates/default/scripts/protect-seeded-files.ts +38 -38
  116. package/templates/default/scripts/regenerate-features.ts +94 -94
  117. package/templates/default/scripts/setup-env.ts +19 -19
  118. package/templates/default/scripts/sync-all.ts +22 -66
  119. package/templates/default/scripts/sync-appraise-base-template.ts +57 -19
  120. package/templates/default/scripts/sync-environments.ts +40 -21
  121. package/templates/default/scripts/sync-locator-groups.ts +410 -410
  122. package/templates/default/scripts/sync-locators.ts +398 -398
  123. package/templates/default/scripts/sync-modules.ts +341 -341
  124. package/templates/default/scripts/sync-tags.ts +2 -3
  125. package/templates/default/scripts/sync-template-step-groups.ts +0 -3
  126. package/templates/default/scripts/sync-template-steps.ts +37 -11
  127. package/templates/default/scripts/sync-test-cases.ts +68 -16
  128. package/templates/default/scripts/sync-test-suites.ts +7 -5
  129. package/templates/default/src/actions/conflict/conflict.action.ts +33 -33
  130. package/templates/default/src/actions/dashboard/dashboard-actions.ts +240 -240
  131. package/templates/default/src/actions/environments/environment-actions.ts +188 -188
  132. package/templates/default/src/actions/locator/locator-actions.ts +490 -490
  133. package/templates/default/src/actions/locator-groups/locator-group-actions.ts +6 -3
  134. package/templates/default/src/actions/locator-picker/locator-picker-actions.ts +243 -0
  135. package/templates/default/src/actions/modules/module-actions.ts +135 -135
  136. package/templates/default/src/actions/reports/report-actions.ts +51 -49
  137. package/templates/default/src/actions/review/review-actions.ts +147 -147
  138. package/templates/default/src/actions/settings/sync-actions.ts +46 -0
  139. package/templates/default/src/actions/tags/tag-actions.ts +107 -107
  140. package/templates/default/src/actions/template-step/template-step-actions.ts +38 -4
  141. package/templates/default/src/actions/template-step-group/template-step-group-actions.ts +10 -3
  142. package/templates/default/src/actions/template-test-case/template-test-case-actions.ts +238 -238
  143. package/templates/default/src/actions/test-case/test-case-actions.ts +356 -356
  144. package/templates/default/src/actions/test-run/test-run-actions.ts +222 -129
  145. package/templates/default/src/actions/test-suite/test-suite-actions.ts +95 -17
  146. package/templates/default/src/actions/user/user-actions.ts +13 -13
  147. package/templates/default/src/app/(base)/environments/create/page.tsx +28 -28
  148. package/templates/default/src/app/(base)/environments/environment-form.tsx +219 -219
  149. package/templates/default/src/app/(base)/environments/environment-table-columns.tsx +96 -96
  150. package/templates/default/src/app/(base)/environments/environment-table.tsx +24 -24
  151. package/templates/default/src/app/(base)/environments/modify/[id]/page.tsx +46 -46
  152. package/templates/default/src/app/(base)/environments/page.tsx +59 -59
  153. package/templates/default/src/app/(base)/layout.tsx +10 -10
  154. package/templates/default/src/app/(base)/locator-groups/create/page.tsx +44 -44
  155. package/templates/default/src/app/(base)/locator-groups/locator-group-form.tsx +215 -215
  156. package/templates/default/src/app/(base)/locator-groups/locator-group-table-columns.tsx +77 -77
  157. package/templates/default/src/app/(base)/locator-groups/locator-group-table.tsx +28 -28
  158. package/templates/default/src/app/(base)/locator-groups/modify/[id]/page.tsx +46 -46
  159. package/templates/default/src/app/(base)/locator-groups/page.tsx +20 -8
  160. package/templates/default/src/app/(base)/locators/create/create-locator-workspace.tsx +542 -0
  161. package/templates/default/src/app/(base)/locators/create/page.tsx +32 -19
  162. package/templates/default/src/app/(base)/locators/locator-form.tsx +163 -163
  163. package/templates/default/src/app/(base)/locators/locator-table-columns.tsx +73 -73
  164. package/templates/default/src/app/(base)/locators/locator-table.tsx +28 -28
  165. package/templates/default/src/app/(base)/locators/modify/[id]/page.tsx +56 -27
  166. package/templates/default/src/app/(base)/locators/page.tsx +13 -13
  167. package/templates/default/src/app/(base)/locators/picker/page.tsx +7 -0
  168. package/templates/default/src/app/(base)/locators/sync-locators-button.tsx +66 -66
  169. package/templates/default/src/app/(base)/modules/create/page.tsx +34 -34
  170. package/templates/default/src/app/(base)/modules/modify/[id]/page.tsx +46 -46
  171. package/templates/default/src/app/(base)/modules/module-form.tsx +126 -126
  172. package/templates/default/src/app/(base)/modules/module-table-columns.tsx +85 -85
  173. package/templates/default/src/app/(base)/modules/module-table.tsx +24 -24
  174. package/templates/default/src/app/(base)/modules/page.tsx +59 -59
  175. package/templates/default/src/app/(base)/reports/[id]/page.tsx +40 -33
  176. package/templates/default/src/app/(base)/reports/duration-chart.tsx +33 -33
  177. package/templates/default/src/app/(base)/reports/feature-chart.tsx +78 -78
  178. package/templates/default/src/app/(base)/reports/overview-chart.tsx +49 -46
  179. package/templates/default/src/app/(base)/reports/page.tsx +98 -98
  180. package/templates/default/src/app/(base)/reports/report-metric-card.tsx +78 -16
  181. package/templates/default/src/app/(base)/reports/report-table-columns.tsx +189 -189
  182. package/templates/default/src/app/(base)/reports/report-table.tsx +72 -72
  183. package/templates/default/src/app/(base)/reports/report-view-table-columns.tsx +12 -1
  184. package/templates/default/src/app/(base)/reports/report-view-table.tsx +1 -0
  185. package/templates/default/src/app/(base)/reports/test-cases/page.tsx +40 -42
  186. package/templates/default/src/app/(base)/reports/test-cases/test-cases-metric-table-columns.tsx +115 -115
  187. package/templates/default/src/app/(base)/reports/test-cases/test-cases-metric-table.tsx +27 -27
  188. package/templates/default/src/app/(base)/reports/test-suites/page.tsx +42 -42
  189. package/templates/default/src/app/(base)/reports/test-suites/test-suites-metric-table-columns.tsx +79 -79
  190. package/templates/default/src/app/(base)/reports/test-suites/test-suites-metric-table.tsx +27 -27
  191. package/templates/default/src/app/(base)/reports/view-logs-button.tsx +58 -60
  192. package/templates/default/src/app/(base)/reviews/create/page.tsx +26 -26
  193. package/templates/default/src/app/(base)/reviews/created-reviews-table.tsx +15 -15
  194. package/templates/default/src/app/(base)/reviews/modify/[id]/page.tsx +26 -26
  195. package/templates/default/src/app/(base)/reviews/page.tsx +26 -26
  196. package/templates/default/src/app/(base)/reviews/review/[id]/page.tsx +26 -26
  197. package/templates/default/src/app/(base)/reviews/review-form.tsx +11 -11
  198. package/templates/default/src/app/(base)/reviews/review-table-by-creator-columns.tsx +9 -9
  199. package/templates/default/src/app/(base)/reviews/review-table-by-reviewer-columns.tsx +9 -9
  200. package/templates/default/src/app/(base)/reviews/reviewer-reviews-table.tsx +15 -15
  201. package/templates/default/src/app/(base)/settings/page.tsx +30 -0
  202. package/templates/default/src/app/(base)/settings/settings-sync-panel.tsx +261 -0
  203. package/templates/default/src/app/(base)/tags/create/page.tsx +39 -39
  204. package/templates/default/src/app/(base)/tags/modify/[id]/page.tsx +50 -50
  205. package/templates/default/src/app/(base)/tags/page.tsx +58 -58
  206. package/templates/default/src/app/(base)/tags/tag-form.tsx +147 -147
  207. package/templates/default/src/app/(base)/tags/tag-table-columns.tsx +63 -63
  208. package/templates/default/src/app/(base)/tags/tag-table.tsx +29 -29
  209. package/templates/default/src/app/(base)/template-step-groups/create/page.tsx +28 -28
  210. package/templates/default/src/app/(base)/template-step-groups/modify/[id]/page.tsx +45 -45
  211. package/templates/default/src/app/(base)/template-step-groups/page.tsx +60 -60
  212. package/templates/default/src/app/(base)/template-step-groups/template-step-group-form.tsx +167 -167
  213. package/templates/default/src/app/(base)/template-step-groups/template-step-group-table-columns.tsx +89 -89
  214. package/templates/default/src/app/(base)/template-step-groups/template-step-group-table.tsx +32 -32
  215. package/templates/default/src/app/(base)/template-steps/create/page.tsx +37 -37
  216. package/templates/default/src/app/(base)/template-steps/modify/[id]/page.tsx +49 -49
  217. package/templates/default/src/app/(base)/template-steps/page.tsx +58 -58
  218. package/templates/default/src/app/(base)/template-steps/paramChip.tsx +213 -213
  219. package/templates/default/src/app/(base)/template-steps/template-step-form.tsx +384 -384
  220. package/templates/default/src/app/(base)/template-steps/template-step-table-columns.tsx +158 -158
  221. package/templates/default/src/app/(base)/template-steps/template-step-table.tsx +24 -24
  222. package/templates/default/src/app/(base)/template-test-cases/create/page.tsx +56 -56
  223. package/templates/default/src/app/(base)/template-test-cases/modify/[id]/page.tsx +89 -89
  224. package/templates/default/src/app/(base)/template-test-cases/page.tsx +58 -58
  225. package/templates/default/src/app/(base)/template-test-cases/template-test-case-flow.tsx +84 -84
  226. package/templates/default/src/app/(base)/template-test-cases/template-test-case-form.tsx +262 -262
  227. package/templates/default/src/app/(base)/template-test-cases/template-test-case-table-columns.tsx +76 -76
  228. package/templates/default/src/app/(base)/template-test-cases/template-test-case-table.tsx +32 -32
  229. package/templates/default/src/app/(base)/test-cases/create/page.tsx +76 -76
  230. package/templates/default/src/app/(base)/test-cases/create-from-template/generate/[id]/page.tsx +96 -96
  231. package/templates/default/src/app/(base)/test-cases/create-from-template/page.tsx +38 -38
  232. package/templates/default/src/app/(base)/test-cases/create-from-template/template-selection-form.tsx +73 -73
  233. package/templates/default/src/app/(base)/test-cases/modify/[id]/page.tsx +106 -106
  234. package/templates/default/src/app/(base)/test-cases/page.tsx +2 -2
  235. package/templates/default/src/app/(base)/test-cases/test-case-flow.tsx +82 -82
  236. package/templates/default/src/app/(base)/test-cases/test-case-form.tsx +395 -395
  237. package/templates/default/src/app/(base)/test-cases/test-case-table-columns.tsx +6 -71
  238. package/templates/default/src/app/(base)/test-cases/test-case-table.tsx +2 -2
  239. package/templates/default/src/app/(base)/test-runs/[id]/page.tsx +4 -1
  240. package/templates/default/src/app/(base)/test-runs/create/page.tsx +11 -9
  241. package/templates/default/src/app/(base)/test-runs/page.tsx +60 -60
  242. package/templates/default/src/app/(base)/test-runs/test-run-form.tsx +37 -44
  243. package/templates/default/src/app/(base)/test-runs/test-run-table-columns.tsx +229 -229
  244. package/templates/default/src/app/(base)/test-runs/test-run-table.tsx +127 -127
  245. package/templates/default/src/app/(base)/test-suites/create/page.tsx +3 -2
  246. package/templates/default/src/app/(base)/test-suites/modify/[id]/page.tsx +2 -1
  247. package/templates/default/src/app/(base)/test-suites/page.tsx +57 -21
  248. package/templates/default/src/app/(base)/test-suites/test-suite-form.tsx +16 -17
  249. package/templates/default/src/app/(base)/test-suites/test-suite-table-columns.tsx +2 -1
  250. package/templates/default/src/app/(base)/test-suites/test-suite-table.tsx +29 -29
  251. package/templates/default/src/app/(dashboard-components)/app-drawer.tsx +187 -187
  252. package/templates/default/src/app/(dashboard-components)/data-card-grid.tsx +12 -12
  253. package/templates/default/src/app/(dashboard-components)/data-card.tsx +26 -26
  254. package/templates/default/src/app/(dashboard-components)/execution-health-panel.tsx +56 -56
  255. package/templates/default/src/app/(dashboard-components)/ongoing-test-runs-card.tsx +87 -87
  256. package/templates/default/src/app/(dashboard-components)/quick-actions-drawer.tsx +44 -44
  257. package/templates/default/src/app/api/reports/steps/[stepId]/screenshot/route.ts +52 -0
  258. package/templates/default/src/app/api/test-runs/[runId]/download/route.ts +97 -34
  259. package/templates/default/src/app/api/test-runs/[runId]/logs/route.ts +4 -1
  260. package/templates/default/src/app/api/test-runs/[runId]/trace/[testCaseId]/route.ts +146 -147
  261. package/templates/default/src/app/globals.css +147 -147
  262. package/templates/default/src/app/layout.tsx +4 -0
  263. package/templates/default/src/app/page.tsx +2 -0
  264. package/templates/default/src/assets/icons/empty-tube.tsx +23 -23
  265. package/templates/default/src/assets/icons/tube-plus.tsx +29 -29
  266. package/templates/default/src/components/base-node.tsx +21 -21
  267. package/templates/default/src/components/chart/pie-chart.tsx +73 -73
  268. package/templates/default/src/components/data-extraction/locator-inspector.tsx +460 -460
  269. package/templates/default/src/components/data-state/empty-state.tsx +40 -40
  270. package/templates/default/src/components/data-visualization/info-card.tsx +70 -70
  271. package/templates/default/src/components/data-visualization/info-grid.tsx +22 -22
  272. package/templates/default/src/components/diagram/button-edge.tsx +54 -54
  273. package/templates/default/src/components/diagram/dynamic-parameters.tsx +474 -474
  274. package/templates/default/src/components/diagram/edit-header-option.tsx +36 -36
  275. package/templates/default/src/components/diagram/flow-diagram.tsx +470 -470
  276. package/templates/default/src/components/diagram/node-form.tsx +262 -262
  277. package/templates/default/src/components/diagram/options-header-node.tsx +57 -57
  278. package/templates/default/src/components/diagram/template-step-combobox.tsx +155 -155
  279. package/templates/default/src/components/form/error-message.tsx +7 -7
  280. package/templates/default/src/components/kokonutui/smooth-tab.tsx +453 -453
  281. package/templates/default/src/components/loading-skeleton/data-table/data-table-skeleton.tsx +30 -30
  282. package/templates/default/src/components/loading-skeleton/form/button-skeleton.tsx +8 -8
  283. package/templates/default/src/components/loading-skeleton/form/icon-button-skeleton.tsx +8 -8
  284. package/templates/default/src/components/loading-skeleton/form/text-input-skeleton.tsx +8 -8
  285. package/templates/default/src/components/loading-skeleton/visualization/table-skeleton.tsx +14 -14
  286. package/templates/default/src/components/logo.tsx +15 -15
  287. package/templates/default/src/components/navigation/command-badge.tsx +34 -34
  288. package/templates/default/src/components/navigation/command-chain-input.tsx +51 -51
  289. package/templates/default/src/components/navigation/entity-search-command.tsx +116 -116
  290. package/templates/default/src/components/navigation/nav-card.tsx +31 -31
  291. package/templates/default/src/components/navigation/nav-command.tsx +13 -0
  292. package/templates/default/src/components/navigation/nav-link.tsx +60 -60
  293. package/templates/default/src/components/navigation/nav-menu-card-deck.tsx +112 -112
  294. package/templates/default/src/components/node-header.tsx +159 -159
  295. package/templates/default/src/components/reports/test-case-logs-modal.tsx +310 -253
  296. package/templates/default/src/components/table/table-actions.tsx +172 -172
  297. package/templates/default/src/components/test-case/test-case-columns.tsx +76 -0
  298. package/templates/default/src/components/test-case/test-case-picker.tsx +244 -0
  299. package/templates/default/src/components/test-run/download-logs-button.tsx +92 -99
  300. package/templates/default/src/components/test-run/log-viewer.tsx +1 -14
  301. package/templates/default/src/components/test-run/test-run-details.tsx +15 -2
  302. package/templates/default/src/components/test-run/test-run-header.tsx +149 -149
  303. package/templates/default/src/components/test-run/view-report-button.tsx +102 -102
  304. package/templates/default/src/components/test-suite/test-suite-picker.tsx +444 -0
  305. package/templates/default/src/components/theme/mode-toggle.tsx +54 -54
  306. package/templates/default/src/components/theme/theme-provider.tsx +8 -8
  307. package/templates/default/src/components/typography/page-header-subtitle.tsx +7 -7
  308. package/templates/default/src/components/typography/page-header.tsx +7 -7
  309. package/templates/default/src/components/ui/alert-dialog.tsx +106 -106
  310. package/templates/default/src/components/ui/alert.tsx +43 -43
  311. package/templates/default/src/components/ui/avatar.tsx +40 -40
  312. package/templates/default/src/components/ui/badge.tsx +29 -29
  313. package/templates/default/src/components/ui/button.tsx +47 -47
  314. package/templates/default/src/components/ui/calendar.tsx +158 -158
  315. package/templates/default/src/components/ui/card.tsx +43 -43
  316. package/templates/default/src/components/ui/checkbox.tsx +28 -28
  317. package/templates/default/src/components/ui/command.tsx +135 -135
  318. package/templates/default/src/components/ui/data-table-column-header.tsx +61 -61
  319. package/templates/default/src/components/ui/data-table-pagination.tsx +87 -87
  320. package/templates/default/src/components/ui/data-table-view-options.tsx +50 -50
  321. package/templates/default/src/components/ui/data-table.tsx +261 -261
  322. package/templates/default/src/components/ui/dialog.tsx +97 -97
  323. package/templates/default/src/components/ui/dropdown-menu.tsx +182 -182
  324. package/templates/default/src/components/ui/input.tsx +22 -22
  325. package/templates/default/src/components/ui/kbd.tsx +28 -28
  326. package/templates/default/src/components/ui/label.tsx +19 -19
  327. package/templates/default/src/components/ui/loading.tsx +12 -12
  328. package/templates/default/src/components/ui/multi-select-with-preview.tsx +116 -116
  329. package/templates/default/src/components/ui/multi-select.tsx +142 -142
  330. package/templates/default/src/components/ui/navigation-menu.tsx +120 -120
  331. package/templates/default/src/components/ui/popover.tsx +33 -33
  332. package/templates/default/src/components/ui/progress.tsx +25 -25
  333. package/templates/default/src/components/ui/radio-group.tsx +44 -44
  334. package/templates/default/src/components/ui/scroll-area.tsx +40 -40
  335. package/templates/default/src/components/ui/select.tsx +151 -151
  336. package/templates/default/src/components/ui/separator.tsx +22 -22
  337. package/templates/default/src/components/ui/skeleton.tsx +7 -7
  338. package/templates/default/src/components/ui/table.tsx +76 -76
  339. package/templates/default/src/components/ui/tabs.tsx +55 -55
  340. package/templates/default/src/components/ui/textarea.tsx +21 -21
  341. package/templates/default/src/components/ui/toast.tsx +113 -113
  342. package/templates/default/src/components/ui/toaster.tsx +26 -26
  343. package/templates/default/src/components/user-prompt/delete-prompt.tsx +87 -87
  344. package/templates/default/src/config/db-config.ts +10 -10
  345. package/templates/default/src/constants/form-opts/diagram/node-form.ts +30 -30
  346. package/templates/default/src/constants/form-opts/environment-form-opts.ts +24 -24
  347. package/templates/default/src/constants/form-opts/locator-form-opts.ts +20 -20
  348. package/templates/default/src/constants/form-opts/locator-group-form-opts.ts +28 -28
  349. package/templates/default/src/constants/form-opts/module-form-opts.ts +21 -21
  350. package/templates/default/src/constants/form-opts/review-form-opts.ts +23 -23
  351. package/templates/default/src/constants/form-opts/tag-form-opts.ts +42 -42
  352. package/templates/default/src/constants/form-opts/template-selection-form-opts.ts +16 -16
  353. package/templates/default/src/constants/form-opts/template-step-group-form-opts.ts +24 -24
  354. package/templates/default/src/constants/form-opts/template-test-case-form-opts.ts +39 -39
  355. package/templates/default/src/constants/form-opts/template-test-step-form-opts.ts +36 -36
  356. package/templates/default/src/constants/form-opts/test-case-form-opts.ts +43 -43
  357. package/templates/default/src/constants/form-opts/test-run-form-opts.ts +5 -3
  358. package/templates/default/src/constants/form-opts/test-suite-form-opts.ts +24 -24
  359. package/templates/default/src/hooks/use-toast.ts +187 -187
  360. package/templates/default/src/lib/automation/paths.ts +42 -12
  361. package/templates/default/src/lib/automation/projection-service.ts +2 -1
  362. package/templates/default/src/lib/bidirectional-sync.ts +432 -432
  363. package/templates/default/src/lib/database-sync.ts +2 -7
  364. package/templates/default/src/lib/environment-file-utils.ts +184 -184
  365. package/templates/default/src/lib/executor/local-executor-adapter.ts +24 -25
  366. package/templates/default/src/lib/executor/types.ts +2 -2
  367. package/templates/default/src/lib/feature-file-generator.ts +5 -66
  368. package/templates/default/src/lib/gherkin-parser.ts +259 -259
  369. package/templates/default/src/lib/locator-group-file-utils.ts +307 -307
  370. package/templates/default/src/lib/locator-picker/session-manager.ts +452 -0
  371. package/templates/default/src/lib/locator-picker/suggestions.ts +124 -0
  372. package/templates/default/src/lib/metrics/metric-calculator.ts +5 -0
  373. package/templates/default/src/lib/module-hierarchy-builder.ts +205 -205
  374. package/templates/default/src/lib/path-helpers/module-path.ts +71 -71
  375. package/templates/default/src/lib/process/task-spawner.ts +39 -2
  376. package/templates/default/src/lib/sync/projected-feature-utils.ts +113 -0
  377. package/templates/default/src/lib/sync/sync-executor.ts +130 -0
  378. package/templates/default/src/lib/sync/sync-pending-counts.test.ts +239 -0
  379. package/templates/default/src/lib/sync/sync-pending-counts.ts +1358 -0
  380. package/templates/default/src/lib/sync/sync-registry.ts +149 -0
  381. package/templates/default/src/lib/tag-utils.ts +28 -0
  382. package/templates/default/src/lib/template-sync-utils.d.ts +6 -6
  383. package/templates/default/src/lib/template-sync-utils.js +46 -46
  384. package/templates/default/src/lib/template-sync-utils.ts +63 -63
  385. package/templates/default/src/lib/test-case-utils.ts +6 -6
  386. package/templates/default/src/lib/test-run/log-formatter.ts +83 -83
  387. package/templates/default/src/lib/test-run/matching.ts +117 -0
  388. package/templates/default/src/lib/test-run/process-manager.ts +2 -0
  389. package/templates/default/src/lib/test-run/report-parser.ts +352 -316
  390. package/templates/default/src/lib/test-run/test-run-executor.ts +13 -15
  391. package/templates/default/src/lib/test-run/winston-logger.ts +64 -66
  392. package/templates/default/src/lib/test-suite-identifier-service.ts +76 -0
  393. package/templates/default/src/lib/test-suite-utils.ts +6 -0
  394. package/templates/default/src/lib/transformers/gherkin-converter.ts +42 -42
  395. package/templates/default/src/lib/transformers/key-to-icon-transformer.tsx +95 -95
  396. package/templates/default/src/lib/transformers/template-test-case-converter.ts +160 -160
  397. package/templates/default/src/lib/utils/node-param-validation.ts +81 -81
  398. package/templates/default/src/lib/utils/template-step-file-generator.ts +104 -104
  399. package/templates/default/src/lib/utils/template-step-file-manager-intelligent.ts +0 -8
  400. package/templates/default/src/lib/utils/template-step-file-manager.ts +166 -166
  401. package/templates/default/src/lib/utils.ts +31 -31
  402. package/templates/default/src/types/diagram/diagram.ts +34 -34
  403. package/templates/default/src/types/diagram/template-step.ts +11 -11
  404. package/templates/default/src/types/executor/browser.type.ts +1 -1
  405. package/templates/default/src/types/form/actionHandler.ts +6 -6
  406. package/templates/default/src/types/locator/locator.type.ts +11 -11
  407. package/templates/default/src/types/locator-picker.ts +65 -0
  408. package/templates/default/src/types/step/step.type.ts +1 -1
  409. package/templates/default/src/types/table/data-table.ts +6 -6
  410. package/templates/default/src/types/test-case-picker.ts +6 -0
  411. package/templates/default/src/types/test-suite-picker.ts +18 -0
  412. package/templates/default/tailwind.config.ts +62 -62
  413. package/templates/default/tsconfig.json +4 -1
  414. package/templates/default/appraisejs.config.json +0 -1
@@ -97,6 +97,7 @@
97
97
  "version": "5.2.0",
98
98
  "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
99
99
  "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
100
+ "dev": true,
100
101
  "license": "MIT",
101
102
  "engines": {
102
103
  "node": ">=10"
@@ -816,7 +817,7 @@
816
817
  "version": "0.8.1",
817
818
  "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
818
819
  "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
819
- "devOptional": true,
820
+ "dev": true,
820
821
  "license": "MIT",
821
822
  "dependencies": {
822
823
  "@jridgewell/trace-mapping": "0.3.9"
@@ -829,7 +830,7 @@
829
830
  "version": "0.3.9",
830
831
  "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
831
832
  "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
832
- "devOptional": true,
833
+ "dev": true,
833
834
  "license": "MIT",
834
835
  "dependencies": {
835
836
  "@jridgewell/resolve-uri": "^3.0.3",
@@ -2387,6 +2388,7 @@
2387
2388
  "version": "0.3.13",
2388
2389
  "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
2389
2390
  "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
2391
+ "dev": true,
2390
2392
  "license": "MIT",
2391
2393
  "dependencies": {
2392
2394
  "@jridgewell/sourcemap-codec": "^1.5.0",
@@ -2408,6 +2410,7 @@
2408
2410
  "version": "3.1.2",
2409
2411
  "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
2410
2412
  "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
2413
+ "dev": true,
2411
2414
  "license": "MIT",
2412
2415
  "engines": {
2413
2416
  "node": ">=6.0.0"
@@ -2417,12 +2420,14 @@
2417
2420
  "version": "1.5.0",
2418
2421
  "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
2419
2422
  "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
2423
+ "dev": true,
2420
2424
  "license": "MIT"
2421
2425
  },
2422
2426
  "node_modules/@jridgewell/trace-mapping": {
2423
2427
  "version": "0.3.31",
2424
2428
  "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
2425
2429
  "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
2430
+ "dev": true,
2426
2431
  "license": "MIT",
2427
2432
  "dependencies": {
2428
2433
  "@jridgewell/resolve-uri": "^3.1.0",
@@ -2613,9 +2618,9 @@
2613
2618
  "license": "MIT"
2614
2619
  },
2615
2620
  "node_modules/@next/env": {
2616
- "version": "16.1.6",
2617
- "resolved": "https://registry.npmjs.org/@next/env/-/env-16.1.6.tgz",
2618
- "integrity": "sha512-N1ySLuZjnAtN3kFnwhAwPvZah8RJxKasD7x1f8shFqhncnWZn4JMfg37diLNuoHsLAlrDfM3g4mawVdtAG8XLQ==",
2621
+ "version": "16.2.0",
2622
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.0.tgz",
2623
+ "integrity": "sha512-OZIbODWWAi0epQRCRjNe1VO45LOFBzgiyqmTLzIqWq6u1wrxKnAyz1HH6tgY/Mc81YzIjRPoYsPAEr4QV4l9TA==",
2619
2624
  "license": "MIT"
2620
2625
  },
2621
2626
  "node_modules/@next/eslint-plugin-next": {
@@ -2629,9 +2634,9 @@
2629
2634
  }
2630
2635
  },
2631
2636
  "node_modules/@next/swc-darwin-arm64": {
2632
- "version": "16.1.6",
2633
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.1.6.tgz",
2634
- "integrity": "sha512-wTzYulosJr/6nFnqGW7FrG3jfUUlEf8UjGA0/pyypJl42ExdVgC6xJgcXQ+V8QFn6niSG2Pb8+MIG1mZr2vczw==",
2637
+ "version": "16.2.0",
2638
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.0.tgz",
2639
+ "integrity": "sha512-/JZsqKzKt01IFoiLLAzlNqys7qk2F3JkcUhj50zuRhKDQkZNOz9E5N6wAQWprXdsvjRP4lTFj+/+36NSv5AwhQ==",
2635
2640
  "cpu": [
2636
2641
  "arm64"
2637
2642
  ],
@@ -2645,9 +2650,9 @@
2645
2650
  }
2646
2651
  },
2647
2652
  "node_modules/@next/swc-darwin-x64": {
2648
- "version": "16.1.6",
2649
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.1.6.tgz",
2650
- "integrity": "sha512-BLFPYPDO+MNJsiDWbeVzqvYd4NyuRrEYVB5k2N3JfWncuHAy2IVwMAOlVQDFjj+krkWzhY2apvmekMkfQR0CUQ==",
2653
+ "version": "16.2.0",
2654
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.0.tgz",
2655
+ "integrity": "sha512-/hV8erWq4SNlVgglUiW5UmQ5Hwy5EW/AbbXlJCn6zkfKxTy/E/U3V8U1Ocm2YCTUoFgQdoMxRyRMOW5jYy4ygg==",
2651
2656
  "cpu": [
2652
2657
  "x64"
2653
2658
  ],
@@ -2661,9 +2666,9 @@
2661
2666
  }
2662
2667
  },
2663
2668
  "node_modules/@next/swc-linux-arm64-gnu": {
2664
- "version": "16.1.6",
2665
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.1.6.tgz",
2666
- "integrity": "sha512-OJYkCd5pj/QloBvoEcJ2XiMnlJkRv9idWA/j0ugSuA34gMT6f5b7vOiCQHVRpvStoZUknhl6/UxOXL4OwtdaBw==",
2669
+ "version": "16.2.0",
2670
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.0.tgz",
2671
+ "integrity": "sha512-GkjL/Q7MWOwqWR9zoxu1TIHzkOI2l2BHCf7FzeQG87zPgs+6WDh+oC9Sw9ARuuL/FUk6JNCgKRkA6rEQYadUaw==",
2667
2672
  "cpu": [
2668
2673
  "arm64"
2669
2674
  ],
@@ -2677,9 +2682,9 @@
2677
2682
  }
2678
2683
  },
2679
2684
  "node_modules/@next/swc-linux-arm64-musl": {
2680
- "version": "16.1.6",
2681
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.1.6.tgz",
2682
- "integrity": "sha512-S4J2v+8tT3NIO9u2q+S0G5KdvNDjXfAv06OhfOzNDaBn5rw84DGXWndOEB7d5/x852A20sW1M56vhC/tRVbccQ==",
2685
+ "version": "16.2.0",
2686
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.0.tgz",
2687
+ "integrity": "sha512-1ffhC6KY5qWLg5miMlKJp3dZbXelEfjuXt1qcp5WzSCQy36CV3y+JT7OC1WSFKizGQCDOcQbfkH/IjZP3cdRNA==",
2683
2688
  "cpu": [
2684
2689
  "arm64"
2685
2690
  ],
@@ -2693,9 +2698,9 @@
2693
2698
  }
2694
2699
  },
2695
2700
  "node_modules/@next/swc-linux-x64-gnu": {
2696
- "version": "16.1.6",
2697
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.1.6.tgz",
2698
- "integrity": "sha512-2eEBDkFlMMNQnkTyPBhQOAyn2qMxyG2eE7GPH2WIDGEpEILcBPI/jdSv4t6xupSP+ot/jkfrCShLAa7+ZUPcJQ==",
2701
+ "version": "16.2.0",
2702
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.0.tgz",
2703
+ "integrity": "sha512-FmbDcZQ8yJRq93EJSL6xaE0KK/Rslraf8fj1uViGxg7K4CKBCRYSubILJPEhjSgZurpcPQq12QNOJQ0DRJl6Hg==",
2699
2704
  "cpu": [
2700
2705
  "x64"
2701
2706
  ],
@@ -2709,9 +2714,9 @@
2709
2714
  }
2710
2715
  },
2711
2716
  "node_modules/@next/swc-linux-x64-musl": {
2712
- "version": "16.1.6",
2713
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.1.6.tgz",
2714
- "integrity": "sha512-oicJwRlyOoZXVlxmIMaTq7f8pN9QNbdes0q2FXfRsPhfCi8n8JmOZJm5oo1pwDaFbnnD421rVU409M3evFbIqg==",
2717
+ "version": "16.2.0",
2718
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.0.tgz",
2719
+ "integrity": "sha512-HzjIHVkmGAwRbh/vzvoBWWEbb8BBZPxBvVbDQDvzHSf3D8RP/4vjw7MNLDXFF9Q1WEzeQyEj2zdxBtVAHu5Oyw==",
2715
2720
  "cpu": [
2716
2721
  "x64"
2717
2722
  ],
@@ -2725,9 +2730,9 @@
2725
2730
  }
2726
2731
  },
2727
2732
  "node_modules/@next/swc-win32-arm64-msvc": {
2728
- "version": "16.1.6",
2729
- "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.1.6.tgz",
2730
- "integrity": "sha512-gQmm8izDTPgs+DCWH22kcDmuUp7NyiJgEl18bcr8irXA5N2m2O+JQIr6f3ct42GOs9c0h8QF3L5SzIxcYAAXXw==",
2733
+ "version": "16.2.0",
2734
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.0.tgz",
2735
+ "integrity": "sha512-UMiFNQf5H7+1ZsZPxEsA064WEuFbRNq/kEXyepbCnSErp4f5iut75dBA8UeerFIG3vDaQNOfCpevnERPp2V+nA==",
2731
2736
  "cpu": [
2732
2737
  "arm64"
2733
2738
  ],
@@ -2741,9 +2746,9 @@
2741
2746
  }
2742
2747
  },
2743
2748
  "node_modules/@next/swc-win32-x64-msvc": {
2744
- "version": "16.1.6",
2745
- "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.1.6.tgz",
2746
- "integrity": "sha512-NRfO39AIrzBnixKbjuo2YiYhB6o9d8v/ymU9m/Xk8cyVk+k7XylniXkHwjs4s70wedVffc6bQNbufk5v0xEm0A==",
2749
+ "version": "16.2.0",
2750
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.0.tgz",
2751
+ "integrity": "sha512-DRrNJKW+/eimrZgdhVN1uvkN1OI4j6Lpefwr44jKQ0YQzztlmOBUUzHuV5GxOMPK3nmodAYElUVCY8ZXo/IWeA==",
2747
2752
  "cpu": [
2748
2753
  "x64"
2749
2754
  ],
@@ -2760,6 +2765,7 @@
2760
2765
  "version": "2.1.5",
2761
2766
  "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
2762
2767
  "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
2768
+ "dev": true,
2763
2769
  "license": "MIT",
2764
2770
  "dependencies": {
2765
2771
  "@nodelib/fs.stat": "2.0.5",
@@ -2773,6 +2779,7 @@
2773
2779
  "version": "2.0.5",
2774
2780
  "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
2775
2781
  "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
2782
+ "dev": true,
2776
2783
  "license": "MIT",
2777
2784
  "engines": {
2778
2785
  "node": ">= 8"
@@ -2782,6 +2789,7 @@
2782
2789
  "version": "1.2.8",
2783
2790
  "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
2784
2791
  "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
2792
+ "dev": true,
2785
2793
  "license": "MIT",
2786
2794
  "dependencies": {
2787
2795
  "@nodelib/fs.scandir": "2.1.5",
@@ -2833,14 +2841,14 @@
2833
2841
  "version": "6.2.1",
2834
2842
  "resolved": "https://registry.npmjs.org/@prisma/debug/-/debug-6.2.1.tgz",
2835
2843
  "integrity": "sha512-0KItvt39CmQxWkEw6oW+RQMD6RZ43SJWgEUnzxN8VC9ixMysa7MzZCZf22LCK5DSooiLNf8vM3LHZm/I/Ni7bQ==",
2836
- "devOptional": true,
2844
+ "dev": true,
2837
2845
  "license": "Apache-2.0"
2838
2846
  },
2839
2847
  "node_modules/@prisma/engines": {
2840
2848
  "version": "6.2.1",
2841
2849
  "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-6.2.1.tgz",
2842
2850
  "integrity": "sha512-lTBNLJBCxVT9iP5I7Mn6GlwqAxTpS5qMERrhebkUhtXpGVkBNd/jHnNJBZQW4kGDCKaQg/r2vlJYkzOHnAb7ZQ==",
2843
- "devOptional": true,
2851
+ "dev": true,
2844
2852
  "hasInstallScript": true,
2845
2853
  "license": "Apache-2.0",
2846
2854
  "dependencies": {
@@ -2854,14 +2862,14 @@
2854
2862
  "version": "6.2.0-14.4123509d24aa4dede1e864b46351bf2790323b69",
2855
2863
  "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-6.2.0-14.4123509d24aa4dede1e864b46351bf2790323b69.tgz",
2856
2864
  "integrity": "sha512-7tw1qs/9GWSX6qbZs4He09TOTg1ff3gYsB3ubaVNN0Pp1zLm9NC5C5MZShtkz7TyQjx7blhpknB7HwEhlG+PrQ==",
2857
- "devOptional": true,
2865
+ "dev": true,
2858
2866
  "license": "Apache-2.0"
2859
2867
  },
2860
2868
  "node_modules/@prisma/fetch-engine": {
2861
2869
  "version": "6.2.1",
2862
2870
  "resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-6.2.1.tgz",
2863
2871
  "integrity": "sha512-OO7O9d6Mrx2F9i+Gu1LW+DGXXyUFkP7OE5aj9iBfA/2jjDXEJjqa9X0ZmM9NZNo8Uo7ql6zKm6yjDcbAcRrw1A==",
2864
- "devOptional": true,
2872
+ "dev": true,
2865
2873
  "license": "Apache-2.0",
2866
2874
  "dependencies": {
2867
2875
  "@prisma/debug": "6.2.1",
@@ -2873,7 +2881,7 @@
2873
2881
  "version": "6.2.1",
2874
2882
  "resolved": "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-6.2.1.tgz",
2875
2883
  "integrity": "sha512-zp53yvroPl5m5/gXYLz7tGCNG33bhG+JYCm74ohxOq1pPnrL47VQYFfF3RbTZ7TzGWCrR3EtoiYMywUBw7UK6Q==",
2876
- "devOptional": true,
2884
+ "dev": true,
2877
2885
  "license": "Apache-2.0",
2878
2886
  "dependencies": {
2879
2887
  "@prisma/debug": "6.2.1"
@@ -4382,28 +4390,28 @@
4382
4390
  "version": "1.0.11",
4383
4391
  "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz",
4384
4392
  "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==",
4385
- "devOptional": true,
4393
+ "dev": true,
4386
4394
  "license": "MIT"
4387
4395
  },
4388
4396
  "node_modules/@tsconfig/node12": {
4389
4397
  "version": "1.0.11",
4390
4398
  "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz",
4391
4399
  "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==",
4392
- "devOptional": true,
4400
+ "dev": true,
4393
4401
  "license": "MIT"
4394
4402
  },
4395
4403
  "node_modules/@tsconfig/node14": {
4396
4404
  "version": "1.0.3",
4397
4405
  "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz",
4398
4406
  "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==",
4399
- "devOptional": true,
4407
+ "dev": true,
4400
4408
  "license": "MIT"
4401
4409
  },
4402
4410
  "node_modules/@tsconfig/node16": {
4403
4411
  "version": "1.0.4",
4404
4412
  "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz",
4405
4413
  "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==",
4406
- "devOptional": true,
4414
+ "dev": true,
4407
4415
  "license": "MIT"
4408
4416
  },
4409
4417
  "node_modules/@types/archiver": {
@@ -4621,7 +4629,7 @@
4621
4629
  "version": "19.2.7",
4622
4630
  "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.7.tgz",
4623
4631
  "integrity": "sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==",
4624
- "devOptional": true,
4632
+ "dev": true,
4625
4633
  "license": "MIT",
4626
4634
  "dependencies": {
4627
4635
  "csstype": "^3.2.2"
@@ -4631,7 +4639,7 @@
4631
4639
  "version": "19.2.3",
4632
4640
  "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
4633
4641
  "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
4634
- "devOptional": true,
4642
+ "dev": true,
4635
4643
  "license": "MIT",
4636
4644
  "peerDependencies": {
4637
4645
  "@types/react": "^19.2.0"
@@ -5053,7 +5061,7 @@
5053
5061
  "version": "8.15.0",
5054
5062
  "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
5055
5063
  "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
5056
- "devOptional": true,
5064
+ "dev": true,
5057
5065
  "license": "MIT",
5058
5066
  "bin": {
5059
5067
  "acorn": "bin/acorn"
@@ -5076,7 +5084,7 @@
5076
5084
  "version": "8.3.4",
5077
5085
  "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz",
5078
5086
  "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==",
5079
- "devOptional": true,
5087
+ "dev": true,
5080
5088
  "license": "MIT",
5081
5089
  "dependencies": {
5082
5090
  "acorn": "^8.11.0"
@@ -5133,12 +5141,14 @@
5133
5141
  "version": "1.3.0",
5134
5142
  "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
5135
5143
  "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
5144
+ "dev": true,
5136
5145
  "license": "MIT"
5137
5146
  },
5138
5147
  "node_modules/anymatch": {
5139
5148
  "version": "3.1.3",
5140
5149
  "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
5141
5150
  "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
5151
+ "dev": true,
5142
5152
  "license": "ISC",
5143
5153
  "dependencies": {
5144
5154
  "normalize-path": "^3.0.0",
@@ -5330,6 +5340,7 @@
5330
5340
  "version": "5.0.2",
5331
5341
  "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
5332
5342
  "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
5343
+ "dev": true,
5333
5344
  "license": "MIT"
5334
5345
  },
5335
5346
  "node_modules/argparse": {
@@ -5650,12 +5661,15 @@
5650
5661
  "license": "MIT"
5651
5662
  },
5652
5663
  "node_modules/baseline-browser-mapping": {
5653
- "version": "2.9.3",
5654
- "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.3.tgz",
5655
- "integrity": "sha512-8QdH6czo+G7uBsNo0GiUfouPN1lRzKdJTGnKXwe12gkFbnnOUaUKGN55dMkfy+mnxmvjwl9zcI4VncczcVXDhA==",
5664
+ "version": "2.10.9",
5665
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.9.tgz",
5666
+ "integrity": "sha512-OZd0e2mU11ClX8+IdXe3r0dbqMEznRiT4TfbhYIbcRPZkqJ7Qwer8ij3GZAmLsRKa+II9V1v5czCkvmHH3XZBg==",
5656
5667
  "license": "Apache-2.0",
5657
5668
  "bin": {
5658
- "baseline-browser-mapping": "dist/cli.js"
5669
+ "baseline-browser-mapping": "dist/cli.cjs"
5670
+ },
5671
+ "engines": {
5672
+ "node": ">=6.0.0"
5659
5673
  }
5660
5674
  },
5661
5675
  "node_modules/better-sqlite3": {
@@ -5676,6 +5690,7 @@
5676
5690
  "version": "2.3.0",
5677
5691
  "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
5678
5692
  "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
5693
+ "dev": true,
5679
5694
  "license": "MIT",
5680
5695
  "engines": {
5681
5696
  "node": ">=8"
@@ -5720,6 +5735,7 @@
5720
5735
  "version": "3.0.3",
5721
5736
  "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
5722
5737
  "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
5738
+ "dev": true,
5723
5739
  "license": "MIT",
5724
5740
  "dependencies": {
5725
5741
  "fill-range": "^7.1.1"
@@ -5866,6 +5882,7 @@
5866
5882
  "version": "2.0.1",
5867
5883
  "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
5868
5884
  "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
5885
+ "dev": true,
5869
5886
  "license": "MIT",
5870
5887
  "engines": {
5871
5888
  "node": ">= 6"
@@ -5964,6 +5981,7 @@
5964
5981
  "version": "3.6.0",
5965
5982
  "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
5966
5983
  "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
5984
+ "dev": true,
5967
5985
  "license": "MIT",
5968
5986
  "dependencies": {
5969
5987
  "anymatch": "~3.1.2",
@@ -5988,6 +6006,7 @@
5988
6006
  "version": "5.1.2",
5989
6007
  "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
5990
6008
  "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
6009
+ "dev": true,
5991
6010
  "license": "ISC",
5992
6011
  "dependencies": {
5993
6012
  "is-glob": "^4.0.1"
@@ -6366,7 +6385,7 @@
6366
6385
  "version": "1.1.1",
6367
6386
  "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
6368
6387
  "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==",
6369
- "devOptional": true,
6388
+ "dev": true,
6370
6389
  "license": "MIT"
6371
6390
  },
6372
6391
  "node_modules/crelt": {
@@ -6393,6 +6412,7 @@
6393
6412
  "version": "3.0.0",
6394
6413
  "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
6395
6414
  "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
6415
+ "dev": true,
6396
6416
  "license": "MIT",
6397
6417
  "bin": {
6398
6418
  "cssesc": "bin/cssesc"
@@ -6791,13 +6811,14 @@
6791
6811
  "version": "1.2.2",
6792
6812
  "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
6793
6813
  "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
6814
+ "dev": true,
6794
6815
  "license": "Apache-2.0"
6795
6816
  },
6796
6817
  "node_modules/diff": {
6797
6818
  "version": "4.0.4",
6798
6819
  "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.4.tgz",
6799
6820
  "integrity": "sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ==",
6800
- "devOptional": true,
6821
+ "dev": true,
6801
6822
  "license": "BSD-3-Clause",
6802
6823
  "engines": {
6803
6824
  "node": ">=0.3.1"
@@ -6807,6 +6828,7 @@
6807
6828
  "version": "1.1.3",
6808
6829
  "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
6809
6830
  "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
6831
+ "dev": true,
6810
6832
  "license": "MIT"
6811
6833
  },
6812
6834
  "node_modules/doctrine": {
@@ -7812,6 +7834,7 @@
7812
7834
  "version": "1.18.0",
7813
7835
  "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.18.0.tgz",
7814
7836
  "integrity": "sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==",
7837
+ "dev": true,
7815
7838
  "license": "ISC",
7816
7839
  "dependencies": {
7817
7840
  "reusify": "^1.0.4"
@@ -7872,6 +7895,7 @@
7872
7895
  "version": "7.1.1",
7873
7896
  "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
7874
7897
  "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
7898
+ "dev": true,
7875
7899
  "license": "MIT",
7876
7900
  "dependencies": {
7877
7901
  "to-regex-range": "^5.0.1"
@@ -7925,9 +7949,9 @@
7925
7949
  }
7926
7950
  },
7927
7951
  "node_modules/flatted": {
7928
- "version": "3.3.2",
7929
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz",
7930
- "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==",
7952
+ "version": "3.4.2",
7953
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
7954
+ "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
7931
7955
  "dev": true,
7932
7956
  "license": "ISC"
7933
7957
  },
@@ -8006,6 +8030,7 @@
8006
8030
  "version": "2.3.3",
8007
8031
  "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
8008
8032
  "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
8033
+ "dev": true,
8009
8034
  "hasInstallScript": true,
8010
8035
  "license": "MIT",
8011
8036
  "optional": true,
@@ -8020,6 +8045,7 @@
8020
8045
  "version": "1.1.2",
8021
8046
  "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
8022
8047
  "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
8048
+ "dev": true,
8023
8049
  "license": "MIT",
8024
8050
  "funding": {
8025
8051
  "url": "https://github.com/sponsors/ljharb"
@@ -8209,6 +8235,7 @@
8209
8235
  "version": "6.0.2",
8210
8236
  "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
8211
8237
  "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
8238
+ "dev": true,
8212
8239
  "license": "ISC",
8213
8240
  "dependencies": {
8214
8241
  "is-glob": "^4.0.3"
@@ -8390,6 +8417,7 @@
8390
8417
  "version": "2.0.2",
8391
8418
  "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
8392
8419
  "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
8420
+ "dev": true,
8393
8421
  "license": "MIT",
8394
8422
  "dependencies": {
8395
8423
  "function-bind": "^1.1.2"
@@ -8625,6 +8653,7 @@
8625
8653
  "version": "2.1.0",
8626
8654
  "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
8627
8655
  "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
8656
+ "dev": true,
8628
8657
  "license": "MIT",
8629
8658
  "dependencies": {
8630
8659
  "binary-extensions": "^2.0.0"
@@ -8677,6 +8706,7 @@
8677
8706
  "version": "2.16.1",
8678
8707
  "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
8679
8708
  "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
8709
+ "dev": true,
8680
8710
  "license": "MIT",
8681
8711
  "dependencies": {
8682
8712
  "hasown": "^2.0.2"
@@ -8727,6 +8757,7 @@
8727
8757
  "version": "2.1.1",
8728
8758
  "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
8729
8759
  "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
8760
+ "dev": true,
8730
8761
  "license": "MIT",
8731
8762
  "engines": {
8732
8763
  "node": ">=0.10.0"
@@ -8780,6 +8811,7 @@
8780
8811
  "version": "4.0.3",
8781
8812
  "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
8782
8813
  "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
8814
+ "dev": true,
8783
8815
  "license": "MIT",
8784
8816
  "dependencies": {
8785
8817
  "is-extglob": "^2.1.1"
@@ -8835,6 +8867,7 @@
8835
8867
  "version": "7.0.0",
8836
8868
  "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
8837
8869
  "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
8870
+ "dev": true,
8838
8871
  "license": "MIT",
8839
8872
  "engines": {
8840
8873
  "node": ">=0.12.0"
@@ -9301,6 +9334,7 @@
9301
9334
  "version": "3.1.3",
9302
9335
  "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
9303
9336
  "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
9337
+ "dev": true,
9304
9338
  "license": "MIT",
9305
9339
  "engines": {
9306
9340
  "node": ">=14"
@@ -9313,6 +9347,7 @@
9313
9347
  "version": "1.2.4",
9314
9348
  "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
9315
9349
  "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
9350
+ "dev": true,
9316
9351
  "license": "MIT"
9317
9352
  },
9318
9353
  "node_modules/locate-path": {
@@ -9442,7 +9477,7 @@
9442
9477
  "version": "1.3.6",
9443
9478
  "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
9444
9479
  "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
9445
- "devOptional": true,
9480
+ "dev": true,
9446
9481
  "license": "ISC"
9447
9482
  },
9448
9483
  "node_modules/math-intrinsics": {
@@ -9459,6 +9494,7 @@
9459
9494
  "version": "1.4.1",
9460
9495
  "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
9461
9496
  "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
9497
+ "dev": true,
9462
9498
  "license": "MIT",
9463
9499
  "engines": {
9464
9500
  "node": ">= 8"
@@ -9468,6 +9504,7 @@
9468
9504
  "version": "4.0.8",
9469
9505
  "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
9470
9506
  "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
9507
+ "dev": true,
9471
9508
  "license": "MIT",
9472
9509
  "dependencies": {
9473
9510
  "braces": "^3.0.3",
@@ -9503,9 +9540,9 @@
9503
9540
  }
9504
9541
  },
9505
9542
  "node_modules/minimatch": {
9506
- "version": "10.2.2",
9507
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.2.tgz",
9508
- "integrity": "sha512-+G4CpNBxa5MprY+04MbgOw1v7So6n5JY166pFi9KfYwT78fxScCeSNQSNzp6dpPSW2rONOps6Ocam1wFhCgoVw==",
9543
+ "version": "10.2.4",
9544
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.4.tgz",
9545
+ "integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
9509
9546
  "license": "BlueOak-1.0.0",
9510
9547
  "dependencies": {
9511
9548
  "brace-expansion": "^5.0.2"
@@ -9608,6 +9645,7 @@
9608
9645
  "version": "2.7.0",
9609
9646
  "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
9610
9647
  "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
9648
+ "dev": true,
9611
9649
  "license": "MIT",
9612
9650
  "dependencies": {
9613
9651
  "any-promise": "^1.0.0",
@@ -9647,14 +9685,14 @@
9647
9685
  "license": "MIT"
9648
9686
  },
9649
9687
  "node_modules/next": {
9650
- "version": "16.1.6",
9651
- "resolved": "https://registry.npmjs.org/next/-/next-16.1.6.tgz",
9652
- "integrity": "sha512-hkyRkcu5x/41KoqnROkfTm2pZVbKxvbZRuNvKXLRXxs3VfyO0WhY50TQS40EuKO9SW3rBj/sF3WbVwDACeMZyw==",
9688
+ "version": "16.2.0",
9689
+ "resolved": "https://registry.npmjs.org/next/-/next-16.2.0.tgz",
9690
+ "integrity": "sha512-NLBVrJy1pbV1Yn00L5sU4vFyAHt5XuSjzrNyFnxo6Com0M0KrL6hHM5B99dbqXb2bE9pm4Ow3Zl1xp6HVY9edQ==",
9653
9691
  "license": "MIT",
9654
9692
  "dependencies": {
9655
- "@next/env": "16.1.6",
9693
+ "@next/env": "16.2.0",
9656
9694
  "@swc/helpers": "0.5.15",
9657
- "baseline-browser-mapping": "^2.8.3",
9695
+ "baseline-browser-mapping": "^2.9.19",
9658
9696
  "caniuse-lite": "^1.0.30001579",
9659
9697
  "postcss": "8.4.31",
9660
9698
  "styled-jsx": "5.1.6"
@@ -9666,15 +9704,15 @@
9666
9704
  "node": ">=20.9.0"
9667
9705
  },
9668
9706
  "optionalDependencies": {
9669
- "@next/swc-darwin-arm64": "16.1.6",
9670
- "@next/swc-darwin-x64": "16.1.6",
9671
- "@next/swc-linux-arm64-gnu": "16.1.6",
9672
- "@next/swc-linux-arm64-musl": "16.1.6",
9673
- "@next/swc-linux-x64-gnu": "16.1.6",
9674
- "@next/swc-linux-x64-musl": "16.1.6",
9675
- "@next/swc-win32-arm64-msvc": "16.1.6",
9676
- "@next/swc-win32-x64-msvc": "16.1.6",
9677
- "sharp": "^0.34.4"
9707
+ "@next/swc-darwin-arm64": "16.2.0",
9708
+ "@next/swc-darwin-x64": "16.2.0",
9709
+ "@next/swc-linux-arm64-gnu": "16.2.0",
9710
+ "@next/swc-linux-arm64-musl": "16.2.0",
9711
+ "@next/swc-linux-x64-gnu": "16.2.0",
9712
+ "@next/swc-linux-x64-musl": "16.2.0",
9713
+ "@next/swc-win32-arm64-msvc": "16.2.0",
9714
+ "@next/swc-win32-x64-msvc": "16.2.0",
9715
+ "sharp": "^0.34.5"
9678
9716
  },
9679
9717
  "peerDependencies": {
9680
9718
  "@opentelemetry/api": "^1.1.0",
@@ -9834,6 +9872,7 @@
9834
9872
  "version": "3.0.0",
9835
9873
  "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
9836
9874
  "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
9875
+ "dev": true,
9837
9876
  "license": "MIT",
9838
9877
  "engines": {
9839
9878
  "node": ">= 6"
@@ -10124,6 +10163,7 @@
10124
10163
  "version": "1.0.7",
10125
10164
  "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
10126
10165
  "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
10166
+ "dev": true,
10127
10167
  "license": "MIT"
10128
10168
  },
10129
10169
  "node_modules/path-scurry": {
@@ -10173,6 +10213,7 @@
10173
10213
  "version": "2.3.1",
10174
10214
  "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
10175
10215
  "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
10216
+ "dev": true,
10176
10217
  "license": "MIT",
10177
10218
  "engines": {
10178
10219
  "node": ">=8.6"
@@ -10185,6 +10226,7 @@
10185
10226
  "version": "2.3.0",
10186
10227
  "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
10187
10228
  "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
10229
+ "dev": true,
10188
10230
  "license": "MIT",
10189
10231
  "engines": {
10190
10232
  "node": ">=0.10.0"
@@ -10194,6 +10236,7 @@
10194
10236
  "version": "4.0.6",
10195
10237
  "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
10196
10238
  "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
10239
+ "dev": true,
10197
10240
  "license": "MIT",
10198
10241
  "engines": {
10199
10242
  "node": ">= 6"
@@ -10260,6 +10303,7 @@
10260
10303
  "version": "8.5.1",
10261
10304
  "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz",
10262
10305
  "integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==",
10306
+ "dev": true,
10263
10307
  "funding": [
10264
10308
  {
10265
10309
  "type": "opencollective",
@@ -10288,6 +10332,7 @@
10288
10332
  "version": "15.1.0",
10289
10333
  "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
10290
10334
  "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
10335
+ "dev": true,
10291
10336
  "license": "MIT",
10292
10337
  "dependencies": {
10293
10338
  "postcss-value-parser": "^4.0.0",
@@ -10305,6 +10350,7 @@
10305
10350
  "version": "4.0.1",
10306
10351
  "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz",
10307
10352
  "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==",
10353
+ "dev": true,
10308
10354
  "license": "MIT",
10309
10355
  "dependencies": {
10310
10356
  "camelcase-css": "^2.0.1"
@@ -10324,6 +10370,7 @@
10324
10370
  "version": "4.0.2",
10325
10371
  "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz",
10326
10372
  "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
10373
+ "dev": true,
10327
10374
  "funding": [
10328
10375
  {
10329
10376
  "type": "opencollective",
@@ -10359,6 +10406,7 @@
10359
10406
  "version": "6.2.0",
10360
10407
  "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz",
10361
10408
  "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
10409
+ "dev": true,
10362
10410
  "funding": [
10363
10411
  {
10364
10412
  "type": "opencollective",
@@ -10384,6 +10432,7 @@
10384
10432
  "version": "6.1.2",
10385
10433
  "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
10386
10434
  "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
10435
+ "dev": true,
10387
10436
  "license": "MIT",
10388
10437
  "dependencies": {
10389
10438
  "cssesc": "^3.0.0",
@@ -10397,6 +10446,7 @@
10397
10446
  "version": "4.2.0",
10398
10447
  "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
10399
10448
  "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
10449
+ "dev": true,
10400
10450
  "license": "MIT"
10401
10451
  },
10402
10452
  "node_modules/prebuild-install": {
@@ -10558,7 +10608,7 @@
10558
10608
  "version": "6.2.1",
10559
10609
  "resolved": "https://registry.npmjs.org/prisma/-/prisma-6.2.1.tgz",
10560
10610
  "integrity": "sha512-hhyM0H13pQleQ+br4CkzGizS5I0oInoeTw3JfLw1BRZduBSQxPILlJLwi+46wZzj9Je7ndyQEMGw/n5cN2fknA==",
10561
- "devOptional": true,
10611
+ "dev": true,
10562
10612
  "hasInstallScript": true,
10563
10613
  "license": "Apache-2.0",
10564
10614
  "dependencies": {
@@ -10641,6 +10691,7 @@
10641
10691
  "version": "1.2.3",
10642
10692
  "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
10643
10693
  "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
10694
+ "dev": true,
10644
10695
  "funding": [
10645
10696
  {
10646
10697
  "type": "github",
@@ -10839,6 +10890,7 @@
10839
10890
  "version": "1.0.0",
10840
10891
  "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
10841
10892
  "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
10893
+ "dev": true,
10842
10894
  "license": "MIT",
10843
10895
  "dependencies": {
10844
10896
  "pify": "^2.3.0"
@@ -10941,6 +10993,7 @@
10941
10993
  "version": "3.6.0",
10942
10994
  "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
10943
10995
  "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
10996
+ "dev": true,
10944
10997
  "license": "MIT",
10945
10998
  "dependencies": {
10946
10999
  "picomatch": "^2.2.1"
@@ -11066,6 +11119,7 @@
11066
11119
  "version": "1.22.10",
11067
11120
  "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
11068
11121
  "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
11122
+ "dev": true,
11069
11123
  "license": "MIT",
11070
11124
  "dependencies": {
11071
11125
  "is-core-module": "^2.16.0",
@@ -11106,6 +11160,7 @@
11106
11160
  "version": "1.0.4",
11107
11161
  "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
11108
11162
  "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
11163
+ "dev": true,
11109
11164
  "license": "MIT",
11110
11165
  "engines": {
11111
11166
  "iojs": ">=1.0.0",
@@ -11154,6 +11209,7 @@
11154
11209
  "version": "1.2.0",
11155
11210
  "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
11156
11211
  "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
11212
+ "dev": true,
11157
11213
  "funding": [
11158
11214
  {
11159
11215
  "type": "github",
@@ -11941,6 +11997,7 @@
11941
11997
  "version": "3.35.1",
11942
11998
  "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.1.tgz",
11943
11999
  "integrity": "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==",
12000
+ "dev": true,
11944
12001
  "license": "MIT",
11945
12002
  "dependencies": {
11946
12003
  "@jridgewell/gen-mapping": "^0.3.2",
@@ -11963,6 +12020,7 @@
11963
12020
  "version": "4.1.1",
11964
12021
  "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
11965
12022
  "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
12023
+ "dev": true,
11966
12024
  "license": "MIT",
11967
12025
  "engines": {
11968
12026
  "node": ">= 6"
@@ -11985,6 +12043,7 @@
11985
12043
  "version": "1.0.0",
11986
12044
  "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
11987
12045
  "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
12046
+ "dev": true,
11988
12047
  "license": "MIT",
11989
12048
  "engines": {
11990
12049
  "node": ">= 0.4"
@@ -12020,6 +12079,7 @@
12020
12079
  "version": "3.4.17",
12021
12080
  "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.17.tgz",
12022
12081
  "integrity": "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==",
12082
+ "dev": true,
12023
12083
  "license": "MIT",
12024
12084
  "dependencies": {
12025
12085
  "@alloc/quick-lru": "^5.2.0",
@@ -12066,6 +12126,7 @@
12066
12126
  "version": "3.3.3",
12067
12127
  "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
12068
12128
  "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
12129
+ "dev": true,
12069
12130
  "license": "MIT",
12070
12131
  "dependencies": {
12071
12132
  "@nodelib/fs.stat": "^2.0.2",
@@ -12082,6 +12143,7 @@
12082
12143
  "version": "5.1.2",
12083
12144
  "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
12084
12145
  "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
12146
+ "dev": true,
12085
12147
  "license": "ISC",
12086
12148
  "dependencies": {
12087
12149
  "is-glob": "^4.0.1"
@@ -12094,6 +12156,7 @@
12094
12156
  "version": "1.21.7",
12095
12157
  "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz",
12096
12158
  "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==",
12159
+ "dev": true,
12097
12160
  "license": "MIT",
12098
12161
  "bin": {
12099
12162
  "jiti": "bin/jiti.js"
@@ -12156,6 +12219,7 @@
12156
12219
  "version": "3.3.1",
12157
12220
  "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
12158
12221
  "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
12222
+ "dev": true,
12159
12223
  "license": "MIT",
12160
12224
  "dependencies": {
12161
12225
  "any-promise": "^1.0.0"
@@ -12165,6 +12229,7 @@
12165
12229
  "version": "1.6.0",
12166
12230
  "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
12167
12231
  "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
12232
+ "dev": true,
12168
12233
  "license": "MIT",
12169
12234
  "dependencies": {
12170
12235
  "thenify": ">= 3.1.0 < 4"
@@ -12190,6 +12255,7 @@
12190
12255
  "version": "0.2.15",
12191
12256
  "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
12192
12257
  "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
12258
+ "dev": true,
12193
12259
  "license": "MIT",
12194
12260
  "dependencies": {
12195
12261
  "fdir": "^6.5.0",
@@ -12206,6 +12272,7 @@
12206
12272
  "version": "6.5.0",
12207
12273
  "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
12208
12274
  "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
12275
+ "dev": true,
12209
12276
  "license": "MIT",
12210
12277
  "engines": {
12211
12278
  "node": ">=12.0.0"
@@ -12223,6 +12290,7 @@
12223
12290
  "version": "4.0.3",
12224
12291
  "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
12225
12292
  "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
12293
+ "dev": true,
12226
12294
  "license": "MIT",
12227
12295
  "engines": {
12228
12296
  "node": ">=12"
@@ -12235,6 +12303,7 @@
12235
12303
  "version": "5.0.1",
12236
12304
  "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
12237
12305
  "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
12306
+ "dev": true,
12238
12307
  "license": "MIT",
12239
12308
  "dependencies": {
12240
12309
  "is-number": "^7.0.0"
@@ -12286,13 +12355,14 @@
12286
12355
  "version": "0.1.13",
12287
12356
  "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
12288
12357
  "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==",
12358
+ "dev": true,
12289
12359
  "license": "Apache-2.0"
12290
12360
  },
12291
12361
  "node_modules/ts-node": {
12292
12362
  "version": "10.9.2",
12293
12363
  "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz",
12294
12364
  "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==",
12295
- "devOptional": true,
12365
+ "dev": true,
12296
12366
  "license": "MIT",
12297
12367
  "dependencies": {
12298
12368
  "@cspotcode/source-map-support": "^0.8.0",
@@ -12336,7 +12406,7 @@
12336
12406
  "version": "4.1.3",
12337
12407
  "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
12338
12408
  "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==",
12339
- "devOptional": true,
12409
+ "dev": true,
12340
12410
  "license": "MIT"
12341
12411
  },
12342
12412
  "node_modules/tsconfig-paths": {
@@ -12498,7 +12568,7 @@
12498
12568
  "version": "5.7.3",
12499
12569
  "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz",
12500
12570
  "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==",
12501
- "devOptional": true,
12571
+ "dev": true,
12502
12572
  "license": "Apache-2.0",
12503
12573
  "bin": {
12504
12574
  "tsc": "bin/tsc",
@@ -12704,7 +12774,7 @@
12704
12774
  "version": "3.0.1",
12705
12775
  "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz",
12706
12776
  "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==",
12707
- "devOptional": true,
12777
+ "dev": true,
12708
12778
  "license": "MIT"
12709
12779
  },
12710
12780
  "node_modules/validate-npm-package-license": {
@@ -13020,6 +13090,7 @@
13020
13090
  "version": "2.7.0",
13021
13091
  "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz",
13022
13092
  "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==",
13093
+ "dev": true,
13023
13094
  "license": "ISC",
13024
13095
  "bin": {
13025
13096
  "yaml": "bin.mjs"
@@ -13032,7 +13103,7 @@
13032
13103
  "version": "3.1.1",
13033
13104
  "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
13034
13105
  "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==",
13035
- "devOptional": true,
13106
+ "dev": true,
13036
13107
  "license": "MIT",
13037
13108
  "engines": {
13038
13109
  "node": ">=6"