chirag-appwrite-cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (491) hide show
  1. package/.github/workflows/npm-publish.yml +49 -0
  2. package/CHANGELOG.md +1 -0
  3. package/Formula/appwrite.rb +19 -0
  4. package/LICENSE.md +1 -0
  5. package/README.md +104 -0
  6. package/appwrite.json +164 -0
  7. package/docs/examples/account/create-anonymous-session.md +1 -0
  8. package/docs/examples/account/create-email-password-session.md +3 -0
  9. package/docs/examples/account/create-email-token.md +4 -0
  10. package/docs/examples/account/create-j-w-t.md +1 -0
  11. package/docs/examples/account/create-magic-u-r-l-token.md +5 -0
  12. package/docs/examples/account/create-mfa-authenticator.md +2 -0
  13. package/docs/examples/account/create-mfa-challenge.md +2 -0
  14. package/docs/examples/account/create-mfa-recovery-codes.md +1 -0
  15. package/docs/examples/account/create-o-auth2session.md +5 -0
  16. package/docs/examples/account/create-o-auth2token.md +5 -0
  17. package/docs/examples/account/create-phone-token.md +3 -0
  18. package/docs/examples/account/create-phone-verification.md +1 -0
  19. package/docs/examples/account/create-push-target.md +4 -0
  20. package/docs/examples/account/create-recovery.md +3 -0
  21. package/docs/examples/account/create-session.md +3 -0
  22. package/docs/examples/account/create-verification.md +2 -0
  23. package/docs/examples/account/create.md +5 -0
  24. package/docs/examples/account/delete-identity.md +2 -0
  25. package/docs/examples/account/delete-mfa-authenticator.md +2 -0
  26. package/docs/examples/account/delete-push-target.md +2 -0
  27. package/docs/examples/account/delete-session.md +2 -0
  28. package/docs/examples/account/delete-sessions.md +1 -0
  29. package/docs/examples/account/delete.md +1 -0
  30. package/docs/examples/account/get-mfa-recovery-codes.md +1 -0
  31. package/docs/examples/account/get-prefs.md +1 -0
  32. package/docs/examples/account/get-session.md +2 -0
  33. package/docs/examples/account/get.md +1 -0
  34. package/docs/examples/account/list-identities.md +2 -0
  35. package/docs/examples/account/list-logs.md +2 -0
  36. package/docs/examples/account/list-mfa-factors.md +1 -0
  37. package/docs/examples/account/list-sessions.md +1 -0
  38. package/docs/examples/account/update-email.md +3 -0
  39. package/docs/examples/account/update-m-f-a.md +2 -0
  40. package/docs/examples/account/update-magic-u-r-l-session.md +3 -0
  41. package/docs/examples/account/update-mfa-authenticator.md +3 -0
  42. package/docs/examples/account/update-mfa-challenge.md +3 -0
  43. package/docs/examples/account/update-mfa-recovery-codes.md +1 -0
  44. package/docs/examples/account/update-name.md +2 -0
  45. package/docs/examples/account/update-password.md +3 -0
  46. package/docs/examples/account/update-phone-session.md +3 -0
  47. package/docs/examples/account/update-phone-verification.md +3 -0
  48. package/docs/examples/account/update-phone.md +3 -0
  49. package/docs/examples/account/update-prefs.md +2 -0
  50. package/docs/examples/account/update-push-target.md +3 -0
  51. package/docs/examples/account/update-recovery.md +4 -0
  52. package/docs/examples/account/update-session.md +2 -0
  53. package/docs/examples/account/update-status.md +1 -0
  54. package/docs/examples/account/update-verification.md +3 -0
  55. package/docs/examples/avatars/get-browser.md +5 -0
  56. package/docs/examples/avatars/get-credit-card.md +5 -0
  57. package/docs/examples/avatars/get-favicon.md +2 -0
  58. package/docs/examples/avatars/get-flag.md +5 -0
  59. package/docs/examples/avatars/get-image.md +4 -0
  60. package/docs/examples/avatars/get-initials.md +5 -0
  61. package/docs/examples/avatars/get-q-r.md +5 -0
  62. package/docs/examples/console/get-resource.md +3 -0
  63. package/docs/examples/console/variables.md +1 -0
  64. package/docs/examples/databases/create-boolean-attribute.md +7 -0
  65. package/docs/examples/databases/create-collection.md +7 -0
  66. package/docs/examples/databases/create-datetime-attribute.md +7 -0
  67. package/docs/examples/databases/create-document.md +6 -0
  68. package/docs/examples/databases/create-documents.md +4 -0
  69. package/docs/examples/databases/create-email-attribute.md +7 -0
  70. package/docs/examples/databases/create-enum-attribute.md +8 -0
  71. package/docs/examples/databases/create-float-attribute.md +9 -0
  72. package/docs/examples/databases/create-index.md +8 -0
  73. package/docs/examples/databases/create-integer-attribute.md +9 -0
  74. package/docs/examples/databases/create-ip-attribute.md +7 -0
  75. package/docs/examples/databases/create-relationship-attribute.md +9 -0
  76. package/docs/examples/databases/create-string-attribute.md +9 -0
  77. package/docs/examples/databases/create-url-attribute.md +7 -0
  78. package/docs/examples/databases/create.md +4 -0
  79. package/docs/examples/databases/decrement-document-attribute.md +7 -0
  80. package/docs/examples/databases/delete-attribute.md +4 -0
  81. package/docs/examples/databases/delete-collection.md +3 -0
  82. package/docs/examples/databases/delete-document.md +4 -0
  83. package/docs/examples/databases/delete-documents.md +4 -0
  84. package/docs/examples/databases/delete-index.md +4 -0
  85. package/docs/examples/databases/delete.md +2 -0
  86. package/docs/examples/databases/get-attribute.md +4 -0
  87. package/docs/examples/databases/get-collection-usage.md +4 -0
  88. package/docs/examples/databases/get-collection.md +3 -0
  89. package/docs/examples/databases/get-database-usage.md +3 -0
  90. package/docs/examples/databases/get-document.md +5 -0
  91. package/docs/examples/databases/get-index.md +4 -0
  92. package/docs/examples/databases/get-usage.md +2 -0
  93. package/docs/examples/databases/get.md +2 -0
  94. package/docs/examples/databases/increment-document-attribute.md +7 -0
  95. package/docs/examples/databases/list-attributes.md +4 -0
  96. package/docs/examples/databases/list-collection-logs.md +4 -0
  97. package/docs/examples/databases/list-collections.md +4 -0
  98. package/docs/examples/databases/list-document-logs.md +5 -0
  99. package/docs/examples/databases/list-documents.md +4 -0
  100. package/docs/examples/databases/list-indexes.md +4 -0
  101. package/docs/examples/databases/list-logs.md +3 -0
  102. package/docs/examples/databases/list.md +3 -0
  103. package/docs/examples/databases/update-boolean-attribute.md +7 -0
  104. package/docs/examples/databases/update-collection.md +7 -0
  105. package/docs/examples/databases/update-datetime-attribute.md +7 -0
  106. package/docs/examples/databases/update-document.md +6 -0
  107. package/docs/examples/databases/update-documents.md +5 -0
  108. package/docs/examples/databases/update-email-attribute.md +7 -0
  109. package/docs/examples/databases/update-enum-attribute.md +8 -0
  110. package/docs/examples/databases/update-float-attribute.md +9 -0
  111. package/docs/examples/databases/update-integer-attribute.md +9 -0
  112. package/docs/examples/databases/update-ip-attribute.md +7 -0
  113. package/docs/examples/databases/update-relationship-attribute.md +6 -0
  114. package/docs/examples/databases/update-string-attribute.md +8 -0
  115. package/docs/examples/databases/update-url-attribute.md +7 -0
  116. package/docs/examples/databases/update.md +4 -0
  117. package/docs/examples/databases/upsert-document.md +6 -0
  118. package/docs/examples/databases/upsert-documents.md +4 -0
  119. package/docs/examples/functions/create-deployment.md +6 -0
  120. package/docs/examples/functions/create-duplicate-deployment.md +4 -0
  121. package/docs/examples/functions/create-execution.md +8 -0
  122. package/docs/examples/functions/create-template-deployment.md +7 -0
  123. package/docs/examples/functions/create-variable.md +5 -0
  124. package/docs/examples/functions/create-vcs-deployment.md +5 -0
  125. package/docs/examples/functions/create.md +19 -0
  126. package/docs/examples/functions/delete-deployment.md +3 -0
  127. package/docs/examples/functions/delete-execution.md +3 -0
  128. package/docs/examples/functions/delete-variable.md +3 -0
  129. package/docs/examples/functions/delete.md +2 -0
  130. package/docs/examples/functions/get-deployment-download.md +4 -0
  131. package/docs/examples/functions/get-deployment.md +3 -0
  132. package/docs/examples/functions/get-execution.md +3 -0
  133. package/docs/examples/functions/get-template.md +2 -0
  134. package/docs/examples/functions/get-usage.md +3 -0
  135. package/docs/examples/functions/get-variable.md +3 -0
  136. package/docs/examples/functions/get.md +2 -0
  137. package/docs/examples/functions/list-deployments.md +4 -0
  138. package/docs/examples/functions/list-executions.md +3 -0
  139. package/docs/examples/functions/list-runtimes.md +1 -0
  140. package/docs/examples/functions/list-specifications.md +1 -0
  141. package/docs/examples/functions/list-templates.md +5 -0
  142. package/docs/examples/functions/list-usage.md +2 -0
  143. package/docs/examples/functions/list-variables.md +2 -0
  144. package/docs/examples/functions/list.md +3 -0
  145. package/docs/examples/functions/update-deployment-status.md +3 -0
  146. package/docs/examples/functions/update-function-deployment.md +3 -0
  147. package/docs/examples/functions/update-variable.md +6 -0
  148. package/docs/examples/functions/update.md +19 -0
  149. package/docs/examples/graphql/mutation.md +2 -0
  150. package/docs/examples/graphql/query.md +2 -0
  151. package/docs/examples/health/get-antivirus.md +1 -0
  152. package/docs/examples/health/get-cache.md +1 -0
  153. package/docs/examples/health/get-certificate.md +2 -0
  154. package/docs/examples/health/get-d-b.md +1 -0
  155. package/docs/examples/health/get-failed-jobs.md +3 -0
  156. package/docs/examples/health/get-pub-sub.md +1 -0
  157. package/docs/examples/health/get-queue-builds.md +2 -0
  158. package/docs/examples/health/get-queue-certificates.md +2 -0
  159. package/docs/examples/health/get-queue-databases.md +3 -0
  160. package/docs/examples/health/get-queue-deletes.md +2 -0
  161. package/docs/examples/health/get-queue-functions.md +2 -0
  162. package/docs/examples/health/get-queue-logs.md +2 -0
  163. package/docs/examples/health/get-queue-mails.md +2 -0
  164. package/docs/examples/health/get-queue-messaging.md +2 -0
  165. package/docs/examples/health/get-queue-migrations.md +2 -0
  166. package/docs/examples/health/get-queue-stats-resources.md +2 -0
  167. package/docs/examples/health/get-queue-usage.md +2 -0
  168. package/docs/examples/health/get-queue-webhooks.md +2 -0
  169. package/docs/examples/health/get-storage-local.md +1 -0
  170. package/docs/examples/health/get-storage.md +1 -0
  171. package/docs/examples/health/get-time.md +1 -0
  172. package/docs/examples/health/get.md +1 -0
  173. package/docs/examples/locale/get.md +1 -0
  174. package/docs/examples/locale/list-codes.md +1 -0
  175. package/docs/examples/locale/list-continents.md +1 -0
  176. package/docs/examples/locale/list-countries-e-u.md +1 -0
  177. package/docs/examples/locale/list-countries-phones.md +1 -0
  178. package/docs/examples/locale/list-countries.md +1 -0
  179. package/docs/examples/locale/list-currencies.md +1 -0
  180. package/docs/examples/locale/list-languages.md +1 -0
  181. package/docs/examples/messaging/create-apns-provider.md +9 -0
  182. package/docs/examples/messaging/create-email.md +13 -0
  183. package/docs/examples/messaging/create-fcm-provider.md +5 -0
  184. package/docs/examples/messaging/create-mailgun-provider.md +11 -0
  185. package/docs/examples/messaging/create-msg91provider.md +7 -0
  186. package/docs/examples/messaging/create-push.md +20 -0
  187. package/docs/examples/messaging/create-sendgrid-provider.md +9 -0
  188. package/docs/examples/messaging/create-sms.md +8 -0
  189. package/docs/examples/messaging/create-smtp-provider.md +15 -0
  190. package/docs/examples/messaging/create-subscriber.md +4 -0
  191. package/docs/examples/messaging/create-telesign-provider.md +7 -0
  192. package/docs/examples/messaging/create-textmagic-provider.md +7 -0
  193. package/docs/examples/messaging/create-topic.md +4 -0
  194. package/docs/examples/messaging/create-twilio-provider.md +7 -0
  195. package/docs/examples/messaging/create-vonage-provider.md +7 -0
  196. package/docs/examples/messaging/delete-provider.md +2 -0
  197. package/docs/examples/messaging/delete-subscriber.md +3 -0
  198. package/docs/examples/messaging/delete-topic.md +2 -0
  199. package/docs/examples/messaging/delete.md +2 -0
  200. package/docs/examples/messaging/get-message.md +2 -0
  201. package/docs/examples/messaging/get-provider.md +2 -0
  202. package/docs/examples/messaging/get-subscriber.md +3 -0
  203. package/docs/examples/messaging/get-topic.md +2 -0
  204. package/docs/examples/messaging/list-message-logs.md +3 -0
  205. package/docs/examples/messaging/list-messages.md +3 -0
  206. package/docs/examples/messaging/list-provider-logs.md +3 -0
  207. package/docs/examples/messaging/list-providers.md +3 -0
  208. package/docs/examples/messaging/list-subscriber-logs.md +3 -0
  209. package/docs/examples/messaging/list-subscribers.md +4 -0
  210. package/docs/examples/messaging/list-targets.md +3 -0
  211. package/docs/examples/messaging/list-topic-logs.md +3 -0
  212. package/docs/examples/messaging/list-topics.md +3 -0
  213. package/docs/examples/messaging/update-apns-provider.md +9 -0
  214. package/docs/examples/messaging/update-email.md +13 -0
  215. package/docs/examples/messaging/update-fcm-provider.md +5 -0
  216. package/docs/examples/messaging/update-mailgun-provider.md +11 -0
  217. package/docs/examples/messaging/update-msg91provider.md +7 -0
  218. package/docs/examples/messaging/update-push.md +20 -0
  219. package/docs/examples/messaging/update-sendgrid-provider.md +9 -0
  220. package/docs/examples/messaging/update-sms.md +8 -0
  221. package/docs/examples/messaging/update-smtp-provider.md +15 -0
  222. package/docs/examples/messaging/update-telesign-provider.md +7 -0
  223. package/docs/examples/messaging/update-textmagic-provider.md +7 -0
  224. package/docs/examples/messaging/update-topic.md +4 -0
  225. package/docs/examples/messaging/update-twilio-provider.md +7 -0
  226. package/docs/examples/messaging/update-vonage-provider.md +7 -0
  227. package/docs/examples/migrations/create-appwrite-migration.md +5 -0
  228. package/docs/examples/migrations/create-csv-migration.md +4 -0
  229. package/docs/examples/migrations/create-firebase-migration.md +3 -0
  230. package/docs/examples/migrations/create-n-host-migration.md +9 -0
  231. package/docs/examples/migrations/create-supabase-migration.md +8 -0
  232. package/docs/examples/migrations/delete.md +2 -0
  233. package/docs/examples/migrations/get-appwrite-report.md +5 -0
  234. package/docs/examples/migrations/get-firebase-report.md +3 -0
  235. package/docs/examples/migrations/get-n-host-report.md +9 -0
  236. package/docs/examples/migrations/get-supabase-report.md +8 -0
  237. package/docs/examples/migrations/get.md +2 -0
  238. package/docs/examples/migrations/list.md +3 -0
  239. package/docs/examples/migrations/retry.md +2 -0
  240. package/docs/examples/project/create-variable.md +4 -0
  241. package/docs/examples/project/delete-variable.md +2 -0
  242. package/docs/examples/project/get-usage.md +4 -0
  243. package/docs/examples/project/get-variable.md +2 -0
  244. package/docs/examples/project/list-variables.md +1 -0
  245. package/docs/examples/project/update-variable.md +5 -0
  246. package/docs/examples/projects/create-dev-key.md +4 -0
  247. package/docs/examples/projects/create-j-w-t.md +4 -0
  248. package/docs/examples/projects/create-key.md +5 -0
  249. package/docs/examples/projects/create-platform.md +7 -0
  250. package/docs/examples/projects/create-smtp-test.md +11 -0
  251. package/docs/examples/projects/create-webhook.md +9 -0
  252. package/docs/examples/projects/create.md +14 -0
  253. package/docs/examples/projects/delete-dev-key.md +3 -0
  254. package/docs/examples/projects/delete-email-template.md +4 -0
  255. package/docs/examples/projects/delete-key.md +3 -0
  256. package/docs/examples/projects/delete-platform.md +3 -0
  257. package/docs/examples/projects/delete-sms-template.md +4 -0
  258. package/docs/examples/projects/delete-webhook.md +3 -0
  259. package/docs/examples/projects/delete.md +2 -0
  260. package/docs/examples/projects/get-dev-key.md +3 -0
  261. package/docs/examples/projects/get-email-template.md +4 -0
  262. package/docs/examples/projects/get-key.md +3 -0
  263. package/docs/examples/projects/get-platform.md +3 -0
  264. package/docs/examples/projects/get-sms-template.md +4 -0
  265. package/docs/examples/projects/get-webhook.md +3 -0
  266. package/docs/examples/projects/get.md +2 -0
  267. package/docs/examples/projects/list-dev-keys.md +3 -0
  268. package/docs/examples/projects/list-keys.md +2 -0
  269. package/docs/examples/projects/list-platforms.md +2 -0
  270. package/docs/examples/projects/list-webhooks.md +2 -0
  271. package/docs/examples/projects/list.md +3 -0
  272. package/docs/examples/projects/update-api-status-all.md +3 -0
  273. package/docs/examples/projects/update-api-status.md +4 -0
  274. package/docs/examples/projects/update-auth-duration.md +3 -0
  275. package/docs/examples/projects/update-auth-limit.md +3 -0
  276. package/docs/examples/projects/update-auth-password-dictionary.md +3 -0
  277. package/docs/examples/projects/update-auth-password-history.md +3 -0
  278. package/docs/examples/projects/update-auth-sessions-limit.md +3 -0
  279. package/docs/examples/projects/update-auth-status.md +4 -0
  280. package/docs/examples/projects/update-dev-key.md +5 -0
  281. package/docs/examples/projects/update-email-template.md +9 -0
  282. package/docs/examples/projects/update-key.md +6 -0
  283. package/docs/examples/projects/update-memberships-privacy.md +5 -0
  284. package/docs/examples/projects/update-mock-numbers.md +3 -0
  285. package/docs/examples/projects/update-o-auth2.md +6 -0
  286. package/docs/examples/projects/update-personal-data-check.md +3 -0
  287. package/docs/examples/projects/update-platform.md +7 -0
  288. package/docs/examples/projects/update-service-status-all.md +3 -0
  289. package/docs/examples/projects/update-service-status.md +4 -0
  290. package/docs/examples/projects/update-session-alerts.md +3 -0
  291. package/docs/examples/projects/update-sms-template.md +5 -0
  292. package/docs/examples/projects/update-smtp.md +11 -0
  293. package/docs/examples/projects/update-team.md +3 -0
  294. package/docs/examples/projects/update-webhook-signature.md +3 -0
  295. package/docs/examples/projects/update-webhook.md +10 -0
  296. package/docs/examples/projects/update.md +12 -0
  297. package/docs/examples/proxy/create-a-p-i-rule.md +2 -0
  298. package/docs/examples/proxy/create-function-rule.md +4 -0
  299. package/docs/examples/proxy/create-redirect-rule.md +6 -0
  300. package/docs/examples/proxy/create-site-rule.md +4 -0
  301. package/docs/examples/proxy/delete-rule.md +2 -0
  302. package/docs/examples/proxy/get-rule.md +2 -0
  303. package/docs/examples/proxy/list-rules.md +3 -0
  304. package/docs/examples/proxy/update-rule-verification.md +2 -0
  305. package/docs/examples/sites/create-deployment.md +7 -0
  306. package/docs/examples/sites/create-duplicate-deployment.md +3 -0
  307. package/docs/examples/sites/create-template-deployment.md +7 -0
  308. package/docs/examples/sites/create-variable.md +5 -0
  309. package/docs/examples/sites/create-vcs-deployment.md +5 -0
  310. package/docs/examples/sites/create.md +19 -0
  311. package/docs/examples/sites/delete-deployment.md +3 -0
  312. package/docs/examples/sites/delete-log.md +3 -0
  313. package/docs/examples/sites/delete-variable.md +3 -0
  314. package/docs/examples/sites/delete.md +2 -0
  315. package/docs/examples/sites/get-deployment-download.md +4 -0
  316. package/docs/examples/sites/get-deployment.md +3 -0
  317. package/docs/examples/sites/get-log.md +3 -0
  318. package/docs/examples/sites/get-template.md +2 -0
  319. package/docs/examples/sites/get-usage.md +3 -0
  320. package/docs/examples/sites/get-variable.md +3 -0
  321. package/docs/examples/sites/get.md +2 -0
  322. package/docs/examples/sites/list-deployments.md +4 -0
  323. package/docs/examples/sites/list-frameworks.md +1 -0
  324. package/docs/examples/sites/list-logs.md +3 -0
  325. package/docs/examples/sites/list-specifications.md +1 -0
  326. package/docs/examples/sites/list-templates.md +5 -0
  327. package/docs/examples/sites/list-usage.md +2 -0
  328. package/docs/examples/sites/list-variables.md +2 -0
  329. package/docs/examples/sites/list.md +3 -0
  330. package/docs/examples/sites/update-deployment-status.md +3 -0
  331. package/docs/examples/sites/update-site-deployment.md +3 -0
  332. package/docs/examples/sites/update-variable.md +6 -0
  333. package/docs/examples/sites/update.md +19 -0
  334. package/docs/examples/storage/create-bucket.md +11 -0
  335. package/docs/examples/storage/create-file.md +5 -0
  336. package/docs/examples/storage/delete-bucket.md +2 -0
  337. package/docs/examples/storage/delete-file.md +3 -0
  338. package/docs/examples/storage/get-bucket-usage.md +3 -0
  339. package/docs/examples/storage/get-bucket.md +2 -0
  340. package/docs/examples/storage/get-file-download.md +4 -0
  341. package/docs/examples/storage/get-file-preview.md +15 -0
  342. package/docs/examples/storage/get-file-view.md +4 -0
  343. package/docs/examples/storage/get-file.md +3 -0
  344. package/docs/examples/storage/get-usage.md +2 -0
  345. package/docs/examples/storage/list-buckets.md +3 -0
  346. package/docs/examples/storage/list-files.md +4 -0
  347. package/docs/examples/storage/update-bucket.md +11 -0
  348. package/docs/examples/storage/update-file.md +5 -0
  349. package/docs/examples/teams/create-membership.md +8 -0
  350. package/docs/examples/teams/create.md +4 -0
  351. package/docs/examples/teams/delete-membership.md +3 -0
  352. package/docs/examples/teams/delete.md +2 -0
  353. package/docs/examples/teams/get-membership.md +3 -0
  354. package/docs/examples/teams/get-prefs.md +2 -0
  355. package/docs/examples/teams/get.md +2 -0
  356. package/docs/examples/teams/list-logs.md +3 -0
  357. package/docs/examples/teams/list-memberships.md +4 -0
  358. package/docs/examples/teams/list.md +3 -0
  359. package/docs/examples/teams/update-membership-status.md +5 -0
  360. package/docs/examples/teams/update-membership.md +4 -0
  361. package/docs/examples/teams/update-name.md +3 -0
  362. package/docs/examples/teams/update-prefs.md +3 -0
  363. package/docs/examples/tokens/create-file-token.md +4 -0
  364. package/docs/examples/tokens/delete.md +2 -0
  365. package/docs/examples/tokens/get.md +2 -0
  366. package/docs/examples/tokens/list.md +4 -0
  367. package/docs/examples/tokens/update.md +3 -0
  368. package/docs/examples/users/create-argon2user.md +5 -0
  369. package/docs/examples/users/create-bcrypt-user.md +5 -0
  370. package/docs/examples/users/create-j-w-t.md +4 -0
  371. package/docs/examples/users/create-m-d5user.md +5 -0
  372. package/docs/examples/users/create-mfa-recovery-codes.md +2 -0
  373. package/docs/examples/users/create-p-h-pass-user.md +5 -0
  374. package/docs/examples/users/create-s-h-a-user.md +6 -0
  375. package/docs/examples/users/create-scrypt-modified-user.md +8 -0
  376. package/docs/examples/users/create-scrypt-user.md +10 -0
  377. package/docs/examples/users/create-session.md +2 -0
  378. package/docs/examples/users/create-target.md +7 -0
  379. package/docs/examples/users/create-token.md +4 -0
  380. package/docs/examples/users/create.md +6 -0
  381. package/docs/examples/users/delete-identity.md +2 -0
  382. package/docs/examples/users/delete-mfa-authenticator.md +3 -0
  383. package/docs/examples/users/delete-session.md +3 -0
  384. package/docs/examples/users/delete-sessions.md +2 -0
  385. package/docs/examples/users/delete-target.md +3 -0
  386. package/docs/examples/users/delete.md +2 -0
  387. package/docs/examples/users/get-mfa-recovery-codes.md +2 -0
  388. package/docs/examples/users/get-prefs.md +2 -0
  389. package/docs/examples/users/get-target.md +3 -0
  390. package/docs/examples/users/get-usage.md +2 -0
  391. package/docs/examples/users/get.md +2 -0
  392. package/docs/examples/users/list-identities.md +3 -0
  393. package/docs/examples/users/list-logs.md +3 -0
  394. package/docs/examples/users/list-memberships.md +4 -0
  395. package/docs/examples/users/list-mfa-factors.md +2 -0
  396. package/docs/examples/users/list-sessions.md +2 -0
  397. package/docs/examples/users/list-targets.md +3 -0
  398. package/docs/examples/users/list.md +3 -0
  399. package/docs/examples/users/update-email-verification.md +3 -0
  400. package/docs/examples/users/update-email.md +3 -0
  401. package/docs/examples/users/update-labels.md +3 -0
  402. package/docs/examples/users/update-mfa-recovery-codes.md +2 -0
  403. package/docs/examples/users/update-mfa.md +3 -0
  404. package/docs/examples/users/update-name.md +3 -0
  405. package/docs/examples/users/update-password.md +3 -0
  406. package/docs/examples/users/update-phone-verification.md +3 -0
  407. package/docs/examples/users/update-phone.md +3 -0
  408. package/docs/examples/users/update-prefs.md +3 -0
  409. package/docs/examples/users/update-status.md +3 -0
  410. package/docs/examples/users/update-target.md +6 -0
  411. package/docs/examples/vcs/create-repository-detection.md +5 -0
  412. package/docs/examples/vcs/create-repository.md +4 -0
  413. package/docs/examples/vcs/delete-installation.md +2 -0
  414. package/docs/examples/vcs/get-installation.md +2 -0
  415. package/docs/examples/vcs/get-repository-contents.md +5 -0
  416. package/docs/examples/vcs/get-repository.md +3 -0
  417. package/docs/examples/vcs/list-installations.md +3 -0
  418. package/docs/examples/vcs/list-repositories.md +4 -0
  419. package/docs/examples/vcs/list-repository-branches.md +3 -0
  420. package/docs/examples/vcs/update-external-deployments.md +4 -0
  421. package/functions/Starter function/.prettierrc.json +6 -0
  422. package/functions/Starter function/README.md +48 -0
  423. package/functions/Starter function/package-lock.json +60 -0
  424. package/functions/Starter function/package.json +16 -0
  425. package/functions/Starter function/src/main.js +35 -0
  426. package/generate/appwrite.d.ts +18 -0
  427. package/index.js +109 -0
  428. package/install.ps1 +98 -0
  429. package/install.sh +157 -0
  430. package/lib/client.js +259 -0
  431. package/lib/commands/account.js +2074 -0
  432. package/lib/commands/avatars.js +491 -0
  433. package/lib/commands/console.js +129 -0
  434. package/lib/commands/databases.js +2972 -0
  435. package/lib/commands/functions.js +1737 -0
  436. package/lib/commands/generic.js +328 -0
  437. package/lib/commands/graphql.js +128 -0
  438. package/lib/commands/health.js +891 -0
  439. package/lib/commands/init.js +566 -0
  440. package/lib/commands/locale.js +324 -0
  441. package/lib/commands/messaging.js +2970 -0
  442. package/lib/commands/migrations.js +751 -0
  443. package/lib/commands/organizations.js +48 -0
  444. package/lib/commands/project.js +308 -0
  445. package/lib/commands/projects.js +2615 -0
  446. package/lib/commands/proxy.js +406 -0
  447. package/lib/commands/pull.js +474 -0
  448. package/lib/commands/push.js +2117 -0
  449. package/lib/commands/run.js +330 -0
  450. package/lib/commands/sites.js +1663 -0
  451. package/lib/commands/storage.js +990 -0
  452. package/lib/commands/teams.js +682 -0
  453. package/lib/commands/tokens.js +261 -0
  454. package/lib/commands/types.js +156 -0
  455. package/lib/commands/users.js +2035 -0
  456. package/lib/commands/vcs.js +484 -0
  457. package/lib/config.js +705 -0
  458. package/lib/emulation/docker.js +264 -0
  459. package/lib/emulation/utils.js +186 -0
  460. package/lib/exception.js +9 -0
  461. package/lib/id.js +30 -0
  462. package/lib/paginate.js +52 -0
  463. package/lib/parser.js +246 -0
  464. package/lib/questions.js +1006 -0
  465. package/lib/sdks.js +60 -0
  466. package/lib/spinner.js +104 -0
  467. package/lib/type-generation/attribute.js +16 -0
  468. package/lib/type-generation/languages/dart.js +196 -0
  469. package/lib/type-generation/languages/java.js +130 -0
  470. package/lib/type-generation/languages/javascript.js +102 -0
  471. package/lib/type-generation/languages/kotlin.js +84 -0
  472. package/lib/type-generation/languages/language.js +125 -0
  473. package/lib/type-generation/languages/php.js +109 -0
  474. package/lib/type-generation/languages/swift.js +169 -0
  475. package/lib/type-generation/languages/typescript.js +102 -0
  476. package/lib/utils.js +289 -0
  477. package/lib/validations.js +17 -0
  478. package/package.json +50 -0
  479. package/scoop/appwrite.json +30 -0
  480. package/sites/JavaScript starter/.env.example +3 -0
  481. package/sites/JavaScript starter/LICENSE +21 -0
  482. package/sites/JavaScript starter/images/appwrite.svg +8 -0
  483. package/sites/JavaScript starter/images/javascript.svg +5 -0
  484. package/sites/JavaScript starter/index.html +250 -0
  485. package/sites/JavaScript starter/lib/appwrite.js +10 -0
  486. package/sites/JavaScript starter/package-lock.json +1431 -0
  487. package/sites/JavaScript starter/package.json +21 -0
  488. package/sites/JavaScript starter/readme.md +26 -0
  489. package/sites/JavaScript starter/src/javascript.svg +1 -0
  490. package/sites/JavaScript starter/style/app.css +20 -0
  491. package/sites/JavaScript starter/vite.config.js +7 -0
