├── .editorconfig ├── .github └── workflows │ └── github-pages.yaml ├── .gitignore ├── .vitepress └── config.mts ├── LICENSE ├── README.md ├── classes-bem.md ├── index.md ├── markdown-examples.md ├── package-lock.json ├── package.json ├── pull-requests.md ├── quick-start.md ├── task-management.md ├── task-pr-linking.md └── template-classes.md /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: https://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | # Unix-style newlines with a newline ending every file 7 | [*] 8 | indent_style = space 9 | indent_size = 2 10 | end_of_line = lf 11 | insert_final_newline = true 12 | -------------------------------------------------------------------------------- /.github/workflows/github-pages.yaml: -------------------------------------------------------------------------------- 1 | # Simple workflow for deploying static content to GitHub Pages 2 | name: Build & Deploy to Github Pages 3 | 4 | on: 5 | # Runs on pushes targeting the default branch 6 | push: 7 | branches: ["master"] 8 | 9 | # Allows you to run this workflow manually from the Actions tab 10 | workflow_dispatch: 11 | 12 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 13 | permissions: 14 | contents: read 15 | pages: write 16 | id-token: write 17 | 18 | # Allow one concurrent deployment 19 | concurrency: 20 | group: "pages" 21 | cancel-in-progress: true 22 | 23 | jobs: 24 | build-and-deploy: 25 | environment: 26 | name: github-pages 27 | url: ${{ steps.deployment.outputs.page_url }} 28 | concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession. 29 | runs-on: ubuntu-latest 30 | steps: 31 | - name: Checkout 🛎️ 32 | uses: actions/checkout@v3 33 | 34 | - name: Configure GitHub Pages 📄 35 | uses: actions/configure-pages@v2 36 | 37 | - name: Install and Build 🛠️ 38 | run: | 39 | npm ci 40 | npm run build 41 | 42 | - name: Upload artifacts 📁 43 | uses: actions/upload-pages-artifact@v1 44 | with: 45 | path: .vitepress/dist 46 | 47 | - name: Deploy to GitHub Pages 🚀 48 | id: deployment 49 | uses: actions/deploy-pages@v1 50 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # NPM 2 | node_modules 3 | 4 | # VitePress 5 | dist 6 | cache 7 | -------------------------------------------------------------------------------- /.vitepress/config.mts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from "vitepress"; 2 | 3 | // https://vitepress.dev/reference/site-config 4 | export default defineConfig({ 5 | title: "ADAMANT Messenger", 6 | description: 7 | "Guide for setting up, contributing, and collaborating on the ADAMANT Messenger open-source project", 8 | themeConfig: { 9 | // https://vitepress.dev/reference/default-theme-config 10 | nav: [ 11 | { text: "Home", link: "/" }, 12 | { text: "Quick Start", link: "/quick-start" }, 13 | ], 14 | 15 | sidebar: [ 16 | { 17 | text: "Quick Start", 18 | items: [{ text: "Installation", link: "/quick-start" }], 19 | }, 20 | { 21 | text: "Development Flow", 22 | items: [ 23 | { text: "Task Management", link: "/task-management" }, 24 | { text: "Pull Requests", link: "/pull-requests" }, 25 | ], 26 | }, 27 | { 28 | text: "Best Practices", 29 | items: [ 30 | { text: "Template classes", link: "/template-classes" }, 31 | { text: "BEM methodology", link: "/classes-bem" }, 32 | ], 33 | }, 34 | { 35 | text: "Guides", 36 | items: [{ text: "Task and PR linking", link: "/task-pr-linking" }], 37 | }, 38 | ], 39 | 40 | socialLinks: [ 41 | { icon: "github", link: "https://github.com/adamant-im/adamant-im" }, 42 | { icon: "x", link: "https://x.com/adamant_im" }, 43 | { 44 | icon: "slack", 45 | link: "https://join.slack.com/t/adamant-im/shared_invite/zt-3n32uqh3-TmTM4qPAKcp3PzrPMtKETQ", 46 | }, 47 | ], 48 | }, 49 | srcExclude: ["README.md"], 50 | }); 51 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ADAMANT Developers Handbook [![build status](https://img.shields.io/github/actions/workflow/status/Adamant-im/developers/github-pages.yaml?branch=master)](https://github.com/Adamant-im/developers/actions/workflows/github-pages.yaml) 2 | 3 | Guide for setting up, contributing, and collaborating on the ADAMANT Messenger open-source project 4 | 5 | _https://developers.adamant.im_ 6 | 7 | ## Bootstrap 8 | 9 | Install dependencies via `npm`: 10 | 11 | ``` 12 | $ npm install 13 | ``` 14 | 15 | Then start dev server: 16 | 17 | ```shell 18 | $ npm run dev 19 | ``` 20 | 21 | You should now have the VitePress UI running at _http://localhost:5173_ 22 | 23 | ## Commands 24 | 25 | To build the docs run: 26 | 27 | ```shell 28 | $ npm run build 29 | ``` 30 | 31 | Once the project is built you can preview `.vitepress/dist` by: 32 | 33 | ```shell 34 | $ npm run preview 35 | ``` 36 | 37 | The preview should be available at _http://localhost:4173_ 38 | 39 | ## Links 40 | 41 | - [ADAMANT Node API Spec Wiki](https://github.com/Adamant-im/adamant/wiki/API-Specification) 42 | - [ADAMANT Messenger Repo](https://github.com/adamant-im/adamant-im) 43 | - [VitePress Docs](https://vitepress.dev) 44 | -------------------------------------------------------------------------------- /classes-bem.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BEM methodology 3 | --- 4 | 5 | # BEM methodology 6 | 7 | We follow the **BEM (Block, Element, Modifier)** methodology for class naming, with one minor exception: instead of using the `-` prefix for modifiers, we use `--`. 8 | 9 | https://en.bem.info/methodology 10 | 11 | ## Example 12 | 13 | BEM in action: 14 | 15 | ```vue 16 | 27 | ``` 28 | 29 | **Explanation:** 30 | 31 | - **Block**: Represents the parent entity or a standalone component.
32 | Example: `wallet-page` 33 | - **Element**: Represents a child part of the block.
34 | Example: `wallet-page__send-button` 35 | - **Modifier**: Represents a variation or state of the block or element.
36 | Example: `wallet-page__send-button--disabled` 37 | 38 | ## Difference from standard BEM 39 | 40 | - In standard BEM, modifiers use a single dash (`-`), like `block__element-modifier`. 41 | - In our implementation, modifiers use a double dash (`--`) for better readability: `block__element--modifier`. 42 | 43 | ## Links 44 | 45 | - [BEM Docs](https://en.bem.info/methodology) 46 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | # https://vitepress.dev/reference/default-theme-home-page 3 | layout: home 4 | 5 | hero: 6 | name: "ADAMANT" 7 | tagline: "Guide for setting up, contributing, and collaborating on the ADAMANT Messenger" 8 | actions: 9 | - theme: brand 10 | text: Quick Start 11 | link: /quick-start 12 | - theme: alt 13 | text: Development Flow 14 | link: /task-management 15 | --- 16 | -------------------------------------------------------------------------------- /markdown-examples.md: -------------------------------------------------------------------------------- 1 | # Markdown Extension Examples 2 | 3 | This page demonstrates some of the built-in markdown extensions provided by VitePress. 4 | 5 | ## Syntax Highlighting 6 | 7 | VitePress provides Syntax Highlighting powered by [Shiki](https://github.com/shikijs/shiki), with additional features like line-highlighting: 8 | 9 | **Input** 10 | 11 | ````md 12 | ```js{4} 13 | export default { 14 | data () { 15 | return { 16 | msg: 'Highlighted!' 17 | } 18 | } 19 | } 20 | ``` 21 | ```` 22 | 23 | **Output** 24 | 25 | ```js{4} 26 | export default { 27 | data () { 28 | return { 29 | msg: 'Highlighted!' 30 | } 31 | } 32 | } 33 | ``` 34 | 35 | ## Custom Containers 36 | 37 | **Input** 38 | 39 | ```md 40 | ::: info 41 | This is an info box. 42 | ::: 43 | 44 | ::: tip 45 | This is a tip. 46 | ::: 47 | 48 | ::: warning 49 | This is a warning. 50 | ::: 51 | 52 | ::: danger 53 | This is a dangerous warning. 54 | ::: 55 | 56 | ::: details 57 | This is a details block. 58 | ::: 59 | ``` 60 | 61 | **Output** 62 | 63 | ::: info 64 | This is an info box. 65 | ::: 66 | 67 | ::: tip 68 | This is a tip. 69 | ::: 70 | 71 | ::: warning 72 | This is a warning. 73 | ::: 74 | 75 | ::: danger 76 | This is a dangerous warning. 77 | ::: 78 | 79 | ::: details 80 | This is a details block. 81 | ::: 82 | 83 | ## More 84 | 85 | Check out the documentation for the [full list of markdown extensions](https://vitepress.dev/guide/markdown). 86 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "developers", 3 | "lockfileVersion": 3, 4 | "requires": true, 5 | "packages": { 6 | "": { 7 | "name": "developers", 8 | "devDependencies": { 9 | "vitepress": "^1.5.0" 10 | } 11 | }, 12 | "node_modules/@algolia/autocomplete-core": { 13 | "version": "1.17.7", 14 | "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.17.7.tgz", 15 | "integrity": "sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q==", 16 | "dev": true, 17 | "license": "MIT", 18 | "dependencies": { 19 | "@algolia/autocomplete-plugin-algolia-insights": "1.17.7", 20 | "@algolia/autocomplete-shared": "1.17.7" 21 | } 22 | }, 23 | "node_modules/@algolia/autocomplete-plugin-algolia-insights": { 24 | "version": "1.17.7", 25 | "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.7.tgz", 26 | "integrity": "sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A==", 27 | "dev": true, 28 | "license": "MIT", 29 | "dependencies": { 30 | "@algolia/autocomplete-shared": "1.17.7" 31 | }, 32 | "peerDependencies": { 33 | "search-insights": ">= 1 < 3" 34 | } 35 | }, 36 | "node_modules/@algolia/autocomplete-preset-algolia": { 37 | "version": "1.17.7", 38 | "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.7.tgz", 39 | "integrity": "sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA==", 40 | "dev": true, 41 | "license": "MIT", 42 | "dependencies": { 43 | "@algolia/autocomplete-shared": "1.17.7" 44 | }, 45 | "peerDependencies": { 46 | "@algolia/client-search": ">= 4.9.1 < 6", 47 | "algoliasearch": ">= 4.9.1 < 6" 48 | } 49 | }, 50 | "node_modules/@algolia/autocomplete-shared": { 51 | "version": "1.17.7", 52 | "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.7.tgz", 53 | "integrity": "sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg==", 54 | "dev": true, 55 | "license": "MIT", 56 | "peerDependencies": { 57 | "@algolia/client-search": ">= 4.9.1 < 6", 58 | "algoliasearch": ">= 4.9.1 < 6" 59 | } 60 | }, 61 | "node_modules/@algolia/client-abtesting": { 62 | "version": "5.15.0", 63 | "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.15.0.tgz", 64 | "integrity": "sha512-FaEM40iuiv1mAipYyiptP4EyxkJ8qHfowCpEeusdHUC4C7spATJYArD2rX3AxkVeREkDIgYEOuXcwKUbDCr7Nw==", 65 | "dev": true, 66 | "license": "MIT", 67 | "dependencies": { 68 | "@algolia/client-common": "5.15.0", 69 | "@algolia/requester-browser-xhr": "5.15.0", 70 | "@algolia/requester-fetch": "5.15.0", 71 | "@algolia/requester-node-http": "5.15.0" 72 | }, 73 | "engines": { 74 | "node": ">= 14.0.0" 75 | } 76 | }, 77 | "node_modules/@algolia/client-analytics": { 78 | "version": "5.15.0", 79 | "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.15.0.tgz", 80 | "integrity": "sha512-lho0gTFsQDIdCwyUKTtMuf9nCLwq9jOGlLGIeQGKDxXF7HbiAysFIu5QW/iQr1LzMgDyM9NH7K98KY+BiIFriQ==", 81 | "dev": true, 82 | "license": "MIT", 83 | "dependencies": { 84 | "@algolia/client-common": "5.15.0", 85 | "@algolia/requester-browser-xhr": "5.15.0", 86 | "@algolia/requester-fetch": "5.15.0", 87 | "@algolia/requester-node-http": "5.15.0" 88 | }, 89 | "engines": { 90 | "node": ">= 14.0.0" 91 | } 92 | }, 93 | "node_modules/@algolia/client-common": { 94 | "version": "5.15.0", 95 | "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.15.0.tgz", 96 | "integrity": "sha512-IofrVh213VLsDkPoSKMeM9Dshrv28jhDlBDLRcVJQvlL8pzue7PEB1EZ4UoJFYS3NSn7JOcJ/V+olRQzXlJj1w==", 97 | "dev": true, 98 | "license": "MIT", 99 | "engines": { 100 | "node": ">= 14.0.0" 101 | } 102 | }, 103 | "node_modules/@algolia/client-insights": { 104 | "version": "5.15.0", 105 | "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.15.0.tgz", 106 | "integrity": "sha512-bDDEQGfFidDi0UQUCbxXOCdphbVAgbVmxvaV75cypBTQkJ+ABx/Npw7LkFGw1FsoVrttlrrQbwjvUB6mLVKs/w==", 107 | "dev": true, 108 | "license": "MIT", 109 | "dependencies": { 110 | "@algolia/client-common": "5.15.0", 111 | "@algolia/requester-browser-xhr": "5.15.0", 112 | "@algolia/requester-fetch": "5.15.0", 113 | "@algolia/requester-node-http": "5.15.0" 114 | }, 115 | "engines": { 116 | "node": ">= 14.0.0" 117 | } 118 | }, 119 | "node_modules/@algolia/client-personalization": { 120 | "version": "5.15.0", 121 | "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.15.0.tgz", 122 | "integrity": "sha512-LfaZqLUWxdYFq44QrasCDED5bSYOswpQjSiIL7Q5fYlefAAUO95PzBPKCfUhSwhb4rKxigHfDkd81AvEicIEoA==", 123 | "dev": true, 124 | "license": "MIT", 125 | "dependencies": { 126 | "@algolia/client-common": "5.15.0", 127 | "@algolia/requester-browser-xhr": "5.15.0", 128 | "@algolia/requester-fetch": "5.15.0", 129 | "@algolia/requester-node-http": "5.15.0" 130 | }, 131 | "engines": { 132 | "node": ">= 14.0.0" 133 | } 134 | }, 135 | "node_modules/@algolia/client-query-suggestions": { 136 | "version": "5.15.0", 137 | "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.15.0.tgz", 138 | "integrity": "sha512-wu8GVluiZ5+il8WIRsGKu8VxMK9dAlr225h878GGtpTL6VBvwyJvAyLdZsfFIpY0iN++jiNb31q2C1PlPL+n/A==", 139 | "dev": true, 140 | "license": "MIT", 141 | "dependencies": { 142 | "@algolia/client-common": "5.15.0", 143 | "@algolia/requester-browser-xhr": "5.15.0", 144 | "@algolia/requester-fetch": "5.15.0", 145 | "@algolia/requester-node-http": "5.15.0" 146 | }, 147 | "engines": { 148 | "node": ">= 14.0.0" 149 | } 150 | }, 151 | "node_modules/@algolia/client-search": { 152 | "version": "5.15.0", 153 | "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.15.0.tgz", 154 | "integrity": "sha512-Z32gEMrRRpEta5UqVQA612sLdoqY3AovvUPClDfMxYrbdDAebmGDVPtSogUba1FZ4pP5dx20D3OV3reogLKsRA==", 155 | "dev": true, 156 | "license": "MIT", 157 | "dependencies": { 158 | "@algolia/client-common": "5.15.0", 159 | "@algolia/requester-browser-xhr": "5.15.0", 160 | "@algolia/requester-fetch": "5.15.0", 161 | "@algolia/requester-node-http": "5.15.0" 162 | }, 163 | "engines": { 164 | "node": ">= 14.0.0" 165 | } 166 | }, 167 | "node_modules/@algolia/ingestion": { 168 | "version": "1.15.0", 169 | "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.15.0.tgz", 170 | "integrity": "sha512-MkqkAxBQxtQ5if/EX2IPqFA7LothghVyvPoRNA/meS2AW2qkHwcxjuiBxv4H6mnAVEPfJlhu9rkdVz9LgCBgJg==", 171 | "dev": true, 172 | "license": "MIT", 173 | "dependencies": { 174 | "@algolia/client-common": "5.15.0", 175 | "@algolia/requester-browser-xhr": "5.15.0", 176 | "@algolia/requester-fetch": "5.15.0", 177 | "@algolia/requester-node-http": "5.15.0" 178 | }, 179 | "engines": { 180 | "node": ">= 14.0.0" 181 | } 182 | }, 183 | "node_modules/@algolia/monitoring": { 184 | "version": "1.15.0", 185 | "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.15.0.tgz", 186 | "integrity": "sha512-QPrFnnGLMMdRa8t/4bs7XilPYnoUXDY8PMQJ1sf9ZFwhUysYYhQNX34/enoO0LBjpoOY6rLpha39YQEFbzgKyQ==", 187 | "dev": true, 188 | "license": "MIT", 189 | "dependencies": { 190 | "@algolia/client-common": "5.15.0", 191 | "@algolia/requester-browser-xhr": "5.15.0", 192 | "@algolia/requester-fetch": "5.15.0", 193 | "@algolia/requester-node-http": "5.15.0" 194 | }, 195 | "engines": { 196 | "node": ">= 14.0.0" 197 | } 198 | }, 199 | "node_modules/@algolia/recommend": { 200 | "version": "5.15.0", 201 | "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.15.0.tgz", 202 | "integrity": "sha512-5eupMwSqMLDObgSMF0XG958zR6GJP3f7jHDQ3/WlzCM9/YIJiWIUoJFGsko9GYsA5xbLDHE/PhWtq4chcCdaGQ==", 203 | "dev": true, 204 | "license": "MIT", 205 | "dependencies": { 206 | "@algolia/client-common": "5.15.0", 207 | "@algolia/requester-browser-xhr": "5.15.0", 208 | "@algolia/requester-fetch": "5.15.0", 209 | "@algolia/requester-node-http": "5.15.0" 210 | }, 211 | "engines": { 212 | "node": ">= 14.0.0" 213 | } 214 | }, 215 | "node_modules/@algolia/requester-browser-xhr": { 216 | "version": "5.15.0", 217 | "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.15.0.tgz", 218 | "integrity": "sha512-Po/GNib6QKruC3XE+WKP1HwVSfCDaZcXu48kD+gwmtDlqHWKc7Bq9lrS0sNZ456rfCKhXksOmMfUs4wRM/Y96w==", 219 | "dev": true, 220 | "license": "MIT", 221 | "dependencies": { 222 | "@algolia/client-common": "5.15.0" 223 | }, 224 | "engines": { 225 | "node": ">= 14.0.0" 226 | } 227 | }, 228 | "node_modules/@algolia/requester-fetch": { 229 | "version": "5.15.0", 230 | "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.15.0.tgz", 231 | "integrity": "sha512-rOZ+c0P7ajmccAvpeeNrUmEKoliYFL8aOR5qGW5pFq3oj3Iept7Y5mEtEsOBYsRt6qLnaXn4zUKf+N8nvJpcIw==", 232 | "dev": true, 233 | "license": "MIT", 234 | "dependencies": { 235 | "@algolia/client-common": "5.15.0" 236 | }, 237 | "engines": { 238 | "node": ">= 14.0.0" 239 | } 240 | }, 241 | "node_modules/@algolia/requester-node-http": { 242 | "version": "5.15.0", 243 | "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.15.0.tgz", 244 | "integrity": "sha512-b1jTpbFf9LnQHEJP5ddDJKE2sAlhYd7EVSOWgzo/27n/SfCoHfqD0VWntnWYD83PnOKvfe8auZ2+xCb0TXotrQ==", 245 | "dev": true, 246 | "license": "MIT", 247 | "dependencies": { 248 | "@algolia/client-common": "5.15.0" 249 | }, 250 | "engines": { 251 | "node": ">= 14.0.0" 252 | } 253 | }, 254 | "node_modules/@babel/helper-string-parser": { 255 | "version": "7.25.9", 256 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", 257 | "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", 258 | "dev": true, 259 | "license": "MIT", 260 | "engines": { 261 | "node": ">=6.9.0" 262 | } 263 | }, 264 | "node_modules/@babel/helper-validator-identifier": { 265 | "version": "7.25.9", 266 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", 267 | "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", 268 | "dev": true, 269 | "license": "MIT", 270 | "engines": { 271 | "node": ">=6.9.0" 272 | } 273 | }, 274 | "node_modules/@babel/parser": { 275 | "version": "7.26.2", 276 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz", 277 | "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==", 278 | "dev": true, 279 | "license": "MIT", 280 | "dependencies": { 281 | "@babel/types": "^7.26.0" 282 | }, 283 | "bin": { 284 | "parser": "bin/babel-parser.js" 285 | }, 286 | "engines": { 287 | "node": ">=6.0.0" 288 | } 289 | }, 290 | "node_modules/@babel/types": { 291 | "version": "7.26.0", 292 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz", 293 | "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==", 294 | "dev": true, 295 | "license": "MIT", 296 | "dependencies": { 297 | "@babel/helper-string-parser": "^7.25.9", 298 | "@babel/helper-validator-identifier": "^7.25.9" 299 | }, 300 | "engines": { 301 | "node": ">=6.9.0" 302 | } 303 | }, 304 | "node_modules/@docsearch/css": { 305 | "version": "3.8.0", 306 | "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.8.0.tgz", 307 | "integrity": "sha512-pieeipSOW4sQ0+bE5UFC51AOZp9NGxg89wAlZ1BAQFaiRAGK1IKUaPQ0UGZeNctJXyqZ1UvBtOQh2HH+U5GtmA==", 308 | "dev": true, 309 | "license": "MIT" 310 | }, 311 | "node_modules/@docsearch/js": { 312 | "version": "3.8.0", 313 | "resolved": "https://registry.npmjs.org/@docsearch/js/-/js-3.8.0.tgz", 314 | "integrity": "sha512-PVuV629f5UcYRtBWqK7ID6vNL5647+2ADJypwTjfeBIrJfwPuHtzLy39hMGMfFK+0xgRyhTR0FZ83EkdEraBlg==", 315 | "dev": true, 316 | "license": "MIT", 317 | "dependencies": { 318 | "@docsearch/react": "3.8.0", 319 | "preact": "^10.0.0" 320 | } 321 | }, 322 | "node_modules/@docsearch/react": { 323 | "version": "3.8.0", 324 | "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.8.0.tgz", 325 | "integrity": "sha512-WnFK720+iwTVt94CxY3u+FgX6exb3BfN5kE9xUY6uuAH/9W/UFboBZFLlrw/zxFRHoHZCOXRtOylsXF+6LHI+Q==", 326 | "dev": true, 327 | "license": "MIT", 328 | "dependencies": { 329 | "@algolia/autocomplete-core": "1.17.7", 330 | "@algolia/autocomplete-preset-algolia": "1.17.7", 331 | "@docsearch/css": "3.8.0", 332 | "algoliasearch": "^5.12.0" 333 | }, 334 | "peerDependencies": { 335 | "@types/react": ">= 16.8.0 < 19.0.0", 336 | "react": ">= 16.8.0 < 19.0.0", 337 | "react-dom": ">= 16.8.0 < 19.0.0", 338 | "search-insights": ">= 1 < 3" 339 | }, 340 | "peerDependenciesMeta": { 341 | "@types/react": { 342 | "optional": true 343 | }, 344 | "react": { 345 | "optional": true 346 | }, 347 | "react-dom": { 348 | "optional": true 349 | }, 350 | "search-insights": { 351 | "optional": true 352 | } 353 | } 354 | }, 355 | "node_modules/@esbuild/aix-ppc64": { 356 | "version": "0.21.5", 357 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", 358 | "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", 359 | "cpu": [ 360 | "ppc64" 361 | ], 362 | "dev": true, 363 | "license": "MIT", 364 | "optional": true, 365 | "os": [ 366 | "aix" 367 | ], 368 | "engines": { 369 | "node": ">=12" 370 | } 371 | }, 372 | "node_modules/@esbuild/android-arm": { 373 | "version": "0.21.5", 374 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", 375 | "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", 376 | "cpu": [ 377 | "arm" 378 | ], 379 | "dev": true, 380 | "license": "MIT", 381 | "optional": true, 382 | "os": [ 383 | "android" 384 | ], 385 | "engines": { 386 | "node": ">=12" 387 | } 388 | }, 389 | "node_modules/@esbuild/android-arm64": { 390 | "version": "0.21.5", 391 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", 392 | "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", 393 | "cpu": [ 394 | "arm64" 395 | ], 396 | "dev": true, 397 | "license": "MIT", 398 | "optional": true, 399 | "os": [ 400 | "android" 401 | ], 402 | "engines": { 403 | "node": ">=12" 404 | } 405 | }, 406 | "node_modules/@esbuild/android-x64": { 407 | "version": "0.21.5", 408 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", 409 | "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", 410 | "cpu": [ 411 | "x64" 412 | ], 413 | "dev": true, 414 | "license": "MIT", 415 | "optional": true, 416 | "os": [ 417 | "android" 418 | ], 419 | "engines": { 420 | "node": ">=12" 421 | } 422 | }, 423 | "node_modules/@esbuild/darwin-arm64": { 424 | "version": "0.21.5", 425 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", 426 | "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", 427 | "cpu": [ 428 | "arm64" 429 | ], 430 | "dev": true, 431 | "license": "MIT", 432 | "optional": true, 433 | "os": [ 434 | "darwin" 435 | ], 436 | "engines": { 437 | "node": ">=12" 438 | } 439 | }, 440 | "node_modules/@esbuild/darwin-x64": { 441 | "version": "0.21.5", 442 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", 443 | "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", 444 | "cpu": [ 445 | "x64" 446 | ], 447 | "dev": true, 448 | "license": "MIT", 449 | "optional": true, 450 | "os": [ 451 | "darwin" 452 | ], 453 | "engines": { 454 | "node": ">=12" 455 | } 456 | }, 457 | "node_modules/@esbuild/freebsd-arm64": { 458 | "version": "0.21.5", 459 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", 460 | "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", 461 | "cpu": [ 462 | "arm64" 463 | ], 464 | "dev": true, 465 | "license": "MIT", 466 | "optional": true, 467 | "os": [ 468 | "freebsd" 469 | ], 470 | "engines": { 471 | "node": ">=12" 472 | } 473 | }, 474 | "node_modules/@esbuild/freebsd-x64": { 475 | "version": "0.21.5", 476 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", 477 | "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", 478 | "cpu": [ 479 | "x64" 480 | ], 481 | "dev": true, 482 | "license": "MIT", 483 | "optional": true, 484 | "os": [ 485 | "freebsd" 486 | ], 487 | "engines": { 488 | "node": ">=12" 489 | } 490 | }, 491 | "node_modules/@esbuild/linux-arm": { 492 | "version": "0.21.5", 493 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", 494 | "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", 495 | "cpu": [ 496 | "arm" 497 | ], 498 | "dev": true, 499 | "license": "MIT", 500 | "optional": true, 501 | "os": [ 502 | "linux" 503 | ], 504 | "engines": { 505 | "node": ">=12" 506 | } 507 | }, 508 | "node_modules/@esbuild/linux-arm64": { 509 | "version": "0.21.5", 510 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", 511 | "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", 512 | "cpu": [ 513 | "arm64" 514 | ], 515 | "dev": true, 516 | "license": "MIT", 517 | "optional": true, 518 | "os": [ 519 | "linux" 520 | ], 521 | "engines": { 522 | "node": ">=12" 523 | } 524 | }, 525 | "node_modules/@esbuild/linux-ia32": { 526 | "version": "0.21.5", 527 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", 528 | "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", 529 | "cpu": [ 530 | "ia32" 531 | ], 532 | "dev": true, 533 | "license": "MIT", 534 | "optional": true, 535 | "os": [ 536 | "linux" 537 | ], 538 | "engines": { 539 | "node": ">=12" 540 | } 541 | }, 542 | "node_modules/@esbuild/linux-loong64": { 543 | "version": "0.21.5", 544 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", 545 | "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", 546 | "cpu": [ 547 | "loong64" 548 | ], 549 | "dev": true, 550 | "license": "MIT", 551 | "optional": true, 552 | "os": [ 553 | "linux" 554 | ], 555 | "engines": { 556 | "node": ">=12" 557 | } 558 | }, 559 | "node_modules/@esbuild/linux-mips64el": { 560 | "version": "0.21.5", 561 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", 562 | "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", 563 | "cpu": [ 564 | "mips64el" 565 | ], 566 | "dev": true, 567 | "license": "MIT", 568 | "optional": true, 569 | "os": [ 570 | "linux" 571 | ], 572 | "engines": { 573 | "node": ">=12" 574 | } 575 | }, 576 | "node_modules/@esbuild/linux-ppc64": { 577 | "version": "0.21.5", 578 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", 579 | "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", 580 | "cpu": [ 581 | "ppc64" 582 | ], 583 | "dev": true, 584 | "license": "MIT", 585 | "optional": true, 586 | "os": [ 587 | "linux" 588 | ], 589 | "engines": { 590 | "node": ">=12" 591 | } 592 | }, 593 | "node_modules/@esbuild/linux-riscv64": { 594 | "version": "0.21.5", 595 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", 596 | "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", 597 | "cpu": [ 598 | "riscv64" 599 | ], 600 | "dev": true, 601 | "license": "MIT", 602 | "optional": true, 603 | "os": [ 604 | "linux" 605 | ], 606 | "engines": { 607 | "node": ">=12" 608 | } 609 | }, 610 | "node_modules/@esbuild/linux-s390x": { 611 | "version": "0.21.5", 612 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", 613 | "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", 614 | "cpu": [ 615 | "s390x" 616 | ], 617 | "dev": true, 618 | "license": "MIT", 619 | "optional": true, 620 | "os": [ 621 | "linux" 622 | ], 623 | "engines": { 624 | "node": ">=12" 625 | } 626 | }, 627 | "node_modules/@esbuild/linux-x64": { 628 | "version": "0.21.5", 629 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", 630 | "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", 631 | "cpu": [ 632 | "x64" 633 | ], 634 | "dev": true, 635 | "license": "MIT", 636 | "optional": true, 637 | "os": [ 638 | "linux" 639 | ], 640 | "engines": { 641 | "node": ">=12" 642 | } 643 | }, 644 | "node_modules/@esbuild/netbsd-x64": { 645 | "version": "0.21.5", 646 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", 647 | "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", 648 | "cpu": [ 649 | "x64" 650 | ], 651 | "dev": true, 652 | "license": "MIT", 653 | "optional": true, 654 | "os": [ 655 | "netbsd" 656 | ], 657 | "engines": { 658 | "node": ">=12" 659 | } 660 | }, 661 | "node_modules/@esbuild/openbsd-x64": { 662 | "version": "0.21.5", 663 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", 664 | "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", 665 | "cpu": [ 666 | "x64" 667 | ], 668 | "dev": true, 669 | "license": "MIT", 670 | "optional": true, 671 | "os": [ 672 | "openbsd" 673 | ], 674 | "engines": { 675 | "node": ">=12" 676 | } 677 | }, 678 | "node_modules/@esbuild/sunos-x64": { 679 | "version": "0.21.5", 680 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", 681 | "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", 682 | "cpu": [ 683 | "x64" 684 | ], 685 | "dev": true, 686 | "license": "MIT", 687 | "optional": true, 688 | "os": [ 689 | "sunos" 690 | ], 691 | "engines": { 692 | "node": ">=12" 693 | } 694 | }, 695 | "node_modules/@esbuild/win32-arm64": { 696 | "version": "0.21.5", 697 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", 698 | "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", 699 | "cpu": [ 700 | "arm64" 701 | ], 702 | "dev": true, 703 | "license": "MIT", 704 | "optional": true, 705 | "os": [ 706 | "win32" 707 | ], 708 | "engines": { 709 | "node": ">=12" 710 | } 711 | }, 712 | "node_modules/@esbuild/win32-ia32": { 713 | "version": "0.21.5", 714 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", 715 | "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", 716 | "cpu": [ 717 | "ia32" 718 | ], 719 | "dev": true, 720 | "license": "MIT", 721 | "optional": true, 722 | "os": [ 723 | "win32" 724 | ], 725 | "engines": { 726 | "node": ">=12" 727 | } 728 | }, 729 | "node_modules/@esbuild/win32-x64": { 730 | "version": "0.21.5", 731 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", 732 | "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", 733 | "cpu": [ 734 | "x64" 735 | ], 736 | "dev": true, 737 | "license": "MIT", 738 | "optional": true, 739 | "os": [ 740 | "win32" 741 | ], 742 | "engines": { 743 | "node": ">=12" 744 | } 745 | }, 746 | "node_modules/@iconify-json/simple-icons": { 747 | "version": "1.2.14", 748 | "resolved": "https://registry.npmjs.org/@iconify-json/simple-icons/-/simple-icons-1.2.14.tgz", 749 | "integrity": "sha512-zLqb48pM1B5vegMBDouyv7FzrROV5HRIjDpl+/PKjY3P7AeSySaOeT6mzutF6hDZCJvn1J7qQ7lug3FOgegiiA==", 750 | "dev": true, 751 | "license": "CC0-1.0", 752 | "dependencies": { 753 | "@iconify/types": "*" 754 | } 755 | }, 756 | "node_modules/@iconify/types": { 757 | "version": "2.0.0", 758 | "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz", 759 | "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", 760 | "dev": true, 761 | "license": "MIT" 762 | }, 763 | "node_modules/@jridgewell/sourcemap-codec": { 764 | "version": "1.5.0", 765 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 766 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 767 | "dev": true, 768 | "license": "MIT" 769 | }, 770 | "node_modules/@rollup/rollup-android-arm-eabi": { 771 | "version": "4.28.0", 772 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.0.tgz", 773 | "integrity": "sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==", 774 | "cpu": [ 775 | "arm" 776 | ], 777 | "dev": true, 778 | "license": "MIT", 779 | "optional": true, 780 | "os": [ 781 | "android" 782 | ] 783 | }, 784 | "node_modules/@rollup/rollup-android-arm64": { 785 | "version": "4.28.0", 786 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.0.tgz", 787 | "integrity": "sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==", 788 | "cpu": [ 789 | "arm64" 790 | ], 791 | "dev": true, 792 | "license": "MIT", 793 | "optional": true, 794 | "os": [ 795 | "android" 796 | ] 797 | }, 798 | "node_modules/@rollup/rollup-darwin-arm64": { 799 | "version": "4.28.0", 800 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.0.tgz", 801 | "integrity": "sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==", 802 | "cpu": [ 803 | "arm64" 804 | ], 805 | "dev": true, 806 | "license": "MIT", 807 | "optional": true, 808 | "os": [ 809 | "darwin" 810 | ] 811 | }, 812 | "node_modules/@rollup/rollup-darwin-x64": { 813 | "version": "4.28.0", 814 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.0.tgz", 815 | "integrity": "sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==", 816 | "cpu": [ 817 | "x64" 818 | ], 819 | "dev": true, 820 | "license": "MIT", 821 | "optional": true, 822 | "os": [ 823 | "darwin" 824 | ] 825 | }, 826 | "node_modules/@rollup/rollup-freebsd-arm64": { 827 | "version": "4.28.0", 828 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.0.tgz", 829 | "integrity": "sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==", 830 | "cpu": [ 831 | "arm64" 832 | ], 833 | "dev": true, 834 | "license": "MIT", 835 | "optional": true, 836 | "os": [ 837 | "freebsd" 838 | ] 839 | }, 840 | "node_modules/@rollup/rollup-freebsd-x64": { 841 | "version": "4.28.0", 842 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.0.tgz", 843 | "integrity": "sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==", 844 | "cpu": [ 845 | "x64" 846 | ], 847 | "dev": true, 848 | "license": "MIT", 849 | "optional": true, 850 | "os": [ 851 | "freebsd" 852 | ] 853 | }, 854 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 855 | "version": "4.28.0", 856 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.0.tgz", 857 | "integrity": "sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==", 858 | "cpu": [ 859 | "arm" 860 | ], 861 | "dev": true, 862 | "license": "MIT", 863 | "optional": true, 864 | "os": [ 865 | "linux" 866 | ] 867 | }, 868 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 869 | "version": "4.28.0", 870 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.0.tgz", 871 | "integrity": "sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==", 872 | "cpu": [ 873 | "arm" 874 | ], 875 | "dev": true, 876 | "license": "MIT", 877 | "optional": true, 878 | "os": [ 879 | "linux" 880 | ] 881 | }, 882 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 883 | "version": "4.28.0", 884 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.0.tgz", 885 | "integrity": "sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==", 886 | "cpu": [ 887 | "arm64" 888 | ], 889 | "dev": true, 890 | "license": "MIT", 891 | "optional": true, 892 | "os": [ 893 | "linux" 894 | ] 895 | }, 896 | "node_modules/@rollup/rollup-linux-arm64-musl": { 897 | "version": "4.28.0", 898 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.0.tgz", 899 | "integrity": "sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==", 900 | "cpu": [ 901 | "arm64" 902 | ], 903 | "dev": true, 904 | "license": "MIT", 905 | "optional": true, 906 | "os": [ 907 | "linux" 908 | ] 909 | }, 910 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 911 | "version": "4.28.0", 912 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.0.tgz", 913 | "integrity": "sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==", 914 | "cpu": [ 915 | "ppc64" 916 | ], 917 | "dev": true, 918 | "license": "MIT", 919 | "optional": true, 920 | "os": [ 921 | "linux" 922 | ] 923 | }, 924 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 925 | "version": "4.28.0", 926 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.0.tgz", 927 | "integrity": "sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==", 928 | "cpu": [ 929 | "riscv64" 930 | ], 931 | "dev": true, 932 | "license": "MIT", 933 | "optional": true, 934 | "os": [ 935 | "linux" 936 | ] 937 | }, 938 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 939 | "version": "4.28.0", 940 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.0.tgz", 941 | "integrity": "sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==", 942 | "cpu": [ 943 | "s390x" 944 | ], 945 | "dev": true, 946 | "license": "MIT", 947 | "optional": true, 948 | "os": [ 949 | "linux" 950 | ] 951 | }, 952 | "node_modules/@rollup/rollup-linux-x64-gnu": { 953 | "version": "4.28.0", 954 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.0.tgz", 955 | "integrity": "sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==", 956 | "cpu": [ 957 | "x64" 958 | ], 959 | "dev": true, 960 | "license": "MIT", 961 | "optional": true, 962 | "os": [ 963 | "linux" 964 | ] 965 | }, 966 | "node_modules/@rollup/rollup-linux-x64-musl": { 967 | "version": "4.28.0", 968 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.0.tgz", 969 | "integrity": "sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==", 970 | "cpu": [ 971 | "x64" 972 | ], 973 | "dev": true, 974 | "license": "MIT", 975 | "optional": true, 976 | "os": [ 977 | "linux" 978 | ] 979 | }, 980 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 981 | "version": "4.28.0", 982 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.0.tgz", 983 | "integrity": "sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==", 984 | "cpu": [ 985 | "arm64" 986 | ], 987 | "dev": true, 988 | "license": "MIT", 989 | "optional": true, 990 | "os": [ 991 | "win32" 992 | ] 993 | }, 994 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 995 | "version": "4.28.0", 996 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.0.tgz", 997 | "integrity": "sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==", 998 | "cpu": [ 999 | "ia32" 1000 | ], 1001 | "dev": true, 1002 | "license": "MIT", 1003 | "optional": true, 1004 | "os": [ 1005 | "win32" 1006 | ] 1007 | }, 1008 | "node_modules/@rollup/rollup-win32-x64-msvc": { 1009 | "version": "4.28.0", 1010 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.0.tgz", 1011 | "integrity": "sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==", 1012 | "cpu": [ 1013 | "x64" 1014 | ], 1015 | "dev": true, 1016 | "license": "MIT", 1017 | "optional": true, 1018 | "os": [ 1019 | "win32" 1020 | ] 1021 | }, 1022 | "node_modules/@shikijs/core": { 1023 | "version": "1.24.0", 1024 | "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.24.0.tgz", 1025 | "integrity": "sha512-6pvdH0KoahMzr6689yh0QJ3rCgF4j1XsXRHNEeEN6M4xJTfQ6QPWrmHzIddotg+xPJUPEPzYzYCKzpYyhTI6Gw==", 1026 | "dev": true, 1027 | "license": "MIT", 1028 | "dependencies": { 1029 | "@shikijs/engine-javascript": "1.24.0", 1030 | "@shikijs/engine-oniguruma": "1.24.0", 1031 | "@shikijs/types": "1.24.0", 1032 | "@shikijs/vscode-textmate": "^9.3.0", 1033 | "@types/hast": "^3.0.4", 1034 | "hast-util-to-html": "^9.0.3" 1035 | } 1036 | }, 1037 | "node_modules/@shikijs/engine-javascript": { 1038 | "version": "1.24.0", 1039 | "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-1.24.0.tgz", 1040 | "integrity": "sha512-ZA6sCeSsF3Mnlxxr+4wGEJ9Tto4RHmfIS7ox8KIAbH0MTVUkw3roHPHZN+LlJMOHJJOVupe6tvuAzRpN8qK1vA==", 1041 | "dev": true, 1042 | "license": "MIT", 1043 | "dependencies": { 1044 | "@shikijs/types": "1.24.0", 1045 | "@shikijs/vscode-textmate": "^9.3.0", 1046 | "oniguruma-to-es": "0.7.0" 1047 | } 1048 | }, 1049 | "node_modules/@shikijs/engine-oniguruma": { 1050 | "version": "1.24.0", 1051 | "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.24.0.tgz", 1052 | "integrity": "sha512-Eua0qNOL73Y82lGA4GF5P+G2+VXX9XnuUxkiUuwcxQPH4wom+tE39kZpBFXfUuwNYxHSkrSxpB1p4kyRW0moSg==", 1053 | "dev": true, 1054 | "license": "MIT", 1055 | "dependencies": { 1056 | "@shikijs/types": "1.24.0", 1057 | "@shikijs/vscode-textmate": "^9.3.0" 1058 | } 1059 | }, 1060 | "node_modules/@shikijs/transformers": { 1061 | "version": "1.24.0", 1062 | "resolved": "https://registry.npmjs.org/@shikijs/transformers/-/transformers-1.24.0.tgz", 1063 | "integrity": "sha512-Qf/hby+PRPkoHncjYnJf5svK1aCsOUtQhuLzKPnmeXJtuUZCmbH0pTpdNtXe9tgln/RHlyRJnv7q46HHS1sO0Q==", 1064 | "dev": true, 1065 | "license": "MIT", 1066 | "dependencies": { 1067 | "shiki": "1.24.0" 1068 | } 1069 | }, 1070 | "node_modules/@shikijs/types": { 1071 | "version": "1.24.0", 1072 | "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.24.0.tgz", 1073 | "integrity": "sha512-aptbEuq1Pk88DMlCe+FzXNnBZ17LCiLIGWAeCWhoFDzia5Q5Krx3DgnULLiouSdd6+LUM39XwXGppqYE0Ghtug==", 1074 | "dev": true, 1075 | "license": "MIT", 1076 | "dependencies": { 1077 | "@shikijs/vscode-textmate": "^9.3.0", 1078 | "@types/hast": "^3.0.4" 1079 | } 1080 | }, 1081 | "node_modules/@shikijs/vscode-textmate": { 1082 | "version": "9.3.0", 1083 | "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.3.0.tgz", 1084 | "integrity": "sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==", 1085 | "dev": true, 1086 | "license": "MIT" 1087 | }, 1088 | "node_modules/@types/estree": { 1089 | "version": "1.0.6", 1090 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 1091 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 1092 | "dev": true, 1093 | "license": "MIT" 1094 | }, 1095 | "node_modules/@types/hast": { 1096 | "version": "3.0.4", 1097 | "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", 1098 | "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", 1099 | "dev": true, 1100 | "license": "MIT", 1101 | "dependencies": { 1102 | "@types/unist": "*" 1103 | } 1104 | }, 1105 | "node_modules/@types/linkify-it": { 1106 | "version": "5.0.0", 1107 | "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-5.0.0.tgz", 1108 | "integrity": "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==", 1109 | "dev": true, 1110 | "license": "MIT" 1111 | }, 1112 | "node_modules/@types/markdown-it": { 1113 | "version": "14.1.2", 1114 | "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.2.tgz", 1115 | "integrity": "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==", 1116 | "dev": true, 1117 | "license": "MIT", 1118 | "dependencies": { 1119 | "@types/linkify-it": "^5", 1120 | "@types/mdurl": "^2" 1121 | } 1122 | }, 1123 | "node_modules/@types/mdast": { 1124 | "version": "4.0.4", 1125 | "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", 1126 | "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", 1127 | "dev": true, 1128 | "license": "MIT", 1129 | "dependencies": { 1130 | "@types/unist": "*" 1131 | } 1132 | }, 1133 | "node_modules/@types/mdurl": { 1134 | "version": "2.0.0", 1135 | "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-2.0.0.tgz", 1136 | "integrity": "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==", 1137 | "dev": true, 1138 | "license": "MIT" 1139 | }, 1140 | "node_modules/@types/unist": { 1141 | "version": "3.0.3", 1142 | "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", 1143 | "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", 1144 | "dev": true, 1145 | "license": "MIT" 1146 | }, 1147 | "node_modules/@types/web-bluetooth": { 1148 | "version": "0.0.20", 1149 | "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz", 1150 | "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==", 1151 | "dev": true, 1152 | "license": "MIT" 1153 | }, 1154 | "node_modules/@ungap/structured-clone": { 1155 | "version": "1.2.0", 1156 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 1157 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 1158 | "dev": true, 1159 | "license": "ISC" 1160 | }, 1161 | "node_modules/@vitejs/plugin-vue": { 1162 | "version": "5.2.1", 1163 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.1.tgz", 1164 | "integrity": "sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==", 1165 | "dev": true, 1166 | "license": "MIT", 1167 | "engines": { 1168 | "node": "^18.0.0 || >=20.0.0" 1169 | }, 1170 | "peerDependencies": { 1171 | "vite": "^5.0.0 || ^6.0.0", 1172 | "vue": "^3.2.25" 1173 | } 1174 | }, 1175 | "node_modules/@vue/compiler-core": { 1176 | "version": "3.5.13", 1177 | "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.13.tgz", 1178 | "integrity": "sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==", 1179 | "dev": true, 1180 | "license": "MIT", 1181 | "dependencies": { 1182 | "@babel/parser": "^7.25.3", 1183 | "@vue/shared": "3.5.13", 1184 | "entities": "^4.5.0", 1185 | "estree-walker": "^2.0.2", 1186 | "source-map-js": "^1.2.0" 1187 | } 1188 | }, 1189 | "node_modules/@vue/compiler-dom": { 1190 | "version": "3.5.13", 1191 | "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz", 1192 | "integrity": "sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==", 1193 | "dev": true, 1194 | "license": "MIT", 1195 | "dependencies": { 1196 | "@vue/compiler-core": "3.5.13", 1197 | "@vue/shared": "3.5.13" 1198 | } 1199 | }, 1200 | "node_modules/@vue/compiler-sfc": { 1201 | "version": "3.5.13", 1202 | "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz", 1203 | "integrity": "sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==", 1204 | "dev": true, 1205 | "license": "MIT", 1206 | "dependencies": { 1207 | "@babel/parser": "^7.25.3", 1208 | "@vue/compiler-core": "3.5.13", 1209 | "@vue/compiler-dom": "3.5.13", 1210 | "@vue/compiler-ssr": "3.5.13", 1211 | "@vue/shared": "3.5.13", 1212 | "estree-walker": "^2.0.2", 1213 | "magic-string": "^0.30.11", 1214 | "postcss": "^8.4.48", 1215 | "source-map-js": "^1.2.0" 1216 | } 1217 | }, 1218 | "node_modules/@vue/compiler-ssr": { 1219 | "version": "3.5.13", 1220 | "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz", 1221 | "integrity": "sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==", 1222 | "dev": true, 1223 | "license": "MIT", 1224 | "dependencies": { 1225 | "@vue/compiler-dom": "3.5.13", 1226 | "@vue/shared": "3.5.13" 1227 | } 1228 | }, 1229 | "node_modules/@vue/devtools-api": { 1230 | "version": "7.6.7", 1231 | "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.6.7.tgz", 1232 | "integrity": "sha512-PV4I31WaV2rfA8RGauM+69uFEzWkqtP561RiLU2wK+Ce85u3zyKW3aoESlLCNzkc4y0JaJyskH6zAE3xWOP8+Q==", 1233 | "dev": true, 1234 | "license": "MIT", 1235 | "dependencies": { 1236 | "@vue/devtools-kit": "^7.6.7" 1237 | } 1238 | }, 1239 | "node_modules/@vue/devtools-kit": { 1240 | "version": "7.6.7", 1241 | "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.6.7.tgz", 1242 | "integrity": "sha512-V8/jrXY/swHgnblABG9U4QCbE60c6RuPasmv2d9FvVqc5d94t1vDiESuvRmdNJBdWz4/D3q6ffgyAfRVjwHYEw==", 1243 | "dev": true, 1244 | "license": "MIT", 1245 | "dependencies": { 1246 | "@vue/devtools-shared": "^7.6.7", 1247 | "birpc": "^0.2.19", 1248 | "hookable": "^5.5.3", 1249 | "mitt": "^3.0.1", 1250 | "perfect-debounce": "^1.0.0", 1251 | "speakingurl": "^14.0.1", 1252 | "superjson": "^2.2.1" 1253 | } 1254 | }, 1255 | "node_modules/@vue/devtools-shared": { 1256 | "version": "7.6.7", 1257 | "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.6.7.tgz", 1258 | "integrity": "sha512-QggO6SviAsolrePAXZ/sA1dSicSPt4TueZibCvydfhNDieL1lAuyMTgQDGst7TEvMGb4vgYv2I+1sDkO4jWNnw==", 1259 | "dev": true, 1260 | "license": "MIT", 1261 | "dependencies": { 1262 | "rfdc": "^1.4.1" 1263 | } 1264 | }, 1265 | "node_modules/@vue/reactivity": { 1266 | "version": "3.5.13", 1267 | "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.13.tgz", 1268 | "integrity": "sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==", 1269 | "dev": true, 1270 | "license": "MIT", 1271 | "dependencies": { 1272 | "@vue/shared": "3.5.13" 1273 | } 1274 | }, 1275 | "node_modules/@vue/runtime-core": { 1276 | "version": "3.5.13", 1277 | "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.13.tgz", 1278 | "integrity": "sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==", 1279 | "dev": true, 1280 | "license": "MIT", 1281 | "dependencies": { 1282 | "@vue/reactivity": "3.5.13", 1283 | "@vue/shared": "3.5.13" 1284 | } 1285 | }, 1286 | "node_modules/@vue/runtime-dom": { 1287 | "version": "3.5.13", 1288 | "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz", 1289 | "integrity": "sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==", 1290 | "dev": true, 1291 | "license": "MIT", 1292 | "dependencies": { 1293 | "@vue/reactivity": "3.5.13", 1294 | "@vue/runtime-core": "3.5.13", 1295 | "@vue/shared": "3.5.13", 1296 | "csstype": "^3.1.3" 1297 | } 1298 | }, 1299 | "node_modules/@vue/server-renderer": { 1300 | "version": "3.5.13", 1301 | "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.13.tgz", 1302 | "integrity": "sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==", 1303 | "dev": true, 1304 | "license": "MIT", 1305 | "dependencies": { 1306 | "@vue/compiler-ssr": "3.5.13", 1307 | "@vue/shared": "3.5.13" 1308 | }, 1309 | "peerDependencies": { 1310 | "vue": "3.5.13" 1311 | } 1312 | }, 1313 | "node_modules/@vue/shared": { 1314 | "version": "3.5.13", 1315 | "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.13.tgz", 1316 | "integrity": "sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==", 1317 | "dev": true, 1318 | "license": "MIT" 1319 | }, 1320 | "node_modules/@vueuse/core": { 1321 | "version": "11.3.0", 1322 | "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-11.3.0.tgz", 1323 | "integrity": "sha512-7OC4Rl1f9G8IT6rUfi9JrKiXy4bfmHhZ5x2Ceojy0jnd3mHNEvV4JaRygH362ror6/NZ+Nl+n13LPzGiPN8cKA==", 1324 | "dev": true, 1325 | "license": "MIT", 1326 | "dependencies": { 1327 | "@types/web-bluetooth": "^0.0.20", 1328 | "@vueuse/metadata": "11.3.0", 1329 | "@vueuse/shared": "11.3.0", 1330 | "vue-demi": ">=0.14.10" 1331 | }, 1332 | "funding": { 1333 | "url": "https://github.com/sponsors/antfu" 1334 | } 1335 | }, 1336 | "node_modules/@vueuse/core/node_modules/vue-demi": { 1337 | "version": "0.14.10", 1338 | "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", 1339 | "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", 1340 | "dev": true, 1341 | "hasInstallScript": true, 1342 | "license": "MIT", 1343 | "bin": { 1344 | "vue-demi-fix": "bin/vue-demi-fix.js", 1345 | "vue-demi-switch": "bin/vue-demi-switch.js" 1346 | }, 1347 | "engines": { 1348 | "node": ">=12" 1349 | }, 1350 | "funding": { 1351 | "url": "https://github.com/sponsors/antfu" 1352 | }, 1353 | "peerDependencies": { 1354 | "@vue/composition-api": "^1.0.0-rc.1", 1355 | "vue": "^3.0.0-0 || ^2.6.0" 1356 | }, 1357 | "peerDependenciesMeta": { 1358 | "@vue/composition-api": { 1359 | "optional": true 1360 | } 1361 | } 1362 | }, 1363 | "node_modules/@vueuse/integrations": { 1364 | "version": "11.3.0", 1365 | "resolved": "https://registry.npmjs.org/@vueuse/integrations/-/integrations-11.3.0.tgz", 1366 | "integrity": "sha512-5fzRl0apQWrDezmobchoiGTkGw238VWESxZHazfhP3RM7pDSiyXy18QbfYkILoYNTd23HPAfQTJpkUc5QbkwTw==", 1367 | "dev": true, 1368 | "license": "MIT", 1369 | "dependencies": { 1370 | "@vueuse/core": "11.3.0", 1371 | "@vueuse/shared": "11.3.0", 1372 | "vue-demi": ">=0.14.10" 1373 | }, 1374 | "funding": { 1375 | "url": "https://github.com/sponsors/antfu" 1376 | }, 1377 | "peerDependencies": { 1378 | "async-validator": "^4", 1379 | "axios": "^1", 1380 | "change-case": "^5", 1381 | "drauu": "^0.4", 1382 | "focus-trap": "^7", 1383 | "fuse.js": "^7", 1384 | "idb-keyval": "^6", 1385 | "jwt-decode": "^4", 1386 | "nprogress": "^0.2", 1387 | "qrcode": "^1.5", 1388 | "sortablejs": "^1", 1389 | "universal-cookie": "^7" 1390 | }, 1391 | "peerDependenciesMeta": { 1392 | "async-validator": { 1393 | "optional": true 1394 | }, 1395 | "axios": { 1396 | "optional": true 1397 | }, 1398 | "change-case": { 1399 | "optional": true 1400 | }, 1401 | "drauu": { 1402 | "optional": true 1403 | }, 1404 | "focus-trap": { 1405 | "optional": true 1406 | }, 1407 | "fuse.js": { 1408 | "optional": true 1409 | }, 1410 | "idb-keyval": { 1411 | "optional": true 1412 | }, 1413 | "jwt-decode": { 1414 | "optional": true 1415 | }, 1416 | "nprogress": { 1417 | "optional": true 1418 | }, 1419 | "qrcode": { 1420 | "optional": true 1421 | }, 1422 | "sortablejs": { 1423 | "optional": true 1424 | }, 1425 | "universal-cookie": { 1426 | "optional": true 1427 | } 1428 | } 1429 | }, 1430 | "node_modules/@vueuse/integrations/node_modules/vue-demi": { 1431 | "version": "0.14.10", 1432 | "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", 1433 | "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", 1434 | "dev": true, 1435 | "hasInstallScript": true, 1436 | "license": "MIT", 1437 | "bin": { 1438 | "vue-demi-fix": "bin/vue-demi-fix.js", 1439 | "vue-demi-switch": "bin/vue-demi-switch.js" 1440 | }, 1441 | "engines": { 1442 | "node": ">=12" 1443 | }, 1444 | "funding": { 1445 | "url": "https://github.com/sponsors/antfu" 1446 | }, 1447 | "peerDependencies": { 1448 | "@vue/composition-api": "^1.0.0-rc.1", 1449 | "vue": "^3.0.0-0 || ^2.6.0" 1450 | }, 1451 | "peerDependenciesMeta": { 1452 | "@vue/composition-api": { 1453 | "optional": true 1454 | } 1455 | } 1456 | }, 1457 | "node_modules/@vueuse/metadata": { 1458 | "version": "11.3.0", 1459 | "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-11.3.0.tgz", 1460 | "integrity": "sha512-pwDnDspTqtTo2HwfLw4Rp6yywuuBdYnPYDq+mO38ZYKGebCUQC/nVj/PXSiK9HX5otxLz8Fn7ECPbjiRz2CC3g==", 1461 | "dev": true, 1462 | "license": "MIT", 1463 | "funding": { 1464 | "url": "https://github.com/sponsors/antfu" 1465 | } 1466 | }, 1467 | "node_modules/@vueuse/shared": { 1468 | "version": "11.3.0", 1469 | "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-11.3.0.tgz", 1470 | "integrity": "sha512-P8gSSWQeucH5821ek2mn/ciCk+MS/zoRKqdQIM3bHq6p7GXDAJLmnRRKmF5F65sAVJIfzQlwR3aDzwCn10s8hA==", 1471 | "dev": true, 1472 | "license": "MIT", 1473 | "dependencies": { 1474 | "vue-demi": ">=0.14.10" 1475 | }, 1476 | "funding": { 1477 | "url": "https://github.com/sponsors/antfu" 1478 | } 1479 | }, 1480 | "node_modules/@vueuse/shared/node_modules/vue-demi": { 1481 | "version": "0.14.10", 1482 | "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", 1483 | "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", 1484 | "dev": true, 1485 | "hasInstallScript": true, 1486 | "license": "MIT", 1487 | "bin": { 1488 | "vue-demi-fix": "bin/vue-demi-fix.js", 1489 | "vue-demi-switch": "bin/vue-demi-switch.js" 1490 | }, 1491 | "engines": { 1492 | "node": ">=12" 1493 | }, 1494 | "funding": { 1495 | "url": "https://github.com/sponsors/antfu" 1496 | }, 1497 | "peerDependencies": { 1498 | "@vue/composition-api": "^1.0.0-rc.1", 1499 | "vue": "^3.0.0-0 || ^2.6.0" 1500 | }, 1501 | "peerDependenciesMeta": { 1502 | "@vue/composition-api": { 1503 | "optional": true 1504 | } 1505 | } 1506 | }, 1507 | "node_modules/algoliasearch": { 1508 | "version": "5.15.0", 1509 | "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.15.0.tgz", 1510 | "integrity": "sha512-Yf3Swz1s63hjvBVZ/9f2P1Uu48GjmjCN+Esxb6MAONMGtZB1fRX8/S1AhUTtsuTlcGovbYLxpHgc7wEzstDZBw==", 1511 | "dev": true, 1512 | "license": "MIT", 1513 | "dependencies": { 1514 | "@algolia/client-abtesting": "5.15.0", 1515 | "@algolia/client-analytics": "5.15.0", 1516 | "@algolia/client-common": "5.15.0", 1517 | "@algolia/client-insights": "5.15.0", 1518 | "@algolia/client-personalization": "5.15.0", 1519 | "@algolia/client-query-suggestions": "5.15.0", 1520 | "@algolia/client-search": "5.15.0", 1521 | "@algolia/ingestion": "1.15.0", 1522 | "@algolia/monitoring": "1.15.0", 1523 | "@algolia/recommend": "5.15.0", 1524 | "@algolia/requester-browser-xhr": "5.15.0", 1525 | "@algolia/requester-fetch": "5.15.0", 1526 | "@algolia/requester-node-http": "5.15.0" 1527 | }, 1528 | "engines": { 1529 | "node": ">= 14.0.0" 1530 | } 1531 | }, 1532 | "node_modules/birpc": { 1533 | "version": "0.2.19", 1534 | "resolved": "https://registry.npmjs.org/birpc/-/birpc-0.2.19.tgz", 1535 | "integrity": "sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==", 1536 | "dev": true, 1537 | "license": "MIT", 1538 | "funding": { 1539 | "url": "https://github.com/sponsors/antfu" 1540 | } 1541 | }, 1542 | "node_modules/ccount": { 1543 | "version": "2.0.1", 1544 | "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", 1545 | "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", 1546 | "dev": true, 1547 | "license": "MIT", 1548 | "funding": { 1549 | "type": "github", 1550 | "url": "https://github.com/sponsors/wooorm" 1551 | } 1552 | }, 1553 | "node_modules/character-entities-html4": { 1554 | "version": "2.1.0", 1555 | "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", 1556 | "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", 1557 | "dev": true, 1558 | "license": "MIT", 1559 | "funding": { 1560 | "type": "github", 1561 | "url": "https://github.com/sponsors/wooorm" 1562 | } 1563 | }, 1564 | "node_modules/character-entities-legacy": { 1565 | "version": "3.0.0", 1566 | "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", 1567 | "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", 1568 | "dev": true, 1569 | "license": "MIT", 1570 | "funding": { 1571 | "type": "github", 1572 | "url": "https://github.com/sponsors/wooorm" 1573 | } 1574 | }, 1575 | "node_modules/comma-separated-tokens": { 1576 | "version": "2.0.3", 1577 | "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", 1578 | "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", 1579 | "dev": true, 1580 | "license": "MIT", 1581 | "funding": { 1582 | "type": "github", 1583 | "url": "https://github.com/sponsors/wooorm" 1584 | } 1585 | }, 1586 | "node_modules/copy-anything": { 1587 | "version": "3.0.5", 1588 | "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.5.tgz", 1589 | "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==", 1590 | "dev": true, 1591 | "license": "MIT", 1592 | "dependencies": { 1593 | "is-what": "^4.1.8" 1594 | }, 1595 | "engines": { 1596 | "node": ">=12.13" 1597 | }, 1598 | "funding": { 1599 | "url": "https://github.com/sponsors/mesqueeb" 1600 | } 1601 | }, 1602 | "node_modules/csstype": { 1603 | "version": "3.1.3", 1604 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", 1605 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", 1606 | "dev": true, 1607 | "license": "MIT" 1608 | }, 1609 | "node_modules/dequal": { 1610 | "version": "2.0.3", 1611 | "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", 1612 | "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", 1613 | "dev": true, 1614 | "license": "MIT", 1615 | "engines": { 1616 | "node": ">=6" 1617 | } 1618 | }, 1619 | "node_modules/devlop": { 1620 | "version": "1.1.0", 1621 | "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", 1622 | "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", 1623 | "dev": true, 1624 | "license": "MIT", 1625 | "dependencies": { 1626 | "dequal": "^2.0.0" 1627 | }, 1628 | "funding": { 1629 | "type": "github", 1630 | "url": "https://github.com/sponsors/wooorm" 1631 | } 1632 | }, 1633 | "node_modules/emoji-regex-xs": { 1634 | "version": "1.0.0", 1635 | "resolved": "https://registry.npmjs.org/emoji-regex-xs/-/emoji-regex-xs-1.0.0.tgz", 1636 | "integrity": "sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==", 1637 | "dev": true, 1638 | "license": "MIT" 1639 | }, 1640 | "node_modules/entities": { 1641 | "version": "4.5.0", 1642 | "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", 1643 | "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", 1644 | "dev": true, 1645 | "license": "BSD-2-Clause", 1646 | "engines": { 1647 | "node": ">=0.12" 1648 | }, 1649 | "funding": { 1650 | "url": "https://github.com/fb55/entities?sponsor=1" 1651 | } 1652 | }, 1653 | "node_modules/esbuild": { 1654 | "version": "0.21.5", 1655 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", 1656 | "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", 1657 | "dev": true, 1658 | "hasInstallScript": true, 1659 | "license": "MIT", 1660 | "bin": { 1661 | "esbuild": "bin/esbuild" 1662 | }, 1663 | "engines": { 1664 | "node": ">=12" 1665 | }, 1666 | "optionalDependencies": { 1667 | "@esbuild/aix-ppc64": "0.21.5", 1668 | "@esbuild/android-arm": "0.21.5", 1669 | "@esbuild/android-arm64": "0.21.5", 1670 | "@esbuild/android-x64": "0.21.5", 1671 | "@esbuild/darwin-arm64": "0.21.5", 1672 | "@esbuild/darwin-x64": "0.21.5", 1673 | "@esbuild/freebsd-arm64": "0.21.5", 1674 | "@esbuild/freebsd-x64": "0.21.5", 1675 | "@esbuild/linux-arm": "0.21.5", 1676 | "@esbuild/linux-arm64": "0.21.5", 1677 | "@esbuild/linux-ia32": "0.21.5", 1678 | "@esbuild/linux-loong64": "0.21.5", 1679 | "@esbuild/linux-mips64el": "0.21.5", 1680 | "@esbuild/linux-ppc64": "0.21.5", 1681 | "@esbuild/linux-riscv64": "0.21.5", 1682 | "@esbuild/linux-s390x": "0.21.5", 1683 | "@esbuild/linux-x64": "0.21.5", 1684 | "@esbuild/netbsd-x64": "0.21.5", 1685 | "@esbuild/openbsd-x64": "0.21.5", 1686 | "@esbuild/sunos-x64": "0.21.5", 1687 | "@esbuild/win32-arm64": "0.21.5", 1688 | "@esbuild/win32-ia32": "0.21.5", 1689 | "@esbuild/win32-x64": "0.21.5" 1690 | } 1691 | }, 1692 | "node_modules/estree-walker": { 1693 | "version": "2.0.2", 1694 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 1695 | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 1696 | "dev": true, 1697 | "license": "MIT" 1698 | }, 1699 | "node_modules/focus-trap": { 1700 | "version": "7.6.2", 1701 | "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.6.2.tgz", 1702 | "integrity": "sha512-9FhUxK1hVju2+AiQIDJ5Dd//9R2n2RAfJ0qfhF4IHGHgcoEUTMpbTeG/zbEuwaiYXfuAH6XE0/aCyxDdRM+W5w==", 1703 | "dev": true, 1704 | "license": "MIT", 1705 | "dependencies": { 1706 | "tabbable": "^6.2.0" 1707 | } 1708 | }, 1709 | "node_modules/fsevents": { 1710 | "version": "2.3.3", 1711 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1712 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1713 | "dev": true, 1714 | "hasInstallScript": true, 1715 | "license": "MIT", 1716 | "optional": true, 1717 | "os": [ 1718 | "darwin" 1719 | ], 1720 | "engines": { 1721 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1722 | } 1723 | }, 1724 | "node_modules/hast-util-to-html": { 1725 | "version": "9.0.3", 1726 | "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.3.tgz", 1727 | "integrity": "sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==", 1728 | "dev": true, 1729 | "license": "MIT", 1730 | "dependencies": { 1731 | "@types/hast": "^3.0.0", 1732 | "@types/unist": "^3.0.0", 1733 | "ccount": "^2.0.0", 1734 | "comma-separated-tokens": "^2.0.0", 1735 | "hast-util-whitespace": "^3.0.0", 1736 | "html-void-elements": "^3.0.0", 1737 | "mdast-util-to-hast": "^13.0.0", 1738 | "property-information": "^6.0.0", 1739 | "space-separated-tokens": "^2.0.0", 1740 | "stringify-entities": "^4.0.0", 1741 | "zwitch": "^2.0.4" 1742 | }, 1743 | "funding": { 1744 | "type": "opencollective", 1745 | "url": "https://opencollective.com/unified" 1746 | } 1747 | }, 1748 | "node_modules/hast-util-whitespace": { 1749 | "version": "3.0.0", 1750 | "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", 1751 | "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", 1752 | "dev": true, 1753 | "license": "MIT", 1754 | "dependencies": { 1755 | "@types/hast": "^3.0.0" 1756 | }, 1757 | "funding": { 1758 | "type": "opencollective", 1759 | "url": "https://opencollective.com/unified" 1760 | } 1761 | }, 1762 | "node_modules/hookable": { 1763 | "version": "5.5.3", 1764 | "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz", 1765 | "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", 1766 | "dev": true, 1767 | "license": "MIT" 1768 | }, 1769 | "node_modules/html-void-elements": { 1770 | "version": "3.0.0", 1771 | "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", 1772 | "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", 1773 | "dev": true, 1774 | "license": "MIT", 1775 | "funding": { 1776 | "type": "github", 1777 | "url": "https://github.com/sponsors/wooorm" 1778 | } 1779 | }, 1780 | "node_modules/is-what": { 1781 | "version": "4.1.16", 1782 | "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.16.tgz", 1783 | "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==", 1784 | "dev": true, 1785 | "license": "MIT", 1786 | "engines": { 1787 | "node": ">=12.13" 1788 | }, 1789 | "funding": { 1790 | "url": "https://github.com/sponsors/mesqueeb" 1791 | } 1792 | }, 1793 | "node_modules/magic-string": { 1794 | "version": "0.30.14", 1795 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.14.tgz", 1796 | "integrity": "sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==", 1797 | "dev": true, 1798 | "license": "MIT", 1799 | "dependencies": { 1800 | "@jridgewell/sourcemap-codec": "^1.5.0" 1801 | } 1802 | }, 1803 | "node_modules/mark.js": { 1804 | "version": "8.11.1", 1805 | "resolved": "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz", 1806 | "integrity": "sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==", 1807 | "dev": true, 1808 | "license": "MIT" 1809 | }, 1810 | "node_modules/mdast-util-to-hast": { 1811 | "version": "13.2.0", 1812 | "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz", 1813 | "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==", 1814 | "dev": true, 1815 | "license": "MIT", 1816 | "dependencies": { 1817 | "@types/hast": "^3.0.0", 1818 | "@types/mdast": "^4.0.0", 1819 | "@ungap/structured-clone": "^1.0.0", 1820 | "devlop": "^1.0.0", 1821 | "micromark-util-sanitize-uri": "^2.0.0", 1822 | "trim-lines": "^3.0.0", 1823 | "unist-util-position": "^5.0.0", 1824 | "unist-util-visit": "^5.0.0", 1825 | "vfile": "^6.0.0" 1826 | }, 1827 | "funding": { 1828 | "type": "opencollective", 1829 | "url": "https://opencollective.com/unified" 1830 | } 1831 | }, 1832 | "node_modules/micromark-util-character": { 1833 | "version": "2.1.1", 1834 | "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", 1835 | "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", 1836 | "dev": true, 1837 | "funding": [ 1838 | { 1839 | "type": "GitHub Sponsors", 1840 | "url": "https://github.com/sponsors/unifiedjs" 1841 | }, 1842 | { 1843 | "type": "OpenCollective", 1844 | "url": "https://opencollective.com/unified" 1845 | } 1846 | ], 1847 | "license": "MIT", 1848 | "dependencies": { 1849 | "micromark-util-symbol": "^2.0.0", 1850 | "micromark-util-types": "^2.0.0" 1851 | } 1852 | }, 1853 | "node_modules/micromark-util-encode": { 1854 | "version": "2.0.1", 1855 | "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", 1856 | "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", 1857 | "dev": true, 1858 | "funding": [ 1859 | { 1860 | "type": "GitHub Sponsors", 1861 | "url": "https://github.com/sponsors/unifiedjs" 1862 | }, 1863 | { 1864 | "type": "OpenCollective", 1865 | "url": "https://opencollective.com/unified" 1866 | } 1867 | ], 1868 | "license": "MIT" 1869 | }, 1870 | "node_modules/micromark-util-sanitize-uri": { 1871 | "version": "2.0.1", 1872 | "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", 1873 | "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", 1874 | "dev": true, 1875 | "funding": [ 1876 | { 1877 | "type": "GitHub Sponsors", 1878 | "url": "https://github.com/sponsors/unifiedjs" 1879 | }, 1880 | { 1881 | "type": "OpenCollective", 1882 | "url": "https://opencollective.com/unified" 1883 | } 1884 | ], 1885 | "license": "MIT", 1886 | "dependencies": { 1887 | "micromark-util-character": "^2.0.0", 1888 | "micromark-util-encode": "^2.0.0", 1889 | "micromark-util-symbol": "^2.0.0" 1890 | } 1891 | }, 1892 | "node_modules/micromark-util-symbol": { 1893 | "version": "2.0.1", 1894 | "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", 1895 | "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", 1896 | "dev": true, 1897 | "funding": [ 1898 | { 1899 | "type": "GitHub Sponsors", 1900 | "url": "https://github.com/sponsors/unifiedjs" 1901 | }, 1902 | { 1903 | "type": "OpenCollective", 1904 | "url": "https://opencollective.com/unified" 1905 | } 1906 | ], 1907 | "license": "MIT" 1908 | }, 1909 | "node_modules/micromark-util-types": { 1910 | "version": "2.0.1", 1911 | "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.1.tgz", 1912 | "integrity": "sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==", 1913 | "dev": true, 1914 | "funding": [ 1915 | { 1916 | "type": "GitHub Sponsors", 1917 | "url": "https://github.com/sponsors/unifiedjs" 1918 | }, 1919 | { 1920 | "type": "OpenCollective", 1921 | "url": "https://opencollective.com/unified" 1922 | } 1923 | ], 1924 | "license": "MIT" 1925 | }, 1926 | "node_modules/minisearch": { 1927 | "version": "7.1.1", 1928 | "resolved": "https://registry.npmjs.org/minisearch/-/minisearch-7.1.1.tgz", 1929 | "integrity": "sha512-b3YZEYCEH4EdCAtYP7OlDyx7FdPwNzuNwLQ34SfJpM9dlbBZzeXndGavTrC+VCiRWomL21SWfMc6SCKO/U2ZNw==", 1930 | "dev": true, 1931 | "license": "MIT" 1932 | }, 1933 | "node_modules/mitt": { 1934 | "version": "3.0.1", 1935 | "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", 1936 | "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", 1937 | "dev": true, 1938 | "license": "MIT" 1939 | }, 1940 | "node_modules/nanoid": { 1941 | "version": "3.3.8", 1942 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", 1943 | "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", 1944 | "dev": true, 1945 | "funding": [ 1946 | { 1947 | "type": "github", 1948 | "url": "https://github.com/sponsors/ai" 1949 | } 1950 | ], 1951 | "license": "MIT", 1952 | "bin": { 1953 | "nanoid": "bin/nanoid.cjs" 1954 | }, 1955 | "engines": { 1956 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 1957 | } 1958 | }, 1959 | "node_modules/oniguruma-to-es": { 1960 | "version": "0.7.0", 1961 | "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-0.7.0.tgz", 1962 | "integrity": "sha512-HRaRh09cE0gRS3+wi2zxekB+I5L8C/gN60S+vb11eADHUaB/q4u8wGGOX3GvwvitG8ixaeycZfeoyruKQzUgNg==", 1963 | "dev": true, 1964 | "license": "MIT", 1965 | "dependencies": { 1966 | "emoji-regex-xs": "^1.0.0", 1967 | "regex": "^5.0.2", 1968 | "regex-recursion": "^4.3.0" 1969 | } 1970 | }, 1971 | "node_modules/perfect-debounce": { 1972 | "version": "1.0.0", 1973 | "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", 1974 | "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", 1975 | "dev": true, 1976 | "license": "MIT" 1977 | }, 1978 | "node_modules/picocolors": { 1979 | "version": "1.1.1", 1980 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 1981 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 1982 | "dev": true, 1983 | "license": "ISC" 1984 | }, 1985 | "node_modules/postcss": { 1986 | "version": "8.4.49", 1987 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", 1988 | "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", 1989 | "dev": true, 1990 | "funding": [ 1991 | { 1992 | "type": "opencollective", 1993 | "url": "https://opencollective.com/postcss/" 1994 | }, 1995 | { 1996 | "type": "tidelift", 1997 | "url": "https://tidelift.com/funding/github/npm/postcss" 1998 | }, 1999 | { 2000 | "type": "github", 2001 | "url": "https://github.com/sponsors/ai" 2002 | } 2003 | ], 2004 | "license": "MIT", 2005 | "dependencies": { 2006 | "nanoid": "^3.3.7", 2007 | "picocolors": "^1.1.1", 2008 | "source-map-js": "^1.2.1" 2009 | }, 2010 | "engines": { 2011 | "node": "^10 || ^12 || >=14" 2012 | } 2013 | }, 2014 | "node_modules/preact": { 2015 | "version": "10.25.1", 2016 | "resolved": "https://registry.npmjs.org/preact/-/preact-10.25.1.tgz", 2017 | "integrity": "sha512-frxeZV2vhQSohQwJ7FvlqC40ze89+8friponWUFeVEkaCfhC6Eu4V0iND5C9CXz8JLndV07QRDeXzH1+Anz5Og==", 2018 | "dev": true, 2019 | "license": "MIT", 2020 | "funding": { 2021 | "type": "opencollective", 2022 | "url": "https://opencollective.com/preact" 2023 | } 2024 | }, 2025 | "node_modules/property-information": { 2026 | "version": "6.5.0", 2027 | "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", 2028 | "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", 2029 | "dev": true, 2030 | "license": "MIT", 2031 | "funding": { 2032 | "type": "github", 2033 | "url": "https://github.com/sponsors/wooorm" 2034 | } 2035 | }, 2036 | "node_modules/regex": { 2037 | "version": "5.0.2", 2038 | "resolved": "https://registry.npmjs.org/regex/-/regex-5.0.2.tgz", 2039 | "integrity": "sha512-/pczGbKIQgfTMRV0XjABvc5RzLqQmwqxLHdQao2RTXPk+pmTXB2P0IaUHYdYyk412YLwUIkaeMd5T+RzVgTqnQ==", 2040 | "dev": true, 2041 | "license": "MIT", 2042 | "dependencies": { 2043 | "regex-utilities": "^2.3.0" 2044 | } 2045 | }, 2046 | "node_modules/regex-recursion": { 2047 | "version": "4.3.0", 2048 | "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-4.3.0.tgz", 2049 | "integrity": "sha512-5LcLnizwjcQ2ALfOj95MjcatxyqF5RPySx9yT+PaXu3Gox2vyAtLDjHB8NTJLtMGkvyau6nI3CfpwFCjPUIs/A==", 2050 | "dev": true, 2051 | "license": "MIT", 2052 | "dependencies": { 2053 | "regex-utilities": "^2.3.0" 2054 | } 2055 | }, 2056 | "node_modules/regex-utilities": { 2057 | "version": "2.3.0", 2058 | "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz", 2059 | "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", 2060 | "dev": true, 2061 | "license": "MIT" 2062 | }, 2063 | "node_modules/rfdc": { 2064 | "version": "1.4.1", 2065 | "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", 2066 | "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", 2067 | "dev": true, 2068 | "license": "MIT" 2069 | }, 2070 | "node_modules/rollup": { 2071 | "version": "4.28.0", 2072 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.28.0.tgz", 2073 | "integrity": "sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==", 2074 | "dev": true, 2075 | "license": "MIT", 2076 | "dependencies": { 2077 | "@types/estree": "1.0.6" 2078 | }, 2079 | "bin": { 2080 | "rollup": "dist/bin/rollup" 2081 | }, 2082 | "engines": { 2083 | "node": ">=18.0.0", 2084 | "npm": ">=8.0.0" 2085 | }, 2086 | "optionalDependencies": { 2087 | "@rollup/rollup-android-arm-eabi": "4.28.0", 2088 | "@rollup/rollup-android-arm64": "4.28.0", 2089 | "@rollup/rollup-darwin-arm64": "4.28.0", 2090 | "@rollup/rollup-darwin-x64": "4.28.0", 2091 | "@rollup/rollup-freebsd-arm64": "4.28.0", 2092 | "@rollup/rollup-freebsd-x64": "4.28.0", 2093 | "@rollup/rollup-linux-arm-gnueabihf": "4.28.0", 2094 | "@rollup/rollup-linux-arm-musleabihf": "4.28.0", 2095 | "@rollup/rollup-linux-arm64-gnu": "4.28.0", 2096 | "@rollup/rollup-linux-arm64-musl": "4.28.0", 2097 | "@rollup/rollup-linux-powerpc64le-gnu": "4.28.0", 2098 | "@rollup/rollup-linux-riscv64-gnu": "4.28.0", 2099 | "@rollup/rollup-linux-s390x-gnu": "4.28.0", 2100 | "@rollup/rollup-linux-x64-gnu": "4.28.0", 2101 | "@rollup/rollup-linux-x64-musl": "4.28.0", 2102 | "@rollup/rollup-win32-arm64-msvc": "4.28.0", 2103 | "@rollup/rollup-win32-ia32-msvc": "4.28.0", 2104 | "@rollup/rollup-win32-x64-msvc": "4.28.0", 2105 | "fsevents": "~2.3.2" 2106 | } 2107 | }, 2108 | "node_modules/search-insights": { 2109 | "version": "2.17.3", 2110 | "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.17.3.tgz", 2111 | "integrity": "sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==", 2112 | "dev": true, 2113 | "license": "MIT", 2114 | "peer": true 2115 | }, 2116 | "node_modules/shiki": { 2117 | "version": "1.24.0", 2118 | "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.24.0.tgz", 2119 | "integrity": "sha512-qIneep7QRwxRd5oiHb8jaRzH15V/S8F3saCXOdjwRLgozZJr5x2yeBhQtqkO3FSzQDwYEFAYuifg4oHjpDghrg==", 2120 | "dev": true, 2121 | "license": "MIT", 2122 | "dependencies": { 2123 | "@shikijs/core": "1.24.0", 2124 | "@shikijs/engine-javascript": "1.24.0", 2125 | "@shikijs/engine-oniguruma": "1.24.0", 2126 | "@shikijs/types": "1.24.0", 2127 | "@shikijs/vscode-textmate": "^9.3.0", 2128 | "@types/hast": "^3.0.4" 2129 | } 2130 | }, 2131 | "node_modules/source-map-js": { 2132 | "version": "1.2.1", 2133 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 2134 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 2135 | "dev": true, 2136 | "license": "BSD-3-Clause", 2137 | "engines": { 2138 | "node": ">=0.10.0" 2139 | } 2140 | }, 2141 | "node_modules/space-separated-tokens": { 2142 | "version": "2.0.2", 2143 | "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", 2144 | "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", 2145 | "dev": true, 2146 | "license": "MIT", 2147 | "funding": { 2148 | "type": "github", 2149 | "url": "https://github.com/sponsors/wooorm" 2150 | } 2151 | }, 2152 | "node_modules/speakingurl": { 2153 | "version": "14.0.1", 2154 | "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz", 2155 | "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", 2156 | "dev": true, 2157 | "license": "BSD-3-Clause", 2158 | "engines": { 2159 | "node": ">=0.10.0" 2160 | } 2161 | }, 2162 | "node_modules/stringify-entities": { 2163 | "version": "4.0.4", 2164 | "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", 2165 | "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", 2166 | "dev": true, 2167 | "license": "MIT", 2168 | "dependencies": { 2169 | "character-entities-html4": "^2.0.0", 2170 | "character-entities-legacy": "^3.0.0" 2171 | }, 2172 | "funding": { 2173 | "type": "github", 2174 | "url": "https://github.com/sponsors/wooorm" 2175 | } 2176 | }, 2177 | "node_modules/superjson": { 2178 | "version": "2.2.1", 2179 | "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.1.tgz", 2180 | "integrity": "sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==", 2181 | "dev": true, 2182 | "license": "MIT", 2183 | "dependencies": { 2184 | "copy-anything": "^3.0.2" 2185 | }, 2186 | "engines": { 2187 | "node": ">=16" 2188 | } 2189 | }, 2190 | "node_modules/tabbable": { 2191 | "version": "6.2.0", 2192 | "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", 2193 | "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==", 2194 | "dev": true, 2195 | "license": "MIT" 2196 | }, 2197 | "node_modules/trim-lines": { 2198 | "version": "3.0.1", 2199 | "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", 2200 | "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", 2201 | "dev": true, 2202 | "license": "MIT", 2203 | "funding": { 2204 | "type": "github", 2205 | "url": "https://github.com/sponsors/wooorm" 2206 | } 2207 | }, 2208 | "node_modules/unist-util-is": { 2209 | "version": "6.0.0", 2210 | "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", 2211 | "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", 2212 | "dev": true, 2213 | "license": "MIT", 2214 | "dependencies": { 2215 | "@types/unist": "^3.0.0" 2216 | }, 2217 | "funding": { 2218 | "type": "opencollective", 2219 | "url": "https://opencollective.com/unified" 2220 | } 2221 | }, 2222 | "node_modules/unist-util-position": { 2223 | "version": "5.0.0", 2224 | "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", 2225 | "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", 2226 | "dev": true, 2227 | "license": "MIT", 2228 | "dependencies": { 2229 | "@types/unist": "^3.0.0" 2230 | }, 2231 | "funding": { 2232 | "type": "opencollective", 2233 | "url": "https://opencollective.com/unified" 2234 | } 2235 | }, 2236 | "node_modules/unist-util-stringify-position": { 2237 | "version": "4.0.0", 2238 | "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", 2239 | "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", 2240 | "dev": true, 2241 | "license": "MIT", 2242 | "dependencies": { 2243 | "@types/unist": "^3.0.0" 2244 | }, 2245 | "funding": { 2246 | "type": "opencollective", 2247 | "url": "https://opencollective.com/unified" 2248 | } 2249 | }, 2250 | "node_modules/unist-util-visit": { 2251 | "version": "5.0.0", 2252 | "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", 2253 | "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", 2254 | "dev": true, 2255 | "license": "MIT", 2256 | "dependencies": { 2257 | "@types/unist": "^3.0.0", 2258 | "unist-util-is": "^6.0.0", 2259 | "unist-util-visit-parents": "^6.0.0" 2260 | }, 2261 | "funding": { 2262 | "type": "opencollective", 2263 | "url": "https://opencollective.com/unified" 2264 | } 2265 | }, 2266 | "node_modules/unist-util-visit-parents": { 2267 | "version": "6.0.1", 2268 | "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", 2269 | "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", 2270 | "dev": true, 2271 | "license": "MIT", 2272 | "dependencies": { 2273 | "@types/unist": "^3.0.0", 2274 | "unist-util-is": "^6.0.0" 2275 | }, 2276 | "funding": { 2277 | "type": "opencollective", 2278 | "url": "https://opencollective.com/unified" 2279 | } 2280 | }, 2281 | "node_modules/vfile": { 2282 | "version": "6.0.3", 2283 | "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", 2284 | "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", 2285 | "dev": true, 2286 | "license": "MIT", 2287 | "dependencies": { 2288 | "@types/unist": "^3.0.0", 2289 | "vfile-message": "^4.0.0" 2290 | }, 2291 | "funding": { 2292 | "type": "opencollective", 2293 | "url": "https://opencollective.com/unified" 2294 | } 2295 | }, 2296 | "node_modules/vfile-message": { 2297 | "version": "4.0.2", 2298 | "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz", 2299 | "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", 2300 | "dev": true, 2301 | "license": "MIT", 2302 | "dependencies": { 2303 | "@types/unist": "^3.0.0", 2304 | "unist-util-stringify-position": "^4.0.0" 2305 | }, 2306 | "funding": { 2307 | "type": "opencollective", 2308 | "url": "https://opencollective.com/unified" 2309 | } 2310 | }, 2311 | "node_modules/vite": { 2312 | "version": "5.4.11", 2313 | "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.11.tgz", 2314 | "integrity": "sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==", 2315 | "dev": true, 2316 | "license": "MIT", 2317 | "dependencies": { 2318 | "esbuild": "^0.21.3", 2319 | "postcss": "^8.4.43", 2320 | "rollup": "^4.20.0" 2321 | }, 2322 | "bin": { 2323 | "vite": "bin/vite.js" 2324 | }, 2325 | "engines": { 2326 | "node": "^18.0.0 || >=20.0.0" 2327 | }, 2328 | "funding": { 2329 | "url": "https://github.com/vitejs/vite?sponsor=1" 2330 | }, 2331 | "optionalDependencies": { 2332 | "fsevents": "~2.3.3" 2333 | }, 2334 | "peerDependencies": { 2335 | "@types/node": "^18.0.0 || >=20.0.0", 2336 | "less": "*", 2337 | "lightningcss": "^1.21.0", 2338 | "sass": "*", 2339 | "sass-embedded": "*", 2340 | "stylus": "*", 2341 | "sugarss": "*", 2342 | "terser": "^5.4.0" 2343 | }, 2344 | "peerDependenciesMeta": { 2345 | "@types/node": { 2346 | "optional": true 2347 | }, 2348 | "less": { 2349 | "optional": true 2350 | }, 2351 | "lightningcss": { 2352 | "optional": true 2353 | }, 2354 | "sass": { 2355 | "optional": true 2356 | }, 2357 | "sass-embedded": { 2358 | "optional": true 2359 | }, 2360 | "stylus": { 2361 | "optional": true 2362 | }, 2363 | "sugarss": { 2364 | "optional": true 2365 | }, 2366 | "terser": { 2367 | "optional": true 2368 | } 2369 | } 2370 | }, 2371 | "node_modules/vitepress": { 2372 | "version": "1.5.0", 2373 | "resolved": "https://registry.npmjs.org/vitepress/-/vitepress-1.5.0.tgz", 2374 | "integrity": "sha512-q4Q/G2zjvynvizdB3/bupdYkCJe2umSAMv9Ju4d92E6/NXJ59z70xB0q5p/4lpRyAwflDsbwy1mLV9Q5+nlB+g==", 2375 | "dev": true, 2376 | "license": "MIT", 2377 | "dependencies": { 2378 | "@docsearch/css": "^3.6.2", 2379 | "@docsearch/js": "^3.6.2", 2380 | "@iconify-json/simple-icons": "^1.2.10", 2381 | "@shikijs/core": "^1.22.2", 2382 | "@shikijs/transformers": "^1.22.2", 2383 | "@shikijs/types": "^1.22.2", 2384 | "@types/markdown-it": "^14.1.2", 2385 | "@vitejs/plugin-vue": "^5.1.4", 2386 | "@vue/devtools-api": "^7.5.4", 2387 | "@vue/shared": "^3.5.12", 2388 | "@vueuse/core": "^11.1.0", 2389 | "@vueuse/integrations": "^11.1.0", 2390 | "focus-trap": "^7.6.0", 2391 | "mark.js": "8.11.1", 2392 | "minisearch": "^7.1.0", 2393 | "shiki": "^1.22.2", 2394 | "vite": "^5.4.10", 2395 | "vue": "^3.5.12" 2396 | }, 2397 | "bin": { 2398 | "vitepress": "bin/vitepress.js" 2399 | }, 2400 | "peerDependencies": { 2401 | "markdown-it-mathjax3": "^4", 2402 | "postcss": "^8" 2403 | }, 2404 | "peerDependenciesMeta": { 2405 | "markdown-it-mathjax3": { 2406 | "optional": true 2407 | }, 2408 | "postcss": { 2409 | "optional": true 2410 | } 2411 | } 2412 | }, 2413 | "node_modules/vue": { 2414 | "version": "3.5.13", 2415 | "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.13.tgz", 2416 | "integrity": "sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==", 2417 | "dev": true, 2418 | "license": "MIT", 2419 | "dependencies": { 2420 | "@vue/compiler-dom": "3.5.13", 2421 | "@vue/compiler-sfc": "3.5.13", 2422 | "@vue/runtime-dom": "3.5.13", 2423 | "@vue/server-renderer": "3.5.13", 2424 | "@vue/shared": "3.5.13" 2425 | }, 2426 | "peerDependencies": { 2427 | "typescript": "*" 2428 | }, 2429 | "peerDependenciesMeta": { 2430 | "typescript": { 2431 | "optional": true 2432 | } 2433 | } 2434 | }, 2435 | "node_modules/zwitch": { 2436 | "version": "2.0.4", 2437 | "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", 2438 | "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", 2439 | "dev": true, 2440 | "license": "MIT", 2441 | "funding": { 2442 | "type": "github", 2443 | "url": "https://github.com/sponsors/wooorm" 2444 | } 2445 | } 2446 | } 2447 | } 2448 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "developers", 3 | "author": "ADAMANT Foundation ", 4 | "license": "GPLv3", 5 | "scripts": { 6 | "dev": "vitepress dev", 7 | "build": "vitepress build", 8 | "preview": "vitepress preview" 9 | }, 10 | "devDependencies": { 11 | "vitepress": "^1.5.0" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /pull-requests.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Pull Requests 3 | --- 4 | 5 | # Pull Requests 6 | 7 | This page outlines the guidelines for creating branches, pull requests (PRs), and commit messages formatting. 8 | 9 | ## Branch Naming 10 | 11 | To maintain clarity and avoid conflicts across systems, adhere to these branch naming rules: 12 | 13 | - **Prefixes**: 14 | 15 | - Use `fix/` for bug fixes. 16 | - Use `feat/` for new features. 17 | 18 | - **Formatting**: 19 | 20 | - Only use lowercase letters, numbers, and hyphens (`-`) as separators. 21 | - Avoid spaces, uppercase letters, or special characters. 22 | 23 | - **Use descriptive name**: 24 | - ❌ **Bad**: `fix/error` 25 | - ✅ **Good**: `fix/runtime-error-when-filling-kly-amount` 26 | 27 | ## Pull Requests (PRs) 28 | 29 | When creating a PR, follow these guidelines: 30 | 31 | - Use the same name as the related Trello task for consistency and easier tracking. 32 | - Always choose the `dev` branch as the target branch when opening a PR. 33 | - Link the PR to its corresponding Trello task in the PR description. 34 | 35 | ## Commit Message Formatting 36 | 37 | We follow the **Conventional Commits** standard for commit messages. This ensures consistency and compatibility with tools that rely on structured commit messages. 38 | 39 | ### Examples 40 | 41 | - `fix: resolve runtime error when filling KLY amount` 42 | - `feat: implement user profile page` 43 | 44 | For more information, see the [Conventional Commits Documentation](https://www.conventionalcommits.org/en/v1.0.0-beta.4/). 45 | 46 | --- 47 | 48 | By following these guidelines, we ensure a smooth and structured development process. 49 | -------------------------------------------------------------------------------- /quick-start.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Quick Start 3 | --- 4 | 5 | # Project setup 6 | 7 | Before you begin, ensure you have the following requirements installed. 8 | 9 | ## Requirements 10 | 11 | - **Node.js** (version `>= 20.x`) 12 | - **npm** (comes with Node.js) 13 | - **Git** (version `>= 2.x`) 14 | - **Java** (required to generate TS types from Swagger schema) 15 | 16 | ## Installation 17 | 18 | Clone the repository: 19 | 20 | ```bash 21 | git clone --recursive https://github.com/Adamant-im/adamant-im.git 22 | ``` 23 | 24 | Install the dependencies: 25 | 26 | ```bash 27 | npm install 28 | ``` 29 | 30 | Setup Git hooks (recommended): 31 | 32 | ```bash 33 | npx husky 34 | ``` 35 | 36 | ## Development 37 | 38 | Now run the development server as: 39 | 40 | ```bash 41 | npm run dev 42 | ``` 43 | -------------------------------------------------------------------------------- /task-management.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Task Management 3 | --- 4 | 5 | # Task Management 6 | 7 | We use **Trello** to manage tasks and track progress for the ADAMANT Messenger project. 8 | 9 | - Trello Board: [PWA](https://trello.com/b/tbpQhTTM/pwa) 10 | - Slack Channel: [#private-dev-pwa](https://app.slack.com/client/T7YMKRUJW/C052503LDQT) 11 | 12 | ## Trello Board Columns 13 | 14 | Below is a description of each column on our Trello board and its purpose: 15 | 16 | | **Column** | **Description** | 17 | | -------------- | ------------------------------------------------------------------------ | 18 | | **Backlog** | Ideas or tasks that are not yet prioritized. | 19 | | **To Do** | Tasks that have been selected for the current cycle but are not started. | 20 | | **In Process** | Tasks that are actively being worked on by developers. | 21 | | **On Review** | Completed tasks waiting for code review. | 22 | | **Testing** | Tasks undergoing quality assurance testing. | 23 | | **Tested** | Successfully tested tasks, ready for release. | 24 | | **Released** | Tasks that are deployed and live in production. | 25 | 26 | ## Responsibility for Moving Tasks 27 | 28 | | **Column** | **Who Moves the Task** | **When to Move the Task** | 29 | | -------------- | ---------------------- | ------------------------------------------------------------------- | 30 | | **Backlog** | Team Lead | When a new task or idea is created. | 31 | | **To Do** | Team Lead | When prioritizing tasks for the current cycle. | 32 | | **In Process** | Developer | When starting work on a task. | 33 | | **On Review** | Developer | When the task's code is complete and ready for review. | 34 | | **Testing** | Team Lead | When the code review is approved and the task is ready for testing. | 35 | | **Tested** | Tester | When the task has passed all testing criteria. | 36 | | **Released** | Team Lead | After deployment to production. | 37 | 38 | ## General Guidelines 39 | 40 | - **Developers**: 41 | - Ensure the task description is clear and you have all the necessary information before moving the task to **In Process**. 42 | - After completing the work: 43 | - Open a PR and add `bludnic` as a reviewer. 44 | - Link the Trello task to the PR on GitHub. 45 | - Move the task to **On Review**. 46 | - _(Optional)_ Post a message in the [#private-dev-pwa](https://app.slack.com/client/T7YMKRUJW/C052503LDQT) Slack channel to speed up the reviewing process. 47 | - **Team Lead**: 48 | - Prioritizing tasks from **Backlog** to **To Do**. 49 | - Regularly review tasks in **On Review** and move them to **Testing** after the PR is approved. 50 | - If a PR requires changes, move the task back to **In Process** so the developer can fix the issues. 51 | - After a PR is approved, merge it into `dev` and move the task to **Testing**. 52 | - After releasing to production (`dev` → `master`), move all accumulated tasks from **Tested** to **Released**. 53 | - **Testers**: 54 | - Update the task status with testing notes after testing. 55 | - If testing fails, move the task back to **In Process**. 56 | - Move the task to **Tested** when all tests passed. 57 | 58 | By following this workflow, we ensure clarity and accountability for every task on the Trello board. 59 | 60 | --- 61 | 62 | ## Communication Guidelines 63 | 64 | - **For Code Issues**: Use the comments within the PR. 65 | - **For Testing Issues**: Communicate directly in Trello. 66 | - **Other Discussions**: Use the [#private-dev-pwa](https://app.slack.com/client/T7YMKRUJW/C052503LDQT) Slack channel as needed. 67 | 68 | By adhering to these guidelines, we streamline the workflow and maintain efficient communication within the team. 69 | -------------------------------------------------------------------------------- /task-pr-linking.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Task and PR Linking 3 | --- 4 | 5 | # Task and PR Linking 6 | 7 | To maintain a seamless workflow and improve traceability, it's essential to link GitHub pull requests (PRs) to their corresponding Trello tasks. This integration ensures: 8 | 9 | - **Easy navigation**: Quickly jump between a Trello task and its associated PR. 10 | - **PR status tracking**: Trello tasks display the PR's current status (e.g., Open, Merged, or Closed). 11 | - **Automatic updates**: After linking, a comment is added to the PR referencing the Trello task. 12 | 13 | ## Enable Github integration in Trello 14 | 15 | 1. Open any task and click "Add Power-Ups" 16 | 2. Select: Github and connect the target repository 17 | 18 | > This action must be performed only once. 19 | 20 | ## Link a task to the PR 21 | 22 | 1. Navigate to the relevant task on the [PWA Trello board](https://trello.com/b/tbpQhTTM/pwa). 23 | 24 | 2. Under "Power-Ups" click on "Github". Next "Attach Pull Request...". Select the PR that need to be linked. 25 | 26 | **After linking:** 27 | 28 | - Trello will display the status of the PR (Open, Merged, Closed) directly in the task. 29 | - GitHub will automatically add a comment in the PR referencing the Trello task. 30 | -------------------------------------------------------------------------------- /template-classes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Template classes 3 | --- 4 | 5 | # Template classes 6 | 7 | When using same class name in multiple places inside a template, it is adviced to store them in a `className` and `classes` to reuse it inside a template. 8 | 9 | - Class names are defined in one place and reused throughout the template 10 | - Reduces the chance of typos or inconsistencies in class names 11 | - Makes it easier to refactor class names when changes are required 12 | 13 | ## Example 14 | 15 | ❌ Bad: 16 | 17 | ```vue 18 | 24 | ``` 25 | 26 | ✅ Good: 27 | 28 | ```vue 29 | 35 | 36 | 49 | ``` 50 | 51 | **Notes:** 52 | 53 | - The `classes` object must be defined outside the component definition. 54 | - Ensure you return the `classes` object in the `setup()` method to access it in the template. 55 | - We use [BEM](/classes-bem) methodology for class naming. 56 | --------------------------------------------------------------------------------