├── .github ├── FUNDING.yml └── workflows │ └── discourse-plugin.yml ├── .gitignore ├── .prettierrc.cjs ├── .rubocop.yml ├── .template-lintrc.cjs ├── COPYRIGHT.txt ├── Gemfile ├── LICENSE ├── README.md ├── app ├── controllers │ └── ai_topic_summary │ │ ├── ai_summary_controller.rb │ │ └── vote_controller.rb ├── jobs │ ├── regular │ │ ├── ai_topic_summary_summarise_topic.rb │ │ └── ai_topic_summary_tag_embedding.rb │ └── scheduled │ │ └── ai_topic_summary_embeddings_set_completer.rb └── models │ └── ai_topic_summary │ └── tag_embedding.rb ├── assets ├── javascripts │ └── discourse │ │ ├── components │ │ ├── ai-topic-summary.gjs │ │ └── top-of-topic-attachment.gjs │ │ └── connectors │ │ └── topic-above-posts │ │ └── topic-above-posts.hbs └── stylesheets │ └── common │ └── ai_topic_summary.scss ├── config ├── locales │ ├── client.en.yml │ └── server.en.yml ├── routes.rb └── settings.yml ├── db └── migrate │ ├── 20240605010100_enable_pg_vector_plugin.rb │ ├── 20240605010101_create_ai_topic_summary_tag_embeddings_table.rb │ └── 20240605010105_create_ai_topic_summary_tag_embeddings_index.rb ├── eslint.config.mjs ├── lib └── ai_topic_summary │ ├── call_bot.rb │ ├── embedding_completionist.rb │ ├── embedding_process.rb │ ├── engine.rb │ ├── summarise.rb │ ├── tag_embedding_process.rb │ ├── topic_list_item_serializer_extension.rb │ └── topic_view_extension.rb ├── package.json ├── plugin.rb ├── pnpm-lock.yaml ├── spec ├── lib │ └── topic_view_spec.rb ├── plugin_helper.rb └── requests │ └── ai_topic_summary │ └── vote_controller_spec.rb └── test └── javascripts └── component └── ai-topic-summary-test.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [merefield] 2 | -------------------------------------------------------------------------------- /.github/workflows/discourse-plugin.yml: -------------------------------------------------------------------------------- 1 | name: Discourse Plugin 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | pull_request: 8 | 9 | jobs: 10 | ci: 11 | uses: discourse/.github/.github/workflows/discourse-plugin.yml@v1 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /gems 2 | /node_modules 3 | -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require("@discourse/lint-configs/prettier"); 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_gem: 2 | rubocop-discourse: default.yml 3 | 4 | RSpec/ContextWording: 5 | Enabled: false 6 | 7 | RSpec/DescribeClass: 8 | Enabled: false 9 | 10 | AllCops: 11 | Exclude: 12 | - "**/gems/**/*" 13 | - "**/vendor/**/*" 14 | -------------------------------------------------------------------------------- /.template-lintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require("@discourse/lint-configs/template-lint"); -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | All code in this repository is Copyright 2023 by Robert Barrow. 2 | 3 | This program is free software; you can redistribute it and/or modify 4 | it under the terms of the GNU General Public License as published by 5 | the Free Software Foundation; either version 2 of the License, or (at 6 | your option) any later version. 7 | 8 | This program is distributed in the hope that it will be useful, but 9 | WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 10 | or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 11 | for more details. 12 | 13 | You should have received a copy of the GNU General Public License 14 | along with this program as the file LICENSE.txt; if not, please see 15 | http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. 16 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source 'https://rubygems.org' 4 | 5 | group :development do 6 | gem 'rubocop-discourse' 7 | end 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #discourse-ai-topic-summary Uses a remote AI language model to prepare and post a summary of a Topic 2 | 3 | Want to discuss the plugin? The [relevant Topic is here.](https://meta.discourse.org/t/discourse-ai-topic-summary-automated-summaries-and-smart-tagging/256711?u=merefield) 4 | 5 | Works with [the sidebar framework, Bars!](https://github.com/merefield/discourse-tc-bars/tree/2b4fa16df6a2126e23dd2cc9ffb9a89e650f7bd8) 6 | -------------------------------------------------------------------------------- /app/controllers/ai_topic_summary/ai_summary_controller.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module AiTopicSummary 4 | class AiSummaryController < ::ApplicationController 5 | requires_plugin PLUGIN_NAME 6 | 7 | def index 8 | topic = Topic.find_by(id: params[:id]) 9 | 10 | guardian.ensure_can_see!(topic) 11 | 12 | raise Discourse::NotFound unless topic 13 | 14 | result = { 15 | ai_summary: topic.custom_fields['ai_summary'], 16 | topic_id: topic.id 17 | } 18 | render json: result 19 | end 20 | 21 | end 22 | end 23 | -------------------------------------------------------------------------------- /app/controllers/ai_topic_summary/vote_controller.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module AiTopicSummary 4 | class VoteController < ApplicationController 5 | requires_plugin PLUGIN_NAME 6 | before_action :ensure_logged_in 7 | 8 | def downvote 9 | params.require(:topic_id) 10 | 11 | raise Discourse::InvalidAccess.new unless current_user 12 | 13 | username = current_user.username 14 | 15 | if (user = User.find_by(username: username)) && (topic = Topic.find(params[:topic_id])) 16 | downvoted_array = topic.custom_fields["ai_summary"]["downvoted"] 17 | 18 | if !downvoted_array.include? user.id 19 | downvoted_array.push(user.id) 20 | 21 | if topic.custom_fields["ai_summary"]["downvoted"].length > SiteSetting.ai_topic_summary_downvote_refresh_threshold 22 | Jobs.enqueue(:ai_topic_summary_summarise_topic, topic_id: topic.id) 23 | downvoted_array = [] 24 | end 25 | 26 | topic.custom_fields["ai_summary"]["downvoted"] = downvoted_array 27 | topic.save! 28 | end 29 | render json: success_json 30 | else 31 | render json: failed_json 32 | end 33 | end 34 | end 35 | end 36 | -------------------------------------------------------------------------------- /app/jobs/regular/ai_topic_summary_summarise_topic.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | # Job is potentially triggered by a Post Create event 4 | 5 | class ::Jobs::AiTopicSummarySummariseTopic < Jobs::Base 6 | sidekiq_options retry: 5 7 | 8 | def execute(opts) 9 | begin 10 | topic_id = opts[:topic_id] 11 | 12 | ::AiTopicSummary::Summarise.retrieve_and_post_summary(topic_id) 13 | 14 | rescue => e 15 | if e.respond_to?(:response) 16 | status = e.response[:status] 17 | message = e.response[:body]["error"]["message"] 18 | Rails.logger.error("AI Topic Summary: Summarise Job: There was a problem, but will retry til limit: status: #{status}, message: #{message}") 19 | end 20 | raise e 21 | end 22 | end 23 | end 24 | -------------------------------------------------------------------------------- /app/jobs/regular/ai_topic_summary_tag_embedding.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | # Job is triggered on an update to a Post. 4 | class ::Jobs::AiTopicSummaryTagEmbedding < Jobs::Base 5 | sidekiq_options retry: 5, dead: false, queue: 'low' 6 | 7 | def execute(opts) 8 | begin 9 | tag_id = opts[:id] 10 | 11 | ::AiTopicSummary.progress_debug_message("100. Creating/updating a Tag Embedding for Tag id: #{tag_id}") 12 | 13 | process_topic_title_embedding = ::AiTopicSummary::TagEmbeddingProcess.new 14 | 15 | process_topic_title_embedding.upsert(tag_id) 16 | rescue => e 17 | Rails.logger.error("AI Topic Summary: Tag Embedding: There was a problem, but will retry til limit: #{e}") 18 | end 19 | end 20 | end 21 | -------------------------------------------------------------------------------- /app/jobs/scheduled/ai_topic_summary_embeddings_set_completer.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | class ::Jobs::AiTopicSummaryEmbeddingsSetCompleter < ::Jobs::Scheduled 3 | sidekiq_options retry: false 4 | 5 | every 24.hours 6 | 7 | def execute(args) 8 | return if !SiteSetting.ai_topic_summary_auto_tagging_embeddings_enabled 9 | 10 | ::AiTopicSummary::EmbeddingCompletionist.process 11 | end 12 | end 13 | -------------------------------------------------------------------------------- /app/models/ai_topic_summary/tag_embedding.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module ::AiTopicSummary 4 | class TagEmbedding < ActiveRecord::Base 5 | self.table_name = 'ai_topic_summary_tag_embeddings' 6 | 7 | validates :tag_id, presence: true, uniqueness: true 8 | end 9 | end 10 | 11 | # == Schema Information 12 | # 13 | # Table name: ai_topic_summary_tag_embeddings 14 | # 15 | # id :bigint not null, primary key 16 | # tag_id :integer not null 17 | # embedding :vector(1536) not null 18 | # model :string 19 | # created_at :datetime not null 20 | # updated_at :datetime not null 21 | # 22 | # Indexes 23 | # 24 | # index_ai_topic_summary_tag_embeddings_on_tag_id (tag_id) UNIQUE 25 | # pgv_hnsw_index_on_ai_topic_summary_tag_embeddings (embedding) USING hnsw 26 | # 27 | -------------------------------------------------------------------------------- /assets/javascripts/discourse/components/ai-topic-summary.gjs: -------------------------------------------------------------------------------- 1 | import Component from "@glimmer/component"; 2 | import { tracked } from "@glimmer/tracking"; 3 | import { action } from "@ember/object"; 4 | import { service } from "@ember/service"; 5 | import DButton from "discourse/components/d-button"; 6 | import { ajax } from "discourse/lib/ajax"; 7 | import { popupAjaxError } from "discourse/lib/ajax-error"; 8 | import i18n from "discourse-common/helpers/i18n"; 9 | 10 | export default class AiTopicSummaryComponent extends Component { 11 | @service siteSettings; 12 | @service currentUser; 13 | @service router; 14 | @tracked localDownVotes; 15 | @tracked text; 16 | @tracked voted; 17 | downVotes = []; 18 | topic_id = null; 19 | 20 | constructor() { 21 | super(...arguments); 22 | 23 | // necessary to support the two modes of operation e.g. in Bars! or attached to Topic plugin outlet. 24 | this.topic_id = 25 | this.args.topic_id || this.router.currentRoute.parent.params.id; 26 | const topicAiSummaryDataPath = `/ai-topic-summary/${this.topic_id}.json`; 27 | 28 | if (!this.args.text && !this.args.downVotes) { 29 | ajax(topicAiSummaryDataPath).then((response) => { 30 | if (response.ai_summary !== null) { 31 | this.text = response.ai_summary.text; 32 | this.downVotes = response.ai_summary.downvoted; 33 | } 34 | this.setupDownVotes(); 35 | }); 36 | } else { 37 | this.text = this.args.text; 38 | this.downVotes = this.args.downVotes; 39 | this.setupDownVotes(); 40 | } 41 | } 42 | 43 | setupDownVotes() { 44 | this.localDownVotes = 45 | typeof this.downVotes !== "undefined" ? this.downVotes.length || 0 : 0; 46 | if (this.currentUser) { 47 | this.voted = 48 | typeof this.downVotes !== "undefined" 49 | ? this.downVotes.includes(this.currentUser.id) 50 | : false; 51 | } else { 52 | this.voted = true; 53 | } 54 | } 55 | 56 | get show() { 57 | return ( 58 | this.siteSettings.ai_topic_summary_enabled && 59 | this.text && 60 | this.currentUser 61 | ); 62 | } 63 | 64 | @action 65 | downVote() { 66 | ajax(`/ai-topic-summary/downvote/${this.topic_id}.json`, { 67 | type: "POST", 68 | returnXHR: true, 69 | }) 70 | .then(() => { 71 | this.localDownVotes++; 72 | this.voted = true; 73 | }) 74 | .catch(function (error) { 75 | popupAjaxError(error); 76 | }); 77 | } 78 | 79 | 104 | } 105 | -------------------------------------------------------------------------------- /assets/javascripts/discourse/components/top-of-topic-attachment.gjs: -------------------------------------------------------------------------------- 1 | import Component from "@glimmer/component"; 2 | import { service } from "@ember/service"; 3 | import AiTopicSummary from "./ai-topic-summary"; 4 | 5 | export default class TopOfTopicAttachment extends Component { 6 | @service siteSettings; 7 | 8 | get relyOnSidebarWidgetInstead() { 9 | return this.siteSettings.ai_topic_summary_rely_on_sidebar_widget_instead; 10 | } 11 | 12 | 22 | } 23 | -------------------------------------------------------------------------------- /assets/javascripts/discourse/connectors/topic-above-posts/topic-above-posts.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/stylesheets/common/ai_topic_summary.scss: -------------------------------------------------------------------------------- 1 | .topic-area, 2 | .component-widget .ai-topic-summary-component { 3 | .ai-summary-box { 4 | display: grid; 5 | grid-template-areas: 6 | "title button" 7 | "summary summary"; 8 | grid-template-columns: auto 40px; 9 | background-color: var(--secondary-very-high); 10 | padding: 0 6px 6px 6px; 11 | border-radius: 5px; 12 | } 13 | span.ai-summary-title { 14 | grid-area: title; 15 | // grid-column: span 3; 16 | align-self: center; 17 | font-weight: bold; 18 | } 19 | span.ai-summary { 20 | grid-area: summary; 21 | font-weight: normal; 22 | } 23 | .ai-summary-downvote { 24 | justify-self: end; 25 | grid-area: button; 26 | display: flex; 27 | 28 | .ai-summary-downvote-count { 29 | align-self: center; 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /config/locales/client.en.yml: -------------------------------------------------------------------------------- 1 | en: 2 | js: 3 | ai_topic_summary: 4 | heading: 5 | text: "AI Topic Summary (thumb bad summaries down)" 6 | title: "Disclaimer: This summary is generated by a Large Language Model run by openai.com. It is very sophisticated and can create convincing, relevant, syntactically correct text but is prone to inaccuracies which can sometimes be misleading. Use it to get a flavour, but read the full Topic for the definite information. Enough downvotes will cause the summary to be recreated, potentially improved." 7 | downvote: "Downvote if you think the summary is poor" 8 | -------------------------------------------------------------------------------- /config/locales/server.en.yml: -------------------------------------------------------------------------------- 1 | en: 2 | site_settings: 3 | ai_topic_summary_enabled: 'Enable AI topic summaries' 4 | ai_topic_summary_expose_as_excerpt: 'EXPERIMENTAL: Expose AI summary as excerpt on Topic Lists in favour of the first post' 5 | ai_topic_summary_open_ai_token: "Your Open AI token. You can get one at openai.com" 6 | ai_topic_summary_open_ai_model_custom: "Use Custom model name (ADVANCED USERS ONLY)" 7 | ai_topic_summary_open_ai_model_custom_name: "(CUSTOM ONLY) Name of model" 8 | ai_topic_summary_open_ai_model: "(UNLESS CUSTOM) The model to be accessed. Models are detailed at models overview on openai.com" 9 | ai_topic_summary_request_max_response_tokens: "Specify the maximum amount of tokens bot will use to generate a response. Refer to: OpenAI: Pricing" 10 | ai_topic_summary_request_temperature: "Numeric value within the range of 0 to 100 to determine the level of randomization for AI responses. Higher temp = more creative, lower temp = more conservative. Refer to: API docs: temperature" 11 | ai_topic_summary_request_top_p: "Numeric value within the range of 0 to 100. Refer to: API docs: top_p" 12 | ai_topic_summary_request_frequency_penalty: "Numeric value within the range of -200 to 200. Refer to: API docs: frequency_penalty" 13 | ai_topic_summary_request_presence_penalty: "Numeric value within the range of -200 to 200. Refer to: API docs: presence_penalty" 14 | ai_topic_summary_character_limit: 'Number of characters sent to Language Model. This is defaulted to approximately the OpenAI token limit, be careful! It currently means you cant send very long Topics' 15 | ai_topic_summary_post_limit: 'Number of Posts included. This is defaulted to an estimated level of content which would fit approximately within the OpenAI token limit.' 16 | ai_topic_summary_strip_quotes: 'Strip quotes from Posts before processing (otherwise you are paying for duplication)' 17 | ai_topic_summary_enabled_min_posts: 'Minimum number of posts before a summary is requested (the more the more accurate but more expensive)' 18 | ai_topic_summary_enabled_post_interval_rerun: 'The number of additional posts required to refresh the summary' 19 | ai_topic_summary_permitted_in_private_messages: 'Whether this is permitted in private message' 20 | ai_topic_summary_permitted_all_categories: 'Are all Categories supported?' 21 | ai_topic_summary_permitted_categories: 'Which Categories are supported?' 22 | ai_topic_summary_downvote_refresh_threshold: 'Number of downvotes beyond which a new summary is requested. Therefore, set to zero for no downvote tolerance' 23 | ai_topic_summary_rely_on_sidebar_widget_instead: "Turn off summary at top of Topic and use Bars Theme Component instead to present the summary on a sidebar (requires installing and configuring Bars)" 24 | ai_topic_summary_enable_description_replacement_with_ai_summary: "EXPERIMENTAL: Replace first post excerpt in Topic meta with AI summary so latter will appear in shared links." 25 | ai_topic_summary_enable_topic_thumbnail: "EXPERIMENTAL: Enable automated topic thumbnail generation based on summary of Topic. Maintain associated prompt at Customize Text" 26 | ai_topic_summary_remove_prior_thumbnail: "EXPERIMENTAL: Remove prior thumbnail when a new one is generated" 27 | ai_topic_summary_enable_auto_tagging: 'Enable automated tagging of topics (NB It will replace not append!)' 28 | ai_topic_summary_auto_tagging_username: 'Username used for auto-adding tags. System User is used if blank, which will allow the AI to create new tags. This is rarely desirable as they can be a bit free-form occasionally. This setting can help you block creation of new tags if chosen User does not have privileges to create new tags and will restrict it to existing tags only. Governed by Trust Level setting min_trust_to_create_tag' 29 | ai_topic_summary_auto_tagging_strategy: 'Choose between completion and embeddings for auto-tagging. Embeddings strategy is currently experimental' 30 | ai_topic_summary_auto_tagging_embeddings_enabled: 'Enable embeddings for auto-tagging' 31 | ai_topic_summary_auto_tagging_embeddings_model: "Open AI Embeddings model used for auto-tagging. Models are detailed at models overview on openai.com" 32 | ai_topic_summary_auto_tagging_embeddings_similarity_threshold: "Cosine similarity threshold for discovering appropriate tags. The higher the threshold, the more similar the tags will be to the summary. The lower the threshold, the more tags will be discovered, but they may be less relevant. The threshold should be between 0 and 1." 33 | ai_topic_summary_auto_tagging_open_ai_embeddings_char_limit: "Max number of characters sent to Open AI Embeddings model. This is defaulted to approximately the OpenAI token limit, be careful!" 34 | ai_topic_summary_verbose_console_logging: "Enable response retrieval progress logging to console to help debug issues" 35 | ai_topic_summary_verbose_rails_logging: "Enable response retrieval progress logging to rails logs to help debug issues" 36 | ai_topic_summary_verbose_rails_logging_destination_level: "Set the log level for the response retrieval" 37 | ai_topic_summary: 38 | errors: 39 | general: "There was a problem, consult logs" 40 | prompt: 41 | system: "You are a helpful assistant that likes to summarise forum topics." 42 | system_tagging: "You are a helpful assistant that likes to tag forum topics." 43 | title: "The subject of this conversation is %{topic_title}" 44 | post: "%{username} said %{raw}\n---\n" 45 | summarise: "Please summarise the following text in a maximum of three sentences: '%{full_raw}'" 46 | summarise_chat: "Please summarise all the preceeding text in a maximum of three sentences" 47 | thumbnail: "Make a pencil sketch out of the following text: '%{prompt}'" 48 | tag: "Given this set of tags %{tags} recommend up to five of them that are most appropriate for this summary?: '%{summary}'. Strictly respond by only listing the tags, separated by commas." 49 | -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | Discourse::Application.routes.draw do 3 | mount AiTopicSummary::Engine, at: 'ai-topic-summary' 4 | end 5 | 6 | AiTopicSummary::Engine.routes.draw do 7 | post "downvote/:topic_id" => "vote#downvote" 8 | get ":id" => "ai_summary#index" 9 | end 10 | -------------------------------------------------------------------------------- /config/settings.yml: -------------------------------------------------------------------------------- 1 | plugins: 2 | ai_topic_summary_enabled: 3 | default: true 4 | client: true 5 | ai_topic_summary_expose_as_excerpt: 6 | default: false 7 | client: false 8 | ai_topic_summary_open_ai_token: 9 | default: '' 10 | client: false 11 | ai_topic_summary_open_ai_model_custom: 12 | default: false 13 | client: false 14 | ai_topic_summary_open_ai_model_custom_name: 15 | default: '' 16 | client: false 17 | ai_topic_summary_open_ai_model: 18 | client: false 19 | type: enum 20 | default: gpt-4.1-mini 21 | choices: 22 | - gpt-4.1 23 | - gpt-4.1-mini 24 | - gpt-4.1-nano 25 | - gpt-4o 26 | - gpt-4o-mini 27 | - gpt-4-turbo 28 | - gpt-4 29 | ai_topic_summary_request_max_response_tokens: 30 | default: 200 31 | client: false 32 | ai_topic_summary_request_temperature: 33 | client: false 34 | default: 100 35 | min: 0 36 | max: 100 37 | ai_topic_summary_request_top_p: 38 | client: false 39 | default: 100 40 | min: 0 41 | max: 100 42 | ai_topic_summary_request_frequency_penalty: 43 | client: false 44 | default: 0 45 | min: -200 46 | max: 200 47 | ai_topic_summary_request_presence_penalty: 48 | client: false 49 | default: 0 50 | min: -200 51 | max: 200 52 | ai_topic_summary_character_limit: 53 | default: 15000 54 | client: false 55 | ai_topic_summary_post_limit: 56 | default: 40 57 | client: false 58 | ai_topic_summary_strip_quotes: 59 | default: true 60 | client: false 61 | ai_topic_summary_enabled_min_posts: 62 | default: 5 63 | client: false 64 | ai_topic_summary_enabled_post_interval_rerun: 65 | default: 3 66 | client: false 67 | ai_topic_summary_permitted_in_private_messages: 68 | default: false 69 | client: false 70 | ai_topic_summary_permitted_all_categories: 71 | default: true 72 | client: false 73 | ai_topic_summary_permitted_categories: 74 | client: false 75 | default: '' 76 | type: category_list 77 | list_type: "compact" 78 | ai_topic_summary_downvote_refresh_threshold: 79 | client: false 80 | default: 1 81 | ai_topic_summary_rely_on_sidebar_widget_instead: 82 | client: true 83 | default: false 84 | ai_topic_summary_enable_description_replacement_with_ai_summary: 85 | client: false 86 | default: false 87 | ai_topic_summary_enable_topic_thumbnail: 88 | client: false 89 | default: false 90 | ai_topic_summary_remove_prior_thumbnail: 91 | client: false 92 | default: true 93 | ai_topic_summary_enable_auto_tagging: 94 | client: false 95 | default: false 96 | ai_topic_summary_auto_tagging_strategy: 97 | client: false 98 | default: "completion" 99 | type: enum 100 | choices: 101 | - completion 102 | - embeddings 103 | ai_topic_summary_auto_tagging_username: 104 | client: false 105 | default: "" 106 | ai_topic_summary_auto_tagging_embeddings_enabled: 107 | client: false 108 | default: false 109 | ai_topic_summary_auto_tagging_embeddings_model: 110 | client: false 111 | type: enum 112 | default: text-embedding-ada-002 113 | choices: 114 | - text-embedding-ada-002 115 | - text-embedding-3-small 116 | ai_topic_summary_auto_tagging_embeddings_similarity_threshold: 117 | client: false 118 | default: 0.8 119 | min: 0 120 | max: 1 121 | ai_topic_summary_auto_tagging_open_ai_embeddings_char_limit: 122 | client: false 123 | default: 11500 124 | ai_topic_summary_verbose_console_logging: 125 | client: false 126 | default: false 127 | ai_topic_summary_verbose_rails_logging: 128 | client: false 129 | default: false 130 | ai_topic_summary_verbose_rails_logging_destination_level: 131 | client: false 132 | default: "info" 133 | type: enum 134 | choices: 135 | - info 136 | - warn 137 | -------------------------------------------------------------------------------- /db/migrate/20240605010100_enable_pg_vector_plugin.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class EnablePgVectorPlugin < ActiveRecord::Migration[7.0] 4 | def change 5 | begin 6 | enable_extension :vector 7 | rescue Exception => e 8 | if DB.query_single("SELECT 1 FROM pg_available_extensions WHERE name = 'vector';").empty? 9 | STDERR.puts "------------------------------AI TOPIC SUMMARY ERROR----------------------------------" 10 | STDERR.puts " AI Topic Summary requires the pgvector extension on the PostgreSQL database." 11 | STDERR.puts " Run a `./launcher rebuild app` to fix it on a standard install." 12 | STDERR.puts " Alternatively, you can remove AI Topic Summary to rebuild." 13 | STDERR.puts "------------------------------AI TOPIC SUMMARY ERROR----------------------------------" 14 | end 15 | raise e 16 | end 17 | end 18 | end 19 | -------------------------------------------------------------------------------- /db/migrate/20240605010101_create_ai_topic_summary_tag_embeddings_table.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class CreateAiTopicSummaryTagEmbeddingsTable < ActiveRecord::Migration[7.0] 4 | def change 5 | create_table :ai_topic_summary_tag_embeddings do |t| 6 | t.integer :tag_id, null: false, index: { unique: true }, foreign_key: true 7 | t.column :embedding, "vector(1536)", null: false 8 | t.column :model, :string, default: nil 9 | t.timestamps 10 | end 11 | end 12 | end 13 | -------------------------------------------------------------------------------- /db/migrate/20240605010105_create_ai_topic_summary_tag_embeddings_index.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class CreateAiTopicSummaryTagEmbeddingsIndex < ActiveRecord::Migration[7.0] 4 | def up 5 | execute <<-SQL 6 | CREATE INDEX pgv_hnsw_index_on_ai_topic_summary_tag_embeddings ON ai_topic_summary_tag_embeddings USING hnsw (embedding vector_cosine_ops) 7 | WITH (m = 16, ef_construction = 32); 8 | SQL 9 | end 10 | 11 | def down 12 | execute <<-SQL 13 | DROP INDEX IF EXISTS pgv_hnsw_index_on_ai_topic_summary_tag_embeddings; 14 | SQL 15 | end 16 | end 17 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- 1 | import DiscourseRecommended from "@discourse/lint-configs/eslint"; 2 | 3 | export default [...DiscourseRecommended]; -------------------------------------------------------------------------------- /lib/ai_topic_summary/call_bot.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | require "openai" 3 | 4 | class ::AiTopicSummary::CallBot 5 | def self.get_response(prompt) 6 | ::OpenAI.configure do |config| 7 | config.access_token = SiteSetting.ai_topic_summary_open_ai_token 8 | config.log_errors = true if SiteSetting.ai_topic_summary_verbose_rails_logging 9 | end 10 | 11 | client = OpenAI::Client.new do |f| 12 | f.response :logger, Logger.new($stdout), bodies: true if SiteSetting.ai_topic_summary_verbose_console_logging 13 | if SiteSetting.ai_topic_summary_verbose_rails_logging 14 | case SiteSetting.ai_topic_summary_verbose_rails_logging_destination_level 15 | when "warn" 16 | f.response :logger, Rails.logger, bodies: true, log_level: :warn 17 | else 18 | f.response :logger, Rails.logger, bodies: true, log_level: :info 19 | end 20 | end 21 | end 22 | 23 | model_name = SiteSetting.ai_topic_summary_open_ai_model_custom ? SiteSetting.ai_topic_summary_open_ai_model_custom_name : SiteSetting.ai_topic_summary_open_ai_model 24 | 25 | response = client.chat( 26 | parameters: { 27 | model: model_name, 28 | messages: prompt, 29 | max_tokens: SiteSetting.ai_topic_summary_request_max_response_tokens, 30 | temperature: SiteSetting.ai_topic_summary_request_temperature / 100.0, 31 | top_p: SiteSetting.ai_topic_summary_request_top_p / 100.0, 32 | frequency_penalty: SiteSetting.ai_topic_summary_request_frequency_penalty / 100.0, 33 | presence_penalty: SiteSetting.ai_topic_summary_request_presence_penalty / 100.0 34 | }) 35 | 36 | if response["error"] 37 | begin 38 | raise StandardError, response["error"]["message"] 39 | rescue => e 40 | Rails.logger.error("AI Topic Summary: There was a problem: #{e}") 41 | I18n.t('ai_topic_summary.errors.general') 42 | end 43 | else 44 | response.dig("choices", 0, "message", "content") 45 | end 46 | end 47 | 48 | def self.get_thumbnail(prompt) 49 | begin 50 | description = I18n.t('ai_topic_summary.prompt.thumbnail', prompt: prompt) 51 | 52 | ::OpenAI.configure do |config| 53 | config.access_token = SiteSetting.ai_topic_summary_open_ai_token 54 | config.log_errors = true if SiteSetting.ai_topic_summary_verbose_rails_logging 55 | end 56 | 57 | client = OpenAI::Client.new do |f| 58 | f.response :logger, Logger.new($stdout), bodies: true if SiteSetting.ai_topic_summary_verbose_console_logging 59 | if SiteSetting.ai_topic_summary_verbose_rails_logging 60 | case SiteSetting.ai_topic_summary_verbose_rails_logging_destination_level 61 | when "warn" 62 | f.response :logger, Rails.logger, bodies: true, log_level: :warn 63 | else 64 | f.response :logger, Rails.logger, bodies: true, log_level: :info 65 | end 66 | end 67 | end 68 | 69 | response = client.images.generate(parameters: { prompt: description, model: "dall-e-3", size: "1792x1024", quality: "standard" }) 70 | 71 | if response["error"] 72 | begin 73 | raise StandardError, response["error"]["message"] 74 | rescue => e 75 | Rails.logger.error("AI Topic Summary: There was a problem generating thumbnail: #{e}") 76 | I18n.t('ai_topic_summary.errors.general') 77 | end 78 | else 79 | response.dig("data", 0, "url") 80 | end 81 | rescue 82 | I18n.t('ai_topic_summary.errors.general') 83 | end 84 | end 85 | end 86 | -------------------------------------------------------------------------------- /lib/ai_topic_summary/embedding_completionist.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | require "openai" 3 | 4 | module ::AiTopicSummary 5 | 6 | class EmbeddingCompletionist 7 | 8 | def self.process 9 | process_tags 10 | end 11 | 12 | def self.process_tags 13 | ::Tag.all.each do |tag| 14 | ::Jobs.enqueue(:ai_topic_summary_tag_embedding, id: tag.id) 15 | end 16 | 17 | TagEmbedding.where.not(tag_id: ::Tag.all.pluck(:id)).destroy_all 18 | 19 | ::AiTopicSummary.progress_debug_message <<~EOS 20 | --------------------------------------------------------------------------------------------------------------- 21 | Refreshed embeddings for: #{::Tag.count} tags 22 | ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 23 | EOS 24 | end 25 | end 26 | end 27 | -------------------------------------------------------------------------------- /lib/ai_topic_summary/embedding_process.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | require "openai" 3 | 4 | module ::AiTopicSummary 5 | 6 | class EmbeddingProcess 7 | 8 | def setup_api 9 | ::OpenAI.configure do |config| 10 | config.access_token = SiteSetting.ai_topic_summary_open_ai_token 11 | end 12 | if !SiteSetting.chatbot_open_ai_embeddings_model_custom_url.blank? 13 | ::OpenAI.configure do |config| 14 | config.uri_base = SiteSetting.chatbot_open_ai_embeddings_model_custom_url 15 | end 16 | end 17 | if SiteSetting.chatbot_open_ai_model_custom_api_type == "azure" 18 | ::OpenAI.configure do |config| 19 | config.api_type = :azure 20 | config.api_version = SiteSetting.chatbot_open_ai_model_custom_api_version 21 | end 22 | end 23 | @model_name = SiteSetting.chatbot_open_ai_embeddings_model 24 | @client = ::OpenAI::Client.new 25 | end 26 | 27 | def upsert(id) 28 | raise "Overwrite me!" 29 | end 30 | 31 | def get_embedding_from_api(id) 32 | raise "Overwrite me!" 33 | end 34 | 35 | def semantic_search(query) 36 | raise "Overwrite me!" 37 | end 38 | end 39 | end 40 | -------------------------------------------------------------------------------- /lib/ai_topic_summary/engine.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | module ::AiTopicSummary 3 | class Engine < ::Rails::Engine 4 | engine_name PLUGIN_NAME 5 | isolate_namespace AiTopicSummary 6 | config.autoload_paths << File.join(config.root, "lib") 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /lib/ai_topic_summary/summarise.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | class ::AiTopicSummary::Summarise 3 | 4 | def self.retrieve_and_post_summary(topic_id) 5 | data = self.get_markdown(topic_id) 6 | summary = ::AiTopicSummary::CallBot.get_response(data).strip 7 | 8 | current_topic = Topic.find(topic_id) 9 | current_topic.custom_fields["ai_summary"] = { "text": summary, "post_count": current_topic.posts_count, "downvoted": [] } 10 | current_topic.save! 11 | 12 | if SiteSetting.ai_topic_summary_enable_topic_thumbnail 13 | thumbnail_url = ::AiTopicSummary::CallBot.get_thumbnail(summary) 14 | post = current_topic.first_post 15 | if SiteSetting.ai_topic_summary_remove_prior_thumbnail 16 | post.raw = remove_image_from_first_line(post.raw) 17 | post.save! 18 | end 19 | post.raw = thumbnail_url + "\n\n" + post.raw 20 | post.save! 21 | post.rebake! 22 | end 23 | 24 | if SiteSetting.ai_topic_summary_enable_auto_tagging 25 | retrieve_tags(current_topic, summary) 26 | end 27 | end 28 | 29 | def self.remove_image_from_first_line(markdown) 30 | # Split the markdown into lines 31 | lines = markdown.lines 32 | 33 | # Regular expression to match: 34 | # 1. Markdown image links, including "upload://" URLs and standard URLs with jpg, jpeg, gif, png, webp 35 | # 2. Direct image URLs (jpg, jpeg, gif, png, webp) including query strings and fragments 36 | image_or_link_regex = /!\[.*?\]\((https?:\/\/[^\s]+\.(jpg|jpeg|gif|png|webp)[^\s]*|upload:\/\/[^\s]+\.(jpg|jpeg|gif|png|webp))\)|https?:\/\/[^\s]+\.(jpg|jpeg|gif|png|webp)[^\s]*/i 37 | 38 | # Check if the first line contains a markdown image or a supported image link 39 | if lines[0] =~ image_or_link_regex 40 | # Remove the image link or supported image URL (with all query strings and fragments) from the first line 41 | lines[0].gsub!(image_or_link_regex, '') 42 | 43 | # Clean up any leading or trailing whitespace or carriage returns/newlines 44 | lines[0].strip! 45 | end 46 | 47 | # Join the lines back together and return the modified markdown, also strip any leading/trailing whitespace 48 | lines.join.strip 49 | end 50 | 51 | def self.retrieve_tags(current_topic, summary) 52 | 53 | if SiteSetting.ai_topic_summary_auto_tagging_strategy == "completion" 54 | tags_string = "['" + Tag.pluck(:name).join("', '") + "']" 55 | query = I18n.t("ai_topic_summary.prompt.tag", tags: tags_string, summary: summary) 56 | messages = nil 57 | 58 | messages = [{ "role": "system", "content": I18n.t("ai_topic_summary.prompt.system_tagging") }] 59 | messages << { "role": "user", "content": query } 60 | 61 | tags_response = ::AiTopicSummary::CallBot.get_response(messages).strip.chomp('.') 62 | 63 | tag_name_list = tags_response.split(",") 64 | if SiteSetting.force_lowercase_tags 65 | tag_name_list = tag_name_list.map { |string| string.downcase } 66 | end 67 | tag_name_list = tag_name_list.map { |string| string.strip.gsub(/[ .]/, "-") } 68 | else 69 | tag_name_list = ::AiTopicSummary::TagEmbeddingProcess.new.semantic_search(summary) 70 | end 71 | 72 | if SiteSetting.ai_topic_summary_auto_tagging_username.blank? 73 | DiscourseTagging.tag_topic_by_names(current_topic, Guardian.new(Discourse.system_user), tag_name_list) 74 | else 75 | tagging_user = User.find_by(username: SiteSetting.ai_topic_summary_auto_tagging_username) 76 | if tagging_user 77 | DiscourseTagging.tag_topic_by_names(current_topic, Guardian.new(tagging_user), tag_name_list) 78 | end 79 | end 80 | end 81 | 82 | def self.get_markdown(topic_id) 83 | system_user = User.find(-1) 84 | topic_view = TopicView.new(topic_id, system_user) 85 | content = [] 86 | 87 | messages = [{ "role": "system", "content": I18n.t("ai_topic_summary.prompt.system") }] 88 | messages << { "role": "user", "content": I18n.t("ai_topic_summary.prompt.title", username: User.find(topic_view.topic.user_id).username, topic_title: topic_view.title) } 89 | 90 | topic_view.posts.each_with_index do |p, index| 91 | next if p.post_type > 1 92 | break if index > SiteSetting.ai_topic_summary_post_limit 93 | raw_post_contents = p.raw 94 | raw_post_contents.gsub!(/\[quote.*?\](.*?)\[\/quote\]/m, '') if SiteSetting.ai_topic_summary_strip_quotes 95 | 96 | messages << { "role": "user", "content": I18n.t("ai_topic_summary.prompt.post", username: p.user.username, raw: raw_post_contents) } 97 | end 98 | 99 | messages << { "role": "user", "content": I18n.t("ai_topic_summary.prompt.summarise_chat") } 100 | end 101 | end 102 | -------------------------------------------------------------------------------- /lib/ai_topic_summary/tag_embedding_process.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | require "openai" 3 | 4 | module ::AiTopicSummary 5 | 6 | class TagEmbeddingProcess < EmbeddingProcess 7 | 8 | def upsert(tag_id) 9 | if !is_valid(tag_id) 10 | embedding_vector = get_embedding_from_api(tag_id) 11 | 12 | ::AiTopicSummary::TagEmbedding.upsert({ tag_id: tag_id, model: SiteSetting.ai_topic_summary_auto_tagging_embeddings_model, embedding: "#{embedding_vector}" }, on_duplicate: :update, unique_by: :tag_id) 13 | 14 | ::AiTopicSummary.progress_debug_message <<~EOS 15 | --------------------------------------------------------------------------------------------------------------- 16 | Topic Title Embeddings: I found an embedding that needed populating or updating, id: #{tag_id} 17 | ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 18 | EOS 19 | end 20 | end 21 | 22 | def get_embedding_from_api(tag_id) 23 | begin 24 | self.setup_api 25 | 26 | embedding_text = "" 27 | 28 | tag = ::Tag.find_by(id: tag_id) 29 | 30 | tag_group = TagGroup.find_by(id: TagGroupMembership.find_by(tag_id: tag_id)&.tag_group_id) 31 | 32 | embedding_text = "Tag Name: '#{tag.name}'" if tag 33 | 34 | embedding_text += " Tag Description: '#{tag.description}'" if tag.description 35 | 36 | embedding_text = "Tag Group: '#{tag_group.name}' #{embedding_text}" if tag_group 37 | 38 | response = @client.embeddings( 39 | parameters: { 40 | model: @model_name, 41 | input: embedding_text 42 | } 43 | ) 44 | 45 | if response.dig("error") 46 | error_text = response.dig("error", "message") 47 | raise StandardError, error_text 48 | end 49 | rescue StandardError => e 50 | Rails.logger.error("AI Topic Summary: Error occurred while attempting to retrieve Embedding for tag id '#{tag_id}': #{e.message}") 51 | raise e 52 | end 53 | 54 | embedding_vector = response.dig("data", 0, "embedding") 55 | end 56 | 57 | def semantic_search(query) 58 | self.setup_api 59 | 60 | response = @client.embeddings( 61 | parameters: { 62 | model: @model_name, 63 | input: query[0..SiteSetting.ai_topic_summary_auto_tagging_open_ai_embeddings_char_limit] 64 | } 65 | ) 66 | 67 | query_vector = response.dig("data", 0, "embedding") 68 | 69 | begin 70 | threshold = SiteSetting.ai_topic_summary_auto_tagging_embeddings_similarity_threshold 71 | max_tags = SiteSetting.max_tags_per_topic 72 | results = 73 | DB.query(<<~SQL, query_embedding: query_vector, threshold: threshold, limit: max_tags) 74 | SELECT 75 | tag_id, 76 | t.name, 77 | embedding <=> '[:query_embedding]' as cosine_distance 78 | FROM 79 | ai_topic_summary_tag_embeddings e 80 | JOIN 81 | tags t 82 | ON 83 | t.id = e.tag_id 84 | WHERE 85 | (1 - (embedding <=> '[:query_embedding]')) > :threshold 86 | ORDER BY 87 | embedding <=> '[:query_embedding]' 88 | LIMIT :limit 89 | SQL 90 | rescue PG::Error => e 91 | Rails.logger.error( 92 | "Error #{e} querying embeddings for search #{query}", 93 | ) 94 | raise MissingEmbeddingError 95 | end 96 | results.map { |obj| obj.instance_variable_get(:@name) } 97 | end 98 | 99 | def is_valid(tag_id) 100 | embedding_record = ::AiTopicSummary::TagEmbedding.find_by(tag_id: tag_id) 101 | return false if !embedding_record.present? 102 | return false if embedding_record.model != SiteSetting.ai_topic_summary_auto_tagging_embeddings_model 103 | true 104 | end 105 | end 106 | end 107 | -------------------------------------------------------------------------------- /lib/ai_topic_summary/topic_list_item_serializer_extension.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module AiTopicSummary 4 | module TopicListItemSerializerExtension 5 | 6 | def excerpt 7 | if object.custom_fields['ai_summary'].present? && object.custom_fields['ai_summary']["text"].present? && !object.custom_fields['ai_summary']["text"].blank? && SiteSetting.ai_topic_summary_expose_as_excerpt 8 | PrettyText.excerpt(object.custom_fields['ai_summary']["text"], 300, keep_emoji_images: true) 9 | else 10 | object.excerpt 11 | end 12 | end 13 | 14 | end 15 | end 16 | -------------------------------------------------------------------------------- /lib/ai_topic_summary/topic_view_extension.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | module AiTopicSummary 3 | module TopicViewExtension 4 | 5 | def summary(opts = {}) 6 | if SiteSetting.ai_topic_summary_enabled && 7 | SiteSetting.ai_topic_summary_enable_description_replacement_with_ai_summary && 8 | self.topic.custom_fields.dig("ai_summary", "text").present? 9 | 10 | self.topic.custom_fields["ai_summary"]["text"] 11 | else 12 | super(opts) 13 | end 14 | end 15 | end 16 | end 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "discourse-ai-topic-summary", 3 | "version": "0.5.1", 4 | "repository": "git@github.com:merefield/discourse-ai-topic-summary.git", 5 | "author": "Robert Barrow", 6 | "private": true, 7 | "devDependencies": { 8 | "@discourse/lint-configs": "2.3.0", 9 | "ember-template-lint": "6.0.0", 10 | "eslint": "9.15.0", 11 | "prettier": "2.8.8" 12 | }, 13 | "engines": { 14 | "node": ">= 18", 15 | "npm": "please-use-pnpm", 16 | "yarn": "please-use-pnpm", 17 | "pnpm": ">= 9" 18 | } 19 | } -------------------------------------------------------------------------------- /plugin.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | # name: discourse-ai-topic-summary 3 | # about: Uses a remote (OpenAI) AI language model to prepare and post a summary of a Topic 4 | # version: 0.5.7 5 | # authors: Robert Barrow 6 | # contact_emails: merefield@gmail.com 7 | # url: https://github.com/merefield/discourse-ai-topic-summary 8 | 9 | gem 'multipart-post', '2.4.0', { require: false } 10 | gem 'faraday-multipart', '1.0.4', { require: false } 11 | gem 'event_stream_parser', '1.0.0', { require: false } 12 | gem "ruby-openai", '8.1.0', { require: false } 13 | 14 | register_asset 'stylesheets/common/ai_topic_summary.scss' 15 | 16 | enabled_site_setting :ai_topic_summary_enabled 17 | 18 | module ::AiTopicSummary 19 | 20 | PLUGIN_NAME = "discourse-ai-topic-summary".freeze 21 | 22 | def progress_debug_message(message) 23 | puts "AI Topic Summary: #{message}" if SiteSetting.ai_topic_summary_verbose_console_logging 24 | Rails.logger.info("AI Topic Summary: #{message}") if SiteSetting.ai_topic_summary_verbose_rails_logging 25 | end 26 | 27 | module_function :progress_debug_message 28 | end 29 | 30 | require_relative "lib/ai_topic_summary/engine" 31 | 32 | after_initialize do 33 | reloadable_patch do 34 | TopicListItemSerializer.prepend(AiTopicSummary::TopicListItemSerializerExtension) 35 | TopicView.prepend(AiTopicSummary::TopicViewExtension) 36 | end 37 | 38 | Topic.register_custom_field_type('ai_summary', :json) 39 | 40 | add_to_class(:topic, :ai_summary) { self.custom_fields['ai_summary'] } 41 | 42 | add_to_serializer(:topic_view, :ai_summary, respect_plugin_enabled: true) { object.topic.ai_summary } 43 | 44 | add_preloaded_topic_list_custom_field("ai_summary") 45 | 46 | on(:post_created) do |*params| 47 | post, opts, user = params 48 | 49 | if SiteSetting.ai_topic_summary_enabled 50 | skip = false 51 | 52 | posts_count = post.topic.posts_count 53 | 54 | skip = true if posts_count <= SiteSetting.ai_topic_summary_enabled_min_posts 55 | 56 | is_private_msg = post.topic.private_message? 57 | 58 | skip = true if !SiteSetting.ai_topic_summary_permitted_in_private_messages && is_private_msg 59 | 60 | permitted_categories = SiteSetting.ai_topic_summary_permitted_categories.split('|') 61 | 62 | skip = true if !SiteSetting.ai_topic_summary_permitted_all_categories && !permitted_categories.include?(post.topic.category_id.to_s) 63 | 64 | if !skip && 65 | (post.topic.ai_summary.nil? || 66 | (!post.topic.ai_summary.nil? && 67 | !post.topic.ai_summary["post_count"].nil? && 68 | posts_count >= post.topic.ai_summary["post_count"] + SiteSetting.ai_topic_summary_enabled_post_interval_rerun && 69 | posts_count <= SiteSetting.ai_topic_summary_post_limit)) 70 | Jobs.enqueue(:ai_topic_summary_summarise_topic, topic_id: post.topic.id) 71 | end 72 | end 73 | end 74 | end 75 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | devDependencies: 11 | '@discourse/lint-configs': 12 | specifier: 2.3.0 13 | version: 2.3.0(ember-template-lint@6.0.0)(eslint@9.15.0)(prettier@2.8.8) 14 | ember-template-lint: 15 | specifier: 6.0.0 16 | version: 6.0.0 17 | eslint: 18 | specifier: 9.15.0 19 | version: 9.15.0 20 | prettier: 21 | specifier: 2.8.8 22 | version: 2.8.8 23 | 24 | packages: 25 | 26 | '@ampproject/remapping@2.3.0': 27 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 28 | engines: {node: '>=6.0.0'} 29 | 30 | '@babel/code-frame@7.26.2': 31 | resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} 32 | engines: {node: '>=6.9.0'} 33 | 34 | '@babel/compat-data@7.26.5': 35 | resolution: {integrity: sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==} 36 | engines: {node: '>=6.9.0'} 37 | 38 | '@babel/core@7.26.0': 39 | resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} 40 | engines: {node: '>=6.9.0'} 41 | 42 | '@babel/eslint-parser@7.26.5': 43 | resolution: {integrity: sha512-Kkm8C8uxI842AwQADxl0GbcG1rupELYLShazYEZO/2DYjhyWXJIOUVOE3tBYm6JXzUCNJOZEzqc4rCW/jsEQYQ==} 44 | engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} 45 | peerDependencies: 46 | '@babel/core': ^7.11.0 47 | eslint: ^7.5.0 || ^8.0.0 || ^9.0.0 48 | 49 | '@babel/generator@7.26.5': 50 | resolution: {integrity: sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==} 51 | engines: {node: '>=6.9.0'} 52 | 53 | '@babel/helper-annotate-as-pure@7.25.9': 54 | resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} 55 | engines: {node: '>=6.9.0'} 56 | 57 | '@babel/helper-compilation-targets@7.26.5': 58 | resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==} 59 | engines: {node: '>=6.9.0'} 60 | 61 | '@babel/helper-create-class-features-plugin@7.25.9': 62 | resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==} 63 | engines: {node: '>=6.9.0'} 64 | peerDependencies: 65 | '@babel/core': ^7.0.0 66 | 67 | '@babel/helper-member-expression-to-functions@7.25.9': 68 | resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} 69 | engines: {node: '>=6.9.0'} 70 | 71 | '@babel/helper-module-imports@7.25.9': 72 | resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} 73 | engines: {node: '>=6.9.0'} 74 | 75 | '@babel/helper-module-transforms@7.26.0': 76 | resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} 77 | engines: {node: '>=6.9.0'} 78 | peerDependencies: 79 | '@babel/core': ^7.0.0 80 | 81 | '@babel/helper-optimise-call-expression@7.25.9': 82 | resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} 83 | engines: {node: '>=6.9.0'} 84 | 85 | '@babel/helper-plugin-utils@7.26.5': 86 | resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==} 87 | engines: {node: '>=6.9.0'} 88 | 89 | '@babel/helper-replace-supers@7.26.5': 90 | resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==} 91 | engines: {node: '>=6.9.0'} 92 | peerDependencies: 93 | '@babel/core': ^7.0.0 94 | 95 | '@babel/helper-skip-transparent-expression-wrappers@7.25.9': 96 | resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} 97 | engines: {node: '>=6.9.0'} 98 | 99 | '@babel/helper-string-parser@7.25.9': 100 | resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} 101 | engines: {node: '>=6.9.0'} 102 | 103 | '@babel/helper-validator-identifier@7.25.9': 104 | resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 105 | engines: {node: '>=6.9.0'} 106 | 107 | '@babel/helper-validator-option@7.25.9': 108 | resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} 109 | engines: {node: '>=6.9.0'} 110 | 111 | '@babel/helpers@7.26.0': 112 | resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} 113 | engines: {node: '>=6.9.0'} 114 | 115 | '@babel/parser@7.26.5': 116 | resolution: {integrity: sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==} 117 | engines: {node: '>=6.0.0'} 118 | hasBin: true 119 | 120 | '@babel/plugin-proposal-decorators@7.25.9': 121 | resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==} 122 | engines: {node: '>=6.9.0'} 123 | peerDependencies: 124 | '@babel/core': ^7.0.0-0 125 | 126 | '@babel/plugin-syntax-decorators@7.25.9': 127 | resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==} 128 | engines: {node: '>=6.9.0'} 129 | peerDependencies: 130 | '@babel/core': ^7.0.0-0 131 | 132 | '@babel/template@7.25.9': 133 | resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} 134 | engines: {node: '>=6.9.0'} 135 | 136 | '@babel/traverse@7.26.5': 137 | resolution: {integrity: sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ==} 138 | engines: {node: '>=6.9.0'} 139 | 140 | '@babel/types@7.26.5': 141 | resolution: {integrity: sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==} 142 | engines: {node: '>=6.9.0'} 143 | 144 | '@discourse/lint-configs@2.3.0': 145 | resolution: {integrity: sha512-vHmUUnuTemLDGpnfgK4jcmToM9accbByzxuL3NTY3bGDtygG/B09wkxWr+A9UbAMhlKsJy9w9sIH/2BovyYX3Q==} 146 | peerDependencies: 147 | ember-template-lint: 6.0.0 148 | eslint: ^9.15.0 149 | prettier: 2.8.8 150 | 151 | '@ember-data/rfc395-data@0.0.4': 152 | resolution: {integrity: sha512-tGRdvgC9/QMQSuSuJV45xoyhI0Pzjm7A9o/MVVA3HakXIImJbbzx/k/6dO9CUEQXIyS2y0fW6C1XaYOG7rY0FQ==} 153 | 154 | '@ember/edition-utils@1.2.0': 155 | resolution: {integrity: sha512-VmVq/8saCaPdesQmftPqbFtxJWrzxNGSQ+e8x8LLe3Hjm36pJ04Q8LeORGZkAeOhldoUX9seLGmSaHeXkIqoog==} 156 | 157 | '@eslint-community/eslint-utils@4.4.1': 158 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} 159 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 160 | peerDependencies: 161 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 162 | 163 | '@eslint-community/regexpp@4.12.1': 164 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} 165 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 166 | 167 | '@eslint/config-array@0.19.1': 168 | resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==} 169 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 170 | 171 | '@eslint/core@0.10.0': 172 | resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==} 173 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 174 | 175 | '@eslint/core@0.9.1': 176 | resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==} 177 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 178 | 179 | '@eslint/eslintrc@3.2.0': 180 | resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} 181 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 182 | 183 | '@eslint/js@9.15.0': 184 | resolution: {integrity: sha512-tMTqrY+EzbXmKJR5ToI8lxu7jaN5EdmrBFJpQk5JmSlyLsx6o4t27r883K5xsLuCYCpfKBCGswMSWXsM+jB7lg==} 185 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 186 | 187 | '@eslint/object-schema@2.1.5': 188 | resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==} 189 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 190 | 191 | '@eslint/plugin-kit@0.2.5': 192 | resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==} 193 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 194 | 195 | '@glimmer/env@0.1.7': 196 | resolution: {integrity: sha512-JKF/a9I9jw6fGoz8kA7LEQslrwJ5jms5CXhu/aqkBWk+PmZ6pTl8mlb/eJ/5ujBGTiQzBhy5AIWF712iA+4/mw==} 197 | 198 | '@glimmer/global-context@0.84.3': 199 | resolution: {integrity: sha512-8Oy9Wg5IZxMEeAnVmzD2NkObf89BeHoFSzJgJROE/deutd3rxg83mvlOez4zBBGYwnTb+VGU2LYRpet92egJjA==} 200 | 201 | '@glimmer/interfaces@0.84.3': 202 | resolution: {integrity: sha512-dk32ykoNojt0mvEaIW6Vli5MGTbQo58uy3Epj7ahCgTHmWOKuw/0G83f2UmFprRwFx689YTXG38I/vbpltEjzg==} 203 | 204 | '@glimmer/interfaces@0.92.3': 205 | resolution: {integrity: sha512-QwQeA01N+0h+TAi/J7iUnZtRuJy+093hNyagxDQBA6b1wCBw+q+al9+O6gmbWlkWE7EifzmNE1nnrgcecJBlJQ==} 206 | 207 | '@glimmer/reference@0.84.3': 208 | resolution: {integrity: sha512-lV+p/aWPVC8vUjmlvYVU7WQJsLh319SdXuAWoX/SE3pq340BJlAJiEcAc6q52y9JNhT57gMwtjMX96W5Xcx/qw==} 209 | 210 | '@glimmer/syntax@0.84.3': 211 | resolution: {integrity: sha512-ioVbTic6ZisLxqTgRBL2PCjYZTFIwobifCustrozRU2xGDiYvVIL0vt25h2c1ioDsX59UgVlDkIK4YTAQQSd2A==} 212 | 213 | '@glimmer/syntax@0.92.3': 214 | resolution: {integrity: sha512-7wPKQmULyXCYf0KvbPmfrs/skPISH2QGR9atCnmDWnHyLv5SSZVLm1P0Ctrpta6+Ci3uGQb7hGk0IjsLEavcYQ==} 215 | 216 | '@glimmer/util@0.84.3': 217 | resolution: {integrity: sha512-qFkh6s16ZSRuu2rfz3T4Wp0fylFj3HBsONGXQcrAdZjdUaIS6v3pNj6mecJ71qRgcym9Hbaq/7/fefIwECUiKw==} 218 | 219 | '@glimmer/util@0.92.3': 220 | resolution: {integrity: sha512-K1oH93gGU36slycxJ9CcFpUTsdOc4XQ6RuZFu5oRsxFYtEF5PSu7ik11h58fyeoaWOr1ebfkyAMawbeI2AJ5GA==} 221 | 222 | '@glimmer/validator@0.84.3': 223 | resolution: {integrity: sha512-RTBV4TokUB0vI31UC7ikpV7lOYpWUlyqaKV//pRC4pexYMlmqnVhkFrdiimB/R1XyNdUOQUmnIAcdic39NkbhQ==} 224 | 225 | '@glimmer/wire-format@0.92.3': 226 | resolution: {integrity: sha512-gFz81Q9+V7Xs0X8mSq6y8qacHm0dPaGJo2/Bfcsdow1hLOKNgTCLr4XeDBhRML8f6I6Gk9ugH4QDxyIOXOpC4w==} 227 | 228 | '@handlebars/parser@2.0.0': 229 | resolution: {integrity: sha512-EP9uEDZv/L5Qh9IWuMUGJRfwhXJ4h1dqKTT4/3+tY0eu7sPis7xh23j61SYUnNF4vqCQvvUXpDo9Bh/+q1zASA==} 230 | 231 | '@humanfs/core@0.19.1': 232 | resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} 233 | engines: {node: '>=18.18.0'} 234 | 235 | '@humanfs/node@0.16.6': 236 | resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} 237 | engines: {node: '>=18.18.0'} 238 | 239 | '@humanwhocodes/module-importer@1.0.1': 240 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 241 | engines: {node: '>=12.22'} 242 | 243 | '@humanwhocodes/retry@0.3.1': 244 | resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} 245 | engines: {node: '>=18.18'} 246 | 247 | '@humanwhocodes/retry@0.4.1': 248 | resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} 249 | engines: {node: '>=18.18'} 250 | 251 | '@jridgewell/gen-mapping@0.3.8': 252 | resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} 253 | engines: {node: '>=6.0.0'} 254 | 255 | '@jridgewell/resolve-uri@3.1.2': 256 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 257 | engines: {node: '>=6.0.0'} 258 | 259 | '@jridgewell/set-array@1.2.1': 260 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 261 | engines: {node: '>=6.0.0'} 262 | 263 | '@jridgewell/sourcemap-codec@1.5.0': 264 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 265 | 266 | '@jridgewell/trace-mapping@0.3.25': 267 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 268 | 269 | '@lint-todo/utils@13.1.1': 270 | resolution: {integrity: sha512-F5z53uvRIF4dYfFfJP3a2Cqg+4P1dgJchJsFnsZE0eZp0LK8X7g2J0CsJHRgns+skpXOlM7n5vFGwkWCWj8qJg==} 271 | engines: {node: 12.* || >= 14} 272 | 273 | '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': 274 | resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} 275 | 276 | '@nodelib/fs.scandir@2.1.5': 277 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 278 | engines: {node: '>= 8'} 279 | 280 | '@nodelib/fs.stat@2.0.5': 281 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 282 | engines: {node: '>= 8'} 283 | 284 | '@nodelib/fs.walk@1.2.8': 285 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 286 | engines: {node: '>= 8'} 287 | 288 | '@simple-dom/interface@1.4.0': 289 | resolution: {integrity: sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA==} 290 | 291 | '@sindresorhus/merge-streams@2.3.0': 292 | resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} 293 | engines: {node: '>=18'} 294 | 295 | '@stylistic/eslint-plugin-js@2.13.0': 296 | resolution: {integrity: sha512-GPPDK4+fcbsQD58a3abbng2Dx+jBoxM5cnYjBM4T24WFZRZdlNSKvR19TxP8CPevzMOodQ9QVzNeqWvMXzfJRA==} 297 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 298 | peerDependencies: 299 | eslint: '>=8.40.0' 300 | 301 | '@types/eslint@8.56.12': 302 | resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==} 303 | 304 | '@types/estree@1.0.6': 305 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 306 | 307 | '@types/json-schema@7.0.15': 308 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 309 | 310 | '@types/minimatch@3.0.5': 311 | resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} 312 | 313 | '@types/symlink-or-copy@1.2.2': 314 | resolution: {integrity: sha512-MQ1AnmTLOncwEf9IVU+B2e4Hchrku5N67NkgcAHW0p3sdzPe0FNMANxEm6OJUzPniEQGkeT3OROLlCwZJLWFZA==} 315 | 316 | acorn-jsx@5.3.2: 317 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 318 | peerDependencies: 319 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 320 | 321 | acorn@8.14.0: 322 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 323 | engines: {node: '>=0.4.0'} 324 | hasBin: true 325 | 326 | ajv@6.12.6: 327 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 328 | 329 | ansi-regex@5.0.1: 330 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 331 | engines: {node: '>=8'} 332 | 333 | ansi-styles@3.2.1: 334 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 335 | engines: {node: '>=4'} 336 | 337 | ansi-styles@4.3.0: 338 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 339 | engines: {node: '>=8'} 340 | 341 | argparse@2.0.1: 342 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 343 | 344 | aria-query@5.3.2: 345 | resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 346 | engines: {node: '>= 0.4'} 347 | 348 | array-buffer-byte-length@1.0.2: 349 | resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} 350 | engines: {node: '>= 0.4'} 351 | 352 | array-equal@1.0.2: 353 | resolution: {integrity: sha512-gUHx76KtnhEgB3HOuFYiCm3FIdEs6ocM2asHvNTkfu/Y09qQVrrVVaOKENmS2KkSaGoxgXNqC+ZVtR/n0MOkSA==} 354 | 355 | array-union@2.1.0: 356 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 357 | engines: {node: '>=8'} 358 | 359 | arraybuffer.prototype.slice@1.0.4: 360 | resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} 361 | engines: {node: '>= 0.4'} 362 | 363 | async-disk-cache@1.3.5: 364 | resolution: {integrity: sha512-VZpqfR0R7CEOJZ/0FOTgWq70lCrZyS1rkI8PXugDUkTKyyAUgZ2zQ09gLhMkEn+wN8LYeUTPxZdXtlX/kmbXKQ==} 365 | 366 | async-disk-cache@2.1.0: 367 | resolution: {integrity: sha512-iH+boep2xivfD9wMaZWkywYIURSmsL96d6MoqrC94BnGSvXE4Quf8hnJiHGFYhw/nLeIa1XyRaf4vvcvkwAefg==} 368 | engines: {node: 8.* || >= 10.*} 369 | 370 | async-promise-queue@1.0.5: 371 | resolution: {integrity: sha512-xi0aQ1rrjPWYmqbwr18rrSKbSaXIeIwSd1J4KAgVfkq8utNbdZoht7GfvfY6swFUAMJ9obkc4WPJmtGwl+B8dw==} 372 | 373 | async@2.6.4: 374 | resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} 375 | 376 | at-least-node@1.0.0: 377 | resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} 378 | engines: {node: '>= 4.0.0'} 379 | 380 | available-typed-arrays@1.0.7: 381 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 382 | engines: {node: '>= 0.4'} 383 | 384 | babel-import-util@0.2.0: 385 | resolution: {integrity: sha512-CtWYYHU/MgK88rxMrLfkD356dApswtR/kWZ/c6JifG1m10e7tBBrs/366dFzWMAoqYmG5/JSh+94tUSpIwh+ag==} 386 | engines: {node: '>= 12.*'} 387 | 388 | babel-import-util@3.0.0: 389 | resolution: {integrity: sha512-4YNPkuVsxAW5lnSTa6cn4Wk49RX6GAB6vX+M6LqEtN0YePqoFczv1/x0EyLK/o+4E1j9jEuYj5Su7IEPab5JHQ==} 390 | engines: {node: '>= 12.*'} 391 | 392 | babel-plugin-ember-modules-api-polyfill@3.5.0: 393 | resolution: {integrity: sha512-pJajN/DkQUnStw0Az8c6khVcMQHgzqWr61lLNtVeu0g61LRW0k9jyK7vaedrHDWGe/Qe8sxG5wpiyW9NsMqFzA==} 394 | engines: {node: 6.* || 8.* || >= 10.*} 395 | 396 | babel-plugin-ember-template-compilation@2.3.0: 397 | resolution: {integrity: sha512-4ZrKVSqdw5PxEKRbqfOpPhrrNBDG3mFPhyT6N1Oyyem81ZIkCvNo7TPKvlTHeFxqb6HtUvCACP/pzFpZ74J4pg==} 398 | engines: {node: '>= 12.*'} 399 | 400 | babel-plugin-htmlbars-inline-precompile@5.3.1: 401 | resolution: {integrity: sha512-QWjjFgSKtSRIcsBhJmEwS2laIdrA6na8HAlc/pEAhjHgQsah/gMiBFRZvbQTy//hWxR4BMwV7/Mya7q5H8uHeA==} 402 | engines: {node: 10.* || >= 12.*} 403 | 404 | balanced-match@1.0.2: 405 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 406 | 407 | base64-js@1.5.1: 408 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 409 | 410 | binaryextensions@2.3.0: 411 | resolution: {integrity: sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==} 412 | engines: {node: '>=0.8'} 413 | 414 | bl@4.1.0: 415 | resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 416 | 417 | blank-object@1.0.2: 418 | resolution: {integrity: sha512-kXQ19Xhoghiyw66CUiGypnuRpWlbHAzY/+NyvqTEdTfhfQGH1/dbEMYiXju7fYKIFePpzp/y9dsu5Cu/PkmawQ==} 419 | 420 | brace-expansion@1.1.11: 421 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 422 | 423 | braces@3.0.3: 424 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 425 | engines: {node: '>=8'} 426 | 427 | broccoli-debug@0.6.5: 428 | resolution: {integrity: sha512-RIVjHvNar9EMCLDW/FggxFRXqpjhncM/3qq87bn/y+/zR9tqEkHvTqbyOc4QnB97NO2m6342w4wGkemkaeOuWg==} 429 | 430 | broccoli-funnel@2.0.2: 431 | resolution: {integrity: sha512-/vDTqtv7ipjEZQOVqO4vGDVAOZyuYzQ/EgGoyewfOgh1M7IQAToBKZI0oAQPgMBeFPPlIbfMuAngk+ohPBuaHQ==} 432 | engines: {node: ^4.5 || 6.* || >= 7.*} 433 | 434 | broccoli-kitchen-sink-helpers@0.3.1: 435 | resolution: {integrity: sha512-gqYnKSJxBSjj/uJqeuRAzYVbmjWhG0mOZ8jrp6+fnUIOgLN6MvI7XxBECDHkYMIFPJ8Smf4xaI066Q2FqQDnXg==} 436 | 437 | broccoli-merge-trees@3.0.2: 438 | resolution: {integrity: sha512-ZyPAwrOdlCddduFbsMyyFzJUrvW6b04pMvDiAQZrCwghlvgowJDY+EfoXn+eR1RRA5nmGHJ+B68T63VnpRiT1A==} 439 | engines: {node: '>=6.0.0'} 440 | 441 | broccoli-node-api@1.7.0: 442 | resolution: {integrity: sha512-QIqLSVJWJUVOhclmkmypJJH9u9s/aWH4+FH6Q6Ju5l+Io4dtwqdPUNmDfw40o6sxhbZHhqGujDJuHTML1wG8Yw==} 443 | 444 | broccoli-node-info@2.2.0: 445 | resolution: {integrity: sha512-VabSGRpKIzpmC+r+tJueCE5h8k6vON7EIMMWu6d/FyPdtijwLQ7QvzShEw+m3mHoDzUaj/kiZsDYrS8X2adsBg==} 446 | engines: {node: 8.* || >= 10.*} 447 | 448 | broccoli-output-wrapper@3.2.5: 449 | resolution: {integrity: sha512-bQAtwjSrF4Nu0CK0JOy5OZqw9t5U0zzv2555EA/cF8/a8SLDTIetk9UgrtMVw7qKLKdSpOZ2liZNeZZDaKgayw==} 450 | engines: {node: 10.* || >= 12.*} 451 | 452 | broccoli-persistent-filter@2.3.1: 453 | resolution: {integrity: sha512-hVsmIgCDrl2NFM+3Gs4Cr2TA6UPaIZip99hN8mtkaUPgM8UeVnCbxelCvBjUBHo0oaaqP5jzqqnRVvb568Yu5g==} 454 | engines: {node: 6.* || >= 8.*} 455 | 456 | broccoli-persistent-filter@3.1.3: 457 | resolution: {integrity: sha512-Q+8iezprZzL9voaBsDY3rQVl7c7H5h+bvv8SpzCZXPZgfBFCbx7KFQ2c3rZR6lW5k4Kwoqt7jG+rZMUg67Gwxw==} 458 | engines: {node: 10.* || >= 12.*} 459 | 460 | broccoli-plugin@1.3.1: 461 | resolution: {integrity: sha512-DW8XASZkmorp+q7J4EeDEZz+LoyKLAd2XZULXyD9l4m9/hAKV3vjHmB1kiUshcWAYMgTP1m2i4NnqCE/23h6AQ==} 462 | 463 | broccoli-plugin@2.1.0: 464 | resolution: {integrity: sha512-ElE4caljW4slapyEhSD9jU9Uayc8SoSABWdmY9SqbV8DHNxU6xg1jJsPcMm+cXOvggR3+G+OXAYQeFjWVnznaw==} 465 | engines: {node: 6.* || 8.* || >= 10.*} 466 | 467 | broccoli-plugin@4.0.7: 468 | resolution: {integrity: sha512-a4zUsWtA1uns1K7p9rExYVYG99rdKeGRymW0qOCNkvDPHQxVi3yVyJHhQbM3EZwdt2E0mnhr5e0c/bPpJ7p3Wg==} 469 | engines: {node: 10.* || >= 12.*} 470 | 471 | broccoli-stew@3.0.0: 472 | resolution: {integrity: sha512-NXfi+Vas24n3Ivo21GvENTI55qxKu7OwKRnCLWXld8MiLiQKQlWIq28eoARaFj0lTUFwUa4jKZeA7fW9PiWQeg==} 473 | engines: {node: 8.* || >= 10.*} 474 | 475 | browserslist@4.24.4: 476 | resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} 477 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 478 | hasBin: true 479 | 480 | buffer@5.7.1: 481 | resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 482 | 483 | call-bind-apply-helpers@1.0.1: 484 | resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==} 485 | engines: {node: '>= 0.4'} 486 | 487 | call-bind@1.0.8: 488 | resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} 489 | engines: {node: '>= 0.4'} 490 | 491 | call-bound@1.0.3: 492 | resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==} 493 | engines: {node: '>= 0.4'} 494 | 495 | callsites@3.1.0: 496 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 497 | engines: {node: '>=6'} 498 | 499 | can-symlink@1.0.0: 500 | resolution: {integrity: sha512-RbsNrFyhwkx+6psk/0fK/Q9orOUr9VMxohGd8vTa4djf4TGLfblBgUfqZChrZuW0Q+mz2eBPFLusw9Jfukzmhg==} 501 | hasBin: true 502 | 503 | caniuse-lite@1.0.30001695: 504 | resolution: {integrity: sha512-vHyLade6wTgI2u1ec3WQBxv+2BrTERV28UXQu9LO6lZ9pYeMk34vjXFLOxo1A4UBA8XTL4njRQZdno/yYaSmWw==} 505 | 506 | chalk@2.4.2: 507 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 508 | engines: {node: '>=4'} 509 | 510 | chalk@4.1.2: 511 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 512 | engines: {node: '>=10'} 513 | 514 | chalk@5.4.1: 515 | resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} 516 | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 517 | 518 | ci-info@4.1.0: 519 | resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==} 520 | engines: {node: '>=8'} 521 | 522 | clean-up-path@1.0.0: 523 | resolution: {integrity: sha512-PHGlEF0Z6976qQyN6gM7kKH6EH0RdfZcc8V+QhFe36eRxV0SMH5OUBZG7Bxa9YcreNzyNbK63cGiZxdSZgosRw==} 524 | 525 | cli-cursor@3.1.0: 526 | resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} 527 | engines: {node: '>=8'} 528 | 529 | cli-spinners@2.9.2: 530 | resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} 531 | engines: {node: '>=6'} 532 | 533 | cliui@8.0.1: 534 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 535 | engines: {node: '>=12'} 536 | 537 | clone@1.0.4: 538 | resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} 539 | engines: {node: '>=0.8'} 540 | 541 | color-convert@1.9.3: 542 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 543 | 544 | color-convert@2.0.1: 545 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 546 | engines: {node: '>=7.0.0'} 547 | 548 | color-name@1.1.3: 549 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 550 | 551 | color-name@1.1.4: 552 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 553 | 554 | colors@1.4.0: 555 | resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} 556 | engines: {node: '>=0.1.90'} 557 | 558 | commander@8.3.0: 559 | resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} 560 | engines: {node: '>= 12'} 561 | 562 | concat-map@0.0.1: 563 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 564 | 565 | content-tag@2.0.3: 566 | resolution: {integrity: sha512-htLIdtfhhKW2fHlFLnZH7GFzHSdSpHhDLrWVswkNiiPMZ5uXq5JfrGboQKFhNQuAAFF8VNB2EYUj3MsdJrKKpg==} 567 | 568 | convert-source-map@2.0.0: 569 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 570 | 571 | core-js@3.40.0: 572 | resolution: {integrity: sha512-7vsMc/Lty6AGnn7uFpYT56QesI5D2Y/UkgKounk87OP9Z2H9Z8kj6jzcSGAxFmUtDOS0ntK6lbQz+Nsa0Jj6mQ==} 573 | 574 | cross-spawn@7.0.6: 575 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 576 | engines: {node: '>= 8'} 577 | 578 | css-tree@3.1.0: 579 | resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==} 580 | engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} 581 | 582 | data-view-buffer@1.0.2: 583 | resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} 584 | engines: {node: '>= 0.4'} 585 | 586 | data-view-byte-length@1.0.2: 587 | resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} 588 | engines: {node: '>= 0.4'} 589 | 590 | data-view-byte-offset@1.0.1: 591 | resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} 592 | engines: {node: '>= 0.4'} 593 | 594 | date-fns@3.6.0: 595 | resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==} 596 | 597 | debug@2.6.9: 598 | resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 599 | peerDependencies: 600 | supports-color: '*' 601 | peerDependenciesMeta: 602 | supports-color: 603 | optional: true 604 | 605 | debug@4.4.0: 606 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} 607 | engines: {node: '>=6.0'} 608 | peerDependencies: 609 | supports-color: '*' 610 | peerDependenciesMeta: 611 | supports-color: 612 | optional: true 613 | 614 | deep-is@0.1.4: 615 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 616 | 617 | defaults@1.0.4: 618 | resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} 619 | 620 | define-data-property@1.1.4: 621 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 622 | engines: {node: '>= 0.4'} 623 | 624 | define-properties@1.2.1: 625 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 626 | engines: {node: '>= 0.4'} 627 | 628 | dir-glob@3.0.1: 629 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 630 | engines: {node: '>=8'} 631 | 632 | dot-case@3.0.4: 633 | resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} 634 | 635 | dunder-proto@1.0.1: 636 | resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} 637 | engines: {node: '>= 0.4'} 638 | 639 | editions@1.3.4: 640 | resolution: {integrity: sha512-gzao+mxnYDzIysXKMQi/+M1mjy/rjestjg6OPoYTtI+3Izp23oiGZitsl9lPDPiTGXbcSIk1iJWhliSaglxnUg==} 641 | engines: {node: '>=0.8'} 642 | 643 | editions@2.3.1: 644 | resolution: {integrity: sha512-ptGvkwTvGdGfC0hfhKg0MT+TRLRKGtUiWGBInxOm5pz7ssADezahjCUaYuZ8Dr+C05FW0AECIIPt4WBxVINEhA==} 645 | engines: {node: '>=0.8'} 646 | 647 | electron-to-chromium@1.5.83: 648 | resolution: {integrity: sha512-LcUDPqSt+V0QmI47XLzZrz5OqILSMGsPFkDYus22rIbgorSvBYEFqq854ltTmUdHkY92FSdAAvsh4jWEULMdfQ==} 649 | 650 | ember-cli-babel-plugin-helpers@1.1.1: 651 | resolution: {integrity: sha512-sKvOiPNHr5F/60NLd7SFzMpYPte/nnGkq/tMIfXejfKHIhaiIkYFqX8Z9UFTKWLLn+V7NOaby6niNPZUdvKCRw==} 652 | engines: {node: 6.* || 8.* || >= 10.*} 653 | 654 | ember-cli-htmlbars@6.3.0: 655 | resolution: {integrity: sha512-N9Y80oZfcfWLsqickMfRd9YByVcTGyhYRnYQ2XVPVrp6jyUyOeRWmEAPh7ERSXpp8Ws4hr/JB9QVQrn/yZa+Ag==} 656 | engines: {node: 12.* || 14.* || >= 16} 657 | 658 | ember-cli-version-checker@5.1.2: 659 | resolution: {integrity: sha512-rk7GY+FmLn/2e22HsZs0Ycrz8HQ1W3Fv+2TFOuEFW9optnDXDgkntPBIl6gact/LHsfBM5RKbM3dHsIIeLgl0Q==} 660 | engines: {node: 10.* || >= 12.*} 661 | 662 | ember-eslint-parser@0.5.8: 663 | resolution: {integrity: sha512-THbt/XCE2twgfG6GXNFOU6oHrsPTPc3fQ4DvHhtj/8u6s2pAYexiZt0RWQhhCiBTQT1kNrNoKbiq/9O7U61yNA==} 664 | engines: {node: '>=16.0.0'} 665 | peerDependencies: 666 | '@babel/core': ^7.23.6 667 | '@typescript-eslint/parser': '*' 668 | peerDependenciesMeta: 669 | '@typescript-eslint/parser': 670 | optional: true 671 | 672 | ember-rfc176-data@0.3.18: 673 | resolution: {integrity: sha512-JtuLoYGSjay1W3MQAxt3eINWXNYYQliK90tLwtb8aeCuQK8zKGCRbBodVIrkcTqshULMnRuTOS6t1P7oQk3g6Q==} 674 | 675 | ember-template-imports@3.4.2: 676 | resolution: {integrity: sha512-OS8TUVG2kQYYwP3netunLVfeijPoOKIs1SvPQRTNOQX4Pu8xGGBEZmrv0U1YTnQn12Eg+p6w/0UdGbUnITjyzw==} 677 | engines: {node: 12.* || >= 14} 678 | 679 | ember-template-lint@6.0.0: 680 | resolution: {integrity: sha512-TWWt/qCd4KoQ50T3We5nCoKcsrAT8Ip79Kmm9eyWjjyL+LAbRFu0z+GxcmW7MR+QCNW/1LQs3kwEdtIcaHEGiA==} 681 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 682 | hasBin: true 683 | 684 | ember-template-recast@6.1.5: 685 | resolution: {integrity: sha512-VnRN8FzEHQnw/5rCv6Wnq8MVYXbGQbFY+rEufvWV+FO/IsxMahGEud4MYWtTA2q8iG+qJFrDQefNvQ//7MI7Qw==} 686 | engines: {node: 12.* || 14.* || >= 16.*} 687 | hasBin: true 688 | 689 | emoji-regex@8.0.0: 690 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 691 | 692 | ensure-posix-path@1.1.1: 693 | resolution: {integrity: sha512-VWU0/zXzVbeJNXvME/5EmLuEj2TauvoaTz6aFYK1Z92JCBlDlZ3Gu0tuGR42kpW1754ywTs+QB0g5TP0oj9Zaw==} 694 | 695 | errlop@2.2.0: 696 | resolution: {integrity: sha512-e64Qj9+4aZzjzzFpZC7p5kmm/ccCrbLhAJplhsDXQFs87XTsXwOpH4s1Io2s90Tau/8r2j9f4l/thhDevRjzxw==} 697 | engines: {node: '>=0.8'} 698 | 699 | es-abstract@1.23.9: 700 | resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==} 701 | engines: {node: '>= 0.4'} 702 | 703 | es-define-property@1.0.1: 704 | resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} 705 | engines: {node: '>= 0.4'} 706 | 707 | es-errors@1.3.0: 708 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 709 | engines: {node: '>= 0.4'} 710 | 711 | es-object-atoms@1.1.1: 712 | resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} 713 | engines: {node: '>= 0.4'} 714 | 715 | es-set-tostringtag@2.1.0: 716 | resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} 717 | engines: {node: '>= 0.4'} 718 | 719 | es-to-primitive@1.3.0: 720 | resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} 721 | engines: {node: '>= 0.4'} 722 | 723 | escalade@3.2.0: 724 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 725 | engines: {node: '>=6'} 726 | 727 | escape-string-regexp@1.0.5: 728 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 729 | engines: {node: '>=0.8.0'} 730 | 731 | escape-string-regexp@4.0.0: 732 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 733 | engines: {node: '>=10'} 734 | 735 | eslint-formatter-kakoune@1.0.0: 736 | resolution: {integrity: sha512-Uk/TVLt6Nf6Xoz7C1iYuZjOSdJxe5aaauGRke8JhKeJwD66Y61/pY2FjtLP04Ooq9PwV34bzrkKkU2UZ5FtDRA==} 737 | 738 | eslint-plugin-decorator-position@6.0.0: 739 | resolution: {integrity: sha512-AUbZbt3JXnmP7Typfba4BIEFkSCc2rA6BkutsYiywIcEoX/yRL7jzqAp4UMpSDNhCMUUAfGt48k3141PhKC07w==} 740 | engines: {node: '>=14'} 741 | peerDependencies: 742 | '@babel/eslint-parser': ^7.18.2 743 | eslint: ^7.31.0 || ^8.0.0 || ^9.0.0 744 | peerDependenciesMeta: 745 | '@babel/eslint-parser': 746 | optional: true 747 | 748 | eslint-plugin-ember@12.3.3: 749 | resolution: {integrity: sha512-OXf3+XofsSMW/zGnp6B1cB2veC9zLzby8RGmHkxNwRHGLs/fYNVBbpwkmdZhzR8+IMN3wjtLR4iNLvkKOAT5bg==} 750 | engines: {node: 18.* || 20.* || >= 21} 751 | peerDependencies: 752 | '@typescript-eslint/parser': '*' 753 | eslint: '>= 8' 754 | peerDependenciesMeta: 755 | '@typescript-eslint/parser': 756 | optional: true 757 | 758 | eslint-plugin-qunit@8.1.2: 759 | resolution: {integrity: sha512-2gDQdHlQW8GVXD7YYkO8vbm9Ldc60JeGMuQN5QlD48OeZ8znBvvoHWZZMeXjvoDPReGaLEvyuWrDtrI8bDbcqw==} 760 | engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0} 761 | 762 | eslint-plugin-simple-import-sort@12.1.1: 763 | resolution: {integrity: sha512-6nuzu4xwQtE3332Uz0to+TxDQYRLTKRESSc2hefVT48Zc8JthmN23Gx9lnYhu0FtkRSL1oxny3kJ2aveVhmOVA==} 764 | peerDependencies: 765 | eslint: '>=5.0.0' 766 | 767 | eslint-plugin-sort-class-members@1.21.0: 768 | resolution: {integrity: sha512-QKV4jvGMu/ge1l4s1TUBC6rqqV/fbABWY7q2EeNpV3FRikoX6KuLhiNvS8UuMi+EERe0hKGrNU9e6ukFDxNnZQ==} 769 | engines: {node: '>=4.0.0'} 770 | peerDependencies: 771 | eslint: '>=0.8.0' 772 | 773 | eslint-scope@5.1.1: 774 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} 775 | engines: {node: '>=8.0.0'} 776 | 777 | eslint-scope@7.2.2: 778 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 779 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 780 | 781 | eslint-scope@8.2.0: 782 | resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} 783 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 784 | 785 | eslint-utils@3.0.0: 786 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} 787 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} 788 | peerDependencies: 789 | eslint: '>=5' 790 | 791 | eslint-visitor-keys@2.1.0: 792 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} 793 | engines: {node: '>=10'} 794 | 795 | eslint-visitor-keys@3.4.3: 796 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 797 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 798 | 799 | eslint-visitor-keys@4.2.0: 800 | resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} 801 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 802 | 803 | eslint@9.15.0: 804 | resolution: {integrity: sha512-7CrWySmIibCgT1Os28lUU6upBshZ+GxybLOrmRzi08kS8MBuO8QA7pXEgYgY5W8vK3e74xv0lpjo9DbaGU9Rkw==} 805 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 806 | hasBin: true 807 | peerDependencies: 808 | jiti: '*' 809 | peerDependenciesMeta: 810 | jiti: 811 | optional: true 812 | 813 | espree@10.3.0: 814 | resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} 815 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 816 | 817 | esquery@1.6.0: 818 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 819 | engines: {node: '>=0.10'} 820 | 821 | esrecurse@4.3.0: 822 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 823 | engines: {node: '>=4.0'} 824 | 825 | estraverse@4.3.0: 826 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} 827 | engines: {node: '>=4.0'} 828 | 829 | estraverse@5.3.0: 830 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 831 | engines: {node: '>=4.0'} 832 | 833 | esutils@2.0.3: 834 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 835 | engines: {node: '>=0.10.0'} 836 | 837 | fast-deep-equal@3.1.3: 838 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 839 | 840 | fast-glob@3.3.3: 841 | resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 842 | engines: {node: '>=8.6.0'} 843 | 844 | fast-json-stable-stringify@2.1.0: 845 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 846 | 847 | fast-levenshtein@2.0.6: 848 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 849 | 850 | fast-ordered-set@1.0.3: 851 | resolution: {integrity: sha512-MxBW4URybFszOx1YlACEoK52P6lE3xiFcPaGCUZ7QQOZ6uJXKo++Se8wa31SjcZ+NC/fdAWX7UtKEfaGgHS2Vg==} 852 | 853 | fastq@1.18.0: 854 | resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==} 855 | 856 | file-entry-cache@8.0.0: 857 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 858 | engines: {node: '>=16.0.0'} 859 | 860 | fill-range@7.1.1: 861 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 862 | engines: {node: '>=8'} 863 | 864 | find-up@5.0.0: 865 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 866 | engines: {node: '>=10'} 867 | 868 | find-up@7.0.0: 869 | resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==} 870 | engines: {node: '>=18'} 871 | 872 | flat-cache@4.0.1: 873 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 874 | engines: {node: '>=16'} 875 | 876 | flatted@3.3.2: 877 | resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} 878 | 879 | for-each@0.3.3: 880 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 881 | 882 | fs-extra@8.1.0: 883 | resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} 884 | engines: {node: '>=6 <7 || >=8'} 885 | 886 | fs-extra@9.1.0: 887 | resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} 888 | engines: {node: '>=10'} 889 | 890 | fs-merger@3.2.1: 891 | resolution: {integrity: sha512-AN6sX12liy0JE7C2evclwoo0aCG3PFulLjrTLsJpWh/2mM+DinhpSGqYLbHBBbIW1PLRNcFhJG8Axtz8mQW3ug==} 892 | 893 | fs-tree-diff@0.5.9: 894 | resolution: {integrity: sha512-872G8ax0kHh01m9n/2KDzgYwouKza0Ad9iFltBpNykvROvf2AGtoOzPJgGx125aolGPER3JuC7uZFrQ7bG1AZw==} 895 | 896 | fs-tree-diff@2.0.1: 897 | resolution: {integrity: sha512-x+CfAZ/lJHQqwlD64pYM5QxWjzWhSjroaVsr8PW831zOApL55qPibed0c+xebaLWVr2BnHFoHdrwOv8pzt8R5A==} 898 | engines: {node: 6.* || 8.* || >= 10.*} 899 | 900 | fs-updater@1.0.4: 901 | resolution: {integrity: sha512-0pJX4mJF/qLsNEwTct8CdnnRdagfb+LmjRPJ8sO+nCnAZLW0cTmz4rTgU25n+RvTuWSITiLKrGVJceJPBIPlKg==} 902 | engines: {node: '>=6.0.0'} 903 | 904 | fs.realpath@1.0.0: 905 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 906 | 907 | function-bind@1.1.2: 908 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 909 | 910 | function.prototype.name@1.1.8: 911 | resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} 912 | engines: {node: '>= 0.4'} 913 | 914 | functions-have-names@1.2.3: 915 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 916 | 917 | fuse.js@7.0.0: 918 | resolution: {integrity: sha512-14F4hBIxqKvD4Zz/XjDc3y94mNZN6pRv3U13Udo0lNLCWRBUsrMv2xwcF/y/Z5sV6+FQW+/ow68cHpm4sunt8Q==} 919 | engines: {node: '>=10'} 920 | 921 | gensync@1.0.0-beta.2: 922 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 923 | engines: {node: '>=6.9.0'} 924 | 925 | get-caller-file@2.0.5: 926 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 927 | engines: {node: 6.* || 8.* || >= 10.*} 928 | 929 | get-intrinsic@1.2.7: 930 | resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==} 931 | engines: {node: '>= 0.4'} 932 | 933 | get-proto@1.0.1: 934 | resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} 935 | engines: {node: '>= 0.4'} 936 | 937 | get-stdin@9.0.0: 938 | resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==} 939 | engines: {node: '>=12'} 940 | 941 | get-symbol-description@1.1.0: 942 | resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} 943 | engines: {node: '>= 0.4'} 944 | 945 | glob-parent@5.1.2: 946 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 947 | engines: {node: '>= 6'} 948 | 949 | glob-parent@6.0.2: 950 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 951 | engines: {node: '>=10.13.0'} 952 | 953 | glob@5.0.15: 954 | resolution: {integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==} 955 | deprecated: Glob versions prior to v9 are no longer supported 956 | 957 | glob@7.2.3: 958 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 959 | deprecated: Glob versions prior to v9 are no longer supported 960 | 961 | globals@11.12.0: 962 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 963 | engines: {node: '>=4'} 964 | 965 | globals@14.0.0: 966 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} 967 | engines: {node: '>=18'} 968 | 969 | globals@15.14.0: 970 | resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==} 971 | engines: {node: '>=18'} 972 | 973 | globalthis@1.0.4: 974 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} 975 | engines: {node: '>= 0.4'} 976 | 977 | globby@11.1.0: 978 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 979 | engines: {node: '>=10'} 980 | 981 | globby@14.0.2: 982 | resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} 983 | engines: {node: '>=18'} 984 | 985 | gopd@1.2.0: 986 | resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} 987 | engines: {node: '>= 0.4'} 988 | 989 | graceful-fs@4.2.11: 990 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 991 | 992 | has-bigints@1.1.0: 993 | resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} 994 | engines: {node: '>= 0.4'} 995 | 996 | has-flag@3.0.0: 997 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 998 | engines: {node: '>=4'} 999 | 1000 | has-flag@4.0.0: 1001 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1002 | engines: {node: '>=8'} 1003 | 1004 | has-property-descriptors@1.0.2: 1005 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 1006 | 1007 | has-proto@1.2.0: 1008 | resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} 1009 | engines: {node: '>= 0.4'} 1010 | 1011 | has-symbols@1.1.0: 1012 | resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} 1013 | engines: {node: '>= 0.4'} 1014 | 1015 | has-tostringtag@1.0.2: 1016 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 1017 | engines: {node: '>= 0.4'} 1018 | 1019 | hash-for-dep@1.5.1: 1020 | resolution: {integrity: sha512-/dQ/A2cl7FBPI2pO0CANkvuuVi/IFS5oTyJ0PsOb6jW6WbVW1js5qJXMJTNbWHXBIPdFTWFbabjB+mE0d+gelw==} 1021 | 1022 | hasown@2.0.2: 1023 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 1024 | engines: {node: '>= 0.4'} 1025 | 1026 | heimdalljs-logger@0.1.10: 1027 | resolution: {integrity: sha512-pO++cJbhIufVI/fmB/u2Yty3KJD0TqNPecehFae0/eps0hkZ3b4Zc/PezUMOpYuHFQbA7FxHZxa305EhmjLj4g==} 1028 | 1029 | heimdalljs@0.2.6: 1030 | resolution: {integrity: sha512-o9bd30+5vLBvBtzCPwwGqpry2+n0Hi6H1+qwt6y+0kwRHGGF8TFIhJPmnuM0xO97zaKrDZMwO/V56fAnn8m/tA==} 1031 | 1032 | html-tags@3.3.1: 1033 | resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} 1034 | engines: {node: '>=8'} 1035 | 1036 | ieee754@1.2.1: 1037 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 1038 | 1039 | ignore@5.3.2: 1040 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 1041 | engines: {node: '>= 4'} 1042 | 1043 | import-fresh@3.3.0: 1044 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1045 | engines: {node: '>=6'} 1046 | 1047 | imurmurhash@0.1.4: 1048 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1049 | engines: {node: '>=0.8.19'} 1050 | 1051 | inflight@1.0.6: 1052 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1053 | deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. 1054 | 1055 | inherits@2.0.4: 1056 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1057 | 1058 | internal-slot@1.1.0: 1059 | resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} 1060 | engines: {node: '>= 0.4'} 1061 | 1062 | is-array-buffer@3.0.5: 1063 | resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} 1064 | engines: {node: '>= 0.4'} 1065 | 1066 | is-async-function@2.1.0: 1067 | resolution: {integrity: sha512-GExz9MtyhlZyXYLxzlJRj5WUCE661zhDa1Yna52CN57AJsymh+DvXXjyveSioqSRdxvUrdKdvqB1b5cVKsNpWQ==} 1068 | engines: {node: '>= 0.4'} 1069 | 1070 | is-bigint@1.1.0: 1071 | resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} 1072 | engines: {node: '>= 0.4'} 1073 | 1074 | is-boolean-object@1.2.1: 1075 | resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==} 1076 | engines: {node: '>= 0.4'} 1077 | 1078 | is-callable@1.2.7: 1079 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1080 | engines: {node: '>= 0.4'} 1081 | 1082 | is-core-module@2.16.1: 1083 | resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} 1084 | engines: {node: '>= 0.4'} 1085 | 1086 | is-data-view@1.0.2: 1087 | resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} 1088 | engines: {node: '>= 0.4'} 1089 | 1090 | is-date-object@1.1.0: 1091 | resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} 1092 | engines: {node: '>= 0.4'} 1093 | 1094 | is-extglob@2.1.1: 1095 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1096 | engines: {node: '>=0.10.0'} 1097 | 1098 | is-finalizationregistry@1.1.1: 1099 | resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} 1100 | engines: {node: '>= 0.4'} 1101 | 1102 | is-fullwidth-code-point@3.0.0: 1103 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1104 | engines: {node: '>=8'} 1105 | 1106 | is-generator-function@1.1.0: 1107 | resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} 1108 | engines: {node: '>= 0.4'} 1109 | 1110 | is-glob@4.0.3: 1111 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1112 | engines: {node: '>=0.10.0'} 1113 | 1114 | is-interactive@1.0.0: 1115 | resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} 1116 | engines: {node: '>=8'} 1117 | 1118 | is-map@2.0.3: 1119 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 1120 | engines: {node: '>= 0.4'} 1121 | 1122 | is-number-object@1.1.1: 1123 | resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} 1124 | engines: {node: '>= 0.4'} 1125 | 1126 | is-number@7.0.0: 1127 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1128 | engines: {node: '>=0.12.0'} 1129 | 1130 | is-regex@1.2.1: 1131 | resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} 1132 | engines: {node: '>= 0.4'} 1133 | 1134 | is-set@2.0.3: 1135 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} 1136 | engines: {node: '>= 0.4'} 1137 | 1138 | is-shared-array-buffer@1.0.4: 1139 | resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} 1140 | engines: {node: '>= 0.4'} 1141 | 1142 | is-string@1.1.1: 1143 | resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} 1144 | engines: {node: '>= 0.4'} 1145 | 1146 | is-symbol@1.1.1: 1147 | resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} 1148 | engines: {node: '>= 0.4'} 1149 | 1150 | is-typed-array@1.1.15: 1151 | resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} 1152 | engines: {node: '>= 0.4'} 1153 | 1154 | is-unicode-supported@0.1.0: 1155 | resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} 1156 | engines: {node: '>=10'} 1157 | 1158 | is-weakmap@2.0.2: 1159 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 1160 | engines: {node: '>= 0.4'} 1161 | 1162 | is-weakref@1.1.0: 1163 | resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==} 1164 | engines: {node: '>= 0.4'} 1165 | 1166 | is-weakset@2.0.4: 1167 | resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} 1168 | engines: {node: '>= 0.4'} 1169 | 1170 | isarray@1.0.0: 1171 | resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} 1172 | 1173 | isarray@2.0.5: 1174 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1175 | 1176 | isexe@2.0.0: 1177 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1178 | 1179 | isobject@2.1.0: 1180 | resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} 1181 | engines: {node: '>=0.10.0'} 1182 | 1183 | istextorbinary@2.1.0: 1184 | resolution: {integrity: sha512-kT1g2zxZ5Tdabtpp9VSdOzW9lb6LXImyWbzbQeTxoRtHhurC9Ej9Wckngr2+uepPL09ky/mJHmN9jeJPML5t6A==} 1185 | engines: {node: '>=0.12'} 1186 | 1187 | istextorbinary@2.6.0: 1188 | resolution: {integrity: sha512-+XRlFseT8B3L9KyjxxLjfXSLMuErKDsd8DBNrsaxoViABMEZlOSCstwmw0qpoFX3+U6yWU1yhLudAe6/lETGGA==} 1189 | engines: {node: '>=0.12'} 1190 | 1191 | js-string-escape@1.0.1: 1192 | resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} 1193 | engines: {node: '>= 0.8'} 1194 | 1195 | js-tokens@4.0.0: 1196 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1197 | 1198 | js-yaml@4.1.0: 1199 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1200 | hasBin: true 1201 | 1202 | jsesc@3.1.0: 1203 | resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} 1204 | engines: {node: '>=6'} 1205 | hasBin: true 1206 | 1207 | json-buffer@3.0.1: 1208 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1209 | 1210 | json-schema-traverse@0.4.1: 1211 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1212 | 1213 | json-stable-stringify-without-jsonify@1.0.1: 1214 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1215 | 1216 | json5@2.2.3: 1217 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 1218 | engines: {node: '>=6'} 1219 | hasBin: true 1220 | 1221 | jsonfile@4.0.0: 1222 | resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} 1223 | 1224 | jsonfile@6.1.0: 1225 | resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} 1226 | 1227 | keyv@4.5.4: 1228 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1229 | 1230 | language-subtag-registry@0.3.23: 1231 | resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} 1232 | 1233 | language-tags@1.0.9: 1234 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} 1235 | engines: {node: '>=0.10'} 1236 | 1237 | levn@0.4.1: 1238 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1239 | engines: {node: '>= 0.8.0'} 1240 | 1241 | line-column@1.0.2: 1242 | resolution: {integrity: sha512-Ktrjk5noGYlHsVnYWh62FLVs4hTb8A3e+vucNZMgPeAOITdshMSgv4cCZQeRDjm7+goqmo6+liZwTXo+U3sVww==} 1243 | 1244 | locate-path@6.0.0: 1245 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1246 | engines: {node: '>=10'} 1247 | 1248 | locate-path@7.2.0: 1249 | resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} 1250 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1251 | 1252 | lodash.camelcase@4.3.0: 1253 | resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} 1254 | 1255 | lodash.kebabcase@4.1.1: 1256 | resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} 1257 | 1258 | lodash.merge@4.6.2: 1259 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1260 | 1261 | lodash@4.17.21: 1262 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 1263 | 1264 | log-symbols@4.1.0: 1265 | resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} 1266 | engines: {node: '>=10'} 1267 | 1268 | lower-case@2.0.2: 1269 | resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} 1270 | 1271 | lru-cache@5.1.1: 1272 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 1273 | 1274 | magic-string@0.25.9: 1275 | resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} 1276 | 1277 | matcher-collection@1.1.2: 1278 | resolution: {integrity: sha512-YQ/teqaOIIfUHedRam08PB3NK7Mjct6BvzRnJmpGDm8uFXpNr1sbY4yuflI5JcEs6COpYA0FpRQhSDBf1tT95g==} 1279 | 1280 | matcher-collection@2.0.1: 1281 | resolution: {integrity: sha512-daE62nS2ZQsDg9raM0IlZzLmI2u+7ZapXBwdoeBUKAYERPDDIc0qNqA8E0Rp2D+gspKR7BgIFP52GeujaGXWeQ==} 1282 | engines: {node: 6.* || 8.* || >= 10.*} 1283 | 1284 | math-intrinsics@1.1.0: 1285 | resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} 1286 | engines: {node: '>= 0.4'} 1287 | 1288 | mathml-tag-names@2.1.3: 1289 | resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==} 1290 | 1291 | mdn-data@2.12.2: 1292 | resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==} 1293 | 1294 | merge-trees@2.0.0: 1295 | resolution: {integrity: sha512-5xBbmqYBalWqmhYm51XlohhkmVOua3VAUrrWh8t9iOkaLpS6ifqm/UVuUjQCeDVJ9Vx3g2l6ihfkbLSTeKsHbw==} 1296 | 1297 | merge2@1.4.1: 1298 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1299 | engines: {node: '>= 8'} 1300 | 1301 | micromatch@4.0.8: 1302 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1303 | engines: {node: '>=8.6'} 1304 | 1305 | mimic-fn@2.1.0: 1306 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 1307 | engines: {node: '>=6'} 1308 | 1309 | minimatch@3.1.2: 1310 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1311 | 1312 | minimist@1.2.8: 1313 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1314 | 1315 | mkdirp@0.5.6: 1316 | resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} 1317 | hasBin: true 1318 | 1319 | mktemp@0.4.0: 1320 | resolution: {integrity: sha512-IXnMcJ6ZyTuhRmJSjzvHSRhlVPiN9Jwc6e59V0bEJ0ba6OBeX2L0E+mRN1QseeOF4mM+F1Rit6Nh7o+rl2Yn/A==} 1321 | engines: {node: '>0.9'} 1322 | 1323 | ms@2.0.0: 1324 | resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} 1325 | 1326 | ms@2.1.3: 1327 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1328 | 1329 | natural-compare@1.4.0: 1330 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1331 | 1332 | no-case@3.0.4: 1333 | resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} 1334 | 1335 | node-releases@2.0.19: 1336 | resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} 1337 | 1338 | object-assign@4.1.1: 1339 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1340 | engines: {node: '>=0.10.0'} 1341 | 1342 | object-inspect@1.13.3: 1343 | resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} 1344 | engines: {node: '>= 0.4'} 1345 | 1346 | object-keys@1.1.1: 1347 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1348 | engines: {node: '>= 0.4'} 1349 | 1350 | object.assign@4.1.7: 1351 | resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} 1352 | engines: {node: '>= 0.4'} 1353 | 1354 | once@1.4.0: 1355 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1356 | 1357 | onetime@5.1.2: 1358 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 1359 | engines: {node: '>=6'} 1360 | 1361 | optionator@0.9.4: 1362 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1363 | engines: {node: '>= 0.8.0'} 1364 | 1365 | ora@5.4.1: 1366 | resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} 1367 | engines: {node: '>=10'} 1368 | 1369 | os-tmpdir@1.0.2: 1370 | resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} 1371 | engines: {node: '>=0.10.0'} 1372 | 1373 | own-keys@1.0.1: 1374 | resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} 1375 | engines: {node: '>= 0.4'} 1376 | 1377 | p-limit@3.1.0: 1378 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1379 | engines: {node: '>=10'} 1380 | 1381 | p-limit@4.0.0: 1382 | resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} 1383 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1384 | 1385 | p-locate@5.0.0: 1386 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1387 | engines: {node: '>=10'} 1388 | 1389 | p-locate@6.0.0: 1390 | resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} 1391 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1392 | 1393 | parent-module@1.0.1: 1394 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1395 | engines: {node: '>=6'} 1396 | 1397 | parse-static-imports@1.1.0: 1398 | resolution: {integrity: sha512-HlxrZcISCblEV0lzXmAHheH/8qEkKgmqkdxyHTPbSqsTUV8GzqmN1L+SSti+VbNPfbBO3bYLPHDiUs2avbAdbA==} 1399 | 1400 | path-exists@4.0.0: 1401 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1402 | engines: {node: '>=8'} 1403 | 1404 | path-exists@5.0.0: 1405 | resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} 1406 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1407 | 1408 | path-is-absolute@1.0.1: 1409 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1410 | engines: {node: '>=0.10.0'} 1411 | 1412 | path-key@3.1.1: 1413 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1414 | engines: {node: '>=8'} 1415 | 1416 | path-parse@1.0.7: 1417 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1418 | 1419 | path-posix@1.0.0: 1420 | resolution: {integrity: sha512-1gJ0WpNIiYcQydgg3Ed8KzvIqTsDpNwq+cjBCssvBtuTWjEqY1AW+i+OepiEMqDCzyro9B2sLAe4RBPajMYFiA==} 1421 | 1422 | path-root-regex@0.1.2: 1423 | resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} 1424 | engines: {node: '>=0.10.0'} 1425 | 1426 | path-root@0.1.1: 1427 | resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} 1428 | engines: {node: '>=0.10.0'} 1429 | 1430 | path-type@4.0.0: 1431 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 1432 | engines: {node: '>=8'} 1433 | 1434 | path-type@5.0.0: 1435 | resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} 1436 | engines: {node: '>=12'} 1437 | 1438 | picocolors@1.1.1: 1439 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1440 | 1441 | picomatch@2.3.1: 1442 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1443 | engines: {node: '>=8.6'} 1444 | 1445 | possible-typed-array-names@1.0.0: 1446 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 1447 | engines: {node: '>= 0.4'} 1448 | 1449 | prelude-ls@1.2.1: 1450 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1451 | engines: {node: '>= 0.8.0'} 1452 | 1453 | prettier-plugin-ember-template-tag@0.3.2: 1454 | resolution: {integrity: sha512-L/15ujsvuOpuIB9y9XJJs/QOPgdot76T0U1Q34C19igS1lsaL/cdRw8rXIVC5Z2x362yZI33Qodo//7kK7ItkA==} 1455 | engines: {node: 14.* || 16.* || >= 18} 1456 | 1457 | prettier@2.8.8: 1458 | resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} 1459 | engines: {node: '>=10.13.0'} 1460 | hasBin: true 1461 | 1462 | promise-map-series@0.2.3: 1463 | resolution: {integrity: sha512-wx9Chrutvqu1N/NHzTayZjE1BgIwt6SJykQoCOic4IZ9yUDjKyVYrpLa/4YCNsV61eRENfs29hrEquVuB13Zlw==} 1464 | 1465 | promise-map-series@0.3.0: 1466 | resolution: {integrity: sha512-3npG2NGhTc8BWBolLLf8l/92OxMGaRLbqvIh9wjCHhDXNvk4zsxaTaCpiCunW09qWPrN2zeNSNwRLVBrQQtutA==} 1467 | engines: {node: 10.* || >= 12.*} 1468 | 1469 | proper-lockfile@4.1.2: 1470 | resolution: {integrity: sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==} 1471 | 1472 | punycode@2.3.1: 1473 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1474 | engines: {node: '>=6'} 1475 | 1476 | queue-microtask@1.2.3: 1477 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1478 | 1479 | quick-temp@0.1.8: 1480 | resolution: {integrity: sha512-YsmIFfD9j2zaFwJkzI6eMG7y0lQP7YeWzgtFgNl38pGWZBSXJooZbOWwkcRot7Vt0Fg9L23pX0tqWU3VvLDsiA==} 1481 | 1482 | readable-stream@3.6.2: 1483 | resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 1484 | engines: {node: '>= 6'} 1485 | 1486 | reflect.getprototypeof@1.0.10: 1487 | resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} 1488 | engines: {node: '>= 0.4'} 1489 | 1490 | regexp.prototype.flags@1.5.4: 1491 | resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} 1492 | engines: {node: '>= 0.4'} 1493 | 1494 | require-directory@2.1.1: 1495 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 1496 | engines: {node: '>=0.10.0'} 1497 | 1498 | requireindex@1.2.0: 1499 | resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} 1500 | engines: {node: '>=0.10.5'} 1501 | 1502 | resolve-from@4.0.0: 1503 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1504 | engines: {node: '>=4'} 1505 | 1506 | resolve-package-path@1.2.7: 1507 | resolution: {integrity: sha512-fVEKHGeK85bGbVFuwO9o1aU0n3vqQGrezPc51JGu9UTXpFQfWq5qCeKxyaRUSvephs+06c5j5rPq/dzHGEo8+Q==} 1508 | 1509 | resolve-package-path@3.1.0: 1510 | resolution: {integrity: sha512-2oC2EjWbMJwvSN6Z7DbDfJMnD8MYEouaLn5eIX0j8XwPsYCVIyY9bbnX88YHVkbr8XHqvZrYbxaLPibfTYKZMA==} 1511 | engines: {node: 10.* || >= 12} 1512 | 1513 | resolve@1.22.10: 1514 | resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} 1515 | engines: {node: '>= 0.4'} 1516 | hasBin: true 1517 | 1518 | restore-cursor@3.1.0: 1519 | resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} 1520 | engines: {node: '>=8'} 1521 | 1522 | retry@0.12.0: 1523 | resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} 1524 | engines: {node: '>= 4'} 1525 | 1526 | reusify@1.0.4: 1527 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1528 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1529 | 1530 | rimraf@2.7.1: 1531 | resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} 1532 | deprecated: Rimraf versions prior to v4 are no longer supported 1533 | hasBin: true 1534 | 1535 | rimraf@3.0.2: 1536 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1537 | deprecated: Rimraf versions prior to v4 are no longer supported 1538 | hasBin: true 1539 | 1540 | rsvp@3.2.1: 1541 | resolution: {integrity: sha512-Rf4YVNYpKjZ6ASAmibcwTNciQ5Co5Ztq6iZPEykHpkoflnD/K5ryE/rHehFsTm4NJj8nKDhbi3eKBWGogmNnkg==} 1542 | 1543 | rsvp@3.6.2: 1544 | resolution: {integrity: sha512-OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw==} 1545 | engines: {node: 0.12.* || 4.* || 6.* || >= 7.*} 1546 | 1547 | rsvp@4.8.5: 1548 | resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} 1549 | engines: {node: 6.* || >= 7.*} 1550 | 1551 | run-parallel@1.2.0: 1552 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1553 | 1554 | safe-array-concat@1.1.3: 1555 | resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} 1556 | engines: {node: '>=0.4'} 1557 | 1558 | safe-buffer@5.2.1: 1559 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 1560 | 1561 | safe-push-apply@1.0.0: 1562 | resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} 1563 | engines: {node: '>= 0.4'} 1564 | 1565 | safe-regex-test@1.1.0: 1566 | resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} 1567 | engines: {node: '>= 0.4'} 1568 | 1569 | semver@6.3.1: 1570 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1571 | hasBin: true 1572 | 1573 | semver@7.6.3: 1574 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 1575 | engines: {node: '>=10'} 1576 | hasBin: true 1577 | 1578 | set-function-length@1.2.2: 1579 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 1580 | engines: {node: '>= 0.4'} 1581 | 1582 | set-function-name@2.0.2: 1583 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 1584 | engines: {node: '>= 0.4'} 1585 | 1586 | set-proto@1.0.0: 1587 | resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} 1588 | engines: {node: '>= 0.4'} 1589 | 1590 | shebang-command@2.0.0: 1591 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1592 | engines: {node: '>=8'} 1593 | 1594 | shebang-regex@3.0.0: 1595 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1596 | engines: {node: '>=8'} 1597 | 1598 | side-channel-list@1.0.0: 1599 | resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} 1600 | engines: {node: '>= 0.4'} 1601 | 1602 | side-channel-map@1.0.1: 1603 | resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} 1604 | engines: {node: '>= 0.4'} 1605 | 1606 | side-channel-weakmap@1.0.2: 1607 | resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} 1608 | engines: {node: '>= 0.4'} 1609 | 1610 | side-channel@1.1.0: 1611 | resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} 1612 | engines: {node: '>= 0.4'} 1613 | 1614 | signal-exit@3.0.7: 1615 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 1616 | 1617 | silent-error@1.1.1: 1618 | resolution: {integrity: sha512-n4iEKyNcg4v6/jpb3c0/iyH2G1nzUNl7Gpqtn/mHIJK9S/q/7MCfoO4rwVOoO59qPFIc0hVHvMbiOJ0NdtxKKw==} 1619 | 1620 | simple-html-tokenizer@0.5.11: 1621 | resolution: {integrity: sha512-C2WEK/Z3HoSFbYq8tI7ni3eOo/NneSPRoPpcM7WdLjFOArFuyXEjAoCdOC3DgMfRyziZQ1hCNR4mrNdWEvD0og==} 1622 | 1623 | slash@3.0.0: 1624 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 1625 | engines: {node: '>=8'} 1626 | 1627 | slash@5.1.0: 1628 | resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} 1629 | engines: {node: '>=14.16'} 1630 | 1631 | snake-case@3.0.4: 1632 | resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} 1633 | 1634 | source-map-js@1.2.1: 1635 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1636 | engines: {node: '>=0.10.0'} 1637 | 1638 | sourcemap-codec@1.4.8: 1639 | resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} 1640 | deprecated: Please use @jridgewell/sourcemap-codec instead 1641 | 1642 | sprintf-js@1.1.3: 1643 | resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} 1644 | 1645 | string-width@4.2.3: 1646 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1647 | engines: {node: '>=8'} 1648 | 1649 | string.prototype.matchall@4.0.12: 1650 | resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==} 1651 | engines: {node: '>= 0.4'} 1652 | 1653 | string.prototype.trim@1.2.10: 1654 | resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} 1655 | engines: {node: '>= 0.4'} 1656 | 1657 | string.prototype.trimend@1.0.9: 1658 | resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} 1659 | engines: {node: '>= 0.4'} 1660 | 1661 | string.prototype.trimstart@1.0.8: 1662 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} 1663 | engines: {node: '>= 0.4'} 1664 | 1665 | string_decoder@1.3.0: 1666 | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 1667 | 1668 | strip-ansi@6.0.1: 1669 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1670 | engines: {node: '>=8'} 1671 | 1672 | strip-json-comments@3.1.1: 1673 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1674 | engines: {node: '>=8'} 1675 | 1676 | supports-color@5.5.0: 1677 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 1678 | engines: {node: '>=4'} 1679 | 1680 | supports-color@7.2.0: 1681 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1682 | engines: {node: '>=8'} 1683 | 1684 | supports-preserve-symlinks-flag@1.0.0: 1685 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1686 | engines: {node: '>= 0.4'} 1687 | 1688 | svg-tags@1.0.0: 1689 | resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} 1690 | 1691 | symlink-or-copy@1.3.1: 1692 | resolution: {integrity: sha512-0K91MEXFpBUaywiwSSkmKjnGcasG/rVBXFLJz5DrgGabpYD6N+3yZrfD6uUIfpuTu65DZLHi7N8CizHc07BPZA==} 1693 | 1694 | sync-disk-cache@1.3.4: 1695 | resolution: {integrity: sha512-GlkGeM81GPPEKz/lH7QUTbvqLq7K/IUTuaKDSMulP9XQ42glqNJIN/RKgSOw4y8vxL1gOVvj+W7ruEO4s36eCw==} 1696 | 1697 | sync-disk-cache@2.1.0: 1698 | resolution: {integrity: sha512-vngT2JmkSapgq0z7uIoYtB9kWOOzMihAAYq/D3Pjm/ODOGMgS4r++B+OZ09U4hWR6EaOdy9eqQ7/8ygbH3wehA==} 1699 | engines: {node: 8.* || >= 10.*} 1700 | 1701 | textextensions@2.6.0: 1702 | resolution: {integrity: sha512-49WtAWS+tcsy93dRt6P0P3AMD2m5PvXRhuEA0kaXos5ZLlujtYmpmFsB+QvWUSxE1ZsstmYXfQ7L40+EcQgpAQ==} 1703 | engines: {node: '>=0.8'} 1704 | 1705 | tmp@0.0.28: 1706 | resolution: {integrity: sha512-c2mmfiBmND6SOVxzogm1oda0OJ1HZVIk/5n26N59dDTh80MUeavpiCls4PGAdkX1PFkKokLpcf7prSjCeXLsJg==} 1707 | engines: {node: '>=0.4.0'} 1708 | 1709 | tmp@0.2.3: 1710 | resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} 1711 | engines: {node: '>=14.14'} 1712 | 1713 | to-regex-range@5.0.1: 1714 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1715 | engines: {node: '>=8.0'} 1716 | 1717 | tree-sync@1.4.0: 1718 | resolution: {integrity: sha512-YvYllqh3qrR5TAYZZTXdspnIhlKAYezPYw11ntmweoceu4VK+keN356phHRIIo1d+RDmLpHZrUlmxga2gc9kSQ==} 1719 | 1720 | ts-replace-all@1.0.0: 1721 | resolution: {integrity: sha512-6uBtdkw3jHXkPtx/e9xB/5vcngMm17CyJYsS2YZeQ+9FdRnt6Ev5g931Sg2p+dxbtMGoCm13m3ax/obicTZIkQ==} 1722 | 1723 | tslib@2.8.1: 1724 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1725 | 1726 | type-check@0.4.0: 1727 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1728 | engines: {node: '>= 0.8.0'} 1729 | 1730 | typed-array-buffer@1.0.3: 1731 | resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} 1732 | engines: {node: '>= 0.4'} 1733 | 1734 | typed-array-byte-length@1.0.3: 1735 | resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} 1736 | engines: {node: '>= 0.4'} 1737 | 1738 | typed-array-byte-offset@1.0.4: 1739 | resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} 1740 | engines: {node: '>= 0.4'} 1741 | 1742 | typed-array-length@1.0.7: 1743 | resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} 1744 | engines: {node: '>= 0.4'} 1745 | 1746 | typescript@5.7.3: 1747 | resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==} 1748 | engines: {node: '>=14.17'} 1749 | hasBin: true 1750 | 1751 | unbox-primitive@1.1.0: 1752 | resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} 1753 | engines: {node: '>= 0.4'} 1754 | 1755 | underscore.string@3.3.6: 1756 | resolution: {integrity: sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ==} 1757 | 1758 | unicorn-magic@0.1.0: 1759 | resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} 1760 | engines: {node: '>=18'} 1761 | 1762 | universalify@0.1.2: 1763 | resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} 1764 | engines: {node: '>= 4.0.0'} 1765 | 1766 | universalify@2.0.1: 1767 | resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} 1768 | engines: {node: '>= 10.0.0'} 1769 | 1770 | upath@2.0.1: 1771 | resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} 1772 | engines: {node: '>=4'} 1773 | 1774 | update-browserslist-db@1.1.2: 1775 | resolution: {integrity: sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==} 1776 | hasBin: true 1777 | peerDependencies: 1778 | browserslist: '>= 4.21.0' 1779 | 1780 | uri-js@4.4.1: 1781 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1782 | 1783 | username-sync@1.0.3: 1784 | resolution: {integrity: sha512-m/7/FSqjJNAzF2La448c/aEom0gJy7HY7Y509h6l0ePvEkFictAGptwWaj1msWJ38JbfEDOUoE8kqFee9EHKdA==} 1785 | 1786 | util-deprecate@1.0.2: 1787 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1788 | 1789 | v8-compile-cache@2.4.0: 1790 | resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} 1791 | 1792 | validate-peer-dependencies@1.2.0: 1793 | resolution: {integrity: sha512-nd2HUpKc6RWblPZQ2GDuI65sxJ2n/UqZwSBVtj64xlWjMx0m7ZB2m9b2JS3v1f+n9VWH/dd1CMhkHfP6pIdckA==} 1794 | 1795 | walk-sync@0.3.4: 1796 | resolution: {integrity: sha512-ttGcuHA/OBnN2pcM6johpYlEms7XpO5/fyKIr48541xXedan4roO8cS1Q2S/zbbjGH/BarYDAMeS2Mi9HE5Tig==} 1797 | 1798 | walk-sync@1.1.4: 1799 | resolution: {integrity: sha512-nowc9thB/Jg0KW4TgxoRjLLYRPvl3DB/98S89r4ZcJqq2B0alNcKDh6pzLkBSkPMzRSMsJghJHQi79qw0YWEkA==} 1800 | 1801 | walk-sync@2.2.0: 1802 | resolution: {integrity: sha512-IC8sL7aB4/ZgFcGI2T1LczZeFWZ06b3zoHH7jBPyHxOtIIz1jppWHjjEXkOFvFojBVAK9pV7g47xOZ4LW3QLfg==} 1803 | engines: {node: 8.* || >= 10.*} 1804 | 1805 | wcwidth@1.0.1: 1806 | resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} 1807 | 1808 | which-boxed-primitive@1.1.1: 1809 | resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} 1810 | engines: {node: '>= 0.4'} 1811 | 1812 | which-builtin-type@1.2.1: 1813 | resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} 1814 | engines: {node: '>= 0.4'} 1815 | 1816 | which-collection@1.0.2: 1817 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} 1818 | engines: {node: '>= 0.4'} 1819 | 1820 | which-typed-array@1.1.18: 1821 | resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==} 1822 | engines: {node: '>= 0.4'} 1823 | 1824 | which@2.0.2: 1825 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1826 | engines: {node: '>= 8'} 1827 | hasBin: true 1828 | 1829 | word-wrap@1.2.5: 1830 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 1831 | engines: {node: '>=0.10.0'} 1832 | 1833 | workerpool@6.5.1: 1834 | resolution: {integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==} 1835 | 1836 | wrap-ansi@7.0.0: 1837 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 1838 | engines: {node: '>=10'} 1839 | 1840 | wrappy@1.0.2: 1841 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1842 | 1843 | y18n@5.0.8: 1844 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 1845 | engines: {node: '>=10'} 1846 | 1847 | yallist@3.1.1: 1848 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 1849 | 1850 | yargs-parser@21.1.1: 1851 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 1852 | engines: {node: '>=12'} 1853 | 1854 | yargs@17.7.2: 1855 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 1856 | engines: {node: '>=12'} 1857 | 1858 | yocto-queue@0.1.0: 1859 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1860 | engines: {node: '>=10'} 1861 | 1862 | yocto-queue@1.1.1: 1863 | resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} 1864 | engines: {node: '>=12.20'} 1865 | 1866 | snapshots: 1867 | 1868 | '@ampproject/remapping@2.3.0': 1869 | dependencies: 1870 | '@jridgewell/gen-mapping': 0.3.8 1871 | '@jridgewell/trace-mapping': 0.3.25 1872 | 1873 | '@babel/code-frame@7.26.2': 1874 | dependencies: 1875 | '@babel/helper-validator-identifier': 7.25.9 1876 | js-tokens: 4.0.0 1877 | picocolors: 1.1.1 1878 | 1879 | '@babel/compat-data@7.26.5': {} 1880 | 1881 | '@babel/core@7.26.0': 1882 | dependencies: 1883 | '@ampproject/remapping': 2.3.0 1884 | '@babel/code-frame': 7.26.2 1885 | '@babel/generator': 7.26.5 1886 | '@babel/helper-compilation-targets': 7.26.5 1887 | '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) 1888 | '@babel/helpers': 7.26.0 1889 | '@babel/parser': 7.26.5 1890 | '@babel/template': 7.25.9 1891 | '@babel/traverse': 7.26.5 1892 | '@babel/types': 7.26.5 1893 | convert-source-map: 2.0.0 1894 | debug: 4.4.0 1895 | gensync: 1.0.0-beta.2 1896 | json5: 2.2.3 1897 | semver: 6.3.1 1898 | transitivePeerDependencies: 1899 | - supports-color 1900 | 1901 | '@babel/eslint-parser@7.26.5(@babel/core@7.26.0)(eslint@9.15.0)': 1902 | dependencies: 1903 | '@babel/core': 7.26.0 1904 | '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 1905 | eslint: 9.15.0 1906 | eslint-visitor-keys: 2.1.0 1907 | semver: 6.3.1 1908 | 1909 | '@babel/generator@7.26.5': 1910 | dependencies: 1911 | '@babel/parser': 7.26.5 1912 | '@babel/types': 7.26.5 1913 | '@jridgewell/gen-mapping': 0.3.8 1914 | '@jridgewell/trace-mapping': 0.3.25 1915 | jsesc: 3.1.0 1916 | 1917 | '@babel/helper-annotate-as-pure@7.25.9': 1918 | dependencies: 1919 | '@babel/types': 7.26.5 1920 | 1921 | '@babel/helper-compilation-targets@7.26.5': 1922 | dependencies: 1923 | '@babel/compat-data': 7.26.5 1924 | '@babel/helper-validator-option': 7.25.9 1925 | browserslist: 4.24.4 1926 | lru-cache: 5.1.1 1927 | semver: 6.3.1 1928 | 1929 | '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)': 1930 | dependencies: 1931 | '@babel/core': 7.26.0 1932 | '@babel/helper-annotate-as-pure': 7.25.9 1933 | '@babel/helper-member-expression-to-functions': 7.25.9 1934 | '@babel/helper-optimise-call-expression': 7.25.9 1935 | '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.0) 1936 | '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 1937 | '@babel/traverse': 7.26.5 1938 | semver: 6.3.1 1939 | transitivePeerDependencies: 1940 | - supports-color 1941 | 1942 | '@babel/helper-member-expression-to-functions@7.25.9': 1943 | dependencies: 1944 | '@babel/traverse': 7.26.5 1945 | '@babel/types': 7.26.5 1946 | transitivePeerDependencies: 1947 | - supports-color 1948 | 1949 | '@babel/helper-module-imports@7.25.9': 1950 | dependencies: 1951 | '@babel/traverse': 7.26.5 1952 | '@babel/types': 7.26.5 1953 | transitivePeerDependencies: 1954 | - supports-color 1955 | 1956 | '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)': 1957 | dependencies: 1958 | '@babel/core': 7.26.0 1959 | '@babel/helper-module-imports': 7.25.9 1960 | '@babel/helper-validator-identifier': 7.25.9 1961 | '@babel/traverse': 7.26.5 1962 | transitivePeerDependencies: 1963 | - supports-color 1964 | 1965 | '@babel/helper-optimise-call-expression@7.25.9': 1966 | dependencies: 1967 | '@babel/types': 7.26.5 1968 | 1969 | '@babel/helper-plugin-utils@7.26.5': {} 1970 | 1971 | '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.0)': 1972 | dependencies: 1973 | '@babel/core': 7.26.0 1974 | '@babel/helper-member-expression-to-functions': 7.25.9 1975 | '@babel/helper-optimise-call-expression': 7.25.9 1976 | '@babel/traverse': 7.26.5 1977 | transitivePeerDependencies: 1978 | - supports-color 1979 | 1980 | '@babel/helper-skip-transparent-expression-wrappers@7.25.9': 1981 | dependencies: 1982 | '@babel/traverse': 7.26.5 1983 | '@babel/types': 7.26.5 1984 | transitivePeerDependencies: 1985 | - supports-color 1986 | 1987 | '@babel/helper-string-parser@7.25.9': {} 1988 | 1989 | '@babel/helper-validator-identifier@7.25.9': {} 1990 | 1991 | '@babel/helper-validator-option@7.25.9': {} 1992 | 1993 | '@babel/helpers@7.26.0': 1994 | dependencies: 1995 | '@babel/template': 7.25.9 1996 | '@babel/types': 7.26.5 1997 | 1998 | '@babel/parser@7.26.5': 1999 | dependencies: 2000 | '@babel/types': 7.26.5 2001 | 2002 | '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.0)': 2003 | dependencies: 2004 | '@babel/core': 7.26.0 2005 | '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) 2006 | '@babel/helper-plugin-utils': 7.26.5 2007 | '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0) 2008 | transitivePeerDependencies: 2009 | - supports-color 2010 | 2011 | '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.0)': 2012 | dependencies: 2013 | '@babel/core': 7.26.0 2014 | '@babel/helper-plugin-utils': 7.26.5 2015 | 2016 | '@babel/template@7.25.9': 2017 | dependencies: 2018 | '@babel/code-frame': 7.26.2 2019 | '@babel/parser': 7.26.5 2020 | '@babel/types': 7.26.5 2021 | 2022 | '@babel/traverse@7.26.5': 2023 | dependencies: 2024 | '@babel/code-frame': 7.26.2 2025 | '@babel/generator': 7.26.5 2026 | '@babel/parser': 7.26.5 2027 | '@babel/template': 7.25.9 2028 | '@babel/types': 7.26.5 2029 | debug: 4.4.0 2030 | globals: 11.12.0 2031 | transitivePeerDependencies: 2032 | - supports-color 2033 | 2034 | '@babel/types@7.26.5': 2035 | dependencies: 2036 | '@babel/helper-string-parser': 7.25.9 2037 | '@babel/helper-validator-identifier': 7.25.9 2038 | 2039 | '@discourse/lint-configs@2.3.0(ember-template-lint@6.0.0)(eslint@9.15.0)(prettier@2.8.8)': 2040 | dependencies: 2041 | '@babel/core': 7.26.0 2042 | '@babel/eslint-parser': 7.26.5(@babel/core@7.26.0)(eslint@9.15.0) 2043 | '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0) 2044 | '@stylistic/eslint-plugin-js': 2.13.0(eslint@9.15.0) 2045 | ember-template-lint: 6.0.0 2046 | eslint: 9.15.0 2047 | eslint-plugin-decorator-position: 6.0.0(@babel/eslint-parser@7.26.5(@babel/core@7.26.0)(eslint@9.15.0))(eslint@9.15.0) 2048 | eslint-plugin-ember: 12.3.3(@babel/core@7.26.0)(eslint@9.15.0) 2049 | eslint-plugin-qunit: 8.1.2(eslint@9.15.0) 2050 | eslint-plugin-simple-import-sort: 12.1.1(eslint@9.15.0) 2051 | eslint-plugin-sort-class-members: 1.21.0(eslint@9.15.0) 2052 | globals: 15.14.0 2053 | prettier: 2.8.8 2054 | prettier-plugin-ember-template-tag: 0.3.2 2055 | typescript: 5.7.3 2056 | transitivePeerDependencies: 2057 | - '@typescript-eslint/parser' 2058 | - supports-color 2059 | 2060 | '@ember-data/rfc395-data@0.0.4': {} 2061 | 2062 | '@ember/edition-utils@1.2.0': {} 2063 | 2064 | '@eslint-community/eslint-utils@4.4.1(eslint@9.15.0)': 2065 | dependencies: 2066 | eslint: 9.15.0 2067 | eslint-visitor-keys: 3.4.3 2068 | 2069 | '@eslint-community/regexpp@4.12.1': {} 2070 | 2071 | '@eslint/config-array@0.19.1': 2072 | dependencies: 2073 | '@eslint/object-schema': 2.1.5 2074 | debug: 4.4.0 2075 | minimatch: 3.1.2 2076 | transitivePeerDependencies: 2077 | - supports-color 2078 | 2079 | '@eslint/core@0.10.0': 2080 | dependencies: 2081 | '@types/json-schema': 7.0.15 2082 | 2083 | '@eslint/core@0.9.1': 2084 | dependencies: 2085 | '@types/json-schema': 7.0.15 2086 | 2087 | '@eslint/eslintrc@3.2.0': 2088 | dependencies: 2089 | ajv: 6.12.6 2090 | debug: 4.4.0 2091 | espree: 10.3.0 2092 | globals: 14.0.0 2093 | ignore: 5.3.2 2094 | import-fresh: 3.3.0 2095 | js-yaml: 4.1.0 2096 | minimatch: 3.1.2 2097 | strip-json-comments: 3.1.1 2098 | transitivePeerDependencies: 2099 | - supports-color 2100 | 2101 | '@eslint/js@9.15.0': {} 2102 | 2103 | '@eslint/object-schema@2.1.5': {} 2104 | 2105 | '@eslint/plugin-kit@0.2.5': 2106 | dependencies: 2107 | '@eslint/core': 0.10.0 2108 | levn: 0.4.1 2109 | 2110 | '@glimmer/env@0.1.7': {} 2111 | 2112 | '@glimmer/global-context@0.84.3': 2113 | dependencies: 2114 | '@glimmer/env': 0.1.7 2115 | 2116 | '@glimmer/interfaces@0.84.3': 2117 | dependencies: 2118 | '@simple-dom/interface': 1.4.0 2119 | 2120 | '@glimmer/interfaces@0.92.3': 2121 | dependencies: 2122 | '@simple-dom/interface': 1.4.0 2123 | 2124 | '@glimmer/reference@0.84.3': 2125 | dependencies: 2126 | '@glimmer/env': 0.1.7 2127 | '@glimmer/global-context': 0.84.3 2128 | '@glimmer/interfaces': 0.84.3 2129 | '@glimmer/util': 0.84.3 2130 | '@glimmer/validator': 0.84.3 2131 | 2132 | '@glimmer/syntax@0.84.3': 2133 | dependencies: 2134 | '@glimmer/interfaces': 0.84.3 2135 | '@glimmer/util': 0.84.3 2136 | '@handlebars/parser': 2.0.0 2137 | simple-html-tokenizer: 0.5.11 2138 | 2139 | '@glimmer/syntax@0.92.3': 2140 | dependencies: 2141 | '@glimmer/interfaces': 0.92.3 2142 | '@glimmer/util': 0.92.3 2143 | '@glimmer/wire-format': 0.92.3 2144 | '@handlebars/parser': 2.0.0 2145 | simple-html-tokenizer: 0.5.11 2146 | 2147 | '@glimmer/util@0.84.3': 2148 | dependencies: 2149 | '@glimmer/env': 0.1.7 2150 | '@glimmer/interfaces': 0.84.3 2151 | '@simple-dom/interface': 1.4.0 2152 | 2153 | '@glimmer/util@0.92.3': 2154 | dependencies: 2155 | '@glimmer/env': 0.1.7 2156 | '@glimmer/interfaces': 0.92.3 2157 | 2158 | '@glimmer/validator@0.84.3': 2159 | dependencies: 2160 | '@glimmer/env': 0.1.7 2161 | '@glimmer/global-context': 0.84.3 2162 | 2163 | '@glimmer/wire-format@0.92.3': 2164 | dependencies: 2165 | '@glimmer/interfaces': 0.92.3 2166 | '@glimmer/util': 0.92.3 2167 | 2168 | '@handlebars/parser@2.0.0': {} 2169 | 2170 | '@humanfs/core@0.19.1': {} 2171 | 2172 | '@humanfs/node@0.16.6': 2173 | dependencies: 2174 | '@humanfs/core': 0.19.1 2175 | '@humanwhocodes/retry': 0.3.1 2176 | 2177 | '@humanwhocodes/module-importer@1.0.1': {} 2178 | 2179 | '@humanwhocodes/retry@0.3.1': {} 2180 | 2181 | '@humanwhocodes/retry@0.4.1': {} 2182 | 2183 | '@jridgewell/gen-mapping@0.3.8': 2184 | dependencies: 2185 | '@jridgewell/set-array': 1.2.1 2186 | '@jridgewell/sourcemap-codec': 1.5.0 2187 | '@jridgewell/trace-mapping': 0.3.25 2188 | 2189 | '@jridgewell/resolve-uri@3.1.2': {} 2190 | 2191 | '@jridgewell/set-array@1.2.1': {} 2192 | 2193 | '@jridgewell/sourcemap-codec@1.5.0': {} 2194 | 2195 | '@jridgewell/trace-mapping@0.3.25': 2196 | dependencies: 2197 | '@jridgewell/resolve-uri': 3.1.2 2198 | '@jridgewell/sourcemap-codec': 1.5.0 2199 | 2200 | '@lint-todo/utils@13.1.1': 2201 | dependencies: 2202 | '@types/eslint': 8.56.12 2203 | find-up: 5.0.0 2204 | fs-extra: 9.1.0 2205 | proper-lockfile: 4.1.2 2206 | slash: 3.0.0 2207 | tslib: 2.8.1 2208 | upath: 2.0.1 2209 | 2210 | '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': 2211 | dependencies: 2212 | eslint-scope: 5.1.1 2213 | 2214 | '@nodelib/fs.scandir@2.1.5': 2215 | dependencies: 2216 | '@nodelib/fs.stat': 2.0.5 2217 | run-parallel: 1.2.0 2218 | 2219 | '@nodelib/fs.stat@2.0.5': {} 2220 | 2221 | '@nodelib/fs.walk@1.2.8': 2222 | dependencies: 2223 | '@nodelib/fs.scandir': 2.1.5 2224 | fastq: 1.18.0 2225 | 2226 | '@simple-dom/interface@1.4.0': {} 2227 | 2228 | '@sindresorhus/merge-streams@2.3.0': {} 2229 | 2230 | '@stylistic/eslint-plugin-js@2.13.0(eslint@9.15.0)': 2231 | dependencies: 2232 | eslint: 9.15.0 2233 | eslint-visitor-keys: 4.2.0 2234 | espree: 10.3.0 2235 | 2236 | '@types/eslint@8.56.12': 2237 | dependencies: 2238 | '@types/estree': 1.0.6 2239 | '@types/json-schema': 7.0.15 2240 | 2241 | '@types/estree@1.0.6': {} 2242 | 2243 | '@types/json-schema@7.0.15': {} 2244 | 2245 | '@types/minimatch@3.0.5': {} 2246 | 2247 | '@types/symlink-or-copy@1.2.2': {} 2248 | 2249 | acorn-jsx@5.3.2(acorn@8.14.0): 2250 | dependencies: 2251 | acorn: 8.14.0 2252 | 2253 | acorn@8.14.0: {} 2254 | 2255 | ajv@6.12.6: 2256 | dependencies: 2257 | fast-deep-equal: 3.1.3 2258 | fast-json-stable-stringify: 2.1.0 2259 | json-schema-traverse: 0.4.1 2260 | uri-js: 4.4.1 2261 | 2262 | ansi-regex@5.0.1: {} 2263 | 2264 | ansi-styles@3.2.1: 2265 | dependencies: 2266 | color-convert: 1.9.3 2267 | 2268 | ansi-styles@4.3.0: 2269 | dependencies: 2270 | color-convert: 2.0.1 2271 | 2272 | argparse@2.0.1: {} 2273 | 2274 | aria-query@5.3.2: {} 2275 | 2276 | array-buffer-byte-length@1.0.2: 2277 | dependencies: 2278 | call-bound: 1.0.3 2279 | is-array-buffer: 3.0.5 2280 | 2281 | array-equal@1.0.2: {} 2282 | 2283 | array-union@2.1.0: {} 2284 | 2285 | arraybuffer.prototype.slice@1.0.4: 2286 | dependencies: 2287 | array-buffer-byte-length: 1.0.2 2288 | call-bind: 1.0.8 2289 | define-properties: 1.2.1 2290 | es-abstract: 1.23.9 2291 | es-errors: 1.3.0 2292 | get-intrinsic: 1.2.7 2293 | is-array-buffer: 3.0.5 2294 | 2295 | async-disk-cache@1.3.5: 2296 | dependencies: 2297 | debug: 2.6.9 2298 | heimdalljs: 0.2.6 2299 | istextorbinary: 2.1.0 2300 | mkdirp: 0.5.6 2301 | rimraf: 2.7.1 2302 | rsvp: 3.6.2 2303 | username-sync: 1.0.3 2304 | transitivePeerDependencies: 2305 | - supports-color 2306 | 2307 | async-disk-cache@2.1.0: 2308 | dependencies: 2309 | debug: 4.4.0 2310 | heimdalljs: 0.2.6 2311 | istextorbinary: 2.6.0 2312 | mkdirp: 0.5.6 2313 | rimraf: 3.0.2 2314 | rsvp: 4.8.5 2315 | username-sync: 1.0.3 2316 | transitivePeerDependencies: 2317 | - supports-color 2318 | 2319 | async-promise-queue@1.0.5: 2320 | dependencies: 2321 | async: 2.6.4 2322 | debug: 2.6.9 2323 | transitivePeerDependencies: 2324 | - supports-color 2325 | 2326 | async@2.6.4: 2327 | dependencies: 2328 | lodash: 4.17.21 2329 | 2330 | at-least-node@1.0.0: {} 2331 | 2332 | available-typed-arrays@1.0.7: 2333 | dependencies: 2334 | possible-typed-array-names: 1.0.0 2335 | 2336 | babel-import-util@0.2.0: {} 2337 | 2338 | babel-import-util@3.0.0: {} 2339 | 2340 | babel-plugin-ember-modules-api-polyfill@3.5.0: 2341 | dependencies: 2342 | ember-rfc176-data: 0.3.18 2343 | 2344 | babel-plugin-ember-template-compilation@2.3.0: 2345 | dependencies: 2346 | '@glimmer/syntax': 0.84.3 2347 | babel-import-util: 3.0.0 2348 | 2349 | babel-plugin-htmlbars-inline-precompile@5.3.1: 2350 | dependencies: 2351 | babel-plugin-ember-modules-api-polyfill: 3.5.0 2352 | line-column: 1.0.2 2353 | magic-string: 0.25.9 2354 | parse-static-imports: 1.1.0 2355 | string.prototype.matchall: 4.0.12 2356 | 2357 | balanced-match@1.0.2: {} 2358 | 2359 | base64-js@1.5.1: {} 2360 | 2361 | binaryextensions@2.3.0: {} 2362 | 2363 | bl@4.1.0: 2364 | dependencies: 2365 | buffer: 5.7.1 2366 | inherits: 2.0.4 2367 | readable-stream: 3.6.2 2368 | 2369 | blank-object@1.0.2: {} 2370 | 2371 | brace-expansion@1.1.11: 2372 | dependencies: 2373 | balanced-match: 1.0.2 2374 | concat-map: 0.0.1 2375 | 2376 | braces@3.0.3: 2377 | dependencies: 2378 | fill-range: 7.1.1 2379 | 2380 | broccoli-debug@0.6.5: 2381 | dependencies: 2382 | broccoli-plugin: 1.3.1 2383 | fs-tree-diff: 0.5.9 2384 | heimdalljs: 0.2.6 2385 | heimdalljs-logger: 0.1.10 2386 | symlink-or-copy: 1.3.1 2387 | tree-sync: 1.4.0 2388 | transitivePeerDependencies: 2389 | - supports-color 2390 | 2391 | broccoli-funnel@2.0.2: 2392 | dependencies: 2393 | array-equal: 1.0.2 2394 | blank-object: 1.0.2 2395 | broccoli-plugin: 1.3.1 2396 | debug: 2.6.9 2397 | fast-ordered-set: 1.0.3 2398 | fs-tree-diff: 0.5.9 2399 | heimdalljs: 0.2.6 2400 | minimatch: 3.1.2 2401 | mkdirp: 0.5.6 2402 | path-posix: 1.0.0 2403 | rimraf: 2.7.1 2404 | symlink-or-copy: 1.3.1 2405 | walk-sync: 0.3.4 2406 | transitivePeerDependencies: 2407 | - supports-color 2408 | 2409 | broccoli-kitchen-sink-helpers@0.3.1: 2410 | dependencies: 2411 | glob: 5.0.15 2412 | mkdirp: 0.5.6 2413 | 2414 | broccoli-merge-trees@3.0.2: 2415 | dependencies: 2416 | broccoli-plugin: 1.3.1 2417 | merge-trees: 2.0.0 2418 | transitivePeerDependencies: 2419 | - supports-color 2420 | 2421 | broccoli-node-api@1.7.0: {} 2422 | 2423 | broccoli-node-info@2.2.0: {} 2424 | 2425 | broccoli-output-wrapper@3.2.5: 2426 | dependencies: 2427 | fs-extra: 8.1.0 2428 | heimdalljs-logger: 0.1.10 2429 | symlink-or-copy: 1.3.1 2430 | transitivePeerDependencies: 2431 | - supports-color 2432 | 2433 | broccoli-persistent-filter@2.3.1: 2434 | dependencies: 2435 | async-disk-cache: 1.3.5 2436 | async-promise-queue: 1.0.5 2437 | broccoli-plugin: 1.3.1 2438 | fs-tree-diff: 2.0.1 2439 | hash-for-dep: 1.5.1 2440 | heimdalljs: 0.2.6 2441 | heimdalljs-logger: 0.1.10 2442 | mkdirp: 0.5.6 2443 | promise-map-series: 0.2.3 2444 | rimraf: 2.7.1 2445 | rsvp: 4.8.5 2446 | symlink-or-copy: 1.3.1 2447 | sync-disk-cache: 1.3.4 2448 | walk-sync: 1.1.4 2449 | transitivePeerDependencies: 2450 | - supports-color 2451 | 2452 | broccoli-persistent-filter@3.1.3: 2453 | dependencies: 2454 | async-disk-cache: 2.1.0 2455 | async-promise-queue: 1.0.5 2456 | broccoli-plugin: 4.0.7 2457 | fs-tree-diff: 2.0.1 2458 | hash-for-dep: 1.5.1 2459 | heimdalljs: 0.2.6 2460 | heimdalljs-logger: 0.1.10 2461 | promise-map-series: 0.2.3 2462 | rimraf: 3.0.2 2463 | symlink-or-copy: 1.3.1 2464 | sync-disk-cache: 2.1.0 2465 | transitivePeerDependencies: 2466 | - supports-color 2467 | 2468 | broccoli-plugin@1.3.1: 2469 | dependencies: 2470 | promise-map-series: 0.2.3 2471 | quick-temp: 0.1.8 2472 | rimraf: 2.7.1 2473 | symlink-or-copy: 1.3.1 2474 | 2475 | broccoli-plugin@2.1.0: 2476 | dependencies: 2477 | promise-map-series: 0.2.3 2478 | quick-temp: 0.1.8 2479 | rimraf: 2.7.1 2480 | symlink-or-copy: 1.3.1 2481 | 2482 | broccoli-plugin@4.0.7: 2483 | dependencies: 2484 | broccoli-node-api: 1.7.0 2485 | broccoli-output-wrapper: 3.2.5 2486 | fs-merger: 3.2.1 2487 | promise-map-series: 0.3.0 2488 | quick-temp: 0.1.8 2489 | rimraf: 3.0.2 2490 | symlink-or-copy: 1.3.1 2491 | transitivePeerDependencies: 2492 | - supports-color 2493 | 2494 | broccoli-stew@3.0.0: 2495 | dependencies: 2496 | broccoli-debug: 0.6.5 2497 | broccoli-funnel: 2.0.2 2498 | broccoli-merge-trees: 3.0.2 2499 | broccoli-persistent-filter: 2.3.1 2500 | broccoli-plugin: 2.1.0 2501 | chalk: 2.4.2 2502 | debug: 4.4.0 2503 | ensure-posix-path: 1.1.1 2504 | fs-extra: 8.1.0 2505 | minimatch: 3.1.2 2506 | resolve: 1.22.10 2507 | rsvp: 4.8.5 2508 | symlink-or-copy: 1.3.1 2509 | walk-sync: 1.1.4 2510 | transitivePeerDependencies: 2511 | - supports-color 2512 | 2513 | browserslist@4.24.4: 2514 | dependencies: 2515 | caniuse-lite: 1.0.30001695 2516 | electron-to-chromium: 1.5.83 2517 | node-releases: 2.0.19 2518 | update-browserslist-db: 1.1.2(browserslist@4.24.4) 2519 | 2520 | buffer@5.7.1: 2521 | dependencies: 2522 | base64-js: 1.5.1 2523 | ieee754: 1.2.1 2524 | 2525 | call-bind-apply-helpers@1.0.1: 2526 | dependencies: 2527 | es-errors: 1.3.0 2528 | function-bind: 1.1.2 2529 | 2530 | call-bind@1.0.8: 2531 | dependencies: 2532 | call-bind-apply-helpers: 1.0.1 2533 | es-define-property: 1.0.1 2534 | get-intrinsic: 1.2.7 2535 | set-function-length: 1.2.2 2536 | 2537 | call-bound@1.0.3: 2538 | dependencies: 2539 | call-bind-apply-helpers: 1.0.1 2540 | get-intrinsic: 1.2.7 2541 | 2542 | callsites@3.1.0: {} 2543 | 2544 | can-symlink@1.0.0: 2545 | dependencies: 2546 | tmp: 0.0.28 2547 | 2548 | caniuse-lite@1.0.30001695: {} 2549 | 2550 | chalk@2.4.2: 2551 | dependencies: 2552 | ansi-styles: 3.2.1 2553 | escape-string-regexp: 1.0.5 2554 | supports-color: 5.5.0 2555 | 2556 | chalk@4.1.2: 2557 | dependencies: 2558 | ansi-styles: 4.3.0 2559 | supports-color: 7.2.0 2560 | 2561 | chalk@5.4.1: {} 2562 | 2563 | ci-info@4.1.0: {} 2564 | 2565 | clean-up-path@1.0.0: {} 2566 | 2567 | cli-cursor@3.1.0: 2568 | dependencies: 2569 | restore-cursor: 3.1.0 2570 | 2571 | cli-spinners@2.9.2: {} 2572 | 2573 | cliui@8.0.1: 2574 | dependencies: 2575 | string-width: 4.2.3 2576 | strip-ansi: 6.0.1 2577 | wrap-ansi: 7.0.0 2578 | 2579 | clone@1.0.4: {} 2580 | 2581 | color-convert@1.9.3: 2582 | dependencies: 2583 | color-name: 1.1.3 2584 | 2585 | color-convert@2.0.1: 2586 | dependencies: 2587 | color-name: 1.1.4 2588 | 2589 | color-name@1.1.3: {} 2590 | 2591 | color-name@1.1.4: {} 2592 | 2593 | colors@1.4.0: {} 2594 | 2595 | commander@8.3.0: {} 2596 | 2597 | concat-map@0.0.1: {} 2598 | 2599 | content-tag@2.0.3: {} 2600 | 2601 | convert-source-map@2.0.0: {} 2602 | 2603 | core-js@3.40.0: {} 2604 | 2605 | cross-spawn@7.0.6: 2606 | dependencies: 2607 | path-key: 3.1.1 2608 | shebang-command: 2.0.0 2609 | which: 2.0.2 2610 | 2611 | css-tree@3.1.0: 2612 | dependencies: 2613 | mdn-data: 2.12.2 2614 | source-map-js: 1.2.1 2615 | 2616 | data-view-buffer@1.0.2: 2617 | dependencies: 2618 | call-bound: 1.0.3 2619 | es-errors: 1.3.0 2620 | is-data-view: 1.0.2 2621 | 2622 | data-view-byte-length@1.0.2: 2623 | dependencies: 2624 | call-bound: 1.0.3 2625 | es-errors: 1.3.0 2626 | is-data-view: 1.0.2 2627 | 2628 | data-view-byte-offset@1.0.1: 2629 | dependencies: 2630 | call-bound: 1.0.3 2631 | es-errors: 1.3.0 2632 | is-data-view: 1.0.2 2633 | 2634 | date-fns@3.6.0: {} 2635 | 2636 | debug@2.6.9: 2637 | dependencies: 2638 | ms: 2.0.0 2639 | 2640 | debug@4.4.0: 2641 | dependencies: 2642 | ms: 2.1.3 2643 | 2644 | deep-is@0.1.4: {} 2645 | 2646 | defaults@1.0.4: 2647 | dependencies: 2648 | clone: 1.0.4 2649 | 2650 | define-data-property@1.1.4: 2651 | dependencies: 2652 | es-define-property: 1.0.1 2653 | es-errors: 1.3.0 2654 | gopd: 1.2.0 2655 | 2656 | define-properties@1.2.1: 2657 | dependencies: 2658 | define-data-property: 1.1.4 2659 | has-property-descriptors: 1.0.2 2660 | object-keys: 1.1.1 2661 | 2662 | dir-glob@3.0.1: 2663 | dependencies: 2664 | path-type: 4.0.0 2665 | 2666 | dot-case@3.0.4: 2667 | dependencies: 2668 | no-case: 3.0.4 2669 | tslib: 2.8.1 2670 | 2671 | dunder-proto@1.0.1: 2672 | dependencies: 2673 | call-bind-apply-helpers: 1.0.1 2674 | es-errors: 1.3.0 2675 | gopd: 1.2.0 2676 | 2677 | editions@1.3.4: {} 2678 | 2679 | editions@2.3.1: 2680 | dependencies: 2681 | errlop: 2.2.0 2682 | semver: 6.3.1 2683 | 2684 | electron-to-chromium@1.5.83: {} 2685 | 2686 | ember-cli-babel-plugin-helpers@1.1.1: {} 2687 | 2688 | ember-cli-htmlbars@6.3.0: 2689 | dependencies: 2690 | '@ember/edition-utils': 1.2.0 2691 | babel-plugin-ember-template-compilation: 2.3.0 2692 | babel-plugin-htmlbars-inline-precompile: 5.3.1 2693 | broccoli-debug: 0.6.5 2694 | broccoli-persistent-filter: 3.1.3 2695 | broccoli-plugin: 4.0.7 2696 | ember-cli-version-checker: 5.1.2 2697 | fs-tree-diff: 2.0.1 2698 | hash-for-dep: 1.5.1 2699 | heimdalljs-logger: 0.1.10 2700 | js-string-escape: 1.0.1 2701 | semver: 7.6.3 2702 | silent-error: 1.1.1 2703 | walk-sync: 2.2.0 2704 | transitivePeerDependencies: 2705 | - supports-color 2706 | 2707 | ember-cli-version-checker@5.1.2: 2708 | dependencies: 2709 | resolve-package-path: 3.1.0 2710 | semver: 7.6.3 2711 | silent-error: 1.1.1 2712 | transitivePeerDependencies: 2713 | - supports-color 2714 | 2715 | ember-eslint-parser@0.5.8(@babel/core@7.26.0)(eslint@9.15.0): 2716 | dependencies: 2717 | '@babel/core': 7.26.0 2718 | '@babel/eslint-parser': 7.26.5(@babel/core@7.26.0)(eslint@9.15.0) 2719 | '@glimmer/syntax': 0.92.3 2720 | content-tag: 2.0.3 2721 | eslint-scope: 7.2.2 2722 | html-tags: 3.3.1 2723 | mathml-tag-names: 2.1.3 2724 | svg-tags: 1.0.0 2725 | transitivePeerDependencies: 2726 | - eslint 2727 | 2728 | ember-rfc176-data@0.3.18: {} 2729 | 2730 | ember-template-imports@3.4.2: 2731 | dependencies: 2732 | babel-import-util: 0.2.0 2733 | broccoli-stew: 3.0.0 2734 | ember-cli-babel-plugin-helpers: 1.1.1 2735 | ember-cli-version-checker: 5.1.2 2736 | line-column: 1.0.2 2737 | magic-string: 0.25.9 2738 | parse-static-imports: 1.1.0 2739 | string.prototype.matchall: 4.0.12 2740 | validate-peer-dependencies: 1.2.0 2741 | transitivePeerDependencies: 2742 | - supports-color 2743 | 2744 | ember-template-lint@6.0.0: 2745 | dependencies: 2746 | '@lint-todo/utils': 13.1.1 2747 | aria-query: 5.3.2 2748 | chalk: 5.4.1 2749 | ci-info: 4.1.0 2750 | date-fns: 3.6.0 2751 | ember-template-imports: 3.4.2 2752 | ember-template-recast: 6.1.5 2753 | eslint-formatter-kakoune: 1.0.0 2754 | find-up: 7.0.0 2755 | fuse.js: 7.0.0 2756 | get-stdin: 9.0.0 2757 | globby: 14.0.2 2758 | is-glob: 4.0.3 2759 | language-tags: 1.0.9 2760 | micromatch: 4.0.8 2761 | resolve: 1.22.10 2762 | v8-compile-cache: 2.4.0 2763 | yargs: 17.7.2 2764 | transitivePeerDependencies: 2765 | - supports-color 2766 | 2767 | ember-template-recast@6.1.5: 2768 | dependencies: 2769 | '@glimmer/reference': 0.84.3 2770 | '@glimmer/syntax': 0.84.3 2771 | '@glimmer/validator': 0.84.3 2772 | async-promise-queue: 1.0.5 2773 | colors: 1.4.0 2774 | commander: 8.3.0 2775 | globby: 11.1.0 2776 | ora: 5.4.1 2777 | slash: 3.0.0 2778 | tmp: 0.2.3 2779 | workerpool: 6.5.1 2780 | transitivePeerDependencies: 2781 | - supports-color 2782 | 2783 | emoji-regex@8.0.0: {} 2784 | 2785 | ensure-posix-path@1.1.1: {} 2786 | 2787 | errlop@2.2.0: {} 2788 | 2789 | es-abstract@1.23.9: 2790 | dependencies: 2791 | array-buffer-byte-length: 1.0.2 2792 | arraybuffer.prototype.slice: 1.0.4 2793 | available-typed-arrays: 1.0.7 2794 | call-bind: 1.0.8 2795 | call-bound: 1.0.3 2796 | data-view-buffer: 1.0.2 2797 | data-view-byte-length: 1.0.2 2798 | data-view-byte-offset: 1.0.1 2799 | es-define-property: 1.0.1 2800 | es-errors: 1.3.0 2801 | es-object-atoms: 1.1.1 2802 | es-set-tostringtag: 2.1.0 2803 | es-to-primitive: 1.3.0 2804 | function.prototype.name: 1.1.8 2805 | get-intrinsic: 1.2.7 2806 | get-proto: 1.0.1 2807 | get-symbol-description: 1.1.0 2808 | globalthis: 1.0.4 2809 | gopd: 1.2.0 2810 | has-property-descriptors: 1.0.2 2811 | has-proto: 1.2.0 2812 | has-symbols: 1.1.0 2813 | hasown: 2.0.2 2814 | internal-slot: 1.1.0 2815 | is-array-buffer: 3.0.5 2816 | is-callable: 1.2.7 2817 | is-data-view: 1.0.2 2818 | is-regex: 1.2.1 2819 | is-shared-array-buffer: 1.0.4 2820 | is-string: 1.1.1 2821 | is-typed-array: 1.1.15 2822 | is-weakref: 1.1.0 2823 | math-intrinsics: 1.1.0 2824 | object-inspect: 1.13.3 2825 | object-keys: 1.1.1 2826 | object.assign: 4.1.7 2827 | own-keys: 1.0.1 2828 | regexp.prototype.flags: 1.5.4 2829 | safe-array-concat: 1.1.3 2830 | safe-push-apply: 1.0.0 2831 | safe-regex-test: 1.1.0 2832 | set-proto: 1.0.0 2833 | string.prototype.trim: 1.2.10 2834 | string.prototype.trimend: 1.0.9 2835 | string.prototype.trimstart: 1.0.8 2836 | typed-array-buffer: 1.0.3 2837 | typed-array-byte-length: 1.0.3 2838 | typed-array-byte-offset: 1.0.4 2839 | typed-array-length: 1.0.7 2840 | unbox-primitive: 1.1.0 2841 | which-typed-array: 1.1.18 2842 | 2843 | es-define-property@1.0.1: {} 2844 | 2845 | es-errors@1.3.0: {} 2846 | 2847 | es-object-atoms@1.1.1: 2848 | dependencies: 2849 | es-errors: 1.3.0 2850 | 2851 | es-set-tostringtag@2.1.0: 2852 | dependencies: 2853 | es-errors: 1.3.0 2854 | get-intrinsic: 1.2.7 2855 | has-tostringtag: 1.0.2 2856 | hasown: 2.0.2 2857 | 2858 | es-to-primitive@1.3.0: 2859 | dependencies: 2860 | is-callable: 1.2.7 2861 | is-date-object: 1.1.0 2862 | is-symbol: 1.1.1 2863 | 2864 | escalade@3.2.0: {} 2865 | 2866 | escape-string-regexp@1.0.5: {} 2867 | 2868 | escape-string-regexp@4.0.0: {} 2869 | 2870 | eslint-formatter-kakoune@1.0.0: {} 2871 | 2872 | eslint-plugin-decorator-position@6.0.0(@babel/eslint-parser@7.26.5(@babel/core@7.26.0)(eslint@9.15.0))(eslint@9.15.0): 2873 | dependencies: 2874 | '@babel/core': 7.26.0 2875 | '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0) 2876 | '@ember-data/rfc395-data': 0.0.4 2877 | ember-rfc176-data: 0.3.18 2878 | eslint: 9.15.0 2879 | snake-case: 3.0.4 2880 | optionalDependencies: 2881 | '@babel/eslint-parser': 7.26.5(@babel/core@7.26.0)(eslint@9.15.0) 2882 | transitivePeerDependencies: 2883 | - supports-color 2884 | 2885 | eslint-plugin-ember@12.3.3(@babel/core@7.26.0)(eslint@9.15.0): 2886 | dependencies: 2887 | '@ember-data/rfc395-data': 0.0.4 2888 | css-tree: 3.1.0 2889 | ember-eslint-parser: 0.5.8(@babel/core@7.26.0)(eslint@9.15.0) 2890 | ember-rfc176-data: 0.3.18 2891 | eslint: 9.15.0 2892 | eslint-utils: 3.0.0(eslint@9.15.0) 2893 | estraverse: 5.3.0 2894 | lodash.camelcase: 4.3.0 2895 | lodash.kebabcase: 4.1.1 2896 | requireindex: 1.2.0 2897 | snake-case: 3.0.4 2898 | transitivePeerDependencies: 2899 | - '@babel/core' 2900 | 2901 | eslint-plugin-qunit@8.1.2(eslint@9.15.0): 2902 | dependencies: 2903 | eslint-utils: 3.0.0(eslint@9.15.0) 2904 | requireindex: 1.2.0 2905 | transitivePeerDependencies: 2906 | - eslint 2907 | 2908 | eslint-plugin-simple-import-sort@12.1.1(eslint@9.15.0): 2909 | dependencies: 2910 | eslint: 9.15.0 2911 | 2912 | eslint-plugin-sort-class-members@1.21.0(eslint@9.15.0): 2913 | dependencies: 2914 | eslint: 9.15.0 2915 | 2916 | eslint-scope@5.1.1: 2917 | dependencies: 2918 | esrecurse: 4.3.0 2919 | estraverse: 4.3.0 2920 | 2921 | eslint-scope@7.2.2: 2922 | dependencies: 2923 | esrecurse: 4.3.0 2924 | estraverse: 5.3.0 2925 | 2926 | eslint-scope@8.2.0: 2927 | dependencies: 2928 | esrecurse: 4.3.0 2929 | estraverse: 5.3.0 2930 | 2931 | eslint-utils@3.0.0(eslint@9.15.0): 2932 | dependencies: 2933 | eslint: 9.15.0 2934 | eslint-visitor-keys: 2.1.0 2935 | 2936 | eslint-visitor-keys@2.1.0: {} 2937 | 2938 | eslint-visitor-keys@3.4.3: {} 2939 | 2940 | eslint-visitor-keys@4.2.0: {} 2941 | 2942 | eslint@9.15.0: 2943 | dependencies: 2944 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0) 2945 | '@eslint-community/regexpp': 4.12.1 2946 | '@eslint/config-array': 0.19.1 2947 | '@eslint/core': 0.9.1 2948 | '@eslint/eslintrc': 3.2.0 2949 | '@eslint/js': 9.15.0 2950 | '@eslint/plugin-kit': 0.2.5 2951 | '@humanfs/node': 0.16.6 2952 | '@humanwhocodes/module-importer': 1.0.1 2953 | '@humanwhocodes/retry': 0.4.1 2954 | '@types/estree': 1.0.6 2955 | '@types/json-schema': 7.0.15 2956 | ajv: 6.12.6 2957 | chalk: 4.1.2 2958 | cross-spawn: 7.0.6 2959 | debug: 4.4.0 2960 | escape-string-regexp: 4.0.0 2961 | eslint-scope: 8.2.0 2962 | eslint-visitor-keys: 4.2.0 2963 | espree: 10.3.0 2964 | esquery: 1.6.0 2965 | esutils: 2.0.3 2966 | fast-deep-equal: 3.1.3 2967 | file-entry-cache: 8.0.0 2968 | find-up: 5.0.0 2969 | glob-parent: 6.0.2 2970 | ignore: 5.3.2 2971 | imurmurhash: 0.1.4 2972 | is-glob: 4.0.3 2973 | json-stable-stringify-without-jsonify: 1.0.1 2974 | lodash.merge: 4.6.2 2975 | minimatch: 3.1.2 2976 | natural-compare: 1.4.0 2977 | optionator: 0.9.4 2978 | transitivePeerDependencies: 2979 | - supports-color 2980 | 2981 | espree@10.3.0: 2982 | dependencies: 2983 | acorn: 8.14.0 2984 | acorn-jsx: 5.3.2(acorn@8.14.0) 2985 | eslint-visitor-keys: 4.2.0 2986 | 2987 | esquery@1.6.0: 2988 | dependencies: 2989 | estraverse: 5.3.0 2990 | 2991 | esrecurse@4.3.0: 2992 | dependencies: 2993 | estraverse: 5.3.0 2994 | 2995 | estraverse@4.3.0: {} 2996 | 2997 | estraverse@5.3.0: {} 2998 | 2999 | esutils@2.0.3: {} 3000 | 3001 | fast-deep-equal@3.1.3: {} 3002 | 3003 | fast-glob@3.3.3: 3004 | dependencies: 3005 | '@nodelib/fs.stat': 2.0.5 3006 | '@nodelib/fs.walk': 1.2.8 3007 | glob-parent: 5.1.2 3008 | merge2: 1.4.1 3009 | micromatch: 4.0.8 3010 | 3011 | fast-json-stable-stringify@2.1.0: {} 3012 | 3013 | fast-levenshtein@2.0.6: {} 3014 | 3015 | fast-ordered-set@1.0.3: 3016 | dependencies: 3017 | blank-object: 1.0.2 3018 | 3019 | fastq@1.18.0: 3020 | dependencies: 3021 | reusify: 1.0.4 3022 | 3023 | file-entry-cache@8.0.0: 3024 | dependencies: 3025 | flat-cache: 4.0.1 3026 | 3027 | fill-range@7.1.1: 3028 | dependencies: 3029 | to-regex-range: 5.0.1 3030 | 3031 | find-up@5.0.0: 3032 | dependencies: 3033 | locate-path: 6.0.0 3034 | path-exists: 4.0.0 3035 | 3036 | find-up@7.0.0: 3037 | dependencies: 3038 | locate-path: 7.2.0 3039 | path-exists: 5.0.0 3040 | unicorn-magic: 0.1.0 3041 | 3042 | flat-cache@4.0.1: 3043 | dependencies: 3044 | flatted: 3.3.2 3045 | keyv: 4.5.4 3046 | 3047 | flatted@3.3.2: {} 3048 | 3049 | for-each@0.3.3: 3050 | dependencies: 3051 | is-callable: 1.2.7 3052 | 3053 | fs-extra@8.1.0: 3054 | dependencies: 3055 | graceful-fs: 4.2.11 3056 | jsonfile: 4.0.0 3057 | universalify: 0.1.2 3058 | 3059 | fs-extra@9.1.0: 3060 | dependencies: 3061 | at-least-node: 1.0.0 3062 | graceful-fs: 4.2.11 3063 | jsonfile: 6.1.0 3064 | universalify: 2.0.1 3065 | 3066 | fs-merger@3.2.1: 3067 | dependencies: 3068 | broccoli-node-api: 1.7.0 3069 | broccoli-node-info: 2.2.0 3070 | fs-extra: 8.1.0 3071 | fs-tree-diff: 2.0.1 3072 | walk-sync: 2.2.0 3073 | transitivePeerDependencies: 3074 | - supports-color 3075 | 3076 | fs-tree-diff@0.5.9: 3077 | dependencies: 3078 | heimdalljs-logger: 0.1.10 3079 | object-assign: 4.1.1 3080 | path-posix: 1.0.0 3081 | symlink-or-copy: 1.3.1 3082 | transitivePeerDependencies: 3083 | - supports-color 3084 | 3085 | fs-tree-diff@2.0.1: 3086 | dependencies: 3087 | '@types/symlink-or-copy': 1.2.2 3088 | heimdalljs-logger: 0.1.10 3089 | object-assign: 4.1.1 3090 | path-posix: 1.0.0 3091 | symlink-or-copy: 1.3.1 3092 | transitivePeerDependencies: 3093 | - supports-color 3094 | 3095 | fs-updater@1.0.4: 3096 | dependencies: 3097 | can-symlink: 1.0.0 3098 | clean-up-path: 1.0.0 3099 | heimdalljs: 0.2.6 3100 | heimdalljs-logger: 0.1.10 3101 | rimraf: 2.7.1 3102 | transitivePeerDependencies: 3103 | - supports-color 3104 | 3105 | fs.realpath@1.0.0: {} 3106 | 3107 | function-bind@1.1.2: {} 3108 | 3109 | function.prototype.name@1.1.8: 3110 | dependencies: 3111 | call-bind: 1.0.8 3112 | call-bound: 1.0.3 3113 | define-properties: 1.2.1 3114 | functions-have-names: 1.2.3 3115 | hasown: 2.0.2 3116 | is-callable: 1.2.7 3117 | 3118 | functions-have-names@1.2.3: {} 3119 | 3120 | fuse.js@7.0.0: {} 3121 | 3122 | gensync@1.0.0-beta.2: {} 3123 | 3124 | get-caller-file@2.0.5: {} 3125 | 3126 | get-intrinsic@1.2.7: 3127 | dependencies: 3128 | call-bind-apply-helpers: 1.0.1 3129 | es-define-property: 1.0.1 3130 | es-errors: 1.3.0 3131 | es-object-atoms: 1.1.1 3132 | function-bind: 1.1.2 3133 | get-proto: 1.0.1 3134 | gopd: 1.2.0 3135 | has-symbols: 1.1.0 3136 | hasown: 2.0.2 3137 | math-intrinsics: 1.1.0 3138 | 3139 | get-proto@1.0.1: 3140 | dependencies: 3141 | dunder-proto: 1.0.1 3142 | es-object-atoms: 1.1.1 3143 | 3144 | get-stdin@9.0.0: {} 3145 | 3146 | get-symbol-description@1.1.0: 3147 | dependencies: 3148 | call-bound: 1.0.3 3149 | es-errors: 1.3.0 3150 | get-intrinsic: 1.2.7 3151 | 3152 | glob-parent@5.1.2: 3153 | dependencies: 3154 | is-glob: 4.0.3 3155 | 3156 | glob-parent@6.0.2: 3157 | dependencies: 3158 | is-glob: 4.0.3 3159 | 3160 | glob@5.0.15: 3161 | dependencies: 3162 | inflight: 1.0.6 3163 | inherits: 2.0.4 3164 | minimatch: 3.1.2 3165 | once: 1.4.0 3166 | path-is-absolute: 1.0.1 3167 | 3168 | glob@7.2.3: 3169 | dependencies: 3170 | fs.realpath: 1.0.0 3171 | inflight: 1.0.6 3172 | inherits: 2.0.4 3173 | minimatch: 3.1.2 3174 | once: 1.4.0 3175 | path-is-absolute: 1.0.1 3176 | 3177 | globals@11.12.0: {} 3178 | 3179 | globals@14.0.0: {} 3180 | 3181 | globals@15.14.0: {} 3182 | 3183 | globalthis@1.0.4: 3184 | dependencies: 3185 | define-properties: 1.2.1 3186 | gopd: 1.2.0 3187 | 3188 | globby@11.1.0: 3189 | dependencies: 3190 | array-union: 2.1.0 3191 | dir-glob: 3.0.1 3192 | fast-glob: 3.3.3 3193 | ignore: 5.3.2 3194 | merge2: 1.4.1 3195 | slash: 3.0.0 3196 | 3197 | globby@14.0.2: 3198 | dependencies: 3199 | '@sindresorhus/merge-streams': 2.3.0 3200 | fast-glob: 3.3.3 3201 | ignore: 5.3.2 3202 | path-type: 5.0.0 3203 | slash: 5.1.0 3204 | unicorn-magic: 0.1.0 3205 | 3206 | gopd@1.2.0: {} 3207 | 3208 | graceful-fs@4.2.11: {} 3209 | 3210 | has-bigints@1.1.0: {} 3211 | 3212 | has-flag@3.0.0: {} 3213 | 3214 | has-flag@4.0.0: {} 3215 | 3216 | has-property-descriptors@1.0.2: 3217 | dependencies: 3218 | es-define-property: 1.0.1 3219 | 3220 | has-proto@1.2.0: 3221 | dependencies: 3222 | dunder-proto: 1.0.1 3223 | 3224 | has-symbols@1.1.0: {} 3225 | 3226 | has-tostringtag@1.0.2: 3227 | dependencies: 3228 | has-symbols: 1.1.0 3229 | 3230 | hash-for-dep@1.5.1: 3231 | dependencies: 3232 | broccoli-kitchen-sink-helpers: 0.3.1 3233 | heimdalljs: 0.2.6 3234 | heimdalljs-logger: 0.1.10 3235 | path-root: 0.1.1 3236 | resolve: 1.22.10 3237 | resolve-package-path: 1.2.7 3238 | transitivePeerDependencies: 3239 | - supports-color 3240 | 3241 | hasown@2.0.2: 3242 | dependencies: 3243 | function-bind: 1.1.2 3244 | 3245 | heimdalljs-logger@0.1.10: 3246 | dependencies: 3247 | debug: 2.6.9 3248 | heimdalljs: 0.2.6 3249 | transitivePeerDependencies: 3250 | - supports-color 3251 | 3252 | heimdalljs@0.2.6: 3253 | dependencies: 3254 | rsvp: 3.2.1 3255 | 3256 | html-tags@3.3.1: {} 3257 | 3258 | ieee754@1.2.1: {} 3259 | 3260 | ignore@5.3.2: {} 3261 | 3262 | import-fresh@3.3.0: 3263 | dependencies: 3264 | parent-module: 1.0.1 3265 | resolve-from: 4.0.0 3266 | 3267 | imurmurhash@0.1.4: {} 3268 | 3269 | inflight@1.0.6: 3270 | dependencies: 3271 | once: 1.4.0 3272 | wrappy: 1.0.2 3273 | 3274 | inherits@2.0.4: {} 3275 | 3276 | internal-slot@1.1.0: 3277 | dependencies: 3278 | es-errors: 1.3.0 3279 | hasown: 2.0.2 3280 | side-channel: 1.1.0 3281 | 3282 | is-array-buffer@3.0.5: 3283 | dependencies: 3284 | call-bind: 1.0.8 3285 | call-bound: 1.0.3 3286 | get-intrinsic: 1.2.7 3287 | 3288 | is-async-function@2.1.0: 3289 | dependencies: 3290 | call-bound: 1.0.3 3291 | get-proto: 1.0.1 3292 | has-tostringtag: 1.0.2 3293 | safe-regex-test: 1.1.0 3294 | 3295 | is-bigint@1.1.0: 3296 | dependencies: 3297 | has-bigints: 1.1.0 3298 | 3299 | is-boolean-object@1.2.1: 3300 | dependencies: 3301 | call-bound: 1.0.3 3302 | has-tostringtag: 1.0.2 3303 | 3304 | is-callable@1.2.7: {} 3305 | 3306 | is-core-module@2.16.1: 3307 | dependencies: 3308 | hasown: 2.0.2 3309 | 3310 | is-data-view@1.0.2: 3311 | dependencies: 3312 | call-bound: 1.0.3 3313 | get-intrinsic: 1.2.7 3314 | is-typed-array: 1.1.15 3315 | 3316 | is-date-object@1.1.0: 3317 | dependencies: 3318 | call-bound: 1.0.3 3319 | has-tostringtag: 1.0.2 3320 | 3321 | is-extglob@2.1.1: {} 3322 | 3323 | is-finalizationregistry@1.1.1: 3324 | dependencies: 3325 | call-bound: 1.0.3 3326 | 3327 | is-fullwidth-code-point@3.0.0: {} 3328 | 3329 | is-generator-function@1.1.0: 3330 | dependencies: 3331 | call-bound: 1.0.3 3332 | get-proto: 1.0.1 3333 | has-tostringtag: 1.0.2 3334 | safe-regex-test: 1.1.0 3335 | 3336 | is-glob@4.0.3: 3337 | dependencies: 3338 | is-extglob: 2.1.1 3339 | 3340 | is-interactive@1.0.0: {} 3341 | 3342 | is-map@2.0.3: {} 3343 | 3344 | is-number-object@1.1.1: 3345 | dependencies: 3346 | call-bound: 1.0.3 3347 | has-tostringtag: 1.0.2 3348 | 3349 | is-number@7.0.0: {} 3350 | 3351 | is-regex@1.2.1: 3352 | dependencies: 3353 | call-bound: 1.0.3 3354 | gopd: 1.2.0 3355 | has-tostringtag: 1.0.2 3356 | hasown: 2.0.2 3357 | 3358 | is-set@2.0.3: {} 3359 | 3360 | is-shared-array-buffer@1.0.4: 3361 | dependencies: 3362 | call-bound: 1.0.3 3363 | 3364 | is-string@1.1.1: 3365 | dependencies: 3366 | call-bound: 1.0.3 3367 | has-tostringtag: 1.0.2 3368 | 3369 | is-symbol@1.1.1: 3370 | dependencies: 3371 | call-bound: 1.0.3 3372 | has-symbols: 1.1.0 3373 | safe-regex-test: 1.1.0 3374 | 3375 | is-typed-array@1.1.15: 3376 | dependencies: 3377 | which-typed-array: 1.1.18 3378 | 3379 | is-unicode-supported@0.1.0: {} 3380 | 3381 | is-weakmap@2.0.2: {} 3382 | 3383 | is-weakref@1.1.0: 3384 | dependencies: 3385 | call-bound: 1.0.3 3386 | 3387 | is-weakset@2.0.4: 3388 | dependencies: 3389 | call-bound: 1.0.3 3390 | get-intrinsic: 1.2.7 3391 | 3392 | isarray@1.0.0: {} 3393 | 3394 | isarray@2.0.5: {} 3395 | 3396 | isexe@2.0.0: {} 3397 | 3398 | isobject@2.1.0: 3399 | dependencies: 3400 | isarray: 1.0.0 3401 | 3402 | istextorbinary@2.1.0: 3403 | dependencies: 3404 | binaryextensions: 2.3.0 3405 | editions: 1.3.4 3406 | textextensions: 2.6.0 3407 | 3408 | istextorbinary@2.6.0: 3409 | dependencies: 3410 | binaryextensions: 2.3.0 3411 | editions: 2.3.1 3412 | textextensions: 2.6.0 3413 | 3414 | js-string-escape@1.0.1: {} 3415 | 3416 | js-tokens@4.0.0: {} 3417 | 3418 | js-yaml@4.1.0: 3419 | dependencies: 3420 | argparse: 2.0.1 3421 | 3422 | jsesc@3.1.0: {} 3423 | 3424 | json-buffer@3.0.1: {} 3425 | 3426 | json-schema-traverse@0.4.1: {} 3427 | 3428 | json-stable-stringify-without-jsonify@1.0.1: {} 3429 | 3430 | json5@2.2.3: {} 3431 | 3432 | jsonfile@4.0.0: 3433 | optionalDependencies: 3434 | graceful-fs: 4.2.11 3435 | 3436 | jsonfile@6.1.0: 3437 | dependencies: 3438 | universalify: 2.0.1 3439 | optionalDependencies: 3440 | graceful-fs: 4.2.11 3441 | 3442 | keyv@4.5.4: 3443 | dependencies: 3444 | json-buffer: 3.0.1 3445 | 3446 | language-subtag-registry@0.3.23: {} 3447 | 3448 | language-tags@1.0.9: 3449 | dependencies: 3450 | language-subtag-registry: 0.3.23 3451 | 3452 | levn@0.4.1: 3453 | dependencies: 3454 | prelude-ls: 1.2.1 3455 | type-check: 0.4.0 3456 | 3457 | line-column@1.0.2: 3458 | dependencies: 3459 | isarray: 1.0.0 3460 | isobject: 2.1.0 3461 | 3462 | locate-path@6.0.0: 3463 | dependencies: 3464 | p-locate: 5.0.0 3465 | 3466 | locate-path@7.2.0: 3467 | dependencies: 3468 | p-locate: 6.0.0 3469 | 3470 | lodash.camelcase@4.3.0: {} 3471 | 3472 | lodash.kebabcase@4.1.1: {} 3473 | 3474 | lodash.merge@4.6.2: {} 3475 | 3476 | lodash@4.17.21: {} 3477 | 3478 | log-symbols@4.1.0: 3479 | dependencies: 3480 | chalk: 4.1.2 3481 | is-unicode-supported: 0.1.0 3482 | 3483 | lower-case@2.0.2: 3484 | dependencies: 3485 | tslib: 2.8.1 3486 | 3487 | lru-cache@5.1.1: 3488 | dependencies: 3489 | yallist: 3.1.1 3490 | 3491 | magic-string@0.25.9: 3492 | dependencies: 3493 | sourcemap-codec: 1.4.8 3494 | 3495 | matcher-collection@1.1.2: 3496 | dependencies: 3497 | minimatch: 3.1.2 3498 | 3499 | matcher-collection@2.0.1: 3500 | dependencies: 3501 | '@types/minimatch': 3.0.5 3502 | minimatch: 3.1.2 3503 | 3504 | math-intrinsics@1.1.0: {} 3505 | 3506 | mathml-tag-names@2.1.3: {} 3507 | 3508 | mdn-data@2.12.2: {} 3509 | 3510 | merge-trees@2.0.0: 3511 | dependencies: 3512 | fs-updater: 1.0.4 3513 | heimdalljs: 0.2.6 3514 | transitivePeerDependencies: 3515 | - supports-color 3516 | 3517 | merge2@1.4.1: {} 3518 | 3519 | micromatch@4.0.8: 3520 | dependencies: 3521 | braces: 3.0.3 3522 | picomatch: 2.3.1 3523 | 3524 | mimic-fn@2.1.0: {} 3525 | 3526 | minimatch@3.1.2: 3527 | dependencies: 3528 | brace-expansion: 1.1.11 3529 | 3530 | minimist@1.2.8: {} 3531 | 3532 | mkdirp@0.5.6: 3533 | dependencies: 3534 | minimist: 1.2.8 3535 | 3536 | mktemp@0.4.0: {} 3537 | 3538 | ms@2.0.0: {} 3539 | 3540 | ms@2.1.3: {} 3541 | 3542 | natural-compare@1.4.0: {} 3543 | 3544 | no-case@3.0.4: 3545 | dependencies: 3546 | lower-case: 2.0.2 3547 | tslib: 2.8.1 3548 | 3549 | node-releases@2.0.19: {} 3550 | 3551 | object-assign@4.1.1: {} 3552 | 3553 | object-inspect@1.13.3: {} 3554 | 3555 | object-keys@1.1.1: {} 3556 | 3557 | object.assign@4.1.7: 3558 | dependencies: 3559 | call-bind: 1.0.8 3560 | call-bound: 1.0.3 3561 | define-properties: 1.2.1 3562 | es-object-atoms: 1.1.1 3563 | has-symbols: 1.1.0 3564 | object-keys: 1.1.1 3565 | 3566 | once@1.4.0: 3567 | dependencies: 3568 | wrappy: 1.0.2 3569 | 3570 | onetime@5.1.2: 3571 | dependencies: 3572 | mimic-fn: 2.1.0 3573 | 3574 | optionator@0.9.4: 3575 | dependencies: 3576 | deep-is: 0.1.4 3577 | fast-levenshtein: 2.0.6 3578 | levn: 0.4.1 3579 | prelude-ls: 1.2.1 3580 | type-check: 0.4.0 3581 | word-wrap: 1.2.5 3582 | 3583 | ora@5.4.1: 3584 | dependencies: 3585 | bl: 4.1.0 3586 | chalk: 4.1.2 3587 | cli-cursor: 3.1.0 3588 | cli-spinners: 2.9.2 3589 | is-interactive: 1.0.0 3590 | is-unicode-supported: 0.1.0 3591 | log-symbols: 4.1.0 3592 | strip-ansi: 6.0.1 3593 | wcwidth: 1.0.1 3594 | 3595 | os-tmpdir@1.0.2: {} 3596 | 3597 | own-keys@1.0.1: 3598 | dependencies: 3599 | get-intrinsic: 1.2.7 3600 | object-keys: 1.1.1 3601 | safe-push-apply: 1.0.0 3602 | 3603 | p-limit@3.1.0: 3604 | dependencies: 3605 | yocto-queue: 0.1.0 3606 | 3607 | p-limit@4.0.0: 3608 | dependencies: 3609 | yocto-queue: 1.1.1 3610 | 3611 | p-locate@5.0.0: 3612 | dependencies: 3613 | p-limit: 3.1.0 3614 | 3615 | p-locate@6.0.0: 3616 | dependencies: 3617 | p-limit: 4.0.0 3618 | 3619 | parent-module@1.0.1: 3620 | dependencies: 3621 | callsites: 3.1.0 3622 | 3623 | parse-static-imports@1.1.0: {} 3624 | 3625 | path-exists@4.0.0: {} 3626 | 3627 | path-exists@5.0.0: {} 3628 | 3629 | path-is-absolute@1.0.1: {} 3630 | 3631 | path-key@3.1.1: {} 3632 | 3633 | path-parse@1.0.7: {} 3634 | 3635 | path-posix@1.0.0: {} 3636 | 3637 | path-root-regex@0.1.2: {} 3638 | 3639 | path-root@0.1.1: 3640 | dependencies: 3641 | path-root-regex: 0.1.2 3642 | 3643 | path-type@4.0.0: {} 3644 | 3645 | path-type@5.0.0: {} 3646 | 3647 | picocolors@1.1.1: {} 3648 | 3649 | picomatch@2.3.1: {} 3650 | 3651 | possible-typed-array-names@1.0.0: {} 3652 | 3653 | prelude-ls@1.2.1: {} 3654 | 3655 | prettier-plugin-ember-template-tag@0.3.2: 3656 | dependencies: 3657 | '@babel/core': 7.26.0 3658 | '@glimmer/syntax': 0.84.3 3659 | ember-cli-htmlbars: 6.3.0 3660 | ember-template-imports: 3.4.2 3661 | prettier: 2.8.8 3662 | ts-replace-all: 1.0.0 3663 | transitivePeerDependencies: 3664 | - supports-color 3665 | 3666 | prettier@2.8.8: {} 3667 | 3668 | promise-map-series@0.2.3: 3669 | dependencies: 3670 | rsvp: 3.6.2 3671 | 3672 | promise-map-series@0.3.0: {} 3673 | 3674 | proper-lockfile@4.1.2: 3675 | dependencies: 3676 | graceful-fs: 4.2.11 3677 | retry: 0.12.0 3678 | signal-exit: 3.0.7 3679 | 3680 | punycode@2.3.1: {} 3681 | 3682 | queue-microtask@1.2.3: {} 3683 | 3684 | quick-temp@0.1.8: 3685 | dependencies: 3686 | mktemp: 0.4.0 3687 | rimraf: 2.7.1 3688 | underscore.string: 3.3.6 3689 | 3690 | readable-stream@3.6.2: 3691 | dependencies: 3692 | inherits: 2.0.4 3693 | string_decoder: 1.3.0 3694 | util-deprecate: 1.0.2 3695 | 3696 | reflect.getprototypeof@1.0.10: 3697 | dependencies: 3698 | call-bind: 1.0.8 3699 | define-properties: 1.2.1 3700 | es-abstract: 1.23.9 3701 | es-errors: 1.3.0 3702 | es-object-atoms: 1.1.1 3703 | get-intrinsic: 1.2.7 3704 | get-proto: 1.0.1 3705 | which-builtin-type: 1.2.1 3706 | 3707 | regexp.prototype.flags@1.5.4: 3708 | dependencies: 3709 | call-bind: 1.0.8 3710 | define-properties: 1.2.1 3711 | es-errors: 1.3.0 3712 | get-proto: 1.0.1 3713 | gopd: 1.2.0 3714 | set-function-name: 2.0.2 3715 | 3716 | require-directory@2.1.1: {} 3717 | 3718 | requireindex@1.2.0: {} 3719 | 3720 | resolve-from@4.0.0: {} 3721 | 3722 | resolve-package-path@1.2.7: 3723 | dependencies: 3724 | path-root: 0.1.1 3725 | resolve: 1.22.10 3726 | 3727 | resolve-package-path@3.1.0: 3728 | dependencies: 3729 | path-root: 0.1.1 3730 | resolve: 1.22.10 3731 | 3732 | resolve@1.22.10: 3733 | dependencies: 3734 | is-core-module: 2.16.1 3735 | path-parse: 1.0.7 3736 | supports-preserve-symlinks-flag: 1.0.0 3737 | 3738 | restore-cursor@3.1.0: 3739 | dependencies: 3740 | onetime: 5.1.2 3741 | signal-exit: 3.0.7 3742 | 3743 | retry@0.12.0: {} 3744 | 3745 | reusify@1.0.4: {} 3746 | 3747 | rimraf@2.7.1: 3748 | dependencies: 3749 | glob: 7.2.3 3750 | 3751 | rimraf@3.0.2: 3752 | dependencies: 3753 | glob: 7.2.3 3754 | 3755 | rsvp@3.2.1: {} 3756 | 3757 | rsvp@3.6.2: {} 3758 | 3759 | rsvp@4.8.5: {} 3760 | 3761 | run-parallel@1.2.0: 3762 | dependencies: 3763 | queue-microtask: 1.2.3 3764 | 3765 | safe-array-concat@1.1.3: 3766 | dependencies: 3767 | call-bind: 1.0.8 3768 | call-bound: 1.0.3 3769 | get-intrinsic: 1.2.7 3770 | has-symbols: 1.1.0 3771 | isarray: 2.0.5 3772 | 3773 | safe-buffer@5.2.1: {} 3774 | 3775 | safe-push-apply@1.0.0: 3776 | dependencies: 3777 | es-errors: 1.3.0 3778 | isarray: 2.0.5 3779 | 3780 | safe-regex-test@1.1.0: 3781 | dependencies: 3782 | call-bound: 1.0.3 3783 | es-errors: 1.3.0 3784 | is-regex: 1.2.1 3785 | 3786 | semver@6.3.1: {} 3787 | 3788 | semver@7.6.3: {} 3789 | 3790 | set-function-length@1.2.2: 3791 | dependencies: 3792 | define-data-property: 1.1.4 3793 | es-errors: 1.3.0 3794 | function-bind: 1.1.2 3795 | get-intrinsic: 1.2.7 3796 | gopd: 1.2.0 3797 | has-property-descriptors: 1.0.2 3798 | 3799 | set-function-name@2.0.2: 3800 | dependencies: 3801 | define-data-property: 1.1.4 3802 | es-errors: 1.3.0 3803 | functions-have-names: 1.2.3 3804 | has-property-descriptors: 1.0.2 3805 | 3806 | set-proto@1.0.0: 3807 | dependencies: 3808 | dunder-proto: 1.0.1 3809 | es-errors: 1.3.0 3810 | es-object-atoms: 1.1.1 3811 | 3812 | shebang-command@2.0.0: 3813 | dependencies: 3814 | shebang-regex: 3.0.0 3815 | 3816 | shebang-regex@3.0.0: {} 3817 | 3818 | side-channel-list@1.0.0: 3819 | dependencies: 3820 | es-errors: 1.3.0 3821 | object-inspect: 1.13.3 3822 | 3823 | side-channel-map@1.0.1: 3824 | dependencies: 3825 | call-bound: 1.0.3 3826 | es-errors: 1.3.0 3827 | get-intrinsic: 1.2.7 3828 | object-inspect: 1.13.3 3829 | 3830 | side-channel-weakmap@1.0.2: 3831 | dependencies: 3832 | call-bound: 1.0.3 3833 | es-errors: 1.3.0 3834 | get-intrinsic: 1.2.7 3835 | object-inspect: 1.13.3 3836 | side-channel-map: 1.0.1 3837 | 3838 | side-channel@1.1.0: 3839 | dependencies: 3840 | es-errors: 1.3.0 3841 | object-inspect: 1.13.3 3842 | side-channel-list: 1.0.0 3843 | side-channel-map: 1.0.1 3844 | side-channel-weakmap: 1.0.2 3845 | 3846 | signal-exit@3.0.7: {} 3847 | 3848 | silent-error@1.1.1: 3849 | dependencies: 3850 | debug: 2.6.9 3851 | transitivePeerDependencies: 3852 | - supports-color 3853 | 3854 | simple-html-tokenizer@0.5.11: {} 3855 | 3856 | slash@3.0.0: {} 3857 | 3858 | slash@5.1.0: {} 3859 | 3860 | snake-case@3.0.4: 3861 | dependencies: 3862 | dot-case: 3.0.4 3863 | tslib: 2.8.1 3864 | 3865 | source-map-js@1.2.1: {} 3866 | 3867 | sourcemap-codec@1.4.8: {} 3868 | 3869 | sprintf-js@1.1.3: {} 3870 | 3871 | string-width@4.2.3: 3872 | dependencies: 3873 | emoji-regex: 8.0.0 3874 | is-fullwidth-code-point: 3.0.0 3875 | strip-ansi: 6.0.1 3876 | 3877 | string.prototype.matchall@4.0.12: 3878 | dependencies: 3879 | call-bind: 1.0.8 3880 | call-bound: 1.0.3 3881 | define-properties: 1.2.1 3882 | es-abstract: 1.23.9 3883 | es-errors: 1.3.0 3884 | es-object-atoms: 1.1.1 3885 | get-intrinsic: 1.2.7 3886 | gopd: 1.2.0 3887 | has-symbols: 1.1.0 3888 | internal-slot: 1.1.0 3889 | regexp.prototype.flags: 1.5.4 3890 | set-function-name: 2.0.2 3891 | side-channel: 1.1.0 3892 | 3893 | string.prototype.trim@1.2.10: 3894 | dependencies: 3895 | call-bind: 1.0.8 3896 | call-bound: 1.0.3 3897 | define-data-property: 1.1.4 3898 | define-properties: 1.2.1 3899 | es-abstract: 1.23.9 3900 | es-object-atoms: 1.1.1 3901 | has-property-descriptors: 1.0.2 3902 | 3903 | string.prototype.trimend@1.0.9: 3904 | dependencies: 3905 | call-bind: 1.0.8 3906 | call-bound: 1.0.3 3907 | define-properties: 1.2.1 3908 | es-object-atoms: 1.1.1 3909 | 3910 | string.prototype.trimstart@1.0.8: 3911 | dependencies: 3912 | call-bind: 1.0.8 3913 | define-properties: 1.2.1 3914 | es-object-atoms: 1.1.1 3915 | 3916 | string_decoder@1.3.0: 3917 | dependencies: 3918 | safe-buffer: 5.2.1 3919 | 3920 | strip-ansi@6.0.1: 3921 | dependencies: 3922 | ansi-regex: 5.0.1 3923 | 3924 | strip-json-comments@3.1.1: {} 3925 | 3926 | supports-color@5.5.0: 3927 | dependencies: 3928 | has-flag: 3.0.0 3929 | 3930 | supports-color@7.2.0: 3931 | dependencies: 3932 | has-flag: 4.0.0 3933 | 3934 | supports-preserve-symlinks-flag@1.0.0: {} 3935 | 3936 | svg-tags@1.0.0: {} 3937 | 3938 | symlink-or-copy@1.3.1: {} 3939 | 3940 | sync-disk-cache@1.3.4: 3941 | dependencies: 3942 | debug: 2.6.9 3943 | heimdalljs: 0.2.6 3944 | mkdirp: 0.5.6 3945 | rimraf: 2.7.1 3946 | username-sync: 1.0.3 3947 | transitivePeerDependencies: 3948 | - supports-color 3949 | 3950 | sync-disk-cache@2.1.0: 3951 | dependencies: 3952 | debug: 4.4.0 3953 | heimdalljs: 0.2.6 3954 | mkdirp: 0.5.6 3955 | rimraf: 3.0.2 3956 | username-sync: 1.0.3 3957 | transitivePeerDependencies: 3958 | - supports-color 3959 | 3960 | textextensions@2.6.0: {} 3961 | 3962 | tmp@0.0.28: 3963 | dependencies: 3964 | os-tmpdir: 1.0.2 3965 | 3966 | tmp@0.2.3: {} 3967 | 3968 | to-regex-range@5.0.1: 3969 | dependencies: 3970 | is-number: 7.0.0 3971 | 3972 | tree-sync@1.4.0: 3973 | dependencies: 3974 | debug: 2.6.9 3975 | fs-tree-diff: 0.5.9 3976 | mkdirp: 0.5.6 3977 | quick-temp: 0.1.8 3978 | walk-sync: 0.3.4 3979 | transitivePeerDependencies: 3980 | - supports-color 3981 | 3982 | ts-replace-all@1.0.0: 3983 | dependencies: 3984 | core-js: 3.40.0 3985 | 3986 | tslib@2.8.1: {} 3987 | 3988 | type-check@0.4.0: 3989 | dependencies: 3990 | prelude-ls: 1.2.1 3991 | 3992 | typed-array-buffer@1.0.3: 3993 | dependencies: 3994 | call-bound: 1.0.3 3995 | es-errors: 1.3.0 3996 | is-typed-array: 1.1.15 3997 | 3998 | typed-array-byte-length@1.0.3: 3999 | dependencies: 4000 | call-bind: 1.0.8 4001 | for-each: 0.3.3 4002 | gopd: 1.2.0 4003 | has-proto: 1.2.0 4004 | is-typed-array: 1.1.15 4005 | 4006 | typed-array-byte-offset@1.0.4: 4007 | dependencies: 4008 | available-typed-arrays: 1.0.7 4009 | call-bind: 1.0.8 4010 | for-each: 0.3.3 4011 | gopd: 1.2.0 4012 | has-proto: 1.2.0 4013 | is-typed-array: 1.1.15 4014 | reflect.getprototypeof: 1.0.10 4015 | 4016 | typed-array-length@1.0.7: 4017 | dependencies: 4018 | call-bind: 1.0.8 4019 | for-each: 0.3.3 4020 | gopd: 1.2.0 4021 | is-typed-array: 1.1.15 4022 | possible-typed-array-names: 1.0.0 4023 | reflect.getprototypeof: 1.0.10 4024 | 4025 | typescript@5.7.3: {} 4026 | 4027 | unbox-primitive@1.1.0: 4028 | dependencies: 4029 | call-bound: 1.0.3 4030 | has-bigints: 1.1.0 4031 | has-symbols: 1.1.0 4032 | which-boxed-primitive: 1.1.1 4033 | 4034 | underscore.string@3.3.6: 4035 | dependencies: 4036 | sprintf-js: 1.1.3 4037 | util-deprecate: 1.0.2 4038 | 4039 | unicorn-magic@0.1.0: {} 4040 | 4041 | universalify@0.1.2: {} 4042 | 4043 | universalify@2.0.1: {} 4044 | 4045 | upath@2.0.1: {} 4046 | 4047 | update-browserslist-db@1.1.2(browserslist@4.24.4): 4048 | dependencies: 4049 | browserslist: 4.24.4 4050 | escalade: 3.2.0 4051 | picocolors: 1.1.1 4052 | 4053 | uri-js@4.4.1: 4054 | dependencies: 4055 | punycode: 2.3.1 4056 | 4057 | username-sync@1.0.3: {} 4058 | 4059 | util-deprecate@1.0.2: {} 4060 | 4061 | v8-compile-cache@2.4.0: {} 4062 | 4063 | validate-peer-dependencies@1.2.0: 4064 | dependencies: 4065 | resolve-package-path: 3.1.0 4066 | semver: 7.6.3 4067 | 4068 | walk-sync@0.3.4: 4069 | dependencies: 4070 | ensure-posix-path: 1.1.1 4071 | matcher-collection: 1.1.2 4072 | 4073 | walk-sync@1.1.4: 4074 | dependencies: 4075 | '@types/minimatch': 3.0.5 4076 | ensure-posix-path: 1.1.1 4077 | matcher-collection: 1.1.2 4078 | 4079 | walk-sync@2.2.0: 4080 | dependencies: 4081 | '@types/minimatch': 3.0.5 4082 | ensure-posix-path: 1.1.1 4083 | matcher-collection: 2.0.1 4084 | minimatch: 3.1.2 4085 | 4086 | wcwidth@1.0.1: 4087 | dependencies: 4088 | defaults: 1.0.4 4089 | 4090 | which-boxed-primitive@1.1.1: 4091 | dependencies: 4092 | is-bigint: 1.1.0 4093 | is-boolean-object: 1.2.1 4094 | is-number-object: 1.1.1 4095 | is-string: 1.1.1 4096 | is-symbol: 1.1.1 4097 | 4098 | which-builtin-type@1.2.1: 4099 | dependencies: 4100 | call-bound: 1.0.3 4101 | function.prototype.name: 1.1.8 4102 | has-tostringtag: 1.0.2 4103 | is-async-function: 2.1.0 4104 | is-date-object: 1.1.0 4105 | is-finalizationregistry: 1.1.1 4106 | is-generator-function: 1.1.0 4107 | is-regex: 1.2.1 4108 | is-weakref: 1.1.0 4109 | isarray: 2.0.5 4110 | which-boxed-primitive: 1.1.1 4111 | which-collection: 1.0.2 4112 | which-typed-array: 1.1.18 4113 | 4114 | which-collection@1.0.2: 4115 | dependencies: 4116 | is-map: 2.0.3 4117 | is-set: 2.0.3 4118 | is-weakmap: 2.0.2 4119 | is-weakset: 2.0.4 4120 | 4121 | which-typed-array@1.1.18: 4122 | dependencies: 4123 | available-typed-arrays: 1.0.7 4124 | call-bind: 1.0.8 4125 | call-bound: 1.0.3 4126 | for-each: 0.3.3 4127 | gopd: 1.2.0 4128 | has-tostringtag: 1.0.2 4129 | 4130 | which@2.0.2: 4131 | dependencies: 4132 | isexe: 2.0.0 4133 | 4134 | word-wrap@1.2.5: {} 4135 | 4136 | workerpool@6.5.1: {} 4137 | 4138 | wrap-ansi@7.0.0: 4139 | dependencies: 4140 | ansi-styles: 4.3.0 4141 | string-width: 4.2.3 4142 | strip-ansi: 6.0.1 4143 | 4144 | wrappy@1.0.2: {} 4145 | 4146 | y18n@5.0.8: {} 4147 | 4148 | yallist@3.1.1: {} 4149 | 4150 | yargs-parser@21.1.1: {} 4151 | 4152 | yargs@17.7.2: 4153 | dependencies: 4154 | cliui: 8.0.1 4155 | escalade: 3.2.0 4156 | get-caller-file: 2.0.5 4157 | require-directory: 2.1.1 4158 | string-width: 4.2.3 4159 | y18n: 5.0.8 4160 | yargs-parser: 21.1.1 4161 | 4162 | yocto-queue@0.1.0: {} 4163 | 4164 | yocto-queue@1.1.1: {} 4165 | -------------------------------------------------------------------------------- /spec/lib/topic_view_spec.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require "topic_view" 4 | 5 | RSpec.describe TopicView do 6 | fab!(:user) { Fabricate(:user, refresh_auto_groups: true) } 7 | fab!(:moderator) 8 | fab!(:admin) 9 | fab!(:topic) 10 | fab!(:evil_trout) 11 | fab!(:first_poster) { topic.user } 12 | fab!(:anonymous) 13 | let(:topic_view) { TopicView.new(topic.id, evil_trout) } 14 | 15 | context "with a few sample posts" do 16 | fab!(:p1) { Fabricate(:post, topic: topic, user: first_poster, percent_rank: 1) } 17 | fab!(:p2) { Fabricate(:post, topic: topic, user: evil_trout, percent_rank: 0.5) } 18 | fab!(:p3) { Fabricate(:post, topic: topic, user: first_poster, percent_rank: 0) } 19 | 20 | before do 21 | SiteSetting.ai_topic_summary_enabled = true 22 | ai_summary_hash = { "text": "he said, she said", "post_count": topic.posts_count, "downvoted": [] } 23 | TopicCustomField.create!(topic: topic, value: ai_summary_hash.to_json, name: "ai_summary") 24 | end 25 | 26 | it "summary reflects ai" do 27 | expect(topic_view.summary).to be_present 28 | SiteSetting.ai_topic_summary_enable_description_replacement_with_ai_summary = true 29 | expect(topic_view.summary).to eq("he said, she said") 30 | end 31 | 32 | it "summary does not reflect ai" do 33 | expect(topic_view.summary).to be_present 34 | SiteSetting.ai_topic_summary_enable_description_replacement_with_ai_summary = false 35 | expect(topic_view.summary).not_to eq("he said, she said") 36 | end 37 | end 38 | end 39 | -------------------------------------------------------------------------------- /spec/plugin_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require 'rails_helper' 4 | -------------------------------------------------------------------------------- /spec/requests/ai_topic_summary/vote_controller_spec.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | require_relative '../../plugin_helper' 3 | 4 | describe AiTopicSummary::VoteController do 5 | let!(:current_user) { Fabricate(:user, refresh_auto_groups: true) } 6 | 7 | describe "vote" do 8 | before do 9 | SiteSetting.ai_topic_summary_downvote_refresh_threshold = 1 10 | SiteSetting.ai_topic_summary_enabled = true 11 | sign_in(current_user) 12 | end 13 | it "works" do 14 | topic = Fabricate(:topic) 15 | topic.custom_fields["ai_summary"] = { "downvoted" => [22] } 16 | topic.save! 17 | 18 | expect do 19 | post "/ai-topic-summary/downvote/#{topic.id}.json" 20 | end.to change { Jobs::AiTopicSummarySummariseTopic.jobs.size }.by(1) & change { topic.reload.custom_fields["ai_summary"]["downvoted"].length }.by(-1) 21 | 22 | expect(response.status).to eq(200) 23 | end 24 | end 25 | end 26 | -------------------------------------------------------------------------------- /test/javascripts/component/ai-topic-summary-test.js: -------------------------------------------------------------------------------- 1 | import { click, render } from "@ember/test-helpers"; 2 | import hbs from "htmlbars-inline-precompile"; 3 | import { module, test } from "qunit"; 4 | import { setupRenderingTest } from "discourse/tests/helpers/component-test"; 5 | import pretender, { response } from "discourse/tests/helpers/create-pretender"; 6 | 7 | module("ai-topic-summary | Component | ai-topic-summary", function (hooks) { 8 | setupRenderingTest(hooks); 9 | 10 | hooks.beforeEach(function () { 11 | pretender.post("/ai-topic-summary/downvote/23.json", () => { 12 | return response({ 13 | result: "success", 14 | }); 15 | }); 16 | }); 17 | 18 | test("displays summary and downvotes as expected", async function (assert) { 19 | this.setProperties({ 20 | model: { 21 | ai_summary: { 22 | text: "This is a bad summary", 23 | post_count: 10, 24 | downvoted: [4, 5], 25 | }, 26 | id: 23, 27 | }, 28 | currentUser: { 29 | id: 3, 30 | admin: false, 31 | }, 32 | }); 33 | 34 | await render(hbs``); 39 | 40 | assert 41 | .dom("span.ai-summary-downvote-count") 42 | .hasText("2", "displays the initial number of downvotes"); 43 | assert 44 | .dom("span.ai-summary") 45 | .hasText("This is a bad summary", "has the correct summary text"); 46 | 47 | await click(".ai-summary-downvote-button", "click the downvote button"); 48 | 49 | assert 50 | .dom("span.ai-summary-downvote-count") 51 | .hasText("3", "displays an increased number of downvotes"); 52 | assert 53 | .dom(".ai-summary-downvote-button") 54 | .isDisabled("Downvote button is disabled after downvoting"); 55 | }); 56 | }); 57 | --------------------------------------------------------------------------------