@@ -0,0 +1,1431 @@
1
+ {
2
+ "name": "starter-for-js",
3
+ "version": "0.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "starter-for-js",
9
+ "version": "0.0.0",
10
+ "dependencies": {
11
+ "@appwrite.io/pink-icons": "^1.0.0",
12
+ "@tailwindcss/vite": "^4.0.14",
13
+ "appwrite": "^17.0.0",
14
+ "tailwindcss": "^4.0.14"
15
+ },
16
+ "devDependencies": {
17
+ "prettier": "3.5.3",
18
+ "vite": "^6.2.0"
19
+ }
20
+ },
21
+ "node_modules/@appwrite.io/pink-icons": {
22
+ "version": "1.0.0",
23
+ "resolved": "https://registry.npmjs.org/@appwrite.io/pink-icons/-/pink-icons-1.0.0.tgz",
24
+ "integrity": "sha512-+zpksP07MvOYwhx9AZDFW0pxXQNC2juKwyOQVRAwAOkN1ACSQKPlyytkI1u2ci6CQPWjJe20CzbvBBuRNXOKjA==",
25
+ "license": "ISC"
26
+ },
27
+ "node_modules/@esbuild/aix-ppc64": {
28
+ "version": "0.25.0",
29
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.0.tgz",
30
+ "integrity": "sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==",
31
+ "cpu": [
32
+ "ppc64"
33
+ ],
34
+ "license": "MIT",
35
+ "optional": true,
36
+ "os": [
37
+ "aix"
38
+ ],
39
+ "engines": {
40
+ "node": ">=18"
41
+ }
42
+ },
43
+ "node_modules/@esbuild/android-arm": {
44
+ "version": "0.25.0",
45
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.0.tgz",
46
+ "integrity": "sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==",
47
+ "cpu": [
48
+ "arm"
49
+ ],
50
+ "license": "MIT",
51
+ "optional": true,
52
+ "os": [
53
+ "android"
54
+ ],
55
+ "engines": {
56
+ "node": ">=18"
57
+ }
58
+ },
59
+ "node_modules/@esbuild/android-arm64": {
60
+ "version": "0.25.0",
61
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.0.tgz",
62
+ "integrity": "sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==",
63
+ "cpu": [
64
+ "arm64"
65
+ ],
66
+ "license": "MIT",
67
+ "optional": true,
68
+ "os": [
69
+ "android"
70
+ ],
71
+ "engines": {
72
+ "node": ">=18"
73
+ }
74
+ },
75
+ "node_modules/@esbuild/android-x64": {
76
+ "version": "0.25.0",
77
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.0.tgz",
78
+ "integrity": "sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==",
79
+ "cpu": [
80
+ "x64"
81
+ ],
82
+ "license": "MIT",
83
+ "optional": true,
84
+ "os": [
85
+ "android"
86
+ ],
87
+ "engines": {
88
+ "node": ">=18"
89
+ }
90
+ },
91
+ "node_modules/@esbuild/darwin-arm64": {
92
+ "version": "0.25.0",
93
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.0.tgz",
94
+ "integrity": "sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==",
95
+ "cpu": [
96
+ "arm64"
97
+ ],
98
+ "license": "MIT",
99
+ "optional": true,
100
+ "os": [
101
+ "darwin"
102
+ ],
103
+ "engines": {
104
+ "node": ">=18"
105
+ }
106
+ },
107
+ "node_modules/@esbuild/darwin-x64": {
108
+ "version": "0.25.0",
109
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.0.tgz",
110
+ "integrity": "sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==",
111
+ "cpu": [
112
+ "x64"
113
+ ],
114
+ "license": "MIT",
115
+ "optional": true,
116
+ "os": [
117
+ "darwin"
118
+ ],
119
+ "engines": {
120
+ "node": ">=18"
121
+ }
122
+ },
123
+ "node_modules/@esbuild/freebsd-arm64": {
124
+ "version": "0.25.0",
125
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.0.tgz",
126
+ "integrity": "sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==",
127
+ "cpu": [
128
+ "arm64"
129
+ ],
130
+ "license": "MIT",
131
+ "optional": true,
132
+ "os": [
133
+ "freebsd"
134
+ ],
135
+ "engines": {
136
+ "node": ">=18"
137
+ }
138
+ },
139
+ "node_modules/@esbuild/freebsd-x64": {
140
+ "version": "0.25.0",
141
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.0.tgz",
142
+ "integrity": "sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==",
143
+ "cpu": [
144
+ "x64"
145
+ ],
146
+ "license": "MIT",
147
+ "optional": true,
148
+ "os": [
149
+ "freebsd"
150
+ ],
151
+ "engines": {
152
+ "node": ">=18"
153
+ }
154
+ },
155
+ "node_modules/@esbuild/linux-arm": {
156
+ "version": "0.25.0",
157
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.0.tgz",
158
+ "integrity": "sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==",
159
+ "cpu": [
160
+ "arm"
161
+ ],
162
+ "license": "MIT",
163
+ "optional": true,
164
+ "os": [
165
+ "linux"
166
+ ],
167
+ "engines": {
168
+ "node": ">=18"
169
+ }
170
+ },
171
+ "node_modules/@esbuild/linux-arm64": {
172
+ "version": "0.25.0",
173
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.0.tgz",
174
+ "integrity": "sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==",
175
+ "cpu": [
176
+ "arm64"
177
+ ],
178
+ "license": "MIT",
179
+ "optional": true,
180
+ "os": [
181
+ "linux"
182
+ ],
183
+ "engines": {
184
+ "node": ">=18"
185
+ }
186
+ },
187
+ "node_modules/@esbuild/linux-ia32": {
188
+ "version": "0.25.0",
189
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.0.tgz",
190
+ "integrity": "sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==",
191
+ "cpu": [
192
+ "ia32"
193
+ ],
194
+ "license": "MIT",
195
+ "optional": true,
196
+ "os": [
197
+ "linux"
198
+ ],
199
+ "engines": {
200
+ "node": ">=18"
201
+ }
202
+ },
203
+ "node_modules/@esbuild/linux-loong64": {
204
+ "version": "0.25.0",
205
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.0.tgz",
206
+ "integrity": "sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==",
207
+ "cpu": [
208
+ "loong64"
209
+ ],
210
+ "license": "MIT",
211
+ "optional": true,
212
+ "os": [
213
+ "linux"
214
+ ],
215
+ "engines": {
216
+ "node": ">=18"
217
+ }
218
+ },
219
+ "node_modules/@esbuild/linux-mips64el": {
220
+ "version": "0.25.0",
221
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.0.tgz",
222
+ "integrity": "sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==",
223
+ "cpu": [
224
+ "mips64el"
225
+ ],
226
+ "license": "MIT",
227
+ "optional": true,
228
+ "os": [
229
+ "linux"
230
+ ],
231
+ "engines": {
232
+ "node": ">=18"
233
+ }
234
+ },
235
+ "node_modules/@esbuild/linux-ppc64": {
236
+ "version": "0.25.0",
237
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.0.tgz",
238
+ "integrity": "sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==",
239
+ "cpu": [
240
+ "ppc64"
241
+ ],
242
+ "license": "MIT",
243
+ "optional": true,
244
+ "os": [
245
+ "linux"
246
+ ],
247
+ "engines": {
248
+ "node": ">=18"
249
+ }
250
+ },
251
+ "node_modules/@esbuild/linux-riscv64": {
252
+ "version": "0.25.0",
253
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.0.tgz",
254
+ "integrity": "sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==",
255
+ "cpu": [
256
+ "riscv64"
257
+ ],
258
+ "license": "MIT",
259
+ "optional": true,
260
+ "os": [
261
+ "linux"
262
+ ],
263
+ "engines": {
264
+ "node": ">=18"
265
+ }
266
+ },
267
+ "node_modules/@esbuild/linux-s390x": {
268
+ "version": "0.25.0",
269
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.0.tgz",
270
+ "integrity": "sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==",
271
+ "cpu": [
272
+ "s390x"
273
+ ],
274
+ "license": "MIT",
275
+ "optional": true,
276
+ "os": [
277
+ "linux"
278
+ ],
279
+ "engines": {
280
+ "node": ">=18"
281
+ }
282
+ },
283
+ "node_modules/@esbuild/linux-x64": {
284
+ "version": "0.25.0",
285
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.0.tgz",
286
+ "integrity": "sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==",
287
+ "cpu": [
288
+ "x64"
289
+ ],
290
+ "license": "MIT",
291
+ "optional": true,
292
+ "os": [
293
+ "linux"
294
+ ],
295
+ "engines": {
296
+ "node": ">=18"
297
+ }
298
+ },
299
+ "node_modules/@esbuild/netbsd-arm64": {
300
+ "version": "0.25.0",
301
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.0.tgz",
302
+ "integrity": "sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==",
303
+ "cpu": [
304
+ "arm64"
305
+ ],
306
+ "license": "MIT",
307
+ "optional": true,
308
+ "os": [
309
+ "netbsd"
310
+ ],
311
+ "engines": {
312
+ "node": ">=18"
313
+ }
314
+ },
315
+ "node_modules/@esbuild/netbsd-x64": {
316
+ "version": "0.25.0",
317
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.0.tgz",
318
+ "integrity": "sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==",
319
+ "cpu": [
320
+ "x64"
321
+ ],
322
+ "license": "MIT",
323
+ "optional": true,
324
+ "os": [
325
+ "netbsd"
326
+ ],
327
+ "engines": {
328
+ "node": ">=18"
329
+ }
330
+ },
331
+ "node_modules/@esbuild/openbsd-arm64": {
332
+ "version": "0.25.0",
333
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.0.tgz",
334
+ "integrity": "sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==",
335
+ "cpu": [
336
+ "arm64"
337
+ ],
338
+ "license": "MIT",
339
+ "optional": true,
340
+ "os": [
341
+ "openbsd"
342
+ ],
343
+ "engines": {
344
+ "node": ">=18"
345
+ }
346
+ },
347
+ "node_modules/@esbuild/openbsd-x64": {
348
+ "version": "0.25.0",
349
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.0.tgz",
350
+ "integrity": "sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==",
351
+ "cpu": [
352
+ "x64"
353
+ ],
354
+ "license": "MIT",
355
+ "optional": true,
356
+ "os": [
357
+ "openbsd"
358
+ ],
359
+ "engines": {
360
+ "node": ">=18"
361
+ }
362
+ },
363
+ "node_modules/@esbuild/sunos-x64": {
364
+ "version": "0.25.0",
365
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.0.tgz",
366
+ "integrity": "sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==",
367
+ "cpu": [
368
+ "x64"
369
+ ],
370
+ "license": "MIT",
371
+ "optional": true,
372
+ "os": [
373
+ "sunos"
374
+ ],
375
+ "engines": {
376
+ "node": ">=18"
377
+ }
378
+ },
379
+ "node_modules/@esbuild/win32-arm64": {
380
+ "version": "0.25.0",
381
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.0.tgz",
382
+ "integrity": "sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==",
383
+ "cpu": [
384
+ "arm64"
385
+ ],
386
+ "license": "MIT",
387
+ "optional": true,
388
+ "os": [
389
+ "win32"
390
+ ],
391
+ "engines": {
392
+ "node": ">=18"
393
+ }
394
+ },
395
+ "node_modules/@esbuild/win32-ia32": {
396
+ "version": "0.25.0",
397
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.0.tgz",
398
+ "integrity": "sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==",
399
+ "cpu": [
400
+ "ia32"
401
+ ],
402
+ "license": "MIT",
403
+ "optional": true,
404
+ "os": [
405
+ "win32"
406
+ ],
407
+ "engines": {
408
+ "node": ">=18"
409
+ }
410
+ },
411
+ "node_modules/@esbuild/win32-x64": {
412
+ "version": "0.25.0",
413
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.0.tgz",
414
+ "integrity": "sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==",
415
+ "cpu": [
416
+ "x64"
417
+ ],
418
+ "license": "MIT",
419
+ "optional": true,
420
+ "os": [
421
+ "win32"
422
+ ],
423
+ "engines": {
424
+ "node": ">=18"
425
+ }
426
+ },
427
+ "node_modules/@rollup/rollup-android-arm-eabi": {
428
+ "version": "4.34.9",
429
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.9.tgz",
430
+ "integrity": "sha512-qZdlImWXur0CFakn2BJ2znJOdqYZKiedEPEVNTBrpfPjc/YuTGcaYZcdmNFTkUj3DU0ZM/AElcM8Ybww3xVLzA==",
431
+ "cpu": [
432
+ "arm"
433
+ ],
434
+ "license": "MIT",
435
+ "optional": true,
436
+ "os": [
437
+ "android"
438
+ ]
439
+ },
440
+ "node_modules/@rollup/rollup-android-arm64": {
441
+ "version": "4.34.9",
442
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.9.tgz",
443
+ "integrity": "sha512-4KW7P53h6HtJf5Y608T1ISKvNIYLWRKMvfnG0c44M6In4DQVU58HZFEVhWINDZKp7FZps98G3gxwC1sb0wXUUg==",
444
+ "cpu": [
445
+ "arm64"
446
+ ],
447
+ "license": "MIT",
448
+ "optional": true,
449
+ "os": [
450
+ "android"
451
+ ]
452
+ },
453
+ "node_modules/@rollup/rollup-darwin-arm64": {
454
+ "version": "4.34.9",
455
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.9.tgz",
456
+ "integrity": "sha512-0CY3/K54slrzLDjOA7TOjN1NuLKERBgk9nY5V34mhmuu673YNb+7ghaDUs6N0ujXR7fz5XaS5Aa6d2TNxZd0OQ==",
457
+ "cpu": [
458
+ "arm64"
459
+ ],
460
+ "license": "MIT",
461
+ "optional": true,
462
+ "os": [
463
+ "darwin"
464
+ ]
465
+ },
466
+ "node_modules/@rollup/rollup-darwin-x64": {
467
+ "version": "4.34.9",
468
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.9.tgz",
469
+ "integrity": "sha512-eOojSEAi/acnsJVYRxnMkPFqcxSMFfrw7r2iD9Q32SGkb/Q9FpUY1UlAu1DH9T7j++gZ0lHjnm4OyH2vCI7l7Q==",
470
+ "cpu": [
471
+ "x64"
472
+ ],
473
+ "license": "MIT",
474
+ "optional": true,
475
+ "os": [
476
+ "darwin"
477
+ ]
478
+ },
479
+ "node_modules/@rollup/rollup-freebsd-arm64": {
480
+ "version": "4.34.9",
481
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.9.tgz",
482
+ "integrity": "sha512-2lzjQPJbN5UnHm7bHIUKFMulGTQwdvOkouJDpPysJS+QFBGDJqcfh+CxxtG23Ik/9tEvnebQiylYoazFMAgrYw==",
483
+ "cpu": [
484
+ "arm64"
485
+ ],
486
+ "license": "MIT",
487
+ "optional": true,
488
+ "os": [
489
+ "freebsd"
490
+ ]
491
+ },
492
+ "node_modules/@rollup/rollup-freebsd-x64": {
493
+ "version": "4.34.9",
494
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.9.tgz",
495
+ "integrity": "sha512-SLl0hi2Ah2H7xQYd6Qaiu01kFPzQ+hqvdYSoOtHYg/zCIFs6t8sV95kaoqjzjFwuYQLtOI0RZre/Ke0nPaQV+g==",
496
+ "cpu": [
497
+ "x64"
498
+ ],
499
+ "license": "MIT",
500
+ "optional": true,
501
+ "os": [
502
+ "freebsd"
503
+ ]
504
+ },
505
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
506
+ "version": "4.34.9",
507
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.9.tgz",
508
+ "integrity": "sha512-88I+D3TeKItrw+Y/2ud4Tw0+3CxQ2kLgu3QvrogZ0OfkmX/DEppehus7L3TS2Q4lpB+hYyxhkQiYPJ6Mf5/dPg==",
509
+ "cpu": [
510
+ "arm"
511
+ ],
512
+ "license": "MIT",
513
+ "optional": true,
514
+ "os": [
515
+ "linux"
516
+ ]
517
+ },
518
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
519
+ "version": "4.34.9",
520
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.9.tgz",
521
+ "integrity": "sha512-3qyfWljSFHi9zH0KgtEPG4cBXHDFhwD8kwg6xLfHQ0IWuH9crp005GfoUUh/6w9/FWGBwEHg3lxK1iHRN1MFlA==",
522
+ "cpu": [
523
+ "arm"
524
+ ],
525
+ "license": "MIT",
526
+ "optional": true,
527
+ "os": [
528
+ "linux"
529
+ ]
530
+ },
531
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
532
+ "version": "4.34.9",
533
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.9.tgz",
534
+ "integrity": "sha512-6TZjPHjKZUQKmVKMUowF3ewHxctrRR09eYyvT5eFv8w/fXarEra83A2mHTVJLA5xU91aCNOUnM+DWFMSbQ0Nxw==",
535
+ "cpu": [
536
+ "arm64"
537
+ ],
538
+ "license": "MIT",
539
+ "optional": true,
540
+ "os": [
541
+ "linux"
542
+ ]
543
+ },
544
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
545
+ "version": "4.34.9",
546
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.9.tgz",
547
+ "integrity": "sha512-LD2fytxZJZ6xzOKnMbIpgzFOuIKlxVOpiMAXawsAZ2mHBPEYOnLRK5TTEsID6z4eM23DuO88X0Tq1mErHMVq0A==",
548
+ "cpu": [
549
+ "arm64"
550
+ ],
551
+ "license": "MIT",
552
+ "optional": true,
553
+ "os": [
554
+ "linux"
555
+ ]
556
+ },
557
+ "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
558
+ "version": "4.34.9",
559
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.9.tgz",
560
+ "integrity": "sha512-dRAgTfDsn0TE0HI6cmo13hemKpVHOEyeciGtvlBTkpx/F65kTvShtY/EVyZEIfxFkV5JJTuQ9tP5HGBS0hfxIg==",
561
+ "cpu": [
562
+ "loong64"
563
+ ],
564
+ "license": "MIT",
565
+ "optional": true,
566
+ "os": [
567
+ "linux"
568
+ ]
569
+ },
570
+ "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
571
+ "version": "4.34.9",
572
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.9.tgz",
573
+ "integrity": "sha512-PHcNOAEhkoMSQtMf+rJofwisZqaU8iQ8EaSps58f5HYll9EAY5BSErCZ8qBDMVbq88h4UxaNPlbrKqfWP8RfJA==",
574
+ "cpu": [
575
+ "ppc64"
576
+ ],
577
+ "license": "MIT",
578
+ "optional": true,
579
+ "os": [
580
+ "linux"
581
+ ]
582
+ },
583
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
584
+ "version": "4.34.9",
585
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.9.tgz",
586
+ "integrity": "sha512-Z2i0Uy5G96KBYKjeQFKbbsB54xFOL5/y1P5wNBsbXB8yE+At3oh0DVMjQVzCJRJSfReiB2tX8T6HUFZ2k8iaKg==",
587
+ "cpu": [
588
+ "riscv64"
589
+ ],
590
+ "license": "MIT",
591
+ "optional": true,
592
+ "os": [
593
+ "linux"
594
+ ]
595
+ },
596
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
597
+ "version": "4.34.9",
598
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.9.tgz",
599
+ "integrity": "sha512-U+5SwTMoeYXoDzJX5dhDTxRltSrIax8KWwfaaYcynuJw8mT33W7oOgz0a+AaXtGuvhzTr2tVKh5UO8GVANTxyQ==",
600
+ "cpu": [
601
+ "s390x"
602
+ ],
603
+ "license": "MIT",
604
+ "optional": true,
605
+ "os": [
606
+ "linux"
607
+ ]
608
+ },
609
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
610
+ "version": "4.34.9",
611
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.9.tgz",
612
+ "integrity": "sha512-FwBHNSOjUTQLP4MG7y6rR6qbGw4MFeQnIBrMe161QGaQoBQLqSUEKlHIiVgF3g/mb3lxlxzJOpIBhaP+C+KP2A==",
613
+ "cpu": [
614
+ "x64"
615
+ ],
616
+ "license": "MIT",
617
+ "optional": true,
618
+ "os": [
619
+ "linux"
620
+ ]
621
+ },
622
+ "node_modules/@rollup/rollup-linux-x64-musl": {
623
+ "version": "4.34.9",
624
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.9.tgz",
625
+ "integrity": "sha512-cYRpV4650z2I3/s6+5/LONkjIz8MBeqrk+vPXV10ORBnshpn8S32bPqQ2Utv39jCiDcO2eJTuSlPXpnvmaIgRA==",
626
+ "cpu": [
627
+ "x64"
628
+ ],
629
+ "license": "MIT",
630
+ "optional": true,
631
+ "os": [
632
+ "linux"
633
+ ]
634
+ },
635
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
636
+ "version": "4.34.9",
637
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.9.tgz",
638
+ "integrity": "sha512-z4mQK9dAN6byRA/vsSgQiPeuO63wdiDxZ9yg9iyX2QTzKuQM7T4xlBoeUP/J8uiFkqxkcWndWi+W7bXdPbt27Q==",
639
+ "cpu": [
640
+ "arm64"
641
+ ],
642
+ "license": "MIT",
643
+ "optional": true,
644
+ "os": [
645
+ "win32"
646
+ ]
647
+ },
648
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
649
+ "version": "4.34.9",
650
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.9.tgz",
651
+ "integrity": "sha512-KB48mPtaoHy1AwDNkAJfHXvHp24H0ryZog28spEs0V48l3H1fr4i37tiyHsgKZJnCmvxsbATdZGBpbmxTE3a9w==",
652
+ "cpu": [
653
+ "ia32"
654
+ ],
655
+ "license": "MIT",
656
+ "optional": true,
657
+ "os": [
658
+ "win32"
659
+ ]
660
+ },
661
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
662
+ "version": "4.34.9",
663
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.9.tgz",
664
+ "integrity": "sha512-AyleYRPU7+rgkMWbEh71fQlrzRfeP6SyMnRf9XX4fCdDPAJumdSBqYEcWPMzVQ4ScAl7E4oFfK0GUVn77xSwbw==",
665
+ "cpu": [
666
+ "x64"
667
+ ],
668
+ "license": "MIT",
669
+ "optional": true,
670
+ "os": [
671
+ "win32"
672
+ ]
673
+ },
674
+ "node_modules/@tailwindcss/node": {
675
+ "version": "4.0.14",
676
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.0.14.tgz",
677
+ "integrity": "sha512-Ux9NbFkKWYE4rfUFz6M5JFLs/GEYP6ysxT8uSyPn6aTbh2K3xDE1zz++eVK4Vwx799fzMF8CID9sdHn4j/Ab8w==",
678
+ "license": "MIT",
679
+ "dependencies": {
680
+ "enhanced-resolve": "^5.18.1",
681
+ "jiti": "^2.4.2",
682
+ "tailwindcss": "4.0.14"
683
+ }
684
+ },
685
+ "node_modules/@tailwindcss/oxide": {
686
+ "version": "4.0.14",
687
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.0.14.tgz",
688
+ "integrity": "sha512-M8VCNyO/NBi5vJ2cRcI9u8w7Si+i76a7o1vveoGtbbjpEYJZYiyc7f2VGps/DqawO56l3tImIbq2OT/533jcrA==",
689
+ "license": "MIT",
690
+ "engines": {
691
+ "node": ">= 10"
692
+ },
693
+ "optionalDependencies": {
694
+ "@tailwindcss/oxide-android-arm64": "4.0.14",
695
+ "@tailwindcss/oxide-darwin-arm64": "4.0.14",
696
+ "@tailwindcss/oxide-darwin-x64": "4.0.14",
697
+ "@tailwindcss/oxide-freebsd-x64": "4.0.14",
698
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.0.14",
699
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.0.14",
700
+ "@tailwindcss/oxide-linux-arm64-musl": "4.0.14",
701
+ "@tailwindcss/oxide-linux-x64-gnu": "4.0.14",
702
+ "@tailwindcss/oxide-linux-x64-musl": "4.0.14",
703
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.0.14",
704
+ "@tailwindcss/oxide-win32-x64-msvc": "4.0.14"
705
+ }
706
+ },
707
+ "node_modules/@tailwindcss/oxide-android-arm64": {
708
+ "version": "4.0.14",
709
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.0.14.tgz",
710
+ "integrity": "sha512-VBFKC2rFyfJ5J8lRwjy6ub3rgpY186kAcYgiUr8ArR8BAZzMruyeKJ6mlsD22Zp5ZLcPW/FXMasJiJBx0WsdQg==",
711
+ "cpu": [
712
+ "arm64"
713
+ ],
714
+ "license": "MIT",
715
+ "optional": true,
716
+ "os": [
717
+ "android"
718
+ ],
719
+ "engines": {
720
+ "node": ">= 10"
721
+ }
722
+ },
723
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
724
+ "version": "4.0.14",
725
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.0.14.tgz",
726
+ "integrity": "sha512-U3XOwLrefGr2YQZ9DXasDSNWGPZBCh8F62+AExBEDMLDfvLLgI/HDzY8Oq8p/JtqkAY38sWPOaNnRwEGKU5Zmg==",
727
+ "cpu": [
728
+ "arm64"
729
+ ],
730
+ "license": "MIT",
731
+ "optional": true,
732
+ "os": [
733
+ "darwin"
734
+ ],
735
+ "engines": {
736
+ "node": ">= 10"
737
+ }
738
+ },
739
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
740
+ "version": "4.0.14",
741
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.0.14.tgz",
742
+ "integrity": "sha512-V5AjFuc3ndWGnOi1d379UsODb0TzAS2DYIP/lwEbfvafUaD2aNZIcbwJtYu2DQqO2+s/XBvDVA+w4yUyaewRwg==",
743
+ "cpu": [
744
+ "x64"
745
+ ],
746
+ "license": "MIT",
747
+ "optional": true,
748
+ "os": [
749
+ "darwin"
750
+ ],
751
+ "engines": {
752
+ "node": ">= 10"
753
+ }
754
+ },
755
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
756
+ "version": "4.0.14",
757
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.0.14.tgz",
758
+ "integrity": "sha512-tXvtxbaZfcPfqBwW3f53lTcyH6EDT+1eT7yabwcfcxTs+8yTPqxsDUhrqe9MrnEzpNkd+R/QAjJapfd4tjWdLg==",
759
+ "cpu": [
760
+ "x64"
761
+ ],
762
+ "license": "MIT",
763
+ "optional": true,
764
+ "os": [
765
+ "freebsd"
766
+ ],
767
+ "engines": {
768
+ "node": ">= 10"
769
+ }
770
+ },
771
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
772
+ "version": "4.0.14",
773
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.0.14.tgz",
774
+ "integrity": "sha512-cSeLNWWqIWeSTmBntQvyY2/2gcLX8rkPFfDDTQVF8qbRcRMVPLxBvFVJyfSAYRNch6ZyVH2GI6dtgALOBDpdNA==",
775
+ "cpu": [
776
+ "arm"
777
+ ],
778
+ "license": "MIT",
779
+ "optional": true,
780
+ "os": [
781
+ "linux"
782
+ ],
783
+ "engines": {
784
+ "node": ">= 10"
785
+ }
786
+ },
787
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
788
+ "version": "4.0.14",
789
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.0.14.tgz",
790
+ "integrity": "sha512-bwDWLBalXFMDItcSXzFk6y7QKvj6oFlaY9vM+agTlwFL1n1OhDHYLZkSjaYsh6KCeG0VB0r7H8PUJVOM1LRZyg==",
791
+ "cpu": [
792
+ "arm64"
793
+ ],
794
+ "license": "MIT",
795
+ "optional": true,
796
+ "os": [
797
+ "linux"
798
+ ],
799
+ "engines": {
800
+ "node": ">= 10"
801
+ }
802
+ },
803
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
804
+ "version": "4.0.14",
805
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.0.14.tgz",
806
+ "integrity": "sha512-gVkJdnR/L6iIcGYXx64HGJRmlme2FGr/aZH0W6u4A3RgPMAb+6ELRLi+UBiH83RXBm9vwCfkIC/q8T51h8vUJQ==",
807
+ "cpu": [
808
+ "arm64"
809
+ ],
810
+ "license": "MIT",
811
+ "optional": true,
812
+ "os": [
813
+ "linux"
814
+ ],
815
+ "engines": {
816
+ "node": ">= 10"
817
+ }
818
+ },
819
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
820
+ "version": "4.0.14",
821
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.0.14.tgz",
822
+ "integrity": "sha512-EE+EQ+c6tTpzsg+LGO1uuusjXxYx0Q00JE5ubcIGfsogSKth8n8i2BcS2wYTQe4jXGs+BQs35l78BIPzgwLddw==",
823
+ "cpu": [
824
+ "x64"
825
+ ],
826
+ "license": "MIT",
827
+ "optional": true,
828
+ "os": [
829
+ "linux"
830
+ ],
831
+ "engines": {
832
+ "node": ">= 10"
833
+ }
834
+ },
835
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
836
+ "version": "4.0.14",
837
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.0.14.tgz",
838
+ "integrity": "sha512-KCCOzo+L6XPT0oUp2Jwh233ETRQ/F6cwUnMnR0FvMUCbkDAzHbcyOgpfuAtRa5HD0WbTbH4pVD+S0pn1EhNfbw==",
839
+ "cpu": [
840
+ "x64"
841
+ ],
842
+ "license": "MIT",
843
+ "optional": true,
844
+ "os": [
845
+ "linux"
846
+ ],
847
+ "engines": {
848
+ "node": ">= 10"
849
+ }
850
+ },
851
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
852
+ "version": "4.0.14",
853
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.0.14.tgz",
854
+ "integrity": "sha512-AHObFiFL9lNYcm3tZSPqa/cHGpM5wOrNmM2uOMoKppp+0Hom5uuyRh0QkOp7jftsHZdrZUpmoz0Mp6vhh2XtUg==",
855
+ "cpu": [
856
+ "arm64"
857
+ ],
858
+ "license": "MIT",
859
+ "optional": true,
860
+ "os": [
861
+ "win32"
862
+ ],
863
+ "engines": {
864
+ "node": ">= 10"
865
+ }
866
+ },
867
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
868
+ "version": "4.0.14",
869
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.0.14.tgz",
870
+ "integrity": "sha512-rNXXMDJfCJLw/ZaFTOLOHoGULxyXfh2iXTGiChFiYTSgKBKQHIGEpV0yn5N25WGzJJ+VBnRjHzlmDqRV+d//oQ==",
871
+ "cpu": [
872
+ "x64"
873
+ ],
874
+ "license": "MIT",
875
+ "optional": true,
876
+ "os": [
877
+ "win32"
878
+ ],
879
+ "engines": {
880
+ "node": ">= 10"
881
+ }
882
+ },
883
+ "node_modules/@tailwindcss/vite": {
884
+ "version": "4.0.14",
885
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.0.14.tgz",
886
+ "integrity": "sha512-y69ztPTRFy+13EPS/7dEFVl7q2Goh1pQueVO8IfGeyqSpcx/joNJXFk0lLhMgUbF0VFJotwRSb9ZY7Xoq3r26Q==",
887
+ "license": "MIT",
888
+ "dependencies": {
889
+ "@tailwindcss/node": "4.0.14",
890
+ "@tailwindcss/oxide": "4.0.14",
891
+ "lightningcss": "1.29.2",
892
+ "tailwindcss": "4.0.14"
893
+ },
894
+ "peerDependencies": {
895
+ "vite": "^5.2.0 || ^6"
896
+ }
897
+ },
898
+ "node_modules/@types/estree": {
899
+ "version": "1.0.6",
900
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
901
+ "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
902
+ "license": "MIT"
903
+ },
904
+ "node_modules/appwrite": {
905
+ "version": "17.0.0",
906
+ "resolved": "https://registry.npmjs.org/appwrite/-/appwrite-17.0.0.tgz",
907
+ "integrity": "sha512-R5+jMh6dVsKC5BdcO9G3wQPxqlU048zxj/Hahq2SU86XIxb0jWThQqS7MtyLUg7tz27SrwO2JvpwUrT9SOStDA==",
908
+ "license": "BSD-3-Clause"
909
+ },
910
+ "node_modules/detect-libc": {
911
+ "version": "2.0.3",
912
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
913
+ "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
914
+ "license": "Apache-2.0",
915
+ "engines": {
916
+ "node": ">=8"
917
+ }
918
+ },
919
+ "node_modules/enhanced-resolve": {
920
+ "version": "5.18.1",
921
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz",
922
+ "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==",
923
+ "license": "MIT",
924
+ "dependencies": {
925
+ "graceful-fs": "^4.2.4",
926
+ "tapable": "^2.2.0"
927
+ },
928
+ "engines": {
929
+ "node": ">=10.13.0"
930
+ }
931
+ },
932
+ "node_modules/esbuild": {
933
+ "version": "0.25.0",
934
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz",
935
+ "integrity": "sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==",
936
+ "hasInstallScript": true,
937
+ "license": "MIT",
938
+ "bin": {
939
+ "esbuild": "bin/esbuild"
940
+ },
941
+ "engines": {
942
+ "node": ">=18"
943
+ },
944
+ "optionalDependencies": {
945
+ "@esbuild/aix-ppc64": "0.25.0",
946
+ "@esbuild/android-arm": "0.25.0",
947
+ "@esbuild/android-arm64": "0.25.0",
948
+ "@esbuild/android-x64": "0.25.0",
949
+ "@esbuild/darwin-arm64": "0.25.0",
950
+ "@esbuild/darwin-x64": "0.25.0",
951
+ "@esbuild/freebsd-arm64": "0.25.0",
952
+ "@esbuild/freebsd-x64": "0.25.0",
953
+ "@esbuild/linux-arm": "0.25.0",
954
+ "@esbuild/linux-arm64": "0.25.0",
955
+ "@esbuild/linux-ia32": "0.25.0",
956
+ "@esbuild/linux-loong64": "0.25.0",
957
+ "@esbuild/linux-mips64el": "0.25.0",
958
+ "@esbuild/linux-ppc64": "0.25.0",
959
+ "@esbuild/linux-riscv64": "0.25.0",
960
+ "@esbuild/linux-s390x": "0.25.0",
961
+ "@esbuild/linux-x64": "0.25.0",
962
+ "@esbuild/netbsd-arm64": "0.25.0",
963
+ "@esbuild/netbsd-x64": "0.25.0",
964
+ "@esbuild/openbsd-arm64": "0.25.0",
965
+ "@esbuild/openbsd-x64": "0.25.0",
966
+ "@esbuild/sunos-x64": "0.25.0",
967
+ "@esbuild/win32-arm64": "0.25.0",
968
+ "@esbuild/win32-ia32": "0.25.0",
969
+ "@esbuild/win32-x64": "0.25.0"
970
+ }
971
+ },
972
+ "node_modules/fsevents": {
973
+ "version": "2.3.3",
974
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
975
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
976
+ "hasInstallScript": true,
977
+ "license": "MIT",
978
+ "optional": true,
979
+ "os": [
980
+ "darwin"
981
+ ],
982
+ "engines": {
983
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
984
+ }
985
+ },
986
+ "node_modules/graceful-fs": {
987
+ "version": "4.2.11",
988
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
989
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
990
+ "license": "ISC"
991
+ },
992
+ "node_modules/jiti": {
993
+ "version": "2.4.2",
994
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz",
995
+ "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==",
996
+ "license": "MIT",
997
+ "bin": {
998
+ "jiti": "lib/jiti-cli.mjs"
999
+ }
1000
+ },
1001
+ "node_modules/lightningcss": {
1002
+ "version": "1.29.2",
1003
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.29.2.tgz",
1004
+ "integrity": "sha512-6b6gd/RUXKaw5keVdSEtqFVdzWnU5jMxTUjA2bVcMNPLwSQ08Sv/UodBVtETLCn7k4S1Ibxwh7k68IwLZPgKaA==",
1005
+ "license": "MPL-2.0",
1006
+ "dependencies": {
1007
+ "detect-libc": "^2.0.3"
1008
+ },
1009
+ "engines": {
1010
+ "node": ">= 12.0.0"
1011
+ },
1012
+ "funding": {
1013
+ "type": "opencollective",
1014
+ "url": "https://opencollective.com/parcel"
1015
+ },
1016
+ "optionalDependencies": {
1017
+ "lightningcss-darwin-arm64": "1.29.2",
1018
+ "lightningcss-darwin-x64": "1.29.2",
1019
+ "lightningcss-freebsd-x64": "1.29.2",
1020
+ "lightningcss-linux-arm-gnueabihf": "1.29.2",
1021
+ "lightningcss-linux-arm64-gnu": "1.29.2",
1022
+ "lightningcss-linux-arm64-musl": "1.29.2",
1023
+ "lightningcss-linux-x64-gnu": "1.29.2",
1024
+ "lightningcss-linux-x64-musl": "1.29.2",
1025
+ "lightningcss-win32-arm64-msvc": "1.29.2",
1026
+ "lightningcss-win32-x64-msvc": "1.29.2"
1027
+ }
1028
+ },
1029
+ "node_modules/lightningcss-darwin-arm64": {
1030
+ "version": "1.29.2",
1031
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.29.2.tgz",
1032
+ "integrity": "sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA==",
1033
+ "cpu": [
1034
+ "arm64"
1035
+ ],
1036
+ "license": "MPL-2.0",
1037
+ "optional": true,
1038
+ "os": [
1039
+ "darwin"
1040
+ ],
1041
+ "engines": {
1042
+ "node": ">= 12.0.0"
1043
+ },
1044
+ "funding": {
1045
+ "type": "opencollective",
1046
+ "url": "https://opencollective.com/parcel"
1047
+ }
1048
+ },
1049
+ "node_modules/lightningcss-darwin-x64": {
1050
+ "version": "1.29.2",
1051
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.29.2.tgz",
1052
+ "integrity": "sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w==",
1053
+ "cpu": [
1054
+ "x64"
1055
+ ],
1056
+ "license": "MPL-2.0",
1057
+ "optional": true,
1058
+ "os": [
1059
+ "darwin"
1060
+ ],
1061
+ "engines": {
1062
+ "node": ">= 12.0.0"
1063
+ },
1064
+ "funding": {
1065
+ "type": "opencollective",
1066
+ "url": "https://opencollective.com/parcel"
1067
+ }
1068
+ },
1069
+ "node_modules/lightningcss-freebsd-x64": {
1070
+ "version": "1.29.2",
1071
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.29.2.tgz",
1072
+ "integrity": "sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg==",
1073
+ "cpu": [
1074
+ "x64"
1075
+ ],
1076
+ "license": "MPL-2.0",
1077
+ "optional": true,
1078
+ "os": [
1079
+ "freebsd"
1080
+ ],
1081
+ "engines": {
1082
+ "node": ">= 12.0.0"
1083
+ },
1084
+ "funding": {
1085
+ "type": "opencollective",
1086
+ "url": "https://opencollective.com/parcel"
1087
+ }
1088
+ },
1089
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
1090
+ "version": "1.29.2",
1091
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.29.2.tgz",
1092
+ "integrity": "sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg==",
1093
+ "cpu": [
1094
+ "arm"
1095
+ ],
1096
+ "license": "MPL-2.0",
1097
+ "optional": true,
1098
+ "os": [
1099
+ "linux"
1100
+ ],
1101
+ "engines": {
1102
+ "node": ">= 12.0.0"
1103
+ },
1104
+ "funding": {
1105
+ "type": "opencollective",
1106
+ "url": "https://opencollective.com/parcel"
1107
+ }
1108
+ },
1109
+ "node_modules/lightningcss-linux-arm64-gnu": {
1110
+ "version": "1.29.2",
1111
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.29.2.tgz",
1112
+ "integrity": "sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ==",
1113
+ "cpu": [
1114
+ "arm64"
1115
+ ],
1116
+ "license": "MPL-2.0",
1117
+ "optional": true,
1118
+ "os": [
1119
+ "linux"
1120
+ ],
1121
+ "engines": {
1122
+ "node": ">= 12.0.0"
1123
+ },
1124
+ "funding": {
1125
+ "type": "opencollective",
1126
+ "url": "https://opencollective.com/parcel"
1127
+ }
1128
+ },
1129
+ "node_modules/lightningcss-linux-arm64-musl": {
1130
+ "version": "1.29.2",
1131
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.29.2.tgz",
1132
+ "integrity": "sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==",
1133
+ "cpu": [
1134
+ "arm64"
1135
+ ],
1136
+ "license": "MPL-2.0",
1137
+ "optional": true,
1138
+ "os": [
1139
+ "linux"
1140
+ ],
1141
+ "engines": {
1142
+ "node": ">= 12.0.0"
1143
+ },
1144
+ "funding": {
1145
+ "type": "opencollective",
1146
+ "url": "https://opencollective.com/parcel"
1147
+ }
1148
+ },
1149
+ "node_modules/lightningcss-linux-x64-gnu": {
1150
+ "version": "1.29.2",
1151
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.29.2.tgz",
1152
+ "integrity": "sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==",
1153
+ "cpu": [
1154
+ "x64"
1155
+ ],
1156
+ "license": "MPL-2.0",
1157
+ "optional": true,
1158
+ "os": [
1159
+ "linux"
1160
+ ],
1161
+ "engines": {
1162
+ "node": ">= 12.0.0"
1163
+ },
1164
+ "funding": {
1165
+ "type": "opencollective",
1166
+ "url": "https://opencollective.com/parcel"
1167
+ }
1168
+ },
1169
+ "node_modules/lightningcss-linux-x64-musl": {
1170
+ "version": "1.29.2",
1171
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.29.2.tgz",
1172
+ "integrity": "sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==",
1173
+ "cpu": [
1174
+ "x64"
1175
+ ],
1176
+ "license": "MPL-2.0",
1177
+ "optional": true,
1178
+ "os": [
1179
+ "linux"
1180
+ ],
1181
+ "engines": {
1182
+ "node": ">= 12.0.0"
1183
+ },
1184
+ "funding": {
1185
+ "type": "opencollective",
1186
+ "url": "https://opencollective.com/parcel"
1187
+ }
1188
+ },
1189
+ "node_modules/lightningcss-win32-arm64-msvc": {
1190
+ "version": "1.29.2",
1191
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.29.2.tgz",
1192
+ "integrity": "sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==",
1193
+ "cpu": [
1194
+ "arm64"
1195
+ ],
1196
+ "license": "MPL-2.0",
1197
+ "optional": true,
1198
+ "os": [
1199
+ "win32"
1200
+ ],
1201
+ "engines": {
1202
+ "node": ">= 12.0.0"
1203
+ },
1204
+ "funding": {
1205
+ "type": "opencollective",
1206
+ "url": "https://opencollective.com/parcel"
1207
+ }
1208
+ },
1209
+ "node_modules/lightningcss-win32-x64-msvc": {
1210
+ "version": "1.29.2",
1211
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.29.2.tgz",
1212
+ "integrity": "sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA==",
1213
+ "cpu": [
1214
+ "x64"
1215
+ ],
1216
+ "license": "MPL-2.0",
1217
+ "optional": true,
1218
+ "os": [
1219
+ "win32"
1220
+ ],
1221
+ "engines": {
1222
+ "node": ">= 12.0.0"
1223
+ },
1224
+ "funding": {
1225
+ "type": "opencollective",
1226
+ "url": "https://opencollective.com/parcel"
1227
+ }
1228
+ },
1229
+ "node_modules/nanoid": {
1230
+ "version": "3.3.8",
1231
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
1232
+ "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
1233
+ "funding": [
1234
+ {
1235
+ "type": "github",
1236
+ "url": "https://github.com/sponsors/ai"
1237
+ }
1238
+ ],
1239
+ "license": "MIT",
1240
+ "bin": {
1241
+ "nanoid": "bin/nanoid.cjs"
1242
+ },
1243
+ "engines": {
1244
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
1245
+ }
1246
+ },
1247
+ "node_modules/picocolors": {
1248
+ "version": "1.1.1",
1249
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
1250
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
1251
+ "license": "ISC"
1252
+ },
1253
+ "node_modules/postcss": {
1254
+ "version": "8.5.3",
1255
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz",
1256
+ "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==",
1257
+ "funding": [
1258
+ {
1259
+ "type": "opencollective",
1260
+ "url": "https://opencollective.com/postcss/"
1261
+ },
1262
+ {
1263
+ "type": "tidelift",
1264
+ "url": "https://tidelift.com/funding/github/npm/postcss"
1265
+ },
1266
+ {
1267
+ "type": "github",
1268
+ "url": "https://github.com/sponsors/ai"
1269
+ }
1270
+ ],
1271
+ "license": "MIT",
1272
+ "dependencies": {
1273
+ "nanoid": "^3.3.8",
1274
+ "picocolors": "^1.1.1",
1275
+ "source-map-js": "^1.2.1"
1276
+ },
1277
+ "engines": {
1278
+ "node": "^10 || ^12 || >=14"
1279
+ }
1280
+ },
1281
+ "node_modules/prettier": {
1282
+ "version": "3.5.3",
1283
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz",
1284
+ "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
1285
+ "dev": true,
1286
+ "license": "MIT",
1287
+ "bin": {
1288
+ "prettier": "bin/prettier.cjs"
1289
+ },
1290
+ "engines": {
1291
+ "node": ">=14"
1292
+ },
1293
+ "funding": {
1294
+ "url": "https://github.com/prettier/prettier?sponsor=1"
1295
+ }
1296
+ },
1297
+ "node_modules/rollup": {
1298
+ "version": "4.34.9",
1299
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.9.tgz",
1300
+ "integrity": "sha512-nF5XYqWWp9hx/LrpC8sZvvvmq0TeTjQgaZHYmAgwysT9nh8sWnZhBnM8ZyVbbJFIQBLwHDNoMqsBZBbUo4U8sQ==",
1301
+ "license": "MIT",
1302
+ "dependencies": {
1303
+ "@types/estree": "1.0.6"
1304
+ },
1305
+ "bin": {
1306
+ "rollup": "dist/bin/rollup"
1307
+ },
1308
+ "engines": {
1309
+ "node": ">=18.0.0",
1310
+ "npm": ">=8.0.0"
1311
+ },
1312
+ "optionalDependencies": {
1313
+ "@rollup/rollup-android-arm-eabi": "4.34.9",
1314
+ "@rollup/rollup-android-arm64": "4.34.9",
1315
+ "@rollup/rollup-darwin-arm64": "4.34.9",
1316
+ "@rollup/rollup-darwin-x64": "4.34.9",
1317
+ "@rollup/rollup-freebsd-arm64": "4.34.9",
1318
+ "@rollup/rollup-freebsd-x64": "4.34.9",
1319
+ "@rollup/rollup-linux-arm-gnueabihf": "4.34.9",
1320
+ "@rollup/rollup-linux-arm-musleabihf": "4.34.9",
1321
+ "@rollup/rollup-linux-arm64-gnu": "4.34.9",
1322
+ "@rollup/rollup-linux-arm64-musl": "4.34.9",
1323
+ "@rollup/rollup-linux-loongarch64-gnu": "4.34.9",
1324
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.34.9",
1325
+ "@rollup/rollup-linux-riscv64-gnu": "4.34.9",
1326
+ "@rollup/rollup-linux-s390x-gnu": "4.34.9",
1327
+ "@rollup/rollup-linux-x64-gnu": "4.34.9",
1328
+ "@rollup/rollup-linux-x64-musl": "4.34.9",
1329
+ "@rollup/rollup-win32-arm64-msvc": "4.34.9",
1330
+ "@rollup/rollup-win32-ia32-msvc": "4.34.9",
1331
+ "@rollup/rollup-win32-x64-msvc": "4.34.9",
1332
+ "fsevents": "~2.3.2"
1333
+ }
1334
+ },
1335
+ "node_modules/source-map-js": {
1336
+ "version": "1.2.1",
1337
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
1338
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
1339
+ "license": "BSD-3-Clause",
1340
+ "engines": {
1341
+ "node": ">=0.10.0"
1342
+ }
1343
+ },
1344
+ "node_modules/tailwindcss": {
1345
+ "version": "4.0.14",
1346
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.14.tgz",
1347
+ "integrity": "sha512-92YT2dpt671tFiHH/e1ok9D987N9fHD5VWoly1CdPD/Cd1HMglvZwP3nx2yTj2lbXDAHt8QssZkxTLCCTNL+xw==",
1348
+ "license": "MIT"
1349
+ },
1350
+ "node_modules/tapable": {
1351
+ "version": "2.2.1",
1352
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
1353
+ "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
1354
+ "license": "MIT",
1355
+ "engines": {
1356
+ "node": ">=6"
1357
+ }
1358
+ },
1359
+ "node_modules/vite": {
1360
+ "version": "6.2.0",
1361
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.0.tgz",
1362
+ "integrity": "sha512-7dPxoo+WsT/64rDcwoOjk76XHj+TqNTIvHKcuMQ1k4/SeHDaQt5GFAeLYzrimZrMpn/O6DtdI03WUjdxuPM0oQ==",
1363
+ "license": "MIT",
1364
+ "dependencies": {
1365
+ "esbuild": "^0.25.0",
1366
+ "postcss": "^8.5.3",
1367
+ "rollup": "^4.30.1"
1368
+ },
1369
+ "bin": {
1370
+ "vite": "bin/vite.js"
1371
+ },
1372
+ "engines": {
1373
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
1374
+ },
1375
+ "funding": {
1376
+ "url": "https://github.com/vitejs/vite?sponsor=1"
1377
+ },
1378
+ "optionalDependencies": {
1379
+ "fsevents": "~2.3.3"
1380
+ },
1381
+ "peerDependencies": {
1382
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
1383
+ "jiti": ">=1.21.0",
1384
+ "less": "*",
1385
+ "lightningcss": "^1.21.0",
1386
+ "sass": "*",
1387
+ "sass-embedded": "*",
1388
+ "stylus": "*",
1389
+ "sugarss": "*",
1390
+ "terser": "^5.16.0",
1391
+ "tsx": "^4.8.1",
1392
+ "yaml": "^2.4.2"
1393
+ },
1394
+ "peerDependenciesMeta": {
1395
+ "@types/node": {
1396
+ "optional": true
1397
+ },
1398
+ "jiti": {
1399
+ "optional": true
1400
+ },
1401
+ "less": {
1402
+ "optional": true
1403
+ },
1404
+ "lightningcss": {
1405
+ "optional": true
1406
+ },
1407
+ "sass": {
1408
+ "optional": true
1409
+ },
1410
+ "sass-embedded": {
1411
+ "optional": true
1412
+ },
1413
+ "stylus": {
1414
+ "optional": true
1415
+ },
1416
+ "sugarss": {
1417
+ "optional": true
1418
+ },
1419
+ "terser": {
1420
+ "optional": true
1421
+ },
1422
+ "tsx": {
1423
+ "optional": true
1424
+ },
1425
+ "yaml": {
1426
+ "optional": true
1427
+ }
1428
+ }
1429
+ }
1430
+ }
1431
+ }