├── .eslintignore ├── .eslintrc.cjs ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── postcss.config.js ├── src ├── app.css ├── app.d.ts ├── app.html ├── lib │ ├── Demo │ │ ├── Demo.svelte │ │ ├── Grid.svelte │ │ ├── Hero.svelte │ │ └── Quote.svelte │ └── Depth3D │ │ ├── Depth3D.svelte │ │ ├── Scene3D.svelte │ │ └── index.ts └── routes │ ├── +layout.svelte │ ├── +layout.ts │ └── +page.svelte ├── static └── images │ ├── albert_einstein-depth.png │ ├── albert_einstein.png │ ├── girl-depth.png │ ├── girl.jpg │ ├── mona-lisa-depth.png │ ├── mona-lisa.jpg │ ├── napoleon-crossing-the-alps-depth.png │ ├── napoleon-crossing-the-alps.jpg │ ├── van-gogh-self-portrait-depth.png │ └── van-gogh-self-portrait.webp ├── svelte.config.js ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | 10 | # Ignore files for PNPM, NPM and YARN 11 | pnpm-lock.yaml 12 | package-lock.json 13 | yarn.lock 14 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | /** @type { import("eslint").Linter.Config } */ 2 | module.exports = { 3 | root: true, 4 | extends: [ 5 | 'eslint:recommended', 6 | 'plugin:@typescript-eslint/recommended', 7 | 'plugin:svelte/recommended', 8 | 'prettier' 9 | ], 10 | parser: '@typescript-eslint/parser', 11 | plugins: ['@typescript-eslint'], 12 | parserOptions: { 13 | sourceType: 'module', 14 | ecmaVersion: 2020, 15 | extraFileExtensions: ['.svelte'] 16 | }, 17 | env: { 18 | browser: true, 19 | es2017: true, 20 | node: true 21 | }, 22 | overrides: [ 23 | { 24 | files: ['*.svelte'], 25 | parser: 'svelte-eslint-parser', 26 | parserOptions: { 27 | parser: '@typescript-eslint/parser' 28 | } 29 | } 30 | ] 31 | }; 32 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- 1 | name: Deploy to GitHub Pages 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | 8 | jobs: 9 | build_site: 10 | runs-on: ubuntu-latest 11 | 12 | environment: 13 | name: github-pages 14 | url: ${{ steps.deployment.outputs.page_url }} 15 | 16 | steps: 17 | - name: Checkout 18 | uses: actions/checkout@v3 19 | 20 | - name: Install Node.js 21 | uses: actions/setup-node@v3 22 | with: 23 | node-version: 18 24 | cache: npm 25 | 26 | - name: Install dependencies 27 | run: npm install 28 | 29 | - name: build 30 | env: 31 | BASE_PATH: '/${{ github.event.repository.name }}' 32 | run: | 33 | npm run build 34 | 35 | - name: Deploy 🚀 36 | uses: peaceiris/actions-gh-pages@v3 # This action will handle the deployment to gh-pages 37 | with: 38 | github_token: ${{ secrets.GITHUB_TOKEN }} 39 | publish_dir: ./build 40 | publish_branch: gh-pages 41 | user_name: "github-actions[bot]" 42 | user_email: "github-actions[bot]@users.noreply.github.com" 43 | commit_message: "Deploy to GitHub Pages" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | vite.config.js.timestamp-* 10 | vite.config.ts.timestamp-* 11 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore files for PNPM, NPM and YARN 2 | pnpm-lock.yaml 3 | package-lock.json 4 | yarn.lock 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true, 3 | "singleQuote": true, 4 | "trailingComma": "none", 5 | "printWidth": 100, 6 | "plugins": ["prettier-plugin-svelte"], 7 | "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] 8 | } 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License Copyright (c) 2024 flo-bit 2 | 3 | Permission is hereby granted, free of 4 | charge, to any person obtaining a copy of this software and associated 5 | documentation files (the "Software"), to deal in the Software without 6 | restriction, including without limitation the rights to use, copy, modify, merge, 7 | publish, distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to the 9 | following conditions: 10 | 11 | The above copyright notice and this permission notice 12 | (including the next paragraph) shall be included in all copies or substantial 13 | portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF 16 | ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO 18 | EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 19 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # svelte depth 3d component 2 | 3 | Display an image with a fake 3D effect, using a depth map. Made for svelte, using threlte, threejs and tailwindcss. Still a work in progress, but usable. 4 | 5 | [Try the demo here.](https://flo-bit.github.io/svelte-depth-3d-component/) 6 | 7 | 8 | 9 | https://github.com/user-attachments/assets/74b05fd6-feef-49da-9b38-523b65bf5da8 10 | 11 | 12 | 13 | ## How to use 14 | 15 | 1. Copy and paste the [`src/lib/Depth3D/`](https://download-directory.github.io/?url=https%3A%2F%2Fgithub.com%2Fflo-bit%2Fsvelte-depth-3d-component%2Ftree%2Fmain%2Fsrc%2Flib%2FDepth3D) folder of this repository into your svelte projects `src/lib/` folder. 16 | 2. Install [tailwindcss](https://tailwindcss.com/docs/guides/sveltekit) and [threlte (core and extras)](https://threlte.xyz/docs/learn/getting-started/installation) (work through their setup or see below for commands) 17 | 3. Get an image and generate a accompanying depth map, for example using [zoedepth](https://replicate.com/cjwbw/zoedepth) 18 | 4. Use the `Depth3D` component in your pages directly like so: 19 | 20 | ```svelte 21 | 25 | 26 | 27 | 33 | ``` 34 | 35 | ## Which images work well 36 | 37 | This effect only simulates 3D, so some images will show weird artifacts. Portraits with a single person in the middle tend to work well. The effect will also depend on the quality of the depth map. Some trial and error might be necessary to get the desired effect. 38 | 39 | ## Installing the dependencies 40 | 41 | ### TailwindCSS (assuming you created your svelte app with the svelte create command) 42 | 43 | 1. Install 44 | ```bash 45 | npm install -D tailwindcss postcss autoprefixer 46 | npx tailwindcss init -p 47 | ``` 48 | 2. Update your tailwind.config.js file to find files with tailwind classes: 49 | ```js 50 | content: ['./src/**/*.{html,js,svelte,ts}'], 51 | ``` 52 | 3. Create a app.css file in your src folder. 53 | ```css 54 | @tailwind base; 55 | @tailwind components; 56 | @tailwind utilities; 57 | ``` 58 | 4. Import the css file in your +layout.svelte file 59 | ```svelte 60 | 63 | 64 | 65 | ``` 66 | 67 | ### Threlte (core and extras) 68 | 69 | 1. Install 70 | ```bash 71 | npm install three @threlte/core \ 72 | @threlte/extras \ 73 | @types/three 74 | ``` 75 | 76 | ## License 77 | 78 | MIT -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "svelte-depth-3d-component", 3 | "version": "0.0.1", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "svelte-depth-3d-component", 9 | "version": "0.0.1", 10 | "dependencies": { 11 | "@sveltejs/adapter-static": "^3.0.1", 12 | "@tailwindcss/aspect-ratio": "^0.4.2", 13 | "@threlte/core": "^7.3.0", 14 | "@threlte/extras": "^8.11.2", 15 | "@types/three": "^0.164.0", 16 | "three": "^0.164.1", 17 | "vite-imagetools": "^7.0.2" 18 | }, 19 | "devDependencies": { 20 | "@sveltejs/adapter-auto": "^3.0.0", 21 | "@sveltejs/kit": "^2.0.0", 22 | "@sveltejs/vite-plugin-svelte": "^3.0.0", 23 | "@types/eslint": "^8.56.0", 24 | "@typescript-eslint/eslint-plugin": "^7.0.0", 25 | "@typescript-eslint/parser": "^7.0.0", 26 | "autoprefixer": "^10.4.19", 27 | "eslint": "^8.56.0", 28 | "eslint-config-prettier": "^9.1.0", 29 | "eslint-plugin-svelte": "^2.35.1", 30 | "postcss": "^8.4.38", 31 | "prettier": "^3.1.1", 32 | "prettier-plugin-svelte": "^3.1.2", 33 | "svelte": "^4.2.7", 34 | "svelte-check": "^3.6.0", 35 | "tailwindcss": "^3.4.3", 36 | "tslib": "^2.4.1", 37 | "typescript": "^5.0.0", 38 | "vite": "^5.0.3" 39 | } 40 | }, 41 | "node_modules/@alloc/quick-lru": { 42 | "version": "5.2.0", 43 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 44 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 45 | "engines": { 46 | "node": ">=10" 47 | }, 48 | "funding": { 49 | "url": "https://github.com/sponsors/sindresorhus" 50 | } 51 | }, 52 | "node_modules/@ampproject/remapping": { 53 | "version": "2.3.0", 54 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 55 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 56 | "dependencies": { 57 | "@jridgewell/gen-mapping": "^0.3.5", 58 | "@jridgewell/trace-mapping": "^0.3.24" 59 | }, 60 | "engines": { 61 | "node": ">=6.0.0" 62 | } 63 | }, 64 | "node_modules/@emnapi/runtime": { 65 | "version": "1.2.0", 66 | "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.2.0.tgz", 67 | "integrity": "sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==", 68 | "optional": true, 69 | "dependencies": { 70 | "tslib": "^2.4.0" 71 | } 72 | }, 73 | "node_modules/@esbuild/aix-ppc64": { 74 | "version": "0.20.2", 75 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", 76 | "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", 77 | "cpu": [ 78 | "ppc64" 79 | ], 80 | "optional": true, 81 | "os": [ 82 | "aix" 83 | ], 84 | "engines": { 85 | "node": ">=12" 86 | } 87 | }, 88 | "node_modules/@esbuild/android-arm": { 89 | "version": "0.20.2", 90 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", 91 | "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", 92 | "cpu": [ 93 | "arm" 94 | ], 95 | "optional": true, 96 | "os": [ 97 | "android" 98 | ], 99 | "engines": { 100 | "node": ">=12" 101 | } 102 | }, 103 | "node_modules/@esbuild/android-arm64": { 104 | "version": "0.20.2", 105 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", 106 | "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", 107 | "cpu": [ 108 | "arm64" 109 | ], 110 | "optional": true, 111 | "os": [ 112 | "android" 113 | ], 114 | "engines": { 115 | "node": ">=12" 116 | } 117 | }, 118 | "node_modules/@esbuild/android-x64": { 119 | "version": "0.20.2", 120 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", 121 | "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", 122 | "cpu": [ 123 | "x64" 124 | ], 125 | "optional": true, 126 | "os": [ 127 | "android" 128 | ], 129 | "engines": { 130 | "node": ">=12" 131 | } 132 | }, 133 | "node_modules/@esbuild/darwin-arm64": { 134 | "version": "0.20.2", 135 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", 136 | "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", 137 | "cpu": [ 138 | "arm64" 139 | ], 140 | "optional": true, 141 | "os": [ 142 | "darwin" 143 | ], 144 | "engines": { 145 | "node": ">=12" 146 | } 147 | }, 148 | "node_modules/@esbuild/darwin-x64": { 149 | "version": "0.20.2", 150 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", 151 | "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", 152 | "cpu": [ 153 | "x64" 154 | ], 155 | "optional": true, 156 | "os": [ 157 | "darwin" 158 | ], 159 | "engines": { 160 | "node": ">=12" 161 | } 162 | }, 163 | "node_modules/@esbuild/freebsd-arm64": { 164 | "version": "0.20.2", 165 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", 166 | "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", 167 | "cpu": [ 168 | "arm64" 169 | ], 170 | "optional": true, 171 | "os": [ 172 | "freebsd" 173 | ], 174 | "engines": { 175 | "node": ">=12" 176 | } 177 | }, 178 | "node_modules/@esbuild/freebsd-x64": { 179 | "version": "0.20.2", 180 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", 181 | "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", 182 | "cpu": [ 183 | "x64" 184 | ], 185 | "optional": true, 186 | "os": [ 187 | "freebsd" 188 | ], 189 | "engines": { 190 | "node": ">=12" 191 | } 192 | }, 193 | "node_modules/@esbuild/linux-arm": { 194 | "version": "0.20.2", 195 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", 196 | "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", 197 | "cpu": [ 198 | "arm" 199 | ], 200 | "optional": true, 201 | "os": [ 202 | "linux" 203 | ], 204 | "engines": { 205 | "node": ">=12" 206 | } 207 | }, 208 | "node_modules/@esbuild/linux-arm64": { 209 | "version": "0.20.2", 210 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", 211 | "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", 212 | "cpu": [ 213 | "arm64" 214 | ], 215 | "optional": true, 216 | "os": [ 217 | "linux" 218 | ], 219 | "engines": { 220 | "node": ">=12" 221 | } 222 | }, 223 | "node_modules/@esbuild/linux-ia32": { 224 | "version": "0.20.2", 225 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", 226 | "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", 227 | "cpu": [ 228 | "ia32" 229 | ], 230 | "optional": true, 231 | "os": [ 232 | "linux" 233 | ], 234 | "engines": { 235 | "node": ">=12" 236 | } 237 | }, 238 | "node_modules/@esbuild/linux-loong64": { 239 | "version": "0.20.2", 240 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", 241 | "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", 242 | "cpu": [ 243 | "loong64" 244 | ], 245 | "optional": true, 246 | "os": [ 247 | "linux" 248 | ], 249 | "engines": { 250 | "node": ">=12" 251 | } 252 | }, 253 | "node_modules/@esbuild/linux-mips64el": { 254 | "version": "0.20.2", 255 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", 256 | "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", 257 | "cpu": [ 258 | "mips64el" 259 | ], 260 | "optional": true, 261 | "os": [ 262 | "linux" 263 | ], 264 | "engines": { 265 | "node": ">=12" 266 | } 267 | }, 268 | "node_modules/@esbuild/linux-ppc64": { 269 | "version": "0.20.2", 270 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", 271 | "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", 272 | "cpu": [ 273 | "ppc64" 274 | ], 275 | "optional": true, 276 | "os": [ 277 | "linux" 278 | ], 279 | "engines": { 280 | "node": ">=12" 281 | } 282 | }, 283 | "node_modules/@esbuild/linux-riscv64": { 284 | "version": "0.20.2", 285 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", 286 | "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", 287 | "cpu": [ 288 | "riscv64" 289 | ], 290 | "optional": true, 291 | "os": [ 292 | "linux" 293 | ], 294 | "engines": { 295 | "node": ">=12" 296 | } 297 | }, 298 | "node_modules/@esbuild/linux-s390x": { 299 | "version": "0.20.2", 300 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", 301 | "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", 302 | "cpu": [ 303 | "s390x" 304 | ], 305 | "optional": true, 306 | "os": [ 307 | "linux" 308 | ], 309 | "engines": { 310 | "node": ">=12" 311 | } 312 | }, 313 | "node_modules/@esbuild/linux-x64": { 314 | "version": "0.20.2", 315 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", 316 | "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", 317 | "cpu": [ 318 | "x64" 319 | ], 320 | "optional": true, 321 | "os": [ 322 | "linux" 323 | ], 324 | "engines": { 325 | "node": ">=12" 326 | } 327 | }, 328 | "node_modules/@esbuild/netbsd-x64": { 329 | "version": "0.20.2", 330 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", 331 | "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", 332 | "cpu": [ 333 | "x64" 334 | ], 335 | "optional": true, 336 | "os": [ 337 | "netbsd" 338 | ], 339 | "engines": { 340 | "node": ">=12" 341 | } 342 | }, 343 | "node_modules/@esbuild/openbsd-x64": { 344 | "version": "0.20.2", 345 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", 346 | "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", 347 | "cpu": [ 348 | "x64" 349 | ], 350 | "optional": true, 351 | "os": [ 352 | "openbsd" 353 | ], 354 | "engines": { 355 | "node": ">=12" 356 | } 357 | }, 358 | "node_modules/@esbuild/sunos-x64": { 359 | "version": "0.20.2", 360 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", 361 | "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", 362 | "cpu": [ 363 | "x64" 364 | ], 365 | "optional": true, 366 | "os": [ 367 | "sunos" 368 | ], 369 | "engines": { 370 | "node": ">=12" 371 | } 372 | }, 373 | "node_modules/@esbuild/win32-arm64": { 374 | "version": "0.20.2", 375 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", 376 | "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", 377 | "cpu": [ 378 | "arm64" 379 | ], 380 | "optional": true, 381 | "os": [ 382 | "win32" 383 | ], 384 | "engines": { 385 | "node": ">=12" 386 | } 387 | }, 388 | "node_modules/@esbuild/win32-ia32": { 389 | "version": "0.20.2", 390 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", 391 | "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", 392 | "cpu": [ 393 | "ia32" 394 | ], 395 | "optional": true, 396 | "os": [ 397 | "win32" 398 | ], 399 | "engines": { 400 | "node": ">=12" 401 | } 402 | }, 403 | "node_modules/@esbuild/win32-x64": { 404 | "version": "0.20.2", 405 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", 406 | "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", 407 | "cpu": [ 408 | "x64" 409 | ], 410 | "optional": true, 411 | "os": [ 412 | "win32" 413 | ], 414 | "engines": { 415 | "node": ">=12" 416 | } 417 | }, 418 | "node_modules/@eslint-community/eslint-utils": { 419 | "version": "4.4.0", 420 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 421 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 422 | "dev": true, 423 | "dependencies": { 424 | "eslint-visitor-keys": "^3.3.0" 425 | }, 426 | "engines": { 427 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 428 | }, 429 | "peerDependencies": { 430 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 431 | } 432 | }, 433 | "node_modules/@eslint-community/regexpp": { 434 | "version": "4.10.0", 435 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", 436 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", 437 | "dev": true, 438 | "engines": { 439 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 440 | } 441 | }, 442 | "node_modules/@eslint/eslintrc": { 443 | "version": "2.1.4", 444 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 445 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 446 | "dev": true, 447 | "dependencies": { 448 | "ajv": "^6.12.4", 449 | "debug": "^4.3.2", 450 | "espree": "^9.6.0", 451 | "globals": "^13.19.0", 452 | "ignore": "^5.2.0", 453 | "import-fresh": "^3.2.1", 454 | "js-yaml": "^4.1.0", 455 | "minimatch": "^3.1.2", 456 | "strip-json-comments": "^3.1.1" 457 | }, 458 | "engines": { 459 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 460 | }, 461 | "funding": { 462 | "url": "https://opencollective.com/eslint" 463 | } 464 | }, 465 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { 466 | "version": "1.1.11", 467 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 468 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 469 | "dev": true, 470 | "dependencies": { 471 | "balanced-match": "^1.0.0", 472 | "concat-map": "0.0.1" 473 | } 474 | }, 475 | "node_modules/@eslint/eslintrc/node_modules/minimatch": { 476 | "version": "3.1.2", 477 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 478 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 479 | "dev": true, 480 | "dependencies": { 481 | "brace-expansion": "^1.1.7" 482 | }, 483 | "engines": { 484 | "node": "*" 485 | } 486 | }, 487 | "node_modules/@eslint/js": { 488 | "version": "8.57.0", 489 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", 490 | "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", 491 | "dev": true, 492 | "engines": { 493 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 494 | } 495 | }, 496 | "node_modules/@humanwhocodes/config-array": { 497 | "version": "0.11.14", 498 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", 499 | "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", 500 | "dev": true, 501 | "dependencies": { 502 | "@humanwhocodes/object-schema": "^2.0.2", 503 | "debug": "^4.3.1", 504 | "minimatch": "^3.0.5" 505 | }, 506 | "engines": { 507 | "node": ">=10.10.0" 508 | } 509 | }, 510 | "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { 511 | "version": "1.1.11", 512 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 513 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 514 | "dev": true, 515 | "dependencies": { 516 | "balanced-match": "^1.0.0", 517 | "concat-map": "0.0.1" 518 | } 519 | }, 520 | "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { 521 | "version": "3.1.2", 522 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 523 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 524 | "dev": true, 525 | "dependencies": { 526 | "brace-expansion": "^1.1.7" 527 | }, 528 | "engines": { 529 | "node": "*" 530 | } 531 | }, 532 | "node_modules/@humanwhocodes/module-importer": { 533 | "version": "1.0.1", 534 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 535 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 536 | "dev": true, 537 | "engines": { 538 | "node": ">=12.22" 539 | }, 540 | "funding": { 541 | "type": "github", 542 | "url": "https://github.com/sponsors/nzakas" 543 | } 544 | }, 545 | "node_modules/@humanwhocodes/object-schema": { 546 | "version": "2.0.3", 547 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 548 | "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 549 | "dev": true 550 | }, 551 | "node_modules/@img/sharp-darwin-arm64": { 552 | "version": "0.33.4", 553 | "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.4.tgz", 554 | "integrity": "sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==", 555 | "cpu": [ 556 | "arm64" 557 | ], 558 | "optional": true, 559 | "os": [ 560 | "darwin" 561 | ], 562 | "engines": { 563 | "glibc": ">=2.26", 564 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 565 | "npm": ">=9.6.5", 566 | "pnpm": ">=7.1.0", 567 | "yarn": ">=3.2.0" 568 | }, 569 | "funding": { 570 | "url": "https://opencollective.com/libvips" 571 | }, 572 | "optionalDependencies": { 573 | "@img/sharp-libvips-darwin-arm64": "1.0.2" 574 | } 575 | }, 576 | "node_modules/@img/sharp-darwin-x64": { 577 | "version": "0.33.4", 578 | "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.4.tgz", 579 | "integrity": "sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==", 580 | "cpu": [ 581 | "x64" 582 | ], 583 | "optional": true, 584 | "os": [ 585 | "darwin" 586 | ], 587 | "engines": { 588 | "glibc": ">=2.26", 589 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 590 | "npm": ">=9.6.5", 591 | "pnpm": ">=7.1.0", 592 | "yarn": ">=3.2.0" 593 | }, 594 | "funding": { 595 | "url": "https://opencollective.com/libvips" 596 | }, 597 | "optionalDependencies": { 598 | "@img/sharp-libvips-darwin-x64": "1.0.2" 599 | } 600 | }, 601 | "node_modules/@img/sharp-libvips-darwin-arm64": { 602 | "version": "1.0.2", 603 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.2.tgz", 604 | "integrity": "sha512-tcK/41Rq8IKlSaKRCCAuuY3lDJjQnYIW1UXU1kxcEKrfL8WR7N6+rzNoOxoQRJWTAECuKwgAHnPvqXGN8XfkHA==", 605 | "cpu": [ 606 | "arm64" 607 | ], 608 | "optional": true, 609 | "os": [ 610 | "darwin" 611 | ], 612 | "engines": { 613 | "macos": ">=11", 614 | "npm": ">=9.6.5", 615 | "pnpm": ">=7.1.0", 616 | "yarn": ">=3.2.0" 617 | }, 618 | "funding": { 619 | "url": "https://opencollective.com/libvips" 620 | } 621 | }, 622 | "node_modules/@img/sharp-libvips-darwin-x64": { 623 | "version": "1.0.2", 624 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.2.tgz", 625 | "integrity": "sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==", 626 | "cpu": [ 627 | "x64" 628 | ], 629 | "optional": true, 630 | "os": [ 631 | "darwin" 632 | ], 633 | "engines": { 634 | "macos": ">=10.13", 635 | "npm": ">=9.6.5", 636 | "pnpm": ">=7.1.0", 637 | "yarn": ">=3.2.0" 638 | }, 639 | "funding": { 640 | "url": "https://opencollective.com/libvips" 641 | } 642 | }, 643 | "node_modules/@img/sharp-libvips-linux-arm": { 644 | "version": "1.0.2", 645 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.2.tgz", 646 | "integrity": "sha512-iLWCvrKgeFoglQxdEwzu1eQV04o8YeYGFXtfWU26Zr2wWT3q3MTzC+QTCO3ZQfWd3doKHT4Pm2kRmLbupT+sZw==", 647 | "cpu": [ 648 | "arm" 649 | ], 650 | "optional": true, 651 | "os": [ 652 | "linux" 653 | ], 654 | "engines": { 655 | "glibc": ">=2.28", 656 | "npm": ">=9.6.5", 657 | "pnpm": ">=7.1.0", 658 | "yarn": ">=3.2.0" 659 | }, 660 | "funding": { 661 | "url": "https://opencollective.com/libvips" 662 | } 663 | }, 664 | "node_modules/@img/sharp-libvips-linux-arm64": { 665 | "version": "1.0.2", 666 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.2.tgz", 667 | "integrity": "sha512-x7kCt3N00ofFmmkkdshwj3vGPCnmiDh7Gwnd4nUwZln2YjqPxV1NlTyZOvoDWdKQVDL911487HOueBvrpflagw==", 668 | "cpu": [ 669 | "arm64" 670 | ], 671 | "optional": true, 672 | "os": [ 673 | "linux" 674 | ], 675 | "engines": { 676 | "glibc": ">=2.26", 677 | "npm": ">=9.6.5", 678 | "pnpm": ">=7.1.0", 679 | "yarn": ">=3.2.0" 680 | }, 681 | "funding": { 682 | "url": "https://opencollective.com/libvips" 683 | } 684 | }, 685 | "node_modules/@img/sharp-libvips-linux-s390x": { 686 | "version": "1.0.2", 687 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.2.tgz", 688 | "integrity": "sha512-cmhQ1J4qVhfmS6szYW7RT+gLJq9dH2i4maq+qyXayUSn9/3iY2ZeWpbAgSpSVbV2E1JUL2Gg7pwnYQ1h8rQIog==", 689 | "cpu": [ 690 | "s390x" 691 | ], 692 | "optional": true, 693 | "os": [ 694 | "linux" 695 | ], 696 | "engines": { 697 | "glibc": ">=2.28", 698 | "npm": ">=9.6.5", 699 | "pnpm": ">=7.1.0", 700 | "yarn": ">=3.2.0" 701 | }, 702 | "funding": { 703 | "url": "https://opencollective.com/libvips" 704 | } 705 | }, 706 | "node_modules/@img/sharp-libvips-linux-x64": { 707 | "version": "1.0.2", 708 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.2.tgz", 709 | "integrity": "sha512-E441q4Qdb+7yuyiADVi5J+44x8ctlrqn8XgkDTwr4qPJzWkaHwD489iZ4nGDgcuya4iMN3ULV6NwbhRZJ9Z7SQ==", 710 | "cpu": [ 711 | "x64" 712 | ], 713 | "optional": true, 714 | "os": [ 715 | "linux" 716 | ], 717 | "engines": { 718 | "glibc": ">=2.26", 719 | "npm": ">=9.6.5", 720 | "pnpm": ">=7.1.0", 721 | "yarn": ">=3.2.0" 722 | }, 723 | "funding": { 724 | "url": "https://opencollective.com/libvips" 725 | } 726 | }, 727 | "node_modules/@img/sharp-libvips-linuxmusl-arm64": { 728 | "version": "1.0.2", 729 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.2.tgz", 730 | "integrity": "sha512-3CAkndNpYUrlDqkCM5qhksfE+qSIREVpyoeHIU6jd48SJZViAmznoQQLAv4hVXF7xyUB9zf+G++e2v1ABjCbEQ==", 731 | "cpu": [ 732 | "arm64" 733 | ], 734 | "optional": true, 735 | "os": [ 736 | "linux" 737 | ], 738 | "engines": { 739 | "musl": ">=1.2.2", 740 | "npm": ">=9.6.5", 741 | "pnpm": ">=7.1.0", 742 | "yarn": ">=3.2.0" 743 | }, 744 | "funding": { 745 | "url": "https://opencollective.com/libvips" 746 | } 747 | }, 748 | "node_modules/@img/sharp-libvips-linuxmusl-x64": { 749 | "version": "1.0.2", 750 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.2.tgz", 751 | "integrity": "sha512-VI94Q6khIHqHWNOh6LLdm9s2Ry4zdjWJwH56WoiJU7NTeDwyApdZZ8c+SADC8OH98KWNQXnE01UdJ9CSfZvwZw==", 752 | "cpu": [ 753 | "x64" 754 | ], 755 | "optional": true, 756 | "os": [ 757 | "linux" 758 | ], 759 | "engines": { 760 | "musl": ">=1.2.2", 761 | "npm": ">=9.6.5", 762 | "pnpm": ">=7.1.0", 763 | "yarn": ">=3.2.0" 764 | }, 765 | "funding": { 766 | "url": "https://opencollective.com/libvips" 767 | } 768 | }, 769 | "node_modules/@img/sharp-linux-arm": { 770 | "version": "0.33.4", 771 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.4.tgz", 772 | "integrity": "sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==", 773 | "cpu": [ 774 | "arm" 775 | ], 776 | "optional": true, 777 | "os": [ 778 | "linux" 779 | ], 780 | "engines": { 781 | "glibc": ">=2.28", 782 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 783 | "npm": ">=9.6.5", 784 | "pnpm": ">=7.1.0", 785 | "yarn": ">=3.2.0" 786 | }, 787 | "funding": { 788 | "url": "https://opencollective.com/libvips" 789 | }, 790 | "optionalDependencies": { 791 | "@img/sharp-libvips-linux-arm": "1.0.2" 792 | } 793 | }, 794 | "node_modules/@img/sharp-linux-arm64": { 795 | "version": "0.33.4", 796 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.4.tgz", 797 | "integrity": "sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==", 798 | "cpu": [ 799 | "arm64" 800 | ], 801 | "optional": true, 802 | "os": [ 803 | "linux" 804 | ], 805 | "engines": { 806 | "glibc": ">=2.26", 807 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 808 | "npm": ">=9.6.5", 809 | "pnpm": ">=7.1.0", 810 | "yarn": ">=3.2.0" 811 | }, 812 | "funding": { 813 | "url": "https://opencollective.com/libvips" 814 | }, 815 | "optionalDependencies": { 816 | "@img/sharp-libvips-linux-arm64": "1.0.2" 817 | } 818 | }, 819 | "node_modules/@img/sharp-linux-s390x": { 820 | "version": "0.33.4", 821 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.4.tgz", 822 | "integrity": "sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==", 823 | "cpu": [ 824 | "s390x" 825 | ], 826 | "optional": true, 827 | "os": [ 828 | "linux" 829 | ], 830 | "engines": { 831 | "glibc": ">=2.31", 832 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 833 | "npm": ">=9.6.5", 834 | "pnpm": ">=7.1.0", 835 | "yarn": ">=3.2.0" 836 | }, 837 | "funding": { 838 | "url": "https://opencollective.com/libvips" 839 | }, 840 | "optionalDependencies": { 841 | "@img/sharp-libvips-linux-s390x": "1.0.2" 842 | } 843 | }, 844 | "node_modules/@img/sharp-linux-x64": { 845 | "version": "0.33.4", 846 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.4.tgz", 847 | "integrity": "sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==", 848 | "cpu": [ 849 | "x64" 850 | ], 851 | "optional": true, 852 | "os": [ 853 | "linux" 854 | ], 855 | "engines": { 856 | "glibc": ">=2.26", 857 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 858 | "npm": ">=9.6.5", 859 | "pnpm": ">=7.1.0", 860 | "yarn": ">=3.2.0" 861 | }, 862 | "funding": { 863 | "url": "https://opencollective.com/libvips" 864 | }, 865 | "optionalDependencies": { 866 | "@img/sharp-libvips-linux-x64": "1.0.2" 867 | } 868 | }, 869 | "node_modules/@img/sharp-linuxmusl-arm64": { 870 | "version": "0.33.4", 871 | "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.4.tgz", 872 | "integrity": "sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==", 873 | "cpu": [ 874 | "arm64" 875 | ], 876 | "optional": true, 877 | "os": [ 878 | "linux" 879 | ], 880 | "engines": { 881 | "musl": ">=1.2.2", 882 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 883 | "npm": ">=9.6.5", 884 | "pnpm": ">=7.1.0", 885 | "yarn": ">=3.2.0" 886 | }, 887 | "funding": { 888 | "url": "https://opencollective.com/libvips" 889 | }, 890 | "optionalDependencies": { 891 | "@img/sharp-libvips-linuxmusl-arm64": "1.0.2" 892 | } 893 | }, 894 | "node_modules/@img/sharp-linuxmusl-x64": { 895 | "version": "0.33.4", 896 | "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.4.tgz", 897 | "integrity": "sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==", 898 | "cpu": [ 899 | "x64" 900 | ], 901 | "optional": true, 902 | "os": [ 903 | "linux" 904 | ], 905 | "engines": { 906 | "musl": ">=1.2.2", 907 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 908 | "npm": ">=9.6.5", 909 | "pnpm": ">=7.1.0", 910 | "yarn": ">=3.2.0" 911 | }, 912 | "funding": { 913 | "url": "https://opencollective.com/libvips" 914 | }, 915 | "optionalDependencies": { 916 | "@img/sharp-libvips-linuxmusl-x64": "1.0.2" 917 | } 918 | }, 919 | "node_modules/@img/sharp-wasm32": { 920 | "version": "0.33.4", 921 | "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.4.tgz", 922 | "integrity": "sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==", 923 | "cpu": [ 924 | "wasm32" 925 | ], 926 | "optional": true, 927 | "dependencies": { 928 | "@emnapi/runtime": "^1.1.1" 929 | }, 930 | "engines": { 931 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 932 | "npm": ">=9.6.5", 933 | "pnpm": ">=7.1.0", 934 | "yarn": ">=3.2.0" 935 | }, 936 | "funding": { 937 | "url": "https://opencollective.com/libvips" 938 | } 939 | }, 940 | "node_modules/@img/sharp-win32-ia32": { 941 | "version": "0.33.4", 942 | "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.4.tgz", 943 | "integrity": "sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==", 944 | "cpu": [ 945 | "ia32" 946 | ], 947 | "optional": true, 948 | "os": [ 949 | "win32" 950 | ], 951 | "engines": { 952 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 953 | "npm": ">=9.6.5", 954 | "pnpm": ">=7.1.0", 955 | "yarn": ">=3.2.0" 956 | }, 957 | "funding": { 958 | "url": "https://opencollective.com/libvips" 959 | } 960 | }, 961 | "node_modules/@img/sharp-win32-x64": { 962 | "version": "0.33.4", 963 | "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.4.tgz", 964 | "integrity": "sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==", 965 | "cpu": [ 966 | "x64" 967 | ], 968 | "optional": true, 969 | "os": [ 970 | "win32" 971 | ], 972 | "engines": { 973 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 974 | "npm": ">=9.6.5", 975 | "pnpm": ">=7.1.0", 976 | "yarn": ">=3.2.0" 977 | }, 978 | "funding": { 979 | "url": "https://opencollective.com/libvips" 980 | } 981 | }, 982 | "node_modules/@isaacs/cliui": { 983 | "version": "8.0.2", 984 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 985 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 986 | "dependencies": { 987 | "string-width": "^5.1.2", 988 | "string-width-cjs": "npm:string-width@^4.2.0", 989 | "strip-ansi": "^7.0.1", 990 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 991 | "wrap-ansi": "^8.1.0", 992 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 993 | }, 994 | "engines": { 995 | "node": ">=12" 996 | } 997 | }, 998 | "node_modules/@isaacs/cliui/node_modules/ansi-regex": { 999 | "version": "6.0.1", 1000 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 1001 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 1002 | "engines": { 1003 | "node": ">=12" 1004 | }, 1005 | "funding": { 1006 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 1007 | } 1008 | }, 1009 | "node_modules/@isaacs/cliui/node_modules/strip-ansi": { 1010 | "version": "7.1.0", 1011 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 1012 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 1013 | "dependencies": { 1014 | "ansi-regex": "^6.0.1" 1015 | }, 1016 | "engines": { 1017 | "node": ">=12" 1018 | }, 1019 | "funding": { 1020 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 1021 | } 1022 | }, 1023 | "node_modules/@jridgewell/gen-mapping": { 1024 | "version": "0.3.5", 1025 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 1026 | "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 1027 | "dependencies": { 1028 | "@jridgewell/set-array": "^1.2.1", 1029 | "@jridgewell/sourcemap-codec": "^1.4.10", 1030 | "@jridgewell/trace-mapping": "^0.3.24" 1031 | }, 1032 | "engines": { 1033 | "node": ">=6.0.0" 1034 | } 1035 | }, 1036 | "node_modules/@jridgewell/resolve-uri": { 1037 | "version": "3.1.2", 1038 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 1039 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 1040 | "engines": { 1041 | "node": ">=6.0.0" 1042 | } 1043 | }, 1044 | "node_modules/@jridgewell/set-array": { 1045 | "version": "1.2.1", 1046 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 1047 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 1048 | "engines": { 1049 | "node": ">=6.0.0" 1050 | } 1051 | }, 1052 | "node_modules/@jridgewell/sourcemap-codec": { 1053 | "version": "1.4.15", 1054 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 1055 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" 1056 | }, 1057 | "node_modules/@jridgewell/trace-mapping": { 1058 | "version": "0.3.25", 1059 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 1060 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 1061 | "dependencies": { 1062 | "@jridgewell/resolve-uri": "^3.1.0", 1063 | "@jridgewell/sourcemap-codec": "^1.4.14" 1064 | } 1065 | }, 1066 | "node_modules/@nodelib/fs.scandir": { 1067 | "version": "2.1.5", 1068 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 1069 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 1070 | "dependencies": { 1071 | "@nodelib/fs.stat": "2.0.5", 1072 | "run-parallel": "^1.1.9" 1073 | }, 1074 | "engines": { 1075 | "node": ">= 8" 1076 | } 1077 | }, 1078 | "node_modules/@nodelib/fs.stat": { 1079 | "version": "2.0.5", 1080 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 1081 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 1082 | "engines": { 1083 | "node": ">= 8" 1084 | } 1085 | }, 1086 | "node_modules/@nodelib/fs.walk": { 1087 | "version": "1.2.8", 1088 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 1089 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 1090 | "dependencies": { 1091 | "@nodelib/fs.scandir": "2.1.5", 1092 | "fastq": "^1.6.0" 1093 | }, 1094 | "engines": { 1095 | "node": ">= 8" 1096 | } 1097 | }, 1098 | "node_modules/@pkgjs/parseargs": { 1099 | "version": "0.11.0", 1100 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 1101 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 1102 | "optional": true, 1103 | "engines": { 1104 | "node": ">=14" 1105 | } 1106 | }, 1107 | "node_modules/@polka/url": { 1108 | "version": "1.0.0-next.25", 1109 | "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.25.tgz", 1110 | "integrity": "sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==" 1111 | }, 1112 | "node_modules/@rollup/pluginutils": { 1113 | "version": "5.1.0", 1114 | "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.0.tgz", 1115 | "integrity": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==", 1116 | "dependencies": { 1117 | "@types/estree": "^1.0.0", 1118 | "estree-walker": "^2.0.2", 1119 | "picomatch": "^2.3.1" 1120 | }, 1121 | "engines": { 1122 | "node": ">=14.0.0" 1123 | }, 1124 | "peerDependencies": { 1125 | "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 1126 | }, 1127 | "peerDependenciesMeta": { 1128 | "rollup": { 1129 | "optional": true 1130 | } 1131 | } 1132 | }, 1133 | "node_modules/@rollup/pluginutils/node_modules/estree-walker": { 1134 | "version": "2.0.2", 1135 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 1136 | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" 1137 | }, 1138 | "node_modules/@rollup/rollup-android-arm-eabi": { 1139 | "version": "4.17.2", 1140 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.2.tgz", 1141 | "integrity": "sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==", 1142 | "cpu": [ 1143 | "arm" 1144 | ], 1145 | "optional": true, 1146 | "os": [ 1147 | "android" 1148 | ] 1149 | }, 1150 | "node_modules/@rollup/rollup-android-arm64": { 1151 | "version": "4.17.2", 1152 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.2.tgz", 1153 | "integrity": "sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==", 1154 | "cpu": [ 1155 | "arm64" 1156 | ], 1157 | "optional": true, 1158 | "os": [ 1159 | "android" 1160 | ] 1161 | }, 1162 | "node_modules/@rollup/rollup-darwin-arm64": { 1163 | "version": "4.17.2", 1164 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz", 1165 | "integrity": "sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==", 1166 | "cpu": [ 1167 | "arm64" 1168 | ], 1169 | "optional": true, 1170 | "os": [ 1171 | "darwin" 1172 | ] 1173 | }, 1174 | "node_modules/@rollup/rollup-darwin-x64": { 1175 | "version": "4.17.2", 1176 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.2.tgz", 1177 | "integrity": "sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==", 1178 | "cpu": [ 1179 | "x64" 1180 | ], 1181 | "optional": true, 1182 | "os": [ 1183 | "darwin" 1184 | ] 1185 | }, 1186 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 1187 | "version": "4.17.2", 1188 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.2.tgz", 1189 | "integrity": "sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==", 1190 | "cpu": [ 1191 | "arm" 1192 | ], 1193 | "optional": true, 1194 | "os": [ 1195 | "linux" 1196 | ] 1197 | }, 1198 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 1199 | "version": "4.17.2", 1200 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.2.tgz", 1201 | "integrity": "sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==", 1202 | "cpu": [ 1203 | "arm" 1204 | ], 1205 | "optional": true, 1206 | "os": [ 1207 | "linux" 1208 | ] 1209 | }, 1210 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 1211 | "version": "4.17.2", 1212 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.2.tgz", 1213 | "integrity": "sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==", 1214 | "cpu": [ 1215 | "arm64" 1216 | ], 1217 | "optional": true, 1218 | "os": [ 1219 | "linux" 1220 | ] 1221 | }, 1222 | "node_modules/@rollup/rollup-linux-arm64-musl": { 1223 | "version": "4.17.2", 1224 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.2.tgz", 1225 | "integrity": "sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==", 1226 | "cpu": [ 1227 | "arm64" 1228 | ], 1229 | "optional": true, 1230 | "os": [ 1231 | "linux" 1232 | ] 1233 | }, 1234 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 1235 | "version": "4.17.2", 1236 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.2.tgz", 1237 | "integrity": "sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==", 1238 | "cpu": [ 1239 | "ppc64" 1240 | ], 1241 | "optional": true, 1242 | "os": [ 1243 | "linux" 1244 | ] 1245 | }, 1246 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 1247 | "version": "4.17.2", 1248 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.2.tgz", 1249 | "integrity": "sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==", 1250 | "cpu": [ 1251 | "riscv64" 1252 | ], 1253 | "optional": true, 1254 | "os": [ 1255 | "linux" 1256 | ] 1257 | }, 1258 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 1259 | "version": "4.17.2", 1260 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.2.tgz", 1261 | "integrity": "sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==", 1262 | "cpu": [ 1263 | "s390x" 1264 | ], 1265 | "optional": true, 1266 | "os": [ 1267 | "linux" 1268 | ] 1269 | }, 1270 | "node_modules/@rollup/rollup-linux-x64-gnu": { 1271 | "version": "4.17.2", 1272 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.2.tgz", 1273 | "integrity": "sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==", 1274 | "cpu": [ 1275 | "x64" 1276 | ], 1277 | "optional": true, 1278 | "os": [ 1279 | "linux" 1280 | ] 1281 | }, 1282 | "node_modules/@rollup/rollup-linux-x64-musl": { 1283 | "version": "4.17.2", 1284 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.2.tgz", 1285 | "integrity": "sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==", 1286 | "cpu": [ 1287 | "x64" 1288 | ], 1289 | "optional": true, 1290 | "os": [ 1291 | "linux" 1292 | ] 1293 | }, 1294 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 1295 | "version": "4.17.2", 1296 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.2.tgz", 1297 | "integrity": "sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==", 1298 | "cpu": [ 1299 | "arm64" 1300 | ], 1301 | "optional": true, 1302 | "os": [ 1303 | "win32" 1304 | ] 1305 | }, 1306 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 1307 | "version": "4.17.2", 1308 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.2.tgz", 1309 | "integrity": "sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==", 1310 | "cpu": [ 1311 | "ia32" 1312 | ], 1313 | "optional": true, 1314 | "os": [ 1315 | "win32" 1316 | ] 1317 | }, 1318 | "node_modules/@rollup/rollup-win32-x64-msvc": { 1319 | "version": "4.17.2", 1320 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.2.tgz", 1321 | "integrity": "sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==", 1322 | "cpu": [ 1323 | "x64" 1324 | ], 1325 | "optional": true, 1326 | "os": [ 1327 | "win32" 1328 | ] 1329 | }, 1330 | "node_modules/@sveltejs/adapter-auto": { 1331 | "version": "3.2.0", 1332 | "resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-3.2.0.tgz", 1333 | "integrity": "sha512-She5nKT47kwHE18v9NMe6pbJcvULr82u0V3yZ0ej3n1laWKGgkgdEABE9/ak5iDPs93LqsBkuIo51kkwCLBjJA==", 1334 | "dev": true, 1335 | "dependencies": { 1336 | "import-meta-resolve": "^4.0.0" 1337 | }, 1338 | "peerDependencies": { 1339 | "@sveltejs/kit": "^2.0.0" 1340 | } 1341 | }, 1342 | "node_modules/@sveltejs/adapter-static": { 1343 | "version": "3.0.1", 1344 | "resolved": "https://registry.npmjs.org/@sveltejs/adapter-static/-/adapter-static-3.0.1.tgz", 1345 | "integrity": "sha512-6lMvf7xYEJ+oGeR5L8DFJJrowkefTK6ZgA4JiMqoClMkKq0s6yvsd3FZfCFvX1fQ0tpCD7fkuRVHsnUVgsHyNg==", 1346 | "peerDependencies": { 1347 | "@sveltejs/kit": "^2.0.0" 1348 | } 1349 | }, 1350 | "node_modules/@sveltejs/kit": { 1351 | "version": "2.5.9", 1352 | "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.5.9.tgz", 1353 | "integrity": "sha512-x8biUVHPQq075/ESH/UO+fwENtAcw0kg9+bloqqEnbLUNWcrWpmcL3vKrKJc4vaVh/CYKFXn47N98Sbt/Y3vKQ==", 1354 | "hasInstallScript": true, 1355 | "dependencies": { 1356 | "@types/cookie": "^0.6.0", 1357 | "cookie": "^0.6.0", 1358 | "devalue": "^5.0.0", 1359 | "esm-env": "^1.0.0", 1360 | "import-meta-resolve": "^4.0.0", 1361 | "kleur": "^4.1.5", 1362 | "magic-string": "^0.30.5", 1363 | "mrmime": "^2.0.0", 1364 | "sade": "^1.8.1", 1365 | "set-cookie-parser": "^2.6.0", 1366 | "sirv": "^2.0.4", 1367 | "tiny-glob": "^0.2.9" 1368 | }, 1369 | "bin": { 1370 | "svelte-kit": "svelte-kit.js" 1371 | }, 1372 | "engines": { 1373 | "node": ">=18.13" 1374 | }, 1375 | "peerDependencies": { 1376 | "@sveltejs/vite-plugin-svelte": "^3.0.0", 1377 | "svelte": "^4.0.0 || ^5.0.0-next.0", 1378 | "vite": "^5.0.3" 1379 | } 1380 | }, 1381 | "node_modules/@sveltejs/vite-plugin-svelte": { 1382 | "version": "3.1.0", 1383 | "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-3.1.0.tgz", 1384 | "integrity": "sha512-sY6ncCvg+O3njnzbZexcVtUqOBE3iYmQPJ9y+yXSkOwG576QI/xJrBnQSRXFLGwJNBa0T78JEKg5cIR0WOAuUw==", 1385 | "dependencies": { 1386 | "@sveltejs/vite-plugin-svelte-inspector": "^2.0.0", 1387 | "debug": "^4.3.4", 1388 | "deepmerge": "^4.3.1", 1389 | "kleur": "^4.1.5", 1390 | "magic-string": "^0.30.9", 1391 | "svelte-hmr": "^0.16.0", 1392 | "vitefu": "^0.2.5" 1393 | }, 1394 | "engines": { 1395 | "node": "^18.0.0 || >=20" 1396 | }, 1397 | "peerDependencies": { 1398 | "svelte": "^4.0.0 || ^5.0.0-next.0", 1399 | "vite": "^5.0.0" 1400 | } 1401 | }, 1402 | "node_modules/@sveltejs/vite-plugin-svelte-inspector": { 1403 | "version": "2.1.0", 1404 | "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-2.1.0.tgz", 1405 | "integrity": "sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==", 1406 | "dependencies": { 1407 | "debug": "^4.3.4" 1408 | }, 1409 | "engines": { 1410 | "node": "^18.0.0 || >=20" 1411 | }, 1412 | "peerDependencies": { 1413 | "@sveltejs/vite-plugin-svelte": "^3.0.0", 1414 | "svelte": "^4.0.0 || ^5.0.0-next.0", 1415 | "vite": "^5.0.0" 1416 | } 1417 | }, 1418 | "node_modules/@tailwindcss/aspect-ratio": { 1419 | "version": "0.4.2", 1420 | "resolved": "https://registry.npmjs.org/@tailwindcss/aspect-ratio/-/aspect-ratio-0.4.2.tgz", 1421 | "integrity": "sha512-8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ==", 1422 | "peerDependencies": { 1423 | "tailwindcss": ">=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1" 1424 | } 1425 | }, 1426 | "node_modules/@threejs-kit/instanced-sprite-mesh": { 1427 | "version": "2.4.7", 1428 | "resolved": "https://registry.npmjs.org/@threejs-kit/instanced-sprite-mesh/-/instanced-sprite-mesh-2.4.7.tgz", 1429 | "integrity": "sha512-31erNfFEF+msFyWH46sIbjaACXqBke/8qMr/xhv9E3INPCLTrLuN4C4W93znnyTiyuCQ3Waf5UOCT18OBWTUtw==", 1430 | "dependencies": { 1431 | "diet-sprite": "^0.0.1", 1432 | "earcut": "^2.2.4", 1433 | "maath": "^0.10.7", 1434 | "three-instanced-uniforms-mesh": "^0.49.0", 1435 | "troika-three-utils": "^0.49.0" 1436 | }, 1437 | "peerDependencies": { 1438 | "three": ">=0.151.0" 1439 | } 1440 | }, 1441 | "node_modules/@threlte/core": { 1442 | "version": "7.3.0", 1443 | "resolved": "https://registry.npmjs.org/@threlte/core/-/core-7.3.0.tgz", 1444 | "integrity": "sha512-yedstu5kcjV1/V1W0xNjkFQmL8A+n57NzjxBK+cPC1fdUtOvBtmOPxvOZ0b/TlhTyZM8XkEv4BiKrGibOrBzyA==", 1445 | "dependencies": { 1446 | "mitt": "^3.0.1" 1447 | }, 1448 | "peerDependencies": { 1449 | "svelte": ">=4", 1450 | "three": ">=0.152" 1451 | } 1452 | }, 1453 | "node_modules/@threlte/extras": { 1454 | "version": "8.11.2", 1455 | "resolved": "https://registry.npmjs.org/@threlte/extras/-/extras-8.11.2.tgz", 1456 | "integrity": "sha512-4wXIh47EoQbgjOrcbwiXFlQ3s4fPxW5x3OSfXEZgn8GGBdC8ZGdMhALyProe/6VeLhGa50uEn21vX7TcQYgn1w==", 1457 | "dependencies": { 1458 | "@threejs-kit/instanced-sprite-mesh": "^2.4.6", 1459 | "three-mesh-bvh": "^0.7.1", 1460 | "three-perf": "^1.0.10", 1461 | "troika-three-text": "^0.49.0" 1462 | }, 1463 | "peerDependencies": { 1464 | "svelte": ">=4", 1465 | "three": ">=0.152" 1466 | } 1467 | }, 1468 | "node_modules/@tweenjs/tween.js": { 1469 | "version": "23.1.2", 1470 | "resolved": "https://registry.npmjs.org/@tweenjs/tween.js/-/tween.js-23.1.2.tgz", 1471 | "integrity": "sha512-kMCNaZCJugWI86xiEHaY338CU5JpD0B97p1j1IKNn/Zto8PgACjQx0UxbHjmOcLl/dDOBnItwD07KmCs75pxtQ==" 1472 | }, 1473 | "node_modules/@types/cookie": { 1474 | "version": "0.6.0", 1475 | "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz", 1476 | "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==" 1477 | }, 1478 | "node_modules/@types/eslint": { 1479 | "version": "8.56.10", 1480 | "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.10.tgz", 1481 | "integrity": "sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==", 1482 | "dev": true, 1483 | "dependencies": { 1484 | "@types/estree": "*", 1485 | "@types/json-schema": "*" 1486 | } 1487 | }, 1488 | "node_modules/@types/estree": { 1489 | "version": "1.0.5", 1490 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", 1491 | "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" 1492 | }, 1493 | "node_modules/@types/json-schema": { 1494 | "version": "7.0.15", 1495 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 1496 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 1497 | "dev": true 1498 | }, 1499 | "node_modules/@types/pug": { 1500 | "version": "2.0.10", 1501 | "resolved": "https://registry.npmjs.org/@types/pug/-/pug-2.0.10.tgz", 1502 | "integrity": "sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==", 1503 | "dev": true 1504 | }, 1505 | "node_modules/@types/stats.js": { 1506 | "version": "0.17.3", 1507 | "resolved": "https://registry.npmjs.org/@types/stats.js/-/stats.js-0.17.3.tgz", 1508 | "integrity": "sha512-pXNfAD3KHOdif9EQXZ9deK82HVNaXP5ZIF5RP2QG6OQFNTaY2YIetfrE9t528vEreGQvEPRDDc8muaoYeK0SxQ==" 1509 | }, 1510 | "node_modules/@types/three": { 1511 | "version": "0.164.0", 1512 | "resolved": "https://registry.npmjs.org/@types/three/-/three-0.164.0.tgz", 1513 | "integrity": "sha512-SFDofn9dJVrE+1DKta7xj7lc4ru7B3S3yf10NsxOserW57aQlB6GxtAS1UK5To3LfEMN5HUHMu3n5v+M5rApgA==", 1514 | "dependencies": { 1515 | "@tweenjs/tween.js": "~23.1.1", 1516 | "@types/stats.js": "*", 1517 | "@types/webxr": "*", 1518 | "fflate": "~0.8.2", 1519 | "meshoptimizer": "~0.18.1" 1520 | } 1521 | }, 1522 | "node_modules/@types/webxr": { 1523 | "version": "0.5.16", 1524 | "resolved": "https://registry.npmjs.org/@types/webxr/-/webxr-0.5.16.tgz", 1525 | "integrity": "sha512-0E0Cl84FECtzrB4qG19TNTqpunw0F1YF0QZZnFMF6pDw1kNKJtrlTKlVB34stGIsHbZsYQ7H0tNjPfZftkHHoA==" 1526 | }, 1527 | "node_modules/@typescript-eslint/eslint-plugin": { 1528 | "version": "7.9.0", 1529 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.9.0.tgz", 1530 | "integrity": "sha512-6e+X0X3sFe/G/54aC3jt0txuMTURqLyekmEHViqyA2VnxhLMpvA6nqmcjIy+Cr9tLDHPssA74BP5Mx9HQIxBEA==", 1531 | "dev": true, 1532 | "dependencies": { 1533 | "@eslint-community/regexpp": "^4.10.0", 1534 | "@typescript-eslint/scope-manager": "7.9.0", 1535 | "@typescript-eslint/type-utils": "7.9.0", 1536 | "@typescript-eslint/utils": "7.9.0", 1537 | "@typescript-eslint/visitor-keys": "7.9.0", 1538 | "graphemer": "^1.4.0", 1539 | "ignore": "^5.3.1", 1540 | "natural-compare": "^1.4.0", 1541 | "ts-api-utils": "^1.3.0" 1542 | }, 1543 | "engines": { 1544 | "node": "^18.18.0 || >=20.0.0" 1545 | }, 1546 | "funding": { 1547 | "type": "opencollective", 1548 | "url": "https://opencollective.com/typescript-eslint" 1549 | }, 1550 | "peerDependencies": { 1551 | "@typescript-eslint/parser": "^7.0.0", 1552 | "eslint": "^8.56.0" 1553 | }, 1554 | "peerDependenciesMeta": { 1555 | "typescript": { 1556 | "optional": true 1557 | } 1558 | } 1559 | }, 1560 | "node_modules/@typescript-eslint/parser": { 1561 | "version": "7.9.0", 1562 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.9.0.tgz", 1563 | "integrity": "sha512-qHMJfkL5qvgQB2aLvhUSXxbK7OLnDkwPzFalg458pxQgfxKDfT1ZDbHQM/I6mDIf/svlMkj21kzKuQ2ixJlatQ==", 1564 | "dev": true, 1565 | "dependencies": { 1566 | "@typescript-eslint/scope-manager": "7.9.0", 1567 | "@typescript-eslint/types": "7.9.0", 1568 | "@typescript-eslint/typescript-estree": "7.9.0", 1569 | "@typescript-eslint/visitor-keys": "7.9.0", 1570 | "debug": "^4.3.4" 1571 | }, 1572 | "engines": { 1573 | "node": "^18.18.0 || >=20.0.0" 1574 | }, 1575 | "funding": { 1576 | "type": "opencollective", 1577 | "url": "https://opencollective.com/typescript-eslint" 1578 | }, 1579 | "peerDependencies": { 1580 | "eslint": "^8.56.0" 1581 | }, 1582 | "peerDependenciesMeta": { 1583 | "typescript": { 1584 | "optional": true 1585 | } 1586 | } 1587 | }, 1588 | "node_modules/@typescript-eslint/scope-manager": { 1589 | "version": "7.9.0", 1590 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.9.0.tgz", 1591 | "integrity": "sha512-ZwPK4DeCDxr3GJltRz5iZejPFAAr4Wk3+2WIBaj1L5PYK5RgxExu/Y68FFVclN0y6GGwH8q+KgKRCvaTmFBbgQ==", 1592 | "dev": true, 1593 | "dependencies": { 1594 | "@typescript-eslint/types": "7.9.0", 1595 | "@typescript-eslint/visitor-keys": "7.9.0" 1596 | }, 1597 | "engines": { 1598 | "node": "^18.18.0 || >=20.0.0" 1599 | }, 1600 | "funding": { 1601 | "type": "opencollective", 1602 | "url": "https://opencollective.com/typescript-eslint" 1603 | } 1604 | }, 1605 | "node_modules/@typescript-eslint/type-utils": { 1606 | "version": "7.9.0", 1607 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.9.0.tgz", 1608 | "integrity": "sha512-6Qy8dfut0PFrFRAZsGzuLoM4hre4gjzWJB6sUvdunCYZsYemTkzZNwF1rnGea326PHPT3zn5Lmg32M/xfJfByA==", 1609 | "dev": true, 1610 | "dependencies": { 1611 | "@typescript-eslint/typescript-estree": "7.9.0", 1612 | "@typescript-eslint/utils": "7.9.0", 1613 | "debug": "^4.3.4", 1614 | "ts-api-utils": "^1.3.0" 1615 | }, 1616 | "engines": { 1617 | "node": "^18.18.0 || >=20.0.0" 1618 | }, 1619 | "funding": { 1620 | "type": "opencollective", 1621 | "url": "https://opencollective.com/typescript-eslint" 1622 | }, 1623 | "peerDependencies": { 1624 | "eslint": "^8.56.0" 1625 | }, 1626 | "peerDependenciesMeta": { 1627 | "typescript": { 1628 | "optional": true 1629 | } 1630 | } 1631 | }, 1632 | "node_modules/@typescript-eslint/types": { 1633 | "version": "7.9.0", 1634 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.9.0.tgz", 1635 | "integrity": "sha512-oZQD9HEWQanl9UfsbGVcZ2cGaR0YT5476xfWE0oE5kQa2sNK2frxOlkeacLOTh9po4AlUT5rtkGyYM5kew0z5w==", 1636 | "dev": true, 1637 | "engines": { 1638 | "node": "^18.18.0 || >=20.0.0" 1639 | }, 1640 | "funding": { 1641 | "type": "opencollective", 1642 | "url": "https://opencollective.com/typescript-eslint" 1643 | } 1644 | }, 1645 | "node_modules/@typescript-eslint/typescript-estree": { 1646 | "version": "7.9.0", 1647 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.9.0.tgz", 1648 | "integrity": "sha512-zBCMCkrb2YjpKV3LA0ZJubtKCDxLttxfdGmwZvTqqWevUPN0FZvSI26FalGFFUZU/9YQK/A4xcQF9o/VVaCKAg==", 1649 | "dev": true, 1650 | "dependencies": { 1651 | "@typescript-eslint/types": "7.9.0", 1652 | "@typescript-eslint/visitor-keys": "7.9.0", 1653 | "debug": "^4.3.4", 1654 | "globby": "^11.1.0", 1655 | "is-glob": "^4.0.3", 1656 | "minimatch": "^9.0.4", 1657 | "semver": "^7.6.0", 1658 | "ts-api-utils": "^1.3.0" 1659 | }, 1660 | "engines": { 1661 | "node": "^18.18.0 || >=20.0.0" 1662 | }, 1663 | "funding": { 1664 | "type": "opencollective", 1665 | "url": "https://opencollective.com/typescript-eslint" 1666 | }, 1667 | "peerDependenciesMeta": { 1668 | "typescript": { 1669 | "optional": true 1670 | } 1671 | } 1672 | }, 1673 | "node_modules/@typescript-eslint/utils": { 1674 | "version": "7.9.0", 1675 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.9.0.tgz", 1676 | "integrity": "sha512-5KVRQCzZajmT4Ep+NEgjXCvjuypVvYHUW7RHlXzNPuak2oWpVoD1jf5xCP0dPAuNIchjC7uQyvbdaSTFaLqSdA==", 1677 | "dev": true, 1678 | "dependencies": { 1679 | "@eslint-community/eslint-utils": "^4.4.0", 1680 | "@typescript-eslint/scope-manager": "7.9.0", 1681 | "@typescript-eslint/types": "7.9.0", 1682 | "@typescript-eslint/typescript-estree": "7.9.0" 1683 | }, 1684 | "engines": { 1685 | "node": "^18.18.0 || >=20.0.0" 1686 | }, 1687 | "funding": { 1688 | "type": "opencollective", 1689 | "url": "https://opencollective.com/typescript-eslint" 1690 | }, 1691 | "peerDependencies": { 1692 | "eslint": "^8.56.0" 1693 | } 1694 | }, 1695 | "node_modules/@typescript-eslint/visitor-keys": { 1696 | "version": "7.9.0", 1697 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.9.0.tgz", 1698 | "integrity": "sha512-iESPx2TNLDNGQLyjKhUvIKprlP49XNEK+MvIf9nIO7ZZaZdbnfWKHnXAgufpxqfA0YryH8XToi4+CjBgVnFTSQ==", 1699 | "dev": true, 1700 | "dependencies": { 1701 | "@typescript-eslint/types": "7.9.0", 1702 | "eslint-visitor-keys": "^3.4.3" 1703 | }, 1704 | "engines": { 1705 | "node": "^18.18.0 || >=20.0.0" 1706 | }, 1707 | "funding": { 1708 | "type": "opencollective", 1709 | "url": "https://opencollective.com/typescript-eslint" 1710 | } 1711 | }, 1712 | "node_modules/@ungap/structured-clone": { 1713 | "version": "1.2.0", 1714 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 1715 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 1716 | "dev": true 1717 | }, 1718 | "node_modules/acorn": { 1719 | "version": "8.11.3", 1720 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", 1721 | "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", 1722 | "bin": { 1723 | "acorn": "bin/acorn" 1724 | }, 1725 | "engines": { 1726 | "node": ">=0.4.0" 1727 | } 1728 | }, 1729 | "node_modules/acorn-jsx": { 1730 | "version": "5.3.2", 1731 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 1732 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 1733 | "dev": true, 1734 | "peerDependencies": { 1735 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 1736 | } 1737 | }, 1738 | "node_modules/ajv": { 1739 | "version": "6.12.6", 1740 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1741 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1742 | "dev": true, 1743 | "dependencies": { 1744 | "fast-deep-equal": "^3.1.1", 1745 | "fast-json-stable-stringify": "^2.0.0", 1746 | "json-schema-traverse": "^0.4.1", 1747 | "uri-js": "^4.2.2" 1748 | }, 1749 | "funding": { 1750 | "type": "github", 1751 | "url": "https://github.com/sponsors/epoberezkin" 1752 | } 1753 | }, 1754 | "node_modules/ansi-regex": { 1755 | "version": "5.0.1", 1756 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1757 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1758 | "engines": { 1759 | "node": ">=8" 1760 | } 1761 | }, 1762 | "node_modules/ansi-styles": { 1763 | "version": "4.3.0", 1764 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1765 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1766 | "dependencies": { 1767 | "color-convert": "^2.0.1" 1768 | }, 1769 | "engines": { 1770 | "node": ">=8" 1771 | }, 1772 | "funding": { 1773 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1774 | } 1775 | }, 1776 | "node_modules/any-promise": { 1777 | "version": "1.3.0", 1778 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 1779 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" 1780 | }, 1781 | "node_modules/anymatch": { 1782 | "version": "3.1.3", 1783 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1784 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1785 | "dependencies": { 1786 | "normalize-path": "^3.0.0", 1787 | "picomatch": "^2.0.4" 1788 | }, 1789 | "engines": { 1790 | "node": ">= 8" 1791 | } 1792 | }, 1793 | "node_modules/arg": { 1794 | "version": "5.0.2", 1795 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 1796 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" 1797 | }, 1798 | "node_modules/argparse": { 1799 | "version": "2.0.1", 1800 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1801 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1802 | "dev": true 1803 | }, 1804 | "node_modules/aria-query": { 1805 | "version": "5.3.0", 1806 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", 1807 | "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", 1808 | "dependencies": { 1809 | "dequal": "^2.0.3" 1810 | } 1811 | }, 1812 | "node_modules/array-union": { 1813 | "version": "2.1.0", 1814 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 1815 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 1816 | "dev": true, 1817 | "engines": { 1818 | "node": ">=8" 1819 | } 1820 | }, 1821 | "node_modules/autoprefixer": { 1822 | "version": "10.4.19", 1823 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", 1824 | "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", 1825 | "dev": true, 1826 | "funding": [ 1827 | { 1828 | "type": "opencollective", 1829 | "url": "https://opencollective.com/postcss/" 1830 | }, 1831 | { 1832 | "type": "tidelift", 1833 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 1834 | }, 1835 | { 1836 | "type": "github", 1837 | "url": "https://github.com/sponsors/ai" 1838 | } 1839 | ], 1840 | "dependencies": { 1841 | "browserslist": "^4.23.0", 1842 | "caniuse-lite": "^1.0.30001599", 1843 | "fraction.js": "^4.3.7", 1844 | "normalize-range": "^0.1.2", 1845 | "picocolors": "^1.0.0", 1846 | "postcss-value-parser": "^4.2.0" 1847 | }, 1848 | "bin": { 1849 | "autoprefixer": "bin/autoprefixer" 1850 | }, 1851 | "engines": { 1852 | "node": "^10 || ^12 || >=14" 1853 | }, 1854 | "peerDependencies": { 1855 | "postcss": "^8.1.0" 1856 | } 1857 | }, 1858 | "node_modules/axobject-query": { 1859 | "version": "4.0.0", 1860 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.0.0.tgz", 1861 | "integrity": "sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==", 1862 | "dependencies": { 1863 | "dequal": "^2.0.3" 1864 | } 1865 | }, 1866 | "node_modules/balanced-match": { 1867 | "version": "1.0.2", 1868 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1869 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 1870 | }, 1871 | "node_modules/bidi-js": { 1872 | "version": "1.0.3", 1873 | "resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz", 1874 | "integrity": "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==", 1875 | "dependencies": { 1876 | "require-from-string": "^2.0.2" 1877 | } 1878 | }, 1879 | "node_modules/binary-extensions": { 1880 | "version": "2.3.0", 1881 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 1882 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 1883 | "engines": { 1884 | "node": ">=8" 1885 | }, 1886 | "funding": { 1887 | "url": "https://github.com/sponsors/sindresorhus" 1888 | } 1889 | }, 1890 | "node_modules/brace-expansion": { 1891 | "version": "2.0.1", 1892 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1893 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1894 | "dependencies": { 1895 | "balanced-match": "^1.0.0" 1896 | } 1897 | }, 1898 | "node_modules/braces": { 1899 | "version": "3.0.2", 1900 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 1901 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 1902 | "dependencies": { 1903 | "fill-range": "^7.0.1" 1904 | }, 1905 | "engines": { 1906 | "node": ">=8" 1907 | } 1908 | }, 1909 | "node_modules/browserslist": { 1910 | "version": "4.23.0", 1911 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", 1912 | "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", 1913 | "dev": true, 1914 | "funding": [ 1915 | { 1916 | "type": "opencollective", 1917 | "url": "https://opencollective.com/browserslist" 1918 | }, 1919 | { 1920 | "type": "tidelift", 1921 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1922 | }, 1923 | { 1924 | "type": "github", 1925 | "url": "https://github.com/sponsors/ai" 1926 | } 1927 | ], 1928 | "dependencies": { 1929 | "caniuse-lite": "^1.0.30001587", 1930 | "electron-to-chromium": "^1.4.668", 1931 | "node-releases": "^2.0.14", 1932 | "update-browserslist-db": "^1.0.13" 1933 | }, 1934 | "bin": { 1935 | "browserslist": "cli.js" 1936 | }, 1937 | "engines": { 1938 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1939 | } 1940 | }, 1941 | "node_modules/buffer-crc32": { 1942 | "version": "0.2.13", 1943 | "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", 1944 | "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", 1945 | "dev": true, 1946 | "engines": { 1947 | "node": "*" 1948 | } 1949 | }, 1950 | "node_modules/callsites": { 1951 | "version": "3.1.0", 1952 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1953 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1954 | "dev": true, 1955 | "engines": { 1956 | "node": ">=6" 1957 | } 1958 | }, 1959 | "node_modules/camelcase-css": { 1960 | "version": "2.0.1", 1961 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 1962 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 1963 | "engines": { 1964 | "node": ">= 6" 1965 | } 1966 | }, 1967 | "node_modules/caniuse-lite": { 1968 | "version": "1.0.30001620", 1969 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001620.tgz", 1970 | "integrity": "sha512-WJvYsOjd1/BYUY6SNGUosK9DUidBPDTnOARHp3fSmFO1ekdxaY6nKRttEVrfMmYi80ctS0kz1wiWmm14fVc3ew==", 1971 | "dev": true, 1972 | "funding": [ 1973 | { 1974 | "type": "opencollective", 1975 | "url": "https://opencollective.com/browserslist" 1976 | }, 1977 | { 1978 | "type": "tidelift", 1979 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1980 | }, 1981 | { 1982 | "type": "github", 1983 | "url": "https://github.com/sponsors/ai" 1984 | } 1985 | ] 1986 | }, 1987 | "node_modules/chalk": { 1988 | "version": "4.1.2", 1989 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1990 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1991 | "dev": true, 1992 | "dependencies": { 1993 | "ansi-styles": "^4.1.0", 1994 | "supports-color": "^7.1.0" 1995 | }, 1996 | "engines": { 1997 | "node": ">=10" 1998 | }, 1999 | "funding": { 2000 | "url": "https://github.com/chalk/chalk?sponsor=1" 2001 | } 2002 | }, 2003 | "node_modules/chokidar": { 2004 | "version": "3.6.0", 2005 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 2006 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 2007 | "dependencies": { 2008 | "anymatch": "~3.1.2", 2009 | "braces": "~3.0.2", 2010 | "glob-parent": "~5.1.2", 2011 | "is-binary-path": "~2.1.0", 2012 | "is-glob": "~4.0.1", 2013 | "normalize-path": "~3.0.0", 2014 | "readdirp": "~3.6.0" 2015 | }, 2016 | "engines": { 2017 | "node": ">= 8.10.0" 2018 | }, 2019 | "funding": { 2020 | "url": "https://paulmillr.com/funding/" 2021 | }, 2022 | "optionalDependencies": { 2023 | "fsevents": "~2.3.2" 2024 | } 2025 | }, 2026 | "node_modules/chokidar/node_modules/glob-parent": { 2027 | "version": "5.1.2", 2028 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2029 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2030 | "dependencies": { 2031 | "is-glob": "^4.0.1" 2032 | }, 2033 | "engines": { 2034 | "node": ">= 6" 2035 | } 2036 | }, 2037 | "node_modules/code-red": { 2038 | "version": "1.0.4", 2039 | "resolved": "https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz", 2040 | "integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==", 2041 | "dependencies": { 2042 | "@jridgewell/sourcemap-codec": "^1.4.15", 2043 | "@types/estree": "^1.0.1", 2044 | "acorn": "^8.10.0", 2045 | "estree-walker": "^3.0.3", 2046 | "periscopic": "^3.1.0" 2047 | } 2048 | }, 2049 | "node_modules/color": { 2050 | "version": "4.2.3", 2051 | "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", 2052 | "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", 2053 | "dependencies": { 2054 | "color-convert": "^2.0.1", 2055 | "color-string": "^1.9.0" 2056 | }, 2057 | "engines": { 2058 | "node": ">=12.5.0" 2059 | } 2060 | }, 2061 | "node_modules/color-convert": { 2062 | "version": "2.0.1", 2063 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 2064 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 2065 | "dependencies": { 2066 | "color-name": "~1.1.4" 2067 | }, 2068 | "engines": { 2069 | "node": ">=7.0.0" 2070 | } 2071 | }, 2072 | "node_modules/color-name": { 2073 | "version": "1.1.4", 2074 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 2075 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 2076 | }, 2077 | "node_modules/color-string": { 2078 | "version": "1.9.1", 2079 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", 2080 | "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", 2081 | "dependencies": { 2082 | "color-name": "^1.0.0", 2083 | "simple-swizzle": "^0.2.2" 2084 | } 2085 | }, 2086 | "node_modules/commander": { 2087 | "version": "4.1.1", 2088 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 2089 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 2090 | "engines": { 2091 | "node": ">= 6" 2092 | } 2093 | }, 2094 | "node_modules/concat-map": { 2095 | "version": "0.0.1", 2096 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 2097 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 2098 | "dev": true 2099 | }, 2100 | "node_modules/cookie": { 2101 | "version": "0.6.0", 2102 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", 2103 | "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", 2104 | "engines": { 2105 | "node": ">= 0.6" 2106 | } 2107 | }, 2108 | "node_modules/cross-spawn": { 2109 | "version": "7.0.3", 2110 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 2111 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 2112 | "dependencies": { 2113 | "path-key": "^3.1.0", 2114 | "shebang-command": "^2.0.0", 2115 | "which": "^2.0.1" 2116 | }, 2117 | "engines": { 2118 | "node": ">= 8" 2119 | } 2120 | }, 2121 | "node_modules/css-tree": { 2122 | "version": "2.3.1", 2123 | "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", 2124 | "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", 2125 | "dependencies": { 2126 | "mdn-data": "2.0.30", 2127 | "source-map-js": "^1.0.1" 2128 | }, 2129 | "engines": { 2130 | "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" 2131 | } 2132 | }, 2133 | "node_modules/cssesc": { 2134 | "version": "3.0.0", 2135 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 2136 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 2137 | "bin": { 2138 | "cssesc": "bin/cssesc" 2139 | }, 2140 | "engines": { 2141 | "node": ">=4" 2142 | } 2143 | }, 2144 | "node_modules/debug": { 2145 | "version": "4.3.4", 2146 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 2147 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 2148 | "dependencies": { 2149 | "ms": "2.1.2" 2150 | }, 2151 | "engines": { 2152 | "node": ">=6.0" 2153 | }, 2154 | "peerDependenciesMeta": { 2155 | "supports-color": { 2156 | "optional": true 2157 | } 2158 | } 2159 | }, 2160 | "node_modules/deep-is": { 2161 | "version": "0.1.4", 2162 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 2163 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 2164 | "dev": true 2165 | }, 2166 | "node_modules/deepmerge": { 2167 | "version": "4.3.1", 2168 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 2169 | "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 2170 | "engines": { 2171 | "node": ">=0.10.0" 2172 | } 2173 | }, 2174 | "node_modules/dequal": { 2175 | "version": "2.0.3", 2176 | "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", 2177 | "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", 2178 | "engines": { 2179 | "node": ">=6" 2180 | } 2181 | }, 2182 | "node_modules/detect-indent": { 2183 | "version": "6.1.0", 2184 | "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", 2185 | "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", 2186 | "dev": true, 2187 | "engines": { 2188 | "node": ">=8" 2189 | } 2190 | }, 2191 | "node_modules/detect-libc": { 2192 | "version": "2.0.3", 2193 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", 2194 | "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", 2195 | "engines": { 2196 | "node": ">=8" 2197 | } 2198 | }, 2199 | "node_modules/devalue": { 2200 | "version": "5.0.0", 2201 | "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.0.0.tgz", 2202 | "integrity": "sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==" 2203 | }, 2204 | "node_modules/didyoumean": { 2205 | "version": "1.2.2", 2206 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 2207 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" 2208 | }, 2209 | "node_modules/diet-sprite": { 2210 | "version": "0.0.1", 2211 | "resolved": "https://registry.npmjs.org/diet-sprite/-/diet-sprite-0.0.1.tgz", 2212 | "integrity": "sha512-zSHI2WDAn1wJqJYxcmjWfJv3Iw8oL9reQIbEyx2x2/EZ4/qmUTIo8/5qOCurnAcq61EwtJJaZ0XTy2NRYqpB5A==" 2213 | }, 2214 | "node_modules/dir-glob": { 2215 | "version": "3.0.1", 2216 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 2217 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 2218 | "dev": true, 2219 | "dependencies": { 2220 | "path-type": "^4.0.0" 2221 | }, 2222 | "engines": { 2223 | "node": ">=8" 2224 | } 2225 | }, 2226 | "node_modules/dlv": { 2227 | "version": "1.1.3", 2228 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 2229 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" 2230 | }, 2231 | "node_modules/doctrine": { 2232 | "version": "3.0.0", 2233 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 2234 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 2235 | "dev": true, 2236 | "dependencies": { 2237 | "esutils": "^2.0.2" 2238 | }, 2239 | "engines": { 2240 | "node": ">=6.0.0" 2241 | } 2242 | }, 2243 | "node_modules/earcut": { 2244 | "version": "2.2.4", 2245 | "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz", 2246 | "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==" 2247 | }, 2248 | "node_modules/eastasianwidth": { 2249 | "version": "0.2.0", 2250 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 2251 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" 2252 | }, 2253 | "node_modules/electron-to-chromium": { 2254 | "version": "1.4.774", 2255 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.774.tgz", 2256 | "integrity": "sha512-132O1XCd7zcTkzS3FgkAzKmnBuNJjK8WjcTtNuoylj7MYbqw5eXehjQ5OK91g0zm7OTKIPeaAG4CPoRfD9M1Mg==", 2257 | "dev": true 2258 | }, 2259 | "node_modules/emoji-regex": { 2260 | "version": "9.2.2", 2261 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 2262 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" 2263 | }, 2264 | "node_modules/es6-promise": { 2265 | "version": "3.3.1", 2266 | "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", 2267 | "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==", 2268 | "dev": true 2269 | }, 2270 | "node_modules/esbuild": { 2271 | "version": "0.20.2", 2272 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", 2273 | "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", 2274 | "hasInstallScript": true, 2275 | "bin": { 2276 | "esbuild": "bin/esbuild" 2277 | }, 2278 | "engines": { 2279 | "node": ">=12" 2280 | }, 2281 | "optionalDependencies": { 2282 | "@esbuild/aix-ppc64": "0.20.2", 2283 | "@esbuild/android-arm": "0.20.2", 2284 | "@esbuild/android-arm64": "0.20.2", 2285 | "@esbuild/android-x64": "0.20.2", 2286 | "@esbuild/darwin-arm64": "0.20.2", 2287 | "@esbuild/darwin-x64": "0.20.2", 2288 | "@esbuild/freebsd-arm64": "0.20.2", 2289 | "@esbuild/freebsd-x64": "0.20.2", 2290 | "@esbuild/linux-arm": "0.20.2", 2291 | "@esbuild/linux-arm64": "0.20.2", 2292 | "@esbuild/linux-ia32": "0.20.2", 2293 | "@esbuild/linux-loong64": "0.20.2", 2294 | "@esbuild/linux-mips64el": "0.20.2", 2295 | "@esbuild/linux-ppc64": "0.20.2", 2296 | "@esbuild/linux-riscv64": "0.20.2", 2297 | "@esbuild/linux-s390x": "0.20.2", 2298 | "@esbuild/linux-x64": "0.20.2", 2299 | "@esbuild/netbsd-x64": "0.20.2", 2300 | "@esbuild/openbsd-x64": "0.20.2", 2301 | "@esbuild/sunos-x64": "0.20.2", 2302 | "@esbuild/win32-arm64": "0.20.2", 2303 | "@esbuild/win32-ia32": "0.20.2", 2304 | "@esbuild/win32-x64": "0.20.2" 2305 | } 2306 | }, 2307 | "node_modules/escalade": { 2308 | "version": "3.1.2", 2309 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", 2310 | "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", 2311 | "dev": true, 2312 | "engines": { 2313 | "node": ">=6" 2314 | } 2315 | }, 2316 | "node_modules/escape-string-regexp": { 2317 | "version": "4.0.0", 2318 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 2319 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 2320 | "dev": true, 2321 | "engines": { 2322 | "node": ">=10" 2323 | }, 2324 | "funding": { 2325 | "url": "https://github.com/sponsors/sindresorhus" 2326 | } 2327 | }, 2328 | "node_modules/eslint": { 2329 | "version": "8.57.0", 2330 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", 2331 | "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", 2332 | "dev": true, 2333 | "dependencies": { 2334 | "@eslint-community/eslint-utils": "^4.2.0", 2335 | "@eslint-community/regexpp": "^4.6.1", 2336 | "@eslint/eslintrc": "^2.1.4", 2337 | "@eslint/js": "8.57.0", 2338 | "@humanwhocodes/config-array": "^0.11.14", 2339 | "@humanwhocodes/module-importer": "^1.0.1", 2340 | "@nodelib/fs.walk": "^1.2.8", 2341 | "@ungap/structured-clone": "^1.2.0", 2342 | "ajv": "^6.12.4", 2343 | "chalk": "^4.0.0", 2344 | "cross-spawn": "^7.0.2", 2345 | "debug": "^4.3.2", 2346 | "doctrine": "^3.0.0", 2347 | "escape-string-regexp": "^4.0.0", 2348 | "eslint-scope": "^7.2.2", 2349 | "eslint-visitor-keys": "^3.4.3", 2350 | "espree": "^9.6.1", 2351 | "esquery": "^1.4.2", 2352 | "esutils": "^2.0.2", 2353 | "fast-deep-equal": "^3.1.3", 2354 | "file-entry-cache": "^6.0.1", 2355 | "find-up": "^5.0.0", 2356 | "glob-parent": "^6.0.2", 2357 | "globals": "^13.19.0", 2358 | "graphemer": "^1.4.0", 2359 | "ignore": "^5.2.0", 2360 | "imurmurhash": "^0.1.4", 2361 | "is-glob": "^4.0.0", 2362 | "is-path-inside": "^3.0.3", 2363 | "js-yaml": "^4.1.0", 2364 | "json-stable-stringify-without-jsonify": "^1.0.1", 2365 | "levn": "^0.4.1", 2366 | "lodash.merge": "^4.6.2", 2367 | "minimatch": "^3.1.2", 2368 | "natural-compare": "^1.4.0", 2369 | "optionator": "^0.9.3", 2370 | "strip-ansi": "^6.0.1", 2371 | "text-table": "^0.2.0" 2372 | }, 2373 | "bin": { 2374 | "eslint": "bin/eslint.js" 2375 | }, 2376 | "engines": { 2377 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2378 | }, 2379 | "funding": { 2380 | "url": "https://opencollective.com/eslint" 2381 | } 2382 | }, 2383 | "node_modules/eslint-compat-utils": { 2384 | "version": "0.5.0", 2385 | "resolved": "https://registry.npmjs.org/eslint-compat-utils/-/eslint-compat-utils-0.5.0.tgz", 2386 | "integrity": "sha512-dc6Y8tzEcSYZMHa+CMPLi/hyo1FzNeonbhJL7Ol0ccuKQkwopJcJBA9YL/xmMTLU1eKigXo9vj9nALElWYSowg==", 2387 | "dev": true, 2388 | "dependencies": { 2389 | "semver": "^7.5.4" 2390 | }, 2391 | "engines": { 2392 | "node": ">=12" 2393 | }, 2394 | "peerDependencies": { 2395 | "eslint": ">=6.0.0" 2396 | } 2397 | }, 2398 | "node_modules/eslint-config-prettier": { 2399 | "version": "9.1.0", 2400 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", 2401 | "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", 2402 | "dev": true, 2403 | "bin": { 2404 | "eslint-config-prettier": "bin/cli.js" 2405 | }, 2406 | "peerDependencies": { 2407 | "eslint": ">=7.0.0" 2408 | } 2409 | }, 2410 | "node_modules/eslint-plugin-svelte": { 2411 | "version": "2.39.0", 2412 | "resolved": "https://registry.npmjs.org/eslint-plugin-svelte/-/eslint-plugin-svelte-2.39.0.tgz", 2413 | "integrity": "sha512-FXktBLXsrxbA+6ZvJK2z/sQOrUKyzSg3fNWK5h0reSCjr2fjAsc9ai/s/JvSl4Hgvz3nYVtTIMwarZH5RcB7BA==", 2414 | "dev": true, 2415 | "dependencies": { 2416 | "@eslint-community/eslint-utils": "^4.4.0", 2417 | "@jridgewell/sourcemap-codec": "^1.4.15", 2418 | "debug": "^4.3.4", 2419 | "eslint-compat-utils": "^0.5.0", 2420 | "esutils": "^2.0.3", 2421 | "known-css-properties": "^0.31.0", 2422 | "postcss": "^8.4.38", 2423 | "postcss-load-config": "^3.1.4", 2424 | "postcss-safe-parser": "^6.0.0", 2425 | "postcss-selector-parser": "^6.0.16", 2426 | "semver": "^7.6.0", 2427 | "svelte-eslint-parser": ">=0.36.0 <1.0.0" 2428 | }, 2429 | "engines": { 2430 | "node": "^14.17.0 || >=16.0.0" 2431 | }, 2432 | "funding": { 2433 | "url": "https://github.com/sponsors/ota-meshi" 2434 | }, 2435 | "peerDependencies": { 2436 | "eslint": "^7.0.0 || ^8.0.0-0 || ^9.0.0-0", 2437 | "svelte": "^3.37.0 || ^4.0.0 || ^5.0.0-next.112" 2438 | }, 2439 | "peerDependenciesMeta": { 2440 | "svelte": { 2441 | "optional": true 2442 | } 2443 | } 2444 | }, 2445 | "node_modules/eslint-scope": { 2446 | "version": "7.2.2", 2447 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 2448 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 2449 | "dev": true, 2450 | "dependencies": { 2451 | "esrecurse": "^4.3.0", 2452 | "estraverse": "^5.2.0" 2453 | }, 2454 | "engines": { 2455 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2456 | }, 2457 | "funding": { 2458 | "url": "https://opencollective.com/eslint" 2459 | } 2460 | }, 2461 | "node_modules/eslint-visitor-keys": { 2462 | "version": "3.4.3", 2463 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 2464 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 2465 | "dev": true, 2466 | "engines": { 2467 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2468 | }, 2469 | "funding": { 2470 | "url": "https://opencollective.com/eslint" 2471 | } 2472 | }, 2473 | "node_modules/eslint/node_modules/brace-expansion": { 2474 | "version": "1.1.11", 2475 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2476 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2477 | "dev": true, 2478 | "dependencies": { 2479 | "balanced-match": "^1.0.0", 2480 | "concat-map": "0.0.1" 2481 | } 2482 | }, 2483 | "node_modules/eslint/node_modules/minimatch": { 2484 | "version": "3.1.2", 2485 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2486 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2487 | "dev": true, 2488 | "dependencies": { 2489 | "brace-expansion": "^1.1.7" 2490 | }, 2491 | "engines": { 2492 | "node": "*" 2493 | } 2494 | }, 2495 | "node_modules/esm-env": { 2496 | "version": "1.0.0", 2497 | "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.0.0.tgz", 2498 | "integrity": "sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==" 2499 | }, 2500 | "node_modules/espree": { 2501 | "version": "9.6.1", 2502 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 2503 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 2504 | "dev": true, 2505 | "dependencies": { 2506 | "acorn": "^8.9.0", 2507 | "acorn-jsx": "^5.3.2", 2508 | "eslint-visitor-keys": "^3.4.1" 2509 | }, 2510 | "engines": { 2511 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2512 | }, 2513 | "funding": { 2514 | "url": "https://opencollective.com/eslint" 2515 | } 2516 | }, 2517 | "node_modules/esquery": { 2518 | "version": "1.5.0", 2519 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 2520 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 2521 | "dev": true, 2522 | "dependencies": { 2523 | "estraverse": "^5.1.0" 2524 | }, 2525 | "engines": { 2526 | "node": ">=0.10" 2527 | } 2528 | }, 2529 | "node_modules/esrecurse": { 2530 | "version": "4.3.0", 2531 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 2532 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 2533 | "dev": true, 2534 | "dependencies": { 2535 | "estraverse": "^5.2.0" 2536 | }, 2537 | "engines": { 2538 | "node": ">=4.0" 2539 | } 2540 | }, 2541 | "node_modules/estraverse": { 2542 | "version": "5.3.0", 2543 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2544 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2545 | "dev": true, 2546 | "engines": { 2547 | "node": ">=4.0" 2548 | } 2549 | }, 2550 | "node_modules/estree-walker": { 2551 | "version": "3.0.3", 2552 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", 2553 | "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", 2554 | "dependencies": { 2555 | "@types/estree": "^1.0.0" 2556 | } 2557 | }, 2558 | "node_modules/esutils": { 2559 | "version": "2.0.3", 2560 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 2561 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 2562 | "dev": true, 2563 | "engines": { 2564 | "node": ">=0.10.0" 2565 | } 2566 | }, 2567 | "node_modules/fast-deep-equal": { 2568 | "version": "3.1.3", 2569 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 2570 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 2571 | "dev": true 2572 | }, 2573 | "node_modules/fast-glob": { 2574 | "version": "3.3.2", 2575 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 2576 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 2577 | "dependencies": { 2578 | "@nodelib/fs.stat": "^2.0.2", 2579 | "@nodelib/fs.walk": "^1.2.3", 2580 | "glob-parent": "^5.1.2", 2581 | "merge2": "^1.3.0", 2582 | "micromatch": "^4.0.4" 2583 | }, 2584 | "engines": { 2585 | "node": ">=8.6.0" 2586 | } 2587 | }, 2588 | "node_modules/fast-glob/node_modules/glob-parent": { 2589 | "version": "5.1.2", 2590 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2591 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2592 | "dependencies": { 2593 | "is-glob": "^4.0.1" 2594 | }, 2595 | "engines": { 2596 | "node": ">= 6" 2597 | } 2598 | }, 2599 | "node_modules/fast-json-stable-stringify": { 2600 | "version": "2.1.0", 2601 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 2602 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 2603 | "dev": true 2604 | }, 2605 | "node_modules/fast-levenshtein": { 2606 | "version": "2.0.6", 2607 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 2608 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 2609 | "dev": true 2610 | }, 2611 | "node_modules/fastq": { 2612 | "version": "1.17.1", 2613 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 2614 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 2615 | "dependencies": { 2616 | "reusify": "^1.0.4" 2617 | } 2618 | }, 2619 | "node_modules/fflate": { 2620 | "version": "0.8.2", 2621 | "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz", 2622 | "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==" 2623 | }, 2624 | "node_modules/file-entry-cache": { 2625 | "version": "6.0.1", 2626 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 2627 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 2628 | "dev": true, 2629 | "dependencies": { 2630 | "flat-cache": "^3.0.4" 2631 | }, 2632 | "engines": { 2633 | "node": "^10.12.0 || >=12.0.0" 2634 | } 2635 | }, 2636 | "node_modules/fill-range": { 2637 | "version": "7.0.1", 2638 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 2639 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 2640 | "dependencies": { 2641 | "to-regex-range": "^5.0.1" 2642 | }, 2643 | "engines": { 2644 | "node": ">=8" 2645 | } 2646 | }, 2647 | "node_modules/find-up": { 2648 | "version": "5.0.0", 2649 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 2650 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 2651 | "dev": true, 2652 | "dependencies": { 2653 | "locate-path": "^6.0.0", 2654 | "path-exists": "^4.0.0" 2655 | }, 2656 | "engines": { 2657 | "node": ">=10" 2658 | }, 2659 | "funding": { 2660 | "url": "https://github.com/sponsors/sindresorhus" 2661 | } 2662 | }, 2663 | "node_modules/flat-cache": { 2664 | "version": "3.2.0", 2665 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 2666 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 2667 | "dev": true, 2668 | "dependencies": { 2669 | "flatted": "^3.2.9", 2670 | "keyv": "^4.5.3", 2671 | "rimraf": "^3.0.2" 2672 | }, 2673 | "engines": { 2674 | "node": "^10.12.0 || >=12.0.0" 2675 | } 2676 | }, 2677 | "node_modules/flatted": { 2678 | "version": "3.3.1", 2679 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", 2680 | "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", 2681 | "dev": true 2682 | }, 2683 | "node_modules/foreground-child": { 2684 | "version": "3.1.1", 2685 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", 2686 | "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", 2687 | "dependencies": { 2688 | "cross-spawn": "^7.0.0", 2689 | "signal-exit": "^4.0.1" 2690 | }, 2691 | "engines": { 2692 | "node": ">=14" 2693 | }, 2694 | "funding": { 2695 | "url": "https://github.com/sponsors/isaacs" 2696 | } 2697 | }, 2698 | "node_modules/fraction.js": { 2699 | "version": "4.3.7", 2700 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", 2701 | "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", 2702 | "dev": true, 2703 | "engines": { 2704 | "node": "*" 2705 | }, 2706 | "funding": { 2707 | "type": "patreon", 2708 | "url": "https://github.com/sponsors/rawify" 2709 | } 2710 | }, 2711 | "node_modules/fs.realpath": { 2712 | "version": "1.0.0", 2713 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 2714 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 2715 | "dev": true 2716 | }, 2717 | "node_modules/fsevents": { 2718 | "version": "2.3.3", 2719 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 2720 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 2721 | "hasInstallScript": true, 2722 | "optional": true, 2723 | "os": [ 2724 | "darwin" 2725 | ], 2726 | "engines": { 2727 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2728 | } 2729 | }, 2730 | "node_modules/function-bind": { 2731 | "version": "1.1.2", 2732 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 2733 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 2734 | "funding": { 2735 | "url": "https://github.com/sponsors/ljharb" 2736 | } 2737 | }, 2738 | "node_modules/glob": { 2739 | "version": "7.2.3", 2740 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2741 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2742 | "dev": true, 2743 | "dependencies": { 2744 | "fs.realpath": "^1.0.0", 2745 | "inflight": "^1.0.4", 2746 | "inherits": "2", 2747 | "minimatch": "^3.1.1", 2748 | "once": "^1.3.0", 2749 | "path-is-absolute": "^1.0.0" 2750 | }, 2751 | "engines": { 2752 | "node": "*" 2753 | }, 2754 | "funding": { 2755 | "url": "https://github.com/sponsors/isaacs" 2756 | } 2757 | }, 2758 | "node_modules/glob-parent": { 2759 | "version": "6.0.2", 2760 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2761 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2762 | "dependencies": { 2763 | "is-glob": "^4.0.3" 2764 | }, 2765 | "engines": { 2766 | "node": ">=10.13.0" 2767 | } 2768 | }, 2769 | "node_modules/glob/node_modules/brace-expansion": { 2770 | "version": "1.1.11", 2771 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2772 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2773 | "dev": true, 2774 | "dependencies": { 2775 | "balanced-match": "^1.0.0", 2776 | "concat-map": "0.0.1" 2777 | } 2778 | }, 2779 | "node_modules/glob/node_modules/minimatch": { 2780 | "version": "3.1.2", 2781 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2782 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2783 | "dev": true, 2784 | "dependencies": { 2785 | "brace-expansion": "^1.1.7" 2786 | }, 2787 | "engines": { 2788 | "node": "*" 2789 | } 2790 | }, 2791 | "node_modules/globals": { 2792 | "version": "13.24.0", 2793 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 2794 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 2795 | "dev": true, 2796 | "dependencies": { 2797 | "type-fest": "^0.20.2" 2798 | }, 2799 | "engines": { 2800 | "node": ">=8" 2801 | }, 2802 | "funding": { 2803 | "url": "https://github.com/sponsors/sindresorhus" 2804 | } 2805 | }, 2806 | "node_modules/globalyzer": { 2807 | "version": "0.1.0", 2808 | "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", 2809 | "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==" 2810 | }, 2811 | "node_modules/globby": { 2812 | "version": "11.1.0", 2813 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 2814 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 2815 | "dev": true, 2816 | "dependencies": { 2817 | "array-union": "^2.1.0", 2818 | "dir-glob": "^3.0.1", 2819 | "fast-glob": "^3.2.9", 2820 | "ignore": "^5.2.0", 2821 | "merge2": "^1.4.1", 2822 | "slash": "^3.0.0" 2823 | }, 2824 | "engines": { 2825 | "node": ">=10" 2826 | }, 2827 | "funding": { 2828 | "url": "https://github.com/sponsors/sindresorhus" 2829 | } 2830 | }, 2831 | "node_modules/globrex": { 2832 | "version": "0.1.2", 2833 | "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", 2834 | "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==" 2835 | }, 2836 | "node_modules/graceful-fs": { 2837 | "version": "4.2.11", 2838 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2839 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 2840 | "dev": true 2841 | }, 2842 | "node_modules/graphemer": { 2843 | "version": "1.4.0", 2844 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2845 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 2846 | "dev": true 2847 | }, 2848 | "node_modules/has-flag": { 2849 | "version": "4.0.0", 2850 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2851 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2852 | "dev": true, 2853 | "engines": { 2854 | "node": ">=8" 2855 | } 2856 | }, 2857 | "node_modules/hasown": { 2858 | "version": "2.0.2", 2859 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 2860 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 2861 | "dependencies": { 2862 | "function-bind": "^1.1.2" 2863 | }, 2864 | "engines": { 2865 | "node": ">= 0.4" 2866 | } 2867 | }, 2868 | "node_modules/ignore": { 2869 | "version": "5.3.1", 2870 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", 2871 | "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", 2872 | "dev": true, 2873 | "engines": { 2874 | "node": ">= 4" 2875 | } 2876 | }, 2877 | "node_modules/imagetools-core": { 2878 | "version": "7.0.0", 2879 | "resolved": "https://registry.npmjs.org/imagetools-core/-/imagetools-core-7.0.0.tgz", 2880 | "integrity": "sha512-6fYbD7u4VIOt6fqKrOlbF77JXgUVyUmEJIPlfYVTuR/S2Ig9cX3gukGiLEU0aSetcfE7CYnhLTPtTEu4mLwhCw==", 2881 | "dependencies": { 2882 | "sharp": "^0.33.1" 2883 | }, 2884 | "engines": { 2885 | "node": ">=18.0.0" 2886 | } 2887 | }, 2888 | "node_modules/import-fresh": { 2889 | "version": "3.3.0", 2890 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2891 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2892 | "dev": true, 2893 | "dependencies": { 2894 | "parent-module": "^1.0.0", 2895 | "resolve-from": "^4.0.0" 2896 | }, 2897 | "engines": { 2898 | "node": ">=6" 2899 | }, 2900 | "funding": { 2901 | "url": "https://github.com/sponsors/sindresorhus" 2902 | } 2903 | }, 2904 | "node_modules/import-meta-resolve": { 2905 | "version": "4.1.0", 2906 | "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", 2907 | "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==", 2908 | "funding": { 2909 | "type": "github", 2910 | "url": "https://github.com/sponsors/wooorm" 2911 | } 2912 | }, 2913 | "node_modules/imurmurhash": { 2914 | "version": "0.1.4", 2915 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2916 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2917 | "dev": true, 2918 | "engines": { 2919 | "node": ">=0.8.19" 2920 | } 2921 | }, 2922 | "node_modules/inflight": { 2923 | "version": "1.0.6", 2924 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2925 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2926 | "dev": true, 2927 | "dependencies": { 2928 | "once": "^1.3.0", 2929 | "wrappy": "1" 2930 | } 2931 | }, 2932 | "node_modules/inherits": { 2933 | "version": "2.0.4", 2934 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2935 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2936 | "dev": true 2937 | }, 2938 | "node_modules/is-arrayish": { 2939 | "version": "0.3.2", 2940 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", 2941 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" 2942 | }, 2943 | "node_modules/is-binary-path": { 2944 | "version": "2.1.0", 2945 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2946 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2947 | "dependencies": { 2948 | "binary-extensions": "^2.0.0" 2949 | }, 2950 | "engines": { 2951 | "node": ">=8" 2952 | } 2953 | }, 2954 | "node_modules/is-core-module": { 2955 | "version": "2.13.1", 2956 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", 2957 | "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", 2958 | "dependencies": { 2959 | "hasown": "^2.0.0" 2960 | }, 2961 | "funding": { 2962 | "url": "https://github.com/sponsors/ljharb" 2963 | } 2964 | }, 2965 | "node_modules/is-extglob": { 2966 | "version": "2.1.1", 2967 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2968 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2969 | "engines": { 2970 | "node": ">=0.10.0" 2971 | } 2972 | }, 2973 | "node_modules/is-fullwidth-code-point": { 2974 | "version": "3.0.0", 2975 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2976 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2977 | "engines": { 2978 | "node": ">=8" 2979 | } 2980 | }, 2981 | "node_modules/is-glob": { 2982 | "version": "4.0.3", 2983 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2984 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2985 | "dependencies": { 2986 | "is-extglob": "^2.1.1" 2987 | }, 2988 | "engines": { 2989 | "node": ">=0.10.0" 2990 | } 2991 | }, 2992 | "node_modules/is-number": { 2993 | "version": "7.0.0", 2994 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2995 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2996 | "engines": { 2997 | "node": ">=0.12.0" 2998 | } 2999 | }, 3000 | "node_modules/is-path-inside": { 3001 | "version": "3.0.3", 3002 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 3003 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 3004 | "dev": true, 3005 | "engines": { 3006 | "node": ">=8" 3007 | } 3008 | }, 3009 | "node_modules/is-reference": { 3010 | "version": "3.0.2", 3011 | "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.2.tgz", 3012 | "integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==", 3013 | "dependencies": { 3014 | "@types/estree": "*" 3015 | } 3016 | }, 3017 | "node_modules/isexe": { 3018 | "version": "2.0.0", 3019 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 3020 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 3021 | }, 3022 | "node_modules/jackspeak": { 3023 | "version": "2.3.6", 3024 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", 3025 | "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", 3026 | "dependencies": { 3027 | "@isaacs/cliui": "^8.0.2" 3028 | }, 3029 | "engines": { 3030 | "node": ">=14" 3031 | }, 3032 | "funding": { 3033 | "url": "https://github.com/sponsors/isaacs" 3034 | }, 3035 | "optionalDependencies": { 3036 | "@pkgjs/parseargs": "^0.11.0" 3037 | } 3038 | }, 3039 | "node_modules/jiti": { 3040 | "version": "1.21.0", 3041 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", 3042 | "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", 3043 | "bin": { 3044 | "jiti": "bin/jiti.js" 3045 | } 3046 | }, 3047 | "node_modules/js-yaml": { 3048 | "version": "4.1.0", 3049 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 3050 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 3051 | "dev": true, 3052 | "dependencies": { 3053 | "argparse": "^2.0.1" 3054 | }, 3055 | "bin": { 3056 | "js-yaml": "bin/js-yaml.js" 3057 | } 3058 | }, 3059 | "node_modules/json-buffer": { 3060 | "version": "3.0.1", 3061 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 3062 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 3063 | "dev": true 3064 | }, 3065 | "node_modules/json-schema-traverse": { 3066 | "version": "0.4.1", 3067 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 3068 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 3069 | "dev": true 3070 | }, 3071 | "node_modules/json-stable-stringify-without-jsonify": { 3072 | "version": "1.0.1", 3073 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 3074 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 3075 | "dev": true 3076 | }, 3077 | "node_modules/keyv": { 3078 | "version": "4.5.4", 3079 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 3080 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 3081 | "dev": true, 3082 | "dependencies": { 3083 | "json-buffer": "3.0.1" 3084 | } 3085 | }, 3086 | "node_modules/kleur": { 3087 | "version": "4.1.5", 3088 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", 3089 | "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", 3090 | "engines": { 3091 | "node": ">=6" 3092 | } 3093 | }, 3094 | "node_modules/known-css-properties": { 3095 | "version": "0.31.0", 3096 | "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.31.0.tgz", 3097 | "integrity": "sha512-sBPIUGTNF0czz0mwGGUoKKJC8Q7On1GPbCSFPfyEsfHb2DyBG0Y4QtV+EVWpINSaiGKZblDNuF5AezxSgOhesQ==", 3098 | "dev": true 3099 | }, 3100 | "node_modules/levn": { 3101 | "version": "0.4.1", 3102 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 3103 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 3104 | "dev": true, 3105 | "dependencies": { 3106 | "prelude-ls": "^1.2.1", 3107 | "type-check": "~0.4.0" 3108 | }, 3109 | "engines": { 3110 | "node": ">= 0.8.0" 3111 | } 3112 | }, 3113 | "node_modules/lilconfig": { 3114 | "version": "2.1.0", 3115 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 3116 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 3117 | "engines": { 3118 | "node": ">=10" 3119 | } 3120 | }, 3121 | "node_modules/lines-and-columns": { 3122 | "version": "1.2.4", 3123 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 3124 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" 3125 | }, 3126 | "node_modules/locate-character": { 3127 | "version": "3.0.0", 3128 | "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", 3129 | "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==" 3130 | }, 3131 | "node_modules/locate-path": { 3132 | "version": "6.0.0", 3133 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 3134 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 3135 | "dev": true, 3136 | "dependencies": { 3137 | "p-locate": "^5.0.0" 3138 | }, 3139 | "engines": { 3140 | "node": ">=10" 3141 | }, 3142 | "funding": { 3143 | "url": "https://github.com/sponsors/sindresorhus" 3144 | } 3145 | }, 3146 | "node_modules/lodash.merge": { 3147 | "version": "4.6.2", 3148 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 3149 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 3150 | "dev": true 3151 | }, 3152 | "node_modules/lru-cache": { 3153 | "version": "10.2.2", 3154 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", 3155 | "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", 3156 | "engines": { 3157 | "node": "14 || >=16.14" 3158 | } 3159 | }, 3160 | "node_modules/maath": { 3161 | "version": "0.10.7", 3162 | "resolved": "https://registry.npmjs.org/maath/-/maath-0.10.7.tgz", 3163 | "integrity": "sha512-zQ2xd7dNOIVTjAS+hj22fyj1EFYmOJX6tzKjZ92r6WDoq8hyFxjuGA2q950tmR4iC/EKXoMQdSipkaJVuUHDTg==", 3164 | "peerDependencies": { 3165 | "@types/three": ">=0.144.0", 3166 | "three": ">=0.144.0" 3167 | } 3168 | }, 3169 | "node_modules/magic-string": { 3170 | "version": "0.30.10", 3171 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", 3172 | "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", 3173 | "dependencies": { 3174 | "@jridgewell/sourcemap-codec": "^1.4.15" 3175 | } 3176 | }, 3177 | "node_modules/mdn-data": { 3178 | "version": "2.0.30", 3179 | "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", 3180 | "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" 3181 | }, 3182 | "node_modules/merge2": { 3183 | "version": "1.4.1", 3184 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 3185 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 3186 | "engines": { 3187 | "node": ">= 8" 3188 | } 3189 | }, 3190 | "node_modules/meshoptimizer": { 3191 | "version": "0.18.1", 3192 | "resolved": "https://registry.npmjs.org/meshoptimizer/-/meshoptimizer-0.18.1.tgz", 3193 | "integrity": "sha512-ZhoIoL7TNV4s5B6+rx5mC//fw8/POGyNxS/DZyCJeiZ12ScLfVwRE/GfsxwiTkMYYD5DmK2/JXnEVXqL4rF+Sw==" 3194 | }, 3195 | "node_modules/micromatch": { 3196 | "version": "4.0.5", 3197 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 3198 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 3199 | "dependencies": { 3200 | "braces": "^3.0.2", 3201 | "picomatch": "^2.3.1" 3202 | }, 3203 | "engines": { 3204 | "node": ">=8.6" 3205 | } 3206 | }, 3207 | "node_modules/min-indent": { 3208 | "version": "1.0.1", 3209 | "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", 3210 | "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", 3211 | "dev": true, 3212 | "engines": { 3213 | "node": ">=4" 3214 | } 3215 | }, 3216 | "node_modules/minimatch": { 3217 | "version": "9.0.4", 3218 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", 3219 | "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", 3220 | "dependencies": { 3221 | "brace-expansion": "^2.0.1" 3222 | }, 3223 | "engines": { 3224 | "node": ">=16 || 14 >=14.17" 3225 | }, 3226 | "funding": { 3227 | "url": "https://github.com/sponsors/isaacs" 3228 | } 3229 | }, 3230 | "node_modules/minimist": { 3231 | "version": "1.2.8", 3232 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 3233 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 3234 | "dev": true, 3235 | "funding": { 3236 | "url": "https://github.com/sponsors/ljharb" 3237 | } 3238 | }, 3239 | "node_modules/minipass": { 3240 | "version": "7.1.1", 3241 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz", 3242 | "integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==", 3243 | "engines": { 3244 | "node": ">=16 || 14 >=14.17" 3245 | } 3246 | }, 3247 | "node_modules/mitt": { 3248 | "version": "3.0.1", 3249 | "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", 3250 | "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" 3251 | }, 3252 | "node_modules/mkdirp": { 3253 | "version": "0.5.6", 3254 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", 3255 | "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", 3256 | "dev": true, 3257 | "dependencies": { 3258 | "minimist": "^1.2.6" 3259 | }, 3260 | "bin": { 3261 | "mkdirp": "bin/cmd.js" 3262 | } 3263 | }, 3264 | "node_modules/mri": { 3265 | "version": "1.2.0", 3266 | "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", 3267 | "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", 3268 | "engines": { 3269 | "node": ">=4" 3270 | } 3271 | }, 3272 | "node_modules/mrmime": { 3273 | "version": "2.0.0", 3274 | "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", 3275 | "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", 3276 | "engines": { 3277 | "node": ">=10" 3278 | } 3279 | }, 3280 | "node_modules/ms": { 3281 | "version": "2.1.2", 3282 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 3283 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 3284 | }, 3285 | "node_modules/mz": { 3286 | "version": "2.7.0", 3287 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 3288 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 3289 | "dependencies": { 3290 | "any-promise": "^1.0.0", 3291 | "object-assign": "^4.0.1", 3292 | "thenify-all": "^1.0.0" 3293 | } 3294 | }, 3295 | "node_modules/nanoid": { 3296 | "version": "3.3.7", 3297 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", 3298 | "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", 3299 | "funding": [ 3300 | { 3301 | "type": "github", 3302 | "url": "https://github.com/sponsors/ai" 3303 | } 3304 | ], 3305 | "bin": { 3306 | "nanoid": "bin/nanoid.cjs" 3307 | }, 3308 | "engines": { 3309 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 3310 | } 3311 | }, 3312 | "node_modules/natural-compare": { 3313 | "version": "1.4.0", 3314 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 3315 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 3316 | "dev": true 3317 | }, 3318 | "node_modules/node-releases": { 3319 | "version": "2.0.14", 3320 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", 3321 | "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", 3322 | "dev": true 3323 | }, 3324 | "node_modules/normalize-path": { 3325 | "version": "3.0.0", 3326 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 3327 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 3328 | "engines": { 3329 | "node": ">=0.10.0" 3330 | } 3331 | }, 3332 | "node_modules/normalize-range": { 3333 | "version": "0.1.2", 3334 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 3335 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 3336 | "dev": true, 3337 | "engines": { 3338 | "node": ">=0.10.0" 3339 | } 3340 | }, 3341 | "node_modules/object-assign": { 3342 | "version": "4.1.1", 3343 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 3344 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 3345 | "engines": { 3346 | "node": ">=0.10.0" 3347 | } 3348 | }, 3349 | "node_modules/object-hash": { 3350 | "version": "3.0.0", 3351 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 3352 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 3353 | "engines": { 3354 | "node": ">= 6" 3355 | } 3356 | }, 3357 | "node_modules/once": { 3358 | "version": "1.4.0", 3359 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3360 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3361 | "dev": true, 3362 | "dependencies": { 3363 | "wrappy": "1" 3364 | } 3365 | }, 3366 | "node_modules/optionator": { 3367 | "version": "0.9.4", 3368 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 3369 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 3370 | "dev": true, 3371 | "dependencies": { 3372 | "deep-is": "^0.1.3", 3373 | "fast-levenshtein": "^2.0.6", 3374 | "levn": "^0.4.1", 3375 | "prelude-ls": "^1.2.1", 3376 | "type-check": "^0.4.0", 3377 | "word-wrap": "^1.2.5" 3378 | }, 3379 | "engines": { 3380 | "node": ">= 0.8.0" 3381 | } 3382 | }, 3383 | "node_modules/p-limit": { 3384 | "version": "3.1.0", 3385 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3386 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3387 | "dev": true, 3388 | "dependencies": { 3389 | "yocto-queue": "^0.1.0" 3390 | }, 3391 | "engines": { 3392 | "node": ">=10" 3393 | }, 3394 | "funding": { 3395 | "url": "https://github.com/sponsors/sindresorhus" 3396 | } 3397 | }, 3398 | "node_modules/p-locate": { 3399 | "version": "5.0.0", 3400 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3401 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3402 | "dev": true, 3403 | "dependencies": { 3404 | "p-limit": "^3.0.2" 3405 | }, 3406 | "engines": { 3407 | "node": ">=10" 3408 | }, 3409 | "funding": { 3410 | "url": "https://github.com/sponsors/sindresorhus" 3411 | } 3412 | }, 3413 | "node_modules/parent-module": { 3414 | "version": "1.0.1", 3415 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3416 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3417 | "dev": true, 3418 | "dependencies": { 3419 | "callsites": "^3.0.0" 3420 | }, 3421 | "engines": { 3422 | "node": ">=6" 3423 | } 3424 | }, 3425 | "node_modules/path-exists": { 3426 | "version": "4.0.0", 3427 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3428 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3429 | "dev": true, 3430 | "engines": { 3431 | "node": ">=8" 3432 | } 3433 | }, 3434 | "node_modules/path-is-absolute": { 3435 | "version": "1.0.1", 3436 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3437 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3438 | "dev": true, 3439 | "engines": { 3440 | "node": ">=0.10.0" 3441 | } 3442 | }, 3443 | "node_modules/path-key": { 3444 | "version": "3.1.1", 3445 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3446 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3447 | "engines": { 3448 | "node": ">=8" 3449 | } 3450 | }, 3451 | "node_modules/path-parse": { 3452 | "version": "1.0.7", 3453 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3454 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 3455 | }, 3456 | "node_modules/path-scurry": { 3457 | "version": "1.11.1", 3458 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 3459 | "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 3460 | "dependencies": { 3461 | "lru-cache": "^10.2.0", 3462 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 3463 | }, 3464 | "engines": { 3465 | "node": ">=16 || 14 >=14.18" 3466 | }, 3467 | "funding": { 3468 | "url": "https://github.com/sponsors/isaacs" 3469 | } 3470 | }, 3471 | "node_modules/path-type": { 3472 | "version": "4.0.0", 3473 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3474 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3475 | "dev": true, 3476 | "engines": { 3477 | "node": ">=8" 3478 | } 3479 | }, 3480 | "node_modules/periscopic": { 3481 | "version": "3.1.0", 3482 | "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", 3483 | "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", 3484 | "dependencies": { 3485 | "@types/estree": "^1.0.0", 3486 | "estree-walker": "^3.0.0", 3487 | "is-reference": "^3.0.0" 3488 | } 3489 | }, 3490 | "node_modules/picocolors": { 3491 | "version": "1.0.1", 3492 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", 3493 | "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" 3494 | }, 3495 | "node_modules/picomatch": { 3496 | "version": "2.3.1", 3497 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3498 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3499 | "engines": { 3500 | "node": ">=8.6" 3501 | }, 3502 | "funding": { 3503 | "url": "https://github.com/sponsors/jonschlinkert" 3504 | } 3505 | }, 3506 | "node_modules/pify": { 3507 | "version": "2.3.0", 3508 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 3509 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 3510 | "engines": { 3511 | "node": ">=0.10.0" 3512 | } 3513 | }, 3514 | "node_modules/pirates": { 3515 | "version": "4.0.6", 3516 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 3517 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 3518 | "engines": { 3519 | "node": ">= 6" 3520 | } 3521 | }, 3522 | "node_modules/postcss": { 3523 | "version": "8.4.38", 3524 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", 3525 | "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", 3526 | "funding": [ 3527 | { 3528 | "type": "opencollective", 3529 | "url": "https://opencollective.com/postcss/" 3530 | }, 3531 | { 3532 | "type": "tidelift", 3533 | "url": "https://tidelift.com/funding/github/npm/postcss" 3534 | }, 3535 | { 3536 | "type": "github", 3537 | "url": "https://github.com/sponsors/ai" 3538 | } 3539 | ], 3540 | "dependencies": { 3541 | "nanoid": "^3.3.7", 3542 | "picocolors": "^1.0.0", 3543 | "source-map-js": "^1.2.0" 3544 | }, 3545 | "engines": { 3546 | "node": "^10 || ^12 || >=14" 3547 | } 3548 | }, 3549 | "node_modules/postcss-import": { 3550 | "version": "15.1.0", 3551 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 3552 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 3553 | "dependencies": { 3554 | "postcss-value-parser": "^4.0.0", 3555 | "read-cache": "^1.0.0", 3556 | "resolve": "^1.1.7" 3557 | }, 3558 | "engines": { 3559 | "node": ">=14.0.0" 3560 | }, 3561 | "peerDependencies": { 3562 | "postcss": "^8.0.0" 3563 | } 3564 | }, 3565 | "node_modules/postcss-js": { 3566 | "version": "4.0.1", 3567 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 3568 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 3569 | "dependencies": { 3570 | "camelcase-css": "^2.0.1" 3571 | }, 3572 | "engines": { 3573 | "node": "^12 || ^14 || >= 16" 3574 | }, 3575 | "funding": { 3576 | "type": "opencollective", 3577 | "url": "https://opencollective.com/postcss/" 3578 | }, 3579 | "peerDependencies": { 3580 | "postcss": "^8.4.21" 3581 | } 3582 | }, 3583 | "node_modules/postcss-load-config": { 3584 | "version": "3.1.4", 3585 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", 3586 | "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", 3587 | "dev": true, 3588 | "dependencies": { 3589 | "lilconfig": "^2.0.5", 3590 | "yaml": "^1.10.2" 3591 | }, 3592 | "engines": { 3593 | "node": ">= 10" 3594 | }, 3595 | "funding": { 3596 | "type": "opencollective", 3597 | "url": "https://opencollective.com/postcss/" 3598 | }, 3599 | "peerDependencies": { 3600 | "postcss": ">=8.0.9", 3601 | "ts-node": ">=9.0.0" 3602 | }, 3603 | "peerDependenciesMeta": { 3604 | "postcss": { 3605 | "optional": true 3606 | }, 3607 | "ts-node": { 3608 | "optional": true 3609 | } 3610 | } 3611 | }, 3612 | "node_modules/postcss-nested": { 3613 | "version": "6.0.1", 3614 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", 3615 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", 3616 | "dependencies": { 3617 | "postcss-selector-parser": "^6.0.11" 3618 | }, 3619 | "engines": { 3620 | "node": ">=12.0" 3621 | }, 3622 | "funding": { 3623 | "type": "opencollective", 3624 | "url": "https://opencollective.com/postcss/" 3625 | }, 3626 | "peerDependencies": { 3627 | "postcss": "^8.2.14" 3628 | } 3629 | }, 3630 | "node_modules/postcss-safe-parser": { 3631 | "version": "6.0.0", 3632 | "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", 3633 | "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", 3634 | "dev": true, 3635 | "engines": { 3636 | "node": ">=12.0" 3637 | }, 3638 | "funding": { 3639 | "type": "opencollective", 3640 | "url": "https://opencollective.com/postcss/" 3641 | }, 3642 | "peerDependencies": { 3643 | "postcss": "^8.3.3" 3644 | } 3645 | }, 3646 | "node_modules/postcss-scss": { 3647 | "version": "4.0.9", 3648 | "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", 3649 | "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", 3650 | "dev": true, 3651 | "funding": [ 3652 | { 3653 | "type": "opencollective", 3654 | "url": "https://opencollective.com/postcss/" 3655 | }, 3656 | { 3657 | "type": "tidelift", 3658 | "url": "https://tidelift.com/funding/github/npm/postcss-scss" 3659 | }, 3660 | { 3661 | "type": "github", 3662 | "url": "https://github.com/sponsors/ai" 3663 | } 3664 | ], 3665 | "engines": { 3666 | "node": ">=12.0" 3667 | }, 3668 | "peerDependencies": { 3669 | "postcss": "^8.4.29" 3670 | } 3671 | }, 3672 | "node_modules/postcss-selector-parser": { 3673 | "version": "6.0.16", 3674 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz", 3675 | "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==", 3676 | "dependencies": { 3677 | "cssesc": "^3.0.0", 3678 | "util-deprecate": "^1.0.2" 3679 | }, 3680 | "engines": { 3681 | "node": ">=4" 3682 | } 3683 | }, 3684 | "node_modules/postcss-value-parser": { 3685 | "version": "4.2.0", 3686 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 3687 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" 3688 | }, 3689 | "node_modules/prelude-ls": { 3690 | "version": "1.2.1", 3691 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3692 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3693 | "dev": true, 3694 | "engines": { 3695 | "node": ">= 0.8.0" 3696 | } 3697 | }, 3698 | "node_modules/prettier": { 3699 | "version": "3.2.5", 3700 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", 3701 | "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", 3702 | "dev": true, 3703 | "bin": { 3704 | "prettier": "bin/prettier.cjs" 3705 | }, 3706 | "engines": { 3707 | "node": ">=14" 3708 | }, 3709 | "funding": { 3710 | "url": "https://github.com/prettier/prettier?sponsor=1" 3711 | } 3712 | }, 3713 | "node_modules/prettier-plugin-svelte": { 3714 | "version": "3.2.3", 3715 | "resolved": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.2.3.tgz", 3716 | "integrity": "sha512-wJq8RunyFlWco6U0WJV5wNCM7zpBFakS76UBSbmzMGpncpK98NZABaE+s7n8/APDCEVNHXC5Mpq+MLebQtsRlg==", 3717 | "dev": true, 3718 | "peerDependencies": { 3719 | "prettier": "^3.0.0", 3720 | "svelte": "^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0" 3721 | } 3722 | }, 3723 | "node_modules/punycode": { 3724 | "version": "2.3.1", 3725 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 3726 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 3727 | "dev": true, 3728 | "engines": { 3729 | "node": ">=6" 3730 | } 3731 | }, 3732 | "node_modules/queue-microtask": { 3733 | "version": "1.2.3", 3734 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3735 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3736 | "funding": [ 3737 | { 3738 | "type": "github", 3739 | "url": "https://github.com/sponsors/feross" 3740 | }, 3741 | { 3742 | "type": "patreon", 3743 | "url": "https://www.patreon.com/feross" 3744 | }, 3745 | { 3746 | "type": "consulting", 3747 | "url": "https://feross.org/support" 3748 | } 3749 | ] 3750 | }, 3751 | "node_modules/read-cache": { 3752 | "version": "1.0.0", 3753 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 3754 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 3755 | "dependencies": { 3756 | "pify": "^2.3.0" 3757 | } 3758 | }, 3759 | "node_modules/readdirp": { 3760 | "version": "3.6.0", 3761 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3762 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3763 | "dependencies": { 3764 | "picomatch": "^2.2.1" 3765 | }, 3766 | "engines": { 3767 | "node": ">=8.10.0" 3768 | } 3769 | }, 3770 | "node_modules/require-from-string": { 3771 | "version": "2.0.2", 3772 | "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", 3773 | "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", 3774 | "engines": { 3775 | "node": ">=0.10.0" 3776 | } 3777 | }, 3778 | "node_modules/resolve": { 3779 | "version": "1.22.8", 3780 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 3781 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 3782 | "dependencies": { 3783 | "is-core-module": "^2.13.0", 3784 | "path-parse": "^1.0.7", 3785 | "supports-preserve-symlinks-flag": "^1.0.0" 3786 | }, 3787 | "bin": { 3788 | "resolve": "bin/resolve" 3789 | }, 3790 | "funding": { 3791 | "url": "https://github.com/sponsors/ljharb" 3792 | } 3793 | }, 3794 | "node_modules/resolve-from": { 3795 | "version": "4.0.0", 3796 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3797 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3798 | "dev": true, 3799 | "engines": { 3800 | "node": ">=4" 3801 | } 3802 | }, 3803 | "node_modules/reusify": { 3804 | "version": "1.0.4", 3805 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3806 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3807 | "engines": { 3808 | "iojs": ">=1.0.0", 3809 | "node": ">=0.10.0" 3810 | } 3811 | }, 3812 | "node_modules/rimraf": { 3813 | "version": "3.0.2", 3814 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3815 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3816 | "dev": true, 3817 | "dependencies": { 3818 | "glob": "^7.1.3" 3819 | }, 3820 | "bin": { 3821 | "rimraf": "bin.js" 3822 | }, 3823 | "funding": { 3824 | "url": "https://github.com/sponsors/isaacs" 3825 | } 3826 | }, 3827 | "node_modules/rollup": { 3828 | "version": "4.17.2", 3829 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.17.2.tgz", 3830 | "integrity": "sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==", 3831 | "dependencies": { 3832 | "@types/estree": "1.0.5" 3833 | }, 3834 | "bin": { 3835 | "rollup": "dist/bin/rollup" 3836 | }, 3837 | "engines": { 3838 | "node": ">=18.0.0", 3839 | "npm": ">=8.0.0" 3840 | }, 3841 | "optionalDependencies": { 3842 | "@rollup/rollup-android-arm-eabi": "4.17.2", 3843 | "@rollup/rollup-android-arm64": "4.17.2", 3844 | "@rollup/rollup-darwin-arm64": "4.17.2", 3845 | "@rollup/rollup-darwin-x64": "4.17.2", 3846 | "@rollup/rollup-linux-arm-gnueabihf": "4.17.2", 3847 | "@rollup/rollup-linux-arm-musleabihf": "4.17.2", 3848 | "@rollup/rollup-linux-arm64-gnu": "4.17.2", 3849 | "@rollup/rollup-linux-arm64-musl": "4.17.2", 3850 | "@rollup/rollup-linux-powerpc64le-gnu": "4.17.2", 3851 | "@rollup/rollup-linux-riscv64-gnu": "4.17.2", 3852 | "@rollup/rollup-linux-s390x-gnu": "4.17.2", 3853 | "@rollup/rollup-linux-x64-gnu": "4.17.2", 3854 | "@rollup/rollup-linux-x64-musl": "4.17.2", 3855 | "@rollup/rollup-win32-arm64-msvc": "4.17.2", 3856 | "@rollup/rollup-win32-ia32-msvc": "4.17.2", 3857 | "@rollup/rollup-win32-x64-msvc": "4.17.2", 3858 | "fsevents": "~2.3.2" 3859 | } 3860 | }, 3861 | "node_modules/run-parallel": { 3862 | "version": "1.2.0", 3863 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3864 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3865 | "funding": [ 3866 | { 3867 | "type": "github", 3868 | "url": "https://github.com/sponsors/feross" 3869 | }, 3870 | { 3871 | "type": "patreon", 3872 | "url": "https://www.patreon.com/feross" 3873 | }, 3874 | { 3875 | "type": "consulting", 3876 | "url": "https://feross.org/support" 3877 | } 3878 | ], 3879 | "dependencies": { 3880 | "queue-microtask": "^1.2.2" 3881 | } 3882 | }, 3883 | "node_modules/sade": { 3884 | "version": "1.8.1", 3885 | "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", 3886 | "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", 3887 | "dependencies": { 3888 | "mri": "^1.1.0" 3889 | }, 3890 | "engines": { 3891 | "node": ">=6" 3892 | } 3893 | }, 3894 | "node_modules/sander": { 3895 | "version": "0.5.1", 3896 | "resolved": "https://registry.npmjs.org/sander/-/sander-0.5.1.tgz", 3897 | "integrity": "sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==", 3898 | "dev": true, 3899 | "dependencies": { 3900 | "es6-promise": "^3.1.2", 3901 | "graceful-fs": "^4.1.3", 3902 | "mkdirp": "^0.5.1", 3903 | "rimraf": "^2.5.2" 3904 | } 3905 | }, 3906 | "node_modules/sander/node_modules/rimraf": { 3907 | "version": "2.7.1", 3908 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", 3909 | "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", 3910 | "dev": true, 3911 | "dependencies": { 3912 | "glob": "^7.1.3" 3913 | }, 3914 | "bin": { 3915 | "rimraf": "bin.js" 3916 | } 3917 | }, 3918 | "node_modules/semver": { 3919 | "version": "7.6.2", 3920 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", 3921 | "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", 3922 | "bin": { 3923 | "semver": "bin/semver.js" 3924 | }, 3925 | "engines": { 3926 | "node": ">=10" 3927 | } 3928 | }, 3929 | "node_modules/set-cookie-parser": { 3930 | "version": "2.6.0", 3931 | "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz", 3932 | "integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==" 3933 | }, 3934 | "node_modules/sharp": { 3935 | "version": "0.33.4", 3936 | "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.4.tgz", 3937 | "integrity": "sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==", 3938 | "hasInstallScript": true, 3939 | "dependencies": { 3940 | "color": "^4.2.3", 3941 | "detect-libc": "^2.0.3", 3942 | "semver": "^7.6.0" 3943 | }, 3944 | "engines": { 3945 | "libvips": ">=8.15.2", 3946 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 3947 | }, 3948 | "funding": { 3949 | "url": "https://opencollective.com/libvips" 3950 | }, 3951 | "optionalDependencies": { 3952 | "@img/sharp-darwin-arm64": "0.33.4", 3953 | "@img/sharp-darwin-x64": "0.33.4", 3954 | "@img/sharp-libvips-darwin-arm64": "1.0.2", 3955 | "@img/sharp-libvips-darwin-x64": "1.0.2", 3956 | "@img/sharp-libvips-linux-arm": "1.0.2", 3957 | "@img/sharp-libvips-linux-arm64": "1.0.2", 3958 | "@img/sharp-libvips-linux-s390x": "1.0.2", 3959 | "@img/sharp-libvips-linux-x64": "1.0.2", 3960 | "@img/sharp-libvips-linuxmusl-arm64": "1.0.2", 3961 | "@img/sharp-libvips-linuxmusl-x64": "1.0.2", 3962 | "@img/sharp-linux-arm": "0.33.4", 3963 | "@img/sharp-linux-arm64": "0.33.4", 3964 | "@img/sharp-linux-s390x": "0.33.4", 3965 | "@img/sharp-linux-x64": "0.33.4", 3966 | "@img/sharp-linuxmusl-arm64": "0.33.4", 3967 | "@img/sharp-linuxmusl-x64": "0.33.4", 3968 | "@img/sharp-wasm32": "0.33.4", 3969 | "@img/sharp-win32-ia32": "0.33.4", 3970 | "@img/sharp-win32-x64": "0.33.4" 3971 | } 3972 | }, 3973 | "node_modules/shebang-command": { 3974 | "version": "2.0.0", 3975 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3976 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3977 | "dependencies": { 3978 | "shebang-regex": "^3.0.0" 3979 | }, 3980 | "engines": { 3981 | "node": ">=8" 3982 | } 3983 | }, 3984 | "node_modules/shebang-regex": { 3985 | "version": "3.0.0", 3986 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3987 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3988 | "engines": { 3989 | "node": ">=8" 3990 | } 3991 | }, 3992 | "node_modules/signal-exit": { 3993 | "version": "4.1.0", 3994 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 3995 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 3996 | "engines": { 3997 | "node": ">=14" 3998 | }, 3999 | "funding": { 4000 | "url": "https://github.com/sponsors/isaacs" 4001 | } 4002 | }, 4003 | "node_modules/simple-swizzle": { 4004 | "version": "0.2.2", 4005 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", 4006 | "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", 4007 | "dependencies": { 4008 | "is-arrayish": "^0.3.1" 4009 | } 4010 | }, 4011 | "node_modules/sirv": { 4012 | "version": "2.0.4", 4013 | "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz", 4014 | "integrity": "sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==", 4015 | "dependencies": { 4016 | "@polka/url": "^1.0.0-next.24", 4017 | "mrmime": "^2.0.0", 4018 | "totalist": "^3.0.0" 4019 | }, 4020 | "engines": { 4021 | "node": ">= 10" 4022 | } 4023 | }, 4024 | "node_modules/slash": { 4025 | "version": "3.0.0", 4026 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 4027 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 4028 | "dev": true, 4029 | "engines": { 4030 | "node": ">=8" 4031 | } 4032 | }, 4033 | "node_modules/sorcery": { 4034 | "version": "0.11.0", 4035 | "resolved": "https://registry.npmjs.org/sorcery/-/sorcery-0.11.0.tgz", 4036 | "integrity": "sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==", 4037 | "dev": true, 4038 | "dependencies": { 4039 | "@jridgewell/sourcemap-codec": "^1.4.14", 4040 | "buffer-crc32": "^0.2.5", 4041 | "minimist": "^1.2.0", 4042 | "sander": "^0.5.0" 4043 | }, 4044 | "bin": { 4045 | "sorcery": "bin/sorcery" 4046 | } 4047 | }, 4048 | "node_modules/source-map-js": { 4049 | "version": "1.2.0", 4050 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", 4051 | "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", 4052 | "engines": { 4053 | "node": ">=0.10.0" 4054 | } 4055 | }, 4056 | "node_modules/string-width": { 4057 | "version": "5.1.2", 4058 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 4059 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 4060 | "dependencies": { 4061 | "eastasianwidth": "^0.2.0", 4062 | "emoji-regex": "^9.2.2", 4063 | "strip-ansi": "^7.0.1" 4064 | }, 4065 | "engines": { 4066 | "node": ">=12" 4067 | }, 4068 | "funding": { 4069 | "url": "https://github.com/sponsors/sindresorhus" 4070 | } 4071 | }, 4072 | "node_modules/string-width-cjs": { 4073 | "name": "string-width", 4074 | "version": "4.2.3", 4075 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 4076 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 4077 | "dependencies": { 4078 | "emoji-regex": "^8.0.0", 4079 | "is-fullwidth-code-point": "^3.0.0", 4080 | "strip-ansi": "^6.0.1" 4081 | }, 4082 | "engines": { 4083 | "node": ">=8" 4084 | } 4085 | }, 4086 | "node_modules/string-width-cjs/node_modules/emoji-regex": { 4087 | "version": "8.0.0", 4088 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 4089 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" 4090 | }, 4091 | "node_modules/string-width/node_modules/ansi-regex": { 4092 | "version": "6.0.1", 4093 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 4094 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 4095 | "engines": { 4096 | "node": ">=12" 4097 | }, 4098 | "funding": { 4099 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 4100 | } 4101 | }, 4102 | "node_modules/string-width/node_modules/strip-ansi": { 4103 | "version": "7.1.0", 4104 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 4105 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 4106 | "dependencies": { 4107 | "ansi-regex": "^6.0.1" 4108 | }, 4109 | "engines": { 4110 | "node": ">=12" 4111 | }, 4112 | "funding": { 4113 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 4114 | } 4115 | }, 4116 | "node_modules/strip-ansi": { 4117 | "version": "6.0.1", 4118 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 4119 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 4120 | "dependencies": { 4121 | "ansi-regex": "^5.0.1" 4122 | }, 4123 | "engines": { 4124 | "node": ">=8" 4125 | } 4126 | }, 4127 | "node_modules/strip-ansi-cjs": { 4128 | "name": "strip-ansi", 4129 | "version": "6.0.1", 4130 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 4131 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 4132 | "dependencies": { 4133 | "ansi-regex": "^5.0.1" 4134 | }, 4135 | "engines": { 4136 | "node": ">=8" 4137 | } 4138 | }, 4139 | "node_modules/strip-indent": { 4140 | "version": "3.0.0", 4141 | "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", 4142 | "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", 4143 | "dev": true, 4144 | "dependencies": { 4145 | "min-indent": "^1.0.0" 4146 | }, 4147 | "engines": { 4148 | "node": ">=8" 4149 | } 4150 | }, 4151 | "node_modules/strip-json-comments": { 4152 | "version": "3.1.1", 4153 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 4154 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 4155 | "dev": true, 4156 | "engines": { 4157 | "node": ">=8" 4158 | }, 4159 | "funding": { 4160 | "url": "https://github.com/sponsors/sindresorhus" 4161 | } 4162 | }, 4163 | "node_modules/sucrase": { 4164 | "version": "3.35.0", 4165 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", 4166 | "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", 4167 | "dependencies": { 4168 | "@jridgewell/gen-mapping": "^0.3.2", 4169 | "commander": "^4.0.0", 4170 | "glob": "^10.3.10", 4171 | "lines-and-columns": "^1.1.6", 4172 | "mz": "^2.7.0", 4173 | "pirates": "^4.0.1", 4174 | "ts-interface-checker": "^0.1.9" 4175 | }, 4176 | "bin": { 4177 | "sucrase": "bin/sucrase", 4178 | "sucrase-node": "bin/sucrase-node" 4179 | }, 4180 | "engines": { 4181 | "node": ">=16 || 14 >=14.17" 4182 | } 4183 | }, 4184 | "node_modules/sucrase/node_modules/glob": { 4185 | "version": "10.3.15", 4186 | "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz", 4187 | "integrity": "sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==", 4188 | "dependencies": { 4189 | "foreground-child": "^3.1.0", 4190 | "jackspeak": "^2.3.6", 4191 | "minimatch": "^9.0.1", 4192 | "minipass": "^7.0.4", 4193 | "path-scurry": "^1.11.0" 4194 | }, 4195 | "bin": { 4196 | "glob": "dist/esm/bin.mjs" 4197 | }, 4198 | "engines": { 4199 | "node": ">=16 || 14 >=14.18" 4200 | }, 4201 | "funding": { 4202 | "url": "https://github.com/sponsors/isaacs" 4203 | } 4204 | }, 4205 | "node_modules/supports-color": { 4206 | "version": "7.2.0", 4207 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 4208 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 4209 | "dev": true, 4210 | "dependencies": { 4211 | "has-flag": "^4.0.0" 4212 | }, 4213 | "engines": { 4214 | "node": ">=8" 4215 | } 4216 | }, 4217 | "node_modules/supports-preserve-symlinks-flag": { 4218 | "version": "1.0.0", 4219 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 4220 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 4221 | "engines": { 4222 | "node": ">= 0.4" 4223 | }, 4224 | "funding": { 4225 | "url": "https://github.com/sponsors/ljharb" 4226 | } 4227 | }, 4228 | "node_modules/svelte": { 4229 | "version": "4.2.17", 4230 | "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.17.tgz", 4231 | "integrity": "sha512-N7m1YnoXtRf5wya5Gyx3TWuTddI4nAyayyIWFojiWV5IayDYNV5i2mRp/7qNGol4DtxEYxljmrbgp1HM6hUbmQ==", 4232 | "dependencies": { 4233 | "@ampproject/remapping": "^2.2.1", 4234 | "@jridgewell/sourcemap-codec": "^1.4.15", 4235 | "@jridgewell/trace-mapping": "^0.3.18", 4236 | "@types/estree": "^1.0.1", 4237 | "acorn": "^8.9.0", 4238 | "aria-query": "^5.3.0", 4239 | "axobject-query": "^4.0.0", 4240 | "code-red": "^1.0.3", 4241 | "css-tree": "^2.3.1", 4242 | "estree-walker": "^3.0.3", 4243 | "is-reference": "^3.0.1", 4244 | "locate-character": "^3.0.0", 4245 | "magic-string": "^0.30.4", 4246 | "periscopic": "^3.1.0" 4247 | }, 4248 | "engines": { 4249 | "node": ">=16" 4250 | } 4251 | }, 4252 | "node_modules/svelte-check": { 4253 | "version": "3.7.1", 4254 | "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-3.7.1.tgz", 4255 | "integrity": "sha512-U4uJoLCzmz2o2U33c7mPDJNhRYX/DNFV11XTUDlFxaKLsO7P+40gvJHMPpoRfa24jqZfST4/G9fGNcUGMO8NAQ==", 4256 | "dev": true, 4257 | "dependencies": { 4258 | "@jridgewell/trace-mapping": "^0.3.17", 4259 | "chokidar": "^3.4.1", 4260 | "fast-glob": "^3.2.7", 4261 | "import-fresh": "^3.2.1", 4262 | "picocolors": "^1.0.0", 4263 | "sade": "^1.7.4", 4264 | "svelte-preprocess": "^5.1.3", 4265 | "typescript": "^5.0.3" 4266 | }, 4267 | "bin": { 4268 | "svelte-check": "bin/svelte-check" 4269 | }, 4270 | "peerDependencies": { 4271 | "svelte": "^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0" 4272 | } 4273 | }, 4274 | "node_modules/svelte-eslint-parser": { 4275 | "version": "0.36.0", 4276 | "resolved": "https://registry.npmjs.org/svelte-eslint-parser/-/svelte-eslint-parser-0.36.0.tgz", 4277 | "integrity": "sha512-/6YmUSr0FAVxW8dXNdIMydBnddPMHzaHirAZ7RrT21XYdgGGZMh0LQG6CZsvAFS4r2Y4ItUuCQc8TQ3urB30mQ==", 4278 | "dev": true, 4279 | "dependencies": { 4280 | "eslint-scope": "^7.2.2", 4281 | "eslint-visitor-keys": "^3.4.3", 4282 | "espree": "^9.6.1", 4283 | "postcss": "^8.4.38", 4284 | "postcss-scss": "^4.0.9" 4285 | }, 4286 | "engines": { 4287 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 4288 | }, 4289 | "funding": { 4290 | "url": "https://github.com/sponsors/ota-meshi" 4291 | }, 4292 | "peerDependencies": { 4293 | "svelte": "^3.37.0 || ^4.0.0 || ^5.0.0-next.115" 4294 | }, 4295 | "peerDependenciesMeta": { 4296 | "svelte": { 4297 | "optional": true 4298 | } 4299 | } 4300 | }, 4301 | "node_modules/svelte-hmr": { 4302 | "version": "0.16.0", 4303 | "resolved": "https://registry.npmjs.org/svelte-hmr/-/svelte-hmr-0.16.0.tgz", 4304 | "integrity": "sha512-Gyc7cOS3VJzLlfj7wKS0ZnzDVdv3Pn2IuVeJPk9m2skfhcu5bq3wtIZyQGggr7/Iim5rH5cncyQft/kRLupcnA==", 4305 | "engines": { 4306 | "node": "^12.20 || ^14.13.1 || >= 16" 4307 | }, 4308 | "peerDependencies": { 4309 | "svelte": "^3.19.0 || ^4.0.0" 4310 | } 4311 | }, 4312 | "node_modules/svelte-preprocess": { 4313 | "version": "5.1.4", 4314 | "resolved": "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-5.1.4.tgz", 4315 | "integrity": "sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==", 4316 | "dev": true, 4317 | "hasInstallScript": true, 4318 | "dependencies": { 4319 | "@types/pug": "^2.0.6", 4320 | "detect-indent": "^6.1.0", 4321 | "magic-string": "^0.30.5", 4322 | "sorcery": "^0.11.0", 4323 | "strip-indent": "^3.0.0" 4324 | }, 4325 | "engines": { 4326 | "node": ">= 16.0.0" 4327 | }, 4328 | "peerDependencies": { 4329 | "@babel/core": "^7.10.2", 4330 | "coffeescript": "^2.5.1", 4331 | "less": "^3.11.3 || ^4.0.0", 4332 | "postcss": "^7 || ^8", 4333 | "postcss-load-config": "^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0", 4334 | "pug": "^3.0.0", 4335 | "sass": "^1.26.8", 4336 | "stylus": "^0.55.0", 4337 | "sugarss": "^2.0.0 || ^3.0.0 || ^4.0.0", 4338 | "svelte": "^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0", 4339 | "typescript": ">=3.9.5 || ^4.0.0 || ^5.0.0" 4340 | }, 4341 | "peerDependenciesMeta": { 4342 | "@babel/core": { 4343 | "optional": true 4344 | }, 4345 | "coffeescript": { 4346 | "optional": true 4347 | }, 4348 | "less": { 4349 | "optional": true 4350 | }, 4351 | "postcss": { 4352 | "optional": true 4353 | }, 4354 | "postcss-load-config": { 4355 | "optional": true 4356 | }, 4357 | "pug": { 4358 | "optional": true 4359 | }, 4360 | "sass": { 4361 | "optional": true 4362 | }, 4363 | "stylus": { 4364 | "optional": true 4365 | }, 4366 | "sugarss": { 4367 | "optional": true 4368 | }, 4369 | "typescript": { 4370 | "optional": true 4371 | } 4372 | } 4373 | }, 4374 | "node_modules/tailwindcss": { 4375 | "version": "3.4.3", 4376 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.3.tgz", 4377 | "integrity": "sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==", 4378 | "dependencies": { 4379 | "@alloc/quick-lru": "^5.2.0", 4380 | "arg": "^5.0.2", 4381 | "chokidar": "^3.5.3", 4382 | "didyoumean": "^1.2.2", 4383 | "dlv": "^1.1.3", 4384 | "fast-glob": "^3.3.0", 4385 | "glob-parent": "^6.0.2", 4386 | "is-glob": "^4.0.3", 4387 | "jiti": "^1.21.0", 4388 | "lilconfig": "^2.1.0", 4389 | "micromatch": "^4.0.5", 4390 | "normalize-path": "^3.0.0", 4391 | "object-hash": "^3.0.0", 4392 | "picocolors": "^1.0.0", 4393 | "postcss": "^8.4.23", 4394 | "postcss-import": "^15.1.0", 4395 | "postcss-js": "^4.0.1", 4396 | "postcss-load-config": "^4.0.1", 4397 | "postcss-nested": "^6.0.1", 4398 | "postcss-selector-parser": "^6.0.11", 4399 | "resolve": "^1.22.2", 4400 | "sucrase": "^3.32.0" 4401 | }, 4402 | "bin": { 4403 | "tailwind": "lib/cli.js", 4404 | "tailwindcss": "lib/cli.js" 4405 | }, 4406 | "engines": { 4407 | "node": ">=14.0.0" 4408 | } 4409 | }, 4410 | "node_modules/tailwindcss/node_modules/postcss-load-config": { 4411 | "version": "4.0.2", 4412 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", 4413 | "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", 4414 | "funding": [ 4415 | { 4416 | "type": "opencollective", 4417 | "url": "https://opencollective.com/postcss/" 4418 | }, 4419 | { 4420 | "type": "github", 4421 | "url": "https://github.com/sponsors/ai" 4422 | } 4423 | ], 4424 | "dependencies": { 4425 | "lilconfig": "^3.0.0", 4426 | "yaml": "^2.3.4" 4427 | }, 4428 | "engines": { 4429 | "node": ">= 14" 4430 | }, 4431 | "peerDependencies": { 4432 | "postcss": ">=8.0.9", 4433 | "ts-node": ">=9.0.0" 4434 | }, 4435 | "peerDependenciesMeta": { 4436 | "postcss": { 4437 | "optional": true 4438 | }, 4439 | "ts-node": { 4440 | "optional": true 4441 | } 4442 | } 4443 | }, 4444 | "node_modules/tailwindcss/node_modules/postcss-load-config/node_modules/lilconfig": { 4445 | "version": "3.1.1", 4446 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz", 4447 | "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==", 4448 | "engines": { 4449 | "node": ">=14" 4450 | }, 4451 | "funding": { 4452 | "url": "https://github.com/sponsors/antonk52" 4453 | } 4454 | }, 4455 | "node_modules/tailwindcss/node_modules/yaml": { 4456 | "version": "2.4.2", 4457 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.2.tgz", 4458 | "integrity": "sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==", 4459 | "bin": { 4460 | "yaml": "bin.mjs" 4461 | }, 4462 | "engines": { 4463 | "node": ">= 14" 4464 | } 4465 | }, 4466 | "node_modules/text-table": { 4467 | "version": "0.2.0", 4468 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 4469 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 4470 | "dev": true 4471 | }, 4472 | "node_modules/thenify": { 4473 | "version": "3.3.1", 4474 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 4475 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 4476 | "dependencies": { 4477 | "any-promise": "^1.0.0" 4478 | } 4479 | }, 4480 | "node_modules/thenify-all": { 4481 | "version": "1.6.0", 4482 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 4483 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 4484 | "dependencies": { 4485 | "thenify": ">= 3.1.0 < 4" 4486 | }, 4487 | "engines": { 4488 | "node": ">=0.8" 4489 | } 4490 | }, 4491 | "node_modules/three": { 4492 | "version": "0.164.1", 4493 | "resolved": "https://registry.npmjs.org/three/-/three-0.164.1.tgz", 4494 | "integrity": "sha512-iC/hUBbl1vzFny7f5GtqzVXYjMJKaTPxiCxXfrvVdBi1Sf+jhd1CAkitiFwC7mIBFCo3MrDLJG97yisoaWig0w==" 4495 | }, 4496 | "node_modules/three-instanced-uniforms-mesh": { 4497 | "version": "0.49.1", 4498 | "resolved": "https://registry.npmjs.org/three-instanced-uniforms-mesh/-/three-instanced-uniforms-mesh-0.49.1.tgz", 4499 | "integrity": "sha512-qPgPLA6JR2nQau2zAODwiVRknYndXNE6aYmTe5zESiwg9hO8AaNq1xC0hWDYOyyH+NbN2G8278NxX1hpZ+2ZgQ==", 4500 | "dependencies": { 4501 | "troika-three-utils": "^0.49.0" 4502 | }, 4503 | "peerDependencies": { 4504 | "three": ">=0.125.0" 4505 | } 4506 | }, 4507 | "node_modules/three-mesh-bvh": { 4508 | "version": "0.7.4", 4509 | "resolved": "https://registry.npmjs.org/three-mesh-bvh/-/three-mesh-bvh-0.7.4.tgz", 4510 | "integrity": "sha512-flxe0A4uflTPR6elgq/Y8VrLoljDNS899i422SxQcU3EtMj6o8z4kZRyqZqGWzR0qMf1InTZzY1/0xZl/rnvVw==", 4511 | "peerDependencies": { 4512 | "three": ">= 0.151.0" 4513 | } 4514 | }, 4515 | "node_modules/three-perf": { 4516 | "version": "1.0.10", 4517 | "resolved": "https://registry.npmjs.org/three-perf/-/three-perf-1.0.10.tgz", 4518 | "integrity": "sha512-lCur/i8U6m0ysWYhQ1yFGWOZB0QA2oVsDsfynYd65HhXxLxJfiAt8OsXmpv9PnTLacfaZclBcZHUOB9QKk3eaw==", 4519 | "dependencies": { 4520 | "troika-three-text": "^0.47.2", 4521 | "tweakpane": "^3.1.10" 4522 | }, 4523 | "peerDependencies": { 4524 | "three": ">=0.151" 4525 | } 4526 | }, 4527 | "node_modules/three-perf/node_modules/troika-three-text": { 4528 | "version": "0.47.2", 4529 | "resolved": "https://registry.npmjs.org/troika-three-text/-/troika-three-text-0.47.2.tgz", 4530 | "integrity": "sha512-qylT0F+U7xGs+/PEf3ujBdJMYWbn0Qci0kLqI5BJG2kW1wdg4T1XSxneypnF05DxFqJhEzuaOR9S2SjiyknMng==", 4531 | "dependencies": { 4532 | "bidi-js": "^1.0.2", 4533 | "troika-three-utils": "^0.47.2", 4534 | "troika-worker-utils": "^0.47.2", 4535 | "webgl-sdf-generator": "1.1.1" 4536 | }, 4537 | "peerDependencies": { 4538 | "three": ">=0.125.0" 4539 | } 4540 | }, 4541 | "node_modules/three-perf/node_modules/troika-three-utils": { 4542 | "version": "0.47.2", 4543 | "resolved": "https://registry.npmjs.org/troika-three-utils/-/troika-three-utils-0.47.2.tgz", 4544 | "integrity": "sha512-/28plhCxfKtH7MSxEGx8e3b/OXU5A0xlwl+Sbdp0H8FXUHKZDoksduEKmjQayXYtxAyuUiCRunYIv/8Vi7aiyg==", 4545 | "peerDependencies": { 4546 | "three": ">=0.125.0" 4547 | } 4548 | }, 4549 | "node_modules/three-perf/node_modules/troika-worker-utils": { 4550 | "version": "0.47.2", 4551 | "resolved": "https://registry.npmjs.org/troika-worker-utils/-/troika-worker-utils-0.47.2.tgz", 4552 | "integrity": "sha512-mzss4MeyzUkYBppn4x5cdAqrhBHFEuVmMMgLMTyFV23x6GvQMyo+/R5E5Lsbrt7WSt5RfvewjcwD1DChRTA9lA==" 4553 | }, 4554 | "node_modules/tiny-glob": { 4555 | "version": "0.2.9", 4556 | "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", 4557 | "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", 4558 | "dependencies": { 4559 | "globalyzer": "0.1.0", 4560 | "globrex": "^0.1.2" 4561 | } 4562 | }, 4563 | "node_modules/to-regex-range": { 4564 | "version": "5.0.1", 4565 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 4566 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 4567 | "dependencies": { 4568 | "is-number": "^7.0.0" 4569 | }, 4570 | "engines": { 4571 | "node": ">=8.0" 4572 | } 4573 | }, 4574 | "node_modules/totalist": { 4575 | "version": "3.0.1", 4576 | "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", 4577 | "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", 4578 | "engines": { 4579 | "node": ">=6" 4580 | } 4581 | }, 4582 | "node_modules/troika-three-text": { 4583 | "version": "0.49.1", 4584 | "resolved": "https://registry.npmjs.org/troika-three-text/-/troika-three-text-0.49.1.tgz", 4585 | "integrity": "sha512-lXGWxgjJP9kw4i4Wh+0k0Q/7cRfS6iOME4knKht/KozPu9GcFA9NnNpRvehIhrUawq9B0ZRw+0oiFHgRO+4Wig==", 4586 | "dependencies": { 4587 | "bidi-js": "^1.0.2", 4588 | "troika-three-utils": "^0.49.0", 4589 | "troika-worker-utils": "^0.49.0", 4590 | "webgl-sdf-generator": "1.1.1" 4591 | }, 4592 | "peerDependencies": { 4593 | "three": ">=0.125.0" 4594 | } 4595 | }, 4596 | "node_modules/troika-three-utils": { 4597 | "version": "0.49.0", 4598 | "resolved": "https://registry.npmjs.org/troika-three-utils/-/troika-three-utils-0.49.0.tgz", 4599 | "integrity": "sha512-umitFL4cT+Fm/uONmaQEq4oZlyRHWwVClaS6ZrdcueRvwc2w+cpNQ47LlJKJswpqtMFWbEhOLy0TekmcPZOdYA==", 4600 | "peerDependencies": { 4601 | "three": ">=0.125.0" 4602 | } 4603 | }, 4604 | "node_modules/troika-worker-utils": { 4605 | "version": "0.49.0", 4606 | "resolved": "https://registry.npmjs.org/troika-worker-utils/-/troika-worker-utils-0.49.0.tgz", 4607 | "integrity": "sha512-1xZHoJrG0HFfCvT/iyN41DvI/nRykiBtHqFkGaGgJwq5iXfIZFBiPPEHFpPpgyKM3Oo5ITHXP5wM2TNQszYdVg==" 4608 | }, 4609 | "node_modules/ts-api-utils": { 4610 | "version": "1.3.0", 4611 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", 4612 | "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", 4613 | "dev": true, 4614 | "engines": { 4615 | "node": ">=16" 4616 | }, 4617 | "peerDependencies": { 4618 | "typescript": ">=4.2.0" 4619 | } 4620 | }, 4621 | "node_modules/ts-interface-checker": { 4622 | "version": "0.1.13", 4623 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 4624 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" 4625 | }, 4626 | "node_modules/tslib": { 4627 | "version": "2.6.2", 4628 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", 4629 | "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", 4630 | "devOptional": true 4631 | }, 4632 | "node_modules/tweakpane": { 4633 | "version": "3.1.10", 4634 | "resolved": "https://registry.npmjs.org/tweakpane/-/tweakpane-3.1.10.tgz", 4635 | "integrity": "sha512-rqwnl/pUa7+inhI2E9ayGTqqP0EPOOn/wVvSWjZsRbZUItzNShny7pzwL3hVlaN4m9t/aZhsP0aFQ9U5VVR2VQ==", 4636 | "funding": { 4637 | "url": "https://github.com/sponsors/cocopon" 4638 | } 4639 | }, 4640 | "node_modules/type-check": { 4641 | "version": "0.4.0", 4642 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 4643 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 4644 | "dev": true, 4645 | "dependencies": { 4646 | "prelude-ls": "^1.2.1" 4647 | }, 4648 | "engines": { 4649 | "node": ">= 0.8.0" 4650 | } 4651 | }, 4652 | "node_modules/type-fest": { 4653 | "version": "0.20.2", 4654 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 4655 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 4656 | "dev": true, 4657 | "engines": { 4658 | "node": ">=10" 4659 | }, 4660 | "funding": { 4661 | "url": "https://github.com/sponsors/sindresorhus" 4662 | } 4663 | }, 4664 | "node_modules/typescript": { 4665 | "version": "5.4.5", 4666 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", 4667 | "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", 4668 | "dev": true, 4669 | "bin": { 4670 | "tsc": "bin/tsc", 4671 | "tsserver": "bin/tsserver" 4672 | }, 4673 | "engines": { 4674 | "node": ">=14.17" 4675 | } 4676 | }, 4677 | "node_modules/update-browserslist-db": { 4678 | "version": "1.0.16", 4679 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", 4680 | "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", 4681 | "dev": true, 4682 | "funding": [ 4683 | { 4684 | "type": "opencollective", 4685 | "url": "https://opencollective.com/browserslist" 4686 | }, 4687 | { 4688 | "type": "tidelift", 4689 | "url": "https://tidelift.com/funding/github/npm/browserslist" 4690 | }, 4691 | { 4692 | "type": "github", 4693 | "url": "https://github.com/sponsors/ai" 4694 | } 4695 | ], 4696 | "dependencies": { 4697 | "escalade": "^3.1.2", 4698 | "picocolors": "^1.0.1" 4699 | }, 4700 | "bin": { 4701 | "update-browserslist-db": "cli.js" 4702 | }, 4703 | "peerDependencies": { 4704 | "browserslist": ">= 4.21.0" 4705 | } 4706 | }, 4707 | "node_modules/uri-js": { 4708 | "version": "4.4.1", 4709 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 4710 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 4711 | "dev": true, 4712 | "dependencies": { 4713 | "punycode": "^2.1.0" 4714 | } 4715 | }, 4716 | "node_modules/util-deprecate": { 4717 | "version": "1.0.2", 4718 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 4719 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 4720 | }, 4721 | "node_modules/vite": { 4722 | "version": "5.2.11", 4723 | "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.11.tgz", 4724 | "integrity": "sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==", 4725 | "dependencies": { 4726 | "esbuild": "^0.20.1", 4727 | "postcss": "^8.4.38", 4728 | "rollup": "^4.13.0" 4729 | }, 4730 | "bin": { 4731 | "vite": "bin/vite.js" 4732 | }, 4733 | "engines": { 4734 | "node": "^18.0.0 || >=20.0.0" 4735 | }, 4736 | "funding": { 4737 | "url": "https://github.com/vitejs/vite?sponsor=1" 4738 | }, 4739 | "optionalDependencies": { 4740 | "fsevents": "~2.3.3" 4741 | }, 4742 | "peerDependencies": { 4743 | "@types/node": "^18.0.0 || >=20.0.0", 4744 | "less": "*", 4745 | "lightningcss": "^1.21.0", 4746 | "sass": "*", 4747 | "stylus": "*", 4748 | "sugarss": "*", 4749 | "terser": "^5.4.0" 4750 | }, 4751 | "peerDependenciesMeta": { 4752 | "@types/node": { 4753 | "optional": true 4754 | }, 4755 | "less": { 4756 | "optional": true 4757 | }, 4758 | "lightningcss": { 4759 | "optional": true 4760 | }, 4761 | "sass": { 4762 | "optional": true 4763 | }, 4764 | "stylus": { 4765 | "optional": true 4766 | }, 4767 | "sugarss": { 4768 | "optional": true 4769 | }, 4770 | "terser": { 4771 | "optional": true 4772 | } 4773 | } 4774 | }, 4775 | "node_modules/vite-imagetools": { 4776 | "version": "7.0.2", 4777 | "resolved": "https://registry.npmjs.org/vite-imagetools/-/vite-imagetools-7.0.2.tgz", 4778 | "integrity": "sha512-sA98fIhfIqPdt5qKAMMrQtBzdqK44dlmv4jEUlJMmn4GzR8CdXjKGiyU/GKUFxjReuPi0fK/dd0JhiZixZt06A==", 4779 | "dependencies": { 4780 | "@rollup/pluginutils": "^5.0.5", 4781 | "imagetools-core": "^7.0.0" 4782 | }, 4783 | "engines": { 4784 | "node": ">=18.0.0" 4785 | } 4786 | }, 4787 | "node_modules/vitefu": { 4788 | "version": "0.2.5", 4789 | "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-0.2.5.tgz", 4790 | "integrity": "sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==", 4791 | "peerDependencies": { 4792 | "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" 4793 | }, 4794 | "peerDependenciesMeta": { 4795 | "vite": { 4796 | "optional": true 4797 | } 4798 | } 4799 | }, 4800 | "node_modules/webgl-sdf-generator": { 4801 | "version": "1.1.1", 4802 | "resolved": "https://registry.npmjs.org/webgl-sdf-generator/-/webgl-sdf-generator-1.1.1.tgz", 4803 | "integrity": "sha512-9Z0JcMTFxeE+b2x1LJTdnaT8rT8aEp7MVxkNwoycNmJWwPdzoXzMh0BjJSh/AEFP+KPYZUli814h8bJZFIZ2jA==" 4804 | }, 4805 | "node_modules/which": { 4806 | "version": "2.0.2", 4807 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4808 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4809 | "dependencies": { 4810 | "isexe": "^2.0.0" 4811 | }, 4812 | "bin": { 4813 | "node-which": "bin/node-which" 4814 | }, 4815 | "engines": { 4816 | "node": ">= 8" 4817 | } 4818 | }, 4819 | "node_modules/word-wrap": { 4820 | "version": "1.2.5", 4821 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 4822 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 4823 | "dev": true, 4824 | "engines": { 4825 | "node": ">=0.10.0" 4826 | } 4827 | }, 4828 | "node_modules/wrap-ansi": { 4829 | "version": "8.1.0", 4830 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 4831 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 4832 | "dependencies": { 4833 | "ansi-styles": "^6.1.0", 4834 | "string-width": "^5.0.1", 4835 | "strip-ansi": "^7.0.1" 4836 | }, 4837 | "engines": { 4838 | "node": ">=12" 4839 | }, 4840 | "funding": { 4841 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4842 | } 4843 | }, 4844 | "node_modules/wrap-ansi-cjs": { 4845 | "name": "wrap-ansi", 4846 | "version": "7.0.0", 4847 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 4848 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 4849 | "dependencies": { 4850 | "ansi-styles": "^4.0.0", 4851 | "string-width": "^4.1.0", 4852 | "strip-ansi": "^6.0.0" 4853 | }, 4854 | "engines": { 4855 | "node": ">=10" 4856 | }, 4857 | "funding": { 4858 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4859 | } 4860 | }, 4861 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 4862 | "version": "8.0.0", 4863 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 4864 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" 4865 | }, 4866 | "node_modules/wrap-ansi-cjs/node_modules/string-width": { 4867 | "version": "4.2.3", 4868 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 4869 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 4870 | "dependencies": { 4871 | "emoji-regex": "^8.0.0", 4872 | "is-fullwidth-code-point": "^3.0.0", 4873 | "strip-ansi": "^6.0.1" 4874 | }, 4875 | "engines": { 4876 | "node": ">=8" 4877 | } 4878 | }, 4879 | "node_modules/wrap-ansi/node_modules/ansi-regex": { 4880 | "version": "6.0.1", 4881 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 4882 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 4883 | "engines": { 4884 | "node": ">=12" 4885 | }, 4886 | "funding": { 4887 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 4888 | } 4889 | }, 4890 | "node_modules/wrap-ansi/node_modules/ansi-styles": { 4891 | "version": "6.2.1", 4892 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 4893 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 4894 | "engines": { 4895 | "node": ">=12" 4896 | }, 4897 | "funding": { 4898 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 4899 | } 4900 | }, 4901 | "node_modules/wrap-ansi/node_modules/strip-ansi": { 4902 | "version": "7.1.0", 4903 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 4904 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 4905 | "dependencies": { 4906 | "ansi-regex": "^6.0.1" 4907 | }, 4908 | "engines": { 4909 | "node": ">=12" 4910 | }, 4911 | "funding": { 4912 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 4913 | } 4914 | }, 4915 | "node_modules/wrappy": { 4916 | "version": "1.0.2", 4917 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4918 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 4919 | "dev": true 4920 | }, 4921 | "node_modules/yaml": { 4922 | "version": "1.10.2", 4923 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", 4924 | "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", 4925 | "dev": true, 4926 | "engines": { 4927 | "node": ">= 6" 4928 | } 4929 | }, 4930 | "node_modules/yocto-queue": { 4931 | "version": "0.1.0", 4932 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4933 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4934 | "dev": true, 4935 | "engines": { 4936 | "node": ">=10" 4937 | }, 4938 | "funding": { 4939 | "url": "https://github.com/sponsors/sindresorhus" 4940 | } 4941 | } 4942 | } 4943 | } 4944 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "svelte-depth-3d-component", 3 | "version": "0.0.1", 4 | "private": true, 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 | "lint": "prettier --check . && eslint .", 12 | "format": "prettier --write ." 13 | }, 14 | "devDependencies": { 15 | "@sveltejs/adapter-auto": "^3.0.0", 16 | "@sveltejs/kit": "^2.0.0", 17 | "@sveltejs/vite-plugin-svelte": "^3.0.0", 18 | "@types/eslint": "^8.56.0", 19 | "@typescript-eslint/eslint-plugin": "^7.0.0", 20 | "@typescript-eslint/parser": "^7.0.0", 21 | "autoprefixer": "^10.4.19", 22 | "eslint": "^8.56.0", 23 | "eslint-config-prettier": "^9.1.0", 24 | "eslint-plugin-svelte": "^2.35.1", 25 | "postcss": "^8.4.38", 26 | "prettier": "^3.1.1", 27 | "prettier-plugin-svelte": "^3.1.2", 28 | "svelte": "^4.2.7", 29 | "svelte-check": "^3.6.0", 30 | "tailwindcss": "^3.4.3", 31 | "tslib": "^2.4.1", 32 | "typescript": "^5.0.0", 33 | "vite": "^5.0.3" 34 | }, 35 | "type": "module", 36 | "dependencies": { 37 | "@sveltejs/adapter-static": "^3.0.1", 38 | "@tailwindcss/aspect-ratio": "^0.4.2", 39 | "@threlte/core": "^7.3.0", 40 | "@threlte/extras": "^8.11.2", 41 | "@types/three": "^0.164.0", 42 | "three": "^0.164.1", 43 | "vite-imagetools": "^7.0.2" 44 | }, 45 | "license": "MIT" 46 | } -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- 1 | // See https://kit.svelte.dev/docs/types#app 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 {}; 14 | -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | svelte 3d depth effect 8 | 12 | 13 | 14 | 15 | %sveltekit.head% 16 | 17 | 18 |
%sveltekit.body%
19 | 20 | 21 | -------------------------------------------------------------------------------- /src/lib/Demo/Demo.svelte: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 17 | 18 | 19 | 39 | 40 | 46 | 47 | 69 | -------------------------------------------------------------------------------- /src/lib/Demo/Grid.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

