├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── mdsvex.config.cjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── src ├── app.html ├── components │ ├── Counter.svelte │ ├── Infobox.svelte │ └── Nav.svelte ├── globals.d.ts ├── pages │ ├── 001-what-is-sveltekit.svx │ ├── 002-getting-started.svx │ ├── 003-navigating-your-app.svx │ ├── 004-convenience-toolbox.svx │ ├── 005-assets-metadata-css.svx │ ├── 006-data-processing.svx │ ├── 007-setting-the-context.svx │ ├── 008-deploying-an-app.svx │ └── 999-everything.svx ├── routes │ ├── $error.svelte │ ├── $layout.svelte │ ├── 404.svelte │ ├── _global.css │ ├── index.svelte │ └── learn │ │ ├── $layout.svelte │ │ ├── [slug].svelte │ │ └── index.svelte ├── setup │ └── index.js └── types.d.ts ├── static ├── favicon.ico ├── fonts │ ├── overpass-v5-latin-300.woff │ ├── overpass-v5-latin-300.woff2 │ ├── overpass-v5-latin-300italic.woff │ ├── overpass-v5-latin-300italic.woff2 │ ├── overpass-v5-latin-600.woff │ ├── overpass-v5-latin-600.woff2 │ ├── overpass-v5-latin-700.woff │ ├── overpass-v5-latin-700.woff2 │ ├── overpass-v5-latin-800.woff │ └── overpass-v5-latin-800.woff2 ├── logo.png └── robots.txt ├── svelte.config.cjs ├── tailwind.config.cjs ├── tsconfig.json ├── vercel.json └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .env 3 | node_modules 4 | /.svelte 5 | /build 6 | /functions 7 | /api 8 | /public 9 | .vercel_build_output -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .env 3 | node_modules 4 | /.svelte 5 | /build 6 | /functions 7 | /api 8 | /public -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 4, 3 | "semi": true, 4 | "singleQuote": true, 5 | "trailingComma": "es5" 6 | } 7 | -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- 1 | Permission is hereby granted, free of charge, to any 2 | person obtaining a copy of this software and associated 3 | documentation files (the "Software"), to deal in the 4 | Software without restriction, including without 5 | limitation the rights to use, copy, modify, merge, 6 | publish, distribute, sublicense, and/or sell copies of 7 | the Software, and to permit persons to whom the Software 8 | is furnished to do so, subject to the following 9 | conditions: 10 | 11 | The above copyright notice and this permission notice 12 | shall be included in all copies or substantial portions 13 | of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF 16 | ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED 17 | TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 18 | PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT 19 | SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 20 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 21 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR 22 | IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 23 | DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # These docs have been deprecated 2 | 3 | Go to the officially maintained docs over at https://kit.svelte.dev instead. 4 | 5 | This repo remains only as a historical relic. -------------------------------------------------------------------------------- /mdsvex.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extensions: ['.svx', '.md'], 3 | smartypants: { 4 | dashes: 'oldschool', 5 | }, 6 | remarkPlugins: [ 7 | // [require("remark-github"), { 8 | // repository: "https://github.com/svelte-add/mdsvex.git", // (use your own repository) 9 | // }], 10 | // require("remark-abbr"), 11 | ], 12 | rehypePlugins: [ 13 | require('rehype-slug'), 14 | [ 15 | require('rehype-autolink-headings'), 16 | { 17 | behavior: 'prepend', 18 | content: { 19 | type: 'element', 20 | tagName: 'svg', 21 | properties: { 22 | className: [], 23 | xmlns: 'http://www.w3.org/2000/svg', 24 | fill: 'none', 25 | viewBox: '0 0 24 24', 26 | stroke: 'currentColor', 27 | }, 28 | children: [ 29 | { 30 | type: 'element', 31 | tagName: 'path', 32 | properties: { 33 | 'stroke-linecap': 'round', 34 | 'stroke-linejoin': 'round', 35 | 'stroke-width': '2', 36 | d: 37 | 'M13.828 10.172a4 4 0 00-5.656 0l-4 4a4 4 0 105.656 5.656l1.102-1.101m-.758-4.899a4 4 0 005.656 0l4-4a4 4 0 00-5.656-5.656l-1.1 1.1', 38 | }, 39 | children: [], 40 | }, 41 | ], 42 | }, 43 | }, 44 | ], 45 | ], 46 | highlight: { 47 | alias: { 48 | svelte: 'html', 49 | jsonc: 'json', 50 | }, 51 | }, 52 | }; 53 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kit-docs", 3 | "version": "0.0.2", 4 | "type": "module", 5 | "author": "Martin Krisnanto Putra ", 6 | "homepage": "https://github.com/GrygrFlzr/kit-docs#readme", 7 | "bugs": "https://github.com/GrygrFlzr/kit-docs/issues", 8 | "license": "(MIT OR Apache-2.0)", 9 | "engines": { 10 | "node": "14.x" 11 | }, 12 | "scripts": { 13 | "dev": "svelte-kit dev", 14 | "build": "svelte-kit build", 15 | "start": "svelte-kit start", 16 | "clean": "rm -rf .svelte build functions api public .vercelignore .vercel_build_output" 17 | }, 18 | "devDependencies": { 19 | "@sveltejs/adapter-vercel": "next", 20 | "@sveltejs/kit": "next", 21 | "@tailwindcss/typography": "^0.4.0", 22 | "autoprefixer": "^10.2.5", 23 | "cssnano": "^4.1.10", 24 | "mdsvex": "^0.8.9", 25 | "postcss": "^8.2.8", 26 | "postcss-cli": "^8.3.1", 27 | "postcss-load-config": "^3.0.1", 28 | "prettier": "^2.2.1", 29 | "prismjs-tomorrow-theme": "0.0.1", 30 | "rehype-autolink-headings": "^5.0.1", 31 | "rehype-slug": "^4.0.1", 32 | "svelte": "^3.35.0", 33 | "svelte-preprocess": "^4.6.9", 34 | "tailwindcss": "^2.0.3", 35 | "tslib": "^2.1.0", 36 | "typescript": "^4.2.3", 37 | "vite": "^2.0.5" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | devDependencies: 2 | '@sveltejs/adapter-vercel': 1.0.0-next.4 3 | '@sveltejs/kit': 1.0.0-next.45_svelte@3.35.0+vite@2.0.5 4 | '@tailwindcss/typography': 0.4.0_tailwindcss@2.0.3 5 | autoprefixer: 10.2.5_postcss@8.2.8 6 | cssnano: 4.1.10 7 | mdsvex: 0.8.9_svelte@3.35.0 8 | postcss: 8.2.8 9 | postcss-cli: 8.3.1_postcss@8.2.8 10 | postcss-load-config: 3.0.1 11 | prettier: 2.2.1 12 | prismjs-tomorrow-theme: 0.0.1 13 | rehype-autolink-headings: 5.0.1 14 | rehype-slug: 4.0.1 15 | svelte: 3.35.0 16 | svelte-preprocess: 4.6.9_bfabe6c7bc3d73e76d0bc9dab084c580 17 | tailwindcss: 2.0.3_caf414ac65a978d0d57907a0ec9fb41e 18 | tslib: 2.1.0 19 | typescript: 4.2.3 20 | vite: 2.0.5 21 | lockfileVersion: 5.2 22 | packages: 23 | /@babel/code-frame/7.12.13: 24 | dependencies: 25 | '@babel/highlight': 7.13.10 26 | dev: true 27 | resolution: 28 | integrity: sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g== 29 | /@babel/helper-validator-identifier/7.12.11: 30 | dev: true 31 | resolution: 32 | integrity: sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== 33 | /@babel/highlight/7.13.10: 34 | dependencies: 35 | '@babel/helper-validator-identifier': 7.12.11 36 | chalk: 2.4.2 37 | js-tokens: 4.0.0 38 | dev: true 39 | resolution: 40 | integrity: sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg== 41 | /@fullhuman/postcss-purgecss/3.1.3: 42 | dependencies: 43 | purgecss: 3.1.3 44 | dev: true 45 | resolution: 46 | integrity: sha512-kwOXw8fZ0Lt1QmeOOrd+o4Ibvp4UTEBFQbzvWldjlKv5n+G9sXfIPn1hh63IQIL8K8vbvv1oYMJiIUbuy9bGaA== 47 | /@nodelib/fs.scandir/2.1.4: 48 | dependencies: 49 | '@nodelib/fs.stat': 2.0.4 50 | run-parallel: 1.2.0 51 | dev: true 52 | engines: 53 | node: '>= 8' 54 | resolution: 55 | integrity: sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA== 56 | /@nodelib/fs.stat/2.0.4: 57 | dev: true 58 | engines: 59 | node: '>= 8' 60 | resolution: 61 | integrity: sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q== 62 | /@nodelib/fs.walk/1.2.6: 63 | dependencies: 64 | '@nodelib/fs.scandir': 2.1.4 65 | fastq: 1.11.0 66 | dev: true 67 | engines: 68 | node: '>= 8' 69 | resolution: 70 | integrity: sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow== 71 | /@rollup/pluginutils/4.1.0: 72 | dependencies: 73 | estree-walker: 2.0.2 74 | picomatch: 2.2.2 75 | dev: true 76 | engines: 77 | node: '>= 8.0.0' 78 | peerDependencies: 79 | rollup: ^1.20.0||^2.0.0 80 | resolution: 81 | integrity: sha512-TrBhfJkFxA+ER+ew2U2/fHbebhLT/l/2pRk0hfj9KusXUuRXd2v0R58AfaZK9VXDQ4TogOSEmICVrQAA3zFnHQ== 82 | /@sveltejs/adapter-vercel/1.0.0-next.4: 83 | dependencies: 84 | '@sveltejs/app-utils': 1.0.0-next.3 85 | dev: true 86 | resolution: 87 | integrity: sha512-fk+u1xW69vknLepFIFoW2oSET+kbuZBeYqZ2rjQiR31tzU/sKocNvOO0bchh39RCNXMf2RiCEKtHMiYJGtKhQg== 88 | /@sveltejs/app-utils/1.0.0-next.3: 89 | dev: true 90 | resolution: 91 | integrity: sha512-KMvyA1yEx/VKBFpQH0Tbr0rXE/QcsKgIo/qwT+9Dx6mMjTykA+tulv4mD9AhjJk89jIK1XkzN2pdZcM9fbx6xg== 92 | /@sveltejs/kit/1.0.0-next.45_svelte@3.35.0+vite@2.0.5: 93 | dependencies: 94 | '@sveltejs/vite-plugin-svelte': 1.0.0-next.3_svelte@3.35.0+vite@2.0.5 95 | '@svitejs/vite-plugin-svelte': 0.10.0_svelte@3.35.0+vite@2.0.5 96 | cheap-watch: 1.0.3 97 | sade: 1.7.4 98 | svelte: 3.35.0 99 | vite: 2.0.5 100 | dev: true 101 | hasBin: true 102 | peerDependencies: 103 | svelte: ^3.32.1 104 | vite: ^2.0.4 105 | resolution: 106 | integrity: sha512-GghGUxszjgMJMf3j3FifoUB62dLDFWmy6eL6LxDj1VvpcpIx2PnJLbRbbyzzWNEKS4N41b8pQIi4uF+HYSVQ/w== 107 | /@sveltejs/vite-plugin-svelte/1.0.0-next.3_svelte@3.35.0+vite@2.0.5: 108 | dependencies: 109 | '@rollup/pluginutils': 4.1.0 110 | chalk: 4.1.0 111 | hash-sum: 2.0.0 112 | require-relative: 0.8.7 113 | slash: 3.0.0 114 | source-map: 0.7.3 115 | svelte: 3.35.0 116 | svelte-hmr: 0.12.9_svelte@3.35.0 117 | vite: 2.0.5 118 | dev: true 119 | peerDependencies: 120 | svelte: ^3.34.0 121 | vite: ^2 122 | resolution: 123 | integrity: sha512-9zS62JMhwHZ0/ZHrKErNfLMupwLStrnPJU2Dc3zstE6xJGxVuz3xmeVRG90wrEx1QEnEEB98YSmR5au8VXd1hw== 124 | /@svitejs/vite-plugin-svelte/0.10.0_svelte@3.35.0+vite@2.0.5: 125 | dependencies: 126 | '@rollup/pluginutils': 4.1.0 127 | chalk: 4.1.0 128 | debug: 4.3.1 129 | hash-sum: 2.0.0 130 | require-relative: 0.8.7 131 | slash: 3.0.0 132 | source-map: 0.7.3 133 | svelte: 3.35.0 134 | svelte-hmr: 0.13.0-2_svelte@3.35.0 135 | vite: 2.0.5 136 | dev: true 137 | engines: 138 | node: '>=12.0.0' 139 | peerDependencies: 140 | svelte: ^3.35.0 141 | vite: ^2.0.5 142 | resolution: 143 | integrity: sha512-gttcMIZvLwanYbkfkl77o8mkPKxnYGoqz0xOfz4ZPrzJdan+DzH9b2PEQbpWb53klFKANB7FPBDr7bCaixIT5Q== 144 | /@tailwindcss/typography/0.4.0_tailwindcss@2.0.3: 145 | dependencies: 146 | lodash.castarray: 4.4.0 147 | lodash.isplainobject: 4.0.6 148 | lodash.merge: 4.6.2 149 | lodash.uniq: 4.5.0 150 | tailwindcss: 2.0.3_caf414ac65a978d0d57907a0ec9fb41e 151 | dev: true 152 | peerDependencies: 153 | tailwindcss: 2.0.0-alpha.24 || ^2.0.0 154 | resolution: 155 | integrity: sha512-3BfOYT5MYNEq81Ism3L2qu/HRP2Q5vWqZtZRQqQrthHuaTK9qpuPfbMT5WATjAM5J1OePKBaI5pLoX4S1JGNMQ== 156 | /@types/node/14.14.34: 157 | dev: true 158 | resolution: 159 | integrity: sha512-dBPaxocOK6UVyvhbnpFIj2W+S+1cBTkHQbFQfeeJhoKFbzYcVUGHvddeWPSucKATb3F0+pgDq0i6ghEaZjsugA== 160 | /@types/parse-json/4.0.0: 161 | dev: true 162 | resolution: 163 | integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 164 | /@types/pug/2.0.4: 165 | dev: true 166 | resolution: 167 | integrity: sha1-h3L80EGOPNLMFxVV1zAHQVBR9LI= 168 | /@types/q/1.5.4: 169 | dev: true 170 | resolution: 171 | integrity: sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== 172 | /@types/sass/1.16.0: 173 | dependencies: 174 | '@types/node': 14.14.34 175 | dev: true 176 | resolution: 177 | integrity: sha512-2XZovu4NwcqmtZtsBR5XYLw18T8cBCnU2USFHTnYLLHz9fkhnoEMoDsqShJIOFsFhn5aJHjweiUUdTrDGujegA== 178 | /@types/unist/2.0.3: 179 | dev: true 180 | resolution: 181 | integrity: sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ== 182 | /acorn-node/1.8.2: 183 | dependencies: 184 | acorn: 7.4.1 185 | acorn-walk: 7.2.0 186 | xtend: 4.0.2 187 | dev: true 188 | resolution: 189 | integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== 190 | /acorn-walk/7.2.0: 191 | dev: true 192 | engines: 193 | node: '>=0.4.0' 194 | resolution: 195 | integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 196 | /acorn/7.4.1: 197 | dev: true 198 | engines: 199 | node: '>=0.4.0' 200 | hasBin: true 201 | resolution: 202 | integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 203 | /alphanum-sort/1.0.2: 204 | dev: true 205 | resolution: 206 | integrity: sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= 207 | /ansi-regex/5.0.0: 208 | dev: true 209 | engines: 210 | node: '>=8' 211 | resolution: 212 | integrity: sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 213 | /ansi-styles/3.2.1: 214 | dependencies: 215 | color-convert: 1.9.3 216 | dev: true 217 | engines: 218 | node: '>=4' 219 | resolution: 220 | integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 221 | /ansi-styles/4.3.0: 222 | dependencies: 223 | color-convert: 2.0.1 224 | dev: true 225 | engines: 226 | node: '>=8' 227 | resolution: 228 | integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 229 | /anymatch/3.1.1: 230 | dependencies: 231 | normalize-path: 3.0.0 232 | picomatch: 2.2.2 233 | dev: true 234 | engines: 235 | node: '>= 8' 236 | resolution: 237 | integrity: sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== 238 | /argparse/1.0.10: 239 | dependencies: 240 | sprintf-js: 1.0.3 241 | dev: true 242 | resolution: 243 | integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 244 | /array-union/2.1.0: 245 | dev: true 246 | engines: 247 | node: '>=8' 248 | resolution: 249 | integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 250 | /at-least-node/1.0.0: 251 | dev: true 252 | engines: 253 | node: '>= 4.0.0' 254 | resolution: 255 | integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== 256 | /autoprefixer/10.2.5_postcss@8.2.8: 257 | dependencies: 258 | browserslist: 4.16.3 259 | caniuse-lite: 1.0.30001199 260 | colorette: 1.2.2 261 | fraction.js: 4.0.13 262 | normalize-range: 0.1.2 263 | postcss: 8.2.8 264 | postcss-value-parser: 4.1.0 265 | dev: true 266 | engines: 267 | node: ^10 || ^12 || >=14 268 | hasBin: true 269 | peerDependencies: 270 | postcss: ^8.1.0 271 | resolution: 272 | integrity: sha512-7H4AJZXvSsn62SqZyJCP+1AWwOuoYpUfK6ot9vm0e87XD6mT8lDywc9D9OTJPMULyGcvmIxzTAMeG2Cc+YX+fA== 273 | /balanced-match/1.0.0: 274 | dev: true 275 | resolution: 276 | integrity: sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 277 | /binary-extensions/2.2.0: 278 | dev: true 279 | engines: 280 | node: '>=8' 281 | resolution: 282 | integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 283 | /boolbase/1.0.0: 284 | dev: true 285 | resolution: 286 | integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24= 287 | /brace-expansion/1.1.11: 288 | dependencies: 289 | balanced-match: 1.0.0 290 | concat-map: 0.0.1 291 | dev: true 292 | resolution: 293 | integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 294 | /braces/3.0.2: 295 | dependencies: 296 | fill-range: 7.0.1 297 | dev: true 298 | engines: 299 | node: '>=8' 300 | resolution: 301 | integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 302 | /browserslist/4.16.3: 303 | dependencies: 304 | caniuse-lite: 1.0.30001199 305 | colorette: 1.2.2 306 | electron-to-chromium: 1.3.687 307 | escalade: 3.1.1 308 | node-releases: 1.1.71 309 | dev: true 310 | engines: 311 | node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 312 | hasBin: true 313 | resolution: 314 | integrity: sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw== 315 | /bytes/3.1.0: 316 | dev: true 317 | engines: 318 | node: '>= 0.8' 319 | resolution: 320 | integrity: sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== 321 | /call-bind/1.0.2: 322 | dependencies: 323 | function-bind: 1.1.1 324 | get-intrinsic: 1.1.1 325 | dev: true 326 | resolution: 327 | integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 328 | /caller-callsite/2.0.0: 329 | dependencies: 330 | callsites: 2.0.0 331 | dev: true 332 | engines: 333 | node: '>=4' 334 | resolution: 335 | integrity: sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= 336 | /caller-path/2.0.0: 337 | dependencies: 338 | caller-callsite: 2.0.0 339 | dev: true 340 | engines: 341 | node: '>=4' 342 | resolution: 343 | integrity: sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= 344 | /callsites/2.0.0: 345 | dev: true 346 | engines: 347 | node: '>=4' 348 | resolution: 349 | integrity: sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= 350 | /callsites/3.1.0: 351 | dev: true 352 | engines: 353 | node: '>=6' 354 | resolution: 355 | integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 356 | /camelcase-css/2.0.1: 357 | dev: true 358 | engines: 359 | node: '>= 6' 360 | resolution: 361 | integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 362 | /caniuse-api/3.0.0: 363 | dependencies: 364 | browserslist: 4.16.3 365 | caniuse-lite: 1.0.30001199 366 | lodash.memoize: 4.1.2 367 | lodash.uniq: 4.5.0 368 | dev: true 369 | resolution: 370 | integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== 371 | /caniuse-lite/1.0.30001199: 372 | dev: true 373 | resolution: 374 | integrity: sha512-ifbK2eChUCFUwGhlEzIoVwzFt1+iriSjyKKFYNfv6hN34483wyWpLLavYQXhnR036LhkdUYaSDpHg1El++VgHQ== 375 | /chalk/2.4.2: 376 | dependencies: 377 | ansi-styles: 3.2.1 378 | escape-string-regexp: 1.0.5 379 | supports-color: 5.5.0 380 | dev: true 381 | engines: 382 | node: '>=4' 383 | resolution: 384 | integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 385 | /chalk/4.1.0: 386 | dependencies: 387 | ansi-styles: 4.3.0 388 | supports-color: 7.2.0 389 | dev: true 390 | engines: 391 | node: '>=10' 392 | resolution: 393 | integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 394 | /cheap-watch/1.0.3: 395 | dev: true 396 | engines: 397 | node: '>=8' 398 | resolution: 399 | integrity: sha512-xC5CruMhLzjPwJ5ecUxGu1uGmwJQykUhqd2QrCrYbwvsFYdRyviu6jG9+pccwDXJR/OpmOTOJ9yLFunVgQu9wg== 400 | /chokidar/3.5.1: 401 | dependencies: 402 | anymatch: 3.1.1 403 | braces: 3.0.2 404 | glob-parent: 5.1.2 405 | is-binary-path: 2.1.0 406 | is-glob: 4.0.1 407 | normalize-path: 3.0.0 408 | readdirp: 3.5.0 409 | dev: true 410 | engines: 411 | node: '>= 8.10.0' 412 | optionalDependencies: 413 | fsevents: 2.3.2 414 | resolution: 415 | integrity: sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== 416 | /clipboard/2.0.8: 417 | dependencies: 418 | good-listener: 1.2.2 419 | select: 1.1.2 420 | tiny-emitter: 2.1.0 421 | dev: true 422 | optional: true 423 | resolution: 424 | integrity: sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ== 425 | /cliui/7.0.4: 426 | dependencies: 427 | string-width: 4.2.2 428 | strip-ansi: 6.0.0 429 | wrap-ansi: 7.0.0 430 | dev: true 431 | resolution: 432 | integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 433 | /coa/2.0.2: 434 | dependencies: 435 | '@types/q': 1.5.4 436 | chalk: 2.4.2 437 | q: 1.5.1 438 | dev: true 439 | engines: 440 | node: '>= 4.0' 441 | resolution: 442 | integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== 443 | /color-convert/1.9.3: 444 | dependencies: 445 | color-name: 1.1.3 446 | dev: true 447 | resolution: 448 | integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 449 | /color-convert/2.0.1: 450 | dependencies: 451 | color-name: 1.1.4 452 | dev: true 453 | engines: 454 | node: '>=7.0.0' 455 | resolution: 456 | integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 457 | /color-name/1.1.3: 458 | dev: true 459 | resolution: 460 | integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 461 | /color-name/1.1.4: 462 | dev: true 463 | resolution: 464 | integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 465 | /color-string/1.5.5: 466 | dependencies: 467 | color-name: 1.1.4 468 | simple-swizzle: 0.2.2 469 | dev: true 470 | resolution: 471 | integrity: sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg== 472 | /color/3.1.3: 473 | dependencies: 474 | color-convert: 1.9.3 475 | color-string: 1.5.5 476 | dev: true 477 | resolution: 478 | integrity: sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== 479 | /colorette/1.2.2: 480 | dev: true 481 | resolution: 482 | integrity: sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== 483 | /commander/6.2.1: 484 | dev: true 485 | engines: 486 | node: '>= 6' 487 | resolution: 488 | integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== 489 | /concat-map/0.0.1: 490 | dev: true 491 | resolution: 492 | integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 493 | /cosmiconfig/5.2.1: 494 | dependencies: 495 | import-fresh: 2.0.0 496 | is-directory: 0.3.1 497 | js-yaml: 3.14.1 498 | parse-json: 4.0.0 499 | dev: true 500 | engines: 501 | node: '>=4' 502 | resolution: 503 | integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== 504 | /cosmiconfig/7.0.0: 505 | dependencies: 506 | '@types/parse-json': 4.0.0 507 | import-fresh: 3.3.0 508 | parse-json: 5.2.0 509 | path-type: 4.0.0 510 | yaml: 1.10.0 511 | dev: true 512 | engines: 513 | node: '>=10' 514 | resolution: 515 | integrity: sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== 516 | /css-color-names/0.0.4: 517 | dev: true 518 | resolution: 519 | integrity: sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= 520 | /css-declaration-sorter/4.0.1: 521 | dependencies: 522 | postcss: 7.0.35 523 | timsort: 0.3.0 524 | dev: true 525 | engines: 526 | node: '>4' 527 | resolution: 528 | integrity: sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA== 529 | /css-select-base-adapter/0.1.1: 530 | dev: true 531 | resolution: 532 | integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== 533 | /css-select/2.1.0: 534 | dependencies: 535 | boolbase: 1.0.0 536 | css-what: 3.4.2 537 | domutils: 1.7.0 538 | nth-check: 1.0.2 539 | dev: true 540 | resolution: 541 | integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== 542 | /css-tree/1.0.0-alpha.37: 543 | dependencies: 544 | mdn-data: 2.0.4 545 | source-map: 0.6.1 546 | dev: true 547 | engines: 548 | node: '>=8.0.0' 549 | resolution: 550 | integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== 551 | /css-tree/1.1.2: 552 | dependencies: 553 | mdn-data: 2.0.14 554 | source-map: 0.6.1 555 | dev: true 556 | engines: 557 | node: '>=8.0.0' 558 | resolution: 559 | integrity: sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ== 560 | /css-unit-converter/1.1.2: 561 | dev: true 562 | resolution: 563 | integrity: sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA== 564 | /css-what/3.4.2: 565 | dev: true 566 | engines: 567 | node: '>= 6' 568 | resolution: 569 | integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== 570 | /cssesc/3.0.0: 571 | dev: true 572 | engines: 573 | node: '>=4' 574 | hasBin: true 575 | resolution: 576 | integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 577 | /cssnano-preset-default/4.0.7: 578 | dependencies: 579 | css-declaration-sorter: 4.0.1 580 | cssnano-util-raw-cache: 4.0.1 581 | postcss: 7.0.35 582 | postcss-calc: 7.0.5 583 | postcss-colormin: 4.0.3 584 | postcss-convert-values: 4.0.1 585 | postcss-discard-comments: 4.0.2 586 | postcss-discard-duplicates: 4.0.2 587 | postcss-discard-empty: 4.0.1 588 | postcss-discard-overridden: 4.0.1 589 | postcss-merge-longhand: 4.0.11 590 | postcss-merge-rules: 4.0.3 591 | postcss-minify-font-values: 4.0.2 592 | postcss-minify-gradients: 4.0.2 593 | postcss-minify-params: 4.0.2 594 | postcss-minify-selectors: 4.0.2 595 | postcss-normalize-charset: 4.0.1 596 | postcss-normalize-display-values: 4.0.2 597 | postcss-normalize-positions: 4.0.2 598 | postcss-normalize-repeat-style: 4.0.2 599 | postcss-normalize-string: 4.0.2 600 | postcss-normalize-timing-functions: 4.0.2 601 | postcss-normalize-unicode: 4.0.1 602 | postcss-normalize-url: 4.0.1 603 | postcss-normalize-whitespace: 4.0.2 604 | postcss-ordered-values: 4.1.2 605 | postcss-reduce-initial: 4.0.3 606 | postcss-reduce-transforms: 4.0.2 607 | postcss-svgo: 4.0.2 608 | postcss-unique-selectors: 4.0.1 609 | dev: true 610 | engines: 611 | node: '>=6.9.0' 612 | resolution: 613 | integrity: sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA== 614 | /cssnano-util-get-arguments/4.0.0: 615 | dev: true 616 | engines: 617 | node: '>=6.9.0' 618 | resolution: 619 | integrity: sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8= 620 | /cssnano-util-get-match/4.0.0: 621 | dev: true 622 | engines: 623 | node: '>=6.9.0' 624 | resolution: 625 | integrity: sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0= 626 | /cssnano-util-raw-cache/4.0.1: 627 | dependencies: 628 | postcss: 7.0.35 629 | dev: true 630 | engines: 631 | node: '>=6.9.0' 632 | resolution: 633 | integrity: sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA== 634 | /cssnano-util-same-parent/4.0.1: 635 | dev: true 636 | engines: 637 | node: '>=6.9.0' 638 | resolution: 639 | integrity: sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== 640 | /cssnano/4.1.10: 641 | dependencies: 642 | cosmiconfig: 5.2.1 643 | cssnano-preset-default: 4.0.7 644 | is-resolvable: 1.1.0 645 | postcss: 7.0.35 646 | dev: true 647 | engines: 648 | node: '>=6.9.0' 649 | resolution: 650 | integrity: sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ== 651 | /csso/4.2.0: 652 | dependencies: 653 | css-tree: 1.1.2 654 | dev: true 655 | engines: 656 | node: '>=8.0.0' 657 | resolution: 658 | integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== 659 | /debug/4.3.1: 660 | dependencies: 661 | ms: 2.1.2 662 | dev: true 663 | engines: 664 | node: '>=6.0' 665 | peerDependencies: 666 | supports-color: '*' 667 | peerDependenciesMeta: 668 | supports-color: 669 | optional: true 670 | resolution: 671 | integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 672 | /define-properties/1.1.3: 673 | dependencies: 674 | object-keys: 1.1.1 675 | dev: true 676 | engines: 677 | node: '>= 0.4' 678 | resolution: 679 | integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 680 | /defined/1.0.0: 681 | dev: true 682 | resolution: 683 | integrity: sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= 684 | /delegate/3.2.0: 685 | dev: true 686 | optional: true 687 | resolution: 688 | integrity: sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw== 689 | /dependency-graph/0.9.0: 690 | dev: true 691 | engines: 692 | node: '>= 0.6.0' 693 | resolution: 694 | integrity: sha512-9YLIBURXj4DJMFALxXw9K3Y3rwb5Fk0X5/8ipCzaN84+gKxoHK43tVKRNakCQbiEx07E8Uwhuq21BpUagFhZ8w== 695 | /detect-indent/6.0.0: 696 | dev: true 697 | engines: 698 | node: '>=8' 699 | resolution: 700 | integrity: sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA== 701 | /detective/5.2.0: 702 | dependencies: 703 | acorn-node: 1.8.2 704 | defined: 1.0.0 705 | minimist: 1.2.5 706 | dev: true 707 | engines: 708 | node: '>=0.8.0' 709 | hasBin: true 710 | resolution: 711 | integrity: sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg== 712 | /didyoumean/1.2.1: 713 | dev: true 714 | resolution: 715 | integrity: sha1-6S7f2tplN9SE1zwBcv0eugxJdv8= 716 | /dir-glob/3.0.1: 717 | dependencies: 718 | path-type: 4.0.0 719 | dev: true 720 | engines: 721 | node: '>=8' 722 | resolution: 723 | integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 724 | /dom-serializer/0.2.2: 725 | dependencies: 726 | domelementtype: 2.1.0 727 | entities: 2.2.0 728 | dev: true 729 | resolution: 730 | integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== 731 | /domelementtype/1.3.1: 732 | dev: true 733 | resolution: 734 | integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== 735 | /domelementtype/2.1.0: 736 | dev: true 737 | resolution: 738 | integrity: sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w== 739 | /domutils/1.7.0: 740 | dependencies: 741 | dom-serializer: 0.2.2 742 | domelementtype: 1.3.1 743 | dev: true 744 | resolution: 745 | integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== 746 | /dot-prop/5.3.0: 747 | dependencies: 748 | is-obj: 2.0.0 749 | dev: true 750 | engines: 751 | node: '>=8' 752 | resolution: 753 | integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== 754 | /electron-to-chromium/1.3.687: 755 | dev: true 756 | resolution: 757 | integrity: sha512-IpzksdQNl3wdgkzf7dnA7/v10w0Utf1dF2L+B4+gKrloBrxCut+au+kky3PYvle3RMdSxZP+UiCZtLbcYRxSNQ== 758 | /emoji-regex/6.1.1: 759 | dev: true 760 | resolution: 761 | integrity: sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4= 762 | /emoji-regex/8.0.0: 763 | dev: true 764 | resolution: 765 | integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 766 | /entities/2.2.0: 767 | dev: true 768 | resolution: 769 | integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== 770 | /error-ex/1.3.2: 771 | dependencies: 772 | is-arrayish: 0.2.1 773 | dev: true 774 | resolution: 775 | integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 776 | /es-abstract/1.18.0: 777 | dependencies: 778 | call-bind: 1.0.2 779 | es-to-primitive: 1.2.1 780 | function-bind: 1.1.1 781 | get-intrinsic: 1.1.1 782 | has: 1.0.3 783 | has-symbols: 1.0.2 784 | is-callable: 1.2.3 785 | is-negative-zero: 2.0.1 786 | is-regex: 1.1.2 787 | is-string: 1.0.5 788 | object-inspect: 1.9.0 789 | object-keys: 1.1.1 790 | object.assign: 4.1.2 791 | string.prototype.trimend: 1.0.4 792 | string.prototype.trimstart: 1.0.4 793 | unbox-primitive: 1.0.0 794 | dev: true 795 | engines: 796 | node: '>= 0.4' 797 | resolution: 798 | integrity: sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw== 799 | /es-to-primitive/1.2.1: 800 | dependencies: 801 | is-callable: 1.2.3 802 | is-date-object: 1.0.2 803 | is-symbol: 1.0.3 804 | dev: true 805 | engines: 806 | node: '>= 0.4' 807 | resolution: 808 | integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 809 | /esbuild/0.8.57: 810 | dev: true 811 | hasBin: true 812 | requiresBuild: true 813 | resolution: 814 | integrity: sha512-j02SFrUwFTRUqiY0Kjplwjm1psuzO1d6AjaXKuOR9hrY0HuPsT6sV42B6myW34h1q4CRy+Y3g4RU/cGJeI/nNA== 815 | /escalade/3.1.1: 816 | dev: true 817 | engines: 818 | node: '>=6' 819 | resolution: 820 | integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 821 | /escape-string-regexp/1.0.5: 822 | dev: true 823 | engines: 824 | node: '>=0.8.0' 825 | resolution: 826 | integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 827 | /esprima/4.0.1: 828 | dev: true 829 | engines: 830 | node: '>=4' 831 | hasBin: true 832 | resolution: 833 | integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 834 | /estree-walker/2.0.2: 835 | dev: true 836 | resolution: 837 | integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== 838 | /extend/3.0.2: 839 | dev: true 840 | resolution: 841 | integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 842 | /fast-glob/3.2.5: 843 | dependencies: 844 | '@nodelib/fs.stat': 2.0.4 845 | '@nodelib/fs.walk': 1.2.6 846 | glob-parent: 5.1.2 847 | merge2: 1.4.1 848 | micromatch: 4.0.2 849 | picomatch: 2.2.2 850 | dev: true 851 | engines: 852 | node: '>=8' 853 | resolution: 854 | integrity: sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg== 855 | /fastq/1.11.0: 856 | dependencies: 857 | reusify: 1.0.4 858 | dev: true 859 | resolution: 860 | integrity: sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g== 861 | /fill-range/7.0.1: 862 | dependencies: 863 | to-regex-range: 5.0.1 864 | dev: true 865 | engines: 866 | node: '>=8' 867 | resolution: 868 | integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 869 | /fraction.js/4.0.13: 870 | dev: true 871 | resolution: 872 | integrity: sha512-E1fz2Xs9ltlUp+qbiyx9wmt2n9dRzPsS11Jtdb8D2o+cC7wr9xkkKsVKJuBX0ST+LVS+LhLO+SbLJNtfWcJvXA== 873 | /fs-extra/9.1.0: 874 | dependencies: 875 | at-least-node: 1.0.0 876 | graceful-fs: 4.2.6 877 | jsonfile: 6.1.0 878 | universalify: 2.0.0 879 | dev: true 880 | engines: 881 | node: '>=10' 882 | resolution: 883 | integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== 884 | /fs.realpath/1.0.0: 885 | dev: true 886 | resolution: 887 | integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 888 | /fsevents/2.3.2: 889 | dev: true 890 | engines: 891 | node: ^8.16.0 || ^10.6.0 || >=11.0.0 892 | optional: true 893 | os: 894 | - darwin 895 | resolution: 896 | integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 897 | /function-bind/1.1.1: 898 | dev: true 899 | resolution: 900 | integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 901 | /get-caller-file/2.0.5: 902 | dev: true 903 | engines: 904 | node: 6.* || 8.* || >= 10.* 905 | resolution: 906 | integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 907 | /get-intrinsic/1.1.1: 908 | dependencies: 909 | function-bind: 1.1.1 910 | has: 1.0.3 911 | has-symbols: 1.0.2 912 | dev: true 913 | resolution: 914 | integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 915 | /get-stdin/8.0.0: 916 | dev: true 917 | engines: 918 | node: '>=10' 919 | resolution: 920 | integrity: sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== 921 | /github-slugger/1.3.0: 922 | dependencies: 923 | emoji-regex: 6.1.1 924 | dev: true 925 | resolution: 926 | integrity: sha512-gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q== 927 | /glob-parent/5.1.2: 928 | dependencies: 929 | is-glob: 4.0.1 930 | dev: true 931 | engines: 932 | node: '>= 6' 933 | resolution: 934 | integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 935 | /glob/7.1.6: 936 | dependencies: 937 | fs.realpath: 1.0.0 938 | inflight: 1.0.6 939 | inherits: 2.0.4 940 | minimatch: 3.0.4 941 | once: 1.4.0 942 | path-is-absolute: 1.0.1 943 | dev: true 944 | resolution: 945 | integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 946 | /globby/11.0.2: 947 | dependencies: 948 | array-union: 2.1.0 949 | dir-glob: 3.0.1 950 | fast-glob: 3.2.5 951 | ignore: 5.1.8 952 | merge2: 1.4.1 953 | slash: 3.0.0 954 | dev: true 955 | engines: 956 | node: '>=10' 957 | resolution: 958 | integrity: sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og== 959 | /good-listener/1.2.2: 960 | dependencies: 961 | delegate: 3.2.0 962 | dev: true 963 | optional: true 964 | resolution: 965 | integrity: sha1-1TswzfkxPf+33JoNR3CWqm0UXFA= 966 | /graceful-fs/4.2.6: 967 | dev: true 968 | resolution: 969 | integrity: sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== 970 | /has-bigints/1.0.1: 971 | dev: true 972 | resolution: 973 | integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== 974 | /has-flag/3.0.0: 975 | dev: true 976 | engines: 977 | node: '>=4' 978 | resolution: 979 | integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 980 | /has-flag/4.0.0: 981 | dev: true 982 | engines: 983 | node: '>=8' 984 | resolution: 985 | integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 986 | /has-symbols/1.0.2: 987 | dev: true 988 | engines: 989 | node: '>= 0.4' 990 | resolution: 991 | integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== 992 | /has/1.0.3: 993 | dependencies: 994 | function-bind: 1.1.1 995 | dev: true 996 | engines: 997 | node: '>= 0.4.0' 998 | resolution: 999 | integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1000 | /hash-sum/2.0.0: 1001 | dev: true 1002 | resolution: 1003 | integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg== 1004 | /hast-util-has-property/1.0.4: 1005 | dev: true 1006 | resolution: 1007 | integrity: sha512-ghHup2voGfgFoHMGnaLHOjbYFACKrRh9KFttdCzMCbFoBMJXiNi2+XTrPP8+q6cDJM/RSqlCfVWrjp1H201rZg== 1008 | /hast-util-heading-rank/1.0.1: 1009 | dev: true 1010 | resolution: 1011 | integrity: sha512-P6Hq7RCky9syMevlrN90QWpqWDXCxwIVOfQR2rK6P4GpY4bqjKEuCzoWSRORZ7vz+VgRpLnXimh+mkwvVFjbyQ== 1012 | /hast-util-to-string/1.0.4: 1013 | dev: true 1014 | resolution: 1015 | integrity: sha512-eK0MxRX47AV2eZ+Lyr18DCpQgodvaS3fAQO2+b9Two9F5HEoRPhiUMNzoXArMJfZi2yieFzUBMRl3HNJ3Jus3w== 1016 | /hex-color-regex/1.1.0: 1017 | dev: true 1018 | resolution: 1019 | integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== 1020 | /hsl-regex/1.0.0: 1021 | dev: true 1022 | resolution: 1023 | integrity: sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4= 1024 | /hsla-regex/1.0.0: 1025 | dev: true 1026 | resolution: 1027 | integrity: sha1-wc56MWjIxmFAM6S194d/OyJfnDg= 1028 | /html-comment-regex/1.1.2: 1029 | dev: true 1030 | resolution: 1031 | integrity: sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== 1032 | /html-tags/3.1.0: 1033 | dev: true 1034 | engines: 1035 | node: '>=8' 1036 | resolution: 1037 | integrity: sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg== 1038 | /ignore/5.1.8: 1039 | dev: true 1040 | engines: 1041 | node: '>= 4' 1042 | resolution: 1043 | integrity: sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== 1044 | /import-cwd/3.0.0: 1045 | dependencies: 1046 | import-from: 3.0.0 1047 | dev: true 1048 | engines: 1049 | node: '>=8' 1050 | resolution: 1051 | integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg== 1052 | /import-fresh/2.0.0: 1053 | dependencies: 1054 | caller-path: 2.0.0 1055 | resolve-from: 3.0.0 1056 | dev: true 1057 | engines: 1058 | node: '>=4' 1059 | resolution: 1060 | integrity: sha1-2BNVwVYS04bGH53dOSLUMEgipUY= 1061 | /import-fresh/3.3.0: 1062 | dependencies: 1063 | parent-module: 1.0.1 1064 | resolve-from: 4.0.0 1065 | dev: true 1066 | engines: 1067 | node: '>=6' 1068 | resolution: 1069 | integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1070 | /import-from/3.0.0: 1071 | dependencies: 1072 | resolve-from: 5.0.0 1073 | dev: true 1074 | engines: 1075 | node: '>=8' 1076 | resolution: 1077 | integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ== 1078 | /indexes-of/1.0.1: 1079 | dev: true 1080 | resolution: 1081 | integrity: sha1-8w9xbI4r00bHtn0985FVZqfAVgc= 1082 | /inflight/1.0.6: 1083 | dependencies: 1084 | once: 1.4.0 1085 | wrappy: 1.0.2 1086 | dev: true 1087 | resolution: 1088 | integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1089 | /inherits/2.0.4: 1090 | dev: true 1091 | resolution: 1092 | integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1093 | /is-absolute-url/2.1.0: 1094 | dev: true 1095 | engines: 1096 | node: '>=0.10.0' 1097 | resolution: 1098 | integrity: sha1-UFMN+4T8yap9vnhS6Do3uTufKqY= 1099 | /is-arrayish/0.2.1: 1100 | dev: true 1101 | resolution: 1102 | integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1103 | /is-arrayish/0.3.2: 1104 | dev: true 1105 | resolution: 1106 | integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== 1107 | /is-bigint/1.0.1: 1108 | dev: true 1109 | resolution: 1110 | integrity: sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg== 1111 | /is-binary-path/2.1.0: 1112 | dependencies: 1113 | binary-extensions: 2.2.0 1114 | dev: true 1115 | engines: 1116 | node: '>=8' 1117 | resolution: 1118 | integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1119 | /is-boolean-object/1.1.0: 1120 | dependencies: 1121 | call-bind: 1.0.2 1122 | dev: true 1123 | engines: 1124 | node: '>= 0.4' 1125 | resolution: 1126 | integrity: sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA== 1127 | /is-callable/1.2.3: 1128 | dev: true 1129 | engines: 1130 | node: '>= 0.4' 1131 | resolution: 1132 | integrity: sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ== 1133 | /is-color-stop/1.1.0: 1134 | dependencies: 1135 | css-color-names: 0.0.4 1136 | hex-color-regex: 1.1.0 1137 | hsl-regex: 1.0.0 1138 | hsla-regex: 1.0.0 1139 | rgb-regex: 1.0.1 1140 | rgba-regex: 1.0.0 1141 | dev: true 1142 | resolution: 1143 | integrity: sha1-z/9HGu5N1cnhWFmPvhKWe1za00U= 1144 | /is-core-module/2.2.0: 1145 | dependencies: 1146 | has: 1.0.3 1147 | dev: true 1148 | resolution: 1149 | integrity: sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== 1150 | /is-date-object/1.0.2: 1151 | dev: true 1152 | engines: 1153 | node: '>= 0.4' 1154 | resolution: 1155 | integrity: sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 1156 | /is-directory/0.3.1: 1157 | dev: true 1158 | engines: 1159 | node: '>=0.10.0' 1160 | resolution: 1161 | integrity: sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= 1162 | /is-extglob/2.1.1: 1163 | dev: true 1164 | engines: 1165 | node: '>=0.10.0' 1166 | resolution: 1167 | integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1168 | /is-fullwidth-code-point/3.0.0: 1169 | dev: true 1170 | engines: 1171 | node: '>=8' 1172 | resolution: 1173 | integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1174 | /is-glob/4.0.1: 1175 | dependencies: 1176 | is-extglob: 2.1.1 1177 | dev: true 1178 | engines: 1179 | node: '>=0.10.0' 1180 | resolution: 1181 | integrity: sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1182 | /is-negative-zero/2.0.1: 1183 | dev: true 1184 | engines: 1185 | node: '>= 0.4' 1186 | resolution: 1187 | integrity: sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== 1188 | /is-number-object/1.0.4: 1189 | dev: true 1190 | engines: 1191 | node: '>= 0.4' 1192 | resolution: 1193 | integrity: sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw== 1194 | /is-number/7.0.0: 1195 | dev: true 1196 | engines: 1197 | node: '>=0.12.0' 1198 | resolution: 1199 | integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1200 | /is-obj/2.0.0: 1201 | dev: true 1202 | engines: 1203 | node: '>=8' 1204 | resolution: 1205 | integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 1206 | /is-regex/1.1.2: 1207 | dependencies: 1208 | call-bind: 1.0.2 1209 | has-symbols: 1.0.2 1210 | dev: true 1211 | engines: 1212 | node: '>= 0.4' 1213 | resolution: 1214 | integrity: sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg== 1215 | /is-resolvable/1.1.0: 1216 | dev: true 1217 | resolution: 1218 | integrity: sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== 1219 | /is-string/1.0.5: 1220 | dev: true 1221 | engines: 1222 | node: '>= 0.4' 1223 | resolution: 1224 | integrity: sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 1225 | /is-svg/3.0.0: 1226 | dependencies: 1227 | html-comment-regex: 1.1.2 1228 | dev: true 1229 | engines: 1230 | node: '>=4' 1231 | resolution: 1232 | integrity: sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ== 1233 | /is-symbol/1.0.3: 1234 | dependencies: 1235 | has-symbols: 1.0.2 1236 | dev: true 1237 | engines: 1238 | node: '>= 0.4' 1239 | resolution: 1240 | integrity: sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 1241 | /js-tokens/4.0.0: 1242 | dev: true 1243 | resolution: 1244 | integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1245 | /js-yaml/3.14.1: 1246 | dependencies: 1247 | argparse: 1.0.10 1248 | esprima: 4.0.1 1249 | dev: true 1250 | hasBin: true 1251 | resolution: 1252 | integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 1253 | /json-parse-better-errors/1.0.2: 1254 | dev: true 1255 | resolution: 1256 | integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 1257 | /json-parse-even-better-errors/2.3.1: 1258 | dev: true 1259 | resolution: 1260 | integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1261 | /jsonfile/6.1.0: 1262 | dependencies: 1263 | universalify: 2.0.0 1264 | dev: true 1265 | optionalDependencies: 1266 | graceful-fs: 4.2.6 1267 | resolution: 1268 | integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== 1269 | /lines-and-columns/1.1.6: 1270 | dev: true 1271 | resolution: 1272 | integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 1273 | /lodash.castarray/4.4.0: 1274 | dev: true 1275 | resolution: 1276 | integrity: sha1-wCUTUV4wna3dTCTGDP3c9ZdtkRU= 1277 | /lodash.difference/4.5.0: 1278 | dev: true 1279 | resolution: 1280 | integrity: sha1-nMtOUF1Ia5FlE0V3KIWi3yf9AXw= 1281 | /lodash.forown/4.4.0: 1282 | dev: true 1283 | resolution: 1284 | integrity: sha1-hRFc8E9z75ZuztUlEdOJPMRmg68= 1285 | /lodash.get/4.4.2: 1286 | dev: true 1287 | resolution: 1288 | integrity: sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= 1289 | /lodash.groupby/4.6.0: 1290 | dev: true 1291 | resolution: 1292 | integrity: sha1-Cwih3PaDl8OXhVwyOXg4Mt90A9E= 1293 | /lodash.isplainobject/4.0.6: 1294 | dev: true 1295 | resolution: 1296 | integrity: sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs= 1297 | /lodash.memoize/4.1.2: 1298 | dev: true 1299 | resolution: 1300 | integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= 1301 | /lodash.merge/4.6.2: 1302 | dev: true 1303 | resolution: 1304 | integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1305 | /lodash.sortby/4.7.0: 1306 | dev: true 1307 | resolution: 1308 | integrity: sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= 1309 | /lodash.toarray/4.4.0: 1310 | dev: true 1311 | resolution: 1312 | integrity: sha1-JMS/zWsvuji/0FlNsRedjptlZWE= 1313 | /lodash.uniq/4.5.0: 1314 | dev: true 1315 | resolution: 1316 | integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= 1317 | /lodash/4.17.21: 1318 | dev: true 1319 | resolution: 1320 | integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1321 | /mdn-data/2.0.14: 1322 | dev: true 1323 | resolution: 1324 | integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== 1325 | /mdn-data/2.0.4: 1326 | dev: true 1327 | resolution: 1328 | integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== 1329 | /mdsvex/0.8.9_svelte@3.35.0: 1330 | dependencies: 1331 | '@types/unist': 2.0.3 1332 | prismjs: 1.23.0 1333 | svelte: 3.35.0 1334 | vfile-message: 2.0.4 1335 | dev: true 1336 | peerDependencies: 1337 | svelte: 3.x 1338 | resolution: 1339 | integrity: sha512-9CDBDV29IVNJsJWDlCg1UwascU8QmuHsYEXJH2ZGsf7lCCWUDSwbOmR+I77tm8D2YQrPsbLCLq/UndUMJck3Cw== 1340 | /merge2/1.4.1: 1341 | dev: true 1342 | engines: 1343 | node: '>= 8' 1344 | resolution: 1345 | integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1346 | /micromatch/4.0.2: 1347 | dependencies: 1348 | braces: 3.0.2 1349 | picomatch: 2.2.2 1350 | dev: true 1351 | engines: 1352 | node: '>=8' 1353 | resolution: 1354 | integrity: sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 1355 | /min-indent/1.0.1: 1356 | dev: true 1357 | engines: 1358 | node: '>=4' 1359 | resolution: 1360 | integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 1361 | /minimatch/3.0.4: 1362 | dependencies: 1363 | brace-expansion: 1.1.11 1364 | dev: true 1365 | resolution: 1366 | integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1367 | /minimist/1.2.5: 1368 | dev: true 1369 | resolution: 1370 | integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1371 | /mkdirp/0.5.5: 1372 | dependencies: 1373 | minimist: 1.2.5 1374 | dev: true 1375 | hasBin: true 1376 | resolution: 1377 | integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 1378 | /modern-normalize/1.0.0: 1379 | dev: true 1380 | engines: 1381 | node: '>=6' 1382 | resolution: 1383 | integrity: sha512-1lM+BMLGuDfsdwf3rsgBSrxJwAZHFIrQ8YR61xIqdHo0uNKI9M52wNpHSrliZATJp51On6JD0AfRxd4YGSU0lw== 1384 | /mri/1.1.6: 1385 | dev: true 1386 | engines: 1387 | node: '>=4' 1388 | resolution: 1389 | integrity: sha512-oi1b3MfbyGa7FJMP9GmLTttni5JoICpYBRlq+x5V16fZbLsnL9N3wFqqIm/nIG43FjUFkFh9Epzp/kzUGUnJxQ== 1390 | /ms/2.1.2: 1391 | dev: true 1392 | resolution: 1393 | integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1394 | /nanoid/3.1.21: 1395 | dev: true 1396 | engines: 1397 | node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 1398 | hasBin: true 1399 | resolution: 1400 | integrity: sha512-A6oZraK4DJkAOICstsGH98dvycPr/4GGDH7ZWKmMdd3vGcOurZ6JmWFUt0DA5bzrrn2FrUjmv6mFNWvv8jpppA== 1401 | /node-emoji/1.10.0: 1402 | dependencies: 1403 | lodash.toarray: 4.4.0 1404 | dev: true 1405 | resolution: 1406 | integrity: sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw== 1407 | /node-releases/1.1.71: 1408 | dev: true 1409 | resolution: 1410 | integrity: sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg== 1411 | /normalize-path/3.0.0: 1412 | dev: true 1413 | engines: 1414 | node: '>=0.10.0' 1415 | resolution: 1416 | integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1417 | /normalize-range/0.1.2: 1418 | dev: true 1419 | engines: 1420 | node: '>=0.10.0' 1421 | resolution: 1422 | integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= 1423 | /normalize-url/3.3.0: 1424 | dev: true 1425 | engines: 1426 | node: '>=6' 1427 | resolution: 1428 | integrity: sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== 1429 | /nth-check/1.0.2: 1430 | dependencies: 1431 | boolbase: 1.0.0 1432 | dev: true 1433 | resolution: 1434 | integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== 1435 | /object-assign/4.1.1: 1436 | dev: true 1437 | engines: 1438 | node: '>=0.10.0' 1439 | resolution: 1440 | integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1441 | /object-hash/2.1.1: 1442 | dev: true 1443 | engines: 1444 | node: '>= 6' 1445 | resolution: 1446 | integrity: sha512-VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ== 1447 | /object-inspect/1.9.0: 1448 | dev: true 1449 | resolution: 1450 | integrity: sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== 1451 | /object-keys/1.1.1: 1452 | dev: true 1453 | engines: 1454 | node: '>= 0.4' 1455 | resolution: 1456 | integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1457 | /object.assign/4.1.2: 1458 | dependencies: 1459 | call-bind: 1.0.2 1460 | define-properties: 1.1.3 1461 | has-symbols: 1.0.2 1462 | object-keys: 1.1.1 1463 | dev: true 1464 | engines: 1465 | node: '>= 0.4' 1466 | resolution: 1467 | integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 1468 | /object.getownpropertydescriptors/2.1.2: 1469 | dependencies: 1470 | call-bind: 1.0.2 1471 | define-properties: 1.1.3 1472 | es-abstract: 1.18.0 1473 | dev: true 1474 | engines: 1475 | node: '>= 0.8' 1476 | resolution: 1477 | integrity: sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ== 1478 | /object.values/1.1.3: 1479 | dependencies: 1480 | call-bind: 1.0.2 1481 | define-properties: 1.1.3 1482 | es-abstract: 1.18.0 1483 | has: 1.0.3 1484 | dev: true 1485 | engines: 1486 | node: '>= 0.4' 1487 | resolution: 1488 | integrity: sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw== 1489 | /once/1.4.0: 1490 | dependencies: 1491 | wrappy: 1.0.2 1492 | dev: true 1493 | resolution: 1494 | integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1495 | /parent-module/1.0.1: 1496 | dependencies: 1497 | callsites: 3.1.0 1498 | dev: true 1499 | engines: 1500 | node: '>=6' 1501 | resolution: 1502 | integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1503 | /parse-json/4.0.0: 1504 | dependencies: 1505 | error-ex: 1.3.2 1506 | json-parse-better-errors: 1.0.2 1507 | dev: true 1508 | engines: 1509 | node: '>=4' 1510 | resolution: 1511 | integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 1512 | /parse-json/5.2.0: 1513 | dependencies: 1514 | '@babel/code-frame': 7.12.13 1515 | error-ex: 1.3.2 1516 | json-parse-even-better-errors: 2.3.1 1517 | lines-and-columns: 1.1.6 1518 | dev: true 1519 | engines: 1520 | node: '>=8' 1521 | resolution: 1522 | integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 1523 | /path-is-absolute/1.0.1: 1524 | dev: true 1525 | engines: 1526 | node: '>=0.10.0' 1527 | resolution: 1528 | integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1529 | /path-parse/1.0.6: 1530 | dev: true 1531 | resolution: 1532 | integrity: sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1533 | /path-type/4.0.0: 1534 | dev: true 1535 | engines: 1536 | node: '>=8' 1537 | resolution: 1538 | integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1539 | /picomatch/2.2.2: 1540 | dev: true 1541 | engines: 1542 | node: '>=8.6' 1543 | resolution: 1544 | integrity: sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 1545 | /pify/2.3.0: 1546 | dev: true 1547 | engines: 1548 | node: '>=0.10.0' 1549 | resolution: 1550 | integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 1551 | /postcss-calc/7.0.5: 1552 | dependencies: 1553 | postcss: 7.0.35 1554 | postcss-selector-parser: 6.0.4 1555 | postcss-value-parser: 4.1.0 1556 | dev: true 1557 | resolution: 1558 | integrity: sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg== 1559 | /postcss-cli/8.3.1_postcss@8.2.8: 1560 | dependencies: 1561 | chalk: 4.1.0 1562 | chokidar: 3.5.1 1563 | dependency-graph: 0.9.0 1564 | fs-extra: 9.1.0 1565 | get-stdin: 8.0.0 1566 | globby: 11.0.2 1567 | postcss: 8.2.8 1568 | postcss-load-config: 3.0.1 1569 | postcss-reporter: 7.0.2_postcss@8.2.8 1570 | pretty-hrtime: 1.0.3 1571 | read-cache: 1.0.0 1572 | slash: 3.0.0 1573 | yargs: 16.2.0 1574 | dev: true 1575 | engines: 1576 | node: '>=10' 1577 | hasBin: true 1578 | peerDependencies: 1579 | postcss: ^8.0.0 1580 | resolution: 1581 | integrity: sha512-leHXsQRq89S3JC9zw/tKyiVV2jAhnfQe0J8VI4eQQbUjwIe0XxVqLrR+7UsahF1s9wi4GlqP6SJ8ydf44cgF2Q== 1582 | /postcss-colormin/4.0.3: 1583 | dependencies: 1584 | browserslist: 4.16.3 1585 | color: 3.1.3 1586 | has: 1.0.3 1587 | postcss: 7.0.35 1588 | postcss-value-parser: 3.3.1 1589 | dev: true 1590 | engines: 1591 | node: '>=6.9.0' 1592 | resolution: 1593 | integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw== 1594 | /postcss-convert-values/4.0.1: 1595 | dependencies: 1596 | postcss: 7.0.35 1597 | postcss-value-parser: 3.3.1 1598 | dev: true 1599 | engines: 1600 | node: '>=6.9.0' 1601 | resolution: 1602 | integrity: sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ== 1603 | /postcss-discard-comments/4.0.2: 1604 | dependencies: 1605 | postcss: 7.0.35 1606 | dev: true 1607 | engines: 1608 | node: '>=6.9.0' 1609 | resolution: 1610 | integrity: sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== 1611 | /postcss-discard-duplicates/4.0.2: 1612 | dependencies: 1613 | postcss: 7.0.35 1614 | dev: true 1615 | engines: 1616 | node: '>=6.9.0' 1617 | resolution: 1618 | integrity: sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ== 1619 | /postcss-discard-empty/4.0.1: 1620 | dependencies: 1621 | postcss: 7.0.35 1622 | dev: true 1623 | engines: 1624 | node: '>=6.9.0' 1625 | resolution: 1626 | integrity: sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w== 1627 | /postcss-discard-overridden/4.0.1: 1628 | dependencies: 1629 | postcss: 7.0.35 1630 | dev: true 1631 | engines: 1632 | node: '>=6.9.0' 1633 | resolution: 1634 | integrity: sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg== 1635 | /postcss-functions/3.0.0: 1636 | dependencies: 1637 | glob: 7.1.6 1638 | object-assign: 4.1.1 1639 | postcss: 6.0.23 1640 | postcss-value-parser: 3.3.1 1641 | dev: true 1642 | resolution: 1643 | integrity: sha1-DpTQFERwCkgd4g3k1V+yZAVkJQ4= 1644 | /postcss-js/3.0.3: 1645 | dependencies: 1646 | camelcase-css: 2.0.1 1647 | postcss: 8.2.8 1648 | dev: true 1649 | engines: 1650 | node: '>=10.0' 1651 | resolution: 1652 | integrity: sha512-gWnoWQXKFw65Hk/mi2+WTQTHdPD5UJdDXZmX073EY/B3BWnYjO4F4t0VneTCnCGQ5E5GsCdMkzPaTXwl3r5dJw== 1653 | /postcss-load-config/3.0.1: 1654 | dependencies: 1655 | cosmiconfig: 7.0.0 1656 | import-cwd: 3.0.0 1657 | dev: true 1658 | engines: 1659 | node: '>= 10' 1660 | resolution: 1661 | integrity: sha512-/pDHe30UYZUD11IeG8GWx9lNtu1ToyTsZHnyy45B4Mrwr/Kb6NgYl7k753+05CJNKnjbwh4975amoPJ+TEjHNQ== 1662 | /postcss-merge-longhand/4.0.11: 1663 | dependencies: 1664 | css-color-names: 0.0.4 1665 | postcss: 7.0.35 1666 | postcss-value-parser: 3.3.1 1667 | stylehacks: 4.0.3 1668 | dev: true 1669 | engines: 1670 | node: '>=6.9.0' 1671 | resolution: 1672 | integrity: sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== 1673 | /postcss-merge-rules/4.0.3: 1674 | dependencies: 1675 | browserslist: 4.16.3 1676 | caniuse-api: 3.0.0 1677 | cssnano-util-same-parent: 4.0.1 1678 | postcss: 7.0.35 1679 | postcss-selector-parser: 3.1.2 1680 | vendors: 1.0.4 1681 | dev: true 1682 | engines: 1683 | node: '>=6.9.0' 1684 | resolution: 1685 | integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ== 1686 | /postcss-minify-font-values/4.0.2: 1687 | dependencies: 1688 | postcss: 7.0.35 1689 | postcss-value-parser: 3.3.1 1690 | dev: true 1691 | engines: 1692 | node: '>=6.9.0' 1693 | resolution: 1694 | integrity: sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg== 1695 | /postcss-minify-gradients/4.0.2: 1696 | dependencies: 1697 | cssnano-util-get-arguments: 4.0.0 1698 | is-color-stop: 1.1.0 1699 | postcss: 7.0.35 1700 | postcss-value-parser: 3.3.1 1701 | dev: true 1702 | engines: 1703 | node: '>=6.9.0' 1704 | resolution: 1705 | integrity: sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q== 1706 | /postcss-minify-params/4.0.2: 1707 | dependencies: 1708 | alphanum-sort: 1.0.2 1709 | browserslist: 4.16.3 1710 | cssnano-util-get-arguments: 4.0.0 1711 | postcss: 7.0.35 1712 | postcss-value-parser: 3.3.1 1713 | uniqs: 2.0.0 1714 | dev: true 1715 | engines: 1716 | node: '>=6.9.0' 1717 | resolution: 1718 | integrity: sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg== 1719 | /postcss-minify-selectors/4.0.2: 1720 | dependencies: 1721 | alphanum-sort: 1.0.2 1722 | has: 1.0.3 1723 | postcss: 7.0.35 1724 | postcss-selector-parser: 3.1.2 1725 | dev: true 1726 | engines: 1727 | node: '>=6.9.0' 1728 | resolution: 1729 | integrity: sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g== 1730 | /postcss-nested/5.0.5_postcss@8.2.8: 1731 | dependencies: 1732 | postcss: 8.2.8 1733 | postcss-selector-parser: 6.0.4 1734 | dev: true 1735 | engines: 1736 | node: '>=10.0' 1737 | peerDependencies: 1738 | postcss: ^8.1.13 1739 | resolution: 1740 | integrity: sha512-GSRXYz5bccobpTzLQZXOnSOfKl6TwVr5CyAQJUPub4nuRJSOECK5AqurxVgmtxP48p0Kc/ndY/YyS1yqldX0Ew== 1741 | /postcss-normalize-charset/4.0.1: 1742 | dependencies: 1743 | postcss: 7.0.35 1744 | dev: true 1745 | engines: 1746 | node: '>=6.9.0' 1747 | resolution: 1748 | integrity: sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g== 1749 | /postcss-normalize-display-values/4.0.2: 1750 | dependencies: 1751 | cssnano-util-get-match: 4.0.0 1752 | postcss: 7.0.35 1753 | postcss-value-parser: 3.3.1 1754 | dev: true 1755 | engines: 1756 | node: '>=6.9.0' 1757 | resolution: 1758 | integrity: sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ== 1759 | /postcss-normalize-positions/4.0.2: 1760 | dependencies: 1761 | cssnano-util-get-arguments: 4.0.0 1762 | has: 1.0.3 1763 | postcss: 7.0.35 1764 | postcss-value-parser: 3.3.1 1765 | dev: true 1766 | engines: 1767 | node: '>=6.9.0' 1768 | resolution: 1769 | integrity: sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA== 1770 | /postcss-normalize-repeat-style/4.0.2: 1771 | dependencies: 1772 | cssnano-util-get-arguments: 4.0.0 1773 | cssnano-util-get-match: 4.0.0 1774 | postcss: 7.0.35 1775 | postcss-value-parser: 3.3.1 1776 | dev: true 1777 | engines: 1778 | node: '>=6.9.0' 1779 | resolution: 1780 | integrity: sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q== 1781 | /postcss-normalize-string/4.0.2: 1782 | dependencies: 1783 | has: 1.0.3 1784 | postcss: 7.0.35 1785 | postcss-value-parser: 3.3.1 1786 | dev: true 1787 | engines: 1788 | node: '>=6.9.0' 1789 | resolution: 1790 | integrity: sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA== 1791 | /postcss-normalize-timing-functions/4.0.2: 1792 | dependencies: 1793 | cssnano-util-get-match: 4.0.0 1794 | postcss: 7.0.35 1795 | postcss-value-parser: 3.3.1 1796 | dev: true 1797 | engines: 1798 | node: '>=6.9.0' 1799 | resolution: 1800 | integrity: sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== 1801 | /postcss-normalize-unicode/4.0.1: 1802 | dependencies: 1803 | browserslist: 4.16.3 1804 | postcss: 7.0.35 1805 | postcss-value-parser: 3.3.1 1806 | dev: true 1807 | engines: 1808 | node: '>=6.9.0' 1809 | resolution: 1810 | integrity: sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg== 1811 | /postcss-normalize-url/4.0.1: 1812 | dependencies: 1813 | is-absolute-url: 2.1.0 1814 | normalize-url: 3.3.0 1815 | postcss: 7.0.35 1816 | postcss-value-parser: 3.3.1 1817 | dev: true 1818 | engines: 1819 | node: '>=6.9.0' 1820 | resolution: 1821 | integrity: sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA== 1822 | /postcss-normalize-whitespace/4.0.2: 1823 | dependencies: 1824 | postcss: 7.0.35 1825 | postcss-value-parser: 3.3.1 1826 | dev: true 1827 | engines: 1828 | node: '>=6.9.0' 1829 | resolution: 1830 | integrity: sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA== 1831 | /postcss-ordered-values/4.1.2: 1832 | dependencies: 1833 | cssnano-util-get-arguments: 4.0.0 1834 | postcss: 7.0.35 1835 | postcss-value-parser: 3.3.1 1836 | dev: true 1837 | engines: 1838 | node: '>=6.9.0' 1839 | resolution: 1840 | integrity: sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== 1841 | /postcss-reduce-initial/4.0.3: 1842 | dependencies: 1843 | browserslist: 4.16.3 1844 | caniuse-api: 3.0.0 1845 | has: 1.0.3 1846 | postcss: 7.0.35 1847 | dev: true 1848 | engines: 1849 | node: '>=6.9.0' 1850 | resolution: 1851 | integrity: sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA== 1852 | /postcss-reduce-transforms/4.0.2: 1853 | dependencies: 1854 | cssnano-util-get-match: 4.0.0 1855 | has: 1.0.3 1856 | postcss: 7.0.35 1857 | postcss-value-parser: 3.3.1 1858 | dev: true 1859 | engines: 1860 | node: '>=6.9.0' 1861 | resolution: 1862 | integrity: sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg== 1863 | /postcss-reporter/7.0.2_postcss@8.2.8: 1864 | dependencies: 1865 | colorette: 1.2.2 1866 | lodash.difference: 4.5.0 1867 | lodash.forown: 4.4.0 1868 | lodash.get: 4.4.2 1869 | lodash.groupby: 4.6.0 1870 | lodash.sortby: 4.7.0 1871 | postcss: 8.2.8 1872 | dev: true 1873 | engines: 1874 | node: '>=10' 1875 | peerDependencies: 1876 | postcss: ^8.1.0 1877 | resolution: 1878 | integrity: sha512-JyQ96NTQQsso42y6L1H1RqHfWH1C3Jr0pt91mVv5IdYddZAE9DUZxuferNgk6q0o6vBVOrfVJb10X1FgDzjmDw== 1879 | /postcss-selector-parser/3.1.2: 1880 | dependencies: 1881 | dot-prop: 5.3.0 1882 | indexes-of: 1.0.1 1883 | uniq: 1.0.1 1884 | dev: true 1885 | engines: 1886 | node: '>=8' 1887 | resolution: 1888 | integrity: sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA== 1889 | /postcss-selector-parser/6.0.4: 1890 | dependencies: 1891 | cssesc: 3.0.0 1892 | indexes-of: 1.0.1 1893 | uniq: 1.0.1 1894 | util-deprecate: 1.0.2 1895 | dev: true 1896 | engines: 1897 | node: '>=4' 1898 | resolution: 1899 | integrity: sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw== 1900 | /postcss-svgo/4.0.2: 1901 | dependencies: 1902 | is-svg: 3.0.0 1903 | postcss: 7.0.35 1904 | postcss-value-parser: 3.3.1 1905 | svgo: 1.3.2 1906 | dev: true 1907 | engines: 1908 | node: '>=6.9.0' 1909 | resolution: 1910 | integrity: sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw== 1911 | /postcss-unique-selectors/4.0.1: 1912 | dependencies: 1913 | alphanum-sort: 1.0.2 1914 | postcss: 7.0.35 1915 | uniqs: 2.0.0 1916 | dev: true 1917 | engines: 1918 | node: '>=6.9.0' 1919 | resolution: 1920 | integrity: sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg== 1921 | /postcss-value-parser/3.3.1: 1922 | dev: true 1923 | resolution: 1924 | integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== 1925 | /postcss-value-parser/4.1.0: 1926 | dev: true 1927 | resolution: 1928 | integrity: sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== 1929 | /postcss/6.0.23: 1930 | dependencies: 1931 | chalk: 2.4.2 1932 | source-map: 0.6.1 1933 | supports-color: 5.5.0 1934 | dev: true 1935 | engines: 1936 | node: '>=4.0.0' 1937 | resolution: 1938 | integrity: sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag== 1939 | /postcss/7.0.35: 1940 | dependencies: 1941 | chalk: 2.4.2 1942 | source-map: 0.6.1 1943 | supports-color: 6.1.0 1944 | dev: true 1945 | engines: 1946 | node: '>=6.0.0' 1947 | resolution: 1948 | integrity: sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== 1949 | /postcss/8.2.8: 1950 | dependencies: 1951 | colorette: 1.2.2 1952 | nanoid: 3.1.21 1953 | source-map: 0.6.1 1954 | dev: true 1955 | engines: 1956 | node: ^10 || ^12 || >=14 1957 | resolution: 1958 | integrity: sha512-1F0Xb2T21xET7oQV9eKuctbM9S7BC0fetoHCc4H13z0PT6haiRLP4T0ZY4XWh7iLP0usgqykT6p9B2RtOf4FPw== 1959 | /prettier/2.2.1: 1960 | dev: true 1961 | engines: 1962 | node: '>=10.13.0' 1963 | hasBin: true 1964 | resolution: 1965 | integrity: sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q== 1966 | /pretty-hrtime/1.0.3: 1967 | dev: true 1968 | engines: 1969 | node: '>= 0.8' 1970 | resolution: 1971 | integrity: sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= 1972 | /prismjs-tomorrow-theme/0.0.1: 1973 | dev: true 1974 | resolution: 1975 | integrity: sha1-7Vh3icZRCbDPzlNgKAB/FFFBcSg= 1976 | /prismjs/1.23.0: 1977 | dev: true 1978 | optionalDependencies: 1979 | clipboard: 2.0.8 1980 | resolution: 1981 | integrity: sha512-c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA== 1982 | /purgecss/3.1.3: 1983 | dependencies: 1984 | commander: 6.2.1 1985 | glob: 7.1.6 1986 | postcss: 8.2.8 1987 | postcss-selector-parser: 6.0.4 1988 | dev: true 1989 | hasBin: true 1990 | resolution: 1991 | integrity: sha512-hRSLN9mguJ2lzlIQtW4qmPS2kh6oMnA9RxdIYK8sz18QYqd6ePp4GNDl18oWHA1f2v2NEQIh51CO8s/E3YGckQ== 1992 | /q/1.5.1: 1993 | dev: true 1994 | engines: 1995 | node: '>=0.6.0' 1996 | teleport: '>=0.2.0' 1997 | resolution: 1998 | integrity: sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= 1999 | /queue-microtask/1.2.2: 2000 | dev: true 2001 | resolution: 2002 | integrity: sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg== 2003 | /read-cache/1.0.0: 2004 | dependencies: 2005 | pify: 2.3.0 2006 | dev: true 2007 | resolution: 2008 | integrity: sha1-5mTvMRYRZsl1HNvo28+GtftY93Q= 2009 | /readdirp/3.5.0: 2010 | dependencies: 2011 | picomatch: 2.2.2 2012 | dev: true 2013 | engines: 2014 | node: '>=8.10.0' 2015 | resolution: 2016 | integrity: sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== 2017 | /reduce-css-calc/2.1.8: 2018 | dependencies: 2019 | css-unit-converter: 1.1.2 2020 | postcss-value-parser: 3.3.1 2021 | dev: true 2022 | resolution: 2023 | integrity: sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg== 2024 | /rehype-autolink-headings/5.0.1: 2025 | dependencies: 2026 | extend: 3.0.2 2027 | hast-util-has-property: 1.0.4 2028 | hast-util-heading-rank: 1.0.1 2029 | unist-util-visit: 2.0.3 2030 | dev: true 2031 | resolution: 2032 | integrity: sha512-B6dmUVhtGdXLxJr3qynjRR10+f/iPJbSOtW5YyWieMvcwAm1XW5/yIYaW/9Qqr/Sd5h/Jym3dDCLJ4y6rPluWg== 2033 | /rehype-slug/4.0.1: 2034 | dependencies: 2035 | github-slugger: 1.3.0 2036 | hast-util-has-property: 1.0.4 2037 | hast-util-heading-rank: 1.0.1 2038 | hast-util-to-string: 1.0.4 2039 | unist-util-visit: 2.0.3 2040 | dev: true 2041 | resolution: 2042 | integrity: sha512-KIlJALf9WfHFF21icwTd2yI2IP+RQRweaxH9ChVGQwRYy36+hiomG4ZSe0yQRyCt+D/vE39LbAcOI/h4O4GPhA== 2043 | /require-directory/2.1.1: 2044 | dev: true 2045 | engines: 2046 | node: '>=0.10.0' 2047 | resolution: 2048 | integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2049 | /require-relative/0.8.7: 2050 | dev: true 2051 | resolution: 2052 | integrity: sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4= 2053 | /resolve-from/3.0.0: 2054 | dev: true 2055 | engines: 2056 | node: '>=4' 2057 | resolution: 2058 | integrity: sha1-six699nWiBvItuZTM17rywoYh0g= 2059 | /resolve-from/4.0.0: 2060 | dev: true 2061 | engines: 2062 | node: '>=4' 2063 | resolution: 2064 | integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2065 | /resolve-from/5.0.0: 2066 | dev: true 2067 | engines: 2068 | node: '>=8' 2069 | resolution: 2070 | integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 2071 | /resolve/1.20.0: 2072 | dependencies: 2073 | is-core-module: 2.2.0 2074 | path-parse: 1.0.6 2075 | dev: true 2076 | resolution: 2077 | integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 2078 | /reusify/1.0.4: 2079 | dev: true 2080 | engines: 2081 | iojs: '>=1.0.0' 2082 | node: '>=0.10.0' 2083 | resolution: 2084 | integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 2085 | /rgb-regex/1.0.1: 2086 | dev: true 2087 | resolution: 2088 | integrity: sha1-wODWiC3w4jviVKR16O3UGRX+rrE= 2089 | /rgba-regex/1.0.0: 2090 | dev: true 2091 | resolution: 2092 | integrity: sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= 2093 | /rollup/2.41.2: 2094 | dev: true 2095 | engines: 2096 | node: '>=10.0.0' 2097 | hasBin: true 2098 | optionalDependencies: 2099 | fsevents: 2.3.2 2100 | resolution: 2101 | integrity: sha512-6u8fJJXJx6fmvKrAC9DHYZgONvSkz8S9b/VFBjoQ6dkKdHyPpPbpqiNl2Bao9XBzDHpq672X6sGZ9G1ZBqAHMg== 2102 | /run-parallel/1.2.0: 2103 | dependencies: 2104 | queue-microtask: 1.2.2 2105 | dev: true 2106 | resolution: 2107 | integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 2108 | /sade/1.7.4: 2109 | dependencies: 2110 | mri: 1.1.6 2111 | dev: true 2112 | engines: 2113 | node: '>= 6' 2114 | resolution: 2115 | integrity: sha512-y5yauMD93rX840MwUJr7C1ysLFBgMspsdTo4UVrDg3fXDvtwOyIqykhVAAm6fk/3au77773itJStObgK+LKaiA== 2116 | /sax/1.2.4: 2117 | dev: true 2118 | resolution: 2119 | integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 2120 | /select/1.1.2: 2121 | dev: true 2122 | optional: true 2123 | resolution: 2124 | integrity: sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0= 2125 | /simple-swizzle/0.2.2: 2126 | dependencies: 2127 | is-arrayish: 0.3.2 2128 | dev: true 2129 | resolution: 2130 | integrity: sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= 2131 | /slash/3.0.0: 2132 | dev: true 2133 | engines: 2134 | node: '>=8' 2135 | resolution: 2136 | integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2137 | /source-map/0.6.1: 2138 | dev: true 2139 | engines: 2140 | node: '>=0.10.0' 2141 | resolution: 2142 | integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2143 | /source-map/0.7.3: 2144 | dev: true 2145 | engines: 2146 | node: '>= 8' 2147 | resolution: 2148 | integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 2149 | /sprintf-js/1.0.3: 2150 | dev: true 2151 | resolution: 2152 | integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 2153 | /stable/0.1.8: 2154 | dev: true 2155 | resolution: 2156 | integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== 2157 | /string-width/4.2.2: 2158 | dependencies: 2159 | emoji-regex: 8.0.0 2160 | is-fullwidth-code-point: 3.0.0 2161 | strip-ansi: 6.0.0 2162 | dev: true 2163 | engines: 2164 | node: '>=8' 2165 | resolution: 2166 | integrity: sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== 2167 | /string.prototype.trimend/1.0.4: 2168 | dependencies: 2169 | call-bind: 1.0.2 2170 | define-properties: 1.1.3 2171 | dev: true 2172 | resolution: 2173 | integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== 2174 | /string.prototype.trimstart/1.0.4: 2175 | dependencies: 2176 | call-bind: 1.0.2 2177 | define-properties: 1.1.3 2178 | dev: true 2179 | resolution: 2180 | integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== 2181 | /strip-ansi/6.0.0: 2182 | dependencies: 2183 | ansi-regex: 5.0.0 2184 | dev: true 2185 | engines: 2186 | node: '>=8' 2187 | resolution: 2188 | integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 2189 | /strip-indent/3.0.0: 2190 | dependencies: 2191 | min-indent: 1.0.1 2192 | dev: true 2193 | engines: 2194 | node: '>=8' 2195 | resolution: 2196 | integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== 2197 | /stylehacks/4.0.3: 2198 | dependencies: 2199 | browserslist: 4.16.3 2200 | postcss: 7.0.35 2201 | postcss-selector-parser: 3.1.2 2202 | dev: true 2203 | engines: 2204 | node: '>=6.9.0' 2205 | resolution: 2206 | integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g== 2207 | /supports-color/5.5.0: 2208 | dependencies: 2209 | has-flag: 3.0.0 2210 | dev: true 2211 | engines: 2212 | node: '>=4' 2213 | resolution: 2214 | integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2215 | /supports-color/6.1.0: 2216 | dependencies: 2217 | has-flag: 3.0.0 2218 | dev: true 2219 | engines: 2220 | node: '>=6' 2221 | resolution: 2222 | integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== 2223 | /supports-color/7.2.0: 2224 | dependencies: 2225 | has-flag: 4.0.0 2226 | dev: true 2227 | engines: 2228 | node: '>=8' 2229 | resolution: 2230 | integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2231 | /svelte-hmr/0.12.9_svelte@3.35.0: 2232 | dependencies: 2233 | svelte: 3.35.0 2234 | dev: true 2235 | peerDependencies: 2236 | svelte: '>=3.19.0' 2237 | resolution: 2238 | integrity: sha512-SGE7Odznj4dqZtUVIWcoPCvZ9gHImxVIIjrz+O3DDSi0j4OaSLim6MRF4UdhlBKeW3glSRc+tXNSKYvM5x+Dyw== 2239 | /svelte-hmr/0.13.0-2_svelte@3.35.0: 2240 | dependencies: 2241 | svelte: 3.35.0 2242 | dev: true 2243 | peerDependencies: 2244 | svelte: '>=3.19.0' 2245 | resolution: 2246 | integrity: sha512-3Sqxbs5hG212oweKhHzh2S7jVScylzbVXuEkydgdS9NpvcdnyCSufpaJSUNxUGc02wgjWugtqaJXs1DybAjRpw== 2247 | /svelte-preprocess/4.6.9_bfabe6c7bc3d73e76d0bc9dab084c580: 2248 | dependencies: 2249 | '@types/pug': 2.0.4 2250 | '@types/sass': 1.16.0 2251 | detect-indent: 6.0.0 2252 | postcss: 8.2.8 2253 | postcss-load-config: 3.0.1 2254 | strip-indent: 3.0.0 2255 | svelte: 3.35.0 2256 | typescript: 4.2.3 2257 | dev: true 2258 | engines: 2259 | node: '>= 9.11.2' 2260 | peerDependencies: 2261 | '@babel/core': ^7.10.2 2262 | coffeescript: ^2.5.1 2263 | less: ^3.11.3 2264 | node-sass: '*' 2265 | postcss: ^7 || ^8 2266 | postcss-load-config: ^2.1.0 || ^3.0.0 2267 | pug: ^3.0.0 2268 | sass: ^1.26.8 2269 | stylus: ^0.54.7 2270 | sugarss: ^2.0.0 2271 | svelte: ^3.23.0 2272 | typescript: ^3.9.5 || ^4.0.0 2273 | peerDependenciesMeta: 2274 | '@babel/core': 2275 | optional: true 2276 | coffeescript: 2277 | optional: true 2278 | less: 2279 | optional: true 2280 | node-sass: 2281 | optional: true 2282 | postcss: 2283 | optional: true 2284 | postcss-load-config: 2285 | optional: true 2286 | pug: 2287 | optional: true 2288 | sass: 2289 | optional: true 2290 | stylus: 2291 | optional: true 2292 | sugarss: 2293 | optional: true 2294 | typescript: 2295 | optional: true 2296 | requiresBuild: true 2297 | resolution: 2298 | integrity: sha512-SROWH0rB0DJ+0Ii264cprmNu/NJyZacs5wFD71ya93Cg/oA2lKHgQm4F6j0EWA4ktFMzeuJJm/eX6fka39hEHA== 2299 | /svelte/3.35.0: 2300 | dev: true 2301 | engines: 2302 | node: '>= 8' 2303 | resolution: 2304 | integrity: sha512-gknlZkR2sXheu/X+B7dDImwANVvK1R0QGQLd8CNIfxxGPeXBmePnxfzb6fWwTQRsYQG7lYkZXvpXJvxvpsoB7g== 2305 | /svgo/1.3.2: 2306 | dependencies: 2307 | chalk: 2.4.2 2308 | coa: 2.0.2 2309 | css-select: 2.1.0 2310 | css-select-base-adapter: 0.1.1 2311 | css-tree: 1.0.0-alpha.37 2312 | csso: 4.2.0 2313 | js-yaml: 3.14.1 2314 | mkdirp: 0.5.5 2315 | object.values: 1.1.3 2316 | sax: 1.2.4 2317 | stable: 0.1.8 2318 | unquote: 1.1.1 2319 | util.promisify: 1.0.1 2320 | dev: true 2321 | engines: 2322 | node: '>=4.0.0' 2323 | hasBin: true 2324 | resolution: 2325 | integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== 2326 | /tailwindcss/2.0.3_caf414ac65a978d0d57907a0ec9fb41e: 2327 | dependencies: 2328 | '@fullhuman/postcss-purgecss': 3.1.3 2329 | autoprefixer: 10.2.5_postcss@8.2.8 2330 | bytes: 3.1.0 2331 | chalk: 4.1.0 2332 | color: 3.1.3 2333 | detective: 5.2.0 2334 | didyoumean: 1.2.1 2335 | fs-extra: 9.1.0 2336 | html-tags: 3.1.0 2337 | lodash: 4.17.21 2338 | modern-normalize: 1.0.0 2339 | node-emoji: 1.10.0 2340 | object-hash: 2.1.1 2341 | postcss: 8.2.8 2342 | postcss-functions: 3.0.0 2343 | postcss-js: 3.0.3 2344 | postcss-nested: 5.0.5_postcss@8.2.8 2345 | postcss-selector-parser: 6.0.4 2346 | postcss-value-parser: 4.1.0 2347 | pretty-hrtime: 1.0.3 2348 | reduce-css-calc: 2.1.8 2349 | resolve: 1.20.0 2350 | dev: true 2351 | engines: 2352 | node: '>=12.13.0' 2353 | hasBin: true 2354 | peerDependencies: 2355 | autoprefixer: ^10.0.2 2356 | postcss: ^8.0.9 2357 | resolution: 2358 | integrity: sha512-s8NEqdLBiVbbdL0a5XwTb8jKmIonOuI4RMENEcKLR61jw6SdKvBss7NWZzwCaD+ZIjlgmesv8tmrjXEp7C0eAQ== 2359 | /timsort/0.3.0: 2360 | dev: true 2361 | resolution: 2362 | integrity: sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= 2363 | /tiny-emitter/2.1.0: 2364 | dev: true 2365 | optional: true 2366 | resolution: 2367 | integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== 2368 | /to-regex-range/5.0.1: 2369 | dependencies: 2370 | is-number: 7.0.0 2371 | dev: true 2372 | engines: 2373 | node: '>=8.0' 2374 | resolution: 2375 | integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2376 | /tslib/2.1.0: 2377 | dev: true 2378 | resolution: 2379 | integrity: sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== 2380 | /typescript/4.2.3: 2381 | dev: true 2382 | engines: 2383 | node: '>=4.2.0' 2384 | hasBin: true 2385 | resolution: 2386 | integrity: sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw== 2387 | /unbox-primitive/1.0.0: 2388 | dependencies: 2389 | function-bind: 1.1.1 2390 | has-bigints: 1.0.1 2391 | has-symbols: 1.0.2 2392 | which-boxed-primitive: 1.0.2 2393 | dev: true 2394 | resolution: 2395 | integrity: sha512-P/51NX+JXyxK/aigg1/ZgyccdAxm5K1+n8+tvqSntjOivPt19gvm1VC49RWYetsiub8WViUchdxl/KWHHB0kzA== 2396 | /uniq/1.0.1: 2397 | dev: true 2398 | resolution: 2399 | integrity: sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= 2400 | /uniqs/2.0.0: 2401 | dev: true 2402 | resolution: 2403 | integrity: sha1-/+3ks2slKQaW5uFl1KWe25mOawI= 2404 | /unist-util-is/4.1.0: 2405 | dev: true 2406 | resolution: 2407 | integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== 2408 | /unist-util-stringify-position/2.0.3: 2409 | dependencies: 2410 | '@types/unist': 2.0.3 2411 | dev: true 2412 | resolution: 2413 | integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g== 2414 | /unist-util-visit-parents/3.1.1: 2415 | dependencies: 2416 | '@types/unist': 2.0.3 2417 | unist-util-is: 4.1.0 2418 | dev: true 2419 | resolution: 2420 | integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg== 2421 | /unist-util-visit/2.0.3: 2422 | dependencies: 2423 | '@types/unist': 2.0.3 2424 | unist-util-is: 4.1.0 2425 | unist-util-visit-parents: 3.1.1 2426 | dev: true 2427 | resolution: 2428 | integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q== 2429 | /universalify/2.0.0: 2430 | dev: true 2431 | engines: 2432 | node: '>= 10.0.0' 2433 | resolution: 2434 | integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== 2435 | /unquote/1.1.1: 2436 | dev: true 2437 | resolution: 2438 | integrity: sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= 2439 | /util-deprecate/1.0.2: 2440 | dev: true 2441 | resolution: 2442 | integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 2443 | /util.promisify/1.0.1: 2444 | dependencies: 2445 | define-properties: 1.1.3 2446 | es-abstract: 1.18.0 2447 | has-symbols: 1.0.2 2448 | object.getownpropertydescriptors: 2.1.2 2449 | dev: true 2450 | resolution: 2451 | integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== 2452 | /vendors/1.0.4: 2453 | dev: true 2454 | resolution: 2455 | integrity: sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w== 2456 | /vfile-message/2.0.4: 2457 | dependencies: 2458 | '@types/unist': 2.0.3 2459 | unist-util-stringify-position: 2.0.3 2460 | dev: true 2461 | resolution: 2462 | integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ== 2463 | /vite/2.0.5: 2464 | dependencies: 2465 | esbuild: 0.8.57 2466 | postcss: 8.2.8 2467 | resolve: 1.20.0 2468 | rollup: 2.41.2 2469 | dev: true 2470 | engines: 2471 | node: '>=12.0.0' 2472 | hasBin: true 2473 | optionalDependencies: 2474 | fsevents: 2.3.2 2475 | resolution: 2476 | integrity: sha512-QTgEDbq1WsTtr6j+++ewjhBFEk6c8v0xz4fb/OWJQKNYU8ZZtphOshwOqAlnarSstPBtWCBR0tsugXx6ajfoUg== 2477 | /which-boxed-primitive/1.0.2: 2478 | dependencies: 2479 | is-bigint: 1.0.1 2480 | is-boolean-object: 1.1.0 2481 | is-number-object: 1.0.4 2482 | is-string: 1.0.5 2483 | is-symbol: 1.0.3 2484 | dev: true 2485 | resolution: 2486 | integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2487 | /wrap-ansi/7.0.0: 2488 | dependencies: 2489 | ansi-styles: 4.3.0 2490 | string-width: 4.2.2 2491 | strip-ansi: 6.0.0 2492 | dev: true 2493 | engines: 2494 | node: '>=10' 2495 | resolution: 2496 | integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2497 | /wrappy/1.0.2: 2498 | dev: true 2499 | resolution: 2500 | integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2501 | /xtend/4.0.2: 2502 | dev: true 2503 | engines: 2504 | node: '>=0.4' 2505 | resolution: 2506 | integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 2507 | /y18n/5.0.5: 2508 | dev: true 2509 | engines: 2510 | node: '>=10' 2511 | resolution: 2512 | integrity: sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg== 2513 | /yaml/1.10.0: 2514 | dev: true 2515 | engines: 2516 | node: '>= 6' 2517 | resolution: 2518 | integrity: sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== 2519 | /yargs-parser/20.2.7: 2520 | dev: true 2521 | engines: 2522 | node: '>=10' 2523 | resolution: 2524 | integrity: sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw== 2525 | /yargs/16.2.0: 2526 | dependencies: 2527 | cliui: 7.0.4 2528 | escalade: 3.1.1 2529 | get-caller-file: 2.0.5 2530 | require-directory: 2.1.1 2531 | string-width: 4.2.2 2532 | y18n: 5.0.5 2533 | yargs-parser: 20.2.7 2534 | dev: true 2535 | engines: 2536 | node: '>=10' 2537 | resolution: 2538 | integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 2539 | specifiers: 2540 | '@sveltejs/adapter-vercel': next 2541 | '@sveltejs/kit': next 2542 | '@tailwindcss/typography': ^0.4.0 2543 | autoprefixer: ^10.2.5 2544 | cssnano: ^4.1.10 2545 | mdsvex: ^0.8.9 2546 | postcss: ^8.2.8 2547 | postcss-cli: ^8.3.1 2548 | postcss-load-config: ^3.0.1 2549 | prettier: ^2.2.1 2550 | prismjs-tomorrow-theme: 0.0.1 2551 | rehype-autolink-headings: ^5.0.1 2552 | rehype-slug: ^4.0.1 2553 | svelte: ^3.35.0 2554 | svelte-preprocess: ^4.6.9 2555 | tailwindcss: ^2.0.3 2556 | tslib: ^2.1.0 2557 | typescript: ^4.2.3 2558 | vite: ^2.0.5 2559 | -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- 1 | const tailwindcss = require('tailwindcss'); 2 | const autoprefixer = require('autoprefixer'); 3 | const cssnano = require('cssnano'); 4 | 5 | const mode = process.env.NODE_ENV; 6 | const dev = mode === 'development'; 7 | 8 | module.exports = { 9 | plugins: [ 10 | // Some plugins, like postcss-nested, need to run before Tailwind 11 | 12 | tailwindcss, 13 | 14 | // But others, like autoprefixer, need to run after 15 | 16 | autoprefixer, 17 | 18 | !dev && 19 | cssnano({ 20 | preset: 'default', 21 | }), 22 | ], 23 | }; 24 | -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | %svelte.head% 8 | 9 | 10 |
%svelte.body%
11 | 12 | 13 | -------------------------------------------------------------------------------- /src/components/Counter.svelte: -------------------------------------------------------------------------------- 1 | 8 | 9 | 12 | 13 | 35 | -------------------------------------------------------------------------------- /src/components/Infobox.svelte: -------------------------------------------------------------------------------- 1 | 7 | 8 | 24 | -------------------------------------------------------------------------------- /src/components/Nav.svelte: -------------------------------------------------------------------------------- 1 | 37 | 38 | {#if expanded} 39 |