my website at ewancroft.uk

RESET

authored by ewancroft.uk and committed by ewancroft.uk d2a81ad6 978bf3b9

Changed files
+2505 -17513
src
lib
routes
static
+18 -184
.gitignore
··· 1 - # Created by https://www.toptal.com/developers/gitignore/api/node,macos,svelte,vercel 2 - # Edit at https://www.toptal.com/developers/gitignore?templates=node,macos,svelte,vercel 3 - 4 - ### macOS ### 5 - # General 6 - .DS_Store 7 - .AppleDouble 8 - .LSOverride 9 - 10 - # Icon must end with two \r 11 - Icon 12 - 13 - 14 - # Thumbnails 15 - ._* 16 - 17 - # Files that might appear in the root of a volume 18 - .DocumentRevisions-V100 19 - .fseventsd 20 - .Spotlight-V100 21 - .TemporaryItems 22 - .Trashes 23 - .VolumeIcon.icns 24 - .com.apple.timemachine.donotpresent 25 - 26 - # Directories potentially created on remote AFP share 27 - .AppleDB 28 - .AppleDesktop 29 - Network Trash Folder 30 - Temporary Items 31 - .apdisk 32 - 33 - ### macOS Patch ### 34 - # iCloud generated files 35 - *.icloud 36 - 37 - ### Node ### 38 - # Logs 39 - logs 40 - *.log 41 - npm-debug.log* 42 - yarn-debug.log* 43 - yarn-error.log* 44 - lerna-debug.log* 45 - .pnpm-debug.log* 46 - 47 - # Diagnostic reports (https://nodejs.org/api/report.html) 48 - report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 49 - 50 - # Runtime data 51 - pids 52 - *.pid 53 - *.seed 54 - *.pid.lock 55 - 56 - # Directory for instrumented libs generated by jscoverage/JSCover 57 - lib-cov 58 - 59 - # Coverage directory used by tools like istanbul 60 - coverage 61 - *.lcov 62 - 63 - # nyc test coverage 64 - .nyc_output 65 - 66 - # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 67 - .grunt 68 - 69 - # Bower dependency directory (https://bower.io/) 70 - bower_components 71 - 72 - # node-waf configuration 73 - .lock-wscript 74 - 75 - # Compiled binary addons (https://nodejs.org/api/addons.html) 76 - build/Release 77 - 78 - # Dependency directories 79 - node_modules/ 80 - jspm_packages/ 81 - 82 - # Snowpack dependency directory (https://snowpack.dev/) 83 - web_modules/ 84 - 85 - # TypeScript cache 86 - *.tsbuildinfo 87 - 88 - # Optional npm cache directory 89 - .npm 90 - 91 - # Optional eslint cache 92 - .eslintcache 93 - 94 - # Optional stylelint cache 95 - .stylelintcache 96 - 97 - # Microbundle cache 98 - .rpt2_cache/ 99 - .rts2_cache_cjs/ 100 - .rts2_cache_es/ 101 - .rts2_cache_umd/ 1 + node_modules 102 2 103 - # Optional REPL history 104 - .node_repl_history 105 - 106 - # Output of 'npm pack' 107 - *.tgz 3 + # Output 4 + .output 5 + .vercel 6 + .netlify 7 + .wrangler 8 + /.svelte-kit 9 + /build 108 10 109 - # Yarn Integrity file 110 - .yarn-integrity 11 + # OS 12 + .DS_Store 13 + Thumbs.db 111 14 112 - # dotenv environment variable files 15 + # Env 113 16 .env 114 - .env.development.local 115 - .env.test.local 116 - .env.production.local 117 - .env.local 17 + .env.* 18 + !.env.example 19 + !.env.test 118 20 119 - # parcel-bundler cache (https://parceljs.org/) 120 - .cache 121 - .parcel-cache 122 - 123 - # Next.js build output 124 - .next 125 - out 126 - 127 - # Nuxt.js build / generate output 128 - .nuxt 129 - dist 130 - 131 - # Gatsby files 132 - .cache/ 133 - # Comment in the public line in if your project uses Gatsby and not Next.js 134 - # https://nextjs.org/blog/next-9-1#public-directory-support 135 - # public 136 - 137 - # vuepress build output 138 - .vuepress/dist 139 - 140 - # vuepress v2.x temp and cache directory 141 - .temp 142 - 143 - # Docusaurus cache and generated files 144 - .docusaurus 145 - 146 - # Serverless directories 147 - .serverless/ 148 - 149 - # FuseBox cache 150 - .fusebox/ 151 - 152 - # DynamoDB Local files 153 - .dynamodb/ 154 - 155 - # TernJS port file 156 - .tern-port 157 - 158 - # Stores VSCode versions used for testing VSCode extensions 159 - .vscode-test 160 - 161 - # yarn v2 162 - .yarn/cache 163 - .yarn/unplugged 164 - .yarn/build-state.yml 165 - .yarn/install-state.gz 166 - .pnp.* 167 - 168 - ### Node Patch ### 169 - # Serverless Webpack directories 170 - .webpack/ 171 - 172 - # Optional stylelint cache 173 - 174 - # SvelteKit build / generate output 175 - .svelte-kit 176 - 177 - ### Svelte ### 178 - # gitignore template for the SvelteKit, frontend web component framework 179 - # website: https://kit.svelte.dev/ 180 - 181 - .svelte-kit/ 182 - package 183 - 184 - ### Vercel ### 185 - .vercel 186 - 187 - # End of https://www.toptal.com/developers/gitignore/api/node,macos,svelte,vercel 188 - 189 - git-diff*.txt 21 + # Vite 22 + vite.config.js.timestamp-* 23 + vite.config.ts.timestamp-*
+5
.prettierignore
··· 2 2 package-lock.json 3 3 pnpm-lock.yaml 4 4 yarn.lock 5 + bun.lock 6 + bun.lockb 7 + 8 + # Miscellaneous 9 + /static/
+16
.prettierrc
··· 1 + { 2 + "useTabs": true, 3 + "singleQuote": true, 4 + "trailingComma": "none", 5 + "printWidth": 100, 6 + "plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"], 7 + "overrides": [ 8 + { 9 + "files": "*.svelte", 10 + "options": { 11 + "parser": "svelte" 12 + } 13 + } 14 + ], 15 + "tailwindStylesheet": "./src/app.css" 16 + }
-25
.vercelignore
··· 1 - # Local Vercel directory 2 - .vercel 3 - 4 - # Docker related files (not needed for Vercel deployment) 5 - server/Dockerfile 6 - server/compose.yml 7 - server/Caddyfile 8 - server/.dockerignore 9 - 10 - # Node.js 11 - node_modules 12 - .npm 13 - 14 - # Logs 15 - logs 16 - *.log 17 - npm-debug.log* 18 - yarn-debug.log* 19 - yarn-error.log* 20 - 21 - # Editor directories and files 22 - .idea 23 - .vscode 24 - *.swp 25 - *.swo
-20
Dockerfile
··· 1 - FROM node:23-alpine AS base 2 - 3 - FROM base AS deps 4 - WORKDIR /app 5 - COPY package.json package-lock.json ./ 6 - RUN npm install 7 - 8 - FROM base AS builder 9 - WORKDIR /app 10 - COPY --from=deps /app/node_modules ./node_modules 11 - COPY . . 12 - RUN npm run build 13 - 14 - FROM base AS runner 15 - WORKDIR /app 16 - COPY --from=builder /app/build ./ 17 - COPY --from=deps /app/node_modules ./node_modules 18 - ENV PORT=3000 19 - EXPOSE 3000 20 - CMD ["node", "index.js"]
-661
LICENSE
··· 1 - GNU AFFERO GENERAL PUBLIC LICENSE 2 - Version 3, 19 November 2007 3 - 4 - Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> 5 - Everyone is permitted to copy and distribute verbatim copies 6 - of this license document, but changing it is not allowed. 7 - 8 - Preamble 9 - 10 - The GNU Affero General Public License is a free, copyleft license for 11 - software and other kinds of works, specifically designed to ensure 12 - cooperation with the community in the case of network server software. 13 - 14 - The licenses for most software and other practical works are designed 15 - to take away your freedom to share and change the works. By contrast, 16 - our General Public Licenses are intended to guarantee your freedom to 17 - share and change all versions of a program--to make sure it remains free 18 - software for all its users. 19 - 20 - When we speak of free software, we are referring to freedom, not 21 - price. Our General Public Licenses are designed to make sure that you 22 - have the freedom to distribute copies of free software (and charge for 23 - them if you wish), that you receive source code or can get it if you 24 - want it, that you can change the software or use pieces of it in new 25 - free programs, and that you know you can do these things. 26 - 27 - Developers that use our General Public Licenses protect your rights 28 - with two steps: (1) assert copyright on the software, and (2) offer 29 - you this License which gives you legal permission to copy, distribute 30 - and/or modify the software. 31 - 32 - A secondary benefit of defending all users' freedom is that 33 - improvements made in alternate versions of the program, if they 34 - receive widespread use, become available for other developers to 35 - incorporate. Many developers of free software are heartened and 36 - encouraged by the resulting cooperation. However, in the case of 37 - software used on network servers, this result may fail to come about. 38 - The GNU General Public License permits making a modified version and 39 - letting the public access it on a server without ever releasing its 40 - source code to the public. 41 - 42 - The GNU Affero General Public License is designed specifically to 43 - ensure that, in such cases, the modified source code becomes available 44 - to the community. It requires the operator of a network server to 45 - provide the source code of the modified version running there to the 46 - users of that server. Therefore, public use of a modified version, on 47 - a publicly accessible server, gives the public access to the source 48 - code of the modified version. 49 - 50 - An older license, called the Affero General Public License and 51 - published by Affero, was designed to accomplish similar goals. This is 52 - a different license, not a version of the Affero GPL, but Affero has 53 - released a new version of the Affero GPL which permits relicensing under 54 - this license. 55 - 56 - The precise terms and conditions for copying, distribution and 57 - modification follow. 58 - 59 - TERMS AND CONDITIONS 60 - 61 - 0. Definitions. 62 - 63 - "This License" refers to version 3 of the GNU Affero General Public License. 64 - 65 - "Copyright" also means copyright-like laws that apply to other kinds of 66 - works, such as semiconductor masks. 67 - 68 - "The Program" refers to any copyrightable work licensed under this 69 - License. Each licensee is addressed as "you". "Licensees" and 70 - "recipients" may be individuals or organizations. 71 - 72 - To "modify" a work means to copy from or adapt all or part of the work 73 - in a fashion requiring copyright permission, other than the making of an 74 - exact copy. The resulting work is called a "modified version" of the 75 - earlier work or a work "based on" the earlier work. 76 - 77 - A "covered work" means either the unmodified Program or a work based 78 - on the Program. 79 - 80 - To "propagate" a work means to do anything with it that, without 81 - permission, would make you directly or secondarily liable for 82 - infringement under applicable copyright law, except executing it on a 83 - computer or modifying a private copy. Propagation includes copying, 84 - distribution (with or without modification), making available to the 85 - public, and in some countries other activities as well. 86 - 87 - To "convey" a work means any kind of propagation that enables other 88 - parties to make or receive copies. Mere interaction with a user through 89 - a computer network, with no transfer of a copy, is not conveying. 90 - 91 - An interactive user interface displays "Appropriate Legal Notices" 92 - to the extent that it includes a convenient and prominently visible 93 - feature that (1) displays an appropriate copyright notice, and (2) 94 - tells the user that there is no warranty for the work (except to the 95 - extent that warranties are provided), that licensees may convey the 96 - work under this License, and how to view a copy of this License. If 97 - the interface presents a list of user commands or options, such as a 98 - menu, a prominent item in the list meets this criterion. 99 - 100 - 1. Source Code. 101 - 102 - The "source code" for a work means the preferred form of the work 103 - for making modifications to it. "Object code" means any non-source 104 - form of a work. 105 - 106 - A "Standard Interface" means an interface that either is an official 107 - standard defined by a recognized standards body, or, in the case of 108 - interfaces specified for a particular programming language, one that 109 - is widely used among developers working in that language. 110 - 111 - The "System Libraries" of an executable work include anything, other 112 - than the work as a whole, that (a) is included in the normal form of 113 - packaging a Major Component, but which is not part of that Major 114 - Component, and (b) serves only to enable use of the work with that 115 - Major Component, or to implement a Standard Interface for which an 116 - implementation is available to the public in source code form. A 117 - "Major Component", in this context, means a major essential component 118 - (kernel, window system, and so on) of the specific operating system 119 - (if any) on which the executable work runs, or a compiler used to 120 - produce the work, or an object code interpreter used to run it. 121 - 122 - The "Corresponding Source" for a work in object code form means all 123 - the source code needed to generate, install, and (for an executable 124 - work) run the object code and to modify the work, including scripts to 125 - control those activities. However, it does not include the work's 126 - System Libraries, or general-purpose tools or generally available free 127 - programs which are used unmodified in performing those activities but 128 - which are not part of the work. For example, Corresponding Source 129 - includes interface definition files associated with source files for 130 - the work, and the source code for shared libraries and dynamically 131 - linked subprograms that the work is specifically designed to require, 132 - such as by intimate data communication or control flow between those 133 - subprograms and other parts of the work. 134 - 135 - The Corresponding Source need not include anything that users 136 - can regenerate automatically from other parts of the Corresponding 137 - Source. 138 - 139 - The Corresponding Source for a work in source code form is that 140 - same work. 141 - 142 - 2. Basic Permissions. 143 - 144 - All rights granted under this License are granted for the term of 145 - copyright on the Program, and are irrevocable provided the stated 146 - conditions are met. This License explicitly affirms your unlimited 147 - permission to run the unmodified Program. The output from running a 148 - covered work is covered by this License only if the output, given its 149 - content, constitutes a covered work. This License acknowledges your 150 - rights of fair use or other equivalent, as provided by copyright law. 151 - 152 - You may make, run and propagate covered works that you do not 153 - convey, without conditions so long as your license otherwise remains 154 - in force. You may convey covered works to others for the sole purpose 155 - of having them make modifications exclusively for you, or provide you 156 - with facilities for running those works, provided that you comply with 157 - the terms of this License in conveying all material for which you do 158 - not control copyright. Those thus making or running the covered works 159 - for you must do so exclusively on your behalf, under your direction 160 - and control, on terms that prohibit them from making any copies of 161 - your copyrighted material outside their relationship with you. 162 - 163 - Conveying under any other circumstances is permitted solely under 164 - the conditions stated below. Sublicensing is not allowed; section 10 165 - makes it unnecessary. 166 - 167 - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 - 169 - No covered work shall be deemed part of an effective technological 170 - measure under any applicable law fulfilling obligations under article 171 - 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 - similar laws prohibiting or restricting circumvention of such 173 - measures. 174 - 175 - When you convey a covered work, you waive any legal power to forbid 176 - circumvention of technological measures to the extent such circumvention 177 - is effected by exercising rights under this License with respect to 178 - the covered work, and you disclaim any intention to limit operation or 179 - modification of the work as a means of enforcing, against the work's 180 - users, your or third parties' legal rights to forbid circumvention of 181 - technological measures. 182 - 183 - 4. Conveying Verbatim Copies. 184 - 185 - You may convey verbatim copies of the Program's source code as you 186 - receive it, in any medium, provided that you conspicuously and 187 - appropriately publish on each copy an appropriate copyright notice; 188 - keep intact all notices stating that this License and any 189 - non-permissive terms added in accord with section 7 apply to the code; 190 - keep intact all notices of the absence of any warranty; and give all 191 - recipients a copy of this License along with the Program. 192 - 193 - You may charge any price or no price for each copy that you convey, 194 - and you may offer support or warranty protection for a fee. 195 - 196 - 5. Conveying Modified Source Versions. 197 - 198 - You may convey a work based on the Program, or the modifications to 199 - produce it from the Program, in the form of source code under the 200 - terms of section 4, provided that you also meet all of these conditions: 201 - 202 - a) The work must carry prominent notices stating that you modified 203 - it, and giving a relevant date. 204 - 205 - b) The work must carry prominent notices stating that it is 206 - released under this License and any conditions added under section 207 - 7. This requirement modifies the requirement in section 4 to 208 - "keep intact all notices". 209 - 210 - c) You must license the entire work, as a whole, under this 211 - License to anyone who comes into possession of a copy. This 212 - License will therefore apply, along with any applicable section 7 213 - additional terms, to the whole of the work, and all its parts, 214 - regardless of how they are packaged. This License gives no 215 - permission to license the work in any other way, but it does not 216 - invalidate such permission if you have separately received it. 217 - 218 - d) If the work has interactive user interfaces, each must display 219 - Appropriate Legal Notices; however, if the Program has interactive 220 - interfaces that do not display Appropriate Legal Notices, your 221 - work need not make them do so. 222 - 223 - A compilation of a covered work with other separate and independent 224 - works, which are not by their nature extensions of the covered work, 225 - and which are not combined with it such as to form a larger program, 226 - in or on a volume of a storage or distribution medium, is called an 227 - "aggregate" if the compilation and its resulting copyright are not 228 - used to limit the access or legal rights of the compilation's users 229 - beyond what the individual works permit. Inclusion of a covered work 230 - in an aggregate does not cause this License to apply to the other 231 - parts of the aggregate. 232 - 233 - 6. Conveying Non-Source Forms. 234 - 235 - You may convey a covered work in object code form under the terms 236 - of sections 4 and 5, provided that you also convey the 237 - machine-readable Corresponding Source under the terms of this License, 238 - in one of these ways: 239 - 240 - a) Convey the object code in, or embodied in, a physical product 241 - (including a physical distribution medium), accompanied by the 242 - Corresponding Source fixed on a durable physical medium 243 - customarily used for software interchange. 244 - 245 - b) Convey the object code in, or embodied in, a physical product 246 - (including a physical distribution medium), accompanied by a 247 - written offer, valid for at least three years and valid for as 248 - long as you offer spare parts or customer support for that product 249 - model, to give anyone who possesses the object code either (1) a 250 - copy of the Corresponding Source for all the software in the 251 - product that is covered by this License, on a durable physical 252 - medium customarily used for software interchange, for a price no 253 - more than your reasonable cost of physically performing this 254 - conveying of source, or (2) access to copy the 255 - Corresponding Source from a network server at no charge. 256 - 257 - c) Convey individual copies of the object code with a copy of the 258 - written offer to provide the Corresponding Source. This 259 - alternative is allowed only occasionally and noncommercially, and 260 - only if you received the object code with such an offer, in accord 261 - with subsection 6b. 262 - 263 - d) Convey the object code by offering access from a designated 264 - place (gratis or for a charge), and offer equivalent access to the 265 - Corresponding Source in the same way through the same place at no 266 - further charge. You need not require recipients to copy the 267 - Corresponding Source along with the object code. If the place to 268 - copy the object code is a network server, the Corresponding Source 269 - may be on a different server (operated by you or a third party) 270 - that supports equivalent copying facilities, provided you maintain 271 - clear directions next to the object code saying where to find the 272 - Corresponding Source. Regardless of what server hosts the 273 - Corresponding Source, you remain obligated to ensure that it is 274 - available for as long as needed to satisfy these requirements. 275 - 276 - e) Convey the object code using peer-to-peer transmission, provided 277 - you inform other peers where the object code and Corresponding 278 - Source of the work are being offered to the general public at no 279 - charge under subsection 6d. 280 - 281 - A separable portion of the object code, whose source code is excluded 282 - from the Corresponding Source as a System Library, need not be 283 - included in conveying the object code work. 284 - 285 - A "User Product" is either (1) a "consumer product", which means any 286 - tangible personal property which is normally used for personal, family, 287 - or household purposes, or (2) anything designed or sold for incorporation 288 - into a dwelling. In determining whether a product is a consumer product, 289 - doubtful cases shall be resolved in favor of coverage. For a particular 290 - product received by a particular user, "normally used" refers to a 291 - typical or common use of that class of product, regardless of the status 292 - of the particular user or of the way in which the particular user 293 - actually uses, or expects or is expected to use, the product. A product 294 - is a consumer product regardless of whether the product has substantial 295 - commercial, industrial or non-consumer uses, unless such uses represent 296 - the only significant mode of use of the product. 297 - 298 - "Installation Information" for a User Product means any methods, 299 - procedures, authorization keys, or other information required to install 300 - and execute modified versions of a covered work in that User Product from 301 - a modified version of its Corresponding Source. The information must 302 - suffice to ensure that the continued functioning of the modified object 303 - code is in no case prevented or interfered with solely because 304 - modification has been made. 305 - 306 - If you convey an object code work under this section in, or with, or 307 - specifically for use in, a User Product, and the conveying occurs as 308 - part of a transaction in which the right of possession and use of the 309 - User Product is transferred to the recipient in perpetuity or for a 310 - fixed term (regardless of how the transaction is characterized), the 311 - Corresponding Source conveyed under this section must be accompanied 312 - by the Installation Information. But this requirement does not apply 313 - if neither you nor any third party retains the ability to install 314 - modified object code on the User Product (for example, the work has 315 - been installed in ROM). 316 - 317 - The requirement to provide Installation Information does not include a 318 - requirement to continue to provide support service, warranty, or updates 319 - for a work that has been modified or installed by the recipient, or for 320 - the User Product in which it has been modified or installed. Access to a 321 - network may be denied when the modification itself materially and 322 - adversely affects the operation of the network or violates the rules and 323 - protocols for communication across the network. 324 - 325 - Corresponding Source conveyed, and Installation Information provided, 326 - in accord with this section must be in a format that is publicly 327 - documented (and with an implementation available to the public in 328 - source code form), and must require no special password or key for 329 - unpacking, reading or copying. 330 - 331 - 7. Additional Terms. 332 - 333 - "Additional permissions" are terms that supplement the terms of this 334 - License by making exceptions from one or more of its conditions. 335 - Additional permissions that are applicable to the entire Program shall 336 - be treated as though they were included in this License, to the extent 337 - that they are valid under applicable law. If additional permissions 338 - apply only to part of the Program, that part may be used separately 339 - under those permissions, but the entire Program remains governed by 340 - this License without regard to the additional permissions. 341 - 342 - When you convey a copy of a covered work, you may at your option 343 - remove any additional permissions from that copy, or from any part of 344 - it. (Additional permissions may be written to require their own 345 - removal in certain cases when you modify the work.) You may place 346 - additional permissions on material, added by you to a covered work, 347 - for which you have or can give appropriate copyright permission. 348 - 349 - Notwithstanding any other provision of this License, for material you 350 - add to a covered work, you may (if authorized by the copyright holders of 351 - that material) supplement the terms of this License with terms: 352 - 353 - a) Disclaiming warranty or limiting liability differently from the 354 - terms of sections 15 and 16 of this License; or 355 - 356 - b) Requiring preservation of specified reasonable legal notices or 357 - author attributions in that material or in the Appropriate Legal 358 - Notices displayed by works containing it; or 359 - 360 - c) Prohibiting misrepresentation of the origin of that material, or 361 - requiring that modified versions of such material be marked in 362 - reasonable ways as different from the original version; or 363 - 364 - d) Limiting the use for publicity purposes of names of licensors or 365 - authors of the material; or 366 - 367 - e) Declining to grant rights under trademark law for use of some 368 - trade names, trademarks, or service marks; or 369 - 370 - f) Requiring indemnification of licensors and authors of that 371 - material by anyone who conveys the material (or modified versions of 372 - it) with contractual assumptions of liability to the recipient, for 373 - any liability that these contractual assumptions directly impose on 374 - those licensors and authors. 375 - 376 - All other non-permissive additional terms are considered "further 377 - restrictions" within the meaning of section 10. If the Program as you 378 - received it, or any part of it, contains a notice stating that it is 379 - governed by this License along with a term that is a further 380 - restriction, you may remove that term. If a license document contains 381 - a further restriction but permits relicensing or conveying under this 382 - License, you may add to a covered work material governed by the terms 383 - of that license document, provided that the further restriction does 384 - not survive such relicensing or conveying. 385 - 386 - If you add terms to a covered work in accord with this section, you 387 - must place, in the relevant source files, a statement of the 388 - additional terms that apply to those files, or a notice indicating 389 - where to find the applicable terms. 390 - 391 - Additional terms, permissive or non-permissive, may be stated in the 392 - form of a separately written license, or stated as exceptions; 393 - the above requirements apply either way. 394 - 395 - 8. Termination. 396 - 397 - You may not propagate or modify a covered work except as expressly 398 - provided under this License. Any attempt otherwise to propagate or 399 - modify it is void, and will automatically terminate your rights under 400 - this License (including any patent licenses granted under the third 401 - paragraph of section 11). 402 - 403 - However, if you cease all violation of this License, then your 404 - license from a particular copyright holder is reinstated (a) 405 - provisionally, unless and until the copyright holder explicitly and 406 - finally terminates your license, and (b) permanently, if the copyright 407 - holder fails to notify you of the violation by some reasonable means 408 - prior to 60 days after the cessation. 409 - 410 - Moreover, your license from a particular copyright holder is 411 - reinstated permanently if the copyright holder notifies you of the 412 - violation by some reasonable means, this is the first time you have 413 - received notice of violation of this License (for any work) from that 414 - copyright holder, and you cure the violation prior to 30 days after 415 - your receipt of the notice. 416 - 417 - Termination of your rights under this section does not terminate the 418 - licenses of parties who have received copies or rights from you under 419 - this License. If your rights have been terminated and not permanently 420 - reinstated, you do not qualify to receive new licenses for the same 421 - material under section 10. 422 - 423 - 9. Acceptance Not Required for Having Copies. 424 - 425 - You are not required to accept this License in order to receive or 426 - run a copy of the Program. Ancillary propagation of a covered work 427 - occurring solely as a consequence of using peer-to-peer transmission 428 - to receive a copy likewise does not require acceptance. However, 429 - nothing other than this License grants you permission to propagate or 430 - modify any covered work. These actions infringe copyright if you do 431 - not accept this License. Therefore, by modifying or propagating a 432 - covered work, you indicate your acceptance of this License to do so. 433 - 434 - 10. Automatic Licensing of Downstream Recipients. 435 - 436 - Each time you convey a covered work, the recipient automatically 437 - receives a license from the original licensors, to run, modify and 438 - propagate that work, subject to this License. You are not responsible 439 - for enforcing compliance by third parties with this License. 440 - 441 - An "entity transaction" is a transaction transferring control of an 442 - organization, or substantially all assets of one, or subdividing an 443 - organization, or merging organizations. If propagation of a covered 444 - work results from an entity transaction, each party to that 445 - transaction who receives a copy of the work also receives whatever 446 - licenses to the work the party's predecessor in interest had or could 447 - give under the previous paragraph, plus a right to possession of the 448 - Corresponding Source of the work from the predecessor in interest, if 449 - the predecessor has it or can get it with reasonable efforts. 450 - 451 - You may not impose any further restrictions on the exercise of the 452 - rights granted or affirmed under this License. For example, you may 453 - not impose a license fee, royalty, or other charge for exercise of 454 - rights granted under this License, and you may not initiate litigation 455 - (including a cross-claim or counterclaim in a lawsuit) alleging that 456 - any patent claim is infringed by making, using, selling, offering for 457 - sale, or importing the Program or any portion of it. 458 - 459 - 11. Patents. 460 - 461 - A "contributor" is a copyright holder who authorizes use under this 462 - License of the Program or a work on which the Program is based. The 463 - work thus licensed is called the contributor's "contributor version". 464 - 465 - A contributor's "essential patent claims" are all patent claims 466 - owned or controlled by the contributor, whether already acquired or 467 - hereafter acquired, that would be infringed by some manner, permitted 468 - by this License, of making, using, or selling its contributor version, 469 - but do not include claims that would be infringed only as a 470 - consequence of further modification of the contributor version. For 471 - purposes of this definition, "control" includes the right to grant 472 - patent sublicenses in a manner consistent with the requirements of 473 - this License. 474 - 475 - Each contributor grants you a non-exclusive, worldwide, royalty-free 476 - patent license under the contributor's essential patent claims, to 477 - make, use, sell, offer for sale, import and otherwise run, modify and 478 - propagate the contents of its contributor version. 479 - 480 - In the following three paragraphs, a "patent license" is any express 481 - agreement or commitment, however denominated, not to enforce a patent 482 - (such as an express permission to practice a patent or covenant not to 483 - sue for patent infringement). To "grant" such a patent license to a 484 - party means to make such an agreement or commitment not to enforce a 485 - patent against the party. 486 - 487 - If you convey a covered work, knowingly relying on a patent license, 488 - and the Corresponding Source of the work is not available for anyone 489 - to copy, free of charge and under the terms of this License, through a 490 - publicly available network server or other readily accessible means, 491 - then you must either (1) cause the Corresponding Source to be so 492 - available, or (2) arrange to deprive yourself of the benefit of the 493 - patent license for this particular work, or (3) arrange, in a manner 494 - consistent with the requirements of this License, to extend the patent 495 - license to downstream recipients. "Knowingly relying" means you have 496 - actual knowledge that, but for the patent license, your conveying the 497 - covered work in a country, or your recipient's use of the covered work 498 - in a country, would infringe one or more identifiable patents in that 499 - country that you have reason to believe are valid. 500 - 501 - If, pursuant to or in connection with a single transaction or 502 - arrangement, you convey, or propagate by procuring conveyance of, a 503 - covered work, and grant a patent license to some of the parties 504 - receiving the covered work authorizing them to use, propagate, modify 505 - or convey a specific copy of the covered work, then the patent license 506 - you grant is automatically extended to all recipients of the covered 507 - work and works based on it. 508 - 509 - A patent license is "discriminatory" if it does not include within 510 - the scope of its coverage, prohibits the exercise of, or is 511 - conditioned on the non-exercise of one or more of the rights that are 512 - specifically granted under this License. You may not convey a covered 513 - work if you are a party to an arrangement with a third party that is 514 - in the business of distributing software, under which you make payment 515 - to the third party based on the extent of your activity of conveying 516 - the work, and under which the third party grants, to any of the 517 - parties who would receive the covered work from you, a discriminatory 518 - patent license (a) in connection with copies of the covered work 519 - conveyed by you (or copies made from those copies), or (b) primarily 520 - for and in connection with specific products or compilations that 521 - contain the covered work, unless you entered into that arrangement, 522 - or that patent license was granted, prior to 28 March 2007. 523 - 524 - Nothing in this License shall be construed as excluding or limiting 525 - any implied license or other defenses to infringement that may 526 - otherwise be available to you under applicable patent law. 527 - 528 - 12. No Surrender of Others' Freedom. 529 - 530 - If conditions are imposed on you (whether by court order, agreement or 531 - otherwise) that contradict the conditions of this License, they do not 532 - excuse you from the conditions of this License. If you cannot convey a 533 - covered work so as to satisfy simultaneously your obligations under this 534 - License and any other pertinent obligations, then as a consequence you may 535 - not convey it at all. For example, if you agree to terms that obligate you 536 - to collect a royalty for further conveying from those to whom you convey 537 - the Program, the only way you could satisfy both those terms and this 538 - License would be to refrain entirely from conveying the Program. 539 - 540 - 13. Remote Network Interaction; Use with the GNU General Public License. 541 - 542 - Notwithstanding any other provision of this License, if you modify the 543 - Program, your modified version must prominently offer all users 544 - interacting with it remotely through a computer network (if your version 545 - supports such interaction) an opportunity to receive the Corresponding 546 - Source of your version by providing access to the Corresponding Source 547 - from a network server at no charge, through some standard or customary 548 - means of facilitating copying of software. This Corresponding Source 549 - shall include the Corresponding Source for any work covered by version 3 550 - of the GNU General Public License that is incorporated pursuant to the 551 - following paragraph. 552 - 553 - Notwithstanding any other provision of this License, you have 554 - permission to link or combine any covered work with a work licensed 555 - under version 3 of the GNU General Public License into a single 556 - combined work, and to convey the resulting work. The terms of this 557 - License will continue to apply to the part which is the covered work, 558 - but the work with which it is combined will remain governed by version 559 - 3 of the GNU General Public License. 560 - 561 - 14. Revised Versions of this License. 562 - 563 - The Free Software Foundation may publish revised and/or new versions of 564 - the GNU Affero General Public License from time to time. Such new versions 565 - will be similar in spirit to the present version, but may differ in detail to 566 - address new problems or concerns. 567 - 568 - Each version is given a distinguishing version number. If the 569 - Program specifies that a certain numbered version of the GNU Affero General 570 - Public License "or any later version" applies to it, you have the 571 - option of following the terms and conditions either of that numbered 572 - version or of any later version published by the Free Software 573 - Foundation. If the Program does not specify a version number of the 574 - GNU Affero General Public License, you may choose any version ever published 575 - by the Free Software Foundation. 576 - 577 - If the Program specifies that a proxy can decide which future 578 - versions of the GNU Affero General Public License can be used, that proxy's 579 - public statement of acceptance of a version permanently authorizes you 580 - to choose that version for the Program. 581 - 582 - Later license versions may give you additional or different 583 - permissions. However, no additional obligations are imposed on any 584 - author or copyright holder as a result of your choosing to follow a 585 - later version. 586 - 587 - 15. Disclaimer of Warranty. 588 - 589 - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 - APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 - HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 - OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 - THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 - PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 - IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 - ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 - 598 - 16. Limitation of Liability. 599 - 600 - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 - WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 - THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 - GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 - USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 - DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 - PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 - EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 - SUCH DAMAGES. 609 - 610 - 17. Interpretation of Sections 15 and 16. 611 - 612 - If the disclaimer of warranty and limitation of liability provided 613 - above cannot be given local legal effect according to their terms, 614 - reviewing courts shall apply local law that most closely approximates 615 - an absolute waiver of all civil liability in connection with the 616 - Program, unless a warranty or assumption of liability accompanies a 617 - copy of the Program in return for a fee. 618 - 619 - END OF TERMS AND CONDITIONS 620 - 621 - How to Apply These Terms to Your New Programs 622 - 623 - If you develop a new program, and you want it to be of the greatest 624 - possible use to the public, the best way to achieve this is to make it 625 - free software which everyone can redistribute and change under these terms. 626 - 627 - To do so, attach the following notices to the program. It is safest 628 - to attach them to the start of each source file to most effectively 629 - state the exclusion of warranty; and each file should have at least 630 - the "copyright" line and a pointer to where the full notice is found. 631 - 632 - <one line to give the program's name and a brief idea of what it does.> 633 - Copyright (C) <year> <name of author> 634 - 635 - This program is free software: you can redistribute it and/or modify 636 - it under the terms of the GNU Affero General Public License as published 637 - by the Free Software Foundation, either version 3 of the License, or 638 - (at your option) any later version. 639 - 640 - This program is distributed in the hope that it will be useful, 641 - but WITHOUT ANY WARRANTY; without even the implied warranty of 642 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 - GNU Affero General Public License for more details. 644 - 645 - You should have received a copy of the GNU Affero General Public License 646 - along with this program. If not, see <https://www.gnu.org/licenses/>. 647 - 648 - Also add information on how to contact you by electronic and paper mail. 649 - 650 - If your software can interact with users remotely through a computer 651 - network, you should also make sure that it provides a way for users to 652 - get its source. For example, if your program is a web application, its 653 - interface could display a "Source" link that leads users to an archive 654 - of the code. There are many ways you could offer source, and different 655 - solutions will be better for different programs; see section 13 for the 656 - specific requirements. 657 - 658 - You should also get your employer (if you work as a programmer) or school, 659 - if any, to sign a "copyright disclaimer" for the program, if necessary. 660 - For more information on this, and how to apply and follow the GNU AGPL, see 661 - <https://www.gnu.org/licenses/>.
-151
README.md
··· 1 - # Personal Website & Data Aggregator 2 - 3 - A personal website and data aggregation platform built with SvelteKit, originally forked from [WhiteBreeze](https://github.com/hugeblank/whitebreeze). This project serves as a creative outlet, link aggregate, and digital presence on the decentralised web, demonstrating the potential of AT Protocol for personal publishing whilst maintaining full control over content and presentation. 4 - 5 - **_This repository is available on [GitHub](https://github.com/ewanc26/website) and [Tangled](https://tangled.org/did:plc:ofrbh253gwicbkc5nktqepol/website). GitHub is the primary version, and the Tangled version is a mirror._** 6 - 7 - ## Purpose 8 - 9 - This project serves as a personal website and data aggregation platform that pulls content from multiple sources within the AT Protocol network. It demonstrates the potential of AT Protocol for personal publishing whilst maintaining full control over content and presentation. The site includes custom lexicons for extended functionality and maintains compatibility with both AT Protocol and ActivityPub ecosystems. 10 - 11 - Rather than being a content management system where you create posts directly, it acts as a unified display layer for your distributed content across various AT Protocol applications. 12 - 13 - ### Key Features 14 - 15 - - **Blog Integration**: Display WhiteWind blog posts with full markdown support 16 - - **Social Content**: Aggregate Bluesky posts and interactions 17 - - **Link Management**: Showcase curated links from Linkat 18 - - **Status Updates**: Real-time status display with custom lexicons 19 - - **Music Integration**: Optional Last.fm integration for displaying recent tracks 20 - - **Profile Management**: Unified profile display across platforms 21 - - **Cross-Platform Compatibility**: Limited ActivityPub compatibility for improved content sharing 22 - - **Privacy-First**: No tracking, analytics, or data collection - only uses localStorage for theme preferences 23 - 24 - ## Template Available 25 - 26 - A genericised template version of this website is available at [https://github.com/ewanc26/website-template](https://github.com/ewanc26/website-template), which strips back the personal customisations to provide a clean starting point for your own AT Protocol-powered website. 27 - 28 - ## Installation 29 - 30 - To get started with this project, ensure you have Node.js and npm installed. 31 - 32 - ### Prerequisites 33 - 34 - - Node.js (LTS version recommended) 35 - - npm (comes with Node.js) 36 - - Docker and Docker Compose (for containerised deployment) 37 - 38 - ### Technology Stack 39 - 40 - This project is built with modern web technologies: 41 - 42 - - **SvelteKit**: Full-stack web framework 43 - - **Tailwind CSS**: Utility-first CSS framework 44 - - **TypeScript**: Typed JavaScript for better development experience 45 - - **Vite**: Fast build tool and development server 46 - - **AT Protocol**: Decentralised social networking protocol 47 - - **Docker**: Containerisation for deployment 48 - 49 - ### Environment Variables 50 - 51 - Before running the application, configure the following environment variables in a `.env` file in the project root: 52 - 53 - ```ini 54 - PUBLIC_ATPROTOCOL_USER="myhandle.bsky.social" # Your AT Protocol handle or DID 55 - ``` 56 - 57 - #### Optional Environment Variables 58 - 59 - - `PUBLIC_LASTFM_USERNAME`: Required for the Now Playing (Last.fm) feature displaying recent tracks 60 - - `PUBLIC_ACTIVITYPUB_USER=@user@server.tld`: Enables limited ActivityPub compatibility for improved content sharing on platforms like Mastodon 61 - 62 - ## Usage 63 - 64 - ### Development 65 - 66 - To run the project in development mode: 67 - 68 - ```sh 69 - npm install 70 - npm run dev 71 - ``` 72 - 73 - ### Data Sources 74 - 75 - This platform aggregates data from your AT Protocol repository. For optimal functionality, ensure you have the following record types in your [AT Protocol repository](https://atproto.com/specs/repository): 76 - 77 - #### Required Records 78 - 79 - - `app.bsky.actor.profile`: Your profile information 80 - - `com.whtwnd.blog.entry`: Your blog posts (created via WhiteWind) 81 - - `blue.linkat.board`: Your curated links (created via Linkat) 82 - 83 - #### Optional Records 84 - 85 - ##### Custom Lexicons 86 - 87 - This project includes custom lexicons designed for personal use: 88 - 89 - - `uk.ewancroft.now`: Displays your current status on the index page 90 - - `uk.ewancroft.site.info`: Provides metadata about the site, displayed on the `/site/meta` route 91 - 92 - **Note**: These are personal lexicons created for my own use. While others are welcome to use them, no guarantees are made about schema stability - these may be updated without notice. 93 - 94 - ### Deployment 95 - 96 - #### Standalone 97 - 98 - To build and run the project as a standalone application: 99 - 100 - ```sh 101 - npm install 102 - npm run build 103 - node index.js 104 - ``` 105 - 106 - Environment variables can be set before the last command, and the port can be configured with the `PORT` variable. 107 - 108 - #### Containerised 109 - 110 - To deploy using Docker: 111 - 112 - 1. Modify `compose.yaml` to change the host port if necessary 113 - 2. Run the following command: 114 - 115 - ```sh 116 - docker compose up -d 117 - ``` 118 - 119 - ## Content Management 120 - 121 - **Important**: This is a data aggregation and display platform, not a content management system. You cannot create or edit content directly through this website. Instead, content is created through the respective AT Protocol applications: 122 - 123 - - **Blog Posts**: Create via [WhiteWind](https://whtwnd.com/) 124 - - **Social Posts**: Create via [Bluesky](https://bsky.app/) 125 - - **Links**: Manage via [Linkat](https://linkat.blue/) 126 - - **Profile**: Update via [Bluesky](https://bsky.app/) or other AT Protocol clients 127 - 128 - The website automatically pulls and displays this content from your AT Protocol repository. 129 - 130 - ## Privacy & Data Collection 131 - 132 - This website respects your privacy and operates with a privacy-first approach: 133 - 134 - - **No Tracking**: No analytics, tracking, or third-party cookies are used 135 - - **Local Storage Only**: Only uses localStorage to remember your theme preferences 136 - - **No Data Collection**: No personal data is collected, stored, or shared externally 137 - - **Open Source**: The entire codebase is transparent and available for inspection 138 - - **No Hidden Functionality**: What you see in the code is what runs on the website 139 - 140 - ## Licensing 141 - 142 - This project has significantly diverged from the original WhiteBreeze codebase while maintaining its open-source nature under the AGPL 3.0 license. My blog content is licensed under CC-BY 4.0. Please refer to the `LICENSE` file in the repository for complete licensing information. 143 - 144 - ## Related Services 145 - 146 - This project integrates with several AT Protocol and web services: 147 - 148 - - **[WhiteWind](https://whtwnd.com/)**: AT Protocol powered markdown blog service 149 - - **[Bluesky](https://bsky.app/)**: Social platform for content sharing and discovery 150 - - **[Linkat](https://linkat.blue/)**: Link aggregation service using AT Protocol 151 - - **[Last.fm](https://last.fm/)**: Music tracking service for displaying recent tracks
-11
compose.yaml
··· 1 - services: 2 - whitebreeze: 3 - container_name: whitebreeze 4 - pull_policy: build 5 - build: 6 - context: ./ 7 - dockerfile: Dockerfile 8 - restart: unless-stopped 9 - env_file: ./.env 10 - ports: 11 - - 3003:3000 # host:container
-30
eslint.config.js
··· 1 - import js from '@eslint/js'; 2 - import svelte from 'eslint-plugin-svelte'; 3 - import globals from 'globals'; 4 - import ts from 'typescript-eslint'; 5 - 6 - export default ts.config( 7 - js.configs.recommended, 8 - ...ts.configs.recommended, 9 - ...svelte.configs["flat/recommended"], 10 - { 11 - languageOptions: { 12 - globals: { 13 - ...globals.browser, 14 - ...globals.node 15 - } 16 - } 17 - }, 18 - { 19 - files: ["**/*.svelte"], 20 - 21 - languageOptions: { 22 - parserOptions: { 23 - parser: ts.parser 24 - } 25 - } 26 - }, 27 - { 28 - ignores: ["build/", ".svelte-kit/", "dist/"] 29 - } 30 - );
+2385 -7842
package-lock.json
··· 1 1 { 2 - "name": "website", 3 - "version": "0.0.1", 4 - "lockfileVersion": 3, 5 - "requires": true, 6 - "packages": { 7 - "": { 8 - "name": "website", 9 - "version": "0.0.1", 10 - "dependencies": { 11 - "postcss-import": "^16.1.1", 12 - "rehype-autolink-headings": "^7.1.0", 13 - "rehype-highlight": "^7.0.2", 14 - "rehype-katex": "^7.0.1", 15 - "rehype-raw": "^7.0.0", 16 - "rehype-sanitize": "^6.0.0", 17 - "rehype-slug": "^6.0.0", 18 - "rehype-stringify": "^10.0.1", 19 - "remark": "^15.0.1", 20 - "remark-breaks": "^4.0.0", 21 - "remark-emoji": "^5.0.2", 22 - "remark-gfm": "^4.0.1", 23 - "remark-math": "^6.0.0", 24 - "remark-rehype": "^11.1.2", 25 - "sanitize-html": "^2.17.0", 26 - "unified": "^11.0.5" 27 - }, 28 - "devDependencies": { 29 - "@sveltejs/adapter-auto": "^6.1.1", 30 - "@sveltejs/adapter-vercel": "^5.10.3", 31 - "@sveltejs/kit": "^2.46.4", 32 - "@sveltejs/vite-plugin-svelte": "^6.2.1", 33 - "@tailwindcss/forms": "^0.5.10", 34 - "@tailwindcss/nesting": "^0.0.0-insiders.565cd3e", 35 - "@tailwindcss/typography": "^0.5.19", 36 - "@types/node": "^24.7.2", 37 - "@types/sanitize-html": "^2.16.0", 38 - "autoprefixer": "^10.4.21", 39 - "cssnano": "^7.1.1", 40 - "eslint": "^9.37.0", 41 - "eslint-plugin-svelte": "^3.12.4", 42 - "globals": "^16.4.0", 43 - "postcss": "^8.5.6", 44 - "svelte": "^5.39.11", 45 - "svelte-check": "^4.3.3", 46 - "tailwindcss": "^3.4.18", 47 - "typescript": "^5.9.3", 48 - "typescript-eslint": "^8.46.0", 49 - "vite": "^7.1.9" 50 - } 51 - }, 52 - "node_modules/@alloc/quick-lru": { 53 - "version": "5.2.0", 54 - "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 55 - "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 56 - "dev": true, 57 - "license": "MIT", 58 - "engines": { 59 - "node": ">=10" 60 - }, 61 - "funding": { 62 - "url": "https://github.com/sponsors/sindresorhus" 63 - } 64 - }, 65 - "node_modules/@esbuild/aix-ppc64": { 66 - "version": "0.25.10", 67 - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz", 68 - "integrity": "sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==", 69 - "cpu": [ 70 - "ppc64" 71 - ], 72 - "dev": true, 73 - "license": "MIT", 74 - "optional": true, 75 - "os": [ 76 - "aix" 77 - ], 78 - "engines": { 79 - "node": ">=18" 80 - } 81 - }, 82 - "node_modules/@esbuild/android-arm": { 83 - "version": "0.25.10", 84 - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.10.tgz", 85 - "integrity": "sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==", 86 - "cpu": [ 87 - "arm" 88 - ], 89 - "dev": true, 90 - "license": "MIT", 91 - "optional": true, 92 - "os": [ 93 - "android" 94 - ], 95 - "engines": { 96 - "node": ">=18" 97 - } 98 - }, 99 - "node_modules/@esbuild/android-arm64": { 100 - "version": "0.25.10", 101 - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz", 102 - "integrity": "sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==", 103 - "cpu": [ 104 - "arm64" 105 - ], 106 - "dev": true, 107 - "license": "MIT", 108 - "optional": true, 109 - "os": [ 110 - "android" 111 - ], 112 - "engines": { 113 - "node": ">=18" 114 - } 115 - }, 116 - "node_modules/@esbuild/android-x64": { 117 - "version": "0.25.10", 118 - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.10.tgz", 119 - "integrity": "sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==", 120 - "cpu": [ 121 - "x64" 122 - ], 123 - "dev": true, 124 - "license": "MIT", 125 - "optional": true, 126 - "os": [ 127 - "android" 128 - ], 129 - "engines": { 130 - "node": ">=18" 131 - } 132 - }, 133 - "node_modules/@esbuild/darwin-arm64": { 134 - "version": "0.25.10", 135 - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz", 136 - "integrity": "sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==", 137 - "cpu": [ 138 - "arm64" 139 - ], 140 - "dev": true, 141 - "license": "MIT", 142 - "optional": true, 143 - "os": [ 144 - "darwin" 145 - ], 146 - "engines": { 147 - "node": ">=18" 148 - } 149 - }, 150 - "node_modules/@esbuild/darwin-x64": { 151 - "version": "0.25.10", 152 - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz", 153 - "integrity": "sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==", 154 - "cpu": [ 155 - "x64" 156 - ], 157 - "dev": true, 158 - "license": "MIT", 159 - "optional": true, 160 - "os": [ 161 - "darwin" 162 - ], 163 - "engines": { 164 - "node": ">=18" 165 - } 166 - }, 167 - "node_modules/@esbuild/freebsd-arm64": { 168 - "version": "0.25.10", 169 - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz", 170 - "integrity": "sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==", 171 - "cpu": [ 172 - "arm64" 173 - ], 174 - "dev": true, 175 - "license": "MIT", 176 - "optional": true, 177 - "os": [ 178 - "freebsd" 179 - ], 180 - "engines": { 181 - "node": ">=18" 182 - } 183 - }, 184 - "node_modules/@esbuild/freebsd-x64": { 185 - "version": "0.25.10", 186 - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz", 187 - "integrity": "sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==", 188 - "cpu": [ 189 - "x64" 190 - ], 191 - "dev": true, 192 - "license": "MIT", 193 - "optional": true, 194 - "os": [ 195 - "freebsd" 196 - ], 197 - "engines": { 198 - "node": ">=18" 199 - } 200 - }, 201 - "node_modules/@esbuild/linux-arm": { 202 - "version": "0.25.10", 203 - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz", 204 - "integrity": "sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==", 205 - "cpu": [ 206 - "arm" 207 - ], 208 - "dev": true, 209 - "license": "MIT", 210 - "optional": true, 211 - "os": [ 212 - "linux" 213 - ], 214 - "engines": { 215 - "node": ">=18" 216 - } 217 - }, 218 - "node_modules/@esbuild/linux-arm64": { 219 - "version": "0.25.10", 220 - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz", 221 - "integrity": "sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==", 222 - "cpu": [ 223 - "arm64" 224 - ], 225 - "dev": true, 226 - "license": "MIT", 227 - "optional": true, 228 - "os": [ 229 - "linux" 230 - ], 231 - "engines": { 232 - "node": ">=18" 233 - } 234 - }, 235 - "node_modules/@esbuild/linux-ia32": { 236 - "version": "0.25.10", 237 - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz", 238 - "integrity": "sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==", 239 - "cpu": [ 240 - "ia32" 241 - ], 242 - "dev": true, 243 - "license": "MIT", 244 - "optional": true, 245 - "os": [ 246 - "linux" 247 - ], 248 - "engines": { 249 - "node": ">=18" 250 - } 251 - }, 252 - "node_modules/@esbuild/linux-loong64": { 253 - "version": "0.25.10", 254 - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz", 255 - "integrity": "sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==", 256 - "cpu": [ 257 - "loong64" 258 - ], 259 - "dev": true, 260 - "license": "MIT", 261 - "optional": true, 262 - "os": [ 263 - "linux" 264 - ], 265 - "engines": { 266 - "node": ">=18" 267 - } 268 - }, 269 - "node_modules/@esbuild/linux-mips64el": { 270 - "version": "0.25.10", 271 - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz", 272 - "integrity": "sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==", 273 - "cpu": [ 274 - "mips64el" 275 - ], 276 - "dev": true, 277 - "license": "MIT", 278 - "optional": true, 279 - "os": [ 280 - "linux" 281 - ], 282 - "engines": { 283 - "node": ">=18" 284 - } 285 - }, 286 - "node_modules/@esbuild/linux-ppc64": { 287 - "version": "0.25.10", 288 - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz", 289 - "integrity": "sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==", 290 - "cpu": [ 291 - "ppc64" 292 - ], 293 - "dev": true, 294 - "license": "MIT", 295 - "optional": true, 296 - "os": [ 297 - "linux" 298 - ], 299 - "engines": { 300 - "node": ">=18" 301 - } 302 - }, 303 - "node_modules/@esbuild/linux-riscv64": { 304 - "version": "0.25.10", 305 - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz", 306 - "integrity": "sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==", 307 - "cpu": [ 308 - "riscv64" 309 - ], 310 - "dev": true, 311 - "license": "MIT", 312 - "optional": true, 313 - "os": [ 314 - "linux" 315 - ], 316 - "engines": { 317 - "node": ">=18" 318 - } 319 - }, 320 - "node_modules/@esbuild/linux-s390x": { 321 - "version": "0.25.10", 322 - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz", 323 - "integrity": "sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==", 324 - "cpu": [ 325 - "s390x" 326 - ], 327 - "dev": true, 328 - "license": "MIT", 329 - "optional": true, 330 - "os": [ 331 - "linux" 332 - ], 333 - "engines": { 334 - "node": ">=18" 335 - } 336 - }, 337 - "node_modules/@esbuild/linux-x64": { 338 - "version": "0.25.10", 339 - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz", 340 - "integrity": "sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==", 341 - "cpu": [ 342 - "x64" 343 - ], 344 - "dev": true, 345 - "license": "MIT", 346 - "optional": true, 347 - "os": [ 348 - "linux" 349 - ], 350 - "engines": { 351 - "node": ">=18" 352 - } 353 - }, 354 - "node_modules/@esbuild/netbsd-arm64": { 355 - "version": "0.25.10", 356 - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz", 357 - "integrity": "sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==", 358 - "cpu": [ 359 - "arm64" 360 - ], 361 - "dev": true, 362 - "license": "MIT", 363 - "optional": true, 364 - "os": [ 365 - "netbsd" 366 - ], 367 - "engines": { 368 - "node": ">=18" 369 - } 370 - }, 371 - "node_modules/@esbuild/netbsd-x64": { 372 - "version": "0.25.10", 373 - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz", 374 - "integrity": "sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==", 375 - "cpu": [ 376 - "x64" 377 - ], 378 - "dev": true, 379 - "license": "MIT", 380 - "optional": true, 381 - "os": [ 382 - "netbsd" 383 - ], 384 - "engines": { 385 - "node": ">=18" 386 - } 387 - }, 388 - "node_modules/@esbuild/openbsd-arm64": { 389 - "version": "0.25.10", 390 - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz", 391 - "integrity": "sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==", 392 - "cpu": [ 393 - "arm64" 394 - ], 395 - "dev": true, 396 - "license": "MIT", 397 - "optional": true, 398 - "os": [ 399 - "openbsd" 400 - ], 401 - "engines": { 402 - "node": ">=18" 403 - } 404 - }, 405 - "node_modules/@esbuild/openbsd-x64": { 406 - "version": "0.25.10", 407 - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz", 408 - "integrity": "sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==", 409 - "cpu": [ 410 - "x64" 411 - ], 412 - "dev": true, 413 - "license": "MIT", 414 - "optional": true, 415 - "os": [ 416 - "openbsd" 417 - ], 418 - "engines": { 419 - "node": ">=18" 420 - } 421 - }, 422 - "node_modules/@esbuild/openharmony-arm64": { 423 - "version": "0.25.10", 424 - "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz", 425 - "integrity": "sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==", 426 - "cpu": [ 427 - "arm64" 428 - ], 429 - "dev": true, 430 - "license": "MIT", 431 - "optional": true, 432 - "os": [ 433 - "openharmony" 434 - ], 435 - "engines": { 436 - "node": ">=18" 437 - } 438 - }, 439 - "node_modules/@esbuild/sunos-x64": { 440 - "version": "0.25.10", 441 - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz", 442 - "integrity": "sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==", 443 - "cpu": [ 444 - "x64" 445 - ], 446 - "dev": true, 447 - "license": "MIT", 448 - "optional": true, 449 - "os": [ 450 - "sunos" 451 - ], 452 - "engines": { 453 - "node": ">=18" 454 - } 455 - }, 456 - "node_modules/@esbuild/win32-arm64": { 457 - "version": "0.25.10", 458 - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz", 459 - "integrity": "sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==", 460 - "cpu": [ 461 - "arm64" 462 - ], 463 - "dev": true, 464 - "license": "MIT", 465 - "optional": true, 466 - "os": [ 467 - "win32" 468 - ], 469 - "engines": { 470 - "node": ">=18" 471 - } 472 - }, 473 - "node_modules/@esbuild/win32-ia32": { 474 - "version": "0.25.10", 475 - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz", 476 - "integrity": "sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==", 477 - "cpu": [ 478 - "ia32" 479 - ], 480 - "dev": true, 481 - "license": "MIT", 482 - "optional": true, 483 - "os": [ 484 - "win32" 485 - ], 486 - "engines": { 487 - "node": ">=18" 488 - } 489 - }, 490 - "node_modules/@esbuild/win32-x64": { 491 - "version": "0.25.10", 492 - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz", 493 - "integrity": "sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==", 494 - "cpu": [ 495 - "x64" 496 - ], 497 - "dev": true, 498 - "license": "MIT", 499 - "optional": true, 500 - "os": [ 501 - "win32" 502 - ], 503 - "engines": { 504 - "node": ">=18" 505 - } 506 - }, 507 - "node_modules/@eslint-community/eslint-utils": { 508 - "version": "4.9.0", 509 - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", 510 - "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", 511 - "dev": true, 512 - "license": "MIT", 513 - "dependencies": { 514 - "eslint-visitor-keys": "^3.4.3" 515 - }, 516 - "engines": { 517 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 518 - }, 519 - "funding": { 520 - "url": "https://opencollective.com/eslint" 521 - }, 522 - "peerDependencies": { 523 - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 524 - } 525 - }, 526 - "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { 527 - "version": "3.4.3", 528 - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 529 - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 530 - "dev": true, 531 - "license": "Apache-2.0", 532 - "engines": { 533 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 534 - }, 535 - "funding": { 536 - "url": "https://opencollective.com/eslint" 537 - } 538 - }, 539 - "node_modules/@eslint-community/regexpp": { 540 - "version": "4.12.1", 541 - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 542 - "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 543 - "dev": true, 544 - "license": "MIT", 545 - "engines": { 546 - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 547 - } 548 - }, 549 - "node_modules/@eslint/config-array": { 550 - "version": "0.21.0", 551 - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz", 552 - "integrity": "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==", 553 - "dev": true, 554 - "license": "Apache-2.0", 555 - "dependencies": { 556 - "@eslint/object-schema": "^2.1.6", 557 - "debug": "^4.3.1", 558 - "minimatch": "^3.1.2" 559 - }, 560 - "engines": { 561 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 562 - } 563 - }, 564 - "node_modules/@eslint/config-helpers": { 565 - "version": "0.4.0", 566 - "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.0.tgz", 567 - "integrity": "sha512-WUFvV4WoIwW8Bv0KeKCIIEgdSiFOsulyN0xrMu+7z43q/hkOLXjvb5u7UC9jDxvRzcrbEmuZBX5yJZz1741jog==", 568 - "dev": true, 569 - "license": "Apache-2.0", 570 - "dependencies": { 571 - "@eslint/core": "^0.16.0" 572 - }, 573 - "engines": { 574 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 575 - } 576 - }, 577 - "node_modules/@eslint/core": { 578 - "version": "0.16.0", 579 - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.16.0.tgz", 580 - "integrity": "sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==", 581 - "dev": true, 582 - "license": "Apache-2.0", 583 - "dependencies": { 584 - "@types/json-schema": "^7.0.15" 585 - }, 586 - "engines": { 587 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 588 - } 589 - }, 590 - "node_modules/@eslint/eslintrc": { 591 - "version": "3.3.1", 592 - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", 593 - "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", 594 - "dev": true, 595 - "license": "MIT", 596 - "dependencies": { 597 - "ajv": "^6.12.4", 598 - "debug": "^4.3.2", 599 - "espree": "^10.0.1", 600 - "globals": "^14.0.0", 601 - "ignore": "^5.2.0", 602 - "import-fresh": "^3.2.1", 603 - "js-yaml": "^4.1.0", 604 - "minimatch": "^3.1.2", 605 - "strip-json-comments": "^3.1.1" 606 - }, 607 - "engines": { 608 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 609 - }, 610 - "funding": { 611 - "url": "https://opencollective.com/eslint" 612 - } 613 - }, 614 - "node_modules/@eslint/eslintrc/node_modules/globals": { 615 - "version": "14.0.0", 616 - "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 617 - "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 618 - "dev": true, 619 - "license": "MIT", 620 - "engines": { 621 - "node": ">=18" 622 - }, 623 - "funding": { 624 - "url": "https://github.com/sponsors/sindresorhus" 625 - } 626 - }, 627 - "node_modules/@eslint/js": { 628 - "version": "9.37.0", 629 - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.37.0.tgz", 630 - "integrity": "sha512-jaS+NJ+hximswBG6pjNX0uEJZkrT0zwpVi3BA3vX22aFGjJjmgSTSmPpZCRKmoBL5VY/M6p0xsSJx7rk7sy5gg==", 631 - "dev": true, 632 - "license": "MIT", 633 - "engines": { 634 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 635 - }, 636 - "funding": { 637 - "url": "https://eslint.org/donate" 638 - } 639 - }, 640 - "node_modules/@eslint/object-schema": { 641 - "version": "2.1.6", 642 - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", 643 - "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", 644 - "dev": true, 645 - "license": "Apache-2.0", 646 - "engines": { 647 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 648 - } 649 - }, 650 - "node_modules/@eslint/plugin-kit": { 651 - "version": "0.4.0", 652 - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.0.tgz", 653 - "integrity": "sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==", 654 - "dev": true, 655 - "license": "Apache-2.0", 656 - "dependencies": { 657 - "@eslint/core": "^0.16.0", 658 - "levn": "^0.4.1" 659 - }, 660 - "engines": { 661 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 662 - } 663 - }, 664 - "node_modules/@humanfs/core": { 665 - "version": "0.19.1", 666 - "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", 667 - "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", 668 - "dev": true, 669 - "license": "Apache-2.0", 670 - "engines": { 671 - "node": ">=18.18.0" 672 - } 673 - }, 674 - "node_modules/@humanfs/node": { 675 - "version": "0.16.7", 676 - "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", 677 - "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", 678 - "dev": true, 679 - "license": "Apache-2.0", 680 - "dependencies": { 681 - "@humanfs/core": "^0.19.1", 682 - "@humanwhocodes/retry": "^0.4.0" 683 - }, 684 - "engines": { 685 - "node": ">=18.18.0" 686 - } 687 - }, 688 - "node_modules/@humanwhocodes/module-importer": { 689 - "version": "1.0.1", 690 - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 691 - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 692 - "dev": true, 693 - "license": "Apache-2.0", 694 - "engines": { 695 - "node": ">=12.22" 696 - }, 697 - "funding": { 698 - "type": "github", 699 - "url": "https://github.com/sponsors/nzakas" 700 - } 701 - }, 702 - "node_modules/@humanwhocodes/retry": { 703 - "version": "0.4.3", 704 - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", 705 - "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", 706 - "dev": true, 707 - "license": "Apache-2.0", 708 - "engines": { 709 - "node": ">=18.18" 710 - }, 711 - "funding": { 712 - "type": "github", 713 - "url": "https://github.com/sponsors/nzakas" 714 - } 715 - }, 716 - "node_modules/@isaacs/cliui": { 717 - "version": "8.0.2", 718 - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 719 - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 720 - "dev": true, 721 - "license": "ISC", 722 - "dependencies": { 723 - "string-width": "^5.1.2", 724 - "string-width-cjs": "npm:string-width@^4.2.0", 725 - "strip-ansi": "^7.0.1", 726 - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 727 - "wrap-ansi": "^8.1.0", 728 - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 729 - }, 730 - "engines": { 731 - "node": ">=12" 732 - } 733 - }, 734 - "node_modules/@isaacs/fs-minipass": { 735 - "version": "4.0.1", 736 - "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", 737 - "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", 738 - "dev": true, 739 - "license": "ISC", 740 - "dependencies": { 741 - "minipass": "^7.0.4" 742 - }, 743 - "engines": { 744 - "node": ">=18.0.0" 745 - } 746 - }, 747 - "node_modules/@jridgewell/gen-mapping": { 748 - "version": "0.3.13", 749 - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", 750 - "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", 751 - "dev": true, 752 - "license": "MIT", 753 - "dependencies": { 754 - "@jridgewell/sourcemap-codec": "^1.5.0", 755 - "@jridgewell/trace-mapping": "^0.3.24" 756 - } 757 - }, 758 - "node_modules/@jridgewell/remapping": { 759 - "version": "2.3.5", 760 - "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", 761 - "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", 762 - "dev": true, 763 - "license": "MIT", 764 - "dependencies": { 765 - "@jridgewell/gen-mapping": "^0.3.5", 766 - "@jridgewell/trace-mapping": "^0.3.24" 767 - } 768 - }, 769 - "node_modules/@jridgewell/resolve-uri": { 770 - "version": "3.1.2", 771 - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 772 - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 773 - "dev": true, 774 - "license": "MIT", 775 - "engines": { 776 - "node": ">=6.0.0" 777 - } 778 - }, 779 - "node_modules/@jridgewell/sourcemap-codec": { 780 - "version": "1.5.5", 781 - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", 782 - "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", 783 - "dev": true, 784 - "license": "MIT" 785 - }, 786 - "node_modules/@jridgewell/trace-mapping": { 787 - "version": "0.3.31", 788 - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", 789 - "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", 790 - "dev": true, 791 - "license": "MIT", 792 - "dependencies": { 793 - "@jridgewell/resolve-uri": "^3.1.0", 794 - "@jridgewell/sourcemap-codec": "^1.4.14" 795 - } 796 - }, 797 - "node_modules/@mapbox/node-pre-gyp": { 798 - "version": "2.0.0", 799 - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-2.0.0.tgz", 800 - "integrity": "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==", 801 - "dev": true, 802 - "license": "BSD-3-Clause", 803 - "dependencies": { 804 - "consola": "^3.2.3", 805 - "detect-libc": "^2.0.0", 806 - "https-proxy-agent": "^7.0.5", 807 - "node-fetch": "^2.6.7", 808 - "nopt": "^8.0.0", 809 - "semver": "^7.5.3", 810 - "tar": "^7.4.0" 811 - }, 812 - "bin": { 813 - "node-pre-gyp": "bin/node-pre-gyp" 814 - }, 815 - "engines": { 816 - "node": ">=18" 817 - } 818 - }, 819 - "node_modules/@nodelib/fs.scandir": { 820 - "version": "2.1.5", 821 - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 822 - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 823 - "dev": true, 824 - "license": "MIT", 825 - "dependencies": { 826 - "@nodelib/fs.stat": "2.0.5", 827 - "run-parallel": "^1.1.9" 828 - }, 829 - "engines": { 830 - "node": ">= 8" 831 - } 832 - }, 833 - "node_modules/@nodelib/fs.stat": { 834 - "version": "2.0.5", 835 - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 836 - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 837 - "dev": true, 838 - "license": "MIT", 839 - "engines": { 840 - "node": ">= 8" 841 - } 842 - }, 843 - "node_modules/@nodelib/fs.walk": { 844 - "version": "1.2.8", 845 - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 846 - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 847 - "dev": true, 848 - "license": "MIT", 849 - "dependencies": { 850 - "@nodelib/fs.scandir": "2.1.5", 851 - "fastq": "^1.6.0" 852 - }, 853 - "engines": { 854 - "node": ">= 8" 855 - } 856 - }, 857 - "node_modules/@pkgjs/parseargs": { 858 - "version": "0.11.0", 859 - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 860 - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 861 - "dev": true, 862 - "license": "MIT", 863 - "optional": true, 864 - "engines": { 865 - "node": ">=14" 866 - } 867 - }, 868 - "node_modules/@polka/url": { 869 - "version": "1.0.0-next.29", 870 - "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz", 871 - "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==", 872 - "dev": true, 873 - "license": "MIT" 874 - }, 875 - "node_modules/@rollup/pluginutils": { 876 - "version": "5.3.0", 877 - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", 878 - "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", 879 - "dev": true, 880 - "license": "MIT", 881 - "dependencies": { 882 - "@types/estree": "^1.0.0", 883 - "estree-walker": "^2.0.2", 884 - "picomatch": "^4.0.2" 885 - }, 886 - "engines": { 887 - "node": ">=14.0.0" 888 - }, 889 - "peerDependencies": { 890 - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 891 - }, 892 - "peerDependenciesMeta": { 893 - "rollup": { 894 - "optional": true 895 - } 896 - } 897 - }, 898 - "node_modules/@rollup/rollup-android-arm-eabi": { 899 - "version": "4.52.4", 900 - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.4.tgz", 901 - "integrity": "sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==", 902 - "cpu": [ 903 - "arm" 904 - ], 905 - "dev": true, 906 - "license": "MIT", 907 - "optional": true, 908 - "os": [ 909 - "android" 910 - ] 911 - }, 912 - "node_modules/@rollup/rollup-android-arm64": { 913 - "version": "4.52.4", 914 - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.4.tgz", 915 - "integrity": "sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==", 916 - "cpu": [ 917 - "arm64" 918 - ], 919 - "dev": true, 920 - "license": "MIT", 921 - "optional": true, 922 - "os": [ 923 - "android" 924 - ] 925 - }, 926 - "node_modules/@rollup/rollup-darwin-arm64": { 927 - "version": "4.52.4", 928 - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.4.tgz", 929 - "integrity": "sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==", 930 - "cpu": [ 931 - "arm64" 932 - ], 933 - "dev": true, 934 - "license": "MIT", 935 - "optional": true, 936 - "os": [ 937 - "darwin" 938 - ] 939 - }, 940 - "node_modules/@rollup/rollup-darwin-x64": { 941 - "version": "4.52.4", 942 - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.4.tgz", 943 - "integrity": "sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==", 944 - "cpu": [ 945 - "x64" 946 - ], 947 - "dev": true, 948 - "license": "MIT", 949 - "optional": true, 950 - "os": [ 951 - "darwin" 952 - ] 953 - }, 954 - "node_modules/@rollup/rollup-freebsd-arm64": { 955 - "version": "4.52.4", 956 - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.4.tgz", 957 - "integrity": "sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==", 958 - "cpu": [ 959 - "arm64" 960 - ], 961 - "dev": true, 962 - "license": "MIT", 963 - "optional": true, 964 - "os": [ 965 - "freebsd" 966 - ] 967 - }, 968 - "node_modules/@rollup/rollup-freebsd-x64": { 969 - "version": "4.52.4", 970 - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.4.tgz", 971 - "integrity": "sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==", 972 - "cpu": [ 973 - "x64" 974 - ], 975 - "dev": true, 976 - "license": "MIT", 977 - "optional": true, 978 - "os": [ 979 - "freebsd" 980 - ] 981 - }, 982 - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 983 - "version": "4.52.4", 984 - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.4.tgz", 985 - "integrity": "sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==", 986 - "cpu": [ 987 - "arm" 988 - ], 989 - "dev": true, 990 - "license": "MIT", 991 - "optional": true, 992 - "os": [ 993 - "linux" 994 - ] 995 - }, 996 - "node_modules/@rollup/rollup-linux-arm-musleabihf": { 997 - "version": "4.52.4", 998 - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.4.tgz", 999 - "integrity": "sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==", 1000 - "cpu": [ 1001 - "arm" 1002 - ], 1003 - "dev": true, 1004 - "license": "MIT", 1005 - "optional": true, 1006 - "os": [ 1007 - "linux" 1008 - ] 1009 - }, 1010 - "node_modules/@rollup/rollup-linux-arm64-gnu": { 1011 - "version": "4.52.4", 1012 - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.4.tgz", 1013 - "integrity": "sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==", 1014 - "cpu": [ 1015 - "arm64" 1016 - ], 1017 - "dev": true, 1018 - "license": "MIT", 1019 - "optional": true, 1020 - "os": [ 1021 - "linux" 1022 - ] 1023 - }, 1024 - "node_modules/@rollup/rollup-linux-arm64-musl": { 1025 - "version": "4.52.4", 1026 - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.4.tgz", 1027 - "integrity": "sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==", 1028 - "cpu": [ 1029 - "arm64" 1030 - ], 1031 - "dev": true, 1032 - "license": "MIT", 1033 - "optional": true, 1034 - "os": [ 1035 - "linux" 1036 - ] 1037 - }, 1038 - "node_modules/@rollup/rollup-linux-loong64-gnu": { 1039 - "version": "4.52.4", 1040 - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.4.tgz", 1041 - "integrity": "sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==", 1042 - "cpu": [ 1043 - "loong64" 1044 - ], 1045 - "dev": true, 1046 - "license": "MIT", 1047 - "optional": true, 1048 - "os": [ 1049 - "linux" 1050 - ] 1051 - }, 1052 - "node_modules/@rollup/rollup-linux-ppc64-gnu": { 1053 - "version": "4.52.4", 1054 - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.4.tgz", 1055 - "integrity": "sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==", 1056 - "cpu": [ 1057 - "ppc64" 1058 - ], 1059 - "dev": true, 1060 - "license": "MIT", 1061 - "optional": true, 1062 - "os": [ 1063 - "linux" 1064 - ] 1065 - }, 1066 - "node_modules/@rollup/rollup-linux-riscv64-gnu": { 1067 - "version": "4.52.4", 1068 - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.4.tgz", 1069 - "integrity": "sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==", 1070 - "cpu": [ 1071 - "riscv64" 1072 - ], 1073 - "dev": true, 1074 - "license": "MIT", 1075 - "optional": true, 1076 - "os": [ 1077 - "linux" 1078 - ] 1079 - }, 1080 - "node_modules/@rollup/rollup-linux-riscv64-musl": { 1081 - "version": "4.52.4", 1082 - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.4.tgz", 1083 - "integrity": "sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==", 1084 - "cpu": [ 1085 - "riscv64" 1086 - ], 1087 - "dev": true, 1088 - "license": "MIT", 1089 - "optional": true, 1090 - "os": [ 1091 - "linux" 1092 - ] 1093 - }, 1094 - "node_modules/@rollup/rollup-linux-s390x-gnu": { 1095 - "version": "4.52.4", 1096 - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.4.tgz", 1097 - "integrity": "sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==", 1098 - "cpu": [ 1099 - "s390x" 1100 - ], 1101 - "dev": true, 1102 - "license": "MIT", 1103 - "optional": true, 1104 - "os": [ 1105 - "linux" 1106 - ] 1107 - }, 1108 - "node_modules/@rollup/rollup-linux-x64-gnu": { 1109 - "version": "4.52.4", 1110 - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.4.tgz", 1111 - "integrity": "sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==", 1112 - "cpu": [ 1113 - "x64" 1114 - ], 1115 - "dev": true, 1116 - "license": "MIT", 1117 - "optional": true, 1118 - "os": [ 1119 - "linux" 1120 - ] 1121 - }, 1122 - "node_modules/@rollup/rollup-linux-x64-musl": { 1123 - "version": "4.52.4", 1124 - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.4.tgz", 1125 - "integrity": "sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==", 1126 - "cpu": [ 1127 - "x64" 1128 - ], 1129 - "dev": true, 1130 - "license": "MIT", 1131 - "optional": true, 1132 - "os": [ 1133 - "linux" 1134 - ] 1135 - }, 1136 - "node_modules/@rollup/rollup-openharmony-arm64": { 1137 - "version": "4.52.4", 1138 - "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.4.tgz", 1139 - "integrity": "sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==", 1140 - "cpu": [ 1141 - "arm64" 1142 - ], 1143 - "dev": true, 1144 - "license": "MIT", 1145 - "optional": true, 1146 - "os": [ 1147 - "openharmony" 1148 - ] 1149 - }, 1150 - "node_modules/@rollup/rollup-win32-arm64-msvc": { 1151 - "version": "4.52.4", 1152 - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.4.tgz", 1153 - "integrity": "sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==", 1154 - "cpu": [ 1155 - "arm64" 1156 - ], 1157 - "dev": true, 1158 - "license": "MIT", 1159 - "optional": true, 1160 - "os": [ 1161 - "win32" 1162 - ] 1163 - }, 1164 - "node_modules/@rollup/rollup-win32-ia32-msvc": { 1165 - "version": "4.52.4", 1166 - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.4.tgz", 1167 - "integrity": "sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==", 1168 - "cpu": [ 1169 - "ia32" 1170 - ], 1171 - "dev": true, 1172 - "license": "MIT", 1173 - "optional": true, 1174 - "os": [ 1175 - "win32" 1176 - ] 1177 - }, 1178 - "node_modules/@rollup/rollup-win32-x64-gnu": { 1179 - "version": "4.52.4", 1180 - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.4.tgz", 1181 - "integrity": "sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==", 1182 - "cpu": [ 1183 - "x64" 1184 - ], 1185 - "dev": true, 1186 - "license": "MIT", 1187 - "optional": true, 1188 - "os": [ 1189 - "win32" 1190 - ] 1191 - }, 1192 - "node_modules/@rollup/rollup-win32-x64-msvc": { 1193 - "version": "4.52.4", 1194 - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.4.tgz", 1195 - "integrity": "sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==", 1196 - "cpu": [ 1197 - "x64" 1198 - ], 1199 - "dev": true, 1200 - "license": "MIT", 1201 - "optional": true, 1202 - "os": [ 1203 - "win32" 1204 - ] 1205 - }, 1206 - "node_modules/@sindresorhus/is": { 1207 - "version": "4.6.0", 1208 - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", 1209 - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", 1210 - "license": "MIT", 1211 - "engines": { 1212 - "node": ">=10" 1213 - }, 1214 - "funding": { 1215 - "url": "https://github.com/sindresorhus/is?sponsor=1" 1216 - } 1217 - }, 1218 - "node_modules/@standard-schema/spec": { 1219 - "version": "1.0.0", 1220 - "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.0.0.tgz", 1221 - "integrity": "sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==", 1222 - "dev": true, 1223 - "license": "MIT" 1224 - }, 1225 - "node_modules/@sveltejs/acorn-typescript": { 1226 - "version": "1.0.6", 1227 - "resolved": "https://registry.npmjs.org/@sveltejs/acorn-typescript/-/acorn-typescript-1.0.6.tgz", 1228 - "integrity": "sha512-4awhxtMh4cx9blePWl10HRHj8Iivtqj+2QdDCSMDzxG+XKa9+VCNupQuCuvzEhYPzZSrX+0gC+0lHA/0fFKKQQ==", 1229 - "dev": true, 1230 - "license": "MIT", 1231 - "peerDependencies": { 1232 - "acorn": "^8.9.0" 1233 - } 1234 - }, 1235 - "node_modules/@sveltejs/adapter-auto": { 1236 - "version": "6.1.1", 1237 - "resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-6.1.1.tgz", 1238 - "integrity": "sha512-cBNt4jgH4KuaNO5gRSB2CZKkGtz+OCZ8lPjRQGjhvVUD4akotnj2weUia6imLl2v07K3IgsQRyM36909miSwoQ==", 1239 - "dev": true, 1240 - "license": "MIT", 1241 - "peerDependencies": { 1242 - "@sveltejs/kit": "^2.0.0" 1243 - } 1244 - }, 1245 - "node_modules/@sveltejs/adapter-vercel": { 1246 - "version": "5.10.3", 1247 - "resolved": "https://registry.npmjs.org/@sveltejs/adapter-vercel/-/adapter-vercel-5.10.3.tgz", 1248 - "integrity": "sha512-fW2ZhMiOrUKsJJhiB4ift9sYDSFWgvH3N22cjf8ukOyWgHolb9SmSS3owr+nHQNlgTEAdy4eIr4Fnasw3nkxTw==", 1249 - "dev": true, 1250 - "license": "MIT", 1251 - "dependencies": { 1252 - "@vercel/nft": "^0.30.0", 1253 - "esbuild": "^0.25.4" 1254 - }, 1255 - "peerDependencies": { 1256 - "@sveltejs/kit": "^2.4.0" 1257 - } 1258 - }, 1259 - "node_modules/@sveltejs/kit": { 1260 - "version": "2.46.4", 1261 - "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.46.4.tgz", 1262 - "integrity": "sha512-J1fd80WokLzIm6EAV7z7C2+/C02qVAX645LZomARARTRJkbbJSY1Jln3wtBZYibUB8c9/5Z6xqLAV39VdbtWCQ==", 1263 - "dev": true, 1264 - "license": "MIT", 1265 - "dependencies": { 1266 - "@standard-schema/spec": "^1.0.0", 1267 - "@sveltejs/acorn-typescript": "^1.0.5", 1268 - "@types/cookie": "^0.6.0", 1269 - "acorn": "^8.14.1", 1270 - "cookie": "^0.6.0", 1271 - "devalue": "^5.3.2", 1272 - "esm-env": "^1.2.2", 1273 - "kleur": "^4.1.5", 1274 - "magic-string": "^0.30.5", 1275 - "mrmime": "^2.0.0", 1276 - "sade": "^1.8.1", 1277 - "set-cookie-parser": "^2.6.0", 1278 - "sirv": "^3.0.0" 1279 - }, 1280 - "bin": { 1281 - "svelte-kit": "svelte-kit.js" 1282 - }, 1283 - "engines": { 1284 - "node": ">=18.13" 1285 - }, 1286 - "peerDependencies": { 1287 - "@opentelemetry/api": "^1.0.0", 1288 - "@sveltejs/vite-plugin-svelte": "^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0", 1289 - "svelte": "^4.0.0 || ^5.0.0-next.0", 1290 - "vite": "^5.0.3 || ^6.0.0 || ^7.0.0-beta.0" 1291 - }, 1292 - "peerDependenciesMeta": { 1293 - "@opentelemetry/api": { 1294 - "optional": true 1295 - } 1296 - } 1297 - }, 1298 - "node_modules/@sveltejs/vite-plugin-svelte": { 1299 - "version": "6.2.1", 1300 - "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-6.2.1.tgz", 1301 - "integrity": "sha512-YZs/OSKOQAQCnJvM/P+F1URotNnYNeU3P2s4oIpzm1uFaqUEqRxUB0g5ejMjEb5Gjb9/PiBI5Ktrq4rUUF8UVQ==", 1302 - "dev": true, 1303 - "license": "MIT", 1304 - "dependencies": { 1305 - "@sveltejs/vite-plugin-svelte-inspector": "^5.0.0", 1306 - "debug": "^4.4.1", 1307 - "deepmerge": "^4.3.1", 1308 - "magic-string": "^0.30.17", 1309 - "vitefu": "^1.1.1" 1310 - }, 1311 - "engines": { 1312 - "node": "^20.19 || ^22.12 || >=24" 1313 - }, 1314 - "peerDependencies": { 1315 - "svelte": "^5.0.0", 1316 - "vite": "^6.3.0 || ^7.0.0" 1317 - } 1318 - }, 1319 - "node_modules/@sveltejs/vite-plugin-svelte-inspector": { 1320 - "version": "5.0.1", 1321 - "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-5.0.1.tgz", 1322 - "integrity": "sha512-ubWshlMk4bc8mkwWbg6vNvCeT7lGQojE3ijDh3QTR6Zr/R+GXxsGbyH4PExEPpiFmqPhYiVSVmHBjUcVc1JIrA==", 1323 - "dev": true, 1324 - "license": "MIT", 1325 - "dependencies": { 1326 - "debug": "^4.4.1" 1327 - }, 1328 - "engines": { 1329 - "node": "^20.19 || ^22.12 || >=24" 1330 - }, 1331 - "peerDependencies": { 1332 - "@sveltejs/vite-plugin-svelte": "^6.0.0-next.0", 1333 - "svelte": "^5.0.0", 1334 - "vite": "^6.3.0 || ^7.0.0" 1335 - } 1336 - }, 1337 - "node_modules/@tailwindcss/forms": { 1338 - "version": "0.5.10", 1339 - "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.10.tgz", 1340 - "integrity": "sha512-utI1ONF6uf/pPNO68kmN1b8rEwNXv3czukalo8VtJH8ksIkZXr3Q3VYudZLkCsDd4Wku120uF02hYK25XGPorw==", 1341 - "dev": true, 1342 - "license": "MIT", 1343 - "dependencies": { 1344 - "mini-svg-data-uri": "^1.2.3" 1345 - }, 1346 - "peerDependencies": { 1347 - "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20 || >= 4.0.0-beta.1" 1348 - } 1349 - }, 1350 - "node_modules/@tailwindcss/nesting": { 1351 - "version": "0.0.0-insiders.565cd3e", 1352 - "resolved": "https://registry.npmjs.org/@tailwindcss/nesting/-/nesting-0.0.0-insiders.565cd3e.tgz", 1353 - "integrity": "sha512-WhHoFBx19TnH/c+xLwT/sxei6+4RpdfiyG3MYXfmLaMsADmVqBkF7B6lDalgZD9YdM459MF7DtxVbWkOrV7IaQ==", 1354 - "dev": true, 1355 - "license": "MIT", 1356 - "dependencies": { 1357 - "postcss-nested": "^5.0.5" 1358 - }, 1359 - "peerDependencies": { 1360 - "postcss": "^8.2.15" 1361 - } 1362 - }, 1363 - "node_modules/@tailwindcss/nesting/node_modules/postcss-nested": { 1364 - "version": "5.0.6", 1365 - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz", 1366 - "integrity": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==", 1367 - "dev": true, 1368 - "license": "MIT", 1369 - "dependencies": { 1370 - "postcss-selector-parser": "^6.0.6" 1371 - }, 1372 - "engines": { 1373 - "node": ">=12.0" 1374 - }, 1375 - "funding": { 1376 - "type": "opencollective", 1377 - "url": "https://opencollective.com/postcss/" 1378 - }, 1379 - "peerDependencies": { 1380 - "postcss": "^8.2.14" 1381 - } 1382 - }, 1383 - "node_modules/@tailwindcss/typography": { 1384 - "version": "0.5.19", 1385 - "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.19.tgz", 1386 - "integrity": "sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==", 1387 - "dev": true, 1388 - "license": "MIT", 1389 - "dependencies": { 1390 - "postcss-selector-parser": "6.0.10" 1391 - }, 1392 - "peerDependencies": { 1393 - "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1" 1394 - } 1395 - }, 1396 - "node_modules/@types/cookie": { 1397 - "version": "0.6.0", 1398 - "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz", 1399 - "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==", 1400 - "dev": true, 1401 - "license": "MIT" 1402 - }, 1403 - "node_modules/@types/debug": { 1404 - "version": "4.1.12", 1405 - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", 1406 - "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", 1407 - "license": "MIT", 1408 - "dependencies": { 1409 - "@types/ms": "*" 1410 - } 1411 - }, 1412 - "node_modules/@types/estree": { 1413 - "version": "1.0.8", 1414 - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", 1415 - "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", 1416 - "dev": true, 1417 - "license": "MIT" 1418 - }, 1419 - "node_modules/@types/hast": { 1420 - "version": "3.0.4", 1421 - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", 1422 - "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", 1423 - "license": "MIT", 1424 - "dependencies": { 1425 - "@types/unist": "*" 1426 - } 1427 - }, 1428 - "node_modules/@types/json-schema": { 1429 - "version": "7.0.15", 1430 - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 1431 - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 1432 - "dev": true, 1433 - "license": "MIT" 1434 - }, 1435 - "node_modules/@types/katex": { 1436 - "version": "0.16.7", 1437 - "resolved": "https://registry.npmjs.org/@types/katex/-/katex-0.16.7.tgz", 1438 - "integrity": "sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==", 1439 - "license": "MIT" 1440 - }, 1441 - "node_modules/@types/mdast": { 1442 - "version": "4.0.4", 1443 - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", 1444 - "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", 1445 - "license": "MIT", 1446 - "dependencies": { 1447 - "@types/unist": "*" 1448 - } 1449 - }, 1450 - "node_modules/@types/ms": { 1451 - "version": "2.1.0", 1452 - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", 1453 - "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", 1454 - "license": "MIT" 1455 - }, 1456 - "node_modules/@types/node": { 1457 - "version": "24.7.2", 1458 - "resolved": "https://registry.npmjs.org/@types/node/-/node-24.7.2.tgz", 1459 - "integrity": "sha512-/NbVmcGTP+lj5oa4yiYxxeBjRivKQ5Ns1eSZeB99ExsEQ6rX5XYU1Zy/gGxY/ilqtD4Etx9mKyrPxZRetiahhA==", 1460 - "dev": true, 1461 - "license": "MIT", 1462 - "dependencies": { 1463 - "undici-types": "~7.14.0" 1464 - } 1465 - }, 1466 - "node_modules/@types/sanitize-html": { 1467 - "version": "2.16.0", 1468 - "resolved": "https://registry.npmjs.org/@types/sanitize-html/-/sanitize-html-2.16.0.tgz", 1469 - "integrity": "sha512-l6rX1MUXje5ztPT0cAFtUayXF06DqPhRyfVXareEN5gGCFaP/iwsxIyKODr9XDhfxPpN6vXUFNfo5kZMXCxBtw==", 1470 - "dev": true, 1471 - "license": "MIT", 1472 - "dependencies": { 1473 - "htmlparser2": "^8.0.0" 1474 - } 1475 - }, 1476 - "node_modules/@types/unist": { 1477 - "version": "3.0.3", 1478 - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", 1479 - "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", 1480 - "license": "MIT" 1481 - }, 1482 - "node_modules/@typescript-eslint/eslint-plugin": { 1483 - "version": "8.46.0", 1484 - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.46.0.tgz", 1485 - "integrity": "sha512-hA8gxBq4ukonVXPy0OKhiaUh/68D0E88GSmtC1iAEnGaieuDi38LhS7jdCHRLi6ErJBNDGCzvh5EnzdPwUc0DA==", 1486 - "dev": true, 1487 - "license": "MIT", 1488 - "dependencies": { 1489 - "@eslint-community/regexpp": "^4.10.0", 1490 - "@typescript-eslint/scope-manager": "8.46.0", 1491 - "@typescript-eslint/type-utils": "8.46.0", 1492 - "@typescript-eslint/utils": "8.46.0", 1493 - "@typescript-eslint/visitor-keys": "8.46.0", 1494 - "graphemer": "^1.4.0", 1495 - "ignore": "^7.0.0", 1496 - "natural-compare": "^1.4.0", 1497 - "ts-api-utils": "^2.1.0" 1498 - }, 1499 - "engines": { 1500 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1501 - }, 1502 - "funding": { 1503 - "type": "opencollective", 1504 - "url": "https://opencollective.com/typescript-eslint" 1505 - }, 1506 - "peerDependencies": { 1507 - "@typescript-eslint/parser": "^8.46.0", 1508 - "eslint": "^8.57.0 || ^9.0.0", 1509 - "typescript": ">=4.8.4 <6.0.0" 1510 - } 1511 - }, 1512 - "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { 1513 - "version": "7.0.5", 1514 - "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", 1515 - "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", 1516 - "dev": true, 1517 - "license": "MIT", 1518 - "engines": { 1519 - "node": ">= 4" 1520 - } 1521 - }, 1522 - "node_modules/@typescript-eslint/parser": { 1523 - "version": "8.46.0", 1524 - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.46.0.tgz", 1525 - "integrity": "sha512-n1H6IcDhmmUEG7TNVSspGmiHHutt7iVKtZwRppD7e04wha5MrkV1h3pti9xQLcCMt6YWsncpoT0HMjkH1FNwWQ==", 1526 - "dev": true, 1527 - "license": "MIT", 1528 - "dependencies": { 1529 - "@typescript-eslint/scope-manager": "8.46.0", 1530 - "@typescript-eslint/types": "8.46.0", 1531 - "@typescript-eslint/typescript-estree": "8.46.0", 1532 - "@typescript-eslint/visitor-keys": "8.46.0", 1533 - "debug": "^4.3.4" 1534 - }, 1535 - "engines": { 1536 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1537 - }, 1538 - "funding": { 1539 - "type": "opencollective", 1540 - "url": "https://opencollective.com/typescript-eslint" 1541 - }, 1542 - "peerDependencies": { 1543 - "eslint": "^8.57.0 || ^9.0.0", 1544 - "typescript": ">=4.8.4 <6.0.0" 1545 - } 1546 - }, 1547 - "node_modules/@typescript-eslint/project-service": { 1548 - "version": "8.46.0", 1549 - "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.46.0.tgz", 1550 - "integrity": "sha512-OEhec0mH+U5Je2NZOeK1AbVCdm0ChyapAyTeXVIYTPXDJ3F07+cu87PPXcGoYqZ7M9YJVvFnfpGg1UmCIqM+QQ==", 1551 - "dev": true, 1552 - "license": "MIT", 1553 - "dependencies": { 1554 - "@typescript-eslint/tsconfig-utils": "^8.46.0", 1555 - "@typescript-eslint/types": "^8.46.0", 1556 - "debug": "^4.3.4" 1557 - }, 1558 - "engines": { 1559 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1560 - }, 1561 - "funding": { 1562 - "type": "opencollective", 1563 - "url": "https://opencollective.com/typescript-eslint" 1564 - }, 1565 - "peerDependencies": { 1566 - "typescript": ">=4.8.4 <6.0.0" 1567 - } 1568 - }, 1569 - "node_modules/@typescript-eslint/scope-manager": { 1570 - "version": "8.46.0", 1571 - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.46.0.tgz", 1572 - "integrity": "sha512-lWETPa9XGcBes4jqAMYD9fW0j4n6hrPtTJwWDmtqgFO/4HF4jmdH/Q6wggTw5qIT5TXjKzbt7GsZUBnWoO3dqw==", 1573 - "dev": true, 1574 - "license": "MIT", 1575 - "dependencies": { 1576 - "@typescript-eslint/types": "8.46.0", 1577 - "@typescript-eslint/visitor-keys": "8.46.0" 1578 - }, 1579 - "engines": { 1580 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1581 - }, 1582 - "funding": { 1583 - "type": "opencollective", 1584 - "url": "https://opencollective.com/typescript-eslint" 1585 - } 1586 - }, 1587 - "node_modules/@typescript-eslint/tsconfig-utils": { 1588 - "version": "8.46.0", 1589 - "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.46.0.tgz", 1590 - "integrity": "sha512-WrYXKGAHY836/N7zoK/kzi6p8tXFhasHh8ocFL9VZSAkvH956gfeRfcnhs3xzRy8qQ/dq3q44v1jvQieMFg2cw==", 1591 - "dev": true, 1592 - "license": "MIT", 1593 - "engines": { 1594 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1595 - }, 1596 - "funding": { 1597 - "type": "opencollective", 1598 - "url": "https://opencollective.com/typescript-eslint" 1599 - }, 1600 - "peerDependencies": { 1601 - "typescript": ">=4.8.4 <6.0.0" 1602 - } 1603 - }, 1604 - "node_modules/@typescript-eslint/type-utils": { 1605 - "version": "8.46.0", 1606 - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.46.0.tgz", 1607 - "integrity": "sha512-hy+lvYV1lZpVs2jRaEYvgCblZxUoJiPyCemwbQZ+NGulWkQRy0HRPYAoef/CNSzaLt+MLvMptZsHXHlkEilaeg==", 1608 - "dev": true, 1609 - "license": "MIT", 1610 - "dependencies": { 1611 - "@typescript-eslint/types": "8.46.0", 1612 - "@typescript-eslint/typescript-estree": "8.46.0", 1613 - "@typescript-eslint/utils": "8.46.0", 1614 - "debug": "^4.3.4", 1615 - "ts-api-utils": "^2.1.0" 1616 - }, 1617 - "engines": { 1618 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1619 - }, 1620 - "funding": { 1621 - "type": "opencollective", 1622 - "url": "https://opencollective.com/typescript-eslint" 1623 - }, 1624 - "peerDependencies": { 1625 - "eslint": "^8.57.0 || ^9.0.0", 1626 - "typescript": ">=4.8.4 <6.0.0" 1627 - } 1628 - }, 1629 - "node_modules/@typescript-eslint/types": { 1630 - "version": "8.46.0", 1631 - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.46.0.tgz", 1632 - "integrity": "sha512-bHGGJyVjSE4dJJIO5yyEWt/cHyNwga/zXGJbJJ8TiO01aVREK6gCTu3L+5wrkb1FbDkQ+TKjMNe9R/QQQP9+rA==", 1633 - "dev": true, 1634 - "license": "MIT", 1635 - "engines": { 1636 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1637 - }, 1638 - "funding": { 1639 - "type": "opencollective", 1640 - "url": "https://opencollective.com/typescript-eslint" 1641 - } 1642 - }, 1643 - "node_modules/@typescript-eslint/typescript-estree": { 1644 - "version": "8.46.0", 1645 - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.46.0.tgz", 1646 - "integrity": "sha512-ekDCUfVpAKWJbRfm8T1YRrCot1KFxZn21oV76v5Fj4tr7ELyk84OS+ouvYdcDAwZL89WpEkEj2DKQ+qg//+ucg==", 1647 - "dev": true, 1648 - "license": "MIT", 1649 - "dependencies": { 1650 - "@typescript-eslint/project-service": "8.46.0", 1651 - "@typescript-eslint/tsconfig-utils": "8.46.0", 1652 - "@typescript-eslint/types": "8.46.0", 1653 - "@typescript-eslint/visitor-keys": "8.46.0", 1654 - "debug": "^4.3.4", 1655 - "fast-glob": "^3.3.2", 1656 - "is-glob": "^4.0.3", 1657 - "minimatch": "^9.0.4", 1658 - "semver": "^7.6.0", 1659 - "ts-api-utils": "^2.1.0" 1660 - }, 1661 - "engines": { 1662 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1663 - }, 1664 - "funding": { 1665 - "type": "opencollective", 1666 - "url": "https://opencollective.com/typescript-eslint" 1667 - }, 1668 - "peerDependencies": { 1669 - "typescript": ">=4.8.4 <6.0.0" 1670 - } 1671 - }, 1672 - "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { 1673 - "version": "2.0.2", 1674 - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", 1675 - "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", 1676 - "dev": true, 1677 - "license": "MIT", 1678 - "dependencies": { 1679 - "balanced-match": "^1.0.0" 1680 - } 1681 - }, 1682 - "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { 1683 - "version": "9.0.5", 1684 - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 1685 - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 1686 - "dev": true, 1687 - "license": "ISC", 1688 - "dependencies": { 1689 - "brace-expansion": "^2.0.1" 1690 - }, 1691 - "engines": { 1692 - "node": ">=16 || 14 >=14.17" 1693 - }, 1694 - "funding": { 1695 - "url": "https://github.com/sponsors/isaacs" 1696 - } 1697 - }, 1698 - "node_modules/@typescript-eslint/utils": { 1699 - "version": "8.46.0", 1700 - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.46.0.tgz", 1701 - "integrity": "sha512-nD6yGWPj1xiOm4Gk0k6hLSZz2XkNXhuYmyIrOWcHoPuAhjT9i5bAG+xbWPgFeNR8HPHHtpNKdYUXJl/D3x7f5g==", 1702 - "dev": true, 1703 - "license": "MIT", 1704 - "dependencies": { 1705 - "@eslint-community/eslint-utils": "^4.7.0", 1706 - "@typescript-eslint/scope-manager": "8.46.0", 1707 - "@typescript-eslint/types": "8.46.0", 1708 - "@typescript-eslint/typescript-estree": "8.46.0" 1709 - }, 1710 - "engines": { 1711 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1712 - }, 1713 - "funding": { 1714 - "type": "opencollective", 1715 - "url": "https://opencollective.com/typescript-eslint" 1716 - }, 1717 - "peerDependencies": { 1718 - "eslint": "^8.57.0 || ^9.0.0", 1719 - "typescript": ">=4.8.4 <6.0.0" 1720 - } 1721 - }, 1722 - "node_modules/@typescript-eslint/visitor-keys": { 1723 - "version": "8.46.0", 1724 - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.46.0.tgz", 1725 - "integrity": "sha512-FrvMpAK+hTbFy7vH5j1+tMYHMSKLE6RzluFJlkFNKD0p9YsUT75JlBSmr5so3QRzvMwU5/bIEdeNrxm8du8l3Q==", 1726 - "dev": true, 1727 - "license": "MIT", 1728 - "dependencies": { 1729 - "@typescript-eslint/types": "8.46.0", 1730 - "eslint-visitor-keys": "^4.2.1" 1731 - }, 1732 - "engines": { 1733 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1734 - }, 1735 - "funding": { 1736 - "type": "opencollective", 1737 - "url": "https://opencollective.com/typescript-eslint" 1738 - } 1739 - }, 1740 - "node_modules/@ungap/structured-clone": { 1741 - "version": "1.3.0", 1742 - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", 1743 - "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", 1744 - "license": "ISC" 1745 - }, 1746 - "node_modules/@vercel/nft": { 1747 - "version": "0.30.2", 1748 - "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.30.2.tgz", 1749 - "integrity": "sha512-pquXF3XZFg/T3TBor08rUhIGgOhdSilbn7WQLVP/aVSSO+25Rs4H/m3nxNDQ2x3znX7Z3yYjryN8xaLwypcwQg==", 1750 - "dev": true, 1751 - "license": "MIT", 1752 - "dependencies": { 1753 - "@mapbox/node-pre-gyp": "^2.0.0", 1754 - "@rollup/pluginutils": "^5.1.3", 1755 - "acorn": "^8.6.0", 1756 - "acorn-import-attributes": "^1.9.5", 1757 - "async-sema": "^3.1.1", 1758 - "bindings": "^1.4.0", 1759 - "estree-walker": "2.0.2", 1760 - "glob": "^10.4.5", 1761 - "graceful-fs": "^4.2.9", 1762 - "node-gyp-build": "^4.2.2", 1763 - "picomatch": "^4.0.2", 1764 - "resolve-from": "^5.0.0" 1765 - }, 1766 - "bin": { 1767 - "nft": "out/cli.js" 1768 - }, 1769 - "engines": { 1770 - "node": ">=18" 1771 - } 1772 - }, 1773 - "node_modules/abbrev": { 1774 - "version": "3.0.1", 1775 - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-3.0.1.tgz", 1776 - "integrity": "sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==", 1777 - "dev": true, 1778 - "license": "ISC", 1779 - "engines": { 1780 - "node": "^18.17.0 || >=20.5.0" 1781 - } 1782 - }, 1783 - "node_modules/acorn": { 1784 - "version": "8.15.0", 1785 - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", 1786 - "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", 1787 - "dev": true, 1788 - "license": "MIT", 1789 - "bin": { 1790 - "acorn": "bin/acorn" 1791 - }, 1792 - "engines": { 1793 - "node": ">=0.4.0" 1794 - } 1795 - }, 1796 - "node_modules/acorn-import-attributes": { 1797 - "version": "1.9.5", 1798 - "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", 1799 - "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", 1800 - "dev": true, 1801 - "license": "MIT", 1802 - "peerDependencies": { 1803 - "acorn": "^8" 1804 - } 1805 - }, 1806 - "node_modules/acorn-jsx": { 1807 - "version": "5.3.2", 1808 - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 1809 - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 1810 - "dev": true, 1811 - "license": "MIT", 1812 - "peerDependencies": { 1813 - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 1814 - } 1815 - }, 1816 - "node_modules/agent-base": { 1817 - "version": "7.1.4", 1818 - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", 1819 - "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==", 1820 - "dev": true, 1821 - "license": "MIT", 1822 - "engines": { 1823 - "node": ">= 14" 1824 - } 1825 - }, 1826 - "node_modules/ajv": { 1827 - "version": "6.12.6", 1828 - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1829 - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1830 - "dev": true, 1831 - "license": "MIT", 1832 - "dependencies": { 1833 - "fast-deep-equal": "^3.1.1", 1834 - "fast-json-stable-stringify": "^2.0.0", 1835 - "json-schema-traverse": "^0.4.1", 1836 - "uri-js": "^4.2.2" 1837 - }, 1838 - "funding": { 1839 - "type": "github", 1840 - "url": "https://github.com/sponsors/epoberezkin" 1841 - } 1842 - }, 1843 - "node_modules/ansi-regex": { 1844 - "version": "6.2.2", 1845 - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", 1846 - "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", 1847 - "dev": true, 1848 - "license": "MIT", 1849 - "engines": { 1850 - "node": ">=12" 1851 - }, 1852 - "funding": { 1853 - "url": "https://github.com/chalk/ansi-regex?sponsor=1" 1854 - } 1855 - }, 1856 - "node_modules/ansi-styles": { 1857 - "version": "4.3.0", 1858 - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1859 - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1860 - "dev": true, 1861 - "license": "MIT", 1862 - "dependencies": { 1863 - "color-convert": "^2.0.1" 1864 - }, 1865 - "engines": { 1866 - "node": ">=8" 1867 - }, 1868 - "funding": { 1869 - "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1870 - } 1871 - }, 1872 - "node_modules/any-promise": { 1873 - "version": "1.3.0", 1874 - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 1875 - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", 1876 - "dev": true, 1877 - "license": "MIT" 1878 - }, 1879 - "node_modules/anymatch": { 1880 - "version": "3.1.3", 1881 - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1882 - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1883 - "dev": true, 1884 - "license": "ISC", 1885 - "dependencies": { 1886 - "normalize-path": "^3.0.0", 1887 - "picomatch": "^2.0.4" 1888 - }, 1889 - "engines": { 1890 - "node": ">= 8" 1891 - } 1892 - }, 1893 - "node_modules/anymatch/node_modules/picomatch": { 1894 - "version": "2.3.1", 1895 - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1896 - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1897 - "dev": true, 1898 - "license": "MIT", 1899 - "engines": { 1900 - "node": ">=8.6" 1901 - }, 1902 - "funding": { 1903 - "url": "https://github.com/sponsors/jonschlinkert" 1904 - } 1905 - }, 1906 - "node_modules/arg": { 1907 - "version": "5.0.2", 1908 - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 1909 - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", 1910 - "dev": true, 1911 - "license": "MIT" 1912 - }, 1913 - "node_modules/argparse": { 1914 - "version": "2.0.1", 1915 - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1916 - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1917 - "dev": true, 1918 - "license": "Python-2.0" 1919 - }, 1920 - "node_modules/aria-query": { 1921 - "version": "5.3.2", 1922 - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", 1923 - "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", 1924 - "dev": true, 1925 - "license": "Apache-2.0", 1926 - "engines": { 1927 - "node": ">= 0.4" 1928 - } 1929 - }, 1930 - "node_modules/async-sema": { 1931 - "version": "3.1.1", 1932 - "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", 1933 - "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", 1934 - "dev": true, 1935 - "license": "MIT" 1936 - }, 1937 - "node_modules/autoprefixer": { 1938 - "version": "10.4.21", 1939 - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz", 1940 - "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==", 1941 - "dev": true, 1942 - "funding": [ 1943 - { 1944 - "type": "opencollective", 1945 - "url": "https://opencollective.com/postcss/" 1946 - }, 1947 - { 1948 - "type": "tidelift", 1949 - "url": "https://tidelift.com/funding/github/npm/autoprefixer" 1950 - }, 1951 - { 1952 - "type": "github", 1953 - "url": "https://github.com/sponsors/ai" 1954 - } 1955 - ], 1956 - "license": "MIT", 1957 - "dependencies": { 1958 - "browserslist": "^4.24.4", 1959 - "caniuse-lite": "^1.0.30001702", 1960 - "fraction.js": "^4.3.7", 1961 - "normalize-range": "^0.1.2", 1962 - "picocolors": "^1.1.1", 1963 - "postcss-value-parser": "^4.2.0" 1964 - }, 1965 - "bin": { 1966 - "autoprefixer": "bin/autoprefixer" 1967 - }, 1968 - "engines": { 1969 - "node": "^10 || ^12 || >=14" 1970 - }, 1971 - "peerDependencies": { 1972 - "postcss": "^8.1.0" 1973 - } 1974 - }, 1975 - "node_modules/axobject-query": { 1976 - "version": "4.1.0", 1977 - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", 1978 - "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", 1979 - "dev": true, 1980 - "license": "Apache-2.0", 1981 - "engines": { 1982 - "node": ">= 0.4" 1983 - } 1984 - }, 1985 - "node_modules/bail": { 1986 - "version": "2.0.2", 1987 - "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", 1988 - "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", 1989 - "license": "MIT", 1990 - "funding": { 1991 - "type": "github", 1992 - "url": "https://github.com/sponsors/wooorm" 1993 - } 1994 - }, 1995 - "node_modules/balanced-match": { 1996 - "version": "1.0.2", 1997 - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1998 - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1999 - "dev": true, 2000 - "license": "MIT" 2001 - }, 2002 - "node_modules/baseline-browser-mapping": { 2003 - "version": "2.8.16", 2004 - "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.16.tgz", 2005 - "integrity": "sha512-OMu3BGQ4E7P1ErFsIPpbJh0qvDudM/UuJeHgkAvfWe+0HFJCXh+t/l8L6fVLR55RI/UbKrVLnAXZSVwd9ysWYw==", 2006 - "dev": true, 2007 - "license": "Apache-2.0", 2008 - "bin": { 2009 - "baseline-browser-mapping": "dist/cli.js" 2010 - } 2011 - }, 2012 - "node_modules/binary-extensions": { 2013 - "version": "2.3.0", 2014 - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 2015 - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 2016 - "dev": true, 2017 - "license": "MIT", 2018 - "engines": { 2019 - "node": ">=8" 2020 - }, 2021 - "funding": { 2022 - "url": "https://github.com/sponsors/sindresorhus" 2023 - } 2024 - }, 2025 - "node_modules/bindings": { 2026 - "version": "1.5.0", 2027 - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", 2028 - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", 2029 - "dev": true, 2030 - "license": "MIT", 2031 - "dependencies": { 2032 - "file-uri-to-path": "1.0.0" 2033 - } 2034 - }, 2035 - "node_modules/boolbase": { 2036 - "version": "1.0.0", 2037 - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", 2038 - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", 2039 - "dev": true, 2040 - "license": "ISC" 2041 - }, 2042 - "node_modules/brace-expansion": { 2043 - "version": "1.1.12", 2044 - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", 2045 - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", 2046 - "dev": true, 2047 - "license": "MIT", 2048 - "dependencies": { 2049 - "balanced-match": "^1.0.0", 2050 - "concat-map": "0.0.1" 2051 - } 2052 - }, 2053 - "node_modules/braces": { 2054 - "version": "3.0.3", 2055 - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 2056 - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 2057 - "dev": true, 2058 - "license": "MIT", 2059 - "dependencies": { 2060 - "fill-range": "^7.1.1" 2061 - }, 2062 - "engines": { 2063 - "node": ">=8" 2064 - } 2065 - }, 2066 - "node_modules/browserslist": { 2067 - "version": "4.26.3", 2068 - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.26.3.tgz", 2069 - "integrity": "sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==", 2070 - "dev": true, 2071 - "funding": [ 2072 - { 2073 - "type": "opencollective", 2074 - "url": "https://opencollective.com/browserslist" 2075 - }, 2076 - { 2077 - "type": "tidelift", 2078 - "url": "https://tidelift.com/funding/github/npm/browserslist" 2079 - }, 2080 - { 2081 - "type": "github", 2082 - "url": "https://github.com/sponsors/ai" 2083 - } 2084 - ], 2085 - "license": "MIT", 2086 - "dependencies": { 2087 - "baseline-browser-mapping": "^2.8.9", 2088 - "caniuse-lite": "^1.0.30001746", 2089 - "electron-to-chromium": "^1.5.227", 2090 - "node-releases": "^2.0.21", 2091 - "update-browserslist-db": "^1.1.3" 2092 - }, 2093 - "bin": { 2094 - "browserslist": "cli.js" 2095 - }, 2096 - "engines": { 2097 - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 2098 - } 2099 - }, 2100 - "node_modules/callsites": { 2101 - "version": "3.1.0", 2102 - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 2103 - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 2104 - "dev": true, 2105 - "license": "MIT", 2106 - "engines": { 2107 - "node": ">=6" 2108 - } 2109 - }, 2110 - "node_modules/camelcase-css": { 2111 - "version": "2.0.1", 2112 - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 2113 - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 2114 - "dev": true, 2115 - "license": "MIT", 2116 - "engines": { 2117 - "node": ">= 6" 2118 - } 2119 - }, 2120 - "node_modules/caniuse-api": { 2121 - "version": "3.0.0", 2122 - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", 2123 - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", 2124 - "dev": true, 2125 - "license": "MIT", 2126 - "dependencies": { 2127 - "browserslist": "^4.0.0", 2128 - "caniuse-lite": "^1.0.0", 2129 - "lodash.memoize": "^4.1.2", 2130 - "lodash.uniq": "^4.5.0" 2131 - } 2132 - }, 2133 - "node_modules/caniuse-lite": { 2134 - "version": "1.0.30001750", 2135 - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001750.tgz", 2136 - "integrity": "sha512-cuom0g5sdX6rw00qOoLNSFCJ9/mYIsuSOA+yzpDw8eopiFqcVwQvZHqov0vmEighRxX++cfC0Vg1G+1Iy/mSpQ==", 2137 - "dev": true, 2138 - "funding": [ 2139 - { 2140 - "type": "opencollective", 2141 - "url": "https://opencollective.com/browserslist" 2142 - }, 2143 - { 2144 - "type": "tidelift", 2145 - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 2146 - }, 2147 - { 2148 - "type": "github", 2149 - "url": "https://github.com/sponsors/ai" 2150 - } 2151 - ], 2152 - "license": "CC-BY-4.0" 2153 - }, 2154 - "node_modules/ccount": { 2155 - "version": "2.0.1", 2156 - "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", 2157 - "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", 2158 - "license": "MIT", 2159 - "funding": { 2160 - "type": "github", 2161 - "url": "https://github.com/sponsors/wooorm" 2162 - } 2163 - }, 2164 - "node_modules/chalk": { 2165 - "version": "4.1.2", 2166 - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2167 - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2168 - "dev": true, 2169 - "license": "MIT", 2170 - "dependencies": { 2171 - "ansi-styles": "^4.1.0", 2172 - "supports-color": "^7.1.0" 2173 - }, 2174 - "engines": { 2175 - "node": ">=10" 2176 - }, 2177 - "funding": { 2178 - "url": "https://github.com/chalk/chalk?sponsor=1" 2179 - } 2180 - }, 2181 - "node_modules/char-regex": { 2182 - "version": "1.0.2", 2183 - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", 2184 - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", 2185 - "license": "MIT", 2186 - "engines": { 2187 - "node": ">=10" 2188 - } 2189 - }, 2190 - "node_modules/character-entities": { 2191 - "version": "2.0.2", 2192 - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", 2193 - "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", 2194 - "license": "MIT", 2195 - "funding": { 2196 - "type": "github", 2197 - "url": "https://github.com/sponsors/wooorm" 2198 - } 2199 - }, 2200 - "node_modules/character-entities-html4": { 2201 - "version": "2.1.0", 2202 - "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", 2203 - "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", 2204 - "license": "MIT", 2205 - "funding": { 2206 - "type": "github", 2207 - "url": "https://github.com/sponsors/wooorm" 2208 - } 2209 - }, 2210 - "node_modules/character-entities-legacy": { 2211 - "version": "3.0.0", 2212 - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", 2213 - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", 2214 - "license": "MIT", 2215 - "funding": { 2216 - "type": "github", 2217 - "url": "https://github.com/sponsors/wooorm" 2218 - } 2219 - }, 2220 - "node_modules/chokidar": { 2221 - "version": "4.0.3", 2222 - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", 2223 - "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", 2224 - "dev": true, 2225 - "license": "MIT", 2226 - "dependencies": { 2227 - "readdirp": "^4.0.1" 2228 - }, 2229 - "engines": { 2230 - "node": ">= 14.16.0" 2231 - }, 2232 - "funding": { 2233 - "url": "https://paulmillr.com/funding/" 2234 - } 2235 - }, 2236 - "node_modules/chownr": { 2237 - "version": "3.0.0", 2238 - "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", 2239 - "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", 2240 - "dev": true, 2241 - "license": "BlueOak-1.0.0", 2242 - "engines": { 2243 - "node": ">=18" 2244 - } 2245 - }, 2246 - "node_modules/clsx": { 2247 - "version": "2.1.1", 2248 - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", 2249 - "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", 2250 - "dev": true, 2251 - "license": "MIT", 2252 - "engines": { 2253 - "node": ">=6" 2254 - } 2255 - }, 2256 - "node_modules/color-convert": { 2257 - "version": "2.0.1", 2258 - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 2259 - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 2260 - "dev": true, 2261 - "license": "MIT", 2262 - "dependencies": { 2263 - "color-name": "~1.1.4" 2264 - }, 2265 - "engines": { 2266 - "node": ">=7.0.0" 2267 - } 2268 - }, 2269 - "node_modules/color-name": { 2270 - "version": "1.1.4", 2271 - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 2272 - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 2273 - "dev": true, 2274 - "license": "MIT" 2275 - }, 2276 - "node_modules/colord": { 2277 - "version": "2.9.3", 2278 - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", 2279 - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", 2280 - "dev": true, 2281 - "license": "MIT" 2282 - }, 2283 - "node_modules/comma-separated-tokens": { 2284 - "version": "2.0.3", 2285 - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", 2286 - "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", 2287 - "license": "MIT", 2288 - "funding": { 2289 - "type": "github", 2290 - "url": "https://github.com/sponsors/wooorm" 2291 - } 2292 - }, 2293 - "node_modules/commander": { 2294 - "version": "8.3.0", 2295 - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", 2296 - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", 2297 - "license": "MIT", 2298 - "engines": { 2299 - "node": ">= 12" 2300 - } 2301 - }, 2302 - "node_modules/concat-map": { 2303 - "version": "0.0.1", 2304 - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 2305 - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 2306 - "dev": true, 2307 - "license": "MIT" 2308 - }, 2309 - "node_modules/consola": { 2310 - "version": "3.4.2", 2311 - "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.2.tgz", 2312 - "integrity": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==", 2313 - "dev": true, 2314 - "license": "MIT", 2315 - "engines": { 2316 - "node": "^14.18.0 || >=16.10.0" 2317 - } 2318 - }, 2319 - "node_modules/cookie": { 2320 - "version": "0.6.0", 2321 - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", 2322 - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", 2323 - "dev": true, 2324 - "license": "MIT", 2325 - "engines": { 2326 - "node": ">= 0.6" 2327 - } 2328 - }, 2329 - "node_modules/cross-spawn": { 2330 - "version": "7.0.6", 2331 - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 2332 - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 2333 - "dev": true, 2334 - "license": "MIT", 2335 - "dependencies": { 2336 - "path-key": "^3.1.0", 2337 - "shebang-command": "^2.0.0", 2338 - "which": "^2.0.1" 2339 - }, 2340 - "engines": { 2341 - "node": ">= 8" 2342 - } 2343 - }, 2344 - "node_modules/css-declaration-sorter": { 2345 - "version": "7.3.0", 2346 - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.3.0.tgz", 2347 - "integrity": "sha512-LQF6N/3vkAMYF4xoHLJfG718HRJh34Z8BnNhd6bosOMIVjMlhuZK5++oZa3uYAgrI5+7x2o27gUqTR2U/KjUOQ==", 2348 - "dev": true, 2349 - "license": "ISC", 2350 - "engines": { 2351 - "node": "^14 || ^16 || >=18" 2352 - }, 2353 - "peerDependencies": { 2354 - "postcss": "^8.0.9" 2355 - } 2356 - }, 2357 - "node_modules/css-select": { 2358 - "version": "5.2.2", 2359 - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz", 2360 - "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==", 2361 - "dev": true, 2362 - "license": "BSD-2-Clause", 2363 - "dependencies": { 2364 - "boolbase": "^1.0.0", 2365 - "css-what": "^6.1.0", 2366 - "domhandler": "^5.0.2", 2367 - "domutils": "^3.0.1", 2368 - "nth-check": "^2.0.1" 2369 - }, 2370 - "funding": { 2371 - "url": "https://github.com/sponsors/fb55" 2372 - } 2373 - }, 2374 - "node_modules/css-tree": { 2375 - "version": "3.1.0", 2376 - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz", 2377 - "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==", 2378 - "dev": true, 2379 - "license": "MIT", 2380 - "dependencies": { 2381 - "mdn-data": "2.12.2", 2382 - "source-map-js": "^1.0.1" 2383 - }, 2384 - "engines": { 2385 - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" 2386 - } 2387 - }, 2388 - "node_modules/css-what": { 2389 - "version": "6.2.2", 2390 - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", 2391 - "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", 2392 - "dev": true, 2393 - "license": "BSD-2-Clause", 2394 - "engines": { 2395 - "node": ">= 6" 2396 - }, 2397 - "funding": { 2398 - "url": "https://github.com/sponsors/fb55" 2399 - } 2400 - }, 2401 - "node_modules/cssesc": { 2402 - "version": "3.0.0", 2403 - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 2404 - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 2405 - "dev": true, 2406 - "license": "MIT", 2407 - "bin": { 2408 - "cssesc": "bin/cssesc" 2409 - }, 2410 - "engines": { 2411 - "node": ">=4" 2412 - } 2413 - }, 2414 - "node_modules/cssnano": { 2415 - "version": "7.1.1", 2416 - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-7.1.1.tgz", 2417 - "integrity": "sha512-fm4D8ti0dQmFPeF8DXSAA//btEmqCOgAc/9Oa3C1LW94h5usNrJEfrON7b4FkPZgnDEn6OUs5NdxiJZmAtGOpQ==", 2418 - "dev": true, 2419 - "license": "MIT", 2420 - "dependencies": { 2421 - "cssnano-preset-default": "^7.0.9", 2422 - "lilconfig": "^3.1.3" 2423 - }, 2424 - "engines": { 2425 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 2426 - }, 2427 - "funding": { 2428 - "type": "opencollective", 2429 - "url": "https://opencollective.com/cssnano" 2430 - }, 2431 - "peerDependencies": { 2432 - "postcss": "^8.4.32" 2433 - } 2434 - }, 2435 - "node_modules/cssnano-preset-default": { 2436 - "version": "7.0.9", 2437 - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-7.0.9.tgz", 2438 - "integrity": "sha512-tCD6AAFgYBOVpMBX41KjbvRh9c2uUjLXRyV7KHSIrwHiq5Z9o0TFfUCoM3TwVrRsRteN3sVXGNvjVNxYzkpTsA==", 2439 - "dev": true, 2440 - "license": "MIT", 2441 - "dependencies": { 2442 - "browserslist": "^4.25.1", 2443 - "css-declaration-sorter": "^7.2.0", 2444 - "cssnano-utils": "^5.0.1", 2445 - "postcss-calc": "^10.1.1", 2446 - "postcss-colormin": "^7.0.4", 2447 - "postcss-convert-values": "^7.0.7", 2448 - "postcss-discard-comments": "^7.0.4", 2449 - "postcss-discard-duplicates": "^7.0.2", 2450 - "postcss-discard-empty": "^7.0.1", 2451 - "postcss-discard-overridden": "^7.0.1", 2452 - "postcss-merge-longhand": "^7.0.5", 2453 - "postcss-merge-rules": "^7.0.6", 2454 - "postcss-minify-font-values": "^7.0.1", 2455 - "postcss-minify-gradients": "^7.0.1", 2456 - "postcss-minify-params": "^7.0.4", 2457 - "postcss-minify-selectors": "^7.0.5", 2458 - "postcss-normalize-charset": "^7.0.1", 2459 - "postcss-normalize-display-values": "^7.0.1", 2460 - "postcss-normalize-positions": "^7.0.1", 2461 - "postcss-normalize-repeat-style": "^7.0.1", 2462 - "postcss-normalize-string": "^7.0.1", 2463 - "postcss-normalize-timing-functions": "^7.0.1", 2464 - "postcss-normalize-unicode": "^7.0.4", 2465 - "postcss-normalize-url": "^7.0.1", 2466 - "postcss-normalize-whitespace": "^7.0.1", 2467 - "postcss-ordered-values": "^7.0.2", 2468 - "postcss-reduce-initial": "^7.0.4", 2469 - "postcss-reduce-transforms": "^7.0.1", 2470 - "postcss-svgo": "^7.1.0", 2471 - "postcss-unique-selectors": "^7.0.4" 2472 - }, 2473 - "engines": { 2474 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 2475 - }, 2476 - "peerDependencies": { 2477 - "postcss": "^8.4.32" 2478 - } 2479 - }, 2480 - "node_modules/cssnano-utils": { 2481 - "version": "5.0.1", 2482 - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-5.0.1.tgz", 2483 - "integrity": "sha512-ZIP71eQgG9JwjVZsTPSqhc6GHgEr53uJ7tK5///VfyWj6Xp2DBmixWHqJgPno+PqATzn48pL42ww9x5SSGmhZg==", 2484 - "dev": true, 2485 - "license": "MIT", 2486 - "engines": { 2487 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 2488 - }, 2489 - "peerDependencies": { 2490 - "postcss": "^8.4.32" 2491 - } 2492 - }, 2493 - "node_modules/csso": { 2494 - "version": "5.0.5", 2495 - "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", 2496 - "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", 2497 - "dev": true, 2498 - "license": "MIT", 2499 - "dependencies": { 2500 - "css-tree": "~2.2.0" 2501 - }, 2502 - "engines": { 2503 - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", 2504 - "npm": ">=7.0.0" 2505 - } 2506 - }, 2507 - "node_modules/csso/node_modules/css-tree": { 2508 - "version": "2.2.1", 2509 - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", 2510 - "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", 2511 - "dev": true, 2512 - "license": "MIT", 2513 - "dependencies": { 2514 - "mdn-data": "2.0.28", 2515 - "source-map-js": "^1.0.1" 2516 - }, 2517 - "engines": { 2518 - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", 2519 - "npm": ">=7.0.0" 2520 - } 2521 - }, 2522 - "node_modules/csso/node_modules/mdn-data": { 2523 - "version": "2.0.28", 2524 - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", 2525 - "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", 2526 - "dev": true, 2527 - "license": "CC0-1.0" 2528 - }, 2529 - "node_modules/debug": { 2530 - "version": "4.4.3", 2531 - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", 2532 - "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", 2533 - "license": "MIT", 2534 - "dependencies": { 2535 - "ms": "^2.1.3" 2536 - }, 2537 - "engines": { 2538 - "node": ">=6.0" 2539 - }, 2540 - "peerDependenciesMeta": { 2541 - "supports-color": { 2542 - "optional": true 2543 - } 2544 - } 2545 - }, 2546 - "node_modules/decode-named-character-reference": { 2547 - "version": "1.2.0", 2548 - "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz", 2549 - "integrity": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==", 2550 - "license": "MIT", 2551 - "dependencies": { 2552 - "character-entities": "^2.0.0" 2553 - }, 2554 - "funding": { 2555 - "type": "github", 2556 - "url": "https://github.com/sponsors/wooorm" 2557 - } 2558 - }, 2559 - "node_modules/deep-is": { 2560 - "version": "0.1.4", 2561 - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 2562 - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 2563 - "dev": true, 2564 - "license": "MIT" 2565 - }, 2566 - "node_modules/deepmerge": { 2567 - "version": "4.3.1", 2568 - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 2569 - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 2570 - "license": "MIT", 2571 - "engines": { 2572 - "node": ">=0.10.0" 2573 - } 2574 - }, 2575 - "node_modules/dequal": { 2576 - "version": "2.0.3", 2577 - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", 2578 - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", 2579 - "license": "MIT", 2580 - "engines": { 2581 - "node": ">=6" 2582 - } 2583 - }, 2584 - "node_modules/detect-libc": { 2585 - "version": "2.1.2", 2586 - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", 2587 - "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", 2588 - "dev": true, 2589 - "license": "Apache-2.0", 2590 - "engines": { 2591 - "node": ">=8" 2592 - } 2593 - }, 2594 - "node_modules/devalue": { 2595 - "version": "5.3.2", 2596 - "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.3.2.tgz", 2597 - "integrity": "sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==", 2598 - "dev": true, 2599 - "license": "MIT" 2600 - }, 2601 - "node_modules/devlop": { 2602 - "version": "1.1.0", 2603 - "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", 2604 - "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", 2605 - "license": "MIT", 2606 - "dependencies": { 2607 - "dequal": "^2.0.0" 2608 - }, 2609 - "funding": { 2610 - "type": "github", 2611 - "url": "https://github.com/sponsors/wooorm" 2612 - } 2613 - }, 2614 - "node_modules/didyoumean": { 2615 - "version": "1.2.2", 2616 - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 2617 - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", 2618 - "dev": true, 2619 - "license": "Apache-2.0" 2620 - }, 2621 - "node_modules/dlv": { 2622 - "version": "1.1.3", 2623 - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 2624 - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", 2625 - "dev": true, 2626 - "license": "MIT" 2627 - }, 2628 - "node_modules/dom-serializer": { 2629 - "version": "2.0.0", 2630 - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", 2631 - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", 2632 - "license": "MIT", 2633 - "dependencies": { 2634 - "domelementtype": "^2.3.0", 2635 - "domhandler": "^5.0.2", 2636 - "entities": "^4.2.0" 2637 - }, 2638 - "funding": { 2639 - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" 2640 - } 2641 - }, 2642 - "node_modules/domelementtype": { 2643 - "version": "2.3.0", 2644 - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", 2645 - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", 2646 - "funding": [ 2647 - { 2648 - "type": "github", 2649 - "url": "https://github.com/sponsors/fb55" 2650 - } 2651 - ], 2652 - "license": "BSD-2-Clause" 2653 - }, 2654 - "node_modules/domhandler": { 2655 - "version": "5.0.3", 2656 - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", 2657 - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", 2658 - "license": "BSD-2-Clause", 2659 - "dependencies": { 2660 - "domelementtype": "^2.3.0" 2661 - }, 2662 - "engines": { 2663 - "node": ">= 4" 2664 - }, 2665 - "funding": { 2666 - "url": "https://github.com/fb55/domhandler?sponsor=1" 2667 - } 2668 - }, 2669 - "node_modules/domutils": { 2670 - "version": "3.2.2", 2671 - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", 2672 - "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", 2673 - "license": "BSD-2-Clause", 2674 - "dependencies": { 2675 - "dom-serializer": "^2.0.0", 2676 - "domelementtype": "^2.3.0", 2677 - "domhandler": "^5.0.3" 2678 - }, 2679 - "funding": { 2680 - "url": "https://github.com/fb55/domutils?sponsor=1" 2681 - } 2682 - }, 2683 - "node_modules/eastasianwidth": { 2684 - "version": "0.2.0", 2685 - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 2686 - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 2687 - "dev": true, 2688 - "license": "MIT" 2689 - }, 2690 - "node_modules/electron-to-chromium": { 2691 - "version": "1.5.234", 2692 - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.234.tgz", 2693 - "integrity": "sha512-RXfEp2x+VRYn8jbKfQlRImzoJU01kyDvVPBmG39eU2iuRVhuS6vQNocB8J0/8GrIMLnPzgz4eW6WiRnJkTuNWg==", 2694 - "dev": true, 2695 - "license": "ISC" 2696 - }, 2697 - "node_modules/emoji-regex": { 2698 - "version": "9.2.2", 2699 - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 2700 - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 2701 - "dev": true, 2702 - "license": "MIT" 2703 - }, 2704 - "node_modules/emojilib": { 2705 - "version": "2.4.0", 2706 - "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz", 2707 - "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==", 2708 - "license": "MIT" 2709 - }, 2710 - "node_modules/emoticon": { 2711 - "version": "4.1.0", 2712 - "resolved": "https://registry.npmjs.org/emoticon/-/emoticon-4.1.0.tgz", 2713 - "integrity": "sha512-VWZfnxqwNcc51hIy/sbOdEem6D+cVtpPzEEtVAFdaas30+1dgkyaOQ4sQ6Bp0tOMqWO1v+HQfYaoodOkdhK6SQ==", 2714 - "license": "MIT", 2715 - "funding": { 2716 - "type": "github", 2717 - "url": "https://github.com/sponsors/wooorm" 2718 - } 2719 - }, 2720 - "node_modules/entities": { 2721 - "version": "4.5.0", 2722 - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", 2723 - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", 2724 - "license": "BSD-2-Clause", 2725 - "engines": { 2726 - "node": ">=0.12" 2727 - }, 2728 - "funding": { 2729 - "url": "https://github.com/fb55/entities?sponsor=1" 2730 - } 2731 - }, 2732 - "node_modules/esbuild": { 2733 - "version": "0.25.10", 2734 - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.10.tgz", 2735 - "integrity": "sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==", 2736 - "dev": true, 2737 - "hasInstallScript": true, 2738 - "license": "MIT", 2739 - "bin": { 2740 - "esbuild": "bin/esbuild" 2741 - }, 2742 - "engines": { 2743 - "node": ">=18" 2744 - }, 2745 - "optionalDependencies": { 2746 - "@esbuild/aix-ppc64": "0.25.10", 2747 - "@esbuild/android-arm": "0.25.10", 2748 - "@esbuild/android-arm64": "0.25.10", 2749 - "@esbuild/android-x64": "0.25.10", 2750 - "@esbuild/darwin-arm64": "0.25.10", 2751 - "@esbuild/darwin-x64": "0.25.10", 2752 - "@esbuild/freebsd-arm64": "0.25.10", 2753 - "@esbuild/freebsd-x64": "0.25.10", 2754 - "@esbuild/linux-arm": "0.25.10", 2755 - "@esbuild/linux-arm64": "0.25.10", 2756 - "@esbuild/linux-ia32": "0.25.10", 2757 - "@esbuild/linux-loong64": "0.25.10", 2758 - "@esbuild/linux-mips64el": "0.25.10", 2759 - "@esbuild/linux-ppc64": "0.25.10", 2760 - "@esbuild/linux-riscv64": "0.25.10", 2761 - "@esbuild/linux-s390x": "0.25.10", 2762 - "@esbuild/linux-x64": "0.25.10", 2763 - "@esbuild/netbsd-arm64": "0.25.10", 2764 - "@esbuild/netbsd-x64": "0.25.10", 2765 - "@esbuild/openbsd-arm64": "0.25.10", 2766 - "@esbuild/openbsd-x64": "0.25.10", 2767 - "@esbuild/openharmony-arm64": "0.25.10", 2768 - "@esbuild/sunos-x64": "0.25.10", 2769 - "@esbuild/win32-arm64": "0.25.10", 2770 - "@esbuild/win32-ia32": "0.25.10", 2771 - "@esbuild/win32-x64": "0.25.10" 2772 - } 2773 - }, 2774 - "node_modules/escalade": { 2775 - "version": "3.2.0", 2776 - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 2777 - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 2778 - "dev": true, 2779 - "license": "MIT", 2780 - "engines": { 2781 - "node": ">=6" 2782 - } 2783 - }, 2784 - "node_modules/escape-string-regexp": { 2785 - "version": "4.0.0", 2786 - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 2787 - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 2788 - "license": "MIT", 2789 - "engines": { 2790 - "node": ">=10" 2791 - }, 2792 - "funding": { 2793 - "url": "https://github.com/sponsors/sindresorhus" 2794 - } 2795 - }, 2796 - "node_modules/eslint": { 2797 - "version": "9.37.0", 2798 - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.37.0.tgz", 2799 - "integrity": "sha512-XyLmROnACWqSxiGYArdef1fItQd47weqB7iwtfr9JHwRrqIXZdcFMvvEcL9xHCmL0SNsOvF0c42lWyM1U5dgig==", 2800 - "dev": true, 2801 - "license": "MIT", 2802 - "dependencies": { 2803 - "@eslint-community/eslint-utils": "^4.8.0", 2804 - "@eslint-community/regexpp": "^4.12.1", 2805 - "@eslint/config-array": "^0.21.0", 2806 - "@eslint/config-helpers": "^0.4.0", 2807 - "@eslint/core": "^0.16.0", 2808 - "@eslint/eslintrc": "^3.3.1", 2809 - "@eslint/js": "9.37.0", 2810 - "@eslint/plugin-kit": "^0.4.0", 2811 - "@humanfs/node": "^0.16.6", 2812 - "@humanwhocodes/module-importer": "^1.0.1", 2813 - "@humanwhocodes/retry": "^0.4.2", 2814 - "@types/estree": "^1.0.6", 2815 - "@types/json-schema": "^7.0.15", 2816 - "ajv": "^6.12.4", 2817 - "chalk": "^4.0.0", 2818 - "cross-spawn": "^7.0.6", 2819 - "debug": "^4.3.2", 2820 - "escape-string-regexp": "^4.0.0", 2821 - "eslint-scope": "^8.4.0", 2822 - "eslint-visitor-keys": "^4.2.1", 2823 - "espree": "^10.4.0", 2824 - "esquery": "^1.5.0", 2825 - "esutils": "^2.0.2", 2826 - "fast-deep-equal": "^3.1.3", 2827 - "file-entry-cache": "^8.0.0", 2828 - "find-up": "^5.0.0", 2829 - "glob-parent": "^6.0.2", 2830 - "ignore": "^5.2.0", 2831 - "imurmurhash": "^0.1.4", 2832 - "is-glob": "^4.0.0", 2833 - "json-stable-stringify-without-jsonify": "^1.0.1", 2834 - "lodash.merge": "^4.6.2", 2835 - "minimatch": "^3.1.2", 2836 - "natural-compare": "^1.4.0", 2837 - "optionator": "^0.9.3" 2838 - }, 2839 - "bin": { 2840 - "eslint": "bin/eslint.js" 2841 - }, 2842 - "engines": { 2843 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2844 - }, 2845 - "funding": { 2846 - "url": "https://eslint.org/donate" 2847 - }, 2848 - "peerDependencies": { 2849 - "jiti": "*" 2850 - }, 2851 - "peerDependenciesMeta": { 2852 - "jiti": { 2853 - "optional": true 2854 - } 2855 - } 2856 - }, 2857 - "node_modules/eslint-plugin-svelte": { 2858 - "version": "3.12.4", 2859 - "resolved": "https://registry.npmjs.org/eslint-plugin-svelte/-/eslint-plugin-svelte-3.12.4.tgz", 2860 - "integrity": "sha512-hD7wPe+vrPgx3U2X2b/wyTMtWobm660PygMGKrWWYTc9lvtY8DpNFDaU2CJQn1szLjGbn/aJ3g8WiXuKakrEkw==", 2861 - "dev": true, 2862 - "license": "MIT", 2863 - "dependencies": { 2864 - "@eslint-community/eslint-utils": "^4.6.1", 2865 - "@jridgewell/sourcemap-codec": "^1.5.0", 2866 - "esutils": "^2.0.3", 2867 - "globals": "^16.0.0", 2868 - "known-css-properties": "^0.37.0", 2869 - "postcss": "^8.4.49", 2870 - "postcss-load-config": "^3.1.4", 2871 - "postcss-safe-parser": "^7.0.0", 2872 - "semver": "^7.6.3", 2873 - "svelte-eslint-parser": "^1.3.0" 2874 - }, 2875 - "engines": { 2876 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2877 - }, 2878 - "funding": { 2879 - "url": "https://github.com/sponsors/ota-meshi" 2880 - }, 2881 - "peerDependencies": { 2882 - "eslint": "^8.57.1 || ^9.0.0", 2883 - "svelte": "^3.37.0 || ^4.0.0 || ^5.0.0" 2884 - }, 2885 - "peerDependenciesMeta": { 2886 - "svelte": { 2887 - "optional": true 2888 - } 2889 - } 2890 - }, 2891 - "node_modules/eslint-scope": { 2892 - "version": "8.4.0", 2893 - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", 2894 - "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", 2895 - "dev": true, 2896 - "license": "BSD-2-Clause", 2897 - "dependencies": { 2898 - "esrecurse": "^4.3.0", 2899 - "estraverse": "^5.2.0" 2900 - }, 2901 - "engines": { 2902 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2903 - }, 2904 - "funding": { 2905 - "url": "https://opencollective.com/eslint" 2906 - } 2907 - }, 2908 - "node_modules/eslint-visitor-keys": { 2909 - "version": "4.2.1", 2910 - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", 2911 - "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", 2912 - "dev": true, 2913 - "license": "Apache-2.0", 2914 - "engines": { 2915 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2916 - }, 2917 - "funding": { 2918 - "url": "https://opencollective.com/eslint" 2919 - } 2920 - }, 2921 - "node_modules/esm-env": { 2922 - "version": "1.2.2", 2923 - "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.2.2.tgz", 2924 - "integrity": "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==", 2925 - "dev": true, 2926 - "license": "MIT" 2927 - }, 2928 - "node_modules/espree": { 2929 - "version": "10.4.0", 2930 - "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", 2931 - "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", 2932 - "dev": true, 2933 - "license": "BSD-2-Clause", 2934 - "dependencies": { 2935 - "acorn": "^8.15.0", 2936 - "acorn-jsx": "^5.3.2", 2937 - "eslint-visitor-keys": "^4.2.1" 2938 - }, 2939 - "engines": { 2940 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2941 - }, 2942 - "funding": { 2943 - "url": "https://opencollective.com/eslint" 2944 - } 2945 - }, 2946 - "node_modules/esquery": { 2947 - "version": "1.6.0", 2948 - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 2949 - "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 2950 - "dev": true, 2951 - "license": "BSD-3-Clause", 2952 - "dependencies": { 2953 - "estraverse": "^5.1.0" 2954 - }, 2955 - "engines": { 2956 - "node": ">=0.10" 2957 - } 2958 - }, 2959 - "node_modules/esrap": { 2960 - "version": "2.1.0", 2961 - "resolved": "https://registry.npmjs.org/esrap/-/esrap-2.1.0.tgz", 2962 - "integrity": "sha512-yzmPNpl7TBbMRC5Lj2JlJZNPml0tzqoqP5B1JXycNUwtqma9AKCO0M2wHrdgsHcy1WRW7S9rJknAMtByg3usgA==", 2963 - "dev": true, 2964 - "license": "MIT", 2965 - "dependencies": { 2966 - "@jridgewell/sourcemap-codec": "^1.4.15" 2967 - } 2968 - }, 2969 - "node_modules/esrecurse": { 2970 - "version": "4.3.0", 2971 - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 2972 - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 2973 - "dev": true, 2974 - "license": "BSD-2-Clause", 2975 - "dependencies": { 2976 - "estraverse": "^5.2.0" 2977 - }, 2978 - "engines": { 2979 - "node": ">=4.0" 2980 - } 2981 - }, 2982 - "node_modules/estraverse": { 2983 - "version": "5.3.0", 2984 - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2985 - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2986 - "dev": true, 2987 - "license": "BSD-2-Clause", 2988 - "engines": { 2989 - "node": ">=4.0" 2990 - } 2991 - }, 2992 - "node_modules/estree-walker": { 2993 - "version": "2.0.2", 2994 - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 2995 - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 2996 - "dev": true, 2997 - "license": "MIT" 2998 - }, 2999 - "node_modules/esutils": { 3000 - "version": "2.0.3", 3001 - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 3002 - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 3003 - "dev": true, 3004 - "license": "BSD-2-Clause", 3005 - "engines": { 3006 - "node": ">=0.10.0" 3007 - } 3008 - }, 3009 - "node_modules/extend": { 3010 - "version": "3.0.2", 3011 - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 3012 - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", 3013 - "license": "MIT" 3014 - }, 3015 - "node_modules/fast-deep-equal": { 3016 - "version": "3.1.3", 3017 - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 3018 - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 3019 - "dev": true, 3020 - "license": "MIT" 3021 - }, 3022 - "node_modules/fast-glob": { 3023 - "version": "3.3.3", 3024 - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", 3025 - "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", 3026 - "dev": true, 3027 - "license": "MIT", 3028 - "dependencies": { 3029 - "@nodelib/fs.stat": "^2.0.2", 3030 - "@nodelib/fs.walk": "^1.2.3", 3031 - "glob-parent": "^5.1.2", 3032 - "merge2": "^1.3.0", 3033 - "micromatch": "^4.0.8" 3034 - }, 3035 - "engines": { 3036 - "node": ">=8.6.0" 3037 - } 3038 - }, 3039 - "node_modules/fast-glob/node_modules/glob-parent": { 3040 - "version": "5.1.2", 3041 - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 3042 - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 3043 - "dev": true, 3044 - "license": "ISC", 3045 - "dependencies": { 3046 - "is-glob": "^4.0.1" 3047 - }, 3048 - "engines": { 3049 - "node": ">= 6" 3050 - } 3051 - }, 3052 - "node_modules/fast-json-stable-stringify": { 3053 - "version": "2.1.0", 3054 - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 3055 - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 3056 - "dev": true, 3057 - "license": "MIT" 3058 - }, 3059 - "node_modules/fast-levenshtein": { 3060 - "version": "2.0.6", 3061 - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 3062 - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 3063 - "dev": true, 3064 - "license": "MIT" 3065 - }, 3066 - "node_modules/fastq": { 3067 - "version": "1.19.1", 3068 - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", 3069 - "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", 3070 - "dev": true, 3071 - "license": "ISC", 3072 - "dependencies": { 3073 - "reusify": "^1.0.4" 3074 - } 3075 - }, 3076 - "node_modules/fdir": { 3077 - "version": "6.5.0", 3078 - "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", 3079 - "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", 3080 - "dev": true, 3081 - "license": "MIT", 3082 - "engines": { 3083 - "node": ">=12.0.0" 3084 - }, 3085 - "peerDependencies": { 3086 - "picomatch": "^3 || ^4" 3087 - }, 3088 - "peerDependenciesMeta": { 3089 - "picomatch": { 3090 - "optional": true 3091 - } 3092 - } 3093 - }, 3094 - "node_modules/file-entry-cache": { 3095 - "version": "8.0.0", 3096 - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 3097 - "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 3098 - "dev": true, 3099 - "license": "MIT", 3100 - "dependencies": { 3101 - "flat-cache": "^4.0.0" 3102 - }, 3103 - "engines": { 3104 - "node": ">=16.0.0" 3105 - } 3106 - }, 3107 - "node_modules/file-uri-to-path": { 3108 - "version": "1.0.0", 3109 - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", 3110 - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", 3111 - "dev": true, 3112 - "license": "MIT" 3113 - }, 3114 - "node_modules/fill-range": { 3115 - "version": "7.1.1", 3116 - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 3117 - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 3118 - "dev": true, 3119 - "license": "MIT", 3120 - "dependencies": { 3121 - "to-regex-range": "^5.0.1" 3122 - }, 3123 - "engines": { 3124 - "node": ">=8" 3125 - } 3126 - }, 3127 - "node_modules/find-up": { 3128 - "version": "5.0.0", 3129 - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 3130 - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 3131 - "dev": true, 3132 - "license": "MIT", 3133 - "dependencies": { 3134 - "locate-path": "^6.0.0", 3135 - "path-exists": "^4.0.0" 3136 - }, 3137 - "engines": { 3138 - "node": ">=10" 3139 - }, 3140 - "funding": { 3141 - "url": "https://github.com/sponsors/sindresorhus" 3142 - } 3143 - }, 3144 - "node_modules/flat-cache": { 3145 - "version": "4.0.1", 3146 - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 3147 - "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 3148 - "dev": true, 3149 - "license": "MIT", 3150 - "dependencies": { 3151 - "flatted": "^3.2.9", 3152 - "keyv": "^4.5.4" 3153 - }, 3154 - "engines": { 3155 - "node": ">=16" 3156 - } 3157 - }, 3158 - "node_modules/flatted": { 3159 - "version": "3.3.3", 3160 - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", 3161 - "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", 3162 - "dev": true, 3163 - "license": "ISC" 3164 - }, 3165 - "node_modules/foreground-child": { 3166 - "version": "3.3.1", 3167 - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", 3168 - "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", 3169 - "dev": true, 3170 - "license": "ISC", 3171 - "dependencies": { 3172 - "cross-spawn": "^7.0.6", 3173 - "signal-exit": "^4.0.1" 3174 - }, 3175 - "engines": { 3176 - "node": ">=14" 3177 - }, 3178 - "funding": { 3179 - "url": "https://github.com/sponsors/isaacs" 3180 - } 3181 - }, 3182 - "node_modules/fraction.js": { 3183 - "version": "4.3.7", 3184 - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", 3185 - "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", 3186 - "dev": true, 3187 - "license": "MIT", 3188 - "engines": { 3189 - "node": "*" 3190 - }, 3191 - "funding": { 3192 - "type": "patreon", 3193 - "url": "https://github.com/sponsors/rawify" 3194 - } 3195 - }, 3196 - "node_modules/fsevents": { 3197 - "version": "2.3.3", 3198 - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 3199 - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 3200 - "dev": true, 3201 - "hasInstallScript": true, 3202 - "license": "MIT", 3203 - "optional": true, 3204 - "os": [ 3205 - "darwin" 3206 - ], 3207 - "engines": { 3208 - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 3209 - } 3210 - }, 3211 - "node_modules/function-bind": { 3212 - "version": "1.1.2", 3213 - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 3214 - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 3215 - "license": "MIT", 3216 - "funding": { 3217 - "url": "https://github.com/sponsors/ljharb" 3218 - } 3219 - }, 3220 - "node_modules/github-slugger": { 3221 - "version": "2.0.0", 3222 - "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz", 3223 - "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==", 3224 - "license": "ISC" 3225 - }, 3226 - "node_modules/glob": { 3227 - "version": "10.4.5", 3228 - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", 3229 - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", 3230 - "dev": true, 3231 - "license": "ISC", 3232 - "dependencies": { 3233 - "foreground-child": "^3.1.0", 3234 - "jackspeak": "^3.1.2", 3235 - "minimatch": "^9.0.4", 3236 - "minipass": "^7.1.2", 3237 - "package-json-from-dist": "^1.0.0", 3238 - "path-scurry": "^1.11.1" 3239 - }, 3240 - "bin": { 3241 - "glob": "dist/esm/bin.mjs" 3242 - }, 3243 - "funding": { 3244 - "url": "https://github.com/sponsors/isaacs" 3245 - } 3246 - }, 3247 - "node_modules/glob-parent": { 3248 - "version": "6.0.2", 3249 - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 3250 - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 3251 - "dev": true, 3252 - "license": "ISC", 3253 - "dependencies": { 3254 - "is-glob": "^4.0.3" 3255 - }, 3256 - "engines": { 3257 - "node": ">=10.13.0" 3258 - } 3259 - }, 3260 - "node_modules/glob/node_modules/brace-expansion": { 3261 - "version": "2.0.2", 3262 - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", 3263 - "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", 3264 - "dev": true, 3265 - "license": "MIT", 3266 - "dependencies": { 3267 - "balanced-match": "^1.0.0" 3268 - } 3269 - }, 3270 - "node_modules/glob/node_modules/minimatch": { 3271 - "version": "9.0.5", 3272 - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 3273 - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 3274 - "dev": true, 3275 - "license": "ISC", 3276 - "dependencies": { 3277 - "brace-expansion": "^2.0.1" 3278 - }, 3279 - "engines": { 3280 - "node": ">=16 || 14 >=14.17" 3281 - }, 3282 - "funding": { 3283 - "url": "https://github.com/sponsors/isaacs" 3284 - } 3285 - }, 3286 - "node_modules/globals": { 3287 - "version": "16.4.0", 3288 - "resolved": "https://registry.npmjs.org/globals/-/globals-16.4.0.tgz", 3289 - "integrity": "sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==", 3290 - "dev": true, 3291 - "license": "MIT", 3292 - "engines": { 3293 - "node": ">=18" 3294 - }, 3295 - "funding": { 3296 - "url": "https://github.com/sponsors/sindresorhus" 3297 - } 3298 - }, 3299 - "node_modules/graceful-fs": { 3300 - "version": "4.2.11", 3301 - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 3302 - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 3303 - "dev": true, 3304 - "license": "ISC" 3305 - }, 3306 - "node_modules/graphemer": { 3307 - "version": "1.4.0", 3308 - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 3309 - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 3310 - "dev": true, 3311 - "license": "MIT" 3312 - }, 3313 - "node_modules/has-flag": { 3314 - "version": "4.0.0", 3315 - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 3316 - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 3317 - "dev": true, 3318 - "license": "MIT", 3319 - "engines": { 3320 - "node": ">=8" 3321 - } 3322 - }, 3323 - "node_modules/hasown": { 3324 - "version": "2.0.2", 3325 - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 3326 - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 3327 - "license": "MIT", 3328 - "dependencies": { 3329 - "function-bind": "^1.1.2" 3330 - }, 3331 - "engines": { 3332 - "node": ">= 0.4" 3333 - } 3334 - }, 3335 - "node_modules/hast-util-from-dom": { 3336 - "version": "5.0.1", 3337 - "resolved": "https://registry.npmjs.org/hast-util-from-dom/-/hast-util-from-dom-5.0.1.tgz", 3338 - "integrity": "sha512-N+LqofjR2zuzTjCPzyDUdSshy4Ma6li7p/c3pA78uTwzFgENbgbUrm2ugwsOdcjI1muO+o6Dgzp9p8WHtn/39Q==", 3339 - "license": "ISC", 3340 - "dependencies": { 3341 - "@types/hast": "^3.0.0", 3342 - "hastscript": "^9.0.0", 3343 - "web-namespaces": "^2.0.0" 3344 - }, 3345 - "funding": { 3346 - "type": "opencollective", 3347 - "url": "https://opencollective.com/unified" 3348 - } 3349 - }, 3350 - "node_modules/hast-util-from-html": { 3351 - "version": "2.0.3", 3352 - "resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz", 3353 - "integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==", 3354 - "license": "MIT", 3355 - "dependencies": { 3356 - "@types/hast": "^3.0.0", 3357 - "devlop": "^1.1.0", 3358 - "hast-util-from-parse5": "^8.0.0", 3359 - "parse5": "^7.0.0", 3360 - "vfile": "^6.0.0", 3361 - "vfile-message": "^4.0.0" 3362 - }, 3363 - "funding": { 3364 - "type": "opencollective", 3365 - "url": "https://opencollective.com/unified" 3366 - } 3367 - }, 3368 - "node_modules/hast-util-from-html-isomorphic": { 3369 - "version": "2.0.0", 3370 - "resolved": "https://registry.npmjs.org/hast-util-from-html-isomorphic/-/hast-util-from-html-isomorphic-2.0.0.tgz", 3371 - "integrity": "sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==", 3372 - "license": "MIT", 3373 - "dependencies": { 3374 - "@types/hast": "^3.0.0", 3375 - "hast-util-from-dom": "^5.0.0", 3376 - "hast-util-from-html": "^2.0.0", 3377 - "unist-util-remove-position": "^5.0.0" 3378 - }, 3379 - "funding": { 3380 - "type": "opencollective", 3381 - "url": "https://opencollective.com/unified" 3382 - } 3383 - }, 3384 - "node_modules/hast-util-from-parse5": { 3385 - "version": "8.0.3", 3386 - "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz", 3387 - "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==", 3388 - "license": "MIT", 3389 - "dependencies": { 3390 - "@types/hast": "^3.0.0", 3391 - "@types/unist": "^3.0.0", 3392 - "devlop": "^1.0.0", 3393 - "hastscript": "^9.0.0", 3394 - "property-information": "^7.0.0", 3395 - "vfile": "^6.0.0", 3396 - "vfile-location": "^5.0.0", 3397 - "web-namespaces": "^2.0.0" 3398 - }, 3399 - "funding": { 3400 - "type": "opencollective", 3401 - "url": "https://opencollective.com/unified" 3402 - } 3403 - }, 3404 - "node_modules/hast-util-heading-rank": { 3405 - "version": "3.0.0", 3406 - "resolved": "https://registry.npmjs.org/hast-util-heading-rank/-/hast-util-heading-rank-3.0.0.tgz", 3407 - "integrity": "sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==", 3408 - "license": "MIT", 3409 - "dependencies": { 3410 - "@types/hast": "^3.0.0" 3411 - }, 3412 - "funding": { 3413 - "type": "opencollective", 3414 - "url": "https://opencollective.com/unified" 3415 - } 3416 - }, 3417 - "node_modules/hast-util-is-element": { 3418 - "version": "3.0.0", 3419 - "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz", 3420 - "integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==", 3421 - "license": "MIT", 3422 - "dependencies": { 3423 - "@types/hast": "^3.0.0" 3424 - }, 3425 - "funding": { 3426 - "type": "opencollective", 3427 - "url": "https://opencollective.com/unified" 3428 - } 3429 - }, 3430 - "node_modules/hast-util-parse-selector": { 3431 - "version": "4.0.0", 3432 - "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", 3433 - "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", 3434 - "license": "MIT", 3435 - "dependencies": { 3436 - "@types/hast": "^3.0.0" 3437 - }, 3438 - "funding": { 3439 - "type": "opencollective", 3440 - "url": "https://opencollective.com/unified" 3441 - } 3442 - }, 3443 - "node_modules/hast-util-raw": { 3444 - "version": "9.1.0", 3445 - "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz", 3446 - "integrity": "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==", 3447 - "license": "MIT", 3448 - "dependencies": { 3449 - "@types/hast": "^3.0.0", 3450 - "@types/unist": "^3.0.0", 3451 - "@ungap/structured-clone": "^1.0.0", 3452 - "hast-util-from-parse5": "^8.0.0", 3453 - "hast-util-to-parse5": "^8.0.0", 3454 - "html-void-elements": "^3.0.0", 3455 - "mdast-util-to-hast": "^13.0.0", 3456 - "parse5": "^7.0.0", 3457 - "unist-util-position": "^5.0.0", 3458 - "unist-util-visit": "^5.0.0", 3459 - "vfile": "^6.0.0", 3460 - "web-namespaces": "^2.0.0", 3461 - "zwitch": "^2.0.0" 3462 - }, 3463 - "funding": { 3464 - "type": "opencollective", 3465 - "url": "https://opencollective.com/unified" 3466 - } 3467 - }, 3468 - "node_modules/hast-util-sanitize": { 3469 - "version": "5.0.2", 3470 - "resolved": "https://registry.npmjs.org/hast-util-sanitize/-/hast-util-sanitize-5.0.2.tgz", 3471 - "integrity": "sha512-3yTWghByc50aGS7JlGhk61SPenfE/p1oaFeNwkOOyrscaOkMGrcW9+Cy/QAIOBpZxP1yqDIzFMR0+Np0i0+usg==", 3472 - "license": "MIT", 3473 - "dependencies": { 3474 - "@types/hast": "^3.0.0", 3475 - "@ungap/structured-clone": "^1.0.0", 3476 - "unist-util-position": "^5.0.0" 3477 - }, 3478 - "funding": { 3479 - "type": "opencollective", 3480 - "url": "https://opencollective.com/unified" 3481 - } 3482 - }, 3483 - "node_modules/hast-util-to-html": { 3484 - "version": "9.0.5", 3485 - "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", 3486 - "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==", 3487 - "license": "MIT", 3488 - "dependencies": { 3489 - "@types/hast": "^3.0.0", 3490 - "@types/unist": "^3.0.0", 3491 - "ccount": "^2.0.0", 3492 - "comma-separated-tokens": "^2.0.0", 3493 - "hast-util-whitespace": "^3.0.0", 3494 - "html-void-elements": "^3.0.0", 3495 - "mdast-util-to-hast": "^13.0.0", 3496 - "property-information": "^7.0.0", 3497 - "space-separated-tokens": "^2.0.0", 3498 - "stringify-entities": "^4.0.0", 3499 - "zwitch": "^2.0.4" 3500 - }, 3501 - "funding": { 3502 - "type": "opencollective", 3503 - "url": "https://opencollective.com/unified" 3504 - } 3505 - }, 3506 - "node_modules/hast-util-to-parse5": { 3507 - "version": "8.0.0", 3508 - "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz", 3509 - "integrity": "sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==", 3510 - "license": "MIT", 3511 - "dependencies": { 3512 - "@types/hast": "^3.0.0", 3513 - "comma-separated-tokens": "^2.0.0", 3514 - "devlop": "^1.0.0", 3515 - "property-information": "^6.0.0", 3516 - "space-separated-tokens": "^2.0.0", 3517 - "web-namespaces": "^2.0.0", 3518 - "zwitch": "^2.0.0" 3519 - }, 3520 - "funding": { 3521 - "type": "opencollective", 3522 - "url": "https://opencollective.com/unified" 3523 - } 3524 - }, 3525 - "node_modules/hast-util-to-parse5/node_modules/property-information": { 3526 - "version": "6.5.0", 3527 - "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", 3528 - "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", 3529 - "license": "MIT", 3530 - "funding": { 3531 - "type": "github", 3532 - "url": "https://github.com/sponsors/wooorm" 3533 - } 3534 - }, 3535 - "node_modules/hast-util-to-string": { 3536 - "version": "3.0.1", 3537 - "resolved": "https://registry.npmjs.org/hast-util-to-string/-/hast-util-to-string-3.0.1.tgz", 3538 - "integrity": "sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==", 3539 - "license": "MIT", 3540 - "dependencies": { 3541 - "@types/hast": "^3.0.0" 3542 - }, 3543 - "funding": { 3544 - "type": "opencollective", 3545 - "url": "https://opencollective.com/unified" 3546 - } 3547 - }, 3548 - "node_modules/hast-util-to-text": { 3549 - "version": "4.0.2", 3550 - "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz", 3551 - "integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==", 3552 - "license": "MIT", 3553 - "dependencies": { 3554 - "@types/hast": "^3.0.0", 3555 - "@types/unist": "^3.0.0", 3556 - "hast-util-is-element": "^3.0.0", 3557 - "unist-util-find-after": "^5.0.0" 3558 - }, 3559 - "funding": { 3560 - "type": "opencollective", 3561 - "url": "https://opencollective.com/unified" 3562 - } 3563 - }, 3564 - "node_modules/hast-util-whitespace": { 3565 - "version": "3.0.0", 3566 - "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", 3567 - "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", 3568 - "license": "MIT", 3569 - "dependencies": { 3570 - "@types/hast": "^3.0.0" 3571 - }, 3572 - "funding": { 3573 - "type": "opencollective", 3574 - "url": "https://opencollective.com/unified" 3575 - } 3576 - }, 3577 - "node_modules/hastscript": { 3578 - "version": "9.0.1", 3579 - "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz", 3580 - "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==", 3581 - "license": "MIT", 3582 - "dependencies": { 3583 - "@types/hast": "^3.0.0", 3584 - "comma-separated-tokens": "^2.0.0", 3585 - "hast-util-parse-selector": "^4.0.0", 3586 - "property-information": "^7.0.0", 3587 - "space-separated-tokens": "^2.0.0" 3588 - }, 3589 - "funding": { 3590 - "type": "opencollective", 3591 - "url": "https://opencollective.com/unified" 3592 - } 3593 - }, 3594 - "node_modules/highlight.js": { 3595 - "version": "11.11.1", 3596 - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.11.1.tgz", 3597 - "integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==", 3598 - "license": "BSD-3-Clause", 3599 - "engines": { 3600 - "node": ">=12.0.0" 3601 - } 3602 - }, 3603 - "node_modules/html-void-elements": { 3604 - "version": "3.0.0", 3605 - "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", 3606 - "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", 3607 - "license": "MIT", 3608 - "funding": { 3609 - "type": "github", 3610 - "url": "https://github.com/sponsors/wooorm" 3611 - } 3612 - }, 3613 - "node_modules/htmlparser2": { 3614 - "version": "8.0.2", 3615 - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", 3616 - "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", 3617 - "funding": [ 3618 - "https://github.com/fb55/htmlparser2?sponsor=1", 3619 - { 3620 - "type": "github", 3621 - "url": "https://github.com/sponsors/fb55" 3622 - } 3623 - ], 3624 - "license": "MIT", 3625 - "dependencies": { 3626 - "domelementtype": "^2.3.0", 3627 - "domhandler": "^5.0.3", 3628 - "domutils": "^3.0.1", 3629 - "entities": "^4.4.0" 3630 - } 3631 - }, 3632 - "node_modules/https-proxy-agent": { 3633 - "version": "7.0.6", 3634 - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", 3635 - "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", 3636 - "dev": true, 3637 - "license": "MIT", 3638 - "dependencies": { 3639 - "agent-base": "^7.1.2", 3640 - "debug": "4" 3641 - }, 3642 - "engines": { 3643 - "node": ">= 14" 3644 - } 3645 - }, 3646 - "node_modules/ignore": { 3647 - "version": "5.3.2", 3648 - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 3649 - "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 3650 - "dev": true, 3651 - "license": "MIT", 3652 - "engines": { 3653 - "node": ">= 4" 3654 - } 3655 - }, 3656 - "node_modules/import-fresh": { 3657 - "version": "3.3.1", 3658 - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", 3659 - "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", 3660 - "dev": true, 3661 - "license": "MIT", 3662 - "dependencies": { 3663 - "parent-module": "^1.0.0", 3664 - "resolve-from": "^4.0.0" 3665 - }, 3666 - "engines": { 3667 - "node": ">=6" 3668 - }, 3669 - "funding": { 3670 - "url": "https://github.com/sponsors/sindresorhus" 3671 - } 3672 - }, 3673 - "node_modules/import-fresh/node_modules/resolve-from": { 3674 - "version": "4.0.0", 3675 - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3676 - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3677 - "dev": true, 3678 - "license": "MIT", 3679 - "engines": { 3680 - "node": ">=4" 3681 - } 3682 - }, 3683 - "node_modules/imurmurhash": { 3684 - "version": "0.1.4", 3685 - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 3686 - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 3687 - "dev": true, 3688 - "license": "MIT", 3689 - "engines": { 3690 - "node": ">=0.8.19" 3691 - } 3692 - }, 3693 - "node_modules/is-binary-path": { 3694 - "version": "2.1.0", 3695 - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 3696 - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 3697 - "dev": true, 3698 - "license": "MIT", 3699 - "dependencies": { 3700 - "binary-extensions": "^2.0.0" 3701 - }, 3702 - "engines": { 3703 - "node": ">=8" 3704 - } 3705 - }, 3706 - "node_modules/is-core-module": { 3707 - "version": "2.16.1", 3708 - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", 3709 - "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", 3710 - "license": "MIT", 3711 - "dependencies": { 3712 - "hasown": "^2.0.2" 3713 - }, 3714 - "engines": { 3715 - "node": ">= 0.4" 3716 - }, 3717 - "funding": { 3718 - "url": "https://github.com/sponsors/ljharb" 3719 - } 3720 - }, 3721 - "node_modules/is-extglob": { 3722 - "version": "2.1.1", 3723 - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 3724 - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 3725 - "dev": true, 3726 - "license": "MIT", 3727 - "engines": { 3728 - "node": ">=0.10.0" 3729 - } 3730 - }, 3731 - "node_modules/is-fullwidth-code-point": { 3732 - "version": "3.0.0", 3733 - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 3734 - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 3735 - "dev": true, 3736 - "license": "MIT", 3737 - "engines": { 3738 - "node": ">=8" 3739 - } 3740 - }, 3741 - "node_modules/is-glob": { 3742 - "version": "4.0.3", 3743 - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 3744 - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 3745 - "dev": true, 3746 - "license": "MIT", 3747 - "dependencies": { 3748 - "is-extglob": "^2.1.1" 3749 - }, 3750 - "engines": { 3751 - "node": ">=0.10.0" 3752 - } 3753 - }, 3754 - "node_modules/is-number": { 3755 - "version": "7.0.0", 3756 - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 3757 - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 3758 - "dev": true, 3759 - "license": "MIT", 3760 - "engines": { 3761 - "node": ">=0.12.0" 3762 - } 3763 - }, 3764 - "node_modules/is-plain-obj": { 3765 - "version": "4.1.0", 3766 - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", 3767 - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", 3768 - "license": "MIT", 3769 - "engines": { 3770 - "node": ">=12" 3771 - }, 3772 - "funding": { 3773 - "url": "https://github.com/sponsors/sindresorhus" 3774 - } 3775 - }, 3776 - "node_modules/is-plain-object": { 3777 - "version": "5.0.0", 3778 - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", 3779 - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", 3780 - "license": "MIT", 3781 - "engines": { 3782 - "node": ">=0.10.0" 3783 - } 3784 - }, 3785 - "node_modules/is-reference": { 3786 - "version": "3.0.3", 3787 - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.3.tgz", 3788 - "integrity": "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==", 3789 - "dev": true, 3790 - "license": "MIT", 3791 - "dependencies": { 3792 - "@types/estree": "^1.0.6" 3793 - } 3794 - }, 3795 - "node_modules/isexe": { 3796 - "version": "2.0.0", 3797 - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 3798 - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 3799 - "dev": true, 3800 - "license": "ISC" 3801 - }, 3802 - "node_modules/jackspeak": { 3803 - "version": "3.4.3", 3804 - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", 3805 - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", 3806 - "dev": true, 3807 - "license": "BlueOak-1.0.0", 3808 - "dependencies": { 3809 - "@isaacs/cliui": "^8.0.2" 3810 - }, 3811 - "funding": { 3812 - "url": "https://github.com/sponsors/isaacs" 3813 - }, 3814 - "optionalDependencies": { 3815 - "@pkgjs/parseargs": "^0.11.0" 3816 - } 3817 - }, 3818 - "node_modules/jiti": { 3819 - "version": "1.21.7", 3820 - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", 3821 - "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", 3822 - "dev": true, 3823 - "license": "MIT", 3824 - "bin": { 3825 - "jiti": "bin/jiti.js" 3826 - } 3827 - }, 3828 - "node_modules/js-yaml": { 3829 - "version": "4.1.0", 3830 - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 3831 - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 3832 - "dev": true, 3833 - "license": "MIT", 3834 - "dependencies": { 3835 - "argparse": "^2.0.1" 3836 - }, 3837 - "bin": { 3838 - "js-yaml": "bin/js-yaml.js" 3839 - } 3840 - }, 3841 - "node_modules/json-buffer": { 3842 - "version": "3.0.1", 3843 - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 3844 - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 3845 - "dev": true, 3846 - "license": "MIT" 3847 - }, 3848 - "node_modules/json-schema-traverse": { 3849 - "version": "0.4.1", 3850 - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 3851 - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 3852 - "dev": true, 3853 - "license": "MIT" 3854 - }, 3855 - "node_modules/json-stable-stringify-without-jsonify": { 3856 - "version": "1.0.1", 3857 - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 3858 - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 3859 - "dev": true, 3860 - "license": "MIT" 3861 - }, 3862 - "node_modules/katex": { 3863 - "version": "0.16.24", 3864 - "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.24.tgz", 3865 - "integrity": "sha512-g/PXUTqqppA6XL2beQtIxoYBPdO1u3vnc2FHMQqJ53n9L5faHDm7UYa+tlYvnNQRuSX6eVusF30/v7ADkcFC8A==", 3866 - "funding": [ 3867 - "https://opencollective.com/katex", 3868 - "https://github.com/sponsors/katex" 3869 - ], 3870 - "license": "MIT", 3871 - "dependencies": { 3872 - "commander": "^8.3.0" 3873 - }, 3874 - "bin": { 3875 - "katex": "cli.js" 3876 - } 3877 - }, 3878 - "node_modules/keyv": { 3879 - "version": "4.5.4", 3880 - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 3881 - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 3882 - "dev": true, 3883 - "license": "MIT", 3884 - "dependencies": { 3885 - "json-buffer": "3.0.1" 3886 - } 3887 - }, 3888 - "node_modules/kleur": { 3889 - "version": "4.1.5", 3890 - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", 3891 - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", 3892 - "dev": true, 3893 - "license": "MIT", 3894 - "engines": { 3895 - "node": ">=6" 3896 - } 3897 - }, 3898 - "node_modules/known-css-properties": { 3899 - "version": "0.37.0", 3900 - "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.37.0.tgz", 3901 - "integrity": "sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ==", 3902 - "dev": true, 3903 - "license": "MIT" 3904 - }, 3905 - "node_modules/levn": { 3906 - "version": "0.4.1", 3907 - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 3908 - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 3909 - "dev": true, 3910 - "license": "MIT", 3911 - "dependencies": { 3912 - "prelude-ls": "^1.2.1", 3913 - "type-check": "~0.4.0" 3914 - }, 3915 - "engines": { 3916 - "node": ">= 0.8.0" 3917 - } 3918 - }, 3919 - "node_modules/lilconfig": { 3920 - "version": "3.1.3", 3921 - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", 3922 - "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", 3923 - "dev": true, 3924 - "license": "MIT", 3925 - "engines": { 3926 - "node": ">=14" 3927 - }, 3928 - "funding": { 3929 - "url": "https://github.com/sponsors/antonk52" 3930 - } 3931 - }, 3932 - "node_modules/lines-and-columns": { 3933 - "version": "1.2.4", 3934 - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 3935 - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 3936 - "dev": true, 3937 - "license": "MIT" 3938 - }, 3939 - "node_modules/locate-character": { 3940 - "version": "3.0.0", 3941 - "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", 3942 - "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", 3943 - "dev": true, 3944 - "license": "MIT" 3945 - }, 3946 - "node_modules/locate-path": { 3947 - "version": "6.0.0", 3948 - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 3949 - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 3950 - "dev": true, 3951 - "license": "MIT", 3952 - "dependencies": { 3953 - "p-locate": "^5.0.0" 3954 - }, 3955 - "engines": { 3956 - "node": ">=10" 3957 - }, 3958 - "funding": { 3959 - "url": "https://github.com/sponsors/sindresorhus" 3960 - } 3961 - }, 3962 - "node_modules/lodash.memoize": { 3963 - "version": "4.1.2", 3964 - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", 3965 - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", 3966 - "dev": true, 3967 - "license": "MIT" 3968 - }, 3969 - "node_modules/lodash.merge": { 3970 - "version": "4.6.2", 3971 - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 3972 - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 3973 - "dev": true, 3974 - "license": "MIT" 3975 - }, 3976 - "node_modules/lodash.uniq": { 3977 - "version": "4.5.0", 3978 - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", 3979 - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", 3980 - "dev": true, 3981 - "license": "MIT" 3982 - }, 3983 - "node_modules/longest-streak": { 3984 - "version": "3.1.0", 3985 - "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", 3986 - "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", 3987 - "license": "MIT", 3988 - "funding": { 3989 - "type": "github", 3990 - "url": "https://github.com/sponsors/wooorm" 3991 - } 3992 - }, 3993 - "node_modules/lowlight": { 3994 - "version": "3.3.0", 3995 - "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-3.3.0.tgz", 3996 - "integrity": "sha512-0JNhgFoPvP6U6lE/UdVsSq99tn6DhjjpAj5MxG49ewd2mOBVtwWYIT8ClyABhq198aXXODMU6Ox8DrGy/CpTZQ==", 3997 - "license": "MIT", 3998 - "dependencies": { 3999 - "@types/hast": "^3.0.0", 4000 - "devlop": "^1.0.0", 4001 - "highlight.js": "~11.11.0" 4002 - }, 4003 - "funding": { 4004 - "type": "github", 4005 - "url": "https://github.com/sponsors/wooorm" 4006 - } 4007 - }, 4008 - "node_modules/lru-cache": { 4009 - "version": "10.4.3", 4010 - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 4011 - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", 4012 - "dev": true, 4013 - "license": "ISC" 4014 - }, 4015 - "node_modules/magic-string": { 4016 - "version": "0.30.19", 4017 - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.19.tgz", 4018 - "integrity": "sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==", 4019 - "dev": true, 4020 - "license": "MIT", 4021 - "dependencies": { 4022 - "@jridgewell/sourcemap-codec": "^1.5.5" 4023 - } 4024 - }, 4025 - "node_modules/markdown-table": { 4026 - "version": "3.0.4", 4027 - "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", 4028 - "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", 4029 - "license": "MIT", 4030 - "funding": { 4031 - "type": "github", 4032 - "url": "https://github.com/sponsors/wooorm" 4033 - } 4034 - }, 4035 - "node_modules/mdast-util-find-and-replace": { 4036 - "version": "3.0.2", 4037 - "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", 4038 - "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==", 4039 - "license": "MIT", 4040 - "dependencies": { 4041 - "@types/mdast": "^4.0.0", 4042 - "escape-string-regexp": "^5.0.0", 4043 - "unist-util-is": "^6.0.0", 4044 - "unist-util-visit-parents": "^6.0.0" 4045 - }, 4046 - "funding": { 4047 - "type": "opencollective", 4048 - "url": "https://opencollective.com/unified" 4049 - } 4050 - }, 4051 - "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": { 4052 - "version": "5.0.0", 4053 - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", 4054 - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", 4055 - "license": "MIT", 4056 - "engines": { 4057 - "node": ">=12" 4058 - }, 4059 - "funding": { 4060 - "url": "https://github.com/sponsors/sindresorhus" 4061 - } 4062 - }, 4063 - "node_modules/mdast-util-from-markdown": { 4064 - "version": "2.0.2", 4065 - "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", 4066 - "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==", 4067 - "license": "MIT", 4068 - "dependencies": { 4069 - "@types/mdast": "^4.0.0", 4070 - "@types/unist": "^3.0.0", 4071 - "decode-named-character-reference": "^1.0.0", 4072 - "devlop": "^1.0.0", 4073 - "mdast-util-to-string": "^4.0.0", 4074 - "micromark": "^4.0.0", 4075 - "micromark-util-decode-numeric-character-reference": "^2.0.0", 4076 - "micromark-util-decode-string": "^2.0.0", 4077 - "micromark-util-normalize-identifier": "^2.0.0", 4078 - "micromark-util-symbol": "^2.0.0", 4079 - "micromark-util-types": "^2.0.0", 4080 - "unist-util-stringify-position": "^4.0.0" 4081 - }, 4082 - "funding": { 4083 - "type": "opencollective", 4084 - "url": "https://opencollective.com/unified" 4085 - } 4086 - }, 4087 - "node_modules/mdast-util-gfm": { 4088 - "version": "3.1.0", 4089 - "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", 4090 - "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==", 4091 - "license": "MIT", 4092 - "dependencies": { 4093 - "mdast-util-from-markdown": "^2.0.0", 4094 - "mdast-util-gfm-autolink-literal": "^2.0.0", 4095 - "mdast-util-gfm-footnote": "^2.0.0", 4096 - "mdast-util-gfm-strikethrough": "^2.0.0", 4097 - "mdast-util-gfm-table": "^2.0.0", 4098 - "mdast-util-gfm-task-list-item": "^2.0.0", 4099 - "mdast-util-to-markdown": "^2.0.0" 4100 - }, 4101 - "funding": { 4102 - "type": "opencollective", 4103 - "url": "https://opencollective.com/unified" 4104 - } 4105 - }, 4106 - "node_modules/mdast-util-gfm-autolink-literal": { 4107 - "version": "2.0.1", 4108 - "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz", 4109 - "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==", 4110 - "license": "MIT", 4111 - "dependencies": { 4112 - "@types/mdast": "^4.0.0", 4113 - "ccount": "^2.0.0", 4114 - "devlop": "^1.0.0", 4115 - "mdast-util-find-and-replace": "^3.0.0", 4116 - "micromark-util-character": "^2.0.0" 4117 - }, 4118 - "funding": { 4119 - "type": "opencollective", 4120 - "url": "https://opencollective.com/unified" 4121 - } 4122 - }, 4123 - "node_modules/mdast-util-gfm-footnote": { 4124 - "version": "2.1.0", 4125 - "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", 4126 - "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==", 4127 - "license": "MIT", 4128 - "dependencies": { 4129 - "@types/mdast": "^4.0.0", 4130 - "devlop": "^1.1.0", 4131 - "mdast-util-from-markdown": "^2.0.0", 4132 - "mdast-util-to-markdown": "^2.0.0", 4133 - "micromark-util-normalize-identifier": "^2.0.0" 4134 - }, 4135 - "funding": { 4136 - "type": "opencollective", 4137 - "url": "https://opencollective.com/unified" 4138 - } 4139 - }, 4140 - "node_modules/mdast-util-gfm-strikethrough": { 4141 - "version": "2.0.0", 4142 - "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", 4143 - "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", 4144 - "license": "MIT", 4145 - "dependencies": { 4146 - "@types/mdast": "^4.0.0", 4147 - "mdast-util-from-markdown": "^2.0.0", 4148 - "mdast-util-to-markdown": "^2.0.0" 4149 - }, 4150 - "funding": { 4151 - "type": "opencollective", 4152 - "url": "https://opencollective.com/unified" 4153 - } 4154 - }, 4155 - "node_modules/mdast-util-gfm-table": { 4156 - "version": "2.0.0", 4157 - "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", 4158 - "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", 4159 - "license": "MIT", 4160 - "dependencies": { 4161 - "@types/mdast": "^4.0.0", 4162 - "devlop": "^1.0.0", 4163 - "markdown-table": "^3.0.0", 4164 - "mdast-util-from-markdown": "^2.0.0", 4165 - "mdast-util-to-markdown": "^2.0.0" 4166 - }, 4167 - "funding": { 4168 - "type": "opencollective", 4169 - "url": "https://opencollective.com/unified" 4170 - } 4171 - }, 4172 - "node_modules/mdast-util-gfm-task-list-item": { 4173 - "version": "2.0.0", 4174 - "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", 4175 - "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", 4176 - "license": "MIT", 4177 - "dependencies": { 4178 - "@types/mdast": "^4.0.0", 4179 - "devlop": "^1.0.0", 4180 - "mdast-util-from-markdown": "^2.0.0", 4181 - "mdast-util-to-markdown": "^2.0.0" 4182 - }, 4183 - "funding": { 4184 - "type": "opencollective", 4185 - "url": "https://opencollective.com/unified" 4186 - } 4187 - }, 4188 - "node_modules/mdast-util-math": { 4189 - "version": "3.0.0", 4190 - "resolved": "https://registry.npmjs.org/mdast-util-math/-/mdast-util-math-3.0.0.tgz", 4191 - "integrity": "sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w==", 4192 - "license": "MIT", 4193 - "dependencies": { 4194 - "@types/hast": "^3.0.0", 4195 - "@types/mdast": "^4.0.0", 4196 - "devlop": "^1.0.0", 4197 - "longest-streak": "^3.0.0", 4198 - "mdast-util-from-markdown": "^2.0.0", 4199 - "mdast-util-to-markdown": "^2.1.0", 4200 - "unist-util-remove-position": "^5.0.0" 4201 - }, 4202 - "funding": { 4203 - "type": "opencollective", 4204 - "url": "https://opencollective.com/unified" 4205 - } 4206 - }, 4207 - "node_modules/mdast-util-newline-to-break": { 4208 - "version": "2.0.0", 4209 - "resolved": "https://registry.npmjs.org/mdast-util-newline-to-break/-/mdast-util-newline-to-break-2.0.0.tgz", 4210 - "integrity": "sha512-MbgeFca0hLYIEx/2zGsszCSEJJ1JSCdiY5xQxRcLDDGa8EPvlLPupJ4DSajbMPAnC0je8jfb9TiUATnxxrHUog==", 4211 - "license": "MIT", 4212 - "dependencies": { 4213 - "@types/mdast": "^4.0.0", 4214 - "mdast-util-find-and-replace": "^3.0.0" 4215 - }, 4216 - "funding": { 4217 - "type": "opencollective", 4218 - "url": "https://opencollective.com/unified" 4219 - } 4220 - }, 4221 - "node_modules/mdast-util-phrasing": { 4222 - "version": "4.1.0", 4223 - "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", 4224 - "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", 4225 - "license": "MIT", 4226 - "dependencies": { 4227 - "@types/mdast": "^4.0.0", 4228 - "unist-util-is": "^6.0.0" 4229 - }, 4230 - "funding": { 4231 - "type": "opencollective", 4232 - "url": "https://opencollective.com/unified" 4233 - } 4234 - }, 4235 - "node_modules/mdast-util-to-hast": { 4236 - "version": "13.2.0", 4237 - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz", 4238 - "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==", 4239 - "license": "MIT", 4240 - "dependencies": { 4241 - "@types/hast": "^3.0.0", 4242 - "@types/mdast": "^4.0.0", 4243 - "@ungap/structured-clone": "^1.0.0", 4244 - "devlop": "^1.0.0", 4245 - "micromark-util-sanitize-uri": "^2.0.0", 4246 - "trim-lines": "^3.0.0", 4247 - "unist-util-position": "^5.0.0", 4248 - "unist-util-visit": "^5.0.0", 4249 - "vfile": "^6.0.0" 4250 - }, 4251 - "funding": { 4252 - "type": "opencollective", 4253 - "url": "https://opencollective.com/unified" 4254 - } 4255 - }, 4256 - "node_modules/mdast-util-to-markdown": { 4257 - "version": "2.1.2", 4258 - "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", 4259 - "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", 4260 - "license": "MIT", 4261 - "dependencies": { 4262 - "@types/mdast": "^4.0.0", 4263 - "@types/unist": "^3.0.0", 4264 - "longest-streak": "^3.0.0", 4265 - "mdast-util-phrasing": "^4.0.0", 4266 - "mdast-util-to-string": "^4.0.0", 4267 - "micromark-util-classify-character": "^2.0.0", 4268 - "micromark-util-decode-string": "^2.0.0", 4269 - "unist-util-visit": "^5.0.0", 4270 - "zwitch": "^2.0.0" 4271 - }, 4272 - "funding": { 4273 - "type": "opencollective", 4274 - "url": "https://opencollective.com/unified" 4275 - } 4276 - }, 4277 - "node_modules/mdast-util-to-string": { 4278 - "version": "4.0.0", 4279 - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", 4280 - "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", 4281 - "license": "MIT", 4282 - "dependencies": { 4283 - "@types/mdast": "^4.0.0" 4284 - }, 4285 - "funding": { 4286 - "type": "opencollective", 4287 - "url": "https://opencollective.com/unified" 4288 - } 4289 - }, 4290 - "node_modules/mdn-data": { 4291 - "version": "2.12.2", 4292 - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz", 4293 - "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==", 4294 - "dev": true, 4295 - "license": "CC0-1.0" 4296 - }, 4297 - "node_modules/merge2": { 4298 - "version": "1.4.1", 4299 - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 4300 - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 4301 - "dev": true, 4302 - "license": "MIT", 4303 - "engines": { 4304 - "node": ">= 8" 4305 - } 4306 - }, 4307 - "node_modules/micromark": { 4308 - "version": "4.0.2", 4309 - "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", 4310 - "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", 4311 - "funding": [ 4312 - { 4313 - "type": "GitHub Sponsors", 4314 - "url": "https://github.com/sponsors/unifiedjs" 4315 - }, 4316 - { 4317 - "type": "OpenCollective", 4318 - "url": "https://opencollective.com/unified" 4319 - } 4320 - ], 4321 - "license": "MIT", 4322 - "dependencies": { 4323 - "@types/debug": "^4.0.0", 4324 - "debug": "^4.0.0", 4325 - "decode-named-character-reference": "^1.0.0", 4326 - "devlop": "^1.0.0", 4327 - "micromark-core-commonmark": "^2.0.0", 4328 - "micromark-factory-space": "^2.0.0", 4329 - "micromark-util-character": "^2.0.0", 4330 - "micromark-util-chunked": "^2.0.0", 4331 - "micromark-util-combine-extensions": "^2.0.0", 4332 - "micromark-util-decode-numeric-character-reference": "^2.0.0", 4333 - "micromark-util-encode": "^2.0.0", 4334 - "micromark-util-normalize-identifier": "^2.0.0", 4335 - "micromark-util-resolve-all": "^2.0.0", 4336 - "micromark-util-sanitize-uri": "^2.0.0", 4337 - "micromark-util-subtokenize": "^2.0.0", 4338 - "micromark-util-symbol": "^2.0.0", 4339 - "micromark-util-types": "^2.0.0" 4340 - } 4341 - }, 4342 - "node_modules/micromark-core-commonmark": { 4343 - "version": "2.0.3", 4344 - "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", 4345 - "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", 4346 - "funding": [ 4347 - { 4348 - "type": "GitHub Sponsors", 4349 - "url": "https://github.com/sponsors/unifiedjs" 4350 - }, 4351 - { 4352 - "type": "OpenCollective", 4353 - "url": "https://opencollective.com/unified" 4354 - } 4355 - ], 4356 - "license": "MIT", 4357 - "dependencies": { 4358 - "decode-named-character-reference": "^1.0.0", 4359 - "devlop": "^1.0.0", 4360 - "micromark-factory-destination": "^2.0.0", 4361 - "micromark-factory-label": "^2.0.0", 4362 - "micromark-factory-space": "^2.0.0", 4363 - "micromark-factory-title": "^2.0.0", 4364 - "micromark-factory-whitespace": "^2.0.0", 4365 - "micromark-util-character": "^2.0.0", 4366 - "micromark-util-chunked": "^2.0.0", 4367 - "micromark-util-classify-character": "^2.0.0", 4368 - "micromark-util-html-tag-name": "^2.0.0", 4369 - "micromark-util-normalize-identifier": "^2.0.0", 4370 - "micromark-util-resolve-all": "^2.0.0", 4371 - "micromark-util-subtokenize": "^2.0.0", 4372 - "micromark-util-symbol": "^2.0.0", 4373 - "micromark-util-types": "^2.0.0" 4374 - } 4375 - }, 4376 - "node_modules/micromark-extension-gfm": { 4377 - "version": "3.0.0", 4378 - "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", 4379 - "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", 4380 - "license": "MIT", 4381 - "dependencies": { 4382 - "micromark-extension-gfm-autolink-literal": "^2.0.0", 4383 - "micromark-extension-gfm-footnote": "^2.0.0", 4384 - "micromark-extension-gfm-strikethrough": "^2.0.0", 4385 - "micromark-extension-gfm-table": "^2.0.0", 4386 - "micromark-extension-gfm-tagfilter": "^2.0.0", 4387 - "micromark-extension-gfm-task-list-item": "^2.0.0", 4388 - "micromark-util-combine-extensions": "^2.0.0", 4389 - "micromark-util-types": "^2.0.0" 4390 - }, 4391 - "funding": { 4392 - "type": "opencollective", 4393 - "url": "https://opencollective.com/unified" 4394 - } 4395 - }, 4396 - "node_modules/micromark-extension-gfm-autolink-literal": { 4397 - "version": "2.1.0", 4398 - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", 4399 - "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==", 4400 - "license": "MIT", 4401 - "dependencies": { 4402 - "micromark-util-character": "^2.0.0", 4403 - "micromark-util-sanitize-uri": "^2.0.0", 4404 - "micromark-util-symbol": "^2.0.0", 4405 - "micromark-util-types": "^2.0.0" 4406 - }, 4407 - "funding": { 4408 - "type": "opencollective", 4409 - "url": "https://opencollective.com/unified" 4410 - } 4411 - }, 4412 - "node_modules/micromark-extension-gfm-footnote": { 4413 - "version": "2.1.0", 4414 - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", 4415 - "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==", 4416 - "license": "MIT", 4417 - "dependencies": { 4418 - "devlop": "^1.0.0", 4419 - "micromark-core-commonmark": "^2.0.0", 4420 - "micromark-factory-space": "^2.0.0", 4421 - "micromark-util-character": "^2.0.0", 4422 - "micromark-util-normalize-identifier": "^2.0.0", 4423 - "micromark-util-sanitize-uri": "^2.0.0", 4424 - "micromark-util-symbol": "^2.0.0", 4425 - "micromark-util-types": "^2.0.0" 4426 - }, 4427 - "funding": { 4428 - "type": "opencollective", 4429 - "url": "https://opencollective.com/unified" 4430 - } 4431 - }, 4432 - "node_modules/micromark-extension-gfm-strikethrough": { 4433 - "version": "2.1.0", 4434 - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", 4435 - "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==", 4436 - "license": "MIT", 4437 - "dependencies": { 4438 - "devlop": "^1.0.0", 4439 - "micromark-util-chunked": "^2.0.0", 4440 - "micromark-util-classify-character": "^2.0.0", 4441 - "micromark-util-resolve-all": "^2.0.0", 4442 - "micromark-util-symbol": "^2.0.0", 4443 - "micromark-util-types": "^2.0.0" 4444 - }, 4445 - "funding": { 4446 - "type": "opencollective", 4447 - "url": "https://opencollective.com/unified" 4448 - } 4449 - }, 4450 - "node_modules/micromark-extension-gfm-table": { 4451 - "version": "2.1.1", 4452 - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz", 4453 - "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==", 4454 - "license": "MIT", 4455 - "dependencies": { 4456 - "devlop": "^1.0.0", 4457 - "micromark-factory-space": "^2.0.0", 4458 - "micromark-util-character": "^2.0.0", 4459 - "micromark-util-symbol": "^2.0.0", 4460 - "micromark-util-types": "^2.0.0" 4461 - }, 4462 - "funding": { 4463 - "type": "opencollective", 4464 - "url": "https://opencollective.com/unified" 4465 - } 4466 - }, 4467 - "node_modules/micromark-extension-gfm-tagfilter": { 4468 - "version": "2.0.0", 4469 - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", 4470 - "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", 4471 - "license": "MIT", 4472 - "dependencies": { 4473 - "micromark-util-types": "^2.0.0" 4474 - }, 4475 - "funding": { 4476 - "type": "opencollective", 4477 - "url": "https://opencollective.com/unified" 4478 - } 4479 - }, 4480 - "node_modules/micromark-extension-gfm-task-list-item": { 4481 - "version": "2.1.0", 4482 - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", 4483 - "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==", 4484 - "license": "MIT", 4485 - "dependencies": { 4486 - "devlop": "^1.0.0", 4487 - "micromark-factory-space": "^2.0.0", 4488 - "micromark-util-character": "^2.0.0", 4489 - "micromark-util-symbol": "^2.0.0", 4490 - "micromark-util-types": "^2.0.0" 4491 - }, 4492 - "funding": { 4493 - "type": "opencollective", 4494 - "url": "https://opencollective.com/unified" 4495 - } 4496 - }, 4497 - "node_modules/micromark-extension-math": { 4498 - "version": "3.1.0", 4499 - "resolved": "https://registry.npmjs.org/micromark-extension-math/-/micromark-extension-math-3.1.0.tgz", 4500 - "integrity": "sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==", 4501 - "license": "MIT", 4502 - "dependencies": { 4503 - "@types/katex": "^0.16.0", 4504 - "devlop": "^1.0.0", 4505 - "katex": "^0.16.0", 4506 - "micromark-factory-space": "^2.0.0", 4507 - "micromark-util-character": "^2.0.0", 4508 - "micromark-util-symbol": "^2.0.0", 4509 - "micromark-util-types": "^2.0.0" 4510 - }, 4511 - "funding": { 4512 - "type": "opencollective", 4513 - "url": "https://opencollective.com/unified" 4514 - } 4515 - }, 4516 - "node_modules/micromark-factory-destination": { 4517 - "version": "2.0.1", 4518 - "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", 4519 - "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", 4520 - "funding": [ 4521 - { 4522 - "type": "GitHub Sponsors", 4523 - "url": "https://github.com/sponsors/unifiedjs" 4524 - }, 4525 - { 4526 - "type": "OpenCollective", 4527 - "url": "https://opencollective.com/unified" 4528 - } 4529 - ], 4530 - "license": "MIT", 4531 - "dependencies": { 4532 - "micromark-util-character": "^2.0.0", 4533 - "micromark-util-symbol": "^2.0.0", 4534 - "micromark-util-types": "^2.0.0" 4535 - } 4536 - }, 4537 - "node_modules/micromark-factory-label": { 4538 - "version": "2.0.1", 4539 - "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", 4540 - "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", 4541 - "funding": [ 4542 - { 4543 - "type": "GitHub Sponsors", 4544 - "url": "https://github.com/sponsors/unifiedjs" 4545 - }, 4546 - { 4547 - "type": "OpenCollective", 4548 - "url": "https://opencollective.com/unified" 4549 - } 4550 - ], 4551 - "license": "MIT", 4552 - "dependencies": { 4553 - "devlop": "^1.0.0", 4554 - "micromark-util-character": "^2.0.0", 4555 - "micromark-util-symbol": "^2.0.0", 4556 - "micromark-util-types": "^2.0.0" 4557 - } 4558 - }, 4559 - "node_modules/micromark-factory-space": { 4560 - "version": "2.0.1", 4561 - "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", 4562 - "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", 4563 - "funding": [ 4564 - { 4565 - "type": "GitHub Sponsors", 4566 - "url": "https://github.com/sponsors/unifiedjs" 4567 - }, 4568 - { 4569 - "type": "OpenCollective", 4570 - "url": "https://opencollective.com/unified" 4571 - } 4572 - ], 4573 - "license": "MIT", 4574 - "dependencies": { 4575 - "micromark-util-character": "^2.0.0", 4576 - "micromark-util-types": "^2.0.0" 4577 - } 4578 - }, 4579 - "node_modules/micromark-factory-title": { 4580 - "version": "2.0.1", 4581 - "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", 4582 - "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", 4583 - "funding": [ 4584 - { 4585 - "type": "GitHub Sponsors", 4586 - "url": "https://github.com/sponsors/unifiedjs" 4587 - }, 4588 - { 4589 - "type": "OpenCollective", 4590 - "url": "https://opencollective.com/unified" 4591 - } 4592 - ], 4593 - "license": "MIT", 4594 - "dependencies": { 4595 - "micromark-factory-space": "^2.0.0", 4596 - "micromark-util-character": "^2.0.0", 4597 - "micromark-util-symbol": "^2.0.0", 4598 - "micromark-util-types": "^2.0.0" 4599 - } 4600 - }, 4601 - "node_modules/micromark-factory-whitespace": { 4602 - "version": "2.0.1", 4603 - "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", 4604 - "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", 4605 - "funding": [ 4606 - { 4607 - "type": "GitHub Sponsors", 4608 - "url": "https://github.com/sponsors/unifiedjs" 4609 - }, 4610 - { 4611 - "type": "OpenCollective", 4612 - "url": "https://opencollective.com/unified" 4613 - } 4614 - ], 4615 - "license": "MIT", 4616 - "dependencies": { 4617 - "micromark-factory-space": "^2.0.0", 4618 - "micromark-util-character": "^2.0.0", 4619 - "micromark-util-symbol": "^2.0.0", 4620 - "micromark-util-types": "^2.0.0" 4621 - } 4622 - }, 4623 - "node_modules/micromark-util-character": { 4624 - "version": "2.1.1", 4625 - "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", 4626 - "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", 4627 - "funding": [ 4628 - { 4629 - "type": "GitHub Sponsors", 4630 - "url": "https://github.com/sponsors/unifiedjs" 4631 - }, 4632 - { 4633 - "type": "OpenCollective", 4634 - "url": "https://opencollective.com/unified" 4635 - } 4636 - ], 4637 - "license": "MIT", 4638 - "dependencies": { 4639 - "micromark-util-symbol": "^2.0.0", 4640 - "micromark-util-types": "^2.0.0" 4641 - } 4642 - }, 4643 - "node_modules/micromark-util-chunked": { 4644 - "version": "2.0.1", 4645 - "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", 4646 - "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", 4647 - "funding": [ 4648 - { 4649 - "type": "GitHub Sponsors", 4650 - "url": "https://github.com/sponsors/unifiedjs" 4651 - }, 4652 - { 4653 - "type": "OpenCollective", 4654 - "url": "https://opencollective.com/unified" 4655 - } 4656 - ], 4657 - "license": "MIT", 4658 - "dependencies": { 4659 - "micromark-util-symbol": "^2.0.0" 4660 - } 4661 - }, 4662 - "node_modules/micromark-util-classify-character": { 4663 - "version": "2.0.1", 4664 - "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", 4665 - "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", 4666 - "funding": [ 4667 - { 4668 - "type": "GitHub Sponsors", 4669 - "url": "https://github.com/sponsors/unifiedjs" 4670 - }, 4671 - { 4672 - "type": "OpenCollective", 4673 - "url": "https://opencollective.com/unified" 4674 - } 4675 - ], 4676 - "license": "MIT", 4677 - "dependencies": { 4678 - "micromark-util-character": "^2.0.0", 4679 - "micromark-util-symbol": "^2.0.0", 4680 - "micromark-util-types": "^2.0.0" 4681 - } 4682 - }, 4683 - "node_modules/micromark-util-combine-extensions": { 4684 - "version": "2.0.1", 4685 - "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", 4686 - "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", 4687 - "funding": [ 4688 - { 4689 - "type": "GitHub Sponsors", 4690 - "url": "https://github.com/sponsors/unifiedjs" 4691 - }, 4692 - { 4693 - "type": "OpenCollective", 4694 - "url": "https://opencollective.com/unified" 4695 - } 4696 - ], 4697 - "license": "MIT", 4698 - "dependencies": { 4699 - "micromark-util-chunked": "^2.0.0", 4700 - "micromark-util-types": "^2.0.0" 4701 - } 4702 - }, 4703 - "node_modules/micromark-util-decode-numeric-character-reference": { 4704 - "version": "2.0.2", 4705 - "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", 4706 - "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", 4707 - "funding": [ 4708 - { 4709 - "type": "GitHub Sponsors", 4710 - "url": "https://github.com/sponsors/unifiedjs" 4711 - }, 4712 - { 4713 - "type": "OpenCollective", 4714 - "url": "https://opencollective.com/unified" 4715 - } 4716 - ], 4717 - "license": "MIT", 4718 - "dependencies": { 4719 - "micromark-util-symbol": "^2.0.0" 4720 - } 4721 - }, 4722 - "node_modules/micromark-util-decode-string": { 4723 - "version": "2.0.1", 4724 - "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", 4725 - "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", 4726 - "funding": [ 4727 - { 4728 - "type": "GitHub Sponsors", 4729 - "url": "https://github.com/sponsors/unifiedjs" 4730 - }, 4731 - { 4732 - "type": "OpenCollective", 4733 - "url": "https://opencollective.com/unified" 4734 - } 4735 - ], 4736 - "license": "MIT", 4737 - "dependencies": { 4738 - "decode-named-character-reference": "^1.0.0", 4739 - "micromark-util-character": "^2.0.0", 4740 - "micromark-util-decode-numeric-character-reference": "^2.0.0", 4741 - "micromark-util-symbol": "^2.0.0" 4742 - } 4743 - }, 4744 - "node_modules/micromark-util-encode": { 4745 - "version": "2.0.1", 4746 - "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", 4747 - "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", 4748 - "funding": [ 4749 - { 4750 - "type": "GitHub Sponsors", 4751 - "url": "https://github.com/sponsors/unifiedjs" 4752 - }, 4753 - { 4754 - "type": "OpenCollective", 4755 - "url": "https://opencollective.com/unified" 4756 - } 4757 - ], 4758 - "license": "MIT" 4759 - }, 4760 - "node_modules/micromark-util-html-tag-name": { 4761 - "version": "2.0.1", 4762 - "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", 4763 - "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", 4764 - "funding": [ 4765 - { 4766 - "type": "GitHub Sponsors", 4767 - "url": "https://github.com/sponsors/unifiedjs" 4768 - }, 4769 - { 4770 - "type": "OpenCollective", 4771 - "url": "https://opencollective.com/unified" 4772 - } 4773 - ], 4774 - "license": "MIT" 4775 - }, 4776 - "node_modules/micromark-util-normalize-identifier": { 4777 - "version": "2.0.1", 4778 - "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", 4779 - "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", 4780 - "funding": [ 4781 - { 4782 - "type": "GitHub Sponsors", 4783 - "url": "https://github.com/sponsors/unifiedjs" 4784 - }, 4785 - { 4786 - "type": "OpenCollective", 4787 - "url": "https://opencollective.com/unified" 4788 - } 4789 - ], 4790 - "license": "MIT", 4791 - "dependencies": { 4792 - "micromark-util-symbol": "^2.0.0" 4793 - } 4794 - }, 4795 - "node_modules/micromark-util-resolve-all": { 4796 - "version": "2.0.1", 4797 - "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", 4798 - "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", 4799 - "funding": [ 4800 - { 4801 - "type": "GitHub Sponsors", 4802 - "url": "https://github.com/sponsors/unifiedjs" 4803 - }, 4804 - { 4805 - "type": "OpenCollective", 4806 - "url": "https://opencollective.com/unified" 4807 - } 4808 - ], 4809 - "license": "MIT", 4810 - "dependencies": { 4811 - "micromark-util-types": "^2.0.0" 4812 - } 4813 - }, 4814 - "node_modules/micromark-util-sanitize-uri": { 4815 - "version": "2.0.1", 4816 - "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", 4817 - "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", 4818 - "funding": [ 4819 - { 4820 - "type": "GitHub Sponsors", 4821 - "url": "https://github.com/sponsors/unifiedjs" 4822 - }, 4823 - { 4824 - "type": "OpenCollective", 4825 - "url": "https://opencollective.com/unified" 4826 - } 4827 - ], 4828 - "license": "MIT", 4829 - "dependencies": { 4830 - "micromark-util-character": "^2.0.0", 4831 - "micromark-util-encode": "^2.0.0", 4832 - "micromark-util-symbol": "^2.0.0" 4833 - } 4834 - }, 4835 - "node_modules/micromark-util-subtokenize": { 4836 - "version": "2.1.0", 4837 - "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", 4838 - "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", 4839 - "funding": [ 4840 - { 4841 - "type": "GitHub Sponsors", 4842 - "url": "https://github.com/sponsors/unifiedjs" 4843 - }, 4844 - { 4845 - "type": "OpenCollective", 4846 - "url": "https://opencollective.com/unified" 4847 - } 4848 - ], 4849 - "license": "MIT", 4850 - "dependencies": { 4851 - "devlop": "^1.0.0", 4852 - "micromark-util-chunked": "^2.0.0", 4853 - "micromark-util-symbol": "^2.0.0", 4854 - "micromark-util-types": "^2.0.0" 4855 - } 4856 - }, 4857 - "node_modules/micromark-util-symbol": { 4858 - "version": "2.0.1", 4859 - "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", 4860 - "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", 4861 - "funding": [ 4862 - { 4863 - "type": "GitHub Sponsors", 4864 - "url": "https://github.com/sponsors/unifiedjs" 4865 - }, 4866 - { 4867 - "type": "OpenCollective", 4868 - "url": "https://opencollective.com/unified" 4869 - } 4870 - ], 4871 - "license": "MIT" 4872 - }, 4873 - "node_modules/micromark-util-types": { 4874 - "version": "2.0.2", 4875 - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", 4876 - "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", 4877 - "funding": [ 4878 - { 4879 - "type": "GitHub Sponsors", 4880 - "url": "https://github.com/sponsors/unifiedjs" 4881 - }, 4882 - { 4883 - "type": "OpenCollective", 4884 - "url": "https://opencollective.com/unified" 4885 - } 4886 - ], 4887 - "license": "MIT" 4888 - }, 4889 - "node_modules/micromatch": { 4890 - "version": "4.0.8", 4891 - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 4892 - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 4893 - "dev": true, 4894 - "license": "MIT", 4895 - "dependencies": { 4896 - "braces": "^3.0.3", 4897 - "picomatch": "^2.3.1" 4898 - }, 4899 - "engines": { 4900 - "node": ">=8.6" 4901 - } 4902 - }, 4903 - "node_modules/micromatch/node_modules/picomatch": { 4904 - "version": "2.3.1", 4905 - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 4906 - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 4907 - "dev": true, 4908 - "license": "MIT", 4909 - "engines": { 4910 - "node": ">=8.6" 4911 - }, 4912 - "funding": { 4913 - "url": "https://github.com/sponsors/jonschlinkert" 4914 - } 4915 - }, 4916 - "node_modules/mini-svg-data-uri": { 4917 - "version": "1.4.4", 4918 - "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", 4919 - "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", 4920 - "dev": true, 4921 - "license": "MIT", 4922 - "bin": { 4923 - "mini-svg-data-uri": "cli.js" 4924 - } 4925 - }, 4926 - "node_modules/minimatch": { 4927 - "version": "3.1.2", 4928 - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 4929 - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 4930 - "dev": true, 4931 - "license": "ISC", 4932 - "dependencies": { 4933 - "brace-expansion": "^1.1.7" 4934 - }, 4935 - "engines": { 4936 - "node": "*" 4937 - } 4938 - }, 4939 - "node_modules/minipass": { 4940 - "version": "7.1.2", 4941 - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 4942 - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 4943 - "dev": true, 4944 - "license": "ISC", 4945 - "engines": { 4946 - "node": ">=16 || 14 >=14.17" 4947 - } 4948 - }, 4949 - "node_modules/minizlib": { 4950 - "version": "3.1.0", 4951 - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz", 4952 - "integrity": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==", 4953 - "dev": true, 4954 - "license": "MIT", 4955 - "dependencies": { 4956 - "minipass": "^7.1.2" 4957 - }, 4958 - "engines": { 4959 - "node": ">= 18" 4960 - } 4961 - }, 4962 - "node_modules/mri": { 4963 - "version": "1.2.0", 4964 - "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", 4965 - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", 4966 - "dev": true, 4967 - "license": "MIT", 4968 - "engines": { 4969 - "node": ">=4" 4970 - } 4971 - }, 4972 - "node_modules/mrmime": { 4973 - "version": "2.0.1", 4974 - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", 4975 - "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", 4976 - "dev": true, 4977 - "license": "MIT", 4978 - "engines": { 4979 - "node": ">=10" 4980 - } 4981 - }, 4982 - "node_modules/ms": { 4983 - "version": "2.1.3", 4984 - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 4985 - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 4986 - "license": "MIT" 4987 - }, 4988 - "node_modules/mz": { 4989 - "version": "2.7.0", 4990 - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 4991 - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 4992 - "dev": true, 4993 - "license": "MIT", 4994 - "dependencies": { 4995 - "any-promise": "^1.0.0", 4996 - "object-assign": "^4.0.1", 4997 - "thenify-all": "^1.0.0" 4998 - } 4999 - }, 5000 - "node_modules/nanoid": { 5001 - "version": "3.3.11", 5002 - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", 5003 - "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", 5004 - "funding": [ 5005 - { 5006 - "type": "github", 5007 - "url": "https://github.com/sponsors/ai" 5008 - } 5009 - ], 5010 - "license": "MIT", 5011 - "bin": { 5012 - "nanoid": "bin/nanoid.cjs" 5013 - }, 5014 - "engines": { 5015 - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 5016 - } 5017 - }, 5018 - "node_modules/natural-compare": { 5019 - "version": "1.4.0", 5020 - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 5021 - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 5022 - "dev": true, 5023 - "license": "MIT" 5024 - }, 5025 - "node_modules/node-emoji": { 5026 - "version": "2.2.0", 5027 - "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.2.0.tgz", 5028 - "integrity": "sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==", 5029 - "license": "MIT", 5030 - "dependencies": { 5031 - "@sindresorhus/is": "^4.6.0", 5032 - "char-regex": "^1.0.2", 5033 - "emojilib": "^2.4.0", 5034 - "skin-tone": "^2.0.0" 5035 - }, 5036 - "engines": { 5037 - "node": ">=18" 5038 - } 5039 - }, 5040 - "node_modules/node-fetch": { 5041 - "version": "2.7.0", 5042 - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 5043 - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 5044 - "dev": true, 5045 - "license": "MIT", 5046 - "dependencies": { 5047 - "whatwg-url": "^5.0.0" 5048 - }, 5049 - "engines": { 5050 - "node": "4.x || >=6.0.0" 5051 - }, 5052 - "peerDependencies": { 5053 - "encoding": "^0.1.0" 5054 - }, 5055 - "peerDependenciesMeta": { 5056 - "encoding": { 5057 - "optional": true 5058 - } 5059 - } 5060 - }, 5061 - "node_modules/node-gyp-build": { 5062 - "version": "4.8.4", 5063 - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", 5064 - "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", 5065 - "dev": true, 5066 - "license": "MIT", 5067 - "bin": { 5068 - "node-gyp-build": "bin.js", 5069 - "node-gyp-build-optional": "optional.js", 5070 - "node-gyp-build-test": "build-test.js" 5071 - } 5072 - }, 5073 - "node_modules/node-releases": { 5074 - "version": "2.0.23", 5075 - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.23.tgz", 5076 - "integrity": "sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==", 5077 - "dev": true, 5078 - "license": "MIT" 5079 - }, 5080 - "node_modules/nopt": { 5081 - "version": "8.1.0", 5082 - "resolved": "https://registry.npmjs.org/nopt/-/nopt-8.1.0.tgz", 5083 - "integrity": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==", 5084 - "dev": true, 5085 - "license": "ISC", 5086 - "dependencies": { 5087 - "abbrev": "^3.0.0" 5088 - }, 5089 - "bin": { 5090 - "nopt": "bin/nopt.js" 5091 - }, 5092 - "engines": { 5093 - "node": "^18.17.0 || >=20.5.0" 5094 - } 5095 - }, 5096 - "node_modules/normalize-path": { 5097 - "version": "3.0.0", 5098 - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 5099 - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 5100 - "dev": true, 5101 - "license": "MIT", 5102 - "engines": { 5103 - "node": ">=0.10.0" 5104 - } 5105 - }, 5106 - "node_modules/normalize-range": { 5107 - "version": "0.1.2", 5108 - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 5109 - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 5110 - "dev": true, 5111 - "license": "MIT", 5112 - "engines": { 5113 - "node": ">=0.10.0" 5114 - } 5115 - }, 5116 - "node_modules/nth-check": { 5117 - "version": "2.1.1", 5118 - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", 5119 - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", 5120 - "dev": true, 5121 - "license": "BSD-2-Clause", 5122 - "dependencies": { 5123 - "boolbase": "^1.0.0" 5124 - }, 5125 - "funding": { 5126 - "url": "https://github.com/fb55/nth-check?sponsor=1" 5127 - } 5128 - }, 5129 - "node_modules/object-assign": { 5130 - "version": "4.1.1", 5131 - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 5132 - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 5133 - "dev": true, 5134 - "license": "MIT", 5135 - "engines": { 5136 - "node": ">=0.10.0" 5137 - } 5138 - }, 5139 - "node_modules/object-hash": { 5140 - "version": "3.0.0", 5141 - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 5142 - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 5143 - "dev": true, 5144 - "license": "MIT", 5145 - "engines": { 5146 - "node": ">= 6" 5147 - } 5148 - }, 5149 - "node_modules/optionator": { 5150 - "version": "0.9.4", 5151 - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 5152 - "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 5153 - "dev": true, 5154 - "license": "MIT", 5155 - "dependencies": { 5156 - "deep-is": "^0.1.3", 5157 - "fast-levenshtein": "^2.0.6", 5158 - "levn": "^0.4.1", 5159 - "prelude-ls": "^1.2.1", 5160 - "type-check": "^0.4.0", 5161 - "word-wrap": "^1.2.5" 5162 - }, 5163 - "engines": { 5164 - "node": ">= 0.8.0" 5165 - } 5166 - }, 5167 - "node_modules/p-limit": { 5168 - "version": "3.1.0", 5169 - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 5170 - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 5171 - "dev": true, 5172 - "license": "MIT", 5173 - "dependencies": { 5174 - "yocto-queue": "^0.1.0" 5175 - }, 5176 - "engines": { 5177 - "node": ">=10" 5178 - }, 5179 - "funding": { 5180 - "url": "https://github.com/sponsors/sindresorhus" 5181 - } 5182 - }, 5183 - "node_modules/p-locate": { 5184 - "version": "5.0.0", 5185 - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 5186 - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 5187 - "dev": true, 5188 - "license": "MIT", 5189 - "dependencies": { 5190 - "p-limit": "^3.0.2" 5191 - }, 5192 - "engines": { 5193 - "node": ">=10" 5194 - }, 5195 - "funding": { 5196 - "url": "https://github.com/sponsors/sindresorhus" 5197 - } 5198 - }, 5199 - "node_modules/package-json-from-dist": { 5200 - "version": "1.0.1", 5201 - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", 5202 - "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", 5203 - "dev": true, 5204 - "license": "BlueOak-1.0.0" 5205 - }, 5206 - "node_modules/parent-module": { 5207 - "version": "1.0.1", 5208 - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 5209 - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 5210 - "dev": true, 5211 - "license": "MIT", 5212 - "dependencies": { 5213 - "callsites": "^3.0.0" 5214 - }, 5215 - "engines": { 5216 - "node": ">=6" 5217 - } 5218 - }, 5219 - "node_modules/parse-srcset": { 5220 - "version": "1.0.2", 5221 - "resolved": "https://registry.npmjs.org/parse-srcset/-/parse-srcset-1.0.2.tgz", 5222 - "integrity": "sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==", 5223 - "license": "MIT" 5224 - }, 5225 - "node_modules/parse5": { 5226 - "version": "7.3.0", 5227 - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", 5228 - "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", 5229 - "license": "MIT", 5230 - "dependencies": { 5231 - "entities": "^6.0.0" 5232 - }, 5233 - "funding": { 5234 - "url": "https://github.com/inikulin/parse5?sponsor=1" 5235 - } 5236 - }, 5237 - "node_modules/parse5/node_modules/entities": { 5238 - "version": "6.0.1", 5239 - "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", 5240 - "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", 5241 - "license": "BSD-2-Clause", 5242 - "engines": { 5243 - "node": ">=0.12" 5244 - }, 5245 - "funding": { 5246 - "url": "https://github.com/fb55/entities?sponsor=1" 5247 - } 5248 - }, 5249 - "node_modules/path-exists": { 5250 - "version": "4.0.0", 5251 - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 5252 - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 5253 - "dev": true, 5254 - "license": "MIT", 5255 - "engines": { 5256 - "node": ">=8" 5257 - } 5258 - }, 5259 - "node_modules/path-key": { 5260 - "version": "3.1.1", 5261 - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 5262 - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 5263 - "dev": true, 5264 - "license": "MIT", 5265 - "engines": { 5266 - "node": ">=8" 5267 - } 5268 - }, 5269 - "node_modules/path-parse": { 5270 - "version": "1.0.7", 5271 - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 5272 - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 5273 - "license": "MIT" 5274 - }, 5275 - "node_modules/path-scurry": { 5276 - "version": "1.11.1", 5277 - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 5278 - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 5279 - "dev": true, 5280 - "license": "BlueOak-1.0.0", 5281 - "dependencies": { 5282 - "lru-cache": "^10.2.0", 5283 - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 5284 - }, 5285 - "engines": { 5286 - "node": ">=16 || 14 >=14.18" 5287 - }, 5288 - "funding": { 5289 - "url": "https://github.com/sponsors/isaacs" 5290 - } 5291 - }, 5292 - "node_modules/picocolors": { 5293 - "version": "1.1.1", 5294 - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 5295 - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 5296 - "license": "ISC" 5297 - }, 5298 - "node_modules/picomatch": { 5299 - "version": "4.0.3", 5300 - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", 5301 - "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", 5302 - "dev": true, 5303 - "license": "MIT", 5304 - "engines": { 5305 - "node": ">=12" 5306 - }, 5307 - "funding": { 5308 - "url": "https://github.com/sponsors/jonschlinkert" 5309 - } 5310 - }, 5311 - "node_modules/pify": { 5312 - "version": "2.3.0", 5313 - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 5314 - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 5315 - "license": "MIT", 5316 - "engines": { 5317 - "node": ">=0.10.0" 5318 - } 5319 - }, 5320 - "node_modules/pirates": { 5321 - "version": "4.0.7", 5322 - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", 5323 - "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", 5324 - "dev": true, 5325 - "license": "MIT", 5326 - "engines": { 5327 - "node": ">= 6" 5328 - } 5329 - }, 5330 - "node_modules/postcss": { 5331 - "version": "8.5.6", 5332 - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", 5333 - "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", 5334 - "funding": [ 5335 - { 5336 - "type": "opencollective", 5337 - "url": "https://opencollective.com/postcss/" 5338 - }, 5339 - { 5340 - "type": "tidelift", 5341 - "url": "https://tidelift.com/funding/github/npm/postcss" 5342 - }, 5343 - { 5344 - "type": "github", 5345 - "url": "https://github.com/sponsors/ai" 5346 - } 5347 - ], 5348 - "license": "MIT", 5349 - "dependencies": { 5350 - "nanoid": "^3.3.11", 5351 - "picocolors": "^1.1.1", 5352 - "source-map-js": "^1.2.1" 5353 - }, 5354 - "engines": { 5355 - "node": "^10 || ^12 || >=14" 5356 - } 5357 - }, 5358 - "node_modules/postcss-calc": { 5359 - "version": "10.1.1", 5360 - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-10.1.1.tgz", 5361 - "integrity": "sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==", 5362 - "dev": true, 5363 - "license": "MIT", 5364 - "dependencies": { 5365 - "postcss-selector-parser": "^7.0.0", 5366 - "postcss-value-parser": "^4.2.0" 5367 - }, 5368 - "engines": { 5369 - "node": "^18.12 || ^20.9 || >=22.0" 5370 - }, 5371 - "peerDependencies": { 5372 - "postcss": "^8.4.38" 5373 - } 5374 - }, 5375 - "node_modules/postcss-calc/node_modules/postcss-selector-parser": { 5376 - "version": "7.1.0", 5377 - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", 5378 - "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", 5379 - "dev": true, 5380 - "license": "MIT", 5381 - "dependencies": { 5382 - "cssesc": "^3.0.0", 5383 - "util-deprecate": "^1.0.2" 5384 - }, 5385 - "engines": { 5386 - "node": ">=4" 5387 - } 5388 - }, 5389 - "node_modules/postcss-colormin": { 5390 - "version": "7.0.4", 5391 - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-7.0.4.tgz", 5392 - "integrity": "sha512-ziQuVzQZBROpKpfeDwmrG+Vvlr0YWmY/ZAk99XD+mGEBuEojoFekL41NCsdhyNUtZI7DPOoIWIR7vQQK9xwluw==", 5393 - "dev": true, 5394 - "license": "MIT", 5395 - "dependencies": { 5396 - "browserslist": "^4.25.1", 5397 - "caniuse-api": "^3.0.0", 5398 - "colord": "^2.9.3", 5399 - "postcss-value-parser": "^4.2.0" 5400 - }, 5401 - "engines": { 5402 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5403 - }, 5404 - "peerDependencies": { 5405 - "postcss": "^8.4.32" 5406 - } 5407 - }, 5408 - "node_modules/postcss-convert-values": { 5409 - "version": "7.0.7", 5410 - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-7.0.7.tgz", 5411 - "integrity": "sha512-HR9DZLN04Xbe6xugRH6lS4ZQH2zm/bFh/ZyRkpedZozhvh+awAfbA0P36InO4fZfDhvYfNJeNvlTf1sjwGbw/A==", 5412 - "dev": true, 5413 - "license": "MIT", 5414 - "dependencies": { 5415 - "browserslist": "^4.25.1", 5416 - "postcss-value-parser": "^4.2.0" 5417 - }, 5418 - "engines": { 5419 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5420 - }, 5421 - "peerDependencies": { 5422 - "postcss": "^8.4.32" 5423 - } 5424 - }, 5425 - "node_modules/postcss-discard-comments": { 5426 - "version": "7.0.4", 5427 - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-7.0.4.tgz", 5428 - "integrity": "sha512-6tCUoql/ipWwKtVP/xYiFf1U9QgJ0PUvxN7pTcsQ8Ns3Fnwq1pU5D5s1MhT/XySeLq6GXNvn37U46Ded0TckWg==", 5429 - "dev": true, 5430 - "license": "MIT", 5431 - "dependencies": { 5432 - "postcss-selector-parser": "^7.1.0" 5433 - }, 5434 - "engines": { 5435 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5436 - }, 5437 - "peerDependencies": { 5438 - "postcss": "^8.4.32" 5439 - } 5440 - }, 5441 - "node_modules/postcss-discard-comments/node_modules/postcss-selector-parser": { 5442 - "version": "7.1.0", 5443 - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", 5444 - "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", 5445 - "dev": true, 5446 - "license": "MIT", 5447 - "dependencies": { 5448 - "cssesc": "^3.0.0", 5449 - "util-deprecate": "^1.0.2" 5450 - }, 5451 - "engines": { 5452 - "node": ">=4" 5453 - } 5454 - }, 5455 - "node_modules/postcss-discard-duplicates": { 5456 - "version": "7.0.2", 5457 - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.2.tgz", 5458 - "integrity": "sha512-eTonaQvPZ/3i1ASDHOKkYwAybiM45zFIc7KXils4mQmHLqIswXD9XNOKEVxtTFnsmwYzF66u4LMgSr0abDlh5w==", 5459 - "dev": true, 5460 - "license": "MIT", 5461 - "engines": { 5462 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5463 - }, 5464 - "peerDependencies": { 5465 - "postcss": "^8.4.32" 5466 - } 5467 - }, 5468 - "node_modules/postcss-discard-empty": { 5469 - "version": "7.0.1", 5470 - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-7.0.1.tgz", 5471 - "integrity": "sha512-cFrJKZvcg/uxB6Ijr4l6qmn3pXQBna9zyrPC+sK0zjbkDUZew+6xDltSF7OeB7rAtzaaMVYSdbod+sZOCWnMOg==", 5472 - "dev": true, 5473 - "license": "MIT", 5474 - "engines": { 5475 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5476 - }, 5477 - "peerDependencies": { 5478 - "postcss": "^8.4.32" 5479 - } 5480 - }, 5481 - "node_modules/postcss-discard-overridden": { 5482 - "version": "7.0.1", 5483 - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-7.0.1.tgz", 5484 - "integrity": "sha512-7c3MMjjSZ/qYrx3uc1940GSOzN1Iqjtlqe8uoSg+qdVPYyRb0TILSqqmtlSFuE4mTDECwsm397Ya7iXGzfF7lg==", 5485 - "dev": true, 5486 - "license": "MIT", 5487 - "engines": { 5488 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5489 - }, 5490 - "peerDependencies": { 5491 - "postcss": "^8.4.32" 5492 - } 5493 - }, 5494 - "node_modules/postcss-import": { 5495 - "version": "16.1.1", 5496 - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-16.1.1.tgz", 5497 - "integrity": "sha512-2xVS1NCZAfjtVdvXiyegxzJ447GyqCeEI5V7ApgQVOWnros1p5lGNovJNapwPpMombyFBfqDwt7AD3n2l0KOfQ==", 5498 - "license": "MIT", 5499 - "dependencies": { 5500 - "postcss-value-parser": "^4.0.0", 5501 - "read-cache": "^1.0.0", 5502 - "resolve": "^1.1.7" 5503 - }, 5504 - "engines": { 5505 - "node": ">=18.0.0" 5506 - }, 5507 - "peerDependencies": { 5508 - "postcss": "^8.0.0" 5509 - } 5510 - }, 5511 - "node_modules/postcss-js": { 5512 - "version": "4.1.0", 5513 - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.1.0.tgz", 5514 - "integrity": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==", 5515 - "dev": true, 5516 - "funding": [ 5517 - { 5518 - "type": "opencollective", 5519 - "url": "https://opencollective.com/postcss/" 5520 - }, 5521 - { 5522 - "type": "github", 5523 - "url": "https://github.com/sponsors/ai" 5524 - } 5525 - ], 5526 - "license": "MIT", 5527 - "dependencies": { 5528 - "camelcase-css": "^2.0.1" 5529 - }, 5530 - "engines": { 5531 - "node": "^12 || ^14 || >= 16" 5532 - }, 5533 - "peerDependencies": { 5534 - "postcss": "^8.4.21" 5535 - } 5536 - }, 5537 - "node_modules/postcss-load-config": { 5538 - "version": "3.1.4", 5539 - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", 5540 - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", 5541 - "dev": true, 5542 - "license": "MIT", 5543 - "dependencies": { 5544 - "lilconfig": "^2.0.5", 5545 - "yaml": "^1.10.2" 5546 - }, 5547 - "engines": { 5548 - "node": ">= 10" 5549 - }, 5550 - "funding": { 5551 - "type": "opencollective", 5552 - "url": "https://opencollective.com/postcss/" 5553 - }, 5554 - "peerDependencies": { 5555 - "postcss": ">=8.0.9", 5556 - "ts-node": ">=9.0.0" 5557 - }, 5558 - "peerDependenciesMeta": { 5559 - "postcss": { 5560 - "optional": true 5561 - }, 5562 - "ts-node": { 5563 - "optional": true 5564 - } 5565 - } 5566 - }, 5567 - "node_modules/postcss-load-config/node_modules/lilconfig": { 5568 - "version": "2.1.0", 5569 - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 5570 - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 5571 - "dev": true, 5572 - "license": "MIT", 5573 - "engines": { 5574 - "node": ">=10" 5575 - } 5576 - }, 5577 - "node_modules/postcss-load-config/node_modules/yaml": { 5578 - "version": "1.10.2", 5579 - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", 5580 - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", 5581 - "dev": true, 5582 - "license": "ISC", 5583 - "engines": { 5584 - "node": ">= 6" 5585 - } 5586 - }, 5587 - "node_modules/postcss-merge-longhand": { 5588 - "version": "7.0.5", 5589 - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-7.0.5.tgz", 5590 - "integrity": "sha512-Kpu5v4Ys6QI59FxmxtNB/iHUVDn9Y9sYw66D6+SZoIk4QTz1prC4aYkhIESu+ieG1iylod1f8MILMs1Em3mmIw==", 5591 - "dev": true, 5592 - "license": "MIT", 5593 - "dependencies": { 5594 - "postcss-value-parser": "^4.2.0", 5595 - "stylehacks": "^7.0.5" 5596 - }, 5597 - "engines": { 5598 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5599 - }, 5600 - "peerDependencies": { 5601 - "postcss": "^8.4.32" 5602 - } 5603 - }, 5604 - "node_modules/postcss-merge-rules": { 5605 - "version": "7.0.6", 5606 - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-7.0.6.tgz", 5607 - "integrity": "sha512-2jIPT4Tzs8K87tvgCpSukRQ2jjd+hH6Bb8rEEOUDmmhOeTcqDg5fEFK8uKIu+Pvc3//sm3Uu6FRqfyv7YF7+BQ==", 5608 - "dev": true, 5609 - "license": "MIT", 5610 - "dependencies": { 5611 - "browserslist": "^4.25.1", 5612 - "caniuse-api": "^3.0.0", 5613 - "cssnano-utils": "^5.0.1", 5614 - "postcss-selector-parser": "^7.1.0" 5615 - }, 5616 - "engines": { 5617 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5618 - }, 5619 - "peerDependencies": { 5620 - "postcss": "^8.4.32" 5621 - } 5622 - }, 5623 - "node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { 5624 - "version": "7.1.0", 5625 - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", 5626 - "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", 5627 - "dev": true, 5628 - "license": "MIT", 5629 - "dependencies": { 5630 - "cssesc": "^3.0.0", 5631 - "util-deprecate": "^1.0.2" 5632 - }, 5633 - "engines": { 5634 - "node": ">=4" 5635 - } 5636 - }, 5637 - "node_modules/postcss-minify-font-values": { 5638 - "version": "7.0.1", 5639 - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-7.0.1.tgz", 5640 - "integrity": "sha512-2m1uiuJeTplll+tq4ENOQSzB8LRnSUChBv7oSyFLsJRtUgAAJGP6LLz0/8lkinTgxrmJSPOEhgY1bMXOQ4ZXhQ==", 5641 - "dev": true, 5642 - "license": "MIT", 5643 - "dependencies": { 5644 - "postcss-value-parser": "^4.2.0" 5645 - }, 5646 - "engines": { 5647 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5648 - }, 5649 - "peerDependencies": { 5650 - "postcss": "^8.4.32" 5651 - } 5652 - }, 5653 - "node_modules/postcss-minify-gradients": { 5654 - "version": "7.0.1", 5655 - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-7.0.1.tgz", 5656 - "integrity": "sha512-X9JjaysZJwlqNkJbUDgOclyG3jZEpAMOfof6PUZjPnPrePnPG62pS17CjdM32uT1Uq1jFvNSff9l7kNbmMSL2A==", 5657 - "dev": true, 5658 - "license": "MIT", 5659 - "dependencies": { 5660 - "colord": "^2.9.3", 5661 - "cssnano-utils": "^5.0.1", 5662 - "postcss-value-parser": "^4.2.0" 5663 - }, 5664 - "engines": { 5665 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5666 - }, 5667 - "peerDependencies": { 5668 - "postcss": "^8.4.32" 5669 - } 5670 - }, 5671 - "node_modules/postcss-minify-params": { 5672 - "version": "7.0.4", 5673 - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-7.0.4.tgz", 5674 - "integrity": "sha512-3OqqUddfH8c2e7M35W6zIwv7jssM/3miF9cbCSb1iJiWvtguQjlxZGIHK9JRmc8XAKmE2PFGtHSM7g/VcW97sw==", 5675 - "dev": true, 5676 - "license": "MIT", 5677 - "dependencies": { 5678 - "browserslist": "^4.25.1", 5679 - "cssnano-utils": "^5.0.1", 5680 - "postcss-value-parser": "^4.2.0" 5681 - }, 5682 - "engines": { 5683 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5684 - }, 5685 - "peerDependencies": { 5686 - "postcss": "^8.4.32" 5687 - } 5688 - }, 5689 - "node_modules/postcss-minify-selectors": { 5690 - "version": "7.0.5", 5691 - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-7.0.5.tgz", 5692 - "integrity": "sha512-x2/IvofHcdIrAm9Q+p06ZD1h6FPcQ32WtCRVodJLDR+WMn8EVHI1kvLxZuGKz/9EY5nAmI6lIQIrpo4tBy5+ug==", 5693 - "dev": true, 5694 - "license": "MIT", 5695 - "dependencies": { 5696 - "cssesc": "^3.0.0", 5697 - "postcss-selector-parser": "^7.1.0" 5698 - }, 5699 - "engines": { 5700 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5701 - }, 5702 - "peerDependencies": { 5703 - "postcss": "^8.4.32" 5704 - } 5705 - }, 5706 - "node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { 5707 - "version": "7.1.0", 5708 - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", 5709 - "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", 5710 - "dev": true, 5711 - "license": "MIT", 5712 - "dependencies": { 5713 - "cssesc": "^3.0.0", 5714 - "util-deprecate": "^1.0.2" 5715 - }, 5716 - "engines": { 5717 - "node": ">=4" 5718 - } 5719 - }, 5720 - "node_modules/postcss-nested": { 5721 - "version": "6.2.0", 5722 - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", 5723 - "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", 5724 - "dev": true, 5725 - "funding": [ 5726 - { 5727 - "type": "opencollective", 5728 - "url": "https://opencollective.com/postcss/" 5729 - }, 5730 - { 5731 - "type": "github", 5732 - "url": "https://github.com/sponsors/ai" 5733 - } 5734 - ], 5735 - "license": "MIT", 5736 - "dependencies": { 5737 - "postcss-selector-parser": "^6.1.1" 5738 - }, 5739 - "engines": { 5740 - "node": ">=12.0" 5741 - }, 5742 - "peerDependencies": { 5743 - "postcss": "^8.2.14" 5744 - } 5745 - }, 5746 - "node_modules/postcss-nested/node_modules/postcss-selector-parser": { 5747 - "version": "6.1.2", 5748 - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", 5749 - "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", 5750 - "dev": true, 5751 - "license": "MIT", 5752 - "dependencies": { 5753 - "cssesc": "^3.0.0", 5754 - "util-deprecate": "^1.0.2" 5755 - }, 5756 - "engines": { 5757 - "node": ">=4" 5758 - } 5759 - }, 5760 - "node_modules/postcss-normalize-charset": { 5761 - "version": "7.0.1", 5762 - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-7.0.1.tgz", 5763 - "integrity": "sha512-sn413ofhSQHlZFae//m9FTOfkmiZ+YQXsbosqOWRiVQncU2BA3daX3n0VF3cG6rGLSFVc5Di/yns0dFfh8NFgQ==", 5764 - "dev": true, 5765 - "license": "MIT", 5766 - "engines": { 5767 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5768 - }, 5769 - "peerDependencies": { 5770 - "postcss": "^8.4.32" 5771 - } 5772 - }, 5773 - "node_modules/postcss-normalize-display-values": { 5774 - "version": "7.0.1", 5775 - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-7.0.1.tgz", 5776 - "integrity": "sha512-E5nnB26XjSYz/mGITm6JgiDpAbVuAkzXwLzRZtts19jHDUBFxZ0BkXAehy0uimrOjYJbocby4FVswA/5noOxrQ==", 5777 - "dev": true, 5778 - "license": "MIT", 5779 - "dependencies": { 5780 - "postcss-value-parser": "^4.2.0" 5781 - }, 5782 - "engines": { 5783 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5784 - }, 5785 - "peerDependencies": { 5786 - "postcss": "^8.4.32" 5787 - } 5788 - }, 5789 - "node_modules/postcss-normalize-positions": { 5790 - "version": "7.0.1", 5791 - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-7.0.1.tgz", 5792 - "integrity": "sha512-pB/SzrIP2l50ZIYu+yQZyMNmnAcwyYb9R1fVWPRxm4zcUFCY2ign7rcntGFuMXDdd9L2pPNUgoODDk91PzRZuQ==", 5793 - "dev": true, 5794 - "license": "MIT", 5795 - "dependencies": { 5796 - "postcss-value-parser": "^4.2.0" 5797 - }, 5798 - "engines": { 5799 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5800 - }, 5801 - "peerDependencies": { 5802 - "postcss": "^8.4.32" 5803 - } 5804 - }, 5805 - "node_modules/postcss-normalize-repeat-style": { 5806 - "version": "7.0.1", 5807 - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-7.0.1.tgz", 5808 - "integrity": "sha512-NsSQJ8zj8TIDiF0ig44Byo3Jk9e4gNt9x2VIlJudnQQ5DhWAHJPF4Tr1ITwyHio2BUi/I6Iv0HRO7beHYOloYQ==", 5809 - "dev": true, 5810 - "license": "MIT", 5811 - "dependencies": { 5812 - "postcss-value-parser": "^4.2.0" 5813 - }, 5814 - "engines": { 5815 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5816 - }, 5817 - "peerDependencies": { 5818 - "postcss": "^8.4.32" 5819 - } 5820 - }, 5821 - "node_modules/postcss-normalize-string": { 5822 - "version": "7.0.1", 5823 - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-7.0.1.tgz", 5824 - "integrity": "sha512-QByrI7hAhsoze992kpbMlJSbZ8FuCEc1OT9EFbZ6HldXNpsdpZr+YXC5di3UEv0+jeZlHbZcoCADgb7a+lPmmQ==", 5825 - "dev": true, 5826 - "license": "MIT", 5827 - "dependencies": { 5828 - "postcss-value-parser": "^4.2.0" 5829 - }, 5830 - "engines": { 5831 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5832 - }, 5833 - "peerDependencies": { 5834 - "postcss": "^8.4.32" 5835 - } 5836 - }, 5837 - "node_modules/postcss-normalize-timing-functions": { 5838 - "version": "7.0.1", 5839 - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-7.0.1.tgz", 5840 - "integrity": "sha512-bHifyuuSNdKKsnNJ0s8fmfLMlvsQwYVxIoUBnowIVl2ZAdrkYQNGVB4RxjfpvkMjipqvbz0u7feBZybkl/6NJg==", 5841 - "dev": true, 5842 - "license": "MIT", 5843 - "dependencies": { 5844 - "postcss-value-parser": "^4.2.0" 5845 - }, 5846 - "engines": { 5847 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5848 - }, 5849 - "peerDependencies": { 5850 - "postcss": "^8.4.32" 5851 - } 5852 - }, 5853 - "node_modules/postcss-normalize-unicode": { 5854 - "version": "7.0.4", 5855 - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-7.0.4.tgz", 5856 - "integrity": "sha512-LvIURTi1sQoZqj8mEIE8R15yvM+OhbR1avynMtI9bUzj5gGKR/gfZFd8O7VMj0QgJaIFzxDwxGl/ASMYAkqO8g==", 5857 - "dev": true, 5858 - "license": "MIT", 5859 - "dependencies": { 5860 - "browserslist": "^4.25.1", 5861 - "postcss-value-parser": "^4.2.0" 5862 - }, 5863 - "engines": { 5864 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5865 - }, 5866 - "peerDependencies": { 5867 - "postcss": "^8.4.32" 5868 - } 5869 - }, 5870 - "node_modules/postcss-normalize-url": { 5871 - "version": "7.0.1", 5872 - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-7.0.1.tgz", 5873 - "integrity": "sha512-sUcD2cWtyK1AOL/82Fwy1aIVm/wwj5SdZkgZ3QiUzSzQQofrbq15jWJ3BA7Z+yVRwamCjJgZJN0I9IS7c6tgeQ==", 5874 - "dev": true, 5875 - "license": "MIT", 5876 - "dependencies": { 5877 - "postcss-value-parser": "^4.2.0" 5878 - }, 5879 - "engines": { 5880 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5881 - }, 5882 - "peerDependencies": { 5883 - "postcss": "^8.4.32" 5884 - } 5885 - }, 5886 - "node_modules/postcss-normalize-whitespace": { 5887 - "version": "7.0.1", 5888 - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-7.0.1.tgz", 5889 - "integrity": "sha512-vsbgFHMFQrJBJKrUFJNZ2pgBeBkC2IvvoHjz1to0/0Xk7sII24T0qFOiJzG6Fu3zJoq/0yI4rKWi7WhApW+EFA==", 5890 - "dev": true, 5891 - "license": "MIT", 5892 - "dependencies": { 5893 - "postcss-value-parser": "^4.2.0" 5894 - }, 5895 - "engines": { 5896 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5897 - }, 5898 - "peerDependencies": { 5899 - "postcss": "^8.4.32" 5900 - } 5901 - }, 5902 - "node_modules/postcss-ordered-values": { 5903 - "version": "7.0.2", 5904 - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-7.0.2.tgz", 5905 - "integrity": "sha512-AMJjt1ECBffF7CEON/Y0rekRLS6KsePU6PRP08UqYW4UGFRnTXNrByUzYK1h8AC7UWTZdQ9O3Oq9kFIhm0SFEw==", 5906 - "dev": true, 5907 - "license": "MIT", 5908 - "dependencies": { 5909 - "cssnano-utils": "^5.0.1", 5910 - "postcss-value-parser": "^4.2.0" 5911 - }, 5912 - "engines": { 5913 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5914 - }, 5915 - "peerDependencies": { 5916 - "postcss": "^8.4.32" 5917 - } 5918 - }, 5919 - "node_modules/postcss-reduce-initial": { 5920 - "version": "7.0.4", 5921 - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-7.0.4.tgz", 5922 - "integrity": "sha512-rdIC9IlMBn7zJo6puim58Xd++0HdbvHeHaPgXsimMfG1ijC5A9ULvNLSE0rUKVJOvNMcwewW4Ga21ngyJjY/+Q==", 5923 - "dev": true, 5924 - "license": "MIT", 5925 - "dependencies": { 5926 - "browserslist": "^4.25.1", 5927 - "caniuse-api": "^3.0.0" 5928 - }, 5929 - "engines": { 5930 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5931 - }, 5932 - "peerDependencies": { 5933 - "postcss": "^8.4.32" 5934 - } 5935 - }, 5936 - "node_modules/postcss-reduce-transforms": { 5937 - "version": "7.0.1", 5938 - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-7.0.1.tgz", 5939 - "integrity": "sha512-MhyEbfrm+Mlp/36hvZ9mT9DaO7dbncU0CvWI8V93LRkY6IYlu38OPg3FObnuKTUxJ4qA8HpurdQOo5CyqqO76g==", 5940 - "dev": true, 5941 - "license": "MIT", 5942 - "dependencies": { 5943 - "postcss-value-parser": "^4.2.0" 5944 - }, 5945 - "engines": { 5946 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 5947 - }, 5948 - "peerDependencies": { 5949 - "postcss": "^8.4.32" 5950 - } 5951 - }, 5952 - "node_modules/postcss-safe-parser": { 5953 - "version": "7.0.1", 5954 - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-7.0.1.tgz", 5955 - "integrity": "sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==", 5956 - "dev": true, 5957 - "funding": [ 5958 - { 5959 - "type": "opencollective", 5960 - "url": "https://opencollective.com/postcss/" 5961 - }, 5962 - { 5963 - "type": "tidelift", 5964 - "url": "https://tidelift.com/funding/github/npm/postcss-safe-parser" 5965 - }, 5966 - { 5967 - "type": "github", 5968 - "url": "https://github.com/sponsors/ai" 5969 - } 5970 - ], 5971 - "license": "MIT", 5972 - "engines": { 5973 - "node": ">=18.0" 5974 - }, 5975 - "peerDependencies": { 5976 - "postcss": "^8.4.31" 5977 - } 5978 - }, 5979 - "node_modules/postcss-scss": { 5980 - "version": "4.0.9", 5981 - "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", 5982 - "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", 5983 - "dev": true, 5984 - "funding": [ 5985 - { 5986 - "type": "opencollective", 5987 - "url": "https://opencollective.com/postcss/" 5988 - }, 5989 - { 5990 - "type": "tidelift", 5991 - "url": "https://tidelift.com/funding/github/npm/postcss-scss" 5992 - }, 5993 - { 5994 - "type": "github", 5995 - "url": "https://github.com/sponsors/ai" 5996 - } 5997 - ], 5998 - "license": "MIT", 5999 - "engines": { 6000 - "node": ">=12.0" 6001 - }, 6002 - "peerDependencies": { 6003 - "postcss": "^8.4.29" 6004 - } 6005 - }, 6006 - "node_modules/postcss-selector-parser": { 6007 - "version": "6.0.10", 6008 - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", 6009 - "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", 6010 - "dev": true, 6011 - "license": "MIT", 6012 - "dependencies": { 6013 - "cssesc": "^3.0.0", 6014 - "util-deprecate": "^1.0.2" 6015 - }, 6016 - "engines": { 6017 - "node": ">=4" 6018 - } 6019 - }, 6020 - "node_modules/postcss-svgo": { 6021 - "version": "7.1.0", 6022 - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-7.1.0.tgz", 6023 - "integrity": "sha512-KnAlfmhtoLz6IuU3Sij2ycusNs4jPW+QoFE5kuuUOK8awR6tMxZQrs5Ey3BUz7nFCzT3eqyFgqkyrHiaU2xx3w==", 6024 - "dev": true, 6025 - "license": "MIT", 6026 - "dependencies": { 6027 - "postcss-value-parser": "^4.2.0", 6028 - "svgo": "^4.0.0" 6029 - }, 6030 - "engines": { 6031 - "node": "^18.12.0 || ^20.9.0 || >= 18" 6032 - }, 6033 - "peerDependencies": { 6034 - "postcss": "^8.4.32" 6035 - } 6036 - }, 6037 - "node_modules/postcss-unique-selectors": { 6038 - "version": "7.0.4", 6039 - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-7.0.4.tgz", 6040 - "integrity": "sha512-pmlZjsmEAG7cHd7uK3ZiNSW6otSZ13RHuZ/4cDN/bVglS5EpF2r2oxY99SuOHa8m7AWoBCelTS3JPpzsIs8skQ==", 6041 - "dev": true, 6042 - "license": "MIT", 6043 - "dependencies": { 6044 - "postcss-selector-parser": "^7.1.0" 6045 - }, 6046 - "engines": { 6047 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 6048 - }, 6049 - "peerDependencies": { 6050 - "postcss": "^8.4.32" 6051 - } 6052 - }, 6053 - "node_modules/postcss-unique-selectors/node_modules/postcss-selector-parser": { 6054 - "version": "7.1.0", 6055 - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", 6056 - "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", 6057 - "dev": true, 6058 - "license": "MIT", 6059 - "dependencies": { 6060 - "cssesc": "^3.0.0", 6061 - "util-deprecate": "^1.0.2" 6062 - }, 6063 - "engines": { 6064 - "node": ">=4" 6065 - } 6066 - }, 6067 - "node_modules/postcss-value-parser": { 6068 - "version": "4.2.0", 6069 - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 6070 - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", 6071 - "license": "MIT" 6072 - }, 6073 - "node_modules/prelude-ls": { 6074 - "version": "1.2.1", 6075 - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 6076 - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 6077 - "dev": true, 6078 - "license": "MIT", 6079 - "engines": { 6080 - "node": ">= 0.8.0" 6081 - } 6082 - }, 6083 - "node_modules/property-information": { 6084 - "version": "7.1.0", 6085 - "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", 6086 - "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", 6087 - "license": "MIT", 6088 - "funding": { 6089 - "type": "github", 6090 - "url": "https://github.com/sponsors/wooorm" 6091 - } 6092 - }, 6093 - "node_modules/punycode": { 6094 - "version": "2.3.1", 6095 - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 6096 - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 6097 - "dev": true, 6098 - "license": "MIT", 6099 - "engines": { 6100 - "node": ">=6" 6101 - } 6102 - }, 6103 - "node_modules/queue-microtask": { 6104 - "version": "1.2.3", 6105 - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 6106 - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 6107 - "dev": true, 6108 - "funding": [ 6109 - { 6110 - "type": "github", 6111 - "url": "https://github.com/sponsors/feross" 6112 - }, 6113 - { 6114 - "type": "patreon", 6115 - "url": "https://www.patreon.com/feross" 6116 - }, 6117 - { 6118 - "type": "consulting", 6119 - "url": "https://feross.org/support" 6120 - } 6121 - ], 6122 - "license": "MIT" 6123 - }, 6124 - "node_modules/read-cache": { 6125 - "version": "1.0.0", 6126 - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 6127 - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 6128 - "license": "MIT", 6129 - "dependencies": { 6130 - "pify": "^2.3.0" 6131 - } 6132 - }, 6133 - "node_modules/readdirp": { 6134 - "version": "4.1.2", 6135 - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", 6136 - "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", 6137 - "dev": true, 6138 - "license": "MIT", 6139 - "engines": { 6140 - "node": ">= 14.18.0" 6141 - }, 6142 - "funding": { 6143 - "type": "individual", 6144 - "url": "https://paulmillr.com/funding/" 6145 - } 6146 - }, 6147 - "node_modules/rehype-autolink-headings": { 6148 - "version": "7.1.0", 6149 - "resolved": "https://registry.npmjs.org/rehype-autolink-headings/-/rehype-autolink-headings-7.1.0.tgz", 6150 - "integrity": "sha512-rItO/pSdvnvsP4QRB1pmPiNHUskikqtPojZKJPPPAVx9Hj8i8TwMBhofrrAYRhYOOBZH9tgmG5lPqDLuIWPWmw==", 6151 - "license": "MIT", 6152 - "dependencies": { 6153 - "@types/hast": "^3.0.0", 6154 - "@ungap/structured-clone": "^1.0.0", 6155 - "hast-util-heading-rank": "^3.0.0", 6156 - "hast-util-is-element": "^3.0.0", 6157 - "unified": "^11.0.0", 6158 - "unist-util-visit": "^5.0.0" 6159 - }, 6160 - "funding": { 6161 - "type": "opencollective", 6162 - "url": "https://opencollective.com/unified" 6163 - } 6164 - }, 6165 - "node_modules/rehype-highlight": { 6166 - "version": "7.0.2", 6167 - "resolved": "https://registry.npmjs.org/rehype-highlight/-/rehype-highlight-7.0.2.tgz", 6168 - "integrity": "sha512-k158pK7wdC2qL3M5NcZROZ2tR/l7zOzjxXd5VGdcfIyoijjQqpHd3JKtYSBDpDZ38UI2WJWuFAtkMDxmx5kstA==", 6169 - "license": "MIT", 6170 - "dependencies": { 6171 - "@types/hast": "^3.0.0", 6172 - "hast-util-to-text": "^4.0.0", 6173 - "lowlight": "^3.0.0", 6174 - "unist-util-visit": "^5.0.0", 6175 - "vfile": "^6.0.0" 6176 - }, 6177 - "funding": { 6178 - "type": "opencollective", 6179 - "url": "https://opencollective.com/unified" 6180 - } 6181 - }, 6182 - "node_modules/rehype-katex": { 6183 - "version": "7.0.1", 6184 - "resolved": "https://registry.npmjs.org/rehype-katex/-/rehype-katex-7.0.1.tgz", 6185 - "integrity": "sha512-OiM2wrZ/wuhKkigASodFoo8wimG3H12LWQaH8qSPVJn9apWKFSH3YOCtbKpBorTVw/eI7cuT21XBbvwEswbIOA==", 6186 - "license": "MIT", 6187 - "dependencies": { 6188 - "@types/hast": "^3.0.0", 6189 - "@types/katex": "^0.16.0", 6190 - "hast-util-from-html-isomorphic": "^2.0.0", 6191 - "hast-util-to-text": "^4.0.0", 6192 - "katex": "^0.16.0", 6193 - "unist-util-visit-parents": "^6.0.0", 6194 - "vfile": "^6.0.0" 6195 - }, 6196 - "funding": { 6197 - "type": "opencollective", 6198 - "url": "https://opencollective.com/unified" 6199 - } 6200 - }, 6201 - "node_modules/rehype-raw": { 6202 - "version": "7.0.0", 6203 - "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz", 6204 - "integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==", 6205 - "license": "MIT", 6206 - "dependencies": { 6207 - "@types/hast": "^3.0.0", 6208 - "hast-util-raw": "^9.0.0", 6209 - "vfile": "^6.0.0" 6210 - }, 6211 - "funding": { 6212 - "type": "opencollective", 6213 - "url": "https://opencollective.com/unified" 6214 - } 6215 - }, 6216 - "node_modules/rehype-sanitize": { 6217 - "version": "6.0.0", 6218 - "resolved": "https://registry.npmjs.org/rehype-sanitize/-/rehype-sanitize-6.0.0.tgz", 6219 - "integrity": "sha512-CsnhKNsyI8Tub6L4sm5ZFsme4puGfc6pYylvXo1AeqaGbjOYyzNv3qZPwvs0oMJ39eryyeOdmxwUIo94IpEhqg==", 6220 - "license": "MIT", 6221 - "dependencies": { 6222 - "@types/hast": "^3.0.0", 6223 - "hast-util-sanitize": "^5.0.0" 6224 - }, 6225 - "funding": { 6226 - "type": "opencollective", 6227 - "url": "https://opencollective.com/unified" 6228 - } 6229 - }, 6230 - "node_modules/rehype-slug": { 6231 - "version": "6.0.0", 6232 - "resolved": "https://registry.npmjs.org/rehype-slug/-/rehype-slug-6.0.0.tgz", 6233 - "integrity": "sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==", 6234 - "license": "MIT", 6235 - "dependencies": { 6236 - "@types/hast": "^3.0.0", 6237 - "github-slugger": "^2.0.0", 6238 - "hast-util-heading-rank": "^3.0.0", 6239 - "hast-util-to-string": "^3.0.0", 6240 - "unist-util-visit": "^5.0.0" 6241 - }, 6242 - "funding": { 6243 - "type": "opencollective", 6244 - "url": "https://opencollective.com/unified" 6245 - } 6246 - }, 6247 - "node_modules/rehype-stringify": { 6248 - "version": "10.0.1", 6249 - "resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-10.0.1.tgz", 6250 - "integrity": "sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==", 6251 - "license": "MIT", 6252 - "dependencies": { 6253 - "@types/hast": "^3.0.0", 6254 - "hast-util-to-html": "^9.0.0", 6255 - "unified": "^11.0.0" 6256 - }, 6257 - "funding": { 6258 - "type": "opencollective", 6259 - "url": "https://opencollective.com/unified" 6260 - } 6261 - }, 6262 - "node_modules/remark": { 6263 - "version": "15.0.1", 6264 - "resolved": "https://registry.npmjs.org/remark/-/remark-15.0.1.tgz", 6265 - "integrity": "sha512-Eht5w30ruCXgFmxVUSlNWQ9iiimq07URKeFS3hNc8cUWy1llX4KDWfyEDZRycMc+znsN9Ux5/tJ/BFdgdOwA3A==", 6266 - "license": "MIT", 6267 - "dependencies": { 6268 - "@types/mdast": "^4.0.0", 6269 - "remark-parse": "^11.0.0", 6270 - "remark-stringify": "^11.0.0", 6271 - "unified": "^11.0.0" 6272 - }, 6273 - "funding": { 6274 - "type": "opencollective", 6275 - "url": "https://opencollective.com/unified" 6276 - } 6277 - }, 6278 - "node_modules/remark-breaks": { 6279 - "version": "4.0.0", 6280 - "resolved": "https://registry.npmjs.org/remark-breaks/-/remark-breaks-4.0.0.tgz", 6281 - "integrity": "sha512-IjEjJOkH4FuJvHZVIW0QCDWxcG96kCq7An/KVH2NfJe6rKZU2AsHeB3OEjPNRxi4QC34Xdx7I2KGYn6IpT7gxQ==", 6282 - "license": "MIT", 6283 - "dependencies": { 6284 - "@types/mdast": "^4.0.0", 6285 - "mdast-util-newline-to-break": "^2.0.0", 6286 - "unified": "^11.0.0" 6287 - }, 6288 - "funding": { 6289 - "type": "opencollective", 6290 - "url": "https://opencollective.com/unified" 6291 - } 6292 - }, 6293 - "node_modules/remark-emoji": { 6294 - "version": "5.0.2", 6295 - "resolved": "https://registry.npmjs.org/remark-emoji/-/remark-emoji-5.0.2.tgz", 6296 - "integrity": "sha512-IyIqGELcyK5AVdLFafoiNww+Eaw/F+rGrNSXoKucjo95uL267zrddgxGM83GN1wFIb68pyDuAsY3m5t2Cav1pQ==", 6297 - "license": "MIT", 6298 - "dependencies": { 6299 - "@types/mdast": "^4.0.4", 6300 - "emoticon": "^4.0.1", 6301 - "mdast-util-find-and-replace": "^3.0.1", 6302 - "node-emoji": "^2.1.3", 6303 - "unified": "^11.0.4" 6304 - }, 6305 - "engines": { 6306 - "node": ">=18" 6307 - } 6308 - }, 6309 - "node_modules/remark-gfm": { 6310 - "version": "4.0.1", 6311 - "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz", 6312 - "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==", 6313 - "license": "MIT", 6314 - "dependencies": { 6315 - "@types/mdast": "^4.0.0", 6316 - "mdast-util-gfm": "^3.0.0", 6317 - "micromark-extension-gfm": "^3.0.0", 6318 - "remark-parse": "^11.0.0", 6319 - "remark-stringify": "^11.0.0", 6320 - "unified": "^11.0.0" 6321 - }, 6322 - "funding": { 6323 - "type": "opencollective", 6324 - "url": "https://opencollective.com/unified" 6325 - } 6326 - }, 6327 - "node_modules/remark-math": { 6328 - "version": "6.0.0", 6329 - "resolved": "https://registry.npmjs.org/remark-math/-/remark-math-6.0.0.tgz", 6330 - "integrity": "sha512-MMqgnP74Igy+S3WwnhQ7kqGlEerTETXMvJhrUzDikVZ2/uogJCb+WHUg97hK9/jcfc0dkD73s3LN8zU49cTEtA==", 6331 - "license": "MIT", 6332 - "dependencies": { 6333 - "@types/mdast": "^4.0.0", 6334 - "mdast-util-math": "^3.0.0", 6335 - "micromark-extension-math": "^3.0.0", 6336 - "unified": "^11.0.0" 6337 - }, 6338 - "funding": { 6339 - "type": "opencollective", 6340 - "url": "https://opencollective.com/unified" 6341 - } 6342 - }, 6343 - "node_modules/remark-parse": { 6344 - "version": "11.0.0", 6345 - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", 6346 - "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", 6347 - "license": "MIT", 6348 - "dependencies": { 6349 - "@types/mdast": "^4.0.0", 6350 - "mdast-util-from-markdown": "^2.0.0", 6351 - "micromark-util-types": "^2.0.0", 6352 - "unified": "^11.0.0" 6353 - }, 6354 - "funding": { 6355 - "type": "opencollective", 6356 - "url": "https://opencollective.com/unified" 6357 - } 6358 - }, 6359 - "node_modules/remark-rehype": { 6360 - "version": "11.1.2", 6361 - "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz", 6362 - "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==", 6363 - "license": "MIT", 6364 - "dependencies": { 6365 - "@types/hast": "^3.0.0", 6366 - "@types/mdast": "^4.0.0", 6367 - "mdast-util-to-hast": "^13.0.0", 6368 - "unified": "^11.0.0", 6369 - "vfile": "^6.0.0" 6370 - }, 6371 - "funding": { 6372 - "type": "opencollective", 6373 - "url": "https://opencollective.com/unified" 6374 - } 6375 - }, 6376 - "node_modules/remark-stringify": { 6377 - "version": "11.0.0", 6378 - "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", 6379 - "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", 6380 - "license": "MIT", 6381 - "dependencies": { 6382 - "@types/mdast": "^4.0.0", 6383 - "mdast-util-to-markdown": "^2.0.0", 6384 - "unified": "^11.0.0" 6385 - }, 6386 - "funding": { 6387 - "type": "opencollective", 6388 - "url": "https://opencollective.com/unified" 6389 - } 6390 - }, 6391 - "node_modules/resolve": { 6392 - "version": "1.22.10", 6393 - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", 6394 - "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", 6395 - "license": "MIT", 6396 - "dependencies": { 6397 - "is-core-module": "^2.16.0", 6398 - "path-parse": "^1.0.7", 6399 - "supports-preserve-symlinks-flag": "^1.0.0" 6400 - }, 6401 - "bin": { 6402 - "resolve": "bin/resolve" 6403 - }, 6404 - "engines": { 6405 - "node": ">= 0.4" 6406 - }, 6407 - "funding": { 6408 - "url": "https://github.com/sponsors/ljharb" 6409 - } 6410 - }, 6411 - "node_modules/resolve-from": { 6412 - "version": "5.0.0", 6413 - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 6414 - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 6415 - "dev": true, 6416 - "license": "MIT", 6417 - "engines": { 6418 - "node": ">=8" 6419 - } 6420 - }, 6421 - "node_modules/reusify": { 6422 - "version": "1.1.0", 6423 - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", 6424 - "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", 6425 - "dev": true, 6426 - "license": "MIT", 6427 - "engines": { 6428 - "iojs": ">=1.0.0", 6429 - "node": ">=0.10.0" 6430 - } 6431 - }, 6432 - "node_modules/rollup": { 6433 - "version": "4.52.4", 6434 - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.4.tgz", 6435 - "integrity": "sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==", 6436 - "dev": true, 6437 - "license": "MIT", 6438 - "dependencies": { 6439 - "@types/estree": "1.0.8" 6440 - }, 6441 - "bin": { 6442 - "rollup": "dist/bin/rollup" 6443 - }, 6444 - "engines": { 6445 - "node": ">=18.0.0", 6446 - "npm": ">=8.0.0" 6447 - }, 6448 - "optionalDependencies": { 6449 - "@rollup/rollup-android-arm-eabi": "4.52.4", 6450 - "@rollup/rollup-android-arm64": "4.52.4", 6451 - "@rollup/rollup-darwin-arm64": "4.52.4", 6452 - "@rollup/rollup-darwin-x64": "4.52.4", 6453 - "@rollup/rollup-freebsd-arm64": "4.52.4", 6454 - "@rollup/rollup-freebsd-x64": "4.52.4", 6455 - "@rollup/rollup-linux-arm-gnueabihf": "4.52.4", 6456 - "@rollup/rollup-linux-arm-musleabihf": "4.52.4", 6457 - "@rollup/rollup-linux-arm64-gnu": "4.52.4", 6458 - "@rollup/rollup-linux-arm64-musl": "4.52.4", 6459 - "@rollup/rollup-linux-loong64-gnu": "4.52.4", 6460 - "@rollup/rollup-linux-ppc64-gnu": "4.52.4", 6461 - "@rollup/rollup-linux-riscv64-gnu": "4.52.4", 6462 - "@rollup/rollup-linux-riscv64-musl": "4.52.4", 6463 - "@rollup/rollup-linux-s390x-gnu": "4.52.4", 6464 - "@rollup/rollup-linux-x64-gnu": "4.52.4", 6465 - "@rollup/rollup-linux-x64-musl": "4.52.4", 6466 - "@rollup/rollup-openharmony-arm64": "4.52.4", 6467 - "@rollup/rollup-win32-arm64-msvc": "4.52.4", 6468 - "@rollup/rollup-win32-ia32-msvc": "4.52.4", 6469 - "@rollup/rollup-win32-x64-gnu": "4.52.4", 6470 - "@rollup/rollup-win32-x64-msvc": "4.52.4", 6471 - "fsevents": "~2.3.2" 6472 - } 6473 - }, 6474 - "node_modules/run-parallel": { 6475 - "version": "1.2.0", 6476 - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 6477 - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 6478 - "dev": true, 6479 - "funding": [ 6480 - { 6481 - "type": "github", 6482 - "url": "https://github.com/sponsors/feross" 6483 - }, 6484 - { 6485 - "type": "patreon", 6486 - "url": "https://www.patreon.com/feross" 6487 - }, 6488 - { 6489 - "type": "consulting", 6490 - "url": "https://feross.org/support" 6491 - } 6492 - ], 6493 - "license": "MIT", 6494 - "dependencies": { 6495 - "queue-microtask": "^1.2.2" 6496 - } 6497 - }, 6498 - "node_modules/sade": { 6499 - "version": "1.8.1", 6500 - "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", 6501 - "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", 6502 - "dev": true, 6503 - "license": "MIT", 6504 - "dependencies": { 6505 - "mri": "^1.1.0" 6506 - }, 6507 - "engines": { 6508 - "node": ">=6" 6509 - } 6510 - }, 6511 - "node_modules/sanitize-html": { 6512 - "version": "2.17.0", 6513 - "resolved": "https://registry.npmjs.org/sanitize-html/-/sanitize-html-2.17.0.tgz", 6514 - "integrity": "sha512-dLAADUSS8rBwhaevT12yCezvioCA+bmUTPH/u57xKPT8d++voeYE6HeluA/bPbQ15TwDBG2ii+QZIEmYx8VdxA==", 6515 - "license": "MIT", 6516 - "dependencies": { 6517 - "deepmerge": "^4.2.2", 6518 - "escape-string-regexp": "^4.0.0", 6519 - "htmlparser2": "^8.0.0", 6520 - "is-plain-object": "^5.0.0", 6521 - "parse-srcset": "^1.0.2", 6522 - "postcss": "^8.3.11" 6523 - } 6524 - }, 6525 - "node_modules/sax": { 6526 - "version": "1.4.1", 6527 - "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", 6528 - "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", 6529 - "dev": true, 6530 - "license": "ISC" 6531 - }, 6532 - "node_modules/semver": { 6533 - "version": "7.7.3", 6534 - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", 6535 - "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", 6536 - "dev": true, 6537 - "license": "ISC", 6538 - "bin": { 6539 - "semver": "bin/semver.js" 6540 - }, 6541 - "engines": { 6542 - "node": ">=10" 6543 - } 6544 - }, 6545 - "node_modules/set-cookie-parser": { 6546 - "version": "2.7.1", 6547 - "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz", 6548 - "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==", 6549 - "dev": true, 6550 - "license": "MIT" 6551 - }, 6552 - "node_modules/shebang-command": { 6553 - "version": "2.0.0", 6554 - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 6555 - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 6556 - "dev": true, 6557 - "license": "MIT", 6558 - "dependencies": { 6559 - "shebang-regex": "^3.0.0" 6560 - }, 6561 - "engines": { 6562 - "node": ">=8" 6563 - } 6564 - }, 6565 - "node_modules/shebang-regex": { 6566 - "version": "3.0.0", 6567 - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 6568 - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 6569 - "dev": true, 6570 - "license": "MIT", 6571 - "engines": { 6572 - "node": ">=8" 6573 - } 6574 - }, 6575 - "node_modules/signal-exit": { 6576 - "version": "4.1.0", 6577 - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 6578 - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 6579 - "dev": true, 6580 - "license": "ISC", 6581 - "engines": { 6582 - "node": ">=14" 6583 - }, 6584 - "funding": { 6585 - "url": "https://github.com/sponsors/isaacs" 6586 - } 6587 - }, 6588 - "node_modules/sirv": { 6589 - "version": "3.0.2", 6590 - "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.2.tgz", 6591 - "integrity": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==", 6592 - "dev": true, 6593 - "license": "MIT", 6594 - "dependencies": { 6595 - "@polka/url": "^1.0.0-next.24", 6596 - "mrmime": "^2.0.0", 6597 - "totalist": "^3.0.0" 6598 - }, 6599 - "engines": { 6600 - "node": ">=18" 6601 - } 6602 - }, 6603 - "node_modules/skin-tone": { 6604 - "version": "2.0.0", 6605 - "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", 6606 - "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==", 6607 - "license": "MIT", 6608 - "dependencies": { 6609 - "unicode-emoji-modifier-base": "^1.0.0" 6610 - }, 6611 - "engines": { 6612 - "node": ">=8" 6613 - } 6614 - }, 6615 - "node_modules/source-map-js": { 6616 - "version": "1.2.1", 6617 - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 6618 - "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 6619 - "license": "BSD-3-Clause", 6620 - "engines": { 6621 - "node": ">=0.10.0" 6622 - } 6623 - }, 6624 - "node_modules/space-separated-tokens": { 6625 - "version": "2.0.2", 6626 - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", 6627 - "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", 6628 - "license": "MIT", 6629 - "funding": { 6630 - "type": "github", 6631 - "url": "https://github.com/sponsors/wooorm" 6632 - } 6633 - }, 6634 - "node_modules/string-width": { 6635 - "version": "5.1.2", 6636 - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 6637 - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 6638 - "dev": true, 6639 - "license": "MIT", 6640 - "dependencies": { 6641 - "eastasianwidth": "^0.2.0", 6642 - "emoji-regex": "^9.2.2", 6643 - "strip-ansi": "^7.0.1" 6644 - }, 6645 - "engines": { 6646 - "node": ">=12" 6647 - }, 6648 - "funding": { 6649 - "url": "https://github.com/sponsors/sindresorhus" 6650 - } 6651 - }, 6652 - "node_modules/string-width-cjs": { 6653 - "name": "string-width", 6654 - "version": "4.2.3", 6655 - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 6656 - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 6657 - "dev": true, 6658 - "license": "MIT", 6659 - "dependencies": { 6660 - "emoji-regex": "^8.0.0", 6661 - "is-fullwidth-code-point": "^3.0.0", 6662 - "strip-ansi": "^6.0.1" 6663 - }, 6664 - "engines": { 6665 - "node": ">=8" 6666 - } 6667 - }, 6668 - "node_modules/string-width-cjs/node_modules/ansi-regex": { 6669 - "version": "5.0.1", 6670 - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 6671 - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 6672 - "dev": true, 6673 - "license": "MIT", 6674 - "engines": { 6675 - "node": ">=8" 6676 - } 6677 - }, 6678 - "node_modules/string-width-cjs/node_modules/emoji-regex": { 6679 - "version": "8.0.0", 6680 - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 6681 - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 6682 - "dev": true, 6683 - "license": "MIT" 6684 - }, 6685 - "node_modules/string-width-cjs/node_modules/strip-ansi": { 6686 - "version": "6.0.1", 6687 - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 6688 - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 6689 - "dev": true, 6690 - "license": "MIT", 6691 - "dependencies": { 6692 - "ansi-regex": "^5.0.1" 6693 - }, 6694 - "engines": { 6695 - "node": ">=8" 6696 - } 6697 - }, 6698 - "node_modules/stringify-entities": { 6699 - "version": "4.0.4", 6700 - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", 6701 - "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", 6702 - "license": "MIT", 6703 - "dependencies": { 6704 - "character-entities-html4": "^2.0.0", 6705 - "character-entities-legacy": "^3.0.0" 6706 - }, 6707 - "funding": { 6708 - "type": "github", 6709 - "url": "https://github.com/sponsors/wooorm" 6710 - } 6711 - }, 6712 - "node_modules/strip-ansi": { 6713 - "version": "7.1.2", 6714 - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", 6715 - "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", 6716 - "dev": true, 6717 - "license": "MIT", 6718 - "dependencies": { 6719 - "ansi-regex": "^6.0.1" 6720 - }, 6721 - "engines": { 6722 - "node": ">=12" 6723 - }, 6724 - "funding": { 6725 - "url": "https://github.com/chalk/strip-ansi?sponsor=1" 6726 - } 6727 - }, 6728 - "node_modules/strip-ansi-cjs": { 6729 - "name": "strip-ansi", 6730 - "version": "6.0.1", 6731 - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 6732 - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 6733 - "dev": true, 6734 - "license": "MIT", 6735 - "dependencies": { 6736 - "ansi-regex": "^5.0.1" 6737 - }, 6738 - "engines": { 6739 - "node": ">=8" 6740 - } 6741 - }, 6742 - "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { 6743 - "version": "5.0.1", 6744 - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 6745 - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 6746 - "dev": true, 6747 - "license": "MIT", 6748 - "engines": { 6749 - "node": ">=8" 6750 - } 6751 - }, 6752 - "node_modules/strip-json-comments": { 6753 - "version": "3.1.1", 6754 - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 6755 - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 6756 - "dev": true, 6757 - "license": "MIT", 6758 - "engines": { 6759 - "node": ">=8" 6760 - }, 6761 - "funding": { 6762 - "url": "https://github.com/sponsors/sindresorhus" 6763 - } 6764 - }, 6765 - "node_modules/stylehacks": { 6766 - "version": "7.0.6", 6767 - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-7.0.6.tgz", 6768 - "integrity": "sha512-iitguKivmsueOmTO0wmxURXBP8uqOO+zikLGZ7Mm9e/94R4w5T999Js2taS/KBOnQ/wdC3jN3vNSrkGDrlnqQg==", 6769 - "dev": true, 6770 - "license": "MIT", 6771 - "dependencies": { 6772 - "browserslist": "^4.25.1", 6773 - "postcss-selector-parser": "^7.1.0" 6774 - }, 6775 - "engines": { 6776 - "node": "^18.12.0 || ^20.9.0 || >=22.0" 6777 - }, 6778 - "peerDependencies": { 6779 - "postcss": "^8.4.32" 6780 - } 6781 - }, 6782 - "node_modules/stylehacks/node_modules/postcss-selector-parser": { 6783 - "version": "7.1.0", 6784 - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", 6785 - "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", 6786 - "dev": true, 6787 - "license": "MIT", 6788 - "dependencies": { 6789 - "cssesc": "^3.0.0", 6790 - "util-deprecate": "^1.0.2" 6791 - }, 6792 - "engines": { 6793 - "node": ">=4" 6794 - } 6795 - }, 6796 - "node_modules/sucrase": { 6797 - "version": "3.35.0", 6798 - "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", 6799 - "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", 6800 - "dev": true, 6801 - "license": "MIT", 6802 - "dependencies": { 6803 - "@jridgewell/gen-mapping": "^0.3.2", 6804 - "commander": "^4.0.0", 6805 - "glob": "^10.3.10", 6806 - "lines-and-columns": "^1.1.6", 6807 - "mz": "^2.7.0", 6808 - "pirates": "^4.0.1", 6809 - "ts-interface-checker": "^0.1.9" 6810 - }, 6811 - "bin": { 6812 - "sucrase": "bin/sucrase", 6813 - "sucrase-node": "bin/sucrase-node" 6814 - }, 6815 - "engines": { 6816 - "node": ">=16 || 14 >=14.17" 6817 - } 6818 - }, 6819 - "node_modules/sucrase/node_modules/commander": { 6820 - "version": "4.1.1", 6821 - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 6822 - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 6823 - "dev": true, 6824 - "license": "MIT", 6825 - "engines": { 6826 - "node": ">= 6" 6827 - } 6828 - }, 6829 - "node_modules/supports-color": { 6830 - "version": "7.2.0", 6831 - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 6832 - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 6833 - "dev": true, 6834 - "license": "MIT", 6835 - "dependencies": { 6836 - "has-flag": "^4.0.0" 6837 - }, 6838 - "engines": { 6839 - "node": ">=8" 6840 - } 6841 - }, 6842 - "node_modules/supports-preserve-symlinks-flag": { 6843 - "version": "1.0.0", 6844 - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 6845 - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 6846 - "license": "MIT", 6847 - "engines": { 6848 - "node": ">= 0.4" 6849 - }, 6850 - "funding": { 6851 - "url": "https://github.com/sponsors/ljharb" 6852 - } 6853 - }, 6854 - "node_modules/svelte": { 6855 - "version": "5.39.11", 6856 - "resolved": "https://registry.npmjs.org/svelte/-/svelte-5.39.11.tgz", 6857 - "integrity": "sha512-8MxWVm2+3YwrFbPaxOlT1bbMi6OTenrAgks6soZfiaS8Fptk4EVyRIFhJc3RpO264EeSNwgjWAdki0ufg4zkGw==", 6858 - "dev": true, 6859 - "license": "MIT", 6860 - "dependencies": { 6861 - "@jridgewell/remapping": "^2.3.4", 6862 - "@jridgewell/sourcemap-codec": "^1.5.0", 6863 - "@sveltejs/acorn-typescript": "^1.0.5", 6864 - "@types/estree": "^1.0.5", 6865 - "acorn": "^8.12.1", 6866 - "aria-query": "^5.3.1", 6867 - "axobject-query": "^4.1.0", 6868 - "clsx": "^2.1.1", 6869 - "esm-env": "^1.2.1", 6870 - "esrap": "^2.1.0", 6871 - "is-reference": "^3.0.3", 6872 - "locate-character": "^3.0.0", 6873 - "magic-string": "^0.30.11", 6874 - "zimmerframe": "^1.1.2" 6875 - }, 6876 - "engines": { 6877 - "node": ">=18" 6878 - } 6879 - }, 6880 - "node_modules/svelte-check": { 6881 - "version": "4.3.3", 6882 - "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-4.3.3.tgz", 6883 - "integrity": "sha512-RYP0bEwenDXzfv0P1sKAwjZSlaRyqBn0Fz1TVni58lqyEiqgwztTpmodJrGzP6ZT2aHl4MbTvWP6gbmQ3FOnBg==", 6884 - "dev": true, 6885 - "license": "MIT", 6886 - "dependencies": { 6887 - "@jridgewell/trace-mapping": "^0.3.25", 6888 - "chokidar": "^4.0.1", 6889 - "fdir": "^6.2.0", 6890 - "picocolors": "^1.0.0", 6891 - "sade": "^1.7.4" 6892 - }, 6893 - "bin": { 6894 - "svelte-check": "bin/svelte-check" 6895 - }, 6896 - "engines": { 6897 - "node": ">= 18.0.0" 6898 - }, 6899 - "peerDependencies": { 6900 - "svelte": "^4.0.0 || ^5.0.0-next.0", 6901 - "typescript": ">=5.0.0" 6902 - } 6903 - }, 6904 - "node_modules/svelte-eslint-parser": { 6905 - "version": "1.3.3", 6906 - "resolved": "https://registry.npmjs.org/svelte-eslint-parser/-/svelte-eslint-parser-1.3.3.tgz", 6907 - "integrity": "sha512-oTrDR8Z7Wnguut7QH3YKh7JR19xv1seB/bz4dxU5J/86eJtZOU4eh0/jZq4dy6tAlz/KROxnkRQspv5ZEt7t+Q==", 6908 - "dev": true, 6909 - "license": "MIT", 6910 - "dependencies": { 6911 - "eslint-scope": "^8.2.0", 6912 - "eslint-visitor-keys": "^4.0.0", 6913 - "espree": "^10.0.0", 6914 - "postcss": "^8.4.49", 6915 - "postcss-scss": "^4.0.9", 6916 - "postcss-selector-parser": "^7.0.0" 6917 - }, 6918 - "engines": { 6919 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 6920 - }, 6921 - "funding": { 6922 - "url": "https://github.com/sponsors/ota-meshi" 6923 - }, 6924 - "peerDependencies": { 6925 - "svelte": "^3.37.0 || ^4.0.0 || ^5.0.0" 6926 - }, 6927 - "peerDependenciesMeta": { 6928 - "svelte": { 6929 - "optional": true 6930 - } 6931 - } 6932 - }, 6933 - "node_modules/svelte-eslint-parser/node_modules/postcss-selector-parser": { 6934 - "version": "7.1.0", 6935 - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", 6936 - "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", 6937 - "dev": true, 6938 - "license": "MIT", 6939 - "dependencies": { 6940 - "cssesc": "^3.0.0", 6941 - "util-deprecate": "^1.0.2" 6942 - }, 6943 - "engines": { 6944 - "node": ">=4" 6945 - } 6946 - }, 6947 - "node_modules/svgo": { 6948 - "version": "4.0.0", 6949 - "resolved": "https://registry.npmjs.org/svgo/-/svgo-4.0.0.tgz", 6950 - "integrity": "sha512-VvrHQ+9uniE+Mvx3+C9IEe/lWasXCU0nXMY2kZeLrHNICuRiC8uMPyM14UEaMOFA5mhyQqEkB02VoQ16n3DLaw==", 6951 - "dev": true, 6952 - "license": "MIT", 6953 - "dependencies": { 6954 - "commander": "^11.1.0", 6955 - "css-select": "^5.1.0", 6956 - "css-tree": "^3.0.1", 6957 - "css-what": "^6.1.0", 6958 - "csso": "^5.0.5", 6959 - "picocolors": "^1.1.1", 6960 - "sax": "^1.4.1" 6961 - }, 6962 - "bin": { 6963 - "svgo": "bin/svgo.js" 6964 - }, 6965 - "engines": { 6966 - "node": ">=16" 6967 - }, 6968 - "funding": { 6969 - "type": "opencollective", 6970 - "url": "https://opencollective.com/svgo" 6971 - } 6972 - }, 6973 - "node_modules/svgo/node_modules/commander": { 6974 - "version": "11.1.0", 6975 - "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", 6976 - "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", 6977 - "dev": true, 6978 - "license": "MIT", 6979 - "engines": { 6980 - "node": ">=16" 6981 - } 6982 - }, 6983 - "node_modules/tailwindcss": { 6984 - "version": "3.4.18", 6985 - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.18.tgz", 6986 - "integrity": "sha512-6A2rnmW5xZMdw11LYjhcI5846rt9pbLSabY5XPxo+XWdxwZaFEn47Go4NzFiHu9sNNmr/kXivP1vStfvMaK1GQ==", 6987 - "dev": true, 6988 - "license": "MIT", 6989 - "dependencies": { 6990 - "@alloc/quick-lru": "^5.2.0", 6991 - "arg": "^5.0.2", 6992 - "chokidar": "^3.6.0", 6993 - "didyoumean": "^1.2.2", 6994 - "dlv": "^1.1.3", 6995 - "fast-glob": "^3.3.2", 6996 - "glob-parent": "^6.0.2", 6997 - "is-glob": "^4.0.3", 6998 - "jiti": "^1.21.7", 6999 - "lilconfig": "^3.1.3", 7000 - "micromatch": "^4.0.8", 7001 - "normalize-path": "^3.0.0", 7002 - "object-hash": "^3.0.0", 7003 - "picocolors": "^1.1.1", 7004 - "postcss": "^8.4.47", 7005 - "postcss-import": "^15.1.0", 7006 - "postcss-js": "^4.0.1", 7007 - "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0", 7008 - "postcss-nested": "^6.2.0", 7009 - "postcss-selector-parser": "^6.1.2", 7010 - "resolve": "^1.22.8", 7011 - "sucrase": "^3.35.0" 7012 - }, 7013 - "bin": { 7014 - "tailwind": "lib/cli.js", 7015 - "tailwindcss": "lib/cli.js" 7016 - }, 7017 - "engines": { 7018 - "node": ">=14.0.0" 7019 - } 7020 - }, 7021 - "node_modules/tailwindcss/node_modules/chokidar": { 7022 - "version": "3.6.0", 7023 - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 7024 - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 7025 - "dev": true, 7026 - "license": "MIT", 7027 - "dependencies": { 7028 - "anymatch": "~3.1.2", 7029 - "braces": "~3.0.2", 7030 - "glob-parent": "~5.1.2", 7031 - "is-binary-path": "~2.1.0", 7032 - "is-glob": "~4.0.1", 7033 - "normalize-path": "~3.0.0", 7034 - "readdirp": "~3.6.0" 7035 - }, 7036 - "engines": { 7037 - "node": ">= 8.10.0" 7038 - }, 7039 - "funding": { 7040 - "url": "https://paulmillr.com/funding/" 7041 - }, 7042 - "optionalDependencies": { 7043 - "fsevents": "~2.3.2" 7044 - } 7045 - }, 7046 - "node_modules/tailwindcss/node_modules/chokidar/node_modules/glob-parent": { 7047 - "version": "5.1.2", 7048 - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 7049 - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 7050 - "dev": true, 7051 - "license": "ISC", 7052 - "dependencies": { 7053 - "is-glob": "^4.0.1" 7054 - }, 7055 - "engines": { 7056 - "node": ">= 6" 7057 - } 7058 - }, 7059 - "node_modules/tailwindcss/node_modules/picomatch": { 7060 - "version": "2.3.1", 7061 - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 7062 - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 7063 - "dev": true, 7064 - "license": "MIT", 7065 - "engines": { 7066 - "node": ">=8.6" 7067 - }, 7068 - "funding": { 7069 - "url": "https://github.com/sponsors/jonschlinkert" 7070 - } 7071 - }, 7072 - "node_modules/tailwindcss/node_modules/postcss-import": { 7073 - "version": "15.1.0", 7074 - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 7075 - "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 7076 - "dev": true, 7077 - "license": "MIT", 7078 - "dependencies": { 7079 - "postcss-value-parser": "^4.0.0", 7080 - "read-cache": "^1.0.0", 7081 - "resolve": "^1.1.7" 7082 - }, 7083 - "engines": { 7084 - "node": ">=14.0.0" 7085 - }, 7086 - "peerDependencies": { 7087 - "postcss": "^8.0.0" 7088 - } 7089 - }, 7090 - "node_modules/tailwindcss/node_modules/postcss-load-config": { 7091 - "version": "6.0.1", 7092 - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz", 7093 - "integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==", 7094 - "dev": true, 7095 - "funding": [ 7096 - { 7097 - "type": "opencollective", 7098 - "url": "https://opencollective.com/postcss/" 7099 - }, 7100 - { 7101 - "type": "github", 7102 - "url": "https://github.com/sponsors/ai" 7103 - } 7104 - ], 7105 - "license": "MIT", 7106 - "dependencies": { 7107 - "lilconfig": "^3.1.1" 7108 - }, 7109 - "engines": { 7110 - "node": ">= 18" 7111 - }, 7112 - "peerDependencies": { 7113 - "jiti": ">=1.21.0", 7114 - "postcss": ">=8.0.9", 7115 - "tsx": "^4.8.1", 7116 - "yaml": "^2.4.2" 7117 - }, 7118 - "peerDependenciesMeta": { 7119 - "jiti": { 7120 - "optional": true 7121 - }, 7122 - "postcss": { 7123 - "optional": true 7124 - }, 7125 - "tsx": { 7126 - "optional": true 7127 - }, 7128 - "yaml": { 7129 - "optional": true 7130 - } 7131 - } 7132 - }, 7133 - "node_modules/tailwindcss/node_modules/postcss-selector-parser": { 7134 - "version": "6.1.2", 7135 - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", 7136 - "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", 7137 - "dev": true, 7138 - "license": "MIT", 7139 - "dependencies": { 7140 - "cssesc": "^3.0.0", 7141 - "util-deprecate": "^1.0.2" 7142 - }, 7143 - "engines": { 7144 - "node": ">=4" 7145 - } 7146 - }, 7147 - "node_modules/tailwindcss/node_modules/readdirp": { 7148 - "version": "3.6.0", 7149 - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 7150 - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 7151 - "dev": true, 7152 - "license": "MIT", 7153 - "dependencies": { 7154 - "picomatch": "^2.2.1" 7155 - }, 7156 - "engines": { 7157 - "node": ">=8.10.0" 7158 - } 7159 - }, 7160 - "node_modules/tar": { 7161 - "version": "7.5.1", 7162 - "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.1.tgz", 7163 - "integrity": "sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==", 7164 - "dev": true, 7165 - "license": "ISC", 7166 - "dependencies": { 7167 - "@isaacs/fs-minipass": "^4.0.0", 7168 - "chownr": "^3.0.0", 7169 - "minipass": "^7.1.2", 7170 - "minizlib": "^3.1.0", 7171 - "yallist": "^5.0.0" 7172 - }, 7173 - "engines": { 7174 - "node": ">=18" 7175 - } 7176 - }, 7177 - "node_modules/thenify": { 7178 - "version": "3.3.1", 7179 - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 7180 - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 7181 - "dev": true, 7182 - "license": "MIT", 7183 - "dependencies": { 7184 - "any-promise": "^1.0.0" 7185 - } 7186 - }, 7187 - "node_modules/thenify-all": { 7188 - "version": "1.6.0", 7189 - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 7190 - "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 7191 - "dev": true, 7192 - "license": "MIT", 7193 - "dependencies": { 7194 - "thenify": ">= 3.1.0 < 4" 7195 - }, 7196 - "engines": { 7197 - "node": ">=0.8" 7198 - } 7199 - }, 7200 - "node_modules/tinyglobby": { 7201 - "version": "0.2.15", 7202 - "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", 7203 - "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", 7204 - "dev": true, 7205 - "license": "MIT", 7206 - "dependencies": { 7207 - "fdir": "^6.5.0", 7208 - "picomatch": "^4.0.3" 7209 - }, 7210 - "engines": { 7211 - "node": ">=12.0.0" 7212 - }, 7213 - "funding": { 7214 - "url": "https://github.com/sponsors/SuperchupuDev" 7215 - } 7216 - }, 7217 - "node_modules/to-regex-range": { 7218 - "version": "5.0.1", 7219 - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 7220 - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 7221 - "dev": true, 7222 - "license": "MIT", 7223 - "dependencies": { 7224 - "is-number": "^7.0.0" 7225 - }, 7226 - "engines": { 7227 - "node": ">=8.0" 7228 - } 7229 - }, 7230 - "node_modules/totalist": { 7231 - "version": "3.0.1", 7232 - "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", 7233 - "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", 7234 - "dev": true, 7235 - "license": "MIT", 7236 - "engines": { 7237 - "node": ">=6" 7238 - } 7239 - }, 7240 - "node_modules/tr46": { 7241 - "version": "0.0.3", 7242 - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 7243 - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", 7244 - "dev": true, 7245 - "license": "MIT" 7246 - }, 7247 - "node_modules/trim-lines": { 7248 - "version": "3.0.1", 7249 - "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", 7250 - "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", 7251 - "license": "MIT", 7252 - "funding": { 7253 - "type": "github", 7254 - "url": "https://github.com/sponsors/wooorm" 7255 - } 7256 - }, 7257 - "node_modules/trough": { 7258 - "version": "2.2.0", 7259 - "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", 7260 - "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", 7261 - "license": "MIT", 7262 - "funding": { 7263 - "type": "github", 7264 - "url": "https://github.com/sponsors/wooorm" 7265 - } 7266 - }, 7267 - "node_modules/ts-api-utils": { 7268 - "version": "2.1.0", 7269 - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", 7270 - "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", 7271 - "dev": true, 7272 - "license": "MIT", 7273 - "engines": { 7274 - "node": ">=18.12" 7275 - }, 7276 - "peerDependencies": { 7277 - "typescript": ">=4.8.4" 7278 - } 7279 - }, 7280 - "node_modules/ts-interface-checker": { 7281 - "version": "0.1.13", 7282 - "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 7283 - "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", 7284 - "dev": true, 7285 - "license": "Apache-2.0" 7286 - }, 7287 - "node_modules/type-check": { 7288 - "version": "0.4.0", 7289 - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 7290 - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 7291 - "dev": true, 7292 - "license": "MIT", 7293 - "dependencies": { 7294 - "prelude-ls": "^1.2.1" 7295 - }, 7296 - "engines": { 7297 - "node": ">= 0.8.0" 7298 - } 7299 - }, 7300 - "node_modules/typescript": { 7301 - "version": "5.9.3", 7302 - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", 7303 - "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", 7304 - "dev": true, 7305 - "license": "Apache-2.0", 7306 - "bin": { 7307 - "tsc": "bin/tsc", 7308 - "tsserver": "bin/tsserver" 7309 - }, 7310 - "engines": { 7311 - "node": ">=14.17" 7312 - } 7313 - }, 7314 - "node_modules/typescript-eslint": { 7315 - "version": "8.46.0", 7316 - "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.46.0.tgz", 7317 - "integrity": "sha512-6+ZrB6y2bT2DX3K+Qd9vn7OFOJR+xSLDj+Aw/N3zBwUt27uTw2sw2TE2+UcY1RiyBZkaGbTkVg9SSdPNUG6aUw==", 7318 - "dev": true, 7319 - "license": "MIT", 7320 - "dependencies": { 7321 - "@typescript-eslint/eslint-plugin": "8.46.0", 7322 - "@typescript-eslint/parser": "8.46.0", 7323 - "@typescript-eslint/typescript-estree": "8.46.0", 7324 - "@typescript-eslint/utils": "8.46.0" 7325 - }, 7326 - "engines": { 7327 - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 7328 - }, 7329 - "funding": { 7330 - "type": "opencollective", 7331 - "url": "https://opencollective.com/typescript-eslint" 7332 - }, 7333 - "peerDependencies": { 7334 - "eslint": "^8.57.0 || ^9.0.0", 7335 - "typescript": ">=4.8.4 <6.0.0" 7336 - } 7337 - }, 7338 - "node_modules/undici-types": { 7339 - "version": "7.14.0", 7340 - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.14.0.tgz", 7341 - "integrity": "sha512-QQiYxHuyZ9gQUIrmPo3IA+hUl4KYk8uSA7cHrcKd/l3p1OTpZcM0Tbp9x7FAtXdAYhlasd60ncPpgu6ihG6TOA==", 7342 - "dev": true, 7343 - "license": "MIT" 7344 - }, 7345 - "node_modules/unicode-emoji-modifier-base": { 7346 - "version": "1.0.0", 7347 - "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", 7348 - "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", 7349 - "license": "MIT", 7350 - "engines": { 7351 - "node": ">=4" 7352 - } 7353 - }, 7354 - "node_modules/unified": { 7355 - "version": "11.0.5", 7356 - "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", 7357 - "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", 7358 - "license": "MIT", 7359 - "dependencies": { 7360 - "@types/unist": "^3.0.0", 7361 - "bail": "^2.0.0", 7362 - "devlop": "^1.0.0", 7363 - "extend": "^3.0.0", 7364 - "is-plain-obj": "^4.0.0", 7365 - "trough": "^2.0.0", 7366 - "vfile": "^6.0.0" 7367 - }, 7368 - "funding": { 7369 - "type": "opencollective", 7370 - "url": "https://opencollective.com/unified" 7371 - } 7372 - }, 7373 - "node_modules/unist-util-find-after": { 7374 - "version": "5.0.0", 7375 - "resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz", 7376 - "integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==", 7377 - "license": "MIT", 7378 - "dependencies": { 7379 - "@types/unist": "^3.0.0", 7380 - "unist-util-is": "^6.0.0" 7381 - }, 7382 - "funding": { 7383 - "type": "opencollective", 7384 - "url": "https://opencollective.com/unified" 7385 - } 7386 - }, 7387 - "node_modules/unist-util-is": { 7388 - "version": "6.0.0", 7389 - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", 7390 - "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", 7391 - "license": "MIT", 7392 - "dependencies": { 7393 - "@types/unist": "^3.0.0" 7394 - }, 7395 - "funding": { 7396 - "type": "opencollective", 7397 - "url": "https://opencollective.com/unified" 7398 - } 7399 - }, 7400 - "node_modules/unist-util-position": { 7401 - "version": "5.0.0", 7402 - "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", 7403 - "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", 7404 - "license": "MIT", 7405 - "dependencies": { 7406 - "@types/unist": "^3.0.0" 7407 - }, 7408 - "funding": { 7409 - "type": "opencollective", 7410 - "url": "https://opencollective.com/unified" 7411 - } 7412 - }, 7413 - "node_modules/unist-util-remove-position": { 7414 - "version": "5.0.0", 7415 - "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz", 7416 - "integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==", 7417 - "license": "MIT", 7418 - "dependencies": { 7419 - "@types/unist": "^3.0.0", 7420 - "unist-util-visit": "^5.0.0" 7421 - }, 7422 - "funding": { 7423 - "type": "opencollective", 7424 - "url": "https://opencollective.com/unified" 7425 - } 7426 - }, 7427 - "node_modules/unist-util-stringify-position": { 7428 - "version": "4.0.0", 7429 - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", 7430 - "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", 7431 - "license": "MIT", 7432 - "dependencies": { 7433 - "@types/unist": "^3.0.0" 7434 - }, 7435 - "funding": { 7436 - "type": "opencollective", 7437 - "url": "https://opencollective.com/unified" 7438 - } 7439 - }, 7440 - "node_modules/unist-util-visit": { 7441 - "version": "5.0.0", 7442 - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", 7443 - "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", 7444 - "license": "MIT", 7445 - "dependencies": { 7446 - "@types/unist": "^3.0.0", 7447 - "unist-util-is": "^6.0.0", 7448 - "unist-util-visit-parents": "^6.0.0" 7449 - }, 7450 - "funding": { 7451 - "type": "opencollective", 7452 - "url": "https://opencollective.com/unified" 7453 - } 7454 - }, 7455 - "node_modules/unist-util-visit-parents": { 7456 - "version": "6.0.1", 7457 - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", 7458 - "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", 7459 - "license": "MIT", 7460 - "dependencies": { 7461 - "@types/unist": "^3.0.0", 7462 - "unist-util-is": "^6.0.0" 7463 - }, 7464 - "funding": { 7465 - "type": "opencollective", 7466 - "url": "https://opencollective.com/unified" 7467 - } 7468 - }, 7469 - "node_modules/update-browserslist-db": { 7470 - "version": "1.1.3", 7471 - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", 7472 - "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", 7473 - "dev": true, 7474 - "funding": [ 7475 - { 7476 - "type": "opencollective", 7477 - "url": "https://opencollective.com/browserslist" 7478 - }, 7479 - { 7480 - "type": "tidelift", 7481 - "url": "https://tidelift.com/funding/github/npm/browserslist" 7482 - }, 7483 - { 7484 - "type": "github", 7485 - "url": "https://github.com/sponsors/ai" 7486 - } 7487 - ], 7488 - "license": "MIT", 7489 - "dependencies": { 7490 - "escalade": "^3.2.0", 7491 - "picocolors": "^1.1.1" 7492 - }, 7493 - "bin": { 7494 - "update-browserslist-db": "cli.js" 7495 - }, 7496 - "peerDependencies": { 7497 - "browserslist": ">= 4.21.0" 7498 - } 7499 - }, 7500 - "node_modules/uri-js": { 7501 - "version": "4.4.1", 7502 - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 7503 - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 7504 - "dev": true, 7505 - "license": "BSD-2-Clause", 7506 - "dependencies": { 7507 - "punycode": "^2.1.0" 7508 - } 7509 - }, 7510 - "node_modules/util-deprecate": { 7511 - "version": "1.0.2", 7512 - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 7513 - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 7514 - "dev": true, 7515 - "license": "MIT" 7516 - }, 7517 - "node_modules/vfile": { 7518 - "version": "6.0.3", 7519 - "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", 7520 - "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", 7521 - "license": "MIT", 7522 - "dependencies": { 7523 - "@types/unist": "^3.0.0", 7524 - "vfile-message": "^4.0.0" 7525 - }, 7526 - "funding": { 7527 - "type": "opencollective", 7528 - "url": "https://opencollective.com/unified" 7529 - } 7530 - }, 7531 - "node_modules/vfile-location": { 7532 - "version": "5.0.3", 7533 - "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz", 7534 - "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==", 7535 - "license": "MIT", 7536 - "dependencies": { 7537 - "@types/unist": "^3.0.0", 7538 - "vfile": "^6.0.0" 7539 - }, 7540 - "funding": { 7541 - "type": "opencollective", 7542 - "url": "https://opencollective.com/unified" 7543 - } 7544 - }, 7545 - "node_modules/vfile-message": { 7546 - "version": "4.0.3", 7547 - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", 7548 - "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", 7549 - "license": "MIT", 7550 - "dependencies": { 7551 - "@types/unist": "^3.0.0", 7552 - "unist-util-stringify-position": "^4.0.0" 7553 - }, 7554 - "funding": { 7555 - "type": "opencollective", 7556 - "url": "https://opencollective.com/unified" 7557 - } 7558 - }, 7559 - "node_modules/vite": { 7560 - "version": "7.1.9", 7561 - "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.9.tgz", 7562 - "integrity": "sha512-4nVGliEpxmhCL8DslSAUdxlB6+SMrhB0a1v5ijlh1xB1nEPuy1mxaHxysVucLHuWryAxLWg6a5ei+U4TLn/rFg==", 7563 - "dev": true, 7564 - "license": "MIT", 7565 - "dependencies": { 7566 - "esbuild": "^0.25.0", 7567 - "fdir": "^6.5.0", 7568 - "picomatch": "^4.0.3", 7569 - "postcss": "^8.5.6", 7570 - "rollup": "^4.43.0", 7571 - "tinyglobby": "^0.2.15" 7572 - }, 7573 - "bin": { 7574 - "vite": "bin/vite.js" 7575 - }, 7576 - "engines": { 7577 - "node": "^20.19.0 || >=22.12.0" 7578 - }, 7579 - "funding": { 7580 - "url": "https://github.com/vitejs/vite?sponsor=1" 7581 - }, 7582 - "optionalDependencies": { 7583 - "fsevents": "~2.3.3" 7584 - }, 7585 - "peerDependencies": { 7586 - "@types/node": "^20.19.0 || >=22.12.0", 7587 - "jiti": ">=1.21.0", 7588 - "less": "^4.0.0", 7589 - "lightningcss": "^1.21.0", 7590 - "sass": "^1.70.0", 7591 - "sass-embedded": "^1.70.0", 7592 - "stylus": ">=0.54.8", 7593 - "sugarss": "^5.0.0", 7594 - "terser": "^5.16.0", 7595 - "tsx": "^4.8.1", 7596 - "yaml": "^2.4.2" 7597 - }, 7598 - "peerDependenciesMeta": { 7599 - "@types/node": { 7600 - "optional": true 7601 - }, 7602 - "jiti": { 7603 - "optional": true 7604 - }, 7605 - "less": { 7606 - "optional": true 7607 - }, 7608 - "lightningcss": { 7609 - "optional": true 7610 - }, 7611 - "sass": { 7612 - "optional": true 7613 - }, 7614 - "sass-embedded": { 7615 - "optional": true 7616 - }, 7617 - "stylus": { 7618 - "optional": true 7619 - }, 7620 - "sugarss": { 7621 - "optional": true 7622 - }, 7623 - "terser": { 7624 - "optional": true 7625 - }, 7626 - "tsx": { 7627 - "optional": true 7628 - }, 7629 - "yaml": { 7630 - "optional": true 7631 - } 7632 - } 7633 - }, 7634 - "node_modules/vitefu": { 7635 - "version": "1.1.1", 7636 - "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.1.1.tgz", 7637 - "integrity": "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==", 7638 - "dev": true, 7639 - "license": "MIT", 7640 - "workspaces": [ 7641 - "tests/deps/*", 7642 - "tests/projects/*", 7643 - "tests/projects/workspace/packages/*" 7644 - ], 7645 - "peerDependencies": { 7646 - "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0" 7647 - }, 7648 - "peerDependenciesMeta": { 7649 - "vite": { 7650 - "optional": true 7651 - } 7652 - } 7653 - }, 7654 - "node_modules/web-namespaces": { 7655 - "version": "2.0.1", 7656 - "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", 7657 - "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", 7658 - "license": "MIT", 7659 - "funding": { 7660 - "type": "github", 7661 - "url": "https://github.com/sponsors/wooorm" 7662 - } 7663 - }, 7664 - "node_modules/webidl-conversions": { 7665 - "version": "3.0.1", 7666 - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 7667 - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", 7668 - "dev": true, 7669 - "license": "BSD-2-Clause" 7670 - }, 7671 - "node_modules/whatwg-url": { 7672 - "version": "5.0.0", 7673 - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 7674 - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 7675 - "dev": true, 7676 - "license": "MIT", 7677 - "dependencies": { 7678 - "tr46": "~0.0.3", 7679 - "webidl-conversions": "^3.0.0" 7680 - } 7681 - }, 7682 - "node_modules/which": { 7683 - "version": "2.0.2", 7684 - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 7685 - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 7686 - "dev": true, 7687 - "license": "ISC", 7688 - "dependencies": { 7689 - "isexe": "^2.0.0" 7690 - }, 7691 - "bin": { 7692 - "node-which": "bin/node-which" 7693 - }, 7694 - "engines": { 7695 - "node": ">= 8" 7696 - } 7697 - }, 7698 - "node_modules/word-wrap": { 7699 - "version": "1.2.5", 7700 - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 7701 - "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 7702 - "dev": true, 7703 - "license": "MIT", 7704 - "engines": { 7705 - "node": ">=0.10.0" 7706 - } 7707 - }, 7708 - "node_modules/wrap-ansi": { 7709 - "version": "8.1.0", 7710 - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 7711 - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 7712 - "dev": true, 7713 - "license": "MIT", 7714 - "dependencies": { 7715 - "ansi-styles": "^6.1.0", 7716 - "string-width": "^5.0.1", 7717 - "strip-ansi": "^7.0.1" 7718 - }, 7719 - "engines": { 7720 - "node": ">=12" 7721 - }, 7722 - "funding": { 7723 - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 7724 - } 7725 - }, 7726 - "node_modules/wrap-ansi-cjs": { 7727 - "name": "wrap-ansi", 7728 - "version": "7.0.0", 7729 - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 7730 - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 7731 - "dev": true, 7732 - "license": "MIT", 7733 - "dependencies": { 7734 - "ansi-styles": "^4.0.0", 7735 - "string-width": "^4.1.0", 7736 - "strip-ansi": "^6.0.0" 7737 - }, 7738 - "engines": { 7739 - "node": ">=10" 7740 - }, 7741 - "funding": { 7742 - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 7743 - } 7744 - }, 7745 - "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { 7746 - "version": "5.0.1", 7747 - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 7748 - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 7749 - "dev": true, 7750 - "license": "MIT", 7751 - "engines": { 7752 - "node": ">=8" 7753 - } 7754 - }, 7755 - "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 7756 - "version": "8.0.0", 7757 - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 7758 - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 7759 - "dev": true, 7760 - "license": "MIT" 7761 - }, 7762 - "node_modules/wrap-ansi-cjs/node_modules/string-width": { 7763 - "version": "4.2.3", 7764 - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 7765 - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 7766 - "dev": true, 7767 - "license": "MIT", 7768 - "dependencies": { 7769 - "emoji-regex": "^8.0.0", 7770 - "is-fullwidth-code-point": "^3.0.0", 7771 - "strip-ansi": "^6.0.1" 7772 - }, 7773 - "engines": { 7774 - "node": ">=8" 7775 - } 7776 - }, 7777 - "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { 7778 - "version": "6.0.1", 7779 - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 7780 - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 7781 - "dev": true, 7782 - "license": "MIT", 7783 - "dependencies": { 7784 - "ansi-regex": "^5.0.1" 7785 - }, 7786 - "engines": { 7787 - "node": ">=8" 7788 - } 7789 - }, 7790 - "node_modules/wrap-ansi/node_modules/ansi-styles": { 7791 - "version": "6.2.3", 7792 - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", 7793 - "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", 7794 - "dev": true, 7795 - "license": "MIT", 7796 - "engines": { 7797 - "node": ">=12" 7798 - }, 7799 - "funding": { 7800 - "url": "https://github.com/chalk/ansi-styles?sponsor=1" 7801 - } 7802 - }, 7803 - "node_modules/yallist": { 7804 - "version": "5.0.0", 7805 - "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", 7806 - "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", 7807 - "dev": true, 7808 - "license": "BlueOak-1.0.0", 7809 - "engines": { 7810 - "node": ">=18" 7811 - } 7812 - }, 7813 - "node_modules/yocto-queue": { 7814 - "version": "0.1.0", 7815 - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 7816 - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 7817 - "dev": true, 7818 - "license": "MIT", 7819 - "engines": { 7820 - "node": ">=10" 7821 - }, 7822 - "funding": { 7823 - "url": "https://github.com/sponsors/sindresorhus" 7824 - } 7825 - }, 7826 - "node_modules/zimmerframe": { 7827 - "version": "1.1.4", 7828 - "resolved": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-1.1.4.tgz", 7829 - "integrity": "sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==", 7830 - "dev": true, 7831 - "license": "MIT" 7832 - }, 7833 - "node_modules/zwitch": { 7834 - "version": "2.0.4", 7835 - "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", 7836 - "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", 7837 - "license": "MIT", 7838 - "funding": { 7839 - "type": "github", 7840 - "url": "https://github.com/sponsors/wooorm" 7841 - } 7842 - } 7843 - } 2 + "name": "sv", 3 + "version": "0.0.1", 4 + "lockfileVersion": 3, 5 + "requires": true, 6 + "packages": { 7 + "": { 8 + "name": "sv", 9 + "version": "0.0.1", 10 + "devDependencies": { 11 + "@sveltejs/adapter-auto": "^6.1.0", 12 + "@sveltejs/kit": "^2.43.2", 13 + "@sveltejs/vite-plugin-svelte": "^6.2.0", 14 + "@tailwindcss/typography": "^0.5.18", 15 + "@tailwindcss/vite": "^4.1.13", 16 + "prettier": "^3.6.2", 17 + "prettier-plugin-svelte": "^3.4.0", 18 + "prettier-plugin-tailwindcss": "^0.6.14", 19 + "svelte": "^5.39.5", 20 + "svelte-check": "^4.3.2", 21 + "tailwindcss": "^4.1.13", 22 + "typescript": "^5.9.2", 23 + "vite": "^7.1.7" 24 + } 25 + }, 26 + "node_modules/@esbuild/aix-ppc64": { 27 + "version": "0.25.10", 28 + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz", 29 + "integrity": "sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==", 30 + "cpu": [ 31 + "ppc64" 32 + ], 33 + "dev": true, 34 + "license": "MIT", 35 + "optional": true, 36 + "os": [ 37 + "aix" 38 + ], 39 + "engines": { 40 + "node": ">=18" 41 + } 42 + }, 43 + "node_modules/@esbuild/android-arm": { 44 + "version": "0.25.10", 45 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.10.tgz", 46 + "integrity": "sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==", 47 + "cpu": [ 48 + "arm" 49 + ], 50 + "dev": true, 51 + "license": "MIT", 52 + "optional": true, 53 + "os": [ 54 + "android" 55 + ], 56 + "engines": { 57 + "node": ">=18" 58 + } 59 + }, 60 + "node_modules/@esbuild/android-arm64": { 61 + "version": "0.25.10", 62 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz", 63 + "integrity": "sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==", 64 + "cpu": [ 65 + "arm64" 66 + ], 67 + "dev": true, 68 + "license": "MIT", 69 + "optional": true, 70 + "os": [ 71 + "android" 72 + ], 73 + "engines": { 74 + "node": ">=18" 75 + } 76 + }, 77 + "node_modules/@esbuild/android-x64": { 78 + "version": "0.25.10", 79 + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.10.tgz", 80 + "integrity": "sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==", 81 + "cpu": [ 82 + "x64" 83 + ], 84 + "dev": true, 85 + "license": "MIT", 86 + "optional": true, 87 + "os": [ 88 + "android" 89 + ], 90 + "engines": { 91 + "node": ">=18" 92 + } 93 + }, 94 + "node_modules/@esbuild/darwin-arm64": { 95 + "version": "0.25.10", 96 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz", 97 + "integrity": "sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==", 98 + "cpu": [ 99 + "arm64" 100 + ], 101 + "dev": true, 102 + "license": "MIT", 103 + "optional": true, 104 + "os": [ 105 + "darwin" 106 + ], 107 + "engines": { 108 + "node": ">=18" 109 + } 110 + }, 111 + "node_modules/@esbuild/darwin-x64": { 112 + "version": "0.25.10", 113 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz", 114 + "integrity": "sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==", 115 + "cpu": [ 116 + "x64" 117 + ], 118 + "dev": true, 119 + "license": "MIT", 120 + "optional": true, 121 + "os": [ 122 + "darwin" 123 + ], 124 + "engines": { 125 + "node": ">=18" 126 + } 127 + }, 128 + "node_modules/@esbuild/freebsd-arm64": { 129 + "version": "0.25.10", 130 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz", 131 + "integrity": "sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==", 132 + "cpu": [ 133 + "arm64" 134 + ], 135 + "dev": true, 136 + "license": "MIT", 137 + "optional": true, 138 + "os": [ 139 + "freebsd" 140 + ], 141 + "engines": { 142 + "node": ">=18" 143 + } 144 + }, 145 + "node_modules/@esbuild/freebsd-x64": { 146 + "version": "0.25.10", 147 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz", 148 + "integrity": "sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==", 149 + "cpu": [ 150 + "x64" 151 + ], 152 + "dev": true, 153 + "license": "MIT", 154 + "optional": true, 155 + "os": [ 156 + "freebsd" 157 + ], 158 + "engines": { 159 + "node": ">=18" 160 + } 161 + }, 162 + "node_modules/@esbuild/linux-arm": { 163 + "version": "0.25.10", 164 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz", 165 + "integrity": "sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==", 166 + "cpu": [ 167 + "arm" 168 + ], 169 + "dev": true, 170 + "license": "MIT", 171 + "optional": true, 172 + "os": [ 173 + "linux" 174 + ], 175 + "engines": { 176 + "node": ">=18" 177 + } 178 + }, 179 + "node_modules/@esbuild/linux-arm64": { 180 + "version": "0.25.10", 181 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz", 182 + "integrity": "sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==", 183 + "cpu": [ 184 + "arm64" 185 + ], 186 + "dev": true, 187 + "license": "MIT", 188 + "optional": true, 189 + "os": [ 190 + "linux" 191 + ], 192 + "engines": { 193 + "node": ">=18" 194 + } 195 + }, 196 + "node_modules/@esbuild/linux-ia32": { 197 + "version": "0.25.10", 198 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz", 199 + "integrity": "sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==", 200 + "cpu": [ 201 + "ia32" 202 + ], 203 + "dev": true, 204 + "license": "MIT", 205 + "optional": true, 206 + "os": [ 207 + "linux" 208 + ], 209 + "engines": { 210 + "node": ">=18" 211 + } 212 + }, 213 + "node_modules/@esbuild/linux-loong64": { 214 + "version": "0.25.10", 215 + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz", 216 + "integrity": "sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==", 217 + "cpu": [ 218 + "loong64" 219 + ], 220 + "dev": true, 221 + "license": "MIT", 222 + "optional": true, 223 + "os": [ 224 + "linux" 225 + ], 226 + "engines": { 227 + "node": ">=18" 228 + } 229 + }, 230 + "node_modules/@esbuild/linux-mips64el": { 231 + "version": "0.25.10", 232 + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz", 233 + "integrity": "sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==", 234 + "cpu": [ 235 + "mips64el" 236 + ], 237 + "dev": true, 238 + "license": "MIT", 239 + "optional": true, 240 + "os": [ 241 + "linux" 242 + ], 243 + "engines": { 244 + "node": ">=18" 245 + } 246 + }, 247 + "node_modules/@esbuild/linux-ppc64": { 248 + "version": "0.25.10", 249 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz", 250 + "integrity": "sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==", 251 + "cpu": [ 252 + "ppc64" 253 + ], 254 + "dev": true, 255 + "license": "MIT", 256 + "optional": true, 257 + "os": [ 258 + "linux" 259 + ], 260 + "engines": { 261 + "node": ">=18" 262 + } 263 + }, 264 + "node_modules/@esbuild/linux-riscv64": { 265 + "version": "0.25.10", 266 + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz", 267 + "integrity": "sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==", 268 + "cpu": [ 269 + "riscv64" 270 + ], 271 + "dev": true, 272 + "license": "MIT", 273 + "optional": true, 274 + "os": [ 275 + "linux" 276 + ], 277 + "engines": { 278 + "node": ">=18" 279 + } 280 + }, 281 + "node_modules/@esbuild/linux-s390x": { 282 + "version": "0.25.10", 283 + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz", 284 + "integrity": "sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==", 285 + "cpu": [ 286 + "s390x" 287 + ], 288 + "dev": true, 289 + "license": "MIT", 290 + "optional": true, 291 + "os": [ 292 + "linux" 293 + ], 294 + "engines": { 295 + "node": ">=18" 296 + } 297 + }, 298 + "node_modules/@esbuild/linux-x64": { 299 + "version": "0.25.10", 300 + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz", 301 + "integrity": "sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==", 302 + "cpu": [ 303 + "x64" 304 + ], 305 + "dev": true, 306 + "license": "MIT", 307 + "optional": true, 308 + "os": [ 309 + "linux" 310 + ], 311 + "engines": { 312 + "node": ">=18" 313 + } 314 + }, 315 + "node_modules/@esbuild/netbsd-arm64": { 316 + "version": "0.25.10", 317 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz", 318 + "integrity": "sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==", 319 + "cpu": [ 320 + "arm64" 321 + ], 322 + "dev": true, 323 + "license": "MIT", 324 + "optional": true, 325 + "os": [ 326 + "netbsd" 327 + ], 328 + "engines": { 329 + "node": ">=18" 330 + } 331 + }, 332 + "node_modules/@esbuild/netbsd-x64": { 333 + "version": "0.25.10", 334 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz", 335 + "integrity": "sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==", 336 + "cpu": [ 337 + "x64" 338 + ], 339 + "dev": true, 340 + "license": "MIT", 341 + "optional": true, 342 + "os": [ 343 + "netbsd" 344 + ], 345 + "engines": { 346 + "node": ">=18" 347 + } 348 + }, 349 + "node_modules/@esbuild/openbsd-arm64": { 350 + "version": "0.25.10", 351 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz", 352 + "integrity": "sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==", 353 + "cpu": [ 354 + "arm64" 355 + ], 356 + "dev": true, 357 + "license": "MIT", 358 + "optional": true, 359 + "os": [ 360 + "openbsd" 361 + ], 362 + "engines": { 363 + "node": ">=18" 364 + } 365 + }, 366 + "node_modules/@esbuild/openbsd-x64": { 367 + "version": "0.25.10", 368 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz", 369 + "integrity": "sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==", 370 + "cpu": [ 371 + "x64" 372 + ], 373 + "dev": true, 374 + "license": "MIT", 375 + "optional": true, 376 + "os": [ 377 + "openbsd" 378 + ], 379 + "engines": { 380 + "node": ">=18" 381 + } 382 + }, 383 + "node_modules/@esbuild/openharmony-arm64": { 384 + "version": "0.25.10", 385 + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz", 386 + "integrity": "sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==", 387 + "cpu": [ 388 + "arm64" 389 + ], 390 + "dev": true, 391 + "license": "MIT", 392 + "optional": true, 393 + "os": [ 394 + "openharmony" 395 + ], 396 + "engines": { 397 + "node": ">=18" 398 + } 399 + }, 400 + "node_modules/@esbuild/sunos-x64": { 401 + "version": "0.25.10", 402 + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz", 403 + "integrity": "sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==", 404 + "cpu": [ 405 + "x64" 406 + ], 407 + "dev": true, 408 + "license": "MIT", 409 + "optional": true, 410 + "os": [ 411 + "sunos" 412 + ], 413 + "engines": { 414 + "node": ">=18" 415 + } 416 + }, 417 + "node_modules/@esbuild/win32-arm64": { 418 + "version": "0.25.10", 419 + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz", 420 + "integrity": "sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==", 421 + "cpu": [ 422 + "arm64" 423 + ], 424 + "dev": true, 425 + "license": "MIT", 426 + "optional": true, 427 + "os": [ 428 + "win32" 429 + ], 430 + "engines": { 431 + "node": ">=18" 432 + } 433 + }, 434 + "node_modules/@esbuild/win32-ia32": { 435 + "version": "0.25.10", 436 + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz", 437 + "integrity": "sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==", 438 + "cpu": [ 439 + "ia32" 440 + ], 441 + "dev": true, 442 + "license": "MIT", 443 + "optional": true, 444 + "os": [ 445 + "win32" 446 + ], 447 + "engines": { 448 + "node": ">=18" 449 + } 450 + }, 451 + "node_modules/@esbuild/win32-x64": { 452 + "version": "0.25.10", 453 + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz", 454 + "integrity": "sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==", 455 + "cpu": [ 456 + "x64" 457 + ], 458 + "dev": true, 459 + "license": "MIT", 460 + "optional": true, 461 + "os": [ 462 + "win32" 463 + ], 464 + "engines": { 465 + "node": ">=18" 466 + } 467 + }, 468 + "node_modules/@isaacs/fs-minipass": { 469 + "version": "4.0.1", 470 + "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", 471 + "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", 472 + "dev": true, 473 + "license": "ISC", 474 + "dependencies": { 475 + "minipass": "^7.0.4" 476 + }, 477 + "engines": { 478 + "node": ">=18.0.0" 479 + } 480 + }, 481 + "node_modules/@jridgewell/gen-mapping": { 482 + "version": "0.3.13", 483 + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", 484 + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", 485 + "dev": true, 486 + "license": "MIT", 487 + "dependencies": { 488 + "@jridgewell/sourcemap-codec": "^1.5.0", 489 + "@jridgewell/trace-mapping": "^0.3.24" 490 + } 491 + }, 492 + "node_modules/@jridgewell/remapping": { 493 + "version": "2.3.5", 494 + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", 495 + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", 496 + "dev": true, 497 + "license": "MIT", 498 + "dependencies": { 499 + "@jridgewell/gen-mapping": "^0.3.5", 500 + "@jridgewell/trace-mapping": "^0.3.24" 501 + } 502 + }, 503 + "node_modules/@jridgewell/resolve-uri": { 504 + "version": "3.1.2", 505 + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 506 + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 507 + "dev": true, 508 + "license": "MIT", 509 + "engines": { 510 + "node": ">=6.0.0" 511 + } 512 + }, 513 + "node_modules/@jridgewell/sourcemap-codec": { 514 + "version": "1.5.5", 515 + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", 516 + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", 517 + "dev": true, 518 + "license": "MIT" 519 + }, 520 + "node_modules/@jridgewell/trace-mapping": { 521 + "version": "0.3.31", 522 + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", 523 + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", 524 + "dev": true, 525 + "license": "MIT", 526 + "dependencies": { 527 + "@jridgewell/resolve-uri": "^3.1.0", 528 + "@jridgewell/sourcemap-codec": "^1.4.14" 529 + } 530 + }, 531 + "node_modules/@polka/url": { 532 + "version": "1.0.0-next.29", 533 + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz", 534 + "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==", 535 + "dev": true, 536 + "license": "MIT" 537 + }, 538 + "node_modules/@rollup/rollup-android-arm-eabi": { 539 + "version": "4.52.4", 540 + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.4.tgz", 541 + "integrity": "sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==", 542 + "cpu": [ 543 + "arm" 544 + ], 545 + "dev": true, 546 + "license": "MIT", 547 + "optional": true, 548 + "os": [ 549 + "android" 550 + ] 551 + }, 552 + "node_modules/@rollup/rollup-android-arm64": { 553 + "version": "4.52.4", 554 + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.4.tgz", 555 + "integrity": "sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==", 556 + "cpu": [ 557 + "arm64" 558 + ], 559 + "dev": true, 560 + "license": "MIT", 561 + "optional": true, 562 + "os": [ 563 + "android" 564 + ] 565 + }, 566 + "node_modules/@rollup/rollup-darwin-arm64": { 567 + "version": "4.52.4", 568 + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.4.tgz", 569 + "integrity": "sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==", 570 + "cpu": [ 571 + "arm64" 572 + ], 573 + "dev": true, 574 + "license": "MIT", 575 + "optional": true, 576 + "os": [ 577 + "darwin" 578 + ] 579 + }, 580 + "node_modules/@rollup/rollup-darwin-x64": { 581 + "version": "4.52.4", 582 + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.4.tgz", 583 + "integrity": "sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==", 584 + "cpu": [ 585 + "x64" 586 + ], 587 + "dev": true, 588 + "license": "MIT", 589 + "optional": true, 590 + "os": [ 591 + "darwin" 592 + ] 593 + }, 594 + "node_modules/@rollup/rollup-freebsd-arm64": { 595 + "version": "4.52.4", 596 + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.4.tgz", 597 + "integrity": "sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==", 598 + "cpu": [ 599 + "arm64" 600 + ], 601 + "dev": true, 602 + "license": "MIT", 603 + "optional": true, 604 + "os": [ 605 + "freebsd" 606 + ] 607 + }, 608 + "node_modules/@rollup/rollup-freebsd-x64": { 609 + "version": "4.52.4", 610 + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.4.tgz", 611 + "integrity": "sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==", 612 + "cpu": [ 613 + "x64" 614 + ], 615 + "dev": true, 616 + "license": "MIT", 617 + "optional": true, 618 + "os": [ 619 + "freebsd" 620 + ] 621 + }, 622 + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 623 + "version": "4.52.4", 624 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.4.tgz", 625 + "integrity": "sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==", 626 + "cpu": [ 627 + "arm" 628 + ], 629 + "dev": true, 630 + "license": "MIT", 631 + "optional": true, 632 + "os": [ 633 + "linux" 634 + ] 635 + }, 636 + "node_modules/@rollup/rollup-linux-arm-musleabihf": { 637 + "version": "4.52.4", 638 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.4.tgz", 639 + "integrity": "sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==", 640 + "cpu": [ 641 + "arm" 642 + ], 643 + "dev": true, 644 + "license": "MIT", 645 + "optional": true, 646 + "os": [ 647 + "linux" 648 + ] 649 + }, 650 + "node_modules/@rollup/rollup-linux-arm64-gnu": { 651 + "version": "4.52.4", 652 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.4.tgz", 653 + "integrity": "sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==", 654 + "cpu": [ 655 + "arm64" 656 + ], 657 + "dev": true, 658 + "license": "MIT", 659 + "optional": true, 660 + "os": [ 661 + "linux" 662 + ] 663 + }, 664 + "node_modules/@rollup/rollup-linux-arm64-musl": { 665 + "version": "4.52.4", 666 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.4.tgz", 667 + "integrity": "sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==", 668 + "cpu": [ 669 + "arm64" 670 + ], 671 + "dev": true, 672 + "license": "MIT", 673 + "optional": true, 674 + "os": [ 675 + "linux" 676 + ] 677 + }, 678 + "node_modules/@rollup/rollup-linux-loong64-gnu": { 679 + "version": "4.52.4", 680 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.4.tgz", 681 + "integrity": "sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==", 682 + "cpu": [ 683 + "loong64" 684 + ], 685 + "dev": true, 686 + "license": "MIT", 687 + "optional": true, 688 + "os": [ 689 + "linux" 690 + ] 691 + }, 692 + "node_modules/@rollup/rollup-linux-ppc64-gnu": { 693 + "version": "4.52.4", 694 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.4.tgz", 695 + "integrity": "sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==", 696 + "cpu": [ 697 + "ppc64" 698 + ], 699 + "dev": true, 700 + "license": "MIT", 701 + "optional": true, 702 + "os": [ 703 + "linux" 704 + ] 705 + }, 706 + "node_modules/@rollup/rollup-linux-riscv64-gnu": { 707 + "version": "4.52.4", 708 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.4.tgz", 709 + "integrity": "sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==", 710 + "cpu": [ 711 + "riscv64" 712 + ], 713 + "dev": true, 714 + "license": "MIT", 715 + "optional": true, 716 + "os": [ 717 + "linux" 718 + ] 719 + }, 720 + "node_modules/@rollup/rollup-linux-riscv64-musl": { 721 + "version": "4.52.4", 722 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.4.tgz", 723 + "integrity": "sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==", 724 + "cpu": [ 725 + "riscv64" 726 + ], 727 + "dev": true, 728 + "license": "MIT", 729 + "optional": true, 730 + "os": [ 731 + "linux" 732 + ] 733 + }, 734 + "node_modules/@rollup/rollup-linux-s390x-gnu": { 735 + "version": "4.52.4", 736 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.4.tgz", 737 + "integrity": "sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==", 738 + "cpu": [ 739 + "s390x" 740 + ], 741 + "dev": true, 742 + "license": "MIT", 743 + "optional": true, 744 + "os": [ 745 + "linux" 746 + ] 747 + }, 748 + "node_modules/@rollup/rollup-linux-x64-gnu": { 749 + "version": "4.52.4", 750 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.4.tgz", 751 + "integrity": "sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==", 752 + "cpu": [ 753 + "x64" 754 + ], 755 + "dev": true, 756 + "license": "MIT", 757 + "optional": true, 758 + "os": [ 759 + "linux" 760 + ] 761 + }, 762 + "node_modules/@rollup/rollup-linux-x64-musl": { 763 + "version": "4.52.4", 764 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.4.tgz", 765 + "integrity": "sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==", 766 + "cpu": [ 767 + "x64" 768 + ], 769 + "dev": true, 770 + "license": "MIT", 771 + "optional": true, 772 + "os": [ 773 + "linux" 774 + ] 775 + }, 776 + "node_modules/@rollup/rollup-openharmony-arm64": { 777 + "version": "4.52.4", 778 + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.4.tgz", 779 + "integrity": "sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==", 780 + "cpu": [ 781 + "arm64" 782 + ], 783 + "dev": true, 784 + "license": "MIT", 785 + "optional": true, 786 + "os": [ 787 + "openharmony" 788 + ] 789 + }, 790 + "node_modules/@rollup/rollup-win32-arm64-msvc": { 791 + "version": "4.52.4", 792 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.4.tgz", 793 + "integrity": "sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==", 794 + "cpu": [ 795 + "arm64" 796 + ], 797 + "dev": true, 798 + "license": "MIT", 799 + "optional": true, 800 + "os": [ 801 + "win32" 802 + ] 803 + }, 804 + "node_modules/@rollup/rollup-win32-ia32-msvc": { 805 + "version": "4.52.4", 806 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.4.tgz", 807 + "integrity": "sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==", 808 + "cpu": [ 809 + "ia32" 810 + ], 811 + "dev": true, 812 + "license": "MIT", 813 + "optional": true, 814 + "os": [ 815 + "win32" 816 + ] 817 + }, 818 + "node_modules/@rollup/rollup-win32-x64-gnu": { 819 + "version": "4.52.4", 820 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.4.tgz", 821 + "integrity": "sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==", 822 + "cpu": [ 823 + "x64" 824 + ], 825 + "dev": true, 826 + "license": "MIT", 827 + "optional": true, 828 + "os": [ 829 + "win32" 830 + ] 831 + }, 832 + "node_modules/@rollup/rollup-win32-x64-msvc": { 833 + "version": "4.52.4", 834 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.4.tgz", 835 + "integrity": "sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==", 836 + "cpu": [ 837 + "x64" 838 + ], 839 + "dev": true, 840 + "license": "MIT", 841 + "optional": true, 842 + "os": [ 843 + "win32" 844 + ] 845 + }, 846 + "node_modules/@standard-schema/spec": { 847 + "version": "1.0.0", 848 + "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.0.0.tgz", 849 + "integrity": "sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==", 850 + "dev": true, 851 + "license": "MIT" 852 + }, 853 + "node_modules/@sveltejs/acorn-typescript": { 854 + "version": "1.0.6", 855 + "resolved": "https://registry.npmjs.org/@sveltejs/acorn-typescript/-/acorn-typescript-1.0.6.tgz", 856 + "integrity": "sha512-4awhxtMh4cx9blePWl10HRHj8Iivtqj+2QdDCSMDzxG+XKa9+VCNupQuCuvzEhYPzZSrX+0gC+0lHA/0fFKKQQ==", 857 + "dev": true, 858 + "license": "MIT", 859 + "peerDependencies": { 860 + "acorn": "^8.9.0" 861 + } 862 + }, 863 + "node_modules/@sveltejs/adapter-auto": { 864 + "version": "6.1.1", 865 + "resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-6.1.1.tgz", 866 + "integrity": "sha512-cBNt4jgH4KuaNO5gRSB2CZKkGtz+OCZ8lPjRQGjhvVUD4akotnj2weUia6imLl2v07K3IgsQRyM36909miSwoQ==", 867 + "dev": true, 868 + "license": "MIT", 869 + "peerDependencies": { 870 + "@sveltejs/kit": "^2.0.0" 871 + } 872 + }, 873 + "node_modules/@sveltejs/kit": { 874 + "version": "2.46.4", 875 + "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.46.4.tgz", 876 + "integrity": "sha512-J1fd80WokLzIm6EAV7z7C2+/C02qVAX645LZomARARTRJkbbJSY1Jln3wtBZYibUB8c9/5Z6xqLAV39VdbtWCQ==", 877 + "dev": true, 878 + "license": "MIT", 879 + "dependencies": { 880 + "@standard-schema/spec": "^1.0.0", 881 + "@sveltejs/acorn-typescript": "^1.0.5", 882 + "@types/cookie": "^0.6.0", 883 + "acorn": "^8.14.1", 884 + "cookie": "^0.6.0", 885 + "devalue": "^5.3.2", 886 + "esm-env": "^1.2.2", 887 + "kleur": "^4.1.5", 888 + "magic-string": "^0.30.5", 889 + "mrmime": "^2.0.0", 890 + "sade": "^1.8.1", 891 + "set-cookie-parser": "^2.6.0", 892 + "sirv": "^3.0.0" 893 + }, 894 + "bin": { 895 + "svelte-kit": "svelte-kit.js" 896 + }, 897 + "engines": { 898 + "node": ">=18.13" 899 + }, 900 + "peerDependencies": { 901 + "@opentelemetry/api": "^1.0.0", 902 + "@sveltejs/vite-plugin-svelte": "^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0", 903 + "svelte": "^4.0.0 || ^5.0.0-next.0", 904 + "vite": "^5.0.3 || ^6.0.0 || ^7.0.0-beta.0" 905 + }, 906 + "peerDependenciesMeta": { 907 + "@opentelemetry/api": { 908 + "optional": true 909 + } 910 + } 911 + }, 912 + "node_modules/@sveltejs/vite-plugin-svelte": { 913 + "version": "6.2.1", 914 + "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-6.2.1.tgz", 915 + "integrity": "sha512-YZs/OSKOQAQCnJvM/P+F1URotNnYNeU3P2s4oIpzm1uFaqUEqRxUB0g5ejMjEb5Gjb9/PiBI5Ktrq4rUUF8UVQ==", 916 + "dev": true, 917 + "license": "MIT", 918 + "dependencies": { 919 + "@sveltejs/vite-plugin-svelte-inspector": "^5.0.0", 920 + "debug": "^4.4.1", 921 + "deepmerge": "^4.3.1", 922 + "magic-string": "^0.30.17", 923 + "vitefu": "^1.1.1" 924 + }, 925 + "engines": { 926 + "node": "^20.19 || ^22.12 || >=24" 927 + }, 928 + "peerDependencies": { 929 + "svelte": "^5.0.0", 930 + "vite": "^6.3.0 || ^7.0.0" 931 + } 932 + }, 933 + "node_modules/@sveltejs/vite-plugin-svelte-inspector": { 934 + "version": "5.0.1", 935 + "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-5.0.1.tgz", 936 + "integrity": "sha512-ubWshlMk4bc8mkwWbg6vNvCeT7lGQojE3ijDh3QTR6Zr/R+GXxsGbyH4PExEPpiFmqPhYiVSVmHBjUcVc1JIrA==", 937 + "dev": true, 938 + "license": "MIT", 939 + "dependencies": { 940 + "debug": "^4.4.1" 941 + }, 942 + "engines": { 943 + "node": "^20.19 || ^22.12 || >=24" 944 + }, 945 + "peerDependencies": { 946 + "@sveltejs/vite-plugin-svelte": "^6.0.0-next.0", 947 + "svelte": "^5.0.0", 948 + "vite": "^6.3.0 || ^7.0.0" 949 + } 950 + }, 951 + "node_modules/@tailwindcss/node": { 952 + "version": "4.1.14", 953 + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.14.tgz", 954 + "integrity": "sha512-hpz+8vFk3Ic2xssIA3e01R6jkmsAhvkQdXlEbRTk6S10xDAtiQiM3FyvZVGsucefq764euO/b8WUW9ysLdThHw==", 955 + "dev": true, 956 + "license": "MIT", 957 + "dependencies": { 958 + "@jridgewell/remapping": "^2.3.4", 959 + "enhanced-resolve": "^5.18.3", 960 + "jiti": "^2.6.0", 961 + "lightningcss": "1.30.1", 962 + "magic-string": "^0.30.19", 963 + "source-map-js": "^1.2.1", 964 + "tailwindcss": "4.1.14" 965 + } 966 + }, 967 + "node_modules/@tailwindcss/oxide": { 968 + "version": "4.1.14", 969 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.14.tgz", 970 + "integrity": "sha512-23yx+VUbBwCg2x5XWdB8+1lkPajzLmALEfMb51zZUBYaYVPDQvBSD/WYDqiVyBIo2BZFa3yw1Rpy3G2Jp+K0dw==", 971 + "dev": true, 972 + "hasInstallScript": true, 973 + "license": "MIT", 974 + "dependencies": { 975 + "detect-libc": "^2.0.4", 976 + "tar": "^7.5.1" 977 + }, 978 + "engines": { 979 + "node": ">= 10" 980 + }, 981 + "optionalDependencies": { 982 + "@tailwindcss/oxide-android-arm64": "4.1.14", 983 + "@tailwindcss/oxide-darwin-arm64": "4.1.14", 984 + "@tailwindcss/oxide-darwin-x64": "4.1.14", 985 + "@tailwindcss/oxide-freebsd-x64": "4.1.14", 986 + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.14", 987 + "@tailwindcss/oxide-linux-arm64-gnu": "4.1.14", 988 + "@tailwindcss/oxide-linux-arm64-musl": "4.1.14", 989 + "@tailwindcss/oxide-linux-x64-gnu": "4.1.14", 990 + "@tailwindcss/oxide-linux-x64-musl": "4.1.14", 991 + "@tailwindcss/oxide-wasm32-wasi": "4.1.14", 992 + "@tailwindcss/oxide-win32-arm64-msvc": "4.1.14", 993 + "@tailwindcss/oxide-win32-x64-msvc": "4.1.14" 994 + } 995 + }, 996 + "node_modules/@tailwindcss/oxide-android-arm64": { 997 + "version": "4.1.14", 998 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.14.tgz", 999 + "integrity": "sha512-a94ifZrGwMvbdeAxWoSuGcIl6/DOP5cdxagid7xJv6bwFp3oebp7y2ImYsnZBMTwjn5Ev5xESvS3FFYUGgPODQ==", 1000 + "cpu": [ 1001 + "arm64" 1002 + ], 1003 + "dev": true, 1004 + "license": "MIT", 1005 + "optional": true, 1006 + "os": [ 1007 + "android" 1008 + ], 1009 + "engines": { 1010 + "node": ">= 10" 1011 + } 1012 + }, 1013 + "node_modules/@tailwindcss/oxide-darwin-arm64": { 1014 + "version": "4.1.14", 1015 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.14.tgz", 1016 + "integrity": "sha512-HkFP/CqfSh09xCnrPJA7jud7hij5ahKyWomrC3oiO2U9i0UjP17o9pJbxUN0IJ471GTQQmzwhp0DEcpbp4MZTA==", 1017 + "cpu": [ 1018 + "arm64" 1019 + ], 1020 + "dev": true, 1021 + "license": "MIT", 1022 + "optional": true, 1023 + "os": [ 1024 + "darwin" 1025 + ], 1026 + "engines": { 1027 + "node": ">= 10" 1028 + } 1029 + }, 1030 + "node_modules/@tailwindcss/oxide-darwin-x64": { 1031 + "version": "4.1.14", 1032 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.14.tgz", 1033 + "integrity": "sha512-eVNaWmCgdLf5iv6Qd3s7JI5SEFBFRtfm6W0mphJYXgvnDEAZ5sZzqmI06bK6xo0IErDHdTA5/t7d4eTfWbWOFw==", 1034 + "cpu": [ 1035 + "x64" 1036 + ], 1037 + "dev": true, 1038 + "license": "MIT", 1039 + "optional": true, 1040 + "os": [ 1041 + "darwin" 1042 + ], 1043 + "engines": { 1044 + "node": ">= 10" 1045 + } 1046 + }, 1047 + "node_modules/@tailwindcss/oxide-freebsd-x64": { 1048 + "version": "4.1.14", 1049 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.14.tgz", 1050 + "integrity": "sha512-QWLoRXNikEuqtNb0dhQN6wsSVVjX6dmUFzuuiL09ZeXju25dsei2uIPl71y2Ic6QbNBsB4scwBoFnlBfabHkEw==", 1051 + "cpu": [ 1052 + "x64" 1053 + ], 1054 + "dev": true, 1055 + "license": "MIT", 1056 + "optional": true, 1057 + "os": [ 1058 + "freebsd" 1059 + ], 1060 + "engines": { 1061 + "node": ">= 10" 1062 + } 1063 + }, 1064 + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { 1065 + "version": "4.1.14", 1066 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.14.tgz", 1067 + "integrity": "sha512-VB4gjQni9+F0VCASU+L8zSIyjrLLsy03sjcR3bM0V2g4SNamo0FakZFKyUQ96ZVwGK4CaJsc9zd/obQy74o0Fw==", 1068 + "cpu": [ 1069 + "arm" 1070 + ], 1071 + "dev": true, 1072 + "license": "MIT", 1073 + "optional": true, 1074 + "os": [ 1075 + "linux" 1076 + ], 1077 + "engines": { 1078 + "node": ">= 10" 1079 + } 1080 + }, 1081 + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { 1082 + "version": "4.1.14", 1083 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.14.tgz", 1084 + "integrity": "sha512-qaEy0dIZ6d9vyLnmeg24yzA8XuEAD9WjpM5nIM1sUgQ/Zv7cVkharPDQcmm/t/TvXoKo/0knI3me3AGfdx6w1w==", 1085 + "cpu": [ 1086 + "arm64" 1087 + ], 1088 + "dev": true, 1089 + "license": "MIT", 1090 + "optional": true, 1091 + "os": [ 1092 + "linux" 1093 + ], 1094 + "engines": { 1095 + "node": ">= 10" 1096 + } 1097 + }, 1098 + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { 1099 + "version": "4.1.14", 1100 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.14.tgz", 1101 + "integrity": "sha512-ISZjT44s59O8xKsPEIesiIydMG/sCXoMBCqsphDm/WcbnuWLxxb+GcvSIIA5NjUw6F8Tex7s5/LM2yDy8RqYBQ==", 1102 + "cpu": [ 1103 + "arm64" 1104 + ], 1105 + "dev": true, 1106 + "license": "MIT", 1107 + "optional": true, 1108 + "os": [ 1109 + "linux" 1110 + ], 1111 + "engines": { 1112 + "node": ">= 10" 1113 + } 1114 + }, 1115 + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { 1116 + "version": "4.1.14", 1117 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.14.tgz", 1118 + "integrity": "sha512-02c6JhLPJj10L2caH4U0zF8Hji4dOeahmuMl23stk0MU1wfd1OraE7rOloidSF8W5JTHkFdVo/O7uRUJJnUAJg==", 1119 + "cpu": [ 1120 + "x64" 1121 + ], 1122 + "dev": true, 1123 + "license": "MIT", 1124 + "optional": true, 1125 + "os": [ 1126 + "linux" 1127 + ], 1128 + "engines": { 1129 + "node": ">= 10" 1130 + } 1131 + }, 1132 + "node_modules/@tailwindcss/oxide-linux-x64-musl": { 1133 + "version": "4.1.14", 1134 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.14.tgz", 1135 + "integrity": "sha512-TNGeLiN1XS66kQhxHG/7wMeQDOoL0S33x9BgmydbrWAb9Qw0KYdd8o1ifx4HOGDWhVmJ+Ul+JQ7lyknQFilO3Q==", 1136 + "cpu": [ 1137 + "x64" 1138 + ], 1139 + "dev": true, 1140 + "license": "MIT", 1141 + "optional": true, 1142 + "os": [ 1143 + "linux" 1144 + ], 1145 + "engines": { 1146 + "node": ">= 10" 1147 + } 1148 + }, 1149 + "node_modules/@tailwindcss/oxide-wasm32-wasi": { 1150 + "version": "4.1.14", 1151 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.14.tgz", 1152 + "integrity": "sha512-uZYAsaW/jS/IYkd6EWPJKW/NlPNSkWkBlaeVBi/WsFQNP05/bzkebUL8FH1pdsqx4f2fH/bWFcUABOM9nfiJkQ==", 1153 + "bundleDependencies": [ 1154 + "@napi-rs/wasm-runtime", 1155 + "@emnapi/core", 1156 + "@emnapi/runtime", 1157 + "@tybys/wasm-util", 1158 + "@emnapi/wasi-threads", 1159 + "tslib" 1160 + ], 1161 + "cpu": [ 1162 + "wasm32" 1163 + ], 1164 + "dev": true, 1165 + "license": "MIT", 1166 + "optional": true, 1167 + "dependencies": { 1168 + "@emnapi/core": "^1.5.0", 1169 + "@emnapi/runtime": "^1.5.0", 1170 + "@emnapi/wasi-threads": "^1.1.0", 1171 + "@napi-rs/wasm-runtime": "^1.0.5", 1172 + "@tybys/wasm-util": "^0.10.1", 1173 + "tslib": "^2.4.0" 1174 + }, 1175 + "engines": { 1176 + "node": ">=14.0.0" 1177 + } 1178 + }, 1179 + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { 1180 + "version": "4.1.14", 1181 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.14.tgz", 1182 + "integrity": "sha512-Az0RnnkcvRqsuoLH2Z4n3JfAef0wElgzHD5Aky/e+0tBUxUhIeIqFBTMNQvmMRSP15fWwmvjBxZ3Q8RhsDnxAA==", 1183 + "cpu": [ 1184 + "arm64" 1185 + ], 1186 + "dev": true, 1187 + "license": "MIT", 1188 + "optional": true, 1189 + "os": [ 1190 + "win32" 1191 + ], 1192 + "engines": { 1193 + "node": ">= 10" 1194 + } 1195 + }, 1196 + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { 1197 + "version": "4.1.14", 1198 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.14.tgz", 1199 + "integrity": "sha512-ttblVGHgf68kEE4om1n/n44I0yGPkCPbLsqzjvybhpwa6mKKtgFfAzy6btc3HRmuW7nHe0OOrSeNP9sQmmH9XA==", 1200 + "cpu": [ 1201 + "x64" 1202 + ], 1203 + "dev": true, 1204 + "license": "MIT", 1205 + "optional": true, 1206 + "os": [ 1207 + "win32" 1208 + ], 1209 + "engines": { 1210 + "node": ">= 10" 1211 + } 1212 + }, 1213 + "node_modules/@tailwindcss/typography": { 1214 + "version": "0.5.19", 1215 + "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.19.tgz", 1216 + "integrity": "sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==", 1217 + "dev": true, 1218 + "license": "MIT", 1219 + "dependencies": { 1220 + "postcss-selector-parser": "6.0.10" 1221 + }, 1222 + "peerDependencies": { 1223 + "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1" 1224 + } 1225 + }, 1226 + "node_modules/@tailwindcss/vite": { 1227 + "version": "4.1.14", 1228 + "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.1.14.tgz", 1229 + "integrity": "sha512-BoFUoU0XqgCUS1UXWhmDJroKKhNXeDzD7/XwabjkDIAbMnc4ULn5e2FuEuBbhZ6ENZoSYzKlzvZ44Yr6EUDUSA==", 1230 + "dev": true, 1231 + "license": "MIT", 1232 + "dependencies": { 1233 + "@tailwindcss/node": "4.1.14", 1234 + "@tailwindcss/oxide": "4.1.14", 1235 + "tailwindcss": "4.1.14" 1236 + }, 1237 + "peerDependencies": { 1238 + "vite": "^5.2.0 || ^6 || ^7" 1239 + } 1240 + }, 1241 + "node_modules/@types/cookie": { 1242 + "version": "0.6.0", 1243 + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz", 1244 + "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==", 1245 + "dev": true, 1246 + "license": "MIT" 1247 + }, 1248 + "node_modules/@types/estree": { 1249 + "version": "1.0.8", 1250 + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", 1251 + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", 1252 + "dev": true, 1253 + "license": "MIT" 1254 + }, 1255 + "node_modules/acorn": { 1256 + "version": "8.15.0", 1257 + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", 1258 + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", 1259 + "dev": true, 1260 + "license": "MIT", 1261 + "bin": { 1262 + "acorn": "bin/acorn" 1263 + }, 1264 + "engines": { 1265 + "node": ">=0.4.0" 1266 + } 1267 + }, 1268 + "node_modules/aria-query": { 1269 + "version": "5.3.2", 1270 + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", 1271 + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", 1272 + "dev": true, 1273 + "license": "Apache-2.0", 1274 + "engines": { 1275 + "node": ">= 0.4" 1276 + } 1277 + }, 1278 + "node_modules/axobject-query": { 1279 + "version": "4.1.0", 1280 + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", 1281 + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", 1282 + "dev": true, 1283 + "license": "Apache-2.0", 1284 + "engines": { 1285 + "node": ">= 0.4" 1286 + } 1287 + }, 1288 + "node_modules/chokidar": { 1289 + "version": "4.0.3", 1290 + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", 1291 + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", 1292 + "dev": true, 1293 + "license": "MIT", 1294 + "dependencies": { 1295 + "readdirp": "^4.0.1" 1296 + }, 1297 + "engines": { 1298 + "node": ">= 14.16.0" 1299 + }, 1300 + "funding": { 1301 + "url": "https://paulmillr.com/funding/" 1302 + } 1303 + }, 1304 + "node_modules/chownr": { 1305 + "version": "3.0.0", 1306 + "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", 1307 + "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", 1308 + "dev": true, 1309 + "license": "BlueOak-1.0.0", 1310 + "engines": { 1311 + "node": ">=18" 1312 + } 1313 + }, 1314 + "node_modules/clsx": { 1315 + "version": "2.1.1", 1316 + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", 1317 + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", 1318 + "dev": true, 1319 + "license": "MIT", 1320 + "engines": { 1321 + "node": ">=6" 1322 + } 1323 + }, 1324 + "node_modules/cookie": { 1325 + "version": "0.6.0", 1326 + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", 1327 + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", 1328 + "dev": true, 1329 + "license": "MIT", 1330 + "engines": { 1331 + "node": ">= 0.6" 1332 + } 1333 + }, 1334 + "node_modules/cssesc": { 1335 + "version": "3.0.0", 1336 + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1337 + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1338 + "dev": true, 1339 + "license": "MIT", 1340 + "bin": { 1341 + "cssesc": "bin/cssesc" 1342 + }, 1343 + "engines": { 1344 + "node": ">=4" 1345 + } 1346 + }, 1347 + "node_modules/debug": { 1348 + "version": "4.4.3", 1349 + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", 1350 + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", 1351 + "dev": true, 1352 + "license": "MIT", 1353 + "dependencies": { 1354 + "ms": "^2.1.3" 1355 + }, 1356 + "engines": { 1357 + "node": ">=6.0" 1358 + }, 1359 + "peerDependenciesMeta": { 1360 + "supports-color": { 1361 + "optional": true 1362 + } 1363 + } 1364 + }, 1365 + "node_modules/deepmerge": { 1366 + "version": "4.3.1", 1367 + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 1368 + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 1369 + "dev": true, 1370 + "license": "MIT", 1371 + "engines": { 1372 + "node": ">=0.10.0" 1373 + } 1374 + }, 1375 + "node_modules/detect-libc": { 1376 + "version": "2.1.2", 1377 + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", 1378 + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", 1379 + "dev": true, 1380 + "license": "Apache-2.0", 1381 + "engines": { 1382 + "node": ">=8" 1383 + } 1384 + }, 1385 + "node_modules/devalue": { 1386 + "version": "5.3.2", 1387 + "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.3.2.tgz", 1388 + "integrity": "sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==", 1389 + "dev": true, 1390 + "license": "MIT" 1391 + }, 1392 + "node_modules/enhanced-resolve": { 1393 + "version": "5.18.3", 1394 + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", 1395 + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", 1396 + "dev": true, 1397 + "license": "MIT", 1398 + "dependencies": { 1399 + "graceful-fs": "^4.2.4", 1400 + "tapable": "^2.2.0" 1401 + }, 1402 + "engines": { 1403 + "node": ">=10.13.0" 1404 + } 1405 + }, 1406 + "node_modules/esbuild": { 1407 + "version": "0.25.10", 1408 + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.10.tgz", 1409 + "integrity": "sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==", 1410 + "dev": true, 1411 + "hasInstallScript": true, 1412 + "license": "MIT", 1413 + "bin": { 1414 + "esbuild": "bin/esbuild" 1415 + }, 1416 + "engines": { 1417 + "node": ">=18" 1418 + }, 1419 + "optionalDependencies": { 1420 + "@esbuild/aix-ppc64": "0.25.10", 1421 + "@esbuild/android-arm": "0.25.10", 1422 + "@esbuild/android-arm64": "0.25.10", 1423 + "@esbuild/android-x64": "0.25.10", 1424 + "@esbuild/darwin-arm64": "0.25.10", 1425 + "@esbuild/darwin-x64": "0.25.10", 1426 + "@esbuild/freebsd-arm64": "0.25.10", 1427 + "@esbuild/freebsd-x64": "0.25.10", 1428 + "@esbuild/linux-arm": "0.25.10", 1429 + "@esbuild/linux-arm64": "0.25.10", 1430 + "@esbuild/linux-ia32": "0.25.10", 1431 + "@esbuild/linux-loong64": "0.25.10", 1432 + "@esbuild/linux-mips64el": "0.25.10", 1433 + "@esbuild/linux-ppc64": "0.25.10", 1434 + "@esbuild/linux-riscv64": "0.25.10", 1435 + "@esbuild/linux-s390x": "0.25.10", 1436 + "@esbuild/linux-x64": "0.25.10", 1437 + "@esbuild/netbsd-arm64": "0.25.10", 1438 + "@esbuild/netbsd-x64": "0.25.10", 1439 + "@esbuild/openbsd-arm64": "0.25.10", 1440 + "@esbuild/openbsd-x64": "0.25.10", 1441 + "@esbuild/openharmony-arm64": "0.25.10", 1442 + "@esbuild/sunos-x64": "0.25.10", 1443 + "@esbuild/win32-arm64": "0.25.10", 1444 + "@esbuild/win32-ia32": "0.25.10", 1445 + "@esbuild/win32-x64": "0.25.10" 1446 + } 1447 + }, 1448 + "node_modules/esm-env": { 1449 + "version": "1.2.2", 1450 + "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.2.2.tgz", 1451 + "integrity": "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==", 1452 + "dev": true, 1453 + "license": "MIT" 1454 + }, 1455 + "node_modules/esrap": { 1456 + "version": "2.1.0", 1457 + "resolved": "https://registry.npmjs.org/esrap/-/esrap-2.1.0.tgz", 1458 + "integrity": "sha512-yzmPNpl7TBbMRC5Lj2JlJZNPml0tzqoqP5B1JXycNUwtqma9AKCO0M2wHrdgsHcy1WRW7S9rJknAMtByg3usgA==", 1459 + "dev": true, 1460 + "license": "MIT", 1461 + "dependencies": { 1462 + "@jridgewell/sourcemap-codec": "^1.4.15" 1463 + } 1464 + }, 1465 + "node_modules/fdir": { 1466 + "version": "6.5.0", 1467 + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", 1468 + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", 1469 + "dev": true, 1470 + "license": "MIT", 1471 + "engines": { 1472 + "node": ">=12.0.0" 1473 + }, 1474 + "peerDependencies": { 1475 + "picomatch": "^3 || ^4" 1476 + }, 1477 + "peerDependenciesMeta": { 1478 + "picomatch": { 1479 + "optional": true 1480 + } 1481 + } 1482 + }, 1483 + "node_modules/fsevents": { 1484 + "version": "2.3.3", 1485 + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1486 + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1487 + "dev": true, 1488 + "hasInstallScript": true, 1489 + "license": "MIT", 1490 + "optional": true, 1491 + "os": [ 1492 + "darwin" 1493 + ], 1494 + "engines": { 1495 + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1496 + } 1497 + }, 1498 + "node_modules/graceful-fs": { 1499 + "version": "4.2.11", 1500 + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1501 + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1502 + "dev": true, 1503 + "license": "ISC" 1504 + }, 1505 + "node_modules/is-reference": { 1506 + "version": "3.0.3", 1507 + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.3.tgz", 1508 + "integrity": "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==", 1509 + "dev": true, 1510 + "license": "MIT", 1511 + "dependencies": { 1512 + "@types/estree": "^1.0.6" 1513 + } 1514 + }, 1515 + "node_modules/jiti": { 1516 + "version": "2.6.1", 1517 + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", 1518 + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", 1519 + "dev": true, 1520 + "license": "MIT", 1521 + "bin": { 1522 + "jiti": "lib/jiti-cli.mjs" 1523 + } 1524 + }, 1525 + "node_modules/kleur": { 1526 + "version": "4.1.5", 1527 + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", 1528 + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", 1529 + "dev": true, 1530 + "license": "MIT", 1531 + "engines": { 1532 + "node": ">=6" 1533 + } 1534 + }, 1535 + "node_modules/lightningcss": { 1536 + "version": "1.30.1", 1537 + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.1.tgz", 1538 + "integrity": "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==", 1539 + "dev": true, 1540 + "license": "MPL-2.0", 1541 + "dependencies": { 1542 + "detect-libc": "^2.0.3" 1543 + }, 1544 + "engines": { 1545 + "node": ">= 12.0.0" 1546 + }, 1547 + "funding": { 1548 + "type": "opencollective", 1549 + "url": "https://opencollective.com/parcel" 1550 + }, 1551 + "optionalDependencies": { 1552 + "lightningcss-darwin-arm64": "1.30.1", 1553 + "lightningcss-darwin-x64": "1.30.1", 1554 + "lightningcss-freebsd-x64": "1.30.1", 1555 + "lightningcss-linux-arm-gnueabihf": "1.30.1", 1556 + "lightningcss-linux-arm64-gnu": "1.30.1", 1557 + "lightningcss-linux-arm64-musl": "1.30.1", 1558 + "lightningcss-linux-x64-gnu": "1.30.1", 1559 + "lightningcss-linux-x64-musl": "1.30.1", 1560 + "lightningcss-win32-arm64-msvc": "1.30.1", 1561 + "lightningcss-win32-x64-msvc": "1.30.1" 1562 + } 1563 + }, 1564 + "node_modules/lightningcss-darwin-arm64": { 1565 + "version": "1.30.1", 1566 + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.1.tgz", 1567 + "integrity": "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==", 1568 + "cpu": [ 1569 + "arm64" 1570 + ], 1571 + "dev": true, 1572 + "license": "MPL-2.0", 1573 + "optional": true, 1574 + "os": [ 1575 + "darwin" 1576 + ], 1577 + "engines": { 1578 + "node": ">= 12.0.0" 1579 + }, 1580 + "funding": { 1581 + "type": "opencollective", 1582 + "url": "https://opencollective.com/parcel" 1583 + } 1584 + }, 1585 + "node_modules/lightningcss-darwin-x64": { 1586 + "version": "1.30.1", 1587 + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.1.tgz", 1588 + "integrity": "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==", 1589 + "cpu": [ 1590 + "x64" 1591 + ], 1592 + "dev": true, 1593 + "license": "MPL-2.0", 1594 + "optional": true, 1595 + "os": [ 1596 + "darwin" 1597 + ], 1598 + "engines": { 1599 + "node": ">= 12.0.0" 1600 + }, 1601 + "funding": { 1602 + "type": "opencollective", 1603 + "url": "https://opencollective.com/parcel" 1604 + } 1605 + }, 1606 + "node_modules/lightningcss-freebsd-x64": { 1607 + "version": "1.30.1", 1608 + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.1.tgz", 1609 + "integrity": "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==", 1610 + "cpu": [ 1611 + "x64" 1612 + ], 1613 + "dev": true, 1614 + "license": "MPL-2.0", 1615 + "optional": true, 1616 + "os": [ 1617 + "freebsd" 1618 + ], 1619 + "engines": { 1620 + "node": ">= 12.0.0" 1621 + }, 1622 + "funding": { 1623 + "type": "opencollective", 1624 + "url": "https://opencollective.com/parcel" 1625 + } 1626 + }, 1627 + "node_modules/lightningcss-linux-arm-gnueabihf": { 1628 + "version": "1.30.1", 1629 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.1.tgz", 1630 + "integrity": "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==", 1631 + "cpu": [ 1632 + "arm" 1633 + ], 1634 + "dev": true, 1635 + "license": "MPL-2.0", 1636 + "optional": true, 1637 + "os": [ 1638 + "linux" 1639 + ], 1640 + "engines": { 1641 + "node": ">= 12.0.0" 1642 + }, 1643 + "funding": { 1644 + "type": "opencollective", 1645 + "url": "https://opencollective.com/parcel" 1646 + } 1647 + }, 1648 + "node_modules/lightningcss-linux-arm64-gnu": { 1649 + "version": "1.30.1", 1650 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.1.tgz", 1651 + "integrity": "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==", 1652 + "cpu": [ 1653 + "arm64" 1654 + ], 1655 + "dev": true, 1656 + "license": "MPL-2.0", 1657 + "optional": true, 1658 + "os": [ 1659 + "linux" 1660 + ], 1661 + "engines": { 1662 + "node": ">= 12.0.0" 1663 + }, 1664 + "funding": { 1665 + "type": "opencollective", 1666 + "url": "https://opencollective.com/parcel" 1667 + } 1668 + }, 1669 + "node_modules/lightningcss-linux-arm64-musl": { 1670 + "version": "1.30.1", 1671 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.1.tgz", 1672 + "integrity": "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==", 1673 + "cpu": [ 1674 + "arm64" 1675 + ], 1676 + "dev": true, 1677 + "license": "MPL-2.0", 1678 + "optional": true, 1679 + "os": [ 1680 + "linux" 1681 + ], 1682 + "engines": { 1683 + "node": ">= 12.0.0" 1684 + }, 1685 + "funding": { 1686 + "type": "opencollective", 1687 + "url": "https://opencollective.com/parcel" 1688 + } 1689 + }, 1690 + "node_modules/lightningcss-linux-x64-gnu": { 1691 + "version": "1.30.1", 1692 + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.1.tgz", 1693 + "integrity": "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==", 1694 + "cpu": [ 1695 + "x64" 1696 + ], 1697 + "dev": true, 1698 + "license": "MPL-2.0", 1699 + "optional": true, 1700 + "os": [ 1701 + "linux" 1702 + ], 1703 + "engines": { 1704 + "node": ">= 12.0.0" 1705 + }, 1706 + "funding": { 1707 + "type": "opencollective", 1708 + "url": "https://opencollective.com/parcel" 1709 + } 1710 + }, 1711 + "node_modules/lightningcss-linux-x64-musl": { 1712 + "version": "1.30.1", 1713 + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.1.tgz", 1714 + "integrity": "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==", 1715 + "cpu": [ 1716 + "x64" 1717 + ], 1718 + "dev": true, 1719 + "license": "MPL-2.0", 1720 + "optional": true, 1721 + "os": [ 1722 + "linux" 1723 + ], 1724 + "engines": { 1725 + "node": ">= 12.0.0" 1726 + }, 1727 + "funding": { 1728 + "type": "opencollective", 1729 + "url": "https://opencollective.com/parcel" 1730 + } 1731 + }, 1732 + "node_modules/lightningcss-win32-arm64-msvc": { 1733 + "version": "1.30.1", 1734 + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.1.tgz", 1735 + "integrity": "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==", 1736 + "cpu": [ 1737 + "arm64" 1738 + ], 1739 + "dev": true, 1740 + "license": "MPL-2.0", 1741 + "optional": true, 1742 + "os": [ 1743 + "win32" 1744 + ], 1745 + "engines": { 1746 + "node": ">= 12.0.0" 1747 + }, 1748 + "funding": { 1749 + "type": "opencollective", 1750 + "url": "https://opencollective.com/parcel" 1751 + } 1752 + }, 1753 + "node_modules/lightningcss-win32-x64-msvc": { 1754 + "version": "1.30.1", 1755 + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.1.tgz", 1756 + "integrity": "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==", 1757 + "cpu": [ 1758 + "x64" 1759 + ], 1760 + "dev": true, 1761 + "license": "MPL-2.0", 1762 + "optional": true, 1763 + "os": [ 1764 + "win32" 1765 + ], 1766 + "engines": { 1767 + "node": ">= 12.0.0" 1768 + }, 1769 + "funding": { 1770 + "type": "opencollective", 1771 + "url": "https://opencollective.com/parcel" 1772 + } 1773 + }, 1774 + "node_modules/locate-character": { 1775 + "version": "3.0.0", 1776 + "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", 1777 + "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", 1778 + "dev": true, 1779 + "license": "MIT" 1780 + }, 1781 + "node_modules/magic-string": { 1782 + "version": "0.30.19", 1783 + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.19.tgz", 1784 + "integrity": "sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==", 1785 + "dev": true, 1786 + "license": "MIT", 1787 + "dependencies": { 1788 + "@jridgewell/sourcemap-codec": "^1.5.5" 1789 + } 1790 + }, 1791 + "node_modules/minipass": { 1792 + "version": "7.1.2", 1793 + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 1794 + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 1795 + "dev": true, 1796 + "license": "ISC", 1797 + "engines": { 1798 + "node": ">=16 || 14 >=14.17" 1799 + } 1800 + }, 1801 + "node_modules/minizlib": { 1802 + "version": "3.1.0", 1803 + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz", 1804 + "integrity": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==", 1805 + "dev": true, 1806 + "license": "MIT", 1807 + "dependencies": { 1808 + "minipass": "^7.1.2" 1809 + }, 1810 + "engines": { 1811 + "node": ">= 18" 1812 + } 1813 + }, 1814 + "node_modules/mri": { 1815 + "version": "1.2.0", 1816 + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", 1817 + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", 1818 + "dev": true, 1819 + "license": "MIT", 1820 + "engines": { 1821 + "node": ">=4" 1822 + } 1823 + }, 1824 + "node_modules/mrmime": { 1825 + "version": "2.0.1", 1826 + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", 1827 + "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", 1828 + "dev": true, 1829 + "license": "MIT", 1830 + "engines": { 1831 + "node": ">=10" 1832 + } 1833 + }, 1834 + "node_modules/ms": { 1835 + "version": "2.1.3", 1836 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1837 + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 1838 + "dev": true, 1839 + "license": "MIT" 1840 + }, 1841 + "node_modules/nanoid": { 1842 + "version": "3.3.11", 1843 + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", 1844 + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", 1845 + "dev": true, 1846 + "funding": [ 1847 + { 1848 + "type": "github", 1849 + "url": "https://github.com/sponsors/ai" 1850 + } 1851 + ], 1852 + "license": "MIT", 1853 + "bin": { 1854 + "nanoid": "bin/nanoid.cjs" 1855 + }, 1856 + "engines": { 1857 + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 1858 + } 1859 + }, 1860 + "node_modules/picocolors": { 1861 + "version": "1.1.1", 1862 + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 1863 + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 1864 + "dev": true, 1865 + "license": "ISC" 1866 + }, 1867 + "node_modules/picomatch": { 1868 + "version": "4.0.3", 1869 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", 1870 + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", 1871 + "dev": true, 1872 + "license": "MIT", 1873 + "engines": { 1874 + "node": ">=12" 1875 + }, 1876 + "funding": { 1877 + "url": "https://github.com/sponsors/jonschlinkert" 1878 + } 1879 + }, 1880 + "node_modules/postcss": { 1881 + "version": "8.5.6", 1882 + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", 1883 + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", 1884 + "dev": true, 1885 + "funding": [ 1886 + { 1887 + "type": "opencollective", 1888 + "url": "https://opencollective.com/postcss/" 1889 + }, 1890 + { 1891 + "type": "tidelift", 1892 + "url": "https://tidelift.com/funding/github/npm/postcss" 1893 + }, 1894 + { 1895 + "type": "github", 1896 + "url": "https://github.com/sponsors/ai" 1897 + } 1898 + ], 1899 + "license": "MIT", 1900 + "dependencies": { 1901 + "nanoid": "^3.3.11", 1902 + "picocolors": "^1.1.1", 1903 + "source-map-js": "^1.2.1" 1904 + }, 1905 + "engines": { 1906 + "node": "^10 || ^12 || >=14" 1907 + } 1908 + }, 1909 + "node_modules/postcss-selector-parser": { 1910 + "version": "6.0.10", 1911 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", 1912 + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", 1913 + "dev": true, 1914 + "license": "MIT", 1915 + "dependencies": { 1916 + "cssesc": "^3.0.0", 1917 + "util-deprecate": "^1.0.2" 1918 + }, 1919 + "engines": { 1920 + "node": ">=4" 1921 + } 1922 + }, 1923 + "node_modules/prettier": { 1924 + "version": "3.6.2", 1925 + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz", 1926 + "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==", 1927 + "dev": true, 1928 + "license": "MIT", 1929 + "bin": { 1930 + "prettier": "bin/prettier.cjs" 1931 + }, 1932 + "engines": { 1933 + "node": ">=14" 1934 + }, 1935 + "funding": { 1936 + "url": "https://github.com/prettier/prettier?sponsor=1" 1937 + } 1938 + }, 1939 + "node_modules/prettier-plugin-svelte": { 1940 + "version": "3.4.0", 1941 + "resolved": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.4.0.tgz", 1942 + "integrity": "sha512-pn1ra/0mPObzqoIQn/vUTR3ZZI6UuZ0sHqMK5x2jMLGrs53h0sXhkVuDcrlssHwIMk7FYrMjHBPoUSyyEEDlBQ==", 1943 + "dev": true, 1944 + "license": "MIT", 1945 + "peerDependencies": { 1946 + "prettier": "^3.0.0", 1947 + "svelte": "^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0" 1948 + } 1949 + }, 1950 + "node_modules/prettier-plugin-tailwindcss": { 1951 + "version": "0.6.14", 1952 + "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.6.14.tgz", 1953 + "integrity": "sha512-pi2e/+ZygeIqntN+vC573BcW5Cve8zUB0SSAGxqpB4f96boZF4M3phPVoOFCeypwkpRYdi7+jQ5YJJUwrkGUAg==", 1954 + "dev": true, 1955 + "license": "MIT", 1956 + "engines": { 1957 + "node": ">=14.21.3" 1958 + }, 1959 + "peerDependencies": { 1960 + "@ianvs/prettier-plugin-sort-imports": "*", 1961 + "@prettier/plugin-hermes": "*", 1962 + "@prettier/plugin-oxc": "*", 1963 + "@prettier/plugin-pug": "*", 1964 + "@shopify/prettier-plugin-liquid": "*", 1965 + "@trivago/prettier-plugin-sort-imports": "*", 1966 + "@zackad/prettier-plugin-twig": "*", 1967 + "prettier": "^3.0", 1968 + "prettier-plugin-astro": "*", 1969 + "prettier-plugin-css-order": "*", 1970 + "prettier-plugin-import-sort": "*", 1971 + "prettier-plugin-jsdoc": "*", 1972 + "prettier-plugin-marko": "*", 1973 + "prettier-plugin-multiline-arrays": "*", 1974 + "prettier-plugin-organize-attributes": "*", 1975 + "prettier-plugin-organize-imports": "*", 1976 + "prettier-plugin-sort-imports": "*", 1977 + "prettier-plugin-style-order": "*", 1978 + "prettier-plugin-svelte": "*" 1979 + }, 1980 + "peerDependenciesMeta": { 1981 + "@ianvs/prettier-plugin-sort-imports": { 1982 + "optional": true 1983 + }, 1984 + "@prettier/plugin-hermes": { 1985 + "optional": true 1986 + }, 1987 + "@prettier/plugin-oxc": { 1988 + "optional": true 1989 + }, 1990 + "@prettier/plugin-pug": { 1991 + "optional": true 1992 + }, 1993 + "@shopify/prettier-plugin-liquid": { 1994 + "optional": true 1995 + }, 1996 + "@trivago/prettier-plugin-sort-imports": { 1997 + "optional": true 1998 + }, 1999 + "@zackad/prettier-plugin-twig": { 2000 + "optional": true 2001 + }, 2002 + "prettier-plugin-astro": { 2003 + "optional": true 2004 + }, 2005 + "prettier-plugin-css-order": { 2006 + "optional": true 2007 + }, 2008 + "prettier-plugin-import-sort": { 2009 + "optional": true 2010 + }, 2011 + "prettier-plugin-jsdoc": { 2012 + "optional": true 2013 + }, 2014 + "prettier-plugin-marko": { 2015 + "optional": true 2016 + }, 2017 + "prettier-plugin-multiline-arrays": { 2018 + "optional": true 2019 + }, 2020 + "prettier-plugin-organize-attributes": { 2021 + "optional": true 2022 + }, 2023 + "prettier-plugin-organize-imports": { 2024 + "optional": true 2025 + }, 2026 + "prettier-plugin-sort-imports": { 2027 + "optional": true 2028 + }, 2029 + "prettier-plugin-style-order": { 2030 + "optional": true 2031 + }, 2032 + "prettier-plugin-svelte": { 2033 + "optional": true 2034 + } 2035 + } 2036 + }, 2037 + "node_modules/readdirp": { 2038 + "version": "4.1.2", 2039 + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", 2040 + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", 2041 + "dev": true, 2042 + "license": "MIT", 2043 + "engines": { 2044 + "node": ">= 14.18.0" 2045 + }, 2046 + "funding": { 2047 + "type": "individual", 2048 + "url": "https://paulmillr.com/funding/" 2049 + } 2050 + }, 2051 + "node_modules/rollup": { 2052 + "version": "4.52.4", 2053 + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.4.tgz", 2054 + "integrity": "sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==", 2055 + "dev": true, 2056 + "license": "MIT", 2057 + "dependencies": { 2058 + "@types/estree": "1.0.8" 2059 + }, 2060 + "bin": { 2061 + "rollup": "dist/bin/rollup" 2062 + }, 2063 + "engines": { 2064 + "node": ">=18.0.0", 2065 + "npm": ">=8.0.0" 2066 + }, 2067 + "optionalDependencies": { 2068 + "@rollup/rollup-android-arm-eabi": "4.52.4", 2069 + "@rollup/rollup-android-arm64": "4.52.4", 2070 + "@rollup/rollup-darwin-arm64": "4.52.4", 2071 + "@rollup/rollup-darwin-x64": "4.52.4", 2072 + "@rollup/rollup-freebsd-arm64": "4.52.4", 2073 + "@rollup/rollup-freebsd-x64": "4.52.4", 2074 + "@rollup/rollup-linux-arm-gnueabihf": "4.52.4", 2075 + "@rollup/rollup-linux-arm-musleabihf": "4.52.4", 2076 + "@rollup/rollup-linux-arm64-gnu": "4.52.4", 2077 + "@rollup/rollup-linux-arm64-musl": "4.52.4", 2078 + "@rollup/rollup-linux-loong64-gnu": "4.52.4", 2079 + "@rollup/rollup-linux-ppc64-gnu": "4.52.4", 2080 + "@rollup/rollup-linux-riscv64-gnu": "4.52.4", 2081 + "@rollup/rollup-linux-riscv64-musl": "4.52.4", 2082 + "@rollup/rollup-linux-s390x-gnu": "4.52.4", 2083 + "@rollup/rollup-linux-x64-gnu": "4.52.4", 2084 + "@rollup/rollup-linux-x64-musl": "4.52.4", 2085 + "@rollup/rollup-openharmony-arm64": "4.52.4", 2086 + "@rollup/rollup-win32-arm64-msvc": "4.52.4", 2087 + "@rollup/rollup-win32-ia32-msvc": "4.52.4", 2088 + "@rollup/rollup-win32-x64-gnu": "4.52.4", 2089 + "@rollup/rollup-win32-x64-msvc": "4.52.4", 2090 + "fsevents": "~2.3.2" 2091 + } 2092 + }, 2093 + "node_modules/sade": { 2094 + "version": "1.8.1", 2095 + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", 2096 + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", 2097 + "dev": true, 2098 + "license": "MIT", 2099 + "dependencies": { 2100 + "mri": "^1.1.0" 2101 + }, 2102 + "engines": { 2103 + "node": ">=6" 2104 + } 2105 + }, 2106 + "node_modules/set-cookie-parser": { 2107 + "version": "2.7.1", 2108 + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz", 2109 + "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==", 2110 + "dev": true, 2111 + "license": "MIT" 2112 + }, 2113 + "node_modules/sirv": { 2114 + "version": "3.0.2", 2115 + "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.2.tgz", 2116 + "integrity": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==", 2117 + "dev": true, 2118 + "license": "MIT", 2119 + "dependencies": { 2120 + "@polka/url": "^1.0.0-next.24", 2121 + "mrmime": "^2.0.0", 2122 + "totalist": "^3.0.0" 2123 + }, 2124 + "engines": { 2125 + "node": ">=18" 2126 + } 2127 + }, 2128 + "node_modules/source-map-js": { 2129 + "version": "1.2.1", 2130 + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 2131 + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 2132 + "dev": true, 2133 + "license": "BSD-3-Clause", 2134 + "engines": { 2135 + "node": ">=0.10.0" 2136 + } 2137 + }, 2138 + "node_modules/svelte": { 2139 + "version": "5.39.11", 2140 + "resolved": "https://registry.npmjs.org/svelte/-/svelte-5.39.11.tgz", 2141 + "integrity": "sha512-8MxWVm2+3YwrFbPaxOlT1bbMi6OTenrAgks6soZfiaS8Fptk4EVyRIFhJc3RpO264EeSNwgjWAdki0ufg4zkGw==", 2142 + "dev": true, 2143 + "license": "MIT", 2144 + "dependencies": { 2145 + "@jridgewell/remapping": "^2.3.4", 2146 + "@jridgewell/sourcemap-codec": "^1.5.0", 2147 + "@sveltejs/acorn-typescript": "^1.0.5", 2148 + "@types/estree": "^1.0.5", 2149 + "acorn": "^8.12.1", 2150 + "aria-query": "^5.3.1", 2151 + "axobject-query": "^4.1.0", 2152 + "clsx": "^2.1.1", 2153 + "esm-env": "^1.2.1", 2154 + "esrap": "^2.1.0", 2155 + "is-reference": "^3.0.3", 2156 + "locate-character": "^3.0.0", 2157 + "magic-string": "^0.30.11", 2158 + "zimmerframe": "^1.1.2" 2159 + }, 2160 + "engines": { 2161 + "node": ">=18" 2162 + } 2163 + }, 2164 + "node_modules/svelte-check": { 2165 + "version": "4.3.3", 2166 + "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-4.3.3.tgz", 2167 + "integrity": "sha512-RYP0bEwenDXzfv0P1sKAwjZSlaRyqBn0Fz1TVni58lqyEiqgwztTpmodJrGzP6ZT2aHl4MbTvWP6gbmQ3FOnBg==", 2168 + "dev": true, 2169 + "license": "MIT", 2170 + "dependencies": { 2171 + "@jridgewell/trace-mapping": "^0.3.25", 2172 + "chokidar": "^4.0.1", 2173 + "fdir": "^6.2.0", 2174 + "picocolors": "^1.0.0", 2175 + "sade": "^1.7.4" 2176 + }, 2177 + "bin": { 2178 + "svelte-check": "bin/svelte-check" 2179 + }, 2180 + "engines": { 2181 + "node": ">= 18.0.0" 2182 + }, 2183 + "peerDependencies": { 2184 + "svelte": "^4.0.0 || ^5.0.0-next.0", 2185 + "typescript": ">=5.0.0" 2186 + } 2187 + }, 2188 + "node_modules/tailwindcss": { 2189 + "version": "4.1.14", 2190 + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.14.tgz", 2191 + "integrity": "sha512-b7pCxjGO98LnxVkKjaZSDeNuljC4ueKUddjENJOADtubtdo8llTaJy7HwBMeLNSSo2N5QIAgklslK1+Ir8r6CA==", 2192 + "dev": true, 2193 + "license": "MIT" 2194 + }, 2195 + "node_modules/tapable": { 2196 + "version": "2.3.0", 2197 + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", 2198 + "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", 2199 + "dev": true, 2200 + "license": "MIT", 2201 + "engines": { 2202 + "node": ">=6" 2203 + }, 2204 + "funding": { 2205 + "type": "opencollective", 2206 + "url": "https://opencollective.com/webpack" 2207 + } 2208 + }, 2209 + "node_modules/tar": { 2210 + "version": "7.5.1", 2211 + "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.1.tgz", 2212 + "integrity": "sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==", 2213 + "dev": true, 2214 + "license": "ISC", 2215 + "dependencies": { 2216 + "@isaacs/fs-minipass": "^4.0.0", 2217 + "chownr": "^3.0.0", 2218 + "minipass": "^7.1.2", 2219 + "minizlib": "^3.1.0", 2220 + "yallist": "^5.0.0" 2221 + }, 2222 + "engines": { 2223 + "node": ">=18" 2224 + } 2225 + }, 2226 + "node_modules/tinyglobby": { 2227 + "version": "0.2.15", 2228 + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", 2229 + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", 2230 + "dev": true, 2231 + "license": "MIT", 2232 + "dependencies": { 2233 + "fdir": "^6.5.0", 2234 + "picomatch": "^4.0.3" 2235 + }, 2236 + "engines": { 2237 + "node": ">=12.0.0" 2238 + }, 2239 + "funding": { 2240 + "url": "https://github.com/sponsors/SuperchupuDev" 2241 + } 2242 + }, 2243 + "node_modules/totalist": { 2244 + "version": "3.0.1", 2245 + "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", 2246 + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", 2247 + "dev": true, 2248 + "license": "MIT", 2249 + "engines": { 2250 + "node": ">=6" 2251 + } 2252 + }, 2253 + "node_modules/typescript": { 2254 + "version": "5.9.3", 2255 + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", 2256 + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", 2257 + "dev": true, 2258 + "license": "Apache-2.0", 2259 + "bin": { 2260 + "tsc": "bin/tsc", 2261 + "tsserver": "bin/tsserver" 2262 + }, 2263 + "engines": { 2264 + "node": ">=14.17" 2265 + } 2266 + }, 2267 + "node_modules/util-deprecate": { 2268 + "version": "1.0.2", 2269 + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 2270 + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 2271 + "dev": true, 2272 + "license": "MIT" 2273 + }, 2274 + "node_modules/vite": { 2275 + "version": "7.1.9", 2276 + "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.9.tgz", 2277 + "integrity": "sha512-4nVGliEpxmhCL8DslSAUdxlB6+SMrhB0a1v5ijlh1xB1nEPuy1mxaHxysVucLHuWryAxLWg6a5ei+U4TLn/rFg==", 2278 + "dev": true, 2279 + "license": "MIT", 2280 + "dependencies": { 2281 + "esbuild": "^0.25.0", 2282 + "fdir": "^6.5.0", 2283 + "picomatch": "^4.0.3", 2284 + "postcss": "^8.5.6", 2285 + "rollup": "^4.43.0", 2286 + "tinyglobby": "^0.2.15" 2287 + }, 2288 + "bin": { 2289 + "vite": "bin/vite.js" 2290 + }, 2291 + "engines": { 2292 + "node": "^20.19.0 || >=22.12.0" 2293 + }, 2294 + "funding": { 2295 + "url": "https://github.com/vitejs/vite?sponsor=1" 2296 + }, 2297 + "optionalDependencies": { 2298 + "fsevents": "~2.3.3" 2299 + }, 2300 + "peerDependencies": { 2301 + "@types/node": "^20.19.0 || >=22.12.0", 2302 + "jiti": ">=1.21.0", 2303 + "less": "^4.0.0", 2304 + "lightningcss": "^1.21.0", 2305 + "sass": "^1.70.0", 2306 + "sass-embedded": "^1.70.0", 2307 + "stylus": ">=0.54.8", 2308 + "sugarss": "^5.0.0", 2309 + "terser": "^5.16.0", 2310 + "tsx": "^4.8.1", 2311 + "yaml": "^2.4.2" 2312 + }, 2313 + "peerDependenciesMeta": { 2314 + "@types/node": { 2315 + "optional": true 2316 + }, 2317 + "jiti": { 2318 + "optional": true 2319 + }, 2320 + "less": { 2321 + "optional": true 2322 + }, 2323 + "lightningcss": { 2324 + "optional": true 2325 + }, 2326 + "sass": { 2327 + "optional": true 2328 + }, 2329 + "sass-embedded": { 2330 + "optional": true 2331 + }, 2332 + "stylus": { 2333 + "optional": true 2334 + }, 2335 + "sugarss": { 2336 + "optional": true 2337 + }, 2338 + "terser": { 2339 + "optional": true 2340 + }, 2341 + "tsx": { 2342 + "optional": true 2343 + }, 2344 + "yaml": { 2345 + "optional": true 2346 + } 2347 + } 2348 + }, 2349 + "node_modules/vitefu": { 2350 + "version": "1.1.1", 2351 + "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.1.1.tgz", 2352 + "integrity": "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==", 2353 + "dev": true, 2354 + "license": "MIT", 2355 + "workspaces": [ 2356 + "tests/deps/*", 2357 + "tests/projects/*", 2358 + "tests/projects/workspace/packages/*" 2359 + ], 2360 + "peerDependencies": { 2361 + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0" 2362 + }, 2363 + "peerDependenciesMeta": { 2364 + "vite": { 2365 + "optional": true 2366 + } 2367 + } 2368 + }, 2369 + "node_modules/yallist": { 2370 + "version": "5.0.0", 2371 + "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", 2372 + "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", 2373 + "dev": true, 2374 + "license": "BlueOak-1.0.0", 2375 + "engines": { 2376 + "node": ">=18" 2377 + } 2378 + }, 2379 + "node_modules/zimmerframe": { 2380 + "version": "1.1.4", 2381 + "resolved": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-1.1.4.tgz", 2382 + "integrity": "sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==", 2383 + "dev": true, 2384 + "license": "MIT" 2385 + } 2386 + } 7844 2387 }
+29 -52
package.json
··· 1 1 { 2 - "name": "website", 3 - "version": "0.0.1", 4 - "type": "module", 5 - "scripts": { 6 - "dev": "vite dev", 7 - "build": "vite build", 8 - "preview": "vite preview -v", 9 - "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", 10 - "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", 11 - "lint": "eslint ." 12 - }, 13 - "devDependencies": { 14 - "@sveltejs/adapter-auto": "^6.1.1", 15 - "@sveltejs/adapter-vercel": "^5.10.3", 16 - "@sveltejs/kit": "^2.46.4", 17 - "@sveltejs/vite-plugin-svelte": "^6.2.1", 18 - "@tailwindcss/forms": "^0.5.10", 19 - "@tailwindcss/nesting": "^0.0.0-insiders.565cd3e", 20 - "@tailwindcss/typography": "^0.5.19", 21 - "@types/node": "^24.7.2", 22 - "@types/sanitize-html": "^2.16.0", 23 - "autoprefixer": "^10.4.21", 24 - "cssnano": "^7.1.1", 25 - "eslint": "^9.37.0", 26 - "eslint-plugin-svelte": "^3.12.4", 27 - "globals": "^16.4.0", 28 - "postcss": "^8.5.6", 29 - "svelte": "^5.39.11", 30 - "svelte-check": "^4.3.3", 31 - "tailwindcss": "^3.4.18", 32 - "typescript": "^5.9.3", 33 - "typescript-eslint": "^8.46.0", 34 - "vite": "^7.1.9" 35 - }, 36 - "dependencies": { 37 - "postcss-import": "^16.1.1", 38 - "rehype-autolink-headings": "^7.1.0", 39 - "rehype-highlight": "^7.0.2", 40 - "rehype-katex": "^7.0.1", 41 - "rehype-raw": "^7.0.0", 42 - "rehype-sanitize": "^6.0.0", 43 - "rehype-slug": "^6.0.0", 44 - "rehype-stringify": "^10.0.1", 45 - "remark": "^15.0.1", 46 - "remark-breaks": "^4.0.0", 47 - "remark-emoji": "^5.0.2", 48 - "remark-gfm": "^4.0.1", 49 - "remark-math": "^6.0.0", 50 - "remark-rehype": "^11.1.2", 51 - "sanitize-html": "^2.17.0", 52 - "unified": "^11.0.5" 53 - } 2 + "name": "website", 3 + "private": true, 4 + "version": "0.0.1", 5 + "type": "module", 6 + "scripts": { 7 + "dev": "vite dev", 8 + "build": "vite build", 9 + "preview": "vite preview", 10 + "prepare": "svelte-kit sync || echo ''", 11 + "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", 12 + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", 13 + "format": "prettier --write .", 14 + "lint": "prettier --check ." 15 + }, 16 + "devDependencies": { 17 + "@sveltejs/adapter-auto": "^6.1.0", 18 + "@sveltejs/kit": "^2.43.2", 19 + "@sveltejs/vite-plugin-svelte": "^6.2.0", 20 + "@tailwindcss/typography": "^0.5.18", 21 + "@tailwindcss/vite": "^4.1.13", 22 + "prettier": "^3.6.2", 23 + "prettier-plugin-svelte": "^3.4.0", 24 + "prettier-plugin-tailwindcss": "^0.6.14", 25 + "svelte": "^5.39.5", 26 + "svelte-check": "^4.3.2", 27 + "tailwindcss": "^4.1.13", 28 + "typescript": "^5.9.2", 29 + "vite": "^7.1.7" 30 + } 54 31 }
-9
postcss.config.js
··· 1 - export default { 2 - plugins: { 3 - 'postcss-import': {}, 4 - 'tailwindcss/nesting': {}, 5 - tailwindcss: {}, 6 - autoprefixer: {}, 7 - ...(process.env.NODE_ENV === 'production' ? { cssnano: {} } : {}) 8 - }, 9 - }
+2
src/app.css
··· 1 + @import 'tailwindcss'; 2 + @plugin '@tailwindcss/typography';
+7 -7
src/app.d.ts
··· 1 1 // See https://svelte.dev/docs/kit/types#app.d.ts 2 2 // for information about these interfaces 3 3 declare global { 4 - namespace App { 5 - // interface Error {} 6 - // interface Locals {} 7 - // interface PageData {} 8 - // interface PageState {} 9 - // interface Platform {} 10 - } 4 + namespace App { 5 + // interface Error {} 6 + // interface Locals {} 7 + // interface PageData {} 8 + // interface PageState {} 9 + // interface Platform {} 10 + } 11 11 } 12 12 13 13 export {};
+10 -58
src/app.html
··· 1 - <!DOCTYPE html> 1 + <!doctype html> 2 2 <html lang="en"> 3 - <head> 4 - <meta charset="utf-8" /> 5 - <meta name="viewport" content="width=device-width, initial-scale=1" /> 6 - <meta name="author" content="Ewan Croft" /> 7 - <meta name="robots" content="index, follow" /> 8 - <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 9 - <meta name="format-detection" content="telephone=no" /> 10 - <meta name="mobile-web-app-capable" content="yes" /> 11 - <meta name="apple-mobile-web-app-capable" content="yes" /> 12 - <meta name="msapplication-TileColor" content="#0a1607" /> 13 - <meta 14 - name="msapplication-TileImage" 15 - content="%sveltekit.assets%/favicon/ms-icon-144x144.png" 16 - /> 17 - 18 - <!-- THEME LOADER - MUST BE FIRST SCRIPT --> 19 - <script src="%sveltekit.assets%/scripts/themeLoader.js"></script> 20 - 21 - <!-- Favicon and Icons --> 22 - <link rel="icon" href="%sveltekit.assets%/favicon/favicon-32x32.png" /> 23 - <link 24 - rel="icon" 25 - type="image/png" 26 - sizes="32x32" 27 - href="%sveltekit.assets%/favicon/favicon-32x32.png" 28 - /> 29 - <link 30 - rel="icon" 31 - type="image/png" 32 - sizes="16x16" 33 - href="%sveltekit.assets%/favicon/favicon-16x16.png" 34 - /> 35 - <link 36 - rel="apple-touch-icon" 37 - sizes="180x180" 38 - href="%sveltekit.assets%/favicon/apple-touch-icon.png" 39 - /> 40 - <link 41 - rel="icon" 42 - type="image/png" 43 - sizes="192x192" 44 - href="%sveltekit.assets%/favicon/android-chrome-192x192.png" 45 - /> 46 - <link 47 - rel="icon" 48 - type="image/png" 49 - sizes="512x512" 50 - href="%sveltekit.assets%/favicon/android-chrome-512x512.png" 51 - /> 52 - <link rel="manifest" href="%sveltekit.assets%/favicon/site.webmanifest" /> 53 - 54 - %sveltekit.head% 55 - </head> 56 - <body data-sveltekit-preload-data="hover"> 57 - <div style="display: contents">%sveltekit.body%</div> 58 - </body> 59 - </html> 3 + <head> 4 + <meta charset="utf-8" /> 5 + <meta name="viewport" content="width=device-width, initial-scale=1" /> 6 + %sveltekit.head% 7 + </head> 8 + <body data-sveltekit-preload-data="hover"> 9 + <div style="display: contents">%sveltekit.body%</div> 10 + </body> 11 + </html>
-6
src/env.d.ts
··· 1 - /// <reference types="sveltekit" /> 2 - import type { PublicEnv } from "./lib/components/shared/interfaces"; 3 - 4 - declare namespace App { 5 - interface PublicEnv extends PublicEnv {} 6 - }
-465
src/lib/components/archive/ArchiveCard.svelte
··· 1 - <script lang="ts"> 2 - import { fly, fade } from "svelte/transition"; 3 - import { quintOut } from "svelte/easing"; 4 - import { formatDate, formatNumber } from "$utils/formatters"; 5 - import { getMilestone } from "$utils/milestones"; 6 - 7 - // Import necessary icons 8 - import { DocumentIcon, LinkExternalIcon, CoffeeIcon, ClockIcon, BookIcon, BooksIcon } from "$components/icons"; 9 - 10 - export let type: 'post' | 'link'; 11 - export let post: any = {}; // For post type 12 - export let title: string = ""; // For link type or post title 13 - export let url: string = ""; // For link type 14 - export let value: string = ""; // For link type 15 - export let monthIndex: number = 0; 16 - export let postIndex: number = 0; 17 - export let localeLoaded: boolean = false; 18 - export let postNumber: number | null = null; // New prop for milestone calculation 19 - 20 - // Reactive variable to store the display date string for posts 21 - let displayDate: string; 22 - 23 - // Update displayDate whenever post.createdAt or localeLoaded changes for posts 24 - $: { 25 - if (type === 'post' && localeLoaded && post?.createdAt) { 26 - const postDate = new Date(post.createdAt); 27 - displayDate = formatDate(postDate); 28 - } else if (type === 'post') { 29 - displayDate = "Loading..."; 30 - } 31 - } 32 - 33 - // Calculate milestone information 34 - $: milestone = type === 'post' && postNumber ? getMilestone(postNumber) : null; 35 - 36 - // Determine the title to display based on type 37 - $: displayTitle = type === 'post' ? post?.title : title; 38 - $: href = type === 'post' ? `/blog/${post.rkey}` : url; 39 - 40 - // Calculate reading time category for visual styling 41 - $: readingTime = type === 'post' ? Math.ceil(post.wordCount / 200) : 0; 42 - $: isLongRead = readingTime > 10; 43 - $: isMediumRead = readingTime > 5 && readingTime <= 10; 44 - $: isQuickRead = readingTime <= 2; 45 - 46 - // Get appropriate icon based on reading time 47 - $: getReadingTimeIcon = (time: number) => { 48 - if (time <= 2) return 'quick'; // Coffee cup for quick reads 49 - if (time <= 5) return 'short'; // Clock for short reads 50 - if (time <= 10) return 'medium'; // Book for medium reads 51 - return 'long'; // Stack of books for long reads 52 - }; 53 - </script> 54 - 55 - <div 56 - class="archive-card group" 57 - class:long-read={type === 'post' && isLongRead} 58 - class:medium-read={type === 'post' && isMediumRead} 59 - class:has-milestone={milestone} 60 - in:fly={{ 61 - y: 15, 62 - x: 0, 63 - delay: 150 + monthIndex * 30 + postIndex * 50, 64 - duration: 300, 65 - easing: quintOut, 66 - }} 67 - > 68 - <a {href} class="card-link"> 69 - <article class="card-content"> 70 - <!-- Milestone banner (appears at top if present) --> 71 - {#if milestone} 72 - <div 73 - class="milestone-banner" 74 - class:special={milestone.type === 'special'} 75 - class:major={milestone.type === 'major'} 76 - class:minor={milestone.type === 'minor'} 77 - in:fade={{ delay: 300, duration: 400 }} 78 - > 79 - <span class="milestone-emoji" role="img" aria-label="milestone">{milestone.emoji}</span> 80 - <span class="milestone-text">{milestone.text}</span> 81 - </div> 82 - {/if} 83 - 84 - <!-- Header section with title and type indicator --> 85 - <header class="card-header"> 86 - {#if type === 'post'} 87 - <div class="post-indicator"> 88 - <DocumentIcon size="20" /> 89 - <span class="sr-only">Blog post</span> 90 - </div> 91 - {:else} 92 - <div class="link-indicator"> 93 - <LinkExternalIcon size="20" /> 94 - <span class="sr-only">External link</span> 95 - </div> 96 - {/if} 97 - 98 - <h3 class="card-title" title={displayTitle}> 99 - {displayTitle} 100 - </h3> 101 - </header> 102 - 103 - <!-- Main content area --> 104 - <div class="card-body"> 105 - {#if type === 'post'} 106 - <!-- Reading stats with visual emphasis --> 107 - <div class="reading-stats"> 108 - <div class="stat-item words"> 109 - <span class="stat-number">{formatNumber(post.wordCount) || '0'}</span> 110 - <span class="stat-label">words</span> 111 - </div> 112 - <div class="stat-divider">•</div> 113 - <div class="stat-item time" class:highlight={isLongRead}> 114 - <div class="reading-time-icon" class:quick={isQuickRead} class:medium={isMediumRead} class:long={isLongRead}> 115 - {#if getReadingTimeIcon(readingTime) === 'quick'} 116 - <CoffeeIcon size="14" /> 117 - {:else if getReadingTimeIcon(readingTime) === 'short'} 118 - <ClockIcon size="14" /> 119 - {:else if getReadingTimeIcon(readingTime) === 'medium'} 120 - <BookIcon size="14" /> 121 - {:else} 122 - <BooksIcon size="14" /> 123 - {/if} 124 - </div> 125 - <span class="stat-number">{Math.ceil(post.wordCount / 200)}</span> 126 - <span class="stat-label">min read</span> 127 - </div> 128 - </div> 129 - {:else if type === 'link'} 130 - <p class="link-value">{value}</p> 131 - {/if} 132 - </div> 133 - 134 - <!-- Footer with metadata --> 135 - <footer class="card-footer"> 136 - {#if type === 'post'} 137 - <div class="date-section"> 138 - <span class="date-label">Last Updated</span> 139 - <div class="date-value"> 140 - {#if localeLoaded && displayDate !== "Loading..."} 141 - <span transition:fade>{displayDate}</span> 142 - {:else} 143 - <span class="loading">Loading...</span> 144 - {/if} 145 - </div> 146 - </div> 147 - {:else if type === 'link'} 148 - <div class="link-domain"> 149 - {url?.replace(/^https?:\/\//, "").split("/")[0]} 150 - </div> 151 - {/if} 152 - </footer> 153 - </article> 154 - </a> 155 - </div> 156 - 157 - <style> 158 - .archive-card { 159 - backface-visibility: hidden; 160 - transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1); 161 - } 162 - 163 - .card-link { 164 - display: block; 165 - text-decoration: none; 166 - height: 100%; 167 - } 168 - 169 - .card-content { 170 - display: flex; 171 - flex-direction: column; 172 - height: 100%; 173 - min-height: 140px; 174 - padding: 20px; 175 - border: 1px solid transparent; 176 - border-radius: 12px; 177 - background: var(--header-footer-bg); 178 - transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1); 179 - position: relative; 180 - overflow: hidden; 181 - } 182 - 183 - .card-content::before { 184 - content: ''; 185 - position: absolute; 186 - top: 0; 187 - left: 0; 188 - right: 0; 189 - height: 3px; 190 - background: var(--link-color); 191 - transform: scaleX(0); 192 - transition: transform 0.3s ease; 193 - transform-origin: left; 194 - } 195 - 196 - .group:hover .card-content { 197 - border-color: var(--button-bg); 198 - transform: translateY(-2px); 199 - box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); 200 - } 201 - 202 - .group:hover .card-content::before { 203 - transform: scaleX(1); 204 - } 205 - 206 - /* Disable line animation for milestone cards */ 207 - .has-milestone .card-content::before { 208 - display: none; 209 - } 210 - 211 - /* Milestone Banner Styles */ 212 - .milestone-banner { 213 - display: flex; 214 - align-items: center; 215 - justify-content: center; 216 - gap: 8px; 217 - padding: 8px 12px; 218 - margin: -20px -20px 16px -20px; 219 - font-size: 0.85rem; 220 - font-weight: 600; 221 - text-align: center; 222 - position: relative; 223 - overflow: hidden; 224 - } 225 - 226 - .milestone-banner::before { 227 - content: ''; 228 - position: absolute; 229 - top: 0; 230 - left: -100%; 231 - width: 100%; 232 - height: 100%; 233 - background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); 234 - animation: shimmer 2s infinite; 235 - } 236 - 237 - @keyframes shimmer { 238 - 0% { left: -100%; } 239 - 100% { left: 100%; } 240 - } 241 - 242 - .milestone-banner.special, 243 - .milestone-banner.major { 244 - background: linear-gradient(135deg, var(--button-bg), var(--button-hover-bg)); 245 - color: white; 246 - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); 247 - } 248 - 249 - .milestone-banner.minor { 250 - background: var(--button-bg); 251 - color: var(--text-color); 252 - opacity: 0.9; 253 - } 254 - 255 - .milestone-emoji { 256 - font-size: 1rem; 257 - filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)); 258 - } 259 - 260 - .milestone-text { 261 - letter-spacing: 0.02em; 262 - } 263 - 264 - /* Adjust card content when milestone is present */ 265 - .has-milestone .card-header { 266 - margin-bottom: 12px; 267 - } 268 - 269 - .has-milestone .card-content { 270 - min-height: 160px; 271 - } 272 - 273 - /* Header Styles */ 274 - .card-header { 275 - display: flex; 276 - align-items: flex-start; 277 - gap: 12px; 278 - margin-bottom: 16px; 279 - } 280 - 281 - .post-indicator, .link-indicator { 282 - background: var(--card-bg); 283 - color: var(--text-color); 284 - opacity: 0.8; 285 - flex-shrink: 0; 286 - padding: 6px; 287 - margin-top: 2px; 288 - transition: all 0.3s ease; 289 - } 290 - 291 - .card-title { 292 - flex: 1; 293 - margin: 0; 294 - font-size: 1.1rem; 295 - font-weight: 600; 296 - line-height: 1.4; 297 - color: var(--link-color); 298 - display: -webkit-box; 299 - -webkit-line-clamp: 3; 300 - line-clamp: 3; 301 - -webkit-box-orient: vertical; 302 - overflow: hidden; 303 - word-break: break-word; 304 - transition: color 0.3s ease; 305 - } 306 - 307 - .group:hover .card-title { 308 - color: var(--link-hover-color); 309 - } 310 - 311 - /* Body Styles */ 312 - .card-body { 313 - flex: 1; 314 - display: flex; 315 - align-items: center; 316 - } 317 - 318 - .reading-stats { 319 - display: flex; 320 - align-items: center; 321 - gap: 12px; 322 - font-size: 0.95rem; 323 - } 324 - 325 - .stat-item { 326 - display: flex; 327 - align-items: center; 328 - gap: 6px; 329 - } 330 - 331 - .reading-time-icon { 332 - display: flex; 333 - align-items: center; 334 - color: var(--text-color); 335 - opacity: 0.7; 336 - transition: all 0.3s ease; 337 - } 338 - 339 - .stat-number { 340 - font-weight: 600; 341 - color: var(--text-color); 342 - } 343 - 344 - .stat-label { 345 - font-size: 0.85rem; 346 - color: var(--text-color); 347 - opacity: 0.7; 348 - } 349 - 350 - .stat-item.highlight .stat-number { 351 - color: var(--link-color); 352 - font-weight: 700; 353 - } 354 - 355 - .stat-divider { 356 - color: var(--text-color); 357 - opacity: 0.4; 358 - } 359 - 360 - .link-value { 361 - color: var(--text-color); 362 - font-size: 0.9rem; 363 - line-height: 1.4; 364 - margin: 0; 365 - } 366 - 367 - /* Footer Styles */ 368 - .card-footer { 369 - margin-top: auto; 370 - padding-top: 16px; 371 - } 372 - 373 - .date-section { 374 - display: flex; 375 - flex-direction: column; 376 - gap: 4px; 377 - } 378 - 379 - .date-label { 380 - font-size: 0.75rem; 381 - color: var(--text-color); 382 - opacity: 0.6; 383 - text-transform: uppercase; 384 - letter-spacing: 0.5px; 385 - font-weight: 500; 386 - } 387 - 388 - .date-value { 389 - font-size: 0.9rem; 390 - color: var(--text-color); 391 - font-weight: 500; 392 - } 393 - 394 - .loading { 395 - opacity: 0.5; 396 - font-style: italic; 397 - } 398 - 399 - .link-domain { 400 - font-size: 0.8rem; 401 - color: var(--background-color); 402 - opacity: 0.7; 403 - font-family: monospace; 404 - background-color: var(--link-color); 405 - padding: 4px 8px; 406 - border-radius: 4px; 407 - display: inline-block; 408 - } 409 - 410 - /* Adaptive sizing based on content */ 411 - .long-read .card-content { 412 - min-height: 160px; 413 - } 414 - 415 - .medium-read .card-content { 416 - min-height: 150px; 417 - } 418 - 419 - .long-read .card-content::before { 420 - height: 4px; 421 - background: var(--link-color); 422 - } 423 - 424 - /* Screen reader only content */ 425 - .sr-only { 426 - position: absolute; 427 - width: 1px; 428 - height: 1px; 429 - padding: 0; 430 - margin: -1px; 431 - overflow: hidden; 432 - clip: rect(0, 0, 0, 0); 433 - white-space: nowrap; 434 - border: 0; 435 - } 436 - 437 - /* Minor milestones */ 438 - .milestone-banner.minor::before { 439 - content: none; 440 - animation: none; 441 - background: none; 442 - display: none; 443 - } 444 - 445 - /* Responsive adjustments */ 446 - @media (max-width: 640px) { 447 - .card-content { 448 - padding: 16px; 449 - min-height: 120px; 450 - } 451 - 452 - .card-title { 453 - font-size: 1rem; 454 - } 455 - 456 - .reading-stats { 457 - font-size: 0.85rem; 458 - } 459 - 460 - .milestone-banner { 461 - margin: -16px -16px 12px -16px; 462 - font-size: 0.8rem; 463 - } 464 - } 465 - </style>
-82
src/lib/components/archive/ArchiveHeader.svelte
··· 1 - <script lang="ts"> 2 - import { formatNumber } from "$utils/formatters"; 3 - import { calculateTotalReadTime, calculateTotalWordCount, formatReadTime } from "$utils/tally"; 4 - import DocumentIcon from "$components/icons/utility/DocumentIcon.svelte"; 5 - 6 - export let groupedByYear: any[]; 7 - 8 - $: totalPosts = groupedByYear.reduce((total, yearGroup) => { 9 - return total + Object.values(yearGroup.months).reduce((yearTotal: number, postsInMonth) => { 10 - return yearTotal + (postsInMonth as any[]).length; 11 - }, 0); 12 - }, 0); 13 - 14 - $: allPosts = groupedByYear.flatMap(yearGroup => 15 - Object.values(yearGroup.months).flatMap((postsInMonth) => postsInMonth as any[]) 16 - ); 17 - 18 - $: rawTotalReadTime = calculateTotalReadTime(allPosts); 19 - $: totalReadTime = formatReadTime(rawTotalReadTime); 20 - $: totalWordCount = calculateTotalWordCount(allPosts); 21 - 22 - $: postLabel = totalPosts === 1 ? "post" : "posts"; 23 - $: wordLabel = totalWordCount === 1 ? "word" : "words"; 24 - </script> 25 - 26 - <header class="mb-2 px-4 sm:px-6"> 27 - <div class="max-w-7xl mx-auto"> 28 - <!-- Main content container with better responsive flow --> 29 - <div class="flex flex-col lg:flex-row lg:items-center lg:justify-between gap-4 sm:gap-4 lg:gap-8 pb-3 sm:pb-4 lg:pb-6"> 30 - 31 - <!-- Left: Title & Subtitle --> 32 - <div class="flex items-center gap-4 sm:gap-5"> 33 - <div class="flex-shrink-0 flex items-center justify-center w-12 h-12 sm:w-14 sm:h-14 bg-card rounded-xl shadow-sm"> 34 - <DocumentIcon size="24"/> 35 - </div> 36 - <div class="min-w-0 flex-1"> 37 - <h1 class="text-2xl sm:text-3xl font-extrabold text-primary leading-tight tracking-tight"> 38 - Blog Archive 39 - </h1> 40 - <p class="text-xs sm:text-sm text-text/80 mt-1">Unapologetically me</p> 41 - </div> 42 - </div> 43 - 44 - <!-- Right: Stats with improved responsive layout and no wrapping --> 45 - <div class="flex items-center justify-center lg:justify-end flex-shrink-0"> 46 - <div class="flex items-center gap-4 sm:gap-6 lg:gap-8"> 47 - 48 - <!-- Posts stat --> 49 - <div class="flex flex-col items-center flex-shrink-0 min-w-0"> 50 - <span class="text-lg sm:text-xl lg:text-2xl font-bold text-primary tabular-nums whitespace-nowrap"> 51 - {formatNumber(totalPosts)} 52 - </span> 53 - <span class="text-xs text-text/70 uppercase tracking-wide font-medium whitespace-nowrap"> 54 - {postLabel} 55 - </span> 56 - </div> 57 - 58 - <!-- Read time stat --> 59 - <div class="flex flex-col items-center flex-shrink-0 min-w-0"> 60 - <span class="text-sm sm:text-base lg:text-lg font-semibold text-text tabular-nums whitespace-nowrap"> 61 - {totalReadTime} 62 - </span> 63 - <span class="text-xs text-text/70 uppercase tracking-wide font-medium whitespace-nowrap"> 64 - Read Time 65 - </span> 66 - </div> 67 - 68 - <!-- Word count stat --> 69 - <div class="flex flex-col items-center flex-shrink-0 min-w-0"> 70 - <span class="text-sm sm:text-base lg:text-lg font-semibold text-text tabular-nums whitespace-nowrap"> 71 - {formatNumber(totalWordCount)} 72 - </span> 73 - <span class="text-xs text-text/70 uppercase tracking-wide font-medium whitespace-nowrap"> 74 - {wordLabel} 75 - </span> 76 - </div> 77 - 78 - </div> 79 - </div> 80 - </div> 81 - </div> 82 - </header>
-32
src/lib/components/archive/MonthSection.svelte
··· 1 - <script lang="ts"> 2 - import { slide } from "svelte/transition"; 3 - import { quintOut } from "svelte/easing"; 4 - import { ArchiveCard } from "./index"; 5 - 6 - export let monthName: string; 7 - export let postsInMonth: any[]; 8 - export let monthIndex: number; 9 - export let localeLoaded: boolean; 10 - import { calculateTotalReadTime, calculateTotalWordCount, formatReadTime } from "$utils/tally"; 11 - 12 - $: rawTotalReadTime = calculateTotalReadTime(postsInMonth); 13 - $: totalReadTime = formatReadTime(rawTotalReadTime); 14 - $: totalWordCount = calculateTotalWordCount(postsInMonth); 15 - 16 - // Calculate the number of posts 17 - let postCount = postsInMonth.length; 18 - </script> 19 - 20 - <div 21 - class="mb-12 ml-4" 22 - in:slide={{ delay: 100 + monthIndex * 50, duration: 300, easing: quintOut }} 23 - > 24 - <h2 class="text-3xl font-bold mb-1">{monthName}</h2> 25 - <div 26 - class="grid grid-cols-[repeat(auto-fill,minmax(280px,1fr)_)] gap-x-6 gap-y-6 my-8" 27 - > 28 - {#each postsInMonth as post, postIndex (post.rkey)} 29 - <ArchiveCard type="post" {post} {monthIndex} {postIndex} {localeLoaded} postNumber={post.postNumber} /> 30 - {/each} 31 - </div> 32 - </div>
-37
src/lib/components/archive/YearContent.svelte
··· 1 - <script lang="ts"> 2 - import { fly, fade } from "svelte/transition"; 3 - import { quintOut } from "svelte/easing"; 4 - import MonthSection from "./MonthSection.svelte"; 5 - import { calculateTotalReadTime, calculateTotalWordCount, formatReadTime } from "$utils/tally"; 6 - 7 - export const year: number = 0; 8 - export let months: Record<string, any[]>; 9 - export let localeLoaded: boolean; 10 - 11 - // Calculate yearly totals 12 - $: rawYearlyTotalReadTime = Object.values(months).reduce((total, postsInMonth) => { 13 - return total + calculateTotalReadTime(postsInMonth); 14 - }, 0); 15 - $: yearlyTotalReadTime = formatReadTime(rawYearlyTotalReadTime); 16 - 17 - $: yearlyTotalWordCount = Object.values(months).reduce((total, postsInMonth) => { 18 - return total + calculateTotalWordCount(postsInMonth); 19 - }, 0); 20 - </script> 21 - 22 - <div 23 - in:fly={{ y: 20, duration: 300, delay: 50, easing: quintOut }} 24 - out:fade={{ duration: 200 }} 25 - class="year-content" 26 - > 27 - 28 - {#each Object.entries(months) as [monthName, postsInMonth], monthIndex} 29 - <MonthSection 30 - {monthName} 31 - {postsInMonth} 32 - {monthIndex} 33 - {localeLoaded} 34 - 35 - /> 36 - {/each} 37 - </div>
-52
src/lib/components/archive/YearTabs.svelte
··· 1 - <script lang="ts"> 2 - export let groupedByYear: any[]; 3 - export let activeYear: number; 4 - 5 - function setActiveYear(year: number) { 6 - activeYear = year; 7 - } 8 - 9 - // Calculate the active tab index more reliably 10 - $: activeTabIndex = groupedByYear.findIndex((g) => g.year === activeYear); 11 - $: indicatorLeft = activeTabIndex >= 0 ? activeTabIndex * 100 : 0; 12 - </script> 13 - 14 - <div 15 - class="flex mb-3 sm:mb-4 lg:mb-6 pl-4 overflow-x-auto relative tabs-container" 16 - > 17 - {#each groupedByYear as { year }, i} 18 - <button 19 - class="w-[100px] min-w-[100px] px-4 py-2 font-medium transition-all duration-300 relative z-10 flex items-center justify-center" 20 - onclick={() => setActiveYear(year)} 21 - > 22 - <span 23 - class="px-3 py-1 rounded-full transition-all duration-300 {activeYear === year 24 - ? 'bg-primary text-[var(--background-color)] transform scale-105' 25 - : 'text-text opacity-80 hover:text-primary hover:bg-primary/10'}" 26 - > 27 - {year} 28 - </span> 29 - </button> 30 - {/each} 31 - </div> 32 - 33 - <style> 34 - /* Custom scrollbar styling for tabs container */ 35 - .tabs-container::-webkit-scrollbar { 36 - height: 6px; 37 - } 38 - 39 - .tabs-container::-webkit-scrollbar-track { 40 - background: var(--header-footer-bg); 41 - border-radius: 3px; 42 - } 43 - 44 - .tabs-container::-webkit-scrollbar-thumb { 45 - background: var(--button-bg); 46 - border-radius: 3px; 47 - } 48 - 49 - .tabs-container::-webkit-scrollbar-thumb:hover { 50 - background: var(--button-hover-bg); 51 - } 52 - </style>
-5
src/lib/components/archive/index.ts
··· 1 - export { default as YearTabs } from "./YearTabs.svelte"; 2 - export { default as YearContent } from "./YearContent.svelte"; 3 - export { default as MonthSection } from "./MonthSection.svelte"; 4 - export { default as ArchiveCard } from "./ArchiveCard.svelte"; 5 - export { default as ArchiveHeader } from "./ArchiveHeader.svelte";
-19
src/lib/components/icons/index.ts
··· 1 - export { default as BlueskyIcon } from "./social/BlueskyIcon.svelte"; 2 - export { default as MastodonIcon } from './social/MastodonIcon.svelte'; 3 - export { default as RssIcon } from './social/RssIcon.svelte'; 4 - export { default as AtomIcon } from "./social/AtomIcon.svelte"; 5 - export { default as ShareIcons } from './social/ShareIcons.svelte'; 6 - export { default as BookOpenIcon } from './utility/BookOpenIcon.svelte'; 7 - export { default as CopyLinkIcon } from './utility/CopyLinkIcon.svelte'; 8 - export { default as HomeIcon } from './utility/HomeIcon.svelte'; 9 - export { default as LinkIcon } from './utility/LinkIcon.svelte'; 10 - export { default as MoonIcon } from './utility/MoonIcon.svelte'; 11 - export { default as PostIcon } from './utility/PostIcon.svelte'; 12 - export { default as SunIcon } from './utility/SunIcon.svelte'; 13 - export { default as DocumentIcon } from "./utility/DocumentIcon.svelte"; 14 - export { default as LinkExternalIcon } from "./utility/LinkExternalIcon.svelte"; 15 - export { default as CoffeeIcon } from "./utility/CoffeeIcon.svelte"; 16 - export { default as ClockIcon } from "./utility/ClockIcon.svelte"; 17 - export { default as BookIcon } from "./utility/BookIcon.svelte"; 18 - export { default as BooksIcon } from "./utility/BooksIcon.svelte"; 19 - export { default as EditIcon } from "./utility/EditIcon.svelte";
-22
src/lib/components/icons/social/AtomIcon.svelte
··· 1 - <script> 2 - export let size = "24"; 3 - export let stroke = "currentColor"; 4 - export let fill = "none"; 5 - </script> 6 - 7 - <svg 8 - xmlns="http://www.w3.org/2000/svg" 9 - width={size} 10 - height={size} 11 - viewBox="0 0 24 24" 12 - {fill} 13 - {stroke} 14 - stroke-width="2" 15 - stroke-linecap="round" 16 - stroke-linejoin="round" 17 - > 18 - <path opacity="0.1" fill-rule="evenodd" clip-rule="evenodd" d="M15.9998 16C17.2861 14.7137 18.3497 13.3465 19.1568 12.0001C18.3497 10.6536 17.2861 9.28634 15.9998 8C14.7134 6.71368 13.3462 5.65007 11.9998 4.84302C10.6533 5.65006 9.28611 6.71367 7.99981 7.99998C6.71346 9.28632 5.64983 10.6536 4.84277 12.0001C5.64982 13.3465 6.71343 14.7137 7.99974 16C9.28606 17.2864 10.6533 18.35 11.9998 19.157C13.3463 18.35 14.7135 17.2863 15.9998 16ZM11.9998 9.74994C10.7571 9.74994 9.74976 10.7573 9.74976 11.9999C9.74976 13.2426 10.7571 14.2499 11.9998 14.2499C13.2424 14.2499 14.2498 13.2426 14.2498 11.9999C14.2498 10.7573 13.2424 9.74994 11.9998 9.74994Z" fill={stroke}/> 19 - <path d="M20 20.0001C17.7909 22.2092 12.4183 20.4183 8 16.0001C3.58171 11.5818 1.79084 6.20916 3.99999 4.00001C6.20913 1.79087 11.5817 3.58173 16 8.00003C20.4183 12.4183 22.2092 17.7909 20 20.0001Z" stroke={stroke} stroke-width="2"/> 20 - <path d="M3.99994 20C1.79079 17.7909 3.58166 12.4183 7.99995 8C12.4182 3.58171 17.7908 1.79084 20 3.99999C22.2091 6.20913 20.4183 11.5817 16 16C11.5817 20.4183 6.20908 22.2092 3.99994 20Z" stroke={stroke} stroke-width="2"/> 21 - <path d="M14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12Z" stroke={stroke} stroke-width="2"/> 22 - </svg>
-17
src/lib/components/icons/social/BlueskyIcon.svelte
··· 1 - <script> 2 - export let size = "18"; 3 - export let fill = "currentColor"; 4 - </script> 5 - 6 - <svg 7 - role="img" 8 - viewBox="0 0 24 24" 9 - xmlns="http://www.w3.org/2000/svg" 10 - width={size} 11 - height={size} 12 - {fill} 13 - > 14 - <path 15 - d="M12 10.8c-1.087-2.114-4.046-6.053-6.798-7.995C2.566.944 1.561 1.266.902 1.565.139 1.908 0 3.08 0 3.768c0 .69.378 5.65.624 6.479.815 2.736 3.713 3.66 6.383 3.364.136-.02.275-.039.415-.056-.138.022-.276.04-.415.056-3.912.58-7.387 2.005-2.83 7.078 5.013 5.19 6.87-1.113 7.823-4.308.953 3.195 2.05 9.271 7.733 4.308 4.267-4.308 1.172-6.498-2.74-7.078a8.741 8.741 0 0 1-.415-.056c.14.017.279.036.415.056 2.67.297 5.568-.628 6.383-3.364.246-.828.624-5.79.624-6.478 0-.69-.139-1.861-.902-2.206-.659-.298-1.664-.62-4.3 1.24C16.046 4.748 13.087 8.687 12 10.8Z" 16 - /> 17 - </svg>
-17
src/lib/components/icons/social/MastodonIcon.svelte
··· 1 - <script> 2 - export let size = "18"; 3 - export let fill = "currentColor"; 4 - </script> 5 - 6 - <svg 7 - role="img" 8 - viewBox="0 0 24 24" 9 - xmlns="http://www.w3.org/2000/svg" 10 - width={size} 11 - height={size} 12 - {fill} 13 - > 14 - <path 15 - d="M23.268 5.313c-.35-2.578-2.617-4.61-5.304-5.004C17.51.242 15.792 0 11.813 0h-.03c-3.98 0-4.835.242-5.288.309C3.882.692 1.496 2.518.917 5.127.64 6.412.61 7.837.661 9.143c.074 1.874.088 3.745.26 5.611.118 1.24.325 2.47.62 3.68.55 2.237 2.777 4.098 4.96 4.857 2.336.792 4.849.923 7.256.38.265-.061.527-.132.786-.213.585-.184 1.27-.39 1.774-.753a.057.057 0 0 0 .023-.043v-1.809a.052.052 0 0 0-.02-.041.053.053 0 0 0-.046-.01 20.282 20.282 0 0 1-4.709.545c-2.73 0-3.463-1.284-3.674-1.818a5.593 5.593 0 0 1-.319-1.433.053.053 0 0 1 .066-.054c1.517.363 3.072.546 4.632.546.376 0 .75 0 1.125-.01 1.57-.044 3.224-.124 4.768-.422.038-.008.077-.015.11-.024 2.435-.464 4.753-1.92 4.989-5.604.008-.145.03-1.52.03-1.67.002-.512.167-3.63-.024-5.545zm-3.748 9.195h-2.561V8.29c0-1.309-.55-1.976-1.67-1.976-1.23 0-1.846.79-1.846 2.35v3.403h-2.546V8.663c0-1.56-.617-2.35-1.848-2.35-1.112 0-1.668.668-1.67 1.977v6.218H4.822V8.102c0-1.31.337-2.35 1.011-3.12.696-.77 1.608-1.164 2.74-1.164 1.311 0 2.302.5 2.962 1.498l.638 1.06.638-1.06c.66-.999 1.65-1.498 2.96-1.498 1.13 0 2.043.395 2.74 1.164.675.77 1.012 1.81 1.012 3.12z" 16 - /> 17 - </svg>
-21
src/lib/components/icons/social/RssIcon.svelte
··· 1 - <script> 2 - export let size = "24"; 3 - export let stroke = "currentColor"; 4 - export let fill = "none"; 5 - </script> 6 - 7 - <svg 8 - xmlns="http://www.w3.org/2000/svg" 9 - width={size} 10 - height={size} 11 - viewBox="0 0 24 24" 12 - {fill} 13 - {stroke} 14 - stroke-width="2" 15 - stroke-linecap="round" 16 - stroke-linejoin="round" 17 - > 18 - <path d="M4 11a9 9 0 0 1 9 9" /> 19 - <path d="M4 4a16 16 0 0 1 16 16" /> 20 - <circle cx="5" cy="19" r="1" /> 21 - </svg>
-214
src/lib/components/icons/social/ShareIcons.svelte
··· 1 - <script lang="ts"> 2 - import { getStores } from "$app/stores"; 3 - const { page } = getStores(); 4 - import { env } from '$env/dynamic/public'; 5 - 6 - // Icons 7 - import { BlueskyIcon, MastodonIcon, CopyLinkIcon } from "$components/icons"; 8 - 9 - // Props 10 - export let title: string; 11 - export let showInHeader: boolean = false; 12 - export let profile: { handle: string; displayName?: string; did?: string }; 13 - export let mastodonInstance: string = "mastodon.social"; 14 - let fediverseCreator: string | undefined = env.PUBLIC_ACTIVITYPUB_USER; 15 - 16 - $: mastodonUserTag = 17 - fediverseCreator && 18 - (fediverseCreator.startsWith("http://") || 19 - fediverseCreator.startsWith("https://")) 20 - ? fediverseCreator 21 - : fediverseCreator && fediverseCreator.startsWith("@") 22 - ? fediverseCreator 23 - : `@${fediverseCreator}`; 24 - 25 - // Share texts 26 - $: blueskyShareText = `${title} by @${profile?.handle} - ${$page.url.href}`; 27 - $: mastodonShareText = 28 - mastodonUserTag 29 - ? mastodonUserTag.startsWith("http://") || 30 - mastodonUserTag.startsWith("https://") 31 - ? `${title} by ${mastodonUserTag} - ${$page.url.href}` 32 - : `${title} by ${mastodonUserTag} - ${$page.url.href}` 33 - : `${title} - ${$page.url.href}`; 34 - 35 - // Clipboard copy text with DID fallback to handle 36 - $: clipboardShareText = `${title} by https://bsky.app/profile/${profile?.did || profile?.handle} - ${$page.url.href}`; 37 - 38 - // Truncate for character limits 39 - $: truncatedBlueskyText = 40 - blueskyShareText.length > 300 41 - ? blueskyShareText.substring(0, 297) + "..." 42 - : blueskyShareText; 43 - $: truncatedMastodonText = 44 - mastodonShareText && 45 - (mastodonShareText.length > 500 46 - ? mastodonShareText.substring(0, 497) + "..." 47 - : mastodonShareText); 48 - 49 - // Encode share texts 50 - $: encodedBlueskyText = encodeURIComponent(truncatedBlueskyText); 51 - $: encodedMastodonText = 52 - mastodonShareText && encodeURIComponent(truncatedMastodonText); 53 - 54 - // Share URLs 55 - $: blueskyShareUrl = `https://bsky.app/intent/compose?text=${encodedBlueskyText}`; 56 - $: mastodonShareUrl = 57 - mastodonShareText && 58 - `https://${mastodonInstance}/share?text=${encodedMastodonText}`; 59 - 60 - // Trigger Mastodon share 61 - let mastodonShareTrigger = false; 62 - $: if (mastodonShareTrigger && mastodonInstance && mastodonShareUrl) { 63 - window.open(mastodonShareUrl, "_blank", "noopener,noreferrer"); 64 - mastodonShareTrigger = false; 65 - } 66 - 67 - // Copy Link button logic 68 - let copyLinkText = "Get Link"; 69 - let showCopyFeedback = false; 70 - 71 - const copyLink = async () => { 72 - try { 73 - await navigator.clipboard.writeText(clipboardShareText); 74 - copyLinkText = "Sorted!"; 75 - showCopyFeedback = true; 76 - setTimeout(() => { 77 - showCopyFeedback = false; 78 - copyLinkText = "Get Link"; 79 - }, 2000); 80 - } catch (err) { 81 - console.error("Failed to copy: ", err); 82 - copyLinkText = "Couldn’t Copy"; 83 - showCopyFeedback = true; 84 - setTimeout(() => { 85 - showCopyFeedback = false; 86 - copyLinkText = "Get Link"; 87 - }, 2000); 88 - } 89 - }; 90 - </script> 91 - 92 - <div 93 - class={`share-icons flex items-center gap-2 ${showInHeader ? "ml-auto mr-2" : "justify-center my-4"}`} 94 - > 95 - <!-- Bluesky Share Button --> 96 - <a 97 - href={blueskyShareUrl} 98 - target="_blank" 99 - rel="noopener noreferrer" 100 - class="icon-button p-2 rounded-full transition-all duration-300 hover:scale-110" 101 - style="background-color: var(--card-bg);" 102 - aria-label="Share on Bluesky" 103 - title="Share on Bluesky" 104 - > 105 - <BlueskyIcon /> 106 - </a> 107 - 108 - {#if env.PUBLIC_ACTIVITYPUB_USER && env.PUBLIC_ACTIVITYPUB_USER.length > 0} 109 - <button 110 - on:click|preventDefault={() => { 111 - const instance = prompt( 112 - "Enter your Mastodon instance (e.g. mastodon.social):", 113 - mastodonInstance 114 - ); 115 - if (instance) { 116 - mastodonInstance = instance; 117 - mastodonShareTrigger = true; 118 - } 119 - }} 120 - on:keydown={(e) => { 121 - if (e.key === "Enter" || e.key === " ") { 122 - const instance = prompt( 123 - "Enter your Mastodon instance (e.g. mastodon.social):", 124 - mastodonInstance 125 - ); 126 - if (instance) { 127 - mastodonInstance = instance; 128 - mastodonShareTrigger = true; 129 - } 130 - } 131 - }} 132 - class="icon-button p-2 rounded-full transition-all duration-300 hover:scale-110" 133 - style="background-color: var(--card-bg);" 134 - aria-label="Share on Mastodon" 135 - title="Share on Mastodon" 136 - tabindex="0" 137 - > 138 - <MastodonIcon /> 139 - </button> 140 - {/if} 141 - 142 - <!-- Copy Link Button --> 143 - <div class="relative flex items-center"> 144 - <button 145 - on:click={copyLink} 146 - class="icon-button p-2 rounded-full transition-all duration-300 hover:scale-110" 147 - style="background-color: var(--card-bg);" 148 - aria-label="Get Link" 149 - title="Get Link" 150 - > 151 - <CopyLinkIcon /> 152 - </button> 153 - {#if showCopyFeedback} 154 - <span 155 - class="copy-feedback absolute left-full ml-2 text-sm font-medium" 156 - class:copied={copyLinkText === 'Sorted!'} 157 - class:failed={copyLinkText === 'Couldn’t Copy'} 158 - > 159 - {copyLinkText} 160 - </span> 161 - {/if} 162 - </div> 163 - </div> 164 - 165 - <style> 166 - .icon-button { 167 - color: var(--text-color); 168 - } 169 - 170 - .icon-button:hover { 171 - background-color: var(--button-hover-bg) !important; 172 - } 173 - 174 - @media (max-width: 640px) { 175 - .share-icons { 176 - gap: 0.5rem; 177 - } 178 - .copy-feedback { 179 - display: none; 180 - } 181 - } 182 - 183 - .copy-feedback { 184 - opacity: 0; 185 - animation: fade-in-out 2s forwards; 186 - } 187 - 188 - .copy-feedback.copied { 189 - color: var(--accent-color); 190 - } 191 - 192 - .copy-feedback.failed { 193 - color: var(--error-color); 194 - } 195 - 196 - @keyframes fade-in-out { 197 - 0% { 198 - opacity: 0; 199 - transform: translateX(-10px); 200 - } 201 - 20% { 202 - opacity: 1; 203 - transform: translateX(0); 204 - } 205 - 80% { 206 - opacity: 1; 207 - transform: translateX(0); 208 - } 209 - 100% { 210 - opacity: 0; 211 - transform: translateX(10px); 212 - } 213 - } 214 - </style>
-20
src/lib/components/icons/utility/BookIcon.svelte
··· 1 - <script> 2 - export let size = "14"; 3 - export let fill = "none"; 4 - export let stroke = "currentColor"; 5 - export let strokeWidth = "2"; 6 - </script> 7 - 8 - <svg 9 - width={size} 10 - height={size} 11 - viewBox="0 0 24 24" 12 - {fill} 13 - {stroke} 14 - stroke-width={strokeWidth} 15 - stroke-linecap="round" 16 - stroke-linejoin="round" 17 - > 18 - <path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20" /> 19 - <path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z" /> 20 - </svg>
-21
src/lib/components/icons/utility/BookOpenIcon.svelte
··· 1 - <script> 2 - export let size = "24"; 3 - export let stroke = "currentColor"; 4 - export let fill = "none"; 5 - </script> 6 - 7 - <svg 8 - xmlns="http://www.w3.org/2000/svg" 9 - width={size} 10 - height={size} 11 - viewBox="0 0 24 24" 12 - {fill} 13 - {stroke} 14 - stroke-width="2" 15 - stroke-linecap="round" 16 - stroke-linejoin="round" 17 - class="feather feather-book-open" 18 - > 19 - <path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z" /> 20 - <path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z" /> 21 - </svg>
-20
src/lib/components/icons/utility/BooksIcon.svelte
··· 1 - <script> 2 - export let size = "14"; 3 - export let fill = "none"; 4 - export let stroke = "currentColor"; 5 - export let strokeWidth = "2"; 6 - </script> 7 - 8 - <svg 9 - width={size} 10 - height={size} 11 - viewBox="0 0 24 24" 12 - {fill} 13 - {stroke} 14 - stroke-width={strokeWidth} 15 - stroke-linecap="round" 16 - stroke-linejoin="round" 17 - > 18 - <path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z" /> 19 - <path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z" /> 20 - </svg>
-20
src/lib/components/icons/utility/ClockIcon.svelte
··· 1 - <script> 2 - export let size = "14"; 3 - export let fill = "none"; 4 - export let stroke = "currentColor"; 5 - export let strokeWidth = "2"; 6 - </script> 7 - 8 - <svg 9 - width={size} 10 - height={size} 11 - viewBox="0 0 24 24" 12 - {fill} 13 - {stroke} 14 - stroke-width={strokeWidth} 15 - stroke-linecap="round" 16 - stroke-linejoin="round" 17 - > 18 - <circle cx="12" cy="12" r="10" /> 19 - <polyline points="12,6 12,12 16,14" /> 20 - </svg>
-23
src/lib/components/icons/utility/CoffeeIcon.svelte
··· 1 - <script> 2 - export let size = "14"; 3 - export let fill = "none"; 4 - export let stroke = "currentColor"; 5 - export let strokeWidth = "2"; 6 - </script> 7 - 8 - <svg 9 - width={size} 10 - height={size} 11 - viewBox="0 0 24 24" 12 - {fill} 13 - {stroke} 14 - stroke-width={strokeWidth} 15 - stroke-linecap="round" 16 - stroke-linejoin="round" 17 - > 18 - <path d="M17 8h1a4 4 0 0 1 4 4v0a4 4 0 0 1-4 4h-1" /> 19 - <path d="M3 8h14v9a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V8Z" /> 20 - <line x1="6" y1="2" x2="6" y2="4" /> 21 - <line x1="10" y1="2" x2="10" y2="4" /> 22 - <line x1="14" y1="2" x2="14" y2="4" /> 23 - </svg>
-20
src/lib/components/icons/utility/CopyLinkIcon.svelte
··· 1 - <script> 2 - export let size = "18"; 3 - export let stroke = "currentColor"; 4 - export let fill = "none"; 5 - </script> 6 - 7 - <svg 8 - xmlns="http://www.w3.org/2000/svg" 9 - width={size} 10 - height={size} 11 - viewBox="0 0 24 24" 12 - {fill} 13 - {stroke} 14 - stroke-width="2" 15 - stroke-linecap="round" 16 - stroke-linejoin="round" 17 - > 18 - <path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" /> 19 - <path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" /> 20 - </svg>
-23
src/lib/components/icons/utility/DocumentIcon.svelte
··· 1 - <script> 2 - export let size = "14"; 3 - export let fill = "none"; 4 - export let stroke = "currentColor"; 5 - export let strokeWidth = "2"; 6 - </script> 7 - 8 - <svg 9 - width={size} 10 - height={size} 11 - viewBox="0 0 24 24" 12 - {fill} 13 - {stroke} 14 - stroke-width={strokeWidth} 15 - stroke-linecap="round" 16 - stroke-linejoin="round" 17 - > 18 - <path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" /> 19 - <polyline points="14,2 14,8 20,8" /> 20 - <line x1="16" y1="13" x2="8" y2="13" /> 21 - <line x1="16" y1="17" x2="8" y2="17" /> 22 - <line x1="10" y1="9" x2="8" y2="9" /> 23 - </svg>
-20
src/lib/components/icons/utility/EditIcon.svelte
··· 1 - <script> 2 - export let size = "20"; 3 - export let fill = "none"; 4 - export let stroke = "currentColor"; 5 - export let strokeWidth = "2"; 6 - </script> 7 - 8 - <svg 9 - width={size} 10 - height={size} 11 - viewBox="0 0 24 24" 12 - {fill} 13 - {stroke} 14 - stroke-width={strokeWidth} 15 - stroke-linecap="round" 16 - stroke-linejoin="round" 17 - > 18 - <path d="m18 2 4 4-12 12-6 2 2-6L18 2z" /> 19 - <path d="m15 5 4 4" /> 20 - </svg>
-21
src/lib/components/icons/utility/HomeIcon.svelte
··· 1 - <script> 2 - export let size = "24"; 3 - export let stroke = "currentColor"; 4 - export let fill = "none"; 5 - </script> 6 - 7 - <svg 8 - xmlns="http://www.w3.org/2000/svg" 9 - width={size} 10 - height={size} 11 - viewBox="0 0 24 24" 12 - {fill} 13 - {stroke} 14 - stroke-width="2" 15 - stroke-linecap="round" 16 - stroke-linejoin="round" 17 - class="feather feather-home" 18 - > 19 - <path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" /> 20 - <polyline points="9 22 9 12 15 12 15 22" /> 21 - </svg>
-20
src/lib/components/icons/utility/LinkExternalIcon.svelte
··· 1 - <script> 2 - export let size = "14"; 3 - export let fill = "none"; 4 - export let stroke = "currentColor"; 5 - export let strokeWidth = "2"; 6 - </script> 7 - 8 - <svg 9 - width={size} 10 - height={size} 11 - viewBox="0 0 24 24" 12 - {fill} 13 - {stroke} 14 - stroke-width={strokeWidth} 15 - stroke-linecap="round" 16 - stroke-linejoin="round" 17 - > 18 - <path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" /> 19 - <path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" /> 20 - </svg>
-9
src/lib/components/icons/utility/LinkIcon.svelte
··· 1 - <script lang="ts"> 2 - export let size: string = "14"; 3 - export let colour: string = "currentColor"; 4 - </script> 5 - 6 - <svg width={size} height={size} viewBox="0 0 24 24" fill="none" stroke={colour} stroke-width="2"> 7 - <path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/> 8 - <path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/> 9 - </svg>
-20
src/lib/components/icons/utility/MoonIcon.svelte
··· 1 - <script lang="ts"> 2 - export let stroke: string = "currentColor"; 3 - export let width: string = "20"; 4 - export let height: string = "20"; 5 - </script> 6 - 7 - <svg 8 - xmlns="http://www.w3.org/2000/svg" 9 - {width} 10 - {height} 11 - viewBox="0 0 24 24" 12 - fill="none" 13 - {stroke} 14 - stroke-width="2" 15 - stroke-linecap="round" 16 - stroke-linejoin="round" 17 - class="feather feather-moon" 18 - > 19 - <path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path> 20 - </svg>
-12
src/lib/components/icons/utility/PostIcon.svelte
··· 1 - <script lang="ts"> 2 - export let size: string = "14"; 3 - export let colour: string = "currentColor"; 4 - </script> 5 - 6 - <svg width={size} height={size} viewBox="0 0 24 24" fill="none" stroke={colour} stroke-width="2"> 7 - <path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/> 8 - <polyline points="14,2 14,8 20,8"/> 9 - <line x1="16" y1="13" x2="8" y2="13"/> 10 - <line x1="16" y1="17" x2="8" y2="17"/> 11 - <line x1="10" y1="9" x2="8" y2="9"/> 12 - </svg>
-28
src/lib/components/icons/utility/SunIcon.svelte
··· 1 - <script lang="ts"> 2 - export let stroke: string = "currentColor"; 3 - export let width: string = "20"; 4 - export let height: string = "20"; 5 - </script> 6 - 7 - <svg 8 - xmlns="http://www.w3.org/2000/svg" 9 - {width} 10 - {height} 11 - viewBox="0 0 24 24" 12 - fill="none" 13 - {stroke} 14 - stroke-width="2" 15 - stroke-linecap="round" 16 - stroke-linejoin="round" 17 - class="feather feather-sun" 18 - > 19 - <circle cx="12" cy="12" r="5"></circle> 20 - <line x1="12" y1="1" x2="12" y2="3"></line> 21 - <line x1="12" y1="21" x2="12" y2="23"></line> 22 - <line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line> 23 - <line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line> 24 - <line x1="1" y1="12" x2="3" y2="12"></line> 25 - <line x1="21" y1="12" x2="23" y2="12"></line> 26 - <line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line> 27 - <line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line> 28 - </svg>
-92
src/lib/components/layout/footer/LastCommit.svelte
··· 1 - <script lang="ts"> 2 - import { onMount, onDestroy } from 'svelte'; 3 - import { formatRelativeTime } from '$utils/formatters'; 4 - 5 - let commitDate: Date | null = null; 6 - let commitUrl: string = ''; 7 - let commitHash: string = ''; 8 - let relativeTime: string = ''; 9 - let isLoading = false; 10 - let hasLoaded = false; 11 - 12 - async function updateLastCommit(): Promise<void> { 13 - if (isLoading) return; // Prevent concurrent requests 14 - 15 - isLoading = true; 16 - try { 17 - // Add timeout to prevent hanging 18 - const controller = new AbortController(); 19 - const timeoutId = setTimeout(() => controller.abort(), 8000); // 8 second timeout 20 - 21 - const response: Response = await fetch('https://api.github.com/repos/ewanc26/website/commits/main', { 22 - signal: controller.signal, 23 - headers: { 24 - 'Accept': 'application/vnd.github.v3+json', 25 - } 26 - }); 27 - 28 - clearTimeout(timeoutId); 29 - 30 - if (!response.ok) { 31 - throw new Error(`GitHub API responded with ${response.status}`); 32 - } 33 - 34 - const data: { commit: { author: { date: string } }, html_url: string, sha: string } = await response.json(); 35 - 36 - commitDate = new Date(data.commit.author.date); 37 - commitUrl = data.html_url; 38 - commitHash = data.sha.substring(0, 7); 39 - relativeTime = formatRelativeTime(commitDate); 40 - hasLoaded = true; 41 - 42 - } catch (error) { 43 - console.error('Error fetching commit info:', error); 44 - // Don't show error to user, just silently fail 45 - if (error instanceof Error && error.name === 'AbortError') { 46 - console.warn('GitHub API request timed out'); 47 - } 48 - } finally { 49 - isLoading = false; 50 - } 51 - } 52 - 53 - // Update relative time without fetching new data 54 - function updateRelativeTime(): void { 55 - if (commitDate) { 56 - relativeTime = formatRelativeTime(commitDate); 57 - } 58 - } 59 - 60 - let fetchInterval: number; 61 - let timeUpdateInterval: number; 62 - 63 - onMount(() => { 64 - // Delay initial fetch to not block page load 65 - setTimeout(() => { 66 - updateLastCommit(); 67 - }, 8000); // Wait 8 seconds after page load 68 - 69 - // Fetch updates every 10 minutes (less frequent than before) 70 - fetchInterval = window.setInterval(updateLastCommit, 600000) as number; // 10 minutes 71 - 72 - // Update relative time display every 30 seconds (less frequent) 73 - timeUpdateInterval = window.setInterval(updateRelativeTime, 30000) as number; 74 - }); 75 - 76 - onDestroy(() => { 77 - if (fetchInterval) { 78 - clearInterval(fetchInterval); 79 - } 80 - if (timeUpdateInterval) { 81 - clearInterval(timeUpdateInterval); 82 - } 83 - }); 84 - </script> 85 - 86 - {#if hasLoaded && commitDate} 87 - <span title="{commitDate.toLocaleString()}"> 88 - last commit: <a href="{commitUrl}" target="_blank" class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]">{commitHash}</a> ({relativeTime}) 89 - </span> 90 - {:else if isLoading} 91 - <span class="opacity-50">loading commit info...</span> 92 - {/if}
-135
src/lib/components/layout/footer/Main.svelte
··· 1 - <script lang="ts"> 2 - import { onMount } from "svelte"; 3 - import { browser } from "$app/environment"; 4 - import { env } from "$env/dynamic/public"; 5 - import LastCommit from "./LastCommit.svelte"; 6 - import type { SiteInfo } from "$components/shared"; 7 - 8 - export let profile: any; 9 - export let siteInfo: SiteInfo | null = null; 10 - export const posts: any = undefined; 11 - 12 - let copyrightText = ""; 13 - 14 - // Calculate copyright text (works on both server and client) 15 - function calculateCopyrightText(): string { 16 - const currentYear = new Date().getFullYear(); 17 - 18 - // Get birth year from siteInfo with fallbacks and validation 19 - let birthYear: number | null = null; 20 - 21 - if (siteInfo?.additionalInfo?.websiteBirthYear) { 22 - const year = siteInfo.additionalInfo.websiteBirthYear; 23 - // Validate year is reasonable (between 1990 and current year) 24 - if (year >= 1990 && year <= currentYear) { 25 - birthYear = year; 26 - } 27 - } 28 - 29 - // Fallback to current year if no valid birth year 30 - if (!birthYear) { 31 - birthYear = currentYear; 32 - } 33 - 34 - // Format copyright text 35 - if (birthYear === currentYear) { 36 - return currentYear.toString(); 37 - } else { 38 - return `${birthYear} - ${currentYear}`; 39 - } 40 - } 41 - 42 - // Update copyright text and DOM element (browser only) 43 - function updateCopyrightText() { 44 - copyrightText = calculateCopyrightText(); 45 - 46 - // Only update DOM if we're in the browser 47 - if (browser) { 48 - const copyrightYearElement = document.getElementById("copyright-year"); 49 - if (copyrightYearElement) { 50 - copyrightYearElement.textContent = copyrightText; 51 - } 52 - } 53 - } 54 - 55 - // Initialize copyright text immediately (for SSR) 56 - copyrightText = calculateCopyrightText(); 57 - 58 - onMount(() => { 59 - updateCopyrightText(); 60 - }); 61 - 62 - // Reactive statement to update when siteInfo changes 63 - $: if (siteInfo !== undefined) { 64 - updateCopyrightText(); 65 - } 66 - </script> 67 - 68 - <footer class="text-center py-4 text-primary text-sm opacity-60"> 69 - <div class="flex flex-col justify-center items-center gap-2"> 70 - <div> 71 - <span>&copy; <span id="copyright-year">{copyrightText}</span></span> 72 - 73 - <span class="mx-1"></span> 74 - 75 - {#if profile?.handle} 76 - <a 77 - href="https://bsky.app/profile/{profile.did}" 78 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]" 79 - > 80 - @{profile.handle} 81 - </a> 82 - {:else} 83 - <span>{profile?.displayName || profile?.did}</span> 84 - {/if} 85 - 86 - {#if env.PUBLIC_ACTIVITYPUB_USER && env.PUBLIC_ACTIVITYPUB_USER.length > 0 && profile?.handle} 87 - <span class="mx-1"></span> 88 - {/if} 89 - 90 - {#if env.PUBLIC_ACTIVITYPUB_USER && env.PUBLIC_ACTIVITYPUB_USER.length > 0} 91 - <a 92 - rel="me" 93 - href={`https://${env.PUBLIC_ACTIVITYPUB_USER.split("@")[2]}/@${env.PUBLIC_ACTIVITYPUB_USER.split("@")[1]}`} 94 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]" 95 - > 96 - @{env.PUBLIC_ACTIVITYPUB_USER.split( 97 - "@", 98 - )[1]}@{env.PUBLIC_ACTIVITYPUB_USER.split("@")[2]} 99 - </a> 100 - {/if} 101 - </div> 102 - 103 - <div> 104 - <span 105 - >powered by <a 106 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]" 107 - href="https://atproto.com/guides/glossary#at-protocol">atproto</a 108 - ></span 109 - > 110 - 111 - <span class="mx-1"></span> 112 - <a 113 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]" 114 - href="/site/meta" 115 - > 116 - about site & privacy 117 - </a> 118 - </div> 119 - 120 - <div> 121 - <span class="mx-1"></span> 122 - <LastCommit /> 123 - 124 - <span class="mx-1"></span> 125 - <a 126 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]" 127 - href="https://github.com/ewanc26/website" 128 - target="_blank" 129 - rel="noopener noreferrer" 130 - > 131 - code 132 - </a> 133 - </div> 134 - </div> 135 - </footer>
-12
src/lib/components/layout/header/Main.svelte
··· 1 - <script lang="ts"> 2 - import Navigation from "./Navigation.svelte"; 3 - import ThemeToggle from "./ThemeToggle.svelte"; 4 - 5 - export let isHomePage: boolean; 6 - export let isBlogIndex: boolean; 7 - </script> 8 - 9 - <header class="flex items-center justify-between box-border my-6"> 10 - <Navigation {isHomePage} {isBlogIndex} /> 11 - <ThemeToggle /> 12 - </header>
-57
src/lib/components/layout/header/Navigation.svelte
··· 1 - <script lang="ts"> 2 - import { getStores } from "$app/stores"; 3 - const { page } = getStores(); 4 - 5 - import { HomeIcon, RssIcon, BookOpenIcon, AtomIcon } from "$components/icons"; 6 - 7 - export const isHomePage: boolean = false; 8 - export let isBlogIndex: boolean = false; 9 - 10 - // Reactive statement to get the origin without http:// or https:// 11 - $: cleanOrigin = $page.url.origin.replace(/^https?:\/\//, ''); 12 - </script> 13 - 14 - <nav class="flex items-center box-border my-6"> 15 - <div class="flex items-center gap-4"> 16 - {#if $page.url.pathname !== "/"} 17 - <a 18 - href="/" 19 - class="font-medium text-[large] hover:text-[var(--link-hover-color)]" 20 - aria-label="Home" 21 - > 22 - <HomeIcon /> 23 - </a> 24 - {/if} 25 - {#if isBlogIndex} 26 - <!-- RSS Feed Link --> 27 - <a 28 - href="{$page.url.origin}/blog/rss" 29 - class="font-medium text-[large] hover:text-[var(--link-hover-color)]" 30 - aria-label="RSS Feed" 31 - download="{cleanOrigin}_Blog.rss" 32 - > 33 - <RssIcon /> 34 - </a> 35 - <!-- Atom Feed Link --> 36 - <a 37 - href="{$page.url.origin}/blog/atom" 38 - class="font-medium text-[large] hover:text-[var(--link-hover-color)]" 39 - aria-label="Atom Feed" 40 - download="{cleanOrigin}_Blog.atom" 41 - > 42 - <AtomIcon /> 43 - </a> 44 - {/if} 45 - {#if $page.url.pathname.startsWith("/blog/") && $page.url.pathname !== "/blog/"} 46 - <a 47 - href="/blog" 48 - class="flex items-center gap-2 text-sm text-[var(--text-color)] hover:text-[var(--link-hover-color)]" 49 - aria-label="Back to blog" 50 - > 51 - <BookOpenIcon /> 52 - </a> 53 - {/if} 54 - </div> 55 - <div class="ml-auto"></div> 56 - 57 - </nav>
-152
src/lib/components/layout/header/ThemeToggle.svelte
··· 1 - <script lang="ts"> 2 - import { onMount } from "svelte"; 3 - import { SunIcon, MoonIcon, EditIcon } from "$components/icons"; 4 - import { 5 - THEMES, 6 - applyTheme, 7 - getThemePreferences, 8 - saveThemePreferences, 9 - updateThemeColorMeta, 10 - dispatchThemeChangeEvent, 11 - setupSystemThemeListener 12 - } from "$lib/themeLoader"; 13 - 14 - let isDarkMode: boolean = true; 15 - let currentTheme: string = "default"; 16 - let isDropdownOpen: boolean = false; 17 - 18 - onMount(() => { 19 - // Retrieve current theme preferences (already applied by theme-loader) 20 - const preferences = getThemePreferences(); 21 - isDarkMode = preferences.isDarkMode; 22 - currentTheme = preferences.themeId; 23 - 24 - // Update meta tag and dispatch a theme change event 25 - updateThemeColorMeta(); 26 - dispatchThemeChangeEvent(isDarkMode, currentTheme); 27 - 28 - // Set up system theme listener 29 - setupSystemThemeListener(); 30 - 31 - // Close dropdown when clicking outside the theme controls 32 - document.addEventListener("click", (e: MouseEvent) => { 33 - const themeControls = document.querySelector(".theme-controls"); 34 - if ( 35 - isDropdownOpen && 36 - themeControls && 37 - !e.composedPath().includes(themeControls) 38 - ) { 39 - isDropdownOpen = false; 40 - } 41 - }); 42 - }); 43 - 44 - function toggleTheme(): void { 45 - isDarkMode = !isDarkMode; 46 - applyTheme(isDarkMode, currentTheme); 47 - saveThemePreferences(isDarkMode, currentTheme); 48 - updateThemeColorMeta(); 49 - dispatchThemeChangeEvent(isDarkMode, currentTheme); 50 - } 51 - 52 - // Change the colour theme 53 - function changeColorTheme(themeId: string): void { 54 - currentTheme = themeId; 55 - applyTheme(isDarkMode, currentTheme); 56 - saveThemePreferences(isDarkMode, currentTheme); 57 - updateThemeColorMeta(); 58 - dispatchThemeChangeEvent(isDarkMode, currentTheme); 59 - isDropdownOpen = false; 60 - } 61 - 62 - // Toggle the dropdown for theme selection 63 - function toggleDropdown(e: MouseEvent): void { 64 - e.stopPropagation(); 65 - isDropdownOpen = !isDropdownOpen; 66 - } 67 - </script> 68 - 69 - <div class="theme-controls relative"> 70 - <div class="flex items-center gap-2"> 71 - <button 72 - onclick={toggleDropdown} 73 - class="icon-button p-2 rounded-full transition-all duration-300 hover:scale-110" 74 - style="background-color: var(--card-bg);" 75 - aria-label="Change theme" 76 - aria-expanded={isDropdownOpen} 77 - > 78 - <EditIcon size="20" stroke="var(--text-color)" /> 79 - </button> 80 - 81 - <button 82 - onclick={toggleTheme} 83 - class="icon-button p-2 rounded-full transition-all duration-300 hover:scale-110" 84 - style="background-color: var(--card-bg);" 85 - aria-label={isDarkMode ? "Switch to light mode" : "Switch to dark mode"} 86 - > 87 - {#if isDarkMode} 88 - <!-- Sun icon for switching to light mode --> 89 - <SunIcon stroke="var(--text-color)" /> 90 - {:else} 91 - <!-- Moon icon for switching to dark mode --> 92 - <MoonIcon stroke="var(--text-color)" /> 93 - {/if} 94 - </button> 95 - </div> 96 - 97 - {#if isDropdownOpen} 98 - <div 99 - class="theme-dropdown absolute right-0 mt-2 py-2 w-48 rounded shadow-lg z-10" 100 - style="background-color: var(--card-bg); border: 1px solid var(--button-bg);" 101 - > 102 - <div class="max-h-80 overflow-y-auto"> 103 - {#each THEMES as theme} 104 - <button 105 - class="theme-option w-full text-left px-4 py-2 transition-colors duration-200" 106 - class:active={currentTheme === theme.id} 107 - onclick={() => changeColorTheme(theme.id)} 108 - > 109 - {theme.name} 110 - </button> 111 - {/each} 112 - </div> 113 - </div> 114 - {/if} 115 - </div> 116 - 117 - <style> 118 - /* Common icon styling */ 119 - .icon-button { 120 - color: var(--text-color); 121 - } 122 - 123 - .icon-button:hover { 124 - background-color: var(--button-hover-bg) !important; 125 - } 126 - 127 - .theme-option { 128 - color: var(--text-color); 129 - } 130 - 131 - .theme-option:hover { 132 - background-color: var(--button-bg); 133 - } 134 - 135 - .theme-option.active { 136 - background-color: var(--button-hover-bg); 137 - font-weight: 500; 138 - } 139 - 140 - .theme-dropdown { 141 - max-height: 80vh; 142 - z-index: 100; 143 - } 144 - 145 - /* Responsive adjustments */ 146 - @media (max-width: 640px) { 147 - .theme-dropdown { 148 - width: 12rem; 149 - right: 0; 150 - } 151 - } 152 - </style>
-4
src/lib/components/layout/index.ts
··· 1 - export { default as Navigation } from "./header/Navigation.svelte"; 2 - export { default as Footer } from "./footer/Main.svelte"; 3 - export { default as ThemeToggle } from "./header/ThemeToggle.svelte"; 4 - export { default as HeaderMain } from "./header/Main.svelte";
-130
src/lib/components/layout/main/DynamicLinks.svelte
··· 1 - <script lang="ts"> 2 - import { fade } from "svelte/transition"; 3 - import { onMount } from "svelte"; 4 - import { ArchiveCard } from "$components/archive"; 5 - import { getCache, setCache } from "$utils/cache"; 6 - import type { LinkBoard } from "$components/shared"; 7 - 8 - // Export the data prop that will receive the fetched links 9 - export let data: LinkBoard | undefined; 10 - 11 - // Add loading state tracking 12 - let isVisible = false; 13 - let cachedData: LinkBoard | undefined; 14 - let hasCachedData = false; 15 - 16 - // Cache key for dynamic links 17 - const CACHE_KEY = 'dynamic_links_data'; 18 - const CACHE_TTL = 3600000; // 1 hour in milliseconds 19 - 20 - onMount(() => { 21 - // Try to load from cache first 22 - const cached = getCache<LinkBoard>(CACHE_KEY); 23 - if (cached && cached.cards && cached.cards.length > 0) { 24 - cachedData = cached; 25 - hasCachedData = true; 26 - isVisible = true; // Show cached data immediately 27 - } else { 28 - // No valid cached data, show component (might show placeholder) 29 - isVisible = true; 30 - } 31 - }); 32 - 33 - // Watch for data changes and update cache 34 - $: if (data && data.cards && data.cards.length > 0) { 35 - // Cache the new data 36 - setCache(CACHE_KEY, data, CACHE_TTL); 37 - cachedData = data; 38 - hasCachedData = true; 39 - 40 - if (!isVisible) { 41 - // Show content with a small delay for better perceived performance only if not already visible 42 - setTimeout(() => { 43 - isVisible = true; 44 - }, 100); 45 - } 46 - } else if (!hasCachedData && !isVisible) { 47 - // Only show placeholder if we don't have cached data and aren't visible yet 48 - isVisible = true; 49 - } 50 - 51 - // Use cached data if available, otherwise use prop data 52 - $: displayData = hasCachedData ? cachedData : data; 53 - </script> 54 - 55 - {#if isVisible} 56 - <div transition:fade={{ duration: 300 }}> 57 - {#if displayData && displayData.cards.length > 0} 58 - <section class="dynamic-links"> 59 - <div class="section-header" transition:fade={{ delay: 100, duration: 300 }}> 60 - <h2 class="section-title">Links</h2> 61 - </div> 62 - 63 - <div class="links-container" transition:fade={{ delay: 300, duration: 400 }}> 64 - <div 65 - class="grid grid-cols-[repeat(auto-fill,minmax(260px,1fr)_)] gap-x-6 gap-y-6 my-6" 66 - > 67 - {#each displayData.cards as link} 68 - <ArchiveCard type="link" url={link.url} title={link.text} value={link.emoji} /> 69 - {/each} 70 - </div> 71 - </div> 72 - </section> 73 - {:else if displayData !== undefined} 74 - <!-- Show placeholder only if data loading completed but empty --> 75 - <div class="mb-12 ml-4 text-center text-sm italic opacity-75"> 76 - create a <code>blue.linkat.board</code> record at <a href="https://linkat.blue/" class="text-link hover:text-link-hover">https://linkat.blue/</a> 77 - </div> 78 - {/if} 79 - </div> 80 - {/if} 81 - 82 - <style> 83 - .dynamic-links { 84 - margin-bottom: 3rem; 85 - } 86 - 87 - .section-header { 88 - display: flex; 89 - align-items: center; 90 - justify-content: flex-end; /* Right-aligned instead of space-between */ 91 - margin-bottom: 1.5rem; 92 - padding: 0; 93 - } 94 - 95 - .section-title { 96 - margin: 0; 97 - font-size: 1.75rem; 98 - font-weight: 700; 99 - color: var(--text-color); 100 - position: relative; 101 - } 102 - 103 - .section-title::after { 104 - content: ''; 105 - position: absolute; 106 - bottom: -4px; 107 - right: 0; /* Align underline to the right */ 108 - width: 3rem; 109 - height: 3px; 110 - background: var(--link-color); 111 - border-radius: 2px; 112 - } 113 - 114 - .links-container { 115 - display: block; 116 - } 117 - 118 - /* Responsive adjustments */ 119 - @media (max-width: 640px) { 120 - .section-header { 121 - flex-direction: column; 122 - align-items: flex-end; /* Keep right alignment on mobile */ 123 - gap: 1rem; 124 - } 125 - 126 - .section-title { 127 - font-size: 1.5rem; 128 - } 129 - } 130 - </style>
-144
src/lib/components/layout/main/LatestBlogPost.svelte
··· 1 - <script lang="ts"> 2 - import { slide, fade } from "svelte/transition"; 3 - import { quintOut } from "svelte/easing"; 4 - import { ArchiveCard } from "$components/archive"; 5 - import type { Post } from "$components/shared"; 6 - 7 - export let posts: Post[] = []; 8 - export let localeLoaded: boolean = false; 9 - 10 - let isVisible = false; 11 - 12 - // Get the first three latest posts with proper validation 13 - $: latestPosts = posts 14 - ? posts 15 - .filter(post => 16 - post.title && 17 - post.createdAt instanceof Date && 18 - !isNaN(post.createdAt.getTime()) && 19 - post.content 20 - ) 21 - .slice(0, 3) 22 - : []; 23 - 24 - $: isValidPosts = latestPosts.length > 0; 25 - 26 - // Control visibility with a small delay for smoother loading 27 - $: if (isValidPosts && localeLoaded) { 28 - setTimeout(() => { 29 - isVisible = true; 30 - }, 200); 31 - } 32 - </script> 33 - 34 - {#if isValidPosts && isVisible} 35 - <section 36 - class="latest-blog-post" 37 - in:slide={{ delay: 200, duration: 400, easing: quintOut }} 38 - > 39 - <div class="section-header" in:fade={{ delay: 100, duration: 300 }}> 40 - <h2 class="section-title">Latest Blog Posts</h2> 41 - </div> 42 - 43 - <div class="latest-post-container grid grid-cols-[repeat(auto-fill,minmax(260px,1fr)_)] gap-x-6 gap-y-6 my-6"> 44 - {#each latestPosts as post, index} 45 - <!-- Outer div handles slide --> 46 - <div in:slide={{ delay: 200 + index * 150, duration: 400, easing: quintOut }}> 47 - <!-- Inner div handles fade --> 48 - <div in:fade={{ delay: 200 + index * 150, duration: 400 }}> 49 - <ArchiveCard 50 - type="post" 51 - post={post} 52 - monthIndex={0} 53 - postIndex={index} 54 - postNumber={post.postNumber} 55 - {localeLoaded} 56 - /> 57 - </div> 58 - </div> 59 - {/each} 60 - </div> 61 - </section> 62 - {:else if posts.length === 0 && localeLoaded} 63 - <!-- Loading state while posts are being fetched --> 64 - <section class="latest-blog-post"> 65 - <div class="section-header"> 66 - <h2 class="section-title">Latest Blog Posts</h2> 67 - </div> 68 - <div class="latest-post-container grid grid-cols-[repeat(auto-fill,minmax(260px,1fr)_)] gap-x-6 gap-y-6 my-6"> 69 - {#each Array(3) as _, index} 70 - <div class="loading-placeholder"> 71 - <div class="animate-pulse"> 72 - <div class="h-4 bg-card rounded w-3/4 mb-2"></div> 73 - <div class="h-3 bg-card rounded w-1/2"></div> 74 - </div> 75 - </div> 76 - {/each} 77 - </div> 78 - </section> 79 - {/if} 80 - 81 - <style> 82 - .latest-blog-post { 83 - margin-bottom: 3rem; 84 - } 85 - 86 - .section-header { 87 - display: flex; 88 - align-items: center; 89 - justify-content: space-between; 90 - margin-bottom: 1.5rem; 91 - padding: 0; 92 - } 93 - 94 - .section-title { 95 - margin: 0; 96 - font-size: 1.75rem; 97 - font-weight: 700; 98 - color: var(--text-color); 99 - position: relative; 100 - } 101 - 102 - .section-title::after { 103 - content: ''; 104 - position: absolute; 105 - bottom: -4px; 106 - left: 0; 107 - width: 3rem; 108 - height: 3px; 109 - background: var(--link-color); 110 - border-radius: 2px; 111 - } 112 - 113 - .latest-post-container { 114 - max-width: 100%; 115 - } 116 - 117 - .loading-placeholder { 118 - padding: 1rem; 119 - border: 1px solid var(--button-bg); 120 - border-radius: 0.5rem; 121 - background-color: var(--card-bg); 122 - } 123 - 124 - @media (max-width: 640px) { 125 - .section-header { 126 - flex-direction: column; 127 - align-items: flex-start; 128 - gap: 1rem; 129 - } 130 - 131 - .section-title { 132 - font-size: 1.5rem; 133 - } 134 - } 135 - 136 - @keyframes pulse { 137 - 0%, 100% { opacity: 1; } 138 - 50% { opacity: 0.5; } 139 - } 140 - 141 - .animate-pulse { 142 - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; 143 - } 144 - </style>
-120
src/lib/components/layout/main/ScrollToTop.svelte
··· 1 - <script lang="ts"> 2 - import { onMount } from "svelte"; 3 - import { fly } from "svelte/transition"; 4 - 5 - let isVisible = false; 6 - let scrollY = 0; 7 - 8 - // Show button after scrolling down 300px 9 - $: isVisible = scrollY > 300; 10 - 11 - function scrollToTop() { 12 - window.scrollTo({ 13 - top: 0, 14 - behavior: 'smooth' 15 - }); 16 - } 17 - 18 - function handleKeydown(event: KeyboardEvent) { 19 - if (event.key === 'Enter' || event.key === ' ') { 20 - event.preventDefault(); 21 - scrollToTop(); 22 - } 23 - } 24 - 25 - onMount(() => { 26 - const updateScrollY = () => scrollY = window.scrollY; 27 - window.addEventListener('scroll', updateScrollY, { passive: true }); 28 - 29 - return () => { 30 - window.removeEventListener('scroll', updateScrollY); 31 - }; 32 - }); 33 - </script> 34 - 35 - <svelte:window bind:scrollY /> 36 - 37 - {#if isVisible} 38 - <button 39 - class="scroll-to-top" 40 - on:click={scrollToTop} 41 - on:keydown={handleKeydown} 42 - aria-label="Scroll to top" 43 - title="Scroll to top" 44 - transition:fly={{ y: 10, duration: 300, opacity: 0 }} 45 - > 46 - <!-- Chevron Up SVG icon --> 47 - <svg 48 - width="20" 49 - height="20" 50 - viewBox="0 0 24 24" 51 - fill="none" 52 - stroke="currentColor" 53 - stroke-width="2" 54 - stroke-linecap="round" 55 - stroke-linejoin="round" 56 - > 57 - <path d="m18 15-6-6-6 6"/> 58 - </svg> 59 - </button> 60 - {/if} 61 - 62 - <style> 63 - .scroll-to-top { 64 - position: fixed; 65 - bottom: 2rem; 66 - left: 2rem; 67 - z-index: 50; 68 - width: 3rem; 69 - height: 3rem; 70 - border: none; 71 - border-radius: 50%; 72 - background-color: var(--card-bg); 73 - color: var(--text-color); 74 - box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 75 - cursor: pointer; 76 - display: flex; 77 - align-items: center; 78 - justify-content: center; 79 - transition: all 0.3s ease; 80 - backdrop-filter: blur(8px); 81 - border: 1px solid var(--button-bg); 82 - } 83 - 84 - .scroll-to-top:hover { 85 - background-color: var(--button-hover-bg); 86 - transform: translateY(-2px); 87 - box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); 88 - } 89 - 90 - .scroll-to-top:active { 91 - transform: translateY(0); 92 - box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); 93 - } 94 - 95 - .scroll-to-top:focus { 96 - outline: 2px solid var(--link-color); 97 - outline-offset: 2px; 98 - } 99 - 100 - /* Mobile adjustments */ 101 - @media (max-width: 640px) { 102 - .scroll-to-top { 103 - bottom: 1.5rem; 104 - left: 1.5rem; 105 - width: 2.75rem; 106 - height: 2.75rem; 107 - } 108 - } 109 - 110 - /* Reduced motion support */ 111 - @media (prefers-reduced-motion: reduce) { 112 - .scroll-to-top { 113 - transition: none; 114 - } 115 - 116 - .scroll-to-top:hover { 117 - transform: none; 118 - } 119 - } 120 - </style>
-3
src/lib/components/layout/main/index.ts
··· 1 - export { default as DynamicLinks } from "./DynamicLinks.svelte"; 2 - export { default as LatestBlogPost } from "./LatestBlogPost.svelte"; 3 - export { default as ScrollToTop } from "./ScrollToTop.svelte";
-163
src/lib/components/post/PostContent.svelte
··· 1 - <script lang="ts"> 2 - import type { Post } from "$components/shared"; 3 - import type { TOCNode } from "$lib/components/shared"; 4 - import { onMount } from "svelte"; 5 - import PostTOC from "./ToCUI.svelte"; 6 - 7 - export let post: Post; 8 - 9 - let tocNodes: TOCNode[] = []; 10 - let activeId: string | null = null; 11 - 12 - $: hasValidContent = 13 - post && 14 - post.content && 15 - typeof post.content === "string" && 16 - post.content.trim().length > 0; 17 - 18 - const generateTOC = () => { 19 - if (!hasValidContent) return []; 20 - const container = document.createElement("div"); 21 - container.innerHTML = post.content; 22 - const headings = container.querySelectorAll("h1, h2, h3, h4, h5, h6"); 23 - const tocNodes = []; 24 - 25 - // Process regular headings 26 - Array.from(headings).forEach((h) => { 27 - // Skip screen reader only headings (footnotes heading) 28 - if (h.classList.contains('sr-only')) { 29 - return; 30 - } 31 - 32 - const textContent = h.textContent?.trim() ?? ""; 33 - 34 - // Skip empty headings 35 - if (textContent.length === 0) { 36 - return; 37 - } 38 - 39 - tocNodes.push({ 40 - id: h.id, 41 - name: textContent, 42 - level: parseInt(h.tagName[1]), 43 - children: [], 44 - }); 45 - }); 46 - 47 - // Check for footnotes section and add it if it exists 48 - const footnotesSection = container.querySelector('section[data-footnotes]'); 49 - if (footnotesSection) { 50 - // Use a special ID for footnotes that we can handle differently 51 - tocNodes.push({ 52 - id: 'footnotes-section', 53 - name: 'Footnotes', 54 - level: 2, 55 - children: [], 56 - }); 57 - } 58 - 59 - return tocNodes; 60 - }; 61 - 62 - const resetTOC = () => { 63 - tocNodes = generateTOC(); 64 - activeId = null; // reset highlighted heading 65 - }; 66 - 67 - // Regenerate TOC whenever post changes 68 - $: if (post) resetTOC(); 69 - 70 - const handleScroll = () => { 71 - for (const node of tocNodes) { 72 - let el; 73 - 74 - // Special handling for footnotes - look for the section instead of hidden heading 75 - if (node.id === 'footnotes-section') { 76 - el = document.querySelector('section[data-footnotes]'); 77 - } else { 78 - el = document.getElementById(node.id); 79 - } 80 - 81 - if (el) { 82 - const rect = el.getBoundingClientRect(); 83 - if (rect.top >= 0 && rect.top < window.innerHeight / 3) { 84 - activeId = node.id; 85 - break; 86 - } 87 - } 88 - } 89 - }; 90 - 91 - onMount(() => { 92 - window.addEventListener("scroll", handleScroll, { passive: true }); 93 - handleScroll(); 94 - return () => window.removeEventListener("scroll", handleScroll); 95 - }); 96 - </script> 97 - 98 - {#if hasValidContent} 99 - <hr class="my-6 border-[var(--button-bg)]" /> 100 - 101 - <div class="w-full"> 102 - {#if tocNodes.length > 0} 103 - <!-- Layout with TOC: Grid with content and sidebar --> 104 - <div class="grid grid-cols-1 lg:grid-cols-[1fr_250px] gap-8 min-w-0"> 105 - <!-- Post Content --> 106 - <article class="prose dark:prose-invert w-full max-w-none min-w-0"> 107 - {@html post.content} 108 - </article> 109 - 110 - <!-- TOC (desktop + mobile handled in PostTOC) --> 111 - <PostTOC {tocNodes} {activeId} /> 112 - </div> 113 - {:else} 114 - <!-- Layout without TOC: centered --> 115 - <div class="mx-auto"> 116 - <article class="prose dark:prose-invert w-full"> 117 - {@html post.content} 118 - </article> 119 - </div> 120 - {/if} 121 - </div> 122 - 123 - <hr class="my-6 border-[var(--button-bg)]" /> 124 - {:else} 125 - <!-- Loading state --> 126 - <hr class="my-6 border-[var(--button-bg)]" /> 127 - <div class="mx-auto"> 128 - <article class="prose dark:prose-invert w-full text-center"> 129 - <div class="flex justify-center items-center min-h-[200px]"> 130 - <div class="text-center"> 131 - <div class="animate-pulse space-y-4"> 132 - <div class="h-4 bg-card rounded w-3/4 mx-auto"></div> 133 - <div class="h-4 bg-card rounded w-1/2 mx-auto"></div> 134 - <div class="h-4 bg-card rounded w-5/6 mx-auto"></div> 135 - <div class="h-4 bg-card rounded w-2/3 mx-auto"></div> 136 - </div> 137 - <p class="mt-6 text-sm opacity-60">Loading post content...</p> 138 - </div> 139 - </div> 140 - </article> 141 - </div> 142 - <hr class="my-6 border-[var(--button-bg)]" /> 143 - {/if} 144 - 145 - <style> 146 - @keyframes pulse { 147 - 0%, 148 - 100% { 149 - opacity: 1; 150 - } 151 - 50% { 152 - opacity: 0.3; 153 - } 154 - } 155 - .animate-pulse { 156 - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; 157 - } 158 - .animate-pulse .h-4 { 159 - height: 1rem; 160 - background-color: var(--button-bg); 161 - opacity: 0.6; 162 - } 163 - </style>
-81
src/lib/components/post/PostHead.svelte
··· 1 - <script lang="ts"> 2 - import { getStores } from "$app/stores"; 3 - const { page } = getStores(); 4 - import type { Post } from "$components/shared"; 5 - import { env } from "$env/dynamic/public"; 6 - 7 - export let post: Post | undefined; 8 - 9 - // Generate a clean excerpt from HTML content for meta tags 10 - $: metaExcerpt = post?.content 11 - ? (() => { 12 - const clean = post.content 13 - .replace(/<[^>]+>/g, '') // Remove HTML tags 14 - .replace(/\s+/g, ' ') // Collapse whitespace 15 - .trim(); 16 - 17 - if (clean.length <= 160) return clean; 18 - 19 - // Cut at nearest word boundary before 160 chars 20 - const truncated = clean.slice(0, 160); 21 - const lastSpace = truncated.lastIndexOf(' '); 22 - return truncated.slice(0, lastSpace) + '…'; 23 - })() 24 - : "Read this blog post on Ewan's Corner."; 25 - </script> 26 - 27 - <svelte:head> 28 - {#if post !== undefined} 29 - <title>{post?.title} - Blog - Ewan's Corner</title> 30 - <meta name="description" content={metaExcerpt} /> 31 - <meta 32 - name="keywords" 33 - content="Ewan, personal blog, coding, technology, programming, tech blog, Blog - Ewan's Corner" 34 - /> 35 - 36 - <!-- Open Graph / Facebook --> 37 - <meta property="og:type" content="article" /> 38 - <meta property="og:url" content={$page.url.origin + $page.url.pathname} /> 39 - <meta 40 - property="og:title" 41 - content={`${post.title} - Blog - Ewan's Corner`} 42 - /> 43 - <meta property="og:description" content={metaExcerpt} /> 44 - <meta property="og:site_name" content="Blog - Ewan's Corner" /> 45 - <meta 46 - property="og:image" 47 - content={`${$page.url.origin}/og/blog.png`} 48 - /> 49 - <meta property="og:image:width" content="1200" /> 50 - <meta property="og:image:height" content="630" /> 51 - <meta 52 - property="article:published_time" 53 - content={post.createdAt.toISOString()} 54 - /> 55 - <meta property="article:word_count" content={post.wordCount.toString()} /> 56 - 57 - <!-- Fediverse --> 58 - {#if env.PUBLIC_ACTIVITYPUB_USER && env.PUBLIC_ACTIVITYPUB_USER.length > 0} 59 - <meta name="fediverse:creator" content={env.PUBLIC_ACTIVITYPUB_USER} /> 60 - {/if} 61 - 62 - <!-- Twitter --> 63 - <meta name="twitter:card" content="summary_large_image" /> 64 - <meta name="twitter:url" content={$page.url.origin + $page.url.pathname} /> 65 - <meta 66 - name="twitter:title" 67 - content={`${post.title} - Blog - Ewan's Corner`} 68 - /> 69 - <meta name="twitter:description" content={metaExcerpt} /> 70 - <meta 71 - name="twitter:image" 72 - content={`${$page.url.origin}/og/blog.png`} 73 - /> 74 - {:else} 75 - <title>Post Not Found - Blog - Ewan's Corner</title> 76 - <meta 77 - name="description" 78 - content="The requested blog post could not be found." 79 - /> 80 - {/if} 81 - </svelte:head>
-148
src/lib/components/post/PostHeader.svelte
··· 1 - <script lang="ts"> 2 - import { fade } from "svelte/transition"; 3 - import { formatRelativeTime, formatDate } from "$utils/formatters"; 4 - import { ShareIcons } from "$components/icons"; 5 - import { formatNumber } from "$utils/formatters"; 6 - import type { Post } from "$components/shared"; 7 - import { onMount } from 'svelte'; 8 - 9 - let { post, profile, rkey, localeLoaded } = $props<{ 10 - post: Post; 11 - profile: any; 12 - rkey: string; 13 - localeLoaded: boolean; 14 - }>(); 15 - 16 - // Determine singular or plural for word count 17 - let wordLabel = post.wordCount === 1 ? "word" : "words"; 18 - 19 - // Enhanced loading states with better fallbacks 20 - let displayDate = $derived( 21 - localeLoaded && post.createdAt ? 22 - formatRelativeTime(post.createdAt) : 23 - 'loading...' 24 - ); 25 - 26 - let absoluteDisplayDate = $derived( 27 - localeLoaded && post.createdAt ? 28 - formatDate(new Date(post.createdAt)) : 29 - 'loading date...' 30 - ); 31 - 32 - let fediverseCreator = $state(''); 33 - 34 - // Profile data with loading state 35 - let profileDisplayName = $derived(profile?.displayName || 'Loading author...'); 36 - let profileHandle = $derived(profile?.handle || 'loading'); 37 - let profileDid = $derived(profile?.did || ''); 38 - 39 - onMount(() => { 40 - const metaTag = document.querySelector('meta[name="fediverse:creator"]'); 41 - if (metaTag) { 42 - fediverseCreator = metaTag.getAttribute('content') || ''; 43 - } else if (profileDid) { 44 - fediverseCreator = `https://bsky.app/profile/${profileHandle}`; 45 - } 46 - }); 47 - 48 - // Validate post data to prevent errors 49 - let isValidPost = $derived( 50 - post && 51 - post.title && 52 - post.createdAt instanceof Date && 53 - !isNaN(post.createdAt.getTime()) && 54 - typeof post.wordCount === 'number' 55 - ); 56 - </script> 57 - 58 - {#if isValidPost} 59 - <!-- Title with more breathing room --> 60 - <div class="flex items-center justify-between"> 61 - <div class="flex-1"></div> 62 - <h1 class="text-center my-12 flex-grow leading-relaxed">{post.title}</h1> 63 - <div class="flex-1"></div> 64 - </div> 65 - 66 - <!-- Metadata section with improved spacing and grouping --> 67 - <div class="text-center text-[var(--text-color)] opacity-80 mb-12 space-y-4"> 68 - <!-- Author and date info --> 69 - <div class="space-y-2"> 70 - <p class="text-base"> 71 - last updated by 72 - {#if profile?.handle} 73 - <a 74 - href={`https://bsky.app/profile/${profileHandle}`} 75 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)] font-medium" 76 - > 77 - {#key profileDisplayName} 78 - <span transition:fade={{ duration: 200 }}>{profileDisplayName}</span> 79 - {/key} 80 - </a> 81 - {:else} 82 - <span class="opacity-60">{profileDisplayName}</span> 83 - {/if} 84 - <span transition:fade={{ duration: 200 }}>{displayDate}</span> 85 - </p> 86 - <p class="text-sm opacity-70"> 87 - <span transition:fade={{ duration: 200 }}>({absoluteDisplayDate})</span> 88 - </p> 89 - </div> 90 - 91 - <!-- Links section with subtle separation --> 92 - {#if profileDid && rkey} 93 - <div class="pt-3 mt-1"> 94 - <p class="text-sm opacity-75"> 95 - View on <a 96 - href={`https://whtwnd.nat.vg/${profileDid}/${rkey}`} 97 - onerror={(e) => { 98 - e.preventDefault(); 99 - if (e.target instanceof HTMLAnchorElement) { 100 - e.target.href = `https://whtwnd.com/${profileDid}/${rkey}`; 101 - } 102 - }} 103 - class="hover:text-[var(--link-hover-color)] underline decoration-dotted" 104 - > 105 - WhiteWind 106 - </a> 107 - or see the record at 108 - <a 109 - href={`https://atproto.at/viewer?uri=${profileDid}/com.whtwnd.blog.entry/${rkey}`} 110 - onerror={(e) => { 111 - e.preventDefault(); 112 - if (e.target instanceof HTMLAnchorElement) { 113 - e.target.href = `https://pdsls.dev/at://${profileDid}/com.whtwnd.blog.entry/${rkey}`; 114 - e.target.textContent = 'PDSls'; 115 - } 116 - }} 117 - class="hover:text-[var(--link-hover-color)] underline decoration-dotted" 118 - > 119 - atproto.at 120 - </a> 121 - </p> 122 - </div> 123 - {/if} 124 - 125 - <!-- Reading time with subtle emphasis --> 126 - <div class="px-2 py-1 inline-block"> 127 - <p class="text-sm opacity-70"> 128 - {Math.ceil(post.wordCount / 200)} min read • {formatNumber(post.wordCount)} 129 - {wordLabel} 130 - </p> 131 - </div> 132 - 133 - <!-- Share icons with reduced spacing - only show when profile is loaded --> 134 - {#if profile?.handle} 135 - <div class="pt-1"> 136 - <ShareIcons title={post.title} {profile} /> 137 - </div> 138 - {/if} 139 - </div> 140 - {:else} 141 - <!-- Fallback loading state if post data is invalid --> 142 - <div class="text-center my-12 space-y-4"> 143 - <h1 class="opacity-50">Loading post...</h1> 144 - <div class="text-sm opacity-40"> 145 - <p>Loading post metadata...</p> 146 - </div> 147 - </div> 148 - {/if}
-71
src/lib/components/post/PostNavigation.svelte
··· 1 - <script lang="ts"> 2 - import type { Post } from "$components/shared"; 3 - import { fade } from "svelte/transition"; 4 - 5 - let { adjacentPosts }: { 6 - adjacentPosts: { previous: Post | null; next: Post | null } 7 - } = $props(); 8 - 9 - let hasPrevious = $derived( 10 - !!adjacentPosts?.previous?.title && !!adjacentPosts?.previous?.rkey 11 - ); 12 - let hasNext = $derived( 13 - !!adjacentPosts?.next?.title && !!adjacentPosts?.next?.rkey 14 - ); 15 - let showNavigation = $derived(adjacentPosts !== undefined); 16 - </script> 17 - 18 - {#if showNavigation} 19 - <div class="flex justify-between mt-8 mb-8 gap-4" transition:fade={{ duration: 300 }}> 20 - {#if hasPrevious && adjacentPosts.previous} 21 - <div class="flex flex-col max-w-[45%]"> 22 - <div class="text-sm text-mono mb-1 lowercase">Next</div> 23 - <a 24 - href="/blog/{adjacentPosts.previous.rkey}" 25 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)] truncate group transition-all duration-200" 26 - title={adjacentPosts.previous.title} 27 - > 28 - {adjacentPosts.previous.title} 29 - </a> 30 - </div> 31 - {:else} 32 - <div class="max-w-[45%]"></div> 33 - {/if} 34 - 35 - {#if hasNext && adjacentPosts.next} 36 - <div class="flex flex-col max-w-[45%] text-right"> 37 - <div class="text-sm text-mono mb-1 lowercase">Previous</div> 38 - <a 39 - href="/blog/{adjacentPosts.next.rkey}" 40 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)] truncate group transition-all duration-200" 41 - title={adjacentPosts.next.title} 42 - > 43 - {adjacentPosts.next.title} 44 - </a> 45 - </div> 46 - {:else} 47 - <div class="max-w-[45%]"></div> 48 - {/if} 49 - </div> 50 - {:else} 51 - <!-- Loading skeletons --> 52 - <div class="flex justify-between mt-8 mb-8 gap-4"> 53 - <div class="max-w-[45%] opacity-50"> 54 - <div class="animate-pulse h-5 bg-card rounded w-32"></div> 55 - </div> 56 - <div class="max-w-[45%] opacity-50"> 57 - <div class="animate-pulse h-5 bg-card rounded w-32 ml-auto"></div> 58 - </div> 59 - </div> 60 - {/if} 61 - 62 - <style> 63 - @keyframes pulse { 64 - 0%, 100% { opacity: 1; } 65 - 50% { opacity: 0.3; } 66 - } 67 - 68 - .animate-pulse { 69 - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; 70 - } 71 - </style>
-51
src/lib/components/post/TableOfContents.svelte
··· 1 - <script lang="ts"> 2 - import type { TOCNode } from "$lib/components/shared"; 3 - import Tree from "./Tree.svelte"; 4 - 5 - export let tocNodes: TOCNode[] = []; 6 - export let activeId: string | null = null; 7 - 8 - // scrollToHeading prop 9 - export let scrollToHeading: (id: string) => void = (id: string) => { 10 - let el; 11 - 12 - // Special handling for footnotes - scroll to the section instead of hidden heading 13 - if (id === 'footnotes-section') { 14 - el = document.querySelector('section[data-footnotes]'); 15 - } else { 16 - el = document.getElementById(id); 17 - } 18 - 19 - if (el) el.scrollIntoView({ behavior: "smooth", block: "start" }); 20 - }; 21 - </script> 22 - 23 - <div class="toc-container"> 24 - <Tree {tocNodes} {activeId} {scrollToHeading} /> 25 - </div> 26 - 27 - <style> 28 - .toc-container { 29 - overflow-y: auto; 30 - max-height: calc(100vh - 6rem); 31 - padding-right: 0.5rem; 32 - } 33 - 34 - .toc-container::-webkit-scrollbar { 35 - width: 6px; 36 - } 37 - 38 - .toc-container::-webkit-scrollbar-track { 39 - background: var(--card-bg); 40 - border-radius: 3px; 41 - } 42 - 43 - .toc-container::-webkit-scrollbar-thumb { 44 - background: var(--button-bg); 45 - border-radius: 3px; 46 - } 47 - 48 - .toc-container::-webkit-scrollbar-thumb:hover { 49 - background: var(--button-hover-bg); 50 - } 51 - </style>
-240
src/lib/components/post/ToCUI.svelte
··· 1 - <script lang="ts"> 2 - import TableOfContents from "./TableOfContents.svelte"; 3 - import type { TOCNode } from "$lib/components/shared"; 4 - import { onMount } from "svelte"; 5 - import { fly, fade } from "svelte/transition"; 6 - 7 - export let tocNodes: TOCNode[] = []; 8 - export let activeId: string | null = null; 9 - 10 - // Mobile drawer state 11 - let tocOpen = false; 12 - const closeDrawer = () => (tocOpen = false); 13 - 14 - // Scroll progress for desktop and mobile 15 - let scrollProgress = 0; 16 - const updateScrollProgress = () => { 17 - const scrollTop = window.scrollY; 18 - const docHeight = document.body.scrollHeight - window.innerHeight; 19 - scrollProgress = docHeight > 0 ? (scrollTop / docHeight) * 100 : 0; 20 - }; 21 - 22 - // Mobile TOC button visibility 23 - let showTOCButton = true; 24 - const BUFFER = 100; // pixels before first heading / after last heading 25 - 26 - const updateTOCButtonVisibility = () => { 27 - if (!tocNodes.length) return; 28 - 29 - let firstHeading: HTMLElement | null, lastHeading: HTMLElement | null; 30 - 31 - // Handle first heading 32 - if (tocNodes[0].id === 'footnotes-section') { 33 - firstHeading = document.querySelector('section[data-footnotes]') as HTMLElement; 34 - } else { 35 - firstHeading = document.getElementById(tocNodes[0].id) as HTMLElement; 36 - } 37 - 38 - // Handle last heading 39 - const lastNode = tocNodes[tocNodes.length - 1]; 40 - if (lastNode.id === 'footnotes-section') { 41 - lastHeading = document.querySelector('section[data-footnotes]') as HTMLElement; 42 - } else { 43 - lastHeading = document.getElementById(lastNode.id) as HTMLElement; 44 - } 45 - 46 - if (!firstHeading || !lastHeading) return; 47 - 48 - const scrollTop = window.scrollY; 49 - const windowHeight = window.innerHeight; 50 - const lastHeadingBottom = 51 - lastHeading.getBoundingClientRect().bottom + window.scrollY; 52 - 53 - // Gradual fade with buffer 54 - showTOCButton = 55 - scrollTop + windowHeight / 2 >= firstHeading.offsetTop - BUFFER && 56 - scrollTop + windowHeight / 2 <= lastHeadingBottom + BUFFER; 57 - }; 58 - 59 - onMount(() => { 60 - const handleScroll = () => { 61 - updateScrollProgress(); 62 - updateTOCButtonVisibility(); 63 - }; 64 - 65 - window.addEventListener("scroll", handleScroll, { passive: true }); 66 - handleScroll(); 67 - 68 - return () => window.removeEventListener("scroll", handleScroll); 69 - }); 70 - </script> 71 - 72 - <!-- Desktop Sticky Sidebar - Only render if there are headings --> 73 - {#if tocNodes.length > 0} 74 - <aside class="hidden lg:block"> 75 - <div class="sticky top-8"> 76 - <h2 class="text-sm font-semibold mb-2">Table of Contents</h2> 77 - 78 - <TableOfContents 79 - {tocNodes} 80 - {activeId} 81 - scrollToHeading={(id: string) => { 82 - let el; 83 - 84 - if (id === 'footnotes-section') { 85 - el = document.querySelector('section[data-footnotes]'); 86 - } else { 87 - el = document.getElementById(id); 88 - } 89 - 90 - if (el) el.scrollIntoView({ behavior: "smooth", block: "start" }); 91 - }} 92 - /> 93 - 94 - <!-- Desktop Scroll Progress Bar --> 95 - <div class="w-full h-1 bg-button mt-2 rounded overflow-hidden"> 96 - <div 97 - class="h-full bg-primary transition-all duration-100 ease-linear" 98 - style="width: {scrollProgress}%" 99 - ></div> 100 - </div> 101 - </div> 102 - </aside> 103 - {:else} 104 - <!-- Render nothing for desktop when no headings - allows content to take full width --> 105 - {/if} 106 - 107 - <!-- Mobile Vertical Progress Bar - Always show --> 108 - <div class="fixed left-1 top-16 bottom-16 w-1 bg-button rounded z-30 lg:hidden"> 109 - <div 110 - class="w-full bg-primary transition-all duration-100 ease-linear rounded" 111 - style="height: {scrollProgress}%" 112 - ></div> 113 - </div> 114 - 115 - <!-- Mobile TOC Elements - Only show if there are headings --> 116 - {#if tocNodes.length > 0} 117 - <!-- Floating TOC Button --> 118 - {#if showTOCButton} 119 - <button 120 - type="button" 121 - class="toc-toggle fixed bottom-2.5 right-2.5 z-50 w-12 h-12 rounded-full bg-card text-text shadow-lg border border-button flex items-center justify-center hover:bg-button-hover hover:translate-y-[-2px] hover:shadow-xl active:translate-y-0 active:shadow-md lg:hidden" 122 - on:click={() => (tocOpen = true)} 123 - aria-label="Open Table of Contents" 124 - title="Open Table of Contents" 125 - transition:fly={{ y: 10, duration: 300, opacity: 0 }} 126 - > 127 - <svg 128 - width="20" 129 - height="20" 130 - viewBox="0 0 24 24" 131 - fill="none" 132 - stroke="currentColor" 133 - stroke-width="2" 134 - stroke-linecap="round" 135 - stroke-linejoin="round" 136 - > 137 - <line x1="3" y1="6" x2="21" y2="6" /> 138 - <line x1="3" y1="12" x2="21" y2="12" /> 139 - <line x1="3" y1="18" x2="21" y2="18" /> 140 - </svg> 141 - </button> 142 - {/if} 143 - 144 - {#if tocOpen} 145 - <!-- Overlay --> 146 - <button 147 - type="button" 148 - class="fixed inset-0 bg-black/40 z-40 lg:hidden" 149 - on:click={closeDrawer} 150 - aria-label="Close Table of Contents" 151 - ></button> 152 - 153 - <!-- Drawer --> 154 - <div 155 - class="fixed top-0 right-0 bottom-0 w-72 bg-card shadow-lg z-50 lg:hidden flex flex-col" 156 - transition:fly={{ x: 300, duration: 250 }} 157 - > 158 - <!-- Header --> 159 - <div 160 - class="flex items-center justify-between p-3 border-b border-button flex-shrink-0" 161 - > 162 - <h2 class="text-sm font-semibold">Table of Contents</h2> 163 - <button 164 - class="text-text hover:text-primary p-1" 165 - on:click={closeDrawer} 166 - aria-label="Close TOC" 167 - > 168 - <svg 169 - width="16" 170 - height="16" 171 - viewBox="0 0 24 24" 172 - fill="none" 173 - stroke="currentColor" 174 - stroke-width="2" 175 - stroke-linecap="round" 176 - stroke-linejoin="round" 177 - > 178 - <line x1="18" y1="6" x2="6" y2="18" /> 179 - <line x1="6" y1="6" x2="18" y2="18" /> 180 - </svg> 181 - </button> 182 - </div> 183 - 184 - <!-- Scrollable TOC with bottom fade --> 185 - <div class="relative flex-1 overflow-y-auto p-3"> 186 - <TableOfContents 187 - {tocNodes} 188 - {activeId} 189 - scrollToHeading={(id: string) => { 190 - let el; 191 - 192 - if (id === 'footnotes-section') { 193 - el = document.querySelector('section[data-footnotes]'); 194 - } else { 195 - el = document.getElementById(id); 196 - } 197 - 198 - if (el) el.scrollIntoView({ behavior: "smooth", block: "start" }); 199 - closeDrawer(); 200 - }} 201 - /> 202 - 203 - <!-- Bottom fade overlay --> 204 - <div 205 - class="pointer-events-none absolute bottom-0 left-0 w-full h-12 bg-gradient-to-t from-card to-transparent" 206 - ></div> 207 - </div> 208 - </div> 209 - {/if} 210 - {/if} 211 - 212 - <style> 213 - .toc-toggle { 214 - transition: all 0.3s ease; 215 - backdrop-filter: blur(8px); 216 - } 217 - 218 - .toc-toggle:focus { 219 - outline: 2px solid var(--link-color); 220 - outline-offset: 2px; 221 - } 222 - 223 - @media (max-width: 640px) { 224 - .toc-toggle { 225 - bottom: 1.5rem; 226 - right: 1.5rem; 227 - width: 2.75rem; 228 - height: 2.75rem; 229 - } 230 - } 231 - 232 - @media (prefers-reduced-motion: reduce) { 233 - .toc-toggle { 234 - transition: none; 235 - } 236 - .toc-toggle:hover { 237 - transform: none; 238 - } 239 - } 240 - </style>
-98
src/lib/components/post/Tree.svelte
··· 1 - <script lang="ts"> 2 - import type { TOCNode } from "$lib/components/shared"; 3 - import { writable } from "svelte/store"; 4 - import Tree from "./Tree.svelte"; // Recursive import for nested nodes 5 - 6 - export let tocNodes: TOCNode[] = []; 7 - export let activeId: string | null = null; 8 - export let scrollToHeading: (id: string) => void; 9 - 10 - const expanded = writable<Record<string, boolean>>({}); 11 - 12 - const toggle = (id: string) => { 13 - expanded.update((e) => ({ ...e, [id]: !e[id] })); 14 - }; 15 - 16 - const levelIndent = (level: number) => { 17 - switch (level) { 18 - case 1: 19 - return "ml-0"; 20 - case 2: 21 - return "ml-2"; 22 - case 3: 23 - return "ml-4"; 24 - case 4: 25 - return "ml-6"; 26 - case 5: 27 - return "ml-8"; 28 - case 6: 29 - return "ml-10"; 30 - default: 31 - return "ml-0"; 32 - } 33 - }; 34 - 35 - const hasChildren = (node: TOCNode) => node.children.length > 0; 36 - </script> 37 - 38 - <ul class="list-none pl-0 m-0"> 39 - {#each tocNodes as node} 40 - <li class={`my-0.5 ${levelIndent(node.level)}`}> 41 - <div class="flex items-start gap-1"> 42 - {#if hasChildren(node)} 43 - <button 44 - type="button" 45 - class="shrink-0 text-text hover:text-primary" 46 - on:click={() => toggle(node.id)} 47 - aria-label="Toggle section" 48 - > 49 - {#if $expanded[node.id]}▾{:else}▸{/if} 50 - </button> 51 - {/if} 52 - 53 - <button 54 - type="button" 55 - class={`flex-1 text-left px-1 py-0.5 rounded cursor-pointer text-sm toc-link 56 - hover:bg-button-hover 57 - ${ 58 - node.id === activeId 59 - ? "bg-primary text-[var(--background-color)] active-link" 60 - : "text-text" 61 - }`} 62 - on:click={() => scrollToHeading(node.id)} 63 - aria-controls={node.id} 64 - aria-current={node.id === activeId ? "true" : "false"} 65 - data-content={node.name} 66 - > 67 - {node.name} 68 - </button> 69 - </div> 70 - 71 - {#if hasChildren(node) && $expanded[node.id]} 72 - <Tree {scrollToHeading} {activeId} tocNodes={node.children} /> 73 - {/if} 74 - </li> 75 - {/each} 76 - </ul> 77 - 78 - <style> 79 - .toc-link { 80 - position: relative; 81 - } 82 - 83 - /* Reserve space for bold font weight to prevent layout shift */ 84 - .toc-link::after { 85 - display: block; 86 - content: attr(data-content); 87 - height: 0; 88 - overflow: hidden; 89 - visibility: hidden; 90 - font-weight: 600; /* semibold equivalent */ 91 - pointer-events: none; 92 - } 93 - 94 - /* Apply bold font weight when active */ 95 - .toc-link.active-link { 96 - font-weight: 600; /* semibold equivalent */ 97 - } 98 - </style>
-4
src/lib/components/post/index.ts
··· 1 - export { default as PostHead } from "./PostHead.svelte"; 2 - export { default as PostHeader } from "./PostHeader.svelte"; 3 - export { default as PostContent } from "./PostContent.svelte"; 4 - export { default as PostNavigation } from "./PostNavigation.svelte";
-107
src/lib/components/profile/Profile.svelte
··· 1 - <script lang="ts"> 2 - export let profile: any; 3 - import { Status } from "."; 4 - </script> 5 - 6 - <link rel="preload" href="/fallback/profile.svg" as="image" type="image/svg+xml"> 7 - <link rel="preload" href="/fallback/banner.svg" as="image" type="image/svg+xml"> 8 - 9 - <!-- Profile Banner --> 10 - <div 11 - class="profile-banner p-4 relative rounded-[1em] mx-2 mb-2" 12 - style=" 13 - background-image: url({profile?.banner || '/fallback/banner.svg'}); 14 - background-size: cover; 15 - background-position: center; 16 - min-height: 150px; 17 - background-color: transparent; /* remove any fallback background */ 18 - border: none; 19 - " 20 - ></div> 21 - 22 - {#if profile} 23 - <div class="profile-content mx-2 mb-8 relative"> 24 - <div class="flex flex-col sm:flex-row sm:items-start text-left sm:gap-6"> 25 - <!-- Avatar --> 26 - <img 27 - src={profile?.avatar || '/fallback/profile.svg'} 28 - alt="{profile?.displayName || profile?.handle || profile?.did || 'Unknown User'}'s avatar" 29 - class="rounded-full flex-shrink-0 relative z-10 30 - w-24 h-24 -mt-12 mx-auto mb-4 31 - sm:w-32 sm:h-32 sm:-mt-16 sm:mx-0 sm:mb-0 32 - bg-transparent border-none 33 - transition-transform duration-500 hover:rotate-[360deg] cursor-pointer" 34 - /> 35 - 36 - <!-- User Information --> 37 - <div class="flex-1 min-w-0 p-4 rounded-[1em] overflow-hidden" style="background: var(--card-bg);"> 38 - <div class="mb-3"> 39 - <!-- Display name --> 40 - <h4 class="text-lg font-semibold mb-1 leading-tight truncate text-center sm:text-left"> 41 - {profile?.displayName || 'Anonymous'} 42 - </h4> 43 - 44 - <!-- Handle / DID --> 45 - <h6 class="mb-2 text-center sm:text-left"> 46 - {#if profile?.handle} 47 - <a 48 - href="https://bsky.app/profile/{profile.handle}" 49 - class="text-link hover:text-link-hover text-sm truncate block" 50 - > 51 - @{profile.handle} 52 - </a> 53 - {:else if profile?.did} 54 - <code 55 - class="text-xs font-mono truncate block text-link hover:text-link-hover" 56 - title={profile.did} 57 - > 58 - {profile.did} 59 - </code> 60 - {:else} 61 - <span class="italic opacity-60 text-sm">Unknown user</span> 62 - {/if} 63 - </h6> 64 - 65 - <!-- DID row (always visible on sm+) --> 66 - {#if profile?.did} 67 - <h6 class="opacity-40 mb-3 text-center sm:text-left"> 68 - <span 69 - class="text-xs font-mono overflow-hidden text-ellipsis whitespace-nowrap hidden sm:block" 70 - title={profile.did} 71 - > 72 - {profile.did} 73 - </span> 74 - </h6> 75 - {/if} 76 - </div> 77 - 78 - <!-- Description --> 79 - {#if profile?.description} 80 - <div class="mb-3"> 81 - <p class="text-sm leading-relaxed text-center sm:text-left"> 82 - {profile.description} 83 - </p> 84 - </div> 85 - {/if} 86 - 87 - <!-- Status --> 88 - <div class="text-center sm:text-left"> 89 - <Status {profile} /> 90 - </div> 91 - </div> 92 - </div> 93 - </div> 94 - {:else} 95 - <!-- Placeholder if no profile --> 96 - <div 97 - class="profile-content flex flex-col items-center justify-center text-center mx-2 p-4 relative rounded-[1em]" 98 - style="background: var(--card-bg);" 99 - > 100 - <p class="text-center text-sm italic opacity-75"> 101 - create a `app.bsky.actor.profile` record at 102 - <a href="https://bsky.app/" class="text-link hover:text-link-hover"> 103 - https://bsky.app/ 104 - </a> 105 - </p> 106 - </div> 107 - {/if}
-192
src/lib/components/profile/Status.svelte
··· 1 - <script lang="ts"> 2 - import { browser } from "$app/environment"; 3 - import { onMount } from "svelte"; 4 - import { env } from "$env/dynamic/public"; 5 - import { safeFetch } from "./profile"; 6 - import { formatRelativeTime } from "$utils/formatters"; 7 - import { fade } from "svelte/transition"; 8 - import { getCache, setCache } from "$utils/cache"; 9 - 10 - // Props 11 - export let profile: { 12 - pds?: string; 13 - did?: string; 14 - handle?: string; 15 - displayName?: string; 16 - } | null = null; 17 - 18 - // State 19 - let latestNowText: string | null = null; 20 - let latestNowDate: Date | null = null; 21 - let latestNowExpiry: number | null = null; 22 - let statusError: string | null = null; 23 - 24 - let musicLoading = false; 25 - let musicError: string | null = null; 26 - let trackData: { name: string; artist: string; url: string } | null = null; 27 - 28 - let showContent = false; 29 - let contentLoaded = false; 30 - 31 - // Derived: auto-decides what to show based on state 32 - $: displayMode = (() => { 33 - const now = Date.now(); 34 - const statusFresh = latestNowText && latestNowDate && latestNowExpiry && now < latestNowExpiry; 35 - 36 - if (statusFresh) return "status"; 37 - if (trackData) return "music"; 38 - return "none"; 39 - })(); 40 - 41 - async function fetchLatestNow() { 42 - if (!profile?.pds || !profile?.did) { 43 - latestNowText = null; 44 - latestNowDate = null; 45 - latestNowExpiry = null; 46 - return; 47 - } 48 - 49 - const cacheKey = `status_${profile.did}`; 50 - const cached = getCache<{ text: string; date: string }>(cacheKey); 51 - if (cached) { 52 - latestNowText = cached.text; 53 - latestNowDate = new Date(cached.date); 54 - latestNowExpiry = Date.now() + 5 * 60 * 1000; // 5 minutes 55 - return; 56 - } 57 - 58 - try { 59 - const pdsUrl = profile.pds; 60 - const timestamp = Date.now(); 61 - const listRecordsUrl = `${pdsUrl}/xrpc/com.atproto.repo.listRecords?repo=${profile.did}&collection=uk.ewancroft.now&_=${timestamp}`; 62 - const data = await safeFetch(listRecordsUrl, window.fetch); 63 - 64 - if (data?.records?.length > 0) { 65 - const sorted = data.records.sort( 66 - (a: any, b: any) => 67 - new Date(b.value.createdAt).getTime() - 68 - new Date(a.value.createdAt).getTime() 69 - ); 70 - const latest = sorted[0].value; 71 - latestNowText = latest.text.replace(/<[^>]*>?/gm, "").trim(); 72 - latestNowDate = new Date(latest.createdAt); 73 - latestNowExpiry = Date.now() + 5 * 60 * 1000; // 5 min TTL 74 - 75 - setCache(cacheKey, { text: latestNowText, date: latestNowDate.toISOString() }, 5 * 60 * 1000); 76 - statusError = null; 77 - } else { 78 - latestNowText = null; 79 - latestNowDate = null; 80 - latestNowExpiry = null; 81 - } 82 - } catch (err) { 83 - console.error("[Status] Error fetching status:", err); 84 - statusError = err instanceof Error ? err.message : "Failed to load current status."; 85 - latestNowText = null; 86 - latestNowDate = null; 87 - latestNowExpiry = null; 88 - } 89 - } 90 - 91 - async function fetchRecentMusic() { 92 - const lastfmUsername = env.PUBLIC_LASTFM_USERNAME; 93 - if (!lastfmUsername) return; 94 - 95 - musicLoading = true; 96 - try { 97 - const params = new URLSearchParams({ 98 - username: lastfmUsername, 99 - emoji: "🎧", 100 - nomoji: "false" 101 - }); 102 - const url = `https://recentfm.rknight.me/now.php?${params.toString()}`; 103 - const response = await fetch(url); 104 - if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`); 105 - 106 - const data = await response.json(); 107 - if (data.content) { 108 - const parser = new DOMParser(); 109 - const doc = parser.parseFromString(data.content, "text/html"); 110 - const link = doc.querySelector("a"); 111 - if (link) { 112 - const fullText = link.textContent || ""; 113 - const match = fullText.match(/^(.+?) by (.+)$/); 114 - if (match) { 115 - trackData = { 116 - name: match[1].trim(), 117 - artist: match[2].trim(), 118 - url: link.href 119 - }; 120 - } 121 - } 122 - } 123 - } catch (err) { 124 - console.error("[RecentFM] Error fetching RecentFM data:", err); 125 - musicError = "Failed to load recent tracks"; 126 - } finally { 127 - musicLoading = false; 128 - } 129 - } 130 - 131 - async function loadContentStaggered() { 132 - if (contentLoaded || !browser || !profile) return; 133 - contentLoaded = true; 134 - 135 - try { 136 - await fetchLatestNow(); 137 - setTimeout(() => (showContent = true), 300); 138 - await new Promise((r) => setTimeout(r, 2000)); 139 - await fetchRecentMusic(); 140 - } catch (err) { 141 - console.error("[Status] Error in staggered loading:", err); 142 - setTimeout(() => (showContent = true), 300); 143 - } 144 - } 145 - 146 - onMount(() => { 147 - setTimeout(() => { 148 - loadContentStaggered(); 149 - }, 1500); 150 - }); 151 - </script> 152 - 153 - {#if displayMode !== "none" && profile && showContent} 154 - <div transition:fade={{ duration: 500 }}> 155 - <div class="py-2"> 156 - {#if displayMode === "status" && latestNowText} 157 - <p class="text-center sm:text-left text-xs"> 158 - {#key latestNowText} 159 - <span transition:fade={{ duration: 200 }}> 160 - <span class="font-medium">{profile.displayName || profile.handle || profile.did}</span> 161 - <span> is </span> 162 - <span class="italic">{latestNowText}</span> 163 - {#if latestNowDate} 164 - <span class="opacity-50"> ({formatRelativeTime(latestNowDate)})</span> 165 - {/if} 166 - {#if trackData} 167 - <span> and was last listening to </span> 168 - <a href={trackData.url} class="text-link hover:text-link-hover" target="_blank" rel="noopener noreferrer"> 169 - "{trackData.name}" by {trackData.artist} 170 - </a> 171 - {/if} 172 - </span> 173 - {/key} 174 - </p> 175 - {:else if displayMode === "music" && trackData} 176 - <div class="recent-track-info"> 177 - <p class="text-xs opacity-60 text-center sm:text-left"> 178 - {profile.displayName || profile.handle || profile.did} was last listening to 179 - <a href={trackData.url} class="text-link hover:text-link-hover" target="_blank" rel="noopener noreferrer"> 180 - "{trackData.name}" by {trackData.artist} 181 - </a> 182 - </p> 183 - </div> 184 - {/if} 185 - {#if musicLoading} 186 - <p class="text-xs opacity-60 italic text-center sm:text-left"> 187 - Loading recent tracks... 188 - </p> 189 - {/if} 190 - </div> 191 - </div> 192 - {/if}
-2
src/lib/components/profile/index.ts
··· 1 - export { default as Profile } from "./Profile.svelte"; 2 - export { default as Status } from "./Status.svelte";
-127
src/lib/components/profile/profile.ts
··· 1 - import { env } from "$env/dynamic/public"; 2 - import { getCache, setCache } from "$utils/cache"; 3 - import type { Profile, SiteInfo } from "$components/shared"; 4 - 5 - export async function safeFetch(url: string, fetch: typeof globalThis.fetch) { 6 - try { 7 - // Add timeout to prevent hanging requests 8 - const controller = new AbortController(); 9 - const timeoutId = setTimeout(() => controller.abort(), 10000); // 10 second timeout 10 - 11 - try { 12 - const response = await fetch(url, { 13 - signal: controller.signal, 14 - headers: { 15 - 'Accept': 'application/json' 16 - } 17 - }); 18 - 19 - clearTimeout(timeoutId); 20 - 21 - if (!response.ok) 22 - throw new Error(`HTTP error! status: ${response.status}, statusText: ${response.statusText}`); 23 - return await response.json(); 24 - } catch (error: unknown) { 25 - clearTimeout(timeoutId); 26 - if (error instanceof Error && error.name === 'AbortError') { 27 - throw new Error(`Request timed out for ${url}`); 28 - } 29 - throw error; 30 - } 31 - } catch (error: unknown) { 32 - // Catch network errors (e.g., connection refused, timeout) 33 - console.error(`Network error fetching ${url}:`, error); 34 - if (error instanceof Error) { 35 - throw new Error(`Failed to fetch ${url}: ${error.message}`); 36 - } else { 37 - throw new Error(`Failed to fetch ${url}: An unknown error occurred`); 38 - } 39 - } 40 - } 41 - 42 - export async function getProfile(fetch: typeof globalThis.fetch): Promise<Profile> { 43 - const cacheKey = `profile_${env.PUBLIC_ATPROTOCOL_USER}`; 44 - let profile: Profile | null = getCache<Profile>(cacheKey); 45 - 46 - if (profile) { 47 - return profile; 48 - } 49 - 50 - try { 51 - const fetchProfile = await safeFetch( 52 - `https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor=${env.PUBLIC_ATPROTOCOL_USER}`, 53 - fetch 54 - ); 55 - const split = fetchProfile["did"].split(":"); 56 - let diddoc; 57 - if (split[0] === "did") { 58 - if (split[1] === "plc") { 59 - diddoc = await safeFetch(`https://plc.directory/${fetchProfile["did"]}`, fetch); 60 - } else if (split[1] === "web") { 61 - diddoc = await safeFetch("https://" + split[2] + "/.well-known/did.json", fetch); 62 - } 63 - } else { 64 - throw new Error("Invalid DID, malformed"); 65 - } 66 - let pdsurl; 67 - for (const service of diddoc["service"]) { 68 - if (service["id"] === "#atproto_pds") { 69 - pdsurl = service["serviceEndpoint"]; 70 - } 71 - } 72 - if (!pdsurl) { 73 - throw new Error("DID lacks #atproto_pds service"); 74 - } 75 - profile = { 76 - avatar: fetchProfile["avatar"], 77 - banner: fetchProfile["banner"], 78 - displayName: fetchProfile["displayName"], 79 - did: fetchProfile["did"], 80 - handle: fetchProfile["handle"], 81 - description: fetchProfile["description"], 82 - pds: pdsurl, 83 - }; 84 - setCache(cacheKey, profile); 85 - return profile; 86 - } catch (error: unknown) { 87 - console.error("Error fetching profile:", error); 88 - if (error instanceof Error) { 89 - throw error; // Re-throw the error after logging 90 - } else { 91 - throw new Error("An unknown error occurred while fetching profile"); 92 - } 93 - } 94 - } 95 - 96 - /** 97 - * Fetches site information from the user's PDS. 98 - * @returns A Promise that resolves to SiteInfo or null if not found or an error occurs. 99 - */ 100 - export async function getSiteInfo(fetch: typeof globalThis.fetch): Promise<SiteInfo | null> { 101 - const cacheKey = `siteInfo_${env.PUBLIC_ATPROTOCOL_USER}`; 102 - let siteInfo: SiteInfo | null = getCache<SiteInfo>(cacheKey); 103 - 104 - if (siteInfo) { 105 - return siteInfo; 106 - } 107 - 108 - try { 109 - const profile: Profile = await getProfile(fetch); // Assuming getProfile is available and returns the user's profile with PDS and DID 110 - const rawResponse = await fetch( 111 - `${profile.pds}/xrpc/com.atproto.repo.listRecords?repo=${profile.did}&collection=uk.ewancroft.site.info&rkey=self` 112 - ); 113 - const response = await rawResponse.json(); 114 - 115 - if (response && response.records && response.records.length > 0) { 116 - siteInfo = response.records[0].value as SiteInfo; 117 - setCache(cacheKey, siteInfo); 118 - return siteInfo; 119 - } else { 120 - console.log("No site info record found."); 121 - return null; 122 - } 123 - } catch (error) { 124 - console.error("Error fetching site info:", error); 125 - return null; 126 - } 127 - }
-67
src/lib/components/shared/NoScriptFallback.svelte
··· 1 - <noscript> 2 - <div 3 - class="fixed inset-0 bg-black bg-opacity-70 backdrop-blur-md flex justify-center items-center z-50 p-4 sm:p-6" 4 - role="alertdialog" 5 - aria-modal="true" 6 - tabindex="0" 7 - > 8 - <div 9 - class="w-full max-w-xs sm:max-w-sm md:max-w-md bg-card rounded-lg shadow-lg overflow-hidden" 10 - > 11 - <article class="flex flex-col p-4 sm:p-5"> 12 - <header class="flex flex-col items-start gap-1 sm:gap-2 mb-3 sm:mb-4"> 13 - <h3 14 - class="text-base sm:text-lg font-semibold m-0 text-[var(--link-color)] leading-tight" 15 - > 16 - JavaScript is disabled. Please enable it to use this site. 17 - </h3> 18 - <p class="text-xs opacity-60"> 19 - Sorry for the inconvenience, but the site needs JavaScript to work 20 - properly. 21 - </p> 22 - </header> 23 - 24 - <div class="text-sm sm:text-base text-[var(--text-color)]"> 25 - <p class="mb-3 sm:mb-4"> 26 - Here’s how to enable JavaScript in your browser: 27 - </p> 28 - <ul class="list-disc list-inside mb-3 sm:mb-4 space-y-1 sm:space-y-2"> 29 - <a 30 - href="https://www.ionos.co.uk/digitalguide/websites/web-development/enable-javascript-in-safari/" 31 - target="_blank" 32 - rel="noopener noreferrer" 33 - lang="en-gb" 34 - class="font-semibold text-[var(--link-color)] underline hover:text-[var(--link-hover-color)] focus:outline-none focus:ring-2 focus:ring-[var(--link-color)]" 35 - > 36 - Enable JavaScript in Safari 37 - </a> 38 - <a 39 - href="https://www.ionos.co.uk/digitalguide/websites/web-development/enable-javascript/" 40 - target="_blank" 41 - rel="noopener noreferrer" 42 - lang="en-gb" 43 - class="font-semibold text-[var(--link-color)] underline hover:text-[var(--link-hover-color)] focus:outline-none focus:ring-2 focus:ring-[var(--link-color)]" 44 - > 45 - Enable JavaScript in Chrome 46 - </a> 47 - <a 48 - href="https://www.ionos.co.uk/digitalguide/websites/web-development/enable-javascript-in-firefox/" 49 - target="_blank" 50 - rel="noopener noreferrer" 51 - lang="en-gb" 52 - class="font-semibold text-[var(--link-color)] underline hover:text-[var(--link-hover-color)] focus:outline-none focus:ring-2 focus:ring-[var(--link-color)]" 53 - > 54 - Enable JavaScript in Firefox 55 - </a> 56 - </ul> 57 - <p> 58 - This website relies heavily on JavaScript to load content, manage 59 - navigation, and provide interactive features. Without JavaScript 60 - enabled, many parts of the site won’t function correctly, and you 61 - may miss out on the full experience. 62 - </p> 63 - </div> 64 - </article> 65 - </div> 66 - </div> 67 - </noscript>
-5
src/lib/components/shared/NotFoundMessage.svelte
··· 1 - <div class="flex justify-center items-center min-h-[50vh]"> 2 - <h1 class="text-center pt-4 pb-4"> 3 - it's either loading or the post doesn't exist 4 - </h1> 5 - </div>
-3
src/lib/components/shared/index.ts
··· 1 - export * from "./interfaces"; 2 - export { default as NotFoundMessage } from "./NotFoundMessage.svelte"; 3 - export { default as NoScriptMessage } from "./NoScriptFallback.svelte";
-148
src/lib/components/shared/interfaces.ts
··· 1 - /** 2 - * Represents a blog post with its content and metadata. 3 - */ 4 - export interface Post { 5 - postNumber?: number; 6 - title: string; // The title of the post. 7 - rkey: string; // A unique key for the post. 8 - createdAt: Date; // The date and time the post was created. 9 - content: string; // The content of the post, parsed to HTML. 10 - excerpt: string; // A plain text excerpt for meta descriptions. 11 - wordCount: number; // The word count for reading time calculation. 12 - } 13 - 14 - /** 15 - * Represents a blog post in its raw Markdown format. 16 - */ 17 - export interface MarkdownPost { 18 - title: string; // The title of the post. 19 - rkey: string; // A unique key for the post. 20 - createdAt: Date; // The date and time the post was created. 21 - mdcontent: string; // The raw Markdown content of the post. 22 - } 23 - 24 - // Define the type for the fetched links data 25 - /** 26 - * Represents a single link card with a URL, text, and an emoji. 27 - */ 28 - export interface LinkCard { 29 - url: string; // The URL of the link. 30 - text: string; // The display text for the link. 31 - emoji: string; // An emoji associated with the link. 32 - } 33 - 34 - /** 35 - * Represents a board containing multiple link cards. 36 - */ 37 - export interface LinkBoard { 38 - $type: "blue.linkat.board"; // A type identifier for the link board. 39 - cards: LinkCard[]; // An array of LinkCard objects. 40 - } 41 - 42 - /** 43 - * Represents a theme with a unique identifier and a name. 44 - */ 45 - export interface Theme { 46 - id: string; // The unique identifier for the theme. 47 - name: string; // The name of the theme. 48 - } 49 - 50 - /** 51 - * Represents public environment variables. 52 - */ 53 - export interface PublicEnv { 54 - PUBLIC_ATPROTOCOL_USER: string; // Public user for ATProtocol. 55 - PUBLIC_ACTIVITYPUB_USER: string; // Public user for ActivityPub. 56 - } 57 - 58 - /** 59 - * Represents a user profile with various details. 60 - */ 61 - export interface Profile { 62 - avatar: string; // URL to the user's avatar image. 63 - banner: string; // URL to the user's banner image. 64 - displayName: string; // The display name of the user. 65 - did: string; // Decentralised Identifier of the user. 66 - handle: string; // The user's handle. 67 - description: string; // A description of the user. 68 - pds: string; // Personal Data Server URL. 69 - } 70 - 71 - /** 72 - * Provides comprehensive information about the website. 73 - */ 74 - export interface SiteInfo { 75 - technologyStack?: Array<{ name: string; url?: string; description?: string }>; // Details about the technologies used. 76 - privacyStatement?: string; // The privacy statement of the website. 77 - openSourceInfo?: { // Information regarding open-source aspects. 78 - description?: string; // Description of open-source involvement. 79 - license?: { name?: string; url?: string }; // License information for the open-source project. 80 - basedOn?: Array<{ name: string; url?: string; description?: string; type?: string }>; // Projects or technologies this site is based on. 81 - relatedServices?: Array<{ name: string; url?: string; description?: string; relationship?: string }>; // Related services. 82 - repositories?: Array<{ platform?: string; url: string; type?: string; description?: string }>; // Repositories associated with the project. 83 - }; 84 - credits?: Array<{ // Credits for contributors or resources. 85 - name: string; // Name of the credited entity. 86 - type: string; // Type of credit (e.g., 'person', 'organisation'). 87 - url?: string; // URL associated with the credit. 88 - author?: string; // Author of the credited work. 89 - license?: { name?: string; url?: string }; // License of the credited work. 90 - description?: string; // Description of the credited contribution. 91 - }>; 92 - additionalInfo?: { // Additional miscellaneous information. 93 - purpose?: string; // The purpose of the website. 94 - websiteBirthYear?: number; // The year the website was launched. 95 - sectionLicense?: Array<{ section?: string; name?: string; url?: string }>; // Licenses for specific sections of the website. 96 - contact?: { email?: string; social?: Array<{ platform: string; url: string; handle?: string }> }; // Contact information. 97 - analytics?: { services?: string[]; cookiePolicy?: string }; // Analytics services used and cookie policy. 98 - deployment?: { platform?: string; cdn?: string; customDomain?: boolean }; // Deployment details. 99 - }; 100 - } 101 - 102 - /** 103 - * Represents a status update or a short message. 104 - */ 105 - export interface StatusUpdate { 106 - text: string; // The content of the status update. 107 - createdAt: Date; // The date and time the status update was created. 108 - tid: string; // A unique identifier for the status update. 109 - } 110 - 111 - /** 112 - * Properties for displaying recent content, possibly from a feed or similar source. 113 - */ 114 - export interface RecentFMProps { 115 - nomoji?: boolean; // Optional flag to disable emojis. 116 - displayName?: string; // Optional display name. 117 - } 118 - 119 - /** 120 - * Represents the result of the BlogService, containing posts, profile, and utility functions. 121 - */ 122 - export interface BlogServiceResult { 123 - posts: Map<string, Post>; 124 - profile: Profile; 125 - sortedPosts: Post[]; 126 - getPost: (rkey: string) => Post | null; 127 - getAdjacentPosts: (rkey: string) => { previous: Post | null; next: Post | null }; 128 - } 129 - 130 - /** 131 - * Represents a milestone with text, emoji, and type. 132 - */ 133 - export interface Milestone { 134 - text: string; 135 - emoji: string; 136 - type: 'special' | 'major' | 'minor'; 137 - } 138 - 139 - /** 140 - * Represents a node in the Table of Contents (TOC). 141 - * Each node corresponds to a heading in the document. 142 - */ 143 - export interface TOCNode { 144 - id: string; 145 - name: string; 146 - level: number; 147 - children: TOCNode[]; // never undefined, just an empty array if no children 148 - }
-55
src/lib/css/animations.css
··· 1 - /* animations.css */ 2 - /* Staggered animations for root variable-based elements */ 3 - 4 - /* Body and primary background elements */ 5 - body { 6 - transition: 7 - background-color 0.4s ease 0s, 8 - color 0.4s ease 0s; 9 - } 10 - 11 - /* Buttons and interactive elements */ 12 - button, 13 - a { 14 - transition: 15 - background-color 0.4s ease 0.05s, 16 - color 0.4s ease 0.05s, 17 - border-color 0.4s ease 0.05s, 18 - box-shadow 0.4s ease 0.05s, 19 - transform 0.2s ease; 20 - } 21 - 22 - /* Card elements with slightly longer delay */ 23 - .post-card { 24 - transition: 25 - background-color 0.4s ease 0.1s, 26 - box-shadow 0.4s ease 0.1s, 27 - transform 0.2s ease 0.1s; 28 - } 29 - 30 - /* Profile banners next in the sequence */ 31 - .profile-banner { 32 - transition: 33 - background-color 0.4s ease 0.15s, 34 - opacity 0.2s ease 0.15s; 35 - } 36 - 37 - /* Text link classes */ 38 - .text-link, 39 - .text-link-hover, 40 - .text-primary, 41 - .text-muted { 42 - transition: 43 - color 0.4s ease 0.2s; 44 - } 45 - 46 - /* Respect reduced motion preferences */ 47 - @media (prefers-reduced-motion: reduce) { 48 - *, 49 - *::before, 50 - *::after { 51 - animation-duration: 0.001s !important; 52 - animation-iteration-count: 1 !important; 53 - transition-duration: 0.001s !important; 54 - } 55 - }
-427
src/lib/css/app.css
··· 1 - @import "$css/variables.css"; 2 - @import "$css/animations.css"; 3 - @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap'); 4 - @import url('https://cdn.jsdelivr.net/npm/katex@0.16.11/dist/katex.min.css'); 5 - 6 - /* Minimalist flat styles with Inter font */ 7 - @tailwind base; 8 - @tailwind components; 9 - @tailwind utilities; 10 - 11 - @layer base { 12 - 13 - /* Scrollbar styling */ 14 - ::-webkit-scrollbar { 15 - width: 10px; 16 - height: 10px; 17 - } 18 - 19 - ::-webkit-scrollbar-track { 20 - background: var(--header-footer-bg); 21 - } 22 - 23 - ::-webkit-scrollbar-thumb { 24 - background: var(--button-bg); 25 - border-radius: 5px; 26 - } 27 - 28 - ::-webkit-scrollbar-thumb:hover { 29 - background: var(--button-hover-bg); 30 - } 31 - 32 - * { 33 - color: var(--text-color); 34 - } 35 - 36 - body { 37 - background-color: var(--background-color); 38 - color: var(--text-color); 39 - font-family: "Inter", sans-serif; 40 - font-weight: 300; 41 - /* Optimize font rendering */ 42 - -webkit-font-smoothing: antialiased; 43 - -moz-osx-font-smoothing: grayscale; 44 - text-rendering: optimizeLegibility; 45 - } 46 - 47 - /* This is to ensure KaTeX renders correctly. 48 - It overrides the 'Inter' font and forces the use of KaTeX's specific fonts for math elements. 49 - */ 50 - .katex { 51 - font-family: 'KaTeX_Main', 'KaTeX_Math', 'KaTeX_AMS', 'KaTeX_Typewriter', 'KaTeX_Caligraphic', 'KaTeX_Fraktur', 'KaTeX_SansSerif', 'KaTeX_Script', 'KaTeX_Size1', 'KaTeX_Size2', 'KaTeX_Size3', 'KaTeX_Size4', 'KaTeX_Varepsilon'; 52 - } 53 - 54 - h1 { 55 - @apply text-4xl font-bold; 56 - font-weight: 700; 57 - } 58 - 59 - h2 { 60 - @apply text-3xl font-bold; 61 - font-weight: 650; 62 - } 63 - 64 - h3 { 65 - @apply text-2xl font-bold; 66 - font-weight: 600; 67 - } 68 - 69 - h4 { 70 - @apply text-xl font-semibold; 71 - font-weight: 550; 72 - } 73 - 74 - h5 { 75 - @apply text-lg font-semibold; 76 - font-weight: 500; 77 - } 78 - 79 - h6 { 80 - @apply text-sm font-semibold; 81 - font-weight: 450; 82 - } 83 - 84 - a { 85 - @apply text-[var(--link-color)] hover:text-[var(--link-hover-color)] no-underline; 86 - font-weight: 450; 87 - /* Reduced transition complexity */ 88 - transition: color 0.2s ease; 89 - } 90 - 91 - a:hover { 92 - font-weight: 600; 93 - } 94 - 95 - a, 96 - a:visited, 97 - a:hover, 98 - a:active, 99 - a:focus { 100 - text-decoration: none !important; 101 - } 102 - 103 - /* Last.FM info styles */ 104 - .recent-played { 105 - @apply text-center; 106 - } 107 - 108 - .recent-track-info { 109 - @apply space-y-0.5; 110 - } 111 - 112 - /* Header links - simplified transitions */ 113 - header a, 114 - a.font-medium { 115 - @apply no-underline hover:no-underline inline-block; 116 - /* Only animate on hover, not constantly */ 117 - transition: transform 0.2s ease; 118 - } 119 - 120 - header a:hover, 121 - a.font-medium:hover { 122 - transform: scale(1.1); 123 - } 124 - 125 - /* Typography styles for blog content */ 126 - .prose { 127 - max-width: 100%; 128 - min-width: 0; 129 - overflow-wrap: break-word; 130 - word-wrap: break-word; 131 - } 132 - 133 - /* Left-align headings in blog posts with underlines */ 134 - .prose h1, 135 - .prose h2, 136 - .prose h3, 137 - .prose h4, 138 - .prose h5, 139 - .prose h6 { 140 - @apply text-left relative; 141 - padding-bottom: 8px; 142 - margin-bottom: 1.5rem; 143 - } 144 - 145 - /* Hide screen-reader-only headings completely */ 146 - .prose h1.sr-only, 147 - .prose h2.sr-only, 148 - .prose h3.sr-only, 149 - .prose h4.sr-only, 150 - .prose h5.sr-only, 151 - .prose h6.sr-only { 152 - display: none; 153 - } 154 - 155 - /* Heading underlines - length based on heading level */ 156 - .prose h1::after { 157 - content: ''; 158 - position: absolute; 159 - bottom: 0; 160 - left: 0; 161 - width: 5rem; 162 - height: 4px; 163 - background: var(--link-color); 164 - border-radius: 2px; 165 - } 166 - 167 - .prose h2::after { 168 - content: ''; 169 - position: absolute; 170 - bottom: 0; 171 - left: 0; 172 - width: 4rem; 173 - height: 3px; 174 - background: var(--link-color); 175 - border-radius: 2px; 176 - } 177 - 178 - .prose h3::after { 179 - content: ''; 180 - position: absolute; 181 - bottom: 0; 182 - left: 0; 183 - width: 3rem; 184 - height: 3px; 185 - background: var(--link-color); 186 - border-radius: 2px; 187 - } 188 - 189 - .prose h4::after { 190 - content: ''; 191 - position: absolute; 192 - bottom: 0; 193 - left: 0; 194 - width: 2.5rem; 195 - height: 2px; 196 - background: var(--link-color); 197 - border-radius: 2px; 198 - } 199 - 200 - .prose h5::after { 201 - content: ''; 202 - position: absolute; 203 - bottom: 0; 204 - left: 0; 205 - width: 2rem; 206 - height: 2px; 207 - background: var(--link-color); 208 - border-radius: 2px; 209 - } 210 - 211 - .prose h6::after { 212 - content: ''; 213 - position: absolute; 214 - bottom: 0; 215 - left: 0; 216 - width: 1.5rem; 217 - height: 2px; 218 - background: var(--link-color); 219 - border-radius: 2px; 220 - } 221 - 222 - /* Left-align paragraphs and lists */ 223 - .prose p { 224 - @apply text-left; 225 - } 226 - 227 - .prose ul { 228 - @apply text-left list-disc pl-5; 229 - color: var(--text-color); 230 - } 231 - 232 - .prose ol { 233 - @apply text-left list-decimal pl-5; 234 - color: var(--text-color); 235 - } 236 - 237 - .prose img { 238 - @apply border-0 rounded-lg mx-auto; 239 - max-width: 100%; 240 - height: auto; 241 - } 242 - 243 - a { 244 - color: var(--link-color); 245 - text-decoration: none; 246 - } 247 - 248 - a:hover { 249 - color: var(--link-hover-color); 250 - text-decoration: none; 251 - } 252 - 253 - /* Update prose elements to use variables */ 254 - .prose a { 255 - color: var(--link-color); 256 - text-decoration: none; 257 - } 258 - 259 - .prose a:hover { 260 - color: var(--link-hover-color); 261 - } 262 - 263 - .prose blockquote { 264 - @apply border-l-2 pl-4 rounded-none mx-auto; 265 - border-color: var(--button-bg); 266 - background-color: var(--card-bg); 267 - max-width: 100%; 268 - } 269 - 270 - .prose code { 271 - background-color: var(--card-bg); 272 - color: var(--text-color); 273 - @apply rounded px-2 py-1 font-mono text-sm; 274 - border: 1px solid var(--button-bg); 275 - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); 276 - word-break: break-word; 277 - } 278 - 279 - .prose pre { 280 - background-color: var(--card-bg); 281 - color: var(--text-color); 282 - @apply rounded-lg mx-auto text-left font-mono p-6 overflow-x-auto my-6; 283 - border: 2px solid var(--button-bg); 284 - box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.1); 285 - line-height: 1.6; 286 - position: relative; 287 - max-width: 100%; 288 - } 289 - 290 - .prose pre::before { 291 - content: ''; 292 - position: absolute; 293 - top: 0; 294 - left: 0; 295 - right: 0; 296 - height: 3px; 297 - background: linear-gradient(90deg, var(--link-color), var(--link-hover-color)); 298 - border-radius: 6px 6px 0 0; 299 - } 300 - 301 - .prose pre code { 302 - @apply bg-transparent p-0 border-0; 303 - box-shadow: none; 304 - font-size: 0.9rem; 305 - word-break: normal; 306 - } 307 - 308 - .prose table { 309 - max-width: 100%; 310 - overflow-x: auto; 311 - display: block; 312 - } 313 - 314 - /* Post grid and cards - simplified animations */ 315 - .post-card { 316 - @apply border-0 rounded-md p-4 shadow-md; 317 - background-color: var(--card-bg); 318 - color: var(--text-color); 319 - /* Only animate specific properties on hover */ 320 - transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease; 321 - } 322 - 323 - .post-card:hover { 324 - background-color: var(--header-footer-bg); 325 - transform: scale(1.05); 326 - box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); 327 - } 328 - 329 - /* Profile banner - simplified */ 330 - .profile-banner { 331 - @apply bg-cover bg-center rounded-md border-0; 332 - transition: opacity 0.2s ease; 333 - } 334 - 335 - .profile-banner:hover { 336 - opacity: 0.95; 337 - } 338 - 339 - /* Profile section elements */ 340 - .flex-wrap { 341 - @apply gap-4 items-center; 342 - } 343 - 344 - div.items-center { 345 - @apply p-3; 346 - } 347 - 348 - .rounded-full { 349 - @apply shadow-none; 350 - transition: transform 0.2s ease; 351 - } 352 - 353 - .rounded-full:hover { 354 - transform: scale(1.05); 355 - } 356 - 357 - /* Account handle and related info */ 358 - h4.content-around, 359 - h6.content-around { 360 - @apply my-2 text-left; 361 - } 362 - 363 - /* Links styling within the profile section - simplified */ 364 - .profile-banner a, 365 - .flex-wrap a, 366 - div.items-center a, 367 - h4.content-around a, 368 - h6.content-around a { 369 - @apply no-underline hover:no-underline inline-block; 370 - color: var(--link-color); 371 - transition: color 0.2s ease, transform 0.2s ease; 372 - } 373 - 374 - .profile-banner a:hover, 375 - .flex-wrap a:hover, 376 - div.items-center a:hover, 377 - h4.content-around a:hover, 378 - h6.content-around a:hover { 379 - color: var(--link-hover-color); 380 - transform: scale(1.1); 381 - } 382 - 383 - /* Remove any borders throughout profile section */ 384 - .profile-banner, 385 - .profile-banner *, 386 - .flex-wrap *, 387 - div.items-center *, 388 - .rounded-full, 389 - h4.content-around *, 390 - h6.content-around * { 391 - @apply border-0; 392 - } 393 - 394 - .prose+.flex.justify-between { 395 - @apply mt-12 mb-8; 396 - } 397 - 398 - .prose+.flex.justify-between a { 399 - @apply max-w-[45%] truncate; 400 - } 401 - 402 - .prose+.flex.justify-between a:first-child { 403 - @apply text-left; 404 - } 405 - 406 - .prose+.flex.justify-between a:last-child { 407 - @apply text-right; 408 - } 409 - 410 - .text-link { 411 - color: var(--link-color); 412 - } 413 - 414 - .text-link-hover, 415 - .text-link:hover { 416 - color: var(--link-hover-color); 417 - } 418 - 419 - .text-primary { 420 - color: var(--text-color); 421 - } 422 - 423 - .text-muted { 424 - color: var(--link-color); 425 - opacity: 0.8; 426 - } 427 - }
-547
src/lib/css/variables.css
··· 1 - 2 - /* Amber theme */ 3 - :root.amber { 4 - --background-color: #241c12; 5 - --text-color: #f0e5d0; 6 - --header-footer-bg: #382e1e; 7 - --button-bg: #9c7830; 8 - --button-hover-bg: #b89038; 9 - --link-color: #e0b050; 10 - --link-hover-color: #f0c878; 11 - --card-bg: #382e1e; 12 - --milestone-color-left: #9c7830; 13 - --milestone-color-right: #e0b050; 14 - } 15 - :root.amber.light { 16 - --background-color: #f8f0e0; 17 - --text-color: #483c1e; 18 - --header-footer-bg: #efe0c0; 19 - --button-bg: #c09030; 20 - --button-hover-bg: #d8a848; 21 - --link-color: #8c6824; 22 - --link-hover-color: #6a4c18; 23 - --card-bg: #efe0c0; 24 - --milestone-color-left: #c09030; 25 - --milestone-color-right: #8c6824; 26 - } 27 - 28 - /* Blue theme */ 29 - :root.blue { 30 - --background-color: #121a24; 31 - --text-color: #d8e5f0; 32 - --header-footer-bg: #1e2c3d; 33 - --button-bg: #2d4865; 34 - --button-hover-bg: #3a5c80; 35 - --link-color: #6d9fd8; 36 - --link-hover-color: #8fb8e6; 37 - --card-bg: #1e2c3d; 38 - --milestone-color-left: #2d4865; 39 - --milestone-color-right: #6d9fd8; 40 - } 41 - :root.blue.light { 42 - --background-color: #e0eef8; 43 - --text-color: #1e3048; 44 - --header-footer-bg: #c8ddef; 45 - --button-bg: #5a8cc6; 46 - --button-hover-bg: #7ba6d8; 47 - --link-color: #2a5d7d; 48 - --link-hover-color: #1e4159; 49 - --card-bg: #c8ddef; 50 - --milestone-color-left: #5a8cc6; 51 - --milestone-color-right: #2a5d7d; 52 - } 53 - 54 - /* Bubblegum theme */ 55 - :root.bubblegum { 56 - --background-color: #241824; 57 - --text-color: #f0d8e5; 58 - --header-footer-bg: #3d1e2c; 59 - --button-bg: #c13d7a; 60 - --button-hover-bg: #d65a93; 61 - --link-color: #f07ab6; 62 - --link-hover-color: #f8a6cc; 63 - --card-bg: #3d1e2c; 64 - --milestone-color-left: #c13d7a; 65 - --milestone-color-right: #f07ab6; 66 - } 67 - :root.bubblegum.light { 68 - --background-color: #f8e0ec; 69 - --text-color: #481e36; 70 - --header-footer-bg: #efc8d8; 71 - --button-bg: #d65a93; 72 - --button-hover-bg: #e67aaa; 73 - --link-color: #c13d7a; 74 - --link-hover-color: #a32e65; 75 - --card-bg: #efc8d8; 76 - --milestone-color-left: #d65a93; 77 - --milestone-color-right: #c13d7a; 78 - } 79 - 80 - /* Charcoal theme */ 81 - :root.charcoal { 82 - --background-color: #1a1c1e; 83 - --text-color: #d8dcde; 84 - --header-footer-bg: #282c30; 85 - --button-bg: #485058; 86 - --button-hover-bg: #586068; 87 - --link-color: #90a0b0; 88 - --link-hover-color: #b0c0d0; 89 - --card-bg: #282c30; 90 - --milestone-color-left: #485058; 91 - --milestone-color-right: #90a0b0; 92 - } 93 - :root.charcoal.light { 94 - --background-color: #eef0f2; 95 - --text-color: #282c30; 96 - --header-footer-bg: #dce0e4; 97 - --button-bg: #586068; 98 - --button-hover-bg: #687078; 99 - --link-color: #384048; 100 - --link-hover-color: #282c30; 101 - --card-bg: #dce0e4; 102 - --milestone-color-left: #586068; 103 - --milestone-color-right: #384048; 104 - } 105 - 106 - /* Coral theme */ 107 - :root.coral { 108 - --background-color: #241812; 109 - --text-color: #f0dcd8; 110 - --header-footer-bg: #38241e; 111 - --button-bg: #c05a48; 112 - --button-hover-bg: #d87058; 113 - --link-color: #ff9e80; 114 - --link-hover-color: #ffb8a0; 115 - --card-bg: #38241e; 116 - --milestone-color-left: #c05a48; 117 - --milestone-color-right: #ff9e80; 118 - } 119 - :root.coral.light { 120 - --background-color: #f8ece8; 121 - --text-color: #482418; 122 - --header-footer-bg: #efd8d0; 123 - --button-bg: #e07860; 124 - --button-hover-bg: #f09078; 125 - --link-color: #c05a48; 126 - --link-hover-color: #9c3828; 127 - --card-bg: #efd8d0; 128 - --milestone-color-left: #e07860; 129 - --milestone-color-right: #c05a48; 130 - } 131 - 132 - /* Default green theme */ 133 - :root { 134 - font-family: "Inter", sans-serif; 135 - --background-color: #121c17; 136 - --text-color: #d8e8d8; 137 - --header-footer-bg: #1e2c23; 138 - --button-bg: #2d4839; 139 - --button-hover-bg: #3a5847; 140 - --link-color: #6db880; 141 - --link-hover-color: #8fd0a0; 142 - --card-bg: #1e2c23; 143 - --milestone-color-left: #2d4839; 144 - --milestone-color-right: #6db880; 145 - } 146 - :root.light { 147 - --background-color: #e0f5e8; 148 - --text-color: #1e3026; 149 - --header-footer-bg: #c8e6d2; 150 - --button-bg: #5aaa76; 151 - --button-hover-bg: #7bc293; 152 - --link-color: #2a7d4b; 153 - --link-hover-color: #1e5935; 154 - --card-bg: #c8e6d2; 155 - --milestone-color-left: #5aaa76; 156 - --milestone-color-right: #2a7d4b; 157 - } 158 - 159 - /* High contrast theme */ 160 - :root.high-contrast { 161 - --background-color: #101010; 162 - --text-color: #f0f0f0; 163 - --header-footer-bg: #202020; 164 - --button-bg: #0066cc; 165 - --button-hover-bg: #0052a3; 166 - --link-color: #00ccff; 167 - --link-hover-color: #66e0ff; 168 - --card-bg: #202020; 169 - --milestone-color-left: #0066cc; 170 - --milestone-color-right: #00ccff; 171 - } 172 - :root.high-contrast.light { 173 - --background-color: #f0f0f0; 174 - --text-color: #101010; 175 - --header-footer-bg: #e0e0e0; 176 - --button-bg: #0066cc; 177 - --button-hover-bg: #0052a3; 178 - --link-color: #0000cc; 179 - --link-hover-color: #000099; 180 - --card-bg: #e0e0e0; 181 - --milestone-color-left: #0066cc; 182 - --milestone-color-right: #0000cc; 183 - } 184 - 185 - /* Indigo theme */ 186 - :root.indigo { 187 - --background-color: #181a30; 188 - --text-color: #d8daf0; 189 - --header-footer-bg: #242648; 190 - --button-bg: #3a3d80; 191 - --button-hover-bg: #484c9c; 192 - --link-color: #7a80e0; 193 - --link-hover-color: #9ca0f0; 194 - --card-bg: #242648; 195 - --milestone-color-left: #3a3d80; 196 - --milestone-color-right: #7a80e0; 197 - } 198 - :root.indigo.light { 199 - --background-color: #e8eaf8; 200 - --text-color: #242648; 201 - --header-footer-bg: #d0d4ef; 202 - --button-bg: #484c9c; 203 - --button-hover-bg: #6a70c0; 204 - --link-color: #3a3d80; 205 - --link-hover-color: #242648; 206 - --card-bg: #d0d4ef; 207 - --milestone-color-left: #484c9c; 208 - --milestone-color-right: #3a3d80; 209 - } 210 - 211 - /* Lavender theme */ 212 - :root.lavender { 213 - --background-color: #1c1824; 214 - --text-color: #e5d8f0; 215 - --header-footer-bg: #2c2438; 216 - --button-bg: #604d9c; 217 - --button-hover-bg: #7660bf; 218 - --link-color: #a890e0; 219 - --link-hover-color: #c0aef0; 220 - --card-bg: #2c2438; 221 - --milestone-color-left: #604d9c; 222 - --milestone-color-right: #a890e0; 223 - } 224 - :root.lavender.light { 225 - --background-color: #f0e8f8; 226 - --text-color: #362448; 227 - --header-footer-bg: #e0d4ef; 228 - --button-bg: #7660bf; 229 - --button-hover-bg: #9480d8; 230 - --link-color: #604d9c; 231 - --link-hover-color: #483878; 232 - --card-bg: #e0d4ef; 233 - --milestone-color-left: #7660bf; 234 - --milestone-color-right: #604d9c; 235 - } 236 - 237 - /* Low contrast theme */ 238 - :root.low-contrast { 239 - --background-color: #303030; 240 - --text-color: #b0b0b0; 241 - --header-footer-bg: #404040; 242 - --button-bg: #606060; 243 - --button-hover-bg: #707070; 244 - --link-color: #909090; 245 - --link-hover-color: #a0a0a0; 246 - --card-bg: #404040; 247 - --milestone-color-left: #606060; 248 - --milestone-color-right: #909090; 249 - } 250 - :root.low-contrast.light { 251 - --background-color: #d0d0d0; 252 - --text-color: #505050; 253 - --header-footer-bg: #c0c0c0; 254 - --button-bg: #909090; 255 - --button-hover-bg: #808080; 256 - --link-color: #606060; 257 - --link-hover-color: #505050; 258 - --card-bg: #c0c0c0; 259 - --milestone-color-left: #909090; 260 - --milestone-color-right: #606060; 261 - } 262 - 263 - /* Mint theme */ 264 - :root.mint { 265 - --background-color: #12241c; 266 - --text-color: #d8f0e5; 267 - --header-footer-bg: #1e382c; 268 - --button-bg: #2a9c80; 269 - --button-hover-bg: #38bf9c; 270 - --link-color: #60d0b0; 271 - --link-hover-color: #8ce0c6; 272 - --card-bg: #1e382c; 273 - --milestone-color-left: #2a9c80; 274 - --milestone-color-right: #60d0b0; 275 - } 276 - :root.mint.light { 277 - --background-color: #e0f8f0; 278 - --text-color: #1e4838; 279 - --header-footer-bg: #c8efd8; 280 - --button-bg: #38bf9c; 281 - --button-hover-bg: #60d0b0; 282 - --link-color: #0a8c73; 283 - --link-hover-color: #066352; 284 - --card-bg: #c8efd8; 285 - --milestone-color-left: #38bf9c; 286 - --milestone-color-right: #0a8c73; 287 - } 288 - 289 - /* Ocean theme */ 290 - :root.ocean { 291 - --background-color: #121c24; 292 - --text-color: #d8e5f0; 293 - --header-footer-bg: #1e2c38; 294 - --button-bg: #1e6080; 295 - --button-hover-bg: #2a7a9c; 296 - --link-color: #4da6c9; 297 - --link-hover-color: #7bc0db; 298 - --card-bg: #1e2c38; 299 - --milestone-color-left: #1e6080; 300 - --milestone-color-right: #4da6c9; 301 - } 302 - :root.ocean.light { 303 - --background-color: #e0f0f8; 304 - --text-color: #1e3648; 305 - --header-footer-bg: #c8e0ef; 306 - --button-bg: #2a7a9c; 307 - --button-hover-bg: #4da6c9; 308 - --link-color: #1e6080; 309 - --link-hover-color: #0a3142; 310 - --card-bg: #c8e0ef; 311 - --milestone-color-left: #2a7a9c; 312 - --milestone-color-right: #1e6080; 313 - } 314 - 315 - /* Olive theme */ 316 - :root.olive { 317 - --background-color: #1c2412; 318 - --text-color: #e0ecd0; 319 - --header-footer-bg: #2c381e; 320 - --button-bg: #5a7d30; 321 - --button-hover-bg: #6c9438; 322 - --link-color: #a0cc60; 323 - --link-hover-color: #bce084; 324 - --card-bg: #2c381e; 325 - --milestone-color-left: #5a7d30; 326 - --milestone-color-right: #a0cc60; 327 - } 328 - :root.olive.light { 329 - --background-color: #f0f5e0; 330 - --text-color: #38481e; 331 - --header-footer-bg: #e0eac8; 332 - --button-bg: #6c9438; 333 - --button-hover-bg: #8cb048; 334 - --link-color: #5a7d30; 335 - --link-hover-color: #3c5c18; 336 - --card-bg: #e0eac8; 337 - --milestone-color-left: #6c9438; 338 - --milestone-color-right: #5a7d30; 339 - } 340 - 341 - /* Purple theme */ 342 - :root.purple { 343 - --background-color: #1a1424; 344 - --text-color: #e5d8f0; 345 - --header-footer-bg: #2c1e3d; 346 - --button-bg: #482d65; 347 - --button-hover-bg: #5c3a80; 348 - --link-color: #a06dd8; 349 - --link-hover-color: #b88fe6; 350 - --card-bg: #2c1e3d; 351 - --milestone-color-left: #482d65; 352 - --milestone-color-right: #a06dd8; 353 - } 354 - :root.purple.light { 355 - --background-color: #eee0f8; 356 - --text-color: #301e48; 357 - --header-footer-bg: #ddc8ef; 358 - --button-bg: #8c5ac6; 359 - --button-hover-bg: #a67bd8; 360 - --link-color: #5d2a7d; 361 - --link-hover-color: #411e59; 362 - --card-bg: #ddc8ef; 363 - --milestone-color-left: #8c5ac6; 364 - --milestone-color-right: #5d2a7d; 365 - } 366 - 367 - /* Rose/Crimson theme */ 368 - :root.rose { 369 - --background-color: #241218; 370 - --text-color: #f0d8dc; 371 - --header-footer-bg: #381e24; 372 - --button-bg: #9c2838; 373 - --button-hover-bg: #b83848; 374 - --link-color: #d86070; 375 - --link-hover-color: #e88090; 376 - --card-bg: #381e24; 377 - --milestone-color-left: #9c2838; 378 - --milestone-color-right: #d86070; 379 - } 380 - :root.rose.light { 381 - --background-color: #f8e4e8; 382 - --text-color: #482428; 383 - --header-footer-bg: #efd0d8; 384 - --button-bg: #b83848; 385 - --button-hover-bg: #d86070; 386 - --link-color: #9c2838; 387 - --link-hover-color: #7d1e2b; 388 - --card-bg: #efd0d8; 389 - --milestone-color-left: #b83848; 390 - --milestone-color-right: #9c2838; 391 - } 392 - 393 - /* Sand theme */ 394 - :root.sand { 395 - --background-color: #24201c; 396 - --text-color: #e8e0d0; 397 - --header-footer-bg: #38302a; 398 - --button-bg: #7d6a4d; 399 - --button-hover-bg: #96815f; 400 - --link-color: #c9a96c; 401 - --link-hover-color: #d8bf8c; 402 - --card-bg: #38302a; 403 - --milestone-color-left: #7d6a4d; 404 - --milestone-color-right: #c9a96c; 405 - } 406 - :root.sand.light { 407 - --background-color: #f5efe2; 408 - --text-color: #483a28; 409 - --header-footer-bg: #e8dcc8; 410 - --button-bg: #b09060; 411 - --button-hover-bg: #c5a87c; 412 - --link-color: #7d6a4d; 413 - --link-hover-color: #5a4c38; 414 - --card-bg: #e8dcc8; 415 - --milestone-color-left: #b09060; 416 - --milestone-color-right: #7d6a4d; 417 - } 418 - 419 - /* Slate theme */ 420 - :root.slate { 421 - --background-color: #1e2328; 422 - --text-color: #dde3e8; 423 - --header-footer-bg: #2a3038; 424 - --button-bg: #455060; 425 - --button-hover-bg: #566275; 426 - --link-color: #7da1c6; 427 - --link-hover-color: #a3c0db; 428 - --card-bg: #2a3038; 429 - --milestone-color-left: #455060; 430 - --milestone-color-right: #7da1c6; 431 - } 432 - :root.slate.light { 433 - --background-color: #edf2f7; 434 - --text-color: #2d3748; 435 - --header-footer-bg: #dae1e9; 436 - --button-bg: #5a6c87; 437 - --button-hover-bg: #7889a3; 438 - --link-color: #3a4a5e; 439 - --link-hover-color: #2d3748; 440 - --card-bg: #dae1e9; 441 - --milestone-color-left: #5a6c87; 442 - --milestone-color-right: #3a4a5e; 443 - } 444 - 445 - /* Sunset theme */ 446 - :root.sunset { 447 - --background-color: #24181c; 448 - --text-color: #f0dcd8; 449 - --header-footer-bg: #382a28; 450 - --button-bg: #a34038; 451 - --button-hover-bg: #bf5048; 452 - --link-color: #f07050; 453 - --link-hover-color: #f89070; 454 - --card-bg: #382a28; 455 - --milestone-color-left: #a34038; 456 - --milestone-color-right: #f07050; 457 - } 458 - :root.sunset.light { 459 - --background-color: #f8e8e4; 460 - --text-color: #482824; 461 - --header-footer-bg: #efd4cc; 462 - --button-bg: #c65a48; 463 - --button-hover-bg: #d87a68; 464 - --link-color: #a34038; 465 - --link-hover-color: #7d2820; 466 - --card-bg: #efd4cc; 467 - --milestone-color-left: #c65a48; 468 - --milestone-color-right: #a34038; 469 - } 470 - 471 - /* Teal theme */ 472 - :root.teal { 473 - --background-color: #122420; 474 - --text-color: #d0ece8; 475 - --header-footer-bg: #1e3834; 476 - --button-bg: #1e7d78; 477 - --button-hover-bg: #289994; 478 - --link-color: #4cc5c0; 479 - --link-hover-color: #78d8d4; 480 - --card-bg: #1e3834; 481 - --milestone-color-left: #1e7d78; 482 - --milestone-color-right: #4cc5c0; 483 - } 484 - :root.teal.light { 485 - --background-color: #e0f5f2; 486 - --text-color: #1e3c38; 487 - --header-footer-bg: #c8e8e4; 488 - --button-bg: #289994; 489 - --button-hover-bg: #4cc5c0; 490 - --link-color: #1e7d78; 491 - --link-hover-color: #0a5c58; 492 - --card-bg: #c8e8e4; 493 - --milestone-color-left: #289994; 494 - --milestone-color-right: #1e7d78; 495 - } 496 - 497 - /* Werewolf theme */ 498 - :root.werewolf { 499 - --background-color: #1a1a1a; 500 - --text-color: #f0f0f0; 501 - --header-footer-bg: #2a2a2a; 502 - --button-bg: #8b0000; 503 - --button-hover-bg: #a00000; 504 - --link-color: #ff4500; 505 - --link-hover-color: #ff6347; 506 - --card-bg: #2a2a2a; 507 - --milestone-color-left: #8b0000; 508 - --milestone-color-right: #ff4500; 509 - } 510 - :root.werewolf.light { 511 - --background-color: #f0f0f0; 512 - --text-color: #1a1a1a; 513 - --header-footer-bg: #e0e0e0; 514 - --button-bg: #a00000; 515 - --button-hover-bg: #b50000; 516 - --link-color: #cc3300; 517 - --link-hover-color: #e64d1a; 518 - --card-bg: #e0e0e0; 519 - --milestone-color-left: #a00000; 520 - --milestone-color-right: #cc3300; 521 - } 522 - 523 - /* Wood theme */ 524 - :root.wood { 525 - --background-color: #201a14; 526 - --text-color: #e8dcd0; 527 - --header-footer-bg: #342b20; 528 - --button-bg: #6b4c33; 529 - --button-hover-bg: #7d5a3d; 530 - --link-color: #c49a6c; 531 - --link-hover-color: #d8b48c; 532 - --card-bg: #342b20; 533 - --milestone-color-left: #6b4c33; 534 - --milestone-color-right: #c49a6c; 535 - } 536 - :root.wood.light { 537 - --background-color: #f5efe6; 538 - --text-color: #3c2a1c; 539 - --header-footer-bg: #e6d7c3; 540 - --button-bg: #8c6240; 541 - --button-hover-bg: #a07a54; 542 - --link-color: #6b4c33; 543 - --link-hover-color: #4d3520; 544 - --card-bg: #e6d7c3; 545 - --milestone-color-left: #8c6240; 546 - --milestone-color-right: #6b4c33; 547 - }
+1
src/lib/index.ts
··· 1 + // place files you want to import through the `$lib` alias in this folder.
-3
src/lib/parser/index.ts
··· 1 - export { parse } from './parser.ts'; 2 - export { customSchema } from './schema.ts'; 3 - export { rehypeUpgradeImage } from './plugins.ts';
-34
src/lib/parser/parser.ts
··· 1 - import { extractTextFromMarkdown, calculateWordCount } from "$utils/textProcessor"; 2 - import { createMarkdownProcessor } from "./processor"; 3 - import type { Post, MarkdownPost } from "./types"; 4 - 5 - export async function parse(mdposts: Map<string, MarkdownPost>): Promise<Map<string, Post>> { 6 - const posts: Map<string, Post> = new Map(); 7 - const processor = createMarkdownProcessor(); 8 - 9 - for (const [rkey, post] of mdposts) { 10 - const parsedHtml = String( 11 - await processor.process(post.mdcontent) 12 - ); 13 - 14 - // Ensure mdcontent is a string before processing 15 - const markdownContent = post.mdcontent || ''; 16 - 17 - // Extract plain text for excerpt 18 - const excerpt = await extractTextFromMarkdown(markdownContent); 19 - 20 - // Calculate word count from markdown content 21 - const wordCount = calculateWordCount(markdownContent); 22 - 23 - posts.set(rkey, { 24 - title: post.title, 25 - rkey: post.rkey, 26 - createdAt: post.createdAt, 27 - content: parsedHtml, 28 - excerpt, 29 - wordCount, 30 - }); 31 - } 32 - 33 - return posts; 34 - }
-25
src/lib/parser/plugins.ts
··· 1 - import type { Node, Root, Element, Plugin } from "./types"; 2 - 3 - // Automatically enforce https on PDS images. Heavily inspired by WhiteWind's blob replacer: 4 - // https://github.com/whtwnd/whitewind-blog/blob/7eb8d4623eea617fd562b93d66a0e235323a2f9a/frontend/src/services/DocProvider.tsx#L90 5 - // In theory we could also use their cache, but I'd like to rely on their API as little as possible, opting to pull from the PDS instead. 6 - const upgradeImage = (child: Node): void => { 7 - if (child.type !== "element") { 8 - return; 9 - } 10 - const elem = child as Element; 11 - if (elem.tagName === "img") { 12 - // Ensure https 13 - const src = elem.properties.src; 14 - if (src !== undefined && typeof src === "string") { 15 - elem.properties.src = src.replace(/http:\/\//, "https://"); 16 - } 17 - } 18 - elem.children.forEach((child) => upgradeImage(child)); 19 - }; 20 - 21 - export const rehypeUpgradeImage: Plugin<[], Root, Node> = () => { 22 - return (tree) => { 23 - tree.children.forEach((child) => upgradeImage(child)); 24 - }; 25 - };
-35
src/lib/parser/processor.ts
··· 1 - import rehypeStringify from "rehype-stringify"; 2 - import remarkParse from "remark-parse"; 3 - import remarkGfm from "remark-gfm"; 4 - import remarkRehype from "remark-rehype"; 5 - import rehypeSanitize from "rehype-sanitize"; 6 - import rehypeRaw from "rehype-raw"; 7 - import { unified } from "unified"; 8 - import { customSchema } from "./schema"; 9 - import { rehypeUpgradeImage } from "./plugins"; 10 - import type { Schema } from "./types"; 11 - import remarkBreaks from "remark-breaks"; 12 - import remarkEmoji from "remark-emoji"; 13 - import remarkMath from "remark-math"; 14 - import rehypeKatex from "rehype-katex"; 15 - import rehypeHighlight from "rehype-highlight"; 16 - import rehypeSlug from "rehype-slug"; 17 - import rehypeAutolinkHeadings from "rehype-autolink-headings"; 18 - 19 - export const createMarkdownProcessor = () => { 20 - return unified() 21 - .use(remarkParse, { fragment: true }) 22 - .use(remarkGfm) 23 - .use(remarkBreaks) // Support for hard line breaks 24 - .use(remarkEmoji) // Convert shortcodes like :heart: to emojis 25 - .use(remarkMath) // Parse math syntax 26 - .use(remarkRehype, { allowDangerousHtml: true }) 27 - .use(rehypeRaw) 28 - .use(rehypeKatex) // Convert math to KaTeX HTML 29 - .use(rehypeHighlight, { detect: true }) // Syntax highlighting for code blocks 30 - .use(rehypeSlug) // Add IDs to headings 31 - .use(rehypeAutolinkHeadings) // Add links to headings 32 - .use(rehypeUpgradeImage) 33 - .use(rehypeSanitize, customSchema as Schema) 34 - .use(rehypeStringify); 35 - };
-43
src/lib/parser/schema.ts
··· 1 - import { defaultSchema } from "rehype-sanitize"; 2 - import type { Schema } from "./types"; 3 - 4 - // WhiteWind's own custom schema: 5 - // https://github.com/whtwnd/whitewind-blog/blob/7eb8d4623eea617fd562b93d66a0e235323a2f9a/frontend/src/services/DocProvider.tsx#L122 6 - export const customSchema: Schema = { 7 - ...defaultSchema, 8 - attributes: { 9 - ...defaultSchema.attributes, 10 - font: [...(defaultSchema.attributes?.font ?? []), "color"], 11 - blockquote: [ 12 - ...(defaultSchema.attributes?.blockquote ?? []), 13 - // bluesky 14 - "className", 15 - "dataBlueskyUri", 16 - "dataBlueskyCid", 17 - // instagram 18 - "dataInstgrmCaptioned", 19 - "dataInstgrmPermalink", 20 - "dataInstgrmVersion", 21 - ], 22 - iframe: [ 23 - "width", 24 - "height", 25 - "title", 26 - "frameborder", 27 - "allow", 28 - "referrerpolicy", 29 - "allowfullscreen", 30 - "style", 31 - "seamless", 32 - ["src", /https:\/\/(www.youtube.com|bandcamp.com)\/.*/], 33 - ], 34 - section: ["dataFootnotes", "className"], 35 - }, 36 - tagNames: [ 37 - ...(defaultSchema.tagNames ?? []), 38 - "font", 39 - "mark", 40 - "iframe", 41 - "section", 42 - ], 43 - };
-8
src/lib/parser/types.ts
··· 1 - import type { Schema } from "../../../node_modules/rehype-sanitize/lib"; 2 - import type { Node } from "unist"; 3 - import type { Root, Element } from "hast"; 4 - import type { Plugin } from "unified"; 5 - import type { Post, MarkdownPost } from "$components/shared"; 6 - 7 - export type { Schema, Node, Root, Element, Plugin, Post, MarkdownPost }; 8 -
-412
src/lib/services/blogService.ts
··· 1 - import { getProfile } from "$components/profile/profile"; 2 - import type { Profile, MarkdownPost, Post, BlogServiceResult } from "$components/shared"; 3 - import { parse } from "$lib/parser"; 4 - 5 - // Caching profile and post data 6 - let profile: Profile | undefined; 7 - let allPosts: Map<string, Post> | undefined; 8 - let sortedPosts: Post[] = []; 9 - 10 - // Loading state management 11 - let isLoading = false; 12 - let lastLoadTime = 0; 13 - const CACHE_DURATION = 5 * 60 * 1000; // 5 minutes cache 14 - 15 - /** 16 - * Validates and processes a single blog record 17 - */ 18 - function processRecord(data: any): MarkdownPost | null { 19 - const matches = data["uri"].split("/"); 20 - const rkey = matches[matches.length - 1]; 21 - 22 - // Debugging output for development 23 - if (process.env.NODE_ENV === 'development') { 24 - console.log('=== Record Debug Info ==='); 25 - console.log('URI:', data["uri"]); 26 - console.log('Data structure keys:', Object.keys(data)); 27 - } 28 - 29 - // Safely access record object 30 - const record = data["value"] || data.value; 31 - 32 - if (!record) { 33 - console.warn(`No record value found for ${rkey}`, { 34 - dataKeys: Object.keys(data), 35 - }); 36 - return null; 37 - } 38 - 39 - // Validate structure and public visibility 40 - if (!matches || matches.length !== 5 || !record || (record["visibility"] && record["visibility"] !== "public")) { 41 - if (process.env.NODE_ENV === 'development') { 42 - console.warn('Post skipped due to validation failure:', { 43 - rkey, 44 - matchesLength: matches?.length, 45 - hasRecord: !!record, 46 - visibility: record?.["visibility"], 47 - }); 48 - } 49 - return null; 50 - } 51 - 52 - // Fallback access patterns for fields 53 - const content = record["content"] || record.content || (record.value && record.value.content); 54 - const title = record["title"] || record.title || (record.value && record.value.title); 55 - const createdAt = record["createdAt"] || record.createdAt || (record.value && record.value.createdAt); 56 - 57 - // Skip record if content is missing 58 - if (!content) { 59 - console.warn(`Skipping post with missing content: ${rkey}`); 60 - return null; 61 - } 62 - 63 - // Parse or fallback for createdAt date 64 - let createdAtDate: Date; 65 - if (!createdAt) { 66 - console.warn(`Post missing createdAt, using current time: ${rkey}`); 67 - createdAtDate = new Date(); 68 - } else { 69 - createdAtDate = new Date(createdAt); 70 - if (isNaN(createdAtDate.getTime())) { 71 - console.warn(`Skipping post with invalid date: ${rkey}`, { 72 - rawCreatedAt: createdAt, 73 - }); 74 - return null; 75 - } 76 - } 77 - 78 - // Generate fallback title if none present 79 - const finalTitle = title || `Untitled Post (${rkey})`; 80 - 81 - return { 82 - title: finalTitle, 83 - createdAt: createdAtDate, 84 - mdcontent: content, 85 - rkey, 86 - }; 87 - } 88 - 89 - /** 90 - * Fetches all blog records using pagination (cursor-based) 91 - */ 92 - async function loadAllPages(fetch: typeof window.fetch): Promise<any[]> { 93 - if (!profile) { 94 - throw new Error("Profile not loaded"); 95 - } 96 - 97 - let allRecords: any[] = []; 98 - let cursor: string | undefined | null = undefined; 99 - let pageCount = 0; 100 - const MAX_PAGES = 10; // Prevent infinite loops 101 - 102 - do { 103 - // Construct request URL with optional cursor 104 - const url = new URL(`${profile.pds}/xrpc/com.atproto.repo.listRecords`); 105 - url.searchParams.set("repo", profile.did); 106 - url.searchParams.set("collection", "com.whtwnd.blog.entry"); 107 - if (cursor) { 108 - url.searchParams.set("cursor", cursor); 109 - } 110 - 111 - // Add timeout to fetch request with shorter timeout 112 - const controller = new AbortController(); 113 - const timeoutId = setTimeout(() => controller.abort(), 5000); // Reduced to 5 second timeout 114 - 115 - try { 116 - const res = await fetch(url.toString(), { 117 - signal: controller.signal, 118 - headers: { 119 - 'Accept': 'application/json' 120 - } 121 - }); 122 - 123 - clearTimeout(timeoutId); 124 - 125 - if (!res.ok) throw new Error(`Failed to fetch page: ${res.status}`); 126 - const body = await res.json(); 127 - 128 - // Append new records 129 - if (body.records && Array.isArray(body.records)) { 130 - allRecords = allRecords.concat(body.records); 131 - } 132 - 133 - // Update cursor for next page 134 - cursor = body.cursor ?? null; 135 - pageCount++; 136 - 137 - // Safety check to prevent infinite loops 138 - if (pageCount >= MAX_PAGES) { 139 - console.warn(`Reached maximum page limit (${MAX_PAGES}), stopping pagination`); 140 - break; 141 - } 142 - } catch (error) { 143 - clearTimeout(timeoutId); 144 - if (error instanceof Error && error.name === 'AbortError') { 145 - console.warn('Request timed out, returning partial results'); 146 - break; 147 - } 148 - throw error; 149 - } 150 - } while (cursor); 151 - 152 - return allRecords; 153 - } 154 - 155 - /** 156 - * Loads and processes all blog posts, with pagination support 157 - */ 158 - export async function loadAllPosts(fetch: typeof window.fetch): Promise<BlogServiceResult> { 159 - // Check if we have fresh cached data 160 - const now = Date.now(); 161 - if (allPosts && sortedPosts.length > 0 && (now - lastLoadTime) < CACHE_DURATION && profile) { 162 - console.log('Returning cached blog posts'); 163 - return { 164 - posts: allPosts, 165 - profile: profile, 166 - sortedPosts, 167 - getPost: (rkey: string) => allPosts!.get(rkey) ?? null, 168 - getAdjacentPosts: (rkey: string) => { 169 - const idx = sortedPosts.findIndex(p => p.rkey === rkey); 170 - return { 171 - previous: idx > 0 ? sortedPosts[idx - 1] : null, 172 - next: idx < sortedPosts.length - 1 ? sortedPosts[idx + 1] : null, 173 - }; 174 - }, 175 - }; 176 - } 177 - 178 - // Prevent concurrent loading 179 - if (isLoading) { 180 - console.log('Blog loading already in progress, waiting...'); 181 - // Return cached data if available, otherwise empty result 182 - if (allPosts && sortedPosts.length > 0 && profile) { 183 - return { 184 - posts: allPosts, 185 - profile: profile, 186 - sortedPosts, 187 - getPost: (rkey: string) => allPosts!.get(rkey) ?? null, 188 - getAdjacentPosts: (rkey: string) => { 189 - const idx = sortedPosts.findIndex(p => p.rkey === rkey); 190 - return { 191 - previous: idx > 0 ? sortedPosts[idx - 1] : null, 192 - next: idx < sortedPosts.length - 1 ? sortedPosts[idx + 1] : null, 193 - }; 194 - }, 195 - }; 196 - } 197 - } 198 - 199 - isLoading = true; 200 - 201 - try { 202 - // Add overall timeout for the entire operation 203 - const controller = new AbortController(); 204 - const timeoutId = setTimeout(() => controller.abort(), 15000); // Reduced to 15 second total timeout 205 - 206 - try { 207 - // Load profile once 208 - if (profile === undefined) { 209 - profile = await getProfile(fetch); 210 - } 211 - 212 - // Always fetch fresh data for blog posts 213 - const records = await loadAllPages(fetch); 214 - 215 - const mdposts: Map<string, MarkdownPost> = new Map(); 216 - for (const data of records) { 217 - const processed = processRecord(data); 218 - if (processed) { 219 - mdposts.set(processed.rkey, processed); 220 - } 221 - } 222 - 223 - // Convert markdown posts to full post format 224 - allPosts = await parse(mdposts); 225 - 226 - // Sort posts chronologically (newest first) 227 - sortedPosts = Array.from(allPosts.values()).sort( 228 - (a, b) => b.createdAt.getTime() - a.createdAt.getTime() 229 - ); 230 - 231 - // Assign reverse post numbers 232 - const total = sortedPosts.length; 233 - sortedPosts.forEach((post, index) => { 234 - post.postNumber = total - index; 235 - }); 236 - 237 - lastLoadTime = now; 238 - clearTimeout(timeoutId); 239 - 240 - return { 241 - posts: allPosts, 242 - profile, 243 - sortedPosts, 244 - getPost: (rkey: string) => allPosts?.get(rkey) ?? null, 245 - getAdjacentPosts: (rkey: string) => { 246 - const idx = sortedPosts.findIndex(p => p.rkey === rkey); 247 - return { 248 - previous: idx > 0 ? sortedPosts[idx - 1] : null, 249 - next: idx < sortedPosts.length - 1 ? sortedPosts[idx + 1] : null, 250 - }; 251 - }, 252 - }; 253 - } catch (error) { 254 - clearTimeout(timeoutId); 255 - if (error instanceof Error && error.name === 'AbortError') { 256 - console.warn('Blog loading timed out, returning cached data if available'); 257 - // Return cached data if available, otherwise empty result 258 - if (allPosts && sortedPosts.length > 0 && profile) { 259 - return { 260 - posts: allPosts, 261 - profile: profile, 262 - sortedPosts, 263 - getPost: (rkey: string) => allPosts!.get(rkey) ?? null, 264 - getAdjacentPosts: (rkey: string) => { 265 - const idx = sortedPosts.findIndex(p => p.rkey === rkey); 266 - return { 267 - previous: idx > 0 ? sortedPosts[idx - 1] : null, 268 - next: idx < sortedPosts.length - 1 ? sortedPosts[idx + 1] : null, 269 - }; 270 - }, 271 - }; 272 - } 273 - } 274 - throw error; 275 - } 276 - } catch (err) { 277 - console.error("Error in loadAllPosts:", err); 278 - const fallbackProfile: Profile = profile || { 279 - avatar: '', 280 - banner: '', 281 - displayName: 'Error', 282 - did: '', 283 - handle: 'error', 284 - description: '', 285 - pds: '', 286 - }; 287 - 288 - return { 289 - posts: allPosts || new Map(), 290 - profile: fallbackProfile, 291 - sortedPosts: sortedPosts || [], 292 - getPost: (rkey: string) => allPosts?.get(rkey) ?? null, 293 - getAdjacentPosts: () => ({ previous: null, next: null }), 294 - }; 295 - } finally { 296 - isLoading = false; 297 - } 298 - } 299 - 300 - /** 301 - * Returns the most recent blog posts (for home page, etc.) 302 - * This function now uses a lighter approach for the homepage 303 - */ 304 - export async function getLatestPosts(fetch: typeof window.fetch, limit: number = 3): Promise<Post[]> { 305 - try { 306 - // If we have cached data that's recent enough, use it 307 - const now = Date.now(); 308 - if (sortedPosts.length > 0 && (now - lastLoadTime) < CACHE_DURATION) { 309 - return sortedPosts.slice(0, limit); 310 - } 311 - 312 - // For latest posts, we can use a lighter approach 313 - // Load profile if not already loaded 314 - if (profile === undefined) { 315 - profile = await getProfile(fetch); 316 - } 317 - 318 - // Fetch only the first page of records for latest posts 319 - const url = new URL(`${profile.pds}/xrpc/com.atproto.repo.listRecords`); 320 - url.searchParams.set("repo", profile.did); 321 - url.searchParams.set("collection", "com.whtwnd.blog.entry"); 322 - url.searchParams.set("limit", String(Math.min(limit * 2, 10))); // Get a bit more than needed 323 - 324 - const controller = new AbortController(); 325 - const timeoutId = setTimeout(() => controller.abort(), 8000); // 8 second timeout for latest posts 326 - 327 - try { 328 - const res = await fetch(url.toString(), { 329 - signal: controller.signal, 330 - headers: { 331 - 'Accept': 'application/json' 332 - } 333 - }); 334 - 335 - clearTimeout(timeoutId); 336 - 337 - if (!res.ok) { 338 - throw new Error(`Failed to fetch latest posts: ${res.status}`); 339 - } 340 - 341 - const body = await res.json(); 342 - 343 - const mdposts: Map<string, MarkdownPost> = new Map(); 344 - 345 - if (body.records && Array.isArray(body.records)) { 346 - // Process and sort records by date first 347 - const validRecords = body.records 348 - .map((record: any) => processRecord(record)) 349 - .filter((record: MarkdownPost | null): record is MarkdownPost => record !== null) 350 - .sort((a: MarkdownPost, b: MarkdownPost) => b.createdAt.getTime() - a.createdAt.getTime()) 351 - .slice(0, limit); // Take only what we need 352 - 353 - validRecords.forEach((record: MarkdownPost) => { 354 - mdposts.set(record.rkey, record); 355 - }); 356 - } 357 - 358 - // Convert to full post format 359 - const posts = await parse(mdposts); 360 - const latestPosts = Array.from(posts.values()) 361 - .sort((a, b) => b.createdAt.getTime() - a.createdAt.getTime()) 362 - .slice(0, limit); 363 - 364 - return latestPosts; 365 - 366 - } catch (error) { 367 - clearTimeout(timeoutId); 368 - if (error instanceof Error && error.name === 'AbortError') { 369 - console.warn('Latest posts request timed out'); 370 - // Return cached data if available 371 - if (sortedPosts.length > 0) { 372 - return sortedPosts.slice(0, limit); 373 - } 374 - } 375 - throw error; 376 - } 377 - 378 - } catch (error) { 379 - console.error("Error fetching latest posts:", error); 380 - // Return cached data if available, otherwise empty array 381 - if (sortedPosts.length > 0) { 382 - return sortedPosts.slice(0, limit); 383 - } 384 - return []; 385 - } 386 - } 387 - 388 - /** 389 - * Clears cached profile and posts 390 - */ 391 - export function clearCache(): void { 392 - profile = undefined; 393 - allPosts = undefined; 394 - sortedPosts = []; 395 - lastLoadTime = 0; 396 - isLoading = false; 397 - } 398 - 399 - /** 400 - * Preload essential data only (for critical path) 401 - */ 402 - export async function preloadEssentialData(fetch: typeof window.fetch): Promise<Profile | null> { 403 - try { 404 - if (profile === undefined) { 405 - profile = await getProfile(fetch); 406 - } 407 - return profile; 408 - } catch (error) { 409 - console.error("Error preloading essential data:", error); 410 - return null; 411 - } 412 - }
-150
src/lib/themeLoader.ts
··· 1 - import type { Theme } from "$components/shared/interfaces"; 2 - 3 - // Theme configuration - single source of truth 4 - export const THEMES: Theme[] = [ 5 - { id: "default", name: "Green (Default)" }, 6 - { id: "blue", name: "Blue" }, 7 - { id: "purple", name: "Purple" }, 8 - { id: "bubblegum", name: "Bubblegum" }, 9 - { id: "slate", name: "Slate" }, 10 - { id: "sand", name: "Sand" }, 11 - { id: "ocean", name: "Ocean" }, 12 - { id: "sunset", name: "Sunset" }, 13 - { id: "mint", name: "Mint" }, 14 - { id: "lavender", name: "Lavender" }, 15 - { id: "rose", name: "Rose" }, 16 - { id: "amber", name: "Amber" }, 17 - { id: "teal", name: "Teal" }, 18 - { id: "olive", name: "Olive" }, 19 - { id: "indigo", name: "Indigo" }, 20 - { id: "coral", name: "Coral" }, 21 - { id: "charcoal", name: "Charcoal" }, 22 - { id: "wood", name: "Wood" }, 23 - { id: "werewolf", name: "Werewolf" }, 24 - { id: "high-contrast", name: "High Contrast (Accessibility)" }, 25 - { id: "low-contrast", name: "Low Contrast (Accessibility)" }, 26 - ]; 27 - 28 - export const THEME_STORAGE_KEYS = { 29 - MODE: "theme-mode", 30 - COLOR: "color-theme", 31 - } as const; 32 - 33 - export type ThemeMode = "light" | "dark"; 34 - 35 - /** 36 - * Applies theme classes to the document element 37 - */ 38 - export function applyTheme(isDarkMode: boolean, themeId: string): void { 39 - // Remove all existing theme classes 40 - document.documentElement.classList.remove("light"); 41 - THEMES.forEach((theme) => { 42 - if (theme.id !== "default") { 43 - document.documentElement.classList.remove(theme.id); 44 - } 45 - }); 46 - 47 - // Apply light mode class if needed 48 - if (!isDarkMode) { 49 - document.documentElement.classList.add("light"); 50 - } 51 - 52 - // Apply color theme class if not default 53 - if (themeId !== "default") { 54 - document.documentElement.classList.add(themeId); 55 - } 56 - } 57 - 58 - /** 59 - * Gets the user's theme preferences from localStorage and system 60 - */ 61 - export function getThemePreferences(): { isDarkMode: boolean; themeId: string } { 62 - const savedThemeMode = localStorage.getItem(THEME_STORAGE_KEYS.MODE); 63 - const savedColorTheme = localStorage.getItem(THEME_STORAGE_KEYS.COLOR); 64 - 65 - let isDarkMode: boolean; 66 - if (savedThemeMode) { 67 - isDarkMode = savedThemeMode === "dark"; 68 - } else { 69 - // Use system preference as default 70 - const prefersDark = window.matchMedia("(prefers-color-scheme: dark)").matches; 71 - isDarkMode = prefersDark; 72 - } 73 - 74 - const themeId = savedColorTheme || "default"; 75 - 76 - return { isDarkMode, themeId }; 77 - } 78 - 79 - /** 80 - * Saves theme preferences to localStorage 81 - */ 82 - export function saveThemePreferences(isDarkMode: boolean, themeId: string): void { 83 - localStorage.setItem(THEME_STORAGE_KEYS.MODE, isDarkMode ? "dark" : "light"); 84 - localStorage.setItem(THEME_STORAGE_KEYS.COLOR, themeId); 85 - } 86 - 87 - /** 88 - * Updates the theme-color meta tag for browser UI 89 - */ 90 - export function updateThemeColorMeta(): void { 91 - const themeColor = getComputedStyle(document.documentElement) 92 - .getPropertyValue("--background-color") 93 - .trim(); 94 - 95 - let metaTag = document.querySelector('meta[name="theme-color"]') as HTMLMetaElement; 96 - if (!metaTag) { 97 - metaTag = document.createElement("meta"); 98 - metaTag.setAttribute("name", "theme-color"); 99 - document.head.appendChild(metaTag); 100 - } 101 - metaTag.setAttribute("content", themeColor); 102 - } 103 - 104 - /** 105 - * Dispatches a custom event when theme changes 106 - */ 107 - export function dispatchThemeChangeEvent(isDarkMode: boolean, themeId: string): void { 108 - document.dispatchEvent( 109 - new CustomEvent("themeChanged", { 110 - detail: { isDarkMode, theme: themeId }, 111 - }) 112 - ); 113 - } 114 - 115 - /** 116 - * Sets up system theme change listener 117 - */ 118 - export function setupSystemThemeListener(): void { 119 - window 120 - .matchMedia("(prefers-color-scheme: dark)") 121 - .addEventListener("change", (e) => { 122 - // Only apply system preference if user hasn't set a manual preference 123 - if (localStorage.getItem(THEME_STORAGE_KEYS.MODE) === null) { 124 - const { themeId } = getThemePreferences(); 125 - applyTheme(e.matches, themeId); 126 - updateThemeColorMeta(); 127 - dispatchThemeChangeEvent(e.matches, themeId); 128 - } 129 - }); 130 - } 131 - 132 - /** 133 - * Initializes theme system - should be called as early as possible 134 - */ 135 - export function initializeTheme(): void { 136 - const { isDarkMode, themeId } = getThemePreferences(); 137 - applyTheme(isDarkMode, themeId); 138 - 139 - // Update meta tag when DOM is ready 140 - if (document.readyState === "loading") { 141 - document.addEventListener("DOMContentLoaded", updateThemeColorMeta); 142 - } else { 143 - updateThemeColorMeta(); 144 - } 145 - } 146 - 147 - // Auto-initialize when script loads (for inline usage) 148 - if (typeof window !== "undefined") { 149 - initializeTheme(); 150 - }
-66
src/lib/utils/cache.ts
··· 1 - // Server-side in-memory TTL cache (for server endpoints) 2 - export interface CacheEntry<T> { 3 - value: T | undefined; 4 - timestamp: number; 5 - } 6 - 7 - export class TTLCache<T> { 8 - private entry: CacheEntry<T> = { value: undefined, timestamp: 0 }; 9 - constructor(private ttlMs: number) {} 10 - 11 - get(): T | undefined { 12 - if (Date.now() - this.entry.timestamp > this.ttlMs) { 13 - this.entry.value = undefined; 14 - } 15 - return this.entry.value; 16 - } 17 - 18 - set(value: T) { 19 - this.entry.value = value; 20 - this.entry.timestamp = Date.now(); 21 - } 22 - 23 - clear() { 24 - this.entry.value = undefined; 25 - this.entry.timestamp = 0; 26 - } 27 - } 28 - /** 29 - * Caches data in localStorage with a specified expiry time. 30 - * @param key The key to store the data under. 31 - * @param data The data to store. 32 - * @param ttl The time-to-live for the cache in milliseconds (default: 1 hour). 33 - */ 34 - export function setCache<T>(key: string, data: T, ttl: number = 3600000): void { 35 - if (typeof window === 'undefined') { 36 - return; // Don't cache on the server 37 - } 38 - const now = new Date().getTime(); 39 - const item = { 40 - data: data, 41 - expiry: now + ttl, 42 - }; 43 - localStorage.setItem(key, JSON.stringify(item)); 44 - } 45 - 46 - /** 47 - * Retrieves data from localStorage if it's not expired. 48 - * @param key The key to retrieve the data from. 49 - * @returns The cached data, or null if expired or not found. 50 - */ 51 - export function getCache<T>(key: string): T | null { 52 - if (typeof window === 'undefined') { 53 - return null; // No cache on the server 54 - } 55 - const itemStr = localStorage.getItem(key); 56 - if (!itemStr) { 57 - return null; 58 - } 59 - const item = JSON.parse(itemStr); 60 - const now = new Date().getTime(); 61 - if (now > item.expiry) { 62 - localStorage.removeItem(key); 63 - return null; 64 - } 65 - return item.data; 66 - }
-317
src/lib/utils/debug.ts
··· 1 - /** 2 - * Comprehensive debugging utility for development and production 3 - */ 4 - 5 - export interface DebugOptions { 6 - enabled?: boolean; 7 - level?: 'error' | 'warn' | 'info' | 'debug' | 'trace'; 8 - prefix?: string; 9 - includeTimestamp?: boolean; 10 - includeStack?: boolean; 11 - maxDepth?: number; 12 - } 13 - 14 - export interface DebugContext { 15 - file: string; 16 - function: string; 17 - line?: number; 18 - component?: string; 19 - userAgent?: string; 20 - timestamp: string; 21 - } 22 - 23 - class Debugger { 24 - private options: DebugOptions; 25 - private context: Partial<DebugContext> = {}; 26 - 27 - constructor(options: DebugOptions = {}) { 28 - this.options = { 29 - enabled: process.env.NODE_ENV === 'development' || process.env.DEBUG === 'true', 30 - level: 'info', 31 - prefix: '[DEBUG]', 32 - includeTimestamp: true, 33 - includeStack: false, 34 - maxDepth: 3, 35 - ...options 36 - }; 37 - } 38 - 39 - /** 40 - * Set context for all subsequent debug calls 41 - */ 42 - setContext(context: Partial<DebugContext>): void { 43 - this.context = { ...this.context, ...context }; 44 - } 45 - 46 - /** 47 - * Create a new debugger instance with specific context 48 - */ 49 - withContext(context: Partial<DebugContext>): Debugger { 50 - const newDebugger = new Debugger(this.options); 51 - newDebugger.setContext({ ...this.context, ...context }); 52 - return newDebugger; 53 - } 54 - 55 - /** 56 - * Log error messages 57 - */ 58 - error(message: string, data?: any, error?: Error): void { 59 - if (!this.shouldLog('error')) return; 60 - this.log('error', message, data, error); 61 - } 62 - 63 - /** 64 - * Log warning messages 65 - */ 66 - warn(message: string, data?: any): void { 67 - if (!this.shouldLog('warn')) return; 68 - this.log('warn', message, data); 69 - } 70 - 71 - /** 72 - * Log info messages 73 - */ 74 - info(message: string, data?: any): void { 75 - if (!this.shouldLog('info')) return; 76 - this.log('info', message, data); 77 - } 78 - 79 - /** 80 - * Log debug messages 81 - */ 82 - debug(message: string, data?: any): void { 83 - if (!this.shouldLog('debug')) return; 84 - this.log('debug', message, data); 85 - } 86 - 87 - /** 88 - * Log trace messages (most verbose) 89 - */ 90 - trace(message: string, data?: any): void { 91 - if (!this.shouldLog('trace')) return; 92 - this.log('trace', message, data); 93 - } 94 - 95 - /** 96 - * Log function entry 97 - */ 98 - enter(functionName: string, params?: any): void { 99 - if (!this.shouldLog('debug')) return; 100 - this.debug(`→ Entering ${functionName}`, params); 101 - } 102 - 103 - /** 104 - * Log function exit 105 - */ 106 - exit(functionName: string, result?: any): void { 107 - if (!this.shouldLog('debug')) return; 108 - this.debug(`← Exiting ${functionName}`, result); 109 - } 110 - 111 - /** 112 - * Log performance timing 113 - */ 114 - time(label: string): () => void { 115 - if (!this.shouldLog('debug')) return () => {}; 116 - 117 - const start = performance.now(); 118 - this.debug(`⏱️ Starting timer: ${label}`); 119 - 120 - return () => { 121 - const duration = performance.now() - start; 122 - this.debug(`⏱️ Timer ${label}: ${duration.toFixed(2)}ms`); 123 - }; 124 - } 125 - 126 - /** 127 - * Log memory usage (if available) 128 - */ 129 - memory(label?: string): void { 130 - if (!this.shouldLog('debug')) return; 131 - 132 - if (typeof performance !== 'undefined' && 'memory' in performance) { 133 - const mem = (performance as any).memory; 134 - this.debug(`💾 Memory ${label || 'usage'}:`, { 135 - used: `${(mem.usedJSHeapSize / 1024 / 1024).toFixed(2)}MB`, 136 - total: `${(mem.totalJSHeapSize / 1024 / 1024).toFixed(2)}MB`, 137 - limit: `${(mem.jsHeapSizeLimit / 1024 / 1024).toFixed(2)}MB` 138 - }); 139 - } 140 - } 141 - 142 - /** 143 - * Log API calls 144 - */ 145 - api(method: string, url: string, data?: any, response?: any): void { 146 - if (!this.shouldLog('debug')) return; 147 - this.debug(`🌐 API ${method} ${url}`, { request: data, response }); 148 - } 149 - 150 - /** 151 - * Log component lifecycle events 152 - */ 153 - lifecycle(component: string, event: string, data?: any): void { 154 - if (!this.shouldLog('debug')) return; 155 - this.debug(`🔄 ${component} ${event}`, data); 156 - } 157 - 158 - /** 159 - * Log state changes 160 - */ 161 - state(component: string, oldState: any, newState: any): void { 162 - if (!this.shouldLog('debug')) return; 163 - this.debug(`📊 ${component} state change`, { from: oldState, to: newState }); 164 - } 165 - 166 - /** 167 - * Log user interactions 168 - */ 169 - interaction(action: string, target: string, data?: any): void { 170 - if (!this.shouldLog('debug')) return; 171 - this.debug(`👆 User interaction: ${action} on ${target}`, data); 172 - } 173 - 174 - /** 175 - * Log errors with full context 176 - */ 177 - errorWithContext(message: string, error: Error, context?: any): void { 178 - if (!this.shouldLog('error')) return; 179 - 180 - this.error(message, { 181 - ...context, 182 - error: { 183 - name: error.name, 184 - message: error.message, 185 - stack: this.options.includeStack ? error.stack : undefined 186 - } 187 - }); 188 - } 189 - 190 - /** 191 - * Check if logging should occur for given level 192 - */ 193 - private shouldLog(level: string): boolean { 194 - if (!this.options.enabled) return false; 195 - 196 - const levels = ['error', 'warn', 'info', 'debug', 'trace']; 197 - const currentLevelIndex = levels.indexOf(this.options.level || 'info'); 198 - const messageLevelIndex = levels.indexOf(level); 199 - 200 - return messageLevelIndex <= currentLevelIndex; 201 - } 202 - 203 - /** 204 - * Format and output log message 205 - */ 206 - private log(level: string, message: string, data?: any, error?: Error): void { 207 - const timestamp = this.options.includeTimestamp ? new Date().toISOString() : ''; 208 - const prefix = this.options.prefix || '[DEBUG]'; 209 - const levelEmoji = this.getLevelEmoji(level); 210 - 211 - let output = `${prefix} ${levelEmoji} ${level.toUpperCase()}`; 212 - 213 - if (timestamp) { 214 - output += ` [${timestamp}]`; 215 - } 216 - 217 - if (this.context.file) { 218 - output += ` [${this.context.file}`; 219 - if (this.context.function) output += `:${this.context.function}`; 220 - if (this.context.line) output += `:${this.context.line}`; 221 - output += ']'; 222 - } 223 - 224 - output += ` ${message}`; 225 - 226 - // Console output based on level 227 - switch (level) { 228 - case 'error': 229 - console.error(output, data || ''); 230 - if (error) console.error(error); 231 - break; 232 - case 'warn': 233 - console.warn(output, data || ''); 234 - break; 235 - case 'info': 236 - console.info(output, data || ''); 237 - break; 238 - case 'debug': 239 - case 'trace': 240 - console.log(output, data || ''); 241 - break; 242 - } 243 - } 244 - 245 - /** 246 - * Get emoji for log level 247 - */ 248 - private getLevelEmoji(level: string): string { 249 - switch (level) { 250 - case 'error': return '❌'; 251 - case 'warn': return '⚠️'; 252 - case 'info': return 'ℹ️'; 253 - case 'debug': return '🐛'; 254 - case 'trace': return '🔍'; 255 - default: return '📝'; 256 - } 257 - } 258 - 259 - /** 260 - * Safely stringify objects with circular reference handling 261 - */ 262 - private safeStringify(obj: any, depth: number = 0): string { 263 - if (depth > (this.options.maxDepth || 3)) return '[Max Depth Reached]'; 264 - if (obj === null) return 'null'; 265 - if (typeof obj === 'undefined') return 'undefined'; 266 - if (typeof obj === 'string') return obj; 267 - if (typeof obj === 'number' || typeof obj === 'boolean') return String(obj); 268 - 269 - try { 270 - if (obj instanceof Error) { 271 - return `Error: ${obj.message}`; 272 - } 273 - 274 - if (Array.isArray(obj)) { 275 - return `[${obj.map(item => this.safeStringify(item, depth + 1)).join(', ')}]`; 276 - } 277 - 278 - if (typeof obj === 'object') { 279 - const entries = Object.entries(obj).map(([key, value]) => 280 - `${key}: ${this.safeStringify(value, depth + 1)}` 281 - ); 282 - return `{${entries.join(', ')}}`; 283 - } 284 - 285 - return String(obj); 286 - } catch (error) { 287 - return '[Circular Reference or Unstringifiable]'; 288 - } 289 - } 290 - } 291 - 292 - // Create default debugger instance 293 - export const debug = new Debugger(); 294 - 295 - // Create specialized debuggers for common use cases 296 - export const createFileDebugger = (file: string) => debug.withContext({ file }); 297 - export const createComponentDebugger = (component: string) => debug.withContext({ component }); 298 - export const createFunctionDebugger = (file: string, functionName: string) => 299 - debug.withContext({ file, function: functionName }); 300 - 301 - // Export the Debugger class for custom instances 302 - export { Debugger }; 303 - 304 - // Utility functions for quick debugging 305 - export const quickDebug = { 306 - log: (message: string, data?: any) => debug.debug(message, data), 307 - error: (message: string, error?: Error) => debug.error(message, undefined, error), 308 - warn: (message: string, data?: any) => debug.warn(message, data), 309 - info: (message: string, data?: any) => debug.info(message, data), 310 - trace: (message: string, data?: any) => debug.trace(message, data) 311 - }; 312 - 313 - // Environment detection helpers 314 - export const isDevelopment = () => process.env.NODE_ENV === 'development'; 315 - export const isProduction = () => process.env.NODE_ENV === 'production'; 316 - export const isTest = () => process.env.NODE_ENV === 'test'; 317 - export const isDebugEnabled = () => process.env.DEBUG === 'true';
-237
src/lib/utils/dynamicImports.ts
··· 1 - /** 2 - * Dynamic import utilities for code splitting and reducing initial bundle size 3 - */ 4 - 5 - import { createFileDebugger } from './debug.js'; 6 - 7 - const debug = createFileDebugger('dynamicImports.ts'); 8 - 9 - // Lazy load markdown processing libraries 10 - export const loadMarkdownProcessor = async () => { 11 - debug.enter('loadMarkdownProcessor'); 12 - const timer = debug.time('loadMarkdownProcessor'); 13 - 14 - try { 15 - debug.info('Loading markdown processing libraries...'); 16 - 17 - const [ 18 - { unified }, 19 - { remark }, 20 - remarkGfm, 21 - remarkMath, 22 - remarkEmoji, 23 - remarkBreaks, 24 - remarkRehype, 25 - rehypeStringify, 26 - rehypeRaw, 27 - rehypeSanitize, 28 - rehypeHighlight, 29 - rehypeKatex, 30 - rehypeSlug, 31 - rehypeAutolinkHeadings 32 - ] = await Promise.all([ 33 - import('unified').then(module => { 34 - debug.debug('Loaded unified module', { hasUnified: !!module.unified }); 35 - return module; 36 - }), 37 - import('remark').then(module => { 38 - debug.debug('Loaded remark module', { hasRemark: !!module.remark }); 39 - return module; 40 - }), 41 - import('remark-gfm').then(module => { 42 - debug.debug('Loaded remark-gfm module', { hasDefault: !!module.default }); 43 - return module.default; 44 - }), 45 - import('remark-math').then(module => { 46 - debug.debug('Loaded remark-math module', { hasDefault: !!module.default }); 47 - return module.default; 48 - }), 49 - import('remark-emoji').then(module => { 50 - debug.debug('Loaded remark-emoji module', { hasDefault: !!module.default }); 51 - return module.default; 52 - }), 53 - import('remark-breaks').then(module => { 54 - debug.debug('Loaded remark-breaks module', { hasDefault: !!module.default }); 55 - return module.default; 56 - }), 57 - import('remark-rehype').then(module => { 58 - debug.debug('Loaded remark-rehype module', { hasDefault: !!module.default }); 59 - return module.default; 60 - }), 61 - import('rehype-stringify').then(module => { 62 - debug.debug('Loaded rehype-stringify module', { hasDefault: !!module.default }); 63 - return module.default; 64 - }), 65 - import('rehype-raw').then(module => { 66 - debug.debug('Loaded rehype-raw module', { hasDefault: !!module.default }); 67 - return module.default; 68 - }), 69 - import('rehype-sanitize').then(module => { 70 - debug.debug('Loaded rehype-sanitize module', { hasDefault: !!module.default }); 71 - return module.default; 72 - }), 73 - import('rehype-highlight').then(module => { 74 - debug.debug('Loaded rehype-highlight module', { hasDefault: !!module.default }); 75 - return module.default; 76 - }), 77 - import('rehype-katex').then(module => { 78 - debug.debug('Loaded rehype-katex module', { hasDefault: !!module.default }); 79 - return module.default; 80 - }), 81 - import('rehype-slug').then(module => { 82 - debug.debug('Loaded rehype-slug module', { hasDefault: !!module.default }); 83 - return module.default; 84 - }), 85 - import('rehype-autolink-headings').then(module => { 86 - debug.debug('Loaded rehype-autolink-headings module', { hasDefault: !!module.default }); 87 - return module.default; 88 - }) 89 - ]); 90 - 91 - const result = { 92 - unified, 93 - remark, 94 - remarkGfm, 95 - remarkMath, 96 - remarkEmoji, 97 - remarkBreaks, 98 - remarkRehype, 99 - rehypeStringify, 100 - rehypeRaw, 101 - rehypeSanitize, 102 - rehypeHighlight, 103 - rehypeKatex, 104 - rehypeSlug, 105 - rehypeAutolinkHeadings 106 - }; 107 - 108 - debug.info('Successfully loaded all markdown processing libraries', { 109 - loadedModules: Object.keys(result).filter(key => result[key as keyof typeof result]) 110 - }); 111 - 112 - timer(); 113 - debug.exit('loadMarkdownProcessor', { success: true, moduleCount: Object.keys(result).length }); 114 - return result; 115 - } catch (error) { 116 - debug.errorWithContext('Failed to load markdown processing libraries', error as Error, { 117 - function: 'loadMarkdownProcessor' 118 - }); 119 - timer(); 120 - debug.exit('loadMarkdownProcessor', { success: false, error: error }); 121 - throw error; 122 - } 123 - }; 124 - 125 - // Lazy load utility libraries 126 - export const loadUtilities = async () => { 127 - debug.enter('loadUtilities'); 128 - const timer = debug.time('loadUtilities'); 129 - 130 - try { 131 - debug.info('Loading utility libraries...'); 132 - 133 - const [sanitizeHtml] = await Promise.all([ 134 - import('sanitize-html').then(module => { 135 - debug.debug('Loaded sanitize-html module', { hasDefault: !!module.default }); 136 - return module.default; 137 - }) 138 - ]); 139 - 140 - const result = { sanitizeHtml }; 141 - 142 - debug.info('Successfully loaded utility libraries', { 143 - loadedModules: Object.keys(result) 144 - }); 145 - 146 - timer(); 147 - debug.exit('loadUtilities', { success: true, moduleCount: Object.keys(result).length }); 148 - return result; 149 - } catch (error) { 150 - debug.errorWithContext('Failed to load utility libraries', error as Error, { 151 - function: 'loadUtilities' 152 - }); 153 - timer(); 154 - debug.exit('loadUtilities', { success: false, error: error }); 155 - throw error; 156 - } 157 - }; 158 - 159 - // Preload critical dependencies when needed 160 - export const preloadDependencies = async (type: 'markdown' | 'og' | 'utilities') => { 161 - debug.enter('preloadDependencies', { type }); 162 - const timer = debug.time(`preloadDependencies:${type}`); 163 - 164 - try { 165 - debug.info(`Preloading dependencies for type: ${type}`); 166 - 167 - let result; 168 - switch (type) { 169 - case 'markdown': 170 - result = await loadMarkdownProcessor(); 171 - break; 172 - case 'utilities': 173 - result = await loadUtilities(); 174 - break; 175 - default: 176 - const error = new Error(`Unknown dependency type: ${type}`); 177 - debug.error(`Unknown dependency type: ${type}`); 178 - throw error; 179 - } 180 - 181 - debug.info(`Successfully preloaded dependencies for type: ${type}`, { 182 - type, 183 - resultKeys: Object.keys(result || {}) 184 - }); 185 - 186 - timer(); 187 - debug.exit('preloadDependencies', { success: true, type, resultKeys: Object.keys(result || {}) }); 188 - return result; 189 - } catch (error) { 190 - debug.errorWithContext(`Failed to preload dependencies for type: ${type}`, error as Error, { 191 - function: 'preloadDependencies', 192 - type 193 - }); 194 - timer(); 195 - debug.exit('preloadDependencies', { success: false, type, error: error }); 196 - throw error; 197 - } 198 - }; 199 - 200 - // Check if dependencies are already loaded 201 - export const isDependencyLoaded = (type: string): boolean => { 202 - debug.enter('isDependencyLoaded', { type }); 203 - 204 - let result = false; 205 - try { 206 - switch (type) { 207 - case 'markdown': 208 - result = typeof window !== 'undefined' && 'unified' in window; 209 - break; 210 - case 'og': 211 - result = typeof window !== 'undefined' && 'satori' in window; 212 - break; 213 - case 'utilities': 214 - result = typeof window !== 'undefined' && 'sanitizeHtml' in window; 215 - break; 216 - default: 217 - debug.warn(`Unknown dependency type: ${type}`); 218 - result = false; 219 - } 220 - 221 - debug.debug(`Dependency ${type} loaded status: ${result}`, { 222 - type, 223 - isWindow: typeof window !== 'undefined', 224 - result 225 - }); 226 - 227 - debug.exit('isDependencyLoaded', { type, result }); 228 - return result; 229 - } catch (error) { 230 - debug.errorWithContext(`Error checking if dependency ${type} is loaded`, error as Error, { 231 - function: 'isDependencyLoaded', 232 - type 233 - }); 234 - debug.exit('isDependencyLoaded', { type, result: false, error: error }); 235 - return false; 236 - } 237 - };
-140
src/lib/utils/formatters.ts
··· 1 - /** 2 - * Returns the ordinal suffix for a given number (e.g., "st", "nd", "rd", "th"). 3 - * @param num The number to get the ordinal suffix for. 4 - * @returns The ordinal suffix. 5 - */ 6 - export function getOrdinalSuffix(num: number): string { 7 - const lastDigit = num % 10; 8 - const lastTwoDigits = num % 100; 9 - 10 - if (lastTwoDigits >= 11 && lastTwoDigits <= 13) { 11 - return 'th'; 12 - } 13 - 14 - switch (lastDigit) { 15 - case 1: 16 - return 'st'; 17 - case 2: 18 - return 'nd'; 19 - case 3: 20 - return 'rd'; 21 - default: 22 - return 'th'; 23 - } 24 - } 25 - 26 - export function formatDate( 27 - date: Date | string, 28 - locale: string = typeof window !== "undefined" 29 - ? window.navigator.language 30 - : "en-GB" 31 - ): string { 32 - const dateObj = new Date(date); 33 - 34 - const options: Intl.DateTimeFormatOptions = { 35 - year: "numeric", 36 - month: "long", 37 - day: "numeric", 38 - hour: "2-digit", 39 - minute: "2-digit", 40 - }; 41 - 42 - const formattedDate = new Intl.DateTimeFormat(locale, options).format( 43 - dateObj 44 - ); 45 - 46 - // Only add ordinal suffix for English locales 47 - if (locale.startsWith("en")) { 48 - const day = dateObj.getDate(); 49 - return formattedDate.replace(/(\d+)/, `$1${getOrdinalSuffix(day)}`); 50 - } 51 - 52 - return formattedDate; 53 - } 54 - 55 - export function formatMonthYear( 56 - date: Date | string, 57 - locale: string = typeof window !== "undefined" 58 - ? window.navigator.language 59 - : "en-GB" 60 - ): string { 61 - const dateObj = new Date(date); 62 - 63 - const options: Intl.DateTimeFormatOptions = { 64 - year: "numeric", 65 - month: "long", 66 - }; 67 - 68 - return new Intl.DateTimeFormat(locale, options).format(dateObj); 69 - } 70 - 71 - // Function to format a date relative to the current time (e.g., '2 hours ago') 72 - export function formatRelativeTime( 73 - date: Date | string, 74 - locale: string = typeof window !== "undefined" 75 - ? window.navigator.language 76 - : "en-GB" 77 - ): string { 78 - const dateObj = new Date(date); 79 - const now = new Date(); 80 - const diffInSeconds = Math.floor((now.getTime() - dateObj.getTime()) / 1000); 81 - 82 - const rtf = new Intl.RelativeTimeFormat(locale, { numeric: "auto" }); 83 - 84 - // Granular cases 85 - if (diffInSeconds < 0) { 86 - // Future date 87 - if (Math.abs(diffInSeconds) < 10) return locale.startsWith('en') ? 'just now' : rtf.format(0, 'second'); 88 - if (Math.abs(diffInSeconds) < 60) return rtf.format(Math.abs(diffInSeconds), 'second'); 89 - if (Math.abs(diffInSeconds) < 3600) return rtf.format(Math.round(Math.abs(diffInSeconds) / 60), 'minute'); 90 - if (Math.abs(diffInSeconds) < 86400) return rtf.format(Math.round(Math.abs(diffInSeconds) / 3600), 'hour'); 91 - // Fallback to default units for larger future times 92 - } else { 93 - // Past date 94 - if (diffInSeconds < 10) return locale.startsWith('en') ? 'just now' : rtf.format(0, 'second'); 95 - if (diffInSeconds < 60) return rtf.format(-diffInSeconds, 'second'); 96 - if (diffInSeconds < 3600) return rtf.format(-Math.floor(diffInSeconds / 60), 'minute'); 97 - if (diffInSeconds < 86400) return rtf.format(-Math.floor(diffInSeconds / 3600), 'hour'); 98 - // Fallback to default units for larger past times 99 - } 100 - 101 - const units: { unit: Intl.RelativeTimeFormatUnit; seconds: number }[] = [ 102 - { unit: "year", seconds: 31536000 }, 103 - { unit: "month", seconds: 2592000 }, 104 - { unit: "week", seconds: 604800 }, 105 - { unit: "day", seconds: 86400 }, 106 - ]; 107 - 108 - for (const { unit, seconds } of units) { 109 - if (Math.abs(diffInSeconds) >= seconds) { 110 - let value; 111 - if (unit === "year" || unit === "month") { 112 - value = Math.floor(diffInSeconds / seconds); 113 - } else { 114 - value = Math.round(diffInSeconds / seconds); 115 - } 116 - return rtf.format(-value, unit); 117 - } 118 - } 119 - 120 - return rtf.format(0, "second"); // Fallback, should not happen 121 - } 122 - 123 - /** 124 - * Formats a number according to the specified locale and options. 125 - * @param value The number to format. 126 - * @param locale The locale to use for formatting (e.g., 'en-GB', 'en-US'). Defaults to 'en-GB'. 127 - * @param options Options for number formatting, conforming to Intl.NumberFormatOptions. 128 - * @returns The formatted number string. 129 - */ 130 - export function formatNumber(value: number, locale: string = 'en-GB', options?: Intl.NumberFormatOptions): string { 131 - if (typeof value !== 'number') { 132 - return String(value); // Return as string if not a number 133 - } 134 - try { 135 - return new Intl.NumberFormat(locale, options).format(value); 136 - } catch (error) { 137 - console.error(`Error formatting number for locale ${locale}:`, error); 138 - return value.toLocaleString(locale); // Fallback to basic toLocaleString on error 139 - } 140 - }
-10
src/lib/utils/index.ts
··· 1 - // Export all utility functions 2 - export * from './cache'; 3 - export * from './formatters'; 4 - export * from './milestones'; 5 - export * from './tally'; 6 - export * from './textProcessor'; 7 - export * from './xml'; 8 - export * from './mathLoader'; 9 - export * from './performance'; 10 - export * from './dynamicImports';
-53
src/lib/utils/mathLoader.ts
··· 1 - /** 2 - * KaTeX CSS is already loaded via main CSS import 3 - * This utility just provides helper functions for math detection 4 - */ 5 - 6 - export async function loadKaTeX(): Promise<void> { 7 - // KaTeX CSS is already loaded via CSS import, so this is a no-op 8 - return Promise.resolve(); 9 - } 10 - 11 - export function isKaTeXLoaded(): boolean { 12 - // Always return true since KaTeX CSS is loaded with the main stylesheet 13 - return true; 14 - } 15 - 16 - /** 17 - * Check if content contains math expressions 18 - * (KaTeX CSS is already loaded, so this is mainly for analytics/debugging) 19 - */ 20 - export async function loadKaTeXIfNeeded(content: string): Promise<void> { 21 - // Simple regex to detect potential math content 22 - const mathPatterns = [ 23 - /\$\$[\s\S]*?\$\$/, // Display math 24 - /\$[^$\n]*\$/, // Inline math 25 - /\\\([\s\S]*?\\\)/, // LaTeX inline 26 - /\\\[[\s\S]*?\\\]/, // LaTeX display 27 - /\\begin\{.*?\}[\s\S]*?\\end\{.*?\}/, // LaTeX environments 28 - ]; 29 - 30 - const hasMath = mathPatterns.some(pattern => pattern.test(content)); 31 - 32 - if (hasMath) { 33 - // CSS is already loaded, but you could add analytics here 34 - console.debug('Math content detected'); 35 - } 36 - 37 - return Promise.resolve(); 38 - } 39 - 40 - /** 41 - * Utility function to detect if content contains math expressions 42 - */ 43 - export function containsMath(content: string): boolean { 44 - const mathPatterns = [ 45 - /\$\$[\s\S]*?\$\$/, // Display math 46 - /\$[^$\n]*\$/, // Inline math 47 - /\\\([\s\S]*?\\\)/, // LaTeX inline 48 - /\\\[[\s\S]*?\\\]/, // LaTeX display 49 - /\\begin\{.*?\}[\s\S]*?\\end\{.*?\}/, // LaTeX environments 50 - ]; 51 - 52 - return mathPatterns.some(pattern => pattern.test(content)); 53 - }
-98
src/lib/utils/milestones.ts
··· 1 - import { formatNumber, getOrdinalSuffix } from './formatters'; 2 - import type { Milestone } from '$components/shared/interfaces'; 3 - 4 - /** 5 - * Determines if a post number represents a milestone and returns milestone info 6 - */ 7 - export function getMilestone(postNumber: number): Milestone | null { 8 - // Special milestones defined in a more maintainable structure. 9 - const specialMilestones: { number: number; text: string; emoji: string; }[] = [ 10 - { number: 1, text: "First Post!", emoji: "🎉" }, 11 - { number: 100, text: "Centennial Post!", emoji: "💯" }, 12 - { number: 365, text: "Daily Dose Complete!", emoji: "📅" }, 13 - { number: 500, text: "Half Thousand!", emoji: "🏆" }, 14 - { number: 1000, text: "One Thousand Posts!", emoji: "🌟" }, 15 - { number: 10000, text: "Ten Thousand Posts!", emoji: "🚀" }, 16 - { number: 200, text: "Double Century!", emoji: "🎉🎉" }, 17 - { number: 250, text: "Quarter Thousand!", emoji: "✨✨" }, 18 - { number: 750, text: "Three-Quarter Thousand!", emoji: "💫💫" }, 19 - ]; 20 - 21 - for (const milestone of specialMilestones) { 22 - if (postNumber === milestone.number) { 23 - return { 24 - text: milestone.text, 25 - emoji: milestone.emoji, 26 - type: 'special' 27 - }; 28 - } 29 - } 30 - 31 - // Major milestones (every 250 posts) 32 - if (postNumber % 250 === 0) { 33 - return { 34 - text: `${formatNumber(postNumber)} Posts!`, 35 - emoji: "🎉", 36 - type: 'major' 37 - }; 38 - } 39 - 40 - // Major milestones (every 50 posts) 41 - if (postNumber % 50 === 0) { 42 - return { 43 - text: `${formatNumber(postNumber)} Posts!`, 44 - emoji: "🎯", 45 - type: 'major' 46 - }; 47 - } 48 - 49 - // Specific major milestone that doesn't fit the general rule. 50 - if (postNumber === 150) { 51 - return { 52 - text: "One Hundred Fifty Posts!", 53 - emoji: "🎉", 54 - type: 'major' 55 - }; 56 - } 57 - 58 - // Minor milestones (every 10 posts, but not major milestones). 59 - // This check should come after special and major milestones to ensure correct precedence. 60 - if (postNumber % 10 === 0 && postNumber % 50 !== 0) { 61 - const ordinal = getOrdinal(postNumber); 62 - return { 63 - text: `${ordinal} Post!`, 64 - emoji: "✨", 65 - type: 'minor' 66 - }; 67 - } 68 - 69 - // Very special fun ones that are not part of the main special milestones array. 70 - const funMilestones: { number: number; text: string; emoji: string; }[] = [ 71 - { number: 22, text: "My Lucky Number!", emoji: "🍀" }, 72 - { number: 42, text: "Answer to Everything!", emoji: "🤖" }, 73 - { number: 69, text: "Nice!", emoji: "😎" }, 74 - { number: 404, text: "Post Not Found!", emoji: "🔍" }, 75 - { number: 123, text: "One Two Three!", emoji: "🔢" }, 76 - { number: 333, text: "Triple Three!", emoji: "✨✨✨" }, 77 - ]; 78 - 79 - for (const milestone of funMilestones) { 80 - if (postNumber === milestone.number) { 81 - return { 82 - text: milestone.text, 83 - emoji: milestone.emoji, 84 - type: 'special' 85 - }; 86 - } 87 - } 88 - 89 - return null; 90 - } 91 - 92 - /** 93 - * Converts a number to its ordinal form (1st, 2nd, 3rd, etc.) 94 - */ 95 - function getOrdinal(num: number): string { 96 - const formatted = formatNumber(num); 97 - return formatted + getOrdinalSuffix(num); 98 - }
-173
src/lib/utils/performance.ts
··· 1 - /** 2 - * Performance monitoring utilities for tracking Core Web Vitals and performance metrics 3 - */ 4 - 5 - interface LayoutShift extends PerformanceEntry { 6 - value: number; 7 - hadRecentInput: boolean; 8 - } 9 - 10 - export interface PerformanceMetrics { 11 - fcp: number | null; 12 - lcp: number | null; 13 - fid: number | null; 14 - cls: number | null; 15 - ttfb: number | null; 16 - fcpScore: string | null; 17 - lcpScore: string | null; 18 - fidScore: string | null; 19 - clsScore: string | null; 20 - } 21 - 22 - /** 23 - * Get performance score based on metric value and thresholds 24 - */ 25 - function getPerformanceScore(metric: number, thresholds: { good: number; needsImprovement: number }): string { 26 - if (metric <= thresholds.good) return 'good'; 27 - if (metric <= thresholds.needsImprovement) return 'needs-improvement'; 28 - return 'poor'; 29 - } 30 - 31 - /** 32 - * Calculate First Contentful Paint score 33 - */ 34 - function getFCPScore(fcp: number): string { 35 - return getPerformanceScore(fcp, { good: 1800, needsImprovement: 3000 }); 36 - } 37 - 38 - /** 39 - * Calculate Largest Contentful Paint score 40 - */ 41 - function getLCPScore(lcp: number): string { 42 - return getPerformanceScore(lcp, { good: 2500, needsImprovement: 4000 }); 43 - } 44 - 45 - /** 46 - * Calculate First Input Delay score 47 - */ 48 - function getFIDScore(fid: number): string { 49 - return getPerformanceScore(fid, { good: 100, needsImprovement: 300 }); 50 - } 51 - 52 - /** 53 - * Calculate Cumulative Layout Shift score 54 - */ 55 - function getCLSScore(cls: number): string { 56 - return getPerformanceScore(cls, { good: 0.1, needsImprovement: 0.25 }); 57 - } 58 - 59 - /** 60 - * Measure Core Web Vitals and other performance metrics 61 - */ 62 - export function measurePerformance(): Promise<PerformanceMetrics> { 63 - return new Promise((resolve) => { 64 - const metrics: PerformanceMetrics = { 65 - fcp: null, 66 - lcp: null, 67 - fid: null, 68 - cls: null, 69 - ttfb: null, 70 - fcpScore: null, 71 - lcpScore: null, 72 - fidScore: null, 73 - clsScore: null 74 - }; 75 - 76 - // Measure TTFB (Time to First Byte) 77 - const navigationEntry = performance.getEntriesByType('navigation')[0] as PerformanceNavigationTiming | undefined; 78 - if (navigationEntry) { 79 - metrics.ttfb = navigationEntry.responseStart - navigationEntry.requestStart; 80 - } 81 - 82 - // Measure FCP (First Contentful Paint) 83 - const fcpObserver = new PerformanceObserver((list) => { 84 - const entries = list.getEntries() as PerformancePaintTiming[]; 85 - const fcpEntry = entries.find(entry => entry.name === 'first-contentful-paint'); 86 - if (fcpEntry) { 87 - metrics.fcp = fcpEntry.startTime; 88 - metrics.fcpScore = getFCPScore(metrics.fcp); 89 - } 90 - }); 91 - fcpObserver.observe({ entryTypes: ['paint'] }); 92 - 93 - // Measure LCP (Largest Contentful Paint) 94 - const lcpObserver = new PerformanceObserver((list) => { 95 - const entries = list.getEntries() as PerformanceEntry[]; 96 - const lastEntry = entries[entries.length - 1]; 97 - if (lastEntry) { 98 - metrics.lcp = lastEntry.startTime; 99 - metrics.lcpScore = getLCPScore(metrics.lcp); 100 - } 101 - }); 102 - lcpObserver.observe({ entryTypes: ['largest-contentful-paint'] }); 103 - 104 - // Measure FID (First Input Delay) 105 - const fidObserver = new PerformanceObserver((list) => { 106 - const entries = list.getEntries() as PerformanceEventTiming[]; 107 - const fidEntry = entries[0]; 108 - if (fidEntry && typeof fidEntry.processingStart === 'number') { 109 - metrics.fid = fidEntry.processingStart - fidEntry.startTime; 110 - metrics.fidScore = getFIDScore(metrics.fid); 111 - } 112 - }); 113 - fidObserver.observe({ entryTypes: ['first-input'] }); 114 - 115 - // Measure CLS (Cumulative Layout Shift) 116 - let clsValue = 0; 117 - const clsObserver = new PerformanceObserver((list) => { 118 - const entries = list.getEntries() as LayoutShift[]; 119 - for (const entry of entries) { 120 - if (!entry.hadRecentInput) { 121 - clsValue += entry.value; 122 - } 123 - } 124 - metrics.cls = clsValue; 125 - metrics.clsScore = getCLSScore(metrics.cls); 126 - }); 127 - clsObserver.observe({ entryTypes: ['layout-shift'] }); 128 - 129 - // Wait for all metrics to be collected 130 - setTimeout(() => { 131 - fcpObserver.disconnect(); 132 - lcpObserver.disconnect(); 133 - fidObserver.disconnect(); 134 - clsObserver.disconnect(); 135 - resolve(metrics); 136 - }, 5000); // Wait up to 5 seconds for metrics 137 - }); 138 - } 139 - 140 - /** 141 - * Log performance metrics to console 142 - */ 143 - export function logPerformanceMetrics(metrics: PerformanceMetrics): void { 144 - console.group('🚀 Performance Metrics'); 145 - console.log(`FCP: ${metrics.fcp?.toFixed(2)}ms (${metrics.fcpScore})`); 146 - console.log(`LCP: ${metrics.lcp?.toFixed(2)}ms (${metrics.lcpScore})`); 147 - console.log(`FID: ${metrics.fid?.toFixed(2)}ms (${metrics.fidScore})`); 148 - console.log(`CLS: ${metrics.cls?.toFixed(3)} (${metrics.clsScore})`); 149 - console.log(`TTFB: ${metrics.ttfb?.toFixed(2)}ms`); 150 - console.groupEnd(); 151 - } 152 - 153 - /** 154 - * Send performance metrics to analytics (if configured) 155 - */ 156 - export function sendPerformanceMetrics(metrics: PerformanceMetrics, endpoint?: string): void { 157 - if (!endpoint) return; 158 - 159 - fetch(endpoint, { 160 - method: 'POST', 161 - headers: { 162 - 'Content-Type': 'application/json', 163 - }, 164 - body: JSON.stringify({ 165 - timestamp: Date.now(), 166 - url: window.location.href, 167 - userAgent: navigator.userAgent, 168 - ...metrics 169 - }) 170 - }).catch(error => { 171 - console.warn('Failed to send performance metrics:', error); 172 - }); 173 - }
-40
src/lib/utils/tally.ts
··· 1 - /** 2 - * Calculates the total read time for a given array of posts. 3 - * Assumes an average reading speed of 200 words per minute. 4 - * @param posts - An array of post objects, each with a 'wordCount' property. 5 - * @returns The total read time in minutes, rounded up. 6 - */ 7 - export function calculateTotalReadTime(posts: { wordCount: number }[]): number { 8 - return posts.reduce((total, post) => { 9 - return total + Math.ceil(post.wordCount / 200); 10 - }, 0); 11 - } 12 - 13 - /** 14 - * Calculates the total word count for a given array of posts. 15 - * @param posts - An array of post objects, each with a 'wordCount' property. 16 - * @returns The total word count. 17 - */ 18 - export function calculateTotalWordCount(posts: { wordCount: number }[]): number { 19 - return posts.reduce((total, post) => total + post.wordCount, 0); 20 - } 21 - 22 - /** 23 - * Formats a given number of minutes into a human-readable string (e.g., "2 hours", "3 days"). 24 - * @param minutes - The total number of minutes. 25 - * @returns A formatted string representing the time. 26 - */ 27 - export function formatReadTime(minutes: number): string { 28 - if (minutes < 60) { 29 - return `${minutes} min`; 30 - } else if (minutes < 60 * 24) { 31 - const hours = Math.round(minutes / 60); 32 - return `${hours} hour${hours === 1 ? '' : 's'}`; 33 - } else if (minutes < 60 * 24 * 7) { 34 - const days = Math.round(minutes / (60 * 24)); 35 - return `${days} day${days === 1 ? '' : 's'}`; 36 - } else { 37 - const weeks = Math.round(minutes / (60 * 24 * 7)); 38 - return `${weeks} week${weeks === 1 ? '' : 's'}`; 39 - } 40 - }
-69
src/lib/utils/textProcessor.ts
··· 1 - import remarkParse from "remark-parse"; 2 - import remarkGfm from "remark-gfm"; 3 - import remarkRehype from "remark-rehype"; 4 - import rehypeStringify from "rehype-stringify"; 5 - import { unified } from "unified"; 6 - import type { Node } from "unist"; 7 - 8 - type TextNode = Node & { type: "text"; value: string }; 9 - type ParentNode = Node & { children: Node[] }; 10 - 11 - /** 12 - * Extracts plain text from markdown content and truncates it to a specified length. 13 - * @param markdown The markdown content to process. 14 - * @param maxLength The maximum length of the extracted text (default: 160). 15 - * @returns A promise that resolves to the extracted and truncated plain text. 16 - */ 17 - export async function extractTextFromMarkdown( 18 - markdown: string, 19 - maxLength: number = 160 20 - ): Promise<string> { 21 - // Process the markdown to get plain text 22 - const plainText = String( 23 - await unified() 24 - .use(remarkParse, { fragment: true }) 25 - .use(remarkGfm) 26 - .use(() => (tree) => { 27 - // Simple transformer that visits all nodes and removes everything but text 28 - const visit = (node: Node): string => { 29 - if (node.type === "text") { 30 - const textNode = node as TextNode; 31 - return textNode.value; 32 - } 33 - if ("children" in node) { 34 - const parentNode = node as ParentNode; 35 - return parentNode.children.map(visit).filter(Boolean).join(" "); 36 - } 37 - return ""; 38 - }; 39 - 40 - // Replace tree with just text content 41 - return { 42 - type: "root", 43 - children: [{ type: "text", value: visit(tree) }], 44 - }; 45 - }) 46 - .use(remarkRehype) 47 - .use(rehypeStringify) 48 - .process(markdown) 49 - ); 50 - 51 - // Clean up the text 52 - let cleaned = plainText.replace(/\s+/g, " ").trim(); 53 - 54 - // Truncate to maxLength if necessary 55 - if (cleaned.length > maxLength) { 56 - cleaned = cleaned.substring(0, maxLength) + "..."; 57 - } 58 - 59 - return cleaned; 60 - } 61 - 62 - /** 63 - * Calculates the word count of a given string. 64 - * @param text The input string. 65 - * @returns The number of words in the string. 66 - */ 67 - export function calculateWordCount(text: string): number { 68 - return text.split(/\s+/).filter((word) => word.length > 0).length; 69 - }
-14
src/lib/utils/xml.ts
··· 1 - // XML utility functions 2 - 3 - /** 4 - * Escapes special characters for XML output. 5 - */ 6 - export function escapeXml(unsafe: string): string { 7 - if (!unsafe) return ""; 8 - return unsafe 9 - .replace(/&/g, "&amp;") 10 - .replace(/</g, "&lt;") 11 - .replace(/>/g, "&gt;") 12 - .replace(/"/g, "&quot;") 13 - .replace(/'/g, "&apos;"); 14 - }
+7 -50
src/routes/+layout.svelte
··· 1 1 <script lang="ts"> 2 - import "$css/app.css"; 3 - import { getStores } from "$app/stores"; 4 - import { onMount } from "svelte"; 5 - const { page } = getStores(); 6 - import Profile from "$components/profile/Profile.svelte"; 7 - import { Footer, HeaderMain } from "$components/layout"; 8 - import { ScrollToTop } from "$components/layout/main"; 9 - import { NoScriptMessage } from "$components/shared"; 10 - import { measurePerformance, logPerformanceMetrics } from "$utils/performance"; 2 + import '../app.css'; 3 + import favicon from '$lib/assets/fallback/profile.svg'; 11 4 12 - let { data, children } = $props(); 13 - 14 - // Check if we're on the home page or blog page using $derived 15 - const showProfile = $derived( 16 - $page.route.id ? ["/", "/blog"].includes($page.route.id) : false 17 - ); 18 - const isHomePage = $derived($page.route.id === "/"); 19 - const isBlogIndex = $derived($page.route.id === "/blog"); 20 - 21 - // Performance monitoring 22 - onMount(() => { 23 - // Measure performance after page load 24 - setTimeout(async () => { 25 - try { 26 - const metrics = await measurePerformance(); 27 - logPerformanceMetrics(metrics); 28 - 29 - // Send metrics to analytics if configured 30 - // sendPerformanceMetrics(metrics, '/api/analytics/performance'); 31 - } catch (error) { 32 - console.warn('Performance measurement failed:', error); 33 - } 34 - }, 1000); 35 - }); 5 + let { children } = $props(); 36 6 </script> 37 7 38 - <!-- NoScript fallback --> 39 - <NoScriptMessage /> 40 - 41 - <!-- Main layout structure --> 42 - <div class="box-border mx-auto px-4 sm:px-8 max-w-[1000px] pb-8"> 43 - <HeaderMain {isHomePage} {isBlogIndex} /> 44 - 45 - {#if showProfile} 46 - <Profile profile={data.profile} /> 47 - {/if} 48 - 49 - {@render children()} 50 - 51 - <Footer profile={data.profile} siteInfo={data.siteInfo} posts={data.posts} /> 52 - </div> 8 + <svelte:head> 9 + <link rel="icon" href={favicon} /> 10 + </svelte:head> 53 11 54 - <!-- Scroll to top button --> 55 - <ScrollToTop /> 12 + {@render children?.()}
-62
src/routes/+layout.ts
··· 1 - import { getProfile, getSiteInfo } from "$components/profile/profile"; 2 - import type { Profile, LinkBoard, SiteInfo } from "$components/shared"; 3 - 4 - // Profile and site data cache 5 - let profile: Profile; 6 - let siteInfo: SiteInfo | null = null; 7 - 8 - export async function load({ fetch }) { 9 - try { 10 - // Critical path: Load only essential profile data 11 - console.log('Layout load: Starting critical path'); 12 - 13 - if (profile === undefined) { 14 - profile = await getProfile(fetch); 15 - } 16 - 17 - // Load site info if not already cached 18 - if (siteInfo === null) { 19 - try { 20 - siteInfo = await getSiteInfo(fetch); 21 - } catch (error) { 22 - console.warn('Failed to load site info, continuing without it:', error); 23 - siteInfo = null; 24 - } 25 - } 26 - 27 - console.log('Layout load: Profile and site info loaded, returning minimal data'); 28 - 29 - // Return immediately with only critical data 30 - return { 31 - profile, 32 - siteInfo, 33 - pdsUrl: profile.pds, 34 - did: profile.did, 35 - posts: new Map(), // Keep this for compatibility 36 - dynamicLinks: undefined, // Will be loaded client-side 37 - latestPosts: [], // Will be loaded client-side 38 - }; 39 - 40 - } catch (error) { 41 - console.error("Critical error in layout load:", error); 42 - 43 - // Return minimal fallback data structure 44 - return { 45 - profile: { 46 - avatar: '', 47 - banner: '', 48 - displayName: 'Loading...', 49 - did: '', 50 - handle: 'loading', 51 - description: '', 52 - pds: '', 53 - } as Profile, 54 - siteInfo: null, 55 - pdsUrl: '', 56 - did: '', 57 - posts: new Map(), 58 - dynamicLinks: undefined, 59 - latestPosts: [], 60 - }; 61 - } 62 - }
+2 -196
src/routes/+page.svelte
··· 1 - <script lang="ts"> 2 - import { onMount } from "svelte"; 3 - import { getStores } from "$app/stores"; 4 - import { createComponentDebugger } from "$lib/utils/debug.js"; 5 - import { getCache } from "$utils/cache"; 6 - import type { Post, LinkBoard } from "$components/shared"; 7 - 8 - const { page } = getStores(); 9 - import { DynamicLinks, LatestBlogPost } from "$components/layout/main"; 10 - import { getLatestPosts } from "$services/blogService"; 11 - 12 - // Create debugger for this component 13 - const debug = createComponentDebugger('MainPage'); 14 - 15 - let { data } = $props(); 16 - 17 - // State management for progressive loading with proper typing 18 - let localeLoaded = $state(false); 19 - let blogPostsLoaded = $state(false); 20 - let dynamicLinksLoaded = $state(false); 21 - let latestPosts = $state<Post[]>([]); 22 - let dynamicLinksData = $state<LinkBoard | undefined>(undefined); 23 - 24 - // Loading states 25 - let isLoadingPosts = $state(false); 26 - let isLoadingLinks = $state(false); 27 - 28 - // Check if we have cached data for links 29 - let hasCachedLinks = $state(false); 30 - 31 - onMount(() => { 32 - debug.lifecycle('MainPage', 'mounted', { 33 - hasData: !!data, 34 - dataKeys: data ? Object.keys(data) : [], 35 - initialLatestPostsCount: data?.latestPosts?.length || 0, 36 - initialDynamicLinksCount: data?.dynamicLinks ? 'hasData' : 'noData' 37 - }); 38 - 39 - // Check for cached links data immediately 40 - const cachedLinks = getCache<LinkBoard>('dynamic_links_data'); 41 - if (cachedLinks && cachedLinks.cards && cachedLinks.cards.length > 0) { 42 - hasCachedLinks = true; 43 - debug.debug('Found cached links data'); 44 - } 45 - 46 - // Set a brief timeout to ensure the browser has time to determine locale 47 - setTimeout(() => { 48 - localeLoaded = true; 49 - debug.debug('Locale loaded state updated', { localeLoaded: true }); 50 - }, 100); 51 - 52 - // Progressive loading approach 53 - loadContentProgressively(); 54 - }); 55 - 56 - async function loadContentProgressively() { 57 - try { 58 - // Phase 1: Use any data that came from SSR first 59 - if (data?.latestPosts && data.latestPosts.length > 0) { 60 - latestPosts = data.latestPosts; 61 - blogPostsLoaded = true; 62 - debug.debug('Used SSR blog posts', { count: data.latestPosts.length }); 63 - } 64 - 65 - if (data?.dynamicLinks) { 66 - dynamicLinksData = data.dynamicLinks; 67 - dynamicLinksLoaded = true; 68 - debug.debug('Used SSR dynamic links'); 69 - } 70 - 71 - // Phase 2: Load blog posts if not already loaded (with delay) 72 - if (!blogPostsLoaded) { 73 - setTimeout(async () => { 74 - try { 75 - isLoadingPosts = true; 76 - debug.debug('Loading blog posts client-side'); 77 - const posts = await getLatestPosts(fetch, 3); 78 - latestPosts = posts; 79 - blogPostsLoaded = true; 80 - debug.debug('Blog posts loaded client-side', { count: posts.length }); 81 - } catch (error) { 82 - debug.errorWithContext('Failed to load blog posts', error as Error); 83 - blogPostsLoaded = true; // Mark as loaded to stop loading state 84 - } finally { 85 - isLoadingPosts = false; 86 - } 87 - }, 2500); // Wait 2.5 seconds before loading posts 88 - } 89 - 90 - // Phase 3: Load dynamic links if not already loaded and no cached data 91 - if (!dynamicLinksLoaded && !hasCachedLinks && data?.profile?.pds && data?.profile?.did) { 92 - setTimeout(async () => { 93 - try { 94 - isLoadingLinks = true; 95 - debug.debug('Loading dynamic links client-side'); 96 - const rawResponse = await fetch( 97 - `${data.profile.pds}/xrpc/com.atproto.repo.listRecords?repo=${data.profile.did}&collection=blue.linkat.board&rkey=self` 98 - ); 99 - if (rawResponse.ok) { 100 - const response = await rawResponse.json(); 101 - if (response && response.records && response.records.length > 0) { 102 - dynamicLinksData = response.records[0].value as LinkBoard; 103 - debug.debug('Dynamic links loaded client-side'); 104 - } 105 - } 106 - dynamicLinksLoaded = true; 107 - } catch (error) { 108 - debug.errorWithContext('Failed to load dynamic links', error as Error); 109 - dynamicLinksLoaded = true; // Mark as loaded to stop loading state 110 - } finally { 111 - isLoadingLinks = false; 112 - } 113 - }, 5000); // Wait 5 seconds before loading links 114 - } else if (!data?.profile?.pds || !data?.profile?.did || hasCachedLinks) { 115 - // If we don't have the necessary profile data or we have cached data, mark as loaded 116 - dynamicLinksLoaded = true; 117 - } 118 - 119 - } catch (error) { 120 - debug.errorWithContext('Error in progressive loading', error as Error); 121 - } 122 - } 123 - 124 - // Debug data changes 125 - $effect(() => { 126 - if (data) { 127 - debug.state('MainPage', 'data', { 128 - latestPostsCount: latestPosts?.length || 0, 129 - dynamicLinksType: typeof dynamicLinksData, 130 - hasLatestPosts: !!latestPosts?.length, 131 - hasDynamicLinks: !!dynamicLinksData, 132 - hasCachedLinks, 133 - blogPostsLoaded, 134 - dynamicLinksLoaded 135 - }); 136 - } 137 - }); 138 - </script> 139 - 140 - <svelte:head> 141 - <title>Ewan's Corner</title> 142 - <meta 143 - name="description" 144 - content="Welcome to Ewan's Corner - A personal space where I share my thoughts on coding, technology, and life." 145 - /> 146 - <meta 147 - name="keywords" 148 - content="Ewan, personal website, coding, technology, programming, tech blog, Ewan's Corner" 149 - /> 150 - 151 - <!-- Open Graph / Facebook --> 152 - <meta property="og:type" content="website" /> 153 - <meta property="og:url" content={$page.url.origin + $page.url.pathname} /> 154 - <meta property="og:title" content="Ewan's Corner" /> 155 - <meta 156 - property="og:description" 157 - content="Welcome to Ewan's Corner - A personal space where I share my thoughts on coding, technology, and life." 158 - /> 159 - <meta property="og:site_name" content="Ewan's Corner" /> 160 - <meta property="og:image" content={`${$page.url.origin}/og/main.png`} /> 161 - <meta property="og:image:width" content="1200" /> 162 - <meta property="og:image:height" content="630" /> 163 - 164 - <!-- Twitter --> 165 - <meta name="twitter:card" content="summary_large_image" /> 166 - <meta name="twitter:url" content={$page.url.origin + $page.url.pathname} /> 167 - <meta name="twitter:title" content="Ewan's Corner" /> 168 - <meta 169 - name="twitter:description" 170 - content="Welcome to Ewan's Corner - A personal space where I share my thoughts on coding, technology, and life." 171 - /> 172 - <meta name="twitter:image" content={`${$page.url.origin}/og/main.png`} /> 173 - </svelte:head> 174 - 175 - <!-- Latest Blog Post section --> 176 - {#if blogPostsLoaded && latestPosts && latestPosts.length > 0} 177 - <LatestBlogPost posts={latestPosts} {localeLoaded} /> 178 - {:else if isLoadingPosts || !blogPostsLoaded} 179 - <div class="text-center py-8 animate-pulse"> 180 - Loading latest posts... 181 - </div> 182 - {:else if blogPostsLoaded && (!latestPosts || latestPosts.length === 0)} 183 - <div class="text-center py-8"> 184 - No blog posts available 185 - </div> 186 - {/if} 187 - 188 - <!-- Dynamic Links section - Always show component, let it handle caching internally --> 189 - <DynamicLinks data={dynamicLinksData} /> 190 - 191 - <!-- Only show loading message if we don't have cached data and are actively loading --> 192 - {#if !hasCachedLinks && isLoadingLinks && !dynamicLinksLoaded} 193 - <div class="text-center py-4 animate-pulse"> 194 - Loading links... 195 - </div> 196 - {/if} 1 + <h1>Welcome to SvelteKit</h1> 2 + <p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
-8
src/routes/blog/+layout.ts
··· 1 - import { loadAllPosts } from "$services/blogService"; 2 - 3 - export const prerender = false; 4 - export const trailingSlash = "never"; 5 - 6 - export async function load({ fetch }) { 7 - return await loadAllPosts(fetch); 8 - }
-199
src/routes/blog/+page.svelte
··· 1 - <script lang="ts"> 2 - import { onMount } from "svelte"; 3 - import { YearContent, YearTabs, ArchiveHeader } from "$components/archive"; 4 - import { getStores } from "$app/stores"; 5 - const { page } = getStores(); 6 - const { data } = $props(); 7 - import type { Post } from "$components/shared"; 8 - 9 - // Get posts from data with enhanced validation 10 - const posts = $derived( 11 - Array.from((data.posts || new Map()).values() as Iterable<Post>) 12 - .filter((post) => { 13 - // Enhanced validation for posts 14 - const hasValidTitle = post.title && typeof post.title === 'string'; 15 - const hasValidDate = post.createdAt instanceof Date && !isNaN(post.createdAt.getTime()); 16 - const hasValidContent = post.content && typeof post.content === 'string'; 17 - const hasValidRkey = post.rkey && typeof post.rkey === 'string'; 18 - 19 - const isValid = hasValidTitle && hasValidDate && hasValidContent && hasValidRkey; 20 - 21 - if (!isValid && process.env.NODE_ENV === 'development') { 22 - console.warn('Invalid post filtered out:', { 23 - title: post.title, 24 - rkey: post.rkey, 25 - hasValidTitle, 26 - hasValidDate, 27 - hasValidContent, 28 - hasValidRkey, 29 - createdAt: post.createdAt, 30 - }); 31 - } 32 - 33 - return isValid; 34 - }) 35 - .sort((a, b) => b.createdAt.getTime() - a.createdAt.getTime()) 36 - ); 37 - 38 - // State to track if locale has been properly loaded 39 - let localeLoaded = $state(false); 40 - 41 - onMount(() => { 42 - // Set a brief timeout to ensure the browser has time to determine locale 43 - setTimeout(() => { 44 - localeLoaded = true; 45 - }, 10); 46 - }); 47 - 48 - // Helper function to get only month name 49 - function getMonthName(date: Date): string { 50 - try { 51 - return new Intl.DateTimeFormat( 52 - typeof window !== "undefined" ? window.navigator.language : "en-GB", 53 - { month: "long" } 54 - ).format(date); 55 - } catch (error) { 56 - console.warn('Error formatting month name:', error); 57 - return date.toLocaleDateString('en-GB', { month: 'long' }); 58 - } 59 - } 60 - 61 - // Group posts by year and month 62 - type YearMonthGroup = { 63 - year: number; 64 - months: Record<string, Post[]>; 65 - }; 66 - 67 - const groupedByYear = $derived( 68 - (() => { 69 - if (!posts || posts.length === 0) { 70 - return []; 71 - } 72 - 73 - const groups: Record<number, Record<string, Post[]>> = {}; 74 - 75 - posts.forEach((post) => { 76 - try { 77 - const year = post.createdAt.getFullYear(); 78 - const month = getMonthName(post.createdAt); 79 - 80 - if (!groups[year]) groups[year] = {}; 81 - if (!groups[year][month]) groups[year][month] = []; 82 - 83 - groups[year][month].push(post); 84 - } catch (error) { 85 - console.warn('Error grouping post:', { post, error }); 86 - } 87 - }); 88 - 89 - // Convert to array of year groups sorted by year (descending) 90 - return Object.entries(groups) 91 - .sort(([yearA], [yearB]) => Number(yearB) - Number(yearA)) 92 - .map(([year, months]) => ({ 93 - year: Number(year), 94 - months, 95 - })); 96 - })() as YearMonthGroup[] 97 - ); 98 - 99 - // State for active year tab 100 - let activeYear = $state(0); 101 - 102 - // Set initial active year when data is loaded 103 - $effect(() => { 104 - if (groupedByYear.length > 0) { 105 - activeYear = groupedByYear[0].year; 106 - } 107 - }); 108 - 109 - // Computed loading and error states 110 - const isLoading = $derived(!localeLoaded); 111 - const hasData = $derived(data && data.posts && data.posts.size > 0); 112 - const hasValidPosts = $derived(posts && posts.length > 0); 113 - const hasProfile = $derived(data && data.profile); 114 - </script> 115 - 116 - <svelte:head> 117 - <title>Blog - Ewan's Corner</title> 118 - <meta 119 - name="description" 120 - content="Welcome to Blog - Ewan's Corner - A personal blog where I share my thoughts on coding, technology, and life." 121 - /> 122 - <meta 123 - name="keywords" 124 - content="Ewan, personal blog, coding, technology, programming, tech blog, Blog - Ewan's Corner" 125 - /> 126 - <link 127 - rel="alternate" 128 - type="application/rss+xml" 129 - title="Blog - Ewan's Corner RSS Feed" 130 - href="{$page.url.origin}/blog/rss" 131 - /> 132 - 133 - <!-- Open Graph / Facebook --> 134 - <meta property="og:type" content="website" /> 135 - <meta property="og:url" content={$page.url.origin + $page.url.pathname} /> 136 - <meta property="og:title" content="Blog - Ewan's Corner" /> 137 - <meta 138 - property="og:description" 139 - content="Welcome to Blog - Ewan's Corner - A personal blog where I share my thoughts on coding, technology, and life." 140 - /> 141 - <meta property="og:site_name" content="Blog - Ewan's Corner" /> 142 - <meta property="og:image" content={`${$page.url.origin}/og/blog.png`} /> 143 - <meta property="og:image:width" content="1200" /> 144 - <meta property="og:image:height" content="630" /> 145 - 146 - <!-- Twitter --> 147 - <meta name="twitter:card" content="summary_large_image" /> 148 - <meta name="twitter:url" content={$page.url.origin + $page.url.pathname} /> 149 - <meta name="twitter:title" content="Blog - Ewan's Corner" /> 150 - <meta 151 - name="twitter:description" 152 - content="Welcome to Blog - Ewan's Corner - A personal blog where I share my thoughts on coding, technology, and life." 153 - /> 154 - <meta name="twitter:image" content={`${$page.url.origin}/og/blog.png`} /> 155 - </svelte:head> 156 - 157 - {#if isLoading} 158 - <div 159 - class="flex justify-center items-center min-h-[200px] text-lg text-[var(--text-color)] opacity-70" 160 - > 161 - Loading... 162 - </div> 163 - {:else if !hasProfile} 164 - <div 165 - class="flex flex-col items-center justify-center min-h-[200px] text-lg text-[var(--text-color)] opacity-70 text-center" 166 - > 167 - <p>Unable to load profile data.</p> 168 - <p class="mt-2 text-sm">Please try refreshing the page.</p> 169 - </div> 170 - {:else if !hasData} 171 - <div 172 - class="flex flex-col items-center justify-center min-h-[200px] text-lg text-[var(--text-color)] opacity-70 text-center" 173 - > 174 - <p>No blog data available.</p> 175 - <p class="mt-2 text-sm">This blog uses the <a href="https://whtwnd.com">WhiteWind</a> blogging lexicon, 176 - <code>com.whtwnd.blog.entry</code>, but there seem to be no records available.</p> 177 - </div> 178 - {:else if !hasValidPosts} 179 - <div 180 - class="flex flex-col items-center justify-center min-h-[200px] text-lg text-[var(--text-color)] opacity-70 text-center" 181 - > 182 - <p>No valid blog posts found.</p> 183 - <p class="mt-2 text-sm">Posts were found but none have valid content, titles, and dates.</p> 184 - </div> 185 - {:else} 186 - 187 - <!-- Archive header with stats --> 188 - <ArchiveHeader {groupedByYear} /> 189 - 190 - <!-- Year tabs with animated indicator --> 191 - <YearTabs {groupedByYear} bind:activeYear /> 192 - 193 - <!-- Content for active year with animations --> 194 - {#each groupedByYear as { year, months } (year)} 195 - {#if year === activeYear} 196 - <YearContent {year} {months} {localeLoaded} /> 197 - {/if} 198 - {/each} 199 - {/if}
-139
src/routes/blog/[rkey]/+page.svelte
··· 1 - <script lang="ts" module> 2 - declare global { 3 - interface Window { 4 - $page: { 5 - url: URL; 6 - }; 7 - } 8 - } 9 - </script> 10 - 11 - <script lang="ts"> 12 - import { onMount } from "svelte"; 13 - import type { Post } from "$components/shared"; 14 - import { 15 - PostHead, 16 - PostHeader, 17 - PostContent, 18 - PostNavigation, 19 - } from "$components/post"; 20 - import { NotFoundMessage } from "$components/shared"; 21 - 22 - let { data }: { data: any } = $props(); 23 - 24 - // Derive state from props with correct typing 25 - let post: Post | undefined = $derived(data?.post); 26 - let adjacentPosts = $derived(data?.adjacentPosts || { previous: null, next: null }); 27 - let profile = $derived(data?.profile); 28 - let rkey = $derived(data?.rkey || ''); 29 - 30 - // State for loading 31 - let localeLoaded = $state(false); 32 - let contentReady = $state(false); 33 - 34 - // Validations as derived values (no legacy `$:`) 35 - let isValidPost = $derived( 36 - !!post && 37 - !!post.title && 38 - !!post.rkey && 39 - post.createdAt instanceof Date && 40 - !isNaN(post.createdAt.getTime()) && 41 - !!post.content 42 - ); 43 - 44 - let hasProfile = $derived( 45 - !!profile?.displayName && !!profile?.handle 46 - ); 47 - 48 - onMount(() => { 49 - localeLoaded = true; 50 - setTimeout(() => { 51 - contentReady = true; 52 - }, 100); 53 - }); 54 - </script> 55 - 56 - {#if post} 57 - <PostHead {post} /> 58 - {/if} 59 - 60 - {#if isValidPost && contentReady} 61 - <div class="max-w-4xl mx-auto px-4"> 62 - {#if post} 63 - <PostHeader 64 - {post} 65 - {profile} 66 - {rkey} 67 - {localeLoaded} 68 - /> 69 - <PostContent {post} /> 70 - {/if} 71 - <PostNavigation {adjacentPosts} /> 72 - </div> 73 - {:else if data?.post === undefined && contentReady} 74 - <!-- Post not found --> 75 - <NotFoundMessage /> 76 - {:else if !contentReady || !localeLoaded} 77 - <!-- Loading state --> 78 - <div class="max-w-4xl mx-auto px-4"> 79 - <div class="text-center my-12 space-y-6"> 80 - <div class="animate-pulse space-y-4"> 81 - <div class="h-8 bg-card rounded w-3/4 mx-auto"></div> 82 - <div class="h-4 bg-card rounded w-1/2 mx-auto"></div> 83 - <div class="h-4 bg-card rounded w-1/3 mx-auto"></div> 84 - </div> 85 - <p class="text-sm opacity-60">Loading post...</p> 86 - </div> 87 - 88 - <hr class="my-6 border-[var(--button-bg)]" /> 89 - 90 - <div class="text-center my-8"> 91 - <div class="animate-pulse space-y-4"> 92 - <div class="h-4 bg-card rounded w-full"></div> 93 - <div class="h-4 bg-card rounded w-5/6 mx-auto"></div> 94 - <div class="h-4 bg-card rounded w-4/5 mx-auto"></div> 95 - <div class="h-4 bg-card rounded w-3/4 mx-auto"></div> 96 - </div> 97 - </div> 98 - 99 - <hr class="my-6 border-[var(--button-bg)]" /> 100 - </div> 101 - {:else} 102 - <!-- Error state --> 103 - <div class="max-w-4xl mx-auto px-4 text-center my-12"> 104 - <h1 class="text-2xl font-bold mb-4">Error Loading Post</h1> 105 - <p class="opacity-70">The post data appears to be incomplete or corrupted.</p> 106 - <p class="text-sm opacity-50 mt-2"> 107 - Try refreshing the page or check the post URL. 108 - </p> 109 - </div> 110 - {/if} 111 - 112 - <style> 113 - @keyframes pulse { 114 - 0%, 100% { 115 - opacity: 1; 116 - } 117 - 50% { 118 - opacity: 0.3; 119 - } 120 - } 121 - 122 - .animate-pulse { 123 - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; 124 - } 125 - 126 - .animate-pulse .h-4, 127 - .animate-pulse .h-8 { 128 - background-color: var(--button-bg); 129 - opacity: 0.6; 130 - } 131 - 132 - .animate-pulse .h-4 { 133 - height: 1rem; 134 - } 135 - 136 - .animate-pulse .h-8 { 137 - height: 2rem; 138 - } 139 - </style>
-20
src/routes/blog/[rkey]/+page.ts
··· 1 - export const prerender = false; 2 - 3 - export const load = async ({ parent, params }) => { 4 - const { getPost, profile, getAdjacentPosts } = await parent(); 5 - const post = getPost(params.rkey); 6 - 7 - if (!post) return { status: 404 }; 8 - 9 - // Get adjacent posts for navigation 10 - const adjacentPosts = getAdjacentPosts(params.rkey); 11 - 12 - return { 13 - post, 14 - rkey: params.rkey, 15 - posts: new Map([[params.rkey, post]]), 16 - profile, 17 - adjacentPosts, 18 - getAdjacentPosts: () => adjacentPosts, 19 - }; 20 - };
-93
src/routes/blog/atom/+server.ts
··· 1 - import { TTLCache } from "$utils/cache"; 2 - import { escapeXml } from "$lib/utils/xml"; 3 - 4 - // TTL cache for Atom feed XML (5 min) 5 - const FEED_CACHE_TTL = 5 * 60 * 1000; 6 - const atomFeedCache = new TTLCache<string>(FEED_CACHE_TTL); 7 - 8 - import type { RequestHandler } from "../rss/$types"; 9 - import { dev } from "$app/environment"; 10 - import { loadAllPosts } from "$services/blogService"; 11 - 12 - export const GET: RequestHandler = async ({ url, fetch }) => { 13 - // Check cache first 14 - const cached = atomFeedCache.get(); 15 - if (cached) { 16 - return new Response(cached, { 17 - headers: { 18 - "Content-Type": "application/atom+xml; charset=utf-8", 19 - "Cache-Control": "max-age=0, s-maxage=3600", 20 - }, 21 - }); 22 - } 23 - try { 24 - const { profile, sortedPosts } = await loadAllPosts(fetch); 25 - const baseUrl = dev ? url.origin : "https://ewancroft.uk"; 26 - const atomXml = `<?xml version="1.0" encoding="utf-8"?> 27 - <feed xmlns="http://www.w3.org/2005/Atom"> 28 - <title>Blog - Ewan's Corner</title> 29 - <subtitle>A personal blog where I share my thoughts on coding, technology, and life.</subtitle> 30 - <link href="${baseUrl}/blog" /> 31 - <link href="${baseUrl}/blog/atom" rel="self" type="application/atom+xml" /> 32 - <updated>${sortedPosts.length > 0 ? sortedPosts[0].createdAt.toISOString() : new Date().toISOString()}</updated> 33 - <id>${baseUrl}/blog</id> 34 - <author> 35 - <name>${profile.displayName || profile.handle}</name> 36 - <uri>${baseUrl}/blog</uri> 37 - </author> 38 - <icon>${baseUrl}/og/blog.png</icon> 39 - <logo>${baseUrl}/og/blog.png</logo> 40 - ${sortedPosts 41 - .map( 42 - (post) => ` 43 - <entry> 44 - <title>${escapeXml(post.title)}</title> 45 - <link href="${baseUrl}/blog/${post.rkey}" rel="alternate" type="text/html" /> 46 - <id>${baseUrl}/blog/${post.rkey}</id> 47 - <updated>${post.createdAt.toISOString()}</updated> 48 - <published>${post.createdAt.toISOString()}</published> 49 - <summary type="html"><![CDATA[${post.excerpt || ""}]]></summary> 50 - <content type="html"><![CDATA[${post.content || ""}]]></content> 51 - <author> 52 - <name>${profile.displayName || profile.handle}</name> 53 - <uri>https://bsky.app/profile/${profile.handle}</uri> 54 - </author> 55 - <link href="${baseUrl}/og/blog.png" rel="enclosure" type="image/png" /> 56 - </entry>` 57 - ) 58 - .join("")} 59 - </feed>`; 60 - atomFeedCache.set(atomXml); 61 - return new Response(atomXml, { 62 - headers: { 63 - "Content-Type": "application/atom+xml; charset=utf-8", 64 - "Cache-Control": "max-age=0, s-maxage=3600", 65 - }, 66 - }); 67 - } catch (error) { 68 - console.error("Error generating Atom feed:", error); 69 - const baseUrl = dev ? url.origin : "https://ewancroft.uk"; 70 - return new Response( 71 - `<?xml version="1.0" encoding="utf-8"?> 72 - <feed xmlns="http://www.w3.org/2005/Atom"> 73 - <title>Blog - Ewan's Corner</title> 74 - <subtitle>A personal blog where I share my thoughts on coding, technology, and life.</subtitle> 75 - <link href="${baseUrl}/blog" /> 76 - <link href="${baseUrl}/blog/atom" rel="self" type="application/atom+xml" /> 77 - <updated>${new Date().toISOString()}</updated> 78 - <id>${baseUrl}/blog</id> 79 - <author> 80 - <name>Ewan's Corner</name> 81 - <uri>${baseUrl}/blog</uri> 82 - </author> 83 - <!-- Error occurred while generating feed entries --> 84 - </feed>`, 85 - { 86 - headers: { 87 - "Content-Type": "application/atom+xml; charset=utf-8", 88 - "Cache-Control": "no-cache", 89 - }, 90 - } 91 - ); 92 - } 93 - };
-128
src/routes/blog/rss/+server.ts
··· 1 - import type { RequestHandler } from "./$types"; 2 - import { dev } from "$app/environment"; 3 - import { parse } from "$lib/parser"; 4 - import type { MarkdownPost } from "$components/shared"; 5 - import { getProfile } from "$components/profile/profile"; 6 - import { escapeXml } from "$lib/utils/xml"; 7 - import { TTLCache } from "$utils/cache"; 8 - 9 - // TTL cache for RSS feed XML (5 min) 10 - const FEED_CACHE_TTL = 5 * 60 * 1000; 11 - const rssFeedCache = new TTLCache<string>(FEED_CACHE_TTL); 12 - 13 - export const GET: RequestHandler = async ({ url, fetch }) => { 14 - try { 15 - // Use getProfile to get profile data 16 - const profileData = await getProfile(fetch); 17 - 18 - const did = profileData.did; 19 - const pdsUrl = profileData.pds; 20 - 21 - if (!pdsUrl) throw new Error("Could not find PDS URL"); 22 - 23 - // Get blog posts 24 - const postsResponse = await fetch( 25 - `${pdsUrl}/xrpc/com.atproto.repo.listRecords?repo=${did}&collection=com.whtwnd.blog.entry` 26 - ); 27 - if (!postsResponse.ok) 28 - throw new Error(`Posts fetch failed: ${postsResponse.status}`); 29 - const postsData = await postsResponse.json(); 30 - 31 - // Process posts 32 - const mdposts: Map<string, MarkdownPost> = new Map(); 33 - for (const data of postsData.records) { 34 - const matches = data.uri.split("/"); 35 - const rkey = matches[matches.length - 1]; 36 - const record = data.value; 37 - 38 - if ( 39 - matches && 40 - matches.length === 5 && 41 - record && 42 - (record.visibility === "public" || !record.visibility) 43 - ) { 44 - mdposts.set(rkey, { 45 - title: record.title, 46 - createdAt: new Date(record.createdAt), 47 - mdcontent: record.content, 48 - rkey, 49 - }); 50 - } 51 - } 52 - 53 - // Parse markdown posts to HTML 54 - const posts = await parse(mdposts); 55 - 56 - // Sort posts by date (newest first) 57 - const sortedPosts = Array.from(posts.values()).sort( 58 - (a, b) => b.createdAt.getTime() - a.createdAt.getTime() 59 - ); 60 - 61 - // Build the RSS XML 62 - const baseUrl = dev ? url.origin : "https://ewancroft.uk"; // Update with your production domain 63 - const rssXml = `<?xml version="1.0" encoding="UTF-8" ?> 64 - <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:media="http://search.yahoo.com/mrss/"> 65 - <channel> 66 - <title>Blog - Ewan's Corner</title> 67 - <description>A personal blog where I share my thoughts on coding, technology, and life.</description> 68 - <link>${baseUrl}/blog</link> 69 - <atom:link href="${baseUrl}/blog/rss" rel="self" type="application/rss+xml" /> 70 - <image> 71 - <url>${baseUrl}/og/blog.png</url> 72 - <title>Blog - Ewan's Corner</title> 73 - <link>${baseUrl}/blog</link> 74 - </image> 75 - <lastBuildDate>${new Date().toUTCString()}</lastBuildDate> 76 - ${sortedPosts 77 - .map( 78 - (post) => ` 79 - <item> 80 - <title>${escapeXml(post.title)}</title> 81 - <link>${baseUrl}/blog/${post.rkey}</link> 82 - <guid isPermaLink="true">${baseUrl}/blog/${post.rkey}</guid> 83 - <pubDate>${new Date(post.createdAt).toUTCString()}</pubDate> 84 - <description><![CDATA[${post.excerpt || ""}]]></description> 85 - <content:encoded><![CDATA[${post.content || ""}]]></content:encoded> 86 - <author>${profileData.displayName || profileData.handle} (${ 87 - profileData.handle 88 - })</author> 89 - <media:content url="${baseUrl}/og/blog.png" medium="image" /> 90 - </item>` 91 - ) 92 - .join("")} 93 - </channel> 94 - </rss>`; 95 - 96 - return new Response(rssXml, { 97 - headers: { 98 - "Content-Type": "application/xml", 99 - "Cache-Control": "max-age=0, s-maxage=3600", 100 - }, 101 - }); 102 - } catch (error) { 103 - console.error("Error generating RSS feed:", error); 104 - 105 - // Return a minimal valid RSS feed in case of error 106 - return new Response( 107 - `<?xml version="1.0" encoding="UTF-8" ?> 108 - <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> 109 - <channel> 110 - <title>Blog - Ewan's Corner</title> 111 - <description>A personal blog where I share my thoughts on coding, technology, and life.</description> 112 - <link>${url.origin}/blog</link> 113 - <atom:link href="${ 114 - url.origin 115 - }/blog/rss" rel="self" type="application/rss+xml" /> 116 - <lastBuildDate>${new Date().toUTCString()}</lastBuildDate> 117 - <!-- Error occurred while generating feed items --> 118 - </channel> 119 - </rss>`, 120 - { 121 - headers: { 122 - "Content-Type": "application/xml", 123 - "Cache-Control": "no-cache", 124 - }, 125 - } 126 - ); 127 - } 128 - };
-120
src/routes/now/atom/+server.ts
··· 1 - import type { RequestHandler } from "@sveltejs/kit"; 2 - import type { URL } from "url"; 3 - import { dev } from "$app/environment"; 4 - import { getProfile } from "$components/profile/profile"; 5 - import { formatDate } from "$utils/formatters"; 6 - import type { StatusUpdate } from "$components/shared"; 7 - import { escapeXml } from "$lib/utils/xml"; 8 - import { TTLCache } from "$utils/cache"; 9 - 10 - // TTL cache for status updates (5 min) 11 - const STATUS_CACHE_TTL = 5 * 60 * 1000; 12 - const statusCache = new TTLCache<{ profileData: any; sortedUpdates: StatusUpdate[] }>(STATUS_CACHE_TTL); 13 - 14 - 15 - export const GET: RequestHandler = async ({ url, fetch }: { url: URL, fetch: typeof globalThis.fetch }) => { 16 - const baseUrl = dev ? url.origin : "https://ewancroft.uk"; 17 - try { 18 - let cached = statusCache.get(); 19 - let profileData: any; 20 - let sortedUpdates: StatusUpdate[]; 21 - 22 - if (cached) { 23 - profileData = cached.profileData; 24 - sortedUpdates = cached.sortedUpdates; 25 - } else { 26 - profileData = await getProfile(fetch); 27 - const did = profileData.did; 28 - const pdsUrl = profileData.pds; 29 - if (!pdsUrl) throw new Error("Could not find PDS URL"); 30 - const statusResponse = await fetch( 31 - `${pdsUrl}/xrpc/com.atproto.repo.listRecords?repo=${did}&collection=uk.ewancroft.now` 32 - ); 33 - if (!statusResponse.ok) 34 - throw new Error(`Status fetch failed: ${statusResponse.status}`); 35 - const statusData = await statusResponse.json(); 36 - const statusUpdates: StatusUpdate[] = []; 37 - for (const data of statusData.records) { 38 - const matches = data.uri.split("/"); 39 - const tid = matches[matches.length - 1]; 40 - const record = data.value; 41 - if (matches && matches.length === 5 && record) { 42 - statusUpdates.push({ 43 - text: record.text, 44 - createdAt: new Date(record.createdAt), 45 - tid, 46 - }); 47 - } 48 - } 49 - sortedUpdates = statusUpdates.sort( 50 - (a, b) => b.createdAt.getTime() - a.createdAt.getTime() 51 - ); 52 - statusCache.set({ profileData, sortedUpdates }); 53 - } 54 - 55 - const atomXml = `<?xml version="1.0" encoding="utf-8"?> 56 - <feed xmlns="http://www.w3.org/2005/Atom"> 57 - <title>Now - ${profileData.displayName || profileData.handle}'s Status Updates</title> 58 - <subtitle>Short status updates showing what ${profileData.displayName || profileData.handle} is currently doing.</subtitle> 59 - <link href="${baseUrl}/now" /> 60 - <link href="${baseUrl}/now/atom" rel="self" type="application/atom+xml" /> 61 - <updated>${sortedUpdates.length > 0 ? sortedUpdates[0].createdAt.toISOString() : new Date().toISOString()}</updated> 62 - <id>${baseUrl}/now</id> 63 - <author> 64 - <n>${profileData.displayName || profileData.handle}</n> 65 - <uri>${baseUrl}/now</uri> 66 - </author> 67 - <icon>${baseUrl}/og/now.png</icon> 68 - <logo>${baseUrl}/og/now.png</logo> 69 - ${sortedUpdates 70 - .map( 71 - (status) => ` 72 - <entry> 73 - <title>Status update from ${formatDate(status.createdAt)}</title> 74 - <link href="${baseUrl}/now#${status.tid}" rel="alternate" type="text/html" /> 75 - <id>${baseUrl}/now/${status.tid}</id> 76 - <updated>${status.createdAt.toISOString()}</updated> 77 - <published>${status.createdAt.toISOString()}</published> 78 - <summary type="text">${escapeXml(status.text)}</summary> 79 - <content type="text">${escapeXml(status.text)}</content> 80 - <author> 81 - <n>${profileData.displayName || profileData.handle}</n> 82 - <uri>https://bsky.app/profile/${profileData.handle}</uri> 83 - </author> 84 - </entry>` 85 - ) 86 - .join("")} 87 - </feed>`; 88 - 89 - return new Response(atomXml, { 90 - headers: { 91 - "Content-Type": "application/atom+xml; charset=utf-8", 92 - "Cache-Control": "max-age=0, s-maxage=600", 93 - }, 94 - }); 95 - } catch (error) { 96 - console.error("Error generating Atom feed:", error); 97 - return new Response( 98 - `<?xml version="1.0" encoding="utf-8"?> 99 - <feed xmlns="http://www.w3.org/2005/Atom"> 100 - <title>Now - Status Updates</title> 101 - <subtitle>Short status updates showing what I'm currently doing.</subtitle> 102 - <link href="${baseUrl}/now" /> 103 - <link href="${baseUrl}/now/atom" rel="self" type="application/atom+xml" /> 104 - <updated>${new Date().toISOString()}</updated> 105 - <id>${baseUrl}/now</id> 106 - <author> 107 - <n>Ewan's Corner</n> 108 - <uri>${baseUrl}/now</uri> 109 - </author> 110 - <!-- Error occurred while generating feed entries --> 111 - </feed>`, 112 - { 113 - headers: { 114 - "Content-Type": "application/atom+xml; charset=utf-8", 115 - "Cache-Control": "no-cache", 116 - }, 117 - } 118 - ); 119 - } 120 - };
-105
src/routes/now/rss/+server.ts
··· 1 - import type { RequestHandler } from "./$types"; 2 - import { dev } from "$app/environment"; 3 - import { getProfile } from "$components/profile/profile"; 4 - import { formatDate } from "$utils/formatters"; 5 - import type { StatusUpdate } from "$components/shared"; 6 - import { escapeXml } from "$lib/utils/xml"; 7 - 8 - import { TTLCache } from "$utils/cache"; 9 - 10 - // TTL cache for status updates (5 min) 11 - const STATUS_CACHE_TTL = 5 * 60 * 1000; 12 - const statusCache = new TTLCache<{ profileData: any; sortedUpdates: StatusUpdate[] }>(STATUS_CACHE_TTL); 13 - 14 - export const GET: RequestHandler = async ({ url, fetch }: { url: URL, fetch: typeof globalThis.fetch }) => { 15 - const baseUrl = dev ? url.origin : "https://ewancroft.uk"; 16 - 17 - try { 18 - let cached = statusCache.get(); 19 - let profileData: any; 20 - let sortedUpdates: StatusUpdate[]; 21 - 22 - if (cached) { 23 - profileData = cached.profileData; 24 - sortedUpdates = cached.sortedUpdates; 25 - } else { 26 - profileData = await getProfile(fetch); 27 - const did = profileData.did; 28 - const pdsUrl = profileData.pds; 29 - if (!pdsUrl) throw new Error("Could not find PDS URL"); 30 - const statusResponse = await fetch( 31 - `${pdsUrl}/xrpc/com.atproto.repo.listRecords?repo=${did}&collection=uk.ewancroft.now` 32 - ); 33 - if (!statusResponse.ok) 34 - throw new Error(`Status fetch failed: ${statusResponse.status}`); 35 - const statusData = await statusResponse.json(); 36 - const statusUpdates: StatusUpdate[] = []; 37 - for (const data of statusData.records) { 38 - const matches = data.uri.split("/"); 39 - const tid = matches[matches.length - 1]; 40 - const record = data.value; 41 - if (matches && matches.length === 5 && record) { 42 - statusUpdates.push({ 43 - text: record.text, 44 - createdAt: new Date(record.createdAt), 45 - tid, 46 - }); 47 - } 48 - } 49 - sortedUpdates = statusUpdates.sort( 50 - (a, b) => b.createdAt.getTime() - a.createdAt.getTime() 51 - ); 52 - statusCache.set({ profileData, sortedUpdates }); 53 - } 54 - 55 - const did = profileData.did; 56 - const rssXml = `<?xml version="1.0" encoding="UTF-8" ?> 57 - <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"> 58 - <channel> 59 - <title>Now - ${profileData.displayName || profileData.handle}'s Status Updates</title> 60 - <description>Short status updates showing what ${profileData.displayName || profileData.handle} is currently doing.</description> 61 - <link>${baseUrl}/now</link> 62 - <atom:link href="${baseUrl}/now/rss" rel="self" type="application/rss+xml" /> 63 - <image> 64 - <url>${baseUrl}/og/now.png</url> 65 - <title>Now - ${profileData.displayName || profileData.handle}'s Status Updates</title> 66 - <link>${baseUrl}/now</link> 67 - </image> 68 - <lastBuildDate>${new Date().toUTCString()}</lastBuildDate> 69 - ${sortedUpdates 70 - .map( 71 - (status) => ` 72 - <item> 73 - <title>Status update from ${formatDate(status.createdAt)}</title> 74 - <link>${baseUrl}/now#${status.tid}</link> 75 - <guid isPermaLink="false">${did}/uk.ewancroft.now/${status.tid}</guid> 76 - <pubDate>${status.createdAt.toUTCString()}</pubDate> 77 - <description><![CDATA[${escapeXml(status.text)}]]></description> 78 - <content:encoded><![CDATA[${escapeXml(status.text)}]]></content:encoded> 79 - <author>${profileData.displayName || profileData.handle} (${profileData.handle})</author> 80 - </item>` 81 - ) 82 - .join("")} 83 - </channel> 84 - </rss>`; 85 - 86 - return new Response(rssXml, { 87 - headers: { 88 - "Content-Type": "application/xml", 89 - "Cache-Control": "max-age=0, s-maxage=600", 90 - }, 91 - }); 92 - } catch (error) { 93 - console.error("Error generating status RSS feed:", error); 94 - 95 - return new Response( 96 - `<?xml version="1.0" encoding="UTF-8" ?>\n<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">\n<channel>\n <title>Now - Status Updates</title>\n <description>Short status updates showing what I'm currently doing.</description>\n <link>${url.origin}/now</link>\n <atom:link href="${url.origin}/now" rel="self" type="application/rss+xml" />\n <lastBuildDate>${new Date().toUTCString()}</lastBuildDate>\n</channel>\n</rss>`, 97 - { 98 - headers: { 99 - "Content-Type": "application/xml", 100 - "Cache-Control": "no-cache", 101 - }, 102 - } 103 - ); 104 - } 105 - };
-31
src/routes/site/meta/+layout.ts
··· 1 - import type { Profile, SiteInfo } from "$components/shared"; 2 - import { getProfile, getSiteInfo } from "$components/profile/profile"; 3 - 4 - export const prerender = false; 5 - export const trailingSlash = "never"; 6 - 7 - import type { LayoutLoad } from './$types'; 8 - 9 - export const load: LayoutLoad = async ({ fetch }) => { 10 - let profile: Profile | null = null; 11 - let siteInfo: SiteInfo | null = null; 12 - 13 - try { 14 - // Fetch site info using the utility function 15 - siteInfo = await getSiteInfo(fetch); 16 - 17 - // Fetch profile data 18 - profile = await getProfile(fetch); 19 - 20 - return { 21 - siteInfo, 22 - profile, 23 - }; 24 - } catch (error) { 25 - console.error("Error in load function for /info:", error); 26 - return { 27 - siteInfo: null, 28 - profile: null, 29 - }; 30 - } 31 - }
-297
src/routes/site/meta/+page.svelte
··· 1 - <script lang="ts"> 2 - import { getStores } from "$app/stores"; 3 - const { page } = getStores(); 4 - import type { SiteInfo } from "$components/shared"; 5 - 6 - // Access the siteInfo data from the layout load function 7 - const siteInfo: SiteInfo | null = $page.data.siteInfo; 8 - </script> 9 - 10 - <svelte:head> 11 - <title>About This Website - Ewan's Corner</title> 12 - <meta 13 - name="description" 14 - content="Information about Ewan's Corner including privacy policy, technology stack, and website purpose." 15 - /> 16 - <meta 17 - name="keywords" 18 - content="about, information, privacy policy, technology stack, Ewan's Corner" 19 - /> 20 - 21 - <!-- Open Graph / Facebook --> 22 - <meta property="og:type" content="website" /> 23 - <meta property="og:url" content={$page.url.origin + $page.url.pathname} /> 24 - <meta property="og:title" content="About This Website - Ewan's Corner" /> 25 - <meta 26 - property="og:description" 27 - content="Learn about Ewan's Corner - including technology stack, website purpose, and privacy information." 28 - /> 29 - <meta property="og:site_name" content="Ewan's Corner" /> 30 - <meta property="og:image" content={`${$page.url.origin}/og/site-meta.png`} /> 31 - <meta property="og:image:width" content="1200" /> 32 - <meta property="og:image:height" content="630" /> 33 - 34 - <!-- Twitter --> 35 - <meta name="twitter:card" content="summary_large_image" /> 36 - <meta name="twitter:url" content={$page.url.origin + $page.url.pathname} /> 37 - <meta name="twitter:title" content="About This Website - Ewan's Corner" /> 38 - <meta 39 - name="twitter:description" 40 - content="Learn about Ewan's Corner - including technology stack, website purpose, and privacy information." 41 - /> 42 - <meta name="twitter:image" content={`${$page.url.origin}/og/site-meta.png`} /> 43 - </svelte:head> 44 - 45 - <div class="max-w-2xl mx-auto px-4 py-8"> 46 - <h1 class="text-3xl font-bold mb-6">About This Website</h1> 47 - 48 - {#if siteInfo} 49 - <div class="prose dark:prose-invert"> 50 - {#if siteInfo.additionalInfo?.purpose} 51 - <h2 class="text-xl font-semibold mt-6 mb-2">Website Purpose</h2> 52 - <p>{@html siteInfo.additionalInfo.purpose}</p> 53 - {/if} 54 - 55 - {#if siteInfo.technologyStack && siteInfo.technologyStack.length > 0} 56 - <h2 class="text-xl font-semibold mt-6 mb-2">Technology Stack</h2> 57 - <p>This website is built with:</p> 58 - <ul> 59 - {#each siteInfo.technologyStack as tech} 60 - <li> 61 - {#if tech.url} 62 - <a 63 - href="{tech.url}" 64 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]" 65 - >{tech.name}</a 66 - > 67 - {:else} 68 - {tech.name} 69 - {/if} 70 - {#if tech.description} 71 - - {@html tech.description} 72 - {/if} 73 - </li> 74 - {/each} 75 - </ul> 76 - {/if} 77 - 78 - {#if siteInfo.privacyStatement} 79 - <h2 class="text-xl font-semibold mt-6 mb-2">Privacy Notice</h2> 80 - <p>{@html siteInfo.privacyStatement}</p> 81 - {/if} 82 - 83 - {#if siteInfo.openSourceInfo} 84 - <h2 class="text-xl font-semibold mt-6 mb-2">Open Source</h2> 85 - {#if siteInfo.openSourceInfo.description} 86 - <p>{@html siteInfo.openSourceInfo.description}</p> 87 - {/if} 88 - {#if siteInfo.openSourceInfo.basedOn && siteInfo.openSourceInfo.basedOn.length > 0} 89 - <p>Based on:</p> 90 - <ul> 91 - {#each siteInfo.openSourceInfo.basedOn as item} 92 - <li> 93 - {#if item.url} 94 - <a 95 - href="{item.url}" 96 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]" 97 - >{item.name}</a 98 - > 99 - {:else} 100 - {item.name} 101 - {/if} 102 - {#if item.type} 103 - ({item.type}) 104 - {/if} 105 - {#if item.description} 106 - - {@html item.description} 107 - {/if} 108 - </li> 109 - {/each} 110 - </ul> 111 - {/if} 112 - {#if siteInfo.openSourceInfo.repositories && siteInfo.openSourceInfo.repositories.length > 0} 113 - <p>Repositories:</p> 114 - <ul> 115 - {#each siteInfo.openSourceInfo.repositories as repo} 116 - <li> 117 - {#if repo.url} 118 - <a 119 - href="{repo.url}" 120 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]" 121 - >{repo.platform || 'Repository'}</a 122 - > 123 - {:else} 124 - {repo.platform || 'Repository'} 125 - {/if} 126 - {#if repo.type} 127 - ({repo.type}) 128 - {/if} 129 - {#if repo.description} 130 - - {@html repo.description} 131 - {/if} 132 - </li> 133 - {/each} 134 - </ul> 135 - {/if} 136 - {#if siteInfo.openSourceInfo.license} 137 - <p> 138 - Licence: {#if siteInfo.openSourceInfo.license.url} 139 - <a 140 - href="{siteInfo.openSourceInfo.license.url}" 141 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]" 142 - >{siteInfo.openSourceInfo.license.name || 'Licence'}</a 143 - > 144 - {:else} 145 - {siteInfo.openSourceInfo.license.name || 'Licence'} 146 - {/if} 147 - </p> 148 - {/if} 149 - {#if siteInfo.openSourceInfo.relatedServices && siteInfo.openSourceInfo.relatedServices.length > 0} 150 - <p>Related Services:</p> 151 - <ul> 152 - {#each siteInfo.openSourceInfo.relatedServices as service} 153 - <li> 154 - {#if service.url} 155 - <a 156 - href="{service.url}" 157 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]" 158 - >{service.name}</a 159 - > 160 - {:else} 161 - {service.name} 162 - {/if} 163 - {#if service.relationship} 164 - ({service.relationship}) 165 - {/if} 166 - {#if service.description} 167 - - {@html service.description} 168 - {/if} 169 - </li> 170 - {/each} 171 - </ul> 172 - {/if} 173 - {/if} 174 - 175 - {#if siteInfo.credits && siteInfo.credits.length > 0} 176 - <h2 class="text-xl font-semibold mt-6 mb-2">Credits</h2> 177 - <ul> 178 - {#each siteInfo.credits as credit} 179 - <li> 180 - {#if credit.url} 181 - <a 182 - href="{credit.url}" 183 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]" 184 - >{credit.name}</a 185 - > 186 - {:else} 187 - {credit.name} 188 - {/if} 189 - {#if credit.type} 190 - ({credit.type}) 191 - {/if} 192 - {#if credit.author} 193 - by {credit.author} 194 - {/if} 195 - {#if credit.license} 196 - under {#if credit.license.url} 197 - <a 198 - href="{credit.license.url}" 199 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]" 200 - >{credit.license.name || 'Licence'}</a 201 - > 202 - {:else} 203 - {credit.license.name || 'Licence'} 204 - {/if} 205 - {/if} 206 - {#if credit.description} 207 - - {@html credit.description} 208 - {/if} 209 - </li> 210 - {/each} 211 - </ul> 212 - {/if} 213 - 214 - {#if siteInfo.additionalInfo} 215 - {#if siteInfo.additionalInfo.websiteBirthYear} 216 - <h2 class="text-xl font-semibold mt-6 mb-2">Website Creation Year</h2> 217 - <p>{siteInfo.additionalInfo.websiteBirthYear}</p> 218 - {/if} 219 - 220 - {#if siteInfo.additionalInfo.contact} 221 - <h2 class="text-xl font-semibold mt-6 mb-2">Contact</h2> 222 - {#if siteInfo.additionalInfo.contact.email} 223 - <p>Email: <a href="mailto:{siteInfo.additionalInfo.contact.email}" class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]">{siteInfo.additionalInfo.contact.email}</a></p> 224 - {/if} 225 - {#if siteInfo.additionalInfo.contact.social && siteInfo.additionalInfo.contact.social.length > 0} 226 - <p>Social:</p> 227 - <ul> 228 - {#each siteInfo.additionalInfo.contact.social as social} 229 - <li> 230 - {#if social.url} 231 - <a 232 - href="{social.url}" 233 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]" 234 - >{social.platform}</a 235 - > 236 - {:else} 237 - {social.platform} 238 - {/if} 239 - {#if social.handle} 240 - ({social.handle}) 241 - {/if} 242 - </li> 243 - {/each} 244 - </ul> 245 - {/if} 246 - {/if} 247 - 248 - {#if siteInfo.additionalInfo.deployment} 249 - <h2 class="text-xl font-semibold mt-6 mb-2">Deployment</h2> 250 - {#if siteInfo.additionalInfo.deployment.platform} 251 - <p>Platform: {siteInfo.additionalInfo.deployment.platform}</p> 252 - {/if} 253 - {#if siteInfo.additionalInfo.deployment.cdn} 254 - <p>CDN: {siteInfo.additionalInfo.deployment.cdn}</p> 255 - {/if} 256 - {#if siteInfo.additionalInfo.deployment.customDomain !== undefined} 257 - <p>Custom Domain: {siteInfo.additionalInfo.deployment.customDomain ? 'Yes' : 'No'}</p> 258 - {/if} 259 - {/if} 260 - 261 - {#if siteInfo.additionalInfo.analytics} 262 - <h2 class="text-xl font-semibold mt-6 mb-2">Analytics</h2> 263 - {#if siteInfo.additionalInfo.analytics.services && siteInfo.additionalInfo.analytics.services.length > 0} 264 - <p>Services: {siteInfo.additionalInfo.analytics.services.join(', ')}</p> 265 - {/if} 266 - {#if siteInfo.additionalInfo.analytics.cookiePolicy} 267 - <p>Cookie Policy: {@html siteInfo.additionalInfo.analytics.cookiePolicy}</p> 268 - {/if} 269 - {/if} 270 - 271 - {#if siteInfo.additionalInfo.sectionLicense && siteInfo.additionalInfo.sectionLicense.length > 0} 272 - <h2 class="text-xl font-semibold mt-6 mb-2">Section Licences</h2> 273 - <ul> 274 - {#each siteInfo.additionalInfo.sectionLicense as license} 275 - <li> 276 - {#if license.url} 277 - <a 278 - href="{license.url}" 279 - class="text-[var(--link-color)] hover:text-[var(--link-hover-color)]" 280 - >{license.name || 'Licence'}</a 281 - > 282 - {:else} 283 - {license.name || 'Licence'} 284 - {/if} 285 - {#if license.section} 286 - ({license.section}) 287 - {/if} 288 - </li> 289 - {/each} 290 - </ul> 291 - {/if} 292 - {/if} 293 - </div> 294 - {:else} 295 - <p>Loading site information...</p> 296 - {/if} 297 - </div>
static/fallback/banner.svg src/lib/assets/fallback/banner.svg
static/fallback/profile.svg src/lib/assets/fallback/profile.svg
-6
static/favicon/about.txt
··· 1 - This favicon was generated using the following font: 2 - 3 - - Font Title: Alice 4 - - Font Author: Copyright 2011 The Alice Project Authors (https://github.com/cyrealtype/Alice) 5 - - Font Source: http://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6FcJpA_chzJ0.ttf 6 - - Font Licence: SIL Open Font Licence, 1.1 (http://assets/scripts.sil.org/OFL))
static/favicon/android-chrome-192x192.png

This is a binary file and will not be displayed.

static/favicon/android-chrome-512x512.png

This is a binary file and will not be displayed.

static/favicon/apple-touch-icon.png

This is a binary file and will not be displayed.

static/favicon/favicon-16x16.png

This is a binary file and will not be displayed.

static/favicon/favicon-32x32.png

This is a binary file and will not be displayed.

-19
static/favicon/site.webmanifest
··· 1 - { 2 - "name": "Ewan's Corner", 3 - "short_name": "Ewan's Corner", 4 - "icons": [ 5 - { 6 - "src": "/favicon/android-chrome-192x192.png", 7 - "sizes": "192x192", 8 - "type": "image/png" 9 - }, 10 - { 11 - "src": "/favicon/android-chrome-512x512.png", 12 - "sizes": "512x512", 13 - "type": "image/png" 14 - } 15 - ], 16 - "theme_color": "#0a1607", 17 - "background_color": "#0f0f0f", 18 - "display": "standalone" 19 - }
static/og/blog.png

This is a binary file and will not be displayed.

-107
static/scripts/themeLoader.js
··· 1 - // Inline theme loader - compiled from themeLoader.ts 2 - // This runs immediately when the script loads 3 - (function() { 4 - 'use strict'; 5 - 6 - // Theme configuration - single source of truth 7 - const THEMES = [ 8 - { id: "default", name: "Green (Default)" }, 9 - { id: "blue", name: "Blue" }, 10 - { id: "purple", name: "Purple" }, 11 - { id: "bubblegum", name: "Bubblegum" }, 12 - { id: "slate", name: "Slate" }, 13 - { id: "sand", name: "Sand" }, 14 - { id: "ocean", name: "Ocean" }, 15 - { id: "sunset", name: "Sunset" }, 16 - { id: "mint", name: "Mint" }, 17 - { id: "lavender", name: "Lavender" }, 18 - { id: "rose", name: "Rose" }, 19 - { id: "amber", name: "Amber" }, 20 - { id: "teal", name: "Teal" }, 21 - { id: "olive", name: "Olive" }, 22 - { id: "indigo", name: "Indigo" }, 23 - { id: "coral", name: "Coral" }, 24 - { id: "charcoal", name: "Charcoal" }, 25 - { id: "wood", name: "Wood" }, 26 - { id: "werewolf", name: "Werewolf" }, 27 - { id: "high-contrast", name: "High Contrast (Accessibility)" }, 28 - { id: "low-contrast", name: "Low Contrast (Accessibility)" }, 29 - ]; 30 - 31 - const THEME_STORAGE_KEYS = { 32 - MODE: "theme-mode", 33 - COLOR: "color-theme", 34 - }; 35 - 36 - // Cache DOM element for better performance 37 - const docElement = document.documentElement; 38 - const themeClassList = docElement.classList; 39 - 40 - /** 41 - * Applies theme classes to the document element 42 - */ 43 - function applyTheme(isDarkMode, themeId) { 44 - // Remove all existing theme classes efficiently 45 - themeClassList.remove("light"); 46 - 47 - // Only remove non-default themes to reduce DOM operations 48 - if (themeId !== "default") { 49 - THEMES.forEach((theme) => { 50 - if (theme.id !== "default") { 51 - themeClassList.remove(theme.id); 52 - } 53 - }); 54 - } 55 - 56 - // Apply light mode class if needed 57 - if (!isDarkMode) { 58 - themeClassList.add("light"); 59 - } 60 - 61 - // Apply color theme class if not default 62 - if (themeId !== "default") { 63 - themeClassList.add(themeId); 64 - } 65 - } 66 - 67 - /** 68 - * Gets the user's theme preferences from localStorage and system 69 - */ 70 - function getThemePreferences() { 71 - const savedThemeMode = localStorage.getItem(THEME_STORAGE_KEYS.MODE); 72 - const savedColorTheme = localStorage.getItem(THEME_STORAGE_KEYS.COLOR); 73 - 74 - let isDarkMode; 75 - if (savedThemeMode) { 76 - isDarkMode = savedThemeMode === "dark"; 77 - } else { 78 - // Use system preference as default 79 - const prefersDark = window.matchMedia("(prefers-color-scheme: dark)").matches; 80 - isDarkMode = prefersDark; 81 - } 82 - 83 - const themeId = savedColorTheme || "default"; 84 - 85 - return { isDarkMode, themeId }; 86 - } 87 - 88 - /** 89 - * Initializes theme system - runs immediately 90 - */ 91 - function initializeTheme() { 92 - const { isDarkMode, themeId } = getThemePreferences(); 93 - applyTheme(isDarkMode, themeId); 94 - } 95 - 96 - // Initialize theme immediately 97 - initializeTheme(); 98 - 99 - // Make theme functions available globally for the Svelte component 100 - window.__themeLoader = { 101 - THEMES, 102 - THEME_STORAGE_KEYS, 103 - applyTheme, 104 - getThemePreferences, 105 - initializeTheme 106 - }; 107 - })();
-12
static/sitemap.xml
··· 6 6 <changefreq>weekly</changefreq> 7 7 <priority>1.0</priority> 8 8 </url> 9 - <url> 10 - <loc>https://ewancroft.uk/blog</loc> 11 - <lastmod>2025-01-11</lastmod> 12 - <changefreq>daily</changefreq> 13 - <priority>0.8</priority> 14 - </url> 15 - <url> 16 - <loc>https://ewancroft.uk/now</loc> 17 - <lastmod>2025-01-11</lastmod> 18 - <changefreq>monthly</changefreq> 19 - <priority>0.6</priority> 20 - </url> 21 9 </urlset>
+2 -15
svelte.config.js
··· 1 - import adapter from '@sveltejs/adapter-vercel'; 1 + import adapter from '@sveltejs/adapter-auto'; 2 2 import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; 3 3 4 4 /** @type {import('@sveltejs/kit').Config} */ ··· 6 6 // Consult https://svelte.dev/docs/kit/integrations 7 7 // for more information about preprocessors 8 8 preprocess: vitePreprocess(), 9 - 10 9 kit: { 11 10 // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list. 12 11 // If your environment is not supported, or you settled on a specific environment, switch out the adapter. 13 12 // See https://svelte.dev/docs/kit/adapters for more information about adapters. 14 - adapter: adapter({ 15 - runtime: 'nodejs20.x' 16 - }), 17 - prerender: { 18 - entries: ['*'], 19 - origin: 'https://ewancroft.uk' 20 - }, 21 - alias: { 22 - '$components': './src/lib/components', 23 - '$css': './src/lib/css', 24 - '$services': './src/lib/services', 25 - '$utils': './src/lib/utils' 26 - } 13 + adapter: adapter() 27 14 } 28 15 }; 29 16
-99
tailwind.config.ts
··· 1 - import forms from "@tailwindcss/forms"; 2 - import typography from "@tailwindcss/typography"; 3 - 4 - import type { Config } from "tailwindcss"; 5 - 6 - export default { 7 - content: ["./src/**/*.{html,js,svelte,ts}"], 8 - 9 - theme: { 10 - extend: { 11 - colors: { 12 - primary: "var(--link-color)", 13 - "primary-hover": "var(--link-hover-color)", 14 - background: "var(--background-color)", 15 - text: "var(--text-color)", 16 - card: "var(--card-bg)", 17 - "header-footer": "var(--header-footer-bg)", 18 - button: "var(--button-bg)", 19 - "button-hover": "var(--button-hover-bg)", 20 - }, 21 - typography: { 22 - DEFAULT: { 23 - css: { 24 - color: "var(--text-color)", 25 - a: { 26 - color: "var(--link-color)", 27 - "&:hover": { 28 - color: "var(--link-hover-color)", 29 - }, 30 - }, 31 - h1: { 32 - color: "var(--text-color)", 33 - }, 34 - h2: { 35 - color: "var(--text-color)", 36 - }, 37 - h3: { 38 - color: "var(--text-color)", 39 - }, 40 - h4: { 41 - color: "var(--text-color)", 42 - }, 43 - h5: { 44 - color: "var(--text-color)", 45 - }, 46 - h6: { 47 - color: "var(--text-color)", 48 - }, 49 - strong: { 50 - color: "var(--text-color)", 51 - }, 52 - code: { 53 - color: "var(--text-color)", 54 - backgroundColor: "var(--background-color)", 55 - borderRadius: "0.25rem", 56 - padding: "0.1rem 0.3rem", 57 - }, 58 - blockquote: { 59 - color: "var(--text-color)", 60 - borderLeftColor: "var(--button-bg)", 61 - backgroundColor: "var(--background-color)", 62 - borderRadius: "0 0.5rem 0.5rem 0", 63 - padding: "0.5rem 1rem", 64 - }, 65 - ".task-list-item": { 66 - "list-style-type": "none", 67 - }, 68 - '[type="checkbox"]': { 69 - "border-radius": "5px", 70 - "border-color": "var(--button-bg)", 71 - }, 72 - img: { 73 - "border-style": "solid", 74 - "border-color": "var(--button-bg)", 75 - "border-width": "1px", 76 - "border-radius": "1em", 77 - }, 78 - hr: { 79 - borderColor: "var(--button-bg)", 80 - }, 81 - pre: { 82 - backgroundColor: "var(--background-color)", 83 - color: "var(--text-color)", 84 - }, 85 - }, 86 - }, 87 - invert: { 88 - css: { 89 - code: { 90 - backgroundColor: "var(--background-color)", 91 - }, 92 - }, 93 - }, 94 - }, 95 - }, 96 - }, 97 - 98 - plugins: [forms, typography], 99 - } satisfies Config;
+17 -18
tsconfig.json
··· 1 1 { 2 - "extends": "./.svelte-kit/tsconfig.json", 3 - "compilerOptions": { 4 - "allowJs": true, 5 - "checkJs": true, 6 - "esModuleInterop": true, 7 - "forceConsistentCasingInFileNames": true, 8 - "resolveJsonModule": true, 9 - "skipLibCheck": true, 10 - "sourceMap": true, 11 - "strict": true, 12 - "moduleResolution": "bundler", 13 - "allowImportingTsExtensions": true 14 - } 15 - // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias 16 - // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files 17 - // 18 - // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes 19 - // from the referenced tsconfig.json - TypeScript does not merge them in 2 + "extends": "./.svelte-kit/tsconfig.json", 3 + "compilerOptions": { 4 + "allowJs": true, 5 + "checkJs": true, 6 + "esModuleInterop": true, 7 + "forceConsistentCasingInFileNames": true, 8 + "resolveJsonModule": true, 9 + "skipLibCheck": true, 10 + "sourceMap": true, 11 + "strict": true, 12 + "moduleResolution": "bundler" 13 + } 14 + // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias 15 + // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files 16 + // 17 + // To make changes to top-level options such as include and exclude, we recommend extending 18 + // the generated config; see https://svelte.dev/docs/kit/configuration#typescript 20 19 }
-32
vercel.json
··· 1 - { 2 - "rewrites": [ 3 - { 4 - "source": "/rss", 5 - "destination": "/blog/rss" 6 - }, 7 - { 8 - "source": "/rss.xml", 9 - "destination": "/blog/rss" 10 - }, 11 - { 12 - "source": "/feed", 13 - "destination": "/blog/rss" 14 - }, 15 - { 16 - "source": "/feed.xml", 17 - "destination": "/blog/rss" 18 - } 19 - ], 20 - "redirects": [ 21 - { 22 - "source": "/sitemap.xml", 23 - "destination": "/static/sitemap.xml" 24 - } 25 - ], 26 - "crons": [ 27 - { 28 - "path": "/api/cron/warmup", 29 - "schedule": "0 3 * * *" 30 - } 31 - ] 32 - }
+4 -55
vite.config.ts
··· 1 - import { sveltekit } from "@sveltejs/kit/vite"; 2 - import { defineConfig } from "vite"; 1 + import tailwindcss from '@tailwindcss/vite'; 2 + import { sveltekit } from '@sveltejs/kit/vite'; 3 + import { defineConfig } from 'vite'; 3 4 4 5 export default defineConfig({ 5 - plugins: [sveltekit()], 6 - css: { 7 - postcss: './postcss.config.js' 8 - }, 9 - build: { 10 - target: "esnext", 11 - // Increase chunk size warning limit while we optimize 12 - chunkSizeWarningLimit: 800, 13 - // Enable source maps for debugging (disable in production if needed) 14 - sourcemap: false, 15 - // Optimize chunk splitting 16 - rollupOptions: { 17 - output: { 18 - // Better chunk naming for caching 19 - chunkFileNames: (chunkInfo) => { 20 - const facadeModuleId = chunkInfo.facadeModuleId ? chunkInfo.facadeModuleId.split('/').pop() : 'chunk'; 21 - return `js/${facadeModuleId}-[hash].js`; 22 - }, 23 - // Optimize asset naming 24 - assetFileNames: (assetInfo) => { 25 - if (!assetInfo.name) return 'assets/[name]-[hash].[ext]'; 26 - 27 - const info = assetInfo.name.split('.'); 28 - const ext = info[info.length - 1]; 29 - if (/\.(css)$/.test(assetInfo.name)) { 30 - return `css/[name]-[hash].${ext}`; 31 - } 32 - if (/\.(png|jpe?g|gif|svg|webp|avif)$/.test(assetInfo.name)) { 33 - return `images/[name]-[hash].${ext}`; 34 - } 35 - if (/\.(woff2?|eot|ttf|otf)$/.test(assetInfo.name)) { 36 - return `fonts/[name]-[hash].${ext}`; 37 - } 38 - return `assets/[name]-[hash].${ext}`; 39 - } 40 - } 41 - } 42 - }, 43 - // Optimize dependencies 44 - optimizeDeps: { 45 - include: ['svelte'], 46 - exclude: ['@resvg/resvg-js'] // Exclude heavy dependencies from pre-bundling 47 - }, 48 - // Server optimizations for development 49 - server: { 50 - hmr: { 51 - overlay: false 52 - } 53 - }, 54 - // Define environment variables for build optimization 55 - define: { 56 - __BUILD_TIME__: JSON.stringify(new Date().toISOString()) 57 - } 6 + plugins: [tailwindcss(), sveltekit()] 58 7 });
-74
website.code-workspace
··· 1 - { 2 - "folders": [ 3 - { 4 - "path": "." 5 - } 6 - ], 7 - "settings": { 8 - "editor.formatOnSave": true, 9 - "editor.defaultFormatter": "esbenp.prettier-vscode", 10 - "css.validate": false, 11 - "css.customData": [ 12 - ".vscode/tailwind.json" 13 - ], 14 - "tailwindCSS.includeLanguages": { 15 - "svelte": "html" 16 - }, 17 - "tailwindCSS.experimental.configFile": "./tailwind.config.ts", 18 - "workbench.colorCustomizations": { 19 - "activityBar.background": "#1a2a20", 20 - "titleBar.activeBackground": "#1a2a20", 21 - "titleBar.activeForeground": "#e7f0e7" 22 - }, 23 - "editor.codeActionsOnSave": { 24 - "source.fixAll.eslint": "explicit" 25 - }, 26 - "editor.tabSize": 2, 27 - "editor.detectIndentation": false, 28 - "svelte.enable-ts-plugin": true, 29 - "svelte.plugin.svelte.format.enable": true, 30 - "files.associations": { 31 - "*.svelte": "svelte" 32 - }, 33 - "emmet.includeLanguages": { 34 - "svelte": "html" 35 - }, 36 - "typescript.tsdk": "node_modules/typescript/lib", 37 - "cSpell.words": [ 38 - "atproto", 39 - "bluesky", 40 - "rehype", 41 - "remark", 42 - "svelte", 43 - "tailwindcss", 44 - "whitebreeze", 45 - "whitewind", 46 - "whtwnd" 47 - ] 48 - }, 49 - "extensions": { 50 - "recommendations": [ 51 - "svelte.svelte-vscode", 52 - "esbenp.prettier-vscode", 53 - "bradlc.vscode-tailwindcss", 54 - "dbaeumer.vscode-eslint", 55 - "streetsidesoftware.code-spell-checker", 56 - "csstools.postcss", 57 - "ardenivanov.svelte-intellisense", 58 - "formulahendry.auto-rename-tag", 59 - "christian-kohler.path-intellisense", 60 - "eamodio.gitlens" 61 - ] 62 - }, 63 - "launch": { 64 - "configurations": [ 65 - { 66 - "type": "chrome", 67 - "request": "launch", 68 - "name": "Launch Chrome against localhost", 69 - "url": "http://localhost:5173", 70 - "webRoot": "${workspaceFolder}" 71 - } 72 - ] 73 - } 74 - }