create-myexam-app 1.0.21 → 1.0.23

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 (226) hide show
  1. package/index.js +25 -17
  2. package/package.json +1 -1
  3. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/README.md +84 -0
  4. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/.env +3 -0
  5. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/config/db.js +13 -0
  6. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/controllers/authController.js +115 -0
  7. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/controllers/employeeController.js +97 -0
  8. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/controllers/payrollController.js +113 -0
  9. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/controllers/reportController.js +35 -0
  10. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/middleware/authMiddleware.js +9 -0
  11. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/models/Employee.js +52 -0
  12. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/models/Payroll.js +50 -0
  13. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/models/User.js +19 -0
  14. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/package-lock.json +1509 -0
  15. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/package.json +19 -0
  16. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/routes/authRoutes.js +18 -0
  17. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/routes/employeeRoutes.js +19 -0
  18. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/routes/payrollRoutes.js +19 -0
  19. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/routes/reportRoutes.js +9 -0
  20. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/server.js +71 -0
  21. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/index.html +12 -0
  22. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/package-lock.json +2888 -0
  23. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/package.json +23 -0
  24. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/postcss.config.js +6 -0
  25. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/App.jsx +57 -0
  26. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/apiClient.js +16 -0
  27. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/authApi.js +26 -0
  28. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/employeeApi.js +26 -0
  29. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/payrollApi.js +26 -0
  30. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/reportApi.js +6 -0
  31. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/components/Header.jsx +17 -0
  32. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/components/Layout.jsx +17 -0
  33. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/components/Message.jsx +15 -0
  34. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/components/ProtectedRoute.jsx +41 -0
  35. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/components/Sidebar.jsx +38 -0
  36. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/index.css +30 -0
  37. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/main.jsx +13 -0
  38. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/DashboardPage.jsx +64 -0
  39. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/EmployeePage.jsx +166 -0
  40. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/LoginPage.jsx +73 -0
  41. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/PayrollPage.jsx +198 -0
  42. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/RecoverPasswordPage.jsx +69 -0
  43. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/RegisterPage.jsx +69 -0
  44. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/ReportsPage.jsx +113 -0
  45. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/tailwind.config.js +13 -0
  46. package/projects/EPMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/vite.config.js +9 -0
  47. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/README.md +106 -0
  48. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/REPORT/01_Introduction.md +8 -0
  49. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/REPORT/02_Problem_Statement.md +12 -0
  50. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/REPORT/03_Objectives.md +17 -0
  51. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/REPORT/04_Technologies_Used.md +23 -0
  52. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/REPORT/05_ERD.md +60 -0
  53. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/REPORT/06_Database_Design.md +71 -0
  54. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/REPORT/07_System_Architecture.md +28 -0
  55. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/REPORT/08_API_Documentation.md +43 -0
  56. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/REPORT/09_Testing.md +43 -0
  57. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/REPORT/10_Challenges.md +12 -0
  58. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/REPORT/11_Conclusion.md +8 -0
  59. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/.env.example +4 -0
  60. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/config/db.js +16 -0
  61. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/controllers/deliveryController.js +145 -0
  62. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/controllers/shipmentController.js +149 -0
  63. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/controllers/supplierController.js +56 -0
  64. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/controllers/userController.js +158 -0
  65. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/middleware/authMiddleware.js +9 -0
  66. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/models/Delivery.js +34 -0
  67. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/models/Shipment.js +34 -0
  68. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/models/Supplier.js +38 -0
  69. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/models/User.js +21 -0
  70. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/package-lock.json +1540 -0
  71. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/package.json +22 -0
  72. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/routes/deliveryRoutes.js +11 -0
  73. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/routes/shipmentRoutes.js +11 -0
  74. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/routes/supplierRoutes.js +9 -0
  75. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/routes/userRoutes.js +11 -0
  76. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/server.js +70 -0
  77. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/.env.example +2 -0
  78. package/projects/{SCMS/frontend → SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project}/index.html +2 -2
  79. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/package-lock.json +2944 -0
  80. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/package.json +23 -0
  81. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/postcss.config.js +6 -0
  82. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/App.jsx +72 -0
  83. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/apiClient.js +14 -0
  84. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/deliveryApi.js +17 -0
  85. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/shipmentApi.js +17 -0
  86. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/supplierApi.js +9 -0
  87. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/userApi.js +21 -0
  88. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/components/Layout.jsx +16 -0
  89. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/components/Message.jsx +15 -0
  90. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/components/PageHeader.jsx +12 -0
  91. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/components/Sidebar.jsx +40 -0
  92. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/main.jsx +13 -0
  93. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/Dashboard.jsx +62 -0
  94. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/Delivery.jsx +212 -0
  95. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/Login.jsx +158 -0
  96. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/Logout.jsx +24 -0
  97. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/Reports.jsx +221 -0
  98. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/Shipment.jsx +212 -0
  99. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/Supplier.jsx +118 -0
  100. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/styles.css +27 -0
  101. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/tailwind.config.js +8 -0
  102. package/projects/SCMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/vite.config.js +6 -0
  103. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/README.md +84 -0
  104. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/.env +3 -0
  105. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/config/db.js +13 -0
  106. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/controllers/productController.js +29 -0
  107. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/controllers/reportController.js +52 -0
  108. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/controllers/stockTransactionController.js +128 -0
  109. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/controllers/userController.js +115 -0
  110. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/controllers/warehouseController.js +29 -0
  111. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/middleware/authMiddleware.js +9 -0
  112. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/models/Product.js +44 -0
  113. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/models/StockTransaction.js +33 -0
  114. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/models/User.js +19 -0
  115. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/models/Warehouse.js +25 -0
  116. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/package-lock.json +1509 -0
  117. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/package.json +19 -0
  118. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/routes/productRoutes.js +10 -0
  119. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/routes/reportRoutes.js +9 -0
  120. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/routes/stockTransactionRoutes.js +17 -0
  121. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/routes/userRoutes.js +18 -0
  122. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/routes/warehouseRoutes.js +10 -0
  123. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/backend-project/server.js +73 -0
  124. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/index.html +12 -0
  125. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/package-lock.json +2888 -0
  126. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/package.json +23 -0
  127. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/postcss.config.js +6 -0
  128. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/App.jsx +66 -0
  129. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/apiClient.js +16 -0
  130. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/productApi.js +11 -0
  131. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/reportApi.js +6 -0
  132. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/transactionApi.js +21 -0
  133. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/userApi.js +26 -0
  134. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/api/warehouseApi.js +11 -0
  135. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/components/Header.jsx +17 -0
  136. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/components/Layout.jsx +17 -0
  137. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/components/Message.jsx +15 -0
  138. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/components/ProtectedRoute.jsx +41 -0
  139. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/components/Sidebar.jsx +39 -0
  140. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/index.css +30 -0
  141. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/main.jsx +13 -0
  142. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/DashboardPage.jsx +64 -0
  143. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/LoginPage.jsx +73 -0
  144. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/ProductPage.jsx +107 -0
  145. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/RecoverPasswordPage.jsx +69 -0
  146. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/RegisterPage.jsx +69 -0
  147. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/ReportsPage.jsx +152 -0
  148. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/TransactionPage.jsx +195 -0
  149. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/src/pages/WarehousePage.jsx +93 -0
  150. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/tailwind.config.js +13 -0
  151. package/projects/SHMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026/frontend-project/vite.config.js +9 -0
  152. package/projects/SMS-/frontend-project/src/pages/Reports.jsx +179 -23
  153. package/projects/SRMS/frontend/src/pages/Reports.jsx +170 -58
  154. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/README.md +49 -0
  155. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/backend-project/.env +3 -0
  156. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/backend-project/middleware/authMiddleware.js +19 -0
  157. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/backend-project/models/Customer.js +11 -0
  158. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/backend-project/models/Product.js +10 -0
  159. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/backend-project/models/Sale.js +19 -0
  160. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/backend-project/models/User.js +8 -0
  161. package/projects/{SCMS/backend → SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/backend-project}/package-lock.json +1609 -2190
  162. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/backend-project/package.json +20 -0
  163. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/backend-project/routes/authRoutes.js +75 -0
  164. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/backend-project/routes/customerRoutes.js +42 -0
  165. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/backend-project/routes/productRoutes.js +41 -0
  166. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/backend-project/routes/reportRoutes.js +129 -0
  167. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/backend-project/routes/saleRoutes.js +107 -0
  168. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/backend-project/server.js +49 -0
  169. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/dist/assets/index-DZxY56Bj.js +75 -0
  170. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/dist/assets/index-J8MKb3Fq.css +1 -0
  171. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/dist/index.html +13 -0
  172. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/index.html +12 -0
  173. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/package-lock.json +2029 -0
  174. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/package.json +21 -0
  175. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/src/App.jsx +77 -0
  176. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/src/index.css +333 -0
  177. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/src/main.jsx +10 -0
  178. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/src/pages/Customers.jsx +85 -0
  179. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/src/pages/Dashboard.jsx +75 -0
  180. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/src/pages/Login.jsx +65 -0
  181. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/src/pages/Products.jsx +91 -0
  182. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/src/pages/Register.jsx +82 -0
  183. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/src/pages/Reports.jsx +138 -0
  184. package/projects/SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project/src/pages/Sales.jsx +154 -0
  185. package/projects/{SCMS/frontend → SRMS(Ely)/KALIWABO_SHEMA_ELYSEE_National_Practical_Examination_2026(/frontend-project}/vite.config.js +5 -3
  186. package/projects/SCMS/backend/.env +0 -5
  187. package/projects/SCMS/backend/config/db.js +0 -12
  188. package/projects/SCMS/backend/controllers/authController.js +0 -90
  189. package/projects/SCMS/backend/controllers/deliveryController.js +0 -79
  190. package/projects/SCMS/backend/controllers/productController.js +0 -74
  191. package/projects/SCMS/backend/controllers/reportsController.js +0 -77
  192. package/projects/SCMS/backend/controllers/shipmentController.js +0 -80
  193. package/projects/SCMS/backend/controllers/supplierController.js +0 -58
  194. package/projects/SCMS/backend/middleware/auth.js +0 -32
  195. package/projects/SCMS/backend/models/User.js +0 -28
  196. package/projects/SCMS/backend/models/delivery.js +0 -33
  197. package/projects/SCMS/backend/models/product.js +0 -43
  198. package/projects/SCMS/backend/models/shipment.js +0 -34
  199. package/projects/SCMS/backend/models/supplier.js +0 -36
  200. package/projects/SCMS/backend/package.json +0 -23
  201. package/projects/SCMS/backend/routes/SupplierRoutes.js +0 -15
  202. package/projects/SCMS/backend/routes/authRoutes.js +0 -11
  203. package/projects/SCMS/backend/routes/deliveryRoutes.js +0 -18
  204. package/projects/SCMS/backend/routes/productRoutes.js +0 -15
  205. package/projects/SCMS/backend/routes/protectedRoutes.js +0 -10
  206. package/projects/SCMS/backend/routes/reportsRoutes.js +0 -8
  207. package/projects/SCMS/backend/routes/shipmentRoutes.js +0 -18
  208. package/projects/SCMS/backend/server.js +0 -35
  209. package/projects/SCMS/frontend/README.md +0 -16
  210. package/projects/SCMS/frontend/eslint.config.js +0 -21
  211. package/projects/SCMS/frontend/package-lock.json +0 -3053
  212. package/projects/SCMS/frontend/package.json +0 -31
  213. package/projects/SCMS/frontend/public/favicon.svg +0 -1
  214. package/projects/SCMS/frontend/src/App.jsx +0 -35
  215. package/projects/SCMS/frontend/src/components/DashboardLayout.jsx +0 -103
  216. package/projects/SCMS/frontend/src/components/ProtectedRoute.jsx +0 -30
  217. package/projects/SCMS/frontend/src/index.css +0 -114
  218. package/projects/SCMS/frontend/src/main.jsx +0 -10
  219. package/projects/SCMS/frontend/src/pages/DashboardHome.jsx +0 -34
  220. package/projects/SCMS/frontend/src/pages/Delivery.jsx +0 -183
  221. package/projects/SCMS/frontend/src/pages/Login.jsx +0 -81
  222. package/projects/SCMS/frontend/src/pages/Profile.jsx +0 -62
  223. package/projects/SCMS/frontend/src/pages/Register.jsx +0 -110
  224. package/projects/SCMS/frontend/src/pages/Reports.jsx +0 -94
  225. package/projects/SCMS/frontend/src/pages/Shipment.jsx +0 -182
  226. package/projects/SCMS/frontend/src/pages/Supplier.jsx +0 -165
@@ -1,3053 +0,0 @@
1
- {
2
- "name": "frontend",
3
- "version": "0.0.0",
4
- "lockfileVersion": 3,
5
- "requires": true,
6
- "packages": {
7
- "": {
8
- "name": "frontend",
9
- "version": "0.0.0",
10
- "dependencies": {
11
- "@tailwindcss/vite": "^4.3.0",
12
- "axios": "^1.16.1",
13
- "react": "^19.2.6",
14
- "react-dom": "^19.2.6",
15
- "react-router-dom": "^7.15.1",
16
- "tailwindcss": "^4.3.0"
17
- },
18
- "devDependencies": {
19
- "@eslint/js": "^10.0.1",
20
- "@types/react": "^19.2.14",
21
- "@types/react-dom": "^19.2.3",
22
- "@vitejs/plugin-react": "^6.0.1",
23
- "eslint": "^10.3.0",
24
- "eslint-plugin-react-hooks": "^7.1.1",
25
- "eslint-plugin-react-refresh": "^0.5.2",
26
- "globals": "^17.6.0",
27
- "vite": "^8.0.12"
28
- }
29
- },
30
- "node_modules/@babel/code-frame": {
31
- "version": "7.29.7",
32
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
33
- "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
34
- "dev": true,
35
- "license": "MIT",
36
- "dependencies": {
37
- "@babel/helper-validator-identifier": "^7.29.7",
38
- "js-tokens": "^4.0.0",
39
- "picocolors": "^1.1.1"
40
- },
41
- "engines": {
42
- "node": ">=6.9.0"
43
- }
44
- },
45
- "node_modules/@babel/compat-data": {
46
- "version": "7.29.7",
47
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz",
48
- "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==",
49
- "dev": true,
50
- "license": "MIT",
51
- "engines": {
52
- "node": ">=6.9.0"
53
- }
54
- },
55
- "node_modules/@babel/core": {
56
- "version": "7.29.7",
57
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz",
58
- "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
59
- "dev": true,
60
- "license": "MIT",
61
- "dependencies": {
62
- "@babel/code-frame": "^7.29.7",
63
- "@babel/generator": "^7.29.7",
64
- "@babel/helper-compilation-targets": "^7.29.7",
65
- "@babel/helper-module-transforms": "^7.29.7",
66
- "@babel/helpers": "^7.29.7",
67
- "@babel/parser": "^7.29.7",
68
- "@babel/template": "^7.29.7",
69
- "@babel/traverse": "^7.29.7",
70
- "@babel/types": "^7.29.7",
71
- "@jridgewell/remapping": "^2.3.5",
72
- "convert-source-map": "^2.0.0",
73
- "debug": "^4.1.0",
74
- "gensync": "^1.0.0-beta.2",
75
- "json5": "^2.2.3",
76
- "semver": "^6.3.1"
77
- },
78
- "engines": {
79
- "node": ">=6.9.0"
80
- },
81
- "funding": {
82
- "type": "opencollective",
83
- "url": "https://opencollective.com/babel"
84
- }
85
- },
86
- "node_modules/@babel/generator": {
87
- "version": "7.29.7",
88
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz",
89
- "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==",
90
- "dev": true,
91
- "license": "MIT",
92
- "dependencies": {
93
- "@babel/parser": "^7.29.7",
94
- "@babel/types": "^7.29.7",
95
- "@jridgewell/gen-mapping": "^0.3.12",
96
- "@jridgewell/trace-mapping": "^0.3.28",
97
- "jsesc": "^3.0.2"
98
- },
99
- "engines": {
100
- "node": ">=6.9.0"
101
- }
102
- },
103
- "node_modules/@babel/helper-compilation-targets": {
104
- "version": "7.29.7",
105
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
106
- "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
107
- "dev": true,
108
- "license": "MIT",
109
- "dependencies": {
110
- "@babel/compat-data": "^7.29.7",
111
- "@babel/helper-validator-option": "^7.29.7",
112
- "browserslist": "^4.24.0",
113
- "lru-cache": "^5.1.1",
114
- "semver": "^6.3.1"
115
- },
116
- "engines": {
117
- "node": ">=6.9.0"
118
- }
119
- },
120
- "node_modules/@babel/helper-globals": {
121
- "version": "7.29.7",
122
- "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
123
- "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
124
- "dev": true,
125
- "license": "MIT",
126
- "engines": {
127
- "node": ">=6.9.0"
128
- }
129
- },
130
- "node_modules/@babel/helper-module-imports": {
131
- "version": "7.29.7",
132
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
133
- "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
134
- "dev": true,
135
- "license": "MIT",
136
- "dependencies": {
137
- "@babel/traverse": "^7.29.7",
138
- "@babel/types": "^7.29.7"
139
- },
140
- "engines": {
141
- "node": ">=6.9.0"
142
- }
143
- },
144
- "node_modules/@babel/helper-module-transforms": {
145
- "version": "7.29.7",
146
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
147
- "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
148
- "dev": true,
149
- "license": "MIT",
150
- "dependencies": {
151
- "@babel/helper-module-imports": "^7.29.7",
152
- "@babel/helper-validator-identifier": "^7.29.7",
153
- "@babel/traverse": "^7.29.7"
154
- },
155
- "engines": {
156
- "node": ">=6.9.0"
157
- },
158
- "peerDependencies": {
159
- "@babel/core": "^7.0.0"
160
- }
161
- },
162
- "node_modules/@babel/helper-string-parser": {
163
- "version": "7.29.7",
164
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
165
- "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
166
- "dev": true,
167
- "license": "MIT",
168
- "engines": {
169
- "node": ">=6.9.0"
170
- }
171
- },
172
- "node_modules/@babel/helper-validator-identifier": {
173
- "version": "7.29.7",
174
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
175
- "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
176
- "dev": true,
177
- "license": "MIT",
178
- "engines": {
179
- "node": ">=6.9.0"
180
- }
181
- },
182
- "node_modules/@babel/helper-validator-option": {
183
- "version": "7.29.7",
184
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
185
- "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==",
186
- "dev": true,
187
- "license": "MIT",
188
- "engines": {
189
- "node": ">=6.9.0"
190
- }
191
- },
192
- "node_modules/@babel/helpers": {
193
- "version": "7.29.7",
194
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz",
195
- "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
196
- "dev": true,
197
- "license": "MIT",
198
- "dependencies": {
199
- "@babel/template": "^7.29.7",
200
- "@babel/types": "^7.29.7"
201
- },
202
- "engines": {
203
- "node": ">=6.9.0"
204
- }
205
- },
206
- "node_modules/@babel/parser": {
207
- "version": "7.29.7",
208
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
209
- "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
210
- "dev": true,
211
- "license": "MIT",
212
- "dependencies": {
213
- "@babel/types": "^7.29.7"
214
- },
215
- "bin": {
216
- "parser": "bin/babel-parser.js"
217
- },
218
- "engines": {
219
- "node": ">=6.0.0"
220
- }
221
- },
222
- "node_modules/@babel/template": {
223
- "version": "7.29.7",
224
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
225
- "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
226
- "dev": true,
227
- "license": "MIT",
228
- "dependencies": {
229
- "@babel/code-frame": "^7.29.7",
230
- "@babel/parser": "^7.29.7",
231
- "@babel/types": "^7.29.7"
232
- },
233
- "engines": {
234
- "node": ">=6.9.0"
235
- }
236
- },
237
- "node_modules/@babel/traverse": {
238
- "version": "7.29.7",
239
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz",
240
- "integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==",
241
- "dev": true,
242
- "license": "MIT",
243
- "dependencies": {
244
- "@babel/code-frame": "^7.29.7",
245
- "@babel/generator": "^7.29.7",
246
- "@babel/helper-globals": "^7.29.7",
247
- "@babel/parser": "^7.29.7",
248
- "@babel/template": "^7.29.7",
249
- "@babel/types": "^7.29.7",
250
- "debug": "^4.3.1"
251
- },
252
- "engines": {
253
- "node": ">=6.9.0"
254
- }
255
- },
256
- "node_modules/@babel/types": {
257
- "version": "7.29.7",
258
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
259
- "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
260
- "dev": true,
261
- "license": "MIT",
262
- "dependencies": {
263
- "@babel/helper-string-parser": "^7.29.7",
264
- "@babel/helper-validator-identifier": "^7.29.7"
265
- },
266
- "engines": {
267
- "node": ">=6.9.0"
268
- }
269
- },
270
- "node_modules/@emnapi/core": {
271
- "version": "1.10.0",
272
- "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
273
- "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
274
- "license": "MIT",
275
- "optional": true,
276
- "dependencies": {
277
- "@emnapi/wasi-threads": "1.2.1",
278
- "tslib": "^2.4.0"
279
- }
280
- },
281
- "node_modules/@emnapi/runtime": {
282
- "version": "1.10.0",
283
- "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
284
- "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
285
- "license": "MIT",
286
- "optional": true,
287
- "dependencies": {
288
- "tslib": "^2.4.0"
289
- }
290
- },
291
- "node_modules/@emnapi/wasi-threads": {
292
- "version": "1.2.1",
293
- "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
294
- "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
295
- "license": "MIT",
296
- "optional": true,
297
- "dependencies": {
298
- "tslib": "^2.4.0"
299
- }
300
- },
301
- "node_modules/@eslint-community/eslint-utils": {
302
- "version": "4.9.1",
303
- "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz",
304
- "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
305
- "dev": true,
306
- "license": "MIT",
307
- "dependencies": {
308
- "eslint-visitor-keys": "^3.4.3"
309
- },
310
- "engines": {
311
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
312
- },
313
- "funding": {
314
- "url": "https://opencollective.com/eslint"
315
- },
316
- "peerDependencies": {
317
- "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
318
- }
319
- },
320
- "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
321
- "version": "3.4.3",
322
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
323
- "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
324
- "dev": true,
325
- "license": "Apache-2.0",
326
- "engines": {
327
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
328
- },
329
- "funding": {
330
- "url": "https://opencollective.com/eslint"
331
- }
332
- },
333
- "node_modules/@eslint-community/regexpp": {
334
- "version": "4.12.2",
335
- "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
336
- "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
337
- "dev": true,
338
- "license": "MIT",
339
- "engines": {
340
- "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
341
- }
342
- },
343
- "node_modules/@eslint/config-array": {
344
- "version": "0.23.5",
345
- "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.23.5.tgz",
346
- "integrity": "sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==",
347
- "dev": true,
348
- "license": "Apache-2.0",
349
- "dependencies": {
350
- "@eslint/object-schema": "^3.0.5",
351
- "debug": "^4.3.1",
352
- "minimatch": "^10.2.4"
353
- },
354
- "engines": {
355
- "node": "^20.19.0 || ^22.13.0 || >=24"
356
- }
357
- },
358
- "node_modules/@eslint/config-helpers": {
359
- "version": "0.6.0",
360
- "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.6.0.tgz",
361
- "integrity": "sha512-ii6Bw9jJ2zi2cWA2Z+9/QZ/+3DX6kwaV5Q986D/CdP3Lap3w/pgQZ373FV7byY/i7L4IRH/G43I5dz1ClsCbpA==",
362
- "dev": true,
363
- "license": "Apache-2.0",
364
- "dependencies": {
365
- "@eslint/core": "^1.2.1"
366
- },
367
- "engines": {
368
- "node": "^20.19.0 || ^22.13.0 || >=24"
369
- }
370
- },
371
- "node_modules/@eslint/core": {
372
- "version": "1.2.1",
373
- "resolved": "https://registry.npmjs.org/@eslint/core/-/core-1.2.1.tgz",
374
- "integrity": "sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==",
375
- "dev": true,
376
- "license": "Apache-2.0",
377
- "dependencies": {
378
- "@types/json-schema": "^7.0.15"
379
- },
380
- "engines": {
381
- "node": "^20.19.0 || ^22.13.0 || >=24"
382
- }
383
- },
384
- "node_modules/@eslint/js": {
385
- "version": "10.0.1",
386
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-10.0.1.tgz",
387
- "integrity": "sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==",
388
- "dev": true,
389
- "license": "MIT",
390
- "engines": {
391
- "node": "^20.19.0 || ^22.13.0 || >=24"
392
- },
393
- "funding": {
394
- "url": "https://eslint.org/donate"
395
- },
396
- "peerDependencies": {
397
- "eslint": "^10.0.0"
398
- },
399
- "peerDependenciesMeta": {
400
- "eslint": {
401
- "optional": true
402
- }
403
- }
404
- },
405
- "node_modules/@eslint/object-schema": {
406
- "version": "3.0.5",
407
- "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-3.0.5.tgz",
408
- "integrity": "sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==",
409
- "dev": true,
410
- "license": "Apache-2.0",
411
- "engines": {
412
- "node": "^20.19.0 || ^22.13.0 || >=24"
413
- }
414
- },
415
- "node_modules/@eslint/plugin-kit": {
416
- "version": "0.7.1",
417
- "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.7.1.tgz",
418
- "integrity": "sha512-rZAP3aVgB9ds9KOeUSL+zZ21hPmo8dh6fnIFwRQj5EAZl9gzR7wxYbYXYysAM8CTqGmUGyp2S4kUdV17MnGuWQ==",
419
- "dev": true,
420
- "license": "Apache-2.0",
421
- "dependencies": {
422
- "@eslint/core": "^1.2.1",
423
- "levn": "^0.4.1"
424
- },
425
- "engines": {
426
- "node": "^20.19.0 || ^22.13.0 || >=24"
427
- }
428
- },
429
- "node_modules/@humanfs/core": {
430
- "version": "0.19.2",
431
- "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz",
432
- "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==",
433
- "dev": true,
434
- "license": "Apache-2.0",
435
- "dependencies": {
436
- "@humanfs/types": "^0.15.0"
437
- },
438
- "engines": {
439
- "node": ">=18.18.0"
440
- }
441
- },
442
- "node_modules/@humanfs/node": {
443
- "version": "0.16.8",
444
- "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz",
445
- "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==",
446
- "dev": true,
447
- "license": "Apache-2.0",
448
- "dependencies": {
449
- "@humanfs/core": "^0.19.2",
450
- "@humanfs/types": "^0.15.0",
451
- "@humanwhocodes/retry": "^0.4.0"
452
- },
453
- "engines": {
454
- "node": ">=18.18.0"
455
- }
456
- },
457
- "node_modules/@humanfs/types": {
458
- "version": "0.15.0",
459
- "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz",
460
- "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==",
461
- "dev": true,
462
- "license": "Apache-2.0",
463
- "engines": {
464
- "node": ">=18.18.0"
465
- }
466
- },
467
- "node_modules/@humanwhocodes/module-importer": {
468
- "version": "1.0.1",
469
- "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
470
- "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
471
- "dev": true,
472
- "license": "Apache-2.0",
473
- "engines": {
474
- "node": ">=12.22"
475
- },
476
- "funding": {
477
- "type": "github",
478
- "url": "https://github.com/sponsors/nzakas"
479
- }
480
- },
481
- "node_modules/@humanwhocodes/retry": {
482
- "version": "0.4.3",
483
- "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
484
- "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
485
- "dev": true,
486
- "license": "Apache-2.0",
487
- "engines": {
488
- "node": ">=18.18"
489
- },
490
- "funding": {
491
- "type": "github",
492
- "url": "https://github.com/sponsors/nzakas"
493
- }
494
- },
495
- "node_modules/@jridgewell/gen-mapping": {
496
- "version": "0.3.13",
497
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
498
- "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
499
- "license": "MIT",
500
- "dependencies": {
501
- "@jridgewell/sourcemap-codec": "^1.5.0",
502
- "@jridgewell/trace-mapping": "^0.3.24"
503
- }
504
- },
505
- "node_modules/@jridgewell/remapping": {
506
- "version": "2.3.5",
507
- "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
508
- "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
509
- "license": "MIT",
510
- "dependencies": {
511
- "@jridgewell/gen-mapping": "^0.3.5",
512
- "@jridgewell/trace-mapping": "^0.3.24"
513
- }
514
- },
515
- "node_modules/@jridgewell/resolve-uri": {
516
- "version": "3.1.2",
517
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
518
- "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
519
- "license": "MIT",
520
- "engines": {
521
- "node": ">=6.0.0"
522
- }
523
- },
524
- "node_modules/@jridgewell/sourcemap-codec": {
525
- "version": "1.5.5",
526
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
527
- "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
528
- "license": "MIT"
529
- },
530
- "node_modules/@jridgewell/trace-mapping": {
531
- "version": "0.3.31",
532
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
533
- "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
534
- "license": "MIT",
535
- "dependencies": {
536
- "@jridgewell/resolve-uri": "^3.1.0",
537
- "@jridgewell/sourcemap-codec": "^1.4.14"
538
- }
539
- },
540
- "node_modules/@napi-rs/wasm-runtime": {
541
- "version": "1.1.4",
542
- "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
543
- "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
544
- "license": "MIT",
545
- "optional": true,
546
- "dependencies": {
547
- "@tybys/wasm-util": "^0.10.1"
548
- },
549
- "funding": {
550
- "type": "github",
551
- "url": "https://github.com/sponsors/Brooooooklyn"
552
- },
553
- "peerDependencies": {
554
- "@emnapi/core": "^1.7.1",
555
- "@emnapi/runtime": "^1.7.1"
556
- }
557
- },
558
- "node_modules/@oxc-project/types": {
559
- "version": "0.132.0",
560
- "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.132.0.tgz",
561
- "integrity": "sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ==",
562
- "license": "MIT",
563
- "funding": {
564
- "url": "https://github.com/sponsors/Boshen"
565
- }
566
- },
567
- "node_modules/@rolldown/binding-android-arm64": {
568
- "version": "1.0.2",
569
- "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.2.tgz",
570
- "integrity": "sha512-ZS4D1JPGn/MYQN/SYDWftIE/nVsM8j/AFOYEzAoOE2O3NktQOZru+/vYXGbR/qtdLdIfGCP0lcoJiYVzsEz+iQ==",
571
- "cpu": [
572
- "arm64"
573
- ],
574
- "license": "MIT",
575
- "optional": true,
576
- "os": [
577
- "android"
578
- ],
579
- "engines": {
580
- "node": "^20.19.0 || >=22.12.0"
581
- }
582
- },
583
- "node_modules/@rolldown/binding-darwin-arm64": {
584
- "version": "1.0.2",
585
- "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.2.tgz",
586
- "integrity": "sha512-vdFA9+C/rekyGce7WqHs/xoT0ioZEWaOFyZLIV1mEeNFaFDUQrPIo8Vs2GvJ6eetb3rzDUtUBgzto3ExpXJB3w==",
587
- "cpu": [
588
- "arm64"
589
- ],
590
- "license": "MIT",
591
- "optional": true,
592
- "os": [
593
- "darwin"
594
- ],
595
- "engines": {
596
- "node": "^20.19.0 || >=22.12.0"
597
- }
598
- },
599
- "node_modules/@rolldown/binding-darwin-x64": {
600
- "version": "1.0.2",
601
- "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.2.tgz",
602
- "integrity": "sha512-BewSOwTHazv77DTYiAZXSqqKZ4KP/KonFisDMVU7PImxoWfB2aepnPhd2E4SWz3zDzYgDNbs6jBmTdgNnF02GA==",
603
- "cpu": [
604
- "x64"
605
- ],
606
- "license": "MIT",
607
- "optional": true,
608
- "os": [
609
- "darwin"
610
- ],
611
- "engines": {
612
- "node": "^20.19.0 || >=22.12.0"
613
- }
614
- },
615
- "node_modules/@rolldown/binding-freebsd-x64": {
616
- "version": "1.0.2",
617
- "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.2.tgz",
618
- "integrity": "sha512-m41o7M0YWtUdqk61Tb+jnKb2rN++iRdIASlExkUoKfIAH30DOHCB8fVLzSUpbWHHU8esmEioY62PxzexE8MBuA==",
619
- "cpu": [
620
- "x64"
621
- ],
622
- "license": "MIT",
623
- "optional": true,
624
- "os": [
625
- "freebsd"
626
- ],
627
- "engines": {
628
- "node": "^20.19.0 || >=22.12.0"
629
- }
630
- },
631
- "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
632
- "version": "1.0.2",
633
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.2.tgz",
634
- "integrity": "sha512-jcojB9H7W/jS29pMKWAK1N+fU99vXodHDTatS3b3y/XSOCiHo0kkA74pL3jJmkoQtYpOCxDvaKs1fo2Ij/1X5w==",
635
- "cpu": [
636
- "arm"
637
- ],
638
- "license": "MIT",
639
- "optional": true,
640
- "os": [
641
- "linux"
642
- ],
643
- "engines": {
644
- "node": "^20.19.0 || >=22.12.0"
645
- }
646
- },
647
- "node_modules/@rolldown/binding-linux-arm64-gnu": {
648
- "version": "1.0.2",
649
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.2.tgz",
650
- "integrity": "sha512-1jn6qDU5iiOgFgygDzKUuKP0maTi0/f1+sBLgvij/76C77Nm3ts6ufz9Bjg5q5dduxiUIxtq86JIoBvo1xQ4Ig==",
651
- "cpu": [
652
- "arm64"
653
- ],
654
- "license": "MIT",
655
- "optional": true,
656
- "os": [
657
- "linux"
658
- ],
659
- "engines": {
660
- "node": "^20.19.0 || >=22.12.0"
661
- }
662
- },
663
- "node_modules/@rolldown/binding-linux-arm64-musl": {
664
- "version": "1.0.2",
665
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.2.tgz",
666
- "integrity": "sha512-QVLO/czFMdoMFSqlX3bcswcJNm/23r+qoa/jgtmFc/qEp6/jXmIkDjF/XIo8dPfGaiwy1xfQn8o77L79GeXFgw==",
667
- "cpu": [
668
- "arm64"
669
- ],
670
- "license": "MIT",
671
- "optional": true,
672
- "os": [
673
- "linux"
674
- ],
675
- "engines": {
676
- "node": "^20.19.0 || >=22.12.0"
677
- }
678
- },
679
- "node_modules/@rolldown/binding-linux-ppc64-gnu": {
680
- "version": "1.0.2",
681
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.2.tgz",
682
- "integrity": "sha512-hgO5Abm0w5UL6FEa2iFnZqo2KlK7TQ5QhV5x09hujBf7t5KzHQ1VmfPuTpqRy/rNlSxua3eWH374xxiVrP+lcA==",
683
- "cpu": [
684
- "ppc64"
685
- ],
686
- "license": "MIT",
687
- "optional": true,
688
- "os": [
689
- "linux"
690
- ],
691
- "engines": {
692
- "node": "^20.19.0 || >=22.12.0"
693
- }
694
- },
695
- "node_modules/@rolldown/binding-linux-s390x-gnu": {
696
- "version": "1.0.2",
697
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.2.tgz",
698
- "integrity": "sha512-fy8rXxuYEu602abC8MUNaPjYLIFzReOaEIEMKMUa0rFEUxNpVXhs15KSSQ4qlqSaM7B6rcj9rDZgADh/IGDzLQ==",
699
- "cpu": [
700
- "s390x"
701
- ],
702
- "license": "MIT",
703
- "optional": true,
704
- "os": [
705
- "linux"
706
- ],
707
- "engines": {
708
- "node": "^20.19.0 || >=22.12.0"
709
- }
710
- },
711
- "node_modules/@rolldown/binding-linux-x64-gnu": {
712
- "version": "1.0.2",
713
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.2.tgz",
714
- "integrity": "sha512-0+bOkiQ779+r1WpoHOWHqncvyySci0vKph+myNDYb+im6meJAzHQXay6oEgnkHuUGouM1LKTZwqKpBow6Kj7CQ==",
715
- "cpu": [
716
- "x64"
717
- ],
718
- "license": "MIT",
719
- "optional": true,
720
- "os": [
721
- "linux"
722
- ],
723
- "engines": {
724
- "node": "^20.19.0 || >=22.12.0"
725
- }
726
- },
727
- "node_modules/@rolldown/binding-linux-x64-musl": {
728
- "version": "1.0.2",
729
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.2.tgz",
730
- "integrity": "sha512-mjSkrzZK5Qsl0a9d1JgILOiuZOSDTVdKENcSXBoqbzSrspLR/4/IRVDo5wd2GgZjNss/viBFJdeq+j7qH2nypw==",
731
- "cpu": [
732
- "x64"
733
- ],
734
- "license": "MIT",
735
- "optional": true,
736
- "os": [
737
- "linux"
738
- ],
739
- "engines": {
740
- "node": "^20.19.0 || >=22.12.0"
741
- }
742
- },
743
- "node_modules/@rolldown/binding-openharmony-arm64": {
744
- "version": "1.0.2",
745
- "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.2.tgz",
746
- "integrity": "sha512-1v5vHasdfQAZoEHakBV72LIFAC9JjnymsiKxp+GEr/ma3+NJCPSaYK+qavInOovJkgwFrs7GccX2d6IgDA3Z5w==",
747
- "cpu": [
748
- "arm64"
749
- ],
750
- "license": "MIT",
751
- "optional": true,
752
- "os": [
753
- "openharmony"
754
- ],
755
- "engines": {
756
- "node": "^20.19.0 || >=22.12.0"
757
- }
758
- },
759
- "node_modules/@rolldown/binding-wasm32-wasi": {
760
- "version": "1.0.2",
761
- "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.2.tgz",
762
- "integrity": "sha512-mb1VobWn6NheziTk5/WEaR6AKVbrwT5sOi6C7zk3gy/pD1qtJfU1j4PgTo2NJnOtbL9Dl3Aeei8w9jJ7qC2jZQ==",
763
- "cpu": [
764
- "wasm32"
765
- ],
766
- "license": "MIT",
767
- "optional": true,
768
- "dependencies": {
769
- "@emnapi/core": "1.10.0",
770
- "@emnapi/runtime": "1.10.0",
771
- "@napi-rs/wasm-runtime": "^1.1.4"
772
- },
773
- "engines": {
774
- "node": "^20.19.0 || >=22.12.0"
775
- }
776
- },
777
- "node_modules/@rolldown/binding-win32-arm64-msvc": {
778
- "version": "1.0.2",
779
- "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.2.tgz",
780
- "integrity": "sha512-SqKonF56vA/L2yHwHYcEp2P34URpOZ7d1fS635cTkpDnUtEGdUbhI6NzsPdqeSWvAAeGDrxjWjNmibDIdFf9/A==",
781
- "cpu": [
782
- "arm64"
783
- ],
784
- "license": "MIT",
785
- "optional": true,
786
- "os": [
787
- "win32"
788
- ],
789
- "engines": {
790
- "node": "^20.19.0 || >=22.12.0"
791
- }
792
- },
793
- "node_modules/@rolldown/binding-win32-x64-msvc": {
794
- "version": "1.0.2",
795
- "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.2.tgz",
796
- "integrity": "sha512-v7qRI7gXLRINcOGXt+7YmAZ6iFuyZVMIoXAxhd8oP+DR9dLfL9GfNIx7PLMxmhZdvq8waUJBQiWN9EKNy+TRBQ==",
797
- "cpu": [
798
- "x64"
799
- ],
800
- "license": "MIT",
801
- "optional": true,
802
- "os": [
803
- "win32"
804
- ],
805
- "engines": {
806
- "node": "^20.19.0 || >=22.12.0"
807
- }
808
- },
809
- "node_modules/@rolldown/pluginutils": {
810
- "version": "1.0.1",
811
- "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
812
- "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
813
- "license": "MIT"
814
- },
815
- "node_modules/@tailwindcss/node": {
816
- "version": "4.3.0",
817
- "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.0.tgz",
818
- "integrity": "sha512-aFb4gUhFOgdh9AXo4IzBEOzBkkAxm9VigwDJnMIYv3lcfXCJVesNfbEaBl4BNgVRyid92AmdviqwBUBRKSeY3g==",
819
- "license": "MIT",
820
- "dependencies": {
821
- "@jridgewell/remapping": "^2.3.5",
822
- "enhanced-resolve": "^5.21.0",
823
- "jiti": "^2.6.1",
824
- "lightningcss": "1.32.0",
825
- "magic-string": "^0.30.21",
826
- "source-map-js": "^1.2.1",
827
- "tailwindcss": "4.3.0"
828
- }
829
- },
830
- "node_modules/@tailwindcss/oxide": {
831
- "version": "4.3.0",
832
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.0.tgz",
833
- "integrity": "sha512-F7HZGBeN9I0/AuuJS5PwcD8xayx5ri5GhjYUDBEVYUkexyA/giwbDNjRVrxSezE3T250OU2K/wp/ltWx3UOefg==",
834
- "license": "MIT",
835
- "engines": {
836
- "node": ">= 20"
837
- },
838
- "optionalDependencies": {
839
- "@tailwindcss/oxide-android-arm64": "4.3.0",
840
- "@tailwindcss/oxide-darwin-arm64": "4.3.0",
841
- "@tailwindcss/oxide-darwin-x64": "4.3.0",
842
- "@tailwindcss/oxide-freebsd-x64": "4.3.0",
843
- "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.0",
844
- "@tailwindcss/oxide-linux-arm64-gnu": "4.3.0",
845
- "@tailwindcss/oxide-linux-arm64-musl": "4.3.0",
846
- "@tailwindcss/oxide-linux-x64-gnu": "4.3.0",
847
- "@tailwindcss/oxide-linux-x64-musl": "4.3.0",
848
- "@tailwindcss/oxide-wasm32-wasi": "4.3.0",
849
- "@tailwindcss/oxide-win32-arm64-msvc": "4.3.0",
850
- "@tailwindcss/oxide-win32-x64-msvc": "4.3.0"
851
- }
852
- },
853
- "node_modules/@tailwindcss/oxide-android-arm64": {
854
- "version": "4.3.0",
855
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.0.tgz",
856
- "integrity": "sha512-TJPiq67tKlLuObP6RkwvVGDoxCMBVtDgKkLfa/uyj7/FyxvQwHS+UOnVrXXgbEsfUaMgiVvC4KbJnRr26ho4Ng==",
857
- "cpu": [
858
- "arm64"
859
- ],
860
- "license": "MIT",
861
- "optional": true,
862
- "os": [
863
- "android"
864
- ],
865
- "engines": {
866
- "node": ">= 20"
867
- }
868
- },
869
- "node_modules/@tailwindcss/oxide-darwin-arm64": {
870
- "version": "4.3.0",
871
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.0.tgz",
872
- "integrity": "sha512-oMN/WZRb+SO37BmUElEgeEWuU8E/HXRkiODxJxLe1UTHVXLrdVSgfaJV7pSlhRGMSOiXLuxTIjfsF3wYvz8cgQ==",
873
- "cpu": [
874
- "arm64"
875
- ],
876
- "license": "MIT",
877
- "optional": true,
878
- "os": [
879
- "darwin"
880
- ],
881
- "engines": {
882
- "node": ">= 20"
883
- }
884
- },
885
- "node_modules/@tailwindcss/oxide-darwin-x64": {
886
- "version": "4.3.0",
887
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.0.tgz",
888
- "integrity": "sha512-N6CUmu4a6bKVADfw77p+iw6Yd9Q3OBhe0veaDX+QazfuVYlQsHfDgxBrsjQ/IW+zywL8mTrNd0SdJT/zgtvMdA==",
889
- "cpu": [
890
- "x64"
891
- ],
892
- "license": "MIT",
893
- "optional": true,
894
- "os": [
895
- "darwin"
896
- ],
897
- "engines": {
898
- "node": ">= 20"
899
- }
900
- },
901
- "node_modules/@tailwindcss/oxide-freebsd-x64": {
902
- "version": "4.3.0",
903
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.0.tgz",
904
- "integrity": "sha512-zDL5hBkQdH5C6MpqbK3gQAgP80tsMwSI26vjOzjJtNCMUo0lFgOItzHKBIupOZNQxt3ouPH7RPhvNhiTfCe5CQ==",
905
- "cpu": [
906
- "x64"
907
- ],
908
- "license": "MIT",
909
- "optional": true,
910
- "os": [
911
- "freebsd"
912
- ],
913
- "engines": {
914
- "node": ">= 20"
915
- }
916
- },
917
- "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
918
- "version": "4.3.0",
919
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.0.tgz",
920
- "integrity": "sha512-R06HdNi7A7OEoMsf6d4tjZ71RCWnZQPHj2mnotSFURjNLdBC+cIgXQ7l81CqeoiQftjf6OOblxXMInMgN2VzMA==",
921
- "cpu": [
922
- "arm"
923
- ],
924
- "license": "MIT",
925
- "optional": true,
926
- "os": [
927
- "linux"
928
- ],
929
- "engines": {
930
- "node": ">= 20"
931
- }
932
- },
933
- "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
934
- "version": "4.3.0",
935
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.0.tgz",
936
- "integrity": "sha512-qTJHELX8jetjhRQHCLilkVLmybpzNQAtaI/gaoVoidn/ufbNDbAo8KlK2J+yPoc8wQxvDxCmh/5lr8nC1+lTbg==",
937
- "cpu": [
938
- "arm64"
939
- ],
940
- "license": "MIT",
941
- "optional": true,
942
- "os": [
943
- "linux"
944
- ],
945
- "engines": {
946
- "node": ">= 20"
947
- }
948
- },
949
- "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
950
- "version": "4.3.0",
951
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.0.tgz",
952
- "integrity": "sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ==",
953
- "cpu": [
954
- "arm64"
955
- ],
956
- "license": "MIT",
957
- "optional": true,
958
- "os": [
959
- "linux"
960
- ],
961
- "engines": {
962
- "node": ">= 20"
963
- }
964
- },
965
- "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
966
- "version": "4.3.0",
967
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.0.tgz",
968
- "integrity": "sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ==",
969
- "cpu": [
970
- "x64"
971
- ],
972
- "license": "MIT",
973
- "optional": true,
974
- "os": [
975
- "linux"
976
- ],
977
- "engines": {
978
- "node": ">= 20"
979
- }
980
- },
981
- "node_modules/@tailwindcss/oxide-linux-x64-musl": {
982
- "version": "4.3.0",
983
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.0.tgz",
984
- "integrity": "sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg==",
985
- "cpu": [
986
- "x64"
987
- ],
988
- "license": "MIT",
989
- "optional": true,
990
- "os": [
991
- "linux"
992
- ],
993
- "engines": {
994
- "node": ">= 20"
995
- }
996
- },
997
- "node_modules/@tailwindcss/oxide-wasm32-wasi": {
998
- "version": "4.3.0",
999
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.0.tgz",
1000
- "integrity": "sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA==",
1001
- "bundleDependencies": [
1002
- "@napi-rs/wasm-runtime",
1003
- "@emnapi/core",
1004
- "@emnapi/runtime",
1005
- "@tybys/wasm-util",
1006
- "@emnapi/wasi-threads",
1007
- "tslib"
1008
- ],
1009
- "cpu": [
1010
- "wasm32"
1011
- ],
1012
- "license": "MIT",
1013
- "optional": true,
1014
- "dependencies": {
1015
- "@emnapi/core": "^1.10.0",
1016
- "@emnapi/runtime": "^1.10.0",
1017
- "@emnapi/wasi-threads": "^1.2.1",
1018
- "@napi-rs/wasm-runtime": "^1.1.4",
1019
- "@tybys/wasm-util": "^0.10.1",
1020
- "tslib": "^2.8.1"
1021
- },
1022
- "engines": {
1023
- "node": ">=14.0.0"
1024
- }
1025
- },
1026
- "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
1027
- "version": "4.3.0",
1028
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.0.tgz",
1029
- "integrity": "sha512-Pe+RPVTi1T+qymuuRpcdvwSVZjnll/f7n8gBxMMh3xLTctMDKqpdfGimbMyioqtLhUYZxdJ9wGNhV7MKHvgZsQ==",
1030
- "cpu": [
1031
- "arm64"
1032
- ],
1033
- "license": "MIT",
1034
- "optional": true,
1035
- "os": [
1036
- "win32"
1037
- ],
1038
- "engines": {
1039
- "node": ">= 20"
1040
- }
1041
- },
1042
- "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
1043
- "version": "4.3.0",
1044
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.0.tgz",
1045
- "integrity": "sha512-Mvrf2kXW/yeW/OTezZlCGOirXRcUuLIBx/5Y12BaPM7wJoryG6dfS/NJL8aBPqtTEx/Vm4T4vKzFUcKDT+TKUA==",
1046
- "cpu": [
1047
- "x64"
1048
- ],
1049
- "license": "MIT",
1050
- "optional": true,
1051
- "os": [
1052
- "win32"
1053
- ],
1054
- "engines": {
1055
- "node": ">= 20"
1056
- }
1057
- },
1058
- "node_modules/@tailwindcss/vite": {
1059
- "version": "4.3.0",
1060
- "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.0.tgz",
1061
- "integrity": "sha512-t6J3OrB5Fc0ExuhohouH0fWUGMYL6PTLhW+E7zIk/pdbnJARZDCwjBznFnkh5ynRnIRSI4YjtTH0t6USjJISrw==",
1062
- "license": "MIT",
1063
- "dependencies": {
1064
- "@tailwindcss/node": "4.3.0",
1065
- "@tailwindcss/oxide": "4.3.0",
1066
- "tailwindcss": "4.3.0"
1067
- },
1068
- "peerDependencies": {
1069
- "vite": "^5.2.0 || ^6 || ^7 || ^8"
1070
- }
1071
- },
1072
- "node_modules/@tybys/wasm-util": {
1073
- "version": "0.10.2",
1074
- "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
1075
- "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
1076
- "license": "MIT",
1077
- "optional": true,
1078
- "dependencies": {
1079
- "tslib": "^2.4.0"
1080
- }
1081
- },
1082
- "node_modules/@types/esrecurse": {
1083
- "version": "4.3.1",
1084
- "resolved": "https://registry.npmjs.org/@types/esrecurse/-/esrecurse-4.3.1.tgz",
1085
- "integrity": "sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==",
1086
- "dev": true,
1087
- "license": "MIT"
1088
- },
1089
- "node_modules/@types/estree": {
1090
- "version": "1.0.9",
1091
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
1092
- "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
1093
- "dev": true,
1094
- "license": "MIT"
1095
- },
1096
- "node_modules/@types/json-schema": {
1097
- "version": "7.0.15",
1098
- "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
1099
- "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
1100
- "dev": true,
1101
- "license": "MIT"
1102
- },
1103
- "node_modules/@types/react": {
1104
- "version": "19.2.15",
1105
- "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.15.tgz",
1106
- "integrity": "sha512-eRwcGNHve+E8qtEQSSRl6urh+rFop4v8gm6O8rGv25CodbvFdLjA1vVQ1KkiFE0w0UPOnb8tDiFKL5lp0rtY5Q==",
1107
- "dev": true,
1108
- "license": "MIT",
1109
- "dependencies": {
1110
- "csstype": "^3.2.2"
1111
- }
1112
- },
1113
- "node_modules/@types/react-dom": {
1114
- "version": "19.2.3",
1115
- "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
1116
- "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
1117
- "dev": true,
1118
- "license": "MIT",
1119
- "peerDependencies": {
1120
- "@types/react": "^19.2.0"
1121
- }
1122
- },
1123
- "node_modules/@vitejs/plugin-react": {
1124
- "version": "6.0.2",
1125
- "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.2.tgz",
1126
- "integrity": "sha512-DlSMqo4WhThw4vB8Mpn0Woe9J+Jfq1geJ61AKW0QEgLzGMNwtIMdxbDUzLxcun8W7NbJO0e2Jg/Nxm3cCSVzzg==",
1127
- "dev": true,
1128
- "license": "MIT",
1129
- "dependencies": {
1130
- "@rolldown/pluginutils": "^1.0.0"
1131
- },
1132
- "engines": {
1133
- "node": "^20.19.0 || >=22.12.0"
1134
- },
1135
- "peerDependencies": {
1136
- "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0",
1137
- "babel-plugin-react-compiler": "^1.0.0",
1138
- "vite": "^8.0.0"
1139
- },
1140
- "peerDependenciesMeta": {
1141
- "@rolldown/plugin-babel": {
1142
- "optional": true
1143
- },
1144
- "babel-plugin-react-compiler": {
1145
- "optional": true
1146
- }
1147
- }
1148
- },
1149
- "node_modules/acorn": {
1150
- "version": "8.16.0",
1151
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
1152
- "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
1153
- "dev": true,
1154
- "license": "MIT",
1155
- "bin": {
1156
- "acorn": "bin/acorn"
1157
- },
1158
- "engines": {
1159
- "node": ">=0.4.0"
1160
- }
1161
- },
1162
- "node_modules/acorn-jsx": {
1163
- "version": "5.3.2",
1164
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
1165
- "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
1166
- "dev": true,
1167
- "license": "MIT",
1168
- "peerDependencies": {
1169
- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
1170
- }
1171
- },
1172
- "node_modules/agent-base": {
1173
- "version": "6.0.2",
1174
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
1175
- "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
1176
- "license": "MIT",
1177
- "dependencies": {
1178
- "debug": "4"
1179
- },
1180
- "engines": {
1181
- "node": ">= 6.0.0"
1182
- }
1183
- },
1184
- "node_modules/ajv": {
1185
- "version": "6.15.0",
1186
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz",
1187
- "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==",
1188
- "dev": true,
1189
- "license": "MIT",
1190
- "dependencies": {
1191
- "fast-deep-equal": "^3.1.1",
1192
- "fast-json-stable-stringify": "^2.0.0",
1193
- "json-schema-traverse": "^0.4.1",
1194
- "uri-js": "^4.2.2"
1195
- },
1196
- "funding": {
1197
- "type": "github",
1198
- "url": "https://github.com/sponsors/epoberezkin"
1199
- }
1200
- },
1201
- "node_modules/asynckit": {
1202
- "version": "0.4.0",
1203
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
1204
- "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
1205
- "license": "MIT"
1206
- },
1207
- "node_modules/axios": {
1208
- "version": "1.16.1",
1209
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.16.1.tgz",
1210
- "integrity": "sha512-caYkukvroVPO8KrzuJEb50Hm07KwfBZPEC3VeFHTsqWHvKTsy54hjJz9BS/cdaypROE2rH6xvm9mHX4fgWkr3A==",
1211
- "license": "MIT",
1212
- "dependencies": {
1213
- "follow-redirects": "^1.16.0",
1214
- "form-data": "^4.0.5",
1215
- "https-proxy-agent": "^5.0.1",
1216
- "proxy-from-env": "^2.1.0"
1217
- }
1218
- },
1219
- "node_modules/balanced-match": {
1220
- "version": "4.0.4",
1221
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
1222
- "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
1223
- "dev": true,
1224
- "license": "MIT",
1225
- "engines": {
1226
- "node": "18 || 20 || >=22"
1227
- }
1228
- },
1229
- "node_modules/baseline-browser-mapping": {
1230
- "version": "2.10.32",
1231
- "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.32.tgz",
1232
- "integrity": "sha512-wbPvpyjJPC0zdfdKXxqEL3Ea+bOMD/87X4lftiJkkaBiuG6ALQy1SLmEd7BSmVCuwCQsBrCamgBoLyfFDD1EPg==",
1233
- "dev": true,
1234
- "license": "Apache-2.0",
1235
- "bin": {
1236
- "baseline-browser-mapping": "dist/cli.cjs"
1237
- },
1238
- "engines": {
1239
- "node": ">=6.0.0"
1240
- }
1241
- },
1242
- "node_modules/brace-expansion": {
1243
- "version": "5.0.6",
1244
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
1245
- "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
1246
- "dev": true,
1247
- "license": "MIT",
1248
- "dependencies": {
1249
- "balanced-match": "^4.0.2"
1250
- },
1251
- "engines": {
1252
- "node": "18 || 20 || >=22"
1253
- }
1254
- },
1255
- "node_modules/browserslist": {
1256
- "version": "4.28.2",
1257
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz",
1258
- "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==",
1259
- "dev": true,
1260
- "funding": [
1261
- {
1262
- "type": "opencollective",
1263
- "url": "https://opencollective.com/browserslist"
1264
- },
1265
- {
1266
- "type": "tidelift",
1267
- "url": "https://tidelift.com/funding/github/npm/browserslist"
1268
- },
1269
- {
1270
- "type": "github",
1271
- "url": "https://github.com/sponsors/ai"
1272
- }
1273
- ],
1274
- "license": "MIT",
1275
- "dependencies": {
1276
- "baseline-browser-mapping": "^2.10.12",
1277
- "caniuse-lite": "^1.0.30001782",
1278
- "electron-to-chromium": "^1.5.328",
1279
- "node-releases": "^2.0.36",
1280
- "update-browserslist-db": "^1.2.3"
1281
- },
1282
- "bin": {
1283
- "browserslist": "cli.js"
1284
- },
1285
- "engines": {
1286
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1287
- }
1288
- },
1289
- "node_modules/call-bind-apply-helpers": {
1290
- "version": "1.0.2",
1291
- "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
1292
- "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
1293
- "license": "MIT",
1294
- "dependencies": {
1295
- "es-errors": "^1.3.0",
1296
- "function-bind": "^1.1.2"
1297
- },
1298
- "engines": {
1299
- "node": ">= 0.4"
1300
- }
1301
- },
1302
- "node_modules/caniuse-lite": {
1303
- "version": "1.0.30001793",
1304
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001793.tgz",
1305
- "integrity": "sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==",
1306
- "dev": true,
1307
- "funding": [
1308
- {
1309
- "type": "opencollective",
1310
- "url": "https://opencollective.com/browserslist"
1311
- },
1312
- {
1313
- "type": "tidelift",
1314
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1315
- },
1316
- {
1317
- "type": "github",
1318
- "url": "https://github.com/sponsors/ai"
1319
- }
1320
- ],
1321
- "license": "CC-BY-4.0"
1322
- },
1323
- "node_modules/combined-stream": {
1324
- "version": "1.0.8",
1325
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
1326
- "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
1327
- "license": "MIT",
1328
- "dependencies": {
1329
- "delayed-stream": "~1.0.0"
1330
- },
1331
- "engines": {
1332
- "node": ">= 0.8"
1333
- }
1334
- },
1335
- "node_modules/convert-source-map": {
1336
- "version": "2.0.0",
1337
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
1338
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
1339
- "dev": true,
1340
- "license": "MIT"
1341
- },
1342
- "node_modules/cookie": {
1343
- "version": "1.1.1",
1344
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
1345
- "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
1346
- "license": "MIT",
1347
- "engines": {
1348
- "node": ">=18"
1349
- },
1350
- "funding": {
1351
- "type": "opencollective",
1352
- "url": "https://opencollective.com/express"
1353
- }
1354
- },
1355
- "node_modules/cross-spawn": {
1356
- "version": "7.0.6",
1357
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
1358
- "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
1359
- "dev": true,
1360
- "license": "MIT",
1361
- "dependencies": {
1362
- "path-key": "^3.1.0",
1363
- "shebang-command": "^2.0.0",
1364
- "which": "^2.0.1"
1365
- },
1366
- "engines": {
1367
- "node": ">= 8"
1368
- }
1369
- },
1370
- "node_modules/csstype": {
1371
- "version": "3.2.3",
1372
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
1373
- "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
1374
- "dev": true,
1375
- "license": "MIT"
1376
- },
1377
- "node_modules/debug": {
1378
- "version": "4.4.3",
1379
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1380
- "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1381
- "license": "MIT",
1382
- "dependencies": {
1383
- "ms": "^2.1.3"
1384
- },
1385
- "engines": {
1386
- "node": ">=6.0"
1387
- },
1388
- "peerDependenciesMeta": {
1389
- "supports-color": {
1390
- "optional": true
1391
- }
1392
- }
1393
- },
1394
- "node_modules/deep-is": {
1395
- "version": "0.1.4",
1396
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
1397
- "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
1398
- "dev": true,
1399
- "license": "MIT"
1400
- },
1401
- "node_modules/delayed-stream": {
1402
- "version": "1.0.0",
1403
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
1404
- "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
1405
- "license": "MIT",
1406
- "engines": {
1407
- "node": ">=0.4.0"
1408
- }
1409
- },
1410
- "node_modules/detect-libc": {
1411
- "version": "2.1.2",
1412
- "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1413
- "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1414
- "license": "Apache-2.0",
1415
- "engines": {
1416
- "node": ">=8"
1417
- }
1418
- },
1419
- "node_modules/dunder-proto": {
1420
- "version": "1.0.1",
1421
- "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
1422
- "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
1423
- "license": "MIT",
1424
- "dependencies": {
1425
- "call-bind-apply-helpers": "^1.0.1",
1426
- "es-errors": "^1.3.0",
1427
- "gopd": "^1.2.0"
1428
- },
1429
- "engines": {
1430
- "node": ">= 0.4"
1431
- }
1432
- },
1433
- "node_modules/electron-to-chromium": {
1434
- "version": "1.5.361",
1435
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.361.tgz",
1436
- "integrity": "sha512-Q6Hts7N9FnJc5LeGRINFvLhCI9xZmNtTDe5ZbcVezQz7cU4a8Aua3GH1b8J2XY8Al9PF+OCwYqhgsOOheMdvkA==",
1437
- "dev": true,
1438
- "license": "ISC"
1439
- },
1440
- "node_modules/enhanced-resolve": {
1441
- "version": "5.22.0",
1442
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.22.0.tgz",
1443
- "integrity": "sha512-xYcDWrpELkFzz9SpZ3PlI6Eu6eD93Yf0WLDRxikGhWJ3MAir2SNZTIVCVZqZ/NUyx8AdMc2gT9C0gPiw18kG+A==",
1444
- "license": "MIT",
1445
- "dependencies": {
1446
- "graceful-fs": "^4.2.4",
1447
- "tapable": "^2.3.3"
1448
- },
1449
- "engines": {
1450
- "node": ">=10.13.0"
1451
- }
1452
- },
1453
- "node_modules/es-define-property": {
1454
- "version": "1.0.1",
1455
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
1456
- "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
1457
- "license": "MIT",
1458
- "engines": {
1459
- "node": ">= 0.4"
1460
- }
1461
- },
1462
- "node_modules/es-errors": {
1463
- "version": "1.3.0",
1464
- "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
1465
- "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
1466
- "license": "MIT",
1467
- "engines": {
1468
- "node": ">= 0.4"
1469
- }
1470
- },
1471
- "node_modules/es-object-atoms": {
1472
- "version": "1.1.2",
1473
- "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
1474
- "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
1475
- "license": "MIT",
1476
- "dependencies": {
1477
- "es-errors": "^1.3.0"
1478
- },
1479
- "engines": {
1480
- "node": ">= 0.4"
1481
- }
1482
- },
1483
- "node_modules/es-set-tostringtag": {
1484
- "version": "2.1.0",
1485
- "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
1486
- "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
1487
- "license": "MIT",
1488
- "dependencies": {
1489
- "es-errors": "^1.3.0",
1490
- "get-intrinsic": "^1.2.6",
1491
- "has-tostringtag": "^1.0.2",
1492
- "hasown": "^2.0.2"
1493
- },
1494
- "engines": {
1495
- "node": ">= 0.4"
1496
- }
1497
- },
1498
- "node_modules/escalade": {
1499
- "version": "3.2.0",
1500
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
1501
- "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
1502
- "dev": true,
1503
- "license": "MIT",
1504
- "engines": {
1505
- "node": ">=6"
1506
- }
1507
- },
1508
- "node_modules/escape-string-regexp": {
1509
- "version": "4.0.0",
1510
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1511
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1512
- "dev": true,
1513
- "license": "MIT",
1514
- "engines": {
1515
- "node": ">=10"
1516
- },
1517
- "funding": {
1518
- "url": "https://github.com/sponsors/sindresorhus"
1519
- }
1520
- },
1521
- "node_modules/eslint": {
1522
- "version": "10.4.0",
1523
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.4.0.tgz",
1524
- "integrity": "sha512-loXy6bWOoP3EP6JA7jo6p5jMpBJmHmsNZM5SFRHLdh1MGOPurMnNBj4ZlAbaqUAaQWbCr7jHV4P7gzAyryZWkQ==",
1525
- "dev": true,
1526
- "license": "MIT",
1527
- "dependencies": {
1528
- "@eslint-community/eslint-utils": "^4.8.0",
1529
- "@eslint-community/regexpp": "^4.12.2",
1530
- "@eslint/config-array": "^0.23.5",
1531
- "@eslint/config-helpers": "^0.6.0",
1532
- "@eslint/core": "^1.2.1",
1533
- "@eslint/plugin-kit": "^0.7.1",
1534
- "@humanfs/node": "^0.16.6",
1535
- "@humanwhocodes/module-importer": "^1.0.1",
1536
- "@humanwhocodes/retry": "^0.4.2",
1537
- "@types/estree": "^1.0.6",
1538
- "ajv": "^6.14.0",
1539
- "cross-spawn": "^7.0.6",
1540
- "debug": "^4.3.2",
1541
- "escape-string-regexp": "^4.0.0",
1542
- "eslint-scope": "^9.1.2",
1543
- "eslint-visitor-keys": "^5.0.1",
1544
- "espree": "^11.2.0",
1545
- "esquery": "^1.7.0",
1546
- "esutils": "^2.0.2",
1547
- "fast-deep-equal": "^3.1.3",
1548
- "file-entry-cache": "^8.0.0",
1549
- "find-up": "^5.0.0",
1550
- "glob-parent": "^6.0.2",
1551
- "ignore": "^5.2.0",
1552
- "imurmurhash": "^0.1.4",
1553
- "is-glob": "^4.0.0",
1554
- "json-stable-stringify-without-jsonify": "^1.0.1",
1555
- "minimatch": "^10.2.4",
1556
- "natural-compare": "^1.4.0",
1557
- "optionator": "^0.9.3"
1558
- },
1559
- "bin": {
1560
- "eslint": "bin/eslint.js"
1561
- },
1562
- "engines": {
1563
- "node": "^20.19.0 || ^22.13.0 || >=24"
1564
- },
1565
- "funding": {
1566
- "url": "https://eslint.org/donate"
1567
- },
1568
- "peerDependencies": {
1569
- "jiti": "*"
1570
- },
1571
- "peerDependenciesMeta": {
1572
- "jiti": {
1573
- "optional": true
1574
- }
1575
- }
1576
- },
1577
- "node_modules/eslint-plugin-react-hooks": {
1578
- "version": "7.1.1",
1579
- "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.1.1.tgz",
1580
- "integrity": "sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==",
1581
- "dev": true,
1582
- "license": "MIT",
1583
- "dependencies": {
1584
- "@babel/core": "^7.24.4",
1585
- "@babel/parser": "^7.24.4",
1586
- "hermes-parser": "^0.25.1",
1587
- "zod": "^3.25.0 || ^4.0.0",
1588
- "zod-validation-error": "^3.5.0 || ^4.0.0"
1589
- },
1590
- "engines": {
1591
- "node": ">=18"
1592
- },
1593
- "peerDependencies": {
1594
- "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0"
1595
- }
1596
- },
1597
- "node_modules/eslint-plugin-react-refresh": {
1598
- "version": "0.5.2",
1599
- "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.2.tgz",
1600
- "integrity": "sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==",
1601
- "dev": true,
1602
- "license": "MIT",
1603
- "peerDependencies": {
1604
- "eslint": "^9 || ^10"
1605
- }
1606
- },
1607
- "node_modules/eslint-scope": {
1608
- "version": "9.1.2",
1609
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-9.1.2.tgz",
1610
- "integrity": "sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==",
1611
- "dev": true,
1612
- "license": "BSD-2-Clause",
1613
- "dependencies": {
1614
- "@types/esrecurse": "^4.3.1",
1615
- "@types/estree": "^1.0.8",
1616
- "esrecurse": "^4.3.0",
1617
- "estraverse": "^5.2.0"
1618
- },
1619
- "engines": {
1620
- "node": "^20.19.0 || ^22.13.0 || >=24"
1621
- },
1622
- "funding": {
1623
- "url": "https://opencollective.com/eslint"
1624
- }
1625
- },
1626
- "node_modules/eslint-visitor-keys": {
1627
- "version": "5.0.1",
1628
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
1629
- "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
1630
- "dev": true,
1631
- "license": "Apache-2.0",
1632
- "engines": {
1633
- "node": "^20.19.0 || ^22.13.0 || >=24"
1634
- },
1635
- "funding": {
1636
- "url": "https://opencollective.com/eslint"
1637
- }
1638
- },
1639
- "node_modules/espree": {
1640
- "version": "11.2.0",
1641
- "resolved": "https://registry.npmjs.org/espree/-/espree-11.2.0.tgz",
1642
- "integrity": "sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==",
1643
- "dev": true,
1644
- "license": "BSD-2-Clause",
1645
- "dependencies": {
1646
- "acorn": "^8.16.0",
1647
- "acorn-jsx": "^5.3.2",
1648
- "eslint-visitor-keys": "^5.0.1"
1649
- },
1650
- "engines": {
1651
- "node": "^20.19.0 || ^22.13.0 || >=24"
1652
- },
1653
- "funding": {
1654
- "url": "https://opencollective.com/eslint"
1655
- }
1656
- },
1657
- "node_modules/esquery": {
1658
- "version": "1.7.0",
1659
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz",
1660
- "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
1661
- "dev": true,
1662
- "license": "BSD-3-Clause",
1663
- "dependencies": {
1664
- "estraverse": "^5.1.0"
1665
- },
1666
- "engines": {
1667
- "node": ">=0.10"
1668
- }
1669
- },
1670
- "node_modules/esrecurse": {
1671
- "version": "4.3.0",
1672
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
1673
- "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
1674
- "dev": true,
1675
- "license": "BSD-2-Clause",
1676
- "dependencies": {
1677
- "estraverse": "^5.2.0"
1678
- },
1679
- "engines": {
1680
- "node": ">=4.0"
1681
- }
1682
- },
1683
- "node_modules/estraverse": {
1684
- "version": "5.3.0",
1685
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
1686
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
1687
- "dev": true,
1688
- "license": "BSD-2-Clause",
1689
- "engines": {
1690
- "node": ">=4.0"
1691
- }
1692
- },
1693
- "node_modules/esutils": {
1694
- "version": "2.0.3",
1695
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
1696
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
1697
- "dev": true,
1698
- "license": "BSD-2-Clause",
1699
- "engines": {
1700
- "node": ">=0.10.0"
1701
- }
1702
- },
1703
- "node_modules/fast-deep-equal": {
1704
- "version": "3.1.3",
1705
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1706
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
1707
- "dev": true,
1708
- "license": "MIT"
1709
- },
1710
- "node_modules/fast-json-stable-stringify": {
1711
- "version": "2.1.0",
1712
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1713
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
1714
- "dev": true,
1715
- "license": "MIT"
1716
- },
1717
- "node_modules/fast-levenshtein": {
1718
- "version": "2.0.6",
1719
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1720
- "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
1721
- "dev": true,
1722
- "license": "MIT"
1723
- },
1724
- "node_modules/fdir": {
1725
- "version": "6.5.0",
1726
- "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
1727
- "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
1728
- "license": "MIT",
1729
- "engines": {
1730
- "node": ">=12.0.0"
1731
- },
1732
- "peerDependencies": {
1733
- "picomatch": "^3 || ^4"
1734
- },
1735
- "peerDependenciesMeta": {
1736
- "picomatch": {
1737
- "optional": true
1738
- }
1739
- }
1740
- },
1741
- "node_modules/file-entry-cache": {
1742
- "version": "8.0.0",
1743
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
1744
- "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
1745
- "dev": true,
1746
- "license": "MIT",
1747
- "dependencies": {
1748
- "flat-cache": "^4.0.0"
1749
- },
1750
- "engines": {
1751
- "node": ">=16.0.0"
1752
- }
1753
- },
1754
- "node_modules/find-up": {
1755
- "version": "5.0.0",
1756
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
1757
- "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
1758
- "dev": true,
1759
- "license": "MIT",
1760
- "dependencies": {
1761
- "locate-path": "^6.0.0",
1762
- "path-exists": "^4.0.0"
1763
- },
1764
- "engines": {
1765
- "node": ">=10"
1766
- },
1767
- "funding": {
1768
- "url": "https://github.com/sponsors/sindresorhus"
1769
- }
1770
- },
1771
- "node_modules/flat-cache": {
1772
- "version": "4.0.1",
1773
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
1774
- "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
1775
- "dev": true,
1776
- "license": "MIT",
1777
- "dependencies": {
1778
- "flatted": "^3.2.9",
1779
- "keyv": "^4.5.4"
1780
- },
1781
- "engines": {
1782
- "node": ">=16"
1783
- }
1784
- },
1785
- "node_modules/flatted": {
1786
- "version": "3.4.2",
1787
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
1788
- "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
1789
- "dev": true,
1790
- "license": "ISC"
1791
- },
1792
- "node_modules/follow-redirects": {
1793
- "version": "1.16.0",
1794
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz",
1795
- "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==",
1796
- "funding": [
1797
- {
1798
- "type": "individual",
1799
- "url": "https://github.com/sponsors/RubenVerborgh"
1800
- }
1801
- ],
1802
- "license": "MIT",
1803
- "engines": {
1804
- "node": ">=4.0"
1805
- },
1806
- "peerDependenciesMeta": {
1807
- "debug": {
1808
- "optional": true
1809
- }
1810
- }
1811
- },
1812
- "node_modules/form-data": {
1813
- "version": "4.0.5",
1814
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
1815
- "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
1816
- "license": "MIT",
1817
- "dependencies": {
1818
- "asynckit": "^0.4.0",
1819
- "combined-stream": "^1.0.8",
1820
- "es-set-tostringtag": "^2.1.0",
1821
- "hasown": "^2.0.2",
1822
- "mime-types": "^2.1.12"
1823
- },
1824
- "engines": {
1825
- "node": ">= 6"
1826
- }
1827
- },
1828
- "node_modules/fsevents": {
1829
- "version": "2.3.3",
1830
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1831
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1832
- "hasInstallScript": true,
1833
- "license": "MIT",
1834
- "optional": true,
1835
- "os": [
1836
- "darwin"
1837
- ],
1838
- "engines": {
1839
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1840
- }
1841
- },
1842
- "node_modules/function-bind": {
1843
- "version": "1.1.2",
1844
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
1845
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
1846
- "license": "MIT",
1847
- "funding": {
1848
- "url": "https://github.com/sponsors/ljharb"
1849
- }
1850
- },
1851
- "node_modules/gensync": {
1852
- "version": "1.0.0-beta.2",
1853
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
1854
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
1855
- "dev": true,
1856
- "license": "MIT",
1857
- "engines": {
1858
- "node": ">=6.9.0"
1859
- }
1860
- },
1861
- "node_modules/get-intrinsic": {
1862
- "version": "1.3.0",
1863
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
1864
- "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
1865
- "license": "MIT",
1866
- "dependencies": {
1867
- "call-bind-apply-helpers": "^1.0.2",
1868
- "es-define-property": "^1.0.1",
1869
- "es-errors": "^1.3.0",
1870
- "es-object-atoms": "^1.1.1",
1871
- "function-bind": "^1.1.2",
1872
- "get-proto": "^1.0.1",
1873
- "gopd": "^1.2.0",
1874
- "has-symbols": "^1.1.0",
1875
- "hasown": "^2.0.2",
1876
- "math-intrinsics": "^1.1.0"
1877
- },
1878
- "engines": {
1879
- "node": ">= 0.4"
1880
- },
1881
- "funding": {
1882
- "url": "https://github.com/sponsors/ljharb"
1883
- }
1884
- },
1885
- "node_modules/get-proto": {
1886
- "version": "1.0.1",
1887
- "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
1888
- "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
1889
- "license": "MIT",
1890
- "dependencies": {
1891
- "dunder-proto": "^1.0.1",
1892
- "es-object-atoms": "^1.0.0"
1893
- },
1894
- "engines": {
1895
- "node": ">= 0.4"
1896
- }
1897
- },
1898
- "node_modules/glob-parent": {
1899
- "version": "6.0.2",
1900
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
1901
- "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
1902
- "dev": true,
1903
- "license": "ISC",
1904
- "dependencies": {
1905
- "is-glob": "^4.0.3"
1906
- },
1907
- "engines": {
1908
- "node": ">=10.13.0"
1909
- }
1910
- },
1911
- "node_modules/globals": {
1912
- "version": "17.6.0",
1913
- "resolved": "https://registry.npmjs.org/globals/-/globals-17.6.0.tgz",
1914
- "integrity": "sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==",
1915
- "dev": true,
1916
- "license": "MIT",
1917
- "engines": {
1918
- "node": ">=18"
1919
- },
1920
- "funding": {
1921
- "url": "https://github.com/sponsors/sindresorhus"
1922
- }
1923
- },
1924
- "node_modules/gopd": {
1925
- "version": "1.2.0",
1926
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
1927
- "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
1928
- "license": "MIT",
1929
- "engines": {
1930
- "node": ">= 0.4"
1931
- },
1932
- "funding": {
1933
- "url": "https://github.com/sponsors/ljharb"
1934
- }
1935
- },
1936
- "node_modules/graceful-fs": {
1937
- "version": "4.2.11",
1938
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1939
- "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1940
- "license": "ISC"
1941
- },
1942
- "node_modules/has-symbols": {
1943
- "version": "1.1.0",
1944
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
1945
- "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
1946
- "license": "MIT",
1947
- "engines": {
1948
- "node": ">= 0.4"
1949
- },
1950
- "funding": {
1951
- "url": "https://github.com/sponsors/ljharb"
1952
- }
1953
- },
1954
- "node_modules/has-tostringtag": {
1955
- "version": "1.0.2",
1956
- "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
1957
- "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
1958
- "license": "MIT",
1959
- "dependencies": {
1960
- "has-symbols": "^1.0.3"
1961
- },
1962
- "engines": {
1963
- "node": ">= 0.4"
1964
- },
1965
- "funding": {
1966
- "url": "https://github.com/sponsors/ljharb"
1967
- }
1968
- },
1969
- "node_modules/hasown": {
1970
- "version": "2.0.3",
1971
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz",
1972
- "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==",
1973
- "license": "MIT",
1974
- "dependencies": {
1975
- "function-bind": "^1.1.2"
1976
- },
1977
- "engines": {
1978
- "node": ">= 0.4"
1979
- }
1980
- },
1981
- "node_modules/hermes-estree": {
1982
- "version": "0.25.1",
1983
- "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz",
1984
- "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==",
1985
- "dev": true,
1986
- "license": "MIT"
1987
- },
1988
- "node_modules/hermes-parser": {
1989
- "version": "0.25.1",
1990
- "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz",
1991
- "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==",
1992
- "dev": true,
1993
- "license": "MIT",
1994
- "dependencies": {
1995
- "hermes-estree": "0.25.1"
1996
- }
1997
- },
1998
- "node_modules/https-proxy-agent": {
1999
- "version": "5.0.1",
2000
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
2001
- "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
2002
- "license": "MIT",
2003
- "dependencies": {
2004
- "agent-base": "6",
2005
- "debug": "4"
2006
- },
2007
- "engines": {
2008
- "node": ">= 6"
2009
- }
2010
- },
2011
- "node_modules/ignore": {
2012
- "version": "5.3.2",
2013
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
2014
- "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
2015
- "dev": true,
2016
- "license": "MIT",
2017
- "engines": {
2018
- "node": ">= 4"
2019
- }
2020
- },
2021
- "node_modules/imurmurhash": {
2022
- "version": "0.1.4",
2023
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
2024
- "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
2025
- "dev": true,
2026
- "license": "MIT",
2027
- "engines": {
2028
- "node": ">=0.8.19"
2029
- }
2030
- },
2031
- "node_modules/is-extglob": {
2032
- "version": "2.1.1",
2033
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
2034
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
2035
- "dev": true,
2036
- "license": "MIT",
2037
- "engines": {
2038
- "node": ">=0.10.0"
2039
- }
2040
- },
2041
- "node_modules/is-glob": {
2042
- "version": "4.0.3",
2043
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
2044
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
2045
- "dev": true,
2046
- "license": "MIT",
2047
- "dependencies": {
2048
- "is-extglob": "^2.1.1"
2049
- },
2050
- "engines": {
2051
- "node": ">=0.10.0"
2052
- }
2053
- },
2054
- "node_modules/isexe": {
2055
- "version": "2.0.0",
2056
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2057
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
2058
- "dev": true,
2059
- "license": "ISC"
2060
- },
2061
- "node_modules/jiti": {
2062
- "version": "2.7.0",
2063
- "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
2064
- "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
2065
- "license": "MIT",
2066
- "bin": {
2067
- "jiti": "lib/jiti-cli.mjs"
2068
- }
2069
- },
2070
- "node_modules/js-tokens": {
2071
- "version": "4.0.0",
2072
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2073
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
2074
- "dev": true,
2075
- "license": "MIT"
2076
- },
2077
- "node_modules/jsesc": {
2078
- "version": "3.1.0",
2079
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
2080
- "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
2081
- "dev": true,
2082
- "license": "MIT",
2083
- "bin": {
2084
- "jsesc": "bin/jsesc"
2085
- },
2086
- "engines": {
2087
- "node": ">=6"
2088
- }
2089
- },
2090
- "node_modules/json-buffer": {
2091
- "version": "3.0.1",
2092
- "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
2093
- "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
2094
- "dev": true,
2095
- "license": "MIT"
2096
- },
2097
- "node_modules/json-schema-traverse": {
2098
- "version": "0.4.1",
2099
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
2100
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
2101
- "dev": true,
2102
- "license": "MIT"
2103
- },
2104
- "node_modules/json-stable-stringify-without-jsonify": {
2105
- "version": "1.0.1",
2106
- "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
2107
- "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
2108
- "dev": true,
2109
- "license": "MIT"
2110
- },
2111
- "node_modules/json5": {
2112
- "version": "2.2.3",
2113
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
2114
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
2115
- "dev": true,
2116
- "license": "MIT",
2117
- "bin": {
2118
- "json5": "lib/cli.js"
2119
- },
2120
- "engines": {
2121
- "node": ">=6"
2122
- }
2123
- },
2124
- "node_modules/keyv": {
2125
- "version": "4.5.4",
2126
- "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
2127
- "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
2128
- "dev": true,
2129
- "license": "MIT",
2130
- "dependencies": {
2131
- "json-buffer": "3.0.1"
2132
- }
2133
- },
2134
- "node_modules/levn": {
2135
- "version": "0.4.1",
2136
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
2137
- "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
2138
- "dev": true,
2139
- "license": "MIT",
2140
- "dependencies": {
2141
- "prelude-ls": "^1.2.1",
2142
- "type-check": "~0.4.0"
2143
- },
2144
- "engines": {
2145
- "node": ">= 0.8.0"
2146
- }
2147
- },
2148
- "node_modules/lightningcss": {
2149
- "version": "1.32.0",
2150
- "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
2151
- "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
2152
- "license": "MPL-2.0",
2153
- "dependencies": {
2154
- "detect-libc": "^2.0.3"
2155
- },
2156
- "engines": {
2157
- "node": ">= 12.0.0"
2158
- },
2159
- "funding": {
2160
- "type": "opencollective",
2161
- "url": "https://opencollective.com/parcel"
2162
- },
2163
- "optionalDependencies": {
2164
- "lightningcss-android-arm64": "1.32.0",
2165
- "lightningcss-darwin-arm64": "1.32.0",
2166
- "lightningcss-darwin-x64": "1.32.0",
2167
- "lightningcss-freebsd-x64": "1.32.0",
2168
- "lightningcss-linux-arm-gnueabihf": "1.32.0",
2169
- "lightningcss-linux-arm64-gnu": "1.32.0",
2170
- "lightningcss-linux-arm64-musl": "1.32.0",
2171
- "lightningcss-linux-x64-gnu": "1.32.0",
2172
- "lightningcss-linux-x64-musl": "1.32.0",
2173
- "lightningcss-win32-arm64-msvc": "1.32.0",
2174
- "lightningcss-win32-x64-msvc": "1.32.0"
2175
- }
2176
- },
2177
- "node_modules/lightningcss-android-arm64": {
2178
- "version": "1.32.0",
2179
- "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
2180
- "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
2181
- "cpu": [
2182
- "arm64"
2183
- ],
2184
- "license": "MPL-2.0",
2185
- "optional": true,
2186
- "os": [
2187
- "android"
2188
- ],
2189
- "engines": {
2190
- "node": ">= 12.0.0"
2191
- },
2192
- "funding": {
2193
- "type": "opencollective",
2194
- "url": "https://opencollective.com/parcel"
2195
- }
2196
- },
2197
- "node_modules/lightningcss-darwin-arm64": {
2198
- "version": "1.32.0",
2199
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
2200
- "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
2201
- "cpu": [
2202
- "arm64"
2203
- ],
2204
- "license": "MPL-2.0",
2205
- "optional": true,
2206
- "os": [
2207
- "darwin"
2208
- ],
2209
- "engines": {
2210
- "node": ">= 12.0.0"
2211
- },
2212
- "funding": {
2213
- "type": "opencollective",
2214
- "url": "https://opencollective.com/parcel"
2215
- }
2216
- },
2217
- "node_modules/lightningcss-darwin-x64": {
2218
- "version": "1.32.0",
2219
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
2220
- "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
2221
- "cpu": [
2222
- "x64"
2223
- ],
2224
- "license": "MPL-2.0",
2225
- "optional": true,
2226
- "os": [
2227
- "darwin"
2228
- ],
2229
- "engines": {
2230
- "node": ">= 12.0.0"
2231
- },
2232
- "funding": {
2233
- "type": "opencollective",
2234
- "url": "https://opencollective.com/parcel"
2235
- }
2236
- },
2237
- "node_modules/lightningcss-freebsd-x64": {
2238
- "version": "1.32.0",
2239
- "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
2240
- "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
2241
- "cpu": [
2242
- "x64"
2243
- ],
2244
- "license": "MPL-2.0",
2245
- "optional": true,
2246
- "os": [
2247
- "freebsd"
2248
- ],
2249
- "engines": {
2250
- "node": ">= 12.0.0"
2251
- },
2252
- "funding": {
2253
- "type": "opencollective",
2254
- "url": "https://opencollective.com/parcel"
2255
- }
2256
- },
2257
- "node_modules/lightningcss-linux-arm-gnueabihf": {
2258
- "version": "1.32.0",
2259
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
2260
- "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
2261
- "cpu": [
2262
- "arm"
2263
- ],
2264
- "license": "MPL-2.0",
2265
- "optional": true,
2266
- "os": [
2267
- "linux"
2268
- ],
2269
- "engines": {
2270
- "node": ">= 12.0.0"
2271
- },
2272
- "funding": {
2273
- "type": "opencollective",
2274
- "url": "https://opencollective.com/parcel"
2275
- }
2276
- },
2277
- "node_modules/lightningcss-linux-arm64-gnu": {
2278
- "version": "1.32.0",
2279
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
2280
- "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
2281
- "cpu": [
2282
- "arm64"
2283
- ],
2284
- "license": "MPL-2.0",
2285
- "optional": true,
2286
- "os": [
2287
- "linux"
2288
- ],
2289
- "engines": {
2290
- "node": ">= 12.0.0"
2291
- },
2292
- "funding": {
2293
- "type": "opencollective",
2294
- "url": "https://opencollective.com/parcel"
2295
- }
2296
- },
2297
- "node_modules/lightningcss-linux-arm64-musl": {
2298
- "version": "1.32.0",
2299
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
2300
- "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
2301
- "cpu": [
2302
- "arm64"
2303
- ],
2304
- "license": "MPL-2.0",
2305
- "optional": true,
2306
- "os": [
2307
- "linux"
2308
- ],
2309
- "engines": {
2310
- "node": ">= 12.0.0"
2311
- },
2312
- "funding": {
2313
- "type": "opencollective",
2314
- "url": "https://opencollective.com/parcel"
2315
- }
2316
- },
2317
- "node_modules/lightningcss-linux-x64-gnu": {
2318
- "version": "1.32.0",
2319
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
2320
- "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
2321
- "cpu": [
2322
- "x64"
2323
- ],
2324
- "license": "MPL-2.0",
2325
- "optional": true,
2326
- "os": [
2327
- "linux"
2328
- ],
2329
- "engines": {
2330
- "node": ">= 12.0.0"
2331
- },
2332
- "funding": {
2333
- "type": "opencollective",
2334
- "url": "https://opencollective.com/parcel"
2335
- }
2336
- },
2337
- "node_modules/lightningcss-linux-x64-musl": {
2338
- "version": "1.32.0",
2339
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
2340
- "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
2341
- "cpu": [
2342
- "x64"
2343
- ],
2344
- "license": "MPL-2.0",
2345
- "optional": true,
2346
- "os": [
2347
- "linux"
2348
- ],
2349
- "engines": {
2350
- "node": ">= 12.0.0"
2351
- },
2352
- "funding": {
2353
- "type": "opencollective",
2354
- "url": "https://opencollective.com/parcel"
2355
- }
2356
- },
2357
- "node_modules/lightningcss-win32-arm64-msvc": {
2358
- "version": "1.32.0",
2359
- "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
2360
- "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
2361
- "cpu": [
2362
- "arm64"
2363
- ],
2364
- "license": "MPL-2.0",
2365
- "optional": true,
2366
- "os": [
2367
- "win32"
2368
- ],
2369
- "engines": {
2370
- "node": ">= 12.0.0"
2371
- },
2372
- "funding": {
2373
- "type": "opencollective",
2374
- "url": "https://opencollective.com/parcel"
2375
- }
2376
- },
2377
- "node_modules/lightningcss-win32-x64-msvc": {
2378
- "version": "1.32.0",
2379
- "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
2380
- "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
2381
- "cpu": [
2382
- "x64"
2383
- ],
2384
- "license": "MPL-2.0",
2385
- "optional": true,
2386
- "os": [
2387
- "win32"
2388
- ],
2389
- "engines": {
2390
- "node": ">= 12.0.0"
2391
- },
2392
- "funding": {
2393
- "type": "opencollective",
2394
- "url": "https://opencollective.com/parcel"
2395
- }
2396
- },
2397
- "node_modules/locate-path": {
2398
- "version": "6.0.0",
2399
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
2400
- "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
2401
- "dev": true,
2402
- "license": "MIT",
2403
- "dependencies": {
2404
- "p-locate": "^5.0.0"
2405
- },
2406
- "engines": {
2407
- "node": ">=10"
2408
- },
2409
- "funding": {
2410
- "url": "https://github.com/sponsors/sindresorhus"
2411
- }
2412
- },
2413
- "node_modules/lru-cache": {
2414
- "version": "5.1.1",
2415
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
2416
- "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
2417
- "dev": true,
2418
- "license": "ISC",
2419
- "dependencies": {
2420
- "yallist": "^3.0.2"
2421
- }
2422
- },
2423
- "node_modules/magic-string": {
2424
- "version": "0.30.21",
2425
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
2426
- "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
2427
- "license": "MIT",
2428
- "dependencies": {
2429
- "@jridgewell/sourcemap-codec": "^1.5.5"
2430
- }
2431
- },
2432
- "node_modules/math-intrinsics": {
2433
- "version": "1.1.0",
2434
- "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
2435
- "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
2436
- "license": "MIT",
2437
- "engines": {
2438
- "node": ">= 0.4"
2439
- }
2440
- },
2441
- "node_modules/mime-db": {
2442
- "version": "1.52.0",
2443
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
2444
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
2445
- "license": "MIT",
2446
- "engines": {
2447
- "node": ">= 0.6"
2448
- }
2449
- },
2450
- "node_modules/mime-types": {
2451
- "version": "2.1.35",
2452
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
2453
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
2454
- "license": "MIT",
2455
- "dependencies": {
2456
- "mime-db": "1.52.0"
2457
- },
2458
- "engines": {
2459
- "node": ">= 0.6"
2460
- }
2461
- },
2462
- "node_modules/minimatch": {
2463
- "version": "10.2.5",
2464
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
2465
- "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
2466
- "dev": true,
2467
- "license": "BlueOak-1.0.0",
2468
- "dependencies": {
2469
- "brace-expansion": "^5.0.5"
2470
- },
2471
- "engines": {
2472
- "node": "18 || 20 || >=22"
2473
- },
2474
- "funding": {
2475
- "url": "https://github.com/sponsors/isaacs"
2476
- }
2477
- },
2478
- "node_modules/ms": {
2479
- "version": "2.1.3",
2480
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2481
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2482
- "license": "MIT"
2483
- },
2484
- "node_modules/nanoid": {
2485
- "version": "3.3.12",
2486
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
2487
- "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
2488
- "funding": [
2489
- {
2490
- "type": "github",
2491
- "url": "https://github.com/sponsors/ai"
2492
- }
2493
- ],
2494
- "license": "MIT",
2495
- "bin": {
2496
- "nanoid": "bin/nanoid.cjs"
2497
- },
2498
- "engines": {
2499
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2500
- }
2501
- },
2502
- "node_modules/natural-compare": {
2503
- "version": "1.4.0",
2504
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
2505
- "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
2506
- "dev": true,
2507
- "license": "MIT"
2508
- },
2509
- "node_modules/node-releases": {
2510
- "version": "2.0.46",
2511
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.46.tgz",
2512
- "integrity": "sha512-GYVXHE2KnrzAfsAjl4uP++evGFCrAU1jta4ubEjIG7YWt/64Gqv66a30yKwWczVjA6j3bM4nBwH7Pk1JmDHaxQ==",
2513
- "dev": true,
2514
- "license": "MIT",
2515
- "engines": {
2516
- "node": ">=18"
2517
- }
2518
- },
2519
- "node_modules/optionator": {
2520
- "version": "0.9.4",
2521
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
2522
- "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
2523
- "dev": true,
2524
- "license": "MIT",
2525
- "dependencies": {
2526
- "deep-is": "^0.1.3",
2527
- "fast-levenshtein": "^2.0.6",
2528
- "levn": "^0.4.1",
2529
- "prelude-ls": "^1.2.1",
2530
- "type-check": "^0.4.0",
2531
- "word-wrap": "^1.2.5"
2532
- },
2533
- "engines": {
2534
- "node": ">= 0.8.0"
2535
- }
2536
- },
2537
- "node_modules/p-limit": {
2538
- "version": "3.1.0",
2539
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
2540
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
2541
- "dev": true,
2542
- "license": "MIT",
2543
- "dependencies": {
2544
- "yocto-queue": "^0.1.0"
2545
- },
2546
- "engines": {
2547
- "node": ">=10"
2548
- },
2549
- "funding": {
2550
- "url": "https://github.com/sponsors/sindresorhus"
2551
- }
2552
- },
2553
- "node_modules/p-locate": {
2554
- "version": "5.0.0",
2555
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
2556
- "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
2557
- "dev": true,
2558
- "license": "MIT",
2559
- "dependencies": {
2560
- "p-limit": "^3.0.2"
2561
- },
2562
- "engines": {
2563
- "node": ">=10"
2564
- },
2565
- "funding": {
2566
- "url": "https://github.com/sponsors/sindresorhus"
2567
- }
2568
- },
2569
- "node_modules/path-exists": {
2570
- "version": "4.0.0",
2571
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
2572
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
2573
- "dev": true,
2574
- "license": "MIT",
2575
- "engines": {
2576
- "node": ">=8"
2577
- }
2578
- },
2579
- "node_modules/path-key": {
2580
- "version": "3.1.1",
2581
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2582
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2583
- "dev": true,
2584
- "license": "MIT",
2585
- "engines": {
2586
- "node": ">=8"
2587
- }
2588
- },
2589
- "node_modules/picocolors": {
2590
- "version": "1.1.1",
2591
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2592
- "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2593
- "license": "ISC"
2594
- },
2595
- "node_modules/picomatch": {
2596
- "version": "4.0.4",
2597
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
2598
- "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
2599
- "license": "MIT",
2600
- "engines": {
2601
- "node": ">=12"
2602
- },
2603
- "funding": {
2604
- "url": "https://github.com/sponsors/jonschlinkert"
2605
- }
2606
- },
2607
- "node_modules/postcss": {
2608
- "version": "8.5.15",
2609
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
2610
- "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
2611
- "funding": [
2612
- {
2613
- "type": "opencollective",
2614
- "url": "https://opencollective.com/postcss/"
2615
- },
2616
- {
2617
- "type": "tidelift",
2618
- "url": "https://tidelift.com/funding/github/npm/postcss"
2619
- },
2620
- {
2621
- "type": "github",
2622
- "url": "https://github.com/sponsors/ai"
2623
- }
2624
- ],
2625
- "license": "MIT",
2626
- "dependencies": {
2627
- "nanoid": "^3.3.12",
2628
- "picocolors": "^1.1.1",
2629
- "source-map-js": "^1.2.1"
2630
- },
2631
- "engines": {
2632
- "node": "^10 || ^12 || >=14"
2633
- }
2634
- },
2635
- "node_modules/prelude-ls": {
2636
- "version": "1.2.1",
2637
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
2638
- "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
2639
- "dev": true,
2640
- "license": "MIT",
2641
- "engines": {
2642
- "node": ">= 0.8.0"
2643
- }
2644
- },
2645
- "node_modules/proxy-from-env": {
2646
- "version": "2.1.0",
2647
- "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
2648
- "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
2649
- "license": "MIT",
2650
- "engines": {
2651
- "node": ">=10"
2652
- }
2653
- },
2654
- "node_modules/punycode": {
2655
- "version": "2.3.1",
2656
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
2657
- "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
2658
- "dev": true,
2659
- "license": "MIT",
2660
- "engines": {
2661
- "node": ">=6"
2662
- }
2663
- },
2664
- "node_modules/react": {
2665
- "version": "19.2.6",
2666
- "resolved": "https://registry.npmjs.org/react/-/react-19.2.6.tgz",
2667
- "integrity": "sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==",
2668
- "license": "MIT",
2669
- "engines": {
2670
- "node": ">=0.10.0"
2671
- }
2672
- },
2673
- "node_modules/react-dom": {
2674
- "version": "19.2.6",
2675
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.6.tgz",
2676
- "integrity": "sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==",
2677
- "license": "MIT",
2678
- "dependencies": {
2679
- "scheduler": "^0.27.0"
2680
- },
2681
- "peerDependencies": {
2682
- "react": "^19.2.6"
2683
- }
2684
- },
2685
- "node_modules/react-router": {
2686
- "version": "7.15.1",
2687
- "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.15.1.tgz",
2688
- "integrity": "sha512-R8rl9HhgikFYoPJymnUtPXWbnDb3oget6lQnfIoupbt61aT9aOhRkDsY2XRhZRyX1Z/8a5sL74fXmFNm3NRK5A==",
2689
- "license": "MIT",
2690
- "dependencies": {
2691
- "cookie": "^1.0.1",
2692
- "set-cookie-parser": "^2.6.0"
2693
- },
2694
- "engines": {
2695
- "node": ">=20.0.0"
2696
- },
2697
- "peerDependencies": {
2698
- "react": ">=18",
2699
- "react-dom": ">=18"
2700
- },
2701
- "peerDependenciesMeta": {
2702
- "react-dom": {
2703
- "optional": true
2704
- }
2705
- }
2706
- },
2707
- "node_modules/react-router-dom": {
2708
- "version": "7.15.1",
2709
- "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.15.1.tgz",
2710
- "integrity": "sha512-AzF62gjY6U9rkMq4RfP/r2EVtQ7DMfNMjyOp/flLTCrtRylLiK4wT4pSq6O8rOXZ2eXdZYJPEYe+ifomiv+Igg==",
2711
- "license": "MIT",
2712
- "dependencies": {
2713
- "react-router": "7.15.1"
2714
- },
2715
- "engines": {
2716
- "node": ">=20.0.0"
2717
- },
2718
- "peerDependencies": {
2719
- "react": ">=18",
2720
- "react-dom": ">=18"
2721
- }
2722
- },
2723
- "node_modules/rolldown": {
2724
- "version": "1.0.2",
2725
- "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.2.tgz",
2726
- "integrity": "sha512-oZx5zVDtVB44AW3eaifgDml1gWRDZGvjcfdxonE4swNPG98PrrXjaO/KrnUjzlMnztCCRVlUueA1kCXhARGk6g==",
2727
- "license": "MIT",
2728
- "dependencies": {
2729
- "@oxc-project/types": "=0.132.0",
2730
- "@rolldown/pluginutils": "^1.0.0"
2731
- },
2732
- "bin": {
2733
- "rolldown": "bin/cli.mjs"
2734
- },
2735
- "engines": {
2736
- "node": "^20.19.0 || >=22.12.0"
2737
- },
2738
- "optionalDependencies": {
2739
- "@rolldown/binding-android-arm64": "1.0.2",
2740
- "@rolldown/binding-darwin-arm64": "1.0.2",
2741
- "@rolldown/binding-darwin-x64": "1.0.2",
2742
- "@rolldown/binding-freebsd-x64": "1.0.2",
2743
- "@rolldown/binding-linux-arm-gnueabihf": "1.0.2",
2744
- "@rolldown/binding-linux-arm64-gnu": "1.0.2",
2745
- "@rolldown/binding-linux-arm64-musl": "1.0.2",
2746
- "@rolldown/binding-linux-ppc64-gnu": "1.0.2",
2747
- "@rolldown/binding-linux-s390x-gnu": "1.0.2",
2748
- "@rolldown/binding-linux-x64-gnu": "1.0.2",
2749
- "@rolldown/binding-linux-x64-musl": "1.0.2",
2750
- "@rolldown/binding-openharmony-arm64": "1.0.2",
2751
- "@rolldown/binding-wasm32-wasi": "1.0.2",
2752
- "@rolldown/binding-win32-arm64-msvc": "1.0.2",
2753
- "@rolldown/binding-win32-x64-msvc": "1.0.2"
2754
- }
2755
- },
2756
- "node_modules/scheduler": {
2757
- "version": "0.27.0",
2758
- "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
2759
- "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
2760
- "license": "MIT"
2761
- },
2762
- "node_modules/semver": {
2763
- "version": "6.3.1",
2764
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
2765
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
2766
- "dev": true,
2767
- "license": "ISC",
2768
- "bin": {
2769
- "semver": "bin/semver.js"
2770
- }
2771
- },
2772
- "node_modules/set-cookie-parser": {
2773
- "version": "2.7.2",
2774
- "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz",
2775
- "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==",
2776
- "license": "MIT"
2777
- },
2778
- "node_modules/shebang-command": {
2779
- "version": "2.0.0",
2780
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
2781
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
2782
- "dev": true,
2783
- "license": "MIT",
2784
- "dependencies": {
2785
- "shebang-regex": "^3.0.0"
2786
- },
2787
- "engines": {
2788
- "node": ">=8"
2789
- }
2790
- },
2791
- "node_modules/shebang-regex": {
2792
- "version": "3.0.0",
2793
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
2794
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
2795
- "dev": true,
2796
- "license": "MIT",
2797
- "engines": {
2798
- "node": ">=8"
2799
- }
2800
- },
2801
- "node_modules/source-map-js": {
2802
- "version": "1.2.1",
2803
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
2804
- "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
2805
- "license": "BSD-3-Clause",
2806
- "engines": {
2807
- "node": ">=0.10.0"
2808
- }
2809
- },
2810
- "node_modules/tailwindcss": {
2811
- "version": "4.3.0",
2812
- "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.0.tgz",
2813
- "integrity": "sha512-y6nxMGB1nMW9R6k96e5gdIFzcfL/gTJRNaqGes1YvkLnPVXzWgbqFF2yLC0T8G774n24cx3Pe8XrKoniCOAH+Q==",
2814
- "license": "MIT"
2815
- },
2816
- "node_modules/tapable": {
2817
- "version": "2.3.3",
2818
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz",
2819
- "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==",
2820
- "license": "MIT",
2821
- "engines": {
2822
- "node": ">=6"
2823
- },
2824
- "funding": {
2825
- "type": "opencollective",
2826
- "url": "https://opencollective.com/webpack"
2827
- }
2828
- },
2829
- "node_modules/tinyglobby": {
2830
- "version": "0.2.16",
2831
- "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
2832
- "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
2833
- "license": "MIT",
2834
- "dependencies": {
2835
- "fdir": "^6.5.0",
2836
- "picomatch": "^4.0.4"
2837
- },
2838
- "engines": {
2839
- "node": ">=12.0.0"
2840
- },
2841
- "funding": {
2842
- "url": "https://github.com/sponsors/SuperchupuDev"
2843
- }
2844
- },
2845
- "node_modules/tslib": {
2846
- "version": "2.8.1",
2847
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
2848
- "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
2849
- "license": "0BSD",
2850
- "optional": true
2851
- },
2852
- "node_modules/type-check": {
2853
- "version": "0.4.0",
2854
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
2855
- "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
2856
- "dev": true,
2857
- "license": "MIT",
2858
- "dependencies": {
2859
- "prelude-ls": "^1.2.1"
2860
- },
2861
- "engines": {
2862
- "node": ">= 0.8.0"
2863
- }
2864
- },
2865
- "node_modules/update-browserslist-db": {
2866
- "version": "1.2.3",
2867
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
2868
- "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
2869
- "dev": true,
2870
- "funding": [
2871
- {
2872
- "type": "opencollective",
2873
- "url": "https://opencollective.com/browserslist"
2874
- },
2875
- {
2876
- "type": "tidelift",
2877
- "url": "https://tidelift.com/funding/github/npm/browserslist"
2878
- },
2879
- {
2880
- "type": "github",
2881
- "url": "https://github.com/sponsors/ai"
2882
- }
2883
- ],
2884
- "license": "MIT",
2885
- "dependencies": {
2886
- "escalade": "^3.2.0",
2887
- "picocolors": "^1.1.1"
2888
- },
2889
- "bin": {
2890
- "update-browserslist-db": "cli.js"
2891
- },
2892
- "peerDependencies": {
2893
- "browserslist": ">= 4.21.0"
2894
- }
2895
- },
2896
- "node_modules/uri-js": {
2897
- "version": "4.4.1",
2898
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
2899
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
2900
- "dev": true,
2901
- "license": "BSD-2-Clause",
2902
- "dependencies": {
2903
- "punycode": "^2.1.0"
2904
- }
2905
- },
2906
- "node_modules/vite": {
2907
- "version": "8.0.14",
2908
- "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.14.tgz",
2909
- "integrity": "sha512-s4BJJ+5y1pYL6Otw51FHhVJQhPnuRinKig64g/1+EUNaJsd3gCKdD31IPFvswUgW9/60QT9oFHbZHbQK5imcxw==",
2910
- "license": "MIT",
2911
- "dependencies": {
2912
- "lightningcss": "^1.32.0",
2913
- "picomatch": "^4.0.4",
2914
- "postcss": "^8.5.15",
2915
- "rolldown": "1.0.2",
2916
- "tinyglobby": "^0.2.16"
2917
- },
2918
- "bin": {
2919
- "vite": "bin/vite.js"
2920
- },
2921
- "engines": {
2922
- "node": "^20.19.0 || >=22.12.0"
2923
- },
2924
- "funding": {
2925
- "url": "https://github.com/vitejs/vite?sponsor=1"
2926
- },
2927
- "optionalDependencies": {
2928
- "fsevents": "~2.3.3"
2929
- },
2930
- "peerDependencies": {
2931
- "@types/node": "^20.19.0 || >=22.12.0",
2932
- "@vitejs/devtools": "^0.1.18",
2933
- "esbuild": "^0.27.0 || ^0.28.0",
2934
- "jiti": ">=1.21.0",
2935
- "less": "^4.0.0",
2936
- "sass": "^1.70.0",
2937
- "sass-embedded": "^1.70.0",
2938
- "stylus": ">=0.54.8",
2939
- "sugarss": "^5.0.0",
2940
- "terser": "^5.16.0",
2941
- "tsx": "^4.8.1",
2942
- "yaml": "^2.4.2"
2943
- },
2944
- "peerDependenciesMeta": {
2945
- "@types/node": {
2946
- "optional": true
2947
- },
2948
- "@vitejs/devtools": {
2949
- "optional": true
2950
- },
2951
- "esbuild": {
2952
- "optional": true
2953
- },
2954
- "jiti": {
2955
- "optional": true
2956
- },
2957
- "less": {
2958
- "optional": true
2959
- },
2960
- "sass": {
2961
- "optional": true
2962
- },
2963
- "sass-embedded": {
2964
- "optional": true
2965
- },
2966
- "stylus": {
2967
- "optional": true
2968
- },
2969
- "sugarss": {
2970
- "optional": true
2971
- },
2972
- "terser": {
2973
- "optional": true
2974
- },
2975
- "tsx": {
2976
- "optional": true
2977
- },
2978
- "yaml": {
2979
- "optional": true
2980
- }
2981
- }
2982
- },
2983
- "node_modules/which": {
2984
- "version": "2.0.2",
2985
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
2986
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
2987
- "dev": true,
2988
- "license": "ISC",
2989
- "dependencies": {
2990
- "isexe": "^2.0.0"
2991
- },
2992
- "bin": {
2993
- "node-which": "bin/node-which"
2994
- },
2995
- "engines": {
2996
- "node": ">= 8"
2997
- }
2998
- },
2999
- "node_modules/word-wrap": {
3000
- "version": "1.2.5",
3001
- "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
3002
- "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
3003
- "dev": true,
3004
- "license": "MIT",
3005
- "engines": {
3006
- "node": ">=0.10.0"
3007
- }
3008
- },
3009
- "node_modules/yallist": {
3010
- "version": "3.1.1",
3011
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
3012
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
3013
- "dev": true,
3014
- "license": "ISC"
3015
- },
3016
- "node_modules/yocto-queue": {
3017
- "version": "0.1.0",
3018
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
3019
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
3020
- "dev": true,
3021
- "license": "MIT",
3022
- "engines": {
3023
- "node": ">=10"
3024
- },
3025
- "funding": {
3026
- "url": "https://github.com/sponsors/sindresorhus"
3027
- }
3028
- },
3029
- "node_modules/zod": {
3030
- "version": "4.4.3",
3031
- "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
3032
- "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
3033
- "dev": true,
3034
- "license": "MIT",
3035
- "funding": {
3036
- "url": "https://github.com/sponsors/colinhacks"
3037
- }
3038
- },
3039
- "node_modules/zod-validation-error": {
3040
- "version": "4.0.2",
3041
- "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz",
3042
- "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==",
3043
- "dev": true,
3044
- "license": "MIT",
3045
- "engines": {
3046
- "node": ">=18.0.0"
3047
- },
3048
- "peerDependencies": {
3049
- "zod": "^3.25.0 || ^4.0.0"
3050
- }
3051
- }
3052
- }
3053
- }