[READ-ONLY] Mirror of https://github.com/flo-bit/bluesky-visualizers. visualizing bluesky live data in different ways flo-bit.dev/bluesky-visualizers/
bluesky svelte visualizations
0

Configure Feed

Select the types of activity you want to include in your feed.

first commit

Florian (Nov 19, 2024, 3:26 AM +0100) 501a7f9f

+6204
+51
.github/workflows/deploy_gh_pages.yml
··· 1 + name: Deploy to GitHub Pages 2 + 3 + on: 4 + push: 5 + branches: 6 + - gh-deploy 7 + 8 + jobs: 9 + build_site: 10 + runs-on: ubuntu-latest 11 + steps: 12 + - name: Checkout 13 + uses: actions/checkout@v3 14 + 15 + - name: Install Node.js 16 + uses: actions/setup-node@v3 17 + with: 18 + node-version: 18 19 + cache: npm 20 + 21 + - name: Install dependencies 22 + run: npm install 23 + 24 + - name: build 25 + env: 26 + BASE_PATH: '/${{ github.event.repository.name }}' 27 + run: | 28 + npm run build 29 + 30 + - name: Upload Artifacts 31 + uses: actions/upload-pages-artifact@v2 32 + with: 33 + # this should match the `pages` option in your adapter-static options 34 + path: 'build/' 35 + 36 + deploy: 37 + needs: build_site 38 + runs-on: ubuntu-latest 39 + 40 + permissions: 41 + pages: write 42 + id-token: write 43 + 44 + environment: 45 + name: github-pages 46 + url: ${{ steps.deployment.outputs.page_url }} 47 + 48 + steps: 49 + - name: Deploy 50 + id: deployment 51 + uses: actions/deploy-pages@v2
+21
.gitignore
··· 1 + node_modules 2 + 3 + # Output 4 + .output 5 + .vercel 6 + /.svelte-kit 7 + /build 8 + 9 + # OS 10 + .DS_Store 11 + Thumbs.db 12 + 13 + # Env 14 + .env 15 + .env.* 16 + !.env.example 17 + !.env.test 18 + 19 + # Vite 20 + vite.config.js.timestamp-* 21 + vite.config.ts.timestamp-*
+1
.npmrc
··· 1 + engine-strict=true
+4
.prettierignore
··· 1 + # Package Managers 2 + package-lock.json 3 + pnpm-lock.yaml 4 + yarn.lock
+15
.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 + }
+38
README.md
··· 1 + # sv 2 + 3 + Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli). 4 + 5 + ## Creating a project 6 + 7 + If you're seeing this, you've probably already done this step. Congrats! 8 + 9 + ```bash 10 + # create a new project in the current directory 11 + npx sv create 12 + 13 + # create a new project in my-app 14 + npx sv create my-app 15 + ``` 16 + 17 + ## Developing 18 + 19 + Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: 20 + 21 + ```bash 22 + npm run dev 23 + 24 + # or start the server and open the app in a new browser tab 25 + npm run dev -- --open 26 + ``` 27 + 28 + ## Building 29 + 30 + To create a production version of your app: 31 + 32 + ```bash 33 + npm run build 34 + ``` 35 + 36 + You can preview the production build with `npm run preview`. 37 + 38 + > To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.
+33
eslint.config.js
··· 1 + import prettier from 'eslint-config-prettier'; 2 + import js from '@eslint/js'; 3 + import svelte from 'eslint-plugin-svelte'; 4 + import globals from 'globals'; 5 + import ts from 'typescript-eslint'; 6 + 7 + export default ts.config( 8 + js.configs.recommended, 9 + ...ts.configs.recommended, 10 + ...svelte.configs['flat/recommended'], 11 + prettier, 12 + ...svelte.configs['flat/prettier'], 13 + { 14 + languageOptions: { 15 + globals: { 16 + ...globals.browser, 17 + ...globals.node 18 + } 19 + } 20 + }, 21 + { 22 + files: ['**/*.svelte'], 23 + 24 + languageOptions: { 25 + parserOptions: { 26 + parser: ts.parser 27 + } 28 + } 29 + }, 30 + { 31 + ignores: ['build/', '.svelte-kit/', 'dist/'] 32 + } 33 + );
+4531
package-lock.json
··· 1 + { 2 + "name": "bluesky-trending", 3 + "version": "0.0.1", 4 + "lockfileVersion": 3, 5 + "requires": true, 6 + "packages": { 7 + "": { 8 + "name": "bluesky-trending", 9 + "version": "0.0.1", 10 + "dependencies": { 11 + "@duckdb/duckdb-wasm": "^1.29.0", 12 + "@sveltejs/adapter-static": "^3.0.6", 13 + "@tailwindcss/forms": "^0.5.9", 14 + "@tailwindcss/typography": "^0.5.15", 15 + "d3-cloud": "^1.2.7", 16 + "d3-scale": "^4.0.2", 17 + "d3-scale-chromatic": "^3.1.0", 18 + "d3-selection": "^3.0.0", 19 + "d3-transition": "^3.0.1", 20 + "gsap": "^3.12.5", 21 + "pixi.js": "^8.5.2", 22 + "svelte-relative-time": "^0.0.6" 23 + }, 24 + "devDependencies": { 25 + "@sveltejs/adapter-auto": "^3.0.0", 26 + "@sveltejs/kit": "^2.0.0", 27 + "@sveltejs/vite-plugin-svelte": "^4.0.0", 28 + "@types/eslint": "^9.6.0", 29 + "autoprefixer": "^10.4.20", 30 + "eslint": "^9.7.0", 31 + "eslint-config-prettier": "^9.1.0", 32 + "eslint-plugin-svelte": "^2.36.0", 33 + "globals": "^15.0.0", 34 + "prettier": "^3.3.2", 35 + "prettier-plugin-svelte": "^3.2.6", 36 + "prettier-plugin-tailwindcss": "^0.6.5", 37 + "svelte": "^5.0.0", 38 + "svelte-check": "^4.0.0", 39 + "tailwindcss": "^3.4.9", 40 + "typescript": "^5.0.0", 41 + "typescript-eslint": "^8.0.0", 42 + "vite": "^5.0.3" 43 + } 44 + }, 45 + "node_modules/@alloc/quick-lru": { 46 + "version": "5.2.0", 47 + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 48 + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 49 + "engines": { 50 + "node": ">=10" 51 + }, 52 + "funding": { 53 + "url": "https://github.com/sponsors/sindresorhus" 54 + } 55 + }, 56 + "node_modules/@ampproject/remapping": { 57 + "version": "2.3.0", 58 + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 59 + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 60 + "dependencies": { 61 + "@jridgewell/gen-mapping": "^0.3.5", 62 + "@jridgewell/trace-mapping": "^0.3.24" 63 + }, 64 + "engines": { 65 + "node": ">=6.0.0" 66 + } 67 + }, 68 + "node_modules/@duckdb/duckdb-wasm": { 69 + "version": "1.29.0", 70 + "resolved": "https://registry.npmjs.org/@duckdb/duckdb-wasm/-/duckdb-wasm-1.29.0.tgz", 71 + "integrity": "sha512-8Zq7vafQuIz9gklC/9375KE38UlkaS2n8+yvG+/JK7irm3DjwYNJHL4xfplIj0bSHFIg6we5XhWYFqtE/vO3+Q==", 72 + "dependencies": { 73 + "apache-arrow": "^17.0.0" 74 + } 75 + }, 76 + "node_modules/@esbuild/aix-ppc64": { 77 + "version": "0.21.5", 78 + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", 79 + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", 80 + "cpu": [ 81 + "ppc64" 82 + ], 83 + "optional": true, 84 + "os": [ 85 + "aix" 86 + ], 87 + "engines": { 88 + "node": ">=12" 89 + } 90 + }, 91 + "node_modules/@esbuild/android-arm": { 92 + "version": "0.21.5", 93 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", 94 + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", 95 + "cpu": [ 96 + "arm" 97 + ], 98 + "optional": true, 99 + "os": [ 100 + "android" 101 + ], 102 + "engines": { 103 + "node": ">=12" 104 + } 105 + }, 106 + "node_modules/@esbuild/android-arm64": { 107 + "version": "0.21.5", 108 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", 109 + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", 110 + "cpu": [ 111 + "arm64" 112 + ], 113 + "optional": true, 114 + "os": [ 115 + "android" 116 + ], 117 + "engines": { 118 + "node": ">=12" 119 + } 120 + }, 121 + "node_modules/@esbuild/android-x64": { 122 + "version": "0.21.5", 123 + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", 124 + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", 125 + "cpu": [ 126 + "x64" 127 + ], 128 + "optional": true, 129 + "os": [ 130 + "android" 131 + ], 132 + "engines": { 133 + "node": ">=12" 134 + } 135 + }, 136 + "node_modules/@esbuild/darwin-arm64": { 137 + "version": "0.21.5", 138 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", 139 + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", 140 + "cpu": [ 141 + "arm64" 142 + ], 143 + "optional": true, 144 + "os": [ 145 + "darwin" 146 + ], 147 + "engines": { 148 + "node": ">=12" 149 + } 150 + }, 151 + "node_modules/@esbuild/darwin-x64": { 152 + "version": "0.21.5", 153 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", 154 + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", 155 + "cpu": [ 156 + "x64" 157 + ], 158 + "optional": true, 159 + "os": [ 160 + "darwin" 161 + ], 162 + "engines": { 163 + "node": ">=12" 164 + } 165 + }, 166 + "node_modules/@esbuild/freebsd-arm64": { 167 + "version": "0.21.5", 168 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", 169 + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", 170 + "cpu": [ 171 + "arm64" 172 + ], 173 + "optional": true, 174 + "os": [ 175 + "freebsd" 176 + ], 177 + "engines": { 178 + "node": ">=12" 179 + } 180 + }, 181 + "node_modules/@esbuild/freebsd-x64": { 182 + "version": "0.21.5", 183 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", 184 + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", 185 + "cpu": [ 186 + "x64" 187 + ], 188 + "optional": true, 189 + "os": [ 190 + "freebsd" 191 + ], 192 + "engines": { 193 + "node": ">=12" 194 + } 195 + }, 196 + "node_modules/@esbuild/linux-arm": { 197 + "version": "0.21.5", 198 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", 199 + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", 200 + "cpu": [ 201 + "arm" 202 + ], 203 + "optional": true, 204 + "os": [ 205 + "linux" 206 + ], 207 + "engines": { 208 + "node": ">=12" 209 + } 210 + }, 211 + "node_modules/@esbuild/linux-arm64": { 212 + "version": "0.21.5", 213 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", 214 + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", 215 + "cpu": [ 216 + "arm64" 217 + ], 218 + "optional": true, 219 + "os": [ 220 + "linux" 221 + ], 222 + "engines": { 223 + "node": ">=12" 224 + } 225 + }, 226 + "node_modules/@esbuild/linux-ia32": { 227 + "version": "0.21.5", 228 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", 229 + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", 230 + "cpu": [ 231 + "ia32" 232 + ], 233 + "optional": true, 234 + "os": [ 235 + "linux" 236 + ], 237 + "engines": { 238 + "node": ">=12" 239 + } 240 + }, 241 + "node_modules/@esbuild/linux-loong64": { 242 + "version": "0.21.5", 243 + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", 244 + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", 245 + "cpu": [ 246 + "loong64" 247 + ], 248 + "optional": true, 249 + "os": [ 250 + "linux" 251 + ], 252 + "engines": { 253 + "node": ">=12" 254 + } 255 + }, 256 + "node_modules/@esbuild/linux-mips64el": { 257 + "version": "0.21.5", 258 + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", 259 + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", 260 + "cpu": [ 261 + "mips64el" 262 + ], 263 + "optional": true, 264 + "os": [ 265 + "linux" 266 + ], 267 + "engines": { 268 + "node": ">=12" 269 + } 270 + }, 271 + "node_modules/@esbuild/linux-ppc64": { 272 + "version": "0.21.5", 273 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", 274 + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", 275 + "cpu": [ 276 + "ppc64" 277 + ], 278 + "optional": true, 279 + "os": [ 280 + "linux" 281 + ], 282 + "engines": { 283 + "node": ">=12" 284 + } 285 + }, 286 + "node_modules/@esbuild/linux-riscv64": { 287 + "version": "0.21.5", 288 + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", 289 + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", 290 + "cpu": [ 291 + "riscv64" 292 + ], 293 + "optional": true, 294 + "os": [ 295 + "linux" 296 + ], 297 + "engines": { 298 + "node": ">=12" 299 + } 300 + }, 301 + "node_modules/@esbuild/linux-s390x": { 302 + "version": "0.21.5", 303 + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", 304 + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", 305 + "cpu": [ 306 + "s390x" 307 + ], 308 + "optional": true, 309 + "os": [ 310 + "linux" 311 + ], 312 + "engines": { 313 + "node": ">=12" 314 + } 315 + }, 316 + "node_modules/@esbuild/linux-x64": { 317 + "version": "0.21.5", 318 + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", 319 + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", 320 + "cpu": [ 321 + "x64" 322 + ], 323 + "optional": true, 324 + "os": [ 325 + "linux" 326 + ], 327 + "engines": { 328 + "node": ">=12" 329 + } 330 + }, 331 + "node_modules/@esbuild/netbsd-x64": { 332 + "version": "0.21.5", 333 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", 334 + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", 335 + "cpu": [ 336 + "x64" 337 + ], 338 + "optional": true, 339 + "os": [ 340 + "netbsd" 341 + ], 342 + "engines": { 343 + "node": ">=12" 344 + } 345 + }, 346 + "node_modules/@esbuild/openbsd-x64": { 347 + "version": "0.21.5", 348 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", 349 + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", 350 + "cpu": [ 351 + "x64" 352 + ], 353 + "optional": true, 354 + "os": [ 355 + "openbsd" 356 + ], 357 + "engines": { 358 + "node": ">=12" 359 + } 360 + }, 361 + "node_modules/@esbuild/sunos-x64": { 362 + "version": "0.21.5", 363 + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", 364 + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", 365 + "cpu": [ 366 + "x64" 367 + ], 368 + "optional": true, 369 + "os": [ 370 + "sunos" 371 + ], 372 + "engines": { 373 + "node": ">=12" 374 + } 375 + }, 376 + "node_modules/@esbuild/win32-arm64": { 377 + "version": "0.21.5", 378 + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", 379 + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", 380 + "cpu": [ 381 + "arm64" 382 + ], 383 + "optional": true, 384 + "os": [ 385 + "win32" 386 + ], 387 + "engines": { 388 + "node": ">=12" 389 + } 390 + }, 391 + "node_modules/@esbuild/win32-ia32": { 392 + "version": "0.21.5", 393 + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", 394 + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", 395 + "cpu": [ 396 + "ia32" 397 + ], 398 + "optional": true, 399 + "os": [ 400 + "win32" 401 + ], 402 + "engines": { 403 + "node": ">=12" 404 + } 405 + }, 406 + "node_modules/@esbuild/win32-x64": { 407 + "version": "0.21.5", 408 + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", 409 + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", 410 + "cpu": [ 411 + "x64" 412 + ], 413 + "optional": true, 414 + "os": [ 415 + "win32" 416 + ], 417 + "engines": { 418 + "node": ">=12" 419 + } 420 + }, 421 + "node_modules/@eslint-community/eslint-utils": { 422 + "version": "4.4.1", 423 + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", 424 + "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", 425 + "dev": true, 426 + "dependencies": { 427 + "eslint-visitor-keys": "^3.4.3" 428 + }, 429 + "engines": { 430 + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 431 + }, 432 + "funding": { 433 + "url": "https://opencollective.com/eslint" 434 + }, 435 + "peerDependencies": { 436 + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 437 + } 438 + }, 439 + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { 440 + "version": "3.4.3", 441 + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 442 + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 443 + "dev": true, 444 + "engines": { 445 + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 446 + }, 447 + "funding": { 448 + "url": "https://opencollective.com/eslint" 449 + } 450 + }, 451 + "node_modules/@eslint-community/regexpp": { 452 + "version": "4.12.1", 453 + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 454 + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 455 + "dev": true, 456 + "engines": { 457 + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 458 + } 459 + }, 460 + "node_modules/@eslint/config-array": { 461 + "version": "0.19.0", 462 + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.0.tgz", 463 + "integrity": "sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==", 464 + "dev": true, 465 + "dependencies": { 466 + "@eslint/object-schema": "^2.1.4", 467 + "debug": "^4.3.1", 468 + "minimatch": "^3.1.2" 469 + }, 470 + "engines": { 471 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 472 + } 473 + }, 474 + "node_modules/@eslint/core": { 475 + "version": "0.9.0", 476 + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.9.0.tgz", 477 + "integrity": "sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==", 478 + "dev": true, 479 + "engines": { 480 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 481 + } 482 + }, 483 + "node_modules/@eslint/eslintrc": { 484 + "version": "3.2.0", 485 + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", 486 + "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", 487 + "dev": true, 488 + "dependencies": { 489 + "ajv": "^6.12.4", 490 + "debug": "^4.3.2", 491 + "espree": "^10.0.1", 492 + "globals": "^14.0.0", 493 + "ignore": "^5.2.0", 494 + "import-fresh": "^3.2.1", 495 + "js-yaml": "^4.1.0", 496 + "minimatch": "^3.1.2", 497 + "strip-json-comments": "^3.1.1" 498 + }, 499 + "engines": { 500 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 501 + }, 502 + "funding": { 503 + "url": "https://opencollective.com/eslint" 504 + } 505 + }, 506 + "node_modules/@eslint/eslintrc/node_modules/globals": { 507 + "version": "14.0.0", 508 + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 509 + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 510 + "dev": true, 511 + "engines": { 512 + "node": ">=18" 513 + }, 514 + "funding": { 515 + "url": "https://github.com/sponsors/sindresorhus" 516 + } 517 + }, 518 + "node_modules/@eslint/js": { 519 + "version": "9.15.0", 520 + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.15.0.tgz", 521 + "integrity": "sha512-tMTqrY+EzbXmKJR5ToI8lxu7jaN5EdmrBFJpQk5JmSlyLsx6o4t27r883K5xsLuCYCpfKBCGswMSWXsM+jB7lg==", 522 + "dev": true, 523 + "engines": { 524 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 525 + } 526 + }, 527 + "node_modules/@eslint/object-schema": { 528 + "version": "2.1.4", 529 + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", 530 + "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", 531 + "dev": true, 532 + "engines": { 533 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 534 + } 535 + }, 536 + "node_modules/@eslint/plugin-kit": { 537 + "version": "0.2.3", 538 + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.3.tgz", 539 + "integrity": "sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==", 540 + "dev": true, 541 + "dependencies": { 542 + "levn": "^0.4.1" 543 + }, 544 + "engines": { 545 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 546 + } 547 + }, 548 + "node_modules/@humanfs/core": { 549 + "version": "0.19.1", 550 + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", 551 + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", 552 + "dev": true, 553 + "engines": { 554 + "node": ">=18.18.0" 555 + } 556 + }, 557 + "node_modules/@humanfs/node": { 558 + "version": "0.16.6", 559 + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", 560 + "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", 561 + "dev": true, 562 + "dependencies": { 563 + "@humanfs/core": "^0.19.1", 564 + "@humanwhocodes/retry": "^0.3.0" 565 + }, 566 + "engines": { 567 + "node": ">=18.18.0" 568 + } 569 + }, 570 + "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { 571 + "version": "0.3.1", 572 + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", 573 + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", 574 + "dev": true, 575 + "engines": { 576 + "node": ">=18.18" 577 + }, 578 + "funding": { 579 + "type": "github", 580 + "url": "https://github.com/sponsors/nzakas" 581 + } 582 + }, 583 + "node_modules/@humanwhocodes/module-importer": { 584 + "version": "1.0.1", 585 + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 586 + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 587 + "dev": true, 588 + "engines": { 589 + "node": ">=12.22" 590 + }, 591 + "funding": { 592 + "type": "github", 593 + "url": "https://github.com/sponsors/nzakas" 594 + } 595 + }, 596 + "node_modules/@humanwhocodes/retry": { 597 + "version": "0.4.1", 598 + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", 599 + "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", 600 + "dev": true, 601 + "engines": { 602 + "node": ">=18.18" 603 + }, 604 + "funding": { 605 + "type": "github", 606 + "url": "https://github.com/sponsors/nzakas" 607 + } 608 + }, 609 + "node_modules/@isaacs/cliui": { 610 + "version": "8.0.2", 611 + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 612 + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 613 + "dependencies": { 614 + "string-width": "^5.1.2", 615 + "string-width-cjs": "npm:string-width@^4.2.0", 616 + "strip-ansi": "^7.0.1", 617 + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 618 + "wrap-ansi": "^8.1.0", 619 + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 620 + }, 621 + "engines": { 622 + "node": ">=12" 623 + } 624 + }, 625 + "node_modules/@jridgewell/gen-mapping": { 626 + "version": "0.3.5", 627 + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 628 + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 629 + "dependencies": { 630 + "@jridgewell/set-array": "^1.2.1", 631 + "@jridgewell/sourcemap-codec": "^1.4.10", 632 + "@jridgewell/trace-mapping": "^0.3.24" 633 + }, 634 + "engines": { 635 + "node": ">=6.0.0" 636 + } 637 + }, 638 + "node_modules/@jridgewell/resolve-uri": { 639 + "version": "3.1.2", 640 + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 641 + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 642 + "engines": { 643 + "node": ">=6.0.0" 644 + } 645 + }, 646 + "node_modules/@jridgewell/set-array": { 647 + "version": "1.2.1", 648 + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 649 + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 650 + "engines": { 651 + "node": ">=6.0.0" 652 + } 653 + }, 654 + "node_modules/@jridgewell/sourcemap-codec": { 655 + "version": "1.5.0", 656 + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 657 + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" 658 + }, 659 + "node_modules/@jridgewell/trace-mapping": { 660 + "version": "0.3.25", 661 + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 662 + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 663 + "dependencies": { 664 + "@jridgewell/resolve-uri": "^3.1.0", 665 + "@jridgewell/sourcemap-codec": "^1.4.14" 666 + } 667 + }, 668 + "node_modules/@nodelib/fs.scandir": { 669 + "version": "2.1.5", 670 + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 671 + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 672 + "dependencies": { 673 + "@nodelib/fs.stat": "2.0.5", 674 + "run-parallel": "^1.1.9" 675 + }, 676 + "engines": { 677 + "node": ">= 8" 678 + } 679 + }, 680 + "node_modules/@nodelib/fs.stat": { 681 + "version": "2.0.5", 682 + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 683 + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 684 + "engines": { 685 + "node": ">= 8" 686 + } 687 + }, 688 + "node_modules/@nodelib/fs.walk": { 689 + "version": "1.2.8", 690 + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 691 + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 692 + "dependencies": { 693 + "@nodelib/fs.scandir": "2.1.5", 694 + "fastq": "^1.6.0" 695 + }, 696 + "engines": { 697 + "node": ">= 8" 698 + } 699 + }, 700 + "node_modules/@pixi/colord": { 701 + "version": "2.9.6", 702 + "resolved": "https://registry.npmjs.org/@pixi/colord/-/colord-2.9.6.tgz", 703 + "integrity": "sha512-nezytU2pw587fQstUu1AsJZDVEynjskwOL+kibwcdxsMBFqPsFFNA7xl0ii/gXuDi6M0xj3mfRJj8pBSc2jCfA==" 704 + }, 705 + "node_modules/@pkgjs/parseargs": { 706 + "version": "0.11.0", 707 + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 708 + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 709 + "optional": true, 710 + "engines": { 711 + "node": ">=14" 712 + } 713 + }, 714 + "node_modules/@polka/url": { 715 + "version": "1.0.0-next.28", 716 + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.28.tgz", 717 + "integrity": "sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==" 718 + }, 719 + "node_modules/@rollup/rollup-android-arm-eabi": { 720 + "version": "4.27.3", 721 + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.27.3.tgz", 722 + "integrity": "sha512-EzxVSkIvCFxUd4Mgm4xR9YXrcp976qVaHnqom/Tgm+vU79k4vV4eYTjmRvGfeoW8m9LVcsAy/lGjcgVegKEhLQ==", 723 + "cpu": [ 724 + "arm" 725 + ], 726 + "optional": true, 727 + "os": [ 728 + "android" 729 + ] 730 + }, 731 + "node_modules/@rollup/rollup-android-arm64": { 732 + "version": "4.27.3", 733 + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.27.3.tgz", 734 + "integrity": "sha512-LJc5pDf1wjlt9o/Giaw9Ofl+k/vLUaYsE2zeQGH85giX2F+wn/Cg8b3c5CDP3qmVmeO5NzwVUzQQxwZvC2eQKw==", 735 + "cpu": [ 736 + "arm64" 737 + ], 738 + "optional": true, 739 + "os": [ 740 + "android" 741 + ] 742 + }, 743 + "node_modules/@rollup/rollup-darwin-arm64": { 744 + "version": "4.27.3", 745 + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.27.3.tgz", 746 + "integrity": "sha512-OuRysZ1Mt7wpWJ+aYKblVbJWtVn3Cy52h8nLuNSzTqSesYw1EuN6wKp5NW/4eSre3mp12gqFRXOKTcN3AI3LqA==", 747 + "cpu": [ 748 + "arm64" 749 + ], 750 + "optional": true, 751 + "os": [ 752 + "darwin" 753 + ] 754 + }, 755 + "node_modules/@rollup/rollup-darwin-x64": { 756 + "version": "4.27.3", 757 + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.27.3.tgz", 758 + "integrity": "sha512-xW//zjJMlJs2sOrCmXdB4d0uiilZsOdlGQIC/jjmMWT47lkLLoB1nsNhPUcnoqyi5YR6I4h+FjBpILxbEy8JRg==", 759 + "cpu": [ 760 + "x64" 761 + ], 762 + "optional": true, 763 + "os": [ 764 + "darwin" 765 + ] 766 + }, 767 + "node_modules/@rollup/rollup-freebsd-arm64": { 768 + "version": "4.27.3", 769 + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.27.3.tgz", 770 + "integrity": "sha512-58E0tIcwZ+12nK1WiLzHOD8I0d0kdrY/+o7yFVPRHuVGY3twBwzwDdTIBGRxLmyjciMYl1B/U515GJy+yn46qw==", 771 + "cpu": [ 772 + "arm64" 773 + ], 774 + "optional": true, 775 + "os": [ 776 + "freebsd" 777 + ] 778 + }, 779 + "node_modules/@rollup/rollup-freebsd-x64": { 780 + "version": "4.27.3", 781 + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.27.3.tgz", 782 + "integrity": "sha512-78fohrpcVwTLxg1ZzBMlwEimoAJmY6B+5TsyAZ3Vok7YabRBUvjYTsRXPTjGEvv/mfgVBepbW28OlMEz4w8wGA==", 783 + "cpu": [ 784 + "x64" 785 + ], 786 + "optional": true, 787 + "os": [ 788 + "freebsd" 789 + ] 790 + }, 791 + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 792 + "version": "4.27.3", 793 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.27.3.tgz", 794 + "integrity": "sha512-h2Ay79YFXyQi+QZKo3ISZDyKaVD7uUvukEHTOft7kh00WF9mxAaxZsNs3o/eukbeKuH35jBvQqrT61fzKfAB/Q==", 795 + "cpu": [ 796 + "arm" 797 + ], 798 + "optional": true, 799 + "os": [ 800 + "linux" 801 + ] 802 + }, 803 + "node_modules/@rollup/rollup-linux-arm-musleabihf": { 804 + "version": "4.27.3", 805 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.27.3.tgz", 806 + "integrity": "sha512-Sv2GWmrJfRY57urktVLQ0VKZjNZGogVtASAgosDZ1aUB+ykPxSi3X1nWORL5Jk0sTIIwQiPH7iE3BMi9zGWfkg==", 807 + "cpu": [ 808 + "arm" 809 + ], 810 + "optional": true, 811 + "os": [ 812 + "linux" 813 + ] 814 + }, 815 + "node_modules/@rollup/rollup-linux-arm64-gnu": { 816 + "version": "4.27.3", 817 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.27.3.tgz", 818 + "integrity": "sha512-FPoJBLsPW2bDNWjSrwNuTPUt30VnfM8GPGRoLCYKZpPx0xiIEdFip3dH6CqgoT0RnoGXptaNziM0WlKgBc+OWQ==", 819 + "cpu": [ 820 + "arm64" 821 + ], 822 + "optional": true, 823 + "os": [ 824 + "linux" 825 + ] 826 + }, 827 + "node_modules/@rollup/rollup-linux-arm64-musl": { 828 + "version": "4.27.3", 829 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.27.3.tgz", 830 + "integrity": "sha512-TKxiOvBorYq4sUpA0JT+Fkh+l+G9DScnG5Dqx7wiiqVMiRSkzTclP35pE6eQQYjP4Gc8yEkJGea6rz4qyWhp3g==", 831 + "cpu": [ 832 + "arm64" 833 + ], 834 + "optional": true, 835 + "os": [ 836 + "linux" 837 + ] 838 + }, 839 + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 840 + "version": "4.27.3", 841 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.27.3.tgz", 842 + "integrity": "sha512-v2M/mPvVUKVOKITa0oCFksnQQ/TqGrT+yD0184/cWHIu0LoIuYHwox0Pm3ccXEz8cEQDLk6FPKd1CCm+PlsISw==", 843 + "cpu": [ 844 + "ppc64" 845 + ], 846 + "optional": true, 847 + "os": [ 848 + "linux" 849 + ] 850 + }, 851 + "node_modules/@rollup/rollup-linux-riscv64-gnu": { 852 + "version": "4.27.3", 853 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.27.3.tgz", 854 + "integrity": "sha512-LdrI4Yocb1a/tFVkzmOE5WyYRgEBOyEhWYJe4gsDWDiwnjYKjNs7PS6SGlTDB7maOHF4kxevsuNBl2iOcj3b4A==", 855 + "cpu": [ 856 + "riscv64" 857 + ], 858 + "optional": true, 859 + "os": [ 860 + "linux" 861 + ] 862 + }, 863 + "node_modules/@rollup/rollup-linux-s390x-gnu": { 864 + "version": "4.27.3", 865 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.27.3.tgz", 866 + "integrity": "sha512-d4wVu6SXij/jyiwPvI6C4KxdGzuZOvJ6y9VfrcleHTwo68fl8vZC5ZYHsCVPUi4tndCfMlFniWgwonQ5CUpQcA==", 867 + "cpu": [ 868 + "s390x" 869 + ], 870 + "optional": true, 871 + "os": [ 872 + "linux" 873 + ] 874 + }, 875 + "node_modules/@rollup/rollup-linux-x64-gnu": { 876 + "version": "4.27.3", 877 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.27.3.tgz", 878 + "integrity": "sha512-/6bn6pp1fsCGEY5n3yajmzZQAh+mW4QPItbiWxs69zskBzJuheb3tNynEjL+mKOsUSFK11X4LYF2BwwXnzWleA==", 879 + "cpu": [ 880 + "x64" 881 + ], 882 + "optional": true, 883 + "os": [ 884 + "linux" 885 + ] 886 + }, 887 + "node_modules/@rollup/rollup-linux-x64-musl": { 888 + "version": "4.27.3", 889 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.27.3.tgz", 890 + "integrity": "sha512-nBXOfJds8OzUT1qUreT/en3eyOXd2EH5b0wr2bVB5999qHdGKkzGzIyKYaKj02lXk6wpN71ltLIaQpu58YFBoQ==", 891 + "cpu": [ 892 + "x64" 893 + ], 894 + "optional": true, 895 + "os": [ 896 + "linux" 897 + ] 898 + }, 899 + "node_modules/@rollup/rollup-win32-arm64-msvc": { 900 + "version": "4.27.3", 901 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.27.3.tgz", 902 + "integrity": "sha512-ogfbEVQgIZOz5WPWXF2HVb6En+kWzScuxJo/WdQTqEgeyGkaa2ui5sQav9Zkr7bnNCLK48uxmmK0TySm22eiuw==", 903 + "cpu": [ 904 + "arm64" 905 + ], 906 + "optional": true, 907 + "os": [ 908 + "win32" 909 + ] 910 + }, 911 + "node_modules/@rollup/rollup-win32-ia32-msvc": { 912 + "version": "4.27.3", 913 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.27.3.tgz", 914 + "integrity": "sha512-ecE36ZBMLINqiTtSNQ1vzWc5pXLQHlf/oqGp/bSbi7iedcjcNb6QbCBNG73Euyy2C+l/fn8qKWEwxr+0SSfs3w==", 915 + "cpu": [ 916 + "ia32" 917 + ], 918 + "optional": true, 919 + "os": [ 920 + "win32" 921 + ] 922 + }, 923 + "node_modules/@rollup/rollup-win32-x64-msvc": { 924 + "version": "4.27.3", 925 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.27.3.tgz", 926 + "integrity": "sha512-vliZLrDmYKyaUoMzEbMTg2JkerfBjn03KmAw9CykO0Zzkzoyd7o3iZNam/TpyWNjNT+Cz2iO3P9Smv2wgrR+Eg==", 927 + "cpu": [ 928 + "x64" 929 + ], 930 + "optional": true, 931 + "os": [ 932 + "win32" 933 + ] 934 + }, 935 + "node_modules/@sveltejs/adapter-auto": { 936 + "version": "3.3.1", 937 + "resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-3.3.1.tgz", 938 + "integrity": "sha512-5Sc7WAxYdL6q9j/+D0jJKjGREGlfIevDyHSQ2eNETHcB1TKlQWHcAo8AS8H1QdjNvSXpvOwNjykDUHPEAyGgdQ==", 939 + "dev": true, 940 + "dependencies": { 941 + "import-meta-resolve": "^4.1.0" 942 + }, 943 + "peerDependencies": { 944 + "@sveltejs/kit": "^2.0.0" 945 + } 946 + }, 947 + "node_modules/@sveltejs/adapter-static": { 948 + "version": "3.0.6", 949 + "resolved": "https://registry.npmjs.org/@sveltejs/adapter-static/-/adapter-static-3.0.6.tgz", 950 + "integrity": "sha512-MGJcesnJWj7FxDcB/GbrdYD3q24Uk0PIL4QIX149ku+hlJuj//nxUbb0HxUTpjkecWfHjVveSUnUaQWnPRXlpg==", 951 + "peerDependencies": { 952 + "@sveltejs/kit": "^2.0.0" 953 + } 954 + }, 955 + "node_modules/@sveltejs/kit": { 956 + "version": "2.8.1", 957 + "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.8.1.tgz", 958 + "integrity": "sha512-uuOfFwZ4xvnfPsiTB6a4H1ljjTUksGhWnYq5X/Y9z4x5+3uM2Md8q/YVeHL+7w+mygAwoEFdgKZ8YkUuk+VKww==", 959 + "hasInstallScript": true, 960 + "dependencies": { 961 + "@types/cookie": "^0.6.0", 962 + "cookie": "^0.6.0", 963 + "devalue": "^5.1.0", 964 + "esm-env": "^1.0.0", 965 + "import-meta-resolve": "^4.1.0", 966 + "kleur": "^4.1.5", 967 + "magic-string": "^0.30.5", 968 + "mrmime": "^2.0.0", 969 + "sade": "^1.8.1", 970 + "set-cookie-parser": "^2.6.0", 971 + "sirv": "^3.0.0", 972 + "tiny-glob": "^0.2.9" 973 + }, 974 + "bin": { 975 + "svelte-kit": "svelte-kit.js" 976 + }, 977 + "engines": { 978 + "node": ">=18.13" 979 + }, 980 + "peerDependencies": { 981 + "@sveltejs/vite-plugin-svelte": "^3.0.0 || ^4.0.0-next.1", 982 + "svelte": "^4.0.0 || ^5.0.0-next.0", 983 + "vite": "^5.0.3" 984 + } 985 + }, 986 + "node_modules/@sveltejs/vite-plugin-svelte": { 987 + "version": "4.0.1", 988 + "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-4.0.1.tgz", 989 + "integrity": "sha512-prXoAE/GleD2C4pKgHa9vkdjpzdYwCSw/kmjw6adIyu0vk5YKCfqIztkLg10m+kOYnzZu3bb0NaPTxlWre2a9Q==", 990 + "dependencies": { 991 + "@sveltejs/vite-plugin-svelte-inspector": "^3.0.0-next.0||^3.0.0", 992 + "debug": "^4.3.7", 993 + "deepmerge": "^4.3.1", 994 + "kleur": "^4.1.5", 995 + "magic-string": "^0.30.12", 996 + "vitefu": "^1.0.3" 997 + }, 998 + "engines": { 999 + "node": "^18.0.0 || ^20.0.0 || >=22" 1000 + }, 1001 + "peerDependencies": { 1002 + "svelte": "^5.0.0-next.96 || ^5.0.0", 1003 + "vite": "^5.0.0" 1004 + } 1005 + }, 1006 + "node_modules/@sveltejs/vite-plugin-svelte-inspector": { 1007 + "version": "3.0.1", 1008 + "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-3.0.1.tgz", 1009 + "integrity": "sha512-2CKypmj1sM4GE7HjllT7UKmo4Q6L5xFRd7VMGEWhYnZ+wc6AUVU01IBd7yUi6WnFndEwWoMNOd6e8UjoN0nbvQ==", 1010 + "dependencies": { 1011 + "debug": "^4.3.7" 1012 + }, 1013 + "engines": { 1014 + "node": "^18.0.0 || ^20.0.0 || >=22" 1015 + }, 1016 + "peerDependencies": { 1017 + "@sveltejs/vite-plugin-svelte": "^4.0.0-next.0||^4.0.0", 1018 + "svelte": "^5.0.0-next.96 || ^5.0.0", 1019 + "vite": "^5.0.0" 1020 + } 1021 + }, 1022 + "node_modules/@swc/helpers": { 1023 + "version": "0.5.15", 1024 + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", 1025 + "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", 1026 + "dependencies": { 1027 + "tslib": "^2.8.0" 1028 + } 1029 + }, 1030 + "node_modules/@tailwindcss/forms": { 1031 + "version": "0.5.9", 1032 + "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.9.tgz", 1033 + "integrity": "sha512-tM4XVr2+UVTxXJzey9Twx48c1gcxFStqn1pQz0tRsX8o3DvxhN5oY5pvyAbUx7VTaZxpej4Zzvc6h+1RJBzpIg==", 1034 + "dependencies": { 1035 + "mini-svg-data-uri": "^1.2.3" 1036 + }, 1037 + "peerDependencies": { 1038 + "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20" 1039 + } 1040 + }, 1041 + "node_modules/@tailwindcss/typography": { 1042 + "version": "0.5.15", 1043 + "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.15.tgz", 1044 + "integrity": "sha512-AqhlCXl+8grUz8uqExv5OTtgpjuVIwFTSXTrh8y9/pw6q2ek7fJ+Y8ZEVw7EB2DCcuCOtEjf9w3+J3rzts01uA==", 1045 + "dependencies": { 1046 + "lodash.castarray": "^4.4.0", 1047 + "lodash.isplainobject": "^4.0.6", 1048 + "lodash.merge": "^4.6.2", 1049 + "postcss-selector-parser": "6.0.10" 1050 + }, 1051 + "peerDependencies": { 1052 + "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20" 1053 + } 1054 + }, 1055 + "node_modules/@types/command-line-args": { 1056 + "version": "5.2.3", 1057 + "resolved": "https://registry.npmjs.org/@types/command-line-args/-/command-line-args-5.2.3.tgz", 1058 + "integrity": "sha512-uv0aG6R0Y8WHZLTamZwtfsDLVRnOa+n+n5rEvFWL5Na5gZ8V2Teab/duDPFzIIIhs9qizDpcavCusCLJZu62Kw==" 1059 + }, 1060 + "node_modules/@types/command-line-usage": { 1061 + "version": "5.0.4", 1062 + "resolved": "https://registry.npmjs.org/@types/command-line-usage/-/command-line-usage-5.0.4.tgz", 1063 + "integrity": "sha512-BwR5KP3Es/CSht0xqBcUXS3qCAUVXwpRKsV2+arxeb65atasuXG9LykC9Ab10Cw3s2raH92ZqOeILaQbsB2ACg==" 1064 + }, 1065 + "node_modules/@types/cookie": { 1066 + "version": "0.6.0", 1067 + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz", 1068 + "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==" 1069 + }, 1070 + "node_modules/@types/css-font-loading-module": { 1071 + "version": "0.0.12", 1072 + "resolved": "https://registry.npmjs.org/@types/css-font-loading-module/-/css-font-loading-module-0.0.12.tgz", 1073 + "integrity": "sha512-x2tZZYkSxXqWvTDgveSynfjq/T2HyiZHXb00j/+gy19yp70PHCizM48XFdjBCWH7eHBD0R5i/pw9yMBP/BH5uA==" 1074 + }, 1075 + "node_modules/@types/earcut": { 1076 + "version": "2.1.4", 1077 + "resolved": "https://registry.npmjs.org/@types/earcut/-/earcut-2.1.4.tgz", 1078 + "integrity": "sha512-qp3m9PPz4gULB9MhjGID7wpo3gJ4bTGXm7ltNDsmOvsPduTeHp8wSW9YckBj3mljeOh4F0m2z/0JKAALRKbmLQ==" 1079 + }, 1080 + "node_modules/@types/eslint": { 1081 + "version": "9.6.1", 1082 + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", 1083 + "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", 1084 + "dev": true, 1085 + "dependencies": { 1086 + "@types/estree": "*", 1087 + "@types/json-schema": "*" 1088 + } 1089 + }, 1090 + "node_modules/@types/estree": { 1091 + "version": "1.0.6", 1092 + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 1093 + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==" 1094 + }, 1095 + "node_modules/@types/json-schema": { 1096 + "version": "7.0.15", 1097 + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 1098 + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 1099 + "dev": true 1100 + }, 1101 + "node_modules/@types/node": { 1102 + "version": "20.17.6", 1103 + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.6.tgz", 1104 + "integrity": "sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==", 1105 + "dependencies": { 1106 + "undici-types": "~6.19.2" 1107 + } 1108 + }, 1109 + "node_modules/@typescript-eslint/eslint-plugin": { 1110 + "version": "8.15.0", 1111 + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.15.0.tgz", 1112 + "integrity": "sha512-+zkm9AR1Ds9uLWN3fkoeXgFppaQ+uEVtfOV62dDmsy9QCNqlRHWNEck4yarvRNrvRcHQLGfqBNui3cimoz8XAg==", 1113 + "dev": true, 1114 + "dependencies": { 1115 + "@eslint-community/regexpp": "^4.10.0", 1116 + "@typescript-eslint/scope-manager": "8.15.0", 1117 + "@typescript-eslint/type-utils": "8.15.0", 1118 + "@typescript-eslint/utils": "8.15.0", 1119 + "@typescript-eslint/visitor-keys": "8.15.0", 1120 + "graphemer": "^1.4.0", 1121 + "ignore": "^5.3.1", 1122 + "natural-compare": "^1.4.0", 1123 + "ts-api-utils": "^1.3.0" 1124 + }, 1125 + "engines": { 1126 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1127 + }, 1128 + "funding": { 1129 + "type": "opencollective", 1130 + "url": "https://opencollective.com/typescript-eslint" 1131 + }, 1132 + "peerDependencies": { 1133 + "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", 1134 + "eslint": "^8.57.0 || ^9.0.0" 1135 + }, 1136 + "peerDependenciesMeta": { 1137 + "typescript": { 1138 + "optional": true 1139 + } 1140 + } 1141 + }, 1142 + "node_modules/@typescript-eslint/parser": { 1143 + "version": "8.15.0", 1144 + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.15.0.tgz", 1145 + "integrity": "sha512-7n59qFpghG4uazrF9qtGKBZXn7Oz4sOMm8dwNWDQY96Xlm2oX67eipqcblDj+oY1lLCbf1oltMZFpUso66Kl1A==", 1146 + "dev": true, 1147 + "dependencies": { 1148 + "@typescript-eslint/scope-manager": "8.15.0", 1149 + "@typescript-eslint/types": "8.15.0", 1150 + "@typescript-eslint/typescript-estree": "8.15.0", 1151 + "@typescript-eslint/visitor-keys": "8.15.0", 1152 + "debug": "^4.3.4" 1153 + }, 1154 + "engines": { 1155 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1156 + }, 1157 + "funding": { 1158 + "type": "opencollective", 1159 + "url": "https://opencollective.com/typescript-eslint" 1160 + }, 1161 + "peerDependencies": { 1162 + "eslint": "^8.57.0 || ^9.0.0" 1163 + }, 1164 + "peerDependenciesMeta": { 1165 + "typescript": { 1166 + "optional": true 1167 + } 1168 + } 1169 + }, 1170 + "node_modules/@typescript-eslint/scope-manager": { 1171 + "version": "8.15.0", 1172 + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.15.0.tgz", 1173 + "integrity": "sha512-QRGy8ADi4J7ii95xz4UoiymmmMd/zuy9azCaamnZ3FM8T5fZcex8UfJcjkiEZjJSztKfEBe3dZ5T/5RHAmw2mA==", 1174 + "dev": true, 1175 + "dependencies": { 1176 + "@typescript-eslint/types": "8.15.0", 1177 + "@typescript-eslint/visitor-keys": "8.15.0" 1178 + }, 1179 + "engines": { 1180 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1181 + }, 1182 + "funding": { 1183 + "type": "opencollective", 1184 + "url": "https://opencollective.com/typescript-eslint" 1185 + } 1186 + }, 1187 + "node_modules/@typescript-eslint/type-utils": { 1188 + "version": "8.15.0", 1189 + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.15.0.tgz", 1190 + "integrity": "sha512-UU6uwXDoI3JGSXmcdnP5d8Fffa2KayOhUUqr/AiBnG1Gl7+7ut/oyagVeSkh7bxQ0zSXV9ptRh/4N15nkCqnpw==", 1191 + "dev": true, 1192 + "dependencies": { 1193 + "@typescript-eslint/typescript-estree": "8.15.0", 1194 + "@typescript-eslint/utils": "8.15.0", 1195 + "debug": "^4.3.4", 1196 + "ts-api-utils": "^1.3.0" 1197 + }, 1198 + "engines": { 1199 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1200 + }, 1201 + "funding": { 1202 + "type": "opencollective", 1203 + "url": "https://opencollective.com/typescript-eslint" 1204 + }, 1205 + "peerDependencies": { 1206 + "eslint": "^8.57.0 || ^9.0.0" 1207 + }, 1208 + "peerDependenciesMeta": { 1209 + "typescript": { 1210 + "optional": true 1211 + } 1212 + } 1213 + }, 1214 + "node_modules/@typescript-eslint/types": { 1215 + "version": "8.15.0", 1216 + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.15.0.tgz", 1217 + "integrity": "sha512-n3Gt8Y/KyJNe0S3yDCD2RVKrHBC4gTUcLTebVBXacPy091E6tNspFLKRXlk3hwT4G55nfr1n2AdFqi/XMxzmPQ==", 1218 + "dev": true, 1219 + "engines": { 1220 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1221 + }, 1222 + "funding": { 1223 + "type": "opencollective", 1224 + "url": "https://opencollective.com/typescript-eslint" 1225 + } 1226 + }, 1227 + "node_modules/@typescript-eslint/typescript-estree": { 1228 + "version": "8.15.0", 1229 + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.15.0.tgz", 1230 + "integrity": "sha512-1eMp2JgNec/niZsR7ioFBlsh/Fk0oJbhaqO0jRyQBMgkz7RrFfkqF9lYYmBoGBaSiLnu8TAPQTwoTUiSTUW9dg==", 1231 + "dev": true, 1232 + "dependencies": { 1233 + "@typescript-eslint/types": "8.15.0", 1234 + "@typescript-eslint/visitor-keys": "8.15.0", 1235 + "debug": "^4.3.4", 1236 + "fast-glob": "^3.3.2", 1237 + "is-glob": "^4.0.3", 1238 + "minimatch": "^9.0.4", 1239 + "semver": "^7.6.0", 1240 + "ts-api-utils": "^1.3.0" 1241 + }, 1242 + "engines": { 1243 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1244 + }, 1245 + "funding": { 1246 + "type": "opencollective", 1247 + "url": "https://opencollective.com/typescript-eslint" 1248 + }, 1249 + "peerDependenciesMeta": { 1250 + "typescript": { 1251 + "optional": true 1252 + } 1253 + } 1254 + }, 1255 + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { 1256 + "version": "2.0.1", 1257 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1258 + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1259 + "dev": true, 1260 + "dependencies": { 1261 + "balanced-match": "^1.0.0" 1262 + } 1263 + }, 1264 + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { 1265 + "version": "9.0.5", 1266 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 1267 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 1268 + "dev": true, 1269 + "dependencies": { 1270 + "brace-expansion": "^2.0.1" 1271 + }, 1272 + "engines": { 1273 + "node": ">=16 || 14 >=14.17" 1274 + }, 1275 + "funding": { 1276 + "url": "https://github.com/sponsors/isaacs" 1277 + } 1278 + }, 1279 + "node_modules/@typescript-eslint/utils": { 1280 + "version": "8.15.0", 1281 + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.15.0.tgz", 1282 + "integrity": "sha512-k82RI9yGhr0QM3Dnq+egEpz9qB6Un+WLYhmoNcvl8ltMEededhh7otBVVIDDsEEttauwdY/hQoSsOv13lxrFzQ==", 1283 + "dev": true, 1284 + "dependencies": { 1285 + "@eslint-community/eslint-utils": "^4.4.0", 1286 + "@typescript-eslint/scope-manager": "8.15.0", 1287 + "@typescript-eslint/types": "8.15.0", 1288 + "@typescript-eslint/typescript-estree": "8.15.0" 1289 + }, 1290 + "engines": { 1291 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1292 + }, 1293 + "funding": { 1294 + "type": "opencollective", 1295 + "url": "https://opencollective.com/typescript-eslint" 1296 + }, 1297 + "peerDependencies": { 1298 + "eslint": "^8.57.0 || ^9.0.0" 1299 + }, 1300 + "peerDependenciesMeta": { 1301 + "typescript": { 1302 + "optional": true 1303 + } 1304 + } 1305 + }, 1306 + "node_modules/@typescript-eslint/visitor-keys": { 1307 + "version": "8.15.0", 1308 + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.15.0.tgz", 1309 + "integrity": "sha512-h8vYOulWec9LhpwfAdZf2bjr8xIp0KNKnpgqSz0qqYYKAW/QZKw3ktRndbiAtUz4acH4QLQavwZBYCc0wulA/Q==", 1310 + "dev": true, 1311 + "dependencies": { 1312 + "@typescript-eslint/types": "8.15.0", 1313 + "eslint-visitor-keys": "^4.2.0" 1314 + }, 1315 + "engines": { 1316 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1317 + }, 1318 + "funding": { 1319 + "type": "opencollective", 1320 + "url": "https://opencollective.com/typescript-eslint" 1321 + } 1322 + }, 1323 + "node_modules/@webgpu/types": { 1324 + "version": "0.1.51", 1325 + "resolved": "https://registry.npmjs.org/@webgpu/types/-/types-0.1.51.tgz", 1326 + "integrity": "sha512-ktR3u64NPjwIViNCck+z9QeyN0iPkQCUOQ07ZCV1RzlkfP+olLTeEZ95O1QHS+v4w9vJeY9xj/uJuSphsHy5rQ==" 1327 + }, 1328 + "node_modules/@xmldom/xmldom": { 1329 + "version": "0.8.10", 1330 + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", 1331 + "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", 1332 + "engines": { 1333 + "node": ">=10.0.0" 1334 + } 1335 + }, 1336 + "node_modules/acorn": { 1337 + "version": "8.14.0", 1338 + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 1339 + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 1340 + "bin": { 1341 + "acorn": "bin/acorn" 1342 + }, 1343 + "engines": { 1344 + "node": ">=0.4.0" 1345 + } 1346 + }, 1347 + "node_modules/acorn-jsx": { 1348 + "version": "5.3.2", 1349 + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 1350 + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 1351 + "dev": true, 1352 + "peerDependencies": { 1353 + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 1354 + } 1355 + }, 1356 + "node_modules/acorn-typescript": { 1357 + "version": "1.4.13", 1358 + "resolved": "https://registry.npmjs.org/acorn-typescript/-/acorn-typescript-1.4.13.tgz", 1359 + "integrity": "sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==", 1360 + "peerDependencies": { 1361 + "acorn": ">=8.9.0" 1362 + } 1363 + }, 1364 + "node_modules/ajv": { 1365 + "version": "6.12.6", 1366 + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1367 + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1368 + "dev": true, 1369 + "dependencies": { 1370 + "fast-deep-equal": "^3.1.1", 1371 + "fast-json-stable-stringify": "^2.0.0", 1372 + "json-schema-traverse": "^0.4.1", 1373 + "uri-js": "^4.2.2" 1374 + }, 1375 + "funding": { 1376 + "type": "github", 1377 + "url": "https://github.com/sponsors/epoberezkin" 1378 + } 1379 + }, 1380 + "node_modules/ansi-regex": { 1381 + "version": "6.1.0", 1382 + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", 1383 + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", 1384 + "engines": { 1385 + "node": ">=12" 1386 + }, 1387 + "funding": { 1388 + "url": "https://github.com/chalk/ansi-regex?sponsor=1" 1389 + } 1390 + }, 1391 + "node_modules/ansi-styles": { 1392 + "version": "4.3.0", 1393 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1394 + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1395 + "dependencies": { 1396 + "color-convert": "^2.0.1" 1397 + }, 1398 + "engines": { 1399 + "node": ">=8" 1400 + }, 1401 + "funding": { 1402 + "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1403 + } 1404 + }, 1405 + "node_modules/any-promise": { 1406 + "version": "1.3.0", 1407 + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 1408 + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" 1409 + }, 1410 + "node_modules/anymatch": { 1411 + "version": "3.1.3", 1412 + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1413 + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1414 + "dependencies": { 1415 + "normalize-path": "^3.0.0", 1416 + "picomatch": "^2.0.4" 1417 + }, 1418 + "engines": { 1419 + "node": ">= 8" 1420 + } 1421 + }, 1422 + "node_modules/anymatch/node_modules/picomatch": { 1423 + "version": "2.3.1", 1424 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1425 + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1426 + "engines": { 1427 + "node": ">=8.6" 1428 + }, 1429 + "funding": { 1430 + "url": "https://github.com/sponsors/jonschlinkert" 1431 + } 1432 + }, 1433 + "node_modules/apache-arrow": { 1434 + "version": "17.0.0", 1435 + "resolved": "https://registry.npmjs.org/apache-arrow/-/apache-arrow-17.0.0.tgz", 1436 + "integrity": "sha512-X0p7auzdnGuhYMVKYINdQssS4EcKec9TCXyez/qtJt32DrIMGbzqiaMiQ0X6fQlQpw8Fl0Qygcv4dfRAr5Gu9Q==", 1437 + "dependencies": { 1438 + "@swc/helpers": "^0.5.11", 1439 + "@types/command-line-args": "^5.2.3", 1440 + "@types/command-line-usage": "^5.0.4", 1441 + "@types/node": "^20.13.0", 1442 + "command-line-args": "^5.2.1", 1443 + "command-line-usage": "^7.0.1", 1444 + "flatbuffers": "^24.3.25", 1445 + "json-bignum": "^0.0.3", 1446 + "tslib": "^2.6.2" 1447 + }, 1448 + "bin": { 1449 + "arrow2csv": "bin/arrow2csv.cjs" 1450 + } 1451 + }, 1452 + "node_modules/arg": { 1453 + "version": "5.0.2", 1454 + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 1455 + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" 1456 + }, 1457 + "node_modules/argparse": { 1458 + "version": "2.0.1", 1459 + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1460 + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1461 + "dev": true 1462 + }, 1463 + "node_modules/aria-query": { 1464 + "version": "5.3.2", 1465 + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", 1466 + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", 1467 + "engines": { 1468 + "node": ">= 0.4" 1469 + } 1470 + }, 1471 + "node_modules/array-back": { 1472 + "version": "3.1.0", 1473 + "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", 1474 + "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==", 1475 + "engines": { 1476 + "node": ">=6" 1477 + } 1478 + }, 1479 + "node_modules/autoprefixer": { 1480 + "version": "10.4.20", 1481 + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", 1482 + "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", 1483 + "dev": true, 1484 + "funding": [ 1485 + { 1486 + "type": "opencollective", 1487 + "url": "https://opencollective.com/postcss/" 1488 + }, 1489 + { 1490 + "type": "tidelift", 1491 + "url": "https://tidelift.com/funding/github/npm/autoprefixer" 1492 + }, 1493 + { 1494 + "type": "github", 1495 + "url": "https://github.com/sponsors/ai" 1496 + } 1497 + ], 1498 + "dependencies": { 1499 + "browserslist": "^4.23.3", 1500 + "caniuse-lite": "^1.0.30001646", 1501 + "fraction.js": "^4.3.7", 1502 + "normalize-range": "^0.1.2", 1503 + "picocolors": "^1.0.1", 1504 + "postcss-value-parser": "^4.2.0" 1505 + }, 1506 + "bin": { 1507 + "autoprefixer": "bin/autoprefixer" 1508 + }, 1509 + "engines": { 1510 + "node": "^10 || ^12 || >=14" 1511 + }, 1512 + "peerDependencies": { 1513 + "postcss": "^8.1.0" 1514 + } 1515 + }, 1516 + "node_modules/axobject-query": { 1517 + "version": "4.1.0", 1518 + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", 1519 + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", 1520 + "engines": { 1521 + "node": ">= 0.4" 1522 + } 1523 + }, 1524 + "node_modules/balanced-match": { 1525 + "version": "1.0.2", 1526 + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1527 + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 1528 + }, 1529 + "node_modules/binary-extensions": { 1530 + "version": "2.3.0", 1531 + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 1532 + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 1533 + "engines": { 1534 + "node": ">=8" 1535 + }, 1536 + "funding": { 1537 + "url": "https://github.com/sponsors/sindresorhus" 1538 + } 1539 + }, 1540 + "node_modules/brace-expansion": { 1541 + "version": "1.1.11", 1542 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1543 + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1544 + "dev": true, 1545 + "dependencies": { 1546 + "balanced-match": "^1.0.0", 1547 + "concat-map": "0.0.1" 1548 + } 1549 + }, 1550 + "node_modules/braces": { 1551 + "version": "3.0.3", 1552 + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1553 + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1554 + "dependencies": { 1555 + "fill-range": "^7.1.1" 1556 + }, 1557 + "engines": { 1558 + "node": ">=8" 1559 + } 1560 + }, 1561 + "node_modules/browserslist": { 1562 + "version": "4.24.2", 1563 + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", 1564 + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", 1565 + "dev": true, 1566 + "funding": [ 1567 + { 1568 + "type": "opencollective", 1569 + "url": "https://opencollective.com/browserslist" 1570 + }, 1571 + { 1572 + "type": "tidelift", 1573 + "url": "https://tidelift.com/funding/github/npm/browserslist" 1574 + }, 1575 + { 1576 + "type": "github", 1577 + "url": "https://github.com/sponsors/ai" 1578 + } 1579 + ], 1580 + "dependencies": { 1581 + "caniuse-lite": "^1.0.30001669", 1582 + "electron-to-chromium": "^1.5.41", 1583 + "node-releases": "^2.0.18", 1584 + "update-browserslist-db": "^1.1.1" 1585 + }, 1586 + "bin": { 1587 + "browserslist": "cli.js" 1588 + }, 1589 + "engines": { 1590 + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1591 + } 1592 + }, 1593 + "node_modules/callsites": { 1594 + "version": "3.1.0", 1595 + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1596 + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1597 + "dev": true, 1598 + "engines": { 1599 + "node": ">=6" 1600 + } 1601 + }, 1602 + "node_modules/camelcase-css": { 1603 + "version": "2.0.1", 1604 + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 1605 + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 1606 + "engines": { 1607 + "node": ">= 6" 1608 + } 1609 + }, 1610 + "node_modules/caniuse-lite": { 1611 + "version": "1.0.30001680", 1612 + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz", 1613 + "integrity": "sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==", 1614 + "dev": true, 1615 + "funding": [ 1616 + { 1617 + "type": "opencollective", 1618 + "url": "https://opencollective.com/browserslist" 1619 + }, 1620 + { 1621 + "type": "tidelift", 1622 + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1623 + }, 1624 + { 1625 + "type": "github", 1626 + "url": "https://github.com/sponsors/ai" 1627 + } 1628 + ] 1629 + }, 1630 + "node_modules/chalk": { 1631 + "version": "4.1.2", 1632 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1633 + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1634 + "dependencies": { 1635 + "ansi-styles": "^4.1.0", 1636 + "supports-color": "^7.1.0" 1637 + }, 1638 + "engines": { 1639 + "node": ">=10" 1640 + }, 1641 + "funding": { 1642 + "url": "https://github.com/chalk/chalk?sponsor=1" 1643 + } 1644 + }, 1645 + "node_modules/chalk-template": { 1646 + "version": "0.4.0", 1647 + "resolved": "https://registry.npmjs.org/chalk-template/-/chalk-template-0.4.0.tgz", 1648 + "integrity": "sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg==", 1649 + "dependencies": { 1650 + "chalk": "^4.1.2" 1651 + }, 1652 + "engines": { 1653 + "node": ">=12" 1654 + }, 1655 + "funding": { 1656 + "url": "https://github.com/chalk/chalk-template?sponsor=1" 1657 + } 1658 + }, 1659 + "node_modules/chokidar": { 1660 + "version": "4.0.1", 1661 + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.1.tgz", 1662 + "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==", 1663 + "dev": true, 1664 + "dependencies": { 1665 + "readdirp": "^4.0.1" 1666 + }, 1667 + "engines": { 1668 + "node": ">= 14.16.0" 1669 + }, 1670 + "funding": { 1671 + "url": "https://paulmillr.com/funding/" 1672 + } 1673 + }, 1674 + "node_modules/color-convert": { 1675 + "version": "2.0.1", 1676 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1677 + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1678 + "dependencies": { 1679 + "color-name": "~1.1.4" 1680 + }, 1681 + "engines": { 1682 + "node": ">=7.0.0" 1683 + } 1684 + }, 1685 + "node_modules/color-name": { 1686 + "version": "1.1.4", 1687 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1688 + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 1689 + }, 1690 + "node_modules/command-line-args": { 1691 + "version": "5.2.1", 1692 + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz", 1693 + "integrity": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==", 1694 + "dependencies": { 1695 + "array-back": "^3.1.0", 1696 + "find-replace": "^3.0.0", 1697 + "lodash.camelcase": "^4.3.0", 1698 + "typical": "^4.0.0" 1699 + }, 1700 + "engines": { 1701 + "node": ">=4.0.0" 1702 + } 1703 + }, 1704 + "node_modules/command-line-usage": { 1705 + "version": "7.0.3", 1706 + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-7.0.3.tgz", 1707 + "integrity": "sha512-PqMLy5+YGwhMh1wS04mVG44oqDsgyLRSKJBdOo1bnYhMKBW65gZF1dRp2OZRhiTjgUHljy99qkO7bsctLaw35Q==", 1708 + "dependencies": { 1709 + "array-back": "^6.2.2", 1710 + "chalk-template": "^0.4.0", 1711 + "table-layout": "^4.1.0", 1712 + "typical": "^7.1.1" 1713 + }, 1714 + "engines": { 1715 + "node": ">=12.20.0" 1716 + } 1717 + }, 1718 + "node_modules/command-line-usage/node_modules/array-back": { 1719 + "version": "6.2.2", 1720 + "resolved": "https://registry.npmjs.org/array-back/-/array-back-6.2.2.tgz", 1721 + "integrity": "sha512-gUAZ7HPyb4SJczXAMUXMGAvI976JoK3qEx9v1FTmeYuJj0IBiaKttG1ydtGKdkfqWkIkouke7nG8ufGy77+Cvw==", 1722 + "engines": { 1723 + "node": ">=12.17" 1724 + } 1725 + }, 1726 + "node_modules/command-line-usage/node_modules/typical": { 1727 + "version": "7.3.0", 1728 + "resolved": "https://registry.npmjs.org/typical/-/typical-7.3.0.tgz", 1729 + "integrity": "sha512-ya4mg/30vm+DOWfBg4YK3j2WD6TWtRkCbasOJr40CseYENzCUby/7rIvXA99JGsQHeNxLbnXdyLLxKSv3tauFw==", 1730 + "engines": { 1731 + "node": ">=12.17" 1732 + } 1733 + }, 1734 + "node_modules/commander": { 1735 + "version": "4.1.1", 1736 + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 1737 + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 1738 + "engines": { 1739 + "node": ">= 6" 1740 + } 1741 + }, 1742 + "node_modules/concat-map": { 1743 + "version": "0.0.1", 1744 + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1745 + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1746 + "dev": true 1747 + }, 1748 + "node_modules/cookie": { 1749 + "version": "0.6.0", 1750 + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", 1751 + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", 1752 + "engines": { 1753 + "node": ">= 0.6" 1754 + } 1755 + }, 1756 + "node_modules/cross-spawn": { 1757 + "version": "7.0.6", 1758 + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1759 + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1760 + "dependencies": { 1761 + "path-key": "^3.1.0", 1762 + "shebang-command": "^2.0.0", 1763 + "which": "^2.0.1" 1764 + }, 1765 + "engines": { 1766 + "node": ">= 8" 1767 + } 1768 + }, 1769 + "node_modules/cssesc": { 1770 + "version": "3.0.0", 1771 + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1772 + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1773 + "bin": { 1774 + "cssesc": "bin/cssesc" 1775 + }, 1776 + "engines": { 1777 + "node": ">=4" 1778 + } 1779 + }, 1780 + "node_modules/d3-array": { 1781 + "version": "3.2.4", 1782 + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", 1783 + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", 1784 + "dependencies": { 1785 + "internmap": "1 - 2" 1786 + }, 1787 + "engines": { 1788 + "node": ">=12" 1789 + } 1790 + }, 1791 + "node_modules/d3-cloud": { 1792 + "version": "1.2.7", 1793 + "resolved": "https://registry.npmjs.org/d3-cloud/-/d3-cloud-1.2.7.tgz", 1794 + "integrity": "sha512-8TrgcgwRIpoZYQp7s3fGB7tATWfhckRb8KcVd1bOgqkNdkJRDGWfdSf4HkHHzZxSczwQJdSxvfPudwir5IAJ3w==", 1795 + "dependencies": { 1796 + "d3-dispatch": "^1.0.3" 1797 + } 1798 + }, 1799 + "node_modules/d3-color": { 1800 + "version": "3.1.0", 1801 + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", 1802 + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", 1803 + "engines": { 1804 + "node": ">=12" 1805 + } 1806 + }, 1807 + "node_modules/d3-dispatch": { 1808 + "version": "1.0.6", 1809 + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.6.tgz", 1810 + "integrity": "sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==" 1811 + }, 1812 + "node_modules/d3-ease": { 1813 + "version": "3.0.1", 1814 + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", 1815 + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", 1816 + "engines": { 1817 + "node": ">=12" 1818 + } 1819 + }, 1820 + "node_modules/d3-format": { 1821 + "version": "3.1.0", 1822 + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", 1823 + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", 1824 + "engines": { 1825 + "node": ">=12" 1826 + } 1827 + }, 1828 + "node_modules/d3-interpolate": { 1829 + "version": "3.0.1", 1830 + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", 1831 + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", 1832 + "dependencies": { 1833 + "d3-color": "1 - 3" 1834 + }, 1835 + "engines": { 1836 + "node": ">=12" 1837 + } 1838 + }, 1839 + "node_modules/d3-scale": { 1840 + "version": "4.0.2", 1841 + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", 1842 + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", 1843 + "dependencies": { 1844 + "d3-array": "2.10.0 - 3", 1845 + "d3-format": "1 - 3", 1846 + "d3-interpolate": "1.2.0 - 3", 1847 + "d3-time": "2.1.1 - 3", 1848 + "d3-time-format": "2 - 4" 1849 + }, 1850 + "engines": { 1851 + "node": ">=12" 1852 + } 1853 + }, 1854 + "node_modules/d3-scale-chromatic": { 1855 + "version": "3.1.0", 1856 + "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", 1857 + "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==", 1858 + "dependencies": { 1859 + "d3-color": "1 - 3", 1860 + "d3-interpolate": "1 - 3" 1861 + }, 1862 + "engines": { 1863 + "node": ">=12" 1864 + } 1865 + }, 1866 + "node_modules/d3-selection": { 1867 + "version": "3.0.0", 1868 + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", 1869 + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", 1870 + "engines": { 1871 + "node": ">=12" 1872 + } 1873 + }, 1874 + "node_modules/d3-time": { 1875 + "version": "3.1.0", 1876 + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", 1877 + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", 1878 + "dependencies": { 1879 + "d3-array": "2 - 3" 1880 + }, 1881 + "engines": { 1882 + "node": ">=12" 1883 + } 1884 + }, 1885 + "node_modules/d3-time-format": { 1886 + "version": "4.1.0", 1887 + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", 1888 + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", 1889 + "dependencies": { 1890 + "d3-time": "1 - 3" 1891 + }, 1892 + "engines": { 1893 + "node": ">=12" 1894 + } 1895 + }, 1896 + "node_modules/d3-timer": { 1897 + "version": "3.0.1", 1898 + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", 1899 + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", 1900 + "engines": { 1901 + "node": ">=12" 1902 + } 1903 + }, 1904 + "node_modules/d3-transition": { 1905 + "version": "3.0.1", 1906 + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", 1907 + "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", 1908 + "dependencies": { 1909 + "d3-color": "1 - 3", 1910 + "d3-dispatch": "1 - 3", 1911 + "d3-ease": "1 - 3", 1912 + "d3-interpolate": "1 - 3", 1913 + "d3-timer": "1 - 3" 1914 + }, 1915 + "engines": { 1916 + "node": ">=12" 1917 + }, 1918 + "peerDependencies": { 1919 + "d3-selection": "2 - 3" 1920 + } 1921 + }, 1922 + "node_modules/debug": { 1923 + "version": "4.3.7", 1924 + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 1925 + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 1926 + "dependencies": { 1927 + "ms": "^2.1.3" 1928 + }, 1929 + "engines": { 1930 + "node": ">=6.0" 1931 + }, 1932 + "peerDependenciesMeta": { 1933 + "supports-color": { 1934 + "optional": true 1935 + } 1936 + } 1937 + }, 1938 + "node_modules/deep-is": { 1939 + "version": "0.1.4", 1940 + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1941 + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1942 + "dev": true 1943 + }, 1944 + "node_modules/deepmerge": { 1945 + "version": "4.3.1", 1946 + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 1947 + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 1948 + "engines": { 1949 + "node": ">=0.10.0" 1950 + } 1951 + }, 1952 + "node_modules/devalue": { 1953 + "version": "5.1.1", 1954 + "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.1.1.tgz", 1955 + "integrity": "sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==" 1956 + }, 1957 + "node_modules/didyoumean": { 1958 + "version": "1.2.2", 1959 + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 1960 + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" 1961 + }, 1962 + "node_modules/dlv": { 1963 + "version": "1.1.3", 1964 + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 1965 + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" 1966 + }, 1967 + "node_modules/earcut": { 1968 + "version": "2.2.4", 1969 + "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz", 1970 + "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==" 1971 + }, 1972 + "node_modules/eastasianwidth": { 1973 + "version": "0.2.0", 1974 + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 1975 + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" 1976 + }, 1977 + "node_modules/electron-to-chromium": { 1978 + "version": "1.5.63", 1979 + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.63.tgz", 1980 + "integrity": "sha512-ddeXKuY9BHo/mw145axlyWjlJ1UBt4WK3AlvkT7W2AbqfRQoacVoRUCF6wL3uIx/8wT9oLKXzI+rFqHHscByaA==", 1981 + "dev": true 1982 + }, 1983 + "node_modules/emoji-regex": { 1984 + "version": "9.2.2", 1985 + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1986 + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" 1987 + }, 1988 + "node_modules/esbuild": { 1989 + "version": "0.21.5", 1990 + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", 1991 + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", 1992 + "hasInstallScript": true, 1993 + "bin": { 1994 + "esbuild": "bin/esbuild" 1995 + }, 1996 + "engines": { 1997 + "node": ">=12" 1998 + }, 1999 + "optionalDependencies": { 2000 + "@esbuild/aix-ppc64": "0.21.5", 2001 + "@esbuild/android-arm": "0.21.5", 2002 + "@esbuild/android-arm64": "0.21.5", 2003 + "@esbuild/android-x64": "0.21.5", 2004 + "@esbuild/darwin-arm64": "0.21.5", 2005 + "@esbuild/darwin-x64": "0.21.5", 2006 + "@esbuild/freebsd-arm64": "0.21.5", 2007 + "@esbuild/freebsd-x64": "0.21.5", 2008 + "@esbuild/linux-arm": "0.21.5", 2009 + "@esbuild/linux-arm64": "0.21.5", 2010 + "@esbuild/linux-ia32": "0.21.5", 2011 + "@esbuild/linux-loong64": "0.21.5", 2012 + "@esbuild/linux-mips64el": "0.21.5", 2013 + "@esbuild/linux-ppc64": "0.21.5", 2014 + "@esbuild/linux-riscv64": "0.21.5", 2015 + "@esbuild/linux-s390x": "0.21.5", 2016 + "@esbuild/linux-x64": "0.21.5", 2017 + "@esbuild/netbsd-x64": "0.21.5", 2018 + "@esbuild/openbsd-x64": "0.21.5", 2019 + "@esbuild/sunos-x64": "0.21.5", 2020 + "@esbuild/win32-arm64": "0.21.5", 2021 + "@esbuild/win32-ia32": "0.21.5", 2022 + "@esbuild/win32-x64": "0.21.5" 2023 + } 2024 + }, 2025 + "node_modules/escalade": { 2026 + "version": "3.2.0", 2027 + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 2028 + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 2029 + "dev": true, 2030 + "engines": { 2031 + "node": ">=6" 2032 + } 2033 + }, 2034 + "node_modules/escape-string-regexp": { 2035 + "version": "4.0.0", 2036 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 2037 + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 2038 + "dev": true, 2039 + "engines": { 2040 + "node": ">=10" 2041 + }, 2042 + "funding": { 2043 + "url": "https://github.com/sponsors/sindresorhus" 2044 + } 2045 + }, 2046 + "node_modules/eslint": { 2047 + "version": "9.15.0", 2048 + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.15.0.tgz", 2049 + "integrity": "sha512-7CrWySmIibCgT1Os28lUU6upBshZ+GxybLOrmRzi08kS8MBuO8QA7pXEgYgY5W8vK3e74xv0lpjo9DbaGU9Rkw==", 2050 + "dev": true, 2051 + "dependencies": { 2052 + "@eslint-community/eslint-utils": "^4.2.0", 2053 + "@eslint-community/regexpp": "^4.12.1", 2054 + "@eslint/config-array": "^0.19.0", 2055 + "@eslint/core": "^0.9.0", 2056 + "@eslint/eslintrc": "^3.2.0", 2057 + "@eslint/js": "9.15.0", 2058 + "@eslint/plugin-kit": "^0.2.3", 2059 + "@humanfs/node": "^0.16.6", 2060 + "@humanwhocodes/module-importer": "^1.0.1", 2061 + "@humanwhocodes/retry": "^0.4.1", 2062 + "@types/estree": "^1.0.6", 2063 + "@types/json-schema": "^7.0.15", 2064 + "ajv": "^6.12.4", 2065 + "chalk": "^4.0.0", 2066 + "cross-spawn": "^7.0.5", 2067 + "debug": "^4.3.2", 2068 + "escape-string-regexp": "^4.0.0", 2069 + "eslint-scope": "^8.2.0", 2070 + "eslint-visitor-keys": "^4.2.0", 2071 + "espree": "^10.3.0", 2072 + "esquery": "^1.5.0", 2073 + "esutils": "^2.0.2", 2074 + "fast-deep-equal": "^3.1.3", 2075 + "file-entry-cache": "^8.0.0", 2076 + "find-up": "^5.0.0", 2077 + "glob-parent": "^6.0.2", 2078 + "ignore": "^5.2.0", 2079 + "imurmurhash": "^0.1.4", 2080 + "is-glob": "^4.0.0", 2081 + "json-stable-stringify-without-jsonify": "^1.0.1", 2082 + "lodash.merge": "^4.6.2", 2083 + "minimatch": "^3.1.2", 2084 + "natural-compare": "^1.4.0", 2085 + "optionator": "^0.9.3" 2086 + }, 2087 + "bin": { 2088 + "eslint": "bin/eslint.js" 2089 + }, 2090 + "engines": { 2091 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2092 + }, 2093 + "funding": { 2094 + "url": "https://eslint.org/donate" 2095 + }, 2096 + "peerDependencies": { 2097 + "jiti": "*" 2098 + }, 2099 + "peerDependenciesMeta": { 2100 + "jiti": { 2101 + "optional": true 2102 + } 2103 + } 2104 + }, 2105 + "node_modules/eslint-compat-utils": { 2106 + "version": "0.5.1", 2107 + "resolved": "https://registry.npmjs.org/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz", 2108 + "integrity": "sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==", 2109 + "dev": true, 2110 + "dependencies": { 2111 + "semver": "^7.5.4" 2112 + }, 2113 + "engines": { 2114 + "node": ">=12" 2115 + }, 2116 + "peerDependencies": { 2117 + "eslint": ">=6.0.0" 2118 + } 2119 + }, 2120 + "node_modules/eslint-config-prettier": { 2121 + "version": "9.1.0", 2122 + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", 2123 + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", 2124 + "dev": true, 2125 + "bin": { 2126 + "eslint-config-prettier": "bin/cli.js" 2127 + }, 2128 + "peerDependencies": { 2129 + "eslint": ">=7.0.0" 2130 + } 2131 + }, 2132 + "node_modules/eslint-plugin-svelte": { 2133 + "version": "2.46.0", 2134 + "resolved": "https://registry.npmjs.org/eslint-plugin-svelte/-/eslint-plugin-svelte-2.46.0.tgz", 2135 + "integrity": "sha512-1A7iEMkzmCZ9/Iz+EAfOGYL8IoIG6zeKEq1SmpxGeM5SXmoQq+ZNnCpXFVJpsxPWYx8jIVGMerQMzX20cqUl0g==", 2136 + "dev": true, 2137 + "dependencies": { 2138 + "@eslint-community/eslint-utils": "^4.4.0", 2139 + "@jridgewell/sourcemap-codec": "^1.4.15", 2140 + "eslint-compat-utils": "^0.5.1", 2141 + "esutils": "^2.0.3", 2142 + "known-css-properties": "^0.35.0", 2143 + "postcss": "^8.4.38", 2144 + "postcss-load-config": "^3.1.4", 2145 + "postcss-safe-parser": "^6.0.0", 2146 + "postcss-selector-parser": "^6.1.0", 2147 + "semver": "^7.6.2", 2148 + "svelte-eslint-parser": "^0.43.0" 2149 + }, 2150 + "engines": { 2151 + "node": "^14.17.0 || >=16.0.0" 2152 + }, 2153 + "funding": { 2154 + "url": "https://github.com/sponsors/ota-meshi" 2155 + }, 2156 + "peerDependencies": { 2157 + "eslint": "^7.0.0 || ^8.0.0-0 || ^9.0.0-0", 2158 + "svelte": "^3.37.0 || ^4.0.0 || ^5.0.0" 2159 + }, 2160 + "peerDependenciesMeta": { 2161 + "svelte": { 2162 + "optional": true 2163 + } 2164 + } 2165 + }, 2166 + "node_modules/eslint-plugin-svelte/node_modules/postcss-selector-parser": { 2167 + "version": "6.1.2", 2168 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", 2169 + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", 2170 + "dev": true, 2171 + "dependencies": { 2172 + "cssesc": "^3.0.0", 2173 + "util-deprecate": "^1.0.2" 2174 + }, 2175 + "engines": { 2176 + "node": ">=4" 2177 + } 2178 + }, 2179 + "node_modules/eslint-scope": { 2180 + "version": "8.2.0", 2181 + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", 2182 + "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", 2183 + "dev": true, 2184 + "dependencies": { 2185 + "esrecurse": "^4.3.0", 2186 + "estraverse": "^5.2.0" 2187 + }, 2188 + "engines": { 2189 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2190 + }, 2191 + "funding": { 2192 + "url": "https://opencollective.com/eslint" 2193 + } 2194 + }, 2195 + "node_modules/eslint-visitor-keys": { 2196 + "version": "4.2.0", 2197 + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 2198 + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 2199 + "dev": true, 2200 + "engines": { 2201 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2202 + }, 2203 + "funding": { 2204 + "url": "https://opencollective.com/eslint" 2205 + } 2206 + }, 2207 + "node_modules/esm-env": { 2208 + "version": "1.1.4", 2209 + "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.1.4.tgz", 2210 + "integrity": "sha512-oO82nKPHKkzIj/hbtuDYy/JHqBHFlMIW36SDiPCVsj87ntDLcWN+sJ1erdVryd4NxODacFTsdrIE3b7IamqbOg==" 2211 + }, 2212 + "node_modules/espree": { 2213 + "version": "10.3.0", 2214 + "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", 2215 + "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", 2216 + "dev": true, 2217 + "dependencies": { 2218 + "acorn": "^8.14.0", 2219 + "acorn-jsx": "^5.3.2", 2220 + "eslint-visitor-keys": "^4.2.0" 2221 + }, 2222 + "engines": { 2223 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2224 + }, 2225 + "funding": { 2226 + "url": "https://opencollective.com/eslint" 2227 + } 2228 + }, 2229 + "node_modules/esquery": { 2230 + "version": "1.6.0", 2231 + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 2232 + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 2233 + "dev": true, 2234 + "dependencies": { 2235 + "estraverse": "^5.1.0" 2236 + }, 2237 + "engines": { 2238 + "node": ">=0.10" 2239 + } 2240 + }, 2241 + "node_modules/esrap": { 2242 + "version": "1.2.2", 2243 + "resolved": "https://registry.npmjs.org/esrap/-/esrap-1.2.2.tgz", 2244 + "integrity": "sha512-F2pSJklxx1BlQIQgooczXCPHmcWpn6EsP5oo73LQfonG9fIlIENQ8vMmfGXeojP9MrkzUNAfyU5vdFlR9shHAw==", 2245 + "dependencies": { 2246 + "@jridgewell/sourcemap-codec": "^1.4.15", 2247 + "@types/estree": "^1.0.1" 2248 + } 2249 + }, 2250 + "node_modules/esrecurse": { 2251 + "version": "4.3.0", 2252 + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 2253 + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 2254 + "dev": true, 2255 + "dependencies": { 2256 + "estraverse": "^5.2.0" 2257 + }, 2258 + "engines": { 2259 + "node": ">=4.0" 2260 + } 2261 + }, 2262 + "node_modules/estraverse": { 2263 + "version": "5.3.0", 2264 + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2265 + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2266 + "dev": true, 2267 + "engines": { 2268 + "node": ">=4.0" 2269 + } 2270 + }, 2271 + "node_modules/esutils": { 2272 + "version": "2.0.3", 2273 + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 2274 + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 2275 + "dev": true, 2276 + "engines": { 2277 + "node": ">=0.10.0" 2278 + } 2279 + }, 2280 + "node_modules/eventemitter3": { 2281 + "version": "5.0.1", 2282 + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", 2283 + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" 2284 + }, 2285 + "node_modules/fast-deep-equal": { 2286 + "version": "3.1.3", 2287 + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 2288 + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 2289 + "dev": true 2290 + }, 2291 + "node_modules/fast-glob": { 2292 + "version": "3.3.2", 2293 + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 2294 + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 2295 + "dependencies": { 2296 + "@nodelib/fs.stat": "^2.0.2", 2297 + "@nodelib/fs.walk": "^1.2.3", 2298 + "glob-parent": "^5.1.2", 2299 + "merge2": "^1.3.0", 2300 + "micromatch": "^4.0.4" 2301 + }, 2302 + "engines": { 2303 + "node": ">=8.6.0" 2304 + } 2305 + }, 2306 + "node_modules/fast-glob/node_modules/glob-parent": { 2307 + "version": "5.1.2", 2308 + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2309 + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2310 + "dependencies": { 2311 + "is-glob": "^4.0.1" 2312 + }, 2313 + "engines": { 2314 + "node": ">= 6" 2315 + } 2316 + }, 2317 + "node_modules/fast-json-stable-stringify": { 2318 + "version": "2.1.0", 2319 + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 2320 + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 2321 + "dev": true 2322 + }, 2323 + "node_modules/fast-levenshtein": { 2324 + "version": "2.0.6", 2325 + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 2326 + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 2327 + "dev": true 2328 + }, 2329 + "node_modules/fastq": { 2330 + "version": "1.17.1", 2331 + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 2332 + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 2333 + "dependencies": { 2334 + "reusify": "^1.0.4" 2335 + } 2336 + }, 2337 + "node_modules/fdir": { 2338 + "version": "6.4.2", 2339 + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.2.tgz", 2340 + "integrity": "sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==", 2341 + "dev": true, 2342 + "peerDependencies": { 2343 + "picomatch": "^3 || ^4" 2344 + }, 2345 + "peerDependenciesMeta": { 2346 + "picomatch": { 2347 + "optional": true 2348 + } 2349 + } 2350 + }, 2351 + "node_modules/file-entry-cache": { 2352 + "version": "8.0.0", 2353 + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 2354 + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 2355 + "dev": true, 2356 + "dependencies": { 2357 + "flat-cache": "^4.0.0" 2358 + }, 2359 + "engines": { 2360 + "node": ">=16.0.0" 2361 + } 2362 + }, 2363 + "node_modules/fill-range": { 2364 + "version": "7.1.1", 2365 + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 2366 + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 2367 + "dependencies": { 2368 + "to-regex-range": "^5.0.1" 2369 + }, 2370 + "engines": { 2371 + "node": ">=8" 2372 + } 2373 + }, 2374 + "node_modules/find-replace": { 2375 + "version": "3.0.0", 2376 + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", 2377 + "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", 2378 + "dependencies": { 2379 + "array-back": "^3.0.1" 2380 + }, 2381 + "engines": { 2382 + "node": ">=4.0.0" 2383 + } 2384 + }, 2385 + "node_modules/find-up": { 2386 + "version": "5.0.0", 2387 + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 2388 + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 2389 + "dev": true, 2390 + "dependencies": { 2391 + "locate-path": "^6.0.0", 2392 + "path-exists": "^4.0.0" 2393 + }, 2394 + "engines": { 2395 + "node": ">=10" 2396 + }, 2397 + "funding": { 2398 + "url": "https://github.com/sponsors/sindresorhus" 2399 + } 2400 + }, 2401 + "node_modules/flat-cache": { 2402 + "version": "4.0.1", 2403 + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 2404 + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 2405 + "dev": true, 2406 + "dependencies": { 2407 + "flatted": "^3.2.9", 2408 + "keyv": "^4.5.4" 2409 + }, 2410 + "engines": { 2411 + "node": ">=16" 2412 + } 2413 + }, 2414 + "node_modules/flatbuffers": { 2415 + "version": "24.3.25", 2416 + "resolved": "https://registry.npmjs.org/flatbuffers/-/flatbuffers-24.3.25.tgz", 2417 + "integrity": "sha512-3HDgPbgiwWMI9zVB7VYBHaMrbOO7Gm0v+yD2FV/sCKj+9NDeVL7BOBYUuhWAQGKWOzBo8S9WdMvV0eixO233XQ==" 2418 + }, 2419 + "node_modules/flatted": { 2420 + "version": "3.3.2", 2421 + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", 2422 + "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", 2423 + "dev": true 2424 + }, 2425 + "node_modules/foreground-child": { 2426 + "version": "3.3.0", 2427 + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", 2428 + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", 2429 + "dependencies": { 2430 + "cross-spawn": "^7.0.0", 2431 + "signal-exit": "^4.0.1" 2432 + }, 2433 + "engines": { 2434 + "node": ">=14" 2435 + }, 2436 + "funding": { 2437 + "url": "https://github.com/sponsors/isaacs" 2438 + } 2439 + }, 2440 + "node_modules/fraction.js": { 2441 + "version": "4.3.7", 2442 + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", 2443 + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", 2444 + "dev": true, 2445 + "engines": { 2446 + "node": "*" 2447 + }, 2448 + "funding": { 2449 + "type": "patreon", 2450 + "url": "https://github.com/sponsors/rawify" 2451 + } 2452 + }, 2453 + "node_modules/fsevents": { 2454 + "version": "2.3.3", 2455 + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 2456 + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 2457 + "hasInstallScript": true, 2458 + "optional": true, 2459 + "os": [ 2460 + "darwin" 2461 + ], 2462 + "engines": { 2463 + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2464 + } 2465 + }, 2466 + "node_modules/function-bind": { 2467 + "version": "1.1.2", 2468 + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 2469 + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 2470 + "funding": { 2471 + "url": "https://github.com/sponsors/ljharb" 2472 + } 2473 + }, 2474 + "node_modules/glob": { 2475 + "version": "10.4.5", 2476 + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", 2477 + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", 2478 + "dependencies": { 2479 + "foreground-child": "^3.1.0", 2480 + "jackspeak": "^3.1.2", 2481 + "minimatch": "^9.0.4", 2482 + "minipass": "^7.1.2", 2483 + "package-json-from-dist": "^1.0.0", 2484 + "path-scurry": "^1.11.1" 2485 + }, 2486 + "bin": { 2487 + "glob": "dist/esm/bin.mjs" 2488 + }, 2489 + "funding": { 2490 + "url": "https://github.com/sponsors/isaacs" 2491 + } 2492 + }, 2493 + "node_modules/glob-parent": { 2494 + "version": "6.0.2", 2495 + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2496 + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2497 + "dependencies": { 2498 + "is-glob": "^4.0.3" 2499 + }, 2500 + "engines": { 2501 + "node": ">=10.13.0" 2502 + } 2503 + }, 2504 + "node_modules/glob/node_modules/brace-expansion": { 2505 + "version": "2.0.1", 2506 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 2507 + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 2508 + "dependencies": { 2509 + "balanced-match": "^1.0.0" 2510 + } 2511 + }, 2512 + "node_modules/glob/node_modules/minimatch": { 2513 + "version": "9.0.5", 2514 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 2515 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 2516 + "dependencies": { 2517 + "brace-expansion": "^2.0.1" 2518 + }, 2519 + "engines": { 2520 + "node": ">=16 || 14 >=14.17" 2521 + }, 2522 + "funding": { 2523 + "url": "https://github.com/sponsors/isaacs" 2524 + } 2525 + }, 2526 + "node_modules/globals": { 2527 + "version": "15.12.0", 2528 + "resolved": "https://registry.npmjs.org/globals/-/globals-15.12.0.tgz", 2529 + "integrity": "sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==", 2530 + "dev": true, 2531 + "engines": { 2532 + "node": ">=18" 2533 + }, 2534 + "funding": { 2535 + "url": "https://github.com/sponsors/sindresorhus" 2536 + } 2537 + }, 2538 + "node_modules/globalyzer": { 2539 + "version": "0.1.0", 2540 + "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", 2541 + "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==" 2542 + }, 2543 + "node_modules/globrex": { 2544 + "version": "0.1.2", 2545 + "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", 2546 + "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==" 2547 + }, 2548 + "node_modules/graphemer": { 2549 + "version": "1.4.0", 2550 + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2551 + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 2552 + "dev": true 2553 + }, 2554 + "node_modules/gsap": { 2555 + "version": "3.12.5", 2556 + "resolved": "https://registry.npmjs.org/gsap/-/gsap-3.12.5.tgz", 2557 + "integrity": "sha512-srBfnk4n+Oe/ZnMIOXt3gT605BX9x5+rh/prT2F1SsNJsU1XuMiP0E2aptW481OnonOGACZWBqseH5Z7csHxhQ==" 2558 + }, 2559 + "node_modules/has-flag": { 2560 + "version": "4.0.0", 2561 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2562 + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2563 + "engines": { 2564 + "node": ">=8" 2565 + } 2566 + }, 2567 + "node_modules/hasown": { 2568 + "version": "2.0.2", 2569 + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 2570 + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 2571 + "dependencies": { 2572 + "function-bind": "^1.1.2" 2573 + }, 2574 + "engines": { 2575 + "node": ">= 0.4" 2576 + } 2577 + }, 2578 + "node_modules/ignore": { 2579 + "version": "5.3.2", 2580 + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 2581 + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 2582 + "dev": true, 2583 + "engines": { 2584 + "node": ">= 4" 2585 + } 2586 + }, 2587 + "node_modules/import-fresh": { 2588 + "version": "3.3.0", 2589 + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2590 + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2591 + "dev": true, 2592 + "dependencies": { 2593 + "parent-module": "^1.0.0", 2594 + "resolve-from": "^4.0.0" 2595 + }, 2596 + "engines": { 2597 + "node": ">=6" 2598 + }, 2599 + "funding": { 2600 + "url": "https://github.com/sponsors/sindresorhus" 2601 + } 2602 + }, 2603 + "node_modules/import-meta-resolve": { 2604 + "version": "4.1.0", 2605 + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", 2606 + "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==", 2607 + "funding": { 2608 + "type": "github", 2609 + "url": "https://github.com/sponsors/wooorm" 2610 + } 2611 + }, 2612 + "node_modules/imurmurhash": { 2613 + "version": "0.1.4", 2614 + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2615 + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2616 + "dev": true, 2617 + "engines": { 2618 + "node": ">=0.8.19" 2619 + } 2620 + }, 2621 + "node_modules/internmap": { 2622 + "version": "2.0.3", 2623 + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", 2624 + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", 2625 + "engines": { 2626 + "node": ">=12" 2627 + } 2628 + }, 2629 + "node_modules/is-binary-path": { 2630 + "version": "2.1.0", 2631 + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2632 + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2633 + "dependencies": { 2634 + "binary-extensions": "^2.0.0" 2635 + }, 2636 + "engines": { 2637 + "node": ">=8" 2638 + } 2639 + }, 2640 + "node_modules/is-core-module": { 2641 + "version": "2.15.1", 2642 + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", 2643 + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", 2644 + "dependencies": { 2645 + "hasown": "^2.0.2" 2646 + }, 2647 + "engines": { 2648 + "node": ">= 0.4" 2649 + }, 2650 + "funding": { 2651 + "url": "https://github.com/sponsors/ljharb" 2652 + } 2653 + }, 2654 + "node_modules/is-extglob": { 2655 + "version": "2.1.1", 2656 + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2657 + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2658 + "engines": { 2659 + "node": ">=0.10.0" 2660 + } 2661 + }, 2662 + "node_modules/is-fullwidth-code-point": { 2663 + "version": "3.0.0", 2664 + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2665 + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2666 + "engines": { 2667 + "node": ">=8" 2668 + } 2669 + }, 2670 + "node_modules/is-glob": { 2671 + "version": "4.0.3", 2672 + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2673 + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2674 + "dependencies": { 2675 + "is-extglob": "^2.1.1" 2676 + }, 2677 + "engines": { 2678 + "node": ">=0.10.0" 2679 + } 2680 + }, 2681 + "node_modules/is-number": { 2682 + "version": "7.0.0", 2683 + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2684 + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2685 + "engines": { 2686 + "node": ">=0.12.0" 2687 + } 2688 + }, 2689 + "node_modules/is-reference": { 2690 + "version": "3.0.3", 2691 + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.3.tgz", 2692 + "integrity": "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==", 2693 + "dependencies": { 2694 + "@types/estree": "^1.0.6" 2695 + } 2696 + }, 2697 + "node_modules/isexe": { 2698 + "version": "2.0.0", 2699 + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2700 + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 2701 + }, 2702 + "node_modules/ismobilejs": { 2703 + "version": "1.1.1", 2704 + "resolved": "https://registry.npmjs.org/ismobilejs/-/ismobilejs-1.1.1.tgz", 2705 + "integrity": "sha512-VaFW53yt8QO61k2WJui0dHf4SlL8lxBofUuUmwBo0ljPk0Drz2TiuDW4jo3wDcv41qy/SxrJ+VAzJ/qYqsmzRw==" 2706 + }, 2707 + "node_modules/jackspeak": { 2708 + "version": "3.4.3", 2709 + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", 2710 + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", 2711 + "dependencies": { 2712 + "@isaacs/cliui": "^8.0.2" 2713 + }, 2714 + "funding": { 2715 + "url": "https://github.com/sponsors/isaacs" 2716 + }, 2717 + "optionalDependencies": { 2718 + "@pkgjs/parseargs": "^0.11.0" 2719 + } 2720 + }, 2721 + "node_modules/jiti": { 2722 + "version": "1.21.6", 2723 + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", 2724 + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", 2725 + "bin": { 2726 + "jiti": "bin/jiti.js" 2727 + } 2728 + }, 2729 + "node_modules/js-yaml": { 2730 + "version": "4.1.0", 2731 + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2732 + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2733 + "dev": true, 2734 + "dependencies": { 2735 + "argparse": "^2.0.1" 2736 + }, 2737 + "bin": { 2738 + "js-yaml": "bin/js-yaml.js" 2739 + } 2740 + }, 2741 + "node_modules/json-bignum": { 2742 + "version": "0.0.3", 2743 + "resolved": "https://registry.npmjs.org/json-bignum/-/json-bignum-0.0.3.tgz", 2744 + "integrity": "sha512-2WHyXj3OfHSgNyuzDbSxI1w2jgw5gkWSWhS7Qg4bWXx1nLk3jnbwfUeS0PSba3IzpTUWdHxBieELUzXRjQB2zg==", 2745 + "engines": { 2746 + "node": ">=0.8" 2747 + } 2748 + }, 2749 + "node_modules/json-buffer": { 2750 + "version": "3.0.1", 2751 + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2752 + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2753 + "dev": true 2754 + }, 2755 + "node_modules/json-schema-traverse": { 2756 + "version": "0.4.1", 2757 + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2758 + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2759 + "dev": true 2760 + }, 2761 + "node_modules/json-stable-stringify-without-jsonify": { 2762 + "version": "1.0.1", 2763 + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2764 + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2765 + "dev": true 2766 + }, 2767 + "node_modules/keyv": { 2768 + "version": "4.5.4", 2769 + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2770 + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2771 + "dev": true, 2772 + "dependencies": { 2773 + "json-buffer": "3.0.1" 2774 + } 2775 + }, 2776 + "node_modules/kleur": { 2777 + "version": "4.1.5", 2778 + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", 2779 + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", 2780 + "engines": { 2781 + "node": ">=6" 2782 + } 2783 + }, 2784 + "node_modules/known-css-properties": { 2785 + "version": "0.35.0", 2786 + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.35.0.tgz", 2787 + "integrity": "sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==", 2788 + "dev": true 2789 + }, 2790 + "node_modules/levn": { 2791 + "version": "0.4.1", 2792 + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2793 + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2794 + "dev": true, 2795 + "dependencies": { 2796 + "prelude-ls": "^1.2.1", 2797 + "type-check": "~0.4.0" 2798 + }, 2799 + "engines": { 2800 + "node": ">= 0.8.0" 2801 + } 2802 + }, 2803 + "node_modules/lilconfig": { 2804 + "version": "2.1.0", 2805 + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 2806 + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 2807 + "engines": { 2808 + "node": ">=10" 2809 + } 2810 + }, 2811 + "node_modules/lines-and-columns": { 2812 + "version": "1.2.4", 2813 + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2814 + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" 2815 + }, 2816 + "node_modules/locate-character": { 2817 + "version": "3.0.0", 2818 + "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", 2819 + "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==" 2820 + }, 2821 + "node_modules/locate-path": { 2822 + "version": "6.0.0", 2823 + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2824 + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2825 + "dev": true, 2826 + "dependencies": { 2827 + "p-locate": "^5.0.0" 2828 + }, 2829 + "engines": { 2830 + "node": ">=10" 2831 + }, 2832 + "funding": { 2833 + "url": "https://github.com/sponsors/sindresorhus" 2834 + } 2835 + }, 2836 + "node_modules/lodash.camelcase": { 2837 + "version": "4.3.0", 2838 + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", 2839 + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" 2840 + }, 2841 + "node_modules/lodash.castarray": { 2842 + "version": "4.4.0", 2843 + "resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz", 2844 + "integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==" 2845 + }, 2846 + "node_modules/lodash.isplainobject": { 2847 + "version": "4.0.6", 2848 + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", 2849 + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" 2850 + }, 2851 + "node_modules/lodash.merge": { 2852 + "version": "4.6.2", 2853 + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2854 + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" 2855 + }, 2856 + "node_modules/lru-cache": { 2857 + "version": "10.4.3", 2858 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 2859 + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" 2860 + }, 2861 + "node_modules/magic-string": { 2862 + "version": "0.30.13", 2863 + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.13.tgz", 2864 + "integrity": "sha512-8rYBO+MsWkgjDSOvLomYnzhdwEG51olQ4zL5KXnNJWV5MNmrb4rTZdrtkhxjnD/QyZUqR/Z/XDsUs/4ej2nx0g==", 2865 + "dependencies": { 2866 + "@jridgewell/sourcemap-codec": "^1.5.0" 2867 + } 2868 + }, 2869 + "node_modules/merge2": { 2870 + "version": "1.4.1", 2871 + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2872 + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2873 + "engines": { 2874 + "node": ">= 8" 2875 + } 2876 + }, 2877 + "node_modules/micromatch": { 2878 + "version": "4.0.8", 2879 + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2880 + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2881 + "dependencies": { 2882 + "braces": "^3.0.3", 2883 + "picomatch": "^2.3.1" 2884 + }, 2885 + "engines": { 2886 + "node": ">=8.6" 2887 + } 2888 + }, 2889 + "node_modules/micromatch/node_modules/picomatch": { 2890 + "version": "2.3.1", 2891 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2892 + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2893 + "engines": { 2894 + "node": ">=8.6" 2895 + }, 2896 + "funding": { 2897 + "url": "https://github.com/sponsors/jonschlinkert" 2898 + } 2899 + }, 2900 + "node_modules/mini-svg-data-uri": { 2901 + "version": "1.4.4", 2902 + "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", 2903 + "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", 2904 + "bin": { 2905 + "mini-svg-data-uri": "cli.js" 2906 + } 2907 + }, 2908 + "node_modules/minimatch": { 2909 + "version": "3.1.2", 2910 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2911 + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2912 + "dev": true, 2913 + "dependencies": { 2914 + "brace-expansion": "^1.1.7" 2915 + }, 2916 + "engines": { 2917 + "node": "*" 2918 + } 2919 + }, 2920 + "node_modules/minipass": { 2921 + "version": "7.1.2", 2922 + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 2923 + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 2924 + "engines": { 2925 + "node": ">=16 || 14 >=14.17" 2926 + } 2927 + }, 2928 + "node_modules/mri": { 2929 + "version": "1.2.0", 2930 + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", 2931 + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", 2932 + "engines": { 2933 + "node": ">=4" 2934 + } 2935 + }, 2936 + "node_modules/mrmime": { 2937 + "version": "2.0.0", 2938 + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", 2939 + "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", 2940 + "engines": { 2941 + "node": ">=10" 2942 + } 2943 + }, 2944 + "node_modules/ms": { 2945 + "version": "2.1.3", 2946 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2947 + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 2948 + }, 2949 + "node_modules/mz": { 2950 + "version": "2.7.0", 2951 + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 2952 + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 2953 + "dependencies": { 2954 + "any-promise": "^1.0.0", 2955 + "object-assign": "^4.0.1", 2956 + "thenify-all": "^1.0.0" 2957 + } 2958 + }, 2959 + "node_modules/nanoid": { 2960 + "version": "3.3.7", 2961 + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", 2962 + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", 2963 + "funding": [ 2964 + { 2965 + "type": "github", 2966 + "url": "https://github.com/sponsors/ai" 2967 + } 2968 + ], 2969 + "bin": { 2970 + "nanoid": "bin/nanoid.cjs" 2971 + }, 2972 + "engines": { 2973 + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2974 + } 2975 + }, 2976 + "node_modules/natural-compare": { 2977 + "version": "1.4.0", 2978 + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2979 + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2980 + "dev": true 2981 + }, 2982 + "node_modules/node-releases": { 2983 + "version": "2.0.18", 2984 + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", 2985 + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", 2986 + "dev": true 2987 + }, 2988 + "node_modules/normalize-path": { 2989 + "version": "3.0.0", 2990 + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2991 + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2992 + "engines": { 2993 + "node": ">=0.10.0" 2994 + } 2995 + }, 2996 + "node_modules/normalize-range": { 2997 + "version": "0.1.2", 2998 + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 2999 + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 3000 + "dev": true, 3001 + "engines": { 3002 + "node": ">=0.10.0" 3003 + } 3004 + }, 3005 + "node_modules/object-assign": { 3006 + "version": "4.1.1", 3007 + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 3008 + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 3009 + "engines": { 3010 + "node": ">=0.10.0" 3011 + } 3012 + }, 3013 + "node_modules/object-hash": { 3014 + "version": "3.0.0", 3015 + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 3016 + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 3017 + "engines": { 3018 + "node": ">= 6" 3019 + } 3020 + }, 3021 + "node_modules/optionator": { 3022 + "version": "0.9.4", 3023 + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 3024 + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 3025 + "dev": true, 3026 + "dependencies": { 3027 + "deep-is": "^0.1.3", 3028 + "fast-levenshtein": "^2.0.6", 3029 + "levn": "^0.4.1", 3030 + "prelude-ls": "^1.2.1", 3031 + "type-check": "^0.4.0", 3032 + "word-wrap": "^1.2.5" 3033 + }, 3034 + "engines": { 3035 + "node": ">= 0.8.0" 3036 + } 3037 + }, 3038 + "node_modules/p-limit": { 3039 + "version": "3.1.0", 3040 + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3041 + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3042 + "dev": true, 3043 + "dependencies": { 3044 + "yocto-queue": "^0.1.0" 3045 + }, 3046 + "engines": { 3047 + "node": ">=10" 3048 + }, 3049 + "funding": { 3050 + "url": "https://github.com/sponsors/sindresorhus" 3051 + } 3052 + }, 3053 + "node_modules/p-locate": { 3054 + "version": "5.0.0", 3055 + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3056 + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3057 + "dev": true, 3058 + "dependencies": { 3059 + "p-limit": "^3.0.2" 3060 + }, 3061 + "engines": { 3062 + "node": ">=10" 3063 + }, 3064 + "funding": { 3065 + "url": "https://github.com/sponsors/sindresorhus" 3066 + } 3067 + }, 3068 + "node_modules/package-json-from-dist": { 3069 + "version": "1.0.1", 3070 + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", 3071 + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" 3072 + }, 3073 + "node_modules/parent-module": { 3074 + "version": "1.0.1", 3075 + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3076 + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3077 + "dev": true, 3078 + "dependencies": { 3079 + "callsites": "^3.0.0" 3080 + }, 3081 + "engines": { 3082 + "node": ">=6" 3083 + } 3084 + }, 3085 + "node_modules/parse-svg-path": { 3086 + "version": "0.1.2", 3087 + "resolved": "https://registry.npmjs.org/parse-svg-path/-/parse-svg-path-0.1.2.tgz", 3088 + "integrity": "sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ==" 3089 + }, 3090 + "node_modules/path-exists": { 3091 + "version": "4.0.0", 3092 + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3093 + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3094 + "dev": true, 3095 + "engines": { 3096 + "node": ">=8" 3097 + } 3098 + }, 3099 + "node_modules/path-key": { 3100 + "version": "3.1.1", 3101 + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3102 + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3103 + "engines": { 3104 + "node": ">=8" 3105 + } 3106 + }, 3107 + "node_modules/path-parse": { 3108 + "version": "1.0.7", 3109 + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3110 + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 3111 + }, 3112 + "node_modules/path-scurry": { 3113 + "version": "1.11.1", 3114 + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 3115 + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 3116 + "dependencies": { 3117 + "lru-cache": "^10.2.0", 3118 + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 3119 + }, 3120 + "engines": { 3121 + "node": ">=16 || 14 >=14.18" 3122 + }, 3123 + "funding": { 3124 + "url": "https://github.com/sponsors/isaacs" 3125 + } 3126 + }, 3127 + "node_modules/picocolors": { 3128 + "version": "1.1.1", 3129 + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 3130 + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" 3131 + }, 3132 + "node_modules/picomatch": { 3133 + "version": "4.0.2", 3134 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", 3135 + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", 3136 + "dev": true, 3137 + "optional": true, 3138 + "peer": true, 3139 + "engines": { 3140 + "node": ">=12" 3141 + }, 3142 + "funding": { 3143 + "url": "https://github.com/sponsors/jonschlinkert" 3144 + } 3145 + }, 3146 + "node_modules/pify": { 3147 + "version": "2.3.0", 3148 + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 3149 + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 3150 + "engines": { 3151 + "node": ">=0.10.0" 3152 + } 3153 + }, 3154 + "node_modules/pirates": { 3155 + "version": "4.0.6", 3156 + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 3157 + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 3158 + "engines": { 3159 + "node": ">= 6" 3160 + } 3161 + }, 3162 + "node_modules/pixi.js": { 3163 + "version": "8.5.2", 3164 + "resolved": "https://registry.npmjs.org/pixi.js/-/pixi.js-8.5.2.tgz", 3165 + "integrity": "sha512-TOt9g8ifOj4R9DN9ST1M8t2nvnuhr5oWL5YW9ywFLbnOVgFMDcEz+Xek5Mo8Xr64D+QU3qre3IFgreBlsHxTNw==", 3166 + "dependencies": { 3167 + "@pixi/colord": "^2.9.6", 3168 + "@types/css-font-loading-module": "^0.0.12", 3169 + "@types/earcut": "^2.1.4", 3170 + "@webgpu/types": "^0.1.40", 3171 + "@xmldom/xmldom": "^0.8.10", 3172 + "earcut": "^2.2.4", 3173 + "eventemitter3": "^5.0.1", 3174 + "ismobilejs": "^1.1.1", 3175 + "parse-svg-path": "^0.1.2" 3176 + } 3177 + }, 3178 + "node_modules/postcss": { 3179 + "version": "8.4.49", 3180 + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", 3181 + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", 3182 + "funding": [ 3183 + { 3184 + "type": "opencollective", 3185 + "url": "https://opencollective.com/postcss/" 3186 + }, 3187 + { 3188 + "type": "tidelift", 3189 + "url": "https://tidelift.com/funding/github/npm/postcss" 3190 + }, 3191 + { 3192 + "type": "github", 3193 + "url": "https://github.com/sponsors/ai" 3194 + } 3195 + ], 3196 + "dependencies": { 3197 + "nanoid": "^3.3.7", 3198 + "picocolors": "^1.1.1", 3199 + "source-map-js": "^1.2.1" 3200 + }, 3201 + "engines": { 3202 + "node": "^10 || ^12 || >=14" 3203 + } 3204 + }, 3205 + "node_modules/postcss-import": { 3206 + "version": "15.1.0", 3207 + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 3208 + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 3209 + "dependencies": { 3210 + "postcss-value-parser": "^4.0.0", 3211 + "read-cache": "^1.0.0", 3212 + "resolve": "^1.1.7" 3213 + }, 3214 + "engines": { 3215 + "node": ">=14.0.0" 3216 + }, 3217 + "peerDependencies": { 3218 + "postcss": "^8.0.0" 3219 + } 3220 + }, 3221 + "node_modules/postcss-js": { 3222 + "version": "4.0.1", 3223 + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 3224 + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 3225 + "dependencies": { 3226 + "camelcase-css": "^2.0.1" 3227 + }, 3228 + "engines": { 3229 + "node": "^12 || ^14 || >= 16" 3230 + }, 3231 + "funding": { 3232 + "type": "opencollective", 3233 + "url": "https://opencollective.com/postcss/" 3234 + }, 3235 + "peerDependencies": { 3236 + "postcss": "^8.4.21" 3237 + } 3238 + }, 3239 + "node_modules/postcss-load-config": { 3240 + "version": "3.1.4", 3241 + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", 3242 + "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", 3243 + "dev": true, 3244 + "dependencies": { 3245 + "lilconfig": "^2.0.5", 3246 + "yaml": "^1.10.2" 3247 + }, 3248 + "engines": { 3249 + "node": ">= 10" 3250 + }, 3251 + "funding": { 3252 + "type": "opencollective", 3253 + "url": "https://opencollective.com/postcss/" 3254 + }, 3255 + "peerDependencies": { 3256 + "postcss": ">=8.0.9", 3257 + "ts-node": ">=9.0.0" 3258 + }, 3259 + "peerDependenciesMeta": { 3260 + "postcss": { 3261 + "optional": true 3262 + }, 3263 + "ts-node": { 3264 + "optional": true 3265 + } 3266 + } 3267 + }, 3268 + "node_modules/postcss-nested": { 3269 + "version": "6.2.0", 3270 + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", 3271 + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", 3272 + "funding": [ 3273 + { 3274 + "type": "opencollective", 3275 + "url": "https://opencollective.com/postcss/" 3276 + }, 3277 + { 3278 + "type": "github", 3279 + "url": "https://github.com/sponsors/ai" 3280 + } 3281 + ], 3282 + "dependencies": { 3283 + "postcss-selector-parser": "^6.1.1" 3284 + }, 3285 + "engines": { 3286 + "node": ">=12.0" 3287 + }, 3288 + "peerDependencies": { 3289 + "postcss": "^8.2.14" 3290 + } 3291 + }, 3292 + "node_modules/postcss-nested/node_modules/postcss-selector-parser": { 3293 + "version": "6.1.2", 3294 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", 3295 + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", 3296 + "dependencies": { 3297 + "cssesc": "^3.0.0", 3298 + "util-deprecate": "^1.0.2" 3299 + }, 3300 + "engines": { 3301 + "node": ">=4" 3302 + } 3303 + }, 3304 + "node_modules/postcss-safe-parser": { 3305 + "version": "6.0.0", 3306 + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", 3307 + "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", 3308 + "dev": true, 3309 + "engines": { 3310 + "node": ">=12.0" 3311 + }, 3312 + "funding": { 3313 + "type": "opencollective", 3314 + "url": "https://opencollective.com/postcss/" 3315 + }, 3316 + "peerDependencies": { 3317 + "postcss": "^8.3.3" 3318 + } 3319 + }, 3320 + "node_modules/postcss-scss": { 3321 + "version": "4.0.9", 3322 + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", 3323 + "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", 3324 + "dev": true, 3325 + "funding": [ 3326 + { 3327 + "type": "opencollective", 3328 + "url": "https://opencollective.com/postcss/" 3329 + }, 3330 + { 3331 + "type": "tidelift", 3332 + "url": "https://tidelift.com/funding/github/npm/postcss-scss" 3333 + }, 3334 + { 3335 + "type": "github", 3336 + "url": "https://github.com/sponsors/ai" 3337 + } 3338 + ], 3339 + "engines": { 3340 + "node": ">=12.0" 3341 + }, 3342 + "peerDependencies": { 3343 + "postcss": "^8.4.29" 3344 + } 3345 + }, 3346 + "node_modules/postcss-selector-parser": { 3347 + "version": "6.0.10", 3348 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", 3349 + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", 3350 + "dependencies": { 3351 + "cssesc": "^3.0.0", 3352 + "util-deprecate": "^1.0.2" 3353 + }, 3354 + "engines": { 3355 + "node": ">=4" 3356 + } 3357 + }, 3358 + "node_modules/postcss-value-parser": { 3359 + "version": "4.2.0", 3360 + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 3361 + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" 3362 + }, 3363 + "node_modules/prelude-ls": { 3364 + "version": "1.2.1", 3365 + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3366 + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3367 + "dev": true, 3368 + "engines": { 3369 + "node": ">= 0.8.0" 3370 + } 3371 + }, 3372 + "node_modules/prettier": { 3373 + "version": "3.3.3", 3374 + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", 3375 + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", 3376 + "dev": true, 3377 + "bin": { 3378 + "prettier": "bin/prettier.cjs" 3379 + }, 3380 + "engines": { 3381 + "node": ">=14" 3382 + }, 3383 + "funding": { 3384 + "url": "https://github.com/prettier/prettier?sponsor=1" 3385 + } 3386 + }, 3387 + "node_modules/prettier-plugin-svelte": { 3388 + "version": "3.2.8", 3389 + "resolved": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.2.8.tgz", 3390 + "integrity": "sha512-PAHmmU5cGZdnhW4mWhmvxuG2PVbbHIxUuPOdUKvfE+d4Qt2d29iU5VWrPdsaW5YqVEE0nqhlvN4eoKmVMpIF3Q==", 3391 + "dev": true, 3392 + "peerDependencies": { 3393 + "prettier": "^3.0.0", 3394 + "svelte": "^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0" 3395 + } 3396 + }, 3397 + "node_modules/prettier-plugin-tailwindcss": { 3398 + "version": "0.6.8", 3399 + "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.6.8.tgz", 3400 + "integrity": "sha512-dGu3kdm7SXPkiW4nzeWKCl3uoImdd5CTZEJGxyypEPL37Wj0HT2pLqjrvSei1nTeuQfO4PUfjeW5cTUNRLZ4sA==", 3401 + "dev": true, 3402 + "engines": { 3403 + "node": ">=14.21.3" 3404 + }, 3405 + "peerDependencies": { 3406 + "@ianvs/prettier-plugin-sort-imports": "*", 3407 + "@prettier/plugin-pug": "*", 3408 + "@shopify/prettier-plugin-liquid": "*", 3409 + "@trivago/prettier-plugin-sort-imports": "*", 3410 + "@zackad/prettier-plugin-twig-melody": "*", 3411 + "prettier": "^3.0", 3412 + "prettier-plugin-astro": "*", 3413 + "prettier-plugin-css-order": "*", 3414 + "prettier-plugin-import-sort": "*", 3415 + "prettier-plugin-jsdoc": "*", 3416 + "prettier-plugin-marko": "*", 3417 + "prettier-plugin-multiline-arrays": "*", 3418 + "prettier-plugin-organize-attributes": "*", 3419 + "prettier-plugin-organize-imports": "*", 3420 + "prettier-plugin-sort-imports": "*", 3421 + "prettier-plugin-style-order": "*", 3422 + "prettier-plugin-svelte": "*" 3423 + }, 3424 + "peerDependenciesMeta": { 3425 + "@ianvs/prettier-plugin-sort-imports": { 3426 + "optional": true 3427 + }, 3428 + "@prettier/plugin-pug": { 3429 + "optional": true 3430 + }, 3431 + "@shopify/prettier-plugin-liquid": { 3432 + "optional": true 3433 + }, 3434 + "@trivago/prettier-plugin-sort-imports": { 3435 + "optional": true 3436 + }, 3437 + "@zackad/prettier-plugin-twig-melody": { 3438 + "optional": true 3439 + }, 3440 + "prettier-plugin-astro": { 3441 + "optional": true 3442 + }, 3443 + "prettier-plugin-css-order": { 3444 + "optional": true 3445 + }, 3446 + "prettier-plugin-import-sort": { 3447 + "optional": true 3448 + }, 3449 + "prettier-plugin-jsdoc": { 3450 + "optional": true 3451 + }, 3452 + "prettier-plugin-marko": { 3453 + "optional": true 3454 + }, 3455 + "prettier-plugin-multiline-arrays": { 3456 + "optional": true 3457 + }, 3458 + "prettier-plugin-organize-attributes": { 3459 + "optional": true 3460 + }, 3461 + "prettier-plugin-organize-imports": { 3462 + "optional": true 3463 + }, 3464 + "prettier-plugin-sort-imports": { 3465 + "optional": true 3466 + }, 3467 + "prettier-plugin-style-order": { 3468 + "optional": true 3469 + }, 3470 + "prettier-plugin-svelte": { 3471 + "optional": true 3472 + } 3473 + } 3474 + }, 3475 + "node_modules/punycode": { 3476 + "version": "2.3.1", 3477 + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 3478 + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 3479 + "dev": true, 3480 + "engines": { 3481 + "node": ">=6" 3482 + } 3483 + }, 3484 + "node_modules/queue-microtask": { 3485 + "version": "1.2.3", 3486 + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3487 + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3488 + "funding": [ 3489 + { 3490 + "type": "github", 3491 + "url": "https://github.com/sponsors/feross" 3492 + }, 3493 + { 3494 + "type": "patreon", 3495 + "url": "https://www.patreon.com/feross" 3496 + }, 3497 + { 3498 + "type": "consulting", 3499 + "url": "https://feross.org/support" 3500 + } 3501 + ] 3502 + }, 3503 + "node_modules/read-cache": { 3504 + "version": "1.0.0", 3505 + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 3506 + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 3507 + "dependencies": { 3508 + "pify": "^2.3.0" 3509 + } 3510 + }, 3511 + "node_modules/readdirp": { 3512 + "version": "4.0.2", 3513 + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.0.2.tgz", 3514 + "integrity": "sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==", 3515 + "dev": true, 3516 + "engines": { 3517 + "node": ">= 14.16.0" 3518 + }, 3519 + "funding": { 3520 + "type": "individual", 3521 + "url": "https://paulmillr.com/funding/" 3522 + } 3523 + }, 3524 + "node_modules/resolve": { 3525 + "version": "1.22.8", 3526 + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 3527 + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 3528 + "dependencies": { 3529 + "is-core-module": "^2.13.0", 3530 + "path-parse": "^1.0.7", 3531 + "supports-preserve-symlinks-flag": "^1.0.0" 3532 + }, 3533 + "bin": { 3534 + "resolve": "bin/resolve" 3535 + }, 3536 + "funding": { 3537 + "url": "https://github.com/sponsors/ljharb" 3538 + } 3539 + }, 3540 + "node_modules/resolve-from": { 3541 + "version": "4.0.0", 3542 + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3543 + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3544 + "dev": true, 3545 + "engines": { 3546 + "node": ">=4" 3547 + } 3548 + }, 3549 + "node_modules/reusify": { 3550 + "version": "1.0.4", 3551 + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3552 + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3553 + "engines": { 3554 + "iojs": ">=1.0.0", 3555 + "node": ">=0.10.0" 3556 + } 3557 + }, 3558 + "node_modules/rollup": { 3559 + "version": "4.27.3", 3560 + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.27.3.tgz", 3561 + "integrity": "sha512-SLsCOnlmGt9VoZ9Ek8yBK8tAdmPHeppkw+Xa7yDlCEhDTvwYei03JlWo1fdc7YTfLZ4tD8riJCUyAgTbszk1fQ==", 3562 + "dependencies": { 3563 + "@types/estree": "1.0.6" 3564 + }, 3565 + "bin": { 3566 + "rollup": "dist/bin/rollup" 3567 + }, 3568 + "engines": { 3569 + "node": ">=18.0.0", 3570 + "npm": ">=8.0.0" 3571 + }, 3572 + "optionalDependencies": { 3573 + "@rollup/rollup-android-arm-eabi": "4.27.3", 3574 + "@rollup/rollup-android-arm64": "4.27.3", 3575 + "@rollup/rollup-darwin-arm64": "4.27.3", 3576 + "@rollup/rollup-darwin-x64": "4.27.3", 3577 + "@rollup/rollup-freebsd-arm64": "4.27.3", 3578 + "@rollup/rollup-freebsd-x64": "4.27.3", 3579 + "@rollup/rollup-linux-arm-gnueabihf": "4.27.3", 3580 + "@rollup/rollup-linux-arm-musleabihf": "4.27.3", 3581 + "@rollup/rollup-linux-arm64-gnu": "4.27.3", 3582 + "@rollup/rollup-linux-arm64-musl": "4.27.3", 3583 + "@rollup/rollup-linux-powerpc64le-gnu": "4.27.3", 3584 + "@rollup/rollup-linux-riscv64-gnu": "4.27.3", 3585 + "@rollup/rollup-linux-s390x-gnu": "4.27.3", 3586 + "@rollup/rollup-linux-x64-gnu": "4.27.3", 3587 + "@rollup/rollup-linux-x64-musl": "4.27.3", 3588 + "@rollup/rollup-win32-arm64-msvc": "4.27.3", 3589 + "@rollup/rollup-win32-ia32-msvc": "4.27.3", 3590 + "@rollup/rollup-win32-x64-msvc": "4.27.3", 3591 + "fsevents": "~2.3.2" 3592 + } 3593 + }, 3594 + "node_modules/run-parallel": { 3595 + "version": "1.2.0", 3596 + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3597 + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3598 + "funding": [ 3599 + { 3600 + "type": "github", 3601 + "url": "https://github.com/sponsors/feross" 3602 + }, 3603 + { 3604 + "type": "patreon", 3605 + "url": "https://www.patreon.com/feross" 3606 + }, 3607 + { 3608 + "type": "consulting", 3609 + "url": "https://feross.org/support" 3610 + } 3611 + ], 3612 + "dependencies": { 3613 + "queue-microtask": "^1.2.2" 3614 + } 3615 + }, 3616 + "node_modules/sade": { 3617 + "version": "1.8.1", 3618 + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", 3619 + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", 3620 + "dependencies": { 3621 + "mri": "^1.1.0" 3622 + }, 3623 + "engines": { 3624 + "node": ">=6" 3625 + } 3626 + }, 3627 + "node_modules/semver": { 3628 + "version": "7.6.3", 3629 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 3630 + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 3631 + "dev": true, 3632 + "bin": { 3633 + "semver": "bin/semver.js" 3634 + }, 3635 + "engines": { 3636 + "node": ">=10" 3637 + } 3638 + }, 3639 + "node_modules/set-cookie-parser": { 3640 + "version": "2.7.1", 3641 + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz", 3642 + "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==" 3643 + }, 3644 + "node_modules/shebang-command": { 3645 + "version": "2.0.0", 3646 + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3647 + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3648 + "dependencies": { 3649 + "shebang-regex": "^3.0.0" 3650 + }, 3651 + "engines": { 3652 + "node": ">=8" 3653 + } 3654 + }, 3655 + "node_modules/shebang-regex": { 3656 + "version": "3.0.0", 3657 + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3658 + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3659 + "engines": { 3660 + "node": ">=8" 3661 + } 3662 + }, 3663 + "node_modules/signal-exit": { 3664 + "version": "4.1.0", 3665 + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 3666 + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 3667 + "engines": { 3668 + "node": ">=14" 3669 + }, 3670 + "funding": { 3671 + "url": "https://github.com/sponsors/isaacs" 3672 + } 3673 + }, 3674 + "node_modules/sirv": { 3675 + "version": "3.0.0", 3676 + "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.0.tgz", 3677 + "integrity": "sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==", 3678 + "dependencies": { 3679 + "@polka/url": "^1.0.0-next.24", 3680 + "mrmime": "^2.0.0", 3681 + "totalist": "^3.0.0" 3682 + }, 3683 + "engines": { 3684 + "node": ">=18" 3685 + } 3686 + }, 3687 + "node_modules/source-map-js": { 3688 + "version": "1.2.1", 3689 + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 3690 + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 3691 + "engines": { 3692 + "node": ">=0.10.0" 3693 + } 3694 + }, 3695 + "node_modules/string-width": { 3696 + "version": "5.1.2", 3697 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 3698 + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 3699 + "dependencies": { 3700 + "eastasianwidth": "^0.2.0", 3701 + "emoji-regex": "^9.2.2", 3702 + "strip-ansi": "^7.0.1" 3703 + }, 3704 + "engines": { 3705 + "node": ">=12" 3706 + }, 3707 + "funding": { 3708 + "url": "https://github.com/sponsors/sindresorhus" 3709 + } 3710 + }, 3711 + "node_modules/string-width-cjs": { 3712 + "name": "string-width", 3713 + "version": "4.2.3", 3714 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3715 + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3716 + "dependencies": { 3717 + "emoji-regex": "^8.0.0", 3718 + "is-fullwidth-code-point": "^3.0.0", 3719 + "strip-ansi": "^6.0.1" 3720 + }, 3721 + "engines": { 3722 + "node": ">=8" 3723 + } 3724 + }, 3725 + "node_modules/string-width-cjs/node_modules/ansi-regex": { 3726 + "version": "5.0.1", 3727 + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3728 + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3729 + "engines": { 3730 + "node": ">=8" 3731 + } 3732 + }, 3733 + "node_modules/string-width-cjs/node_modules/emoji-regex": { 3734 + "version": "8.0.0", 3735 + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3736 + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" 3737 + }, 3738 + "node_modules/string-width-cjs/node_modules/strip-ansi": { 3739 + "version": "6.0.1", 3740 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3741 + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3742 + "dependencies": { 3743 + "ansi-regex": "^5.0.1" 3744 + }, 3745 + "engines": { 3746 + "node": ">=8" 3747 + } 3748 + }, 3749 + "node_modules/strip-ansi": { 3750 + "version": "7.1.0", 3751 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 3752 + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 3753 + "dependencies": { 3754 + "ansi-regex": "^6.0.1" 3755 + }, 3756 + "engines": { 3757 + "node": ">=12" 3758 + }, 3759 + "funding": { 3760 + "url": "https://github.com/chalk/strip-ansi?sponsor=1" 3761 + } 3762 + }, 3763 + "node_modules/strip-ansi-cjs": { 3764 + "name": "strip-ansi", 3765 + "version": "6.0.1", 3766 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3767 + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3768 + "dependencies": { 3769 + "ansi-regex": "^5.0.1" 3770 + }, 3771 + "engines": { 3772 + "node": ">=8" 3773 + } 3774 + }, 3775 + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { 3776 + "version": "5.0.1", 3777 + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3778 + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3779 + "engines": { 3780 + "node": ">=8" 3781 + } 3782 + }, 3783 + "node_modules/strip-json-comments": { 3784 + "version": "3.1.1", 3785 + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3786 + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3787 + "dev": true, 3788 + "engines": { 3789 + "node": ">=8" 3790 + }, 3791 + "funding": { 3792 + "url": "https://github.com/sponsors/sindresorhus" 3793 + } 3794 + }, 3795 + "node_modules/sucrase": { 3796 + "version": "3.35.0", 3797 + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", 3798 + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", 3799 + "dependencies": { 3800 + "@jridgewell/gen-mapping": "^0.3.2", 3801 + "commander": "^4.0.0", 3802 + "glob": "^10.3.10", 3803 + "lines-and-columns": "^1.1.6", 3804 + "mz": "^2.7.0", 3805 + "pirates": "^4.0.1", 3806 + "ts-interface-checker": "^0.1.9" 3807 + }, 3808 + "bin": { 3809 + "sucrase": "bin/sucrase", 3810 + "sucrase-node": "bin/sucrase-node" 3811 + }, 3812 + "engines": { 3813 + "node": ">=16 || 14 >=14.17" 3814 + } 3815 + }, 3816 + "node_modules/supports-color": { 3817 + "version": "7.2.0", 3818 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3819 + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3820 + "dependencies": { 3821 + "has-flag": "^4.0.0" 3822 + }, 3823 + "engines": { 3824 + "node": ">=8" 3825 + } 3826 + }, 3827 + "node_modules/supports-preserve-symlinks-flag": { 3828 + "version": "1.0.0", 3829 + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3830 + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3831 + "engines": { 3832 + "node": ">= 0.4" 3833 + }, 3834 + "funding": { 3835 + "url": "https://github.com/sponsors/ljharb" 3836 + } 3837 + }, 3838 + "node_modules/svelte": { 3839 + "version": "5.2.3", 3840 + "resolved": "https://registry.npmjs.org/svelte/-/svelte-5.2.3.tgz", 3841 + "integrity": "sha512-DRrWXdzo6+gfX9H/hQofQYyAtsGqC99+CFBvttImGt6gAy4Xzh0hHBrCHw5OtBgaPOdVGNW+S+mDcYcEsvTPOw==", 3842 + "dependencies": { 3843 + "@ampproject/remapping": "^2.3.0", 3844 + "@jridgewell/sourcemap-codec": "^1.5.0", 3845 + "@types/estree": "^1.0.5", 3846 + "acorn": "^8.12.1", 3847 + "acorn-typescript": "^1.4.13", 3848 + "aria-query": "^5.3.1", 3849 + "axobject-query": "^4.1.0", 3850 + "esm-env": "^1.0.0", 3851 + "esrap": "^1.2.2", 3852 + "is-reference": "^3.0.3", 3853 + "locate-character": "^3.0.0", 3854 + "magic-string": "^0.30.11", 3855 + "zimmerframe": "^1.1.2" 3856 + }, 3857 + "engines": { 3858 + "node": ">=18" 3859 + } 3860 + }, 3861 + "node_modules/svelte-check": { 3862 + "version": "4.0.9", 3863 + "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-4.0.9.tgz", 3864 + "integrity": "sha512-SVNCz2L+9ZELGli7G0n3B3QE5kdf0u27RtKr2ZivWQhcWIXatZxwM4VrQ6AiA2k9zKp2mk5AxkEhdjbpjv7rEw==", 3865 + "dev": true, 3866 + "dependencies": { 3867 + "@jridgewell/trace-mapping": "^0.3.25", 3868 + "chokidar": "^4.0.1", 3869 + "fdir": "^6.2.0", 3870 + "picocolors": "^1.0.0", 3871 + "sade": "^1.7.4" 3872 + }, 3873 + "bin": { 3874 + "svelte-check": "bin/svelte-check" 3875 + }, 3876 + "engines": { 3877 + "node": ">= 18.0.0" 3878 + }, 3879 + "peerDependencies": { 3880 + "svelte": "^4.0.0 || ^5.0.0-next.0", 3881 + "typescript": ">=5.0.0" 3882 + } 3883 + }, 3884 + "node_modules/svelte-eslint-parser": { 3885 + "version": "0.43.0", 3886 + "resolved": "https://registry.npmjs.org/svelte-eslint-parser/-/svelte-eslint-parser-0.43.0.tgz", 3887 + "integrity": "sha512-GpU52uPKKcVnh8tKN5P4UZpJ/fUDndmq7wfsvoVXsyP+aY0anol7Yqo01fyrlaWGMFfm4av5DyrjlaXdLRJvGA==", 3888 + "dev": true, 3889 + "dependencies": { 3890 + "eslint-scope": "^7.2.2", 3891 + "eslint-visitor-keys": "^3.4.3", 3892 + "espree": "^9.6.1", 3893 + "postcss": "^8.4.39", 3894 + "postcss-scss": "^4.0.9" 3895 + }, 3896 + "engines": { 3897 + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 3898 + }, 3899 + "funding": { 3900 + "url": "https://github.com/sponsors/ota-meshi" 3901 + }, 3902 + "peerDependencies": { 3903 + "svelte": "^3.37.0 || ^4.0.0 || ^5.0.0" 3904 + }, 3905 + "peerDependenciesMeta": { 3906 + "svelte": { 3907 + "optional": true 3908 + } 3909 + } 3910 + }, 3911 + "node_modules/svelte-eslint-parser/node_modules/eslint-scope": { 3912 + "version": "7.2.2", 3913 + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 3914 + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 3915 + "dev": true, 3916 + "dependencies": { 3917 + "esrecurse": "^4.3.0", 3918 + "estraverse": "^5.2.0" 3919 + }, 3920 + "engines": { 3921 + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 3922 + }, 3923 + "funding": { 3924 + "url": "https://opencollective.com/eslint" 3925 + } 3926 + }, 3927 + "node_modules/svelte-eslint-parser/node_modules/eslint-visitor-keys": { 3928 + "version": "3.4.3", 3929 + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 3930 + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 3931 + "dev": true, 3932 + "engines": { 3933 + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 3934 + }, 3935 + "funding": { 3936 + "url": "https://opencollective.com/eslint" 3937 + } 3938 + }, 3939 + "node_modules/svelte-eslint-parser/node_modules/espree": { 3940 + "version": "9.6.1", 3941 + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 3942 + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 3943 + "dev": true, 3944 + "dependencies": { 3945 + "acorn": "^8.9.0", 3946 + "acorn-jsx": "^5.3.2", 3947 + "eslint-visitor-keys": "^3.4.1" 3948 + }, 3949 + "engines": { 3950 + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 3951 + }, 3952 + "funding": { 3953 + "url": "https://opencollective.com/eslint" 3954 + } 3955 + }, 3956 + "node_modules/svelte-relative-time": { 3957 + "version": "0.0.6", 3958 + "resolved": "https://registry.npmjs.org/svelte-relative-time/-/svelte-relative-time-0.0.6.tgz", 3959 + "integrity": "sha512-gYaQz2QxE//7WTh13IbQCwN99+lxQ9rpOZ8+bBew6tQ8iNqmJw422/oeTP9y5kUs2Y/BSz9z749+Co/yr4lexg==", 3960 + "peerDependencies": { 3961 + "svelte": "^3.54.0 || ^4.0.0 || ^5.0.0" 3962 + } 3963 + }, 3964 + "node_modules/table-layout": { 3965 + "version": "4.1.1", 3966 + "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-4.1.1.tgz", 3967 + "integrity": "sha512-iK5/YhZxq5GO5z8wb0bY1317uDF3Zjpha0QFFLA8/trAoiLbQD0HUbMesEaxyzUgDxi2QlcbM8IvqOlEjgoXBA==", 3968 + "dependencies": { 3969 + "array-back": "^6.2.2", 3970 + "wordwrapjs": "^5.1.0" 3971 + }, 3972 + "engines": { 3973 + "node": ">=12.17" 3974 + } 3975 + }, 3976 + "node_modules/table-layout/node_modules/array-back": { 3977 + "version": "6.2.2", 3978 + "resolved": "https://registry.npmjs.org/array-back/-/array-back-6.2.2.tgz", 3979 + "integrity": "sha512-gUAZ7HPyb4SJczXAMUXMGAvI976JoK3qEx9v1FTmeYuJj0IBiaKttG1ydtGKdkfqWkIkouke7nG8ufGy77+Cvw==", 3980 + "engines": { 3981 + "node": ">=12.17" 3982 + } 3983 + }, 3984 + "node_modules/tailwindcss": { 3985 + "version": "3.4.15", 3986 + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.15.tgz", 3987 + "integrity": "sha512-r4MeXnfBmSOuKUWmXe6h2CcyfzJCEk4F0pptO5jlnYSIViUkVmsawj80N5h2lO3gwcmSb4n3PuN+e+GC1Guylw==", 3988 + "dependencies": { 3989 + "@alloc/quick-lru": "^5.2.0", 3990 + "arg": "^5.0.2", 3991 + "chokidar": "^3.6.0", 3992 + "didyoumean": "^1.2.2", 3993 + "dlv": "^1.1.3", 3994 + "fast-glob": "^3.3.2", 3995 + "glob-parent": "^6.0.2", 3996 + "is-glob": "^4.0.3", 3997 + "jiti": "^1.21.6", 3998 + "lilconfig": "^2.1.0", 3999 + "micromatch": "^4.0.8", 4000 + "normalize-path": "^3.0.0", 4001 + "object-hash": "^3.0.0", 4002 + "picocolors": "^1.1.1", 4003 + "postcss": "^8.4.47", 4004 + "postcss-import": "^15.1.0", 4005 + "postcss-js": "^4.0.1", 4006 + "postcss-load-config": "^4.0.2", 4007 + "postcss-nested": "^6.2.0", 4008 + "postcss-selector-parser": "^6.1.2", 4009 + "resolve": "^1.22.8", 4010 + "sucrase": "^3.35.0" 4011 + }, 4012 + "bin": { 4013 + "tailwind": "lib/cli.js", 4014 + "tailwindcss": "lib/cli.js" 4015 + }, 4016 + "engines": { 4017 + "node": ">=14.0.0" 4018 + } 4019 + }, 4020 + "node_modules/tailwindcss/node_modules/chokidar": { 4021 + "version": "3.6.0", 4022 + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 4023 + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 4024 + "dependencies": { 4025 + "anymatch": "~3.1.2", 4026 + "braces": "~3.0.2", 4027 + "glob-parent": "~5.1.2", 4028 + "is-binary-path": "~2.1.0", 4029 + "is-glob": "~4.0.1", 4030 + "normalize-path": "~3.0.0", 4031 + "readdirp": "~3.6.0" 4032 + }, 4033 + "engines": { 4034 + "node": ">= 8.10.0" 4035 + }, 4036 + "funding": { 4037 + "url": "https://paulmillr.com/funding/" 4038 + }, 4039 + "optionalDependencies": { 4040 + "fsevents": "~2.3.2" 4041 + } 4042 + }, 4043 + "node_modules/tailwindcss/node_modules/chokidar/node_modules/glob-parent": { 4044 + "version": "5.1.2", 4045 + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 4046 + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 4047 + "dependencies": { 4048 + "is-glob": "^4.0.1" 4049 + }, 4050 + "engines": { 4051 + "node": ">= 6" 4052 + } 4053 + }, 4054 + "node_modules/tailwindcss/node_modules/picomatch": { 4055 + "version": "2.3.1", 4056 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 4057 + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 4058 + "engines": { 4059 + "node": ">=8.6" 4060 + }, 4061 + "funding": { 4062 + "url": "https://github.com/sponsors/jonschlinkert" 4063 + } 4064 + }, 4065 + "node_modules/tailwindcss/node_modules/postcss-load-config": { 4066 + "version": "4.0.2", 4067 + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", 4068 + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", 4069 + "funding": [ 4070 + { 4071 + "type": "opencollective", 4072 + "url": "https://opencollective.com/postcss/" 4073 + }, 4074 + { 4075 + "type": "github", 4076 + "url": "https://github.com/sponsors/ai" 4077 + } 4078 + ], 4079 + "dependencies": { 4080 + "lilconfig": "^3.0.0", 4081 + "yaml": "^2.3.4" 4082 + }, 4083 + "engines": { 4084 + "node": ">= 14" 4085 + }, 4086 + "peerDependencies": { 4087 + "postcss": ">=8.0.9", 4088 + "ts-node": ">=9.0.0" 4089 + }, 4090 + "peerDependenciesMeta": { 4091 + "postcss": { 4092 + "optional": true 4093 + }, 4094 + "ts-node": { 4095 + "optional": true 4096 + } 4097 + } 4098 + }, 4099 + "node_modules/tailwindcss/node_modules/postcss-load-config/node_modules/lilconfig": { 4100 + "version": "3.1.2", 4101 + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", 4102 + "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", 4103 + "engines": { 4104 + "node": ">=14" 4105 + }, 4106 + "funding": { 4107 + "url": "https://github.com/sponsors/antonk52" 4108 + } 4109 + }, 4110 + "node_modules/tailwindcss/node_modules/postcss-selector-parser": { 4111 + "version": "6.1.2", 4112 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", 4113 + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", 4114 + "dependencies": { 4115 + "cssesc": "^3.0.0", 4116 + "util-deprecate": "^1.0.2" 4117 + }, 4118 + "engines": { 4119 + "node": ">=4" 4120 + } 4121 + }, 4122 + "node_modules/tailwindcss/node_modules/readdirp": { 4123 + "version": "3.6.0", 4124 + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 4125 + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 4126 + "dependencies": { 4127 + "picomatch": "^2.2.1" 4128 + }, 4129 + "engines": { 4130 + "node": ">=8.10.0" 4131 + } 4132 + }, 4133 + "node_modules/tailwindcss/node_modules/yaml": { 4134 + "version": "2.6.0", 4135 + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.0.tgz", 4136 + "integrity": "sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==", 4137 + "bin": { 4138 + "yaml": "bin.mjs" 4139 + }, 4140 + "engines": { 4141 + "node": ">= 14" 4142 + } 4143 + }, 4144 + "node_modules/thenify": { 4145 + "version": "3.3.1", 4146 + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 4147 + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 4148 + "dependencies": { 4149 + "any-promise": "^1.0.0" 4150 + } 4151 + }, 4152 + "node_modules/thenify-all": { 4153 + "version": "1.6.0", 4154 + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 4155 + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 4156 + "dependencies": { 4157 + "thenify": ">= 3.1.0 < 4" 4158 + }, 4159 + "engines": { 4160 + "node": ">=0.8" 4161 + } 4162 + }, 4163 + "node_modules/tiny-glob": { 4164 + "version": "0.2.9", 4165 + "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", 4166 + "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", 4167 + "dependencies": { 4168 + "globalyzer": "0.1.0", 4169 + "globrex": "^0.1.2" 4170 + } 4171 + }, 4172 + "node_modules/to-regex-range": { 4173 + "version": "5.0.1", 4174 + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 4175 + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 4176 + "dependencies": { 4177 + "is-number": "^7.0.0" 4178 + }, 4179 + "engines": { 4180 + "node": ">=8.0" 4181 + } 4182 + }, 4183 + "node_modules/totalist": { 4184 + "version": "3.0.1", 4185 + "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", 4186 + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", 4187 + "engines": { 4188 + "node": ">=6" 4189 + } 4190 + }, 4191 + "node_modules/ts-api-utils": { 4192 + "version": "1.4.0", 4193 + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.0.tgz", 4194 + "integrity": "sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==", 4195 + "dev": true, 4196 + "engines": { 4197 + "node": ">=16" 4198 + }, 4199 + "peerDependencies": { 4200 + "typescript": ">=4.2.0" 4201 + } 4202 + }, 4203 + "node_modules/ts-interface-checker": { 4204 + "version": "0.1.13", 4205 + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 4206 + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" 4207 + }, 4208 + "node_modules/tslib": { 4209 + "version": "2.8.1", 4210 + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 4211 + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" 4212 + }, 4213 + "node_modules/type-check": { 4214 + "version": "0.4.0", 4215 + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 4216 + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 4217 + "dev": true, 4218 + "dependencies": { 4219 + "prelude-ls": "^1.2.1" 4220 + }, 4221 + "engines": { 4222 + "node": ">= 0.8.0" 4223 + } 4224 + }, 4225 + "node_modules/typescript": { 4226 + "version": "5.6.3", 4227 + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz", 4228 + "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", 4229 + "dev": true, 4230 + "bin": { 4231 + "tsc": "bin/tsc", 4232 + "tsserver": "bin/tsserver" 4233 + }, 4234 + "engines": { 4235 + "node": ">=14.17" 4236 + } 4237 + }, 4238 + "node_modules/typescript-eslint": { 4239 + "version": "8.15.0", 4240 + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.15.0.tgz", 4241 + "integrity": "sha512-wY4FRGl0ZI+ZU4Jo/yjdBu0lVTSML58pu6PgGtJmCufvzfV565pUF6iACQt092uFOd49iLOTX/sEVmHtbSrS+w==", 4242 + "dev": true, 4243 + "dependencies": { 4244 + "@typescript-eslint/eslint-plugin": "8.15.0", 4245 + "@typescript-eslint/parser": "8.15.0", 4246 + "@typescript-eslint/utils": "8.15.0" 4247 + }, 4248 + "engines": { 4249 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 4250 + }, 4251 + "funding": { 4252 + "type": "opencollective", 4253 + "url": "https://opencollective.com/typescript-eslint" 4254 + }, 4255 + "peerDependencies": { 4256 + "eslint": "^8.57.0 || ^9.0.0" 4257 + }, 4258 + "peerDependenciesMeta": { 4259 + "typescript": { 4260 + "optional": true 4261 + } 4262 + } 4263 + }, 4264 + "node_modules/typical": { 4265 + "version": "4.0.0", 4266 + "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", 4267 + "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==", 4268 + "engines": { 4269 + "node": ">=8" 4270 + } 4271 + }, 4272 + "node_modules/undici-types": { 4273 + "version": "6.19.8", 4274 + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", 4275 + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==" 4276 + }, 4277 + "node_modules/update-browserslist-db": { 4278 + "version": "1.1.1", 4279 + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", 4280 + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", 4281 + "dev": true, 4282 + "funding": [ 4283 + { 4284 + "type": "opencollective", 4285 + "url": "https://opencollective.com/browserslist" 4286 + }, 4287 + { 4288 + "type": "tidelift", 4289 + "url": "https://tidelift.com/funding/github/npm/browserslist" 4290 + }, 4291 + { 4292 + "type": "github", 4293 + "url": "https://github.com/sponsors/ai" 4294 + } 4295 + ], 4296 + "dependencies": { 4297 + "escalade": "^3.2.0", 4298 + "picocolors": "^1.1.0" 4299 + }, 4300 + "bin": { 4301 + "update-browserslist-db": "cli.js" 4302 + }, 4303 + "peerDependencies": { 4304 + "browserslist": ">= 4.21.0" 4305 + } 4306 + }, 4307 + "node_modules/uri-js": { 4308 + "version": "4.4.1", 4309 + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 4310 + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 4311 + "dev": true, 4312 + "dependencies": { 4313 + "punycode": "^2.1.0" 4314 + } 4315 + }, 4316 + "node_modules/util-deprecate": { 4317 + "version": "1.0.2", 4318 + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 4319 + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 4320 + }, 4321 + "node_modules/vite": { 4322 + "version": "5.4.11", 4323 + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.11.tgz", 4324 + "integrity": "sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==", 4325 + "dependencies": { 4326 + "esbuild": "^0.21.3", 4327 + "postcss": "^8.4.43", 4328 + "rollup": "^4.20.0" 4329 + }, 4330 + "bin": { 4331 + "vite": "bin/vite.js" 4332 + }, 4333 + "engines": { 4334 + "node": "^18.0.0 || >=20.0.0" 4335 + }, 4336 + "funding": { 4337 + "url": "https://github.com/vitejs/vite?sponsor=1" 4338 + }, 4339 + "optionalDependencies": { 4340 + "fsevents": "~2.3.3" 4341 + }, 4342 + "peerDependencies": { 4343 + "@types/node": "^18.0.0 || >=20.0.0", 4344 + "less": "*", 4345 + "lightningcss": "^1.21.0", 4346 + "sass": "*", 4347 + "sass-embedded": "*", 4348 + "stylus": "*", 4349 + "sugarss": "*", 4350 + "terser": "^5.4.0" 4351 + }, 4352 + "peerDependenciesMeta": { 4353 + "@types/node": { 4354 + "optional": true 4355 + }, 4356 + "less": { 4357 + "optional": true 4358 + }, 4359 + "lightningcss": { 4360 + "optional": true 4361 + }, 4362 + "sass": { 4363 + "optional": true 4364 + }, 4365 + "sass-embedded": { 4366 + "optional": true 4367 + }, 4368 + "stylus": { 4369 + "optional": true 4370 + }, 4371 + "sugarss": { 4372 + "optional": true 4373 + }, 4374 + "terser": { 4375 + "optional": true 4376 + } 4377 + } 4378 + }, 4379 + "node_modules/vitefu": { 4380 + "version": "1.0.3", 4381 + "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.0.3.tgz", 4382 + "integrity": "sha512-iKKfOMBHob2WxEJbqbJjHAkmYgvFDPhuqrO82om83S8RLk+17FtyMBfcyeH8GqD0ihShtkMW/zzJgiA51hCNCQ==", 4383 + "peerDependencies": { 4384 + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0-beta.0" 4385 + }, 4386 + "peerDependenciesMeta": { 4387 + "vite": { 4388 + "optional": true 4389 + } 4390 + } 4391 + }, 4392 + "node_modules/which": { 4393 + "version": "2.0.2", 4394 + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4395 + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4396 + "dependencies": { 4397 + "isexe": "^2.0.0" 4398 + }, 4399 + "bin": { 4400 + "node-which": "bin/node-which" 4401 + }, 4402 + "engines": { 4403 + "node": ">= 8" 4404 + } 4405 + }, 4406 + "node_modules/word-wrap": { 4407 + "version": "1.2.5", 4408 + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 4409 + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 4410 + "dev": true, 4411 + "engines": { 4412 + "node": ">=0.10.0" 4413 + } 4414 + }, 4415 + "node_modules/wordwrapjs": { 4416 + "version": "5.1.0", 4417 + "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-5.1.0.tgz", 4418 + "integrity": "sha512-JNjcULU2e4KJwUNv6CHgI46UvDGitb6dGryHajXTDiLgg1/RiGoPSDw4kZfYnwGtEXf2ZMeIewDQgFGzkCB2Sg==", 4419 + "engines": { 4420 + "node": ">=12.17" 4421 + } 4422 + }, 4423 + "node_modules/wrap-ansi": { 4424 + "version": "8.1.0", 4425 + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 4426 + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 4427 + "dependencies": { 4428 + "ansi-styles": "^6.1.0", 4429 + "string-width": "^5.0.1", 4430 + "strip-ansi": "^7.0.1" 4431 + }, 4432 + "engines": { 4433 + "node": ">=12" 4434 + }, 4435 + "funding": { 4436 + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4437 + } 4438 + }, 4439 + "node_modules/wrap-ansi-cjs": { 4440 + "name": "wrap-ansi", 4441 + "version": "7.0.0", 4442 + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 4443 + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 4444 + "dependencies": { 4445 + "ansi-styles": "^4.0.0", 4446 + "string-width": "^4.1.0", 4447 + "strip-ansi": "^6.0.0" 4448 + }, 4449 + "engines": { 4450 + "node": ">=10" 4451 + }, 4452 + "funding": { 4453 + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4454 + } 4455 + }, 4456 + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { 4457 + "version": "5.0.1", 4458 + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 4459 + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 4460 + "engines": { 4461 + "node": ">=8" 4462 + } 4463 + }, 4464 + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 4465 + "version": "8.0.0", 4466 + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 4467 + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" 4468 + }, 4469 + "node_modules/wrap-ansi-cjs/node_modules/string-width": { 4470 + "version": "4.2.3", 4471 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 4472 + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 4473 + "dependencies": { 4474 + "emoji-regex": "^8.0.0", 4475 + "is-fullwidth-code-point": "^3.0.0", 4476 + "strip-ansi": "^6.0.1" 4477 + }, 4478 + "engines": { 4479 + "node": ">=8" 4480 + } 4481 + }, 4482 + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { 4483 + "version": "6.0.1", 4484 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 4485 + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 4486 + "dependencies": { 4487 + "ansi-regex": "^5.0.1" 4488 + }, 4489 + "engines": { 4490 + "node": ">=8" 4491 + } 4492 + }, 4493 + "node_modules/wrap-ansi/node_modules/ansi-styles": { 4494 + "version": "6.2.1", 4495 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 4496 + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 4497 + "engines": { 4498 + "node": ">=12" 4499 + }, 4500 + "funding": { 4501 + "url": "https://github.com/chalk/ansi-styles?sponsor=1" 4502 + } 4503 + }, 4504 + "node_modules/yaml": { 4505 + "version": "1.10.2", 4506 + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", 4507 + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", 4508 + "dev": true, 4509 + "engines": { 4510 + "node": ">= 6" 4511 + } 4512 + }, 4513 + "node_modules/yocto-queue": { 4514 + "version": "0.1.0", 4515 + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4516 + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4517 + "dev": true, 4518 + "engines": { 4519 + "node": ">=10" 4520 + }, 4521 + "funding": { 4522 + "url": "https://github.com/sponsors/sindresorhus" 4523 + } 4524 + }, 4525 + "node_modules/zimmerframe": { 4526 + "version": "1.1.2", 4527 + "resolved": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-1.1.2.tgz", 4528 + "integrity": "sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==" 4529 + } 4530 + } 4531 + }
+48
package.json
··· 1 + { 2 + "name": "bluesky-trending", 3 + "version": "0.0.1", 4 + "type": "module", 5 + "scripts": { 6 + "dev": "vite dev", 7 + "build": "vite build", 8 + "preview": "vite preview", 9 + "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", 10 + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", 11 + "format": "prettier --write .", 12 + "lint": "prettier --check . && eslint ." 13 + }, 14 + "devDependencies": { 15 + "@sveltejs/adapter-auto": "^3.0.0", 16 + "@sveltejs/kit": "^2.0.0", 17 + "@sveltejs/vite-plugin-svelte": "^4.0.0", 18 + "@types/eslint": "^9.6.0", 19 + "autoprefixer": "^10.4.20", 20 + "eslint": "^9.7.0", 21 + "eslint-config-prettier": "^9.1.0", 22 + "eslint-plugin-svelte": "^2.36.0", 23 + "globals": "^15.0.0", 24 + "prettier": "^3.3.2", 25 + "prettier-plugin-svelte": "^3.2.6", 26 + "prettier-plugin-tailwindcss": "^0.6.5", 27 + "svelte": "^5.0.0", 28 + "svelte-check": "^4.0.0", 29 + "tailwindcss": "^3.4.9", 30 + "typescript": "^5.0.0", 31 + "typescript-eslint": "^8.0.0", 32 + "vite": "^5.0.3" 33 + }, 34 + "dependencies": { 35 + "@duckdb/duckdb-wasm": "^1.29.0", 36 + "@sveltejs/adapter-static": "^3.0.6", 37 + "@tailwindcss/forms": "^0.5.9", 38 + "@tailwindcss/typography": "^0.5.15", 39 + "d3-cloud": "^1.2.7", 40 + "d3-scale": "^4.0.2", 41 + "d3-scale-chromatic": "^3.1.0", 42 + "d3-selection": "^3.0.0", 43 + "d3-transition": "^3.0.1", 44 + "gsap": "^3.12.5", 45 + "pixi.js": "^8.5.2", 46 + "svelte-relative-time": "^0.0.6" 47 + } 48 + }
+6
postcss.config.js
··· 1 + export default { 2 + plugins: { 3 + tailwindcss: {}, 4 + autoprefixer: {} 5 + } 6 + };
+3
src/app.css
··· 1 + @import 'tailwindcss/base'; 2 + @import 'tailwindcss/components'; 3 + @import 'tailwindcss/utilities';
+13
src/app.d.ts
··· 1 + // See https://svelte.dev/docs/kit/types#app.d.ts 2 + // for information about these interfaces 3 + declare global { 4 + namespace App { 5 + // interface Error {} 6 + // interface Locals {} 7 + // interface PageData {} 8 + // interface PageState {} 9 + // interface Platform {} 10 + } 11 + } 12 + 13 + export {};
+20
src/app.html
··· 1 + <!doctype html> 2 + <html lang="en"> 3 + <head> 4 + <meta charset="utf-8" /> 5 + <link rel="icon" href="%sveltekit.assets%/favicon.png" /> 6 + <meta name="viewport" content="width=device-width, initial-scale=1" /> 7 + %sveltekit.head% 8 + 9 + 10 + <title>bluesky visualizers</title> 11 + 12 + <link 13 + rel="icon" 14 + href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🦋</text></svg>" 15 + /> 16 + </head> 17 + <body data-sveltekit-preload-data="hover" class="bg-gray-950"> 18 + <div style="display: contents">%sveltekit.body%</div> 19 + </body> 20 + </html>
+61
src/lib/Credit.svelte
··· 1 + <script lang="ts"> 2 + export let name: string = ''; 3 + 4 + export let showAll: boolean = true; 5 + </script> 6 + 7 + <div class="absolute top-2 left-3 right-3 z-10 flex justify-between gap-4"> 8 + <div class="rounded-lg bg-gray-950/70 px-2 py-1 font-semibold backdrop-blur-sm text-white text-sm"> 9 + bluesky visualizers 10 + {#if name} 11 + - {name} 12 + {/if} 13 + 14 + {#if showAll} 15 + <a class="ml-2 text-sm text-cyan-400" href="/bluesky-visualizers">see all</a> 16 + {/if} 17 + </div> 18 + 19 + <div 20 + class="flex items-center gap-2 rounded-lg bg-gray-950/70 backdrop-blur-sm px-2 py-1 text-sm font-semibold text-white transition-colors duration-100" 21 + > 22 + <div> 23 + made by 24 + <a 25 + href="https://flo-bit.dev" 26 + class="text-cyan-400 transition-colors duration-100 hover:text-cyan-200" 27 + target="_blank">flo-bit</a 28 + > 29 + </div> 30 + 31 + <a 32 + class="z-10 text-cyan-400 transition-colors duration-100 hover:text-cyan-200" 33 + href="https://github.com/flo-bit/bluesky-visualizers" 34 + target="_blank" 35 + > 36 + <span class="sr-only">GitHub Code</span> 37 + <svg fill="currentColor" viewBox="0 0 24 24" aria-hidden="true" class="size-6"> 38 + <path 39 + fill-rule="evenodd" 40 + d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" 41 + clip-rule="evenodd" 42 + /> 43 + </svg> 44 + </a> 45 + 46 + <a href="https://bsky.app/profile/flo-bit.dev" target="_blank" class="text-cyan-400 transition-colors duration-100 hover:text-cyan-200"> 47 + <span class="sr-only">follow me on bluesky</span> 48 + <svg 49 + fill="currentColor" 50 + xmlns="http://www.w3.org/2000/svg" 51 + viewBox="-40 -40 680 620" 52 + version="1.1" 53 + class="size-6" 54 + > 55 + <path 56 + d="m135.72 44.03c66.496 49.921 138.02 151.14 164.28 205.46 26.262-54.316 97.782-155.54 164.28-205.46 47.98-36.021 125.72-63.892 125.72 24.795 0 17.712-10.155 148.79-16.111 170.07-20.703 73.984-96.144 92.854-163.25 81.433 117.3 19.964 147.14 86.092 82.697 152.22-122.39 125.59-175.91-31.511-189.63-71.766-2.514-7.3797-3.6904-10.832-3.7077-7.8964-0.0174-2.9357-1.1937 0.51669-3.7077 7.8964-13.714 40.255-67.233 197.36-189.63 71.766-64.444-66.128-34.605-132.26 82.697-152.22-67.108 11.421-142.55-7.4491-163.25-81.433-5.9562-21.282-16.111-152.36-16.111-170.07 0-88.687 77.742-60.816 125.72-24.795z" 57 + ></path> 58 + </svg> 59 + </a> 60 + </div> 61 + </div>
+1
src/lib/index.ts
··· 1 + // place files you want to import through the `$lib` alias in this folder.
+6
src/routes/+layout.svelte
··· 1 + <script lang="ts"> 2 + import '../app.css'; 3 + let { children } = $props(); 4 + </script> 5 + 6 + {@render children()}
+1
src/routes/+layout.ts
··· 1 + export const prerender = true;
+68
src/routes/+page.svelte
··· 1 + <script> 2 + 3 + import Credit from "$lib/Credit.svelte"; 4 + 5 + </script> 6 + <Credit showAll={false} /> 7 + 8 + <div class=""> 9 + <div class="mx-auto max-w-7xl px-4 py-16 sm:px-6 sm:py-24 lg:px-8"> 10 + <div class="sm:flex sm:items-baseline sm:justify-between"> 11 + <h2 class="text-2xl font-bold tracking-tight text-gray-50">Bluesky Visualizers</h2> 12 + 13 + </div> 14 + 15 + <div class="mt-6 grid grid-cols-1 gap-y-6 sm:grid-cols-2 sm:grid-rows-2 sm:gap-x-6 lg:gap-8"> 16 + <div class="group relative aspect-[2/1] overflow-hidden rounded-lg sm:row-span-2 sm:aspect-square border border-gray-900"> 17 + <img src="/bluesky-visualizers/trending.webp" alt="" class="absolute size-full object-cover group-hover:opacity-75 transition-opacity duration-75"> 18 + <div aria-hidden="true" class="absolute inset-0 bg-gradient-to-b from-transparent to-black opacity-80"></div> 19 + <div class="absolute inset-0 flex items-end p-6"> 20 + <div> 21 + <h3 class="font-semibold text-white"> 22 + <a href="/bluesky-visualizers/trending"> 23 + <span class="absolute inset-0"></span> 24 + Trending Hashtags 25 + </a> 26 + </h3> 27 + </div> 28 + </div> 29 + </div> 30 + <div class="group relative aspect-[2/1] overflow-hidden rounded-lg sm:aspect-auto border border-gray-900"> 31 + <img src="/bluesky-visualizers/wordcloud.webp" alt="" class="absolute size-full object-cover group-hover:opacity-75 transition-opacity duration-75"> 32 + <div aria-hidden="true" class="absolute inset-0 bg-gradient-to-b from-transparent to-black opacity-80"></div> 33 + <div class="absolute inset-0 flex items-end p-6"> 34 + <div> 35 + <h3 class="font-semibold text-white"> 36 + <a href="/bluesky-visualizers/wordcloud"> 37 + <span class="absolute inset-0"></span> 38 + Wordcloud 39 + </a> 40 + </h3> 41 + </div> 42 + </div> 43 + </div> 44 + <div class="group relative aspect-[2/1] overflow-hidden rounded-lg sm:aspect-auto border border-gray-900"> 45 + <img src="/bluesky-visualizers/particles.webp" alt="" class="absolute size-full object-cover group-hover:opacity-75 transition-opacity duration-75"> 46 + <div aria-hidden="true" class="absolute inset-0 bg-gradient-to-b from-transparent to-black opacity-80"></div> 47 + <div class="absolute inset-0 flex items-end p-6"> 48 + <div> 49 + <h3 class="font-semibold text-white"> 50 + <a href="/bluesky-visualizers/particles"> 51 + <span class="absolute inset-0"></span> 52 + Particles 53 + </a> 54 + </h3> 55 + </div> 56 + </div> 57 + </div> 58 + </div> 59 + 60 + <div class="mt-6 sm:hidden"> 61 + <a href="#" class="block text-sm font-semibold text-indigo-600 hover:text-indigo-500"> 62 + Browse all categories 63 + <span aria-hidden="true"> &rarr;</span> 64 + </a> 65 + </div> 66 + </div> 67 + </div> 68 +
+265
src/routes/particles/+page.svelte
··· 1 + <script lang="ts"> 2 + import * as PIXI from 'pixi.js'; 3 + import ParticleSystem from './particles'; 4 + 5 + import { onDestroy, onMount } from "svelte"; 6 + import Credit from '$lib/Credit.svelte'; 7 + 8 + let app: PIXI.Application; 9 + onMount(async () => { 10 + app = new PIXI.Application(); 11 + 12 + let w = window.innerWidth, 13 + h = window.innerHeight; 14 + 15 + // set to full screen 16 + await app.init({ 17 + width: w, 18 + height: h, 19 + antialias: true, 20 + backgroundAlpha: 0 21 + }); 22 + document.body.appendChild(app.canvas); 23 + 24 + // set canvas to absolute position and full size 25 + app.canvas.style.position = 'absolute'; 26 + app.canvas.style.width = '100%'; 27 + app.canvas.style.height = '100%'; 28 + 29 + const heartParticles = new ParticleSystem('/bluesky-visualizers/particles/heart2.png'); 30 + const postParticles = new ParticleSystem('/bluesky-visualizers/particles/post.png'); 31 + const followParticles = new ParticleSystem('/bluesky-visualizers/particles/follow.png'); 32 + const userParticles = new ParticleSystem('/bluesky-visualizers/particles/user.png'); 33 + 34 + app.stage.addChild(followParticles.container); 35 + app.stage.addChild(heartParticles.container); 36 + app.stage.addChild(postParticles.container); 37 + app.stage.addChild(userParticles.container); 38 + 39 + let totalTime = 0; 40 + 41 + function spawnParticle(type: 'heart' | 'post' | 'follow' | 'user') { 42 + let particleSystem; 43 + if (type === 'heart') { 44 + particleSystem = heartParticles; 45 + } else if (type === 'post') { 46 + particleSystem = postParticles; 47 + } else if (type === 'follow') { 48 + particleSystem = followParticles; 49 + } else if (type === 'user') { 50 + particleSystem = userParticles; 51 + } 52 + let top = true; 53 + particleSystem.spawnParticle({ 54 + x: Math.random() * w, 55 + y: top ? -50 : h + 50, 56 + size: (Math.pow(Math.random(), 4) * 40 + 10) * (type === 'user' ? 1.5 : 1), 57 + maxAge: Math.random() * 10 + 4, 58 + speedY: Math.random() * 150 * (top ? 1 : -1) + 50, 59 + speedX: Math.random() * 10 - 5 60 + }); 61 + } 62 + 63 + const visible = { 64 + heart: true, 65 + post: true, 66 + follow: true, 67 + user: true 68 + }; 69 + 70 + app.ticker.add((ticker) => { 71 + // get ellapsed time 72 + const deltaTime = ticker.deltaMS * 0.001; 73 + totalTime += deltaTime; 74 + 75 + heartParticles.update(deltaTime); 76 + postParticles.update(deltaTime); 77 + followParticles.update(deltaTime); 78 + userParticles.update(deltaTime); 79 + }); 80 + 81 + window.addEventListener('resize', () => { 82 + w = window.innerWidth; 83 + h = window.innerHeight; 84 + app.renderer.resize(w, h); 85 + }); 86 + 87 + // post-button 88 + const postButton = document.getElementById('post-button'); 89 + postButton?.addEventListener('click', () => { 90 + visible.post = !visible.post; 91 + if (visible.post) { 92 + postParticles.container.visible = true; 93 + postButton.style.opacity = '1'; 94 + } else { 95 + postParticles.container.visible = false; 96 + postButton.style.opacity = '0.4'; 97 + } 98 + }); 99 + 100 + // like-button 101 + const likeButton = document.getElementById('like-button'); 102 + likeButton?.addEventListener('click', () => { 103 + visible.heart = !visible.heart; 104 + if (visible.heart) { 105 + heartParticles.container.visible = true; 106 + likeButton.style.opacity = '1'; 107 + } else { 108 + heartParticles.container.visible = false; 109 + likeButton.style.opacity = '0.4'; 110 + } 111 + }); 112 + 113 + // follow-button 114 + const followButton = document.getElementById('follow-button'); 115 + followButton?.addEventListener('click', () => { 116 + visible.follow = !visible.follow; 117 + if (visible.follow) { 118 + followParticles.container.visible = true; 119 + followButton.style.opacity = '1'; 120 + } else { 121 + followParticles.container.visible = false; 122 + followButton.style.opacity = '0.4'; 123 + } 124 + }); 125 + 126 + // user-button 127 + const userButton = document.getElementById('user-button'); 128 + userButton?.addEventListener('click', () => { 129 + visible.user = !visible.user; 130 + if (visible.user) { 131 + userParticles.container.visible = true; 132 + // set button opacity to 100% 133 + userButton.style.opacity = '1'; 134 + } else { 135 + userParticles.container.visible = false; 136 + // set button opacity to 50% 137 + userButton.style.opacity = '0.4'; 138 + } 139 + }); 140 + 141 + const url = 142 + 'wss://jetstream2.us-east.bsky.network/subscribe?wantedCollections=app.bsky.feed.post&wantedCollections=app.bsky.feed.like&wantedCollections=app.bsky.graph.follow'; 143 + 144 + // WebSocket logic 145 + const ws = new WebSocket(url); 146 + ws.onopen = () => { 147 + console.log('Connected to BlueSky WebSocket'); 148 + }; 149 + 150 + ws.onmessage = (event) => { 151 + const json = JSON.parse(event.data); 152 + if (json.kind === 'account') console.log(json); 153 + 154 + if (json.kind === 'commit') { 155 + if (json.commit.collection === 'app.bsky.feed.post' && json.commit.operation === 'create') { 156 + spawnParticle('post'); 157 + } else if ( 158 + json.commit.collection === 'app.bsky.feed.like' && 159 + json.commit.operation === 'create' 160 + ) { 161 + spawnParticle('heart'); 162 + } else if ( 163 + json.commit.collection === 'app.bsky.graph.follow' && 164 + json.commit.operation === 'create' 165 + ) { 166 + spawnParticle('follow'); 167 + } 168 + } else if (json.kind === 'account' && json.account.active) { 169 + spawnParticle('user'); 170 + } 171 + }; 172 + 173 + ws.onerror = (error) => { 174 + console.error('WebSocket error:', error); 175 + }; 176 + 177 + ws.onclose = () => { 178 + console.log('WebSocket connection closed'); 179 + }; 180 + }); 181 + 182 + onDestroy(() => { 183 + // remove canvas from DOM 184 + if(!app || !app.canvas) return; 185 + app.canvas.remove(); 186 + // destroy app 187 + app.destroy(); 188 + }); 189 + </script> 190 + 191 + <div class="absolute bottom-2 right-2 z-10 bg-black/90 p-2 rounded-xl"> 192 + <button 193 + id="like-button" 194 + class="inline-flex gap-1 items-center rounded-full bg-rose-500/10 backdrop-blur-sm px-2.5 py-1 text-xs font-medium text-rose-400 ring-1 ring-inset ring-rose-400/30" 195 + > 196 + <svg 197 + xmlns="http://www.w3.org/2000/svg" 198 + viewBox="0 0 24 24" 199 + fill="currentColor" 200 + class="size-5" 201 + > 202 + <path 203 + d="m11.645 20.91-.007-.003-.022-.012a15.247 15.247 0 0 1-.383-.218 25.18 25.18 0 0 1-4.244-3.17C4.688 15.36 2.25 12.174 2.25 8.25 2.25 5.322 4.714 3 7.688 3A5.5 5.5 0 0 1 12 5.052 5.5 5.5 0 0 1 16.313 3c2.973 0 5.437 2.322 5.437 5.25 0 3.925-2.438 7.111-4.739 9.256a25.175 25.175 0 0 1-4.244 3.17 15.247 15.247 0 0 1-.383.219l-.022.012-.007.004-.003.001a.752.752 0 0 1-.704 0l-.003-.001Z" 204 + /> 205 + </svg> 206 + 207 + new like 208 + </button> 209 + <button 210 + id="follow-button" 211 + class="inline-flex gap-1 items-center rounded-full bg-green-500/10 backdrop-blur-sm px-2.5 py-1 text-xs font-medium text-green-400 ring-1 ring-inset ring-green-400/30" 212 + > 213 + <svg 214 + xmlns="http://www.w3.org/2000/svg" 215 + viewBox="0 0 24 24" 216 + fill="currentColor" 217 + class="size-5" 218 + > 219 + <path 220 + d="M5.25 6.375a4.125 4.125 0 1 1 8.25 0 4.125 4.125 0 0 1-8.25 0ZM2.25 19.125a7.125 7.125 0 0 1 14.25 0v.003l-.001.119a.75.75 0 0 1-.363.63 13.067 13.067 0 0 1-6.761 1.873c-2.472 0-4.786-.684-6.76-1.873a.75.75 0 0 1-.364-.63l-.001-.122ZM18.75 7.5a.75.75 0 0 0-1.5 0v2.25H15a.75.75 0 0 0 0 1.5h2.25v2.25a.75.75 0 0 0 1.5 0v-2.25H21a.75.75 0 0 0 0-1.5h-2.25V7.5Z" 221 + /> 222 + </svg> 223 + 224 + new follow 225 + </button> 226 + <button 227 + id="post-button" 228 + class="inline-flex gap-1 items-center rounded-full bg-amber-500/10 backdrop-blur-sm px-2.5 py-1 text-xs font-medium text-amber-400 ring-1 ring-inset ring-amber-400/30" 229 + > 230 + <svg 231 + xmlns="http://www.w3.org/2000/svg" 232 + viewBox="0 0 24 24" 233 + fill="currentColor" 234 + class="size-5" 235 + > 236 + <path 237 + fill-rule="evenodd" 238 + d="M12 2.25c-2.429 0-4.817.178-7.152.521C2.87 3.061 1.5 4.795 1.5 6.741v6.018c0 1.946 1.37 3.68 3.348 3.97.877.129 1.761.234 2.652.316V21a.75.75 0 0 0 1.28.53l4.184-4.183a.39.39 0 0 1 .266-.112c2.006-.05 3.982-.22 5.922-.506 1.978-.29 3.348-2.023 3.348-3.97V6.741c0-1.947-1.37-3.68-3.348-3.97A49.145 49.145 0 0 0 12 2.25ZM8.25 8.625a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25Zm2.625 1.125a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0Zm4.875-1.125a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25Z" 239 + clip-rule="evenodd" 240 + /> 241 + </svg> 242 + 243 + new post 244 + </button> 245 + <button 246 + id="user-button" 247 + class="inline-flex gap-1 items-center rounded-full bg-sky-500/10 backdrop-blur-sm px-2.5 py-1 text-xs font-medium text-sky-400 ring-1 ring-inset ring-sky-400/30" 248 + > 249 + <svg 250 + fill="currentColor" 251 + xmlns="http://www.w3.org/2000/svg" 252 + viewBox="-40 -40 680 620" 253 + version="1.1" 254 + class="size-5" 255 + > 256 + <path 257 + d="m135.72 44.03c66.496 49.921 138.02 151.14 164.28 205.46 26.262-54.316 97.782-155.54 164.28-205.46 47.98-36.021 125.72-63.892 125.72 24.795 0 17.712-10.155 148.79-16.111 170.07-20.703 73.984-96.144 92.854-163.25 81.433 117.3 19.964 147.14 86.092 82.697 152.22-122.39 125.59-175.91-31.511-189.63-71.766-2.514-7.3797-3.6904-10.832-3.7077-7.8964-0.0174-2.9357-1.1937 0.51669-3.7077 7.8964-13.714 40.255-67.233 197.36-189.63 71.766-64.444-66.128-34.605-132.26 82.697-152.22-67.108 11.421-142.55-7.4491-163.25-81.433-5.9562-21.282-16.111-152.36-16.111-170.07 0-88.687 77.742-60.816 125.72-24.795z" 258 + ></path> 259 + </svg> 260 + 261 + new user 262 + </button> 263 + </div> 264 + 265 + <Credit name="particles" />
+109
src/routes/particles/particles.ts
··· 1 + import * as PIXI from "pixi.js"; 2 + 3 + interface ParticleSprite extends PIXI.Sprite { 4 + speedX: number; 5 + speedY: number; 6 + age: number; 7 + maxAge: number; 8 + initialSize: number; 9 + } 10 + 11 + export type ParticleOptions = { 12 + x: number; 13 + y: number; 14 + size: number; 15 + color: PIXI.ColorSource; 16 + alpha: number; 17 + speedX: number; 18 + speedY: number; 19 + maxAge: number; 20 + }; 21 + 22 + export default class ParticleSystem { 23 + private app: PIXI.Application; 24 + private maxParticles: number; 25 + public container: PIXI.Container; 26 + private particles: ParticleSprite[]; 27 + private particlePool: ParticleSprite[]; 28 + private baseTexture: PIXI.Texture; 29 + 30 + private loaded = false; 31 + 32 + constructor(texture: string, maxParticles: number = 10000) { 33 + this.maxParticles = maxParticles; 34 + this.container = new PIXI.Container(); 35 + this.container.zIndex = 10; 36 + this.particles = []; 37 + this.particlePool = []; 38 + this.loadTexture(texture); 39 + } 40 + 41 + async loadTexture(url: string) { 42 + const texture = await PIXI.Assets.load(url); 43 + this.baseTexture = texture; 44 + this.loaded = true; 45 + } 46 + 47 + spawnParticle(opts: Partial<ParticleOptions>): ParticleSprite | null { 48 + if (!this.loaded) return null; 49 + let particle: ParticleSprite; 50 + if (this.particlePool.length > 0) { 51 + particle = this.particlePool.pop()!; 52 + } else if (this.particles.length < this.maxParticles) { 53 + particle = new PIXI.Sprite(this.baseTexture) as ParticleSprite; 54 + particle.anchor.set(0.5, 0.5); 55 + this.container.addChild(particle); 56 + } else { 57 + return null; 58 + } 59 + 60 + particle.rotation = (Math.random() - 0.5) * 0.5; 61 + particle.visible = true; 62 + particle.x = opts.x ?? 0; 63 + particle.y = opts.y ?? 0; 64 + particle.width = particle.height = opts.size ?? 1; 65 + particle.tint = opts.color ?? 0xffffff; 66 + particle.alpha = opts.alpha ?? 1; 67 + particle.speedX = opts.speedX ?? 0; 68 + particle.speedY = opts.speedY ?? 0; 69 + particle.age = 0; 70 + particle.maxAge = opts.maxAge ?? 1; 71 + particle.initialSize = opts.size ?? 1; 72 + 73 + this.particles.push(particle); 74 + 75 + return particle; 76 + } 77 + 78 + removeParticle(particle: ParticleSprite): void { 79 + const index = this.particles.indexOf(particle); 80 + if (index !== -1) { 81 + particle.visible = false; 82 + 83 + this.particles.splice(index, 1); 84 + this.particlePool.push(particle); 85 + } 86 + } 87 + 88 + update(deltaTime: number): void { 89 + for (let i = this.particles.length - 1; i >= 0; i--) { 90 + const particle = this.particles[i]; 91 + particle.x += particle.speedX * deltaTime; 92 + particle.y += particle.speedY * deltaTime; 93 + particle.age += deltaTime; 94 + 95 + // Shrink the particle 96 + let lifeRatio = 1 - particle.age / particle.maxAge; 97 + lifeRatio = Math.min(Math.max(lifeRatio, 0), 1); 98 + particle.width = particle.height = particle.initialSize * lifeRatio; 99 + 100 + // Remove particle if it's too old or off-screen 101 + if ( 102 + particle.age >= particle.maxAge || 103 + particle.initialSize * lifeRatio < 4 104 + ) { 105 + this.removeParticle(particle); 106 + } 107 + } 108 + } 109 + }
+175
src/routes/particles/script.ts
··· 1 + import * as PIXI from 'pixi.js'; 2 + import ParticleSystem from './particles'; 3 + 4 + (async () => { 5 + let app = new PIXI.Application(); 6 + 7 + let w = window.innerWidth, 8 + h = window.innerHeight; 9 + 10 + // set to full screen 11 + await app.init({ 12 + width: w, 13 + height: h, 14 + antialias: true, 15 + backgroundAlpha: 0 16 + }); 17 + document.body.appendChild(app.canvas); 18 + 19 + // set canvas to absolute position and full size 20 + app.canvas.style.position = 'absolute'; 21 + app.canvas.style.width = '100%'; 22 + app.canvas.style.height = '100%'; 23 + 24 + const heartParticles = new ParticleSystem('/bluesky-visualizers/particles/heart2.png'); 25 + const postParticles = new ParticleSystem('/bluesky-visualizers/particles/post.png'); 26 + const followParticles = new ParticleSystem('/bluesky-visualizers/particles/follow.png'); 27 + const userParticles = new ParticleSystem('/bluesky-visualizers/particles/user.png'); 28 + 29 + app.stage.addChild(followParticles.container); 30 + app.stage.addChild(heartParticles.container); 31 + app.stage.addChild(postParticles.container); 32 + app.stage.addChild(userParticles.container); 33 + 34 + let totalTime = 0; 35 + 36 + function spawnParticle(type: 'heart' | 'post' | 'follow' | 'user') { 37 + let particleSystem; 38 + if (type === 'heart') { 39 + particleSystem = heartParticles; 40 + } else if (type === 'post') { 41 + particleSystem = postParticles; 42 + } else if (type === 'follow') { 43 + particleSystem = followParticles; 44 + } else if (type === 'user') { 45 + particleSystem = userParticles; 46 + } 47 + let top = true; 48 + particleSystem.spawnParticle({ 49 + x: Math.random() * w, 50 + y: top ? -50 : h + 50, 51 + size: (Math.pow(Math.random(), 4) * 40 + 10) * (type === 'user' ? 1.5 : 1), 52 + maxAge: Math.random() * 10 + 4, 53 + speedY: Math.random() * 150 * (top ? 1 : -1) + 50, 54 + speedX: Math.random() * 10 - 5 55 + }); 56 + } 57 + 58 + const visible = { 59 + heart: true, 60 + post: true, 61 + follow: true, 62 + user: true 63 + }; 64 + 65 + app.ticker.add((ticker) => { 66 + // get ellapsed time 67 + const deltaTime = ticker.deltaMS * 0.001; 68 + totalTime += deltaTime; 69 + 70 + heartParticles.update(deltaTime); 71 + postParticles.update(deltaTime); 72 + followParticles.update(deltaTime); 73 + userParticles.update(deltaTime); 74 + }); 75 + 76 + window.addEventListener('resize', () => { 77 + w = window.innerWidth; 78 + h = window.innerHeight; 79 + app.renderer.resize(w, h); 80 + }); 81 + 82 + // post-button 83 + const postButton = document.getElementById('post-button'); 84 + postButton?.addEventListener('click', () => { 85 + visible.post = !visible.post; 86 + if (visible.post) { 87 + postParticles.container.visible = true; 88 + postButton.style.opacity = '1'; 89 + } else { 90 + postParticles.container.visible = false; 91 + postButton.style.opacity = '0.4'; 92 + } 93 + }); 94 + 95 + // like-button 96 + const likeButton = document.getElementById('like-button'); 97 + likeButton?.addEventListener('click', () => { 98 + visible.heart = !visible.heart; 99 + if (visible.heart) { 100 + heartParticles.container.visible = true; 101 + likeButton.style.opacity = '1'; 102 + } else { 103 + heartParticles.container.visible = false; 104 + likeButton.style.opacity = '0.4'; 105 + } 106 + }); 107 + 108 + // follow-button 109 + const followButton = document.getElementById('follow-button'); 110 + followButton?.addEventListener('click', () => { 111 + visible.follow = !visible.follow; 112 + if (visible.follow) { 113 + followParticles.container.visible = true; 114 + followButton.style.opacity = '1'; 115 + } else { 116 + followParticles.container.visible = false; 117 + followButton.style.opacity = '0.4'; 118 + } 119 + }); 120 + 121 + // user-button 122 + const userButton = document.getElementById('user-button'); 123 + userButton?.addEventListener('click', () => { 124 + visible.user = !visible.user; 125 + if (visible.user) { 126 + userParticles.container.visible = true; 127 + // set button opacity to 100% 128 + userButton.style.opacity = '1'; 129 + } else { 130 + userParticles.container.visible = false; 131 + // set button opacity to 50% 132 + userButton.style.opacity = '0.4'; 133 + } 134 + }); 135 + 136 + const url = 137 + 'wss://jetstream2.us-east.bsky.network/subscribe?wantedCollections=app.bsky.feed.post&wantedCollections=app.bsky.feed.like&wantedCollections=app.bsky.graph.follow'; 138 + 139 + // WebSocket logic 140 + const ws = new WebSocket(url); 141 + ws.onopen = () => { 142 + console.log('Connected to BlueSky WebSocket'); 143 + }; 144 + 145 + ws.onmessage = (event) => { 146 + const json = JSON.parse(event.data); 147 + if (json.kind === 'account') console.log(json); 148 + 149 + if (json.kind === 'commit') { 150 + if (json.commit.collection === 'app.bsky.feed.post' && json.commit.operation === 'create') { 151 + spawnParticle('post'); 152 + } else if ( 153 + json.commit.collection === 'app.bsky.feed.like' && 154 + json.commit.operation === 'create' 155 + ) { 156 + spawnParticle('heart'); 157 + } else if ( 158 + json.commit.collection === 'app.bsky.graph.follow' && 159 + json.commit.operation === 'create' 160 + ) { 161 + spawnParticle('follow'); 162 + } 163 + } else if (json.kind === 'account' && json.account.active) { 164 + spawnParticle('user'); 165 + } 166 + }; 167 + 168 + ws.onerror = (error) => { 169 + console.error('WebSocket error:', error); 170 + }; 171 + 172 + ws.onclose = () => { 173 + console.log('WebSocket connection closed'); 174 + }; 175 + })();
+200
src/routes/trending/+page.svelte
··· 1 + <script lang="ts"> 2 + import { onMount } from 'svelte'; 3 + import { relativeTime } from 'svelte-relative-time'; 4 + 5 + import { gsap } from 'gsap'; 6 + 7 + import { Flip } from 'gsap/Flip'; 8 + import { tick } from 'svelte'; 9 + import Credit from '$lib/Credit.svelte'; 10 + 11 + gsap.registerPlugin(Flip); 12 + 13 + let wordCounts = new Map<string, number>(); 14 + let posts = 0; 15 + 16 + let lastUpdatePostTime = 0; 17 + let lastUpdateTime = 0; 18 + 19 + let mostPopularHashtags: [string, number][] = []; 20 + 21 + let startTime = 0; 22 + 23 + onMount(() => { 24 + function secondsToMicroseconds(seconds: number) { 25 + return Math.floor(seconds * 1000000); 26 + } 27 + 28 + startTime = Date.now() * 1000 - secondsToMicroseconds(60 * 60); 29 + console.log(startTime); 30 + 31 + // WebSocket URL from BlueSky 32 + const url = 33 + 'wss://jetstream2.us-east.bsky.network/subscribe?wantedCollections=app.bsky.feed.post&cursor=' + 34 + startTime; 35 + 36 + // WebSocket logic 37 + const ws = new WebSocket(url); 38 + ws.onopen = () => { 39 + console.log('Connected to BlueSky WebSocket'); 40 + }; 41 + 42 + ws.onmessage = (event) => { 43 + const json = JSON.parse(event.data); 44 + 45 + // console.log(json); 46 + if ( 47 + json.kind === 'commit' && 48 + json.commit.collection === 'app.bsky.feed.post' && 49 + json.commit.operation === 'create' && 50 + json.commit.record.text && 51 + (!json.commit.record.langs || json.commit.record.langs.includes('en')) 52 + ) { 53 + // get text of post 54 + const text: string = json.commit.record.text; 55 + 56 + // check if text contains # 57 + if (!text.includes('#')) { 58 + // console.log(json); 59 + return; 60 + } 61 + 62 + // find all hashtags 63 + const hashtags = text.match(/#(\w+)/g); 64 + 65 + hashtags?.forEach((hashtag) => { 66 + hashtag = hashtag.toLowerCase(); 67 + wordCounts.set(hashtag, (wordCounts.get(hashtag) || 0) + 1); 68 + }); 69 + 70 + // check if we're up to date 71 + 72 + const postTime = json.time_us; 73 + if (Date.now() > lastUpdateTime + 5000 && posts > 1000) { 74 + lastUpdateTime = Date.now(); 75 + 76 + // update last update time 77 + lastUpdatePostTime = postTime; 78 + 79 + // get most popular hashtags 80 + update(); 81 + } 82 + 83 + posts++; 84 + } 85 + }; 86 + 87 + return () => { 88 + ws.close(); 89 + }; 90 + }); 91 + 92 + async function update() { 93 + const state = Flip.getState('.item', { 94 + props: 'opacity,y' 95 + }); 96 + 97 + mostPopularHashtags = getMostPopularHashtags(15); 98 + 99 + await tick(); 100 + 101 + Flip.from(state, { 102 + duration: 0.5, 103 + ease: 'power3.inOut', 104 + onEnter: (el) => { 105 + gsap.from(el, { opacity: 0, y: 20, duration: 0.5 }); 106 + }, 107 + onExit: (el: HTMLElement) => { 108 + gsap.to(el, { opacity: 0, y: -20, duration: 0.5 }); 109 + } 110 + }); 111 + } 112 + 113 + function getMostPopularHashtags(num: number) { 114 + // get num most popular hashtags with counts 115 + const mostPopular = Array.from(wordCounts.entries()) 116 + .sort((a, b) => b[1] - a[1]) 117 + .slice(0, num); 118 + return mostPopular; 119 + } 120 + </script> 121 + <div 122 + class="absolute left-0 top-0 flex w-full items-center justify-between px-4 py-2" 123 + > 124 + <Credit name="trending hashtags" /> 125 + </div> 126 + 127 + <div class="mx-auto max-w-xl px-4 py-24 text-white"> 128 + <div class="flex items-center gap-2 text-2xl font-bold"> 129 + Most Popular Hashtags on <svg 130 + fill="currentColor" 131 + xmlns="http://www.w3.org/2000/svg" 132 + viewBox="-40 -40 680 620" 133 + version="1.1" 134 + class="size-7 fill-cyan-400" 135 + > 136 + <path 137 + d="m135.72 44.03c66.496 49.921 138.02 151.14 164.28 205.46 26.262-54.316 97.782-155.54 164.28-205.46 47.98-36.021 125.72-63.892 125.72 24.795 0 17.712-10.155 148.79-16.111 170.07-20.703 73.984-96.144 92.854-163.25 81.433 117.3 19.964 147.14 86.092 82.697 152.22-122.39 125.59-175.91-31.511-189.63-71.766-2.514-7.3797-3.6904-10.832-3.7077-7.8964-0.0174-2.9357-1.1937 0.51669-3.7077 7.8964-13.714 40.255-67.233 197.36-189.63 71.766-64.444-66.128-34.605-132.26 82.697-152.22-67.108 11.421-142.55-7.4491-163.25-81.433-5.9562-21.282-16.111-152.36-16.111-170.07 0-88.687 77.742-60.816 125.72-24.795z" 138 + ></path> 139 + </svg> 140 + </div> 141 + <div class="mt-2 text-sm text-gray-400"> 142 + {#if lastUpdatePostTime > 0} 143 + of all posts between <span use:relativeTime={{ date: startTime / 1000 }}></span> and 144 + <span use:relativeTime={{ date: lastUpdatePostTime / 1000 }}></span>. analysing more... 145 + {:else} 146 + analysing posts... 147 + {/if} 148 + </div> 149 + 150 + <div class="mt-8"> 151 + {#if mostPopularHashtags.length === 0} 152 + <svg 153 + width="24" 154 + height="24" 155 + viewBox="0 0 24 24" 156 + xmlns="http://www.w3.org/2000/svg" 157 + class="mx-auto mt-16 size-16 text-cyan-400" 158 + fill="currentColor" 159 + ><style> 160 + .spinner_b2T7 { 161 + animation: spinner_xe7Q 0.8s linear infinite; 162 + } 163 + .spinner_YRVV { 164 + animation-delay: -0.65s; 165 + } 166 + .spinner_c9oY { 167 + animation-delay: -0.5s; 168 + } 169 + @keyframes spinner_xe7Q { 170 + 93.75%, 171 + 100% { 172 + r: 3px; 173 + } 174 + 46.875% { 175 + r: 0.2px; 176 + } 177 + } 178 + </style><circle class="spinner_b2T7" cx="4" cy="12" r="3" /><circle 179 + class="spinner_b2T7 spinner_YRVV" 180 + cx="12" 181 + cy="12" 182 + r="3" 183 + /><circle class="spinner_b2T7 spinner_c9oY" cx="20" cy="12" r="3" /></svg 184 + > 185 + {/if} 186 + {#each mostPopularHashtags as hashtag} 187 + <a 188 + href={'https://bsky.app/hashtag/' + hashtag[0].split('#')[1]} 189 + target="_blank" 190 + class="item group mb-2 flex w-fit items-baseline rounded-xl border border-white/10 bg-white/5 px-2 py-1 text-lg font-semibold" 191 + data-flip-id={hashtag[0]} 192 + > 193 + <span class="text-cyan-100 transition-colors duration-150 group-hover:text-cyan-400" 194 + >{hashtag[0]}</span 195 + > 196 + <span class="ml-2 text-xs text-gray-200">({hashtag[1]}x)</span> 197 + </a> 198 + {/each} 199 + </div> 200 + </div>
+347
src/routes/wordcloud/+page.svelte
··· 1 + <script lang="ts"> 2 + import { onMount } from 'svelte'; 3 + import WordCloud from './Wordcloud.svelte'; 4 + import Credit from '$lib/Credit.svelte'; 5 + 6 + let words: { text: string; count: number }[] = []; 7 + 8 + const wordCounts = new Map<string, number>(); 9 + 10 + let posts = 0; 11 + 12 + let countdown = 3; 13 + 14 + let firstCountdown = true; 15 + 16 + let width: number; 17 + let height: number; 18 + 19 + const fillerWords = new Set([ 20 + 'a', 21 + 'an', 22 + 'the', 23 + 'and', 24 + 'or', 25 + 'but', 26 + 'if', 27 + 'then', 28 + 'so', 29 + 'because', 30 + 'as', 31 + 'of', 32 + 'at', 33 + 'by', 34 + 'for', 35 + 'with', 36 + 'about', 37 + 'against', 38 + 'between', 39 + 'into', 40 + 'through', 41 + 'during', 42 + 'before', 43 + 'after', 44 + 'above', 45 + 'below', 46 + 'to', 47 + 'from', 48 + 'up', 49 + 'down', 50 + 'in', 51 + 'out', 52 + 'on', 53 + 'off', 54 + 'over', 55 + 'under', 56 + 'again', 57 + 'further', 58 + 'then', 59 + 'once', 60 + 'here', 61 + 'there', 62 + 'when', 63 + 'where', 64 + 'why', 65 + 'how', 66 + 'all', 67 + 'any', 68 + 'both', 69 + 'each', 70 + 'few', 71 + 'more', 72 + 'most', 73 + 'other', 74 + 'some', 75 + 'such', 76 + 'no', 77 + 'nor', 78 + 'not', 79 + 'only', 80 + 'own', 81 + 'same', 82 + 'so', 83 + 'than', 84 + 'too', 85 + 'very', 86 + 's', 87 + 't', 88 + 'can', 89 + 'will', 90 + 'just', 91 + 'don', 92 + 'should', 93 + 'now', 94 + 'i', 95 + 'me', 96 + 'my', 97 + 'myself', 98 + 'we', 99 + 'our', 100 + 'ours', 101 + 'ourselves', 102 + 'you', 103 + 'your', 104 + 'yours', 105 + 'yourself', 106 + 'yourselves', 107 + 'he', 108 + 'him', 109 + 'his', 110 + 'himself', 111 + 'she', 112 + 'her', 113 + 'hers', 114 + 'herself', 115 + 'it', 116 + 'its', 117 + 'itself', 118 + 'they', 119 + 'them', 120 + 'their', 121 + 'theirs', 122 + 'themselves', 123 + 'what', 124 + 'which', 125 + 'who', 126 + 'whom', 127 + 'this', 128 + 'that', 129 + 'these', 130 + 'those', 131 + 'am', 132 + 'is', 133 + 'are', 134 + 'was', 135 + 'were', 136 + 'be', 137 + 'been', 138 + 'being', 139 + 'have', 140 + 'has', 141 + 'had', 142 + 'having', 143 + 'do', 144 + 'does', 145 + 'did', 146 + 'doing', 147 + 'a', 148 + 'an', 149 + 'the', 150 + 'and', 151 + 'or', 152 + 'but', 153 + 'if', 154 + 'then', 155 + 'else', 156 + 'because', 157 + 'as', 158 + 'of', 159 + 'at', 160 + 'by', 161 + 'for', 162 + 'with', 163 + 'about', 164 + 'against', 165 + 'between', 166 + 'into', 167 + 'through', 168 + 'during', 169 + 'before', 170 + 'after', 171 + 'above', 172 + 'below', 173 + 'to', 174 + 'from', 175 + 'up', 176 + 'down', 177 + 'in', 178 + 'out', 179 + 'on', 180 + 'off', 181 + 'over', 182 + 'under', 183 + 'again', 184 + 'further', 185 + 'then', 186 + 'once', 187 + 'here', 188 + 'there', 189 + 'when', 190 + 'where', 191 + 'why', 192 + 'how', 193 + 'all', 194 + 'any', 195 + 'both', 196 + 'each', 197 + 'few', 198 + 'more', 199 + 'most', 200 + 'other', 201 + 'some', 202 + 'such', 203 + 'no', 204 + 'nor', 205 + 'not', 206 + 'only', 207 + 'own', 208 + 'same', 209 + 'so', 210 + 'than', 211 + 'too', 212 + 'very', 213 + 's', 214 + 't', 215 + 'can', 216 + 'will', 217 + 'just', 218 + 'don', 219 + 'should', 220 + 'now' 221 + ]); 222 + 223 + onMount(() => { 224 + function updateDimensions() { 225 + width = window.innerWidth; 226 + height = window.innerHeight; 227 + } 228 + 229 + updateDimensions(); 230 + 231 + setTimeout(() => { 232 + updateWords(); 233 + setInterval(updateWords, 10000); 234 + }, 3000); 235 + 236 + let countdownInterval = setInterval(() => { 237 + countdown--; 238 + 239 + if (countdown === 0) { 240 + firstCountdown = false; 241 + countdown = 10; 242 + } 243 + }, 1000); 244 + 245 + window.addEventListener('resize', updateDimensions); 246 + 247 + function secondsToMicroseconds(seconds: number) { 248 + return Math.floor(seconds * 1000000); 249 + } 250 + 251 + const startTime = Date.now() * 1000 - secondsToMicroseconds(10); 252 + console.log(startTime); 253 + 254 + // WebSocket URL from BlueSky 255 + const url = 256 + 'wss://jetstream2.us-east.bsky.network/subscribe?wantedCollections=app.bsky.feed.post&cursor=' + 257 + startTime; 258 + 259 + // WebSocket logic 260 + const ws = new WebSocket(url); 261 + ws.onopen = () => { 262 + console.log('Connected to BlueSky WebSocket'); 263 + }; 264 + 265 + ws.onmessage = (event) => { 266 + const json = JSON.parse(event.data); 267 + 268 + if ( 269 + json.kind === 'commit' && 270 + json.commit.collection === 'app.bsky.feed.post' && 271 + json.commit.operation === 'create' && 272 + json.commit.record.text && 273 + (!json.commit.record.langs || json.commit.record.langs.includes('en')) 274 + ) { 275 + // get text of post 276 + const text: string = json.commit.record.text; 277 + 278 + // split text into words (split by whitespace, newlines, punctuation) 279 + const words = text.split(/[\s\n\.,!?;]+/); 280 + 281 + words.forEach((word) => { 282 + // skip words that are empty or not alphanumeric 283 + if (!word || !word.match(/^[a-zA-Z]+$/) || fillerWords.has(word.toLowerCase())) { 284 + return; 285 + } 286 + // turn to lowercase 287 + word = word.toLowerCase(); 288 + 289 + wordCounts.set(word, (wordCounts.get(word) || 0) + 1); 290 + }); 291 + 292 + posts++; 293 + } 294 + }; 295 + 296 + return () => { 297 + ws.close(); 298 + window.removeEventListener('resize', updateDimensions); 299 + 300 + clearInterval(countdownInterval); 301 + }; 302 + }); 303 + 304 + function updateWords() { 305 + // get 200 most common words 306 + const mostCommonWords = Array.from(wordCounts.entries()) 307 + .sort((a, b) => b[1] - a[1]) 308 + .slice(0, 200); 309 + 310 + words = mostCommonWords.map(([text, count]) => ({ text, count })); 311 + 312 + // clear wordCounts 313 + wordCounts.clear(); 314 + } 315 + </script> 316 + 317 + <div class="flex h-screen w-screen items-center justify-center overflow-hidden"> 318 + {#if width && height} 319 + <WordCloud {words} {width} {height} backgroundColor={"#030712"} /> 320 + {/if} 321 + </div> 322 + 323 + {#if countdown > 0 && firstCountdown} 324 + <div class="absolute inset-0 flex h-full w-full items-center justify-center text-8xl font-bold text-gray-50"> 325 + {countdown} 326 + </div> 327 + {/if} 328 + 329 + <div 330 + class="absolute bottom-0 left-0 right-0 flex w-full justify-center bg-gray-950 text-gray-50 px-4 py-2 text-sm font-semibold backdrop-blur-sm" 331 + > 332 + <div> 333 + {#if countdown > 0 && firstCountdown} 334 + collecting posts and counting words... 335 + {:else} 336 + showing most common words of the last 10 seconds excluding filler words, update in {countdown}... 337 + {/if} 338 + </div> 339 + </div> 340 + 341 + <Credit name="wordcloud" /> 342 + 343 + <style> 344 + div { 345 + overflow: hidden; 346 + } 347 + </style>
+125
src/routes/wordcloud/Wordcloud.svelte
··· 1 + <script> 2 + // adopted from https://github.com/maziyank/svelte-d3-cloud 3 + import { createEventDispatcher } from 'svelte'; 4 + import cloud from 'd3-cloud'; 5 + import { select } from 'd3-selection'; 6 + import { scaleOrdinal } from 'd3-scale'; 7 + import { schemeTableau10 } from 'd3-scale-chromatic'; 8 + import { transition } from 'd3-transition'; 9 + 10 + // Event dispatcher 11 + const dispatch = createEventDispatcher(); 12 + 13 + // Props 14 + export let words = []; 15 + export let width = 800; 16 + export let height = 500; 17 + export let font = 'Impact'; 18 + export let maxFontSize = 70; 19 + export let minFontSize = 20; 20 + export let minRotate = -10; 21 + export let maxRotate = -10; 22 + export let scheme = schemeTableau10; 23 + export let padding = 5; 24 + export let backgroundColor = '#fff'; 25 + 26 + // Reactive fill scale 27 + $: fill = scaleOrdinal(scheme); 28 + 29 + // Event handlers 30 + const onWordClick = (d) => dispatch('click', d); 31 + const onWordMouseOver = (d) => dispatch('mouseover', d); 32 + const onWordMouseOut = (d) => dispatch('mouseout', d); 33 + const onWordMouseMove = (d) => dispatch('mousemove', d); 34 + 35 + // Watch for changes in words and update the cloud 36 + $: if (words || width || height) { 37 + updateCloud(); 38 + } 39 + 40 + function updateCloud() { 41 + if (!words || words.length === 0) { 42 + // Clear the word cloud if words are empty 43 + select('#wordcloud').select('svg').remove(); 44 + return; 45 + } 46 + 47 + const maxWordCount = Math.max(...words.map((d) => d.count)); 48 + 49 + const layout = cloud() 50 + .size([width, height]) 51 + .words(words.map((d) => Object.assign({}, d))) // Clone words to prevent mutation 52 + .padding(padding) 53 + .rotate(() => ~~(Math.random() * (maxRotate - minRotate + 1)) + minRotate) 54 + .font(font) 55 + .fontSize((d) => Math.max(minFontSize, Math.floor((d.count / maxWordCount) * maxFontSize))) 56 + .on('end', draw); 57 + 58 + layout.start(); 59 + } 60 + 61 + function draw(words) { 62 + console.log('Drawing words', words.length); 63 + let svg = select('#wordcloud').select('svg'); 64 + 65 + if (svg.empty()) { 66 + svg = select('#wordcloud') 67 + .append('svg') 68 + .attr('width', width) 69 + .attr('height', height) 70 + .style('background-color', backgroundColor); 71 + 72 + svg.append('g').attr('transform', 'translate(' + width / 2 + ',' + height / 2 + ')'); 73 + } else { 74 + svg.attr('width', width).attr('height', height).style('background-color', backgroundColor); 75 + } 76 + 77 + const g = svg.select('g').attr('transform', 'translate(' + width / 2 + ',' + height / 2 + ')'); 78 + 79 + const text = g.selectAll('text').data(words, (d) => d.text); 80 + 81 + // EXIT 82 + text.exit().transition().duration(1000).style('opacity', 0).remove(); 83 + 84 + // UPDATE 85 + text 86 + .transition() 87 + .duration(1000) 88 + .attr('transform', (d) => 'translate(' + [d.x, d.y] + ')rotate(' + d.rotate + ')') 89 + .style('font-size', (d) => d.size + 'px'); 90 + 91 + // ENTER 92 + const textEnter = text 93 + .enter() 94 + .append('text') 95 + .attr('text-anchor', 'middle') 96 + .attr('transform', (d) => 'translate(' + [d.x, d.y] + ')rotate(' + d.rotate + ')') 97 + .style('font-size', '1px') 98 + .style('font-family', font) 99 + .style('fill', (_d, i) => fill(i)) 100 + .text((d) => d.text) 101 + .on('click', onWordClick) 102 + .on('mouseover', onWordMouseOver) 103 + .on('mouseout', onWordMouseOut) 104 + .on('mousemove', onWordMouseMove); 105 + 106 + textEnter 107 + .transition() 108 + .duration(1000) 109 + .style('font-size', (d) => d.size + 'px'); 110 + 111 + // set svg to absolute position, top left 112 + svg.style('position', 'absolute'); 113 + svg.style('top', '0'); 114 + svg.style('left', '0'); 115 + } 116 + </script> 117 + 118 + <div id="wordcloud"></div> 119 + 120 + <style> 121 + div#wordcloud { 122 + width: fit-content; 123 + height: fit-content; 124 + } 125 + </style>
static/favicon.png

This is a binary file and will not be displayed.

static/particles.webp

This is a binary file and will not be displayed.

static/particles/follow.png

This is a binary file and will not be displayed.

static/particles/follow2.png

This is a binary file and will not be displayed.

static/particles/heart.png

This is a binary file and will not be displayed.

static/particles/heart2.png

This is a binary file and will not be displayed.

static/particles/post.png

This is a binary file and will not be displayed.

static/particles/post2.png

This is a binary file and will not be displayed.

static/particles/user.png

This is a binary file and will not be displayed.

static/particles/user2.png

This is a binary file and will not be displayed.

static/trending.webp

This is a binary file and will not be displayed.

static/wordcloud.webp

This is a binary file and will not be displayed.

+21
svelte.config.js
··· 1 + import adapter from '@sveltejs/adapter-static'; 2 + import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; 3 + 4 + /** @type {import('@sveltejs/kit').Config} */ 5 + const config = { 6 + // Consult https://svelte.dev/docs/kit/integrations 7 + // for more information about preprocessors 8 + preprocess: vitePreprocess(), 9 + 10 + kit: { 11 + // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list. 12 + // If your environment is not supported, or you settled on a specific environment, switch out the adapter. 13 + // See https://svelte.dev/docs/kit/adapters for more information about adapters. 14 + adapter: adapter(), 15 + paths: { 16 + base: '/bluesky-visualizers' 17 + } 18 + } 19 + }; 20 + 21 + export default config;
+13
tailwind.config.ts
··· 1 + import forms from '@tailwindcss/forms'; 2 + import typography from '@tailwindcss/typography'; 3 + import type { Config } from 'tailwindcss'; 4 + 5 + export default { 6 + content: ['./src/**/*.{html,js,svelte,ts}'], 7 + 8 + theme: { 9 + extend: {} 10 + }, 11 + 12 + plugins: [typography, forms] 13 + } satisfies Config;
+19
tsconfig.json
··· 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 + } 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 + // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes 18 + // from the referenced tsconfig.json - TypeScript does not merge them in 19 + }
+9
vite.config.ts
··· 1 + import { sveltekit } from '@sveltejs/kit/vite'; 2 + import { defineConfig } from 'vite'; 3 + 4 + export default defineConfig({ 5 + plugins: [sveltekit()], 6 + ssr: { 7 + noExternal: ['gsap'] 8 + } 9 + });