├── .github ├── dependabot.yml └── workflows │ └── vitepress-deploy.yml ├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── docs ├── .vitepress │ ├── config.ts │ └── theme │ │ ├── custom.css │ │ └── index.ts ├── android │ └── index.md ├── desktop │ └── index.md ├── index.md ├── introduction │ └── index.md ├── ios │ └── index.md ├── linux │ └── index.md ├── macos │ └── index.md ├── public │ └── favicon.svg └── windows │ └── index.md ├── package.json └── yarn.lock /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "npm" 4 | directory: "/" 5 | schedule: 6 | interval: "daily" 7 | open-pull-requests-limit: 15 8 | - package-ecosystem: "github-actions" 9 | directory: "/" 10 | schedule: 11 | interval: "daily" 12 | open-pull-requests-limit: 15 13 | -------------------------------------------------------------------------------- /.github/workflows/vitepress-deploy.yml: -------------------------------------------------------------------------------- 1 | name: Build and Deploy 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | 7 | jobs: 8 | cd: 9 | runs-on: ${{ matrix.os }} 10 | 11 | strategy: 12 | matrix: 13 | os: [ ubuntu-latest ] 14 | node: [ 20 ] 15 | 16 | steps: 17 | - name: Checkout 🛎 18 | uses: actions/checkout@v4 19 | 20 | - name: Setup node env 🏗 21 | uses: actions/setup-node@v4 22 | with: 23 | node-version: ${{ matrix.node }} 24 | cache: 'yarn' 25 | 26 | - name: Install dependencies 👨🏻‍💻 27 | run: yarn install --frozen-lockfile 28 | 29 | - name: Generate 👷 30 | run: yarn build 31 | 32 | - name: Deploy 🚀 33 | uses: peaceiris/actions-gh-pages@v4 34 | with: 35 | github_token: ${{ secrets.GITHUB_TOKEN }} 36 | publish_dir: docs/.vitepress/dist 37 | commit_message: ${{ github.event.head_commit.message }} 38 | cname: awesome-software.d3sox.me 39 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | dist 4 | 5 | # Log files 6 | npm-debug.log* 7 | yarn-debug.log* 8 | yarn-error.log* 9 | logs 10 | 11 | # Editor directories and files 12 | .idea 13 | .vscode 14 | *.suo 15 | *.ntvs* 16 | *.njsproj 17 | *.sln 18 | *.sw? 19 | -------------------------------------------------------------------------------- /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 | Some recommendations regarding software for desktop and mobile 🔝 635 | Copyright (C) 2022 D3SOX 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 | awesome-software Copyright (C) 2022 D3SOX 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 | # awesome-software 2 | 3 | Some recommendations regarding software for desktop and mobile 🔝 4 | 5 | > ⚠️ The repo's `master` branch contains the source files for the site. The static files are in the [`gh-pages` branch](https://github.com/D3SOX/awesome-software/tree/gh-pages)! 6 | 7 | ## Development 8 | 9 | Install dependencies 10 | ```bash 11 | yarn 12 | ``` 13 | 14 | Run development server 15 | ```bash 16 | yarn dev 17 | ``` 18 | 19 | Build for production 20 | ```bash 21 | yarn build 22 | ``` 23 | 24 | For more details, please head VitePress's [documentation](https://vitepress.vuejs.org/). 25 | -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- 1 | - Migrate to a JSON format as data source (DRY) 2 | - Transform to a better looking format 3 | - Use "Get on XY" banners and optional logos 4 | - Add tags like "Discontinued" 5 | - Check for dead links (maybe also in a workflow?) 6 | - Use metascraper to fetch site titles 7 | -------------------------------------------------------------------------------- /docs/.vitepress/config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from "vitepress"; 2 | 3 | export default defineConfig({ 4 | lang: 'en-US', 5 | title: 'Awesome Software', 6 | description: 'Some recommendations regarding software for desktop and mobile', 7 | 8 | head: [ 9 | ['link', { rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }], 10 | ['script', { defer: '', 'data-domain': 'awesome-software.d3sox.me', src: 'https://analytics.soundux.rocks/js/script.js' }] 11 | ], 12 | 13 | lastUpdated: true, 14 | cleanUrls: true, 15 | 16 | themeConfig: { 17 | nav: [ 18 | { 19 | text: 'Android', 20 | link: '/android/', 21 | }, 22 | { 23 | text: 'iOS', 24 | link: '/ios/', 25 | }, 26 | { 27 | text: 'Cross-platform desktop', 28 | link: '/desktop/', 29 | }, 30 | { 31 | text: 'Linux', 32 | link: '/linux/', 33 | }, 34 | /*{ 35 | text: 'macOS', 36 | link: '/macos/', 37 | },*/ 38 | { 39 | text: 'Windows', 40 | link: '/windows/', 41 | }, 42 | ], 43 | 44 | editLink: { 45 | pattern: 'https://github.com/D3SOX/awesome-software/edit/master/docs/:path', 46 | }, 47 | 48 | socialLinks: [ 49 | { icon: 'github', link: 'https://github.com/D3SOX/awesome-software' }, 50 | ], 51 | 52 | footer: { 53 | message: 'Made by D3SOX with ❤️', 54 | }, 55 | 56 | search: { 57 | provider: 'local' 58 | } 59 | }, 60 | }); 61 | -------------------------------------------------------------------------------- /docs/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Customize default theme styling by overriding CSS variables: 3 | * https://github.com/vuejs/vitepress/blob/main/src/client/theme-default/styles/vars.css 4 | */ 5 | 6 | /** 7 | * Colors 8 | * -------------------------------------------------------------------------- */ 9 | 10 | :root { 11 | --vp-c-brand: #3fa652; 12 | --vp-c-brand-light: #338b44; 13 | --vp-c-brand-lighter: #3a9f4d; 14 | --vp-c-brand-lightest: #4eda69; 15 | --vp-c-brand-dark: #3fa652; 16 | --vp-c-brand-darker: #368c45; 17 | --vp-c-brand-dimm: rgba(100, 108, 255, 0.08); 18 | } 19 | 20 | /** 21 | * Component: Button 22 | * -------------------------------------------------------------------------- */ 23 | 24 | :root { 25 | --vp-button-brand-border: var(--vp-c-brand-light); 26 | --vp-button-brand-text: var(--vp-c-white); 27 | --vp-button-brand-bg: var(--vp-c-brand); 28 | --vp-button-brand-hover-border: var(--vp-c-brand-light); 29 | --vp-button-brand-hover-text: var(--vp-c-white); 30 | --vp-button-brand-hover-bg: var(--vp-c-brand-light); 31 | --vp-button-brand-active-border: var(--vp-c-brand-light); 32 | --vp-button-brand-active-text: var(--vp-c-white); 33 | --vp-button-brand-active-bg: var(--vp-button-brand-bg); 34 | } 35 | 36 | /** 37 | * Component: Home 38 | * -------------------------------------------------------------------------- */ 39 | 40 | :root { 41 | --vp-home-hero-name-color: transparent; 42 | --vp-home-hero-name-background: -webkit-linear-gradient( 43 | 120deg, 44 | var(--vp-c-brand) 30%, 45 | var(--vp-c-brand-lighter) 46 | ); 47 | 48 | --vp-home-hero-image-background-image: linear-gradient( 49 | -45deg, 50 | var(--vp-c-brand) 50%, 51 | #00f62f 50% 52 | ); 53 | --vp-home-hero-image-filter: blur(40px); 54 | } 55 | 56 | @media (min-width: 640px) { 57 | :root { 58 | --vp-home-hero-image-filter: blur(56px); 59 | } 60 | } 61 | 62 | @media (min-width: 960px) { 63 | :root { 64 | --vp-home-hero-image-filter: blur(72px); 65 | } 66 | } 67 | 68 | /** 69 | * Component: Custom Block 70 | * -------------------------------------------------------------------------- */ 71 | 72 | :root { 73 | --vp-custom-block-tip-border: var(--vp-c-brand); 74 | --vp-custom-block-tip-text: var(--vp-c-brand-darker); 75 | } 76 | 77 | .dark { 78 | --vp-custom-block-tip-border: var(--vp-c-brand); 79 | --vp-custom-block-tip-text: var(--vp-c-brand-lightest); 80 | } 81 | 82 | /** 83 | * Component: Algolia 84 | * -------------------------------------------------------------------------- */ 85 | 86 | .DocSearch { 87 | --docsearch-primary-color: var(--vp-c-brand) !important; 88 | } 89 | 90 | /** 91 | * VitePress: Custom fix 92 | * -------------------------------------------------------------------------- */ 93 | 94 | /* 95 | Use lighter colors for links in dark mode for a11y. 96 | Also specify some classes twice to have higher specificity 97 | over scoped class data attribute. 98 | */ 99 | .dark .vp-doc a, 100 | .dark .vp-doc a > code, 101 | .dark .VPNavBarMenuLink.VPNavBarMenuLink:hover, 102 | .dark .VPNavBarMenuLink.VPNavBarMenuLink.active, 103 | .dark .link.link:hover, 104 | .dark .link.link.active, 105 | .dark .edit-link-button.edit-link-button, 106 | .dark .pager-link .title { 107 | color: var(--vp-c-brand-lighter); 108 | } 109 | 110 | .dark .vp-doc a:hover, 111 | .dark .vp-doc a > code:hover { 112 | color: var(--vp-c-brand-lightest); 113 | opacity: 1; 114 | } 115 | 116 | /* Transition by color instead of opacity */ 117 | .dark .vp-doc .custom-block a { 118 | transition: color 0.25s; 119 | } 120 | 121 | -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- 1 | import DefaultTheme from 'vitepress/theme'; 2 | import './custom.css'; 3 | 4 | export default DefaultTheme; 5 | -------------------------------------------------------------------------------- /docs/android/index.md: -------------------------------------------------------------------------------- 1 | # Android 2 | 3 | ## Browser 4 | ### Cromite 5 | - Website: 6 | - Source Code: 7 | - Download (F-Droid): 8 | - Download (APK): 9 | 10 | ### Firefox 11 | - Website: 12 | - Source Code: 13 | - Download (F-Droid): 14 | - Download (Play Store): 15 | - Download (APK): 16 | 17 | ### DuckDuckGo Privacy Browser 18 | - Website: 19 | - Source Code: 20 | - Download (F-Droid): 21 | - Download (Play Store): 22 | 23 | ## AdBlocker root & non-root (VPN-based) 24 | ### AdAway 25 | - Website: 26 | - Source Code: 27 | - Download (F-Droid): 28 | - Download (APK): 29 | 30 | ## AdBlocker non-root, VPN-based 31 | ### DNS66 32 | - Website: 33 | - Source Code: 34 | - Download (F-Droid): 35 | 36 | ### Blokada 37 | - Website: 38 | - Source Code: 39 | - Download (F-Droid): 40 | - Download (APK): 41 | 42 | ## Messenger 43 | ### Signal 44 | - Website: 45 | - Source Code: 46 | - Download (APK): 47 | - Download (Play Store): 48 | 49 | ### Briar 50 | - Website: 51 | - Source Code: 52 | - Download (F-Droid): 53 | - Download (Play Store): 54 | 55 | 56 | ## Calendar and contacts sync 57 | ### EteSync 58 | - Website: 59 | - Source Code: 60 | - Download (F-Droid): 61 | - Download (Play Store): 62 | 63 | ## Duplicate Contacts Remover 64 | ### Duplicate Contacts Remover 65 | - Website: None 66 | - Source Code: 67 | - Download (Play Store): 68 | 69 | ## Weather 70 | 71 | ### Breezy Weather 72 | - Website: None 73 | - Source Code: 74 | - Download (F-Droid): 75 | - Download (APK): 76 | 77 | ### Forecastie 78 | - Website: None 79 | - Source Code: 80 | - Download (F-Droid): 81 | - Download (Play Store): 82 | 83 | ## Alarm, Timer, Stopwatch 84 | ### Alarmio 85 | - Website: None 86 | - Source Code: 87 | - Download (F-Droid): 88 | - Download (Play Store): 89 | 90 | ## QR/Barcode Scanner 91 | ### Barcode Scanner 92 | - Website: None 93 | - Source Code: 94 | - Download (F-Droid): 95 | - Download (Play Store): 96 | 97 | ### QR & Barcode Scanner 98 | - Website: None 99 | - Source Code: 100 | - Download (F-Droid): 101 | - Download (APK): 102 | - Download (Play Store): 103 | 104 | ### Binary Eye 105 | - Website: None 106 | - Source Code: 107 | - Download (F-Droid): 108 | - Download (Play Store): 109 | 110 | ## Maps and Navigation 111 | ### Magic Earth 112 | - Website: 113 | - Source Code: Not available 114 | - Download (Play Store): 115 | 116 | ### Organic Maps 117 | - Website: 118 | - Source Code: 119 | - Download (F-Droid): 120 | - Download (APK): 121 | - Download (Play Store): 122 | 123 | ### OsmAnd 124 | - Website: 125 | - Source Code: 126 | - Download (F-Droid): 127 | - Download (Play Store): 128 | 129 | ## Camera 130 | ### Secure Camera 131 | - Website: 132 | - Source Code: 133 | - Download (APK): 134 | - Download (Play Store): 135 | 136 | ### Open Camera 137 | - Website: 138 | - Source Code: 139 | - Download (F-Droid): 140 | - Download (Play Store): 141 | 142 | ## Music Player 143 | 144 | ### Auxio 145 | - Website: None 146 | - Source Code: 147 | - Download (F-Droid): 148 | - Download (APK): 149 | 150 | ### Retro Music 151 | - Website: 152 | - Source Code: 153 | - Download (Play Store): 154 | - Download (APK): 155 | 156 | #### Metro, fork with premium features and without Google libraries 157 | - Source Code: 158 | - Download (F-Droid): 159 | - Download (APK): 160 | 161 | ### Phonograph Plus 162 | - Website: None 163 | - Source Code: 164 | - Download (F-Droid Repo): 165 | - Download (APK): 166 | 167 | ### Shuttle 168 | - Website: None 169 | - Source Code: 170 | - Download (F-Droid): 171 | - Download (F-Droid Repo): 172 | - Download (Play Store): 173 | 174 | ### Vinyl 175 | - Website: None 176 | - Source Code: 177 | - Download (F-Droid): 178 | - Download (Play Store): 179 | 180 | ### TimberX 181 | - Website: 182 | - Source Code: 183 | - Download (Play Store): 184 | - Download (APK): 185 | 186 | ### Music 187 | - Website: None 188 | - Source Code: 189 | - Download (F-Droid): 190 | 191 | ## SMS 192 | 193 | ### QKSMS 194 | - Website: 195 | - Source Code: 196 | - Download (F-Droid): 197 | - Download (Play Store): 198 | 199 | ## Launcher 200 | 201 | ### Lawnchair 202 | - Website: 203 | - Source Code: 204 | - Download (F-Droid): 205 | - Download (Play Store): 206 | 207 | ### Shade 208 | - Website: None 209 | - Source Code: 210 | - Download (F-Droid Repo): 211 | - Download (Play Store): 212 | 213 | ### posidon launcher 214 | - Website: 215 | - Source Code: 216 | - Download (F-Droid): 217 | - Download (Play Store): 218 | 219 | ## Keyboard 220 | 221 | ### FlorisBoard 222 | - Website: 223 | - Source Code: 224 | - Download (F-Droid): 225 | - Download (APK): 226 | - Download (Play Store): 227 | 228 | ### OpenBoard 229 | - Website: None 230 | - Source Code: 231 | - Download (F-Droid): 232 | - Download (APK): 233 | - Download (Play Store): 234 | 235 | ### Simple Keyboard 236 | - Website: None 237 | - Source Code: 238 | - Download (F-Droid): 239 | - Download (Play Store): 240 | 241 | ## Note-taking 242 | ### Standard Notes 243 | - Website: 244 | - Source Code: 245 | - Download (APK): 246 | - Download (Play Store): 247 | 248 | ### Simplenote 249 | - Website: 250 | - Source Code: 251 | - Download (APK): 252 | - Download (Play Store): 253 | 254 | ### Joplin 255 | - Website: 256 | - Source Code: 257 | - Download (APK): 258 | - Download (Play Store): 259 | 260 | ### Markor 261 | - Website: 262 | - Source Code: 263 | - Download (F-Droid): 264 | - Download (Play Store): 265 | 266 | ## To Do 267 | ### Tasks.org 268 | - Website: 269 | - Source Code: 270 | - Download (F-Droid): 271 | - Download (Play Store): 272 | 273 | ## File Manager 274 | ### Material Files 275 | - Website: None 276 | - Source Code: 277 | - Download (F-Droid): 278 | - Download (Play Store): 279 | 280 | ## Sync to PC 281 | ### KDE Connect 282 | - Website: 283 | - Source Code: 284 | - Download (F-Droid): 285 | - Download (Play Store): 286 | 287 | ## Gallery 288 | ### Aves 289 | - Website: None 290 | - Source Code: 291 | - Download (F-Droid): 292 | - Download (APK): 293 | - Download (Play Store): 294 | 295 | ## Email Client 296 | ### FairEmail 297 | - Website: 298 | - Source Code: 299 | - Download (F-Droid): 300 | - Download (Play Store): 301 | 302 | ### K-9 Mail 303 | - Website: 304 | - Source Code: 305 | - Download (F-Droid): 306 | - Download (APK): 307 | - Download (Play Store): 308 | 309 | ### Tutanota 310 | - Website: 311 | - Source Code: 312 | - Download (F-Droid): 313 | - Download (Play Store): 314 | 315 | ## Password Manager 316 | ### Bitwarden 317 | - Website: 318 | - Source Code: 319 | - Download (F-Droid): 320 | - Download (Play Store): 321 | 322 | ### KeePassDX 323 | - Website: 324 | - Source Code: 325 | - Download (F-Droid): 326 | - Download (Play Store): 327 | 328 | ## 2FA app 329 | ### Aegis 330 | - Website: 331 | - Source Code: 332 | - Download (F-Droid): 333 | - Download (APK): 334 | - Download (Play Store): 335 | 336 | ### andOTP 337 | - Website: None 338 | - Source Code: 339 | - Download (F-Droid): 340 | - Download (APK): 341 | - Download (Play Store): 342 | 343 | ## Office 344 | ### OnlyOffice 345 | - Website: 346 | - Source Code: 347 | - Download (Play Store): 348 | 349 | ### Collabora Office 350 | - Website: 351 | - Source Code: 352 | - Download (F-Droid Repo): 353 | - Download (Play Store): 354 | 355 | ## Screen Recorder 356 | ### MNML 357 | - Website: 358 | - Source Code: 359 | - Download (Play Store): 360 | 361 | ### ScreenCam 362 | - Website: 363 | - Source Code: 364 | - Download (F-Droid): 365 | - Download (Play Store): 366 | 367 | ## Podcasts 368 | ### AntennaPod 369 | - Website: 370 | - Source Code: 371 | - Download (F-Droid): 372 | - Download (Play Store): 373 | 374 | ## Firewall 375 | ### AFWall+ 376 | - Website: 377 | - Source Code: 378 | - Download (F-Droid): 379 | - Download (Play Store): 380 | - Download (APK): 381 | 382 | ### NetGuard 383 | - Website: 384 | - Source Code: 385 | - Download (F-Droid): 386 | - Download (Play Store): 387 | 388 | ## App Backups 389 | ### Neo Backup 390 | - Website: None 391 | - Source Code: 392 | - Download (F-Droid): 393 | - Download (APK): 394 | 395 | ## Wallpapers 396 | ### Aurora Walls 397 | - Website: None 398 | - Source Code: 399 | - Download (Telegram): 400 | - Download (APK): 401 | 402 | ## RSS reader 403 | ### Flym 404 | - Website: None 405 | - Source Code: 406 | - Download (F-Droid): 407 | - Download (Play Store): 408 | 409 | ### Feeder 410 | - Website: None 411 | - Source Code: 412 | - Download (F-Droid): 413 | - Download (Play Store): 414 | 415 | ## Git Client 416 | ### GitTouch 417 | - Website: None 418 | - Source Code: 419 | - Download (APK): 420 | - Download (Play Store): 421 | 422 | ## File sharing 423 | ### TrebleShot 424 | - Website: 425 | - Source Code: 426 | - Download (F-Droid): 427 | - Download (Play Store): 428 | 429 | ## Network screen sharing 430 | ### ScreenStream 431 | - Website: None 432 | - Source Code: 433 | - Download (F-Droid): 434 | - Download (Play Store): 435 | 436 | ## Download Manager 437 | ### Download Navi 438 | - Website: None 439 | - Source Code: 440 | - Download (F-Droid): 441 | - Download (Play Store): 442 | - Download (APK): 443 | - Download (XDA Labs): 444 | 445 | ## PDF Reader 446 | ### Secure PDF Viewer 447 | - Website: 448 | - Source Code: 449 | - Download (APK): 450 | - Download (Play Store): 451 | 452 | ### MJ PDF Reader 453 | - Website: None 454 | - Source Code: 455 | - Download (F-Droid Repo): 456 | - Download (Play Store): 457 | 458 | ### MuPDF 459 | - Website: 460 | - Source Code: 461 | - Download (F-Droid): 462 | - Download (Play Store): 463 | 464 | ## YouTube Client 465 | ### LibreTube 466 | - Website: None 467 | - Source Code: 468 | - Download (F-Droid): 469 | - Download (APK): 470 | 471 | ### NewPipe 472 | - Website: 473 | - Source Code: 474 | - Download (F-Droid): 475 | 476 | ## Twitch Client 477 | ### Twire 478 | - Website: None 479 | - Source Code: 480 | - Download (F-Droid): 481 | - Download (APK): 482 | 483 | ## Twitter Client 484 | ### Talon 485 | - Website: 486 | - Source Code: 487 | - Download (Play Store): 488 | 489 | ### Twidere 490 | - Website: 491 | - Source Code: 492 | - Download (F-Droid): 493 | 494 | ## Reddit Client 495 | ### Slide 496 | - Website: 497 | - Source Code: 498 | - Download (F-Droid): 499 | - Download (Play Store): 500 | 501 | ## Terminal 502 | ### Termux 503 | - Website: 504 | - Source Code: 505 | - Download (F-Droid): 506 | - Download (Play Store): 507 | -------------------------------------------------------------------------------- /docs/desktop/index.md: -------------------------------------------------------------------------------- 1 | # Cross-platform desktop 2 | 3 | ## Browser 4 | ### Firefox 5 | - Website: 6 | - Source Code: 7 | - Download: 8 | 9 | ### Brave 10 | - Website: 11 | - Source Code: 12 | - Download: 13 | 14 | ### ungoogled-chromium 15 | - Website: None 16 | - Source Code: 17 | - Download: 18 | 19 | ## Control Android device 20 | ### scrcpy 21 | - Website: None 22 | - Source Code: 23 | - Download: 24 | 25 | ## AdBlocker 26 | ### uBlock Origin 27 | - Website: None 28 | - Source Code: 29 | - Download: 30 | 31 | ## Password Manager 32 | ### Bitwarden 33 | - Website: 34 | - Source Code: 35 | - Download: 36 | 37 | ### KeePassXC 38 | - Website: 39 | - Source Code: 40 | - Download: 41 | 42 | ## Messenger 43 | ### Signal 44 | - Website: 45 | - Source Code: 46 | - Download: 47 | 48 | ## Note-taking 49 | ### Standard Notes 50 | - Website: 51 | - Source Code: 52 | - Download: 53 | 54 | ### Simplenote 55 | - Website: 56 | - Source Code: 57 | - Download: 58 | 59 | ### Joplin 60 | - Website: 61 | - Source Code: 62 | - Download: 63 | 64 | ## Sync to PC 65 | ### KDE Connect 66 | - Website: 67 | - Source Code: 68 | - Download: 69 | 70 | ## Torrent Client 71 | ### qBittorrent 72 | - Website: 73 | - Source Code: 74 | - Download: 75 | 76 | ## Video Editor 77 | ### Kdenlive 78 | - Website: 79 | - Source Code: 80 | - Download: 81 | 82 | ### Olive 83 | - Website: 84 | - Source Code: 85 | - Download: 86 | 87 | ## Audio Recorder and Editor 88 | ### Audacity 89 | - Website: 90 | - Source Code: 91 | - Download: 92 | 93 | ## Screenshot Tool 94 | ### Flameshot 95 | - Website: 96 | - Source Code: 97 | - Download 98 | 99 | ## Screen Recorder 100 | ### OBS Studio 101 | - Website: 102 | - Source Code: 103 | - Download: 104 | 105 | ## Media Player 106 | ### SMPlayer 107 | - Website: 108 | - Source Code: 109 | - Download: 110 | 111 | ### mpv 112 | - Website: 113 | - Source Code: 114 | - Download: 115 | 116 | ### VLC 117 | - Website: 118 | - Source Code: 119 | - Download: 120 | 121 | ## Image Viewer 122 | ### nomacs 123 | - Website: 124 | - Source Code: 125 | - Download: 126 | 127 | ## Archive Manager 128 | ### PeaZip 129 | - Website: 130 | - Source Code: 131 | - Download: 132 | 133 | ## PDF Reader 134 | ### Okular 135 | - Website: 136 | - Source Code: 137 | - Download: 138 | 139 | ## Office Suite 140 | ### LibreOffice 141 | - Website: 142 | - Source Code: 143 | - Download: 144 | 145 | ### ONLYOFFICE 146 | - Website: 147 | - Source Code: 148 | - Download: 149 | 150 | ## Advanced Text Editor 151 | ### Kate 152 | - Website: 153 | - Source Code: 154 | - Download: 155 | 156 | ### Geany 157 | - Website: 158 | - Source Code: 159 | - Download: 160 | 161 | ### VSCodium 162 | - Website: 163 | - Source Code: 164 | - Download: 165 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: home 3 | 4 | titleTemplate: Home 5 | 6 | hero: 7 | name: Awesome Software 8 | tagline: Some recommendations regarding software for desktop and mobile 🔝 9 | image: 10 | src: https://cdn.freebiesupply.com/logos/large/2x/open-source-logo-png-transparent.png 11 | alt: Logo 12 | actions: 13 | - theme: brand 14 | text: Get started → 15 | link: /introduction/ 16 | --- 17 | 18 |
19 | Last Update 20 | Stars 21 | License 22 |
23 | -------------------------------------------------------------------------------- /docs/introduction/index.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | This site lists software I personally recommend. Some of them I use regularly. It's split up by platform and mostly [FOSS](https://www.gnu.org/philosophy/free-sw.html) and privacy-friendly. 3 | 4 | I'm open for additions so if you want something to be added feel free to open an [Issue](https://github.com/D3SOX/awesome-software/issues) or a [Pull request](https://github.com/D3SOX/awesome-software/pulls) 5 | 6 | ::: tip Choose your platform 7 | - [Android](/android/) 8 | - [iOS](/ios/) 9 | - [Cross-platform desktop](/desktop/) 10 | - [Linux](/linux/) 11 | - [Windows](/windows/) 12 | 13 | Change using the *top bar* 14 | ::: 15 | 16 | -------------------------------------------------------------------------------- /docs/ios/index.md: -------------------------------------------------------------------------------- 1 | # iOS 2 | 3 | ## Browser 4 | ### Firefox 5 | - Website: 6 | - Source Code: 7 | - Download (App Store): 8 | 9 | ### DuckDuckGo Privacy Browser 10 | - Website: 11 | - Source Code: 12 | - Download (App Store): 13 | 14 | ## AdBlocker 15 | ### Adblock Fast 16 | - Website: 17 | - Source Code: 18 | - Download (App Store): 19 | 20 | ## Email Client 21 | ### Tutanota 22 | - Website: 23 | - Source Code: 24 | - Download (App Store): 25 | 26 | ## Password Manager 27 | ### Bitwarden 28 | - Website: 29 | - Source Code: 30 | - Download (App Store): 31 | 32 | ### KeePassium 33 | - Website: 34 | - Source Code: 35 | - Download (App Store): 36 | 37 | ## Note-taking 38 | ### Standard Notes 39 | - Website: 40 | - Source Code: 41 | - Download (App Store): 42 | 43 | ### Simplenote 44 | - Website: 45 | - Source Code: 46 | - Download (App Store): 47 | 48 | ### Joplin 49 | - Website: 50 | - Source Code: 51 | - Download (App Store): 52 | 53 | ## Sync to PC 54 | ### KDE Connect 55 | - Website: 56 | - Source Code: 57 | - Download (App Store): 58 | 59 | ## Messenger 60 | ### Signal 61 | - Website: 62 | - Source Code: 63 | - Download (App Store): 64 | 65 | ## Reddit Client 66 | ### Slide 67 | - Website: 68 | - Source Code: 69 | - Download (App Store): 70 | 71 | ## RSS reader 72 | ### NetNewsWire 73 | - Website: 74 | - Source Code: 75 | - Download (App Store): 76 | 77 | ## YouTube Client 78 | ### Yattee 79 | - Website: None 80 | - Source Code: 81 | - Installation (Not yet on the App Store): 82 | 83 | ## Office 84 | ### OnlyOffice 85 | - Website: 86 | - Source Code: 87 | - Download (App Store): 88 | 89 | ### Collabora Office 90 | - Website: 91 | - Source Code: 92 | - Download (App Store): 93 | 94 | ## Maps and Navigation 95 | ### Magic Earth 96 | - Website: 97 | - Source Code: Not available 98 | - Download (App Store): 99 | 100 | ### Organic Maps 101 | - Website: 102 | - Source Code: 103 | - Download (App Store): 104 | 105 | ### OsmAnd 106 | - Website: 107 | - Source Code: 108 | - Download (App Store): 109 | 110 | ## 2FA app 111 | ### Ravio 112 | - Website: 113 | - Source Code: 114 | - Download (App Store): 115 | 116 | ### Tofu 117 | - Website: 118 | - Source Code: 119 | - Download (App Store): 120 | 121 | ### Authenticator 122 | - Website: 123 | - Source Code: 124 | - Download (App Store): 125 | 126 | ## Git Client 127 | ### GitTouch 128 | - Website: None 129 | - Source Code: 130 | - Download (App Store): 131 | 132 | ## Jailbreak Tweaks 133 | ### A-Shields 134 | - Purpose: Lock apps or CC modules 135 | - Source Code: 136 | - Repo: 137 | 138 | ### A-Font 139 | - Purpose: Change your font 140 | - Source Code: 141 | - Repo: 142 | 143 | ### NoDNDBanner 144 | - Purpose: Removes DND banner 145 | - Source Code: 146 | - Repo: 147 | 148 | ### Choicy 149 | - Purpose: Advanced tweak configurator 150 | - Source Code: 151 | - Repo: BigBoss 152 | 153 | ### Dragspring 154 | - Purpose: Respring device from settings 155 | - Source code: (No longer available) 156 | - Repo: 157 | 158 | ### AppSync Unified 159 | - Purpose: Install unsigned iOS apps 160 | - Source Code: 161 | - Repo: 162 | 163 | ### Folded 164 | - Purpose: Enhance folders 165 | - Source Code: 166 | - Repo: 167 | 168 | ### dotto+ 169 | - Purpose: Customize notification dots 170 | - Source Code: No longer available 171 | - Repo: 172 | 173 | ### Axon 174 | - Purpose: Notifications Priority Hub 175 | - Source Code: 176 | - Repo: 177 | 178 | ### PreferenceOrganizer2 179 | - Purpose: Organize the iOS Settings app 180 | - Source Code: 181 | - Repo: 182 | 183 | ### Cr4shed 184 | - Purpose: A modern crash reporter for iOS 185 | - Source Code: 186 | - Repo: 187 | 188 | ### PanCake 189 | - Purpose: Interactive dismiss gesture on the whole screen in all apps 190 | - Source Code: 191 | - Repo: 192 | 193 | ### No3DLines 194 | - Purpose: Remove separator lines from 3D Touch menus 195 | - Source Code: 196 | - Repo: 197 | 198 | ### Evil Scheme 199 | - Purpose: Change default browser, package manager, navigator, and more! 200 | - Source Code: 201 | - Repo: 202 | 203 | ### ReProvision 204 | - Purpose: On-device signing utility for iOS 205 | - Source Code: 206 | - Repo: 207 | 208 | ### RealCC 209 | - Purpose: Actually disable wifi from CC in iOS 11 210 | - Source Code: 211 | - Repo: BigBoss 212 | 213 | ### StatusSwitcher 214 | - Purpose: Enable status bar in iOS app switcher 215 | - Source Code: 216 | - Repo: BigBoss 217 | 218 | ### Accent 219 | - Purpose: Change iOS accent color 220 | - Source Code: 221 | - Repo: BigBoss 222 | 223 | ### ColoredScrollIndicator 224 | - Purpose: Color the scroll indicator with a gradient 225 | - Source Code: 226 | - Repo: 227 | -------------------------------------------------------------------------------- /docs/linux/index.md: -------------------------------------------------------------------------------- 1 | # Linux 2 | 3 | ## Gaming 4 | ### Lutris 5 | - Website: 6 | - Source Code: 7 | 8 | ## GIF Recorder 9 | ### Peek 10 | - Website: None 11 | - Source Code: 12 | 13 | ## Remote Desktop Client 14 | ### Remmina 15 | - Website: 16 | - Source Code: 17 | 18 | ## System Snapshots 19 | ### Timeshift 20 | - Website: None 21 | - Source Code: 22 | 23 | ## Data Backup and Restore 24 | ### Pika Backup 25 | - Website: 26 | - Source Code: 27 | 28 | ### Déjà Dup 29 | - Website: 30 | - Source Code: 31 | 32 | ## Gaming Device Config 33 | ### Piper 34 | - Website: None 35 | - Source Code: 36 | 37 | ### OpenRazer 38 | - Website: 39 | - Source Code: 40 | 41 | ## RGB lighting control 42 | ### OpenRGB 43 | - Website: 44 | - Source Code: 45 | 46 | ## AirPlay server 47 | ### UxPlay 48 | - Website: None 49 | - Source Code: 50 | 51 | ## Disk Space Analyzer 52 | ### QDirStat 53 | - Website: None 54 | - Source Code: 55 | -------------------------------------------------------------------------------- /docs/macos/index.md: -------------------------------------------------------------------------------- 1 | # macOS 2 | TODO 3 | -------------------------------------------------------------------------------- /docs/public/favicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 46 | 51 | 52 | 54 | 55 | 57 | image/svg+xml 58 | 60 | 61 | 62 | 63 | 68 | 75 | 83 | 89 | 97 | R 108 | 109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /docs/windows/index.md: -------------------------------------------------------------------------------- 1 | # Windows 2 | 3 | ## Debloater 4 | ### Windows10Debloater 5 | - Website: None 6 | - Source Code: 7 | - Download (PowerShell as admin): 8 | ```powershell 9 | iex ((New-Object System.Net.WebClient).DownloadString('https://git.io/debloat')) 10 | ``` 11 | 12 | ## Activator 13 | ### Microsoft Activation Scripts 14 | - Website: 15 | - Source Code: 16 | - Download (PowerShell as admin): 17 | ```powershell 18 | irm https://get.activated.win | iex 19 | ``` 20 | 21 | ### vlmcsd 22 | - Website: None 23 | - Source Code: 24 | - Source Code (Install script): 25 | - Download (Install script): 26 | 27 | ## Package Manager 28 | ### Winget 29 | - Website: 30 | - Source Code: 31 | - Download: 32 | 33 | ### Chocolatey 34 | - Website: 35 | - Source Code: 36 | - Download: 37 | 38 | ### Scoop 39 | - Website: 40 | - Source Code: 41 | - Download: 42 | 43 | ## PDF Reader 44 | ### Sumatra PDF 45 | - Website: 46 | - Source Code: 47 | - Download: 48 | 49 | ## Screenshot Tool 50 | ### ShareX 51 | - Website: 52 | - Source Code: 53 | - Download: 54 | 55 | ## Archive Manager 56 | ### 7-Zip 57 | - Website: 58 | - Source Code: 59 | - Download: 60 | 61 | ## SFTP/FTP Client 62 | ### WinSCP 63 | - Website: 64 | - Source Code: 65 | - Download: 66 | 67 | ## Disk Space Analyzer 68 | ### WinDirStat 69 | - Website: 70 | - Source Code: 71 | - Download: 72 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "awesome-software", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "repository": "https://github.com/D3SOX/awesome-software", 6 | "license": "GPL-3.0-or-later", 7 | "type": "module", 8 | "scripts": { 9 | "dev": "vitepress dev docs", 10 | "build": "vitepress build docs", 11 | "serve": "vitepress serve docs" 12 | }, 13 | "devDependencies": { 14 | "vitepress": "^1.6.3", 15 | "vue": "^3.5.13" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@algolia/autocomplete-core@1.17.7": 6 | version "1.17.7" 7 | resolved "https://registry.yarnpkg.com/@algolia/autocomplete-core/-/autocomplete-core-1.17.7.tgz#2c410baa94a47c5c5f56ed712bb4a00ebe24088b" 8 | integrity sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q== 9 | dependencies: 10 | "@algolia/autocomplete-plugin-algolia-insights" "1.17.7" 11 | "@algolia/autocomplete-shared" "1.17.7" 12 | 13 | "@algolia/autocomplete-plugin-algolia-insights@1.17.7": 14 | version "1.17.7" 15 | resolved "https://registry.yarnpkg.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.7.tgz#7d2b105f84e7dd8f0370aa4c4ab3b704e6760d82" 16 | integrity sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A== 17 | dependencies: 18 | "@algolia/autocomplete-shared" "1.17.7" 19 | 20 | "@algolia/autocomplete-preset-algolia@1.17.7": 21 | version "1.17.7" 22 | resolved "https://registry.yarnpkg.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.7.tgz#c9badc0d73d62db5bf565d839d94ec0034680ae9" 23 | integrity sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA== 24 | dependencies: 25 | "@algolia/autocomplete-shared" "1.17.7" 26 | 27 | "@algolia/autocomplete-shared@1.17.7": 28 | version "1.17.7" 29 | resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.7.tgz#105e84ad9d1a31d3fb86ba20dc890eefe1a313a0" 30 | integrity sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg== 31 | 32 | "@algolia/client-abtesting@5.20.0": 33 | version "5.20.0" 34 | resolved "https://registry.yarnpkg.com/@algolia/client-abtesting/-/client-abtesting-5.20.0.tgz#984472e4ae911285a8e3be2b81c121108f87a179" 35 | integrity sha512-YaEoNc1Xf2Yk6oCfXXkZ4+dIPLulCx8Ivqj0OsdkHWnsI3aOJChY5qsfyHhDBNSOhqn2ilgHWxSfyZrjxBcAww== 36 | dependencies: 37 | "@algolia/client-common" "5.20.0" 38 | "@algolia/requester-browser-xhr" "5.20.0" 39 | "@algolia/requester-fetch" "5.20.0" 40 | "@algolia/requester-node-http" "5.20.0" 41 | 42 | "@algolia/client-analytics@5.20.0": 43 | version "5.20.0" 44 | resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-5.20.0.tgz#25944c8c7bcc06a16ae3b26ddf86d0d18f984349" 45 | integrity sha512-CIT9ni0+5sYwqehw+t5cesjho3ugKQjPVy/iPiJvtJX4g8Cdb6je6SPt2uX72cf2ISiXCAX9U3cY0nN0efnRDw== 46 | dependencies: 47 | "@algolia/client-common" "5.20.0" 48 | "@algolia/requester-browser-xhr" "5.20.0" 49 | "@algolia/requester-fetch" "5.20.0" 50 | "@algolia/requester-node-http" "5.20.0" 51 | 52 | "@algolia/client-common@5.20.0": 53 | version "5.20.0" 54 | resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-5.20.0.tgz#0b6b96c779d30afada68cf36f20f0c280e3f1273" 55 | integrity sha512-iSTFT3IU8KNpbAHcBUJw2HUrPnMXeXLyGajmCL7gIzWOsYM4GabZDHXOFx93WGiXMti1dymz8k8R+bfHv1YZmA== 56 | 57 | "@algolia/client-insights@5.20.0": 58 | version "5.20.0" 59 | resolved "https://registry.yarnpkg.com/@algolia/client-insights/-/client-insights-5.20.0.tgz#37b59043a86423dd283d05909faea06e4eff026b" 60 | integrity sha512-w9RIojD45z1csvW1vZmAko82fqE/Dm+Ovsy2ElTsjFDB0HMAiLh2FO86hMHbEXDPz6GhHKgGNmBRiRP8dDPgJg== 61 | dependencies: 62 | "@algolia/client-common" "5.20.0" 63 | "@algolia/requester-browser-xhr" "5.20.0" 64 | "@algolia/requester-fetch" "5.20.0" 65 | "@algolia/requester-node-http" "5.20.0" 66 | 67 | "@algolia/client-personalization@5.20.0": 68 | version "5.20.0" 69 | resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-5.20.0.tgz#d10da6d798f9a5f6cf239c57b9a850deb29e5683" 70 | integrity sha512-p/hftHhrbiHaEcxubYOzqVV4gUqYWLpTwK+nl2xN3eTrSW9SNuFlAvUBFqPXSVBqc6J5XL9dNKn3y8OA1KElSQ== 71 | dependencies: 72 | "@algolia/client-common" "5.20.0" 73 | "@algolia/requester-browser-xhr" "5.20.0" 74 | "@algolia/requester-fetch" "5.20.0" 75 | "@algolia/requester-node-http" "5.20.0" 76 | 77 | "@algolia/client-query-suggestions@5.20.0": 78 | version "5.20.0" 79 | resolved "https://registry.yarnpkg.com/@algolia/client-query-suggestions/-/client-query-suggestions-5.20.0.tgz#1d4f1d638f857fad202cee7feecd3ffc270d9c60" 80 | integrity sha512-m4aAuis5vZi7P4gTfiEs6YPrk/9hNTESj3gEmGFgfJw3hO2ubdS4jSId1URd6dGdt0ax2QuapXufcrN58hPUcw== 81 | dependencies: 82 | "@algolia/client-common" "5.20.0" 83 | "@algolia/requester-browser-xhr" "5.20.0" 84 | "@algolia/requester-fetch" "5.20.0" 85 | "@algolia/requester-node-http" "5.20.0" 86 | 87 | "@algolia/client-search@5.20.0": 88 | version "5.20.0" 89 | resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-5.20.0.tgz#4b847bda4bef2eee8ba72ef3ce59be612319e8d0" 90 | integrity sha512-KL1zWTzrlN4MSiaK1ea560iCA/UewMbS4ZsLQRPoDTWyrbDKVbztkPwwv764LAqgXk0fvkNZvJ3IelcK7DqhjQ== 91 | dependencies: 92 | "@algolia/client-common" "5.20.0" 93 | "@algolia/requester-browser-xhr" "5.20.0" 94 | "@algolia/requester-fetch" "5.20.0" 95 | "@algolia/requester-node-http" "5.20.0" 96 | 97 | "@algolia/ingestion@1.20.0": 98 | version "1.20.0" 99 | resolved "https://registry.yarnpkg.com/@algolia/ingestion/-/ingestion-1.20.0.tgz#b91849fe4a8efed21c048a0a69ad77934d2fc3fd" 100 | integrity sha512-shj2lTdzl9un4XJblrgqg54DoK6JeKFO8K8qInMu4XhE2JuB8De6PUuXAQwiRigZupbI0xq8aM0LKdc9+qiLQA== 101 | dependencies: 102 | "@algolia/client-common" "5.20.0" 103 | "@algolia/requester-browser-xhr" "5.20.0" 104 | "@algolia/requester-fetch" "5.20.0" 105 | "@algolia/requester-node-http" "5.20.0" 106 | 107 | "@algolia/monitoring@1.20.0": 108 | version "1.20.0" 109 | resolved "https://registry.yarnpkg.com/@algolia/monitoring/-/monitoring-1.20.0.tgz#5b3a7964b08a91b1c71466bf5adb8a1597e3134b" 110 | integrity sha512-aF9blPwOhKtWvkjyyXh9P5peqmhCA1XxLBRgItT+K6pbT0q4hBDQrCid+pQZJYy4HFUKjB/NDDwyzFhj/rwKhw== 111 | dependencies: 112 | "@algolia/client-common" "5.20.0" 113 | "@algolia/requester-browser-xhr" "5.20.0" 114 | "@algolia/requester-fetch" "5.20.0" 115 | "@algolia/requester-node-http" "5.20.0" 116 | 117 | "@algolia/recommend@5.20.0": 118 | version "5.20.0" 119 | resolved "https://registry.yarnpkg.com/@algolia/recommend/-/recommend-5.20.0.tgz#49f8f8d31f815b107c8ebd1c35220d90b22fd876" 120 | integrity sha512-T6B/WPdZR3b89/F9Vvk6QCbt/wrLAtrGoL8z4qPXDFApQ8MuTFWbleN/4rHn6APWO3ps+BUePIEbue2rY5MlRw== 121 | dependencies: 122 | "@algolia/client-common" "5.20.0" 123 | "@algolia/requester-browser-xhr" "5.20.0" 124 | "@algolia/requester-fetch" "5.20.0" 125 | "@algolia/requester-node-http" "5.20.0" 126 | 127 | "@algolia/requester-browser-xhr@5.20.0": 128 | version "5.20.0" 129 | resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.20.0.tgz#998fd5c1123fbc49b664c484c6b0cd7cefc6a1fa" 130 | integrity sha512-t6//lXsq8E85JMenHrI6mhViipUT5riNhEfCcvtRsTV+KIBpC6Od18eK864dmBhoc5MubM0f+sGpKOqJIlBSCg== 131 | dependencies: 132 | "@algolia/client-common" "5.20.0" 133 | 134 | "@algolia/requester-fetch@5.20.0": 135 | version "5.20.0" 136 | resolved "https://registry.yarnpkg.com/@algolia/requester-fetch/-/requester-fetch-5.20.0.tgz#fed4f135f22c246ce40cf23c9d6518884be43e5e" 137 | integrity sha512-FHxYGqRY+6bgjKsK4aUsTAg6xMs2S21elPe4Y50GB0Y041ihvw41Vlwy2QS6K9ldoftX4JvXodbKTcmuQxywdQ== 138 | dependencies: 139 | "@algolia/client-common" "5.20.0" 140 | 141 | "@algolia/requester-node-http@5.20.0": 142 | version "5.20.0" 143 | resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-5.20.0.tgz#920a9488be07c0521951da92f36be61f47c4d0e0" 144 | integrity sha512-kmtQClq/w3vtPteDSPvaW9SPZL/xrIgMrxZyAgsFwrJk0vJxqyC5/hwHmrCraDnStnGSADnLpBf4SpZnwnkwWw== 145 | dependencies: 146 | "@algolia/client-common" "5.20.0" 147 | 148 | "@babel/helper-string-parser@^7.24.8": 149 | version "7.24.8" 150 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d" 151 | integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ== 152 | 153 | "@babel/helper-validator-identifier@^7.24.7": 154 | version "7.24.7" 155 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db" 156 | integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== 157 | 158 | "@babel/parser@^7.25.3": 159 | version "7.25.6" 160 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.6.tgz#85660c5ef388cbbf6e3d2a694ee97a38f18afe2f" 161 | integrity sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q== 162 | dependencies: 163 | "@babel/types" "^7.25.6" 164 | 165 | "@babel/types@^7.25.6": 166 | version "7.25.6" 167 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.6.tgz#893942ddb858f32ae7a004ec9d3a76b3463ef8e6" 168 | integrity sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw== 169 | dependencies: 170 | "@babel/helper-string-parser" "^7.24.8" 171 | "@babel/helper-validator-identifier" "^7.24.7" 172 | to-fast-properties "^2.0.0" 173 | 174 | "@docsearch/css@3.8.2": 175 | version "3.8.2" 176 | resolved "https://registry.yarnpkg.com/@docsearch/css/-/css-3.8.2.tgz#7973ceb6892c30f154ba254cd05c562257a44977" 177 | integrity sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ== 178 | 179 | "@docsearch/js@3.8.2": 180 | version "3.8.2" 181 | resolved "https://registry.yarnpkg.com/@docsearch/js/-/js-3.8.2.tgz#bdcfc9837700eb38453b88e211ab5cc5a3813cc6" 182 | integrity sha512-Q5wY66qHn0SwA7Taa0aDbHiJvaFJLOJyHmooQ7y8hlwwQLQ/5WwCcoX0g7ii04Qi2DJlHsd0XXzJ8Ypw9+9YmQ== 183 | dependencies: 184 | "@docsearch/react" "3.8.2" 185 | preact "^10.0.0" 186 | 187 | "@docsearch/react@3.8.2": 188 | version "3.8.2" 189 | resolved "https://registry.yarnpkg.com/@docsearch/react/-/react-3.8.2.tgz#7b11d39b61c976c0aa9fbde66e6b73b30f3acd42" 190 | integrity sha512-xCRrJQlTt8N9GU0DG4ptwHRkfnSnD/YpdeaXe02iKfqs97TkZJv60yE+1eq/tjPcVnTW8dP5qLP7itifFVV5eg== 191 | dependencies: 192 | "@algolia/autocomplete-core" "1.17.7" 193 | "@algolia/autocomplete-preset-algolia" "1.17.7" 194 | "@docsearch/css" "3.8.2" 195 | algoliasearch "^5.14.2" 196 | 197 | "@esbuild/aix-ppc64@0.21.5": 198 | version "0.21.5" 199 | resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" 200 | integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== 201 | 202 | "@esbuild/android-arm64@0.21.5": 203 | version "0.21.5" 204 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" 205 | integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== 206 | 207 | "@esbuild/android-arm@0.21.5": 208 | version "0.21.5" 209 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" 210 | integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== 211 | 212 | "@esbuild/android-x64@0.21.5": 213 | version "0.21.5" 214 | resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" 215 | integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== 216 | 217 | "@esbuild/darwin-arm64@0.21.5": 218 | version "0.21.5" 219 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" 220 | integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== 221 | 222 | "@esbuild/darwin-x64@0.21.5": 223 | version "0.21.5" 224 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" 225 | integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== 226 | 227 | "@esbuild/freebsd-arm64@0.21.5": 228 | version "0.21.5" 229 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" 230 | integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== 231 | 232 | "@esbuild/freebsd-x64@0.21.5": 233 | version "0.21.5" 234 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" 235 | integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== 236 | 237 | "@esbuild/linux-arm64@0.21.5": 238 | version "0.21.5" 239 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" 240 | integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== 241 | 242 | "@esbuild/linux-arm@0.21.5": 243 | version "0.21.5" 244 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" 245 | integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== 246 | 247 | "@esbuild/linux-ia32@0.21.5": 248 | version "0.21.5" 249 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" 250 | integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== 251 | 252 | "@esbuild/linux-loong64@0.21.5": 253 | version "0.21.5" 254 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" 255 | integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== 256 | 257 | "@esbuild/linux-mips64el@0.21.5": 258 | version "0.21.5" 259 | resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" 260 | integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== 261 | 262 | "@esbuild/linux-ppc64@0.21.5": 263 | version "0.21.5" 264 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" 265 | integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== 266 | 267 | "@esbuild/linux-riscv64@0.21.5": 268 | version "0.21.5" 269 | resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" 270 | integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== 271 | 272 | "@esbuild/linux-s390x@0.21.5": 273 | version "0.21.5" 274 | resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" 275 | integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== 276 | 277 | "@esbuild/linux-x64@0.21.5": 278 | version "0.21.5" 279 | resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" 280 | integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== 281 | 282 | "@esbuild/netbsd-x64@0.21.5": 283 | version "0.21.5" 284 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" 285 | integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== 286 | 287 | "@esbuild/openbsd-x64@0.21.5": 288 | version "0.21.5" 289 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" 290 | integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== 291 | 292 | "@esbuild/sunos-x64@0.21.5": 293 | version "0.21.5" 294 | resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" 295 | integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== 296 | 297 | "@esbuild/win32-arm64@0.21.5": 298 | version "0.21.5" 299 | resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" 300 | integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== 301 | 302 | "@esbuild/win32-ia32@0.21.5": 303 | version "0.21.5" 304 | resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" 305 | integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== 306 | 307 | "@esbuild/win32-x64@0.21.5": 308 | version "0.21.5" 309 | resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" 310 | integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== 311 | 312 | "@iconify-json/simple-icons@^1.2.21": 313 | version "1.2.21" 314 | resolved "https://registry.yarnpkg.com/@iconify-json/simple-icons/-/simple-icons-1.2.21.tgz#89980b3901de08d1d38dcf1f3e87957e31551245" 315 | integrity sha512-aqbIuVshMZ2fNEhm25//9DoKudboXF3CpoEQJJlHl9gVSVNOTr4cgaCIZvgSEYmys2HHEfmhcpoZIhoEFZS8SQ== 316 | dependencies: 317 | "@iconify/types" "*" 318 | 319 | "@iconify/types@*": 320 | version "2.0.0" 321 | resolved "https://registry.yarnpkg.com/@iconify/types/-/types-2.0.0.tgz#ab0e9ea681d6c8a1214f30cd741fe3a20cc57f57" 322 | integrity sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg== 323 | 324 | "@jridgewell/sourcemap-codec@^1.5.0": 325 | version "1.5.0" 326 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" 327 | integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== 328 | 329 | "@rollup/rollup-android-arm-eabi@4.22.4": 330 | version "4.22.4" 331 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.4.tgz#8b613b9725e8f9479d142970b106b6ae878610d5" 332 | integrity sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w== 333 | 334 | "@rollup/rollup-android-arm64@4.22.4": 335 | version "4.22.4" 336 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.4.tgz#654ca1049189132ff602bfcf8df14c18da1f15fb" 337 | integrity sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA== 338 | 339 | "@rollup/rollup-darwin-arm64@4.22.4": 340 | version "4.22.4" 341 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.4.tgz#6d241d099d1518ef0c2205d96b3fa52e0fe1954b" 342 | integrity sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q== 343 | 344 | "@rollup/rollup-darwin-x64@4.22.4": 345 | version "4.22.4" 346 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.4.tgz#42bd19d292a57ee11734c980c4650de26b457791" 347 | integrity sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw== 348 | 349 | "@rollup/rollup-linux-arm-gnueabihf@4.22.4": 350 | version "4.22.4" 351 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.4.tgz#f23555ee3d8fe941c5c5fd458cd22b65eb1c2232" 352 | integrity sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ== 353 | 354 | "@rollup/rollup-linux-arm-musleabihf@4.22.4": 355 | version "4.22.4" 356 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.4.tgz#f3bbd1ae2420f5539d40ac1fde2b38da67779baa" 357 | integrity sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg== 358 | 359 | "@rollup/rollup-linux-arm64-gnu@4.22.4": 360 | version "4.22.4" 361 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.4.tgz#7abe900120113e08a1f90afb84c7c28774054d15" 362 | integrity sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw== 363 | 364 | "@rollup/rollup-linux-arm64-musl@4.22.4": 365 | version "4.22.4" 366 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.4.tgz#9e655285c8175cd44f57d6a1e8e5dedfbba1d820" 367 | integrity sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA== 368 | 369 | "@rollup/rollup-linux-powerpc64le-gnu@4.22.4": 370 | version "4.22.4" 371 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.4.tgz#9a79ae6c9e9d8fe83d49e2712ecf4302db5bef5e" 372 | integrity sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg== 373 | 374 | "@rollup/rollup-linux-riscv64-gnu@4.22.4": 375 | version "4.22.4" 376 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.4.tgz#67ac70eca4ace8e2942fabca95164e8874ab8128" 377 | integrity sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA== 378 | 379 | "@rollup/rollup-linux-s390x-gnu@4.22.4": 380 | version "4.22.4" 381 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.4.tgz#9f883a7440f51a22ed7f99e1d070bd84ea5005fc" 382 | integrity sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q== 383 | 384 | "@rollup/rollup-linux-x64-gnu@4.22.4": 385 | version "4.22.4" 386 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.4.tgz#70116ae6c577fe367f58559e2cffb5641a1dd9d0" 387 | integrity sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg== 388 | 389 | "@rollup/rollup-linux-x64-musl@4.22.4": 390 | version "4.22.4" 391 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.4.tgz#f473f88219feb07b0b98b53a7923be716d1d182f" 392 | integrity sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g== 393 | 394 | "@rollup/rollup-win32-arm64-msvc@4.22.4": 395 | version "4.22.4" 396 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.4.tgz#4349482d17f5d1c58604d1c8900540d676f420e0" 397 | integrity sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw== 398 | 399 | "@rollup/rollup-win32-ia32-msvc@4.22.4": 400 | version "4.22.4" 401 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.4.tgz#a6fc39a15db618040ec3c2a24c1e26cb5f4d7422" 402 | integrity sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g== 403 | 404 | "@rollup/rollup-win32-x64-msvc@4.22.4": 405 | version "4.22.4" 406 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.4.tgz#3dd5d53e900df2a40841882c02e56f866c04d202" 407 | integrity sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q== 408 | 409 | "@shikijs/core@2.1.0", "@shikijs/core@^2.1.0": 410 | version "2.1.0" 411 | resolved "https://registry.yarnpkg.com/@shikijs/core/-/core-2.1.0.tgz#e767dddf2034ae4504e36210bbd881a94525f321" 412 | integrity sha512-v795KDmvs+4oV0XD05YLzfDMe9ISBgNjtFxP4PAEv5DqyeghO1/TwDqs9ca5/E6fuO95IcAcWqR6cCX9TnqLZA== 413 | dependencies: 414 | "@shikijs/engine-javascript" "2.1.0" 415 | "@shikijs/engine-oniguruma" "2.1.0" 416 | "@shikijs/types" "2.1.0" 417 | "@shikijs/vscode-textmate" "^10.0.1" 418 | "@types/hast" "^3.0.4" 419 | hast-util-to-html "^9.0.4" 420 | 421 | "@shikijs/engine-javascript@2.1.0": 422 | version "2.1.0" 423 | resolved "https://registry.yarnpkg.com/@shikijs/engine-javascript/-/engine-javascript-2.1.0.tgz#5645a04629cd85c433354b76d601ce7127eb502b" 424 | integrity sha512-cgIUdAliOsoaa0rJz/z+jvhrpRd+fVAoixVFEVxUq5FA+tHgBZAIfVJSgJNVRj2hs/wZ1+4hMe82eKAThVh0nQ== 425 | dependencies: 426 | "@shikijs/types" "2.1.0" 427 | "@shikijs/vscode-textmate" "^10.0.1" 428 | oniguruma-to-es "^2.3.0" 429 | 430 | "@shikijs/engine-oniguruma@2.1.0": 431 | version "2.1.0" 432 | resolved "https://registry.yarnpkg.com/@shikijs/engine-oniguruma/-/engine-oniguruma-2.1.0.tgz#0990713d9ce4796172db47321a9b32fa9036003c" 433 | integrity sha512-Ujik33wEDqgqY2WpjRDUBECGcKPv3eGGkoXPujIXvokLaRmGky8NisSk8lHUGeSFxo/Cz5sgFej9sJmA9yeepg== 434 | dependencies: 435 | "@shikijs/types" "2.1.0" 436 | "@shikijs/vscode-textmate" "^10.0.1" 437 | 438 | "@shikijs/langs@2.1.0": 439 | version "2.1.0" 440 | resolved "https://registry.yarnpkg.com/@shikijs/langs/-/langs-2.1.0.tgz#fdc88584b3f174b3d8aec24a3a706eb897edf4ed" 441 | integrity sha512-Jn0gS4rPgerMDPj1ydjgFzZr5fAIoMYz4k7ZT3LJxWWBWA6lokK0pumUwVtb+MzXtlpjxOaQejLprmLbvMZyww== 442 | dependencies: 443 | "@shikijs/types" "2.1.0" 444 | 445 | "@shikijs/themes@2.1.0": 446 | version "2.1.0" 447 | resolved "https://registry.yarnpkg.com/@shikijs/themes/-/themes-2.1.0.tgz#b482694577c4689746fabee8bac439a6a1d087a1" 448 | integrity sha512-oS2mU6+bz+8TKutsjBxBA7Z3vrQk21RCmADLpnu8cy3tZD6Rw0FKqDyXNtwX52BuIDKHxZNmRlTdG3vtcYv3NQ== 449 | dependencies: 450 | "@shikijs/types" "2.1.0" 451 | 452 | "@shikijs/transformers@^2.1.0": 453 | version "2.1.0" 454 | resolved "https://registry.yarnpkg.com/@shikijs/transformers/-/transformers-2.1.0.tgz#cb381806a2f6ff0249225b6f10bf14ba20631425" 455 | integrity sha512-3sfvh6OKUVkT5wZFU1xxiq1qqNIuCwUY3yOb9ZGm19y80UZ/eoroLE2orGNzfivyTxR93GfXXZC/ghPR0/SBow== 456 | dependencies: 457 | "@shikijs/core" "2.1.0" 458 | "@shikijs/types" "2.1.0" 459 | 460 | "@shikijs/types@2.1.0", "@shikijs/types@^2.1.0": 461 | version "2.1.0" 462 | resolved "https://registry.yarnpkg.com/@shikijs/types/-/types-2.1.0.tgz#38e3c241263de1b5c30cbd9b9d03eb34cebd842e" 463 | integrity sha512-OFOdHA6VEVbiQvepJ8yqicC6VmBrKxFFhM2EsHHrZESqLVAXOSeRDiuSYV185lIgp15TVic5vYBYNhTsk1xHLg== 464 | dependencies: 465 | "@shikijs/vscode-textmate" "^10.0.1" 466 | "@types/hast" "^3.0.4" 467 | 468 | "@shikijs/vscode-textmate@^10.0.1": 469 | version "10.0.1" 470 | resolved "https://registry.yarnpkg.com/@shikijs/vscode-textmate/-/vscode-textmate-10.0.1.tgz#d06d45b67ac5e9b0088e3f67ebd3f25c6c3d711a" 471 | integrity sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg== 472 | 473 | "@types/estree@1.0.5": 474 | version "1.0.5" 475 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" 476 | integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== 477 | 478 | "@types/hast@^3.0.0", "@types/hast@^3.0.4": 479 | version "3.0.4" 480 | resolved "https://registry.yarnpkg.com/@types/hast/-/hast-3.0.4.tgz#1d6b39993b82cea6ad783945b0508c25903e15aa" 481 | integrity sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ== 482 | dependencies: 483 | "@types/unist" "*" 484 | 485 | "@types/linkify-it@^5": 486 | version "5.0.0" 487 | resolved "https://registry.yarnpkg.com/@types/linkify-it/-/linkify-it-5.0.0.tgz#21413001973106cda1c3a9b91eedd4ccd5469d76" 488 | integrity sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q== 489 | 490 | "@types/markdown-it@^14.1.2": 491 | version "14.1.2" 492 | resolved "https://registry.yarnpkg.com/@types/markdown-it/-/markdown-it-14.1.2.tgz#57f2532a0800067d9b934f3521429a2e8bfb4c61" 493 | integrity sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog== 494 | dependencies: 495 | "@types/linkify-it" "^5" 496 | "@types/mdurl" "^2" 497 | 498 | "@types/mdast@^4.0.0": 499 | version "4.0.4" 500 | resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-4.0.4.tgz#7ccf72edd2f1aa7dd3437e180c64373585804dd6" 501 | integrity sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA== 502 | dependencies: 503 | "@types/unist" "*" 504 | 505 | "@types/mdurl@^2": 506 | version "2.0.0" 507 | resolved "https://registry.yarnpkg.com/@types/mdurl/-/mdurl-2.0.0.tgz#d43878b5b20222682163ae6f897b20447233bdfd" 508 | integrity sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg== 509 | 510 | "@types/unist@*": 511 | version "3.0.2" 512 | resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.2.tgz#6dd61e43ef60b34086287f83683a5c1b2dc53d20" 513 | integrity sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ== 514 | 515 | "@types/unist@^3.0.0": 516 | version "3.0.3" 517 | resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.3.tgz#acaab0f919ce69cce629c2d4ed2eb4adc1b6c20c" 518 | integrity sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q== 519 | 520 | "@types/web-bluetooth@^0.0.20": 521 | version "0.0.20" 522 | resolved "https://registry.yarnpkg.com/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz#f066abfcd1cbe66267cdbbf0de010d8a41b41597" 523 | integrity sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow== 524 | 525 | "@ungap/structured-clone@^1.0.0": 526 | version "1.2.0" 527 | resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" 528 | integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== 529 | 530 | "@vitejs/plugin-vue@^5.2.1": 531 | version "5.2.1" 532 | resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.2.1.tgz#d1491f678ee3af899f7ae57d9c21dc52a65c7133" 533 | integrity sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ== 534 | 535 | "@vue/compiler-core@3.5.13": 536 | version "3.5.13" 537 | resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.13.tgz#b0ae6c4347f60c03e849a05d34e5bf747c9bda05" 538 | integrity sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q== 539 | dependencies: 540 | "@babel/parser" "^7.25.3" 541 | "@vue/shared" "3.5.13" 542 | entities "^4.5.0" 543 | estree-walker "^2.0.2" 544 | source-map-js "^1.2.0" 545 | 546 | "@vue/compiler-dom@3.5.13": 547 | version "3.5.13" 548 | resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz#bb1b8758dbc542b3658dda973b98a1c9311a8a58" 549 | integrity sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA== 550 | dependencies: 551 | "@vue/compiler-core" "3.5.13" 552 | "@vue/shared" "3.5.13" 553 | 554 | "@vue/compiler-sfc@3.5.13": 555 | version "3.5.13" 556 | resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz#461f8bd343b5c06fac4189c4fef8af32dea82b46" 557 | integrity sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ== 558 | dependencies: 559 | "@babel/parser" "^7.25.3" 560 | "@vue/compiler-core" "3.5.13" 561 | "@vue/compiler-dom" "3.5.13" 562 | "@vue/compiler-ssr" "3.5.13" 563 | "@vue/shared" "3.5.13" 564 | estree-walker "^2.0.2" 565 | magic-string "^0.30.11" 566 | postcss "^8.4.48" 567 | source-map-js "^1.2.0" 568 | 569 | "@vue/compiler-ssr@3.5.13": 570 | version "3.5.13" 571 | resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz#e771adcca6d3d000f91a4277c972a996d07f43ba" 572 | integrity sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA== 573 | dependencies: 574 | "@vue/compiler-dom" "3.5.13" 575 | "@vue/shared" "3.5.13" 576 | 577 | "@vue/devtools-api@^7.7.0": 578 | version "7.7.0" 579 | resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-7.7.0.tgz#2fcc1fd8800a3fd3942ca6716156c0cbd403dbd4" 580 | integrity sha512-bHEv6kT85BHtyGgDhE07bAUMAy7zpv6nnR004nSTd0wWMrAOtcrYoXO5iyr20Hkf5jR8obQOfS3byW+I3l2CCA== 581 | dependencies: 582 | "@vue/devtools-kit" "^7.7.0" 583 | 584 | "@vue/devtools-kit@^7.7.0": 585 | version "7.7.0" 586 | resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.7.0.tgz#6800f57e53c06bff5c0f80622413c5e0c67ef428" 587 | integrity sha512-5cvZ+6SA88zKC8XiuxUfqpdTwVjJbvYnQZY5NReh7qlSGPvVDjjzyEtW+gdzLXNSd8tStgOjAdMCpvDQamUXtA== 588 | dependencies: 589 | "@vue/devtools-shared" "^7.7.0" 590 | birpc "^0.2.19" 591 | hookable "^5.5.3" 592 | mitt "^3.0.1" 593 | perfect-debounce "^1.0.0" 594 | speakingurl "^14.0.1" 595 | superjson "^2.2.1" 596 | 597 | "@vue/devtools-shared@^7.7.0": 598 | version "7.7.0" 599 | resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-7.7.0.tgz#acc976303c5085c981b8fc866e027592dfaa9d87" 600 | integrity sha512-jtlQY26R5thQxW9YQTpXbI0HoK0Wf9Rd4ekidOkRvSy7ChfK0kIU6vvcBtjj87/EcpeOSK49fZAicaFNJcoTcQ== 601 | dependencies: 602 | rfdc "^1.4.1" 603 | 604 | "@vue/reactivity@3.5.13": 605 | version "3.5.13" 606 | resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.13.tgz#b41ff2bb865e093899a22219f5b25f97b6fe155f" 607 | integrity sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg== 608 | dependencies: 609 | "@vue/shared" "3.5.13" 610 | 611 | "@vue/runtime-core@3.5.13": 612 | version "3.5.13" 613 | resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.13.tgz#1fafa4bf0b97af0ebdd9dbfe98cd630da363a455" 614 | integrity sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw== 615 | dependencies: 616 | "@vue/reactivity" "3.5.13" 617 | "@vue/shared" "3.5.13" 618 | 619 | "@vue/runtime-dom@3.5.13": 620 | version "3.5.13" 621 | resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz#610fc795de9246300e8ae8865930d534e1246215" 622 | integrity sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog== 623 | dependencies: 624 | "@vue/reactivity" "3.5.13" 625 | "@vue/runtime-core" "3.5.13" 626 | "@vue/shared" "3.5.13" 627 | csstype "^3.1.3" 628 | 629 | "@vue/server-renderer@3.5.13": 630 | version "3.5.13" 631 | resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.13.tgz#429ead62ee51de789646c22efe908e489aad46f7" 632 | integrity sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA== 633 | dependencies: 634 | "@vue/compiler-ssr" "3.5.13" 635 | "@vue/shared" "3.5.13" 636 | 637 | "@vue/shared@3.5.13", "@vue/shared@^3.5.13": 638 | version "3.5.13" 639 | resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.13.tgz#87b309a6379c22b926e696893237826f64339b6f" 640 | integrity sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ== 641 | 642 | "@vueuse/core@12.5.0", "@vueuse/core@^12.4.0": 643 | version "12.5.0" 644 | resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-12.5.0.tgz#1321c75132c4f20f223e6313587ebeeec79957f2" 645 | integrity sha512-GVyH1iYqNANwcahAx8JBm6awaNgvR/SwZ1fjr10b8l1HIgDp82ngNbfzJUgOgWEoxjL+URAggnlilAEXwCOZtg== 646 | dependencies: 647 | "@types/web-bluetooth" "^0.0.20" 648 | "@vueuse/metadata" "12.5.0" 649 | "@vueuse/shared" "12.5.0" 650 | vue "^3.5.13" 651 | 652 | "@vueuse/integrations@^12.4.0": 653 | version "12.5.0" 654 | resolved "https://registry.yarnpkg.com/@vueuse/integrations/-/integrations-12.5.0.tgz#6496ea24772d087c8fec3973a471a6ab50f9e7c0" 655 | integrity sha512-HYLt8M6mjUfcoUOzyBcX2RjpfapIwHPBmQJtTmXOQW845Y/Osu9VuTJ5kPvnmWJ6IUa05WpblfOwZ+P0G4iZsQ== 656 | dependencies: 657 | "@vueuse/core" "12.5.0" 658 | "@vueuse/shared" "12.5.0" 659 | vue "^3.5.13" 660 | 661 | "@vueuse/metadata@12.5.0": 662 | version "12.5.0" 663 | resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-12.5.0.tgz#8f1778a2894bdda2bf458054377a379d40276306" 664 | integrity sha512-Ui7Lo2a7AxrMAXRF+fAp9QsXuwTeeZ8fIB9wsLHqzq9MQk+2gMYE2IGJW48VMJ8ecvCB3z3GsGLKLbSasQ5Qlg== 665 | 666 | "@vueuse/shared@12.5.0": 667 | version "12.5.0" 668 | resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-12.5.0.tgz#b93af7ab0fd6a8d879808c9bf37d540dac01da13" 669 | integrity sha512-vMpcL1lStUU6O+kdj6YdHDixh0odjPAUM15uJ9f7MY781jcYkIwFA4iv2EfoIPO6vBmvutI1HxxAwmf0cx5ISQ== 670 | dependencies: 671 | vue "^3.5.13" 672 | 673 | algoliasearch@^5.14.2: 674 | version "5.20.0" 675 | resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-5.20.0.tgz#15f4eb6428f258d083d1cbc47d04a8d66eecba5f" 676 | integrity sha512-groO71Fvi5SWpxjI9Ia+chy0QBwT61mg6yxJV27f5YFf+Mw+STT75K6SHySpP8Co5LsCrtsbCH5dJZSRtkSKaQ== 677 | dependencies: 678 | "@algolia/client-abtesting" "5.20.0" 679 | "@algolia/client-analytics" "5.20.0" 680 | "@algolia/client-common" "5.20.0" 681 | "@algolia/client-insights" "5.20.0" 682 | "@algolia/client-personalization" "5.20.0" 683 | "@algolia/client-query-suggestions" "5.20.0" 684 | "@algolia/client-search" "5.20.0" 685 | "@algolia/ingestion" "1.20.0" 686 | "@algolia/monitoring" "1.20.0" 687 | "@algolia/recommend" "5.20.0" 688 | "@algolia/requester-browser-xhr" "5.20.0" 689 | "@algolia/requester-fetch" "5.20.0" 690 | "@algolia/requester-node-http" "5.20.0" 691 | 692 | birpc@^0.2.19: 693 | version "0.2.19" 694 | resolved "https://registry.yarnpkg.com/birpc/-/birpc-0.2.19.tgz#cdd183a4a70ba103127d49765b4a71349da5a0ca" 695 | integrity sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ== 696 | 697 | ccount@^2.0.0: 698 | version "2.0.1" 699 | resolved "https://registry.yarnpkg.com/ccount/-/ccount-2.0.1.tgz#17a3bf82302e0870d6da43a01311a8bc02a3ecf5" 700 | integrity sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg== 701 | 702 | character-entities-html4@^2.0.0: 703 | version "2.1.0" 704 | resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz#1f1adb940c971a4b22ba39ddca6b618dc6e56b2b" 705 | integrity sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA== 706 | 707 | character-entities-legacy@^3.0.0: 708 | version "3.0.0" 709 | resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz#76bc83a90738901d7bc223a9e93759fdd560125b" 710 | integrity sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ== 711 | 712 | comma-separated-tokens@^2.0.0: 713 | version "2.0.3" 714 | resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee" 715 | integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg== 716 | 717 | copy-anything@^3.0.2: 718 | version "3.0.5" 719 | resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-3.0.5.tgz#2d92dce8c498f790fa7ad16b01a1ae5a45b020a0" 720 | integrity sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w== 721 | dependencies: 722 | is-what "^4.1.8" 723 | 724 | csstype@^3.1.3: 725 | version "3.1.3" 726 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" 727 | integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== 728 | 729 | dequal@^2.0.0: 730 | version "2.0.3" 731 | resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" 732 | integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== 733 | 734 | devlop@^1.0.0: 735 | version "1.1.0" 736 | resolved "https://registry.yarnpkg.com/devlop/-/devlop-1.1.0.tgz#4db7c2ca4dc6e0e834c30be70c94bbc976dc7018" 737 | integrity sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA== 738 | dependencies: 739 | dequal "^2.0.0" 740 | 741 | emoji-regex-xs@^1.0.0: 742 | version "1.0.0" 743 | resolved "https://registry.yarnpkg.com/emoji-regex-xs/-/emoji-regex-xs-1.0.0.tgz#e8af22e5d9dbd7f7f22d280af3d19d2aab5b0724" 744 | integrity sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg== 745 | 746 | entities@^4.5.0: 747 | version "4.5.0" 748 | resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" 749 | integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== 750 | 751 | esbuild@^0.21.3: 752 | version "0.21.5" 753 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" 754 | integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== 755 | optionalDependencies: 756 | "@esbuild/aix-ppc64" "0.21.5" 757 | "@esbuild/android-arm" "0.21.5" 758 | "@esbuild/android-arm64" "0.21.5" 759 | "@esbuild/android-x64" "0.21.5" 760 | "@esbuild/darwin-arm64" "0.21.5" 761 | "@esbuild/darwin-x64" "0.21.5" 762 | "@esbuild/freebsd-arm64" "0.21.5" 763 | "@esbuild/freebsd-x64" "0.21.5" 764 | "@esbuild/linux-arm" "0.21.5" 765 | "@esbuild/linux-arm64" "0.21.5" 766 | "@esbuild/linux-ia32" "0.21.5" 767 | "@esbuild/linux-loong64" "0.21.5" 768 | "@esbuild/linux-mips64el" "0.21.5" 769 | "@esbuild/linux-ppc64" "0.21.5" 770 | "@esbuild/linux-riscv64" "0.21.5" 771 | "@esbuild/linux-s390x" "0.21.5" 772 | "@esbuild/linux-x64" "0.21.5" 773 | "@esbuild/netbsd-x64" "0.21.5" 774 | "@esbuild/openbsd-x64" "0.21.5" 775 | "@esbuild/sunos-x64" "0.21.5" 776 | "@esbuild/win32-arm64" "0.21.5" 777 | "@esbuild/win32-ia32" "0.21.5" 778 | "@esbuild/win32-x64" "0.21.5" 779 | 780 | estree-walker@^2.0.2: 781 | version "2.0.2" 782 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" 783 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== 784 | 785 | focus-trap@^7.6.4: 786 | version "7.6.4" 787 | resolved "https://registry.yarnpkg.com/focus-trap/-/focus-trap-7.6.4.tgz#455ec5c51fee5ae99604ca15142409ffbbf84db9" 788 | integrity sha512-xx560wGBk7seZ6y933idtjJQc1l+ck+pI3sKvhKozdBV1dRZoKhkW5xoCaFv9tQiX5RH1xfSxjuNu6g+lmN/gw== 789 | dependencies: 790 | tabbable "^6.2.0" 791 | 792 | fsevents@~2.3.2: 793 | version "2.3.2" 794 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 795 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 796 | 797 | fsevents@~2.3.3: 798 | version "2.3.3" 799 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" 800 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 801 | 802 | hast-util-to-html@^9.0.4: 803 | version "9.0.4" 804 | resolved "https://registry.yarnpkg.com/hast-util-to-html/-/hast-util-to-html-9.0.4.tgz#d689c118c875aab1def692c58603e34335a0f5c5" 805 | integrity sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA== 806 | dependencies: 807 | "@types/hast" "^3.0.0" 808 | "@types/unist" "^3.0.0" 809 | ccount "^2.0.0" 810 | comma-separated-tokens "^2.0.0" 811 | hast-util-whitespace "^3.0.0" 812 | html-void-elements "^3.0.0" 813 | mdast-util-to-hast "^13.0.0" 814 | property-information "^6.0.0" 815 | space-separated-tokens "^2.0.0" 816 | stringify-entities "^4.0.0" 817 | zwitch "^2.0.4" 818 | 819 | hast-util-whitespace@^3.0.0: 820 | version "3.0.0" 821 | resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz#7778ed9d3c92dd9e8c5c8f648a49c21fc51cb621" 822 | integrity sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw== 823 | dependencies: 824 | "@types/hast" "^3.0.0" 825 | 826 | hookable@^5.5.3: 827 | version "5.5.3" 828 | resolved "https://registry.yarnpkg.com/hookable/-/hookable-5.5.3.tgz#6cfc358984a1ef991e2518cb9ed4a778bbd3215d" 829 | integrity sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ== 830 | 831 | html-void-elements@^3.0.0: 832 | version "3.0.0" 833 | resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-3.0.0.tgz#fc9dbd84af9e747249034d4d62602def6517f1d7" 834 | integrity sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg== 835 | 836 | is-what@^4.1.8: 837 | version "4.1.16" 838 | resolved "https://registry.yarnpkg.com/is-what/-/is-what-4.1.16.tgz#1ad860a19da8b4895ad5495da3182ce2acdd7a6f" 839 | integrity sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A== 840 | 841 | magic-string@^0.30.11: 842 | version "0.30.11" 843 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.11.tgz#301a6f93b3e8c2cb13ac1a7a673492c0dfd12954" 844 | integrity sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A== 845 | dependencies: 846 | "@jridgewell/sourcemap-codec" "^1.5.0" 847 | 848 | mark.js@8.11.1: 849 | version "8.11.1" 850 | resolved "https://registry.yarnpkg.com/mark.js/-/mark.js-8.11.1.tgz#180f1f9ebef8b0e638e4166ad52db879beb2ffc5" 851 | integrity sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ== 852 | 853 | mdast-util-to-hast@^13.0.0: 854 | version "13.2.0" 855 | resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz#5ca58e5b921cc0a3ded1bc02eed79a4fe4fe41f4" 856 | integrity sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA== 857 | dependencies: 858 | "@types/hast" "^3.0.0" 859 | "@types/mdast" "^4.0.0" 860 | "@ungap/structured-clone" "^1.0.0" 861 | devlop "^1.0.0" 862 | micromark-util-sanitize-uri "^2.0.0" 863 | trim-lines "^3.0.0" 864 | unist-util-position "^5.0.0" 865 | unist-util-visit "^5.0.0" 866 | vfile "^6.0.0" 867 | 868 | micromark-util-character@^2.0.0: 869 | version "2.1.0" 870 | resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-2.1.0.tgz#31320ace16b4644316f6bf057531689c71e2aee1" 871 | integrity sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ== 872 | dependencies: 873 | micromark-util-symbol "^2.0.0" 874 | micromark-util-types "^2.0.0" 875 | 876 | micromark-util-encode@^2.0.0: 877 | version "2.0.0" 878 | resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz#0921ac7953dc3f1fd281e3d1932decfdb9382ab1" 879 | integrity sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA== 880 | 881 | micromark-util-sanitize-uri@^2.0.0: 882 | version "2.0.0" 883 | resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz#ec8fbf0258e9e6d8f13d9e4770f9be64342673de" 884 | integrity sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw== 885 | dependencies: 886 | micromark-util-character "^2.0.0" 887 | micromark-util-encode "^2.0.0" 888 | micromark-util-symbol "^2.0.0" 889 | 890 | micromark-util-symbol@^2.0.0: 891 | version "2.0.0" 892 | resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz#12225c8f95edf8b17254e47080ce0862d5db8044" 893 | integrity sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw== 894 | 895 | micromark-util-types@^2.0.0: 896 | version "2.0.0" 897 | resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-2.0.0.tgz#63b4b7ffeb35d3ecf50d1ca20e68fc7caa36d95e" 898 | integrity sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w== 899 | 900 | minisearch@^7.1.1: 901 | version "7.1.1" 902 | resolved "https://registry.yarnpkg.com/minisearch/-/minisearch-7.1.1.tgz#901d0367f078233cdc7a10be7264e09c6248cf5f" 903 | integrity sha512-b3YZEYCEH4EdCAtYP7OlDyx7FdPwNzuNwLQ34SfJpM9dlbBZzeXndGavTrC+VCiRWomL21SWfMc6SCKO/U2ZNw== 904 | 905 | mitt@^3.0.1: 906 | version "3.0.1" 907 | resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.1.tgz#ea36cf0cc30403601ae074c8f77b7092cdab36d1" 908 | integrity sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw== 909 | 910 | nanoid@^3.3.7: 911 | version "3.3.8" 912 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf" 913 | integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== 914 | 915 | oniguruma-to-es@^2.3.0: 916 | version "2.3.0" 917 | resolved "https://registry.yarnpkg.com/oniguruma-to-es/-/oniguruma-to-es-2.3.0.tgz#35ea9104649b7c05f3963c6b3b474d964625028b" 918 | integrity sha512-bwALDxriqfKGfUufKGGepCzu9x7nJQuoRoAFp4AnwehhC2crqrDIAP/uN2qdlsAvSMpeRC3+Yzhqc7hLmle5+g== 919 | dependencies: 920 | emoji-regex-xs "^1.0.0" 921 | regex "^5.1.1" 922 | regex-recursion "^5.1.1" 923 | 924 | perfect-debounce@^1.0.0: 925 | version "1.0.0" 926 | resolved "https://registry.yarnpkg.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz#9c2e8bc30b169cc984a58b7d5b28049839591d2a" 927 | integrity sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA== 928 | 929 | picocolors@^1.1.0: 930 | version "1.1.0" 931 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" 932 | integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== 933 | 934 | picocolors@^1.1.1: 935 | version "1.1.1" 936 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" 937 | integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== 938 | 939 | postcss@^8.4.43: 940 | version "8.4.47" 941 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365" 942 | integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== 943 | dependencies: 944 | nanoid "^3.3.7" 945 | picocolors "^1.1.0" 946 | source-map-js "^1.2.1" 947 | 948 | postcss@^8.4.48: 949 | version "8.4.49" 950 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19" 951 | integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA== 952 | dependencies: 953 | nanoid "^3.3.7" 954 | picocolors "^1.1.1" 955 | source-map-js "^1.2.1" 956 | 957 | preact@^10.0.0: 958 | version "10.8.2" 959 | resolved "https://registry.yarnpkg.com/preact/-/preact-10.8.2.tgz#b8a614f5cc8ab0cd9e63337a3d60dc80410f4ed4" 960 | integrity sha512-AKGt0BsDSiAYzVS78jZ9qRwuorY2CoSZtf1iOC6gLb/3QyZt+fLT09aYJBjRc/BEcRc4j+j3ggERMdNE43i1LQ== 961 | 962 | property-information@^6.0.0: 963 | version "6.5.0" 964 | resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.5.0.tgz#6212fbb52ba757e92ef4fb9d657563b933b7ffec" 965 | integrity sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig== 966 | 967 | regex-recursion@^5.1.1: 968 | version "5.1.1" 969 | resolved "https://registry.yarnpkg.com/regex-recursion/-/regex-recursion-5.1.1.tgz#5a73772d18adbf00f57ad097bf54171b39d78f8b" 970 | integrity sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w== 971 | dependencies: 972 | regex "^5.1.1" 973 | regex-utilities "^2.3.0" 974 | 975 | regex-utilities@^2.3.0: 976 | version "2.3.0" 977 | resolved "https://registry.yarnpkg.com/regex-utilities/-/regex-utilities-2.3.0.tgz#87163512a15dce2908cf079c8960d5158ff43280" 978 | integrity sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng== 979 | 980 | regex@^5.1.1: 981 | version "5.1.1" 982 | resolved "https://registry.yarnpkg.com/regex/-/regex-5.1.1.tgz#cf798903f24d6fe6e531050a36686e082b29bd03" 983 | integrity sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw== 984 | dependencies: 985 | regex-utilities "^2.3.0" 986 | 987 | rfdc@^1.4.1: 988 | version "1.4.1" 989 | resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz#778f76c4fb731d93414e8f925fbecf64cce7f6ca" 990 | integrity sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA== 991 | 992 | rollup@^4.20.0: 993 | version "4.22.4" 994 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.22.4.tgz#4135a6446671cd2a2453e1ad42a45d5973ec3a0f" 995 | integrity sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A== 996 | dependencies: 997 | "@types/estree" "1.0.5" 998 | optionalDependencies: 999 | "@rollup/rollup-android-arm-eabi" "4.22.4" 1000 | "@rollup/rollup-android-arm64" "4.22.4" 1001 | "@rollup/rollup-darwin-arm64" "4.22.4" 1002 | "@rollup/rollup-darwin-x64" "4.22.4" 1003 | "@rollup/rollup-linux-arm-gnueabihf" "4.22.4" 1004 | "@rollup/rollup-linux-arm-musleabihf" "4.22.4" 1005 | "@rollup/rollup-linux-arm64-gnu" "4.22.4" 1006 | "@rollup/rollup-linux-arm64-musl" "4.22.4" 1007 | "@rollup/rollup-linux-powerpc64le-gnu" "4.22.4" 1008 | "@rollup/rollup-linux-riscv64-gnu" "4.22.4" 1009 | "@rollup/rollup-linux-s390x-gnu" "4.22.4" 1010 | "@rollup/rollup-linux-x64-gnu" "4.22.4" 1011 | "@rollup/rollup-linux-x64-musl" "4.22.4" 1012 | "@rollup/rollup-win32-arm64-msvc" "4.22.4" 1013 | "@rollup/rollup-win32-ia32-msvc" "4.22.4" 1014 | "@rollup/rollup-win32-x64-msvc" "4.22.4" 1015 | fsevents "~2.3.2" 1016 | 1017 | shiki@^2.1.0: 1018 | version "2.1.0" 1019 | resolved "https://registry.yarnpkg.com/shiki/-/shiki-2.1.0.tgz#49b9d612e613342ec2db8f18a44a246db4c5e323" 1020 | integrity sha512-yvKPdNGLXZv7WC4bl7JBbU3CEcUxnBanvMez8MG3gZXKpClGL4bHqFyLhTx+2zUvbjClUANs/S22HXb7aeOgmA== 1021 | dependencies: 1022 | "@shikijs/core" "2.1.0" 1023 | "@shikijs/engine-javascript" "2.1.0" 1024 | "@shikijs/engine-oniguruma" "2.1.0" 1025 | "@shikijs/langs" "2.1.0" 1026 | "@shikijs/themes" "2.1.0" 1027 | "@shikijs/types" "2.1.0" 1028 | "@shikijs/vscode-textmate" "^10.0.1" 1029 | "@types/hast" "^3.0.4" 1030 | 1031 | source-map-js@^1.2.0: 1032 | version "1.2.0" 1033 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" 1034 | integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== 1035 | 1036 | source-map-js@^1.2.1: 1037 | version "1.2.1" 1038 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" 1039 | integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== 1040 | 1041 | space-separated-tokens@^2.0.0: 1042 | version "2.0.2" 1043 | resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz#1ecd9d2350a3844572c3f4a312bceb018348859f" 1044 | integrity sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q== 1045 | 1046 | speakingurl@^14.0.1: 1047 | version "14.0.1" 1048 | resolved "https://registry.yarnpkg.com/speakingurl/-/speakingurl-14.0.1.tgz#f37ec8ddc4ab98e9600c1c9ec324a8c48d772a53" 1049 | integrity sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ== 1050 | 1051 | stringify-entities@^4.0.0: 1052 | version "4.0.4" 1053 | resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.4.tgz#b3b79ef5f277cc4ac73caeb0236c5ba939b3a4f3" 1054 | integrity sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg== 1055 | dependencies: 1056 | character-entities-html4 "^2.0.0" 1057 | character-entities-legacy "^3.0.0" 1058 | 1059 | superjson@^2.2.1: 1060 | version "2.2.1" 1061 | resolved "https://registry.yarnpkg.com/superjson/-/superjson-2.2.1.tgz#9377a7fa80fedb10c851c9dbffd942d4bcf79733" 1062 | integrity sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA== 1063 | dependencies: 1064 | copy-anything "^3.0.2" 1065 | 1066 | tabbable@^6.2.0: 1067 | version "6.2.0" 1068 | resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.2.0.tgz#732fb62bc0175cfcec257330be187dcfba1f3b97" 1069 | integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew== 1070 | 1071 | to-fast-properties@^2.0.0: 1072 | version "2.0.0" 1073 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 1074 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== 1075 | 1076 | trim-lines@^3.0.0: 1077 | version "3.0.1" 1078 | resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-3.0.1.tgz#d802e332a07df861c48802c04321017b1bd87338" 1079 | integrity sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg== 1080 | 1081 | unist-util-is@^6.0.0: 1082 | version "6.0.0" 1083 | resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-6.0.0.tgz#b775956486aff107a9ded971d996c173374be424" 1084 | integrity sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw== 1085 | dependencies: 1086 | "@types/unist" "^3.0.0" 1087 | 1088 | unist-util-position@^5.0.0: 1089 | version "5.0.0" 1090 | resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-5.0.0.tgz#678f20ab5ca1207a97d7ea8a388373c9cf896be4" 1091 | integrity sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA== 1092 | dependencies: 1093 | "@types/unist" "^3.0.0" 1094 | 1095 | unist-util-stringify-position@^4.0.0: 1096 | version "4.0.0" 1097 | resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz#449c6e21a880e0855bf5aabadeb3a740314abac2" 1098 | integrity sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ== 1099 | dependencies: 1100 | "@types/unist" "^3.0.0" 1101 | 1102 | unist-util-visit-parents@^6.0.0: 1103 | version "6.0.1" 1104 | resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz#4d5f85755c3b8f0dc69e21eca5d6d82d22162815" 1105 | integrity sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw== 1106 | dependencies: 1107 | "@types/unist" "^3.0.0" 1108 | unist-util-is "^6.0.0" 1109 | 1110 | unist-util-visit@^5.0.0: 1111 | version "5.0.0" 1112 | resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-5.0.0.tgz#a7de1f31f72ffd3519ea71814cccf5fd6a9217d6" 1113 | integrity sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg== 1114 | dependencies: 1115 | "@types/unist" "^3.0.0" 1116 | unist-util-is "^6.0.0" 1117 | unist-util-visit-parents "^6.0.0" 1118 | 1119 | vfile-message@^4.0.0: 1120 | version "4.0.2" 1121 | resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-4.0.2.tgz#c883c9f677c72c166362fd635f21fc165a7d1181" 1122 | integrity sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw== 1123 | dependencies: 1124 | "@types/unist" "^3.0.0" 1125 | unist-util-stringify-position "^4.0.0" 1126 | 1127 | vfile@^6.0.0: 1128 | version "6.0.3" 1129 | resolved "https://registry.yarnpkg.com/vfile/-/vfile-6.0.3.tgz#3652ab1c496531852bf55a6bac57af981ebc38ab" 1130 | integrity sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q== 1131 | dependencies: 1132 | "@types/unist" "^3.0.0" 1133 | vfile-message "^4.0.0" 1134 | 1135 | vite@^5.4.14: 1136 | version "5.4.14" 1137 | resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.14.tgz#ff8255edb02134df180dcfca1916c37a6abe8408" 1138 | integrity sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA== 1139 | dependencies: 1140 | esbuild "^0.21.3" 1141 | postcss "^8.4.43" 1142 | rollup "^4.20.0" 1143 | optionalDependencies: 1144 | fsevents "~2.3.3" 1145 | 1146 | vitepress@^1.6.3: 1147 | version "1.6.3" 1148 | resolved "https://registry.yarnpkg.com/vitepress/-/vitepress-1.6.3.tgz#4e4662ce2ad55ef64604ecf4f96231a8da2fe9ba" 1149 | integrity sha512-fCkfdOk8yRZT8GD9BFqusW3+GggWYZ/rYncOfmgcDtP3ualNHCAg+Robxp2/6xfH1WwPHtGpPwv7mbA3qomtBw== 1150 | dependencies: 1151 | "@docsearch/css" "3.8.2" 1152 | "@docsearch/js" "3.8.2" 1153 | "@iconify-json/simple-icons" "^1.2.21" 1154 | "@shikijs/core" "^2.1.0" 1155 | "@shikijs/transformers" "^2.1.0" 1156 | "@shikijs/types" "^2.1.0" 1157 | "@types/markdown-it" "^14.1.2" 1158 | "@vitejs/plugin-vue" "^5.2.1" 1159 | "@vue/devtools-api" "^7.7.0" 1160 | "@vue/shared" "^3.5.13" 1161 | "@vueuse/core" "^12.4.0" 1162 | "@vueuse/integrations" "^12.4.0" 1163 | focus-trap "^7.6.4" 1164 | mark.js "8.11.1" 1165 | minisearch "^7.1.1" 1166 | shiki "^2.1.0" 1167 | vite "^5.4.14" 1168 | vue "^3.5.13" 1169 | 1170 | vue@^3.5.13: 1171 | version "3.5.13" 1172 | resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.13.tgz#9f760a1a982b09c0c04a867903fc339c9f29ec0a" 1173 | integrity sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ== 1174 | dependencies: 1175 | "@vue/compiler-dom" "3.5.13" 1176 | "@vue/compiler-sfc" "3.5.13" 1177 | "@vue/runtime-dom" "3.5.13" 1178 | "@vue/server-renderer" "3.5.13" 1179 | "@vue/shared" "3.5.13" 1180 | 1181 | zwitch@^2.0.4: 1182 | version "2.0.4" 1183 | resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.4.tgz#c827d4b0acb76fc3e685a4c6ec2902d51070e9d7" 1184 | integrity sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A== 1185 | --------------------------------------------------------------------------------