├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── cookiepicture.png ├── package-lock.json ├── package.json ├── src ├── app.d.ts ├── app.html ├── hooks.server.ts ├── lib │ ├── assets │ │ ├── discord-icon-svgrepo-com.svg │ │ ├── discord-mark-white.svg │ │ ├── github-mark-white.png │ │ ├── github-mark.png │ │ ├── googlelogo.png │ │ └── svault-logo.png │ ├── index.ts │ └── server │ │ ├── db │ │ ├── index.ts │ │ ├── models.ts │ │ └── types.ts │ │ ├── login │ │ └── nativeAuth.ts │ │ ├── oauth │ │ ├── discord │ │ │ └── api │ │ │ │ └── discord.ts │ │ ├── github │ │ │ └── api │ │ │ │ └── github.ts │ │ ├── google │ │ │ └── api │ │ │ │ └── google.ts │ │ └── svaultoauth.ts │ │ └── sessionStore │ │ └── index.ts ├── routes │ ├── +layout.server.ts │ ├── +page.svelte │ ├── login │ │ └── +page.svelte │ └── secret │ │ └── +page.svelte └── types.d.ts ├── static ├── Demo.gif └── favicon.png ├── svelte.config.js ├── tsconfig.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | 10 | # Ignore files for PNPM, NPM and YARN 11 | pnpm-lock.yaml 12 | package-lock.json 13 | yarn.lock 14 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: [ 4 | 'eslint:recommended', 5 | 'plugin:@typescript-eslint/recommended', 6 | 'plugin:svelte/recommended' 7 | ], 8 | parser: '@typescript-eslint/parser', 9 | plugins: ['@typescript-eslint'], 10 | parserOptions: { 11 | sourceType: 'module', 12 | ecmaVersion: 2020, 13 | extraFileExtensions: ['.svelte'] 14 | }, 15 | env: { 16 | browser: true, 17 | es2017: true, 18 | node: true 19 | }, 20 | overrides: [ 21 | { 22 | files: ['*.svelte'], 23 | parser: 'svelte-eslint-parser', 24 | parserOptions: { 25 | parser: '@typescript-eslint/parser' 26 | } 27 | } 28 | ] 29 | }; 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /dist 5 | /.svelte-kit 6 | /package 7 | .env 8 | .env.* 9 | pg_hba.conf 10 | !.env.example 11 | vite.config.js.timestamp-* 12 | vite.config.ts.timestamp-* 13 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | resolution-mode=highest 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 OSLabs Beta 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | ![banner](https://i.imgur.com/djX1j8N.png) 4 | 5 |
6 | 7 | # Authentication for SvelteKit 8 | 9 | Svault is an authentication, authorization, and user management library for Svelte/SvelteKit applications. Svault supports both native username/password authentication as well as OAuth. 10 | 11 | ![NPM Downloads](https://img.shields.io/npm/dt/svault?color=%23fb7182&label=downloads) 12 | ![GitHub Stars](https://img.shields.io/github/stars/oslabs-beta/svault?color=%23fb7182) 13 | ![GitHub Forks](https://img.shields.io/github/forks/oslabs-beta/svault?color=%23fb7182) 14 | ![NPM Version](https://img.shields.io/npm/v/svault?color=%23fb7182&label=version) 15 | ![MIT License](https://img.shields.io/badge/license-MIT-%23fb7182) 16 | 17 | [🔐 Website](https://svault.dev) | [📚 Documentation](https://svault.mintlify.app) | [⌨️ Blog](https://medium.com/svault/svault-the-spanish-fly-of-svelte-security-beb03fda32be) | [💼 LinkedIn](https://www.linkedin.com/company/svault/) 18 | 19 |
20 | 21 |
22 | 23 | ## Features 24 | 25 | - Svault is an open-source developer library that simplifies the authentication process in SvelteKit projects. 26 | - Svault is flexible and lightweight, and allows the developer to decide which authentication types they would like to deploy in their application. 27 | - With native username/password authentication, implementing registration and login functionality have never been easier. Cookies and sessions are automatically created and deleted upon logout or expiration. 28 | - Svault also supports OAuth with a number of providers. Currently, it offers easy setup with Google, Github, and Discord, with more providers to come. 29 | - Currently, Svault's database adapter connects to the developer's PostgreSQL database, with additional database functionality in the works. 30 | 31 | ## Demo 32 | 33 | 34 | ![Demo](static/Demo.gif) 35 | This demo simulates implementing authentication functionality into an already existing SvelteKit app. First demonstrating log in component scaffolding without Svault authentication logic. Then moving on to implementing Svault, following documentation specs for the hooks server file. Developers will need to first set up their own log in components (buttons, input forms, etc.) following the Svault documentation for the correct endpoints/actions (this step is not pictured in the demo). 36 | 37 | 38 | ## Installation 39 | 40 | 1. Navigate to your SvelteKit project directory in the command line. 41 | 2. Run: 42 | ```bash 43 | npm install svault 44 | ``` 45 | 46 | 47 | ### Implementing OAuth in Your Application 48 | 49 | 1. When registering your application for OAuth set your callback url to match this format `/oauth/[provider]/validate`. 50 | 51 | 2. In the `src` directory of your project, create a `hooks.server.ts` file and paste the following code: 52 | ```TypeScript 53 | // Import if you would like to use Oauth login (necessary for all Oauth) 54 | import { SvaultOauth } from 'svault'; 55 | 56 | 57 | // Import if you would like to use Github Oauth 58 | import { github } from 'svault'; 59 | import { GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET } from '$env/static/private'; 60 | 61 | 62 | // Import if you would like to use Google Oauth 63 | import { google } from 'svault'; 64 | import { GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET } from '$env/static/private'; 65 | // Google callback urls have to match the callback url you setup in your development app so paste it here to pass into the Oauth function 66 | const googleCallback = 'http://localhost:5173/oauth/google/validate'; 67 | 68 | 69 | // Import if you would like to use Discord Oauth 70 | import { discord } from 'svault'; 71 | import { DISCORD_CLIENT_ID, DISCORD_CLIENT_SECRET } from "$env/static/private"; 72 | // Discord callback urls have to match the callback url you setup in your development app so paste it here to pass into the Oauth function 73 | const discordCallback = 'http://localhost:5173/oauth/discord/validate'; 74 | 75 | 76 | // Set redirect path to your desired endpoint upon user login 77 | const redirectPath = '/(yourPathHere)'; //ex. 'const redirectPath = '/redirectPage' 78 | 79 | 80 | // Place the Oauth providers here 81 | const providers = [ 82 | github(GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, redirectPath), 83 | google(GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET, redirectPath, googleCallback), 84 | discord(DISCORD_CLIENT_ID, DISCORD_CLIENT_SECRET, redirectPath, discordCallback) 85 | ]; 86 | 87 | // Svault Oauth handler 88 | export const handle = SvaultOauth({ providers }); 89 | ``` 90 | 3. Create an `.env` file at the root level of your project and define your client ID and secret as variables. Example: 91 | ```TypeScript 92 | // Paste if using Discord Oauth 93 | DISCORD_CLIENT_ID = YOURIDHERE 94 | DISCORD_CLIENT_SECRET = YOURSECRETHERE 95 | 96 | // Paste if using Github Oauth 97 | GITHUB_CLIENT_ID = YOURIDHERE 98 | GITHUB_CLIENT_SECRET = YOURSECRETHERE 99 | 100 | // Paste if using Google Oauth 101 | GOOGLE_CLIENT_ID = YOURIDHERE 102 | GOOGLE_CLIENT_SECRET = YOURSECRETHERE 103 | ``` 104 | 4. In your `+page.svelte` file that has your login page: 105 | 106 | - Create a button or component for each provider you want to use, that will route to an endpoint of `/oauth/[provider-name-here]/auth` 107 | - Make sure to include an anchor tag within the button and/or component. 108 | ```TypeScript 109 | // Example +page.svelte file for github authentication 110 | 111 | 114 | 115 | 118 | 119 | 122 | ``` 123 | 124 | 125 | 126 | 5. And you're good to go! 127 | 128 | *Note: OAuth providers are not set up to store any data in a database in this current iteration of Svault.* 129 | 130 |
131 | 132 | ### Implementing Native Authentication 133 | 1. In your `src` directory, create a `hooks.server.ts` file 134 | ```TypeScript 135 | // Import if you would like to utilize native user registration and login 136 | import { SvaultNative } from 'svault'; 137 | 138 | 139 | // Set redirect path to your desired endpoint upon user login 140 | const redirectPath = '/[yourPathHere]'; //ex. 'const redirectPath = '/homepage' 141 | 142 | 143 | // Svault native handler 144 | export const handle = SvaultNative(redirectPath); 145 | ``` 146 | 2. Create a PostgreSQL table with the following columns: 147 | ```SQL 148 | CREATE TABLE [YOURTABLENAME] ( 149 | username VARCHAR NOT NULL, 150 | password VARCHAR NOT NULL 151 | ) 152 | ``` 153 | 3. In your `routes` directory, create a route called `login`. In your login `+page.svelte`, create form elements for taking in username and password inputs. Create buttons for login and register. 154 | - Ensure the endpoints are set to `registerValidate` and `loginValidate` 155 | - Create a separate button that is set to `logout` endpoint 156 | ```TypeScript 157 | // Example routes/login/+page.svelte 158 | 159 |
160 | 166 | 172 | 173 | 176 | 179 |
180 | ``` 181 | ```TypeScript 182 | // To implement logout functionality, create a button or anchor tag in your page.svelte that redirects to '/logout' 183 | 184 | 187 | ``` 188 | 4. In your `.env` file (create if you haven't done so) that takes in your database URI and user table name 189 | ```TypeScript 190 | // Paste if using native authentication with a PostgreSQL database 191 | PG_URI = YOURDATABASEURI 192 | TABLE_NAME = YOURTABLENAME 193 | 194 | //MAX_AGE will determine the expiration time of the user's session 195 | MAX_AGE = Date.now() + {someNumberHere} * {someNumberHere} 196 | // ex. Date.now() + 1000 * 60 * 60 --> session will last for 1 hour 197 | ``` 198 | 5. After submitting the form, the user will be redirected to the endpoint of your choice. 199 | - Upon registering, the user will be added to the database with the username and a secure hashed password. 200 | - On login, the user will be authenticated through your database. 201 | - A browser cookie will be created as well as a session in local memory storage called "svault-auth". 202 | 203 |
204 | 205 |
206 | 207 | - The session will have an expiration time determined in your `.env` file. 208 | - Sessions will automatically be cleaned and deleted upon expiration. 209 | - On logout, the user will be redirected to the home page, the cookie will be deleted from the browser, and the session will be deleted from local memory store. 210 | 6. And you're good to go! 211 | 212 |
213 | 214 | 215 | ### Using Both Native Authentication and OAuth 216 | 1. To implement native authentication and OAuth, you can use SvelteKit's Sequence helper function. 217 | 2. In your existing `hooks.server.ts` file, add the following: 218 | ```TypeScript 219 | import { sequence } from '@sveltejs/kit/hooks'; 220 | /* 221 | NOTE: CANNOT HAVE 2 HANDLE FUNCTIONS! 222 | 223 | export const handle = SvaultNative(redirectPath); 224 | export const handle = SvaultOauth({ providers }); 225 | */ 226 | 227 | // Rename functions to their corresponding type of authentication 228 | export const native = SvaultNative(redirectPath); 229 | export const oauth = SvaultOauth({ providers }); 230 | 231 | // Use sveltekit sequence method to run both hooks in sequence 232 | export const handle = sequence(oauth, native); 233 | ``` 234 | 235 |
236 | 237 | ### Serving Data Client-Side 238 | - Svault automatically sends back authentication information to the frontend via the `event.locals` object. This allows you to display any necessary information you would like, client-side. 239 | - If you would like to display the user’s username on the page, simply load `event.locals.username` in your `+layout.server.ts`, and then call it on your `+page.svelte`. 240 | - If you would like to display an appropriate error message upon incorrect login, the error will be returned back to the client side on the `event.locals.failure` object. 241 | - See example below: 242 | ```TypeScript 243 | // In +layout.server.ts 244 | 245 | import type { LayoutServerLoad } from '/$types'; 246 | 247 | export const load = (async ({ locals }) => { 248 | const { username, failure } = locals; 249 | return await { username, failure }; 250 | }) satisfies LayoutServerLoad; 251 | ``` 252 | ```TypeScript 253 | // In +page.svelte 254 | 255 | 256 | {#if data.username} 257 | 261 | Hello {data.username}, Log out 262 | 263 | {:else} 264 | 265 | 266 | {#if data.failure} 267 |
268 | {data.failure} 269 |
270 | {/if} 271 | ``` 272 | 273 |
274 | 275 | ## Roadmap 276 | Svault is an amazing project with many areas for iteration. Here are some of the ideas to add and improve our features: 277 | - Implement long term storage for OAuth users in the database 278 | - Add more OAuth providers! (Facebook, Reddit, Twitter...) 279 | - Change session cache to Redis rather than in-memory store 280 | - Create a My Profile page that displays after a user has been authenticated 281 | - Add additional DB adapters- MySQL, MongoDB, etc. 282 | - Add access authorization and roles to different users 283 | - Complete frontend sessions logic in browser 284 | - Create testing suites 285 | - Add UI components for login, making it a one-stop-shop 286 | - Refactor the TypeScript code and define correct typings/interfaces 287 | 288 | 289 | ## How to Contribute 290 | 1. Fork and clone this repository. 291 | 2. Create a new branch on your local repository, giving it a meaningful name, such as one that details what feature is being developed. 292 | 3. Commit and push your work to your own forked repository. 293 | 4. Submit a Pull Request from your forked branch, to the dev branch of the Svault repository. 294 | 5. Your Pull Request will then be reviewed, and then merged if approved! 295 | 296 | 297 | ## The Svault Team 298 | Franki Biswas Github | LinkedIn 299 | 300 | Tristan Bott Github | LinkedIn 301 | 302 | Michael Buenrostro Github | LinkedIn 303 | 304 | Michelle Conroy Github | LinkedIn 305 | 306 | Daniel Park Github | LinkedIn 307 | 308 | 309 | ## Credits 310 | Inspired by Lucia and Auth.js, Svault expands the authentication tools available to Svelte/SvelteKit developers. 311 | 312 | 313 | ## License 314 | Svault is developed under the MIT license. -------------------------------------------------------------------------------- /cookiepicture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/Svault/075b00480f980d859016fd9fe4e1495345986c72/cookiepicture.png -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "svault", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "svault", 9 | "version": "1.0.0", 10 | "license": "MIT", 11 | "dependencies": { 12 | "bcrypt": "^5.0.1", 13 | "bcryptjs": "^2.4.3", 14 | "cookie": "^0.5.0", 15 | "dotenv": "^16.3.1", 16 | "google-auth-library": "^8.9.0", 17 | "nanoid": "^4.0.2", 18 | "pg": "^8.11.1", 19 | "process": "^0.11.10" 20 | }, 21 | "devDependencies": { 22 | "@sveltejs/adapter-auto": "^2.0.0", 23 | "@sveltejs/kit": "^1.20.4", 24 | "@sveltejs/package": "^2.0.0", 25 | "@types/bcrypt": "^5.0.0", 26 | "@types/pg": "^8.10.2", 27 | "@typescript-eslint/eslint-plugin": "^5.45.0", 28 | "@typescript-eslint/parser": "^5.45.0", 29 | "eslint": "^8.28.0", 30 | "eslint-plugin-svelte": "^2.30.0", 31 | "publint": "^0.1.9", 32 | "svelte": "^4.0.0", 33 | "svelte-check": "^3.4.3", 34 | "tslib": "^2.4.1", 35 | "typescript": "^5.0.0", 36 | "vite": "^4.3.6" 37 | }, 38 | "peerDependencies": { 39 | "svelte": "^4.0.0" 40 | } 41 | }, 42 | "node_modules/@aashutoshrathi/word-wrap": { 43 | "version": "1.2.6", 44 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 45 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 46 | "dev": true, 47 | "engines": { 48 | "node": ">=0.10.0" 49 | } 50 | }, 51 | "node_modules/@ampproject/remapping": { 52 | "version": "2.2.1", 53 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", 54 | "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", 55 | "dev": true, 56 | "dependencies": { 57 | "@jridgewell/gen-mapping": "^0.3.0", 58 | "@jridgewell/trace-mapping": "^0.3.9" 59 | }, 60 | "engines": { 61 | "node": ">=6.0.0" 62 | } 63 | }, 64 | "node_modules/@esbuild/darwin-arm64": { 65 | "version": "0.17.19", 66 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz", 67 | "integrity": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==", 68 | "cpu": [ 69 | "arm64" 70 | ], 71 | "dev": true, 72 | "optional": true, 73 | "os": [ 74 | "darwin" 75 | ], 76 | "engines": { 77 | "node": ">=12" 78 | } 79 | }, 80 | "node_modules/@eslint-community/eslint-utils": { 81 | "version": "4.4.0", 82 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 83 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 84 | "dev": true, 85 | "dependencies": { 86 | "eslint-visitor-keys": "^3.3.0" 87 | }, 88 | "engines": { 89 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 90 | }, 91 | "peerDependencies": { 92 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 93 | } 94 | }, 95 | "node_modules/@eslint-community/regexpp": { 96 | "version": "4.5.1", 97 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", 98 | "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", 99 | "dev": true, 100 | "engines": { 101 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 102 | } 103 | }, 104 | "node_modules/@eslint/eslintrc": { 105 | "version": "2.0.3", 106 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", 107 | "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==", 108 | "dev": true, 109 | "dependencies": { 110 | "ajv": "^6.12.4", 111 | "debug": "^4.3.2", 112 | "espree": "^9.5.2", 113 | "globals": "^13.19.0", 114 | "ignore": "^5.2.0", 115 | "import-fresh": "^3.2.1", 116 | "js-yaml": "^4.1.0", 117 | "minimatch": "^3.1.2", 118 | "strip-json-comments": "^3.1.1" 119 | }, 120 | "engines": { 121 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 122 | }, 123 | "funding": { 124 | "url": "https://opencollective.com/eslint" 125 | } 126 | }, 127 | "node_modules/@eslint/js": { 128 | "version": "8.43.0", 129 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.43.0.tgz", 130 | "integrity": "sha512-s2UHCoiXfxMvmfzqoN+vrQ84ahUSYde9qNO1MdxmoEhyHWsfmwOpFlwYV+ePJEVc7gFnATGUi376WowX1N7tFg==", 131 | "dev": true, 132 | "engines": { 133 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 134 | } 135 | }, 136 | "node_modules/@humanwhocodes/config-array": { 137 | "version": "0.11.10", 138 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", 139 | "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", 140 | "dev": true, 141 | "dependencies": { 142 | "@humanwhocodes/object-schema": "^1.2.1", 143 | "debug": "^4.1.1", 144 | "minimatch": "^3.0.5" 145 | }, 146 | "engines": { 147 | "node": ">=10.10.0" 148 | } 149 | }, 150 | "node_modules/@humanwhocodes/module-importer": { 151 | "version": "1.0.1", 152 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 153 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 154 | "dev": true, 155 | "engines": { 156 | "node": ">=12.22" 157 | }, 158 | "funding": { 159 | "type": "github", 160 | "url": "https://github.com/sponsors/nzakas" 161 | } 162 | }, 163 | "node_modules/@humanwhocodes/object-schema": { 164 | "version": "1.2.1", 165 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 166 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", 167 | "dev": true 168 | }, 169 | "node_modules/@jridgewell/gen-mapping": { 170 | "version": "0.3.3", 171 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", 172 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", 173 | "dev": true, 174 | "dependencies": { 175 | "@jridgewell/set-array": "^1.0.1", 176 | "@jridgewell/sourcemap-codec": "^1.4.10", 177 | "@jridgewell/trace-mapping": "^0.3.9" 178 | }, 179 | "engines": { 180 | "node": ">=6.0.0" 181 | } 182 | }, 183 | "node_modules/@jridgewell/resolve-uri": { 184 | "version": "3.1.0", 185 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", 186 | "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", 187 | "dev": true, 188 | "engines": { 189 | "node": ">=6.0.0" 190 | } 191 | }, 192 | "node_modules/@jridgewell/set-array": { 193 | "version": "1.1.2", 194 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 195 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 196 | "dev": true, 197 | "engines": { 198 | "node": ">=6.0.0" 199 | } 200 | }, 201 | "node_modules/@jridgewell/sourcemap-codec": { 202 | "version": "1.4.15", 203 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 204 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", 205 | "dev": true 206 | }, 207 | "node_modules/@jridgewell/trace-mapping": { 208 | "version": "0.3.18", 209 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", 210 | "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", 211 | "dev": true, 212 | "dependencies": { 213 | "@jridgewell/resolve-uri": "3.1.0", 214 | "@jridgewell/sourcemap-codec": "1.4.14" 215 | } 216 | }, 217 | "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { 218 | "version": "1.4.14", 219 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", 220 | "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", 221 | "dev": true 222 | }, 223 | "node_modules/@mapbox/node-pre-gyp": { 224 | "version": "1.0.10", 225 | "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", 226 | "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==", 227 | "dependencies": { 228 | "detect-libc": "^2.0.0", 229 | "https-proxy-agent": "^5.0.0", 230 | "make-dir": "^3.1.0", 231 | "node-fetch": "^2.6.7", 232 | "nopt": "^5.0.0", 233 | "npmlog": "^5.0.1", 234 | "rimraf": "^3.0.2", 235 | "semver": "^7.3.5", 236 | "tar": "^6.1.11" 237 | }, 238 | "bin": { 239 | "node-pre-gyp": "bin/node-pre-gyp" 240 | } 241 | }, 242 | "node_modules/@nodelib/fs.scandir": { 243 | "version": "2.1.5", 244 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 245 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 246 | "dev": true, 247 | "dependencies": { 248 | "@nodelib/fs.stat": "2.0.5", 249 | "run-parallel": "^1.1.9" 250 | }, 251 | "engines": { 252 | "node": ">= 8" 253 | } 254 | }, 255 | "node_modules/@nodelib/fs.stat": { 256 | "version": "2.0.5", 257 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 258 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 259 | "dev": true, 260 | "engines": { 261 | "node": ">= 8" 262 | } 263 | }, 264 | "node_modules/@nodelib/fs.walk": { 265 | "version": "1.2.8", 266 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 267 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 268 | "dev": true, 269 | "dependencies": { 270 | "@nodelib/fs.scandir": "2.1.5", 271 | "fastq": "^1.6.0" 272 | }, 273 | "engines": { 274 | "node": ">= 8" 275 | } 276 | }, 277 | "node_modules/@polka/url": { 278 | "version": "1.0.0-next.21", 279 | "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz", 280 | "integrity": "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==", 281 | "dev": true 282 | }, 283 | "node_modules/@sveltejs/adapter-auto": { 284 | "version": "2.1.0", 285 | "resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-2.1.0.tgz", 286 | "integrity": "sha512-o2pZCfATFtA/Gw/BB0Xm7k4EYaekXxaPGER3xGSY3FvzFJGTlJlZjBseaXwYSM94lZ0HniOjTokN3cWaLX6fow==", 287 | "dev": true, 288 | "dependencies": { 289 | "import-meta-resolve": "^3.0.0" 290 | }, 291 | "peerDependencies": { 292 | "@sveltejs/kit": "^1.0.0" 293 | } 294 | }, 295 | "node_modules/@sveltejs/kit": { 296 | "version": "1.21.0", 297 | "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-1.21.0.tgz", 298 | "integrity": "sha512-CBsYoI34SjtOQp0eG85dmVnvTR3Pjs8VgAQhO0CgQja9BIorKl808F1X8EunPhCcyek5r5lKQE1Mmbi0RuzHqA==", 299 | "dev": true, 300 | "hasInstallScript": true, 301 | "dependencies": { 302 | "@sveltejs/vite-plugin-svelte": "^2.4.1", 303 | "@types/cookie": "^0.5.1", 304 | "cookie": "^0.5.0", 305 | "devalue": "^4.3.1", 306 | "esm-env": "^1.0.0", 307 | "kleur": "^4.1.5", 308 | "magic-string": "^0.30.0", 309 | "mime": "^3.0.0", 310 | "sade": "^1.8.1", 311 | "set-cookie-parser": "^2.6.0", 312 | "sirv": "^2.0.2", 313 | "undici": "~5.22.0" 314 | }, 315 | "bin": { 316 | "svelte-kit": "svelte-kit.js" 317 | }, 318 | "engines": { 319 | "node": "^16.14 || >=18" 320 | }, 321 | "peerDependencies": { 322 | "svelte": "^3.54.0 || ^4.0.0-next.0", 323 | "vite": "^4.0.0" 324 | } 325 | }, 326 | "node_modules/@sveltejs/package": { 327 | "version": "2.1.0", 328 | "resolved": "https://registry.npmjs.org/@sveltejs/package/-/package-2.1.0.tgz", 329 | "integrity": "sha512-c6PLH9G2YLQ48kqrS2XX422BrLNABBstSiapamchVJaQnOTXyJmUR8KmoCCySnzVy3PiYL6jg12UnoPmjW3SwA==", 330 | "dev": true, 331 | "dependencies": { 332 | "chokidar": "^3.5.3", 333 | "kleur": "^4.1.5", 334 | "sade": "^1.8.1", 335 | "svelte2tsx": "~0.6.0" 336 | }, 337 | "bin": { 338 | "svelte-package": "svelte-package.js" 339 | }, 340 | "engines": { 341 | "node": "^16.14 || >=18" 342 | }, 343 | "peerDependencies": { 344 | "svelte": "^3.44.0 || ^4.0.0" 345 | } 346 | }, 347 | "node_modules/@sveltejs/vite-plugin-svelte": { 348 | "version": "2.4.2", 349 | "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-2.4.2.tgz", 350 | "integrity": "sha512-ePfcC48ftMKhkT0OFGdOyycYKnnkT6i/buzey+vHRTR/JpQvuPzzhf1PtKqCDQfJRgoPSN2vscXs6gLigx/zGw==", 351 | "dev": true, 352 | "dependencies": { 353 | "@sveltejs/vite-plugin-svelte-inspector": "^1.0.3", 354 | "debug": "^4.3.4", 355 | "deepmerge": "^4.3.1", 356 | "kleur": "^4.1.5", 357 | "magic-string": "^0.30.0", 358 | "svelte-hmr": "^0.15.2", 359 | "vitefu": "^0.2.4" 360 | }, 361 | "engines": { 362 | "node": "^14.18.0 || >= 16" 363 | }, 364 | "peerDependencies": { 365 | "svelte": "^3.54.0 || ^4.0.0", 366 | "vite": "^4.0.0" 367 | } 368 | }, 369 | "node_modules/@sveltejs/vite-plugin-svelte-inspector": { 370 | "version": "1.0.3", 371 | "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-1.0.3.tgz", 372 | "integrity": "sha512-Khdl5jmmPN6SUsVuqSXatKpQTMIifoQPDanaxC84m9JxIibWvSABJyHpyys0Z+1yYrxY5TTEQm+6elh0XCMaOA==", 373 | "dev": true, 374 | "dependencies": { 375 | "debug": "^4.3.4" 376 | }, 377 | "engines": { 378 | "node": "^14.18.0 || >= 16" 379 | }, 380 | "peerDependencies": { 381 | "@sveltejs/vite-plugin-svelte": "^2.2.0", 382 | "svelte": "^3.54.0 || ^4.0.0", 383 | "vite": "^4.0.0" 384 | } 385 | }, 386 | "node_modules/@types/bcrypt": { 387 | "version": "5.0.0", 388 | "resolved": "https://registry.npmjs.org/@types/bcrypt/-/bcrypt-5.0.0.tgz", 389 | "integrity": "sha512-agtcFKaruL8TmcvqbndlqHPSJgsolhf/qPWchFlgnW1gECTN/nKbFcoFnvKAQRFfKbh+BO6A3SWdJu9t+xF3Lw==", 390 | "dev": true, 391 | "dependencies": { 392 | "@types/node": "*" 393 | } 394 | }, 395 | "node_modules/@types/cookie": { 396 | "version": "0.5.1", 397 | "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.5.1.tgz", 398 | "integrity": "sha512-COUnqfB2+ckwXXSFInsFdOAWQzCCx+a5hq2ruyj+Vjund94RJQd4LG2u9hnvJrTgunKAaax7ancBYlDrNYxA0g==", 399 | "dev": true 400 | }, 401 | "node_modules/@types/estree": { 402 | "version": "1.0.1", 403 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", 404 | "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", 405 | "dev": true 406 | }, 407 | "node_modules/@types/json-schema": { 408 | "version": "7.0.12", 409 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", 410 | "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", 411 | "dev": true 412 | }, 413 | "node_modules/@types/node": { 414 | "version": "20.3.3", 415 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.3.tgz", 416 | "integrity": "sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==", 417 | "dev": true 418 | }, 419 | "node_modules/@types/pg": { 420 | "version": "8.10.2", 421 | "resolved": "https://registry.npmjs.org/@types/pg/-/pg-8.10.2.tgz", 422 | "integrity": "sha512-MKFs9P6nJ+LAeHLU3V0cODEOgyThJ3OAnmOlsZsxux6sfQs3HRXR5bBn7xG5DjckEFhTAxsXi7k7cd0pCMxpJw==", 423 | "dev": true, 424 | "dependencies": { 425 | "@types/node": "*", 426 | "pg-protocol": "*", 427 | "pg-types": "^4.0.1" 428 | } 429 | }, 430 | "node_modules/@types/pug": { 431 | "version": "2.0.6", 432 | "resolved": "https://registry.npmjs.org/@types/pug/-/pug-2.0.6.tgz", 433 | "integrity": "sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==", 434 | "dev": true 435 | }, 436 | "node_modules/@types/semver": { 437 | "version": "7.5.0", 438 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz", 439 | "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==", 440 | "dev": true 441 | }, 442 | "node_modules/@typescript-eslint/eslint-plugin": { 443 | "version": "5.60.1", 444 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.60.1.tgz", 445 | "integrity": "sha512-KSWsVvsJsLJv3c4e73y/Bzt7OpqMCADUO846bHcuWYSYM19bldbAeDv7dYyV0jwkbMfJ2XdlzwjhXtuD7OY6bw==", 446 | "dev": true, 447 | "dependencies": { 448 | "@eslint-community/regexpp": "^4.4.0", 449 | "@typescript-eslint/scope-manager": "5.60.1", 450 | "@typescript-eslint/type-utils": "5.60.1", 451 | "@typescript-eslint/utils": "5.60.1", 452 | "debug": "^4.3.4", 453 | "grapheme-splitter": "^1.0.4", 454 | "ignore": "^5.2.0", 455 | "natural-compare-lite": "^1.4.0", 456 | "semver": "^7.3.7", 457 | "tsutils": "^3.21.0" 458 | }, 459 | "engines": { 460 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 461 | }, 462 | "funding": { 463 | "type": "opencollective", 464 | "url": "https://opencollective.com/typescript-eslint" 465 | }, 466 | "peerDependencies": { 467 | "@typescript-eslint/parser": "^5.0.0", 468 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 469 | }, 470 | "peerDependenciesMeta": { 471 | "typescript": { 472 | "optional": true 473 | } 474 | } 475 | }, 476 | "node_modules/@typescript-eslint/parser": { 477 | "version": "5.60.1", 478 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.60.1.tgz", 479 | "integrity": "sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==", 480 | "dev": true, 481 | "dependencies": { 482 | "@typescript-eslint/scope-manager": "5.60.1", 483 | "@typescript-eslint/types": "5.60.1", 484 | "@typescript-eslint/typescript-estree": "5.60.1", 485 | "debug": "^4.3.4" 486 | }, 487 | "engines": { 488 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 489 | }, 490 | "funding": { 491 | "type": "opencollective", 492 | "url": "https://opencollective.com/typescript-eslint" 493 | }, 494 | "peerDependencies": { 495 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 496 | }, 497 | "peerDependenciesMeta": { 498 | "typescript": { 499 | "optional": true 500 | } 501 | } 502 | }, 503 | "node_modules/@typescript-eslint/scope-manager": { 504 | "version": "5.60.1", 505 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.60.1.tgz", 506 | "integrity": "sha512-Dn/LnN7fEoRD+KspEOV0xDMynEmR3iSHdgNsarlXNLGGtcUok8L4N71dxUgt3YvlO8si7E+BJ5Fe3wb5yUw7DQ==", 507 | "dev": true, 508 | "dependencies": { 509 | "@typescript-eslint/types": "5.60.1", 510 | "@typescript-eslint/visitor-keys": "5.60.1" 511 | }, 512 | "engines": { 513 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 514 | }, 515 | "funding": { 516 | "type": "opencollective", 517 | "url": "https://opencollective.com/typescript-eslint" 518 | } 519 | }, 520 | "node_modules/@typescript-eslint/type-utils": { 521 | "version": "5.60.1", 522 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.60.1.tgz", 523 | "integrity": "sha512-vN6UztYqIu05nu7JqwQGzQKUJctzs3/Hg7E2Yx8rz9J+4LgtIDFWjjl1gm3pycH0P3mHAcEUBd23LVgfrsTR8A==", 524 | "dev": true, 525 | "dependencies": { 526 | "@typescript-eslint/typescript-estree": "5.60.1", 527 | "@typescript-eslint/utils": "5.60.1", 528 | "debug": "^4.3.4", 529 | "tsutils": "^3.21.0" 530 | }, 531 | "engines": { 532 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 533 | }, 534 | "funding": { 535 | "type": "opencollective", 536 | "url": "https://opencollective.com/typescript-eslint" 537 | }, 538 | "peerDependencies": { 539 | "eslint": "*" 540 | }, 541 | "peerDependenciesMeta": { 542 | "typescript": { 543 | "optional": true 544 | } 545 | } 546 | }, 547 | "node_modules/@typescript-eslint/types": { 548 | "version": "5.60.1", 549 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.60.1.tgz", 550 | "integrity": "sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg==", 551 | "dev": true, 552 | "engines": { 553 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 554 | }, 555 | "funding": { 556 | "type": "opencollective", 557 | "url": "https://opencollective.com/typescript-eslint" 558 | } 559 | }, 560 | "node_modules/@typescript-eslint/typescript-estree": { 561 | "version": "5.60.1", 562 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.60.1.tgz", 563 | "integrity": "sha512-hkX70J9+2M2ZT6fhti5Q2FoU9zb+GeZK2SLP1WZlvUDqdMbEKhexZODD1WodNRyO8eS+4nScvT0dts8IdaBzfw==", 564 | "dev": true, 565 | "dependencies": { 566 | "@typescript-eslint/types": "5.60.1", 567 | "@typescript-eslint/visitor-keys": "5.60.1", 568 | "debug": "^4.3.4", 569 | "globby": "^11.1.0", 570 | "is-glob": "^4.0.3", 571 | "semver": "^7.3.7", 572 | "tsutils": "^3.21.0" 573 | }, 574 | "engines": { 575 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 576 | }, 577 | "funding": { 578 | "type": "opencollective", 579 | "url": "https://opencollective.com/typescript-eslint" 580 | }, 581 | "peerDependenciesMeta": { 582 | "typescript": { 583 | "optional": true 584 | } 585 | } 586 | }, 587 | "node_modules/@typescript-eslint/utils": { 588 | "version": "5.60.1", 589 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.60.1.tgz", 590 | "integrity": "sha512-tiJ7FFdFQOWssFa3gqb94Ilexyw0JVxj6vBzaSpfN/8IhoKkDuSAenUKvsSHw2A/TMpJb26izIszTXaqygkvpQ==", 591 | "dev": true, 592 | "dependencies": { 593 | "@eslint-community/eslint-utils": "^4.2.0", 594 | "@types/json-schema": "^7.0.9", 595 | "@types/semver": "^7.3.12", 596 | "@typescript-eslint/scope-manager": "5.60.1", 597 | "@typescript-eslint/types": "5.60.1", 598 | "@typescript-eslint/typescript-estree": "5.60.1", 599 | "eslint-scope": "^5.1.1", 600 | "semver": "^7.3.7" 601 | }, 602 | "engines": { 603 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 604 | }, 605 | "funding": { 606 | "type": "opencollective", 607 | "url": "https://opencollective.com/typescript-eslint" 608 | }, 609 | "peerDependencies": { 610 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 611 | } 612 | }, 613 | "node_modules/@typescript-eslint/visitor-keys": { 614 | "version": "5.60.1", 615 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.60.1.tgz", 616 | "integrity": "sha512-xEYIxKcultP6E/RMKqube11pGjXH1DCo60mQoWhVYyKfLkwbIVVjYxmOenNMxILx0TjCujPTjjnTIVzm09TXIw==", 617 | "dev": true, 618 | "dependencies": { 619 | "@typescript-eslint/types": "5.60.1", 620 | "eslint-visitor-keys": "^3.3.0" 621 | }, 622 | "engines": { 623 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 624 | }, 625 | "funding": { 626 | "type": "opencollective", 627 | "url": "https://opencollective.com/typescript-eslint" 628 | } 629 | }, 630 | "node_modules/abbrev": { 631 | "version": "1.1.1", 632 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", 633 | "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" 634 | }, 635 | "node_modules/acorn": { 636 | "version": "8.9.0", 637 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", 638 | "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", 639 | "dev": true, 640 | "bin": { 641 | "acorn": "bin/acorn" 642 | }, 643 | "engines": { 644 | "node": ">=0.4.0" 645 | } 646 | }, 647 | "node_modules/acorn-jsx": { 648 | "version": "5.3.2", 649 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 650 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 651 | "dev": true, 652 | "peerDependencies": { 653 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 654 | } 655 | }, 656 | "node_modules/agent-base": { 657 | "version": "6.0.2", 658 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", 659 | "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", 660 | "dependencies": { 661 | "debug": "4" 662 | }, 663 | "engines": { 664 | "node": ">= 6.0.0" 665 | } 666 | }, 667 | "node_modules/ajv": { 668 | "version": "6.12.6", 669 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 670 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 671 | "dev": true, 672 | "dependencies": { 673 | "fast-deep-equal": "^3.1.1", 674 | "fast-json-stable-stringify": "^2.0.0", 675 | "json-schema-traverse": "^0.4.1", 676 | "uri-js": "^4.2.2" 677 | }, 678 | "funding": { 679 | "type": "github", 680 | "url": "https://github.com/sponsors/epoberezkin" 681 | } 682 | }, 683 | "node_modules/ansi-regex": { 684 | "version": "5.0.1", 685 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 686 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 687 | "engines": { 688 | "node": ">=8" 689 | } 690 | }, 691 | "node_modules/ansi-styles": { 692 | "version": "4.3.0", 693 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 694 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 695 | "dev": true, 696 | "dependencies": { 697 | "color-convert": "^2.0.1" 698 | }, 699 | "engines": { 700 | "node": ">=8" 701 | }, 702 | "funding": { 703 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 704 | } 705 | }, 706 | "node_modules/anymatch": { 707 | "version": "3.1.3", 708 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 709 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 710 | "dev": true, 711 | "dependencies": { 712 | "normalize-path": "^3.0.0", 713 | "picomatch": "^2.0.4" 714 | }, 715 | "engines": { 716 | "node": ">= 8" 717 | } 718 | }, 719 | "node_modules/aproba": { 720 | "version": "2.0.0", 721 | "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", 722 | "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" 723 | }, 724 | "node_modules/are-we-there-yet": { 725 | "version": "2.0.0", 726 | "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", 727 | "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", 728 | "dependencies": { 729 | "delegates": "^1.0.0", 730 | "readable-stream": "^3.6.0" 731 | }, 732 | "engines": { 733 | "node": ">=10" 734 | } 735 | }, 736 | "node_modules/argparse": { 737 | "version": "2.0.1", 738 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 739 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 740 | "dev": true 741 | }, 742 | "node_modules/aria-query": { 743 | "version": "5.3.0", 744 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", 745 | "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", 746 | "dev": true, 747 | "dependencies": { 748 | "dequal": "^2.0.3" 749 | } 750 | }, 751 | "node_modules/array-union": { 752 | "version": "2.1.0", 753 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 754 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 755 | "dev": true, 756 | "engines": { 757 | "node": ">=8" 758 | } 759 | }, 760 | "node_modules/arrify": { 761 | "version": "2.0.1", 762 | "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", 763 | "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", 764 | "engines": { 765 | "node": ">=8" 766 | } 767 | }, 768 | "node_modules/axobject-query": { 769 | "version": "3.2.1", 770 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", 771 | "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", 772 | "dev": true, 773 | "dependencies": { 774 | "dequal": "^2.0.3" 775 | } 776 | }, 777 | "node_modules/balanced-match": { 778 | "version": "1.0.2", 779 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 780 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 781 | }, 782 | "node_modules/base64-js": { 783 | "version": "1.5.1", 784 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 785 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 786 | "funding": [ 787 | { 788 | "type": "github", 789 | "url": "https://github.com/sponsors/feross" 790 | }, 791 | { 792 | "type": "patreon", 793 | "url": "https://www.patreon.com/feross" 794 | }, 795 | { 796 | "type": "consulting", 797 | "url": "https://feross.org/support" 798 | } 799 | ] 800 | }, 801 | "node_modules/bcrypt": { 802 | "version": "5.1.0", 803 | "resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-5.1.0.tgz", 804 | "integrity": "sha512-RHBS7HI5N5tEnGTmtR/pppX0mmDSBpQ4aCBsj7CEQfYXDcO74A8sIBYcJMuCsis2E81zDxeENYhv66oZwLiA+Q==", 805 | "hasInstallScript": true, 806 | "dependencies": { 807 | "@mapbox/node-pre-gyp": "^1.0.10", 808 | "node-addon-api": "^5.0.0" 809 | }, 810 | "engines": { 811 | "node": ">= 10.0.0" 812 | } 813 | }, 814 | "node_modules/bcryptjs": { 815 | "version": "2.4.3", 816 | "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", 817 | "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==" 818 | }, 819 | "node_modules/bignumber.js": { 820 | "version": "9.1.1", 821 | "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.1.tgz", 822 | "integrity": "sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig==", 823 | "engines": { 824 | "node": "*" 825 | } 826 | }, 827 | "node_modules/binary-extensions": { 828 | "version": "2.2.0", 829 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 830 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 831 | "dev": true, 832 | "engines": { 833 | "node": ">=8" 834 | } 835 | }, 836 | "node_modules/brace-expansion": { 837 | "version": "1.1.11", 838 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 839 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 840 | "dependencies": { 841 | "balanced-match": "^1.0.0", 842 | "concat-map": "0.0.1" 843 | } 844 | }, 845 | "node_modules/braces": { 846 | "version": "3.0.2", 847 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 848 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 849 | "dev": true, 850 | "dependencies": { 851 | "fill-range": "^7.0.1" 852 | }, 853 | "engines": { 854 | "node": ">=8" 855 | } 856 | }, 857 | "node_modules/buffer-crc32": { 858 | "version": "0.2.13", 859 | "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", 860 | "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", 861 | "dev": true, 862 | "engines": { 863 | "node": "*" 864 | } 865 | }, 866 | "node_modules/buffer-equal-constant-time": { 867 | "version": "1.0.1", 868 | "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", 869 | "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" 870 | }, 871 | "node_modules/buffer-writer": { 872 | "version": "2.0.0", 873 | "resolved": "https://registry.npmjs.org/buffer-writer/-/buffer-writer-2.0.0.tgz", 874 | "integrity": "sha512-a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw==", 875 | "engines": { 876 | "node": ">=4" 877 | } 878 | }, 879 | "node_modules/busboy": { 880 | "version": "1.6.0", 881 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", 882 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", 883 | "dev": true, 884 | "dependencies": { 885 | "streamsearch": "^1.1.0" 886 | }, 887 | "engines": { 888 | "node": ">=10.16.0" 889 | } 890 | }, 891 | "node_modules/callsites": { 892 | "version": "3.1.0", 893 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 894 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 895 | "dev": true, 896 | "engines": { 897 | "node": ">=6" 898 | } 899 | }, 900 | "node_modules/chalk": { 901 | "version": "4.1.2", 902 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 903 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 904 | "dev": true, 905 | "dependencies": { 906 | "ansi-styles": "^4.1.0", 907 | "supports-color": "^7.1.0" 908 | }, 909 | "engines": { 910 | "node": ">=10" 911 | }, 912 | "funding": { 913 | "url": "https://github.com/chalk/chalk?sponsor=1" 914 | } 915 | }, 916 | "node_modules/chokidar": { 917 | "version": "3.5.3", 918 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 919 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 920 | "dev": true, 921 | "funding": [ 922 | { 923 | "type": "individual", 924 | "url": "https://paulmillr.com/funding/" 925 | } 926 | ], 927 | "dependencies": { 928 | "anymatch": "~3.1.2", 929 | "braces": "~3.0.2", 930 | "glob-parent": "~5.1.2", 931 | "is-binary-path": "~2.1.0", 932 | "is-glob": "~4.0.1", 933 | "normalize-path": "~3.0.0", 934 | "readdirp": "~3.6.0" 935 | }, 936 | "engines": { 937 | "node": ">= 8.10.0" 938 | }, 939 | "optionalDependencies": { 940 | "fsevents": "~2.3.2" 941 | } 942 | }, 943 | "node_modules/chownr": { 944 | "version": "2.0.0", 945 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", 946 | "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", 947 | "engines": { 948 | "node": ">=10" 949 | } 950 | }, 951 | "node_modules/code-red": { 952 | "version": "1.0.3", 953 | "resolved": "https://registry.npmjs.org/code-red/-/code-red-1.0.3.tgz", 954 | "integrity": "sha512-kVwJELqiILQyG5aeuyKFbdsI1fmQy1Cmf7dQ8eGmVuJoaRVdwey7WaMknr2ZFeVSYSKT0rExsa8EGw0aoI/1QQ==", 955 | "dev": true, 956 | "dependencies": { 957 | "@jridgewell/sourcemap-codec": "^1.4.14", 958 | "@types/estree": "^1.0.0", 959 | "acorn": "^8.8.2", 960 | "estree-walker": "^3.0.3", 961 | "periscopic": "^3.1.0" 962 | } 963 | }, 964 | "node_modules/color-convert": { 965 | "version": "2.0.1", 966 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 967 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 968 | "dev": true, 969 | "dependencies": { 970 | "color-name": "~1.1.4" 971 | }, 972 | "engines": { 973 | "node": ">=7.0.0" 974 | } 975 | }, 976 | "node_modules/color-name": { 977 | "version": "1.1.4", 978 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 979 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 980 | "dev": true 981 | }, 982 | "node_modules/color-support": { 983 | "version": "1.1.3", 984 | "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", 985 | "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", 986 | "bin": { 987 | "color-support": "bin.js" 988 | } 989 | }, 990 | "node_modules/concat-map": { 991 | "version": "0.0.1", 992 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 993 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 994 | }, 995 | "node_modules/console-control-strings": { 996 | "version": "1.1.0", 997 | "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", 998 | "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" 999 | }, 1000 | "node_modules/cookie": { 1001 | "version": "0.5.0", 1002 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", 1003 | "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", 1004 | "engines": { 1005 | "node": ">= 0.6" 1006 | } 1007 | }, 1008 | "node_modules/cross-spawn": { 1009 | "version": "7.0.3", 1010 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1011 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1012 | "dev": true, 1013 | "dependencies": { 1014 | "path-key": "^3.1.0", 1015 | "shebang-command": "^2.0.0", 1016 | "which": "^2.0.1" 1017 | }, 1018 | "engines": { 1019 | "node": ">= 8" 1020 | } 1021 | }, 1022 | "node_modules/css-tree": { 1023 | "version": "2.3.1", 1024 | "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", 1025 | "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", 1026 | "dev": true, 1027 | "dependencies": { 1028 | "mdn-data": "2.0.30", 1029 | "source-map-js": "^1.0.1" 1030 | }, 1031 | "engines": { 1032 | "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" 1033 | } 1034 | }, 1035 | "node_modules/cssesc": { 1036 | "version": "3.0.0", 1037 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1038 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1039 | "dev": true, 1040 | "bin": { 1041 | "cssesc": "bin/cssesc" 1042 | }, 1043 | "engines": { 1044 | "node": ">=4" 1045 | } 1046 | }, 1047 | "node_modules/debug": { 1048 | "version": "4.3.4", 1049 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1050 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1051 | "dependencies": { 1052 | "ms": "2.1.2" 1053 | }, 1054 | "engines": { 1055 | "node": ">=6.0" 1056 | }, 1057 | "peerDependenciesMeta": { 1058 | "supports-color": { 1059 | "optional": true 1060 | } 1061 | } 1062 | }, 1063 | "node_modules/dedent-js": { 1064 | "version": "1.0.1", 1065 | "resolved": "https://registry.npmjs.org/dedent-js/-/dedent-js-1.0.1.tgz", 1066 | "integrity": "sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==", 1067 | "dev": true 1068 | }, 1069 | "node_modules/deep-is": { 1070 | "version": "0.1.4", 1071 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1072 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1073 | "dev": true 1074 | }, 1075 | "node_modules/deepmerge": { 1076 | "version": "4.3.1", 1077 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 1078 | "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 1079 | "dev": true, 1080 | "engines": { 1081 | "node": ">=0.10.0" 1082 | } 1083 | }, 1084 | "node_modules/delegates": { 1085 | "version": "1.0.0", 1086 | "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", 1087 | "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" 1088 | }, 1089 | "node_modules/dequal": { 1090 | "version": "2.0.3", 1091 | "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", 1092 | "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", 1093 | "dev": true, 1094 | "engines": { 1095 | "node": ">=6" 1096 | } 1097 | }, 1098 | "node_modules/detect-indent": { 1099 | "version": "6.1.0", 1100 | "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", 1101 | "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", 1102 | "dev": true, 1103 | "engines": { 1104 | "node": ">=8" 1105 | } 1106 | }, 1107 | "node_modules/detect-libc": { 1108 | "version": "2.0.1", 1109 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", 1110 | "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", 1111 | "engines": { 1112 | "node": ">=8" 1113 | } 1114 | }, 1115 | "node_modules/devalue": { 1116 | "version": "4.3.2", 1117 | "resolved": "https://registry.npmjs.org/devalue/-/devalue-4.3.2.tgz", 1118 | "integrity": "sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==", 1119 | "dev": true 1120 | }, 1121 | "node_modules/dir-glob": { 1122 | "version": "3.0.1", 1123 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1124 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1125 | "dev": true, 1126 | "dependencies": { 1127 | "path-type": "^4.0.0" 1128 | }, 1129 | "engines": { 1130 | "node": ">=8" 1131 | } 1132 | }, 1133 | "node_modules/doctrine": { 1134 | "version": "3.0.0", 1135 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1136 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1137 | "dev": true, 1138 | "dependencies": { 1139 | "esutils": "^2.0.2" 1140 | }, 1141 | "engines": { 1142 | "node": ">=6.0.0" 1143 | } 1144 | }, 1145 | "node_modules/dotenv": { 1146 | "version": "16.3.1", 1147 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", 1148 | "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", 1149 | "engines": { 1150 | "node": ">=12" 1151 | }, 1152 | "funding": { 1153 | "url": "https://github.com/motdotla/dotenv?sponsor=1" 1154 | } 1155 | }, 1156 | "node_modules/ecdsa-sig-formatter": { 1157 | "version": "1.0.11", 1158 | "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", 1159 | "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", 1160 | "dependencies": { 1161 | "safe-buffer": "^5.0.1" 1162 | } 1163 | }, 1164 | "node_modules/emoji-regex": { 1165 | "version": "8.0.0", 1166 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1167 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" 1168 | }, 1169 | "node_modules/es6-promise": { 1170 | "version": "3.3.1", 1171 | "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", 1172 | "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==", 1173 | "dev": true 1174 | }, 1175 | "node_modules/esbuild": { 1176 | "version": "0.17.19", 1177 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz", 1178 | "integrity": "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==", 1179 | "dev": true, 1180 | "hasInstallScript": true, 1181 | "bin": { 1182 | "esbuild": "bin/esbuild" 1183 | }, 1184 | "engines": { 1185 | "node": ">=12" 1186 | }, 1187 | "optionalDependencies": { 1188 | "@esbuild/android-arm": "0.17.19", 1189 | "@esbuild/android-arm64": "0.17.19", 1190 | "@esbuild/android-x64": "0.17.19", 1191 | "@esbuild/darwin-arm64": "0.17.19", 1192 | "@esbuild/darwin-x64": "0.17.19", 1193 | "@esbuild/freebsd-arm64": "0.17.19", 1194 | "@esbuild/freebsd-x64": "0.17.19", 1195 | "@esbuild/linux-arm": "0.17.19", 1196 | "@esbuild/linux-arm64": "0.17.19", 1197 | "@esbuild/linux-ia32": "0.17.19", 1198 | "@esbuild/linux-loong64": "0.17.19", 1199 | "@esbuild/linux-mips64el": "0.17.19", 1200 | "@esbuild/linux-ppc64": "0.17.19", 1201 | "@esbuild/linux-riscv64": "0.17.19", 1202 | "@esbuild/linux-s390x": "0.17.19", 1203 | "@esbuild/linux-x64": "0.17.19", 1204 | "@esbuild/netbsd-x64": "0.17.19", 1205 | "@esbuild/openbsd-x64": "0.17.19", 1206 | "@esbuild/sunos-x64": "0.17.19", 1207 | "@esbuild/win32-arm64": "0.17.19", 1208 | "@esbuild/win32-ia32": "0.17.19", 1209 | "@esbuild/win32-x64": "0.17.19" 1210 | } 1211 | }, 1212 | "node_modules/escape-string-regexp": { 1213 | "version": "4.0.0", 1214 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1215 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1216 | "dev": true, 1217 | "engines": { 1218 | "node": ">=10" 1219 | }, 1220 | "funding": { 1221 | "url": "https://github.com/sponsors/sindresorhus" 1222 | } 1223 | }, 1224 | "node_modules/eslint": { 1225 | "version": "8.43.0", 1226 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.43.0.tgz", 1227 | "integrity": "sha512-aaCpf2JqqKesMFGgmRPessmVKjcGXqdlAYLLC3THM8t5nBRZRQ+st5WM/hoJXkdioEXLLbXgclUpM0TXo5HX5Q==", 1228 | "dev": true, 1229 | "dependencies": { 1230 | "@eslint-community/eslint-utils": "^4.2.0", 1231 | "@eslint-community/regexpp": "^4.4.0", 1232 | "@eslint/eslintrc": "^2.0.3", 1233 | "@eslint/js": "8.43.0", 1234 | "@humanwhocodes/config-array": "^0.11.10", 1235 | "@humanwhocodes/module-importer": "^1.0.1", 1236 | "@nodelib/fs.walk": "^1.2.8", 1237 | "ajv": "^6.10.0", 1238 | "chalk": "^4.0.0", 1239 | "cross-spawn": "^7.0.2", 1240 | "debug": "^4.3.2", 1241 | "doctrine": "^3.0.0", 1242 | "escape-string-regexp": "^4.0.0", 1243 | "eslint-scope": "^7.2.0", 1244 | "eslint-visitor-keys": "^3.4.1", 1245 | "espree": "^9.5.2", 1246 | "esquery": "^1.4.2", 1247 | "esutils": "^2.0.2", 1248 | "fast-deep-equal": "^3.1.3", 1249 | "file-entry-cache": "^6.0.1", 1250 | "find-up": "^5.0.0", 1251 | "glob-parent": "^6.0.2", 1252 | "globals": "^13.19.0", 1253 | "graphemer": "^1.4.0", 1254 | "ignore": "^5.2.0", 1255 | "import-fresh": "^3.0.0", 1256 | "imurmurhash": "^0.1.4", 1257 | "is-glob": "^4.0.0", 1258 | "is-path-inside": "^3.0.3", 1259 | "js-yaml": "^4.1.0", 1260 | "json-stable-stringify-without-jsonify": "^1.0.1", 1261 | "levn": "^0.4.1", 1262 | "lodash.merge": "^4.6.2", 1263 | "minimatch": "^3.1.2", 1264 | "natural-compare": "^1.4.0", 1265 | "optionator": "^0.9.1", 1266 | "strip-ansi": "^6.0.1", 1267 | "strip-json-comments": "^3.1.0", 1268 | "text-table": "^0.2.0" 1269 | }, 1270 | "bin": { 1271 | "eslint": "bin/eslint.js" 1272 | }, 1273 | "engines": { 1274 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1275 | }, 1276 | "funding": { 1277 | "url": "https://opencollective.com/eslint" 1278 | } 1279 | }, 1280 | "node_modules/eslint-plugin-svelte": { 1281 | "version": "2.32.0", 1282 | "resolved": "https://registry.npmjs.org/eslint-plugin-svelte/-/eslint-plugin-svelte-2.32.0.tgz", 1283 | "integrity": "sha512-q8uxR4wFmAkb+RX2qIJIO+xAjecInZuGYXbXOvpxMwv7Y5oQrq5WOkiYwLqPZk6p1L5UmSr54duloKiBucDL7A==", 1284 | "dev": true, 1285 | "dependencies": { 1286 | "@eslint-community/eslint-utils": "^4.2.0", 1287 | "@jridgewell/sourcemap-codec": "^1.4.14", 1288 | "debug": "^4.3.1", 1289 | "esutils": "^2.0.3", 1290 | "known-css-properties": "^0.27.0", 1291 | "postcss": "^8.4.5", 1292 | "postcss-load-config": "^3.1.4", 1293 | "postcss-safe-parser": "^6.0.0", 1294 | "postcss-selector-parser": "^6.0.11", 1295 | "semver": "^7.5.3", 1296 | "svelte-eslint-parser": "^0.32.0" 1297 | }, 1298 | "engines": { 1299 | "node": "^14.17.0 || >=16.0.0" 1300 | }, 1301 | "funding": { 1302 | "url": "https://github.com/sponsors/ota-meshi" 1303 | }, 1304 | "peerDependencies": { 1305 | "eslint": "^7.0.0 || ^8.0.0-0", 1306 | "svelte": "^3.37.0 || ^4.0.0" 1307 | }, 1308 | "peerDependenciesMeta": { 1309 | "svelte": { 1310 | "optional": true 1311 | } 1312 | } 1313 | }, 1314 | "node_modules/eslint-scope": { 1315 | "version": "5.1.1", 1316 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 1317 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 1318 | "dev": true, 1319 | "dependencies": { 1320 | "esrecurse": "^4.3.0", 1321 | "estraverse": "^4.1.1" 1322 | }, 1323 | "engines": { 1324 | "node": ">=8.0.0" 1325 | } 1326 | }, 1327 | "node_modules/eslint-visitor-keys": { 1328 | "version": "3.4.1", 1329 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", 1330 | "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", 1331 | "dev": true, 1332 | "engines": { 1333 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1334 | }, 1335 | "funding": { 1336 | "url": "https://opencollective.com/eslint" 1337 | } 1338 | }, 1339 | "node_modules/eslint/node_modules/eslint-scope": { 1340 | "version": "7.2.0", 1341 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", 1342 | "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", 1343 | "dev": true, 1344 | "dependencies": { 1345 | "esrecurse": "^4.3.0", 1346 | "estraverse": "^5.2.0" 1347 | }, 1348 | "engines": { 1349 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1350 | }, 1351 | "funding": { 1352 | "url": "https://opencollective.com/eslint" 1353 | } 1354 | }, 1355 | "node_modules/eslint/node_modules/estraverse": { 1356 | "version": "5.3.0", 1357 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1358 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1359 | "dev": true, 1360 | "engines": { 1361 | "node": ">=4.0" 1362 | } 1363 | }, 1364 | "node_modules/eslint/node_modules/glob-parent": { 1365 | "version": "6.0.2", 1366 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1367 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1368 | "dev": true, 1369 | "dependencies": { 1370 | "is-glob": "^4.0.3" 1371 | }, 1372 | "engines": { 1373 | "node": ">=10.13.0" 1374 | } 1375 | }, 1376 | "node_modules/esm-env": { 1377 | "version": "1.0.0", 1378 | "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.0.0.tgz", 1379 | "integrity": "sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==", 1380 | "dev": true 1381 | }, 1382 | "node_modules/espree": { 1383 | "version": "9.5.2", 1384 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", 1385 | "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", 1386 | "dev": true, 1387 | "dependencies": { 1388 | "acorn": "^8.8.0", 1389 | "acorn-jsx": "^5.3.2", 1390 | "eslint-visitor-keys": "^3.4.1" 1391 | }, 1392 | "engines": { 1393 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1394 | }, 1395 | "funding": { 1396 | "url": "https://opencollective.com/eslint" 1397 | } 1398 | }, 1399 | "node_modules/esquery": { 1400 | "version": "1.5.0", 1401 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1402 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1403 | "dev": true, 1404 | "dependencies": { 1405 | "estraverse": "^5.1.0" 1406 | }, 1407 | "engines": { 1408 | "node": ">=0.10" 1409 | } 1410 | }, 1411 | "node_modules/esquery/node_modules/estraverse": { 1412 | "version": "5.3.0", 1413 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1414 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1415 | "dev": true, 1416 | "engines": { 1417 | "node": ">=4.0" 1418 | } 1419 | }, 1420 | "node_modules/esrecurse": { 1421 | "version": "4.3.0", 1422 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1423 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1424 | "dev": true, 1425 | "dependencies": { 1426 | "estraverse": "^5.2.0" 1427 | }, 1428 | "engines": { 1429 | "node": ">=4.0" 1430 | } 1431 | }, 1432 | "node_modules/esrecurse/node_modules/estraverse": { 1433 | "version": "5.3.0", 1434 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1435 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1436 | "dev": true, 1437 | "engines": { 1438 | "node": ">=4.0" 1439 | } 1440 | }, 1441 | "node_modules/estraverse": { 1442 | "version": "4.3.0", 1443 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 1444 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 1445 | "dev": true, 1446 | "engines": { 1447 | "node": ">=4.0" 1448 | } 1449 | }, 1450 | "node_modules/estree-walker": { 1451 | "version": "3.0.3", 1452 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", 1453 | "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", 1454 | "dev": true, 1455 | "dependencies": { 1456 | "@types/estree": "^1.0.0" 1457 | } 1458 | }, 1459 | "node_modules/esutils": { 1460 | "version": "2.0.3", 1461 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1462 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1463 | "dev": true, 1464 | "engines": { 1465 | "node": ">=0.10.0" 1466 | } 1467 | }, 1468 | "node_modules/extend": { 1469 | "version": "3.0.2", 1470 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 1471 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" 1472 | }, 1473 | "node_modules/fast-deep-equal": { 1474 | "version": "3.1.3", 1475 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1476 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1477 | "dev": true 1478 | }, 1479 | "node_modules/fast-glob": { 1480 | "version": "3.2.12", 1481 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 1482 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 1483 | "dev": true, 1484 | "dependencies": { 1485 | "@nodelib/fs.stat": "^2.0.2", 1486 | "@nodelib/fs.walk": "^1.2.3", 1487 | "glob-parent": "^5.1.2", 1488 | "merge2": "^1.3.0", 1489 | "micromatch": "^4.0.4" 1490 | }, 1491 | "engines": { 1492 | "node": ">=8.6.0" 1493 | } 1494 | }, 1495 | "node_modules/fast-json-stable-stringify": { 1496 | "version": "2.1.0", 1497 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1498 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1499 | "dev": true 1500 | }, 1501 | "node_modules/fast-levenshtein": { 1502 | "version": "2.0.6", 1503 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1504 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1505 | "dev": true 1506 | }, 1507 | "node_modules/fast-text-encoding": { 1508 | "version": "1.0.6", 1509 | "resolved": "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz", 1510 | "integrity": "sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w==" 1511 | }, 1512 | "node_modules/fastq": { 1513 | "version": "1.15.0", 1514 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1515 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1516 | "dev": true, 1517 | "dependencies": { 1518 | "reusify": "^1.0.4" 1519 | } 1520 | }, 1521 | "node_modules/file-entry-cache": { 1522 | "version": "6.0.1", 1523 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1524 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1525 | "dev": true, 1526 | "dependencies": { 1527 | "flat-cache": "^3.0.4" 1528 | }, 1529 | "engines": { 1530 | "node": "^10.12.0 || >=12.0.0" 1531 | } 1532 | }, 1533 | "node_modules/fill-range": { 1534 | "version": "7.0.1", 1535 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1536 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1537 | "dev": true, 1538 | "dependencies": { 1539 | "to-regex-range": "^5.0.1" 1540 | }, 1541 | "engines": { 1542 | "node": ">=8" 1543 | } 1544 | }, 1545 | "node_modules/find-up": { 1546 | "version": "5.0.0", 1547 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1548 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1549 | "dev": true, 1550 | "dependencies": { 1551 | "locate-path": "^6.0.0", 1552 | "path-exists": "^4.0.0" 1553 | }, 1554 | "engines": { 1555 | "node": ">=10" 1556 | }, 1557 | "funding": { 1558 | "url": "https://github.com/sponsors/sindresorhus" 1559 | } 1560 | }, 1561 | "node_modules/flat-cache": { 1562 | "version": "3.0.4", 1563 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 1564 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 1565 | "dev": true, 1566 | "dependencies": { 1567 | "flatted": "^3.1.0", 1568 | "rimraf": "^3.0.2" 1569 | }, 1570 | "engines": { 1571 | "node": "^10.12.0 || >=12.0.0" 1572 | } 1573 | }, 1574 | "node_modules/flatted": { 1575 | "version": "3.2.7", 1576 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", 1577 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", 1578 | "dev": true 1579 | }, 1580 | "node_modules/fs-minipass": { 1581 | "version": "2.1.0", 1582 | "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", 1583 | "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", 1584 | "dependencies": { 1585 | "minipass": "^3.0.0" 1586 | }, 1587 | "engines": { 1588 | "node": ">= 8" 1589 | } 1590 | }, 1591 | "node_modules/fs-minipass/node_modules/minipass": { 1592 | "version": "3.3.6", 1593 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 1594 | "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 1595 | "dependencies": { 1596 | "yallist": "^4.0.0" 1597 | }, 1598 | "engines": { 1599 | "node": ">=8" 1600 | } 1601 | }, 1602 | "node_modules/fs.realpath": { 1603 | "version": "1.0.0", 1604 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1605 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" 1606 | }, 1607 | "node_modules/fsevents": { 1608 | "version": "2.3.2", 1609 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 1610 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 1611 | "dev": true, 1612 | "hasInstallScript": true, 1613 | "optional": true, 1614 | "os": [ 1615 | "darwin" 1616 | ], 1617 | "engines": { 1618 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1619 | } 1620 | }, 1621 | "node_modules/gauge": { 1622 | "version": "3.0.2", 1623 | "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", 1624 | "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", 1625 | "dependencies": { 1626 | "aproba": "^1.0.3 || ^2.0.0", 1627 | "color-support": "^1.1.2", 1628 | "console-control-strings": "^1.0.0", 1629 | "has-unicode": "^2.0.1", 1630 | "object-assign": "^4.1.1", 1631 | "signal-exit": "^3.0.0", 1632 | "string-width": "^4.2.3", 1633 | "strip-ansi": "^6.0.1", 1634 | "wide-align": "^1.1.2" 1635 | }, 1636 | "engines": { 1637 | "node": ">=10" 1638 | } 1639 | }, 1640 | "node_modules/gaxios": { 1641 | "version": "5.1.2", 1642 | "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-5.1.2.tgz", 1643 | "integrity": "sha512-mPyw3qQq6qoHWTe27CrzhSj7XYKVStTGrpP92a91FfogBWOd9BMW8GT5yS5WhEYGw02AgB1fVQVSAO+JKiQP0w==", 1644 | "dependencies": { 1645 | "extend": "^3.0.2", 1646 | "https-proxy-agent": "^5.0.0", 1647 | "is-stream": "^2.0.0", 1648 | "node-fetch": "^2.6.9" 1649 | }, 1650 | "engines": { 1651 | "node": ">=12" 1652 | } 1653 | }, 1654 | "node_modules/gcp-metadata": { 1655 | "version": "5.3.0", 1656 | "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-5.3.0.tgz", 1657 | "integrity": "sha512-FNTkdNEnBdlqF2oatizolQqNANMrcqJt6AAYt99B3y1aLLC8Hc5IOBb+ZnnzllodEEf6xMBp6wRcBbc16fa65w==", 1658 | "dependencies": { 1659 | "gaxios": "^5.0.0", 1660 | "json-bigint": "^1.0.0" 1661 | }, 1662 | "engines": { 1663 | "node": ">=12" 1664 | } 1665 | }, 1666 | "node_modules/glob": { 1667 | "version": "8.1.0", 1668 | "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", 1669 | "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", 1670 | "dev": true, 1671 | "dependencies": { 1672 | "fs.realpath": "^1.0.0", 1673 | "inflight": "^1.0.4", 1674 | "inherits": "2", 1675 | "minimatch": "^5.0.1", 1676 | "once": "^1.3.0" 1677 | }, 1678 | "engines": { 1679 | "node": ">=12" 1680 | }, 1681 | "funding": { 1682 | "url": "https://github.com/sponsors/isaacs" 1683 | } 1684 | }, 1685 | "node_modules/glob-parent": { 1686 | "version": "5.1.2", 1687 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1688 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1689 | "dev": true, 1690 | "dependencies": { 1691 | "is-glob": "^4.0.1" 1692 | }, 1693 | "engines": { 1694 | "node": ">= 6" 1695 | } 1696 | }, 1697 | "node_modules/glob/node_modules/brace-expansion": { 1698 | "version": "2.0.1", 1699 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1700 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1701 | "dev": true, 1702 | "dependencies": { 1703 | "balanced-match": "^1.0.0" 1704 | } 1705 | }, 1706 | "node_modules/glob/node_modules/minimatch": { 1707 | "version": "5.1.6", 1708 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", 1709 | "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", 1710 | "dev": true, 1711 | "dependencies": { 1712 | "brace-expansion": "^2.0.1" 1713 | }, 1714 | "engines": { 1715 | "node": ">=10" 1716 | } 1717 | }, 1718 | "node_modules/globals": { 1719 | "version": "13.20.0", 1720 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", 1721 | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", 1722 | "dev": true, 1723 | "dependencies": { 1724 | "type-fest": "^0.20.2" 1725 | }, 1726 | "engines": { 1727 | "node": ">=8" 1728 | }, 1729 | "funding": { 1730 | "url": "https://github.com/sponsors/sindresorhus" 1731 | } 1732 | }, 1733 | "node_modules/globby": { 1734 | "version": "11.1.0", 1735 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 1736 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 1737 | "dev": true, 1738 | "dependencies": { 1739 | "array-union": "^2.1.0", 1740 | "dir-glob": "^3.0.1", 1741 | "fast-glob": "^3.2.9", 1742 | "ignore": "^5.2.0", 1743 | "merge2": "^1.4.1", 1744 | "slash": "^3.0.0" 1745 | }, 1746 | "engines": { 1747 | "node": ">=10" 1748 | }, 1749 | "funding": { 1750 | "url": "https://github.com/sponsors/sindresorhus" 1751 | } 1752 | }, 1753 | "node_modules/google-auth-library": { 1754 | "version": "8.9.0", 1755 | "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-8.9.0.tgz", 1756 | "integrity": "sha512-f7aQCJODJFmYWN6PeNKzgvy9LI2tYmXnzpNDHEjG5sDNPgGb2FXQyTBnXeSH+PAtpKESFD+LmHw3Ox3mN7e1Fg==", 1757 | "dependencies": { 1758 | "arrify": "^2.0.0", 1759 | "base64-js": "^1.3.0", 1760 | "ecdsa-sig-formatter": "^1.0.11", 1761 | "fast-text-encoding": "^1.0.0", 1762 | "gaxios": "^5.0.0", 1763 | "gcp-metadata": "^5.3.0", 1764 | "gtoken": "^6.1.0", 1765 | "jws": "^4.0.0", 1766 | "lru-cache": "^6.0.0" 1767 | }, 1768 | "engines": { 1769 | "node": ">=12" 1770 | } 1771 | }, 1772 | "node_modules/google-p12-pem": { 1773 | "version": "4.0.1", 1774 | "resolved": "https://registry.npmjs.org/google-p12-pem/-/google-p12-pem-4.0.1.tgz", 1775 | "integrity": "sha512-WPkN4yGtz05WZ5EhtlxNDWPhC4JIic6G8ePitwUWy4l+XPVYec+a0j0Ts47PDtW59y3RwAhUd9/h9ZZ63px6RQ==", 1776 | "dependencies": { 1777 | "node-forge": "^1.3.1" 1778 | }, 1779 | "bin": { 1780 | "gp12-pem": "build/src/bin/gp12-pem.js" 1781 | }, 1782 | "engines": { 1783 | "node": ">=12.0.0" 1784 | } 1785 | }, 1786 | "node_modules/graceful-fs": { 1787 | "version": "4.2.11", 1788 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1789 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1790 | "dev": true 1791 | }, 1792 | "node_modules/grapheme-splitter": { 1793 | "version": "1.0.4", 1794 | "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", 1795 | "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", 1796 | "dev": true 1797 | }, 1798 | "node_modules/graphemer": { 1799 | "version": "1.4.0", 1800 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1801 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1802 | "dev": true 1803 | }, 1804 | "node_modules/gtoken": { 1805 | "version": "6.1.2", 1806 | "resolved": "https://registry.npmjs.org/gtoken/-/gtoken-6.1.2.tgz", 1807 | "integrity": "sha512-4ccGpzz7YAr7lxrT2neugmXQ3hP9ho2gcaityLVkiUecAiwiy60Ii8gRbZeOsXV19fYaRjgBSshs8kXw+NKCPQ==", 1808 | "dependencies": { 1809 | "gaxios": "^5.0.1", 1810 | "google-p12-pem": "^4.0.0", 1811 | "jws": "^4.0.0" 1812 | }, 1813 | "engines": { 1814 | "node": ">=12.0.0" 1815 | } 1816 | }, 1817 | "node_modules/has-flag": { 1818 | "version": "4.0.0", 1819 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1820 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1821 | "dev": true, 1822 | "engines": { 1823 | "node": ">=8" 1824 | } 1825 | }, 1826 | "node_modules/has-unicode": { 1827 | "version": "2.0.1", 1828 | "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", 1829 | "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" 1830 | }, 1831 | "node_modules/https-proxy-agent": { 1832 | "version": "5.0.1", 1833 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", 1834 | "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", 1835 | "dependencies": { 1836 | "agent-base": "6", 1837 | "debug": "4" 1838 | }, 1839 | "engines": { 1840 | "node": ">= 6" 1841 | } 1842 | }, 1843 | "node_modules/ignore": { 1844 | "version": "5.2.4", 1845 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", 1846 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", 1847 | "dev": true, 1848 | "engines": { 1849 | "node": ">= 4" 1850 | } 1851 | }, 1852 | "node_modules/ignore-walk": { 1853 | "version": "5.0.1", 1854 | "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-5.0.1.tgz", 1855 | "integrity": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==", 1856 | "dev": true, 1857 | "dependencies": { 1858 | "minimatch": "^5.0.1" 1859 | }, 1860 | "engines": { 1861 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 1862 | } 1863 | }, 1864 | "node_modules/ignore-walk/node_modules/brace-expansion": { 1865 | "version": "2.0.1", 1866 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1867 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1868 | "dev": true, 1869 | "dependencies": { 1870 | "balanced-match": "^1.0.0" 1871 | } 1872 | }, 1873 | "node_modules/ignore-walk/node_modules/minimatch": { 1874 | "version": "5.1.6", 1875 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", 1876 | "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", 1877 | "dev": true, 1878 | "dependencies": { 1879 | "brace-expansion": "^2.0.1" 1880 | }, 1881 | "engines": { 1882 | "node": ">=10" 1883 | } 1884 | }, 1885 | "node_modules/import-fresh": { 1886 | "version": "3.3.0", 1887 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1888 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1889 | "dev": true, 1890 | "dependencies": { 1891 | "parent-module": "^1.0.0", 1892 | "resolve-from": "^4.0.0" 1893 | }, 1894 | "engines": { 1895 | "node": ">=6" 1896 | }, 1897 | "funding": { 1898 | "url": "https://github.com/sponsors/sindresorhus" 1899 | } 1900 | }, 1901 | "node_modules/import-meta-resolve": { 1902 | "version": "3.0.0", 1903 | "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-3.0.0.tgz", 1904 | "integrity": "sha512-4IwhLhNNA8yy445rPjD/lWh++7hMDOml2eHtd58eG7h+qK3EryMuuRbsHGPikCoAgIkkDnckKfWSk2iDla/ejg==", 1905 | "dev": true, 1906 | "funding": { 1907 | "type": "github", 1908 | "url": "https://github.com/sponsors/wooorm" 1909 | } 1910 | }, 1911 | "node_modules/imurmurhash": { 1912 | "version": "0.1.4", 1913 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1914 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1915 | "dev": true, 1916 | "engines": { 1917 | "node": ">=0.8.19" 1918 | } 1919 | }, 1920 | "node_modules/inflight": { 1921 | "version": "1.0.6", 1922 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1923 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1924 | "dependencies": { 1925 | "once": "^1.3.0", 1926 | "wrappy": "1" 1927 | } 1928 | }, 1929 | "node_modules/inherits": { 1930 | "version": "2.0.4", 1931 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1932 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 1933 | }, 1934 | "node_modules/is-binary-path": { 1935 | "version": "2.1.0", 1936 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 1937 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 1938 | "dev": true, 1939 | "dependencies": { 1940 | "binary-extensions": "^2.0.0" 1941 | }, 1942 | "engines": { 1943 | "node": ">=8" 1944 | } 1945 | }, 1946 | "node_modules/is-extglob": { 1947 | "version": "2.1.1", 1948 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1949 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1950 | "dev": true, 1951 | "engines": { 1952 | "node": ">=0.10.0" 1953 | } 1954 | }, 1955 | "node_modules/is-fullwidth-code-point": { 1956 | "version": "3.0.0", 1957 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1958 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1959 | "engines": { 1960 | "node": ">=8" 1961 | } 1962 | }, 1963 | "node_modules/is-glob": { 1964 | "version": "4.0.3", 1965 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1966 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1967 | "dev": true, 1968 | "dependencies": { 1969 | "is-extglob": "^2.1.1" 1970 | }, 1971 | "engines": { 1972 | "node": ">=0.10.0" 1973 | } 1974 | }, 1975 | "node_modules/is-number": { 1976 | "version": "7.0.0", 1977 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1978 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1979 | "dev": true, 1980 | "engines": { 1981 | "node": ">=0.12.0" 1982 | } 1983 | }, 1984 | "node_modules/is-path-inside": { 1985 | "version": "3.0.3", 1986 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 1987 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 1988 | "dev": true, 1989 | "engines": { 1990 | "node": ">=8" 1991 | } 1992 | }, 1993 | "node_modules/is-reference": { 1994 | "version": "3.0.1", 1995 | "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz", 1996 | "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", 1997 | "dev": true, 1998 | "dependencies": { 1999 | "@types/estree": "*" 2000 | } 2001 | }, 2002 | "node_modules/is-stream": { 2003 | "version": "2.0.1", 2004 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 2005 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 2006 | "engines": { 2007 | "node": ">=8" 2008 | }, 2009 | "funding": { 2010 | "url": "https://github.com/sponsors/sindresorhus" 2011 | } 2012 | }, 2013 | "node_modules/isexe": { 2014 | "version": "2.0.0", 2015 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2016 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2017 | "dev": true 2018 | }, 2019 | "node_modules/js-yaml": { 2020 | "version": "4.1.0", 2021 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2022 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2023 | "dev": true, 2024 | "dependencies": { 2025 | "argparse": "^2.0.1" 2026 | }, 2027 | "bin": { 2028 | "js-yaml": "bin/js-yaml.js" 2029 | } 2030 | }, 2031 | "node_modules/json-bigint": { 2032 | "version": "1.0.0", 2033 | "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz", 2034 | "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==", 2035 | "dependencies": { 2036 | "bignumber.js": "^9.0.0" 2037 | } 2038 | }, 2039 | "node_modules/json-schema-traverse": { 2040 | "version": "0.4.1", 2041 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2042 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2043 | "dev": true 2044 | }, 2045 | "node_modules/json-stable-stringify-without-jsonify": { 2046 | "version": "1.0.1", 2047 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2048 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2049 | "dev": true 2050 | }, 2051 | "node_modules/jwa": { 2052 | "version": "2.0.0", 2053 | "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.0.tgz", 2054 | "integrity": "sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==", 2055 | "dependencies": { 2056 | "buffer-equal-constant-time": "1.0.1", 2057 | "ecdsa-sig-formatter": "1.0.11", 2058 | "safe-buffer": "^5.0.1" 2059 | } 2060 | }, 2061 | "node_modules/jws": { 2062 | "version": "4.0.0", 2063 | "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.0.tgz", 2064 | "integrity": "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==", 2065 | "dependencies": { 2066 | "jwa": "^2.0.0", 2067 | "safe-buffer": "^5.0.1" 2068 | } 2069 | }, 2070 | "node_modules/kleur": { 2071 | "version": "4.1.5", 2072 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", 2073 | "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", 2074 | "dev": true, 2075 | "engines": { 2076 | "node": ">=6" 2077 | } 2078 | }, 2079 | "node_modules/known-css-properties": { 2080 | "version": "0.27.0", 2081 | "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.27.0.tgz", 2082 | "integrity": "sha512-uMCj6+hZYDoffuvAJjFAPz56E9uoowFHmTkqRtRq5WyC5Q6Cu/fTZKNQpX/RbzChBYLLl3lo8CjFZBAZXq9qFg==", 2083 | "dev": true 2084 | }, 2085 | "node_modules/levn": { 2086 | "version": "0.4.1", 2087 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2088 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2089 | "dev": true, 2090 | "dependencies": { 2091 | "prelude-ls": "^1.2.1", 2092 | "type-check": "~0.4.0" 2093 | }, 2094 | "engines": { 2095 | "node": ">= 0.8.0" 2096 | } 2097 | }, 2098 | "node_modules/lilconfig": { 2099 | "version": "2.1.0", 2100 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 2101 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 2102 | "dev": true, 2103 | "engines": { 2104 | "node": ">=10" 2105 | } 2106 | }, 2107 | "node_modules/locate-character": { 2108 | "version": "3.0.0", 2109 | "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", 2110 | "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", 2111 | "dev": true 2112 | }, 2113 | "node_modules/locate-path": { 2114 | "version": "6.0.0", 2115 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2116 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2117 | "dev": true, 2118 | "dependencies": { 2119 | "p-locate": "^5.0.0" 2120 | }, 2121 | "engines": { 2122 | "node": ">=10" 2123 | }, 2124 | "funding": { 2125 | "url": "https://github.com/sponsors/sindresorhus" 2126 | } 2127 | }, 2128 | "node_modules/lodash.merge": { 2129 | "version": "4.6.2", 2130 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2131 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2132 | "dev": true 2133 | }, 2134 | "node_modules/lower-case": { 2135 | "version": "2.0.2", 2136 | "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", 2137 | "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", 2138 | "dev": true, 2139 | "dependencies": { 2140 | "tslib": "^2.0.3" 2141 | } 2142 | }, 2143 | "node_modules/lru-cache": { 2144 | "version": "6.0.0", 2145 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2146 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2147 | "dependencies": { 2148 | "yallist": "^4.0.0" 2149 | }, 2150 | "engines": { 2151 | "node": ">=10" 2152 | } 2153 | }, 2154 | "node_modules/magic-string": { 2155 | "version": "0.30.1", 2156 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.1.tgz", 2157 | "integrity": "sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==", 2158 | "dev": true, 2159 | "dependencies": { 2160 | "@jridgewell/sourcemap-codec": "^1.4.15" 2161 | }, 2162 | "engines": { 2163 | "node": ">=12" 2164 | } 2165 | }, 2166 | "node_modules/make-dir": { 2167 | "version": "3.1.0", 2168 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", 2169 | "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", 2170 | "dependencies": { 2171 | "semver": "^6.0.0" 2172 | }, 2173 | "engines": { 2174 | "node": ">=8" 2175 | }, 2176 | "funding": { 2177 | "url": "https://github.com/sponsors/sindresorhus" 2178 | } 2179 | }, 2180 | "node_modules/make-dir/node_modules/semver": { 2181 | "version": "6.3.0", 2182 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 2183 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 2184 | "bin": { 2185 | "semver": "bin/semver.js" 2186 | } 2187 | }, 2188 | "node_modules/mdn-data": { 2189 | "version": "2.0.30", 2190 | "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", 2191 | "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", 2192 | "dev": true 2193 | }, 2194 | "node_modules/merge2": { 2195 | "version": "1.4.1", 2196 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2197 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2198 | "dev": true, 2199 | "engines": { 2200 | "node": ">= 8" 2201 | } 2202 | }, 2203 | "node_modules/micromatch": { 2204 | "version": "4.0.5", 2205 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 2206 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 2207 | "dev": true, 2208 | "dependencies": { 2209 | "braces": "^3.0.2", 2210 | "picomatch": "^2.3.1" 2211 | }, 2212 | "engines": { 2213 | "node": ">=8.6" 2214 | } 2215 | }, 2216 | "node_modules/mime": { 2217 | "version": "3.0.0", 2218 | "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", 2219 | "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", 2220 | "dev": true, 2221 | "bin": { 2222 | "mime": "cli.js" 2223 | }, 2224 | "engines": { 2225 | "node": ">=10.0.0" 2226 | } 2227 | }, 2228 | "node_modules/min-indent": { 2229 | "version": "1.0.1", 2230 | "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", 2231 | "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", 2232 | "dev": true, 2233 | "engines": { 2234 | "node": ">=4" 2235 | } 2236 | }, 2237 | "node_modules/minimatch": { 2238 | "version": "3.1.2", 2239 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2240 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2241 | "dependencies": { 2242 | "brace-expansion": "^1.1.7" 2243 | }, 2244 | "engines": { 2245 | "node": "*" 2246 | } 2247 | }, 2248 | "node_modules/minimist": { 2249 | "version": "1.2.8", 2250 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2251 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 2252 | "dev": true, 2253 | "funding": { 2254 | "url": "https://github.com/sponsors/ljharb" 2255 | } 2256 | }, 2257 | "node_modules/minipass": { 2258 | "version": "5.0.0", 2259 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", 2260 | "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", 2261 | "engines": { 2262 | "node": ">=8" 2263 | } 2264 | }, 2265 | "node_modules/minizlib": { 2266 | "version": "2.1.2", 2267 | "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", 2268 | "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", 2269 | "dependencies": { 2270 | "minipass": "^3.0.0", 2271 | "yallist": "^4.0.0" 2272 | }, 2273 | "engines": { 2274 | "node": ">= 8" 2275 | } 2276 | }, 2277 | "node_modules/minizlib/node_modules/minipass": { 2278 | "version": "3.3.6", 2279 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 2280 | "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 2281 | "dependencies": { 2282 | "yallist": "^4.0.0" 2283 | }, 2284 | "engines": { 2285 | "node": ">=8" 2286 | } 2287 | }, 2288 | "node_modules/mkdirp": { 2289 | "version": "0.5.6", 2290 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", 2291 | "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", 2292 | "dev": true, 2293 | "dependencies": { 2294 | "minimist": "^1.2.6" 2295 | }, 2296 | "bin": { 2297 | "mkdirp": "bin/cmd.js" 2298 | } 2299 | }, 2300 | "node_modules/mri": { 2301 | "version": "1.2.0", 2302 | "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", 2303 | "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", 2304 | "dev": true, 2305 | "engines": { 2306 | "node": ">=4" 2307 | } 2308 | }, 2309 | "node_modules/mrmime": { 2310 | "version": "1.0.1", 2311 | "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", 2312 | "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", 2313 | "dev": true, 2314 | "engines": { 2315 | "node": ">=10" 2316 | } 2317 | }, 2318 | "node_modules/ms": { 2319 | "version": "2.1.2", 2320 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2321 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2322 | }, 2323 | "node_modules/nanoid": { 2324 | "version": "4.0.2", 2325 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-4.0.2.tgz", 2326 | "integrity": "sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw==", 2327 | "funding": [ 2328 | { 2329 | "type": "github", 2330 | "url": "https://github.com/sponsors/ai" 2331 | } 2332 | ], 2333 | "bin": { 2334 | "nanoid": "bin/nanoid.js" 2335 | }, 2336 | "engines": { 2337 | "node": "^14 || ^16 || >=18" 2338 | } 2339 | }, 2340 | "node_modules/natural-compare": { 2341 | "version": "1.4.0", 2342 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2343 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2344 | "dev": true 2345 | }, 2346 | "node_modules/natural-compare-lite": { 2347 | "version": "1.4.0", 2348 | "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", 2349 | "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", 2350 | "dev": true 2351 | }, 2352 | "node_modules/no-case": { 2353 | "version": "3.0.4", 2354 | "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", 2355 | "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", 2356 | "dev": true, 2357 | "dependencies": { 2358 | "lower-case": "^2.0.2", 2359 | "tslib": "^2.0.3" 2360 | } 2361 | }, 2362 | "node_modules/node-addon-api": { 2363 | "version": "5.1.0", 2364 | "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", 2365 | "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" 2366 | }, 2367 | "node_modules/node-fetch": { 2368 | "version": "2.6.12", 2369 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz", 2370 | "integrity": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==", 2371 | "dependencies": { 2372 | "whatwg-url": "^5.0.0" 2373 | }, 2374 | "engines": { 2375 | "node": "4.x || >=6.0.0" 2376 | }, 2377 | "peerDependencies": { 2378 | "encoding": "^0.1.0" 2379 | }, 2380 | "peerDependenciesMeta": { 2381 | "encoding": { 2382 | "optional": true 2383 | } 2384 | } 2385 | }, 2386 | "node_modules/node-forge": { 2387 | "version": "1.3.1", 2388 | "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", 2389 | "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", 2390 | "engines": { 2391 | "node": ">= 6.13.0" 2392 | } 2393 | }, 2394 | "node_modules/nopt": { 2395 | "version": "5.0.0", 2396 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", 2397 | "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", 2398 | "dependencies": { 2399 | "abbrev": "1" 2400 | }, 2401 | "bin": { 2402 | "nopt": "bin/nopt.js" 2403 | }, 2404 | "engines": { 2405 | "node": ">=6" 2406 | } 2407 | }, 2408 | "node_modules/normalize-path": { 2409 | "version": "3.0.0", 2410 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2411 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2412 | "dev": true, 2413 | "engines": { 2414 | "node": ">=0.10.0" 2415 | } 2416 | }, 2417 | "node_modules/npm-bundled": { 2418 | "version": "2.0.1", 2419 | "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-2.0.1.tgz", 2420 | "integrity": "sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==", 2421 | "dev": true, 2422 | "dependencies": { 2423 | "npm-normalize-package-bin": "^2.0.0" 2424 | }, 2425 | "engines": { 2426 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 2427 | } 2428 | }, 2429 | "node_modules/npm-normalize-package-bin": { 2430 | "version": "2.0.0", 2431 | "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", 2432 | "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", 2433 | "dev": true, 2434 | "engines": { 2435 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 2436 | } 2437 | }, 2438 | "node_modules/npm-packlist": { 2439 | "version": "5.1.3", 2440 | "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.1.3.tgz", 2441 | "integrity": "sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==", 2442 | "dev": true, 2443 | "dependencies": { 2444 | "glob": "^8.0.1", 2445 | "ignore-walk": "^5.0.1", 2446 | "npm-bundled": "^2.0.0", 2447 | "npm-normalize-package-bin": "^2.0.0" 2448 | }, 2449 | "bin": { 2450 | "npm-packlist": "bin/index.js" 2451 | }, 2452 | "engines": { 2453 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 2454 | } 2455 | }, 2456 | "node_modules/npmlog": { 2457 | "version": "5.0.1", 2458 | "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", 2459 | "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", 2460 | "dependencies": { 2461 | "are-we-there-yet": "^2.0.0", 2462 | "console-control-strings": "^1.1.0", 2463 | "gauge": "^3.0.0", 2464 | "set-blocking": "^2.0.0" 2465 | } 2466 | }, 2467 | "node_modules/object-assign": { 2468 | "version": "4.1.1", 2469 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2470 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 2471 | "engines": { 2472 | "node": ">=0.10.0" 2473 | } 2474 | }, 2475 | "node_modules/obuf": { 2476 | "version": "1.1.2", 2477 | "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", 2478 | "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", 2479 | "dev": true 2480 | }, 2481 | "node_modules/once": { 2482 | "version": "1.4.0", 2483 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2484 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2485 | "dependencies": { 2486 | "wrappy": "1" 2487 | } 2488 | }, 2489 | "node_modules/optionator": { 2490 | "version": "0.9.3", 2491 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 2492 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 2493 | "dev": true, 2494 | "dependencies": { 2495 | "@aashutoshrathi/word-wrap": "^1.2.3", 2496 | "deep-is": "^0.1.3", 2497 | "fast-levenshtein": "^2.0.6", 2498 | "levn": "^0.4.1", 2499 | "prelude-ls": "^1.2.1", 2500 | "type-check": "^0.4.0" 2501 | }, 2502 | "engines": { 2503 | "node": ">= 0.8.0" 2504 | } 2505 | }, 2506 | "node_modules/p-limit": { 2507 | "version": "3.1.0", 2508 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2509 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2510 | "dev": true, 2511 | "dependencies": { 2512 | "yocto-queue": "^0.1.0" 2513 | }, 2514 | "engines": { 2515 | "node": ">=10" 2516 | }, 2517 | "funding": { 2518 | "url": "https://github.com/sponsors/sindresorhus" 2519 | } 2520 | }, 2521 | "node_modules/p-locate": { 2522 | "version": "5.0.0", 2523 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2524 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2525 | "dev": true, 2526 | "dependencies": { 2527 | "p-limit": "^3.0.2" 2528 | }, 2529 | "engines": { 2530 | "node": ">=10" 2531 | }, 2532 | "funding": { 2533 | "url": "https://github.com/sponsors/sindresorhus" 2534 | } 2535 | }, 2536 | "node_modules/packet-reader": { 2537 | "version": "1.0.0", 2538 | "resolved": "https://registry.npmjs.org/packet-reader/-/packet-reader-1.0.0.tgz", 2539 | "integrity": "sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ==" 2540 | }, 2541 | "node_modules/parent-module": { 2542 | "version": "1.0.1", 2543 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2544 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2545 | "dev": true, 2546 | "dependencies": { 2547 | "callsites": "^3.0.0" 2548 | }, 2549 | "engines": { 2550 | "node": ">=6" 2551 | } 2552 | }, 2553 | "node_modules/pascal-case": { 2554 | "version": "3.1.2", 2555 | "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", 2556 | "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", 2557 | "dev": true, 2558 | "dependencies": { 2559 | "no-case": "^3.0.4", 2560 | "tslib": "^2.0.3" 2561 | } 2562 | }, 2563 | "node_modules/path-exists": { 2564 | "version": "4.0.0", 2565 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2566 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2567 | "dev": true, 2568 | "engines": { 2569 | "node": ">=8" 2570 | } 2571 | }, 2572 | "node_modules/path-is-absolute": { 2573 | "version": "1.0.1", 2574 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2575 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2576 | "engines": { 2577 | "node": ">=0.10.0" 2578 | } 2579 | }, 2580 | "node_modules/path-key": { 2581 | "version": "3.1.1", 2582 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2583 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2584 | "dev": true, 2585 | "engines": { 2586 | "node": ">=8" 2587 | } 2588 | }, 2589 | "node_modules/path-type": { 2590 | "version": "4.0.0", 2591 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 2592 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 2593 | "dev": true, 2594 | "engines": { 2595 | "node": ">=8" 2596 | } 2597 | }, 2598 | "node_modules/periscopic": { 2599 | "version": "3.1.0", 2600 | "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", 2601 | "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", 2602 | "dev": true, 2603 | "dependencies": { 2604 | "@types/estree": "^1.0.0", 2605 | "estree-walker": "^3.0.0", 2606 | "is-reference": "^3.0.0" 2607 | } 2608 | }, 2609 | "node_modules/pg": { 2610 | "version": "8.11.1", 2611 | "resolved": "https://registry.npmjs.org/pg/-/pg-8.11.1.tgz", 2612 | "integrity": "sha512-utdq2obft07MxaDg0zBJI+l/M3mBRfIpEN3iSemsz0G5F2/VXx+XzqF4oxrbIZXQxt2AZzIUzyVg/YM6xOP/WQ==", 2613 | "dependencies": { 2614 | "buffer-writer": "2.0.0", 2615 | "packet-reader": "1.0.0", 2616 | "pg-connection-string": "^2.6.1", 2617 | "pg-pool": "^3.6.1", 2618 | "pg-protocol": "^1.6.0", 2619 | "pg-types": "^2.1.0", 2620 | "pgpass": "1.x" 2621 | }, 2622 | "engines": { 2623 | "node": ">= 8.0.0" 2624 | }, 2625 | "optionalDependencies": { 2626 | "pg-cloudflare": "^1.1.1" 2627 | }, 2628 | "peerDependencies": { 2629 | "pg-native": ">=3.0.1" 2630 | }, 2631 | "peerDependenciesMeta": { 2632 | "pg-native": { 2633 | "optional": true 2634 | } 2635 | } 2636 | }, 2637 | "node_modules/pg-cloudflare": { 2638 | "version": "1.1.1", 2639 | "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz", 2640 | "integrity": "sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==", 2641 | "optional": true 2642 | }, 2643 | "node_modules/pg-connection-string": { 2644 | "version": "2.6.1", 2645 | "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.1.tgz", 2646 | "integrity": "sha512-w6ZzNu6oMmIzEAYVw+RLK0+nqHPt8K3ZnknKi+g48Ak2pr3dtljJW3o+D/n2zzCG07Zoe9VOX3aiKpj+BN0pjg==" 2647 | }, 2648 | "node_modules/pg-int8": { 2649 | "version": "1.0.1", 2650 | "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", 2651 | "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", 2652 | "engines": { 2653 | "node": ">=4.0.0" 2654 | } 2655 | }, 2656 | "node_modules/pg-numeric": { 2657 | "version": "1.0.2", 2658 | "resolved": "https://registry.npmjs.org/pg-numeric/-/pg-numeric-1.0.2.tgz", 2659 | "integrity": "sha512-BM/Thnrw5jm2kKLE5uJkXqqExRUY/toLHda65XgFTBTFYZyopbKjBe29Ii3RbkvlsMoFwD+tHeGaCjjv0gHlyw==", 2660 | "dev": true, 2661 | "engines": { 2662 | "node": ">=4" 2663 | } 2664 | }, 2665 | "node_modules/pg-pool": { 2666 | "version": "3.6.1", 2667 | "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.1.tgz", 2668 | "integrity": "sha512-jizsIzhkIitxCGfPRzJn1ZdcosIt3pz9Sh3V01fm1vZnbnCMgmGl5wvGGdNN2EL9Rmb0EcFoCkixH4Pu+sP9Og==", 2669 | "peerDependencies": { 2670 | "pg": ">=8.0" 2671 | } 2672 | }, 2673 | "node_modules/pg-protocol": { 2674 | "version": "1.6.0", 2675 | "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.0.tgz", 2676 | "integrity": "sha512-M+PDm637OY5WM307051+bsDia5Xej6d9IR4GwJse1qA1DIhiKlksvrneZOYQq42OM+spubpcNYEo2FcKQrDk+Q==" 2677 | }, 2678 | "node_modules/pg-types": { 2679 | "version": "4.0.1", 2680 | "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-4.0.1.tgz", 2681 | "integrity": "sha512-hRCSDuLII9/LE3smys1hRHcu5QGcLs9ggT7I/TCs0IE+2Eesxi9+9RWAAwZ0yaGjxoWICF/YHLOEjydGujoJ+g==", 2682 | "dev": true, 2683 | "dependencies": { 2684 | "pg-int8": "1.0.1", 2685 | "pg-numeric": "1.0.2", 2686 | "postgres-array": "~3.0.1", 2687 | "postgres-bytea": "~3.0.0", 2688 | "postgres-date": "~2.0.1", 2689 | "postgres-interval": "^3.0.0", 2690 | "postgres-range": "^1.1.1" 2691 | }, 2692 | "engines": { 2693 | "node": ">=10" 2694 | } 2695 | }, 2696 | "node_modules/pg/node_modules/pg-types": { 2697 | "version": "2.2.0", 2698 | "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", 2699 | "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", 2700 | "dependencies": { 2701 | "pg-int8": "1.0.1", 2702 | "postgres-array": "~2.0.0", 2703 | "postgres-bytea": "~1.0.0", 2704 | "postgres-date": "~1.0.4", 2705 | "postgres-interval": "^1.1.0" 2706 | }, 2707 | "engines": { 2708 | "node": ">=4" 2709 | } 2710 | }, 2711 | "node_modules/pg/node_modules/postgres-array": { 2712 | "version": "2.0.0", 2713 | "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", 2714 | "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", 2715 | "engines": { 2716 | "node": ">=4" 2717 | } 2718 | }, 2719 | "node_modules/pg/node_modules/postgres-bytea": { 2720 | "version": "1.0.0", 2721 | "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", 2722 | "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", 2723 | "engines": { 2724 | "node": ">=0.10.0" 2725 | } 2726 | }, 2727 | "node_modules/pg/node_modules/postgres-date": { 2728 | "version": "1.0.7", 2729 | "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", 2730 | "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", 2731 | "engines": { 2732 | "node": ">=0.10.0" 2733 | } 2734 | }, 2735 | "node_modules/pg/node_modules/postgres-interval": { 2736 | "version": "1.2.0", 2737 | "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", 2738 | "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", 2739 | "dependencies": { 2740 | "xtend": "^4.0.0" 2741 | }, 2742 | "engines": { 2743 | "node": ">=0.10.0" 2744 | } 2745 | }, 2746 | "node_modules/pgpass": { 2747 | "version": "1.0.5", 2748 | "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", 2749 | "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", 2750 | "dependencies": { 2751 | "split2": "^4.1.0" 2752 | } 2753 | }, 2754 | "node_modules/picocolors": { 2755 | "version": "1.0.0", 2756 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 2757 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", 2758 | "dev": true 2759 | }, 2760 | "node_modules/picomatch": { 2761 | "version": "2.3.1", 2762 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2763 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2764 | "dev": true, 2765 | "engines": { 2766 | "node": ">=8.6" 2767 | }, 2768 | "funding": { 2769 | "url": "https://github.com/sponsors/jonschlinkert" 2770 | } 2771 | }, 2772 | "node_modules/postcss": { 2773 | "version": "8.4.24", 2774 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", 2775 | "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", 2776 | "dev": true, 2777 | "funding": [ 2778 | { 2779 | "type": "opencollective", 2780 | "url": "https://opencollective.com/postcss/" 2781 | }, 2782 | { 2783 | "type": "tidelift", 2784 | "url": "https://tidelift.com/funding/github/npm/postcss" 2785 | }, 2786 | { 2787 | "type": "github", 2788 | "url": "https://github.com/sponsors/ai" 2789 | } 2790 | ], 2791 | "dependencies": { 2792 | "nanoid": "^3.3.6", 2793 | "picocolors": "^1.0.0", 2794 | "source-map-js": "^1.0.2" 2795 | }, 2796 | "engines": { 2797 | "node": "^10 || ^12 || >=14" 2798 | } 2799 | }, 2800 | "node_modules/postcss-load-config": { 2801 | "version": "3.1.4", 2802 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", 2803 | "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", 2804 | "dev": true, 2805 | "dependencies": { 2806 | "lilconfig": "^2.0.5", 2807 | "yaml": "^1.10.2" 2808 | }, 2809 | "engines": { 2810 | "node": ">= 10" 2811 | }, 2812 | "funding": { 2813 | "type": "opencollective", 2814 | "url": "https://opencollective.com/postcss/" 2815 | }, 2816 | "peerDependencies": { 2817 | "postcss": ">=8.0.9", 2818 | "ts-node": ">=9.0.0" 2819 | }, 2820 | "peerDependenciesMeta": { 2821 | "postcss": { 2822 | "optional": true 2823 | }, 2824 | "ts-node": { 2825 | "optional": true 2826 | } 2827 | } 2828 | }, 2829 | "node_modules/postcss-safe-parser": { 2830 | "version": "6.0.0", 2831 | "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", 2832 | "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", 2833 | "dev": true, 2834 | "engines": { 2835 | "node": ">=12.0" 2836 | }, 2837 | "funding": { 2838 | "type": "opencollective", 2839 | "url": "https://opencollective.com/postcss/" 2840 | }, 2841 | "peerDependencies": { 2842 | "postcss": "^8.3.3" 2843 | } 2844 | }, 2845 | "node_modules/postcss-scss": { 2846 | "version": "4.0.6", 2847 | "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.6.tgz", 2848 | "integrity": "sha512-rLDPhJY4z/i4nVFZ27j9GqLxj1pwxE80eAzUNRMXtcpipFYIeowerzBgG3yJhMtObGEXidtIgbUpQ3eLDsf5OQ==", 2849 | "dev": true, 2850 | "funding": [ 2851 | { 2852 | "type": "opencollective", 2853 | "url": "https://opencollective.com/postcss/" 2854 | }, 2855 | { 2856 | "type": "tidelift", 2857 | "url": "https://tidelift.com/funding/github/npm/postcss-scss" 2858 | } 2859 | ], 2860 | "engines": { 2861 | "node": ">=12.0" 2862 | }, 2863 | "peerDependencies": { 2864 | "postcss": "^8.4.19" 2865 | } 2866 | }, 2867 | "node_modules/postcss-selector-parser": { 2868 | "version": "6.0.13", 2869 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", 2870 | "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", 2871 | "dev": true, 2872 | "dependencies": { 2873 | "cssesc": "^3.0.0", 2874 | "util-deprecate": "^1.0.2" 2875 | }, 2876 | "engines": { 2877 | "node": ">=4" 2878 | } 2879 | }, 2880 | "node_modules/postcss/node_modules/nanoid": { 2881 | "version": "3.3.6", 2882 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", 2883 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", 2884 | "dev": true, 2885 | "funding": [ 2886 | { 2887 | "type": "github", 2888 | "url": "https://github.com/sponsors/ai" 2889 | } 2890 | ], 2891 | "bin": { 2892 | "nanoid": "bin/nanoid.cjs" 2893 | }, 2894 | "engines": { 2895 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2896 | } 2897 | }, 2898 | "node_modules/postgres-array": { 2899 | "version": "3.0.2", 2900 | "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-3.0.2.tgz", 2901 | "integrity": "sha512-6faShkdFugNQCLwucjPcY5ARoW1SlbnrZjmGl0IrrqewpvxvhSLHimCVzqeuULCbG0fQv7Dtk1yDbG3xv7Veog==", 2902 | "dev": true, 2903 | "engines": { 2904 | "node": ">=12" 2905 | } 2906 | }, 2907 | "node_modules/postgres-bytea": { 2908 | "version": "3.0.0", 2909 | "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-3.0.0.tgz", 2910 | "integrity": "sha512-CNd4jim9RFPkObHSjVHlVrxoVQXz7quwNFpz7RY1okNNme49+sVyiTvTRobiLV548Hx/hb1BG+iE7h9493WzFw==", 2911 | "dev": true, 2912 | "dependencies": { 2913 | "obuf": "~1.1.2" 2914 | }, 2915 | "engines": { 2916 | "node": ">= 6" 2917 | } 2918 | }, 2919 | "node_modules/postgres-date": { 2920 | "version": "2.0.1", 2921 | "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-2.0.1.tgz", 2922 | "integrity": "sha512-YtMKdsDt5Ojv1wQRvUhnyDJNSr2dGIC96mQVKz7xufp07nfuFONzdaowrMHjlAzY6GDLd4f+LUHHAAM1h4MdUw==", 2923 | "dev": true, 2924 | "engines": { 2925 | "node": ">=12" 2926 | } 2927 | }, 2928 | "node_modules/postgres-interval": { 2929 | "version": "3.0.0", 2930 | "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-3.0.0.tgz", 2931 | "integrity": "sha512-BSNDnbyZCXSxgA+1f5UU2GmwhoI0aU5yMxRGO8CdFEcY2BQF9xm/7MqKnYoM1nJDk8nONNWDk9WeSmePFhQdlw==", 2932 | "dev": true, 2933 | "engines": { 2934 | "node": ">=12" 2935 | } 2936 | }, 2937 | "node_modules/postgres-range": { 2938 | "version": "1.1.3", 2939 | "resolved": "https://registry.npmjs.org/postgres-range/-/postgres-range-1.1.3.tgz", 2940 | "integrity": "sha512-VdlZoocy5lCP0c/t66xAfclglEapXPCIVhqqJRncYpvbCgImF0w67aPKfbqUMr72tO2k5q0TdTZwCLjPTI6C9g==", 2941 | "dev": true 2942 | }, 2943 | "node_modules/prelude-ls": { 2944 | "version": "1.2.1", 2945 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2946 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2947 | "dev": true, 2948 | "engines": { 2949 | "node": ">= 0.8.0" 2950 | } 2951 | }, 2952 | "node_modules/process": { 2953 | "version": "0.11.10", 2954 | "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", 2955 | "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", 2956 | "engines": { 2957 | "node": ">= 0.6.0" 2958 | } 2959 | }, 2960 | "node_modules/publint": { 2961 | "version": "0.1.13", 2962 | "resolved": "https://registry.npmjs.org/publint/-/publint-0.1.13.tgz", 2963 | "integrity": "sha512-CEm8A12UiwUN1hcUtmcCcGo8Y7ued36jfpkmJ8h6fw7JcIYQCKb7ybl2mTKq11iC5DBEXTYw/LR6VB18hOwM/w==", 2964 | "dev": true, 2965 | "dependencies": { 2966 | "npm-packlist": "^5.1.3", 2967 | "picocolors": "^1.0.0", 2968 | "sade": "^1.8.1" 2969 | }, 2970 | "bin": { 2971 | "publint": "lib/cli.js" 2972 | }, 2973 | "engines": { 2974 | "node": ">=16" 2975 | }, 2976 | "funding": { 2977 | "url": "https://bjornlu.com/sponsor" 2978 | } 2979 | }, 2980 | "node_modules/punycode": { 2981 | "version": "2.3.0", 2982 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", 2983 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", 2984 | "dev": true, 2985 | "engines": { 2986 | "node": ">=6" 2987 | } 2988 | }, 2989 | "node_modules/queue-microtask": { 2990 | "version": "1.2.3", 2991 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2992 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2993 | "dev": true, 2994 | "funding": [ 2995 | { 2996 | "type": "github", 2997 | "url": "https://github.com/sponsors/feross" 2998 | }, 2999 | { 3000 | "type": "patreon", 3001 | "url": "https://www.patreon.com/feross" 3002 | }, 3003 | { 3004 | "type": "consulting", 3005 | "url": "https://feross.org/support" 3006 | } 3007 | ] 3008 | }, 3009 | "node_modules/readable-stream": { 3010 | "version": "3.6.2", 3011 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", 3012 | "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", 3013 | "dependencies": { 3014 | "inherits": "^2.0.3", 3015 | "string_decoder": "^1.1.1", 3016 | "util-deprecate": "^1.0.1" 3017 | }, 3018 | "engines": { 3019 | "node": ">= 6" 3020 | } 3021 | }, 3022 | "node_modules/readdirp": { 3023 | "version": "3.6.0", 3024 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3025 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3026 | "dev": true, 3027 | "dependencies": { 3028 | "picomatch": "^2.2.1" 3029 | }, 3030 | "engines": { 3031 | "node": ">=8.10.0" 3032 | } 3033 | }, 3034 | "node_modules/resolve-from": { 3035 | "version": "4.0.0", 3036 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3037 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3038 | "dev": true, 3039 | "engines": { 3040 | "node": ">=4" 3041 | } 3042 | }, 3043 | "node_modules/reusify": { 3044 | "version": "1.0.4", 3045 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3046 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3047 | "dev": true, 3048 | "engines": { 3049 | "iojs": ">=1.0.0", 3050 | "node": ">=0.10.0" 3051 | } 3052 | }, 3053 | "node_modules/rimraf": { 3054 | "version": "3.0.2", 3055 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3056 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3057 | "dependencies": { 3058 | "glob": "^7.1.3" 3059 | }, 3060 | "bin": { 3061 | "rimraf": "bin.js" 3062 | }, 3063 | "funding": { 3064 | "url": "https://github.com/sponsors/isaacs" 3065 | } 3066 | }, 3067 | "node_modules/rimraf/node_modules/glob": { 3068 | "version": "7.2.3", 3069 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 3070 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 3071 | "dependencies": { 3072 | "fs.realpath": "^1.0.0", 3073 | "inflight": "^1.0.4", 3074 | "inherits": "2", 3075 | "minimatch": "^3.1.1", 3076 | "once": "^1.3.0", 3077 | "path-is-absolute": "^1.0.0" 3078 | }, 3079 | "engines": { 3080 | "node": "*" 3081 | }, 3082 | "funding": { 3083 | "url": "https://github.com/sponsors/isaacs" 3084 | } 3085 | }, 3086 | "node_modules/rollup": { 3087 | "version": "3.25.3", 3088 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.25.3.tgz", 3089 | "integrity": "sha512-ZT279hx8gszBj9uy5FfhoG4bZx8c+0A1sbqtr7Q3KNWIizpTdDEPZbV2xcbvHsnFp4MavCQYZyzApJ+virB8Yw==", 3090 | "dev": true, 3091 | "bin": { 3092 | "rollup": "dist/bin/rollup" 3093 | }, 3094 | "engines": { 3095 | "node": ">=14.18.0", 3096 | "npm": ">=8.0.0" 3097 | }, 3098 | "optionalDependencies": { 3099 | "fsevents": "~2.3.2" 3100 | } 3101 | }, 3102 | "node_modules/run-parallel": { 3103 | "version": "1.2.0", 3104 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3105 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3106 | "dev": true, 3107 | "funding": [ 3108 | { 3109 | "type": "github", 3110 | "url": "https://github.com/sponsors/feross" 3111 | }, 3112 | { 3113 | "type": "patreon", 3114 | "url": "https://www.patreon.com/feross" 3115 | }, 3116 | { 3117 | "type": "consulting", 3118 | "url": "https://feross.org/support" 3119 | } 3120 | ], 3121 | "dependencies": { 3122 | "queue-microtask": "^1.2.2" 3123 | } 3124 | }, 3125 | "node_modules/sade": { 3126 | "version": "1.8.1", 3127 | "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", 3128 | "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", 3129 | "dev": true, 3130 | "dependencies": { 3131 | "mri": "^1.1.0" 3132 | }, 3133 | "engines": { 3134 | "node": ">=6" 3135 | } 3136 | }, 3137 | "node_modules/safe-buffer": { 3138 | "version": "5.2.1", 3139 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 3140 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 3141 | "funding": [ 3142 | { 3143 | "type": "github", 3144 | "url": "https://github.com/sponsors/feross" 3145 | }, 3146 | { 3147 | "type": "patreon", 3148 | "url": "https://www.patreon.com/feross" 3149 | }, 3150 | { 3151 | "type": "consulting", 3152 | "url": "https://feross.org/support" 3153 | } 3154 | ] 3155 | }, 3156 | "node_modules/sander": { 3157 | "version": "0.5.1", 3158 | "resolved": "https://registry.npmjs.org/sander/-/sander-0.5.1.tgz", 3159 | "integrity": "sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==", 3160 | "dev": true, 3161 | "dependencies": { 3162 | "es6-promise": "^3.1.2", 3163 | "graceful-fs": "^4.1.3", 3164 | "mkdirp": "^0.5.1", 3165 | "rimraf": "^2.5.2" 3166 | } 3167 | }, 3168 | "node_modules/sander/node_modules/glob": { 3169 | "version": "7.2.3", 3170 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 3171 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 3172 | "dev": true, 3173 | "dependencies": { 3174 | "fs.realpath": "^1.0.0", 3175 | "inflight": "^1.0.4", 3176 | "inherits": "2", 3177 | "minimatch": "^3.1.1", 3178 | "once": "^1.3.0", 3179 | "path-is-absolute": "^1.0.0" 3180 | }, 3181 | "engines": { 3182 | "node": "*" 3183 | }, 3184 | "funding": { 3185 | "url": "https://github.com/sponsors/isaacs" 3186 | } 3187 | }, 3188 | "node_modules/sander/node_modules/rimraf": { 3189 | "version": "2.7.1", 3190 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", 3191 | "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", 3192 | "dev": true, 3193 | "dependencies": { 3194 | "glob": "^7.1.3" 3195 | }, 3196 | "bin": { 3197 | "rimraf": "bin.js" 3198 | } 3199 | }, 3200 | "node_modules/semver": { 3201 | "version": "7.5.3", 3202 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", 3203 | "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", 3204 | "dependencies": { 3205 | "lru-cache": "^6.0.0" 3206 | }, 3207 | "bin": { 3208 | "semver": "bin/semver.js" 3209 | }, 3210 | "engines": { 3211 | "node": ">=10" 3212 | } 3213 | }, 3214 | "node_modules/set-blocking": { 3215 | "version": "2.0.0", 3216 | "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", 3217 | "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" 3218 | }, 3219 | "node_modules/set-cookie-parser": { 3220 | "version": "2.6.0", 3221 | "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz", 3222 | "integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==", 3223 | "dev": true 3224 | }, 3225 | "node_modules/shebang-command": { 3226 | "version": "2.0.0", 3227 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3228 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3229 | "dev": true, 3230 | "dependencies": { 3231 | "shebang-regex": "^3.0.0" 3232 | }, 3233 | "engines": { 3234 | "node": ">=8" 3235 | } 3236 | }, 3237 | "node_modules/shebang-regex": { 3238 | "version": "3.0.0", 3239 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3240 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3241 | "dev": true, 3242 | "engines": { 3243 | "node": ">=8" 3244 | } 3245 | }, 3246 | "node_modules/signal-exit": { 3247 | "version": "3.0.7", 3248 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3249 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" 3250 | }, 3251 | "node_modules/sirv": { 3252 | "version": "2.0.3", 3253 | "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.3.tgz", 3254 | "integrity": "sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==", 3255 | "dev": true, 3256 | "dependencies": { 3257 | "@polka/url": "^1.0.0-next.20", 3258 | "mrmime": "^1.0.0", 3259 | "totalist": "^3.0.0" 3260 | }, 3261 | "engines": { 3262 | "node": ">= 10" 3263 | } 3264 | }, 3265 | "node_modules/slash": { 3266 | "version": "3.0.0", 3267 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3268 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3269 | "dev": true, 3270 | "engines": { 3271 | "node": ">=8" 3272 | } 3273 | }, 3274 | "node_modules/sorcery": { 3275 | "version": "0.11.0", 3276 | "resolved": "https://registry.npmjs.org/sorcery/-/sorcery-0.11.0.tgz", 3277 | "integrity": "sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==", 3278 | "dev": true, 3279 | "dependencies": { 3280 | "@jridgewell/sourcemap-codec": "^1.4.14", 3281 | "buffer-crc32": "^0.2.5", 3282 | "minimist": "^1.2.0", 3283 | "sander": "^0.5.0" 3284 | }, 3285 | "bin": { 3286 | "sorcery": "bin/sorcery" 3287 | } 3288 | }, 3289 | "node_modules/source-map-js": { 3290 | "version": "1.0.2", 3291 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 3292 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 3293 | "dev": true, 3294 | "engines": { 3295 | "node": ">=0.10.0" 3296 | } 3297 | }, 3298 | "node_modules/split2": { 3299 | "version": "4.2.0", 3300 | "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", 3301 | "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", 3302 | "engines": { 3303 | "node": ">= 10.x" 3304 | } 3305 | }, 3306 | "node_modules/streamsearch": { 3307 | "version": "1.1.0", 3308 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", 3309 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", 3310 | "dev": true, 3311 | "engines": { 3312 | "node": ">=10.0.0" 3313 | } 3314 | }, 3315 | "node_modules/string_decoder": { 3316 | "version": "1.3.0", 3317 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", 3318 | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", 3319 | "dependencies": { 3320 | "safe-buffer": "~5.2.0" 3321 | } 3322 | }, 3323 | "node_modules/string-width": { 3324 | "version": "4.2.3", 3325 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3326 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3327 | "dependencies": { 3328 | "emoji-regex": "^8.0.0", 3329 | "is-fullwidth-code-point": "^3.0.0", 3330 | "strip-ansi": "^6.0.1" 3331 | }, 3332 | "engines": { 3333 | "node": ">=8" 3334 | } 3335 | }, 3336 | "node_modules/strip-ansi": { 3337 | "version": "6.0.1", 3338 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3339 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3340 | "dependencies": { 3341 | "ansi-regex": "^5.0.1" 3342 | }, 3343 | "engines": { 3344 | "node": ">=8" 3345 | } 3346 | }, 3347 | "node_modules/strip-indent": { 3348 | "version": "3.0.0", 3349 | "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", 3350 | "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", 3351 | "dev": true, 3352 | "dependencies": { 3353 | "min-indent": "^1.0.0" 3354 | }, 3355 | "engines": { 3356 | "node": ">=8" 3357 | } 3358 | }, 3359 | "node_modules/strip-json-comments": { 3360 | "version": "3.1.1", 3361 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3362 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3363 | "dev": true, 3364 | "engines": { 3365 | "node": ">=8" 3366 | }, 3367 | "funding": { 3368 | "url": "https://github.com/sponsors/sindresorhus" 3369 | } 3370 | }, 3371 | "node_modules/supports-color": { 3372 | "version": "7.2.0", 3373 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3374 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3375 | "dev": true, 3376 | "dependencies": { 3377 | "has-flag": "^4.0.0" 3378 | }, 3379 | "engines": { 3380 | "node": ">=8" 3381 | } 3382 | }, 3383 | "node_modules/svelte": { 3384 | "version": "4.0.1", 3385 | "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.0.1.tgz", 3386 | "integrity": "sha512-7n2u7A5cu8xCY6MBiXh/Mg6Lh3+Mw2qXlTDBYhzvCvmSM4L4gc4MVo540UtGcjqBiA48E1VDW+EUpBr7iuBlPg==", 3387 | "dev": true, 3388 | "dependencies": { 3389 | "@ampproject/remapping": "^2.2.1", 3390 | "@jridgewell/sourcemap-codec": "^1.4.15", 3391 | "@jridgewell/trace-mapping": "^0.3.18", 3392 | "acorn": "^8.9.0", 3393 | "aria-query": "^5.3.0", 3394 | "axobject-query": "^3.2.1", 3395 | "code-red": "^1.0.3", 3396 | "css-tree": "^2.3.1", 3397 | "estree-walker": "^3.0.3", 3398 | "is-reference": "^3.0.1", 3399 | "locate-character": "^3.0.0", 3400 | "magic-string": "^0.30.0", 3401 | "periscopic": "^3.1.0" 3402 | }, 3403 | "engines": { 3404 | "node": ">=16" 3405 | } 3406 | }, 3407 | "node_modules/svelte-check": { 3408 | "version": "3.4.4", 3409 | "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-3.4.4.tgz", 3410 | "integrity": "sha512-Uys9+R65cj8TmP8f5UpS7B2xKpNLYNxEWJsA5ZoKcWq/uwvABFF7xS6iPQGLoa7hxz0DS6xU60YFpmq06E4JxA==", 3411 | "dev": true, 3412 | "dependencies": { 3413 | "@jridgewell/trace-mapping": "^0.3.17", 3414 | "chokidar": "^3.4.1", 3415 | "fast-glob": "^3.2.7", 3416 | "import-fresh": "^3.2.1", 3417 | "picocolors": "^1.0.0", 3418 | "sade": "^1.7.4", 3419 | "svelte-preprocess": "^5.0.3", 3420 | "typescript": "^5.0.3" 3421 | }, 3422 | "bin": { 3423 | "svelte-check": "bin/svelte-check" 3424 | }, 3425 | "peerDependencies": { 3426 | "svelte": "^3.55.0 || ^4.0.0-next.0 || ^4.0.0" 3427 | } 3428 | }, 3429 | "node_modules/svelte-eslint-parser": { 3430 | "version": "0.32.0", 3431 | "resolved": "https://registry.npmjs.org/svelte-eslint-parser/-/svelte-eslint-parser-0.32.0.tgz", 3432 | "integrity": "sha512-Q8Nh3GHHoWZMv3Ej4zw+3+gyWPR8I5pPTJXEOvW+JOgwhGXqGKh7mOKNlVcEPtk+PCGiK9TPaRtvRkKoJR327A==", 3433 | "dev": true, 3434 | "dependencies": { 3435 | "eslint-scope": "^7.0.0", 3436 | "eslint-visitor-keys": "^3.0.0", 3437 | "espree": "^9.0.0", 3438 | "postcss": "^8.4.23", 3439 | "postcss-scss": "^4.0.6" 3440 | }, 3441 | "engines": { 3442 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 3443 | }, 3444 | "funding": { 3445 | "url": "https://github.com/sponsors/ota-meshi" 3446 | }, 3447 | "peerDependencies": { 3448 | "svelte": "^3.37.0 || ^4.0.0" 3449 | }, 3450 | "peerDependenciesMeta": { 3451 | "svelte": { 3452 | "optional": true 3453 | } 3454 | } 3455 | }, 3456 | "node_modules/svelte-eslint-parser/node_modules/eslint-scope": { 3457 | "version": "7.2.0", 3458 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", 3459 | "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", 3460 | "dev": true, 3461 | "dependencies": { 3462 | "esrecurse": "^4.3.0", 3463 | "estraverse": "^5.2.0" 3464 | }, 3465 | "engines": { 3466 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 3467 | }, 3468 | "funding": { 3469 | "url": "https://opencollective.com/eslint" 3470 | } 3471 | }, 3472 | "node_modules/svelte-eslint-parser/node_modules/estraverse": { 3473 | "version": "5.3.0", 3474 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 3475 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 3476 | "dev": true, 3477 | "engines": { 3478 | "node": ">=4.0" 3479 | } 3480 | }, 3481 | "node_modules/svelte-hmr": { 3482 | "version": "0.15.2", 3483 | "resolved": "https://registry.npmjs.org/svelte-hmr/-/svelte-hmr-0.15.2.tgz", 3484 | "integrity": "sha512-q/bAruCvFLwvNbeE1x3n37TYFb3mTBJ6TrCq6p2CoFbSTNhDE9oAtEfpy+wmc9So8AG0Tja+X0/mJzX9tSfvIg==", 3485 | "dev": true, 3486 | "engines": { 3487 | "node": "^12.20 || ^14.13.1 || >= 16" 3488 | }, 3489 | "peerDependencies": { 3490 | "svelte": "^3.19.0 || ^4.0.0-next.0" 3491 | } 3492 | }, 3493 | "node_modules/svelte-preprocess": { 3494 | "version": "5.0.4", 3495 | "resolved": "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-5.0.4.tgz", 3496 | "integrity": "sha512-ABia2QegosxOGsVlsSBJvoWeXy1wUKSfF7SWJdTjLAbx/Y3SrVevvvbFNQqrSJw89+lNSsM58SipmZJ5SRi5iw==", 3497 | "dev": true, 3498 | "hasInstallScript": true, 3499 | "dependencies": { 3500 | "@types/pug": "^2.0.6", 3501 | "detect-indent": "^6.1.0", 3502 | "magic-string": "^0.27.0", 3503 | "sorcery": "^0.11.0", 3504 | "strip-indent": "^3.0.0" 3505 | }, 3506 | "engines": { 3507 | "node": ">= 14.10.0" 3508 | }, 3509 | "peerDependencies": { 3510 | "@babel/core": "^7.10.2", 3511 | "coffeescript": "^2.5.1", 3512 | "less": "^3.11.3 || ^4.0.0", 3513 | "postcss": "^7 || ^8", 3514 | "postcss-load-config": "^2.1.0 || ^3.0.0 || ^4.0.0", 3515 | "pug": "^3.0.0", 3516 | "sass": "^1.26.8", 3517 | "stylus": "^0.55.0", 3518 | "sugarss": "^2.0.0 || ^3.0.0 || ^4.0.0", 3519 | "svelte": "^3.23.0 || ^4.0.0-next.0 || ^4.0.0", 3520 | "typescript": ">=3.9.5 || ^4.0.0 || ^5.0.0" 3521 | }, 3522 | "peerDependenciesMeta": { 3523 | "@babel/core": { 3524 | "optional": true 3525 | }, 3526 | "coffeescript": { 3527 | "optional": true 3528 | }, 3529 | "less": { 3530 | "optional": true 3531 | }, 3532 | "postcss": { 3533 | "optional": true 3534 | }, 3535 | "postcss-load-config": { 3536 | "optional": true 3537 | }, 3538 | "pug": { 3539 | "optional": true 3540 | }, 3541 | "sass": { 3542 | "optional": true 3543 | }, 3544 | "stylus": { 3545 | "optional": true 3546 | }, 3547 | "sugarss": { 3548 | "optional": true 3549 | }, 3550 | "typescript": { 3551 | "optional": true 3552 | } 3553 | } 3554 | }, 3555 | "node_modules/svelte-preprocess/node_modules/magic-string": { 3556 | "version": "0.27.0", 3557 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", 3558 | "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==", 3559 | "dev": true, 3560 | "dependencies": { 3561 | "@jridgewell/sourcemap-codec": "^1.4.13" 3562 | }, 3563 | "engines": { 3564 | "node": ">=12" 3565 | } 3566 | }, 3567 | "node_modules/svelte2tsx": { 3568 | "version": "0.6.16", 3569 | "resolved": "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.6.16.tgz", 3570 | "integrity": "sha512-AX2iYEvQdd4tq5BokRdOOA0N/nD37ZnhXAomrAG9EEGl2cjkvoQUwe1Aluo6FSzA684WJjhxW+1ZXmveCmvDrA==", 3571 | "dev": true, 3572 | "dependencies": { 3573 | "dedent-js": "^1.0.1", 3574 | "pascal-case": "^3.1.1" 3575 | }, 3576 | "peerDependencies": { 3577 | "svelte": "^3.55 || ^4.0.0-next.0 || ^4.0", 3578 | "typescript": "^4.9.4 || ^5.0.0" 3579 | } 3580 | }, 3581 | "node_modules/tar": { 3582 | "version": "6.1.15", 3583 | "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", 3584 | "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", 3585 | "dependencies": { 3586 | "chownr": "^2.0.0", 3587 | "fs-minipass": "^2.0.0", 3588 | "minipass": "^5.0.0", 3589 | "minizlib": "^2.1.1", 3590 | "mkdirp": "^1.0.3", 3591 | "yallist": "^4.0.0" 3592 | }, 3593 | "engines": { 3594 | "node": ">=10" 3595 | } 3596 | }, 3597 | "node_modules/tar/node_modules/mkdirp": { 3598 | "version": "1.0.4", 3599 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 3600 | "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", 3601 | "bin": { 3602 | "mkdirp": "bin/cmd.js" 3603 | }, 3604 | "engines": { 3605 | "node": ">=10" 3606 | } 3607 | }, 3608 | "node_modules/text-table": { 3609 | "version": "0.2.0", 3610 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3611 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 3612 | "dev": true 3613 | }, 3614 | "node_modules/to-regex-range": { 3615 | "version": "5.0.1", 3616 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3617 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3618 | "dev": true, 3619 | "dependencies": { 3620 | "is-number": "^7.0.0" 3621 | }, 3622 | "engines": { 3623 | "node": ">=8.0" 3624 | } 3625 | }, 3626 | "node_modules/totalist": { 3627 | "version": "3.0.1", 3628 | "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", 3629 | "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", 3630 | "dev": true, 3631 | "engines": { 3632 | "node": ">=6" 3633 | } 3634 | }, 3635 | "node_modules/tr46": { 3636 | "version": "0.0.3", 3637 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 3638 | "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" 3639 | }, 3640 | "node_modules/tslib": { 3641 | "version": "2.6.0", 3642 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", 3643 | "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==", 3644 | "dev": true 3645 | }, 3646 | "node_modules/tsutils": { 3647 | "version": "3.21.0", 3648 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 3649 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 3650 | "dev": true, 3651 | "dependencies": { 3652 | "tslib": "^1.8.1" 3653 | }, 3654 | "engines": { 3655 | "node": ">= 6" 3656 | }, 3657 | "peerDependencies": { 3658 | "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" 3659 | } 3660 | }, 3661 | "node_modules/tsutils/node_modules/tslib": { 3662 | "version": "1.14.1", 3663 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 3664 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", 3665 | "dev": true 3666 | }, 3667 | "node_modules/type-check": { 3668 | "version": "0.4.0", 3669 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3670 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3671 | "dev": true, 3672 | "dependencies": { 3673 | "prelude-ls": "^1.2.1" 3674 | }, 3675 | "engines": { 3676 | "node": ">= 0.8.0" 3677 | } 3678 | }, 3679 | "node_modules/type-fest": { 3680 | "version": "0.20.2", 3681 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 3682 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 3683 | "dev": true, 3684 | "engines": { 3685 | "node": ">=10" 3686 | }, 3687 | "funding": { 3688 | "url": "https://github.com/sponsors/sindresorhus" 3689 | } 3690 | }, 3691 | "node_modules/typescript": { 3692 | "version": "5.1.6", 3693 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", 3694 | "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", 3695 | "dev": true, 3696 | "bin": { 3697 | "tsc": "bin/tsc", 3698 | "tsserver": "bin/tsserver" 3699 | }, 3700 | "engines": { 3701 | "node": ">=14.17" 3702 | } 3703 | }, 3704 | "node_modules/undici": { 3705 | "version": "5.22.1", 3706 | "resolved": "https://registry.npmjs.org/undici/-/undici-5.22.1.tgz", 3707 | "integrity": "sha512-Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw==", 3708 | "dev": true, 3709 | "dependencies": { 3710 | "busboy": "^1.6.0" 3711 | }, 3712 | "engines": { 3713 | "node": ">=14.0" 3714 | } 3715 | }, 3716 | "node_modules/uri-js": { 3717 | "version": "4.4.1", 3718 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3719 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3720 | "dev": true, 3721 | "dependencies": { 3722 | "punycode": "^2.1.0" 3723 | } 3724 | }, 3725 | "node_modules/util-deprecate": { 3726 | "version": "1.0.2", 3727 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 3728 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 3729 | }, 3730 | "node_modules/vite": { 3731 | "version": "4.3.9", 3732 | "resolved": "https://registry.npmjs.org/vite/-/vite-4.3.9.tgz", 3733 | "integrity": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==", 3734 | "dev": true, 3735 | "dependencies": { 3736 | "esbuild": "^0.17.5", 3737 | "postcss": "^8.4.23", 3738 | "rollup": "^3.21.0" 3739 | }, 3740 | "bin": { 3741 | "vite": "bin/vite.js" 3742 | }, 3743 | "engines": { 3744 | "node": "^14.18.0 || >=16.0.0" 3745 | }, 3746 | "optionalDependencies": { 3747 | "fsevents": "~2.3.2" 3748 | }, 3749 | "peerDependencies": { 3750 | "@types/node": ">= 14", 3751 | "less": "*", 3752 | "sass": "*", 3753 | "stylus": "*", 3754 | "sugarss": "*", 3755 | "terser": "^5.4.0" 3756 | }, 3757 | "peerDependenciesMeta": { 3758 | "@types/node": { 3759 | "optional": true 3760 | }, 3761 | "less": { 3762 | "optional": true 3763 | }, 3764 | "sass": { 3765 | "optional": true 3766 | }, 3767 | "stylus": { 3768 | "optional": true 3769 | }, 3770 | "sugarss": { 3771 | "optional": true 3772 | }, 3773 | "terser": { 3774 | "optional": true 3775 | } 3776 | } 3777 | }, 3778 | "node_modules/vitefu": { 3779 | "version": "0.2.4", 3780 | "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-0.2.4.tgz", 3781 | "integrity": "sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==", 3782 | "dev": true, 3783 | "peerDependencies": { 3784 | "vite": "^3.0.0 || ^4.0.0" 3785 | }, 3786 | "peerDependenciesMeta": { 3787 | "vite": { 3788 | "optional": true 3789 | } 3790 | } 3791 | }, 3792 | "node_modules/webidl-conversions": { 3793 | "version": "3.0.1", 3794 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 3795 | "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" 3796 | }, 3797 | "node_modules/whatwg-url": { 3798 | "version": "5.0.0", 3799 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 3800 | "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 3801 | "dependencies": { 3802 | "tr46": "~0.0.3", 3803 | "webidl-conversions": "^3.0.0" 3804 | } 3805 | }, 3806 | "node_modules/which": { 3807 | "version": "2.0.2", 3808 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3809 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3810 | "dev": true, 3811 | "dependencies": { 3812 | "isexe": "^2.0.0" 3813 | }, 3814 | "bin": { 3815 | "node-which": "bin/node-which" 3816 | }, 3817 | "engines": { 3818 | "node": ">= 8" 3819 | } 3820 | }, 3821 | "node_modules/wide-align": { 3822 | "version": "1.1.5", 3823 | "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", 3824 | "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", 3825 | "dependencies": { 3826 | "string-width": "^1.0.2 || 2 || 3 || 4" 3827 | } 3828 | }, 3829 | "node_modules/wrappy": { 3830 | "version": "1.0.2", 3831 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3832 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 3833 | }, 3834 | "node_modules/xtend": { 3835 | "version": "4.0.2", 3836 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", 3837 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", 3838 | "engines": { 3839 | "node": ">=0.4" 3840 | } 3841 | }, 3842 | "node_modules/yallist": { 3843 | "version": "4.0.0", 3844 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3845 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 3846 | }, 3847 | "node_modules/yaml": { 3848 | "version": "1.10.2", 3849 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", 3850 | "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", 3851 | "dev": true, 3852 | "engines": { 3853 | "node": ">= 6" 3854 | } 3855 | }, 3856 | "node_modules/yocto-queue": { 3857 | "version": "0.1.0", 3858 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3859 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3860 | "dev": true, 3861 | "engines": { 3862 | "node": ">=10" 3863 | }, 3864 | "funding": { 3865 | "url": "https://github.com/sponsors/sindresorhus" 3866 | } 3867 | } 3868 | } 3869 | } 3870 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "svault", 3 | "version": "1.1.3", 4 | "description": "Authentication library for SvelteKit", 5 | "keywords": [ 6 | "svelte", 7 | "sveltekit", 8 | "svault", 9 | "authentication", 10 | "library", 11 | "oauth", 12 | "auth", 13 | "user management" 14 | ], 15 | "homepage": "https://svault.dev", 16 | "license": "MIT", 17 | "bugs": { 18 | "url": "https://github.com/oslabs-beta/Svault/issues" 19 | }, 20 | "author": { 21 | "name": "Team Svault", 22 | "url": "https://github.com/oslabs-beta/Svault" 23 | }, 24 | "contributors": [ 25 | { 26 | "name": "Daniel Park", 27 | "url": "https://github.com/parkdaniel731" 28 | }, 29 | { 30 | "name": "Michelle Conroy", 31 | "url": "https://github.com/missmshel" 32 | }, 33 | { 34 | "name": "Michael Buenrostro", 35 | "url": "https://github.com/mbuenrostro21" 36 | }, 37 | { 38 | "name": "Franki Biswas", 39 | "url": "https://github.com/fpena213" 40 | }, 41 | { 42 | "name": "Tristan Bott", 43 | "url": "https://github.com/trisbt" 44 | } 45 | ], 46 | "repository": "https://github.com/oslabs-beta/Svault", 47 | "scripts": { 48 | "dev": "vite dev", 49 | "build": "vite build && npm run package", 50 | "preview": "vite preview", 51 | "package": "svelte-kit sync && svelte-package && publint", 52 | "prepublishOnly": "npm run package", 53 | "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", 54 | "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", 55 | "lint": "eslint ." 56 | }, 57 | "exports": { 58 | ".": { 59 | "types": "./dist/index.d.ts", 60 | "svelte": "./dist/index.js" 61 | } 62 | }, 63 | "files": [ 64 | "dist", 65 | "!dist/**/*.test.*", 66 | "!dist/**/*.spec.*" 67 | ], 68 | "peerDependencies": { 69 | "svelte": "^4.0.0" 70 | }, 71 | "devDependencies": { 72 | "@sveltejs/adapter-auto": "^2.0.0", 73 | "@sveltejs/kit": "^1.20.4", 74 | "@sveltejs/package": "^2.0.0", 75 | "@types/bcrypt": "^5.0.0", 76 | "@types/pg": "^8.10.2", 77 | "@typescript-eslint/eslint-plugin": "^5.45.0", 78 | "@typescript-eslint/parser": "^5.45.0", 79 | "eslint": "^8.28.0", 80 | "eslint-plugin-svelte": "^2.30.0", 81 | "publint": "^0.1.9", 82 | "svelte": "^4.0.0", 83 | "svelte-check": "^3.4.3", 84 | "tslib": "^2.4.1", 85 | "typescript": "^5.0.0", 86 | "vite": "^4.3.6" 87 | }, 88 | "svelte": "./dist/index.js", 89 | "types": "./dist/index.d.ts", 90 | "type": "module", 91 | "dependencies": { 92 | "bcrypt": "^5.0.1", 93 | "bcryptjs": "^2.4.3", 94 | "cookie": "^0.5.0", 95 | "dotenv": "^16.3.1", 96 | "google-auth-library": "^8.9.0", 97 | "nanoid": "^4.0.2", 98 | "pg": "^8.11.1", 99 | "process": "^0.11.10" 100 | } 101 | } -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- 1 | // See https://kit.svelte.dev/docs/types#app for information about these interfaces 2 | declare global { 3 | namespace App { 4 | // interface Error {} 5 | // interface Locals {} 6 | // interface PageData {} 7 | // interface Platform {} 8 | } 9 | } 10 | 11 | export { }; 12 | -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | %sveltekit.head% 9 | 10 | 11 |
%sveltekit.body%
12 | 13 | 14 | -------------------------------------------------------------------------------- /src/hooks.server.ts: -------------------------------------------------------------------------------- 1 | import { SvaultNative } from "$lib/server/login/nativeAuth.ts"; 2 | import { SvaultOauth } from './lib/server/oauth/svaultoauth.ts'; 3 | import { github } from './lib/server/oauth/github/api/github.ts'; 4 | import { google } from './lib/server/oauth/google/api/google.ts'; 5 | import { discord } from "$lib/server/oauth/discord/api/discord.ts"; 6 | import { GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET } from '$env/static/private'; 7 | import { GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET } from '$env/static/private'; 8 | import { DISCORD_CLIENT_ID, DISCORD_CLIENT_SECRET } from "$env/static/private"; 9 | import { sequence } from '@sveltejs/kit/hooks'; 10 | 11 | 12 | // Set redirect path 13 | const redirectPath = '/secret'; 14 | /// Google/Discord callback urls have to match what callback url you setup in your development app 15 | const googleCallback = 'http://localhost:5173/oauth/google/validate'; 16 | const discordCallback = 'http://localhost:5173/oauth/discord/validate'; 17 | // Place the oauth providers here 18 | const providers = [ 19 | github(GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, redirectPath), 20 | google(GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET, redirectPath, googleCallback), 21 | discord(DISCORD_CLIENT_ID, DISCORD_CLIENT_SECRET, redirectPath, discordCallback) 22 | ]; 23 | // Svault oauth handler 24 | export const oauth = SvaultOauth({ providers }); 25 | 26 | // Svault native handler 27 | export const native = SvaultNative(redirectPath); 28 | 29 | // Svault oauth and native handler 30 | export const handle = sequence(oauth, native); 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /src/lib/assets/discord-icon-svgrepo-com.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/lib/assets/discord-mark-white.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/assets/github-mark-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/Svault/075b00480f980d859016fd9fe4e1495345986c72/src/lib/assets/github-mark-white.png -------------------------------------------------------------------------------- /src/lib/assets/github-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/Svault/075b00480f980d859016fd9fe4e1495345986c72/src/lib/assets/github-mark.png -------------------------------------------------------------------------------- /src/lib/assets/googlelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/Svault/075b00480f980d859016fd9fe4e1495345986c72/src/lib/assets/googlelogo.png -------------------------------------------------------------------------------- /src/lib/assets/svault-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/Svault/075b00480f980d859016fd9fe4e1495345986c72/src/lib/assets/svault-logo.png -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- 1 | 2 | export { google } from './server/oauth/google/api/google.js' 3 | export { github } from './server/oauth/github/api/github.js'; 4 | export { discord } from './server/oauth/discord/api/discord.js'; 5 | export { SvaultOauth } from './server/oauth/svaultoauth.js'; 6 | export { SvaultNative } from '$lib/server/login/nativeAuth.js'; 7 | -------------------------------------------------------------------------------- /src/lib/server/db/index.ts: -------------------------------------------------------------------------------- 1 | /** need to create import to your database */ 2 | // // TODO: clean up TS syntax 3 | import bcrypt from 'bcrypt'; 4 | import db from './models.js'; 5 | import { TABLE_NAME } from '$env/static/private'; 6 | 7 | // Function to create user 8 | export async function createUser( 9 | username: string, 10 | password: string 11 | ): Promise { 12 | 13 | await db.connectToDB().then((res) => { 14 | if (res) console.log('connected'); 15 | }); 16 | 17 | //adjust workFactor value to your needs, 10 is the standard 18 | const workFactor = 10; 19 | const hashPassword = await bcrypt.hash(password, workFactor); 20 | 21 | const sql = ` 22 | insert into ${TABLE_NAME} (username, password) 23 | values ($1, $2) 24 | `; 25 | const values = [username, hashPassword]; 26 | 27 | const result = await db.query(sql, values); 28 | } 29 | 30 | //function to check user credentials 31 | //the accepted return type is a Promise with return of boolean type 32 | export async function checkUserCredentials( 33 | username: string, 34 | password: string 35 | ): Promise { 36 | 37 | const queryString = { 38 | name: 'checkCredentials', 39 | text: 'SELECT username, password FROM users WHERE username = $1', 40 | values: [username] 41 | } 42 | //const values = [username]; 43 | console.log(queryString); 44 | const result = await db.query(queryString.text, queryString.values); 45 | 46 | // Sends username to frontend 47 | const workFactor = 10; 48 | if (result) { 49 | console.log(result) 50 | if (result.rows[0]) { 51 | return bcrypt 52 | .compare(password, result.rows[0].password) 53 | .then((res) => { 54 | return res; // return true 55 | }) 56 | .catch((err) => { 57 | return err.message; 58 | }); 59 | } else { 60 | //this means the username doesn't exist in the db but dont tell the client that 61 | // spend some time to "waste" some time, this makes brute forcing harder 62 | await bcrypt.hash(password, workFactor); 63 | return false; 64 | } 65 | } else { 66 | return `result is err ${result}`; 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /src/lib/server/db/models.ts: -------------------------------------------------------------------------------- 1 | import { Pool } from 'pg'; 2 | import { PG_URI } from '$env/static/private'; 3 | 4 | // create a new pool here using the connection string above 5 | const db = new Pool({ 6 | connectionString: PG_URI, 7 | port: Number(import.meta.env.POSTGRES_PORT || 5432), 8 | }); 9 | 10 | 11 | export default { 12 | query: (text: string, params?, callback?) => { 13 | return db.query(text, params, callback); 14 | }, 15 | connectToDB: async () => await db.connect(), 16 | }; -------------------------------------------------------------------------------- /src/lib/server/db/types.ts: -------------------------------------------------------------------------------- 1 | export type SessionInfo = { 2 | username: string; 3 | // // TODO/ITERATION: add 'roles' for authorization 4 | //roles: string[]; 5 | }; 6 | 7 | export type SessionInfoCache = SessionInfo & { 8 | invalidAt: number; 9 | }; -------------------------------------------------------------------------------- /src/lib/server/login/nativeAuth.ts: -------------------------------------------------------------------------------- 1 | //master for all native login/register functions 2 | 3 | import { type Handle } from '@sveltejs/kit'; 4 | import { checkUserCredentials, createUser } from '$lib/server/db/index.js'; 5 | import { createSession, getSession, deleteSession } from '$lib/server/sessionStore/index.js'; 6 | import { fail } from '@sveltejs/kit'; 7 | import { MAX_AGE } from '$env/static/private'; 8 | 9 | 10 | let checkUserStatus: boolean; 11 | 12 | export const SvaultNative: Handle = (redirect: string) => { 13 | return async ({ event, resolve }) => { 14 | if (event.url.pathname.startsWith('/')) { 15 | if (checkUserStatus === false) { 16 | event.locals.failure = "Invalid username or password"; 17 | } else { 18 | checkUserStatus = true; 19 | } 20 | //grab the session ID from the cookie, and get the session data for it 21 | const { cookies } = event; 22 | const sid = cookies.get('svault_auth'); 23 | if (sid) { 24 | const session = getSession(sid); 25 | if (session) { 26 | //sends username back to frontend to be used on the landing page 27 | event.locals.username = session.username; 28 | //TODO: send session info back 29 | //event.locals.session = session; 30 | //TODO/ITERATION: user roles on site 31 | // event.locals.roles = session.roles; 32 | } else { 33 | // remove invalid/expired/unknown cookies 34 | cookies.delete('svault_auth'); 35 | } 36 | } 37 | } 38 | if (event.url.pathname === '/loginValidate') { 39 | const { goodUser, header } = await login(event, redirect); 40 | // const result = await login(event, redirect); 41 | if (goodUser === true) { 42 | checkUserStatus = true; 43 | return new Response('Redirect', { status: 303, headers: header }); 44 | } else { 45 | checkUserStatus = false; 46 | return new Response(null, { status: 302, headers: header }) 47 | } 48 | } 49 | if (event.url.pathname === "/registerValidate") { 50 | const newUser = await register(event); 51 | if (newUser.status === 200) { 52 | return new Response('Redirect', { status: 303, headers: { Location: '/login' } }) 53 | } else { 54 | return new Response('error in register validation') 55 | } 56 | } 57 | if (event.url.pathname === '/logout') { 58 | const { cookies } = event; 59 | const sid = cookies.get('svault_auth'); 60 | if (sid) { 61 | cookies.delete('svault_auth'); 62 | deleteSession(sid) 63 | } 64 | return new Response('Redirect', { status: 303, headers: { Location: '/' } }) 65 | } 66 | return await resolve(event); 67 | } 68 | } 69 | 70 | 71 | //invoked when a username/password is authenticated to TRUE 72 | export function makeCookieAndSession(username: string, redirect: string) { 73 | const maxAge = eval(MAX_AGE) 74 | const sid = createSession(username, maxAge); 75 | const cookieHeader = `svault_auth=${sid}; HttpOnly; Max-Age=${maxAge}; Path=/`; 76 | const headers = new Headers(); 77 | headers.append('Set-Cookie', cookieHeader); 78 | headers.append('Location', redirect); 79 | headers.append('maxAge', `${maxAge}`); 80 | return headers; 81 | } 82 | 83 | //register 84 | export const register = async (event) => { 85 | // obtains form data when user clicks "register" button 86 | const data = await event.request.formData(); 87 | const username = data.get('username')?.toString(); 88 | const password = data.get('password')?.toString(); 89 | if (username && password) { 90 | try { 91 | await createUser(username, password); 92 | //status not sending back -- defaults to 200 93 | return new Response({ status: 201 }) 94 | } catch (err) { 95 | return fail(400, { errorMessage: 'Internal Server Error' }); 96 | } 97 | } else { 98 | //should never be evaluated because both form boxes are "required" in page.svelte 99 | return fail(400, { errorMessage: 'Missing username or password' }); 100 | } 101 | } 102 | 103 | //login 104 | export const login = async (event, redirect: string) => { 105 | //obtains form data when user clicks "login" button 106 | 107 | const data = await event.request.formData(); 108 | const username = data.get('username')?.toString(); 109 | const password = data.get('password')?.toString(); 110 | let goodUser: boolean; 111 | goodUser = true; 112 | let header = new Headers(); 113 | let errorMessage: string; 114 | 115 | if (username && password) { 116 | //checks username/password in database 117 | const response = await checkUserCredentials(username, password); 118 | if (response === false) { 119 | goodUser = false; 120 | errorMessage = 'Invalid username or password'; 121 | } 122 | } else { 123 | //if someone logs in without a username or password 124 | //should never happen because they are required form data points in page.svelte 125 | goodUser = false; 126 | // return fail(400, { errorMessage: 'Missing username or password' }); 127 | errorMessage = 'Missing username or password'; 128 | } 129 | 130 | //workaround if username/password do not match 131 | if (goodUser !== true) { 132 | //const header = new Headers() 133 | header.append('Location', '/login') 134 | header.append('fail', { 'errorMessage': `${errorMessage}` }); 135 | } else { 136 | header = makeCookieAndSession(username, redirect); 137 | } 138 | return { goodUser, header }; 139 | } -------------------------------------------------------------------------------- /src/lib/server/oauth/discord/api/discord.ts: -------------------------------------------------------------------------------- 1 | import { nanoid } from "nanoid"; 2 | 3 | export const discord = (clientId, clientSecret, redirectPath, callbackurl) => { 4 | return { 5 | name: 'discord', 6 | authPath: '/oauth/discord/auth', 7 | validatePath: '/oauth/discord/validate', 8 | getAuthIdentity: () => { 9 | const provider = getDiscordIdentity(clientId, callbackurl); 10 | return provider; 11 | }, 12 | getValidation: async (event) => { 13 | const token = await getDiscordValidation(clientId, clientSecret, event, callbackurl); 14 | return token; 15 | }, 16 | getUser: async (token) => { 17 | const user = await getUser(token); 18 | return user; 19 | }, 20 | redirectPath, 21 | }; 22 | }; 23 | 24 | export function getDiscordIdentity(client_id: string, callbackurl): Promise { 25 | const state = nanoid(); 26 | const cookieHeader = `discord_oauth_state=${state}; HttpOnly; Max-Age=3600; Path=/`; 27 | const authorizationUrlSearchParams = new URLSearchParams({ 28 | client_id: client_id, 29 | state, 30 | redirect_uri: callbackurl, 31 | scope: "identify email", 32 | }); 33 | const authorizationUrl = `https://discord.com/api/oauth2/authorize?${authorizationUrlSearchParams}&response_type=code&prompt=none`; 34 | const headers = new Headers(); 35 | headers.append('Set-Cookie', cookieHeader); 36 | headers.append('Location', authorizationUrl); 37 | return headers; 38 | } 39 | 40 | //check state cookie and fetch access token 41 | export async function getDiscordValidation(client_id: string, client_secret: string, event, callbackurl) { 42 | const storedState = event.cookies.get("discord_oauth_state"); 43 | const state = event.url.searchParams.get("state"); 44 | 45 | if (!storedState || !state || storedState !== state) { 46 | return new Response(null, { 47 | status: 400, 48 | }); 49 | } 50 | const code = event.url.searchParams.get("code"); 51 | if (!code) { 52 | return new Response(null, { 53 | status: 400, 54 | }); 55 | } 56 | const response = await fetch("https://discord.com/api/oauth2/token", { 57 | method: "POST", 58 | body: new URLSearchParams({ 59 | client_id: client_id, 60 | client_secret: client_secret, 61 | code, 62 | redirect_uri: callbackurl, 63 | grant_type: "authorization_code", 64 | scope: "identify email", 65 | }), 66 | headers: { 67 | "Content-Type": "application/x-www-form-urlencoded", 68 | Accept: "application/json" 69 | } 70 | }); 71 | if (!response.ok) { 72 | console.log('Response was NOT okay'); 73 | return new Response(null, { 74 | status: 400 75 | }); 76 | } 77 | const result = await response.json() as { access_token: string }; 78 | const accessToken = result.access_token; 79 | return accessToken; 80 | } 81 | 82 | export async function getUser(accessToken) { 83 | try { 84 | const response = await fetch('https://discord.com/api/users/@me', { 85 | headers: { 86 | Authorization: `Bearer ${accessToken}`, 87 | }, 88 | }); 89 | 90 | if (!response.ok) { 91 | throw new Error('Failed to fetch user information.'); 92 | } 93 | 94 | const data = await response.json(); 95 | 96 | const userData = { 97 | email: data.email, 98 | username: data.username, 99 | }; 100 | 101 | return userData; 102 | } catch (error) { 103 | return new Response(null, { 104 | status: 400 105 | }); 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /src/lib/server/oauth/github/api/github.ts: -------------------------------------------------------------------------------- 1 | import { nanoid } from 'nanoid'; 2 | 3 | //Custom hanndle hook for github to authenticate, validate, redirect, and return the github user email 4 | //Set github callback URL to /oauth/api/validate 5 | 6 | export const github = (clientId, clientSecret, redirectPath) => { 7 | return { 8 | name: 'github', 9 | authPath: '/oauth/github/auth', 10 | validatePath: '/oauth/github/validate', 11 | getAuthIdentity: () => { 12 | const provider = getGitHubIdentity(clientId); 13 | return provider; 14 | }, 15 | getValidation: async (event) => { 16 | const token = await getGitHubValidation(clientId, clientSecret, event); 17 | return token; 18 | }, 19 | getUser: async (token) => { 20 | const user = await getUser(token); 21 | return user; 22 | }, 23 | redirectPath, 24 | }; 25 | }; 26 | 27 | //set state as cookie and get authorization headers to github 28 | export function getGitHubIdentity(client_id: string): Promise { 29 | const state = nanoid(); 30 | const cookieHeader = `github_oauth_state=${state}; HttpOnly; Max-Age=3600; Path=/`; 31 | const authorizationUrlSearchParams = new URLSearchParams({ 32 | client_id: client_id, 33 | state, 34 | }); 35 | const authorizationUrl = `https://github.com/login/oauth/authorize?${authorizationUrlSearchParams}`; 36 | const headers = new Headers(); 37 | headers.append('Set-Cookie', cookieHeader); 38 | headers.append('Location', authorizationUrl); 39 | return headers; 40 | } 41 | 42 | //check state cookie and fetch access token 43 | export async function getGitHubValidation(client_id: string, client_secret: string, event) { 44 | const storedState = event.cookies.get("github_oauth_state"); 45 | const state = event.url.searchParams.get("state"); 46 | 47 | if (!storedState || !state || storedState !== state) { 48 | return new Response(null, { 49 | status: 400, 50 | }); 51 | } 52 | const code = event.url.searchParams.get("code"); 53 | if (!code) { 54 | return new Response(null, { 55 | status: 400, 56 | }); 57 | } 58 | const response = await fetch("https://github.com/login/oauth/access_token", { 59 | method: "POST", 60 | body: new URLSearchParams({ 61 | client_id: client_id, 62 | client_secret: client_secret, 63 | code, 64 | scope: "read:user, user:email", 65 | }), 66 | headers: { 67 | "Content-Type": "application/x-www-form-urlencoded", 68 | Accept: "application/json" 69 | } 70 | }); 71 | if (!response.ok) { 72 | console.log('Response was NOT okay'); 73 | return new Response(null, { 74 | status: 400 75 | }); 76 | } 77 | const result = await response.json() as { access_token: string }; 78 | const accessToken = result.access_token; 79 | return accessToken; 80 | } 81 | 82 | 83 | //get github user email with access token and return the user email to event.locals.user 84 | export async function getUser(accessToken) { 85 | try { 86 | let useremail; 87 | const response = await fetch("https://api.github.com/user", { 88 | headers: { 89 | Accept: 'application/vnd.github.v3+json', 90 | Authorization: `bearer ${accessToken}`, 91 | }, 92 | }); 93 | 94 | const user = await response.json(); 95 | 96 | if (!user.email) { 97 | const emailResponse = await fetch("https://api.github.com/user/emails", { 98 | headers: { 99 | Accept: 'application/vnd.github.v3+json', 100 | Authorization: `bearer ${accessToken}`, 101 | }, 102 | }); 103 | 104 | const data = await emailResponse.json(); 105 | 106 | for (const el of data) { 107 | if (el.primary === true) { 108 | useremail = el.email; 109 | break; 110 | } 111 | } 112 | } else { 113 | useremail = user.email; 114 | } 115 | 116 | const userData = { 117 | email: useremail, 118 | username: user.login, 119 | }; 120 | return userData; 121 | } catch (error) { 122 | return new Response(null, { 123 | status: 400 124 | }); 125 | } 126 | } -------------------------------------------------------------------------------- /src/lib/server/oauth/google/api/google.ts: -------------------------------------------------------------------------------- 1 | import { nanoid } from 'nanoid'; 2 | import { OAuth2Client } from "google-auth-library"; 3 | 4 | //Custom hanndle hook for google to authenticate, validate, redirect, and return the google user email 5 | //Set google callback URL to /oauth/api/validate 6 | 7 | export const google = (clientId, clientSecret, redirectPath, callbackurl) => { 8 | return { 9 | name: 'google', 10 | authPath: '/oauth/google/auth', 11 | validatePath: '/oauth/google/validate', 12 | getAuthIdentity: () => { 13 | const provider = getGoogleIdentity(clientId, clientSecret, callbackurl); 14 | return provider; 15 | }, 16 | getValidation: async (event) => { 17 | const token = await getGoogleValidation(clientId, clientSecret, event, callbackurl); 18 | return token; 19 | }, 20 | getUser: async (token) => { 21 | const user = await getUser(token); 22 | return user; 23 | }, 24 | redirectPath, 25 | }; 26 | }; 27 | 28 | //set state as cookie and get authorization headers to google 29 | export function getGoogleIdentity(client_id: string, client_secret: string, callbackurl): Promise { 30 | const state = nanoid(); 31 | const cookieHeader = `google_oauth_state=${state}; HttpOnly; Max-Age=3600; Path=/`; 32 | const redirectURL = callbackurl; 33 | 34 | const oAuth2Client = new OAuth2Client( 35 | client_id, 36 | client_secret, 37 | redirectURL 38 | ); 39 | 40 | const authorizeUrl = oAuth2Client.generateAuthUrl({ 41 | access_type: 'offline', 42 | scope: 'https://www.googleapis.com/auth/userinfo.email openid', // Modify the scope as needed 43 | prompt: 'consent', 44 | state 45 | }); 46 | const headers = new Headers(); 47 | headers.append('Set-Cookie', cookieHeader); 48 | headers.append('Location', authorizeUrl); 49 | return headers; 50 | } 51 | 52 | 53 | //check state cookie and fetch access token 54 | export async function getGoogleValidation(client_id: string, client_secret: string, event, callbackurl) { 55 | const storedState = event.cookies.get("google_oauth_state"); 56 | const state = event.url.searchParams.get("state"); 57 | if (!storedState || !state || storedState !== state) { 58 | return new Response(null, { 59 | status: 400, 60 | }); 61 | } 62 | const code = event.url.searchParams.get("code"); 63 | if (!code) { 64 | return new Response(null, { 65 | status: 400, 66 | }); 67 | } 68 | try { 69 | const oAuth2Client = new OAuth2Client({ 70 | clientId: client_id, 71 | clientSecret: client_secret, 72 | redirectUri: callbackurl 73 | }); 74 | const { tokens } = await oAuth2Client.getToken(code); 75 | oAuth2Client.setCredentials(tokens); 76 | const user = oAuth2Client.credentials; 77 | return user.access_token; 78 | } catch (err) { 79 | return new Response(null, { 80 | status: 400 81 | }); 82 | } 83 | } 84 | 85 | //get google user email with access token and return the user email to event.locals.user 86 | export async function getUser(accessToken) { 87 | try { 88 | const response = await fetch('https://www.googleapis.com/oauth2/v2/userinfo', { 89 | headers: { 90 | Authorization: `Bearer ${accessToken}`, 91 | }, 92 | }); 93 | 94 | if (!response.ok) { 95 | throw new Error('Failed to fetch user information.'); 96 | } 97 | 98 | const data = await response.json(); 99 | const userData = { 100 | username: data.email, 101 | }; 102 | return userData; 103 | } catch (error) { 104 | return new Response(null, { 105 | status: 400 106 | }); 107 | } 108 | } 109 | -------------------------------------------------------------------------------- /src/lib/server/oauth/svaultoauth.ts: -------------------------------------------------------------------------------- 1 | import { type Handle } from '@sveltejs/kit'; 2 | let userMain; 3 | export const SvaultOauth: Handle = ({ providers }) => { 4 | return async ({ event, resolve }) => { 5 | //login user check 6 | if (event.url.pathname.startsWith('/')) { 7 | const { cookies } = event; 8 | for (const provider of providers) { 9 | const sid = cookies.get(`${provider.name}_oauth_state`); 10 | if (sid) { 11 | event.locals.username = userMain; 12 | break; 13 | } 14 | } 15 | } 16 | //logout 17 | if (event.url.pathname === '/logout' && event.cookies.get('svault_auth') === undefined) { 18 | let deleteCookieResponse; 19 | for (const provider of providers) { 20 | const cookieName = `${provider.name}_oauth_state`; 21 | const sid = event.cookies.get(cookieName); 22 | if (sid) { 23 | const deleteCookieHeader = `${cookieName}=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 GMT;`; 24 | deleteCookieResponse = new Response('Logging Out...', { status: 303, headers: { Location: '/' } }); 25 | deleteCookieResponse.headers.append('Set-Cookie', deleteCookieHeader); 26 | } 27 | } 28 | return deleteCookieResponse; 29 | } 30 | 31 | //run oauth steps 32 | for (const provider of providers) { 33 | if (event.url.pathname === provider.authPath) { 34 | const authProvider = provider.getAuthIdentity(); 35 | return new Response('Redirect', { status: 302, headers: authProvider }); 36 | } else if (event.url.pathname === provider.validatePath) { 37 | const token = await provider.getValidation(event); 38 | const user = await provider.getUser(token); 39 | if (user !== undefined) { 40 | //TODO: here is where we will make the Oauth session 41 | userMain = user.username; 42 | return new Response('Redirect', { status: 303, headers: { Location: provider.redirectPath } }); 43 | } else { 44 | return new Response(`Error in authorizing ${provider.name} user`); 45 | } 46 | } 47 | } 48 | return await resolve(event); 49 | }; 50 | }; 51 | 52 | -------------------------------------------------------------------------------- /src/lib/server/sessionStore/index.ts: -------------------------------------------------------------------------------- 1 | // // We will use a simple in-memory store to store session information. In a big production app you might want to use a cache like Redis. 2 | 3 | // // TODO/ITERATION: send session information back to frontend via sessionStorage and localStorage objects 4 | 5 | import { randomBytes } from 'node:crypto'; 6 | import type { SessionInfo, SessionInfoCache } from '../db/types.ts'; 7 | 8 | /* 9 | // type aliases for SessionInfo and SessionInfoCache--> 10 | // type SessionInfo = { 11 | // username: string; 12 | // //roles: string[]; //not being used currently 13 | // }; 14 | 15 | // type SessionInfoCache = SessionInfo & { 16 | // invalidAt: number; 17 | // }; 18 | */ 19 | 20 | type Sid = string; 21 | 22 | //in memory session Store 23 | const sessionStore = new Map(); 24 | let nextClean = Date.now() + 1000 * 60 * 60; // 1 hour 25 | 26 | function getSid(): Sid { 27 | return randomBytes(32).toString('hex'); 28 | } 29 | 30 | //loops over all sessions and deletes the ones that are expired. 31 | //We call this function every hour when a session is created 32 | function clean() { 33 | const now = Date.now(); 34 | for (const [sid, session] of sessionStore) { 35 | if (session.invalidAt < now) { 36 | sessionStore.delete(sid); 37 | } 38 | } 39 | // // TODO: delete session from browser storage 40 | nextClean = Date.now() + 1000 * 60 * 60; // 1 hour 41 | } 42 | 43 | //calls clean() function if it has been over 1 hour to delete expired sessions 44 | if (Date.now() > nextClean) { 45 | //call in setTimeout to not block the server 46 | setTimeout(() => { 47 | clean(); 48 | }, 5000); 49 | } 50 | 51 | //invoked from makeCookieAndSession on login/nativeAuth.ts 52 | export function createSession(username: string, maxAge: number): string { 53 | //TODO: add functionality to allow Oauth to create a session with the cookie sid that has already been generated by the Oauth provider 54 | 55 | let sid: Sid = ''; 56 | 57 | do { 58 | //generates random sid until a unique one is created 59 | sid = getSid(); 60 | } while (sessionStore.has(sid)); 61 | 62 | // //POSSIBLE ITERATION-currently we do not have "roles" property 63 | // // const roles = getUserRoles(username) 64 | // // roles property add to sessionStore once getUserRoles created 65 | 66 | const data: SessionInfo = { 67 | username 68 | }; 69 | 70 | sessionStore.set(sid, { 71 | ...data, 72 | invalidAt: maxAge 73 | }); 74 | return sid; 75 | } 76 | 77 | 78 | //gets session from sessionStore, if not in store, adds to it 79 | export function getSession(sid: Sid): SessionInfo | undefined { 80 | //if session present in sessionStore 81 | if (sessionStore.has(sid)) { 82 | return sessionStore.get(sid); 83 | } else { 84 | /* 85 | // TODO/ITERATION: get session from browser on frontend and store in session store 86 | // const session = sessionStorage.getItem(username) 87 | // if (session) { 88 | // sessionStore.set(sid, session); 89 | // return session; 90 | // } 91 | */ 92 | } 93 | //if no session, return undefined 94 | return undefined; 95 | } 96 | 97 | //deletes session from sessionStore 98 | export function deleteSession(sid: string): void { 99 | sessionStore.delete(sid); 100 | /* 101 | // // TODO/ITERATION: remove session from browser storage 102 | // // sessionStorage.removeItem(username); 103 | // // localStorage.removeItem(username); 104 | */ 105 | } 106 | 107 | /* 108 | // TODO/ITERATION: send back to frontend to store in browser 109 | // export function setBrowserSession(sid: string, username: string) { 110 | // sessionStorage.setItem(username, sid); 111 | // localStorage.setItem(username, sid); 112 | // } 113 | */ -------------------------------------------------------------------------------- /src/routes/+layout.server.ts: -------------------------------------------------------------------------------- 1 | // Used for development testing 2 | 3 | // Imports type from sveltekit, only works when vite server is running 4 | import type { LayoutServerLoad } from '/$types'; 5 | 6 | export const load = (async ({ locals }) => { 7 | const { username, failure } = locals; 8 | // TODO: add session data from event.locals when session functionality is complete 9 | //const { session } = locals; 10 | return await { username, failure }; 11 | }) satisfies LayoutServerLoad; 12 | -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- 1 | 2 | 3 | 15 | 16 |
17 | 40 |
41 | 42 | 43 | 44 | 46 | -------------------------------------------------------------------------------- /src/routes/login/+page.svelte: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 |
11 |