Products

9 | 10 |
11 | {#each items as item} 12 | 13 |
14 |
15 | 20 |
21 |
22 |
23 |

{item.name}

24 |
25 |
26 | {/each} 27 |
28 |
29 | -------------------------------------------------------------------------------- /src/lib/Demo/Hero.svelte: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
17 |
18 |
19 |

20 | svelte depth based 3d effect 21 |

22 | made with threlte, three.js and tailwind by flo-bit 28 |
29 |
30 | get the code 35 |
36 |
37 | 38 |
39 | {#key images[currentImage]} 40 | 49 | {/key} 50 |
51 |
52 |
53 |
54 | -------------------------------------------------------------------------------- /src/lib/Demo/Quote.svelte: -------------------------------------------------------------------------------- 1 | 9 | 10 |
11 |
12 |
13 |
14 |
15 |

16 | "I love this component, it's so easy to use and looks amazing on my website." 17 |

18 |
19 |
20 |
21 |
22 | 23 |
24 |
25 |
26 |
Albert Einstein
27 |
Famous person
28 |
29 |
30 |
31 |
32 | -------------------------------------------------------------------------------- /src/lib/Depth3D/Depth3D.svelte: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/lib/Depth3D/Scene3D.svelte: -------------------------------------------------------------------------------- 1 | 96 | 97 | 98 | 99 | {#await map then mapValue} 100 | {#await depthMap then depthValue} 101 | 102 | 107 | 108 | 116 | 117 | 118 | {/await} 119 | {/await} 120 | -------------------------------------------------------------------------------- /src/lib/Depth3D/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Depth3D } from './Depth3D.svelte'; 2 | export { default } from './Depth3D.svelte'; 3 | -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/routes/+layout.ts: -------------------------------------------------------------------------------- 1 | export const prerender = true; 2 | -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/images/albert_einstein-depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flo-bit/svelte-depth-3d-component/f21a86a8d8c565127c4543349e282410ab5c234d/static/images/albert_einstein-depth.png -------------------------------------------------------------------------------- /static/images/albert_einstein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flo-bit/svelte-depth-3d-component/f21a86a8d8c565127c4543349e282410ab5c234d/static/images/albert_einstein.png -------------------------------------------------------------------------------- /static/images/girl-depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flo-bit/svelte-depth-3d-component/f21a86a8d8c565127c4543349e282410ab5c234d/static/images/girl-depth.png -------------------------------------------------------------------------------- /static/images/girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flo-bit/svelte-depth-3d-component/f21a86a8d8c565127c4543349e282410ab5c234d/static/images/girl.jpg -------------------------------------------------------------------------------- /static/images/mona-lisa-depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flo-bit/svelte-depth-3d-component/f21a86a8d8c565127c4543349e282410ab5c234d/static/images/mona-lisa-depth.png -------------------------------------------------------------------------------- /static/images/mona-lisa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flo-bit/svelte-depth-3d-component/f21a86a8d8c565127c4543349e282410ab5c234d/static/images/mona-lisa.jpg -------------------------------------------------------------------------------- /static/images/napoleon-crossing-the-alps-depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flo-bit/svelte-depth-3d-component/f21a86a8d8c565127c4543349e282410ab5c234d/static/images/napoleon-crossing-the-alps-depth.png -------------------------------------------------------------------------------- /static/images/napoleon-crossing-the-alps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flo-bit/svelte-depth-3d-component/f21a86a8d8c565127c4543349e282410ab5c234d/static/images/napoleon-crossing-the-alps.jpg -------------------------------------------------------------------------------- /static/images/van-gogh-self-portrait-depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flo-bit/svelte-depth-3d-component/f21a86a8d8c565127c4543349e282410ab5c234d/static/images/van-gogh-self-portrait-depth.png -------------------------------------------------------------------------------- /static/images/van-gogh-self-portrait.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flo-bit/svelte-depth-3d-component/f21a86a8d8c565127c4543349e282410ab5c234d/static/images/van-gogh-self-portrait.webp -------------------------------------------------------------------------------- /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://kit.svelte.dev/docs/integrations#preprocessors 7 | // for more information about preprocessors 8 | preprocess: vitePreprocess(), 9 | 10 | kit: { 11 | // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/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://kit.svelte.dev/docs/adapters for more information about adapters. 14 | adapter: adapter(), 15 | 16 | prerender: { 17 | handleHttpError: 'ignore' 18 | }, 19 | paths: { 20 | base: '/svelte-depth-3d-component' 21 | } 22 | } 23 | }; 24 | 25 | export default config; 26 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | export default { 3 | content: ['./src/**/*.{html,js,svelte,ts}'], 4 | theme: { 5 | extend: {} 6 | }, 7 | plugins: [require('@tailwindcss/aspect-ratio')] 8 | }; 9 | -------------------------------------------------------------------------------- /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://kit.svelte.dev/docs/configuration#alias 15 | // except $lib which is handled by https://kit.svelte.dev/docs/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 | } 20 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { sveltekit } from '@sveltejs/kit/vite'; 2 | import { defineConfig } from 'vite'; 3 | import { imagetools } from 'vite-imagetools'; 4 | 5 | export default defineConfig({ 6 | plugins: [imagetools(), sveltekit()] 7 | }); 8 | --------------------------------------------------------------------------------