├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── README.md ├── logging.conf ├── next-env.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── screendemo.gif ├── src └── app │ ├── api │ ├── aircraft │ │ └── route.ts │ └── getroute │ │ └── route.ts │ ├── components │ ├── PlaneAnimation.tsx │ └── SlideHolder.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── lib │ ├── classNames.ts │ └── haversine.ts │ └── page.tsx ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | .pnpm-debug.log* 9 | 10 | # Diagnostic reports (https://nodejs.org/api/report.html) 11 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 | 13 | # Runtime data 14 | pids 15 | *.pid 16 | *.seed 17 | *.pid.lock 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 | .grunt 31 | 32 | # Bower dependency directory (https://bower.io/) 33 | bower_components 34 | 35 | # node-waf configuration 36 | .lock-wscript 37 | 38 | # Compiled binary addons (https://nodejs.org/api/addons.html) 39 | build/Release 40 | 41 | # Dependency directories 42 | node_modules/ 43 | jspm_packages/ 44 | 45 | # Snowpack dependency directory (https://snowpack.dev/) 46 | web_modules/ 47 | 48 | # TypeScript cache 49 | *.tsbuildinfo 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Optional stylelint cache 58 | .stylelintcache 59 | 60 | # Microbundle cache 61 | .rpt2_cache/ 62 | .rts2_cache_cjs/ 63 | .rts2_cache_es/ 64 | .rts2_cache_umd/ 65 | 66 | # Optional REPL history 67 | .node_repl_history 68 | 69 | # Output of 'npm pack' 70 | *.tgz 71 | 72 | # Yarn Integrity file 73 | .yarn-integrity 74 | 75 | # dotenv environment variable files 76 | .env 77 | .env.development.local 78 | .env.test.local 79 | .env.production.local 80 | .env.local 81 | 82 | # parcel-bundler cache (https://parceljs.org/) 83 | .cache 84 | .parcel-cache 85 | 86 | # Next.js build output 87 | .next 88 | out 89 | 90 | # Nuxt.js build / generate output 91 | .nuxt 92 | dist 93 | 94 | # Gatsby files 95 | .cache/ 96 | # Comment in the public line in if your project uses Gatsby and not Next.js 97 | # https://nextjs.org/blog/next-9-1#public-directory-support 98 | # public 99 | 100 | # vuepress build output 101 | .vuepress/dist 102 | 103 | # vuepress v2.x temp and cache directory 104 | .temp 105 | .cache 106 | 107 | # Docusaurus cache and generated files 108 | .docusaurus 109 | 110 | # Serverless directories 111 | .serverless/ 112 | 113 | # FuseBox cache 114 | .fusebox/ 115 | 116 | # DynamoDB Local files 117 | .dynamodb/ 118 | 119 | # TernJS port file 120 | .tern-port 121 | 122 | # Stores VSCode versions used for testing VSCode extensions 123 | .vscode-test 124 | 125 | # yarn v2 126 | .yarn/cache 127 | .yarn/unplugged 128 | .yarn/build-state.yml 129 | .yarn/install-state.gz 130 | .pnp.* 131 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetclock/jetscreen-v2/61d8dbb26dca96ae7ee61ed6f78c8d28822f3aed/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Jetscreen 2 | ![](https://github.com/oliverrees/jetscreen/blob/main/screendemo.gif) 3 | 4 | If you live on a flight path or often have planes flying overhead, you might wonder where in the world they've come from. Jetscreen uses live ADS-B data to identify planes flying overhead, and then looks up the origin via the [adsbdb API](https://www.adsbdb.com/). 5 | 6 | ## Requirements 7 | To run Jetscreen, you'll need the following hardware: 8 | - A Raspberry Pi (tested on a 3B+) 9 | - A monitor (the demo uses [WaveShare's 7.9in display](https://www.waveshare.com/wiki/7.9inch_HDMI_LCD)) 10 | - A USB ADS-B receiver (the demo uses the [FlightAware Pro Stick Plus](https://uk.flightaware.com/adsb/prostick/)) 11 | 12 | ### 1. Set up the Raspberry Pi 13 | Ensure your Raspberry Pi is configured with an operating system like Raspbian, and connected to a monitor and keyboard. You'll also need an internet connection via Wi-Fi or Ethernet. 14 | 15 | First, update the system by running: 16 | ```bash 17 | sudo apt update && sudo apt upgrade -y 18 | ``` 19 | 20 | ### 2. Setup ADS-B Receiver 21 | Follow the instructions for your specific USB ADS-B receiver (like the [FlightAware Pro Stick Plus](https://uk.flightaware.com/adsb/prostick/)) to install the required software. This should expose a local URL where you can access the live ADS-B data stream (for the FlightAware Pro Stick Plus, it's `http://[local IP]:8080/data/aircraft.json`). 22 | 23 | 24 | ### 3. Install Node.js and npm 25 | Jetscreen is built on Next.js, which requires Node.js and npm to run. Install them using the following commands: 26 | 27 | ```bash 28 | sudo apt install nodejs npm -y 29 | ``` 30 | 31 | To verify the installation: 32 | ```bash 33 | node -v 34 | npm -v 35 | ``` 36 | 37 | Ensure you have the latest versions. 38 | 39 | ### 4. Clone the Jetscreen Repository 40 | Clone the **Jetscreen** repository from GitHub: 41 | 42 | ```bash 43 | git clone https://github.com/oliverrees/jetscreen-v2.git 44 | ``` 45 | 46 | Navigate into the project folder: 47 | ```bash 48 | cd jetscreen-v2 49 | ``` 50 | 51 | ### 5. Install Dependencies 52 | Run the following command to install the necessary packages: 53 | 54 | ```bash 55 | npm install 56 | ``` 57 | 58 | ### 6. Create the `.env.local` File 59 | Inside the root directory of the project, create a `.env.local` file to store environment variables: 60 | 61 | ```bash 62 | touch .env.local 63 | ``` 64 | 65 | Edit this file to include the following variables: 66 | ```bash 67 | LOCAL_ADSB_URL=http://192.168.1.100:8080/data/aircraft.json 68 | NEXT_PUBLIC_FLIGHT_DETAILS_URL=https://api.adsbdb.com/v0/callsign/ 69 | NEXT_PUBLIC_CENTER_LAT=51.47674088740635 70 | NEXT_PUBLIC_CENTER_LON=-0.23339838187103154 71 | NEXT_PUBLIC_RADIUS_KM=2 72 | ``` 73 | 74 | #### Explanation of Environment Variables: 75 | - `LOCAL_ADSB_URL`: The URL of your local ADS-B data stream (replace with your actual IP and port). 76 | - `NEXT_PUBLIC_FLIGHT_DETAILS_URL`: The adsbdb API URL to fetch flight details by callsign - [hexdb.io](https://hexdb.io) is another option. 77 | - `NEXT_PUBLIC_CENTER_LAT`: The latitude of the center point of the map where you're tracking planes (replace with your location). 78 | - `NEXT_PUBLIC_CENTER_LON`: The longitude of the center point (replace with your location). 79 | - `NEXT_PUBLIC_RADIUS_KM`: The radius (in kilometers) for which you want to track planes around your center point. 80 | 81 | ### 7. Start the Development Server 82 | To start the server in development mode, run the following command: 83 | 84 | ```bash 85 | npm run dev 86 | ``` 87 | 88 | This will start the server, and you can view Jetscreen by navigating to `http://localhost:3000` in your browser. 89 | 90 | ### 8. Optional: Run Jetscreen in Production 91 | For production mode, first build the app: 92 | 93 | ```bash 94 | npm run build 95 | ``` 96 | 97 | Then, start the production server: 98 | 99 | ```bash 100 | npm start 101 | ``` 102 | 103 | Now, you can access Jetscreen from any device on the same network by navigating to the Raspberry Pi's IP address and port `3000` in a browser. 104 | 105 | 106 | ### 9. Set up the browser on the Raspberry Pi 107 | To run Jetscreen in full-screen mode on the Raspberry Pi, you can use a browser like Chromium. Install it using the following command: 108 | 109 | ```bash 110 | sudo apt install chromium-browser -y 111 | ``` 112 | 113 | To open Jetscreen in full-screen mode, run: 114 | 115 | ```bash 116 | chromium-browser --kiosk http://localhost:3000 117 | ``` 118 | 119 | 120 | 121 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /logging.conf: -------------------------------------------------------------------------------- 1 | [loggers] 2 | keys=root 3 | 4 | [handlers] 5 | keys=consoleHandler 6 | 7 | [formatters] 8 | keys=simpleFormatter 9 | 10 | [logger_root] 11 | level=DEBUG 12 | handlers=consoleHandler 13 | 14 | [handler_consoleHandler] 15 | class=StreamHandler 16 | level=DEBUG 17 | formatter=simpleFormatter 18 | args=(sys.stdout,) 19 | 20 | [formatter_simpleFormatter] 21 | format=%(asctime)s - %(threadName)-10s - %(name)s - %(levelname)s - %(message)s 22 | datefmt= -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | 4 | // NOTE: This file should not be edited 5 | // see https://nextjs.org/docs/basic-features/typescript for more information. 6 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {}; 3 | 4 | module.exports = nextConfig; 5 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "home-v2", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "home-v2", 9 | "version": "0.1.0", 10 | "dependencies": { 11 | "@splidejs/react-splide": "^0.7.12", 12 | "@types/node": "20.3.0", 13 | "@types/react": "18.2.11", 14 | "@types/react-dom": "18.2.4", 15 | "autoprefixer": "10.4.14", 16 | "eslint": "8.42.0", 17 | "eslint-config-next": "13.4.5", 18 | "next": "13.4.5", 19 | "postcss": "8.4.24", 20 | "react": "18.2.0", 21 | "react-dom": "18.2.0", 22 | "react-snowfall": "^1.2.1", 23 | "simple-oauth2": "^5.0.0", 24 | "swr": "^2.1.5", 25 | "tailwindcss": "3.3.2", 26 | "typescript": "5.1.3" 27 | } 28 | }, 29 | "node_modules/@alloc/quick-lru": { 30 | "version": "5.2.0", 31 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 32 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 33 | "engines": { 34 | "node": ">=10" 35 | }, 36 | "funding": { 37 | "url": "https://github.com/sponsors/sindresorhus" 38 | } 39 | }, 40 | "node_modules/@babel/runtime": { 41 | "version": "7.22.5", 42 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz", 43 | "integrity": "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==", 44 | "dependencies": { 45 | "regenerator-runtime": "^0.13.11" 46 | }, 47 | "engines": { 48 | "node": ">=6.9.0" 49 | } 50 | }, 51 | "node_modules/@eslint-community/eslint-utils": { 52 | "version": "4.4.0", 53 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 54 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 55 | "dependencies": { 56 | "eslint-visitor-keys": "^3.3.0" 57 | }, 58 | "engines": { 59 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 60 | }, 61 | "peerDependencies": { 62 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 63 | } 64 | }, 65 | "node_modules/@eslint-community/regexpp": { 66 | "version": "4.5.1", 67 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", 68 | "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", 69 | "engines": { 70 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 71 | } 72 | }, 73 | "node_modules/@eslint/eslintrc": { 74 | "version": "2.0.3", 75 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", 76 | "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==", 77 | "dependencies": { 78 | "ajv": "^6.12.4", 79 | "debug": "^4.3.2", 80 | "espree": "^9.5.2", 81 | "globals": "^13.19.0", 82 | "ignore": "^5.2.0", 83 | "import-fresh": "^3.2.1", 84 | "js-yaml": "^4.1.0", 85 | "minimatch": "^3.1.2", 86 | "strip-json-comments": "^3.1.1" 87 | }, 88 | "engines": { 89 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 90 | }, 91 | "funding": { 92 | "url": "https://opencollective.com/eslint" 93 | } 94 | }, 95 | "node_modules/@eslint/js": { 96 | "version": "8.42.0", 97 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.42.0.tgz", 98 | "integrity": "sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw==", 99 | "engines": { 100 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 101 | } 102 | }, 103 | "node_modules/@hapi/boom": { 104 | "version": "10.0.1", 105 | "resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-10.0.1.tgz", 106 | "integrity": "sha512-ERcCZaEjdH3OgSJlyjVk8pHIFeus91CjKP3v+MpgBNp5IvGzP2l/bRiD78nqYcKPaZdbKkK5vDBVPd2ohHBlsA==", 107 | "dependencies": { 108 | "@hapi/hoek": "^11.0.2" 109 | } 110 | }, 111 | "node_modules/@hapi/boom/node_modules/@hapi/hoek": { 112 | "version": "11.0.2", 113 | "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-11.0.2.tgz", 114 | "integrity": "sha512-aKmlCO57XFZ26wso4rJsW4oTUnrgTFw2jh3io7CAtO9w4UltBNwRXvXIVzzyfkaaLRo3nluP/19msA8vDUUuKw==" 115 | }, 116 | "node_modules/@hapi/bourne": { 117 | "version": "3.0.0", 118 | "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-3.0.0.tgz", 119 | "integrity": "sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w==" 120 | }, 121 | "node_modules/@hapi/hoek": { 122 | "version": "10.0.1", 123 | "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-10.0.1.tgz", 124 | "integrity": "sha512-CvlW7jmOhWzuqOqiJQ3rQVLMcREh0eel4IBnxDx2FAcK8g7qoJRQK4L1CPBASoCY6y8e6zuCy3f2g+HWdkzcMw==" 125 | }, 126 | "node_modules/@hapi/topo": { 127 | "version": "5.1.0", 128 | "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", 129 | "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", 130 | "dependencies": { 131 | "@hapi/hoek": "^9.0.0" 132 | } 133 | }, 134 | "node_modules/@hapi/topo/node_modules/@hapi/hoek": { 135 | "version": "9.3.0", 136 | "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", 137 | "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" 138 | }, 139 | "node_modules/@hapi/wreck": { 140 | "version": "18.0.1", 141 | "resolved": "https://registry.npmjs.org/@hapi/wreck/-/wreck-18.0.1.tgz", 142 | "integrity": "sha512-OLHER70+rZxvDl75xq3xXOfd3e8XIvz8fWY0dqg92UvhZ29zo24vQgfqgHSYhB5ZiuFpSLeriOisAlxAo/1jWg==", 143 | "dependencies": { 144 | "@hapi/boom": "^10.0.1", 145 | "@hapi/bourne": "^3.0.0", 146 | "@hapi/hoek": "^11.0.2" 147 | } 148 | }, 149 | "node_modules/@hapi/wreck/node_modules/@hapi/hoek": { 150 | "version": "11.0.2", 151 | "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-11.0.2.tgz", 152 | "integrity": "sha512-aKmlCO57XFZ26wso4rJsW4oTUnrgTFw2jh3io7CAtO9w4UltBNwRXvXIVzzyfkaaLRo3nluP/19msA8vDUUuKw==" 153 | }, 154 | "node_modules/@humanwhocodes/config-array": { 155 | "version": "0.11.10", 156 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", 157 | "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", 158 | "dependencies": { 159 | "@humanwhocodes/object-schema": "^1.2.1", 160 | "debug": "^4.1.1", 161 | "minimatch": "^3.0.5" 162 | }, 163 | "engines": { 164 | "node": ">=10.10.0" 165 | } 166 | }, 167 | "node_modules/@humanwhocodes/module-importer": { 168 | "version": "1.0.1", 169 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 170 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 171 | "engines": { 172 | "node": ">=12.22" 173 | }, 174 | "funding": { 175 | "type": "github", 176 | "url": "https://github.com/sponsors/nzakas" 177 | } 178 | }, 179 | "node_modules/@humanwhocodes/object-schema": { 180 | "version": "1.2.1", 181 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 182 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" 183 | }, 184 | "node_modules/@jridgewell/gen-mapping": { 185 | "version": "0.3.3", 186 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", 187 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", 188 | "dependencies": { 189 | "@jridgewell/set-array": "^1.0.1", 190 | "@jridgewell/sourcemap-codec": "^1.4.10", 191 | "@jridgewell/trace-mapping": "^0.3.9" 192 | }, 193 | "engines": { 194 | "node": ">=6.0.0" 195 | } 196 | }, 197 | "node_modules/@jridgewell/resolve-uri": { 198 | "version": "3.1.0", 199 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", 200 | "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", 201 | "engines": { 202 | "node": ">=6.0.0" 203 | } 204 | }, 205 | "node_modules/@jridgewell/set-array": { 206 | "version": "1.1.2", 207 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 208 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 209 | "engines": { 210 | "node": ">=6.0.0" 211 | } 212 | }, 213 | "node_modules/@jridgewell/sourcemap-codec": { 214 | "version": "1.4.15", 215 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 216 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" 217 | }, 218 | "node_modules/@jridgewell/trace-mapping": { 219 | "version": "0.3.18", 220 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", 221 | "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", 222 | "dependencies": { 223 | "@jridgewell/resolve-uri": "3.1.0", 224 | "@jridgewell/sourcemap-codec": "1.4.14" 225 | } 226 | }, 227 | "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { 228 | "version": "1.4.14", 229 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", 230 | "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" 231 | }, 232 | "node_modules/@next/env": { 233 | "version": "13.4.5", 234 | "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.5.tgz", 235 | "integrity": "sha512-SG/gKH6eij4vwQy87b/3mbpQ1X3x2vUdnpwq6/qL2IQWjtq58EY/UuNAp9CoEZoC9sI4L9AD1r+73Z9r4d3uug==" 236 | }, 237 | "node_modules/@next/eslint-plugin-next": { 238 | "version": "13.4.5", 239 | "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.5.tgz", 240 | "integrity": "sha512-/xD/kyJhXmBZq+0xGKOdjL22c9/4i3mBAXaU9aOGEHTXqqFeOz8scJbScWF13aMqigeoFCsDqngIB2MIatcn4g==", 241 | "dependencies": { 242 | "glob": "7.1.7" 243 | } 244 | }, 245 | "node_modules/@next/swc-darwin-arm64": { 246 | "version": "13.4.5", 247 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.5.tgz", 248 | "integrity": "sha512-XvTzi2ASUN5bECFIAAcBiSoDb0xsq+KLj4F0bof4d4rdc+FgOqLvseGQaOXwVi1TIh5bHa7o4b6droSJMO5+2g==", 249 | "cpu": [ 250 | "arm64" 251 | ], 252 | "optional": true, 253 | "os": [ 254 | "darwin" 255 | ], 256 | "engines": { 257 | "node": ">= 10" 258 | } 259 | }, 260 | "node_modules/@next/swc-darwin-x64": { 261 | "version": "13.4.5", 262 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.5.tgz", 263 | "integrity": "sha512-NQdqal/VKAqlJTuzhjZmNtdo8QSqwmfO7b2xJSAengTEVxQvsH76oGEzQeIv8Ci4NP6DysAFtFrJq++TmIxcUA==", 264 | "cpu": [ 265 | "x64" 266 | ], 267 | "optional": true, 268 | "os": [ 269 | "darwin" 270 | ], 271 | "engines": { 272 | "node": ">= 10" 273 | } 274 | }, 275 | "node_modules/@next/swc-linux-arm64-gnu": { 276 | "version": "13.4.5", 277 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.5.tgz", 278 | "integrity": "sha512-nB8TjtpJCXtzIFjYOMbnQu68ajkA8QK58TreHjTGojSQjsF0StDqo5zFHglVVVHrd8d3N/+EjC18yFNSWnd/ZA==", 279 | "cpu": [ 280 | "arm64" 281 | ], 282 | "optional": true, 283 | "os": [ 284 | "linux" 285 | ], 286 | "engines": { 287 | "node": ">= 10" 288 | } 289 | }, 290 | "node_modules/@next/swc-linux-arm64-musl": { 291 | "version": "13.4.5", 292 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.5.tgz", 293 | "integrity": "sha512-W126XUW599OV3giSH9Co40VpT8VAOT47xONVHXZaYEpeca0qEevjj6WUr5IJu/8u+XGWm5xI1S0DYWjR6W+olw==", 294 | "cpu": [ 295 | "arm64" 296 | ], 297 | "optional": true, 298 | "os": [ 299 | "linux" 300 | ], 301 | "engines": { 302 | "node": ">= 10" 303 | } 304 | }, 305 | "node_modules/@next/swc-linux-x64-gnu": { 306 | "version": "13.4.5", 307 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.5.tgz", 308 | "integrity": "sha512-ZbPLO/oztQdtjGmWvGhRmtkZ6j9kQqg65kiO7F7Ijj7ojTtu3hh/vY+XRsHa/4Cse6HgyJ8XGZJMGoLb8ecQfQ==", 309 | "cpu": [ 310 | "x64" 311 | ], 312 | "optional": true, 313 | "os": [ 314 | "linux" 315 | ], 316 | "engines": { 317 | "node": ">= 10" 318 | } 319 | }, 320 | "node_modules/@next/swc-linux-x64-musl": { 321 | "version": "13.4.5", 322 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.5.tgz", 323 | "integrity": "sha512-f+/h8KMNixVUoRB+2vza8I+jsthJ4KcvopGUsDIUHe7Q4t+m8nKwGFBeyNu9qNIenYK5g5QYEsSwYFEqZylrTQ==", 324 | "cpu": [ 325 | "x64" 326 | ], 327 | "optional": true, 328 | "os": [ 329 | "linux" 330 | ], 331 | "engines": { 332 | "node": ">= 10" 333 | } 334 | }, 335 | "node_modules/@next/swc-win32-arm64-msvc": { 336 | "version": "13.4.5", 337 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.5.tgz", 338 | "integrity": "sha512-dvtPQZ5+J+zUE1uq7gP853Oj63e+n0T1ydZ/yRdVh7d8zW9ZFuC9fFrg3MqP1cv1NPPur8rrTqDKN2mRBkSSBw==", 339 | "cpu": [ 340 | "arm64" 341 | ], 342 | "optional": true, 343 | "os": [ 344 | "win32" 345 | ], 346 | "engines": { 347 | "node": ">= 10" 348 | } 349 | }, 350 | "node_modules/@next/swc-win32-ia32-msvc": { 351 | "version": "13.4.5", 352 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.5.tgz", 353 | "integrity": "sha512-gK9zwGe25x31S4AjPy3Bf2niQvHIAbmwgkzmqWG3OmD4K2Z/Dh2ju4vuyzPzIt0pwQe4B520meP9NizTBmVWSg==", 354 | "cpu": [ 355 | "ia32" 356 | ], 357 | "optional": true, 358 | "os": [ 359 | "win32" 360 | ], 361 | "engines": { 362 | "node": ">= 10" 363 | } 364 | }, 365 | "node_modules/@next/swc-win32-x64-msvc": { 366 | "version": "13.4.5", 367 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.5.tgz", 368 | "integrity": "sha512-iyNQVc7eGehrik9RJt9xGcnO6b/pi8C7GCfg8RGenx1IlalEKbYRgBJloF7DQzwlrV47E9bQl8swT+JawaNcKA==", 369 | "cpu": [ 370 | "x64" 371 | ], 372 | "optional": true, 373 | "os": [ 374 | "win32" 375 | ], 376 | "engines": { 377 | "node": ">= 10" 378 | } 379 | }, 380 | "node_modules/@nodelib/fs.scandir": { 381 | "version": "2.1.5", 382 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 383 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 384 | "dependencies": { 385 | "@nodelib/fs.stat": "2.0.5", 386 | "run-parallel": "^1.1.9" 387 | }, 388 | "engines": { 389 | "node": ">= 8" 390 | } 391 | }, 392 | "node_modules/@nodelib/fs.stat": { 393 | "version": "2.0.5", 394 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 395 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 396 | "engines": { 397 | "node": ">= 8" 398 | } 399 | }, 400 | "node_modules/@nodelib/fs.walk": { 401 | "version": "1.2.8", 402 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 403 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 404 | "dependencies": { 405 | "@nodelib/fs.scandir": "2.1.5", 406 | "fastq": "^1.6.0" 407 | }, 408 | "engines": { 409 | "node": ">= 8" 410 | } 411 | }, 412 | "node_modules/@pkgr/utils": { 413 | "version": "2.4.1", 414 | "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.1.tgz", 415 | "integrity": "sha512-JOqwkgFEyi+OROIyq7l4Jy28h/WwhDnG/cPkXG2Z1iFbubB6jsHW1NDvmyOzTBxHr3yg68YGirmh1JUgMqa+9w==", 416 | "dependencies": { 417 | "cross-spawn": "^7.0.3", 418 | "fast-glob": "^3.2.12", 419 | "is-glob": "^4.0.3", 420 | "open": "^9.1.0", 421 | "picocolors": "^1.0.0", 422 | "tslib": "^2.5.0" 423 | }, 424 | "engines": { 425 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 426 | }, 427 | "funding": { 428 | "url": "https://opencollective.com/unts" 429 | } 430 | }, 431 | "node_modules/@rushstack/eslint-patch": { 432 | "version": "1.3.1", 433 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.1.tgz", 434 | "integrity": "sha512-RkmuBcqiNioeeBKbgzMlOdreUkJfYaSjwgx9XDgGGpjvWgyaxWvDmZVSN9CS6LjEASadhgPv2BcFp+SeouWXXA==" 435 | }, 436 | "node_modules/@sideway/address": { 437 | "version": "4.1.4", 438 | "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", 439 | "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", 440 | "dependencies": { 441 | "@hapi/hoek": "^9.0.0" 442 | } 443 | }, 444 | "node_modules/@sideway/address/node_modules/@hapi/hoek": { 445 | "version": "9.3.0", 446 | "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", 447 | "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" 448 | }, 449 | "node_modules/@sideway/formula": { 450 | "version": "3.0.1", 451 | "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", 452 | "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==" 453 | }, 454 | "node_modules/@sideway/pinpoint": { 455 | "version": "2.0.0", 456 | "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", 457 | "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" 458 | }, 459 | "node_modules/@splidejs/react-splide": { 460 | "version": "0.7.12", 461 | "resolved": "https://registry.npmjs.org/@splidejs/react-splide/-/react-splide-0.7.12.tgz", 462 | "integrity": "sha512-UfXH+j47jsMc4x5HA/aOwuuHPqn6y9+ZTNYPWDRD8iLKvIVMZlzq2unjUEvyDAU+TTVPZOXkG2Ojeoz0P4AkZw==", 463 | "dependencies": { 464 | "@splidejs/splide": "^4.1.3" 465 | } 466 | }, 467 | "node_modules/@splidejs/splide": { 468 | "version": "4.1.4", 469 | "resolved": "https://registry.npmjs.org/@splidejs/splide/-/splide-4.1.4.tgz", 470 | "integrity": "sha512-5I30evTJcAJQXt6vJ26g2xEkG+l1nXcpEw4xpKh0/FWQ8ozmAeTbtniVtVmz2sH1Es3vgfC4SS8B2X4o5JMptA==" 471 | }, 472 | "node_modules/@swc/helpers": { 473 | "version": "0.5.1", 474 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", 475 | "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", 476 | "dependencies": { 477 | "tslib": "^2.4.0" 478 | } 479 | }, 480 | "node_modules/@types/json5": { 481 | "version": "0.0.29", 482 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 483 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" 484 | }, 485 | "node_modules/@types/node": { 486 | "version": "20.3.0", 487 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.0.tgz", 488 | "integrity": "sha512-cumHmIAf6On83X7yP+LrsEyUOf/YlociZelmpRYaGFydoaPdxdt80MAbu6vWerQT2COCp2nPvHdsbD7tHn/YlQ==" 489 | }, 490 | "node_modules/@types/prop-types": { 491 | "version": "15.7.5", 492 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", 493 | "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" 494 | }, 495 | "node_modules/@types/react": { 496 | "version": "18.2.11", 497 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.11.tgz", 498 | "integrity": "sha512-+hsJr9hmwyDecSMQAmX7drgbDpyE+EgSF6t7+5QEBAn1tQK7kl1vWZ4iRf6SjQ8lk7dyEULxUmZOIpN0W5baZA==", 499 | "dependencies": { 500 | "@types/prop-types": "*", 501 | "@types/scheduler": "*", 502 | "csstype": "^3.0.2" 503 | } 504 | }, 505 | "node_modules/@types/react-dom": { 506 | "version": "18.2.4", 507 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.4.tgz", 508 | "integrity": "sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==", 509 | "dependencies": { 510 | "@types/react": "*" 511 | } 512 | }, 513 | "node_modules/@types/scheduler": { 514 | "version": "0.16.3", 515 | "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", 516 | "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" 517 | }, 518 | "node_modules/@typescript-eslint/parser": { 519 | "version": "5.59.9", 520 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.9.tgz", 521 | "integrity": "sha512-FsPkRvBtcLQ/eVK1ivDiNYBjn3TGJdXy2fhXX+rc7czWl4ARwnpArwbihSOHI2Peg9WbtGHrbThfBUkZZGTtvQ==", 522 | "dependencies": { 523 | "@typescript-eslint/scope-manager": "5.59.9", 524 | "@typescript-eslint/types": "5.59.9", 525 | "@typescript-eslint/typescript-estree": "5.59.9", 526 | "debug": "^4.3.4" 527 | }, 528 | "engines": { 529 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 530 | }, 531 | "funding": { 532 | "type": "opencollective", 533 | "url": "https://opencollective.com/typescript-eslint" 534 | }, 535 | "peerDependencies": { 536 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 537 | }, 538 | "peerDependenciesMeta": { 539 | "typescript": { 540 | "optional": true 541 | } 542 | } 543 | }, 544 | "node_modules/@typescript-eslint/scope-manager": { 545 | "version": "5.59.9", 546 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.9.tgz", 547 | "integrity": "sha512-8RA+E+w78z1+2dzvK/tGZ2cpGigBZ58VMEHDZtpE1v+LLjzrYGc8mMaTONSxKyEkz3IuXFM0IqYiGHlCsmlZxQ==", 548 | "dependencies": { 549 | "@typescript-eslint/types": "5.59.9", 550 | "@typescript-eslint/visitor-keys": "5.59.9" 551 | }, 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/types": { 561 | "version": "5.59.9", 562 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.9.tgz", 563 | "integrity": "sha512-uW8H5NRgTVneSVTfiCVffBb8AbwWSKg7qcA4Ot3JI3MPCJGsB4Db4BhvAODIIYE5mNj7Q+VJkK7JxmRhk2Lyjw==", 564 | "engines": { 565 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 566 | }, 567 | "funding": { 568 | "type": "opencollective", 569 | "url": "https://opencollective.com/typescript-eslint" 570 | } 571 | }, 572 | "node_modules/@typescript-eslint/typescript-estree": { 573 | "version": "5.59.9", 574 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.9.tgz", 575 | "integrity": "sha512-pmM0/VQ7kUhd1QyIxgS+aRvMgw+ZljB3eDb+jYyp6d2bC0mQWLzUDF+DLwCTkQ3tlNyVsvZRXjFyV0LkU/aXjA==", 576 | "dependencies": { 577 | "@typescript-eslint/types": "5.59.9", 578 | "@typescript-eslint/visitor-keys": "5.59.9", 579 | "debug": "^4.3.4", 580 | "globby": "^11.1.0", 581 | "is-glob": "^4.0.3", 582 | "semver": "^7.3.7", 583 | "tsutils": "^3.21.0" 584 | }, 585 | "engines": { 586 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 587 | }, 588 | "funding": { 589 | "type": "opencollective", 590 | "url": "https://opencollective.com/typescript-eslint" 591 | }, 592 | "peerDependenciesMeta": { 593 | "typescript": { 594 | "optional": true 595 | } 596 | } 597 | }, 598 | "node_modules/@typescript-eslint/visitor-keys": { 599 | "version": "5.59.9", 600 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.9.tgz", 601 | "integrity": "sha512-bT7s0td97KMaLwpEBckbzj/YohnvXtqbe2XgqNvTl6RJVakY5mvENOTPvw5u66nljfZxthESpDozs86U+oLY8Q==", 602 | "dependencies": { 603 | "@typescript-eslint/types": "5.59.9", 604 | "eslint-visitor-keys": "^3.3.0" 605 | }, 606 | "engines": { 607 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 608 | }, 609 | "funding": { 610 | "type": "opencollective", 611 | "url": "https://opencollective.com/typescript-eslint" 612 | } 613 | }, 614 | "node_modules/acorn": { 615 | "version": "8.8.2", 616 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", 617 | "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", 618 | "bin": { 619 | "acorn": "bin/acorn" 620 | }, 621 | "engines": { 622 | "node": ">=0.4.0" 623 | } 624 | }, 625 | "node_modules/acorn-jsx": { 626 | "version": "5.3.2", 627 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 628 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 629 | "peerDependencies": { 630 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 631 | } 632 | }, 633 | "node_modules/ajv": { 634 | "version": "6.12.6", 635 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 636 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 637 | "dependencies": { 638 | "fast-deep-equal": "^3.1.1", 639 | "fast-json-stable-stringify": "^2.0.0", 640 | "json-schema-traverse": "^0.4.1", 641 | "uri-js": "^4.2.2" 642 | }, 643 | "funding": { 644 | "type": "github", 645 | "url": "https://github.com/sponsors/epoberezkin" 646 | } 647 | }, 648 | "node_modules/ansi-regex": { 649 | "version": "5.0.1", 650 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 651 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 652 | "engines": { 653 | "node": ">=8" 654 | } 655 | }, 656 | "node_modules/ansi-styles": { 657 | "version": "4.3.0", 658 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 659 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 660 | "dependencies": { 661 | "color-convert": "^2.0.1" 662 | }, 663 | "engines": { 664 | "node": ">=8" 665 | }, 666 | "funding": { 667 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 668 | } 669 | }, 670 | "node_modules/any-promise": { 671 | "version": "1.3.0", 672 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 673 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" 674 | }, 675 | "node_modules/anymatch": { 676 | "version": "3.1.3", 677 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 678 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 679 | "dependencies": { 680 | "normalize-path": "^3.0.0", 681 | "picomatch": "^2.0.4" 682 | }, 683 | "engines": { 684 | "node": ">= 8" 685 | } 686 | }, 687 | "node_modules/arg": { 688 | "version": "5.0.2", 689 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 690 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" 691 | }, 692 | "node_modules/argparse": { 693 | "version": "2.0.1", 694 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 695 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" 696 | }, 697 | "node_modules/aria-query": { 698 | "version": "5.1.3", 699 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", 700 | "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", 701 | "dependencies": { 702 | "deep-equal": "^2.0.5" 703 | } 704 | }, 705 | "node_modules/array-buffer-byte-length": { 706 | "version": "1.0.0", 707 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", 708 | "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", 709 | "dependencies": { 710 | "call-bind": "^1.0.2", 711 | "is-array-buffer": "^3.0.1" 712 | }, 713 | "funding": { 714 | "url": "https://github.com/sponsors/ljharb" 715 | } 716 | }, 717 | "node_modules/array-includes": { 718 | "version": "3.1.6", 719 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", 720 | "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", 721 | "dependencies": { 722 | "call-bind": "^1.0.2", 723 | "define-properties": "^1.1.4", 724 | "es-abstract": "^1.20.4", 725 | "get-intrinsic": "^1.1.3", 726 | "is-string": "^1.0.7" 727 | }, 728 | "engines": { 729 | "node": ">= 0.4" 730 | }, 731 | "funding": { 732 | "url": "https://github.com/sponsors/ljharb" 733 | } 734 | }, 735 | "node_modules/array-union": { 736 | "version": "2.1.0", 737 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 738 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 739 | "engines": { 740 | "node": ">=8" 741 | } 742 | }, 743 | "node_modules/array.prototype.flat": { 744 | "version": "1.3.1", 745 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", 746 | "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", 747 | "dependencies": { 748 | "call-bind": "^1.0.2", 749 | "define-properties": "^1.1.4", 750 | "es-abstract": "^1.20.4", 751 | "es-shim-unscopables": "^1.0.0" 752 | }, 753 | "engines": { 754 | "node": ">= 0.4" 755 | }, 756 | "funding": { 757 | "url": "https://github.com/sponsors/ljharb" 758 | } 759 | }, 760 | "node_modules/array.prototype.flatmap": { 761 | "version": "1.3.1", 762 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", 763 | "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", 764 | "dependencies": { 765 | "call-bind": "^1.0.2", 766 | "define-properties": "^1.1.4", 767 | "es-abstract": "^1.20.4", 768 | "es-shim-unscopables": "^1.0.0" 769 | }, 770 | "engines": { 771 | "node": ">= 0.4" 772 | }, 773 | "funding": { 774 | "url": "https://github.com/sponsors/ljharb" 775 | } 776 | }, 777 | "node_modules/array.prototype.tosorted": { 778 | "version": "1.1.1", 779 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", 780 | "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", 781 | "dependencies": { 782 | "call-bind": "^1.0.2", 783 | "define-properties": "^1.1.4", 784 | "es-abstract": "^1.20.4", 785 | "es-shim-unscopables": "^1.0.0", 786 | "get-intrinsic": "^1.1.3" 787 | } 788 | }, 789 | "node_modules/ast-types-flow": { 790 | "version": "0.0.7", 791 | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", 792 | "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" 793 | }, 794 | "node_modules/autoprefixer": { 795 | "version": "10.4.14", 796 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", 797 | "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", 798 | "funding": [ 799 | { 800 | "type": "opencollective", 801 | "url": "https://opencollective.com/postcss/" 802 | }, 803 | { 804 | "type": "tidelift", 805 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 806 | } 807 | ], 808 | "dependencies": { 809 | "browserslist": "^4.21.5", 810 | "caniuse-lite": "^1.0.30001464", 811 | "fraction.js": "^4.2.0", 812 | "normalize-range": "^0.1.2", 813 | "picocolors": "^1.0.0", 814 | "postcss-value-parser": "^4.2.0" 815 | }, 816 | "bin": { 817 | "autoprefixer": "bin/autoprefixer" 818 | }, 819 | "engines": { 820 | "node": "^10 || ^12 || >=14" 821 | }, 822 | "peerDependencies": { 823 | "postcss": "^8.1.0" 824 | } 825 | }, 826 | "node_modules/available-typed-arrays": { 827 | "version": "1.0.5", 828 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 829 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", 830 | "engines": { 831 | "node": ">= 0.4" 832 | }, 833 | "funding": { 834 | "url": "https://github.com/sponsors/ljharb" 835 | } 836 | }, 837 | "node_modules/axe-core": { 838 | "version": "4.7.2", 839 | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", 840 | "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", 841 | "engines": { 842 | "node": ">=4" 843 | } 844 | }, 845 | "node_modules/axobject-query": { 846 | "version": "3.1.1", 847 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", 848 | "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", 849 | "dependencies": { 850 | "deep-equal": "^2.0.5" 851 | } 852 | }, 853 | "node_modules/balanced-match": { 854 | "version": "1.0.2", 855 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 856 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 857 | }, 858 | "node_modules/big-integer": { 859 | "version": "1.6.51", 860 | "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", 861 | "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", 862 | "engines": { 863 | "node": ">=0.6" 864 | } 865 | }, 866 | "node_modules/binary-extensions": { 867 | "version": "2.2.0", 868 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 869 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 870 | "engines": { 871 | "node": ">=8" 872 | } 873 | }, 874 | "node_modules/bplist-parser": { 875 | "version": "0.2.0", 876 | "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", 877 | "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", 878 | "dependencies": { 879 | "big-integer": "^1.6.44" 880 | }, 881 | "engines": { 882 | "node": ">= 5.10.0" 883 | } 884 | }, 885 | "node_modules/brace-expansion": { 886 | "version": "1.1.11", 887 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 888 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 889 | "dependencies": { 890 | "balanced-match": "^1.0.0", 891 | "concat-map": "0.0.1" 892 | } 893 | }, 894 | "node_modules/braces": { 895 | "version": "3.0.2", 896 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 897 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 898 | "dependencies": { 899 | "fill-range": "^7.0.1" 900 | }, 901 | "engines": { 902 | "node": ">=8" 903 | } 904 | }, 905 | "node_modules/browserslist": { 906 | "version": "4.21.7", 907 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.7.tgz", 908 | "integrity": "sha512-BauCXrQ7I2ftSqd2mvKHGo85XR0u7Ru3C/Hxsy/0TkfCtjrmAbPdzLGasmoiBxplpDXlPvdjX9u7srIMfgasNA==", 909 | "funding": [ 910 | { 911 | "type": "opencollective", 912 | "url": "https://opencollective.com/browserslist" 913 | }, 914 | { 915 | "type": "tidelift", 916 | "url": "https://tidelift.com/funding/github/npm/browserslist" 917 | }, 918 | { 919 | "type": "github", 920 | "url": "https://github.com/sponsors/ai" 921 | } 922 | ], 923 | "dependencies": { 924 | "caniuse-lite": "^1.0.30001489", 925 | "electron-to-chromium": "^1.4.411", 926 | "node-releases": "^2.0.12", 927 | "update-browserslist-db": "^1.0.11" 928 | }, 929 | "bin": { 930 | "browserslist": "cli.js" 931 | }, 932 | "engines": { 933 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 934 | } 935 | }, 936 | "node_modules/bundle-name": { 937 | "version": "3.0.0", 938 | "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", 939 | "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", 940 | "dependencies": { 941 | "run-applescript": "^5.0.0" 942 | }, 943 | "engines": { 944 | "node": ">=12" 945 | }, 946 | "funding": { 947 | "url": "https://github.com/sponsors/sindresorhus" 948 | } 949 | }, 950 | "node_modules/busboy": { 951 | "version": "1.6.0", 952 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", 953 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", 954 | "dependencies": { 955 | "streamsearch": "^1.1.0" 956 | }, 957 | "engines": { 958 | "node": ">=10.16.0" 959 | } 960 | }, 961 | "node_modules/call-bind": { 962 | "version": "1.0.2", 963 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 964 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 965 | "dependencies": { 966 | "function-bind": "^1.1.1", 967 | "get-intrinsic": "^1.0.2" 968 | }, 969 | "funding": { 970 | "url": "https://github.com/sponsors/ljharb" 971 | } 972 | }, 973 | "node_modules/callsites": { 974 | "version": "3.1.0", 975 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 976 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 977 | "engines": { 978 | "node": ">=6" 979 | } 980 | }, 981 | "node_modules/camelcase-css": { 982 | "version": "2.0.1", 983 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 984 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 985 | "engines": { 986 | "node": ">= 6" 987 | } 988 | }, 989 | "node_modules/caniuse-lite": { 990 | "version": "1.0.30001499", 991 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001499.tgz", 992 | "integrity": "sha512-IhoQqRrW6WiecFcfZgoJS1YLEN1/HR1vHP5WNgjCARRW7KUNToHHTX3FrwCM+y4zkRa48D9rE90WFYc2IWhDWQ==", 993 | "funding": [ 994 | { 995 | "type": "opencollective", 996 | "url": "https://opencollective.com/browserslist" 997 | }, 998 | { 999 | "type": "tidelift", 1000 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1001 | }, 1002 | { 1003 | "type": "github", 1004 | "url": "https://github.com/sponsors/ai" 1005 | } 1006 | ] 1007 | }, 1008 | "node_modules/chalk": { 1009 | "version": "4.1.2", 1010 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1011 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1012 | "dependencies": { 1013 | "ansi-styles": "^4.1.0", 1014 | "supports-color": "^7.1.0" 1015 | }, 1016 | "engines": { 1017 | "node": ">=10" 1018 | }, 1019 | "funding": { 1020 | "url": "https://github.com/chalk/chalk?sponsor=1" 1021 | } 1022 | }, 1023 | "node_modules/chokidar": { 1024 | "version": "3.5.3", 1025 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 1026 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 1027 | "funding": [ 1028 | { 1029 | "type": "individual", 1030 | "url": "https://paulmillr.com/funding/" 1031 | } 1032 | ], 1033 | "dependencies": { 1034 | "anymatch": "~3.1.2", 1035 | "braces": "~3.0.2", 1036 | "glob-parent": "~5.1.2", 1037 | "is-binary-path": "~2.1.0", 1038 | "is-glob": "~4.0.1", 1039 | "normalize-path": "~3.0.0", 1040 | "readdirp": "~3.6.0" 1041 | }, 1042 | "engines": { 1043 | "node": ">= 8.10.0" 1044 | }, 1045 | "optionalDependencies": { 1046 | "fsevents": "~2.3.2" 1047 | } 1048 | }, 1049 | "node_modules/chokidar/node_modules/glob-parent": { 1050 | "version": "5.1.2", 1051 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1052 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1053 | "dependencies": { 1054 | "is-glob": "^4.0.1" 1055 | }, 1056 | "engines": { 1057 | "node": ">= 6" 1058 | } 1059 | }, 1060 | "node_modules/client-only": { 1061 | "version": "0.0.1", 1062 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", 1063 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" 1064 | }, 1065 | "node_modules/color-convert": { 1066 | "version": "2.0.1", 1067 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1068 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1069 | "dependencies": { 1070 | "color-name": "~1.1.4" 1071 | }, 1072 | "engines": { 1073 | "node": ">=7.0.0" 1074 | } 1075 | }, 1076 | "node_modules/color-name": { 1077 | "version": "1.1.4", 1078 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1079 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 1080 | }, 1081 | "node_modules/commander": { 1082 | "version": "4.1.1", 1083 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 1084 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 1085 | "engines": { 1086 | "node": ">= 6" 1087 | } 1088 | }, 1089 | "node_modules/concat-map": { 1090 | "version": "0.0.1", 1091 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1092 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 1093 | }, 1094 | "node_modules/cross-spawn": { 1095 | "version": "7.0.3", 1096 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1097 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1098 | "dependencies": { 1099 | "path-key": "^3.1.0", 1100 | "shebang-command": "^2.0.0", 1101 | "which": "^2.0.1" 1102 | }, 1103 | "engines": { 1104 | "node": ">= 8" 1105 | } 1106 | }, 1107 | "node_modules/cssesc": { 1108 | "version": "3.0.0", 1109 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1110 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1111 | "bin": { 1112 | "cssesc": "bin/cssesc" 1113 | }, 1114 | "engines": { 1115 | "node": ">=4" 1116 | } 1117 | }, 1118 | "node_modules/csstype": { 1119 | "version": "3.1.2", 1120 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", 1121 | "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" 1122 | }, 1123 | "node_modules/damerau-levenshtein": { 1124 | "version": "1.0.8", 1125 | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", 1126 | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" 1127 | }, 1128 | "node_modules/debug": { 1129 | "version": "4.3.4", 1130 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1131 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1132 | "dependencies": { 1133 | "ms": "2.1.2" 1134 | }, 1135 | "engines": { 1136 | "node": ">=6.0" 1137 | }, 1138 | "peerDependenciesMeta": { 1139 | "supports-color": { 1140 | "optional": true 1141 | } 1142 | } 1143 | }, 1144 | "node_modules/deep-equal": { 1145 | "version": "2.2.1", 1146 | "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", 1147 | "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", 1148 | "dependencies": { 1149 | "array-buffer-byte-length": "^1.0.0", 1150 | "call-bind": "^1.0.2", 1151 | "es-get-iterator": "^1.1.3", 1152 | "get-intrinsic": "^1.2.0", 1153 | "is-arguments": "^1.1.1", 1154 | "is-array-buffer": "^3.0.2", 1155 | "is-date-object": "^1.0.5", 1156 | "is-regex": "^1.1.4", 1157 | "is-shared-array-buffer": "^1.0.2", 1158 | "isarray": "^2.0.5", 1159 | "object-is": "^1.1.5", 1160 | "object-keys": "^1.1.1", 1161 | "object.assign": "^4.1.4", 1162 | "regexp.prototype.flags": "^1.5.0", 1163 | "side-channel": "^1.0.4", 1164 | "which-boxed-primitive": "^1.0.2", 1165 | "which-collection": "^1.0.1", 1166 | "which-typed-array": "^1.1.9" 1167 | }, 1168 | "funding": { 1169 | "url": "https://github.com/sponsors/ljharb" 1170 | } 1171 | }, 1172 | "node_modules/deep-is": { 1173 | "version": "0.1.4", 1174 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1175 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" 1176 | }, 1177 | "node_modules/default-browser": { 1178 | "version": "4.0.0", 1179 | "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", 1180 | "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", 1181 | "dependencies": { 1182 | "bundle-name": "^3.0.0", 1183 | "default-browser-id": "^3.0.0", 1184 | "execa": "^7.1.1", 1185 | "titleize": "^3.0.0" 1186 | }, 1187 | "engines": { 1188 | "node": ">=14.16" 1189 | }, 1190 | "funding": { 1191 | "url": "https://github.com/sponsors/sindresorhus" 1192 | } 1193 | }, 1194 | "node_modules/default-browser-id": { 1195 | "version": "3.0.0", 1196 | "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", 1197 | "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", 1198 | "dependencies": { 1199 | "bplist-parser": "^0.2.0", 1200 | "untildify": "^4.0.0" 1201 | }, 1202 | "engines": { 1203 | "node": ">=12" 1204 | }, 1205 | "funding": { 1206 | "url": "https://github.com/sponsors/sindresorhus" 1207 | } 1208 | }, 1209 | "node_modules/define-lazy-prop": { 1210 | "version": "3.0.0", 1211 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", 1212 | "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", 1213 | "engines": { 1214 | "node": ">=12" 1215 | }, 1216 | "funding": { 1217 | "url": "https://github.com/sponsors/sindresorhus" 1218 | } 1219 | }, 1220 | "node_modules/define-properties": { 1221 | "version": "1.2.0", 1222 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", 1223 | "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", 1224 | "dependencies": { 1225 | "has-property-descriptors": "^1.0.0", 1226 | "object-keys": "^1.1.1" 1227 | }, 1228 | "engines": { 1229 | "node": ">= 0.4" 1230 | }, 1231 | "funding": { 1232 | "url": "https://github.com/sponsors/ljharb" 1233 | } 1234 | }, 1235 | "node_modules/didyoumean": { 1236 | "version": "1.2.2", 1237 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 1238 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" 1239 | }, 1240 | "node_modules/dir-glob": { 1241 | "version": "3.0.1", 1242 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1243 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1244 | "dependencies": { 1245 | "path-type": "^4.0.0" 1246 | }, 1247 | "engines": { 1248 | "node": ">=8" 1249 | } 1250 | }, 1251 | "node_modules/dlv": { 1252 | "version": "1.1.3", 1253 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 1254 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" 1255 | }, 1256 | "node_modules/doctrine": { 1257 | "version": "3.0.0", 1258 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1259 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1260 | "dependencies": { 1261 | "esutils": "^2.0.2" 1262 | }, 1263 | "engines": { 1264 | "node": ">=6.0.0" 1265 | } 1266 | }, 1267 | "node_modules/electron-to-chromium": { 1268 | "version": "1.4.427", 1269 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.427.tgz", 1270 | "integrity": "sha512-HK3r9l+Jm8dYAm1ctXEWIC+hV60zfcjS9UA5BDlYvnI5S7PU/yytjpvSrTNrSSRRkuu3tDyZhdkwIczh+0DWaw==" 1271 | }, 1272 | "node_modules/emoji-regex": { 1273 | "version": "9.2.2", 1274 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1275 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" 1276 | }, 1277 | "node_modules/enhanced-resolve": { 1278 | "version": "5.14.1", 1279 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.1.tgz", 1280 | "integrity": "sha512-Vklwq2vDKtl0y/vtwjSesgJ5MYS7Etuk5txS8VdKL4AOS1aUlD96zqIfsOSLQsdv3xgMRbtkWM8eG9XDfKUPow==", 1281 | "dependencies": { 1282 | "graceful-fs": "^4.2.4", 1283 | "tapable": "^2.2.0" 1284 | }, 1285 | "engines": { 1286 | "node": ">=10.13.0" 1287 | } 1288 | }, 1289 | "node_modules/es-abstract": { 1290 | "version": "1.21.2", 1291 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", 1292 | "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", 1293 | "dependencies": { 1294 | "array-buffer-byte-length": "^1.0.0", 1295 | "available-typed-arrays": "^1.0.5", 1296 | "call-bind": "^1.0.2", 1297 | "es-set-tostringtag": "^2.0.1", 1298 | "es-to-primitive": "^1.2.1", 1299 | "function.prototype.name": "^1.1.5", 1300 | "get-intrinsic": "^1.2.0", 1301 | "get-symbol-description": "^1.0.0", 1302 | "globalthis": "^1.0.3", 1303 | "gopd": "^1.0.1", 1304 | "has": "^1.0.3", 1305 | "has-property-descriptors": "^1.0.0", 1306 | "has-proto": "^1.0.1", 1307 | "has-symbols": "^1.0.3", 1308 | "internal-slot": "^1.0.5", 1309 | "is-array-buffer": "^3.0.2", 1310 | "is-callable": "^1.2.7", 1311 | "is-negative-zero": "^2.0.2", 1312 | "is-regex": "^1.1.4", 1313 | "is-shared-array-buffer": "^1.0.2", 1314 | "is-string": "^1.0.7", 1315 | "is-typed-array": "^1.1.10", 1316 | "is-weakref": "^1.0.2", 1317 | "object-inspect": "^1.12.3", 1318 | "object-keys": "^1.1.1", 1319 | "object.assign": "^4.1.4", 1320 | "regexp.prototype.flags": "^1.4.3", 1321 | "safe-regex-test": "^1.0.0", 1322 | "string.prototype.trim": "^1.2.7", 1323 | "string.prototype.trimend": "^1.0.6", 1324 | "string.prototype.trimstart": "^1.0.6", 1325 | "typed-array-length": "^1.0.4", 1326 | "unbox-primitive": "^1.0.2", 1327 | "which-typed-array": "^1.1.9" 1328 | }, 1329 | "engines": { 1330 | "node": ">= 0.4" 1331 | }, 1332 | "funding": { 1333 | "url": "https://github.com/sponsors/ljharb" 1334 | } 1335 | }, 1336 | "node_modules/es-get-iterator": { 1337 | "version": "1.1.3", 1338 | "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", 1339 | "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", 1340 | "dependencies": { 1341 | "call-bind": "^1.0.2", 1342 | "get-intrinsic": "^1.1.3", 1343 | "has-symbols": "^1.0.3", 1344 | "is-arguments": "^1.1.1", 1345 | "is-map": "^2.0.2", 1346 | "is-set": "^2.0.2", 1347 | "is-string": "^1.0.7", 1348 | "isarray": "^2.0.5", 1349 | "stop-iteration-iterator": "^1.0.0" 1350 | }, 1351 | "funding": { 1352 | "url": "https://github.com/sponsors/ljharb" 1353 | } 1354 | }, 1355 | "node_modules/es-set-tostringtag": { 1356 | "version": "2.0.1", 1357 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", 1358 | "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", 1359 | "dependencies": { 1360 | "get-intrinsic": "^1.1.3", 1361 | "has": "^1.0.3", 1362 | "has-tostringtag": "^1.0.0" 1363 | }, 1364 | "engines": { 1365 | "node": ">= 0.4" 1366 | } 1367 | }, 1368 | "node_modules/es-shim-unscopables": { 1369 | "version": "1.0.0", 1370 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", 1371 | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", 1372 | "dependencies": { 1373 | "has": "^1.0.3" 1374 | } 1375 | }, 1376 | "node_modules/es-to-primitive": { 1377 | "version": "1.2.1", 1378 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1379 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1380 | "dependencies": { 1381 | "is-callable": "^1.1.4", 1382 | "is-date-object": "^1.0.1", 1383 | "is-symbol": "^1.0.2" 1384 | }, 1385 | "engines": { 1386 | "node": ">= 0.4" 1387 | }, 1388 | "funding": { 1389 | "url": "https://github.com/sponsors/ljharb" 1390 | } 1391 | }, 1392 | "node_modules/escalade": { 1393 | "version": "3.1.1", 1394 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 1395 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 1396 | "engines": { 1397 | "node": ">=6" 1398 | } 1399 | }, 1400 | "node_modules/escape-string-regexp": { 1401 | "version": "4.0.0", 1402 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1403 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1404 | "engines": { 1405 | "node": ">=10" 1406 | }, 1407 | "funding": { 1408 | "url": "https://github.com/sponsors/sindresorhus" 1409 | } 1410 | }, 1411 | "node_modules/eslint": { 1412 | "version": "8.42.0", 1413 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.42.0.tgz", 1414 | "integrity": "sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A==", 1415 | "dependencies": { 1416 | "@eslint-community/eslint-utils": "^4.2.0", 1417 | "@eslint-community/regexpp": "^4.4.0", 1418 | "@eslint/eslintrc": "^2.0.3", 1419 | "@eslint/js": "8.42.0", 1420 | "@humanwhocodes/config-array": "^0.11.10", 1421 | "@humanwhocodes/module-importer": "^1.0.1", 1422 | "@nodelib/fs.walk": "^1.2.8", 1423 | "ajv": "^6.10.0", 1424 | "chalk": "^4.0.0", 1425 | "cross-spawn": "^7.0.2", 1426 | "debug": "^4.3.2", 1427 | "doctrine": "^3.0.0", 1428 | "escape-string-regexp": "^4.0.0", 1429 | "eslint-scope": "^7.2.0", 1430 | "eslint-visitor-keys": "^3.4.1", 1431 | "espree": "^9.5.2", 1432 | "esquery": "^1.4.2", 1433 | "esutils": "^2.0.2", 1434 | "fast-deep-equal": "^3.1.3", 1435 | "file-entry-cache": "^6.0.1", 1436 | "find-up": "^5.0.0", 1437 | "glob-parent": "^6.0.2", 1438 | "globals": "^13.19.0", 1439 | "graphemer": "^1.4.0", 1440 | "ignore": "^5.2.0", 1441 | "import-fresh": "^3.0.0", 1442 | "imurmurhash": "^0.1.4", 1443 | "is-glob": "^4.0.0", 1444 | "is-path-inside": "^3.0.3", 1445 | "js-yaml": "^4.1.0", 1446 | "json-stable-stringify-without-jsonify": "^1.0.1", 1447 | "levn": "^0.4.1", 1448 | "lodash.merge": "^4.6.2", 1449 | "minimatch": "^3.1.2", 1450 | "natural-compare": "^1.4.0", 1451 | "optionator": "^0.9.1", 1452 | "strip-ansi": "^6.0.1", 1453 | "strip-json-comments": "^3.1.0", 1454 | "text-table": "^0.2.0" 1455 | }, 1456 | "bin": { 1457 | "eslint": "bin/eslint.js" 1458 | }, 1459 | "engines": { 1460 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1461 | }, 1462 | "funding": { 1463 | "url": "https://opencollective.com/eslint" 1464 | } 1465 | }, 1466 | "node_modules/eslint-config-next": { 1467 | "version": "13.4.5", 1468 | "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.5.tgz", 1469 | "integrity": "sha512-7qgJmRp9ClRzPgkzEz7ahK+Rasiv4k2aU3eqkkORzseNUGdtImZVYomcXUhUheHwkxzdN2p//nbIA7zJrCxsCg==", 1470 | "dependencies": { 1471 | "@next/eslint-plugin-next": "13.4.5", 1472 | "@rushstack/eslint-patch": "^1.1.3", 1473 | "@typescript-eslint/parser": "^5.42.0", 1474 | "eslint-import-resolver-node": "^0.3.6", 1475 | "eslint-import-resolver-typescript": "^3.5.2", 1476 | "eslint-plugin-import": "^2.26.0", 1477 | "eslint-plugin-jsx-a11y": "^6.5.1", 1478 | "eslint-plugin-react": "^7.31.7", 1479 | "eslint-plugin-react-hooks": "^4.5.0" 1480 | }, 1481 | "peerDependencies": { 1482 | "eslint": "^7.23.0 || ^8.0.0", 1483 | "typescript": ">=3.3.1" 1484 | }, 1485 | "peerDependenciesMeta": { 1486 | "typescript": { 1487 | "optional": true 1488 | } 1489 | } 1490 | }, 1491 | "node_modules/eslint-import-resolver-node": { 1492 | "version": "0.3.7", 1493 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", 1494 | "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", 1495 | "dependencies": { 1496 | "debug": "^3.2.7", 1497 | "is-core-module": "^2.11.0", 1498 | "resolve": "^1.22.1" 1499 | } 1500 | }, 1501 | "node_modules/eslint-import-resolver-node/node_modules/debug": { 1502 | "version": "3.2.7", 1503 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1504 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1505 | "dependencies": { 1506 | "ms": "^2.1.1" 1507 | } 1508 | }, 1509 | "node_modules/eslint-import-resolver-typescript": { 1510 | "version": "3.5.5", 1511 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", 1512 | "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==", 1513 | "dependencies": { 1514 | "debug": "^4.3.4", 1515 | "enhanced-resolve": "^5.12.0", 1516 | "eslint-module-utils": "^2.7.4", 1517 | "get-tsconfig": "^4.5.0", 1518 | "globby": "^13.1.3", 1519 | "is-core-module": "^2.11.0", 1520 | "is-glob": "^4.0.3", 1521 | "synckit": "^0.8.5" 1522 | }, 1523 | "engines": { 1524 | "node": "^14.18.0 || >=16.0.0" 1525 | }, 1526 | "funding": { 1527 | "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" 1528 | }, 1529 | "peerDependencies": { 1530 | "eslint": "*", 1531 | "eslint-plugin-import": "*" 1532 | } 1533 | }, 1534 | "node_modules/eslint-import-resolver-typescript/node_modules/globby": { 1535 | "version": "13.1.4", 1536 | "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz", 1537 | "integrity": "sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==", 1538 | "dependencies": { 1539 | "dir-glob": "^3.0.1", 1540 | "fast-glob": "^3.2.11", 1541 | "ignore": "^5.2.0", 1542 | "merge2": "^1.4.1", 1543 | "slash": "^4.0.0" 1544 | }, 1545 | "engines": { 1546 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1547 | }, 1548 | "funding": { 1549 | "url": "https://github.com/sponsors/sindresorhus" 1550 | } 1551 | }, 1552 | "node_modules/eslint-import-resolver-typescript/node_modules/slash": { 1553 | "version": "4.0.0", 1554 | "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", 1555 | "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", 1556 | "engines": { 1557 | "node": ">=12" 1558 | }, 1559 | "funding": { 1560 | "url": "https://github.com/sponsors/sindresorhus" 1561 | } 1562 | }, 1563 | "node_modules/eslint-module-utils": { 1564 | "version": "2.8.0", 1565 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", 1566 | "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", 1567 | "dependencies": { 1568 | "debug": "^3.2.7" 1569 | }, 1570 | "engines": { 1571 | "node": ">=4" 1572 | }, 1573 | "peerDependenciesMeta": { 1574 | "eslint": { 1575 | "optional": true 1576 | } 1577 | } 1578 | }, 1579 | "node_modules/eslint-module-utils/node_modules/debug": { 1580 | "version": "3.2.7", 1581 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1582 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1583 | "dependencies": { 1584 | "ms": "^2.1.1" 1585 | } 1586 | }, 1587 | "node_modules/eslint-plugin-import": { 1588 | "version": "2.27.5", 1589 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", 1590 | "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", 1591 | "dependencies": { 1592 | "array-includes": "^3.1.6", 1593 | "array.prototype.flat": "^1.3.1", 1594 | "array.prototype.flatmap": "^1.3.1", 1595 | "debug": "^3.2.7", 1596 | "doctrine": "^2.1.0", 1597 | "eslint-import-resolver-node": "^0.3.7", 1598 | "eslint-module-utils": "^2.7.4", 1599 | "has": "^1.0.3", 1600 | "is-core-module": "^2.11.0", 1601 | "is-glob": "^4.0.3", 1602 | "minimatch": "^3.1.2", 1603 | "object.values": "^1.1.6", 1604 | "resolve": "^1.22.1", 1605 | "semver": "^6.3.0", 1606 | "tsconfig-paths": "^3.14.1" 1607 | }, 1608 | "engines": { 1609 | "node": ">=4" 1610 | }, 1611 | "peerDependencies": { 1612 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" 1613 | } 1614 | }, 1615 | "node_modules/eslint-plugin-import/node_modules/debug": { 1616 | "version": "3.2.7", 1617 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1618 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1619 | "dependencies": { 1620 | "ms": "^2.1.1" 1621 | } 1622 | }, 1623 | "node_modules/eslint-plugin-import/node_modules/doctrine": { 1624 | "version": "2.1.0", 1625 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1626 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1627 | "dependencies": { 1628 | "esutils": "^2.0.2" 1629 | }, 1630 | "engines": { 1631 | "node": ">=0.10.0" 1632 | } 1633 | }, 1634 | "node_modules/eslint-plugin-import/node_modules/semver": { 1635 | "version": "6.3.0", 1636 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1637 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1638 | "bin": { 1639 | "semver": "bin/semver.js" 1640 | } 1641 | }, 1642 | "node_modules/eslint-plugin-jsx-a11y": { 1643 | "version": "6.7.1", 1644 | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", 1645 | "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", 1646 | "dependencies": { 1647 | "@babel/runtime": "^7.20.7", 1648 | "aria-query": "^5.1.3", 1649 | "array-includes": "^3.1.6", 1650 | "array.prototype.flatmap": "^1.3.1", 1651 | "ast-types-flow": "^0.0.7", 1652 | "axe-core": "^4.6.2", 1653 | "axobject-query": "^3.1.1", 1654 | "damerau-levenshtein": "^1.0.8", 1655 | "emoji-regex": "^9.2.2", 1656 | "has": "^1.0.3", 1657 | "jsx-ast-utils": "^3.3.3", 1658 | "language-tags": "=1.0.5", 1659 | "minimatch": "^3.1.2", 1660 | "object.entries": "^1.1.6", 1661 | "object.fromentries": "^2.0.6", 1662 | "semver": "^6.3.0" 1663 | }, 1664 | "engines": { 1665 | "node": ">=4.0" 1666 | }, 1667 | "peerDependencies": { 1668 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1669 | } 1670 | }, 1671 | "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { 1672 | "version": "6.3.0", 1673 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1674 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1675 | "bin": { 1676 | "semver": "bin/semver.js" 1677 | } 1678 | }, 1679 | "node_modules/eslint-plugin-react": { 1680 | "version": "7.32.2", 1681 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", 1682 | "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", 1683 | "dependencies": { 1684 | "array-includes": "^3.1.6", 1685 | "array.prototype.flatmap": "^1.3.1", 1686 | "array.prototype.tosorted": "^1.1.1", 1687 | "doctrine": "^2.1.0", 1688 | "estraverse": "^5.3.0", 1689 | "jsx-ast-utils": "^2.4.1 || ^3.0.0", 1690 | "minimatch": "^3.1.2", 1691 | "object.entries": "^1.1.6", 1692 | "object.fromentries": "^2.0.6", 1693 | "object.hasown": "^1.1.2", 1694 | "object.values": "^1.1.6", 1695 | "prop-types": "^15.8.1", 1696 | "resolve": "^2.0.0-next.4", 1697 | "semver": "^6.3.0", 1698 | "string.prototype.matchall": "^4.0.8" 1699 | }, 1700 | "engines": { 1701 | "node": ">=4" 1702 | }, 1703 | "peerDependencies": { 1704 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1705 | } 1706 | }, 1707 | "node_modules/eslint-plugin-react-hooks": { 1708 | "version": "4.6.0", 1709 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", 1710 | "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", 1711 | "engines": { 1712 | "node": ">=10" 1713 | }, 1714 | "peerDependencies": { 1715 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" 1716 | } 1717 | }, 1718 | "node_modules/eslint-plugin-react/node_modules/doctrine": { 1719 | "version": "2.1.0", 1720 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1721 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1722 | "dependencies": { 1723 | "esutils": "^2.0.2" 1724 | }, 1725 | "engines": { 1726 | "node": ">=0.10.0" 1727 | } 1728 | }, 1729 | "node_modules/eslint-plugin-react/node_modules/resolve": { 1730 | "version": "2.0.0-next.4", 1731 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", 1732 | "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", 1733 | "dependencies": { 1734 | "is-core-module": "^2.9.0", 1735 | "path-parse": "^1.0.7", 1736 | "supports-preserve-symlinks-flag": "^1.0.0" 1737 | }, 1738 | "bin": { 1739 | "resolve": "bin/resolve" 1740 | }, 1741 | "funding": { 1742 | "url": "https://github.com/sponsors/ljharb" 1743 | } 1744 | }, 1745 | "node_modules/eslint-plugin-react/node_modules/semver": { 1746 | "version": "6.3.0", 1747 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1748 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1749 | "bin": { 1750 | "semver": "bin/semver.js" 1751 | } 1752 | }, 1753 | "node_modules/eslint-scope": { 1754 | "version": "7.2.0", 1755 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", 1756 | "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", 1757 | "dependencies": { 1758 | "esrecurse": "^4.3.0", 1759 | "estraverse": "^5.2.0" 1760 | }, 1761 | "engines": { 1762 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1763 | }, 1764 | "funding": { 1765 | "url": "https://opencollective.com/eslint" 1766 | } 1767 | }, 1768 | "node_modules/eslint-visitor-keys": { 1769 | "version": "3.4.1", 1770 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", 1771 | "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", 1772 | "engines": { 1773 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1774 | }, 1775 | "funding": { 1776 | "url": "https://opencollective.com/eslint" 1777 | } 1778 | }, 1779 | "node_modules/espree": { 1780 | "version": "9.5.2", 1781 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", 1782 | "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", 1783 | "dependencies": { 1784 | "acorn": "^8.8.0", 1785 | "acorn-jsx": "^5.3.2", 1786 | "eslint-visitor-keys": "^3.4.1" 1787 | }, 1788 | "engines": { 1789 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1790 | }, 1791 | "funding": { 1792 | "url": "https://opencollective.com/eslint" 1793 | } 1794 | }, 1795 | "node_modules/esquery": { 1796 | "version": "1.5.0", 1797 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1798 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1799 | "dependencies": { 1800 | "estraverse": "^5.1.0" 1801 | }, 1802 | "engines": { 1803 | "node": ">=0.10" 1804 | } 1805 | }, 1806 | "node_modules/esrecurse": { 1807 | "version": "4.3.0", 1808 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1809 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1810 | "dependencies": { 1811 | "estraverse": "^5.2.0" 1812 | }, 1813 | "engines": { 1814 | "node": ">=4.0" 1815 | } 1816 | }, 1817 | "node_modules/estraverse": { 1818 | "version": "5.3.0", 1819 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1820 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1821 | "engines": { 1822 | "node": ">=4.0" 1823 | } 1824 | }, 1825 | "node_modules/esutils": { 1826 | "version": "2.0.3", 1827 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1828 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1829 | "engines": { 1830 | "node": ">=0.10.0" 1831 | } 1832 | }, 1833 | "node_modules/execa": { 1834 | "version": "7.1.1", 1835 | "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", 1836 | "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", 1837 | "dependencies": { 1838 | "cross-spawn": "^7.0.3", 1839 | "get-stream": "^6.0.1", 1840 | "human-signals": "^4.3.0", 1841 | "is-stream": "^3.0.0", 1842 | "merge-stream": "^2.0.0", 1843 | "npm-run-path": "^5.1.0", 1844 | "onetime": "^6.0.0", 1845 | "signal-exit": "^3.0.7", 1846 | "strip-final-newline": "^3.0.0" 1847 | }, 1848 | "engines": { 1849 | "node": "^14.18.0 || ^16.14.0 || >=18.0.0" 1850 | }, 1851 | "funding": { 1852 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1853 | } 1854 | }, 1855 | "node_modules/fast-deep-equal": { 1856 | "version": "3.1.3", 1857 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1858 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 1859 | }, 1860 | "node_modules/fast-glob": { 1861 | "version": "3.2.12", 1862 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 1863 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 1864 | "dependencies": { 1865 | "@nodelib/fs.stat": "^2.0.2", 1866 | "@nodelib/fs.walk": "^1.2.3", 1867 | "glob-parent": "^5.1.2", 1868 | "merge2": "^1.3.0", 1869 | "micromatch": "^4.0.4" 1870 | }, 1871 | "engines": { 1872 | "node": ">=8.6.0" 1873 | } 1874 | }, 1875 | "node_modules/fast-glob/node_modules/glob-parent": { 1876 | "version": "5.1.2", 1877 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1878 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1879 | "dependencies": { 1880 | "is-glob": "^4.0.1" 1881 | }, 1882 | "engines": { 1883 | "node": ">= 6" 1884 | } 1885 | }, 1886 | "node_modules/fast-json-stable-stringify": { 1887 | "version": "2.1.0", 1888 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1889 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" 1890 | }, 1891 | "node_modules/fast-levenshtein": { 1892 | "version": "2.0.6", 1893 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1894 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" 1895 | }, 1896 | "node_modules/fastq": { 1897 | "version": "1.15.0", 1898 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1899 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1900 | "dependencies": { 1901 | "reusify": "^1.0.4" 1902 | } 1903 | }, 1904 | "node_modules/file-entry-cache": { 1905 | "version": "6.0.1", 1906 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1907 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1908 | "dependencies": { 1909 | "flat-cache": "^3.0.4" 1910 | }, 1911 | "engines": { 1912 | "node": "^10.12.0 || >=12.0.0" 1913 | } 1914 | }, 1915 | "node_modules/fill-range": { 1916 | "version": "7.0.1", 1917 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1918 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1919 | "dependencies": { 1920 | "to-regex-range": "^5.0.1" 1921 | }, 1922 | "engines": { 1923 | "node": ">=8" 1924 | } 1925 | }, 1926 | "node_modules/find-up": { 1927 | "version": "5.0.0", 1928 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1929 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1930 | "dependencies": { 1931 | "locate-path": "^6.0.0", 1932 | "path-exists": "^4.0.0" 1933 | }, 1934 | "engines": { 1935 | "node": ">=10" 1936 | }, 1937 | "funding": { 1938 | "url": "https://github.com/sponsors/sindresorhus" 1939 | } 1940 | }, 1941 | "node_modules/flat-cache": { 1942 | "version": "3.0.4", 1943 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 1944 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 1945 | "dependencies": { 1946 | "flatted": "^3.1.0", 1947 | "rimraf": "^3.0.2" 1948 | }, 1949 | "engines": { 1950 | "node": "^10.12.0 || >=12.0.0" 1951 | } 1952 | }, 1953 | "node_modules/flatted": { 1954 | "version": "3.2.7", 1955 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", 1956 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" 1957 | }, 1958 | "node_modules/for-each": { 1959 | "version": "0.3.3", 1960 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1961 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1962 | "dependencies": { 1963 | "is-callable": "^1.1.3" 1964 | } 1965 | }, 1966 | "node_modules/fraction.js": { 1967 | "version": "4.2.0", 1968 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", 1969 | "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", 1970 | "engines": { 1971 | "node": "*" 1972 | }, 1973 | "funding": { 1974 | "type": "patreon", 1975 | "url": "https://www.patreon.com/infusion" 1976 | } 1977 | }, 1978 | "node_modules/fs.realpath": { 1979 | "version": "1.0.0", 1980 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1981 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" 1982 | }, 1983 | "node_modules/fsevents": { 1984 | "version": "2.3.2", 1985 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 1986 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 1987 | "hasInstallScript": true, 1988 | "optional": true, 1989 | "os": [ 1990 | "darwin" 1991 | ], 1992 | "engines": { 1993 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1994 | } 1995 | }, 1996 | "node_modules/function-bind": { 1997 | "version": "1.1.1", 1998 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 1999 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 2000 | }, 2001 | "node_modules/function.prototype.name": { 2002 | "version": "1.1.5", 2003 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", 2004 | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", 2005 | "dependencies": { 2006 | "call-bind": "^1.0.2", 2007 | "define-properties": "^1.1.3", 2008 | "es-abstract": "^1.19.0", 2009 | "functions-have-names": "^1.2.2" 2010 | }, 2011 | "engines": { 2012 | "node": ">= 0.4" 2013 | }, 2014 | "funding": { 2015 | "url": "https://github.com/sponsors/ljharb" 2016 | } 2017 | }, 2018 | "node_modules/functions-have-names": { 2019 | "version": "1.2.3", 2020 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 2021 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 2022 | "funding": { 2023 | "url": "https://github.com/sponsors/ljharb" 2024 | } 2025 | }, 2026 | "node_modules/get-intrinsic": { 2027 | "version": "1.2.1", 2028 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", 2029 | "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", 2030 | "dependencies": { 2031 | "function-bind": "^1.1.1", 2032 | "has": "^1.0.3", 2033 | "has-proto": "^1.0.1", 2034 | "has-symbols": "^1.0.3" 2035 | }, 2036 | "funding": { 2037 | "url": "https://github.com/sponsors/ljharb" 2038 | } 2039 | }, 2040 | "node_modules/get-stream": { 2041 | "version": "6.0.1", 2042 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 2043 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 2044 | "engines": { 2045 | "node": ">=10" 2046 | }, 2047 | "funding": { 2048 | "url": "https://github.com/sponsors/sindresorhus" 2049 | } 2050 | }, 2051 | "node_modules/get-symbol-description": { 2052 | "version": "1.0.0", 2053 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", 2054 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", 2055 | "dependencies": { 2056 | "call-bind": "^1.0.2", 2057 | "get-intrinsic": "^1.1.1" 2058 | }, 2059 | "engines": { 2060 | "node": ">= 0.4" 2061 | }, 2062 | "funding": { 2063 | "url": "https://github.com/sponsors/ljharb" 2064 | } 2065 | }, 2066 | "node_modules/get-tsconfig": { 2067 | "version": "4.6.0", 2068 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.6.0.tgz", 2069 | "integrity": "sha512-lgbo68hHTQnFddybKbbs/RDRJnJT5YyGy2kQzVwbq+g67X73i+5MVTval34QxGkOe9X5Ujf1UYpCaphLyltjEg==", 2070 | "dependencies": { 2071 | "resolve-pkg-maps": "^1.0.0" 2072 | }, 2073 | "funding": { 2074 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 2075 | } 2076 | }, 2077 | "node_modules/glob": { 2078 | "version": "7.1.7", 2079 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", 2080 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", 2081 | "dependencies": { 2082 | "fs.realpath": "^1.0.0", 2083 | "inflight": "^1.0.4", 2084 | "inherits": "2", 2085 | "minimatch": "^3.0.4", 2086 | "once": "^1.3.0", 2087 | "path-is-absolute": "^1.0.0" 2088 | }, 2089 | "engines": { 2090 | "node": "*" 2091 | }, 2092 | "funding": { 2093 | "url": "https://github.com/sponsors/isaacs" 2094 | } 2095 | }, 2096 | "node_modules/glob-parent": { 2097 | "version": "6.0.2", 2098 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2099 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2100 | "dependencies": { 2101 | "is-glob": "^4.0.3" 2102 | }, 2103 | "engines": { 2104 | "node": ">=10.13.0" 2105 | } 2106 | }, 2107 | "node_modules/glob-to-regexp": { 2108 | "version": "0.4.1", 2109 | "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", 2110 | "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" 2111 | }, 2112 | "node_modules/globals": { 2113 | "version": "13.20.0", 2114 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", 2115 | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", 2116 | "dependencies": { 2117 | "type-fest": "^0.20.2" 2118 | }, 2119 | "engines": { 2120 | "node": ">=8" 2121 | }, 2122 | "funding": { 2123 | "url": "https://github.com/sponsors/sindresorhus" 2124 | } 2125 | }, 2126 | "node_modules/globalthis": { 2127 | "version": "1.0.3", 2128 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", 2129 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", 2130 | "dependencies": { 2131 | "define-properties": "^1.1.3" 2132 | }, 2133 | "engines": { 2134 | "node": ">= 0.4" 2135 | }, 2136 | "funding": { 2137 | "url": "https://github.com/sponsors/ljharb" 2138 | } 2139 | }, 2140 | "node_modules/globby": { 2141 | "version": "11.1.0", 2142 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 2143 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 2144 | "dependencies": { 2145 | "array-union": "^2.1.0", 2146 | "dir-glob": "^3.0.1", 2147 | "fast-glob": "^3.2.9", 2148 | "ignore": "^5.2.0", 2149 | "merge2": "^1.4.1", 2150 | "slash": "^3.0.0" 2151 | }, 2152 | "engines": { 2153 | "node": ">=10" 2154 | }, 2155 | "funding": { 2156 | "url": "https://github.com/sponsors/sindresorhus" 2157 | } 2158 | }, 2159 | "node_modules/gopd": { 2160 | "version": "1.0.1", 2161 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 2162 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 2163 | "dependencies": { 2164 | "get-intrinsic": "^1.1.3" 2165 | }, 2166 | "funding": { 2167 | "url": "https://github.com/sponsors/ljharb" 2168 | } 2169 | }, 2170 | "node_modules/graceful-fs": { 2171 | "version": "4.2.11", 2172 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2173 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" 2174 | }, 2175 | "node_modules/graphemer": { 2176 | "version": "1.4.0", 2177 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2178 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" 2179 | }, 2180 | "node_modules/has": { 2181 | "version": "1.0.3", 2182 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 2183 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 2184 | "dependencies": { 2185 | "function-bind": "^1.1.1" 2186 | }, 2187 | "engines": { 2188 | "node": ">= 0.4.0" 2189 | } 2190 | }, 2191 | "node_modules/has-bigints": { 2192 | "version": "1.0.2", 2193 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 2194 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 2195 | "funding": { 2196 | "url": "https://github.com/sponsors/ljharb" 2197 | } 2198 | }, 2199 | "node_modules/has-flag": { 2200 | "version": "4.0.0", 2201 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2202 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2203 | "engines": { 2204 | "node": ">=8" 2205 | } 2206 | }, 2207 | "node_modules/has-property-descriptors": { 2208 | "version": "1.0.0", 2209 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", 2210 | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", 2211 | "dependencies": { 2212 | "get-intrinsic": "^1.1.1" 2213 | }, 2214 | "funding": { 2215 | "url": "https://github.com/sponsors/ljharb" 2216 | } 2217 | }, 2218 | "node_modules/has-proto": { 2219 | "version": "1.0.1", 2220 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 2221 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 2222 | "engines": { 2223 | "node": ">= 0.4" 2224 | }, 2225 | "funding": { 2226 | "url": "https://github.com/sponsors/ljharb" 2227 | } 2228 | }, 2229 | "node_modules/has-symbols": { 2230 | "version": "1.0.3", 2231 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 2232 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 2233 | "engines": { 2234 | "node": ">= 0.4" 2235 | }, 2236 | "funding": { 2237 | "url": "https://github.com/sponsors/ljharb" 2238 | } 2239 | }, 2240 | "node_modules/has-tostringtag": { 2241 | "version": "1.0.0", 2242 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 2243 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 2244 | "dependencies": { 2245 | "has-symbols": "^1.0.2" 2246 | }, 2247 | "engines": { 2248 | "node": ">= 0.4" 2249 | }, 2250 | "funding": { 2251 | "url": "https://github.com/sponsors/ljharb" 2252 | } 2253 | }, 2254 | "node_modules/human-signals": { 2255 | "version": "4.3.1", 2256 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", 2257 | "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", 2258 | "engines": { 2259 | "node": ">=14.18.0" 2260 | } 2261 | }, 2262 | "node_modules/ignore": { 2263 | "version": "5.2.4", 2264 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", 2265 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", 2266 | "engines": { 2267 | "node": ">= 4" 2268 | } 2269 | }, 2270 | "node_modules/import-fresh": { 2271 | "version": "3.3.0", 2272 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2273 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2274 | "dependencies": { 2275 | "parent-module": "^1.0.0", 2276 | "resolve-from": "^4.0.0" 2277 | }, 2278 | "engines": { 2279 | "node": ">=6" 2280 | }, 2281 | "funding": { 2282 | "url": "https://github.com/sponsors/sindresorhus" 2283 | } 2284 | }, 2285 | "node_modules/imurmurhash": { 2286 | "version": "0.1.4", 2287 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2288 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2289 | "engines": { 2290 | "node": ">=0.8.19" 2291 | } 2292 | }, 2293 | "node_modules/inflight": { 2294 | "version": "1.0.6", 2295 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2296 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2297 | "dependencies": { 2298 | "once": "^1.3.0", 2299 | "wrappy": "1" 2300 | } 2301 | }, 2302 | "node_modules/inherits": { 2303 | "version": "2.0.4", 2304 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2305 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 2306 | }, 2307 | "node_modules/internal-slot": { 2308 | "version": "1.0.5", 2309 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", 2310 | "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", 2311 | "dependencies": { 2312 | "get-intrinsic": "^1.2.0", 2313 | "has": "^1.0.3", 2314 | "side-channel": "^1.0.4" 2315 | }, 2316 | "engines": { 2317 | "node": ">= 0.4" 2318 | } 2319 | }, 2320 | "node_modules/is-arguments": { 2321 | "version": "1.1.1", 2322 | "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", 2323 | "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", 2324 | "dependencies": { 2325 | "call-bind": "^1.0.2", 2326 | "has-tostringtag": "^1.0.0" 2327 | }, 2328 | "engines": { 2329 | "node": ">= 0.4" 2330 | }, 2331 | "funding": { 2332 | "url": "https://github.com/sponsors/ljharb" 2333 | } 2334 | }, 2335 | "node_modules/is-array-buffer": { 2336 | "version": "3.0.2", 2337 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", 2338 | "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", 2339 | "dependencies": { 2340 | "call-bind": "^1.0.2", 2341 | "get-intrinsic": "^1.2.0", 2342 | "is-typed-array": "^1.1.10" 2343 | }, 2344 | "funding": { 2345 | "url": "https://github.com/sponsors/ljharb" 2346 | } 2347 | }, 2348 | "node_modules/is-bigint": { 2349 | "version": "1.0.4", 2350 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 2351 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 2352 | "dependencies": { 2353 | "has-bigints": "^1.0.1" 2354 | }, 2355 | "funding": { 2356 | "url": "https://github.com/sponsors/ljharb" 2357 | } 2358 | }, 2359 | "node_modules/is-binary-path": { 2360 | "version": "2.1.0", 2361 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2362 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2363 | "dependencies": { 2364 | "binary-extensions": "^2.0.0" 2365 | }, 2366 | "engines": { 2367 | "node": ">=8" 2368 | } 2369 | }, 2370 | "node_modules/is-boolean-object": { 2371 | "version": "1.1.2", 2372 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 2373 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 2374 | "dependencies": { 2375 | "call-bind": "^1.0.2", 2376 | "has-tostringtag": "^1.0.0" 2377 | }, 2378 | "engines": { 2379 | "node": ">= 0.4" 2380 | }, 2381 | "funding": { 2382 | "url": "https://github.com/sponsors/ljharb" 2383 | } 2384 | }, 2385 | "node_modules/is-callable": { 2386 | "version": "1.2.7", 2387 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 2388 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 2389 | "engines": { 2390 | "node": ">= 0.4" 2391 | }, 2392 | "funding": { 2393 | "url": "https://github.com/sponsors/ljharb" 2394 | } 2395 | }, 2396 | "node_modules/is-core-module": { 2397 | "version": "2.12.1", 2398 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", 2399 | "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", 2400 | "dependencies": { 2401 | "has": "^1.0.3" 2402 | }, 2403 | "funding": { 2404 | "url": "https://github.com/sponsors/ljharb" 2405 | } 2406 | }, 2407 | "node_modules/is-date-object": { 2408 | "version": "1.0.5", 2409 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 2410 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 2411 | "dependencies": { 2412 | "has-tostringtag": "^1.0.0" 2413 | }, 2414 | "engines": { 2415 | "node": ">= 0.4" 2416 | }, 2417 | "funding": { 2418 | "url": "https://github.com/sponsors/ljharb" 2419 | } 2420 | }, 2421 | "node_modules/is-docker": { 2422 | "version": "3.0.0", 2423 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", 2424 | "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", 2425 | "bin": { 2426 | "is-docker": "cli.js" 2427 | }, 2428 | "engines": { 2429 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2430 | }, 2431 | "funding": { 2432 | "url": "https://github.com/sponsors/sindresorhus" 2433 | } 2434 | }, 2435 | "node_modules/is-extglob": { 2436 | "version": "2.1.1", 2437 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2438 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2439 | "engines": { 2440 | "node": ">=0.10.0" 2441 | } 2442 | }, 2443 | "node_modules/is-glob": { 2444 | "version": "4.0.3", 2445 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2446 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2447 | "dependencies": { 2448 | "is-extglob": "^2.1.1" 2449 | }, 2450 | "engines": { 2451 | "node": ">=0.10.0" 2452 | } 2453 | }, 2454 | "node_modules/is-inside-container": { 2455 | "version": "1.0.0", 2456 | "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", 2457 | "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", 2458 | "dependencies": { 2459 | "is-docker": "^3.0.0" 2460 | }, 2461 | "bin": { 2462 | "is-inside-container": "cli.js" 2463 | }, 2464 | "engines": { 2465 | "node": ">=14.16" 2466 | }, 2467 | "funding": { 2468 | "url": "https://github.com/sponsors/sindresorhus" 2469 | } 2470 | }, 2471 | "node_modules/is-map": { 2472 | "version": "2.0.2", 2473 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", 2474 | "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", 2475 | "funding": { 2476 | "url": "https://github.com/sponsors/ljharb" 2477 | } 2478 | }, 2479 | "node_modules/is-negative-zero": { 2480 | "version": "2.0.2", 2481 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 2482 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 2483 | "engines": { 2484 | "node": ">= 0.4" 2485 | }, 2486 | "funding": { 2487 | "url": "https://github.com/sponsors/ljharb" 2488 | } 2489 | }, 2490 | "node_modules/is-number": { 2491 | "version": "7.0.0", 2492 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2493 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2494 | "engines": { 2495 | "node": ">=0.12.0" 2496 | } 2497 | }, 2498 | "node_modules/is-number-object": { 2499 | "version": "1.0.7", 2500 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 2501 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 2502 | "dependencies": { 2503 | "has-tostringtag": "^1.0.0" 2504 | }, 2505 | "engines": { 2506 | "node": ">= 0.4" 2507 | }, 2508 | "funding": { 2509 | "url": "https://github.com/sponsors/ljharb" 2510 | } 2511 | }, 2512 | "node_modules/is-path-inside": { 2513 | "version": "3.0.3", 2514 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2515 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2516 | "engines": { 2517 | "node": ">=8" 2518 | } 2519 | }, 2520 | "node_modules/is-regex": { 2521 | "version": "1.1.4", 2522 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2523 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2524 | "dependencies": { 2525 | "call-bind": "^1.0.2", 2526 | "has-tostringtag": "^1.0.0" 2527 | }, 2528 | "engines": { 2529 | "node": ">= 0.4" 2530 | }, 2531 | "funding": { 2532 | "url": "https://github.com/sponsors/ljharb" 2533 | } 2534 | }, 2535 | "node_modules/is-set": { 2536 | "version": "2.0.2", 2537 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", 2538 | "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", 2539 | "funding": { 2540 | "url": "https://github.com/sponsors/ljharb" 2541 | } 2542 | }, 2543 | "node_modules/is-shared-array-buffer": { 2544 | "version": "1.0.2", 2545 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 2546 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 2547 | "dependencies": { 2548 | "call-bind": "^1.0.2" 2549 | }, 2550 | "funding": { 2551 | "url": "https://github.com/sponsors/ljharb" 2552 | } 2553 | }, 2554 | "node_modules/is-stream": { 2555 | "version": "3.0.0", 2556 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", 2557 | "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", 2558 | "engines": { 2559 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2560 | }, 2561 | "funding": { 2562 | "url": "https://github.com/sponsors/sindresorhus" 2563 | } 2564 | }, 2565 | "node_modules/is-string": { 2566 | "version": "1.0.7", 2567 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 2568 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 2569 | "dependencies": { 2570 | "has-tostringtag": "^1.0.0" 2571 | }, 2572 | "engines": { 2573 | "node": ">= 0.4" 2574 | }, 2575 | "funding": { 2576 | "url": "https://github.com/sponsors/ljharb" 2577 | } 2578 | }, 2579 | "node_modules/is-symbol": { 2580 | "version": "1.0.4", 2581 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 2582 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 2583 | "dependencies": { 2584 | "has-symbols": "^1.0.2" 2585 | }, 2586 | "engines": { 2587 | "node": ">= 0.4" 2588 | }, 2589 | "funding": { 2590 | "url": "https://github.com/sponsors/ljharb" 2591 | } 2592 | }, 2593 | "node_modules/is-typed-array": { 2594 | "version": "1.1.10", 2595 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", 2596 | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", 2597 | "dependencies": { 2598 | "available-typed-arrays": "^1.0.5", 2599 | "call-bind": "^1.0.2", 2600 | "for-each": "^0.3.3", 2601 | "gopd": "^1.0.1", 2602 | "has-tostringtag": "^1.0.0" 2603 | }, 2604 | "engines": { 2605 | "node": ">= 0.4" 2606 | }, 2607 | "funding": { 2608 | "url": "https://github.com/sponsors/ljharb" 2609 | } 2610 | }, 2611 | "node_modules/is-weakmap": { 2612 | "version": "2.0.1", 2613 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", 2614 | "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", 2615 | "funding": { 2616 | "url": "https://github.com/sponsors/ljharb" 2617 | } 2618 | }, 2619 | "node_modules/is-weakref": { 2620 | "version": "1.0.2", 2621 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2622 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2623 | "dependencies": { 2624 | "call-bind": "^1.0.2" 2625 | }, 2626 | "funding": { 2627 | "url": "https://github.com/sponsors/ljharb" 2628 | } 2629 | }, 2630 | "node_modules/is-weakset": { 2631 | "version": "2.0.2", 2632 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", 2633 | "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", 2634 | "dependencies": { 2635 | "call-bind": "^1.0.2", 2636 | "get-intrinsic": "^1.1.1" 2637 | }, 2638 | "funding": { 2639 | "url": "https://github.com/sponsors/ljharb" 2640 | } 2641 | }, 2642 | "node_modules/is-wsl": { 2643 | "version": "2.2.0", 2644 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", 2645 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", 2646 | "dependencies": { 2647 | "is-docker": "^2.0.0" 2648 | }, 2649 | "engines": { 2650 | "node": ">=8" 2651 | } 2652 | }, 2653 | "node_modules/is-wsl/node_modules/is-docker": { 2654 | "version": "2.2.1", 2655 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", 2656 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", 2657 | "bin": { 2658 | "is-docker": "cli.js" 2659 | }, 2660 | "engines": { 2661 | "node": ">=8" 2662 | }, 2663 | "funding": { 2664 | "url": "https://github.com/sponsors/sindresorhus" 2665 | } 2666 | }, 2667 | "node_modules/isarray": { 2668 | "version": "2.0.5", 2669 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 2670 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" 2671 | }, 2672 | "node_modules/isexe": { 2673 | "version": "2.0.0", 2674 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2675 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 2676 | }, 2677 | "node_modules/jiti": { 2678 | "version": "1.18.2", 2679 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", 2680 | "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==", 2681 | "bin": { 2682 | "jiti": "bin/jiti.js" 2683 | } 2684 | }, 2685 | "node_modules/joi": { 2686 | "version": "17.9.2", 2687 | "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", 2688 | "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", 2689 | "dependencies": { 2690 | "@hapi/hoek": "^9.0.0", 2691 | "@hapi/topo": "^5.0.0", 2692 | "@sideway/address": "^4.1.3", 2693 | "@sideway/formula": "^3.0.1", 2694 | "@sideway/pinpoint": "^2.0.0" 2695 | } 2696 | }, 2697 | "node_modules/joi/node_modules/@hapi/hoek": { 2698 | "version": "9.3.0", 2699 | "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", 2700 | "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" 2701 | }, 2702 | "node_modules/js-tokens": { 2703 | "version": "4.0.0", 2704 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2705 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 2706 | }, 2707 | "node_modules/js-yaml": { 2708 | "version": "4.1.0", 2709 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2710 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2711 | "dependencies": { 2712 | "argparse": "^2.0.1" 2713 | }, 2714 | "bin": { 2715 | "js-yaml": "bin/js-yaml.js" 2716 | } 2717 | }, 2718 | "node_modules/json-schema-traverse": { 2719 | "version": "0.4.1", 2720 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2721 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 2722 | }, 2723 | "node_modules/json-stable-stringify-without-jsonify": { 2724 | "version": "1.0.1", 2725 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2726 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" 2727 | }, 2728 | "node_modules/json5": { 2729 | "version": "1.0.2", 2730 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 2731 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 2732 | "dependencies": { 2733 | "minimist": "^1.2.0" 2734 | }, 2735 | "bin": { 2736 | "json5": "lib/cli.js" 2737 | } 2738 | }, 2739 | "node_modules/jsx-ast-utils": { 2740 | "version": "3.3.3", 2741 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", 2742 | "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", 2743 | "dependencies": { 2744 | "array-includes": "^3.1.5", 2745 | "object.assign": "^4.1.3" 2746 | }, 2747 | "engines": { 2748 | "node": ">=4.0" 2749 | } 2750 | }, 2751 | "node_modules/language-subtag-registry": { 2752 | "version": "0.3.22", 2753 | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", 2754 | "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" 2755 | }, 2756 | "node_modules/language-tags": { 2757 | "version": "1.0.5", 2758 | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", 2759 | "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", 2760 | "dependencies": { 2761 | "language-subtag-registry": "~0.3.2" 2762 | } 2763 | }, 2764 | "node_modules/levn": { 2765 | "version": "0.4.1", 2766 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2767 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2768 | "dependencies": { 2769 | "prelude-ls": "^1.2.1", 2770 | "type-check": "~0.4.0" 2771 | }, 2772 | "engines": { 2773 | "node": ">= 0.8.0" 2774 | } 2775 | }, 2776 | "node_modules/lilconfig": { 2777 | "version": "2.1.0", 2778 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 2779 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 2780 | "engines": { 2781 | "node": ">=10" 2782 | } 2783 | }, 2784 | "node_modules/lines-and-columns": { 2785 | "version": "1.2.4", 2786 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2787 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" 2788 | }, 2789 | "node_modules/locate-path": { 2790 | "version": "6.0.0", 2791 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2792 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2793 | "dependencies": { 2794 | "p-locate": "^5.0.0" 2795 | }, 2796 | "engines": { 2797 | "node": ">=10" 2798 | }, 2799 | "funding": { 2800 | "url": "https://github.com/sponsors/sindresorhus" 2801 | } 2802 | }, 2803 | "node_modules/lodash.merge": { 2804 | "version": "4.6.2", 2805 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2806 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" 2807 | }, 2808 | "node_modules/loose-envify": { 2809 | "version": "1.4.0", 2810 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2811 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2812 | "dependencies": { 2813 | "js-tokens": "^3.0.0 || ^4.0.0" 2814 | }, 2815 | "bin": { 2816 | "loose-envify": "cli.js" 2817 | } 2818 | }, 2819 | "node_modules/lru-cache": { 2820 | "version": "6.0.0", 2821 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2822 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2823 | "dependencies": { 2824 | "yallist": "^4.0.0" 2825 | }, 2826 | "engines": { 2827 | "node": ">=10" 2828 | } 2829 | }, 2830 | "node_modules/merge-stream": { 2831 | "version": "2.0.0", 2832 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 2833 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" 2834 | }, 2835 | "node_modules/merge2": { 2836 | "version": "1.4.1", 2837 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2838 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2839 | "engines": { 2840 | "node": ">= 8" 2841 | } 2842 | }, 2843 | "node_modules/micromatch": { 2844 | "version": "4.0.5", 2845 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 2846 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 2847 | "dependencies": { 2848 | "braces": "^3.0.2", 2849 | "picomatch": "^2.3.1" 2850 | }, 2851 | "engines": { 2852 | "node": ">=8.6" 2853 | } 2854 | }, 2855 | "node_modules/mimic-fn": { 2856 | "version": "4.0.0", 2857 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", 2858 | "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", 2859 | "engines": { 2860 | "node": ">=12" 2861 | }, 2862 | "funding": { 2863 | "url": "https://github.com/sponsors/sindresorhus" 2864 | } 2865 | }, 2866 | "node_modules/minimatch": { 2867 | "version": "3.1.2", 2868 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2869 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2870 | "dependencies": { 2871 | "brace-expansion": "^1.1.7" 2872 | }, 2873 | "engines": { 2874 | "node": "*" 2875 | } 2876 | }, 2877 | "node_modules/minimist": { 2878 | "version": "1.2.8", 2879 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2880 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 2881 | "funding": { 2882 | "url": "https://github.com/sponsors/ljharb" 2883 | } 2884 | }, 2885 | "node_modules/ms": { 2886 | "version": "2.1.2", 2887 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2888 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2889 | }, 2890 | "node_modules/mz": { 2891 | "version": "2.7.0", 2892 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 2893 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 2894 | "dependencies": { 2895 | "any-promise": "^1.0.0", 2896 | "object-assign": "^4.0.1", 2897 | "thenify-all": "^1.0.0" 2898 | } 2899 | }, 2900 | "node_modules/nanoid": { 2901 | "version": "3.3.6", 2902 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", 2903 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", 2904 | "funding": [ 2905 | { 2906 | "type": "github", 2907 | "url": "https://github.com/sponsors/ai" 2908 | } 2909 | ], 2910 | "bin": { 2911 | "nanoid": "bin/nanoid.cjs" 2912 | }, 2913 | "engines": { 2914 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2915 | } 2916 | }, 2917 | "node_modules/natural-compare": { 2918 | "version": "1.4.0", 2919 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2920 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" 2921 | }, 2922 | "node_modules/next": { 2923 | "version": "13.4.5", 2924 | "resolved": "https://registry.npmjs.org/next/-/next-13.4.5.tgz", 2925 | "integrity": "sha512-pfNsRLVM9e5Y1/z02VakJRfD6hMQkr24FaN2xc9GbcZDBxoOgiNAViSg5cXwlWCoMhtm4U315D7XYhgOr96Q3Q==", 2926 | "dependencies": { 2927 | "@next/env": "13.4.5", 2928 | "@swc/helpers": "0.5.1", 2929 | "busboy": "1.6.0", 2930 | "caniuse-lite": "^1.0.30001406", 2931 | "postcss": "8.4.14", 2932 | "styled-jsx": "5.1.1", 2933 | "watchpack": "2.4.0", 2934 | "zod": "3.21.4" 2935 | }, 2936 | "bin": { 2937 | "next": "dist/bin/next" 2938 | }, 2939 | "engines": { 2940 | "node": ">=16.8.0" 2941 | }, 2942 | "optionalDependencies": { 2943 | "@next/swc-darwin-arm64": "13.4.5", 2944 | "@next/swc-darwin-x64": "13.4.5", 2945 | "@next/swc-linux-arm64-gnu": "13.4.5", 2946 | "@next/swc-linux-arm64-musl": "13.4.5", 2947 | "@next/swc-linux-x64-gnu": "13.4.5", 2948 | "@next/swc-linux-x64-musl": "13.4.5", 2949 | "@next/swc-win32-arm64-msvc": "13.4.5", 2950 | "@next/swc-win32-ia32-msvc": "13.4.5", 2951 | "@next/swc-win32-x64-msvc": "13.4.5" 2952 | }, 2953 | "peerDependencies": { 2954 | "@opentelemetry/api": "^1.1.0", 2955 | "fibers": ">= 3.1.0", 2956 | "react": "^18.2.0", 2957 | "react-dom": "^18.2.0", 2958 | "sass": "^1.3.0" 2959 | }, 2960 | "peerDependenciesMeta": { 2961 | "@opentelemetry/api": { 2962 | "optional": true 2963 | }, 2964 | "fibers": { 2965 | "optional": true 2966 | }, 2967 | "sass": { 2968 | "optional": true 2969 | } 2970 | } 2971 | }, 2972 | "node_modules/next/node_modules/postcss": { 2973 | "version": "8.4.14", 2974 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", 2975 | "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", 2976 | "funding": [ 2977 | { 2978 | "type": "opencollective", 2979 | "url": "https://opencollective.com/postcss/" 2980 | }, 2981 | { 2982 | "type": "tidelift", 2983 | "url": "https://tidelift.com/funding/github/npm/postcss" 2984 | } 2985 | ], 2986 | "dependencies": { 2987 | "nanoid": "^3.3.4", 2988 | "picocolors": "^1.0.0", 2989 | "source-map-js": "^1.0.2" 2990 | }, 2991 | "engines": { 2992 | "node": "^10 || ^12 || >=14" 2993 | } 2994 | }, 2995 | "node_modules/node-releases": { 2996 | "version": "2.0.12", 2997 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", 2998 | "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==" 2999 | }, 3000 | "node_modules/normalize-path": { 3001 | "version": "3.0.0", 3002 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 3003 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 3004 | "engines": { 3005 | "node": ">=0.10.0" 3006 | } 3007 | }, 3008 | "node_modules/normalize-range": { 3009 | "version": "0.1.2", 3010 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 3011 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 3012 | "engines": { 3013 | "node": ">=0.10.0" 3014 | } 3015 | }, 3016 | "node_modules/npm-run-path": { 3017 | "version": "5.1.0", 3018 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", 3019 | "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", 3020 | "dependencies": { 3021 | "path-key": "^4.0.0" 3022 | }, 3023 | "engines": { 3024 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 3025 | }, 3026 | "funding": { 3027 | "url": "https://github.com/sponsors/sindresorhus" 3028 | } 3029 | }, 3030 | "node_modules/npm-run-path/node_modules/path-key": { 3031 | "version": "4.0.0", 3032 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", 3033 | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", 3034 | "engines": { 3035 | "node": ">=12" 3036 | }, 3037 | "funding": { 3038 | "url": "https://github.com/sponsors/sindresorhus" 3039 | } 3040 | }, 3041 | "node_modules/object-assign": { 3042 | "version": "4.1.1", 3043 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 3044 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 3045 | "engines": { 3046 | "node": ">=0.10.0" 3047 | } 3048 | }, 3049 | "node_modules/object-hash": { 3050 | "version": "3.0.0", 3051 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 3052 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 3053 | "engines": { 3054 | "node": ">= 6" 3055 | } 3056 | }, 3057 | "node_modules/object-inspect": { 3058 | "version": "1.12.3", 3059 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", 3060 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", 3061 | "funding": { 3062 | "url": "https://github.com/sponsors/ljharb" 3063 | } 3064 | }, 3065 | "node_modules/object-is": { 3066 | "version": "1.1.5", 3067 | "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", 3068 | "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", 3069 | "dependencies": { 3070 | "call-bind": "^1.0.2", 3071 | "define-properties": "^1.1.3" 3072 | }, 3073 | "engines": { 3074 | "node": ">= 0.4" 3075 | }, 3076 | "funding": { 3077 | "url": "https://github.com/sponsors/ljharb" 3078 | } 3079 | }, 3080 | "node_modules/object-keys": { 3081 | "version": "1.1.1", 3082 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 3083 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 3084 | "engines": { 3085 | "node": ">= 0.4" 3086 | } 3087 | }, 3088 | "node_modules/object.assign": { 3089 | "version": "4.1.4", 3090 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", 3091 | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", 3092 | "dependencies": { 3093 | "call-bind": "^1.0.2", 3094 | "define-properties": "^1.1.4", 3095 | "has-symbols": "^1.0.3", 3096 | "object-keys": "^1.1.1" 3097 | }, 3098 | "engines": { 3099 | "node": ">= 0.4" 3100 | }, 3101 | "funding": { 3102 | "url": "https://github.com/sponsors/ljharb" 3103 | } 3104 | }, 3105 | "node_modules/object.entries": { 3106 | "version": "1.1.6", 3107 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", 3108 | "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", 3109 | "dependencies": { 3110 | "call-bind": "^1.0.2", 3111 | "define-properties": "^1.1.4", 3112 | "es-abstract": "^1.20.4" 3113 | }, 3114 | "engines": { 3115 | "node": ">= 0.4" 3116 | } 3117 | }, 3118 | "node_modules/object.fromentries": { 3119 | "version": "2.0.6", 3120 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", 3121 | "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", 3122 | "dependencies": { 3123 | "call-bind": "^1.0.2", 3124 | "define-properties": "^1.1.4", 3125 | "es-abstract": "^1.20.4" 3126 | }, 3127 | "engines": { 3128 | "node": ">= 0.4" 3129 | }, 3130 | "funding": { 3131 | "url": "https://github.com/sponsors/ljharb" 3132 | } 3133 | }, 3134 | "node_modules/object.hasown": { 3135 | "version": "1.1.2", 3136 | "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", 3137 | "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", 3138 | "dependencies": { 3139 | "define-properties": "^1.1.4", 3140 | "es-abstract": "^1.20.4" 3141 | }, 3142 | "funding": { 3143 | "url": "https://github.com/sponsors/ljharb" 3144 | } 3145 | }, 3146 | "node_modules/object.values": { 3147 | "version": "1.1.6", 3148 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", 3149 | "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", 3150 | "dependencies": { 3151 | "call-bind": "^1.0.2", 3152 | "define-properties": "^1.1.4", 3153 | "es-abstract": "^1.20.4" 3154 | }, 3155 | "engines": { 3156 | "node": ">= 0.4" 3157 | }, 3158 | "funding": { 3159 | "url": "https://github.com/sponsors/ljharb" 3160 | } 3161 | }, 3162 | "node_modules/once": { 3163 | "version": "1.4.0", 3164 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3165 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3166 | "dependencies": { 3167 | "wrappy": "1" 3168 | } 3169 | }, 3170 | "node_modules/onetime": { 3171 | "version": "6.0.0", 3172 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", 3173 | "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", 3174 | "dependencies": { 3175 | "mimic-fn": "^4.0.0" 3176 | }, 3177 | "engines": { 3178 | "node": ">=12" 3179 | }, 3180 | "funding": { 3181 | "url": "https://github.com/sponsors/sindresorhus" 3182 | } 3183 | }, 3184 | "node_modules/open": { 3185 | "version": "9.1.0", 3186 | "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", 3187 | "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", 3188 | "dependencies": { 3189 | "default-browser": "^4.0.0", 3190 | "define-lazy-prop": "^3.0.0", 3191 | "is-inside-container": "^1.0.0", 3192 | "is-wsl": "^2.2.0" 3193 | }, 3194 | "engines": { 3195 | "node": ">=14.16" 3196 | }, 3197 | "funding": { 3198 | "url": "https://github.com/sponsors/sindresorhus" 3199 | } 3200 | }, 3201 | "node_modules/optionator": { 3202 | "version": "0.9.1", 3203 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", 3204 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", 3205 | "dependencies": { 3206 | "deep-is": "^0.1.3", 3207 | "fast-levenshtein": "^2.0.6", 3208 | "levn": "^0.4.1", 3209 | "prelude-ls": "^1.2.1", 3210 | "type-check": "^0.4.0", 3211 | "word-wrap": "^1.2.3" 3212 | }, 3213 | "engines": { 3214 | "node": ">= 0.8.0" 3215 | } 3216 | }, 3217 | "node_modules/p-limit": { 3218 | "version": "3.1.0", 3219 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3220 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3221 | "dependencies": { 3222 | "yocto-queue": "^0.1.0" 3223 | }, 3224 | "engines": { 3225 | "node": ">=10" 3226 | }, 3227 | "funding": { 3228 | "url": "https://github.com/sponsors/sindresorhus" 3229 | } 3230 | }, 3231 | "node_modules/p-locate": { 3232 | "version": "5.0.0", 3233 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3234 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3235 | "dependencies": { 3236 | "p-limit": "^3.0.2" 3237 | }, 3238 | "engines": { 3239 | "node": ">=10" 3240 | }, 3241 | "funding": { 3242 | "url": "https://github.com/sponsors/sindresorhus" 3243 | } 3244 | }, 3245 | "node_modules/parent-module": { 3246 | "version": "1.0.1", 3247 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3248 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3249 | "dependencies": { 3250 | "callsites": "^3.0.0" 3251 | }, 3252 | "engines": { 3253 | "node": ">=6" 3254 | } 3255 | }, 3256 | "node_modules/path-exists": { 3257 | "version": "4.0.0", 3258 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3259 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3260 | "engines": { 3261 | "node": ">=8" 3262 | } 3263 | }, 3264 | "node_modules/path-is-absolute": { 3265 | "version": "1.0.1", 3266 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3267 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3268 | "engines": { 3269 | "node": ">=0.10.0" 3270 | } 3271 | }, 3272 | "node_modules/path-key": { 3273 | "version": "3.1.1", 3274 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3275 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3276 | "engines": { 3277 | "node": ">=8" 3278 | } 3279 | }, 3280 | "node_modules/path-parse": { 3281 | "version": "1.0.7", 3282 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3283 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 3284 | }, 3285 | "node_modules/path-type": { 3286 | "version": "4.0.0", 3287 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3288 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3289 | "engines": { 3290 | "node": ">=8" 3291 | } 3292 | }, 3293 | "node_modules/picocolors": { 3294 | "version": "1.0.0", 3295 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 3296 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 3297 | }, 3298 | "node_modules/picomatch": { 3299 | "version": "2.3.1", 3300 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3301 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3302 | "engines": { 3303 | "node": ">=8.6" 3304 | }, 3305 | "funding": { 3306 | "url": "https://github.com/sponsors/jonschlinkert" 3307 | } 3308 | }, 3309 | "node_modules/pify": { 3310 | "version": "2.3.0", 3311 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 3312 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 3313 | "engines": { 3314 | "node": ">=0.10.0" 3315 | } 3316 | }, 3317 | "node_modules/pirates": { 3318 | "version": "4.0.5", 3319 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", 3320 | "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", 3321 | "engines": { 3322 | "node": ">= 6" 3323 | } 3324 | }, 3325 | "node_modules/postcss": { 3326 | "version": "8.4.24", 3327 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", 3328 | "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", 3329 | "funding": [ 3330 | { 3331 | "type": "opencollective", 3332 | "url": "https://opencollective.com/postcss/" 3333 | }, 3334 | { 3335 | "type": "tidelift", 3336 | "url": "https://tidelift.com/funding/github/npm/postcss" 3337 | }, 3338 | { 3339 | "type": "github", 3340 | "url": "https://github.com/sponsors/ai" 3341 | } 3342 | ], 3343 | "dependencies": { 3344 | "nanoid": "^3.3.6", 3345 | "picocolors": "^1.0.0", 3346 | "source-map-js": "^1.0.2" 3347 | }, 3348 | "engines": { 3349 | "node": "^10 || ^12 || >=14" 3350 | } 3351 | }, 3352 | "node_modules/postcss-import": { 3353 | "version": "15.1.0", 3354 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 3355 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 3356 | "dependencies": { 3357 | "postcss-value-parser": "^4.0.0", 3358 | "read-cache": "^1.0.0", 3359 | "resolve": "^1.1.7" 3360 | }, 3361 | "engines": { 3362 | "node": ">=14.0.0" 3363 | }, 3364 | "peerDependencies": { 3365 | "postcss": "^8.0.0" 3366 | } 3367 | }, 3368 | "node_modules/postcss-js": { 3369 | "version": "4.0.1", 3370 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 3371 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 3372 | "dependencies": { 3373 | "camelcase-css": "^2.0.1" 3374 | }, 3375 | "engines": { 3376 | "node": "^12 || ^14 || >= 16" 3377 | }, 3378 | "funding": { 3379 | "type": "opencollective", 3380 | "url": "https://opencollective.com/postcss/" 3381 | }, 3382 | "peerDependencies": { 3383 | "postcss": "^8.4.21" 3384 | } 3385 | }, 3386 | "node_modules/postcss-load-config": { 3387 | "version": "4.0.1", 3388 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", 3389 | "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", 3390 | "dependencies": { 3391 | "lilconfig": "^2.0.5", 3392 | "yaml": "^2.1.1" 3393 | }, 3394 | "engines": { 3395 | "node": ">= 14" 3396 | }, 3397 | "funding": { 3398 | "type": "opencollective", 3399 | "url": "https://opencollective.com/postcss/" 3400 | }, 3401 | "peerDependencies": { 3402 | "postcss": ">=8.0.9", 3403 | "ts-node": ">=9.0.0" 3404 | }, 3405 | "peerDependenciesMeta": { 3406 | "postcss": { 3407 | "optional": true 3408 | }, 3409 | "ts-node": { 3410 | "optional": true 3411 | } 3412 | } 3413 | }, 3414 | "node_modules/postcss-nested": { 3415 | "version": "6.0.1", 3416 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", 3417 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", 3418 | "dependencies": { 3419 | "postcss-selector-parser": "^6.0.11" 3420 | }, 3421 | "engines": { 3422 | "node": ">=12.0" 3423 | }, 3424 | "funding": { 3425 | "type": "opencollective", 3426 | "url": "https://opencollective.com/postcss/" 3427 | }, 3428 | "peerDependencies": { 3429 | "postcss": "^8.2.14" 3430 | } 3431 | }, 3432 | "node_modules/postcss-selector-parser": { 3433 | "version": "6.0.13", 3434 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", 3435 | "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", 3436 | "dependencies": { 3437 | "cssesc": "^3.0.0", 3438 | "util-deprecate": "^1.0.2" 3439 | }, 3440 | "engines": { 3441 | "node": ">=4" 3442 | } 3443 | }, 3444 | "node_modules/postcss-value-parser": { 3445 | "version": "4.2.0", 3446 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 3447 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" 3448 | }, 3449 | "node_modules/prelude-ls": { 3450 | "version": "1.2.1", 3451 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3452 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3453 | "engines": { 3454 | "node": ">= 0.8.0" 3455 | } 3456 | }, 3457 | "node_modules/prop-types": { 3458 | "version": "15.8.1", 3459 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", 3460 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", 3461 | "dependencies": { 3462 | "loose-envify": "^1.4.0", 3463 | "object-assign": "^4.1.1", 3464 | "react-is": "^16.13.1" 3465 | } 3466 | }, 3467 | "node_modules/punycode": { 3468 | "version": "2.3.0", 3469 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", 3470 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", 3471 | "engines": { 3472 | "node": ">=6" 3473 | } 3474 | }, 3475 | "node_modules/queue-microtask": { 3476 | "version": "1.2.3", 3477 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3478 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3479 | "funding": [ 3480 | { 3481 | "type": "github", 3482 | "url": "https://github.com/sponsors/feross" 3483 | }, 3484 | { 3485 | "type": "patreon", 3486 | "url": "https://www.patreon.com/feross" 3487 | }, 3488 | { 3489 | "type": "consulting", 3490 | "url": "https://feross.org/support" 3491 | } 3492 | ] 3493 | }, 3494 | "node_modules/react": { 3495 | "version": "18.2.0", 3496 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", 3497 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", 3498 | "dependencies": { 3499 | "loose-envify": "^1.1.0" 3500 | }, 3501 | "engines": { 3502 | "node": ">=0.10.0" 3503 | } 3504 | }, 3505 | "node_modules/react-dom": { 3506 | "version": "18.2.0", 3507 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", 3508 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", 3509 | "dependencies": { 3510 | "loose-envify": "^1.1.0", 3511 | "scheduler": "^0.23.0" 3512 | }, 3513 | "peerDependencies": { 3514 | "react": "^18.2.0" 3515 | } 3516 | }, 3517 | "node_modules/react-fast-compare": { 3518 | "version": "3.2.2", 3519 | "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", 3520 | "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" 3521 | }, 3522 | "node_modules/react-is": { 3523 | "version": "16.13.1", 3524 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 3525 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" 3526 | }, 3527 | "node_modules/react-snowfall": { 3528 | "version": "1.2.1", 3529 | "resolved": "https://registry.npmjs.org/react-snowfall/-/react-snowfall-1.2.1.tgz", 3530 | "integrity": "sha512-d2UR3nDq3F0DJGaTfJ0QNbBo76UZHtT9wHFj+ePxAl4FgSxWBhxB/Bjn06f5iDBwhgwiZ7CZmv3lwfNvjo6a+w==", 3531 | "dependencies": { 3532 | "react-fast-compare": "^3.2.0" 3533 | }, 3534 | "peerDependencies": { 3535 | "react": "^16.8 || 17.x || 18.x", 3536 | "react-dom": "^16.8 || 17.x || 18.x" 3537 | } 3538 | }, 3539 | "node_modules/read-cache": { 3540 | "version": "1.0.0", 3541 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 3542 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 3543 | "dependencies": { 3544 | "pify": "^2.3.0" 3545 | } 3546 | }, 3547 | "node_modules/readdirp": { 3548 | "version": "3.6.0", 3549 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3550 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3551 | "dependencies": { 3552 | "picomatch": "^2.2.1" 3553 | }, 3554 | "engines": { 3555 | "node": ">=8.10.0" 3556 | } 3557 | }, 3558 | "node_modules/regenerator-runtime": { 3559 | "version": "0.13.11", 3560 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", 3561 | "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" 3562 | }, 3563 | "node_modules/regexp.prototype.flags": { 3564 | "version": "1.5.0", 3565 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", 3566 | "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", 3567 | "dependencies": { 3568 | "call-bind": "^1.0.2", 3569 | "define-properties": "^1.2.0", 3570 | "functions-have-names": "^1.2.3" 3571 | }, 3572 | "engines": { 3573 | "node": ">= 0.4" 3574 | }, 3575 | "funding": { 3576 | "url": "https://github.com/sponsors/ljharb" 3577 | } 3578 | }, 3579 | "node_modules/resolve": { 3580 | "version": "1.22.2", 3581 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", 3582 | "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", 3583 | "dependencies": { 3584 | "is-core-module": "^2.11.0", 3585 | "path-parse": "^1.0.7", 3586 | "supports-preserve-symlinks-flag": "^1.0.0" 3587 | }, 3588 | "bin": { 3589 | "resolve": "bin/resolve" 3590 | }, 3591 | "funding": { 3592 | "url": "https://github.com/sponsors/ljharb" 3593 | } 3594 | }, 3595 | "node_modules/resolve-from": { 3596 | "version": "4.0.0", 3597 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3598 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3599 | "engines": { 3600 | "node": ">=4" 3601 | } 3602 | }, 3603 | "node_modules/resolve-pkg-maps": { 3604 | "version": "1.0.0", 3605 | "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", 3606 | "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", 3607 | "funding": { 3608 | "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" 3609 | } 3610 | }, 3611 | "node_modules/reusify": { 3612 | "version": "1.0.4", 3613 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3614 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3615 | "engines": { 3616 | "iojs": ">=1.0.0", 3617 | "node": ">=0.10.0" 3618 | } 3619 | }, 3620 | "node_modules/rimraf": { 3621 | "version": "3.0.2", 3622 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3623 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3624 | "dependencies": { 3625 | "glob": "^7.1.3" 3626 | }, 3627 | "bin": { 3628 | "rimraf": "bin.js" 3629 | }, 3630 | "funding": { 3631 | "url": "https://github.com/sponsors/isaacs" 3632 | } 3633 | }, 3634 | "node_modules/run-applescript": { 3635 | "version": "5.0.0", 3636 | "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", 3637 | "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", 3638 | "dependencies": { 3639 | "execa": "^5.0.0" 3640 | }, 3641 | "engines": { 3642 | "node": ">=12" 3643 | }, 3644 | "funding": { 3645 | "url": "https://github.com/sponsors/sindresorhus" 3646 | } 3647 | }, 3648 | "node_modules/run-applescript/node_modules/execa": { 3649 | "version": "5.1.1", 3650 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 3651 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 3652 | "dependencies": { 3653 | "cross-spawn": "^7.0.3", 3654 | "get-stream": "^6.0.0", 3655 | "human-signals": "^2.1.0", 3656 | "is-stream": "^2.0.0", 3657 | "merge-stream": "^2.0.0", 3658 | "npm-run-path": "^4.0.1", 3659 | "onetime": "^5.1.2", 3660 | "signal-exit": "^3.0.3", 3661 | "strip-final-newline": "^2.0.0" 3662 | }, 3663 | "engines": { 3664 | "node": ">=10" 3665 | }, 3666 | "funding": { 3667 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 3668 | } 3669 | }, 3670 | "node_modules/run-applescript/node_modules/human-signals": { 3671 | "version": "2.1.0", 3672 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 3673 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 3674 | "engines": { 3675 | "node": ">=10.17.0" 3676 | } 3677 | }, 3678 | "node_modules/run-applescript/node_modules/is-stream": { 3679 | "version": "2.0.1", 3680 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 3681 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 3682 | "engines": { 3683 | "node": ">=8" 3684 | }, 3685 | "funding": { 3686 | "url": "https://github.com/sponsors/sindresorhus" 3687 | } 3688 | }, 3689 | "node_modules/run-applescript/node_modules/mimic-fn": { 3690 | "version": "2.1.0", 3691 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 3692 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 3693 | "engines": { 3694 | "node": ">=6" 3695 | } 3696 | }, 3697 | "node_modules/run-applescript/node_modules/npm-run-path": { 3698 | "version": "4.0.1", 3699 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 3700 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 3701 | "dependencies": { 3702 | "path-key": "^3.0.0" 3703 | }, 3704 | "engines": { 3705 | "node": ">=8" 3706 | } 3707 | }, 3708 | "node_modules/run-applescript/node_modules/onetime": { 3709 | "version": "5.1.2", 3710 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 3711 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 3712 | "dependencies": { 3713 | "mimic-fn": "^2.1.0" 3714 | }, 3715 | "engines": { 3716 | "node": ">=6" 3717 | }, 3718 | "funding": { 3719 | "url": "https://github.com/sponsors/sindresorhus" 3720 | } 3721 | }, 3722 | "node_modules/run-applescript/node_modules/strip-final-newline": { 3723 | "version": "2.0.0", 3724 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 3725 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 3726 | "engines": { 3727 | "node": ">=6" 3728 | } 3729 | }, 3730 | "node_modules/run-parallel": { 3731 | "version": "1.2.0", 3732 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3733 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3734 | "funding": [ 3735 | { 3736 | "type": "github", 3737 | "url": "https://github.com/sponsors/feross" 3738 | }, 3739 | { 3740 | "type": "patreon", 3741 | "url": "https://www.patreon.com/feross" 3742 | }, 3743 | { 3744 | "type": "consulting", 3745 | "url": "https://feross.org/support" 3746 | } 3747 | ], 3748 | "dependencies": { 3749 | "queue-microtask": "^1.2.2" 3750 | } 3751 | }, 3752 | "node_modules/safe-regex-test": { 3753 | "version": "1.0.0", 3754 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", 3755 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", 3756 | "dependencies": { 3757 | "call-bind": "^1.0.2", 3758 | "get-intrinsic": "^1.1.3", 3759 | "is-regex": "^1.1.4" 3760 | }, 3761 | "funding": { 3762 | "url": "https://github.com/sponsors/ljharb" 3763 | } 3764 | }, 3765 | "node_modules/scheduler": { 3766 | "version": "0.23.0", 3767 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", 3768 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", 3769 | "dependencies": { 3770 | "loose-envify": "^1.1.0" 3771 | } 3772 | }, 3773 | "node_modules/semver": { 3774 | "version": "7.5.1", 3775 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", 3776 | "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", 3777 | "dependencies": { 3778 | "lru-cache": "^6.0.0" 3779 | }, 3780 | "bin": { 3781 | "semver": "bin/semver.js" 3782 | }, 3783 | "engines": { 3784 | "node": ">=10" 3785 | } 3786 | }, 3787 | "node_modules/shebang-command": { 3788 | "version": "2.0.0", 3789 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3790 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3791 | "dependencies": { 3792 | "shebang-regex": "^3.0.0" 3793 | }, 3794 | "engines": { 3795 | "node": ">=8" 3796 | } 3797 | }, 3798 | "node_modules/shebang-regex": { 3799 | "version": "3.0.0", 3800 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3801 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3802 | "engines": { 3803 | "node": ">=8" 3804 | } 3805 | }, 3806 | "node_modules/side-channel": { 3807 | "version": "1.0.4", 3808 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 3809 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 3810 | "dependencies": { 3811 | "call-bind": "^1.0.0", 3812 | "get-intrinsic": "^1.0.2", 3813 | "object-inspect": "^1.9.0" 3814 | }, 3815 | "funding": { 3816 | "url": "https://github.com/sponsors/ljharb" 3817 | } 3818 | }, 3819 | "node_modules/signal-exit": { 3820 | "version": "3.0.7", 3821 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3822 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" 3823 | }, 3824 | "node_modules/simple-oauth2": { 3825 | "version": "5.0.0", 3826 | "resolved": "https://registry.npmjs.org/simple-oauth2/-/simple-oauth2-5.0.0.tgz", 3827 | "integrity": "sha512-8291lo/z5ZdpmiOFzOs1kF3cxn22bMj5FFH+DNUppLJrpoIlM1QnFiE7KpshHu3J3i21TVcx4yW+gXYjdCKDLQ==", 3828 | "dependencies": { 3829 | "@hapi/hoek": "^10.0.1", 3830 | "@hapi/wreck": "^18.0.0", 3831 | "debug": "^4.3.4", 3832 | "joi": "^17.6.4" 3833 | } 3834 | }, 3835 | "node_modules/slash": { 3836 | "version": "3.0.0", 3837 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3838 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3839 | "engines": { 3840 | "node": ">=8" 3841 | } 3842 | }, 3843 | "node_modules/source-map-js": { 3844 | "version": "1.0.2", 3845 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 3846 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 3847 | "engines": { 3848 | "node": ">=0.10.0" 3849 | } 3850 | }, 3851 | "node_modules/stop-iteration-iterator": { 3852 | "version": "1.0.0", 3853 | "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", 3854 | "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", 3855 | "dependencies": { 3856 | "internal-slot": "^1.0.4" 3857 | }, 3858 | "engines": { 3859 | "node": ">= 0.4" 3860 | } 3861 | }, 3862 | "node_modules/streamsearch": { 3863 | "version": "1.1.0", 3864 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", 3865 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", 3866 | "engines": { 3867 | "node": ">=10.0.0" 3868 | } 3869 | }, 3870 | "node_modules/string.prototype.matchall": { 3871 | "version": "4.0.8", 3872 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", 3873 | "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", 3874 | "dependencies": { 3875 | "call-bind": "^1.0.2", 3876 | "define-properties": "^1.1.4", 3877 | "es-abstract": "^1.20.4", 3878 | "get-intrinsic": "^1.1.3", 3879 | "has-symbols": "^1.0.3", 3880 | "internal-slot": "^1.0.3", 3881 | "regexp.prototype.flags": "^1.4.3", 3882 | "side-channel": "^1.0.4" 3883 | }, 3884 | "funding": { 3885 | "url": "https://github.com/sponsors/ljharb" 3886 | } 3887 | }, 3888 | "node_modules/string.prototype.trim": { 3889 | "version": "1.2.7", 3890 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", 3891 | "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", 3892 | "dependencies": { 3893 | "call-bind": "^1.0.2", 3894 | "define-properties": "^1.1.4", 3895 | "es-abstract": "^1.20.4" 3896 | }, 3897 | "engines": { 3898 | "node": ">= 0.4" 3899 | }, 3900 | "funding": { 3901 | "url": "https://github.com/sponsors/ljharb" 3902 | } 3903 | }, 3904 | "node_modules/string.prototype.trimend": { 3905 | "version": "1.0.6", 3906 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", 3907 | "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", 3908 | "dependencies": { 3909 | "call-bind": "^1.0.2", 3910 | "define-properties": "^1.1.4", 3911 | "es-abstract": "^1.20.4" 3912 | }, 3913 | "funding": { 3914 | "url": "https://github.com/sponsors/ljharb" 3915 | } 3916 | }, 3917 | "node_modules/string.prototype.trimstart": { 3918 | "version": "1.0.6", 3919 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", 3920 | "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", 3921 | "dependencies": { 3922 | "call-bind": "^1.0.2", 3923 | "define-properties": "^1.1.4", 3924 | "es-abstract": "^1.20.4" 3925 | }, 3926 | "funding": { 3927 | "url": "https://github.com/sponsors/ljharb" 3928 | } 3929 | }, 3930 | "node_modules/strip-ansi": { 3931 | "version": "6.0.1", 3932 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3933 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3934 | "dependencies": { 3935 | "ansi-regex": "^5.0.1" 3936 | }, 3937 | "engines": { 3938 | "node": ">=8" 3939 | } 3940 | }, 3941 | "node_modules/strip-bom": { 3942 | "version": "3.0.0", 3943 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 3944 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 3945 | "engines": { 3946 | "node": ">=4" 3947 | } 3948 | }, 3949 | "node_modules/strip-final-newline": { 3950 | "version": "3.0.0", 3951 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", 3952 | "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", 3953 | "engines": { 3954 | "node": ">=12" 3955 | }, 3956 | "funding": { 3957 | "url": "https://github.com/sponsors/sindresorhus" 3958 | } 3959 | }, 3960 | "node_modules/strip-json-comments": { 3961 | "version": "3.1.1", 3962 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3963 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3964 | "engines": { 3965 | "node": ">=8" 3966 | }, 3967 | "funding": { 3968 | "url": "https://github.com/sponsors/sindresorhus" 3969 | } 3970 | }, 3971 | "node_modules/styled-jsx": { 3972 | "version": "5.1.1", 3973 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", 3974 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", 3975 | "dependencies": { 3976 | "client-only": "0.0.1" 3977 | }, 3978 | "engines": { 3979 | "node": ">= 12.0.0" 3980 | }, 3981 | "peerDependencies": { 3982 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" 3983 | }, 3984 | "peerDependenciesMeta": { 3985 | "@babel/core": { 3986 | "optional": true 3987 | }, 3988 | "babel-plugin-macros": { 3989 | "optional": true 3990 | } 3991 | } 3992 | }, 3993 | "node_modules/sucrase": { 3994 | "version": "3.32.0", 3995 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", 3996 | "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==", 3997 | "dependencies": { 3998 | "@jridgewell/gen-mapping": "^0.3.2", 3999 | "commander": "^4.0.0", 4000 | "glob": "7.1.6", 4001 | "lines-and-columns": "^1.1.6", 4002 | "mz": "^2.7.0", 4003 | "pirates": "^4.0.1", 4004 | "ts-interface-checker": "^0.1.9" 4005 | }, 4006 | "bin": { 4007 | "sucrase": "bin/sucrase", 4008 | "sucrase-node": "bin/sucrase-node" 4009 | }, 4010 | "engines": { 4011 | "node": ">=8" 4012 | } 4013 | }, 4014 | "node_modules/sucrase/node_modules/glob": { 4015 | "version": "7.1.6", 4016 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", 4017 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", 4018 | "dependencies": { 4019 | "fs.realpath": "^1.0.0", 4020 | "inflight": "^1.0.4", 4021 | "inherits": "2", 4022 | "minimatch": "^3.0.4", 4023 | "once": "^1.3.0", 4024 | "path-is-absolute": "^1.0.0" 4025 | }, 4026 | "engines": { 4027 | "node": "*" 4028 | }, 4029 | "funding": { 4030 | "url": "https://github.com/sponsors/isaacs" 4031 | } 4032 | }, 4033 | "node_modules/supports-color": { 4034 | "version": "7.2.0", 4035 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 4036 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 4037 | "dependencies": { 4038 | "has-flag": "^4.0.0" 4039 | }, 4040 | "engines": { 4041 | "node": ">=8" 4042 | } 4043 | }, 4044 | "node_modules/supports-preserve-symlinks-flag": { 4045 | "version": "1.0.0", 4046 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 4047 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 4048 | "engines": { 4049 | "node": ">= 0.4" 4050 | }, 4051 | "funding": { 4052 | "url": "https://github.com/sponsors/ljharb" 4053 | } 4054 | }, 4055 | "node_modules/swr": { 4056 | "version": "2.1.5", 4057 | "resolved": "https://registry.npmjs.org/swr/-/swr-2.1.5.tgz", 4058 | "integrity": "sha512-/OhfZMcEpuz77KavXST5q6XE9nrOBOVcBLWjMT+oAE/kQHyE3PASrevXCtQDZ8aamntOfFkbVJp7Il9tNBQWrw==", 4059 | "dependencies": { 4060 | "use-sync-external-store": "^1.2.0" 4061 | }, 4062 | "peerDependencies": { 4063 | "react": "^16.11.0 || ^17.0.0 || ^18.0.0" 4064 | } 4065 | }, 4066 | "node_modules/synckit": { 4067 | "version": "0.8.5", 4068 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", 4069 | "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", 4070 | "dependencies": { 4071 | "@pkgr/utils": "^2.3.1", 4072 | "tslib": "^2.5.0" 4073 | }, 4074 | "engines": { 4075 | "node": "^14.18.0 || >=16.0.0" 4076 | }, 4077 | "funding": { 4078 | "url": "https://opencollective.com/unts" 4079 | } 4080 | }, 4081 | "node_modules/tailwindcss": { 4082 | "version": "3.3.2", 4083 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz", 4084 | "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==", 4085 | "dependencies": { 4086 | "@alloc/quick-lru": "^5.2.0", 4087 | "arg": "^5.0.2", 4088 | "chokidar": "^3.5.3", 4089 | "didyoumean": "^1.2.2", 4090 | "dlv": "^1.1.3", 4091 | "fast-glob": "^3.2.12", 4092 | "glob-parent": "^6.0.2", 4093 | "is-glob": "^4.0.3", 4094 | "jiti": "^1.18.2", 4095 | "lilconfig": "^2.1.0", 4096 | "micromatch": "^4.0.5", 4097 | "normalize-path": "^3.0.0", 4098 | "object-hash": "^3.0.0", 4099 | "picocolors": "^1.0.0", 4100 | "postcss": "^8.4.23", 4101 | "postcss-import": "^15.1.0", 4102 | "postcss-js": "^4.0.1", 4103 | "postcss-load-config": "^4.0.1", 4104 | "postcss-nested": "^6.0.1", 4105 | "postcss-selector-parser": "^6.0.11", 4106 | "postcss-value-parser": "^4.2.0", 4107 | "resolve": "^1.22.2", 4108 | "sucrase": "^3.32.0" 4109 | }, 4110 | "bin": { 4111 | "tailwind": "lib/cli.js", 4112 | "tailwindcss": "lib/cli.js" 4113 | }, 4114 | "engines": { 4115 | "node": ">=14.0.0" 4116 | } 4117 | }, 4118 | "node_modules/tapable": { 4119 | "version": "2.2.1", 4120 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 4121 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 4122 | "engines": { 4123 | "node": ">=6" 4124 | } 4125 | }, 4126 | "node_modules/text-table": { 4127 | "version": "0.2.0", 4128 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 4129 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" 4130 | }, 4131 | "node_modules/thenify": { 4132 | "version": "3.3.1", 4133 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 4134 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 4135 | "dependencies": { 4136 | "any-promise": "^1.0.0" 4137 | } 4138 | }, 4139 | "node_modules/thenify-all": { 4140 | "version": "1.6.0", 4141 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 4142 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 4143 | "dependencies": { 4144 | "thenify": ">= 3.1.0 < 4" 4145 | }, 4146 | "engines": { 4147 | "node": ">=0.8" 4148 | } 4149 | }, 4150 | "node_modules/titleize": { 4151 | "version": "3.0.0", 4152 | "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", 4153 | "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", 4154 | "engines": { 4155 | "node": ">=12" 4156 | }, 4157 | "funding": { 4158 | "url": "https://github.com/sponsors/sindresorhus" 4159 | } 4160 | }, 4161 | "node_modules/to-regex-range": { 4162 | "version": "5.0.1", 4163 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 4164 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 4165 | "dependencies": { 4166 | "is-number": "^7.0.0" 4167 | }, 4168 | "engines": { 4169 | "node": ">=8.0" 4170 | } 4171 | }, 4172 | "node_modules/ts-interface-checker": { 4173 | "version": "0.1.13", 4174 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 4175 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" 4176 | }, 4177 | "node_modules/tsconfig-paths": { 4178 | "version": "3.14.2", 4179 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", 4180 | "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", 4181 | "dependencies": { 4182 | "@types/json5": "^0.0.29", 4183 | "json5": "^1.0.2", 4184 | "minimist": "^1.2.6", 4185 | "strip-bom": "^3.0.0" 4186 | } 4187 | }, 4188 | "node_modules/tslib": { 4189 | "version": "2.5.3", 4190 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", 4191 | "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" 4192 | }, 4193 | "node_modules/tsutils": { 4194 | "version": "3.21.0", 4195 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 4196 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 4197 | "dependencies": { 4198 | "tslib": "^1.8.1" 4199 | }, 4200 | "engines": { 4201 | "node": ">= 6" 4202 | }, 4203 | "peerDependencies": { 4204 | "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" 4205 | } 4206 | }, 4207 | "node_modules/tsutils/node_modules/tslib": { 4208 | "version": "1.14.1", 4209 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 4210 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" 4211 | }, 4212 | "node_modules/type-check": { 4213 | "version": "0.4.0", 4214 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 4215 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 4216 | "dependencies": { 4217 | "prelude-ls": "^1.2.1" 4218 | }, 4219 | "engines": { 4220 | "node": ">= 0.8.0" 4221 | } 4222 | }, 4223 | "node_modules/type-fest": { 4224 | "version": "0.20.2", 4225 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 4226 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 4227 | "engines": { 4228 | "node": ">=10" 4229 | }, 4230 | "funding": { 4231 | "url": "https://github.com/sponsors/sindresorhus" 4232 | } 4233 | }, 4234 | "node_modules/typed-array-length": { 4235 | "version": "1.0.4", 4236 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", 4237 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", 4238 | "dependencies": { 4239 | "call-bind": "^1.0.2", 4240 | "for-each": "^0.3.3", 4241 | "is-typed-array": "^1.1.9" 4242 | }, 4243 | "funding": { 4244 | "url": "https://github.com/sponsors/ljharb" 4245 | } 4246 | }, 4247 | "node_modules/typescript": { 4248 | "version": "5.1.3", 4249 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", 4250 | "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", 4251 | "bin": { 4252 | "tsc": "bin/tsc", 4253 | "tsserver": "bin/tsserver" 4254 | }, 4255 | "engines": { 4256 | "node": ">=14.17" 4257 | } 4258 | }, 4259 | "node_modules/unbox-primitive": { 4260 | "version": "1.0.2", 4261 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 4262 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 4263 | "dependencies": { 4264 | "call-bind": "^1.0.2", 4265 | "has-bigints": "^1.0.2", 4266 | "has-symbols": "^1.0.3", 4267 | "which-boxed-primitive": "^1.0.2" 4268 | }, 4269 | "funding": { 4270 | "url": "https://github.com/sponsors/ljharb" 4271 | } 4272 | }, 4273 | "node_modules/untildify": { 4274 | "version": "4.0.0", 4275 | "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", 4276 | "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", 4277 | "engines": { 4278 | "node": ">=8" 4279 | } 4280 | }, 4281 | "node_modules/update-browserslist-db": { 4282 | "version": "1.0.11", 4283 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", 4284 | "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", 4285 | "funding": [ 4286 | { 4287 | "type": "opencollective", 4288 | "url": "https://opencollective.com/browserslist" 4289 | }, 4290 | { 4291 | "type": "tidelift", 4292 | "url": "https://tidelift.com/funding/github/npm/browserslist" 4293 | }, 4294 | { 4295 | "type": "github", 4296 | "url": "https://github.com/sponsors/ai" 4297 | } 4298 | ], 4299 | "dependencies": { 4300 | "escalade": "^3.1.1", 4301 | "picocolors": "^1.0.0" 4302 | }, 4303 | "bin": { 4304 | "update-browserslist-db": "cli.js" 4305 | }, 4306 | "peerDependencies": { 4307 | "browserslist": ">= 4.21.0" 4308 | } 4309 | }, 4310 | "node_modules/uri-js": { 4311 | "version": "4.4.1", 4312 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 4313 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 4314 | "dependencies": { 4315 | "punycode": "^2.1.0" 4316 | } 4317 | }, 4318 | "node_modules/use-sync-external-store": { 4319 | "version": "1.2.0", 4320 | "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", 4321 | "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", 4322 | "peerDependencies": { 4323 | "react": "^16.8.0 || ^17.0.0 || ^18.0.0" 4324 | } 4325 | }, 4326 | "node_modules/util-deprecate": { 4327 | "version": "1.0.2", 4328 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 4329 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 4330 | }, 4331 | "node_modules/watchpack": { 4332 | "version": "2.4.0", 4333 | "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", 4334 | "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", 4335 | "dependencies": { 4336 | "glob-to-regexp": "^0.4.1", 4337 | "graceful-fs": "^4.1.2" 4338 | }, 4339 | "engines": { 4340 | "node": ">=10.13.0" 4341 | } 4342 | }, 4343 | "node_modules/which": { 4344 | "version": "2.0.2", 4345 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4346 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4347 | "dependencies": { 4348 | "isexe": "^2.0.0" 4349 | }, 4350 | "bin": { 4351 | "node-which": "bin/node-which" 4352 | }, 4353 | "engines": { 4354 | "node": ">= 8" 4355 | } 4356 | }, 4357 | "node_modules/which-boxed-primitive": { 4358 | "version": "1.0.2", 4359 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 4360 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 4361 | "dependencies": { 4362 | "is-bigint": "^1.0.1", 4363 | "is-boolean-object": "^1.1.0", 4364 | "is-number-object": "^1.0.4", 4365 | "is-string": "^1.0.5", 4366 | "is-symbol": "^1.0.3" 4367 | }, 4368 | "funding": { 4369 | "url": "https://github.com/sponsors/ljharb" 4370 | } 4371 | }, 4372 | "node_modules/which-collection": { 4373 | "version": "1.0.1", 4374 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", 4375 | "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", 4376 | "dependencies": { 4377 | "is-map": "^2.0.1", 4378 | "is-set": "^2.0.1", 4379 | "is-weakmap": "^2.0.1", 4380 | "is-weakset": "^2.0.1" 4381 | }, 4382 | "funding": { 4383 | "url": "https://github.com/sponsors/ljharb" 4384 | } 4385 | }, 4386 | "node_modules/which-typed-array": { 4387 | "version": "1.1.9", 4388 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", 4389 | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", 4390 | "dependencies": { 4391 | "available-typed-arrays": "^1.0.5", 4392 | "call-bind": "^1.0.2", 4393 | "for-each": "^0.3.3", 4394 | "gopd": "^1.0.1", 4395 | "has-tostringtag": "^1.0.0", 4396 | "is-typed-array": "^1.1.10" 4397 | }, 4398 | "engines": { 4399 | "node": ">= 0.4" 4400 | }, 4401 | "funding": { 4402 | "url": "https://github.com/sponsors/ljharb" 4403 | } 4404 | }, 4405 | "node_modules/word-wrap": { 4406 | "version": "1.2.3", 4407 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", 4408 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", 4409 | "engines": { 4410 | "node": ">=0.10.0" 4411 | } 4412 | }, 4413 | "node_modules/wrappy": { 4414 | "version": "1.0.2", 4415 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4416 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 4417 | }, 4418 | "node_modules/yallist": { 4419 | "version": "4.0.0", 4420 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 4421 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 4422 | }, 4423 | "node_modules/yaml": { 4424 | "version": "2.3.1", 4425 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", 4426 | "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", 4427 | "engines": { 4428 | "node": ">= 14" 4429 | } 4430 | }, 4431 | "node_modules/yocto-queue": { 4432 | "version": "0.1.0", 4433 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4434 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4435 | "engines": { 4436 | "node": ">=10" 4437 | }, 4438 | "funding": { 4439 | "url": "https://github.com/sponsors/sindresorhus" 4440 | } 4441 | }, 4442 | "node_modules/zod": { 4443 | "version": "3.21.4", 4444 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", 4445 | "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", 4446 | "funding": { 4447 | "url": "https://github.com/sponsors/colinhacks" 4448 | } 4449 | } 4450 | } 4451 | } 4452 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jetscreen", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@splidejs/react-splide": "^0.7.12", 13 | "@types/node": "20.3.0", 14 | "@types/react": "18.2.11", 15 | "@types/react-dom": "18.2.4", 16 | "autoprefixer": "10.4.14", 17 | "eslint": "8.42.0", 18 | "eslint-config-next": "13.4.5", 19 | "next": "13.4.5", 20 | "postcss": "8.4.24", 21 | "react": "18.2.0", 22 | "react-dom": "18.2.0", 23 | "swr": "^2.1.5", 24 | "tailwindcss": "3.3.2", 25 | "typescript": "5.1.3" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screendemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetclock/jetscreen-v2/61d8dbb26dca96ae7ee61ed6f78c8d28822f3aed/screendemo.gif -------------------------------------------------------------------------------- /src/app/api/aircraft/route.ts: -------------------------------------------------------------------------------- 1 | import { NextResponse } from "next/server"; 2 | export const revalidate = 0; 3 | const API_URL = process.env.LOCAL_ADSB_URL || ""; 4 | 5 | export async function GET() { 6 | try { 7 | // Fetch data from the external API 8 | const response = await fetch(API_URL); 9 | 10 | // Handle unsuccessful requests 11 | if (!response.ok) { 12 | return NextResponse.json( 13 | { error: "Failed to fetch aircraft data" }, 14 | { status: response.status } 15 | ); 16 | } 17 | 18 | // Parse the JSON data from the response 19 | const data = await response.json(); 20 | 21 | // Return the data as a JSON response 22 | return NextResponse.json(data); 23 | } catch (error) { 24 | // Handle any errors that occur during the fetch 25 | return NextResponse.json( 26 | { error: "An error occurred while fetching data" }, 27 | { status: 500 } 28 | ); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/app/api/getroute/route.ts: -------------------------------------------------------------------------------- 1 | import { NextRequest, NextResponse } from "next/server"; 2 | 3 | const FLIGHT_DETAILS_URL = process.env.NEXT_PUBLIC_FLIGHT_DETAILS_URL || ""; 4 | 5 | export async function GET(request: NextRequest) { 6 | const { searchParams } = request.nextUrl; 7 | 8 | // Extract the callsign from the query parameters 9 | const callsign = searchParams.get("callsign"); 10 | if (!callsign) { 11 | return NextResponse.json( 12 | { error: "No callsign provided" }, 13 | { status: 400 } 14 | ); 15 | } 16 | 17 | try { 18 | // Fetch data from the external API 19 | const flightDetails = await fetch(`${FLIGHT_DETAILS_URL}${callsign}`); 20 | 21 | // Handle unsuccessful requests 22 | if (!flightDetails.ok) { 23 | return NextResponse.json( 24 | { error: "Failed to fetch flight details" }, 25 | { status: flightDetails.status } 26 | ); 27 | } 28 | 29 | // Parse the JSON data from the response 30 | const flightInfo = await flightDetails.json(); 31 | 32 | // Return the data as a JSON response 33 | return NextResponse.json(flightInfo); 34 | } catch (error) { 35 | console.error("Error fetching flight details:", error); // Log the error for debugging 36 | return NextResponse.json( 37 | { error: "An error occurred while fetching flight data" }, 38 | { status: 500 } 39 | ); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/app/components/PlaneAnimation.tsx: -------------------------------------------------------------------------------- 1 | interface PlaneAnimationProps {} 2 | 3 | export const PlaneAnimation = ({}: PlaneAnimationProps) => { 4 | return ( 5 |
6 |
7 |
8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 26 | 27 | 28 | 40 | 41 | 42 |
43 |
44 |
45 |
46 | ); 47 | }; 48 | -------------------------------------------------------------------------------- /src/app/components/SlideHolder.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import React from "react"; 3 | import { Splide, SplideSlide } from "@splidejs/react-splide"; 4 | import "@splidejs/react-splide/css"; 5 | import { classNames } from "../lib/classNames"; 6 | 7 | type Props = { 8 | slides: any; 9 | splideRef: any; 10 | }; 11 | 12 | const options = { 13 | type: "loop", 14 | arrows: false, 15 | direction: "ttb", 16 | height: "100vh", 17 | autoplay: true, 18 | interval: 10000, 19 | speed: 1000, 20 | pagination: false, 21 | }; 22 | 23 | const SlideHolder = ({ slides, splideRef }: Props) => { 24 | return ( 25 | <> 26 | {/* @ts-expect-error Server Component */} 27 | 28 | {slides.map((slide: any, index: number) => { 29 | return ( 30 | 31 |
32 | {slides.map((item: any, index: number) => ( 33 |
40 | {item.stat} 41 |
{item.title}
42 |
43 | ))} 44 |
45 |
46 | ); 47 | })} 48 |
49 | 50 | ); 51 | }; 52 | 53 | export default SlideHolder; 54 | -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetclock/jetscreen-v2/61d8dbb26dca96ae7ee61ed6f78c8d28822f3aed/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | 6 | #splash { 7 | background: #000000; 8 | background-repeat: repeat-y; 9 | position: fixed; 10 | left: 0; 11 | top: 0; 12 | width: 100%; 13 | height: 100%; 14 | animation: splash 3s ease-in; 15 | animation-fill-mode: forwards; 16 | -webkit-animation-fill-mode: forwards; 17 | } 18 | 19 | #loader { 20 | position: absolute; 21 | left: 50%; 22 | top: 0; 23 | transform: translate(-50%, 0); 24 | } 25 | 26 | #loader:after { 27 | content: ''; 28 | position: absolute; 29 | left: 50%; 30 | margin-left: -8px; 31 | bottom: -170px; 32 | width: 3px; 33 | background: #fff; 34 | background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%); 35 | height: 200px; 36 | } 37 | 38 | #loader:before { 39 | content: ''; 40 | position: absolute; 41 | left: 50%; 42 | margin-left: 8px; 43 | bottom: -190px; 44 | width: 3px; 45 | background: #000; 46 | background: linear-gradient(to bottom, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .2) 50%, rgba(0, 0, 0, 0) 100%); 47 | height: 200px; 48 | } 49 | 50 | #splash .anim { 51 | height: 100%; 52 | position: absolute; 53 | left: 50%; 54 | width: 100px; 55 | transform: translate(-50%, 100%); 56 | animation: loader 4s linear; 57 | animation-fill-mode: forwards; 58 | -webkit-animation-fill-mode: forwards; 59 | } 60 | 61 | @keyframes loader { 62 | 0% { 63 | transform: translate(-50%, 110%); 64 | } 65 | 66 | 30% { 67 | transform: translate(-50%, 50%); 68 | } 69 | 70 | 100% { 71 | transform: translate(-50%, 0%); 72 | } 73 | } 74 | 75 | @keyframes splash { 76 | 0% { 77 | transform: translate(0%, 0%); 78 | } 79 | 80 | 50% { 81 | transform: translate(0%, 0%); 82 | } 83 | 84 | 100% { 85 | transform: translate(0%, -100%); 86 | } 87 | } -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- 1 | import "./globals.css"; 2 | import { Inter } from "next/font/google"; 3 | 4 | const inter = Inter({ subsets: ["latin"] }); 5 | 6 | export const metadata = { 7 | title: "JetScreen", 8 | }; 9 | 10 | export default function RootLayout({ 11 | children, 12 | }: { 13 | children: React.ReactNode; 14 | }) { 15 | return ( 16 | 17 | {children} 18 | 19 | ); 20 | } 21 | -------------------------------------------------------------------------------- /src/app/lib/classNames.ts: -------------------------------------------------------------------------------- 1 | export const classNames = ( 2 | ...classes: (string | false | null | undefined)[] 3 | ) => { 4 | return classes.filter(Boolean).join(" "); 5 | }; 6 | -------------------------------------------------------------------------------- /src/app/lib/haversine.ts: -------------------------------------------------------------------------------- 1 | // Haversine formula to calculate distance between two lat/lon points 2 | export const haversineDistance = ( 3 | lat1: number, 4 | lon1: number, 5 | lat2: number, 6 | lon2: number 7 | ) => { 8 | const R = 6371; // Earth radius in kilometers 9 | const toRadians = (deg: number) => (deg * Math.PI) / 180; 10 | const deltaLat = toRadians(lat2 - lat1); 11 | const deltaLon = toRadians(lon2 - lon1); 12 | const a = 13 | Math.sin(deltaLat / 2) * Math.sin(deltaLat / 2) + 14 | Math.cos(toRadians(lat1)) * 15 | Math.cos(toRadians(lat2)) * 16 | Math.sin(deltaLon / 2) * 17 | Math.sin(deltaLon / 2); 18 | const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a)); 19 | return R * c; 20 | }; 21 | -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { useEffect, useRef, useState } from "react"; 3 | import SlideHolder from "./components/SlideHolder"; 4 | import { PlaneAnimation } from "./components/PlaneAnimation"; 5 | import { haversineDistance } from "./lib/haversine"; 6 | 7 | const CENTER_LAT = parseFloat(process.env.NEXT_PUBLIC_CENTER_LAT || "0"); 8 | const CENTER_LON = parseFloat(process.env.NEXT_PUBLIC_CENTER_LON || "0"); 9 | const RADIUS_KM = parseFloat(process.env.NEXT_PUBLIC_RADIUS_KM || "0"); 10 | 11 | export default function Home() { 12 | const [statePlaneData, setStatePlaneData] = useState(null); 13 | const [currentTime, setCurrentTime] = useState(""); 14 | const currentCallsign = useRef(""); 15 | const splideRef = useRef(null); 16 | 17 | const planeSlide = [ 18 | { 19 | title: "Origin City", 20 | stat: statePlaneData?.origin?.municipality, 21 | width: "w-7/12", 22 | }, 23 | { 24 | title: "Airport Code", 25 | stat: statePlaneData?.origin?.iata_code, 26 | width: "w-5/12", 27 | }, 28 | ]; 29 | 30 | const slides = [ 31 | { 32 | title: "Current Time", 33 | stat: currentTime, 34 | width: "w-full", 35 | }, 36 | ]; 37 | 38 | const getPlanesAround = async () => { 39 | try { 40 | const planesAround = await fetch("/api/aircraft"); 41 | const response = await planesAround.json(); 42 | 43 | const planeDistances = response.aircraft 44 | .map((plane: any) => { 45 | if (!plane.flight || !plane.lat || !plane.lon) { 46 | return null; 47 | } 48 | const distance = haversineDistance( 49 | CENTER_LAT, 50 | CENTER_LON, 51 | plane.lat, 52 | plane.lon 53 | ); 54 | if (distance > RADIUS_KM) { 55 | return null; 56 | } 57 | return { ...plane, distance }; 58 | }) 59 | .filter((plane: any) => plane !== null); 60 | 61 | if (planeDistances.length === 0) { 62 | setStatePlaneData(null); 63 | return; 64 | } 65 | 66 | try { 67 | const nearestPlaneCallsign = planeDistances[0]?.flight.trim(); 68 | if (currentCallsign.current === nearestPlaneCallsign) { 69 | return; 70 | } 71 | currentCallsign.current = nearestPlaneCallsign; 72 | const flightDetails = await fetch( 73 | `/api/getroute?callsign=${nearestPlaneCallsign}` 74 | ); 75 | const flightInfo = await flightDetails.json(); 76 | 77 | if (flightDetails.ok) { 78 | const flightRoute = flightInfo.response.flightroute; 79 | console.log("Flight route:", flightRoute); 80 | setStatePlaneData(flightRoute); 81 | } else { 82 | console.error("Error fetching flight details:", flightInfo.error); 83 | } 84 | } catch (error) { 85 | console.error("Failed to fetch aircraft data", error); 86 | } 87 | } catch (error) { 88 | console.error("Failed to fetch aircraft data", error); 89 | } 90 | }; 91 | 92 | useEffect(() => { 93 | const timeInterval = setInterval(() => { 94 | setCurrentTime(new Date().toLocaleTimeString()); 95 | }, 1000); 96 | return () => clearInterval(timeInterval); 97 | }, []); 98 | 99 | useEffect(() => { 100 | getPlanesAround(); 101 | // Fetch aircraft data every 10 seconds 102 | const planeInterval = setInterval(() => { 103 | getPlanesAround(); 104 | }, 10000); 105 | return () => clearInterval(planeInterval); 106 | }, []); 107 | 108 | return ( 109 |
110 | {statePlaneData && } 111 | 115 |
116 | ); 117 | } 118 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | './src/pages/**/*.{js,ts,jsx,tsx,mdx}', 5 | './src/components/**/*.{js,ts,jsx,tsx,mdx}', 6 | './src/app/**/*.{js,ts,jsx,tsx,mdx}', 7 | ], 8 | theme: { 9 | extend: { 10 | backgroundImage: { 11 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 12 | 'gradient-conic': 13 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', 14 | }, 15 | }, 16 | }, 17 | plugins: [], 18 | } 19 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "forceConsistentCasingInFileNames": true, 9 | "noEmit": true, 10 | "esModuleInterop": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "resolveJsonModule": true, 14 | "isolatedModules": true, 15 | "jsx": "preserve", 16 | "incremental": true, 17 | "plugins": [ 18 | { 19 | "name": "next" 20 | } 21 | ], 22 | "paths": { 23 | "@/*": ["./src/*"] 24 | } 25 | }, 26 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 27 | "exclude": ["node_modules"] 28 | } 29 | --------------------------------------------------------------------------------