Login or Register

12 |
13 | 19 | 25 | 26 | 27 | 28 | 29 | {#if data.failure} 30 |
{data.failure}
31 | {/if} 32 | 33 | 37 | 41 |
42 |
43 | 44 | -------------------------------------------------------------------------------- /src/routes/secret/+page.svelte: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | {#if $page.data.username} 8 |

Secret Protected page

9 |

10 | This is a protected content. You can access this content because you are 11 | signed in. 12 |

13 |

{$page.data.username}

14 | 15 | 16 | {:else} 17 |

Access Denied You must be signed in to view this page

18 | {/if} -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- 1 | declare namespace App { 2 | interface Locals { 3 | username?: string; 4 | failure?: object; 5 | // TODO: add in user roles functionality feature 6 | // roles?: string[]; 7 | } 8 | 9 | // TODO creating an Error state for user management 10 | // interface Error { 11 | // code: string; 12 | // id: string; 13 | // message: string = 'Invalid password'; 14 | // } 15 | } -------------------------------------------------------------------------------- /static/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/Svault/075b00480f980d859016fd9fe4e1495345986c72/static/Demo.gif -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/Svault/075b00480f980d859016fd9fe4e1495345986c72/static/favicon.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- 1 | import adapter from '@sveltejs/adapter-auto'; 2 | import { vitePreprocess } from '@sveltejs/kit/vite'; 3 | 4 | /** @type {import('@sveltejs/kit').Config} */ 5 | const config = { 6 | // Consult https://kit.svelte.dev/docs/integrations#preprocessors 7 | // for more information about preprocessors 8 | preprocess: vitePreprocess(), 9 | 10 | kit: { 11 | // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. 12 | // If your environment is not supported or you settled on a specific environment, switch out the adapter. 13 | // See https://kit.svelte.dev/docs/adapters for more information about adapters. 14 | adapter: adapter() 15 | } 16 | }; 17 | 18 | export default config; 19 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./.svelte-kit/tsconfig.json", 3 | "compilerOptions": { 4 | "allowJs": true, 5 | "checkJs": true, 6 | "esModuleInterop": true, 7 | "forceConsistentCasingInFileNames": true, 8 | "resolveJsonModule": true, 9 | "skipLibCheck": true, 10 | "sourceMap": true, 11 | "strict": true, 12 | "moduleResolution": "NodeNext", 13 | "allowImportingTsExtensions": true, 14 | "outDir": "./dist", 15 | }, 16 | "exclude": ["node_modules", "typings"] 17 | } 18 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { sveltekit } from '@sveltejs/kit/vite'; 2 | import { defineConfig } from 'vite'; 3 | 4 | export default defineConfig({ 5 | plugins: [sveltekit()] 6 | }); 7 | --------------------------------------------------------------------------------