├── .npmrc ├── static └── favicon.png ├── .gitignore ├── .prettierrc ├── src ├── routes │ ├── Data.svelte │ ├── Recursion.svelte │ ├── ObjectQuery.svelte │ ├── Dynamic.svelte │ └── +page.svelte ├── app.d.ts ├── app.html └── lib │ ├── utils │ ├── getType.ts │ ├── calc.ts │ ├── mediaStore.ts │ ├── converter.ts │ └── MQLEvent.ts │ └── components │ ├── MediaQuery.types.ts │ └── MediaQuery.svelte ├── .eslintignore ├── .prettierignore ├── vite.config.js ├── tsconfig.json ├── svelte.config.js ├── .eslintrc.cjs ├── .github └── workflows │ └── npm-publish.yml ├── LICENSE ├── package.json ├── README.md └── pnpm-lock.yaml /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-media-queries/HEAD/static/favicon.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true, 3 | "singleQuote": true, 4 | "trailingComma": "none", 5 | "printWidth": 100 6 | } 7 | -------------------------------------------------------------------------------- /src/routes/Data.svelte: -------------------------------------------------------------------------------- 1 | 5 | 6 |
{(name ? `${name} = ` : '') + JSON.stringify(data, null, 2)}
-------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { sveltekit } from '@sveltejs/kit/vite'; 2 | 3 | const config = { 4 | plugins: [ 5 | sveltekit(), 6 | ], 7 | optimizeDeps: { 8 | exclude: ['@urql/svelte'] 9 | }, 10 | }; 11 | 12 | export default config; -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | // See https://kit.svelte.dev/docs/types#app 4 | // for information about these interfaces 5 | declare namespace App { 6 | // interface Locals {} 7 | // interface Platform {} 8 | // interface Session {} 9 | // interface Stuff {} 10 | } 11 | -------------------------------------------------------------------------------- /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 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | %sveltekit.head% 8 | 9 | 10 |
%sveltekit.body%
11 | 12 | 13 | -------------------------------------------------------------------------------- /src/lib/utils/getType.ts: -------------------------------------------------------------------------------- 1 | import { Types } from "$lib/components/MediaQuery.types" 2 | 3 | export const getType = (value:any):Types => { 4 | if (value instanceof Object && typeof value.addListener === 'function' && typeof value.removeListener === 'function') { 5 | return Types.mediaQueryList 6 | } else if (Array.isArray(value)) { 7 | return Types.array 8 | } else if (value instanceof Object) { 9 | return Types.object 10 | } 11 | return Types.string 12 | } -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- 1 | import adapter from '@sveltejs/adapter-auto'; 2 | import preprocess from 'svelte-preprocess'; 3 | 4 | /** @type {import('@sveltejs/kit').Config} */ 5 | const config = { 6 | // Consult https://github.com/sveltejs/svelte-preprocess 7 | // for more information about preprocessors 8 | preprocess: preprocess({ 9 | typescript: { 10 | tsconfigDirectory: './tsconfig.json' 11 | } 12 | }), 13 | 14 | kit: { 15 | adapter: adapter() 16 | } 17 | }; 18 | 19 | export default config; 20 | -------------------------------------------------------------------------------- /src/routes/Recursion.svelte: -------------------------------------------------------------------------------- 1 | 13 |

Recursion query

14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | parser: '@typescript-eslint/parser', 4 | extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'], 5 | plugins: ['svelte3', '@typescript-eslint'], 6 | ignorePatterns: ['*.cjs'], 7 | overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }], 8 | settings: { 9 | 'svelte3/typescript': () => require('typescript') 10 | }, 11 | parserOptions: { 12 | sourceType: 'module', 13 | ecmaVersion: 2020 14 | }, 15 | env: { 16 | browser: true, 17 | es2017: true, 18 | node: true 19 | } 20 | }; 21 | -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- 1 | name: 'npm-publish' 2 | on: 3 | release: 4 | types: [created] 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v3 10 | # Setup .npmrc file to publish to npm 11 | - uses: actions/setup-node@v3 12 | with: 13 | node-version: '16.x' 14 | registry-url: 'https://registry.npmjs.org' 15 | - name: 'install' 16 | run: npm install 17 | - name: 'create package' 18 | run: npm run package 19 | - name: 'publish' 20 | run: npm publish ./package 21 | env: 22 | NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} 23 | -------------------------------------------------------------------------------- /src/routes/ObjectQuery.svelte: -------------------------------------------------------------------------------- 1 | 16 |

Object query (and recursion)

17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/lib/components/MediaQuery.types.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable @typescript-eslint/ban-ts-comment */ 2 | export enum Types { 3 | string = 'string', 4 | array = 'array', 5 | object = 'object', 6 | mediaQueryList = 'mediaQueryList' 7 | } 8 | 9 | export interface ObjectType { 10 | [index:string]:T 11 | } 12 | 13 | export type Query = string 14 | export type QueryArray = QueryAny[] 15 | export type QueryObject = ObjectType 16 | export type QueryAny = Query | QueryArray | QueryObject 17 | 18 | export type Matches = T 19 | //@ts-ignore 20 | export type MatchesArray = T 21 | export type MatchesObject> = T 22 | //@ts-ignore 23 | export type MatchesAny = Matches | MatchesArray | MatchesObject 24 | 25 | export type MatchesType = 26 | T extends Query ? Matches : 27 | T extends QueryObject ? MatchesObject : QueryArray -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Nikita Fedorov 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /src/routes/Dynamic.svelte: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | 17 | split(';') 18 | 19 | 20 |
21 | query = {typeof query === 'string' ? `'${query}'` : `[${query.map(r => `'${r}'`).join(', ')}]`} 22 |
23 | 24 |
25 | {#if typeof dynamic === 'object'} 26 | matches:boolean[] = [{dynamic.join(', ')}] 27 | {:else} 28 | matches:boolean = {dynamic} 29 | {/if} 30 |
31 | 32 | -------------------------------------------------------------------------------- /src/lib/utils/calc.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable @typescript-eslint/ban-ts-comment */ 2 | import { Types, type Matches, type MatchesArray, type MatchesObject } from "../components/MediaQuery.types"; 3 | import type {MQLAny, MQLArray, MQLInline, MQLObject } from "./converter"; 4 | import { getType } from "./getType"; 5 | 6 | export class Calc { 7 | static get(mql:MQLInline):Matches {return mql.media ? mql.matches : false} 8 | 9 | static inline(mql:MQLInline):Matches {return Calc.get(mql)} 10 | //@ts-ignore 11 | static array(mql:MQLArray):MatchesArray {return mql.map(mql => autoCalc(mql))}//recursion :( 12 | 13 | static object(mql:MQLObject) { 14 | const res:MatchesObject = {} 15 | for (const key in mql) { 16 | //@ts-ignore 17 | res[key] = autoCalc(mql[key]); 18 | } 19 | return res 20 | } 21 | } 22 | 23 | export function autoCalc(mql:MQLInline):Matches 24 | export function autoCalc(mql:MQLArray):MatchesArray 25 | 26 | export function autoCalc(mql:MQLAny) { 27 | const type = getType(mql) 28 | if(type === Types.mediaQueryList) return Calc.inline(mql as MediaQueryList) 29 | //@ts-ignore 30 | if(type === Types.array) return Calc.array(mql) 31 | //@ts-ignore 32 | if(type === Types.object) return Calc.object(mql) 33 | } -------------------------------------------------------------------------------- /src/lib/utils/mediaStore.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable @typescript-eslint/no-empty-function */ 2 | import { writable, type Writable } from "svelte/store" 3 | import type { Matches, QueryAny } from "../components/MediaQuery.types" 4 | import { autoCalc } from "./calc" 5 | import { autoMQL } from "./converter" 6 | import { autoMQLEvent, MQLEventMethods } from "./MQLEvent" 7 | 8 | export type Destroy = () => void 9 | 10 | type ConvertQueryAny = T extends string ? boolean : T 11 | 12 | export interface MediaStore { 13 | subscribe:Writable['subscribe'] 14 | destroy: Destroy 15 | } 16 | 17 | export function mediaStore(query:T):MediaStore> { 18 | if (typeof window === "undefined") return {...writable(undefined), destroy: () => {}}; 19 | const {subscribe, set} = writable | undefined>(undefined) 20 | // eslint-disable-next-line @typescript-eslint/ban-ts-comment 21 | //@ts-ignore 22 | const mql = autoMQL(query) 23 | const handleChange = () => set(autoCalc(mql) as ConvertQueryAny) 24 | handleChange() 25 | autoMQLEvent(mql, handleChange) 26 | return { 27 | subscribe, 28 | destroy() { 29 | autoMQLEvent(mql, handleChange, MQLEventMethods.remove) 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /src/lib/utils/converter.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable @typescript-eslint/ban-ts-comment */ 2 | 3 | import { Types, type ObjectType, type Query, type QueryAny, type QueryArray, type QueryObject } from "../components/MediaQuery.types" 4 | import { getType } from "./getType" 5 | 6 | export type MQLInline = MediaQueryList 7 | export type MQLArray = MQLAny[] 8 | export type MQLObject = ObjectType 9 | export type MQLAny = MQLInline | MQLArray | MQLObject 10 | 11 | export class MQL { 12 | static get(query:Query) {return window.matchMedia(query)} 13 | 14 | static inline(query:Query):MQLInline {return MQL.get(query)} 15 | //@ts-ignore 16 | static array(queries:QueryArray):MQLArray {return queries.map(query => autoMQL(query))} //recursion :( 17 | 18 | static object(query:QueryObject) { 19 | const res:MQLObject = {} 20 | for (const key in query) { 21 | //@ts-ignore 22 | res[key] = autoMQL(query[key]); 23 | } 24 | return res 25 | } 26 | } 27 | 28 | export function autoMQL(query:Query):MQLInline 29 | export function autoMQL(query:QueryArray):MQLArray 30 | 31 | export function autoMQL(query:QueryAny) { 32 | const type = getType(query) 33 | //@ts-ignore 34 | if (type === Types.string) return MQL.inline(query) 35 | //@ts-ignore 36 | if (type === Types.array) return MQL.array(query) 37 | //@ts-ignore 38 | if (type === Types.object) return MQL.object(query) 39 | } -------------------------------------------------------------------------------- /src/lib/utils/MQLEvent.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable @typescript-eslint/no-empty-function */ 2 | /* eslint-disable @typescript-eslint/ban-ts-comment */ 3 | import { Types } from "$lib/components/MediaQuery.types"; 4 | import type { MQLAny, MQLArray, MQLInline, MQLObject } from "./converter"; 5 | import { getType } from "./getType"; 6 | 7 | export enum MQLEventMethods { 8 | add = 'addEventListener', 9 | remove = 'removeEventListener' 10 | } 11 | 12 | export class MQLEvent { 13 | static inline(item:MQLInline, handler = () => {}, method:MQLEventMethods = MQLEventMethods.add) { 14 | (item && item[method]) && item[method]('change', handler) 15 | } 16 | static array(arr:MQLArray, handler = () => {}, method:MQLEventMethods = MQLEventMethods.add) { 17 | //@ts-ignore 18 | arr.flat(Infinity).forEach(item => autoMQLEvent(item, handler, method)) 19 | } 20 | static object(obj:MQLObject, handler = () => {}, method:MQLEventMethods = MQLEventMethods.add) { 21 | for (const key in obj) { 22 | autoMQLEvent(obj[key], handler, method) 23 | } 24 | } 25 | } 26 | 27 | export function autoMQLEvent(mql:MQLAny, handler = () => {}, method:MQLEventMethods = MQLEventMethods.add) { 28 | const type = getType(mql) 29 | if (type === Types.mediaQueryList) return MQLEvent.inline(mql as MediaQueryList, handler, method) 30 | //@ts-ignore 31 | if(type === Types.array) return MQLEvent.array(mql, handler, method) 32 | //@ts-ignore 33 | if(type === Types.object) return MQLEvent.object(mql, handler, method) 34 | } -------------------------------------------------------------------------------- /src/lib/components/MediaQuery.svelte: -------------------------------------------------------------------------------- 1 | 4 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- 1 | 10 | 11 |
12 |

13 | Change the size of this area {innerWidth}px🐥 14 |

15 | 16 |

17 | Dynamic parameters (smart🐹) 18 |

19 | 20 | 21 |
22 | 23 |

24 | Slot and the let: directiveboolean 25 |

26 | '(min-width: 200px)' 27 | 28 |
29 | (min-width: 200px) = {matches} 30 |
31 |
32 | 33 |
34 | 35 |

36 | Slot and the let: directive (Array):boolean[] 37 |

38 | ['(max-width: 768px)', '(min-width: 768px) and (max-width: 1280px)', '(min-width: 1280px)'] 39 | 40 | {@const [mobile, tablet, desktop] = matches} 41 |
42 | mobile: '(max-width: 768px)' = {mobile}

43 | tablet: '(max-width: 1280px)' = {tablet}

44 | desktop: '(min-width: 1280px)' = {desktop} 45 |
46 |
47 | 48 |
49 | 50 | 51 | 52 |
53 | 54 | 55 |
56 | 57 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "svelte-media-queries", 3 | "description": "A light and magical Svelte component for CSS media queries🐹", 4 | "version": "1.6.2", 5 | "license": "MIT", 6 | "main": "./components/MediaQuery.svelte", 7 | "svelte": "./components/MediaQuery.svelte", 8 | "repository": "https://github.com/fedorovvvv/svelte-media-queries", 9 | "author": "Nikita Fedorov ", 10 | "keywords": [ 11 | "svelte", 12 | "light", 13 | "media-query", 14 | "media-queries", 15 | "css", 16 | "css-in-svelte", 17 | "media", 18 | "query", 19 | "queries", 20 | "sveltejs", 21 | "svelte-media-queries", 22 | "svelte-queries", 23 | "svelte-media", 24 | "svelte-media-query", 25 | "svelte-v3", 26 | "svelte3" 27 | ], 28 | "scripts": { 29 | "dev": "vite dev", 30 | "build": "vite build", 31 | "package": "svelte-package", 32 | "preview": "vite preview", 33 | "check": "svelte-check --tsconfig ./tsconfig.json", 34 | "check:watch": "svelte-check --tsconfig ./tsconfig.json --watch", 35 | "lint": "prettier --check --plugin-search-dir=. . && eslint .", 36 | "format": "prettier --write --plugin-search-dir=. ." 37 | }, 38 | "devDependencies": { 39 | "@sveltejs/adapter-auto": "next", 40 | "@sveltejs/kit": "next", 41 | "@typescript-eslint/eslint-plugin": "^5.27.0", 42 | "@typescript-eslint/parser": "^5.27.0", 43 | "eslint": "^8.16.0", 44 | "eslint-config-prettier": "^8.3.0", 45 | "eslint-plugin-svelte3": "^4.0.0", 46 | "prettier": "^2.6.2", 47 | "prettier-plugin-svelte": "^2.7.0", 48 | "svelte": "^3.44.0", 49 | "svelte-check": "^2.7.1", 50 | "svelte-preprocess": "^4.10.6", 51 | "tslib": "^2.3.1", 52 | "typescript": "^4.7.2", 53 | "@sveltejs/package": "^1.0.1", 54 | "vite": "^4.0.2", 55 | "svelte2tsx": "^0.5.10" 56 | }, 57 | "type": "module", 58 | "exports": { 59 | ".": { 60 | "svelte": "./components/MediaQuery.svelte", 61 | "types": "./components/MediaQuery.svelte.d.ts" 62 | } 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Svelte CSS media queries 🐥 2 | 3 | [![npm version](http://img.shields.io/npm/v/svelte-media-queries.svg)](https://www.npmjs.com/package/svelte-media-queries) 4 | [![npm downloads](https://img.shields.io/npm/dm/svelte-media-queries.svg)](https://www.npmjs.com/package/svelte-media-queries) 5 | ![license](https://img.shields.io/npm/l/svelte-media-queries) 6 | 7 | ### [Demo - Svelte REPL](https://svelte.dev/repl/7e97f1a1d1654701a0661e076037d160?version=3.48.0) 8 | ### Lightweight, comfortable, like Svelte🐣 | Svelte store / Svelte component 9 | With TypeScript support💙 10 | 11 | [![Rate this package](https://badges.openbase.com/js/rating/svelte-media-queries.svg?style=openbase&token=myaBaR9V2YuM2LLiUs0nOTMlrXb1fGC6F9XuQa3Y0sw=)](https://openbase.com/js/svelte-media-queries?utm_source=embedded&utm_medium=badge&utm_campaign=rate-badge) 12 | 13 | ## how to install 14 | ```npm 15 | npm i svelte-media-queries 16 | ``` 17 | ### What can I do? 18 | 19 | ```js 20 | query = { 21 | "mobile": "(max-width: 480px)", 22 | "tablet": "(min-width: 480px) and (max-width: 768px)", 23 | "largeTablet": "(min-width: 768px) and (max-width: 1200px)", 24 | "desktop": "(min-width: 1200px)", 25 | "other": [ 26 | "(min-width: 1200px)", 27 | "(max-height: 900px)" 28 | ], 29 | "themes": { 30 | "dark": "(prefers-color-scheme: dark)", 31 | "light": "(prefers-color-scheme: light)" 32 | } 33 | } // 34 | ``` 35 | ```js 36 | matches = { 37 | "mobile": false, 38 | "tablet": true, 39 | "largeTablet": false, 40 | "desktop": false, 41 | "other": [ 42 | false, 43 | true 44 | ], 45 | "themes": { 46 | "dark": false, 47 | "light": true 48 | } 49 | } 50 | ``` 51 | 52 | 53 | Yes, yes, and it's all recursive and reactive🐹 54 | Try it in [Svelte REPL](https://svelte.dev/repl/7e97f1a1d1654701a0661e076037d160?version=3.48.0) 55 | 56 | ## How to use 57 | 58 | ### Query? Yes, just like in CSS🙊 59 | ```js 60 | query='(min-width: 768px) and (max-width: 1280px)' 61 | ``` 62 | ### Matches? This is your result 63 | #### Component (`bind:` directive) 64 | ``` 65 | bind:matches 66 | ------------------ 67 | bind:matches={foo} 68 | ``` 69 | #### Slot (`let:` directive) 70 | ``` 71 | let:matches 72 | ------------------ 73 | let:matches={foo} 74 | ``` 75 | ### Examples 76 | #### Store 77 | ```js 78 | 86 | ``` 87 | [query example](https://github.com/fedorovvvv/svelte-media-queries#what-can-i-do) 88 | #### Slot 89 | ```svelte 90 | 93 | 94 | 95 | {#if matches} 96 | mobile!! 97 | {/if} 98 | 99 | ``` 100 | #### Bind 101 | ```svelte 102 | 107 | 108 | 109 | 110 | {#if matches} 111 | mobile!! 112 | {/if} 113 | 114 | {#if matches} 115 | Oh my God, it's really mobile 116 | {/if} 117 | ``` 118 | 119 | ### That's not all! 120 | #### You can use an array from `query` 121 | ```js 122 | query={['(max-width: 1200px)', '(min-width: 800px)']} 123 | ``` 124 | What about matches? 125 | Matches will take everything from `query` in order 126 | ```js 127 | matches=[boolean, boolean] 128 | ``` 129 | #### You can test this in [Svelte REPL](https://svelte.dev/repl/7e97f1a1d1654701a0661e076037d160?version=3.48.0)🐥 130 | #### Example 131 | ```svelte 132 | 135 | 136 | 137 | {@const [mobile, tablet, desktop] = matches} 138 |
139 | mobile: '(max-width: 768px)' = {mobile} 140 | tablet: '(max-width: 1280px)' = {tablet} 141 | desktop: '(min-width: 1280px)' = {desktop} 142 |
143 |
144 | ``` 145 | `{@const}` - [Svelte Docs](https://svelte.dev/docs#template-syntax-const)🐹 146 | You can also use it through the array index `tablet = matches[1]` 147 | With `bind:`, everything is the same🐥 148 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | devDependencies: 4 | '@sveltejs/adapter-auto': 5 | specifier: next 6 | version: 1.0.0-next.91(@sveltejs/kit@1.0.0-next.589) 7 | '@sveltejs/kit': 8 | specifier: next 9 | version: 1.0.0-next.589(svelte@3.55.1)(vite@4.1.3) 10 | '@sveltejs/package': 11 | specifier: ^1.0.1 12 | version: 1.0.2(svelte@3.55.1)(typescript@4.9.5) 13 | '@typescript-eslint/eslint-plugin': 14 | specifier: ^5.27.0 15 | version: 5.52.0(@typescript-eslint/parser@5.52.0)(eslint@8.34.0)(typescript@4.9.5) 16 | '@typescript-eslint/parser': 17 | specifier: ^5.27.0 18 | version: 5.52.0(eslint@8.34.0)(typescript@4.9.5) 19 | eslint: 20 | specifier: ^8.16.0 21 | version: 8.34.0 22 | eslint-config-prettier: 23 | specifier: ^8.3.0 24 | version: 8.6.0(eslint@8.34.0) 25 | eslint-plugin-svelte3: 26 | specifier: ^4.0.0 27 | version: 4.0.0(eslint@8.34.0)(svelte@3.55.1) 28 | prettier: 29 | specifier: ^2.6.2 30 | version: 2.8.4 31 | prettier-plugin-svelte: 32 | specifier: ^2.7.0 33 | version: 2.9.0(prettier@2.8.4)(svelte@3.55.1) 34 | svelte: 35 | specifier: ^3.44.0 36 | version: 3.55.1 37 | svelte-check: 38 | specifier: ^2.7.1 39 | version: 2.10.3(svelte@3.55.1) 40 | svelte-preprocess: 41 | specifier: ^4.10.6 42 | version: 4.10.7(svelte@3.55.1)(typescript@4.9.5) 43 | svelte2tsx: 44 | specifier: ^0.5.10 45 | version: 0.5.23(svelte@3.55.1)(typescript@4.9.5) 46 | tslib: 47 | specifier: ^2.3.1 48 | version: 2.5.0 49 | typescript: 50 | specifier: ^4.7.2 51 | version: 4.9.5 52 | vite: 53 | specifier: ^4.0.2 54 | version: 4.1.3 55 | 56 | packages: 57 | 58 | /@esbuild/android-arm64@0.16.17: 59 | resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==} 60 | engines: {node: '>=12'} 61 | cpu: [arm64] 62 | os: [android] 63 | requiresBuild: true 64 | dev: true 65 | optional: true 66 | 67 | /@esbuild/android-arm@0.16.17: 68 | resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==} 69 | engines: {node: '>=12'} 70 | cpu: [arm] 71 | os: [android] 72 | requiresBuild: true 73 | dev: true 74 | optional: true 75 | 76 | /@esbuild/android-x64@0.16.17: 77 | resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==} 78 | engines: {node: '>=12'} 79 | cpu: [x64] 80 | os: [android] 81 | requiresBuild: true 82 | dev: true 83 | optional: true 84 | 85 | /@esbuild/darwin-arm64@0.16.17: 86 | resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==} 87 | engines: {node: '>=12'} 88 | cpu: [arm64] 89 | os: [darwin] 90 | requiresBuild: true 91 | dev: true 92 | optional: true 93 | 94 | /@esbuild/darwin-x64@0.16.17: 95 | resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==} 96 | engines: {node: '>=12'} 97 | cpu: [x64] 98 | os: [darwin] 99 | requiresBuild: true 100 | dev: true 101 | optional: true 102 | 103 | /@esbuild/freebsd-arm64@0.16.17: 104 | resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==} 105 | engines: {node: '>=12'} 106 | cpu: [arm64] 107 | os: [freebsd] 108 | requiresBuild: true 109 | dev: true 110 | optional: true 111 | 112 | /@esbuild/freebsd-x64@0.16.17: 113 | resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==} 114 | engines: {node: '>=12'} 115 | cpu: [x64] 116 | os: [freebsd] 117 | requiresBuild: true 118 | dev: true 119 | optional: true 120 | 121 | /@esbuild/linux-arm64@0.16.17: 122 | resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==} 123 | engines: {node: '>=12'} 124 | cpu: [arm64] 125 | os: [linux] 126 | requiresBuild: true 127 | dev: true 128 | optional: true 129 | 130 | /@esbuild/linux-arm@0.16.17: 131 | resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==} 132 | engines: {node: '>=12'} 133 | cpu: [arm] 134 | os: [linux] 135 | requiresBuild: true 136 | dev: true 137 | optional: true 138 | 139 | /@esbuild/linux-ia32@0.16.17: 140 | resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==} 141 | engines: {node: '>=12'} 142 | cpu: [ia32] 143 | os: [linux] 144 | requiresBuild: true 145 | dev: true 146 | optional: true 147 | 148 | /@esbuild/linux-loong64@0.16.17: 149 | resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==} 150 | engines: {node: '>=12'} 151 | cpu: [loong64] 152 | os: [linux] 153 | requiresBuild: true 154 | dev: true 155 | optional: true 156 | 157 | /@esbuild/linux-mips64el@0.16.17: 158 | resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==} 159 | engines: {node: '>=12'} 160 | cpu: [mips64el] 161 | os: [linux] 162 | requiresBuild: true 163 | dev: true 164 | optional: true 165 | 166 | /@esbuild/linux-ppc64@0.16.17: 167 | resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==} 168 | engines: {node: '>=12'} 169 | cpu: [ppc64] 170 | os: [linux] 171 | requiresBuild: true 172 | dev: true 173 | optional: true 174 | 175 | /@esbuild/linux-riscv64@0.16.17: 176 | resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==} 177 | engines: {node: '>=12'} 178 | cpu: [riscv64] 179 | os: [linux] 180 | requiresBuild: true 181 | dev: true 182 | optional: true 183 | 184 | /@esbuild/linux-s390x@0.16.17: 185 | resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==} 186 | engines: {node: '>=12'} 187 | cpu: [s390x] 188 | os: [linux] 189 | requiresBuild: true 190 | dev: true 191 | optional: true 192 | 193 | /@esbuild/linux-x64@0.16.17: 194 | resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==} 195 | engines: {node: '>=12'} 196 | cpu: [x64] 197 | os: [linux] 198 | requiresBuild: true 199 | dev: true 200 | optional: true 201 | 202 | /@esbuild/netbsd-x64@0.16.17: 203 | resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==} 204 | engines: {node: '>=12'} 205 | cpu: [x64] 206 | os: [netbsd] 207 | requiresBuild: true 208 | dev: true 209 | optional: true 210 | 211 | /@esbuild/openbsd-x64@0.16.17: 212 | resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==} 213 | engines: {node: '>=12'} 214 | cpu: [x64] 215 | os: [openbsd] 216 | requiresBuild: true 217 | dev: true 218 | optional: true 219 | 220 | /@esbuild/sunos-x64@0.16.17: 221 | resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==} 222 | engines: {node: '>=12'} 223 | cpu: [x64] 224 | os: [sunos] 225 | requiresBuild: true 226 | dev: true 227 | optional: true 228 | 229 | /@esbuild/win32-arm64@0.16.17: 230 | resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==} 231 | engines: {node: '>=12'} 232 | cpu: [arm64] 233 | os: [win32] 234 | requiresBuild: true 235 | dev: true 236 | optional: true 237 | 238 | /@esbuild/win32-ia32@0.16.17: 239 | resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==} 240 | engines: {node: '>=12'} 241 | cpu: [ia32] 242 | os: [win32] 243 | requiresBuild: true 244 | dev: true 245 | optional: true 246 | 247 | /@esbuild/win32-x64@0.16.17: 248 | resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==} 249 | engines: {node: '>=12'} 250 | cpu: [x64] 251 | os: [win32] 252 | requiresBuild: true 253 | dev: true 254 | optional: true 255 | 256 | /@eslint/eslintrc@1.4.1: 257 | resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==} 258 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 259 | dependencies: 260 | ajv: 6.12.6 261 | debug: 4.3.4 262 | espree: 9.4.1 263 | globals: 13.20.0 264 | ignore: 5.2.4 265 | import-fresh: 3.3.0 266 | js-yaml: 4.1.0 267 | minimatch: 3.1.2 268 | strip-json-comments: 3.1.1 269 | transitivePeerDependencies: 270 | - supports-color 271 | dev: true 272 | 273 | /@humanwhocodes/config-array@0.11.8: 274 | resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} 275 | engines: {node: '>=10.10.0'} 276 | dependencies: 277 | '@humanwhocodes/object-schema': 1.2.1 278 | debug: 4.3.4 279 | minimatch: 3.1.2 280 | transitivePeerDependencies: 281 | - supports-color 282 | dev: true 283 | 284 | /@humanwhocodes/module-importer@1.0.1: 285 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 286 | engines: {node: '>=12.22'} 287 | dev: true 288 | 289 | /@humanwhocodes/object-schema@1.2.1: 290 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 291 | dev: true 292 | 293 | /@jridgewell/resolve-uri@3.1.0: 294 | resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} 295 | engines: {node: '>=6.0.0'} 296 | dev: true 297 | 298 | /@jridgewell/sourcemap-codec@1.4.14: 299 | resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} 300 | dev: true 301 | 302 | /@jridgewell/trace-mapping@0.3.17: 303 | resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} 304 | dependencies: 305 | '@jridgewell/resolve-uri': 3.1.0 306 | '@jridgewell/sourcemap-codec': 1.4.14 307 | dev: true 308 | 309 | /@nodelib/fs.scandir@2.1.5: 310 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 311 | engines: {node: '>= 8'} 312 | dependencies: 313 | '@nodelib/fs.stat': 2.0.5 314 | run-parallel: 1.2.0 315 | dev: true 316 | 317 | /@nodelib/fs.stat@2.0.5: 318 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 319 | engines: {node: '>= 8'} 320 | dev: true 321 | 322 | /@nodelib/fs.walk@1.2.8: 323 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 324 | engines: {node: '>= 8'} 325 | dependencies: 326 | '@nodelib/fs.scandir': 2.1.5 327 | fastq: 1.15.0 328 | dev: true 329 | 330 | /@polka/url@1.0.0-next.21: 331 | resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==} 332 | dev: true 333 | 334 | /@sveltejs/adapter-auto@1.0.0-next.91(@sveltejs/kit@1.0.0-next.589): 335 | resolution: {integrity: sha512-U57tQdzTfFINim8tzZSARC9ztWPzwOoHwNOpGdb2o6XrD0mEQwU9DsII7dBblvzg+xCnmd0pw7PDtXz5c5t96w==} 336 | peerDependencies: 337 | '@sveltejs/kit': ^1.0.0-next.587 338 | dependencies: 339 | '@sveltejs/kit': 1.0.0-next.589(svelte@3.55.1)(vite@4.1.3) 340 | import-meta-resolve: 2.2.1 341 | dev: true 342 | 343 | /@sveltejs/kit@1.0.0-next.589(svelte@3.55.1)(vite@4.1.3): 344 | resolution: {integrity: sha512-5ABRw46z9B+cCe/YWhcx+I/azNZg1NCDEkVJifZn8ToFoJ3a1eP0OexNIrvMEWpllMbNMPcJm2TC9tnz9oPfWQ==} 345 | engines: {node: '>=16.14'} 346 | hasBin: true 347 | requiresBuild: true 348 | peerDependencies: 349 | svelte: ^3.54.0 350 | vite: ^4.0.0 351 | dependencies: 352 | '@sveltejs/vite-plugin-svelte': 2.0.2(svelte@3.55.1)(vite@4.1.3) 353 | '@types/cookie': 0.5.1 354 | cookie: 0.5.0 355 | devalue: 4.3.0 356 | esm-env: 1.0.0 357 | kleur: 4.1.5 358 | magic-string: 0.27.0 359 | mime: 3.0.0 360 | sade: 1.8.1 361 | set-cookie-parser: 2.5.1 362 | sirv: 2.0.2 363 | svelte: 3.55.1 364 | tiny-glob: 0.2.9 365 | undici: 5.14.0 366 | vite: 4.1.3 367 | transitivePeerDependencies: 368 | - supports-color 369 | dev: true 370 | 371 | /@sveltejs/package@1.0.2(svelte@3.55.1)(typescript@4.9.5): 372 | resolution: {integrity: sha512-VY9U+05d9uNFDj7ScKRlHORYlfPSHwJewBjV+V2RsnViexpLFPUrboC9SiPYDCpLnbeqwXerxhO6twGHUBGeIA==} 373 | engines: {node: ^16.14 || >=18} 374 | hasBin: true 375 | peerDependencies: 376 | svelte: ^3.44.0 377 | dependencies: 378 | chokidar: 3.5.3 379 | kleur: 4.1.5 380 | sade: 1.8.1 381 | svelte: 3.55.1 382 | svelte2tsx: 0.6.1(svelte@3.55.1)(typescript@4.9.5) 383 | transitivePeerDependencies: 384 | - typescript 385 | dev: true 386 | 387 | /@sveltejs/vite-plugin-svelte@2.0.2(svelte@3.55.1)(vite@4.1.3): 388 | resolution: {integrity: sha512-xCEan0/NNpQuL0l5aS42FjwQ6wwskdxC3pW1OeFtEKNZwRg7Evro9lac9HesGP6TdFsTv2xMes5ASQVKbCacxg==} 389 | engines: {node: ^14.18.0 || >= 16} 390 | peerDependencies: 391 | svelte: ^3.54.0 392 | vite: ^4.0.0 393 | dependencies: 394 | debug: 4.3.4 395 | deepmerge: 4.3.0 396 | kleur: 4.1.5 397 | magic-string: 0.27.0 398 | svelte: 3.55.1 399 | svelte-hmr: 0.15.1(svelte@3.55.1) 400 | vite: 4.1.3 401 | vitefu: 0.2.4(vite@4.1.3) 402 | transitivePeerDependencies: 403 | - supports-color 404 | dev: true 405 | 406 | /@types/cookie@0.5.1: 407 | resolution: {integrity: sha512-COUnqfB2+ckwXXSFInsFdOAWQzCCx+a5hq2ruyj+Vjund94RJQd4LG2u9hnvJrTgunKAaax7ancBYlDrNYxA0g==} 408 | dev: true 409 | 410 | /@types/json-schema@7.0.11: 411 | resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} 412 | dev: true 413 | 414 | /@types/node@18.14.0: 415 | resolution: {integrity: sha512-5EWrvLmglK+imbCJY0+INViFWUHg1AHel1sq4ZVSfdcNqGy9Edv3UB9IIzzg+xPaUcAgZYcfVs2fBcwDeZzU0A==} 416 | dev: true 417 | 418 | /@types/pug@2.0.6: 419 | resolution: {integrity: sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==} 420 | dev: true 421 | 422 | /@types/sass@1.43.1: 423 | resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==} 424 | dependencies: 425 | '@types/node': 18.14.0 426 | dev: true 427 | 428 | /@types/semver@7.3.13: 429 | resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} 430 | dev: true 431 | 432 | /@typescript-eslint/eslint-plugin@5.52.0(@typescript-eslint/parser@5.52.0)(eslint@8.34.0)(typescript@4.9.5): 433 | resolution: {integrity: sha512-lHazYdvYVsBokwCdKOppvYJKaJ4S41CgKBcPvyd0xjZNbvQdhn/pnJlGtQksQ/NhInzdaeaSarlBjDXHuclEbg==} 434 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 435 | peerDependencies: 436 | '@typescript-eslint/parser': ^5.0.0 437 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 438 | typescript: '*' 439 | peerDependenciesMeta: 440 | typescript: 441 | optional: true 442 | dependencies: 443 | '@typescript-eslint/parser': 5.52.0(eslint@8.34.0)(typescript@4.9.5) 444 | '@typescript-eslint/scope-manager': 5.52.0 445 | '@typescript-eslint/type-utils': 5.52.0(eslint@8.34.0)(typescript@4.9.5) 446 | '@typescript-eslint/utils': 5.52.0(eslint@8.34.0)(typescript@4.9.5) 447 | debug: 4.3.4 448 | eslint: 8.34.0 449 | grapheme-splitter: 1.0.4 450 | ignore: 5.2.4 451 | natural-compare-lite: 1.4.0 452 | regexpp: 3.2.0 453 | semver: 7.3.8 454 | tsutils: 3.21.0(typescript@4.9.5) 455 | typescript: 4.9.5 456 | transitivePeerDependencies: 457 | - supports-color 458 | dev: true 459 | 460 | /@typescript-eslint/parser@5.52.0(eslint@8.34.0)(typescript@4.9.5): 461 | resolution: {integrity: sha512-e2KiLQOZRo4Y0D/b+3y08i3jsekoSkOYStROYmPUnGMEoA0h+k2qOH5H6tcjIc68WDvGwH+PaOrP1XRzLJ6QlA==} 462 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 463 | peerDependencies: 464 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 465 | typescript: '*' 466 | peerDependenciesMeta: 467 | typescript: 468 | optional: true 469 | dependencies: 470 | '@typescript-eslint/scope-manager': 5.52.0 471 | '@typescript-eslint/types': 5.52.0 472 | '@typescript-eslint/typescript-estree': 5.52.0(typescript@4.9.5) 473 | debug: 4.3.4 474 | eslint: 8.34.0 475 | typescript: 4.9.5 476 | transitivePeerDependencies: 477 | - supports-color 478 | dev: true 479 | 480 | /@typescript-eslint/scope-manager@5.52.0: 481 | resolution: {integrity: sha512-AR7sxxfBKiNV0FWBSARxM8DmNxrwgnYMPwmpkC1Pl1n+eT8/I2NAUPuwDy/FmDcC6F8pBfmOcaxcxRHspgOBMw==} 482 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 483 | dependencies: 484 | '@typescript-eslint/types': 5.52.0 485 | '@typescript-eslint/visitor-keys': 5.52.0 486 | dev: true 487 | 488 | /@typescript-eslint/type-utils@5.52.0(eslint@8.34.0)(typescript@4.9.5): 489 | resolution: {integrity: sha512-tEKuUHfDOv852QGlpPtB3lHOoig5pyFQN/cUiZtpw99D93nEBjexRLre5sQZlkMoHry/lZr8qDAt2oAHLKA6Jw==} 490 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 491 | peerDependencies: 492 | eslint: '*' 493 | typescript: '*' 494 | peerDependenciesMeta: 495 | typescript: 496 | optional: true 497 | dependencies: 498 | '@typescript-eslint/typescript-estree': 5.52.0(typescript@4.9.5) 499 | '@typescript-eslint/utils': 5.52.0(eslint@8.34.0)(typescript@4.9.5) 500 | debug: 4.3.4 501 | eslint: 8.34.0 502 | tsutils: 3.21.0(typescript@4.9.5) 503 | typescript: 4.9.5 504 | transitivePeerDependencies: 505 | - supports-color 506 | dev: true 507 | 508 | /@typescript-eslint/types@5.52.0: 509 | resolution: {integrity: sha512-oV7XU4CHYfBhk78fS7tkum+/Dpgsfi91IIDy7fjCyq2k6KB63M6gMC0YIvy+iABzmXThCRI6xpCEyVObBdWSDQ==} 510 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 511 | dev: true 512 | 513 | /@typescript-eslint/typescript-estree@5.52.0(typescript@4.9.5): 514 | resolution: {integrity: sha512-WeWnjanyEwt6+fVrSR0MYgEpUAuROxuAH516WPjUblIrClzYJj0kBbjdnbQXLpgAN8qbEuGywiQsXUVDiAoEuQ==} 515 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 516 | peerDependencies: 517 | typescript: '*' 518 | peerDependenciesMeta: 519 | typescript: 520 | optional: true 521 | dependencies: 522 | '@typescript-eslint/types': 5.52.0 523 | '@typescript-eslint/visitor-keys': 5.52.0 524 | debug: 4.3.4 525 | globby: 11.1.0 526 | is-glob: 4.0.3 527 | semver: 7.3.8 528 | tsutils: 3.21.0(typescript@4.9.5) 529 | typescript: 4.9.5 530 | transitivePeerDependencies: 531 | - supports-color 532 | dev: true 533 | 534 | /@typescript-eslint/utils@5.52.0(eslint@8.34.0)(typescript@4.9.5): 535 | resolution: {integrity: sha512-As3lChhrbwWQLNk2HC8Ree96hldKIqk98EYvypd3It8Q1f8d5zWyIoaZEp2va5667M4ZyE7X8UUR+azXrFl+NA==} 536 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 537 | peerDependencies: 538 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 539 | dependencies: 540 | '@types/json-schema': 7.0.11 541 | '@types/semver': 7.3.13 542 | '@typescript-eslint/scope-manager': 5.52.0 543 | '@typescript-eslint/types': 5.52.0 544 | '@typescript-eslint/typescript-estree': 5.52.0(typescript@4.9.5) 545 | eslint: 8.34.0 546 | eslint-scope: 5.1.1 547 | eslint-utils: 3.0.0(eslint@8.34.0) 548 | semver: 7.3.8 549 | transitivePeerDependencies: 550 | - supports-color 551 | - typescript 552 | dev: true 553 | 554 | /@typescript-eslint/visitor-keys@5.52.0: 555 | resolution: {integrity: sha512-qMwpw6SU5VHCPr99y274xhbm+PRViK/NATY6qzt+Et7+mThGuFSl/ompj2/hrBlRP/kq+BFdgagnOSgw9TB0eA==} 556 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 557 | dependencies: 558 | '@typescript-eslint/types': 5.52.0 559 | eslint-visitor-keys: 3.3.0 560 | dev: true 561 | 562 | /acorn-jsx@5.3.2(acorn@8.8.2): 563 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 564 | peerDependencies: 565 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 566 | dependencies: 567 | acorn: 8.8.2 568 | dev: true 569 | 570 | /acorn@8.8.2: 571 | resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} 572 | engines: {node: '>=0.4.0'} 573 | hasBin: true 574 | dev: true 575 | 576 | /ajv@6.12.6: 577 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 578 | dependencies: 579 | fast-deep-equal: 3.1.3 580 | fast-json-stable-stringify: 2.1.0 581 | json-schema-traverse: 0.4.1 582 | uri-js: 4.4.1 583 | dev: true 584 | 585 | /ansi-regex@5.0.1: 586 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 587 | engines: {node: '>=8'} 588 | dev: true 589 | 590 | /ansi-styles@4.3.0: 591 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 592 | engines: {node: '>=8'} 593 | dependencies: 594 | color-convert: 2.0.1 595 | dev: true 596 | 597 | /anymatch@3.1.3: 598 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 599 | engines: {node: '>= 8'} 600 | dependencies: 601 | normalize-path: 3.0.0 602 | picomatch: 2.3.1 603 | dev: true 604 | 605 | /argparse@2.0.1: 606 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 607 | dev: true 608 | 609 | /array-union@2.1.0: 610 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 611 | engines: {node: '>=8'} 612 | dev: true 613 | 614 | /balanced-match@1.0.2: 615 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 616 | dev: true 617 | 618 | /binary-extensions@2.2.0: 619 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 620 | engines: {node: '>=8'} 621 | dev: true 622 | 623 | /brace-expansion@1.1.11: 624 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 625 | dependencies: 626 | balanced-match: 1.0.2 627 | concat-map: 0.0.1 628 | dev: true 629 | 630 | /braces@3.0.2: 631 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 632 | engines: {node: '>=8'} 633 | dependencies: 634 | fill-range: 7.0.1 635 | dev: true 636 | 637 | /buffer-crc32@0.2.13: 638 | resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} 639 | dev: true 640 | 641 | /busboy@1.6.0: 642 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 643 | engines: {node: '>=10.16.0'} 644 | dependencies: 645 | streamsearch: 1.1.0 646 | dev: true 647 | 648 | /callsites@3.1.0: 649 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 650 | engines: {node: '>=6'} 651 | dev: true 652 | 653 | /chalk@4.1.2: 654 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 655 | engines: {node: '>=10'} 656 | dependencies: 657 | ansi-styles: 4.3.0 658 | supports-color: 7.2.0 659 | dev: true 660 | 661 | /chokidar@3.5.3: 662 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 663 | engines: {node: '>= 8.10.0'} 664 | dependencies: 665 | anymatch: 3.1.3 666 | braces: 3.0.2 667 | glob-parent: 5.1.2 668 | is-binary-path: 2.1.0 669 | is-glob: 4.0.3 670 | normalize-path: 3.0.0 671 | readdirp: 3.6.0 672 | optionalDependencies: 673 | fsevents: 2.3.2 674 | dev: true 675 | 676 | /color-convert@2.0.1: 677 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 678 | engines: {node: '>=7.0.0'} 679 | dependencies: 680 | color-name: 1.1.4 681 | dev: true 682 | 683 | /color-name@1.1.4: 684 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 685 | dev: true 686 | 687 | /concat-map@0.0.1: 688 | resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} 689 | dev: true 690 | 691 | /cookie@0.5.0: 692 | resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} 693 | engines: {node: '>= 0.6'} 694 | dev: true 695 | 696 | /cross-spawn@7.0.3: 697 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 698 | engines: {node: '>= 8'} 699 | dependencies: 700 | path-key: 3.1.1 701 | shebang-command: 2.0.0 702 | which: 2.0.2 703 | dev: true 704 | 705 | /debug@4.3.4: 706 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 707 | engines: {node: '>=6.0'} 708 | peerDependencies: 709 | supports-color: '*' 710 | peerDependenciesMeta: 711 | supports-color: 712 | optional: true 713 | dependencies: 714 | ms: 2.1.2 715 | dev: true 716 | 717 | /dedent-js@1.0.1: 718 | resolution: {integrity: sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==} 719 | dev: true 720 | 721 | /deep-is@0.1.4: 722 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 723 | dev: true 724 | 725 | /deepmerge@4.3.0: 726 | resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==} 727 | engines: {node: '>=0.10.0'} 728 | dev: true 729 | 730 | /detect-indent@6.1.0: 731 | resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} 732 | engines: {node: '>=8'} 733 | dev: true 734 | 735 | /devalue@4.3.0: 736 | resolution: {integrity: sha512-n94yQo4LI3w7erwf84mhRUkUJfhLoCZiLyoOZ/QFsDbcWNZePrLwbQpvZBUG2TNxwV3VjCKPxkiiQA6pe3TrTA==} 737 | dev: true 738 | 739 | /dir-glob@3.0.1: 740 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 741 | engines: {node: '>=8'} 742 | dependencies: 743 | path-type: 4.0.0 744 | dev: true 745 | 746 | /doctrine@3.0.0: 747 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 748 | engines: {node: '>=6.0.0'} 749 | dependencies: 750 | esutils: 2.0.3 751 | dev: true 752 | 753 | /es6-promise@3.3.1: 754 | resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} 755 | dev: true 756 | 757 | /esbuild@0.16.17: 758 | resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==} 759 | engines: {node: '>=12'} 760 | hasBin: true 761 | requiresBuild: true 762 | optionalDependencies: 763 | '@esbuild/android-arm': 0.16.17 764 | '@esbuild/android-arm64': 0.16.17 765 | '@esbuild/android-x64': 0.16.17 766 | '@esbuild/darwin-arm64': 0.16.17 767 | '@esbuild/darwin-x64': 0.16.17 768 | '@esbuild/freebsd-arm64': 0.16.17 769 | '@esbuild/freebsd-x64': 0.16.17 770 | '@esbuild/linux-arm': 0.16.17 771 | '@esbuild/linux-arm64': 0.16.17 772 | '@esbuild/linux-ia32': 0.16.17 773 | '@esbuild/linux-loong64': 0.16.17 774 | '@esbuild/linux-mips64el': 0.16.17 775 | '@esbuild/linux-ppc64': 0.16.17 776 | '@esbuild/linux-riscv64': 0.16.17 777 | '@esbuild/linux-s390x': 0.16.17 778 | '@esbuild/linux-x64': 0.16.17 779 | '@esbuild/netbsd-x64': 0.16.17 780 | '@esbuild/openbsd-x64': 0.16.17 781 | '@esbuild/sunos-x64': 0.16.17 782 | '@esbuild/win32-arm64': 0.16.17 783 | '@esbuild/win32-ia32': 0.16.17 784 | '@esbuild/win32-x64': 0.16.17 785 | dev: true 786 | 787 | /escape-string-regexp@4.0.0: 788 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 789 | engines: {node: '>=10'} 790 | dev: true 791 | 792 | /eslint-config-prettier@8.6.0(eslint@8.34.0): 793 | resolution: {integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==} 794 | hasBin: true 795 | peerDependencies: 796 | eslint: '>=7.0.0' 797 | dependencies: 798 | eslint: 8.34.0 799 | dev: true 800 | 801 | /eslint-plugin-svelte3@4.0.0(eslint@8.34.0)(svelte@3.55.1): 802 | resolution: {integrity: sha512-OIx9lgaNzD02+MDFNLw0GEUbuovNcglg+wnd/UY0fbZmlQSz7GlQiQ1f+yX0XvC07XPcDOnFcichqI3xCwp71g==} 803 | peerDependencies: 804 | eslint: '>=8.0.0' 805 | svelte: ^3.2.0 806 | dependencies: 807 | eslint: 8.34.0 808 | svelte: 3.55.1 809 | dev: true 810 | 811 | /eslint-scope@5.1.1: 812 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} 813 | engines: {node: '>=8.0.0'} 814 | dependencies: 815 | esrecurse: 4.3.0 816 | estraverse: 4.3.0 817 | dev: true 818 | 819 | /eslint-scope@7.1.1: 820 | resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} 821 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 822 | dependencies: 823 | esrecurse: 4.3.0 824 | estraverse: 5.3.0 825 | dev: true 826 | 827 | /eslint-utils@3.0.0(eslint@8.34.0): 828 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} 829 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} 830 | peerDependencies: 831 | eslint: '>=5' 832 | dependencies: 833 | eslint: 8.34.0 834 | eslint-visitor-keys: 2.1.0 835 | dev: true 836 | 837 | /eslint-visitor-keys@2.1.0: 838 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} 839 | engines: {node: '>=10'} 840 | dev: true 841 | 842 | /eslint-visitor-keys@3.3.0: 843 | resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} 844 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 845 | dev: true 846 | 847 | /eslint@8.34.0: 848 | resolution: {integrity: sha512-1Z8iFsucw+7kSqXNZVslXS8Ioa4u2KM7GPwuKtkTFAqZ/cHMcEaR+1+Br0wLlot49cNxIiZk5wp8EAbPcYZxTg==} 849 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 850 | hasBin: true 851 | dependencies: 852 | '@eslint/eslintrc': 1.4.1 853 | '@humanwhocodes/config-array': 0.11.8 854 | '@humanwhocodes/module-importer': 1.0.1 855 | '@nodelib/fs.walk': 1.2.8 856 | ajv: 6.12.6 857 | chalk: 4.1.2 858 | cross-spawn: 7.0.3 859 | debug: 4.3.4 860 | doctrine: 3.0.0 861 | escape-string-regexp: 4.0.0 862 | eslint-scope: 7.1.1 863 | eslint-utils: 3.0.0(eslint@8.34.0) 864 | eslint-visitor-keys: 3.3.0 865 | espree: 9.4.1 866 | esquery: 1.4.2 867 | esutils: 2.0.3 868 | fast-deep-equal: 3.1.3 869 | file-entry-cache: 6.0.1 870 | find-up: 5.0.0 871 | glob-parent: 6.0.2 872 | globals: 13.20.0 873 | grapheme-splitter: 1.0.4 874 | ignore: 5.2.4 875 | import-fresh: 3.3.0 876 | imurmurhash: 0.1.4 877 | is-glob: 4.0.3 878 | is-path-inside: 3.0.3 879 | js-sdsl: 4.3.0 880 | js-yaml: 4.1.0 881 | json-stable-stringify-without-jsonify: 1.0.1 882 | levn: 0.4.1 883 | lodash.merge: 4.6.2 884 | minimatch: 3.1.2 885 | natural-compare: 1.4.0 886 | optionator: 0.9.1 887 | regexpp: 3.2.0 888 | strip-ansi: 6.0.1 889 | strip-json-comments: 3.1.1 890 | text-table: 0.2.0 891 | transitivePeerDependencies: 892 | - supports-color 893 | dev: true 894 | 895 | /esm-env@1.0.0: 896 | resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==} 897 | dev: true 898 | 899 | /espree@9.4.1: 900 | resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==} 901 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 902 | dependencies: 903 | acorn: 8.8.2 904 | acorn-jsx: 5.3.2(acorn@8.8.2) 905 | eslint-visitor-keys: 3.3.0 906 | dev: true 907 | 908 | /esquery@1.4.2: 909 | resolution: {integrity: sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng==} 910 | engines: {node: '>=0.10'} 911 | dependencies: 912 | estraverse: 5.3.0 913 | dev: true 914 | 915 | /esrecurse@4.3.0: 916 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 917 | engines: {node: '>=4.0'} 918 | dependencies: 919 | estraverse: 5.3.0 920 | dev: true 921 | 922 | /estraverse@4.3.0: 923 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} 924 | engines: {node: '>=4.0'} 925 | dev: true 926 | 927 | /estraverse@5.3.0: 928 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 929 | engines: {node: '>=4.0'} 930 | dev: true 931 | 932 | /esutils@2.0.3: 933 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 934 | engines: {node: '>=0.10.0'} 935 | dev: true 936 | 937 | /fast-deep-equal@3.1.3: 938 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 939 | dev: true 940 | 941 | /fast-glob@3.2.12: 942 | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} 943 | engines: {node: '>=8.6.0'} 944 | dependencies: 945 | '@nodelib/fs.stat': 2.0.5 946 | '@nodelib/fs.walk': 1.2.8 947 | glob-parent: 5.1.2 948 | merge2: 1.4.1 949 | micromatch: 4.0.5 950 | dev: true 951 | 952 | /fast-json-stable-stringify@2.1.0: 953 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 954 | dev: true 955 | 956 | /fast-levenshtein@2.0.6: 957 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 958 | dev: true 959 | 960 | /fastq@1.15.0: 961 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 962 | dependencies: 963 | reusify: 1.0.4 964 | dev: true 965 | 966 | /file-entry-cache@6.0.1: 967 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 968 | engines: {node: ^10.12.0 || >=12.0.0} 969 | dependencies: 970 | flat-cache: 3.0.4 971 | dev: true 972 | 973 | /fill-range@7.0.1: 974 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 975 | engines: {node: '>=8'} 976 | dependencies: 977 | to-regex-range: 5.0.1 978 | dev: true 979 | 980 | /find-up@5.0.0: 981 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 982 | engines: {node: '>=10'} 983 | dependencies: 984 | locate-path: 6.0.0 985 | path-exists: 4.0.0 986 | dev: true 987 | 988 | /flat-cache@3.0.4: 989 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 990 | engines: {node: ^10.12.0 || >=12.0.0} 991 | dependencies: 992 | flatted: 3.2.7 993 | rimraf: 3.0.2 994 | dev: true 995 | 996 | /flatted@3.2.7: 997 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 998 | dev: true 999 | 1000 | /fs.realpath@1.0.0: 1001 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1002 | dev: true 1003 | 1004 | /fsevents@2.3.2: 1005 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} 1006 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1007 | os: [darwin] 1008 | requiresBuild: true 1009 | dev: true 1010 | optional: true 1011 | 1012 | /function-bind@1.1.1: 1013 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 1014 | dev: true 1015 | 1016 | /glob-parent@5.1.2: 1017 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1018 | engines: {node: '>= 6'} 1019 | dependencies: 1020 | is-glob: 4.0.3 1021 | dev: true 1022 | 1023 | /glob-parent@6.0.2: 1024 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1025 | engines: {node: '>=10.13.0'} 1026 | dependencies: 1027 | is-glob: 4.0.3 1028 | dev: true 1029 | 1030 | /glob@7.2.3: 1031 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1032 | dependencies: 1033 | fs.realpath: 1.0.0 1034 | inflight: 1.0.6 1035 | inherits: 2.0.4 1036 | minimatch: 3.1.2 1037 | once: 1.4.0 1038 | path-is-absolute: 1.0.1 1039 | dev: true 1040 | 1041 | /globals@13.20.0: 1042 | resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} 1043 | engines: {node: '>=8'} 1044 | dependencies: 1045 | type-fest: 0.20.2 1046 | dev: true 1047 | 1048 | /globalyzer@0.1.0: 1049 | resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} 1050 | dev: true 1051 | 1052 | /globby@11.1.0: 1053 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1054 | engines: {node: '>=10'} 1055 | dependencies: 1056 | array-union: 2.1.0 1057 | dir-glob: 3.0.1 1058 | fast-glob: 3.2.12 1059 | ignore: 5.2.4 1060 | merge2: 1.4.1 1061 | slash: 3.0.0 1062 | dev: true 1063 | 1064 | /globrex@0.1.2: 1065 | resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} 1066 | dev: true 1067 | 1068 | /graceful-fs@4.2.10: 1069 | resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} 1070 | dev: true 1071 | 1072 | /grapheme-splitter@1.0.4: 1073 | resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} 1074 | dev: true 1075 | 1076 | /has-flag@4.0.0: 1077 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1078 | engines: {node: '>=8'} 1079 | dev: true 1080 | 1081 | /has@1.0.3: 1082 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 1083 | engines: {node: '>= 0.4.0'} 1084 | dependencies: 1085 | function-bind: 1.1.1 1086 | dev: true 1087 | 1088 | /ignore@5.2.4: 1089 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 1090 | engines: {node: '>= 4'} 1091 | dev: true 1092 | 1093 | /import-fresh@3.3.0: 1094 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1095 | engines: {node: '>=6'} 1096 | dependencies: 1097 | parent-module: 1.0.1 1098 | resolve-from: 4.0.0 1099 | dev: true 1100 | 1101 | /import-meta-resolve@2.2.1: 1102 | resolution: {integrity: sha512-C6lLL7EJPY44kBvA80gq4uMsVFw5x3oSKfuMl1cuZ2RkI5+UJqQXgn+6hlUew0y4ig7Ypt4CObAAIzU53Nfpuw==} 1103 | dev: true 1104 | 1105 | /imurmurhash@0.1.4: 1106 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1107 | engines: {node: '>=0.8.19'} 1108 | dev: true 1109 | 1110 | /inflight@1.0.6: 1111 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1112 | dependencies: 1113 | once: 1.4.0 1114 | wrappy: 1.0.2 1115 | dev: true 1116 | 1117 | /inherits@2.0.4: 1118 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1119 | dev: true 1120 | 1121 | /is-binary-path@2.1.0: 1122 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1123 | engines: {node: '>=8'} 1124 | dependencies: 1125 | binary-extensions: 2.2.0 1126 | dev: true 1127 | 1128 | /is-core-module@2.11.0: 1129 | resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} 1130 | dependencies: 1131 | has: 1.0.3 1132 | dev: true 1133 | 1134 | /is-extglob@2.1.1: 1135 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1136 | engines: {node: '>=0.10.0'} 1137 | dev: true 1138 | 1139 | /is-glob@4.0.3: 1140 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1141 | engines: {node: '>=0.10.0'} 1142 | dependencies: 1143 | is-extglob: 2.1.1 1144 | dev: true 1145 | 1146 | /is-number@7.0.0: 1147 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1148 | engines: {node: '>=0.12.0'} 1149 | dev: true 1150 | 1151 | /is-path-inside@3.0.3: 1152 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1153 | engines: {node: '>=8'} 1154 | dev: true 1155 | 1156 | /isexe@2.0.0: 1157 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1158 | dev: true 1159 | 1160 | /js-sdsl@4.3.0: 1161 | resolution: {integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==} 1162 | dev: true 1163 | 1164 | /js-yaml@4.1.0: 1165 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1166 | hasBin: true 1167 | dependencies: 1168 | argparse: 2.0.1 1169 | dev: true 1170 | 1171 | /json-schema-traverse@0.4.1: 1172 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1173 | dev: true 1174 | 1175 | /json-stable-stringify-without-jsonify@1.0.1: 1176 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1177 | dev: true 1178 | 1179 | /kleur@4.1.5: 1180 | resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 1181 | engines: {node: '>=6'} 1182 | dev: true 1183 | 1184 | /levn@0.4.1: 1185 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1186 | engines: {node: '>= 0.8.0'} 1187 | dependencies: 1188 | prelude-ls: 1.2.1 1189 | type-check: 0.4.0 1190 | dev: true 1191 | 1192 | /locate-path@6.0.0: 1193 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1194 | engines: {node: '>=10'} 1195 | dependencies: 1196 | p-locate: 5.0.0 1197 | dev: true 1198 | 1199 | /lodash.merge@4.6.2: 1200 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1201 | dev: true 1202 | 1203 | /lower-case@2.0.2: 1204 | resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} 1205 | dependencies: 1206 | tslib: 2.5.0 1207 | dev: true 1208 | 1209 | /lru-cache@6.0.0: 1210 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1211 | engines: {node: '>=10'} 1212 | dependencies: 1213 | yallist: 4.0.0 1214 | dev: true 1215 | 1216 | /magic-string@0.25.9: 1217 | resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} 1218 | dependencies: 1219 | sourcemap-codec: 1.4.8 1220 | dev: true 1221 | 1222 | /magic-string@0.27.0: 1223 | resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} 1224 | engines: {node: '>=12'} 1225 | dependencies: 1226 | '@jridgewell/sourcemap-codec': 1.4.14 1227 | dev: true 1228 | 1229 | /merge2@1.4.1: 1230 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1231 | engines: {node: '>= 8'} 1232 | dev: true 1233 | 1234 | /micromatch@4.0.5: 1235 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 1236 | engines: {node: '>=8.6'} 1237 | dependencies: 1238 | braces: 3.0.2 1239 | picomatch: 2.3.1 1240 | dev: true 1241 | 1242 | /mime@3.0.0: 1243 | resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} 1244 | engines: {node: '>=10.0.0'} 1245 | hasBin: true 1246 | dev: true 1247 | 1248 | /min-indent@1.0.1: 1249 | resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} 1250 | engines: {node: '>=4'} 1251 | dev: true 1252 | 1253 | /minimatch@3.1.2: 1254 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1255 | dependencies: 1256 | brace-expansion: 1.1.11 1257 | dev: true 1258 | 1259 | /minimist@1.2.8: 1260 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1261 | dev: true 1262 | 1263 | /mkdirp@0.5.6: 1264 | resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} 1265 | hasBin: true 1266 | dependencies: 1267 | minimist: 1.2.8 1268 | dev: true 1269 | 1270 | /mri@1.2.0: 1271 | resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 1272 | engines: {node: '>=4'} 1273 | dev: true 1274 | 1275 | /mrmime@1.0.1: 1276 | resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} 1277 | engines: {node: '>=10'} 1278 | dev: true 1279 | 1280 | /ms@2.1.2: 1281 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1282 | dev: true 1283 | 1284 | /nanoid@3.3.4: 1285 | resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} 1286 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1287 | hasBin: true 1288 | dev: true 1289 | 1290 | /natural-compare-lite@1.4.0: 1291 | resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} 1292 | dev: true 1293 | 1294 | /natural-compare@1.4.0: 1295 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1296 | dev: true 1297 | 1298 | /no-case@3.0.4: 1299 | resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} 1300 | dependencies: 1301 | lower-case: 2.0.2 1302 | tslib: 2.5.0 1303 | dev: true 1304 | 1305 | /normalize-path@3.0.0: 1306 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1307 | engines: {node: '>=0.10.0'} 1308 | dev: true 1309 | 1310 | /once@1.4.0: 1311 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1312 | dependencies: 1313 | wrappy: 1.0.2 1314 | dev: true 1315 | 1316 | /optionator@0.9.1: 1317 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} 1318 | engines: {node: '>= 0.8.0'} 1319 | dependencies: 1320 | deep-is: 0.1.4 1321 | fast-levenshtein: 2.0.6 1322 | levn: 0.4.1 1323 | prelude-ls: 1.2.1 1324 | type-check: 0.4.0 1325 | word-wrap: 1.2.3 1326 | dev: true 1327 | 1328 | /p-limit@3.1.0: 1329 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1330 | engines: {node: '>=10'} 1331 | dependencies: 1332 | yocto-queue: 0.1.0 1333 | dev: true 1334 | 1335 | /p-locate@5.0.0: 1336 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1337 | engines: {node: '>=10'} 1338 | dependencies: 1339 | p-limit: 3.1.0 1340 | dev: true 1341 | 1342 | /parent-module@1.0.1: 1343 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1344 | engines: {node: '>=6'} 1345 | dependencies: 1346 | callsites: 3.1.0 1347 | dev: true 1348 | 1349 | /pascal-case@3.1.2: 1350 | resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} 1351 | dependencies: 1352 | no-case: 3.0.4 1353 | tslib: 2.5.0 1354 | dev: true 1355 | 1356 | /path-exists@4.0.0: 1357 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1358 | engines: {node: '>=8'} 1359 | dev: true 1360 | 1361 | /path-is-absolute@1.0.1: 1362 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1363 | engines: {node: '>=0.10.0'} 1364 | dev: true 1365 | 1366 | /path-key@3.1.1: 1367 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1368 | engines: {node: '>=8'} 1369 | dev: true 1370 | 1371 | /path-parse@1.0.7: 1372 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1373 | dev: true 1374 | 1375 | /path-type@4.0.0: 1376 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 1377 | engines: {node: '>=8'} 1378 | dev: true 1379 | 1380 | /picocolors@1.0.0: 1381 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 1382 | dev: true 1383 | 1384 | /picomatch@2.3.1: 1385 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1386 | engines: {node: '>=8.6'} 1387 | dev: true 1388 | 1389 | /postcss@8.4.21: 1390 | resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} 1391 | engines: {node: ^10 || ^12 || >=14} 1392 | dependencies: 1393 | nanoid: 3.3.4 1394 | picocolors: 1.0.0 1395 | source-map-js: 1.0.2 1396 | dev: true 1397 | 1398 | /prelude-ls@1.2.1: 1399 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1400 | engines: {node: '>= 0.8.0'} 1401 | dev: true 1402 | 1403 | /prettier-plugin-svelte@2.9.0(prettier@2.8.4)(svelte@3.55.1): 1404 | resolution: {integrity: sha512-3doBi5NO4IVgaNPtwewvrgPpqAcvNv0NwJNflr76PIGgi9nf1oguQV1Hpdm9TI2ALIQVn/9iIwLpBO5UcD2Jiw==} 1405 | peerDependencies: 1406 | prettier: ^1.16.4 || ^2.0.0 1407 | svelte: ^3.2.0 1408 | dependencies: 1409 | prettier: 2.8.4 1410 | svelte: 3.55.1 1411 | dev: true 1412 | 1413 | /prettier@2.8.4: 1414 | resolution: {integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==} 1415 | engines: {node: '>=10.13.0'} 1416 | hasBin: true 1417 | dev: true 1418 | 1419 | /punycode@2.3.0: 1420 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} 1421 | engines: {node: '>=6'} 1422 | dev: true 1423 | 1424 | /queue-microtask@1.2.3: 1425 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1426 | dev: true 1427 | 1428 | /readdirp@3.6.0: 1429 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1430 | engines: {node: '>=8.10.0'} 1431 | dependencies: 1432 | picomatch: 2.3.1 1433 | dev: true 1434 | 1435 | /regexpp@3.2.0: 1436 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} 1437 | engines: {node: '>=8'} 1438 | dev: true 1439 | 1440 | /resolve-from@4.0.0: 1441 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1442 | engines: {node: '>=4'} 1443 | dev: true 1444 | 1445 | /resolve@1.22.1: 1446 | resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} 1447 | hasBin: true 1448 | dependencies: 1449 | is-core-module: 2.11.0 1450 | path-parse: 1.0.7 1451 | supports-preserve-symlinks-flag: 1.0.0 1452 | dev: true 1453 | 1454 | /reusify@1.0.4: 1455 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1456 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1457 | dev: true 1458 | 1459 | /rimraf@2.7.1: 1460 | resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} 1461 | hasBin: true 1462 | dependencies: 1463 | glob: 7.2.3 1464 | dev: true 1465 | 1466 | /rimraf@3.0.2: 1467 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1468 | hasBin: true 1469 | dependencies: 1470 | glob: 7.2.3 1471 | dev: true 1472 | 1473 | /rollup@3.17.2: 1474 | resolution: {integrity: sha512-qMNZdlQPCkWodrAZ3qnJtvCAl4vpQ8q77uEujVCCbC/6CLB7Lcmvjq7HyiOSnf4fxTT9XgsE36oLHJBH49xjqA==} 1475 | engines: {node: '>=14.18.0', npm: '>=8.0.0'} 1476 | hasBin: true 1477 | optionalDependencies: 1478 | fsevents: 2.3.2 1479 | dev: true 1480 | 1481 | /run-parallel@1.2.0: 1482 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1483 | dependencies: 1484 | queue-microtask: 1.2.3 1485 | dev: true 1486 | 1487 | /sade@1.8.1: 1488 | resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} 1489 | engines: {node: '>=6'} 1490 | dependencies: 1491 | mri: 1.2.0 1492 | dev: true 1493 | 1494 | /sander@0.5.1: 1495 | resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} 1496 | dependencies: 1497 | es6-promise: 3.3.1 1498 | graceful-fs: 4.2.10 1499 | mkdirp: 0.5.6 1500 | rimraf: 2.7.1 1501 | dev: true 1502 | 1503 | /semver@7.3.8: 1504 | resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} 1505 | engines: {node: '>=10'} 1506 | hasBin: true 1507 | dependencies: 1508 | lru-cache: 6.0.0 1509 | dev: true 1510 | 1511 | /set-cookie-parser@2.5.1: 1512 | resolution: {integrity: sha512-1jeBGaKNGdEq4FgIrORu/N570dwoPYio8lSoYLWmX7sQ//0JY08Xh9o5pBcgmHQ/MbsYp/aZnOe1s1lIsbLprQ==} 1513 | dev: true 1514 | 1515 | /shebang-command@2.0.0: 1516 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1517 | engines: {node: '>=8'} 1518 | dependencies: 1519 | shebang-regex: 3.0.0 1520 | dev: true 1521 | 1522 | /shebang-regex@3.0.0: 1523 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1524 | engines: {node: '>=8'} 1525 | dev: true 1526 | 1527 | /sirv@2.0.2: 1528 | resolution: {integrity: sha512-4Qog6aE29nIjAOKe/wowFTxOdmbEZKb+3tsLljaBRzJwtqto0BChD2zzH0LhgCSXiI+V7X+Y45v14wBZQ1TK3w==} 1529 | engines: {node: '>= 10'} 1530 | dependencies: 1531 | '@polka/url': 1.0.0-next.21 1532 | mrmime: 1.0.1 1533 | totalist: 3.0.0 1534 | dev: true 1535 | 1536 | /slash@3.0.0: 1537 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 1538 | engines: {node: '>=8'} 1539 | dev: true 1540 | 1541 | /sorcery@0.10.0: 1542 | resolution: {integrity: sha512-R5ocFmKZQFfSTstfOtHjJuAwbpGyf9qjQa1egyhvXSbM7emjrtLXtGdZsDJDABC85YBfVvrOiGWKSYXPKdvP1g==} 1543 | hasBin: true 1544 | dependencies: 1545 | buffer-crc32: 0.2.13 1546 | minimist: 1.2.8 1547 | sander: 0.5.1 1548 | sourcemap-codec: 1.4.8 1549 | dev: true 1550 | 1551 | /source-map-js@1.0.2: 1552 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 1553 | engines: {node: '>=0.10.0'} 1554 | dev: true 1555 | 1556 | /sourcemap-codec@1.4.8: 1557 | resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} 1558 | deprecated: Please use @jridgewell/sourcemap-codec instead 1559 | dev: true 1560 | 1561 | /streamsearch@1.1.0: 1562 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 1563 | engines: {node: '>=10.0.0'} 1564 | dev: true 1565 | 1566 | /strip-ansi@6.0.1: 1567 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1568 | engines: {node: '>=8'} 1569 | dependencies: 1570 | ansi-regex: 5.0.1 1571 | dev: true 1572 | 1573 | /strip-indent@3.0.0: 1574 | resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} 1575 | engines: {node: '>=8'} 1576 | dependencies: 1577 | min-indent: 1.0.1 1578 | dev: true 1579 | 1580 | /strip-json-comments@3.1.1: 1581 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1582 | engines: {node: '>=8'} 1583 | dev: true 1584 | 1585 | /supports-color@7.2.0: 1586 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1587 | engines: {node: '>=8'} 1588 | dependencies: 1589 | has-flag: 4.0.0 1590 | dev: true 1591 | 1592 | /supports-preserve-symlinks-flag@1.0.0: 1593 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1594 | engines: {node: '>= 0.4'} 1595 | dev: true 1596 | 1597 | /svelte-check@2.10.3(svelte@3.55.1): 1598 | resolution: {integrity: sha512-Nt1aWHTOKFReBpmJ1vPug0aGysqPwJh2seM1OvICfM2oeyaA62mOiy5EvkXhltGfhCcIQcq2LoE0l1CwcWPjlw==} 1599 | hasBin: true 1600 | peerDependencies: 1601 | svelte: ^3.24.0 1602 | dependencies: 1603 | '@jridgewell/trace-mapping': 0.3.17 1604 | chokidar: 3.5.3 1605 | fast-glob: 3.2.12 1606 | import-fresh: 3.3.0 1607 | picocolors: 1.0.0 1608 | sade: 1.8.1 1609 | svelte: 3.55.1 1610 | svelte-preprocess: 4.10.7(svelte@3.55.1)(typescript@4.9.5) 1611 | typescript: 4.9.5 1612 | transitivePeerDependencies: 1613 | - '@babel/core' 1614 | - coffeescript 1615 | - less 1616 | - node-sass 1617 | - postcss 1618 | - postcss-load-config 1619 | - pug 1620 | - sass 1621 | - stylus 1622 | - sugarss 1623 | dev: true 1624 | 1625 | /svelte-hmr@0.15.1(svelte@3.55.1): 1626 | resolution: {integrity: sha512-BiKB4RZ8YSwRKCNVdNxK/GfY+r4Kjgp9jCLEy0DuqAKfmQtpL38cQK3afdpjw4sqSs4PLi3jIPJIFp259NkZtA==} 1627 | engines: {node: ^12.20 || ^14.13.1 || >= 16} 1628 | peerDependencies: 1629 | svelte: '>=3.19.0' 1630 | dependencies: 1631 | svelte: 3.55.1 1632 | dev: true 1633 | 1634 | /svelte-preprocess@4.10.7(svelte@3.55.1)(typescript@4.9.5): 1635 | resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==} 1636 | engines: {node: '>= 9.11.2'} 1637 | requiresBuild: true 1638 | peerDependencies: 1639 | '@babel/core': ^7.10.2 1640 | coffeescript: ^2.5.1 1641 | less: ^3.11.3 || ^4.0.0 1642 | node-sass: '*' 1643 | postcss: ^7 || ^8 1644 | postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 1645 | pug: ^3.0.0 1646 | sass: ^1.26.8 1647 | stylus: ^0.55.0 1648 | sugarss: ^2.0.0 1649 | svelte: ^3.23.0 1650 | typescript: ^3.9.5 || ^4.0.0 1651 | peerDependenciesMeta: 1652 | '@babel/core': 1653 | optional: true 1654 | coffeescript: 1655 | optional: true 1656 | less: 1657 | optional: true 1658 | node-sass: 1659 | optional: true 1660 | postcss: 1661 | optional: true 1662 | postcss-load-config: 1663 | optional: true 1664 | pug: 1665 | optional: true 1666 | sass: 1667 | optional: true 1668 | stylus: 1669 | optional: true 1670 | sugarss: 1671 | optional: true 1672 | typescript: 1673 | optional: true 1674 | dependencies: 1675 | '@types/pug': 2.0.6 1676 | '@types/sass': 1.43.1 1677 | detect-indent: 6.1.0 1678 | magic-string: 0.25.9 1679 | sorcery: 0.10.0 1680 | strip-indent: 3.0.0 1681 | svelte: 3.55.1 1682 | typescript: 4.9.5 1683 | dev: true 1684 | 1685 | /svelte2tsx@0.5.23(svelte@3.55.1)(typescript@4.9.5): 1686 | resolution: {integrity: sha512-jYFnugTQRFmUpvLXPQrKzVYcW5ErT+0QCxg027Zx9BuvYefMZFuoBSTDYe7viPEFGrPPiLgT2m7f5n9khE7f7Q==} 1687 | peerDependencies: 1688 | svelte: ^3.24 1689 | typescript: ^4.1.2 1690 | dependencies: 1691 | dedent-js: 1.0.1 1692 | pascal-case: 3.1.2 1693 | svelte: 3.55.1 1694 | typescript: 4.9.5 1695 | dev: true 1696 | 1697 | /svelte2tsx@0.6.1(svelte@3.55.1)(typescript@4.9.5): 1698 | resolution: {integrity: sha512-O/1+5UyChfmhp1/GUv8b8iveTrn6eZwHxEXc+rw7LMKRidr9KHk5w/EiliLjDUwHa2VA6CoEty+CQylROVU4Sw==} 1699 | peerDependencies: 1700 | svelte: ^3.55 1701 | typescript: ^4.9.4 1702 | dependencies: 1703 | dedent-js: 1.0.1 1704 | pascal-case: 3.1.2 1705 | svelte: 3.55.1 1706 | typescript: 4.9.5 1707 | dev: true 1708 | 1709 | /svelte@3.55.1: 1710 | resolution: {integrity: sha512-S+87/P0Ve67HxKkEV23iCdAh/SX1xiSfjF1HOglno/YTbSTW7RniICMCofWGdJJbdjw3S+0PfFb1JtGfTXE0oQ==} 1711 | engines: {node: '>= 8'} 1712 | dev: true 1713 | 1714 | /text-table@0.2.0: 1715 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1716 | dev: true 1717 | 1718 | /tiny-glob@0.2.9: 1719 | resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} 1720 | dependencies: 1721 | globalyzer: 0.1.0 1722 | globrex: 0.1.2 1723 | dev: true 1724 | 1725 | /to-regex-range@5.0.1: 1726 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1727 | engines: {node: '>=8.0'} 1728 | dependencies: 1729 | is-number: 7.0.0 1730 | dev: true 1731 | 1732 | /totalist@3.0.0: 1733 | resolution: {integrity: sha512-eM+pCBxXO/njtF7vdFsHuqb+ElbxqtI4r5EAvk6grfAFyJ6IvWlSkfZ5T9ozC6xWw3Fj1fGoSmrl0gUs46JVIw==} 1734 | engines: {node: '>=6'} 1735 | dev: true 1736 | 1737 | /tslib@1.14.1: 1738 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 1739 | dev: true 1740 | 1741 | /tslib@2.5.0: 1742 | resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} 1743 | dev: true 1744 | 1745 | /tsutils@3.21.0(typescript@4.9.5): 1746 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 1747 | engines: {node: '>= 6'} 1748 | peerDependencies: 1749 | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' 1750 | dependencies: 1751 | tslib: 1.14.1 1752 | typescript: 4.9.5 1753 | dev: true 1754 | 1755 | /type-check@0.4.0: 1756 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1757 | engines: {node: '>= 0.8.0'} 1758 | dependencies: 1759 | prelude-ls: 1.2.1 1760 | dev: true 1761 | 1762 | /type-fest@0.20.2: 1763 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 1764 | engines: {node: '>=10'} 1765 | dev: true 1766 | 1767 | /typescript@4.9.5: 1768 | resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} 1769 | engines: {node: '>=4.2.0'} 1770 | hasBin: true 1771 | dev: true 1772 | 1773 | /undici@5.14.0: 1774 | resolution: {integrity: sha512-yJlHYw6yXPPsuOH0x2Ib1Km61vu4hLiRRQoafs+WUgX1vO64vgnxiCEN9dpIrhZyHFsai3F0AEj4P9zy19enEQ==} 1775 | engines: {node: '>=12.18'} 1776 | dependencies: 1777 | busboy: 1.6.0 1778 | dev: true 1779 | 1780 | /uri-js@4.4.1: 1781 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1782 | dependencies: 1783 | punycode: 2.3.0 1784 | dev: true 1785 | 1786 | /vite@4.1.3: 1787 | resolution: {integrity: sha512-0Zqo4/Fr/swSOBmbl+HAAhOjrqNwju+yTtoe4hQX9UsARdcuc9njyOdr6xU0DDnV7YP0RT6mgTTOiRtZgxfCxA==} 1788 | engines: {node: ^14.18.0 || >=16.0.0} 1789 | hasBin: true 1790 | peerDependencies: 1791 | '@types/node': '>= 14' 1792 | less: '*' 1793 | sass: '*' 1794 | stylus: '*' 1795 | sugarss: '*' 1796 | terser: ^5.4.0 1797 | peerDependenciesMeta: 1798 | '@types/node': 1799 | optional: true 1800 | less: 1801 | optional: true 1802 | sass: 1803 | optional: true 1804 | stylus: 1805 | optional: true 1806 | sugarss: 1807 | optional: true 1808 | terser: 1809 | optional: true 1810 | dependencies: 1811 | esbuild: 0.16.17 1812 | postcss: 8.4.21 1813 | resolve: 1.22.1 1814 | rollup: 3.17.2 1815 | optionalDependencies: 1816 | fsevents: 2.3.2 1817 | dev: true 1818 | 1819 | /vitefu@0.2.4(vite@4.1.3): 1820 | resolution: {integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==} 1821 | peerDependencies: 1822 | vite: ^3.0.0 || ^4.0.0 1823 | peerDependenciesMeta: 1824 | vite: 1825 | optional: true 1826 | dependencies: 1827 | vite: 4.1.3 1828 | dev: true 1829 | 1830 | /which@2.0.2: 1831 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1832 | engines: {node: '>= 8'} 1833 | hasBin: true 1834 | dependencies: 1835 | isexe: 2.0.0 1836 | dev: true 1837 | 1838 | /word-wrap@1.2.3: 1839 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} 1840 | engines: {node: '>=0.10.0'} 1841 | dev: true 1842 | 1843 | /wrappy@1.0.2: 1844 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1845 | dev: true 1846 | 1847 | /yallist@4.0.0: 1848 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 1849 | dev: true 1850 | 1851 | /yocto-queue@0.1.0: 1852 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1853 | engines: {node: '>=10'} 1854 | dev: true 1855 | --------------------------------------------------------------------------------