├── backend
├── .gitignore
├── src
│ ├── service
│ │ ├── index.ts
│ │ └── aiQuery.ts
│ ├── index.ts
│ └── public
│ │ └── README.md
├── package.json
├── tsconfig.json
└── README.md
├── .prettierrc
├── tsconfig.json
├── frontend
├── src
│ ├── types.ts
│ ├── components
│ │ ├── LoadingIndicator.tsx
│ │ ├── LoadingIndicator.css
│ │ ├── TripList.tsx
│ │ ├── AddTripForm.css
│ │ ├── AskAI.tsx
│ │ ├── AskAI.css
│ │ ├── AddTripForm.tsx
│ │ ├── Trip.tsx
│ │ └── Trip.css
│ ├── App.css
│ ├── vite-env.d.ts
│ ├── index.css
│ ├── main.tsx
│ └── App.tsx
├── vite.config.ts
├── tsconfig.node.json
├── .gitignore
├── index.html
├── .eslintrc.cjs
├── tsconfig.json
├── package.json
├── public
│ └── squid.svg
├── README.md
└── package-lock.json
├── .gitignore
├── package.json
├── LICENSE
└── README.md
/backend/.gitignore:
--------------------------------------------------------------------------------
1 | .env
2 | node_modules
3 | dist
--------------------------------------------------------------------------------
/backend/src/service/index.ts:
--------------------------------------------------------------------------------
1 | export * from './aiQuery';
2 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "singleQuote": true,
3 | "trailingComma": "all"
4 | }
5 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "files": [],
3 | "references": [
4 | { "path": "./backend" },
5 | { "path": "./frontend" }
6 | ]
7 | }
--------------------------------------------------------------------------------
/frontend/src/types.ts:
--------------------------------------------------------------------------------
1 | export type Trip = {
2 | startDate: Date
3 | endDate: Date
4 | country: string;
5 | notes: string[];
6 | id: string
7 | }
--------------------------------------------------------------------------------
/frontend/vite.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vite'
2 | import react from '@vitejs/plugin-react'
3 |
4 | // https://vitejs.dev/config/
5 | export default defineConfig({
6 | plugins: [react()],
7 | })
8 |
--------------------------------------------------------------------------------
/frontend/src/components/LoadingIndicator.tsx:
--------------------------------------------------------------------------------
1 | import React from "react"
2 | import "./LoadingIndicator.css"
3 |
4 | function LoadingIndicator() {
5 | return
6 | }
7 |
8 | export default LoadingIndicator
--------------------------------------------------------------------------------
/frontend/tsconfig.node.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "composite": true,
4 | "skipLibCheck": true,
5 | "module": "ESNext",
6 | "moduleResolution": "bundler",
7 | "allowSyntheticDefaultImports": true,
8 | "strict": true
9 | },
10 | "include": ["vite.config.ts"]
11 | }
12 |
--------------------------------------------------------------------------------
/frontend/src/App.css:
--------------------------------------------------------------------------------
1 | .card {
2 | margin: 20px 20px 20px 20px;
3 | border: 1px solid #ccc;
4 | border-radius: 10px;
5 | padding: 30px;
6 | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
7 | background-color: #f9f9f9;
8 | }
9 |
10 | .internal-card {
11 | width: 100%;
12 | margin-bottom: 20px;
13 | }
14 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | pnpm-debug.log*
8 | lerna-debug.log*
9 |
10 | node_modules
11 | dist
12 | dist-ssr
13 | *.local
14 |
15 | # Editor directories and files
16 | .vscode/*
17 | !.vscode/extensions.json
18 | .idea
19 | .DS_Store
20 | *.suo
21 | *.ntvs*
22 | *.njsproj
23 | *.sln
24 | *.sw?
25 |
--------------------------------------------------------------------------------
/frontend/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | pnpm-debug.log*
8 | lerna-debug.log*
9 |
10 | node_modules
11 | dist
12 | dist-ssr
13 | *.local
14 |
15 | # Editor directories and files
16 | .vscode/*
17 | !.vscode/extensions.json
18 | .idea
19 | .DS_Store
20 | *.suo
21 | *.ntvs*
22 | *.njsproj
23 | *.sln
24 | *.sw?
--------------------------------------------------------------------------------
/frontend/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
3 | interface ImportMetaEnv {
4 | readonly VITE_SQUID_APP_ID: string;
5 | readonly VITE_SQUID_REGION: SquidRegion;
6 | readonly VITE_SQUID_ENVIRONMENT_ID: EnvironmentId;
7 | readonly VITE_SQUID_DEVELOPER_ID: string;
8 | }
9 |
10 | interface ImportMeta {
11 | readonly env: ImportMetaEnv;
12 | }
13 |
--------------------------------------------------------------------------------
/frontend/src/components/LoadingIndicator.css:
--------------------------------------------------------------------------------
1 | .loading-indicator {
2 | display: inline-block;
3 | width: 24px;
4 | height: 24px;
5 | border: 3px solid rgba(0, 0, 0, 0.1);
6 | border-radius: 50%;
7 | border-top-color: #007bff;
8 | animation: spin 1s ease-in-out infinite;
9 | }
10 |
11 | @keyframes spin {
12 | to {
13 | transform: rotate(360deg);
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/frontend/src/index.css:
--------------------------------------------------------------------------------
1 | :root {
2 | font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3 | line-height: 1.5;
4 | font-weight: 400;
5 |
6 | color-scheme: light dark;
7 | color: rgba(255, 255, 255, 0.87);
8 | background-color: #242424;
9 |
10 | font-synthesis: none;
11 | text-rendering: optimizeLegibility;
12 | -webkit-font-smoothing: antialiased;
13 | -moz-osx-font-smoothing: grayscale;
14 | }
15 |
--------------------------------------------------------------------------------
/frontend/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Squid Starter App
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/backend/src/index.ts:
--------------------------------------------------------------------------------
1 | import { SquidProject } from '@squidcloud/backend';
2 |
3 | /*****************************
4 | * *
5 | * INTERNAL USE ONLY *
6 | * DO NOT MODIFY *
7 | * *
8 | *****************************/
9 |
10 | /** Export all the Squid services */
11 | export * from './service';
12 |
13 | class ExportedSquidProject extends SquidProject {}
14 |
15 | export default new ExportedSquidProject();
16 |
--------------------------------------------------------------------------------
/backend/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "backend",
3 | "version": "0.0.1",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "build": "squid build",
8 | "start": "squid start",
9 | "deploy": "squid deploy"
10 | },
11 | "author": "",
12 | "license": "ISC",
13 | "dependencies": {
14 | "@squidcloud/backend": "^1.0.261"
15 | },
16 | "devDependencies": {
17 | "@squidcloud/cli": "^1.0.261",
18 | "typescript": "^5.1.6"
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "starter",
3 | "private": true,
4 | "version": "0.0.0",
5 | "scripts": {
6 | "start": "samples start",
7 | "build": "npm run build --workspaces",
8 | "format": "prettier . --write"
9 | },
10 | "devDependencies": {
11 | "@squidcloud/samples": "^1.0.12",
12 | "prettier": "^3.2.5"
13 | },
14 | "workspaces": [
15 | "frontend",
16 | "backend"
17 | ],
18 | "dependencies": {
19 | "date-fns": "^3.6.0"
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/frontend/.eslintrc.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | env: { browser: true, es2020: true },
4 | extends: [
5 | 'eslint:recommended',
6 | 'plugin:@typescript-eslint/recommended',
7 | 'plugin:react-hooks/recommended',
8 | ],
9 | ignorePatterns: ['dist', '.eslintrc.cjs'],
10 | parser: '@typescript-eslint/parser',
11 | plugins: ['react-refresh'],
12 | rules: {
13 | 'react-refresh/only-export-components': [
14 | 'warn',
15 | { allowConstantExport: true },
16 | ],
17 | },
18 | }
19 |
--------------------------------------------------------------------------------
/frontend/src/main.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom/client';
3 | import App from './App.tsx';
4 | import { SquidContextProvider } from '@squidcloud/react';
5 | import './index.css';
6 |
7 | ReactDOM.createRoot(document.getElementById('root')!).render(
8 |
16 |
17 | ,
18 | );
19 |
--------------------------------------------------------------------------------
/frontend/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2020",
4 | "useDefineForClassFields": true,
5 | "lib": ["ES2020", "DOM", "DOM.Iterable"],
6 | "module": "ESNext",
7 | "skipLibCheck": true,
8 |
9 | /* Bundler mode */
10 | "moduleResolution": "bundler",
11 | "allowImportingTsExtensions": true,
12 | "resolveJsonModule": true,
13 | "isolatedModules": true,
14 | "noEmit": true,
15 | "jsx": "react-jsx",
16 |
17 | /* Linting */
18 | "strict": true,
19 | "noUnusedLocals": true,
20 | "noUnusedParameters": true,
21 | "noFallthroughCasesInSwitch": true
22 | },
23 | "include": ["src"],
24 | "references": [{ "path": "./tsconfig.node.json" }]
25 | }
26 |
--------------------------------------------------------------------------------
/backend/src/service/aiQuery.ts:
--------------------------------------------------------------------------------
1 | import { SquidService, secureDatabase, executable } from '@squidcloud/backend';
2 |
3 | export class ExampleService extends SquidService {
4 | @secureDatabase('all', 'built_in_db')
5 | allowAccessToBuiltInDb(): boolean {
6 | return true;
7 | }
8 |
9 | @executable()
10 | async askQuestion(question: string): Promise {
11 | const aiResponse = await this.squid
12 | .ai()
13 | .executeAiQuery('built_in_db', question);
14 |
15 | console.log(`
16 | Question: ${question}
17 | Query: ${aiResponse.executedQuery ?? 'No query executed'}
18 | Explanation: ${aiResponse.explanation ?? 'No Explanation'}`)
19 |
20 | return aiResponse.answer
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/backend/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "module": "commonjs",
4 | "declaration": true,
5 | "removeComments": true,
6 | "emitDecoratorMetadata": true,
7 | "experimentalDecorators": true,
8 | "allowSyntheticDefaultImports": true,
9 | "target": "es2017",
10 | "sourceMap": true,
11 | "outDir": "./dist",
12 | "baseUrl": "./src",
13 | "incremental": true,
14 | "importHelpers": true,
15 | "skipLibCheck": true,
16 | "strictNullChecks": true,
17 | "noImplicitAny": false,
18 | "strictBindCallApply": false,
19 | "forceConsistentCasingInFileNames": false,
20 | "noFallthroughCasesInSwitch": false,
21 | "esModuleInterop": true,
22 | "resolveJsonModule": true,
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/frontend/src/components/TripList.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { Trip } from '../types';
3 | import TripCard from './Trip';
4 | import "./Trip.css"
5 |
6 | type Props = {
7 | trips: Trip[];
8 | onDelete: (id: string) => void;
9 | onAddNote: (tripId: string, note: string) => void;
10 | onDeleteNote: (tripId: string, noteIndex: number) => void;
11 | };
12 |
13 | function TripList({ trips, onDelete, onAddNote, onDeleteNote }: Props) {
14 | return (
15 |
16 | {trips && trips.map((trip, index) => )}
24 |
25 | );
26 | }
27 |
28 | export default TripList
--------------------------------------------------------------------------------
/frontend/src/components/AddTripForm.css:
--------------------------------------------------------------------------------
1 | .trip-container {
2 | width: 100%;
3 | margin-bottom: 20px;
4 | }
5 |
6 | .trip-container h3 {
7 | margin-bottom: 10px;
8 | text-align: center;
9 | font-family: Arial, sans-serif;
10 | color: #333;
11 | }
12 |
13 | .trip-form {
14 | width: 100%;
15 | display: flex;
16 | flex-direction: row;
17 | justify-content: space-between;
18 | align-items: center;
19 | }
20 |
21 | .trip-form select,
22 | .trip-form input[type='date'] {
23 | width: calc(33% - 10px);
24 | padding: 10px;
25 | border: 1px solid #ccc;
26 | border-radius: 5px;
27 | font-family: Arial, sans-serif;
28 | margin: 5px;
29 | }
30 |
31 | .trip-form button {
32 | padding: 10px;
33 | border: none;
34 | border-radius: 5px;
35 | background-color: #007bff;
36 | color: white;
37 | font-size: 16px;
38 | cursor: pointer;
39 | font-family: Arial, sans-serif;
40 | margin: 5px;
41 | }
42 |
43 | .trip-form button:hover {
44 | background-color: #0056b3;
45 | }
46 |
--------------------------------------------------------------------------------
/frontend/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "frontend",
3 | "private": true,
4 | "version": "0.0.0",
5 | "type": "module",
6 | "scripts": {
7 | "setup-env": "samples setup-env --prefix VITE_",
8 | "dev": "vite",
9 | "build": "tsc && vite build",
10 | "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
11 | "preview": "vite preview"
12 | },
13 | "dependencies": {
14 | "@squidcloud/react": "^1.0.55",
15 | "@squidcloud/samples": "^1.0.12",
16 | "react": "^18.2.0",
17 | "react-dom": "^18.2.0"
18 | },
19 | "devDependencies": {
20 | "@types/react": "^18.2.64",
21 | "@types/react-dom": "^18.2.21",
22 | "@typescript-eslint/eslint-plugin": "^7.1.1",
23 | "@typescript-eslint/parser": "^7.1.1",
24 | "@vitejs/plugin-react": "^4.2.1",
25 | "eslint": "^8.57.0",
26 | "eslint-plugin-react-hooks": "^4.6.0",
27 | "eslint-plugin-react-refresh": "^0.4.5",
28 | "typescript": "^5.2.2",
29 | "vite": "^5.1.6"
30 | }
31 | }
--------------------------------------------------------------------------------
/backend/src/public/README.md:
--------------------------------------------------------------------------------
1 | # Assets Directory
2 |
3 | The assets directory is used to store files that will be uploaded to the Squid server along with your code. These files
4 | are secure and can only be accessed by your backend application. You can use the assets directory to store images,
5 | template files, or any other files that your code depends on.
6 |
7 | It's important to keep all necessary assets in this directory to ensure that your code runs correctly on the Squid
8 | server. If you need to include large assets, consider using a content delivery network (CDN) or hosting them on a
9 | separate server.
10 |
11 | To reference an asset in your backend project, inside a class that extends the `SquidService` base class, you can use:
12 |
13 | ```typescript
14 | @executable()
15 | async sendEmail(email: string): Promise {
16 | const templateFile = `${this.assetsDirectory}/email-template.html`
17 | console.log(`Sending email with the ${templateFile} template...`)
18 | }
19 | ```
20 |
21 | Thank you for using Squid! Happy coding!
22 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright 2024 Squid Cloud, Inc
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4 |
5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6 |
7 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--------------------------------------------------------------------------------
/frontend/public/squid.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/frontend/src/components/AskAI.tsx:
--------------------------------------------------------------------------------
1 | import { useState } from 'react';
2 | import { useSquid } from '@squidcloud/react';
3 | import './AskAI.css';
4 | import LoadingIndicator from './LoadingIndicator';
5 |
6 | function AskAI() {
7 | const [text, setText] = useState('');
8 | const [result, setResult] = useState('');
9 | const [loading, setLoading] = useState(false);
10 | const squid = useSquid();
11 |
12 | const askPressed = async () => {
13 | if (!text) return;
14 | setLoading(true);
15 | const result = await squid.executeFunction('askQuestion', text);
16 | setResult(result);
17 | setText('');
18 | setLoading(false);
19 | };
20 |
21 | const closeResult = () => {
22 | setResult('');
23 | };
24 |
25 | return (
26 |
27 |
Ask a Question!
28 |
setText(e.target.value)}
32 | />
33 | {loading ? (
34 |
35 | ) : (
36 |
37 | )}
38 | {result && (
39 |
40 |
41 |
42 |
43 | )}
44 |
45 | );
46 | }
47 |
48 | export default AskAI;
49 |
--------------------------------------------------------------------------------
/frontend/README.md:
--------------------------------------------------------------------------------
1 | # React + TypeScript + Vite
2 |
3 | This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4 |
5 | Currently, two official plugins are available:
6 |
7 | - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
8 | - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
9 |
10 | ## Expanding the ESLint configuration
11 |
12 | If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
13 |
14 | - Configure the top-level `parserOptions` property like this:
15 |
16 | ```js
17 | export default {
18 | // other rules...
19 | parserOptions: {
20 | ecmaVersion: 'latest',
21 | sourceType: 'module',
22 | project: ['./tsconfig.json', './tsconfig.node.json'],
23 | tsconfigRootDir: __dirname,
24 | },
25 | }
26 | ```
27 |
28 | - Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`
29 | - Optionally add `plugin:@typescript-eslint/stylistic-type-checked`
30 | - Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list
31 |
--------------------------------------------------------------------------------
/frontend/src/App.tsx:
--------------------------------------------------------------------------------
1 | import './App.css';
2 | import AddTrip from './components/AddTripForm';
3 | import TripList from './components/TripList';
4 | import { useCollection, useQuery } from '@squidcloud/react';
5 | import { Trip } from './types';
6 | import AskAI from './components/AskAI';
7 |
8 | function App() {
9 | const collection = useCollection('trips');
10 | const trips = useQuery(collection.query());
11 |
12 | const findTrip = (id: string) => {
13 | return trips.data.find((trip) => trip.data.id === id)
14 | }
15 |
16 | const onDelete = (id: string) => {
17 | const trip = findTrip(id);
18 | if (trip) trip.delete()
19 | };
20 |
21 | const onAddNote = (tripId: string, note: string) => {
22 | const trip = findTrip(tripId);
23 | if (!trip) return
24 | const notes = trip.data.notes
25 | notes.push(note)
26 | trip.update({
27 | notes: notes
28 | })
29 | };
30 |
31 |
32 | const onDeleteNote = (tripId: string, noteIndex: number) => {
33 | const trip = findTrip(tripId);
34 | if (!trip) return
35 | const notes = trip.data.notes;
36 | trip.update({
37 | notes: notes.filter((_, index) => index !== noteIndex)
38 | })
39 | };
40 |
41 | return (
42 |
43 |
44 |
45 |
trip.data)}
47 | onDelete={onDelete}
48 | onAddNote={onAddNote}
49 | onDeleteNote={onDeleteNote}
50 | />
51 |
52 | );
53 | }
54 |
55 | export default App;
56 |
--------------------------------------------------------------------------------
/frontend/src/components/AskAI.css:
--------------------------------------------------------------------------------
1 | .container button {
2 | width: 100%;
3 | padding: 10px;
4 | border: none;
5 | border-radius: 5px;
6 | background-color: #007bff;
7 | color: white;
8 | font-size: 16px;
9 | cursor: pointer;
10 | font-family: Arial, sans-serif;
11 | }
12 |
13 | /* AskAI.css */
14 |
15 | .container {
16 | width: 100%;
17 | margin-bottom: 20px;
18 | }
19 |
20 | .container h3 {
21 | margin-bottom: 10px;
22 | text-align: center;
23 | font-family: Arial, sans-serif;
24 | color: #333;
25 | }
26 |
27 | .container input[type='text'] {
28 | width: calc(100% - 22px);
29 | padding: 10px;
30 | border: 1px solid #ccc;
31 | border-radius: 5px;
32 | margin-bottom: 10px;
33 | font-family: Arial, sans-serif;
34 | }
35 |
36 | .container .ask-button {
37 | width: 100%;
38 | padding: 10px;
39 | border: none;
40 | border-radius: 5px;
41 | background-color: #007bff;
42 | color: white;
43 | font-size: 16px;
44 | cursor: pointer;
45 | font-family: Arial, sans-serif;
46 | }
47 |
48 | .container .ask-button:hover {
49 | background-color: #0056b3;
50 | }
51 |
52 | .result-container {
53 | margin-top: 20px;
54 | position: relative;
55 | }
56 |
57 | .result-container textarea {
58 | width: calc(100% - 22px);
59 | padding: 10px;
60 | border: 1px solid #ccc;
61 | border-radius: 5px;
62 | font-family: Arial, sans-serif;
63 | }
64 |
65 | .result-container .close-button {
66 | position: absolute;
67 | top: 0px;
68 | right: 8px;
69 | width: 10px;
70 | background-color: transparent;
71 | color: white;
72 | border: none;
73 | cursor: pointer;
74 | padding: 5px 10px;
75 | border-radius: 50%;
76 | font-family: Arial, sans-serif;
77 | }
78 |
--------------------------------------------------------------------------------
/frontend/src/components/AddTripForm.tsx:
--------------------------------------------------------------------------------
1 | import React, { useState, useEffect } from 'react';
2 | import {useCollection} from "@squidcloud/react"
3 | import './AddTripForm.css';
4 | import { Trip } from '../types';
5 |
6 |
7 | function AddTrip() {
8 | const [country, setCountry] = useState('');
9 | const [startDate, setStartDate] = useState('');
10 | const [endDate, setEndDate] = useState('');
11 | const [countries, setCountries] = useState([]);
12 | const tripsCollection = useCollection("trips")
13 |
14 | useEffect(() => {
15 | fetch('https://restcountries.com/v3.1/all')
16 | .then((response) => {
17 | if (response.ok) return response.json();
18 | })
19 | .then((data) => {
20 | const countryNamess = data.map((country: any) => country.name.common);
21 | setCountries(countryNamess);
22 | })
23 | .catch((error) => console.error(error));
24 | }, []);
25 |
26 | const addTrip = () => {
27 | const tripId = crypto.randomUUID()
28 | tripsCollection.doc(tripId).insert({
29 | id: tripId,
30 | country,
31 | startDate: new Date(startDate),
32 | endDate: new Date(endDate),
33 | notes: []
34 | })
35 | }
36 |
37 | return (
38 |
56 | );
57 | }
58 |
59 | export default AddTrip
--------------------------------------------------------------------------------
/frontend/src/components/Trip.tsx:
--------------------------------------------------------------------------------
1 | import { format } from 'date-fns';
2 | import { Trip } from '../types';
3 | import { useState } from 'react';
4 |
5 | type Props = {
6 | trip: Trip;
7 | onDelete: (id: string) => void;
8 | onAddNote: (tripId: string, note: string) => void;
9 | onDeleteNote: (tripId: string, noteIndex: number) => void;
10 | index: number;
11 | };
12 |
13 | function TripCard({ trip, onDelete, onAddNote, onDeleteNote, index }: Props) {
14 | const [newNote, setNewNote] = useState('');
15 |
16 | const handleAddNote = (tripId: string, note: string) => {
17 | if (note.trim() !== '') {
18 | onAddNote(tripId, note.trim());
19 | setNewNote('');
20 | }
21 | };
22 |
23 | return (
24 |
25 |
26 |
27 | {format(trip.startDate, 'PPP')} - {format(trip.endDate, 'PPP')}
28 |
29 |
30 |
33 |
34 |
35 | {trip.notes.map((note, noteIndex) => (
36 | -
37 | {note}{' '}
38 |
44 |
45 | ))}
46 |
47 |
48 | setNewNote(e.target.value)}
53 | placeholder="Add a note"
54 | />
55 |
61 |
62 |
63 | );
64 | }
65 |
66 | export default TripCard
--------------------------------------------------------------------------------
/backend/README.md:
--------------------------------------------------------------------------------
1 | # Welcome to your Squid backend project!
2 |
3 | This project is designed to help you create powerful and flexible backend functionality for your application. The Squid
4 | Backend SDK provides you with the ability to define and execute the desired backend code written in Typescript. With
5 | this SDK, you can perform a wide range of tasks, including secure access to various resources, responding to changes in
6 | the database, defining schedulers, exposing webhooks, and more.
7 |
8 | ## Architecture
9 |
10 | There are three architectural parts to keep in mind when developing with Squid:
11 |
12 | * **Client application** - This is the application that you are developing, and it uses the Squid Client SDK.
13 | * **Squid cloud server** - This is provided by Squid and is responsible for orchestrating the middle tier by connecting
14 | to databases and other integrations, maintaining connected client state, executing backend functions, and much more.
15 | * **Application backend** (this project) - This is a TypeScript project that runs alongside the Squid cloud server and
16 | is used for customizing the application's backend. It has access to the Squid Backend SDK. This part is developed by
17 | you. Developing locally
18 |
19 | ## Developing locally
20 |
21 | To develop locally, run `npm run start-squid`
22 |
23 | ## ExampleService
24 |
25 | The generated code has a class named `ExampleService` that can be used as a playground. You can modify this class to
26 | experiment with Squid's functionality and explore the Squid Backend SDK.
27 |
28 | ## Deploying your code
29 |
30 | When you are ready to deploy your code, you can run `squid deploy`. This will deploy your code to the Squid cloud
31 | server,
32 | making it available to your client application.
33 |
34 | In conclusion, the Squid Backend code has extensive power and flexibility, making it a powerful tool for developers who
35 | need to build complex backend functionality for their applications.
36 |
37 | For more information, see the [documentation](https://docs.squid.cloud/docs/backend/)
38 |
--------------------------------------------------------------------------------
/frontend/src/components/Trip.css:
--------------------------------------------------------------------------------
1 | .trip-list-container {
2 | width: 100%;
3 | margin-bottom: 20px;
4 | }
5 |
6 | .trip-card {
7 | margin-bottom: 10px;
8 | padding: 15px;
9 | border: 1px solid #ccc;
10 | border-radius: 10px;
11 | background-color: #fff;
12 | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
13 | position: relative;
14 | }
15 |
16 | .trip-card h4 {
17 | margin: 0 0 10px;
18 | font-family: Arial, sans-serif;
19 | color: #333;
20 | display: flex;
21 | justify-content: space-between;
22 | align-items: center;
23 | }
24 |
25 | .trip-card p {
26 | margin: 5px 0;
27 | font-family: Arial, sans-serif;
28 | color: #666;
29 | }
30 |
31 | .trip-card ul {
32 | margin: 10px 0 0;
33 | padding: 0;
34 | list-style-type: none;
35 | }
36 |
37 | .trip-card ul li {
38 | background-color: #f1f1f1;
39 | margin-bottom: 5px;
40 | padding: 8px;
41 | border-radius: 5px;
42 | font-family: Arial, sans-serif;
43 | color: #333;
44 | }
45 |
46 | .note-form {
47 | display: flex;
48 | margin-top: 10px;
49 | }
50 |
51 | .note-input {
52 | flex: 1;
53 | padding: 8px;
54 | border: 1px solid #ccc;
55 | border-radius: 5px;
56 | font-family: Arial, sans-serif;
57 | margin-right: 5px;
58 | }
59 |
60 | .add-note-button {
61 | padding: 8px;
62 | border: none;
63 | border-radius: 5px;
64 | background-color: #007bff;
65 | color: white;
66 | cursor: pointer;
67 | font-family: Arial, sans-serif;
68 | }
69 |
70 | .add-note-button:hover {
71 | background-color: #0056b3;
72 | }
73 |
74 | .delete-button {
75 | background-color: red;
76 | color: white;
77 | border: none;
78 | cursor: pointer;
79 | padding: 5px 10px;
80 | border-radius: 5px;
81 | font-family: Arial, sans-serif;
82 | }
83 |
84 | .delete-button:hover {
85 | background-color: darkred;
86 | }
87 |
88 | .note {
89 | display: flex;
90 | flex-direction: row;
91 | align-items: center;
92 | justify-content: space-between;
93 | }
94 |
95 | .country-button {
96 | padding: 8px;
97 | border: none;
98 | border-radius: 5px;
99 | background-color: #ff8800;
100 | color: white;
101 | cursor: pointer;
102 | font-size: 20px;
103 | font-family: Arial, sans-serif;
104 | }
105 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Getting started with Squid Cloud: A basic starter project
2 |
3 | This template provides a minimal setup for a [Squid Cloud](https://squid.cloud)-powered application based on the [Vite](https://vitejs.dev/) counter sample application.
4 |
5 | ## Prerequisites
6 |
7 | For this project you will need:
8 |
9 | - NodeJS v18 or later.
10 | - [Vite](https://vitejs.dev/).
11 | - A Squid Cloud account and a Squid application. To sign up for Squid, go to [Squid Cloud Console](https://console.squid.cloud). Once signed up, you can create an application.
12 | - The Squid Cloud CLI (`npm i @squidcloud/cli`).
13 |
14 | ## Environment configuration
15 |
16 | ### Setting up your `.env` file
17 |
18 | After cloning this project, go to the [Squid Cloud Console](https://console.squid.cloud), create an application (if haven't done so already) and click the **Create .env file** button under **Backend project**. This provides you with the command to create the `.env` file required for this template to work and run.
19 |
20 | Change to the backend directory, and install the required dependencies:
21 |
22 | ```bash
23 | cd backend
24 | npm install
25 | ```
26 |
27 | Run the initialization command you copied from the console. The command has the following format:
28 |
29 | ```bash
30 | squid init-env \
31 | --appId YOUR_APP_ID \
32 | --apiKey YOUR_API_KEY \
33 | --environmentId YOUR_ENVIRONMENT_ID \
34 | --squidDeveloperId YOUR_SQUID_DEVELOPER_ID \
35 | --region YOUR_REGION
36 | ```
37 |
38 | ### Finalizing setup
39 |
40 | Open a new terminal window and navigate to the `frontend` directory. You should now have two terminal windows open: one in which you will run the local backend server, and one in which you will run the frontend. Complete the environment setup with the following steps, ensuring you're in the `frontend` directory:
41 |
42 | ```bash
43 | npm run setup-env
44 | ```
45 |
46 | This command prepares your `.env` file for the Vite environment by generating a `frontend/.env.local` file.
47 |
48 | ## Running the application
49 |
50 | ### Starting the local backend server
51 |
52 | To launch the local backend server of your Squid application, run the following command from the `backend` directory:
53 |
54 | ```bash
55 | squid start
56 | ```
57 |
58 | You'll see output similar to the following, indicating that your server is up and running:
59 |
60 | ```bash
61 | > nodemon --watch ./src --exec ts-node -r tsconfig-paths/register src/main.ts
62 | [Nest] 68047 - 03/15/2024, 7:55:23 PM LOG [NestApplication] Nest application successfully started +1ms
63 | ```
64 |
65 | ### Launching the frontend server
66 |
67 | Initialize the frontend server by running the following commands in the `frontend` directory:
68 |
69 | ```bash
70 | npm install
71 | npm run dev
72 | ```
73 |
74 | Verify that Vite server has started, providing URLs to access your app:
75 |
76 | ```bash
77 | VITE v5.1.6 ready in 149 ms
78 |
79 | ➜ Local: http://localhost:5173/
80 | ➜ Network: use --host to expose
81 | ➜ press h + enter to show help
82 | ```
83 |
84 | ## Exploring your Squid application
85 |
86 | With both servers running, visit [http://localhost:5173/](http://localhost:5173/) in your web browser. You're now ready to experiment with the count button and explore the functionalities of your Squid Cloud application:
87 |
88 | 1. Click **count is 0** a few times to increment the counter.
89 | 2. Refresh the window. Notice the count remains at the previous increment instead of returning to 0.
90 | 3. Open another browser tab and click the counter button. Notice the count updates simultaneously across multiple tabs.
91 |
92 | ### Resetting the counter
93 |
94 | The Squid application in this project introduces a webhook that resets the counter. The webhook full URL from your local environment is displayed in the output of the `squid start` command you used to start the local backend server. To reset the counter, access the webhook URL from your browser.
95 |
96 | Check your terminal logs for the following line:
97 |
98 | ```bash
99 | ...
100 | | Webhook URL for resetCounter: https://YOUR_APP_ID-dev-YOUR_SQUID_DEVELOPER_ID.us-east-1.aws.squid.cloud/webhooks/resetCounter |
101 | ...
102 | ```
103 |
104 | ## Next steps
105 |
106 | To learn more about Squid's real-time data capabilities, view the [Client SDK documentation](https://docs.squid.cloud/docs/development-tools/client-sdk/). To find out how to integrate with your own data sources, view the [Database integrations documentation](https://docs.squid.cloud/docs/integrations/database/)
107 |
--------------------------------------------------------------------------------
/frontend/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "frontend",
3 | "version": "0.0.0",
4 | "lockfileVersion": 3,
5 | "requires": true,
6 | "packages": {
7 | "": {
8 | "name": "frontend",
9 | "version": "0.0.0",
10 | "dependencies": {
11 | "@squidcloud/react": "^1.0.51",
12 | "@squidcloud/samples": "^1.0.9",
13 | "react": "^18.2.0",
14 | "react-dom": "^18.2.0"
15 | },
16 | "devDependencies": {
17 | "@types/react": "^18.2.64",
18 | "@types/react-dom": "^18.2.21",
19 | "@typescript-eslint/eslint-plugin": "^7.1.1",
20 | "@typescript-eslint/parser": "^7.1.1",
21 | "@vitejs/plugin-react": "^4.2.1",
22 | "eslint": "^8.57.0",
23 | "eslint-plugin-react-hooks": "^4.6.0",
24 | "eslint-plugin-react-refresh": "^0.4.5",
25 | "typescript": "^5.2.2",
26 | "vite": "^5.1.6"
27 | }
28 | },
29 | "node_modules/@aashutoshrathi/word-wrap": {
30 | "version": "1.2.6",
31 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
32 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
33 | "dev": true,
34 | "engines": {
35 | "node": ">=0.10.0"
36 | }
37 | },
38 | "node_modules/@ampproject/remapping": {
39 | "version": "2.3.0",
40 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
41 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
42 | "dev": true,
43 | "dependencies": {
44 | "@jridgewell/gen-mapping": "^0.3.5",
45 | "@jridgewell/trace-mapping": "^0.3.24"
46 | },
47 | "engines": {
48 | "node": ">=6.0.0"
49 | }
50 | },
51 | "node_modules/@apollo/client": {
52 | "version": "3.10.4",
53 | "resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.10.4.tgz",
54 | "integrity": "sha512-51gk0xOwN6Ls1EbTG5svFva1kdm2APHYTzmFhaAdvUQoJFDxfc0UwQgDxGptzH84vkPlo1qunY1FuboyF9LI3Q==",
55 | "dependencies": {
56 | "@graphql-typed-document-node/core": "^3.1.1",
57 | "@wry/caches": "^1.0.0",
58 | "@wry/equality": "^0.5.6",
59 | "@wry/trie": "^0.5.0",
60 | "graphql-tag": "^2.12.6",
61 | "hoist-non-react-statics": "^3.3.2",
62 | "optimism": "^0.18.0",
63 | "prop-types": "^15.7.2",
64 | "rehackt": "^0.1.0",
65 | "response-iterator": "^0.2.6",
66 | "symbol-observable": "^4.0.0",
67 | "ts-invariant": "^0.10.3",
68 | "tslib": "^2.3.0",
69 | "zen-observable-ts": "^1.2.5"
70 | },
71 | "peerDependencies": {
72 | "graphql": "^15.0.0 || ^16.0.0",
73 | "graphql-ws": "^5.5.5",
74 | "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
75 | "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
76 | "subscriptions-transport-ws": "^0.9.0 || ^0.11.0"
77 | },
78 | "peerDependenciesMeta": {
79 | "graphql-ws": {
80 | "optional": true
81 | },
82 | "react": {
83 | "optional": true
84 | },
85 | "react-dom": {
86 | "optional": true
87 | },
88 | "subscriptions-transport-ws": {
89 | "optional": true
90 | }
91 | }
92 | },
93 | "node_modules/@babel/code-frame": {
94 | "version": "7.23.5",
95 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz",
96 | "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==",
97 | "dev": true,
98 | "dependencies": {
99 | "@babel/highlight": "^7.23.4",
100 | "chalk": "^2.4.2"
101 | },
102 | "engines": {
103 | "node": ">=6.9.0"
104 | }
105 | },
106 | "node_modules/@babel/compat-data": {
107 | "version": "7.23.5",
108 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz",
109 | "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==",
110 | "dev": true,
111 | "engines": {
112 | "node": ">=6.9.0"
113 | }
114 | },
115 | "node_modules/@babel/core": {
116 | "version": "7.24.0",
117 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.0.tgz",
118 | "integrity": "sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==",
119 | "dev": true,
120 | "dependencies": {
121 | "@ampproject/remapping": "^2.2.0",
122 | "@babel/code-frame": "^7.23.5",
123 | "@babel/generator": "^7.23.6",
124 | "@babel/helper-compilation-targets": "^7.23.6",
125 | "@babel/helper-module-transforms": "^7.23.3",
126 | "@babel/helpers": "^7.24.0",
127 | "@babel/parser": "^7.24.0",
128 | "@babel/template": "^7.24.0",
129 | "@babel/traverse": "^7.24.0",
130 | "@babel/types": "^7.24.0",
131 | "convert-source-map": "^2.0.0",
132 | "debug": "^4.1.0",
133 | "gensync": "^1.0.0-beta.2",
134 | "json5": "^2.2.3",
135 | "semver": "^6.3.1"
136 | },
137 | "engines": {
138 | "node": ">=6.9.0"
139 | },
140 | "funding": {
141 | "type": "opencollective",
142 | "url": "https://opencollective.com/babel"
143 | }
144 | },
145 | "node_modules/@babel/core/node_modules/semver": {
146 | "version": "6.3.1",
147 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
148 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
149 | "dev": true,
150 | "bin": {
151 | "semver": "bin/semver.js"
152 | }
153 | },
154 | "node_modules/@babel/generator": {
155 | "version": "7.23.6",
156 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz",
157 | "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==",
158 | "dev": true,
159 | "dependencies": {
160 | "@babel/types": "^7.23.6",
161 | "@jridgewell/gen-mapping": "^0.3.2",
162 | "@jridgewell/trace-mapping": "^0.3.17",
163 | "jsesc": "^2.5.1"
164 | },
165 | "engines": {
166 | "node": ">=6.9.0"
167 | }
168 | },
169 | "node_modules/@babel/helper-compilation-targets": {
170 | "version": "7.23.6",
171 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz",
172 | "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==",
173 | "dev": true,
174 | "dependencies": {
175 | "@babel/compat-data": "^7.23.5",
176 | "@babel/helper-validator-option": "^7.23.5",
177 | "browserslist": "^4.22.2",
178 | "lru-cache": "^5.1.1",
179 | "semver": "^6.3.1"
180 | },
181 | "engines": {
182 | "node": ">=6.9.0"
183 | }
184 | },
185 | "node_modules/@babel/helper-compilation-targets/node_modules/semver": {
186 | "version": "6.3.1",
187 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
188 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
189 | "dev": true,
190 | "bin": {
191 | "semver": "bin/semver.js"
192 | }
193 | },
194 | "node_modules/@babel/helper-environment-visitor": {
195 | "version": "7.22.20",
196 | "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
197 | "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==",
198 | "dev": true,
199 | "engines": {
200 | "node": ">=6.9.0"
201 | }
202 | },
203 | "node_modules/@babel/helper-function-name": {
204 | "version": "7.23.0",
205 | "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
206 | "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
207 | "dev": true,
208 | "dependencies": {
209 | "@babel/template": "^7.22.15",
210 | "@babel/types": "^7.23.0"
211 | },
212 | "engines": {
213 | "node": ">=6.9.0"
214 | }
215 | },
216 | "node_modules/@babel/helper-hoist-variables": {
217 | "version": "7.22.5",
218 | "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
219 | "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
220 | "dev": true,
221 | "dependencies": {
222 | "@babel/types": "^7.22.5"
223 | },
224 | "engines": {
225 | "node": ">=6.9.0"
226 | }
227 | },
228 | "node_modules/@babel/helper-module-imports": {
229 | "version": "7.22.15",
230 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz",
231 | "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==",
232 | "dev": true,
233 | "dependencies": {
234 | "@babel/types": "^7.22.15"
235 | },
236 | "engines": {
237 | "node": ">=6.9.0"
238 | }
239 | },
240 | "node_modules/@babel/helper-module-transforms": {
241 | "version": "7.23.3",
242 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz",
243 | "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==",
244 | "dev": true,
245 | "dependencies": {
246 | "@babel/helper-environment-visitor": "^7.22.20",
247 | "@babel/helper-module-imports": "^7.22.15",
248 | "@babel/helper-simple-access": "^7.22.5",
249 | "@babel/helper-split-export-declaration": "^7.22.6",
250 | "@babel/helper-validator-identifier": "^7.22.20"
251 | },
252 | "engines": {
253 | "node": ">=6.9.0"
254 | },
255 | "peerDependencies": {
256 | "@babel/core": "^7.0.0"
257 | }
258 | },
259 | "node_modules/@babel/helper-plugin-utils": {
260 | "version": "7.24.0",
261 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz",
262 | "integrity": "sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==",
263 | "dev": true,
264 | "engines": {
265 | "node": ">=6.9.0"
266 | }
267 | },
268 | "node_modules/@babel/helper-simple-access": {
269 | "version": "7.22.5",
270 | "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz",
271 | "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==",
272 | "dev": true,
273 | "dependencies": {
274 | "@babel/types": "^7.22.5"
275 | },
276 | "engines": {
277 | "node": ">=6.9.0"
278 | }
279 | },
280 | "node_modules/@babel/helper-split-export-declaration": {
281 | "version": "7.22.6",
282 | "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
283 | "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
284 | "dev": true,
285 | "dependencies": {
286 | "@babel/types": "^7.22.5"
287 | },
288 | "engines": {
289 | "node": ">=6.9.0"
290 | }
291 | },
292 | "node_modules/@babel/helper-string-parser": {
293 | "version": "7.23.4",
294 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz",
295 | "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==",
296 | "dev": true,
297 | "engines": {
298 | "node": ">=6.9.0"
299 | }
300 | },
301 | "node_modules/@babel/helper-validator-identifier": {
302 | "version": "7.22.20",
303 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
304 | "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==",
305 | "dev": true,
306 | "engines": {
307 | "node": ">=6.9.0"
308 | }
309 | },
310 | "node_modules/@babel/helper-validator-option": {
311 | "version": "7.23.5",
312 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz",
313 | "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==",
314 | "dev": true,
315 | "engines": {
316 | "node": ">=6.9.0"
317 | }
318 | },
319 | "node_modules/@babel/helpers": {
320 | "version": "7.24.0",
321 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.0.tgz",
322 | "integrity": "sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==",
323 | "dev": true,
324 | "dependencies": {
325 | "@babel/template": "^7.24.0",
326 | "@babel/traverse": "^7.24.0",
327 | "@babel/types": "^7.24.0"
328 | },
329 | "engines": {
330 | "node": ">=6.9.0"
331 | }
332 | },
333 | "node_modules/@babel/highlight": {
334 | "version": "7.23.4",
335 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz",
336 | "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==",
337 | "dev": true,
338 | "dependencies": {
339 | "@babel/helper-validator-identifier": "^7.22.20",
340 | "chalk": "^2.4.2",
341 | "js-tokens": "^4.0.0"
342 | },
343 | "engines": {
344 | "node": ">=6.9.0"
345 | }
346 | },
347 | "node_modules/@babel/parser": {
348 | "version": "7.24.0",
349 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.0.tgz",
350 | "integrity": "sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==",
351 | "dev": true,
352 | "bin": {
353 | "parser": "bin/babel-parser.js"
354 | },
355 | "engines": {
356 | "node": ">=6.0.0"
357 | }
358 | },
359 | "node_modules/@babel/plugin-transform-react-jsx-self": {
360 | "version": "7.23.3",
361 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.23.3.tgz",
362 | "integrity": "sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==",
363 | "dev": true,
364 | "dependencies": {
365 | "@babel/helper-plugin-utils": "^7.22.5"
366 | },
367 | "engines": {
368 | "node": ">=6.9.0"
369 | },
370 | "peerDependencies": {
371 | "@babel/core": "^7.0.0-0"
372 | }
373 | },
374 | "node_modules/@babel/plugin-transform-react-jsx-source": {
375 | "version": "7.23.3",
376 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.23.3.tgz",
377 | "integrity": "sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==",
378 | "dev": true,
379 | "dependencies": {
380 | "@babel/helper-plugin-utils": "^7.22.5"
381 | },
382 | "engines": {
383 | "node": ">=6.9.0"
384 | },
385 | "peerDependencies": {
386 | "@babel/core": "^7.0.0-0"
387 | }
388 | },
389 | "node_modules/@babel/runtime": {
390 | "version": "7.24.7",
391 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.7.tgz",
392 | "integrity": "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==",
393 | "dependencies": {
394 | "regenerator-runtime": "^0.14.0"
395 | },
396 | "engines": {
397 | "node": ">=6.9.0"
398 | }
399 | },
400 | "node_modules/@babel/template": {
401 | "version": "7.24.0",
402 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz",
403 | "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==",
404 | "dev": true,
405 | "dependencies": {
406 | "@babel/code-frame": "^7.23.5",
407 | "@babel/parser": "^7.24.0",
408 | "@babel/types": "^7.24.0"
409 | },
410 | "engines": {
411 | "node": ">=6.9.0"
412 | }
413 | },
414 | "node_modules/@babel/traverse": {
415 | "version": "7.24.0",
416 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.0.tgz",
417 | "integrity": "sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw==",
418 | "dev": true,
419 | "dependencies": {
420 | "@babel/code-frame": "^7.23.5",
421 | "@babel/generator": "^7.23.6",
422 | "@babel/helper-environment-visitor": "^7.22.20",
423 | "@babel/helper-function-name": "^7.23.0",
424 | "@babel/helper-hoist-variables": "^7.22.5",
425 | "@babel/helper-split-export-declaration": "^7.22.6",
426 | "@babel/parser": "^7.24.0",
427 | "@babel/types": "^7.24.0",
428 | "debug": "^4.3.1",
429 | "globals": "^11.1.0"
430 | },
431 | "engines": {
432 | "node": ">=6.9.0"
433 | }
434 | },
435 | "node_modules/@babel/types": {
436 | "version": "7.24.0",
437 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz",
438 | "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==",
439 | "dev": true,
440 | "dependencies": {
441 | "@babel/helper-string-parser": "^7.23.4",
442 | "@babel/helper-validator-identifier": "^7.22.20",
443 | "to-fast-properties": "^2.0.0"
444 | },
445 | "engines": {
446 | "node": ">=6.9.0"
447 | }
448 | },
449 | "node_modules/@esbuild/aix-ppc64": {
450 | "version": "0.19.12",
451 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz",
452 | "integrity": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==",
453 | "cpu": [
454 | "ppc64"
455 | ],
456 | "dev": true,
457 | "optional": true,
458 | "os": [
459 | "aix"
460 | ],
461 | "engines": {
462 | "node": ">=12"
463 | }
464 | },
465 | "node_modules/@esbuild/android-arm": {
466 | "version": "0.19.12",
467 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.12.tgz",
468 | "integrity": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==",
469 | "cpu": [
470 | "arm"
471 | ],
472 | "dev": true,
473 | "optional": true,
474 | "os": [
475 | "android"
476 | ],
477 | "engines": {
478 | "node": ">=12"
479 | }
480 | },
481 | "node_modules/@esbuild/android-arm64": {
482 | "version": "0.19.12",
483 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz",
484 | "integrity": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==",
485 | "cpu": [
486 | "arm64"
487 | ],
488 | "dev": true,
489 | "optional": true,
490 | "os": [
491 | "android"
492 | ],
493 | "engines": {
494 | "node": ">=12"
495 | }
496 | },
497 | "node_modules/@esbuild/android-x64": {
498 | "version": "0.19.12",
499 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.12.tgz",
500 | "integrity": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==",
501 | "cpu": [
502 | "x64"
503 | ],
504 | "dev": true,
505 | "optional": true,
506 | "os": [
507 | "android"
508 | ],
509 | "engines": {
510 | "node": ">=12"
511 | }
512 | },
513 | "node_modules/@esbuild/darwin-arm64": {
514 | "version": "0.19.12",
515 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz",
516 | "integrity": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==",
517 | "cpu": [
518 | "arm64"
519 | ],
520 | "dev": true,
521 | "optional": true,
522 | "os": [
523 | "darwin"
524 | ],
525 | "engines": {
526 | "node": ">=12"
527 | }
528 | },
529 | "node_modules/@esbuild/darwin-x64": {
530 | "version": "0.19.12",
531 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz",
532 | "integrity": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==",
533 | "cpu": [
534 | "x64"
535 | ],
536 | "dev": true,
537 | "optional": true,
538 | "os": [
539 | "darwin"
540 | ],
541 | "engines": {
542 | "node": ">=12"
543 | }
544 | },
545 | "node_modules/@esbuild/freebsd-arm64": {
546 | "version": "0.19.12",
547 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz",
548 | "integrity": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==",
549 | "cpu": [
550 | "arm64"
551 | ],
552 | "dev": true,
553 | "optional": true,
554 | "os": [
555 | "freebsd"
556 | ],
557 | "engines": {
558 | "node": ">=12"
559 | }
560 | },
561 | "node_modules/@esbuild/freebsd-x64": {
562 | "version": "0.19.12",
563 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz",
564 | "integrity": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==",
565 | "cpu": [
566 | "x64"
567 | ],
568 | "dev": true,
569 | "optional": true,
570 | "os": [
571 | "freebsd"
572 | ],
573 | "engines": {
574 | "node": ">=12"
575 | }
576 | },
577 | "node_modules/@esbuild/linux-arm": {
578 | "version": "0.19.12",
579 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz",
580 | "integrity": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==",
581 | "cpu": [
582 | "arm"
583 | ],
584 | "dev": true,
585 | "optional": true,
586 | "os": [
587 | "linux"
588 | ],
589 | "engines": {
590 | "node": ">=12"
591 | }
592 | },
593 | "node_modules/@esbuild/linux-arm64": {
594 | "version": "0.19.12",
595 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz",
596 | "integrity": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==",
597 | "cpu": [
598 | "arm64"
599 | ],
600 | "dev": true,
601 | "optional": true,
602 | "os": [
603 | "linux"
604 | ],
605 | "engines": {
606 | "node": ">=12"
607 | }
608 | },
609 | "node_modules/@esbuild/linux-ia32": {
610 | "version": "0.19.12",
611 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz",
612 | "integrity": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==",
613 | "cpu": [
614 | "ia32"
615 | ],
616 | "dev": true,
617 | "optional": true,
618 | "os": [
619 | "linux"
620 | ],
621 | "engines": {
622 | "node": ">=12"
623 | }
624 | },
625 | "node_modules/@esbuild/linux-loong64": {
626 | "version": "0.19.12",
627 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz",
628 | "integrity": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==",
629 | "cpu": [
630 | "loong64"
631 | ],
632 | "dev": true,
633 | "optional": true,
634 | "os": [
635 | "linux"
636 | ],
637 | "engines": {
638 | "node": ">=12"
639 | }
640 | },
641 | "node_modules/@esbuild/linux-mips64el": {
642 | "version": "0.19.12",
643 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz",
644 | "integrity": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==",
645 | "cpu": [
646 | "mips64el"
647 | ],
648 | "dev": true,
649 | "optional": true,
650 | "os": [
651 | "linux"
652 | ],
653 | "engines": {
654 | "node": ">=12"
655 | }
656 | },
657 | "node_modules/@esbuild/linux-ppc64": {
658 | "version": "0.19.12",
659 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz",
660 | "integrity": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==",
661 | "cpu": [
662 | "ppc64"
663 | ],
664 | "dev": true,
665 | "optional": true,
666 | "os": [
667 | "linux"
668 | ],
669 | "engines": {
670 | "node": ">=12"
671 | }
672 | },
673 | "node_modules/@esbuild/linux-riscv64": {
674 | "version": "0.19.12",
675 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz",
676 | "integrity": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==",
677 | "cpu": [
678 | "riscv64"
679 | ],
680 | "dev": true,
681 | "optional": true,
682 | "os": [
683 | "linux"
684 | ],
685 | "engines": {
686 | "node": ">=12"
687 | }
688 | },
689 | "node_modules/@esbuild/linux-s390x": {
690 | "version": "0.19.12",
691 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz",
692 | "integrity": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==",
693 | "cpu": [
694 | "s390x"
695 | ],
696 | "dev": true,
697 | "optional": true,
698 | "os": [
699 | "linux"
700 | ],
701 | "engines": {
702 | "node": ">=12"
703 | }
704 | },
705 | "node_modules/@esbuild/linux-x64": {
706 | "version": "0.19.12",
707 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz",
708 | "integrity": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==",
709 | "cpu": [
710 | "x64"
711 | ],
712 | "dev": true,
713 | "optional": true,
714 | "os": [
715 | "linux"
716 | ],
717 | "engines": {
718 | "node": ">=12"
719 | }
720 | },
721 | "node_modules/@esbuild/netbsd-x64": {
722 | "version": "0.19.12",
723 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz",
724 | "integrity": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==",
725 | "cpu": [
726 | "x64"
727 | ],
728 | "dev": true,
729 | "optional": true,
730 | "os": [
731 | "netbsd"
732 | ],
733 | "engines": {
734 | "node": ">=12"
735 | }
736 | },
737 | "node_modules/@esbuild/openbsd-x64": {
738 | "version": "0.19.12",
739 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz",
740 | "integrity": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==",
741 | "cpu": [
742 | "x64"
743 | ],
744 | "dev": true,
745 | "optional": true,
746 | "os": [
747 | "openbsd"
748 | ],
749 | "engines": {
750 | "node": ">=12"
751 | }
752 | },
753 | "node_modules/@esbuild/sunos-x64": {
754 | "version": "0.19.12",
755 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz",
756 | "integrity": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==",
757 | "cpu": [
758 | "x64"
759 | ],
760 | "dev": true,
761 | "optional": true,
762 | "os": [
763 | "sunos"
764 | ],
765 | "engines": {
766 | "node": ">=12"
767 | }
768 | },
769 | "node_modules/@esbuild/win32-arm64": {
770 | "version": "0.19.12",
771 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz",
772 | "integrity": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==",
773 | "cpu": [
774 | "arm64"
775 | ],
776 | "dev": true,
777 | "optional": true,
778 | "os": [
779 | "win32"
780 | ],
781 | "engines": {
782 | "node": ">=12"
783 | }
784 | },
785 | "node_modules/@esbuild/win32-ia32": {
786 | "version": "0.19.12",
787 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz",
788 | "integrity": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==",
789 | "cpu": [
790 | "ia32"
791 | ],
792 | "dev": true,
793 | "optional": true,
794 | "os": [
795 | "win32"
796 | ],
797 | "engines": {
798 | "node": ">=12"
799 | }
800 | },
801 | "node_modules/@esbuild/win32-x64": {
802 | "version": "0.19.12",
803 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz",
804 | "integrity": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==",
805 | "cpu": [
806 | "x64"
807 | ],
808 | "dev": true,
809 | "optional": true,
810 | "os": [
811 | "win32"
812 | ],
813 | "engines": {
814 | "node": ">=12"
815 | }
816 | },
817 | "node_modules/@eslint-community/eslint-utils": {
818 | "version": "4.4.0",
819 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
820 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
821 | "dev": true,
822 | "dependencies": {
823 | "eslint-visitor-keys": "^3.3.0"
824 | },
825 | "engines": {
826 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
827 | },
828 | "peerDependencies": {
829 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
830 | }
831 | },
832 | "node_modules/@eslint-community/regexpp": {
833 | "version": "4.10.0",
834 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz",
835 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==",
836 | "dev": true,
837 | "engines": {
838 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
839 | }
840 | },
841 | "node_modules/@eslint/eslintrc": {
842 | "version": "2.1.4",
843 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
844 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
845 | "dev": true,
846 | "dependencies": {
847 | "ajv": "^6.12.4",
848 | "debug": "^4.3.2",
849 | "espree": "^9.6.0",
850 | "globals": "^13.19.0",
851 | "ignore": "^5.2.0",
852 | "import-fresh": "^3.2.1",
853 | "js-yaml": "^4.1.0",
854 | "minimatch": "^3.1.2",
855 | "strip-json-comments": "^3.1.1"
856 | },
857 | "engines": {
858 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
859 | },
860 | "funding": {
861 | "url": "https://opencollective.com/eslint"
862 | }
863 | },
864 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": {
865 | "version": "1.1.11",
866 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
867 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
868 | "dev": true,
869 | "dependencies": {
870 | "balanced-match": "^1.0.0",
871 | "concat-map": "0.0.1"
872 | }
873 | },
874 | "node_modules/@eslint/eslintrc/node_modules/globals": {
875 | "version": "13.24.0",
876 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
877 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
878 | "dev": true,
879 | "dependencies": {
880 | "type-fest": "^0.20.2"
881 | },
882 | "engines": {
883 | "node": ">=8"
884 | },
885 | "funding": {
886 | "url": "https://github.com/sponsors/sindresorhus"
887 | }
888 | },
889 | "node_modules/@eslint/eslintrc/node_modules/minimatch": {
890 | "version": "3.1.2",
891 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
892 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
893 | "dev": true,
894 | "dependencies": {
895 | "brace-expansion": "^1.1.7"
896 | },
897 | "engines": {
898 | "node": "*"
899 | }
900 | },
901 | "node_modules/@eslint/js": {
902 | "version": "8.57.0",
903 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz",
904 | "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==",
905 | "dev": true,
906 | "engines": {
907 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
908 | }
909 | },
910 | "node_modules/@graphql-typed-document-node/core": {
911 | "version": "3.2.0",
912 | "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz",
913 | "integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==",
914 | "peerDependencies": {
915 | "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
916 | }
917 | },
918 | "node_modules/@humanwhocodes/config-array": {
919 | "version": "0.11.14",
920 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz",
921 | "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==",
922 | "dev": true,
923 | "dependencies": {
924 | "@humanwhocodes/object-schema": "^2.0.2",
925 | "debug": "^4.3.1",
926 | "minimatch": "^3.0.5"
927 | },
928 | "engines": {
929 | "node": ">=10.10.0"
930 | }
931 | },
932 | "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": {
933 | "version": "1.1.11",
934 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
935 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
936 | "dev": true,
937 | "dependencies": {
938 | "balanced-match": "^1.0.0",
939 | "concat-map": "0.0.1"
940 | }
941 | },
942 | "node_modules/@humanwhocodes/config-array/node_modules/minimatch": {
943 | "version": "3.1.2",
944 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
945 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
946 | "dev": true,
947 | "dependencies": {
948 | "brace-expansion": "^1.1.7"
949 | },
950 | "engines": {
951 | "node": "*"
952 | }
953 | },
954 | "node_modules/@humanwhocodes/module-importer": {
955 | "version": "1.0.1",
956 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
957 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
958 | "dev": true,
959 | "engines": {
960 | "node": ">=12.22"
961 | },
962 | "funding": {
963 | "type": "github",
964 | "url": "https://github.com/sponsors/nzakas"
965 | }
966 | },
967 | "node_modules/@humanwhocodes/object-schema": {
968 | "version": "2.0.2",
969 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz",
970 | "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==",
971 | "dev": true
972 | },
973 | "node_modules/@jridgewell/gen-mapping": {
974 | "version": "0.3.5",
975 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
976 | "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
977 | "dev": true,
978 | "dependencies": {
979 | "@jridgewell/set-array": "^1.2.1",
980 | "@jridgewell/sourcemap-codec": "^1.4.10",
981 | "@jridgewell/trace-mapping": "^0.3.24"
982 | },
983 | "engines": {
984 | "node": ">=6.0.0"
985 | }
986 | },
987 | "node_modules/@jridgewell/resolve-uri": {
988 | "version": "3.1.2",
989 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
990 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
991 | "dev": true,
992 | "engines": {
993 | "node": ">=6.0.0"
994 | }
995 | },
996 | "node_modules/@jridgewell/set-array": {
997 | "version": "1.2.1",
998 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
999 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
1000 | "dev": true,
1001 | "engines": {
1002 | "node": ">=6.0.0"
1003 | }
1004 | },
1005 | "node_modules/@jridgewell/sourcemap-codec": {
1006 | "version": "1.4.15",
1007 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
1008 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
1009 | "dev": true
1010 | },
1011 | "node_modules/@jridgewell/trace-mapping": {
1012 | "version": "0.3.25",
1013 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
1014 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
1015 | "dev": true,
1016 | "dependencies": {
1017 | "@jridgewell/resolve-uri": "^3.1.0",
1018 | "@jridgewell/sourcemap-codec": "^1.4.14"
1019 | }
1020 | },
1021 | "node_modules/@nodelib/fs.scandir": {
1022 | "version": "2.1.5",
1023 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
1024 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
1025 | "dev": true,
1026 | "dependencies": {
1027 | "@nodelib/fs.stat": "2.0.5",
1028 | "run-parallel": "^1.1.9"
1029 | },
1030 | "engines": {
1031 | "node": ">= 8"
1032 | }
1033 | },
1034 | "node_modules/@nodelib/fs.stat": {
1035 | "version": "2.0.5",
1036 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
1037 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
1038 | "dev": true,
1039 | "engines": {
1040 | "node": ">= 8"
1041 | }
1042 | },
1043 | "node_modules/@nodelib/fs.walk": {
1044 | "version": "1.2.8",
1045 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
1046 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
1047 | "dev": true,
1048 | "dependencies": {
1049 | "@nodelib/fs.scandir": "2.1.5",
1050 | "fastq": "^1.6.0"
1051 | },
1052 | "engines": {
1053 | "node": ">= 8"
1054 | }
1055 | },
1056 | "node_modules/@rollup/rollup-android-arm-eabi": {
1057 | "version": "4.13.0",
1058 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.13.0.tgz",
1059 | "integrity": "sha512-5ZYPOuaAqEH/W3gYsRkxQATBW3Ii1MfaT4EQstTnLKViLi2gLSQmlmtTpGucNP3sXEpOiI5tdGhjdE111ekyEg==",
1060 | "cpu": [
1061 | "arm"
1062 | ],
1063 | "dev": true,
1064 | "optional": true,
1065 | "os": [
1066 | "android"
1067 | ]
1068 | },
1069 | "node_modules/@rollup/rollup-android-arm64": {
1070 | "version": "4.13.0",
1071 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.13.0.tgz",
1072 | "integrity": "sha512-BSbaCmn8ZadK3UAQdlauSvtaJjhlDEjS5hEVVIN3A4bbl3X+otyf/kOJV08bYiRxfejP3DXFzO2jz3G20107+Q==",
1073 | "cpu": [
1074 | "arm64"
1075 | ],
1076 | "dev": true,
1077 | "optional": true,
1078 | "os": [
1079 | "android"
1080 | ]
1081 | },
1082 | "node_modules/@rollup/rollup-darwin-arm64": {
1083 | "version": "4.13.0",
1084 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.13.0.tgz",
1085 | "integrity": "sha512-Ovf2evVaP6sW5Ut0GHyUSOqA6tVKfrTHddtmxGQc1CTQa1Cw3/KMCDEEICZBbyppcwnhMwcDce9ZRxdWRpVd6g==",
1086 | "cpu": [
1087 | "arm64"
1088 | ],
1089 | "dev": true,
1090 | "optional": true,
1091 | "os": [
1092 | "darwin"
1093 | ]
1094 | },
1095 | "node_modules/@rollup/rollup-darwin-x64": {
1096 | "version": "4.13.0",
1097 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.13.0.tgz",
1098 | "integrity": "sha512-U+Jcxm89UTK592vZ2J9st9ajRv/hrwHdnvyuJpa5A2ngGSVHypigidkQJP+YiGL6JODiUeMzkqQzbCG3At81Gg==",
1099 | "cpu": [
1100 | "x64"
1101 | ],
1102 | "dev": true,
1103 | "optional": true,
1104 | "os": [
1105 | "darwin"
1106 | ]
1107 | },
1108 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
1109 | "version": "4.13.0",
1110 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.13.0.tgz",
1111 | "integrity": "sha512-8wZidaUJUTIR5T4vRS22VkSMOVooG0F4N+JSwQXWSRiC6yfEsFMLTYRFHvby5mFFuExHa/yAp9juSphQQJAijQ==",
1112 | "cpu": [
1113 | "arm"
1114 | ],
1115 | "dev": true,
1116 | "optional": true,
1117 | "os": [
1118 | "linux"
1119 | ]
1120 | },
1121 | "node_modules/@rollup/rollup-linux-arm64-gnu": {
1122 | "version": "4.13.0",
1123 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.13.0.tgz",
1124 | "integrity": "sha512-Iu0Kno1vrD7zHQDxOmvweqLkAzjxEVqNhUIXBsZ8hu8Oak7/5VTPrxOEZXYC1nmrBVJp0ZcL2E7lSuuOVaE3+w==",
1125 | "cpu": [
1126 | "arm64"
1127 | ],
1128 | "dev": true,
1129 | "optional": true,
1130 | "os": [
1131 | "linux"
1132 | ]
1133 | },
1134 | "node_modules/@rollup/rollup-linux-arm64-musl": {
1135 | "version": "4.13.0",
1136 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.13.0.tgz",
1137 | "integrity": "sha512-C31QrW47llgVyrRjIwiOwsHFcaIwmkKi3PCroQY5aVq4H0A5v/vVVAtFsI1nfBngtoRpeREvZOkIhmRwUKkAdw==",
1138 | "cpu": [
1139 | "arm64"
1140 | ],
1141 | "dev": true,
1142 | "optional": true,
1143 | "os": [
1144 | "linux"
1145 | ]
1146 | },
1147 | "node_modules/@rollup/rollup-linux-riscv64-gnu": {
1148 | "version": "4.13.0",
1149 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.13.0.tgz",
1150 | "integrity": "sha512-Oq90dtMHvthFOPMl7pt7KmxzX7E71AfyIhh+cPhLY9oko97Zf2C9tt/XJD4RgxhaGeAraAXDtqxvKE1y/j35lA==",
1151 | "cpu": [
1152 | "riscv64"
1153 | ],
1154 | "dev": true,
1155 | "optional": true,
1156 | "os": [
1157 | "linux"
1158 | ]
1159 | },
1160 | "node_modules/@rollup/rollup-linux-x64-gnu": {
1161 | "version": "4.13.0",
1162 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.13.0.tgz",
1163 | "integrity": "sha512-yUD/8wMffnTKuiIsl6xU+4IA8UNhQ/f1sAnQebmE/lyQ8abjsVyDkyRkWop0kdMhKMprpNIhPmYlCxgHrPoXoA==",
1164 | "cpu": [
1165 | "x64"
1166 | ],
1167 | "dev": true,
1168 | "optional": true,
1169 | "os": [
1170 | "linux"
1171 | ]
1172 | },
1173 | "node_modules/@rollup/rollup-linux-x64-musl": {
1174 | "version": "4.13.0",
1175 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.13.0.tgz",
1176 | "integrity": "sha512-9RyNqoFNdF0vu/qqX63fKotBh43fJQeYC98hCaf89DYQpv+xu0D8QFSOS0biA7cGuqJFOc1bJ+m2rhhsKcw1hw==",
1177 | "cpu": [
1178 | "x64"
1179 | ],
1180 | "dev": true,
1181 | "optional": true,
1182 | "os": [
1183 | "linux"
1184 | ]
1185 | },
1186 | "node_modules/@rollup/rollup-win32-arm64-msvc": {
1187 | "version": "4.13.0",
1188 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.13.0.tgz",
1189 | "integrity": "sha512-46ue8ymtm/5PUU6pCvjlic0z82qWkxv54GTJZgHrQUuZnVH+tvvSP0LsozIDsCBFO4VjJ13N68wqrKSeScUKdA==",
1190 | "cpu": [
1191 | "arm64"
1192 | ],
1193 | "dev": true,
1194 | "optional": true,
1195 | "os": [
1196 | "win32"
1197 | ]
1198 | },
1199 | "node_modules/@rollup/rollup-win32-ia32-msvc": {
1200 | "version": "4.13.0",
1201 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.13.0.tgz",
1202 | "integrity": "sha512-P5/MqLdLSlqxbeuJ3YDeX37srC8mCflSyTrUsgbU1c/U9j6l2g2GiIdYaGD9QjdMQPMSgYm7hgg0551wHyIluw==",
1203 | "cpu": [
1204 | "ia32"
1205 | ],
1206 | "dev": true,
1207 | "optional": true,
1208 | "os": [
1209 | "win32"
1210 | ]
1211 | },
1212 | "node_modules/@rollup/rollup-win32-x64-msvc": {
1213 | "version": "4.13.0",
1214 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.13.0.tgz",
1215 | "integrity": "sha512-UKXUQNbO3DOhzLRwHSpa0HnhhCgNODvfoPWv2FCXme8N/ANFfhIPMGuOT+QuKd16+B5yxZ0HdpNlqPvTMS1qfw==",
1216 | "cpu": [
1217 | "x64"
1218 | ],
1219 | "dev": true,
1220 | "optional": true,
1221 | "os": [
1222 | "win32"
1223 | ]
1224 | },
1225 | "node_modules/@squidcloud/client": {
1226 | "version": "1.0.239",
1227 | "resolved": "https://registry.npmjs.org/@squidcloud/client/-/client-1.0.239.tgz",
1228 | "integrity": "sha512-L52IelRLzJIzBTfP1VgZV0+Xw6meMcQ1B51dDYrbVuoDd1MrMJZurEvTHqtulqTuP9K8iEr6+T6sbjVgwMtfEQ==",
1229 | "dependencies": {
1230 | "@apollo/client": "^3.7.4",
1231 | "@supercharge/promise-pool": "^2.3.2",
1232 | "ajv": "^8.11.2",
1233 | "ajv-formats": "^2.1.1",
1234 | "bufferutil": "^4.0.7",
1235 | "date-fns": "^2.30.0",
1236 | "deep-diff": "^1.0.2",
1237 | "graphql": "^16.6.0",
1238 | "json-schema-typed": "^8.0.1",
1239 | "otrie": "1.1.2",
1240 | "utf-8-validate": "^6.0.3",
1241 | "ws": "^8.13.0"
1242 | },
1243 | "peerDependencies": {
1244 | "rxjs": ">=7.5.7 <8.0.0"
1245 | }
1246 | },
1247 | "node_modules/@squidcloud/client/node_modules/ajv": {
1248 | "version": "8.16.0",
1249 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz",
1250 | "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==",
1251 | "dependencies": {
1252 | "fast-deep-equal": "^3.1.3",
1253 | "json-schema-traverse": "^1.0.0",
1254 | "require-from-string": "^2.0.2",
1255 | "uri-js": "^4.4.1"
1256 | },
1257 | "funding": {
1258 | "type": "github",
1259 | "url": "https://github.com/sponsors/epoberezkin"
1260 | }
1261 | },
1262 | "node_modules/@squidcloud/client/node_modules/json-schema-traverse": {
1263 | "version": "1.0.0",
1264 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
1265 | "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
1266 | },
1267 | "node_modules/@squidcloud/react": {
1268 | "version": "1.0.51",
1269 | "resolved": "https://registry.npmjs.org/@squidcloud/react/-/react-1.0.51.tgz",
1270 | "integrity": "sha512-3+UEzIKUzEGP6j0FRLlOj5B7xzt3Lcq3BDFSZlkCIKlBfVekSfZKsi5ELuVUE6tPFrKjIYJoJnq5/1iuAxx1eQ==",
1271 | "dependencies": {
1272 | "@squidcloud/client": "^1.0.226",
1273 | "assertic": "^1.0.0"
1274 | },
1275 | "peerDependencies": {
1276 | "react": "^16.11.0 || ^17 || ^18",
1277 | "react-dom": "^16.11.0 || ^17 || ^18",
1278 | "rxjs": ">=7.5.7 <8.0.0"
1279 | }
1280 | },
1281 | "node_modules/@squidcloud/samples": {
1282 | "version": "1.0.9",
1283 | "resolved": "https://registry.npmjs.org/@squidcloud/samples/-/samples-1.0.9.tgz",
1284 | "integrity": "sha512-DHkZ0kdlwzLDjZU1NU3nuGIQkFpVNlwfBhQnnLwj0QgOcslqIaJ4lU4o14r/Sd9aPfJwxlvRxwCzTreyBTI8oA==",
1285 | "bin": {
1286 | "samples": "scripts/index.js"
1287 | }
1288 | },
1289 | "node_modules/@supercharge/promise-pool": {
1290 | "version": "2.4.0",
1291 | "resolved": "https://registry.npmjs.org/@supercharge/promise-pool/-/promise-pool-2.4.0.tgz",
1292 | "integrity": "sha512-O9CMipBlq5OObdt1uKJGIzm9cdjpPWfj+a+Zw9EgWKxaMNHKC7EU7X9taj3H0EGQNLOSq2jAcOa3EzxlfHsD6w==",
1293 | "engines": {
1294 | "node": ">=8"
1295 | }
1296 | },
1297 | "node_modules/@types/babel__core": {
1298 | "version": "7.20.5",
1299 | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
1300 | "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
1301 | "dev": true,
1302 | "dependencies": {
1303 | "@babel/parser": "^7.20.7",
1304 | "@babel/types": "^7.20.7",
1305 | "@types/babel__generator": "*",
1306 | "@types/babel__template": "*",
1307 | "@types/babel__traverse": "*"
1308 | }
1309 | },
1310 | "node_modules/@types/babel__generator": {
1311 | "version": "7.6.8",
1312 | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz",
1313 | "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==",
1314 | "dev": true,
1315 | "dependencies": {
1316 | "@babel/types": "^7.0.0"
1317 | }
1318 | },
1319 | "node_modules/@types/babel__template": {
1320 | "version": "7.4.4",
1321 | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
1322 | "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
1323 | "dev": true,
1324 | "dependencies": {
1325 | "@babel/parser": "^7.1.0",
1326 | "@babel/types": "^7.0.0"
1327 | }
1328 | },
1329 | "node_modules/@types/babel__traverse": {
1330 | "version": "7.20.5",
1331 | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz",
1332 | "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==",
1333 | "dev": true,
1334 | "dependencies": {
1335 | "@babel/types": "^7.20.7"
1336 | }
1337 | },
1338 | "node_modules/@types/estree": {
1339 | "version": "1.0.5",
1340 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz",
1341 | "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==",
1342 | "dev": true
1343 | },
1344 | "node_modules/@types/json-schema": {
1345 | "version": "7.0.15",
1346 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
1347 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
1348 | "dev": true
1349 | },
1350 | "node_modules/@types/prop-types": {
1351 | "version": "15.7.11",
1352 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz",
1353 | "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==",
1354 | "devOptional": true
1355 | },
1356 | "node_modules/@types/react": {
1357 | "version": "18.2.66",
1358 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.66.tgz",
1359 | "integrity": "sha512-OYTmMI4UigXeFMF/j4uv0lBBEbongSgptPrHBxqME44h9+yNov+oL6Z3ocJKo0WyXR84sQUNeyIp9MRfckvZpg==",
1360 | "devOptional": true,
1361 | "dependencies": {
1362 | "@types/prop-types": "*",
1363 | "@types/scheduler": "*",
1364 | "csstype": "^3.0.2"
1365 | }
1366 | },
1367 | "node_modules/@types/react-dom": {
1368 | "version": "18.2.22",
1369 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.22.tgz",
1370 | "integrity": "sha512-fHkBXPeNtfvri6gdsMYyW+dW7RXFo6Ad09nLFK0VQWR7yGLai/Cyvyj696gbwYvBnhGtevUG9cET0pmUbMtoPQ==",
1371 | "dev": true,
1372 | "dependencies": {
1373 | "@types/react": "*"
1374 | }
1375 | },
1376 | "node_modules/@types/scheduler": {
1377 | "version": "0.16.8",
1378 | "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz",
1379 | "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==",
1380 | "devOptional": true
1381 | },
1382 | "node_modules/@types/semver": {
1383 | "version": "7.5.8",
1384 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz",
1385 | "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==",
1386 | "dev": true
1387 | },
1388 | "node_modules/@typescript-eslint/eslint-plugin": {
1389 | "version": "7.2.0",
1390 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.2.0.tgz",
1391 | "integrity": "sha512-mdekAHOqS9UjlmyF/LSs6AIEvfceV749GFxoBAjwAv0nkevfKHWQFDMcBZWUiIC5ft6ePWivXoS36aKQ0Cy3sw==",
1392 | "dev": true,
1393 | "dependencies": {
1394 | "@eslint-community/regexpp": "^4.5.1",
1395 | "@typescript-eslint/scope-manager": "7.2.0",
1396 | "@typescript-eslint/type-utils": "7.2.0",
1397 | "@typescript-eslint/utils": "7.2.0",
1398 | "@typescript-eslint/visitor-keys": "7.2.0",
1399 | "debug": "^4.3.4",
1400 | "graphemer": "^1.4.0",
1401 | "ignore": "^5.2.4",
1402 | "natural-compare": "^1.4.0",
1403 | "semver": "^7.5.4",
1404 | "ts-api-utils": "^1.0.1"
1405 | },
1406 | "engines": {
1407 | "node": "^16.0.0 || >=18.0.0"
1408 | },
1409 | "funding": {
1410 | "type": "opencollective",
1411 | "url": "https://opencollective.com/typescript-eslint"
1412 | },
1413 | "peerDependencies": {
1414 | "@typescript-eslint/parser": "^7.0.0",
1415 | "eslint": "^8.56.0"
1416 | },
1417 | "peerDependenciesMeta": {
1418 | "typescript": {
1419 | "optional": true
1420 | }
1421 | }
1422 | },
1423 | "node_modules/@typescript-eslint/parser": {
1424 | "version": "7.2.0",
1425 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.2.0.tgz",
1426 | "integrity": "sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==",
1427 | "dev": true,
1428 | "dependencies": {
1429 | "@typescript-eslint/scope-manager": "7.2.0",
1430 | "@typescript-eslint/types": "7.2.0",
1431 | "@typescript-eslint/typescript-estree": "7.2.0",
1432 | "@typescript-eslint/visitor-keys": "7.2.0",
1433 | "debug": "^4.3.4"
1434 | },
1435 | "engines": {
1436 | "node": "^16.0.0 || >=18.0.0"
1437 | },
1438 | "funding": {
1439 | "type": "opencollective",
1440 | "url": "https://opencollective.com/typescript-eslint"
1441 | },
1442 | "peerDependencies": {
1443 | "eslint": "^8.56.0"
1444 | },
1445 | "peerDependenciesMeta": {
1446 | "typescript": {
1447 | "optional": true
1448 | }
1449 | }
1450 | },
1451 | "node_modules/@typescript-eslint/scope-manager": {
1452 | "version": "7.2.0",
1453 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.2.0.tgz",
1454 | "integrity": "sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==",
1455 | "dev": true,
1456 | "dependencies": {
1457 | "@typescript-eslint/types": "7.2.0",
1458 | "@typescript-eslint/visitor-keys": "7.2.0"
1459 | },
1460 | "engines": {
1461 | "node": "^16.0.0 || >=18.0.0"
1462 | },
1463 | "funding": {
1464 | "type": "opencollective",
1465 | "url": "https://opencollective.com/typescript-eslint"
1466 | }
1467 | },
1468 | "node_modules/@typescript-eslint/type-utils": {
1469 | "version": "7.2.0",
1470 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.2.0.tgz",
1471 | "integrity": "sha512-xHi51adBHo9O9330J8GQYQwrKBqbIPJGZZVQTHHmy200hvkLZFWJIFtAG/7IYTWUyun6DE6w5InDReePJYJlJA==",
1472 | "dev": true,
1473 | "dependencies": {
1474 | "@typescript-eslint/typescript-estree": "7.2.0",
1475 | "@typescript-eslint/utils": "7.2.0",
1476 | "debug": "^4.3.4",
1477 | "ts-api-utils": "^1.0.1"
1478 | },
1479 | "engines": {
1480 | "node": "^16.0.0 || >=18.0.0"
1481 | },
1482 | "funding": {
1483 | "type": "opencollective",
1484 | "url": "https://opencollective.com/typescript-eslint"
1485 | },
1486 | "peerDependencies": {
1487 | "eslint": "^8.56.0"
1488 | },
1489 | "peerDependenciesMeta": {
1490 | "typescript": {
1491 | "optional": true
1492 | }
1493 | }
1494 | },
1495 | "node_modules/@typescript-eslint/types": {
1496 | "version": "7.2.0",
1497 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.2.0.tgz",
1498 | "integrity": "sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==",
1499 | "dev": true,
1500 | "engines": {
1501 | "node": "^16.0.0 || >=18.0.0"
1502 | },
1503 | "funding": {
1504 | "type": "opencollective",
1505 | "url": "https://opencollective.com/typescript-eslint"
1506 | }
1507 | },
1508 | "node_modules/@typescript-eslint/typescript-estree": {
1509 | "version": "7.2.0",
1510 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.2.0.tgz",
1511 | "integrity": "sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==",
1512 | "dev": true,
1513 | "dependencies": {
1514 | "@typescript-eslint/types": "7.2.0",
1515 | "@typescript-eslint/visitor-keys": "7.2.0",
1516 | "debug": "^4.3.4",
1517 | "globby": "^11.1.0",
1518 | "is-glob": "^4.0.3",
1519 | "minimatch": "9.0.3",
1520 | "semver": "^7.5.4",
1521 | "ts-api-utils": "^1.0.1"
1522 | },
1523 | "engines": {
1524 | "node": "^16.0.0 || >=18.0.0"
1525 | },
1526 | "funding": {
1527 | "type": "opencollective",
1528 | "url": "https://opencollective.com/typescript-eslint"
1529 | },
1530 | "peerDependenciesMeta": {
1531 | "typescript": {
1532 | "optional": true
1533 | }
1534 | }
1535 | },
1536 | "node_modules/@typescript-eslint/utils": {
1537 | "version": "7.2.0",
1538 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.2.0.tgz",
1539 | "integrity": "sha512-YfHpnMAGb1Eekpm3XRK8hcMwGLGsnT6L+7b2XyRv6ouDuJU1tZir1GS2i0+VXRatMwSI1/UfcyPe53ADkU+IuA==",
1540 | "dev": true,
1541 | "dependencies": {
1542 | "@eslint-community/eslint-utils": "^4.4.0",
1543 | "@types/json-schema": "^7.0.12",
1544 | "@types/semver": "^7.5.0",
1545 | "@typescript-eslint/scope-manager": "7.2.0",
1546 | "@typescript-eslint/types": "7.2.0",
1547 | "@typescript-eslint/typescript-estree": "7.2.0",
1548 | "semver": "^7.5.4"
1549 | },
1550 | "engines": {
1551 | "node": "^16.0.0 || >=18.0.0"
1552 | },
1553 | "funding": {
1554 | "type": "opencollective",
1555 | "url": "https://opencollective.com/typescript-eslint"
1556 | },
1557 | "peerDependencies": {
1558 | "eslint": "^8.56.0"
1559 | }
1560 | },
1561 | "node_modules/@typescript-eslint/visitor-keys": {
1562 | "version": "7.2.0",
1563 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.2.0.tgz",
1564 | "integrity": "sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==",
1565 | "dev": true,
1566 | "dependencies": {
1567 | "@typescript-eslint/types": "7.2.0",
1568 | "eslint-visitor-keys": "^3.4.1"
1569 | },
1570 | "engines": {
1571 | "node": "^16.0.0 || >=18.0.0"
1572 | },
1573 | "funding": {
1574 | "type": "opencollective",
1575 | "url": "https://opencollective.com/typescript-eslint"
1576 | }
1577 | },
1578 | "node_modules/@ungap/structured-clone": {
1579 | "version": "1.2.0",
1580 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz",
1581 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==",
1582 | "dev": true
1583 | },
1584 | "node_modules/@vitejs/plugin-react": {
1585 | "version": "4.2.1",
1586 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.2.1.tgz",
1587 | "integrity": "sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==",
1588 | "dev": true,
1589 | "dependencies": {
1590 | "@babel/core": "^7.23.5",
1591 | "@babel/plugin-transform-react-jsx-self": "^7.23.3",
1592 | "@babel/plugin-transform-react-jsx-source": "^7.23.3",
1593 | "@types/babel__core": "^7.20.5",
1594 | "react-refresh": "^0.14.0"
1595 | },
1596 | "engines": {
1597 | "node": "^14.18.0 || >=16.0.0"
1598 | },
1599 | "peerDependencies": {
1600 | "vite": "^4.2.0 || ^5.0.0"
1601 | }
1602 | },
1603 | "node_modules/@wry/caches": {
1604 | "version": "1.0.1",
1605 | "resolved": "https://registry.npmjs.org/@wry/caches/-/caches-1.0.1.tgz",
1606 | "integrity": "sha512-bXuaUNLVVkD20wcGBWRyo7j9N3TxePEWFZj2Y+r9OoUzfqmavM84+mFykRicNsBqatba5JLay1t48wxaXaWnlA==",
1607 | "dependencies": {
1608 | "tslib": "^2.3.0"
1609 | },
1610 | "engines": {
1611 | "node": ">=8"
1612 | }
1613 | },
1614 | "node_modules/@wry/context": {
1615 | "version": "0.7.4",
1616 | "resolved": "https://registry.npmjs.org/@wry/context/-/context-0.7.4.tgz",
1617 | "integrity": "sha512-jmT7Sb4ZQWI5iyu3lobQxICu2nC/vbUhP0vIdd6tHC9PTfenmRmuIFqktc6GH9cgi+ZHnsLWPvfSvc4DrYmKiQ==",
1618 | "dependencies": {
1619 | "tslib": "^2.3.0"
1620 | },
1621 | "engines": {
1622 | "node": ">=8"
1623 | }
1624 | },
1625 | "node_modules/@wry/equality": {
1626 | "version": "0.5.7",
1627 | "resolved": "https://registry.npmjs.org/@wry/equality/-/equality-0.5.7.tgz",
1628 | "integrity": "sha512-BRFORjsTuQv5gxcXsuDXx6oGRhuVsEGwZy6LOzRRfgu+eSfxbhUQ9L9YtSEIuIjY/o7g3iWFjrc5eSY1GXP2Dw==",
1629 | "dependencies": {
1630 | "tslib": "^2.3.0"
1631 | },
1632 | "engines": {
1633 | "node": ">=8"
1634 | }
1635 | },
1636 | "node_modules/@wry/trie": {
1637 | "version": "0.5.0",
1638 | "resolved": "https://registry.npmjs.org/@wry/trie/-/trie-0.5.0.tgz",
1639 | "integrity": "sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==",
1640 | "dependencies": {
1641 | "tslib": "^2.3.0"
1642 | },
1643 | "engines": {
1644 | "node": ">=8"
1645 | }
1646 | },
1647 | "node_modules/acorn": {
1648 | "version": "8.11.3",
1649 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz",
1650 | "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==",
1651 | "dev": true,
1652 | "bin": {
1653 | "acorn": "bin/acorn"
1654 | },
1655 | "engines": {
1656 | "node": ">=0.4.0"
1657 | }
1658 | },
1659 | "node_modules/acorn-jsx": {
1660 | "version": "5.3.2",
1661 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
1662 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
1663 | "dev": true,
1664 | "peerDependencies": {
1665 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
1666 | }
1667 | },
1668 | "node_modules/ajv": {
1669 | "version": "6.12.6",
1670 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
1671 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
1672 | "dev": true,
1673 | "dependencies": {
1674 | "fast-deep-equal": "^3.1.1",
1675 | "fast-json-stable-stringify": "^2.0.0",
1676 | "json-schema-traverse": "^0.4.1",
1677 | "uri-js": "^4.2.2"
1678 | },
1679 | "funding": {
1680 | "type": "github",
1681 | "url": "https://github.com/sponsors/epoberezkin"
1682 | }
1683 | },
1684 | "node_modules/ajv-formats": {
1685 | "version": "2.1.1",
1686 | "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
1687 | "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
1688 | "dependencies": {
1689 | "ajv": "^8.0.0"
1690 | },
1691 | "peerDependencies": {
1692 | "ajv": "^8.0.0"
1693 | },
1694 | "peerDependenciesMeta": {
1695 | "ajv": {
1696 | "optional": true
1697 | }
1698 | }
1699 | },
1700 | "node_modules/ajv-formats/node_modules/ajv": {
1701 | "version": "8.16.0",
1702 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz",
1703 | "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==",
1704 | "dependencies": {
1705 | "fast-deep-equal": "^3.1.3",
1706 | "json-schema-traverse": "^1.0.0",
1707 | "require-from-string": "^2.0.2",
1708 | "uri-js": "^4.4.1"
1709 | },
1710 | "funding": {
1711 | "type": "github",
1712 | "url": "https://github.com/sponsors/epoberezkin"
1713 | }
1714 | },
1715 | "node_modules/ajv-formats/node_modules/json-schema-traverse": {
1716 | "version": "1.0.0",
1717 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
1718 | "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
1719 | },
1720 | "node_modules/ansi-regex": {
1721 | "version": "5.0.1",
1722 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
1723 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1724 | "dev": true,
1725 | "engines": {
1726 | "node": ">=8"
1727 | }
1728 | },
1729 | "node_modules/ansi-styles": {
1730 | "version": "3.2.1",
1731 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
1732 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
1733 | "dev": true,
1734 | "dependencies": {
1735 | "color-convert": "^1.9.0"
1736 | },
1737 | "engines": {
1738 | "node": ">=4"
1739 | }
1740 | },
1741 | "node_modules/argparse": {
1742 | "version": "2.0.1",
1743 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
1744 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
1745 | "dev": true
1746 | },
1747 | "node_modules/array-union": {
1748 | "version": "2.1.0",
1749 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
1750 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
1751 | "dev": true,
1752 | "engines": {
1753 | "node": ">=8"
1754 | }
1755 | },
1756 | "node_modules/assertic": {
1757 | "version": "1.1.1",
1758 | "resolved": "https://registry.npmjs.org/assertic/-/assertic-1.1.1.tgz",
1759 | "integrity": "sha512-YTVbrg6VaW7gdLTlMGVACqkpW6sXMHqd+MNQlMAWJ/zodCEPTeXuNQAaJ8Rr6XYVBZp5sW9nYK5vqa2tUwowww==",
1760 | "engines": {
1761 | "node": ">=10"
1762 | }
1763 | },
1764 | "node_modules/balanced-match": {
1765 | "version": "1.0.2",
1766 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
1767 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
1768 | "dev": true
1769 | },
1770 | "node_modules/brace-expansion": {
1771 | "version": "2.0.1",
1772 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
1773 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
1774 | "dev": true,
1775 | "dependencies": {
1776 | "balanced-match": "^1.0.0"
1777 | }
1778 | },
1779 | "node_modules/braces": {
1780 | "version": "3.0.2",
1781 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
1782 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
1783 | "dev": true,
1784 | "dependencies": {
1785 | "fill-range": "^7.0.1"
1786 | },
1787 | "engines": {
1788 | "node": ">=8"
1789 | }
1790 | },
1791 | "node_modules/browserslist": {
1792 | "version": "4.23.0",
1793 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz",
1794 | "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==",
1795 | "dev": true,
1796 | "funding": [
1797 | {
1798 | "type": "opencollective",
1799 | "url": "https://opencollective.com/browserslist"
1800 | },
1801 | {
1802 | "type": "tidelift",
1803 | "url": "https://tidelift.com/funding/github/npm/browserslist"
1804 | },
1805 | {
1806 | "type": "github",
1807 | "url": "https://github.com/sponsors/ai"
1808 | }
1809 | ],
1810 | "dependencies": {
1811 | "caniuse-lite": "^1.0.30001587",
1812 | "electron-to-chromium": "^1.4.668",
1813 | "node-releases": "^2.0.14",
1814 | "update-browserslist-db": "^1.0.13"
1815 | },
1816 | "bin": {
1817 | "browserslist": "cli.js"
1818 | },
1819 | "engines": {
1820 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1821 | }
1822 | },
1823 | "node_modules/bufferutil": {
1824 | "version": "4.0.8",
1825 | "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.8.tgz",
1826 | "integrity": "sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==",
1827 | "hasInstallScript": true,
1828 | "dependencies": {
1829 | "node-gyp-build": "^4.3.0"
1830 | },
1831 | "engines": {
1832 | "node": ">=6.14.2"
1833 | }
1834 | },
1835 | "node_modules/callsites": {
1836 | "version": "3.1.0",
1837 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
1838 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
1839 | "dev": true,
1840 | "engines": {
1841 | "node": ">=6"
1842 | }
1843 | },
1844 | "node_modules/caniuse-lite": {
1845 | "version": "1.0.30001597",
1846 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001597.tgz",
1847 | "integrity": "sha512-7LjJvmQU6Sj7bL0j5b5WY/3n7utXUJvAe1lxhsHDbLmwX9mdL86Yjtr+5SRCyf8qME4M7pU2hswj0FpyBVCv9w==",
1848 | "dev": true,
1849 | "funding": [
1850 | {
1851 | "type": "opencollective",
1852 | "url": "https://opencollective.com/browserslist"
1853 | },
1854 | {
1855 | "type": "tidelift",
1856 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1857 | },
1858 | {
1859 | "type": "github",
1860 | "url": "https://github.com/sponsors/ai"
1861 | }
1862 | ]
1863 | },
1864 | "node_modules/chalk": {
1865 | "version": "2.4.2",
1866 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
1867 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
1868 | "dev": true,
1869 | "dependencies": {
1870 | "ansi-styles": "^3.2.1",
1871 | "escape-string-regexp": "^1.0.5",
1872 | "supports-color": "^5.3.0"
1873 | },
1874 | "engines": {
1875 | "node": ">=4"
1876 | }
1877 | },
1878 | "node_modules/color-convert": {
1879 | "version": "1.9.3",
1880 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
1881 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
1882 | "dev": true,
1883 | "dependencies": {
1884 | "color-name": "1.1.3"
1885 | }
1886 | },
1887 | "node_modules/color-name": {
1888 | "version": "1.1.3",
1889 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
1890 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
1891 | "dev": true
1892 | },
1893 | "node_modules/concat-map": {
1894 | "version": "0.0.1",
1895 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1896 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
1897 | "dev": true
1898 | },
1899 | "node_modules/convert-source-map": {
1900 | "version": "2.0.0",
1901 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
1902 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
1903 | "dev": true
1904 | },
1905 | "node_modules/cross-spawn": {
1906 | "version": "7.0.3",
1907 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
1908 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
1909 | "dev": true,
1910 | "dependencies": {
1911 | "path-key": "^3.1.0",
1912 | "shebang-command": "^2.0.0",
1913 | "which": "^2.0.1"
1914 | },
1915 | "engines": {
1916 | "node": ">= 8"
1917 | }
1918 | },
1919 | "node_modules/csstype": {
1920 | "version": "3.1.3",
1921 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
1922 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
1923 | "devOptional": true
1924 | },
1925 | "node_modules/date-fns": {
1926 | "version": "2.30.0",
1927 | "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz",
1928 | "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==",
1929 | "dependencies": {
1930 | "@babel/runtime": "^7.21.0"
1931 | },
1932 | "engines": {
1933 | "node": ">=0.11"
1934 | },
1935 | "funding": {
1936 | "type": "opencollective",
1937 | "url": "https://opencollective.com/date-fns"
1938 | }
1939 | },
1940 | "node_modules/debug": {
1941 | "version": "4.3.4",
1942 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
1943 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
1944 | "dev": true,
1945 | "dependencies": {
1946 | "ms": "2.1.2"
1947 | },
1948 | "engines": {
1949 | "node": ">=6.0"
1950 | },
1951 | "peerDependenciesMeta": {
1952 | "supports-color": {
1953 | "optional": true
1954 | }
1955 | }
1956 | },
1957 | "node_modules/deep-diff": {
1958 | "version": "1.0.2",
1959 | "resolved": "https://registry.npmjs.org/deep-diff/-/deep-diff-1.0.2.tgz",
1960 | "integrity": "sha512-aWS3UIVH+NPGCD1kki+DCU9Dua032iSsO43LqQpcs4R3+dVv7tX0qBGjiVHJHjplsoUM2XRO/KB92glqc68awg=="
1961 | },
1962 | "node_modules/deep-is": {
1963 | "version": "0.1.4",
1964 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
1965 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
1966 | "dev": true
1967 | },
1968 | "node_modules/dir-glob": {
1969 | "version": "3.0.1",
1970 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
1971 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
1972 | "dev": true,
1973 | "dependencies": {
1974 | "path-type": "^4.0.0"
1975 | },
1976 | "engines": {
1977 | "node": ">=8"
1978 | }
1979 | },
1980 | "node_modules/doctrine": {
1981 | "version": "3.0.0",
1982 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
1983 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
1984 | "dev": true,
1985 | "dependencies": {
1986 | "esutils": "^2.0.2"
1987 | },
1988 | "engines": {
1989 | "node": ">=6.0.0"
1990 | }
1991 | },
1992 | "node_modules/electron-to-chromium": {
1993 | "version": "1.4.707",
1994 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.707.tgz",
1995 | "integrity": "sha512-qRq74Mo7ChePOU6GHdfAJ0NREXU8vQTlVlfWz3wNygFay6xrd/fY2J7oGHwrhFeU30OVctGLdTh/FcnokTWpng==",
1996 | "dev": true
1997 | },
1998 | "node_modules/esbuild": {
1999 | "version": "0.19.12",
2000 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.12.tgz",
2001 | "integrity": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==",
2002 | "dev": true,
2003 | "hasInstallScript": true,
2004 | "bin": {
2005 | "esbuild": "bin/esbuild"
2006 | },
2007 | "engines": {
2008 | "node": ">=12"
2009 | },
2010 | "optionalDependencies": {
2011 | "@esbuild/aix-ppc64": "0.19.12",
2012 | "@esbuild/android-arm": "0.19.12",
2013 | "@esbuild/android-arm64": "0.19.12",
2014 | "@esbuild/android-x64": "0.19.12",
2015 | "@esbuild/darwin-arm64": "0.19.12",
2016 | "@esbuild/darwin-x64": "0.19.12",
2017 | "@esbuild/freebsd-arm64": "0.19.12",
2018 | "@esbuild/freebsd-x64": "0.19.12",
2019 | "@esbuild/linux-arm": "0.19.12",
2020 | "@esbuild/linux-arm64": "0.19.12",
2021 | "@esbuild/linux-ia32": "0.19.12",
2022 | "@esbuild/linux-loong64": "0.19.12",
2023 | "@esbuild/linux-mips64el": "0.19.12",
2024 | "@esbuild/linux-ppc64": "0.19.12",
2025 | "@esbuild/linux-riscv64": "0.19.12",
2026 | "@esbuild/linux-s390x": "0.19.12",
2027 | "@esbuild/linux-x64": "0.19.12",
2028 | "@esbuild/netbsd-x64": "0.19.12",
2029 | "@esbuild/openbsd-x64": "0.19.12",
2030 | "@esbuild/sunos-x64": "0.19.12",
2031 | "@esbuild/win32-arm64": "0.19.12",
2032 | "@esbuild/win32-ia32": "0.19.12",
2033 | "@esbuild/win32-x64": "0.19.12"
2034 | }
2035 | },
2036 | "node_modules/escalade": {
2037 | "version": "3.1.2",
2038 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz",
2039 | "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==",
2040 | "dev": true,
2041 | "engines": {
2042 | "node": ">=6"
2043 | }
2044 | },
2045 | "node_modules/escape-string-regexp": {
2046 | "version": "1.0.5",
2047 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
2048 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
2049 | "dev": true,
2050 | "engines": {
2051 | "node": ">=0.8.0"
2052 | }
2053 | },
2054 | "node_modules/eslint": {
2055 | "version": "8.57.0",
2056 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz",
2057 | "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==",
2058 | "dev": true,
2059 | "dependencies": {
2060 | "@eslint-community/eslint-utils": "^4.2.0",
2061 | "@eslint-community/regexpp": "^4.6.1",
2062 | "@eslint/eslintrc": "^2.1.4",
2063 | "@eslint/js": "8.57.0",
2064 | "@humanwhocodes/config-array": "^0.11.14",
2065 | "@humanwhocodes/module-importer": "^1.0.1",
2066 | "@nodelib/fs.walk": "^1.2.8",
2067 | "@ungap/structured-clone": "^1.2.0",
2068 | "ajv": "^6.12.4",
2069 | "chalk": "^4.0.0",
2070 | "cross-spawn": "^7.0.2",
2071 | "debug": "^4.3.2",
2072 | "doctrine": "^3.0.0",
2073 | "escape-string-regexp": "^4.0.0",
2074 | "eslint-scope": "^7.2.2",
2075 | "eslint-visitor-keys": "^3.4.3",
2076 | "espree": "^9.6.1",
2077 | "esquery": "^1.4.2",
2078 | "esutils": "^2.0.2",
2079 | "fast-deep-equal": "^3.1.3",
2080 | "file-entry-cache": "^6.0.1",
2081 | "find-up": "^5.0.0",
2082 | "glob-parent": "^6.0.2",
2083 | "globals": "^13.19.0",
2084 | "graphemer": "^1.4.0",
2085 | "ignore": "^5.2.0",
2086 | "imurmurhash": "^0.1.4",
2087 | "is-glob": "^4.0.0",
2088 | "is-path-inside": "^3.0.3",
2089 | "js-yaml": "^4.1.0",
2090 | "json-stable-stringify-without-jsonify": "^1.0.1",
2091 | "levn": "^0.4.1",
2092 | "lodash.merge": "^4.6.2",
2093 | "minimatch": "^3.1.2",
2094 | "natural-compare": "^1.4.0",
2095 | "optionator": "^0.9.3",
2096 | "strip-ansi": "^6.0.1",
2097 | "text-table": "^0.2.0"
2098 | },
2099 | "bin": {
2100 | "eslint": "bin/eslint.js"
2101 | },
2102 | "engines": {
2103 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2104 | },
2105 | "funding": {
2106 | "url": "https://opencollective.com/eslint"
2107 | }
2108 | },
2109 | "node_modules/eslint-plugin-react-hooks": {
2110 | "version": "4.6.0",
2111 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz",
2112 | "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==",
2113 | "dev": true,
2114 | "engines": {
2115 | "node": ">=10"
2116 | },
2117 | "peerDependencies": {
2118 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
2119 | }
2120 | },
2121 | "node_modules/eslint-plugin-react-refresh": {
2122 | "version": "0.4.6",
2123 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.6.tgz",
2124 | "integrity": "sha512-NjGXdm7zgcKRkKMua34qVO9doI7VOxZ6ancSvBELJSSoX97jyndXcSoa8XBh69JoB31dNz3EEzlMcizZl7LaMA==",
2125 | "dev": true,
2126 | "peerDependencies": {
2127 | "eslint": ">=7"
2128 | }
2129 | },
2130 | "node_modules/eslint-scope": {
2131 | "version": "7.2.2",
2132 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz",
2133 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==",
2134 | "dev": true,
2135 | "dependencies": {
2136 | "esrecurse": "^4.3.0",
2137 | "estraverse": "^5.2.0"
2138 | },
2139 | "engines": {
2140 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2141 | },
2142 | "funding": {
2143 | "url": "https://opencollective.com/eslint"
2144 | }
2145 | },
2146 | "node_modules/eslint-visitor-keys": {
2147 | "version": "3.4.3",
2148 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
2149 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
2150 | "dev": true,
2151 | "engines": {
2152 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2153 | },
2154 | "funding": {
2155 | "url": "https://opencollective.com/eslint"
2156 | }
2157 | },
2158 | "node_modules/eslint/node_modules/ansi-styles": {
2159 | "version": "4.3.0",
2160 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
2161 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
2162 | "dev": true,
2163 | "dependencies": {
2164 | "color-convert": "^2.0.1"
2165 | },
2166 | "engines": {
2167 | "node": ">=8"
2168 | },
2169 | "funding": {
2170 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2171 | }
2172 | },
2173 | "node_modules/eslint/node_modules/brace-expansion": {
2174 | "version": "1.1.11",
2175 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
2176 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
2177 | "dev": true,
2178 | "dependencies": {
2179 | "balanced-match": "^1.0.0",
2180 | "concat-map": "0.0.1"
2181 | }
2182 | },
2183 | "node_modules/eslint/node_modules/chalk": {
2184 | "version": "4.1.2",
2185 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
2186 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
2187 | "dev": true,
2188 | "dependencies": {
2189 | "ansi-styles": "^4.1.0",
2190 | "supports-color": "^7.1.0"
2191 | },
2192 | "engines": {
2193 | "node": ">=10"
2194 | },
2195 | "funding": {
2196 | "url": "https://github.com/chalk/chalk?sponsor=1"
2197 | }
2198 | },
2199 | "node_modules/eslint/node_modules/color-convert": {
2200 | "version": "2.0.1",
2201 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
2202 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
2203 | "dev": true,
2204 | "dependencies": {
2205 | "color-name": "~1.1.4"
2206 | },
2207 | "engines": {
2208 | "node": ">=7.0.0"
2209 | }
2210 | },
2211 | "node_modules/eslint/node_modules/color-name": {
2212 | "version": "1.1.4",
2213 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
2214 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
2215 | "dev": true
2216 | },
2217 | "node_modules/eslint/node_modules/escape-string-regexp": {
2218 | "version": "4.0.0",
2219 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
2220 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
2221 | "dev": true,
2222 | "engines": {
2223 | "node": ">=10"
2224 | },
2225 | "funding": {
2226 | "url": "https://github.com/sponsors/sindresorhus"
2227 | }
2228 | },
2229 | "node_modules/eslint/node_modules/globals": {
2230 | "version": "13.24.0",
2231 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
2232 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
2233 | "dev": true,
2234 | "dependencies": {
2235 | "type-fest": "^0.20.2"
2236 | },
2237 | "engines": {
2238 | "node": ">=8"
2239 | },
2240 | "funding": {
2241 | "url": "https://github.com/sponsors/sindresorhus"
2242 | }
2243 | },
2244 | "node_modules/eslint/node_modules/has-flag": {
2245 | "version": "4.0.0",
2246 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2247 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2248 | "dev": true,
2249 | "engines": {
2250 | "node": ">=8"
2251 | }
2252 | },
2253 | "node_modules/eslint/node_modules/minimatch": {
2254 | "version": "3.1.2",
2255 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
2256 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
2257 | "dev": true,
2258 | "dependencies": {
2259 | "brace-expansion": "^1.1.7"
2260 | },
2261 | "engines": {
2262 | "node": "*"
2263 | }
2264 | },
2265 | "node_modules/eslint/node_modules/supports-color": {
2266 | "version": "7.2.0",
2267 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
2268 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
2269 | "dev": true,
2270 | "dependencies": {
2271 | "has-flag": "^4.0.0"
2272 | },
2273 | "engines": {
2274 | "node": ">=8"
2275 | }
2276 | },
2277 | "node_modules/espree": {
2278 | "version": "9.6.1",
2279 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz",
2280 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
2281 | "dev": true,
2282 | "dependencies": {
2283 | "acorn": "^8.9.0",
2284 | "acorn-jsx": "^5.3.2",
2285 | "eslint-visitor-keys": "^3.4.1"
2286 | },
2287 | "engines": {
2288 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2289 | },
2290 | "funding": {
2291 | "url": "https://opencollective.com/eslint"
2292 | }
2293 | },
2294 | "node_modules/esquery": {
2295 | "version": "1.5.0",
2296 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz",
2297 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==",
2298 | "dev": true,
2299 | "dependencies": {
2300 | "estraverse": "^5.1.0"
2301 | },
2302 | "engines": {
2303 | "node": ">=0.10"
2304 | }
2305 | },
2306 | "node_modules/esrecurse": {
2307 | "version": "4.3.0",
2308 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
2309 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
2310 | "dev": true,
2311 | "dependencies": {
2312 | "estraverse": "^5.2.0"
2313 | },
2314 | "engines": {
2315 | "node": ">=4.0"
2316 | }
2317 | },
2318 | "node_modules/estraverse": {
2319 | "version": "5.3.0",
2320 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
2321 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
2322 | "dev": true,
2323 | "engines": {
2324 | "node": ">=4.0"
2325 | }
2326 | },
2327 | "node_modules/esutils": {
2328 | "version": "2.0.3",
2329 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
2330 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
2331 | "dev": true,
2332 | "engines": {
2333 | "node": ">=0.10.0"
2334 | }
2335 | },
2336 | "node_modules/fast-deep-equal": {
2337 | "version": "3.1.3",
2338 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
2339 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
2340 | },
2341 | "node_modules/fast-glob": {
2342 | "version": "3.3.2",
2343 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
2344 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
2345 | "dev": true,
2346 | "dependencies": {
2347 | "@nodelib/fs.stat": "^2.0.2",
2348 | "@nodelib/fs.walk": "^1.2.3",
2349 | "glob-parent": "^5.1.2",
2350 | "merge2": "^1.3.0",
2351 | "micromatch": "^4.0.4"
2352 | },
2353 | "engines": {
2354 | "node": ">=8.6.0"
2355 | }
2356 | },
2357 | "node_modules/fast-glob/node_modules/glob-parent": {
2358 | "version": "5.1.2",
2359 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
2360 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
2361 | "dev": true,
2362 | "dependencies": {
2363 | "is-glob": "^4.0.1"
2364 | },
2365 | "engines": {
2366 | "node": ">= 6"
2367 | }
2368 | },
2369 | "node_modules/fast-json-stable-stringify": {
2370 | "version": "2.1.0",
2371 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
2372 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
2373 | "dev": true
2374 | },
2375 | "node_modules/fast-levenshtein": {
2376 | "version": "2.0.6",
2377 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
2378 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
2379 | "dev": true
2380 | },
2381 | "node_modules/fastq": {
2382 | "version": "1.17.1",
2383 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz",
2384 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
2385 | "dev": true,
2386 | "dependencies": {
2387 | "reusify": "^1.0.4"
2388 | }
2389 | },
2390 | "node_modules/file-entry-cache": {
2391 | "version": "6.0.1",
2392 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
2393 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
2394 | "dev": true,
2395 | "dependencies": {
2396 | "flat-cache": "^3.0.4"
2397 | },
2398 | "engines": {
2399 | "node": "^10.12.0 || >=12.0.0"
2400 | }
2401 | },
2402 | "node_modules/fill-range": {
2403 | "version": "7.0.1",
2404 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
2405 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
2406 | "dev": true,
2407 | "dependencies": {
2408 | "to-regex-range": "^5.0.1"
2409 | },
2410 | "engines": {
2411 | "node": ">=8"
2412 | }
2413 | },
2414 | "node_modules/find-up": {
2415 | "version": "5.0.0",
2416 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
2417 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
2418 | "dev": true,
2419 | "dependencies": {
2420 | "locate-path": "^6.0.0",
2421 | "path-exists": "^4.0.0"
2422 | },
2423 | "engines": {
2424 | "node": ">=10"
2425 | },
2426 | "funding": {
2427 | "url": "https://github.com/sponsors/sindresorhus"
2428 | }
2429 | },
2430 | "node_modules/flat-cache": {
2431 | "version": "3.2.0",
2432 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz",
2433 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==",
2434 | "dev": true,
2435 | "dependencies": {
2436 | "flatted": "^3.2.9",
2437 | "keyv": "^4.5.3",
2438 | "rimraf": "^3.0.2"
2439 | },
2440 | "engines": {
2441 | "node": "^10.12.0 || >=12.0.0"
2442 | }
2443 | },
2444 | "node_modules/flatted": {
2445 | "version": "3.3.1",
2446 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz",
2447 | "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==",
2448 | "dev": true
2449 | },
2450 | "node_modules/fs.realpath": {
2451 | "version": "1.0.0",
2452 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
2453 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
2454 | "dev": true
2455 | },
2456 | "node_modules/fsevents": {
2457 | "version": "2.3.3",
2458 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
2459 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2460 | "dev": true,
2461 | "hasInstallScript": true,
2462 | "optional": true,
2463 | "os": [
2464 | "darwin"
2465 | ],
2466 | "engines": {
2467 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2468 | }
2469 | },
2470 | "node_modules/gensync": {
2471 | "version": "1.0.0-beta.2",
2472 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
2473 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
2474 | "dev": true,
2475 | "engines": {
2476 | "node": ">=6.9.0"
2477 | }
2478 | },
2479 | "node_modules/glob": {
2480 | "version": "7.2.3",
2481 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
2482 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
2483 | "dev": true,
2484 | "dependencies": {
2485 | "fs.realpath": "^1.0.0",
2486 | "inflight": "^1.0.4",
2487 | "inherits": "2",
2488 | "minimatch": "^3.1.1",
2489 | "once": "^1.3.0",
2490 | "path-is-absolute": "^1.0.0"
2491 | },
2492 | "engines": {
2493 | "node": "*"
2494 | },
2495 | "funding": {
2496 | "url": "https://github.com/sponsors/isaacs"
2497 | }
2498 | },
2499 | "node_modules/glob-parent": {
2500 | "version": "6.0.2",
2501 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
2502 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
2503 | "dev": true,
2504 | "dependencies": {
2505 | "is-glob": "^4.0.3"
2506 | },
2507 | "engines": {
2508 | "node": ">=10.13.0"
2509 | }
2510 | },
2511 | "node_modules/glob/node_modules/brace-expansion": {
2512 | "version": "1.1.11",
2513 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
2514 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
2515 | "dev": true,
2516 | "dependencies": {
2517 | "balanced-match": "^1.0.0",
2518 | "concat-map": "0.0.1"
2519 | }
2520 | },
2521 | "node_modules/glob/node_modules/minimatch": {
2522 | "version": "3.1.2",
2523 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
2524 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
2525 | "dev": true,
2526 | "dependencies": {
2527 | "brace-expansion": "^1.1.7"
2528 | },
2529 | "engines": {
2530 | "node": "*"
2531 | }
2532 | },
2533 | "node_modules/globals": {
2534 | "version": "11.12.0",
2535 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
2536 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
2537 | "dev": true,
2538 | "engines": {
2539 | "node": ">=4"
2540 | }
2541 | },
2542 | "node_modules/globby": {
2543 | "version": "11.1.0",
2544 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
2545 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
2546 | "dev": true,
2547 | "dependencies": {
2548 | "array-union": "^2.1.0",
2549 | "dir-glob": "^3.0.1",
2550 | "fast-glob": "^3.2.9",
2551 | "ignore": "^5.2.0",
2552 | "merge2": "^1.4.1",
2553 | "slash": "^3.0.0"
2554 | },
2555 | "engines": {
2556 | "node": ">=10"
2557 | },
2558 | "funding": {
2559 | "url": "https://github.com/sponsors/sindresorhus"
2560 | }
2561 | },
2562 | "node_modules/graphemer": {
2563 | "version": "1.4.0",
2564 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
2565 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
2566 | "dev": true
2567 | },
2568 | "node_modules/graphql": {
2569 | "version": "16.8.1",
2570 | "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.8.1.tgz",
2571 | "integrity": "sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==",
2572 | "engines": {
2573 | "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0"
2574 | }
2575 | },
2576 | "node_modules/graphql-tag": {
2577 | "version": "2.12.6",
2578 | "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz",
2579 | "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==",
2580 | "dependencies": {
2581 | "tslib": "^2.1.0"
2582 | },
2583 | "engines": {
2584 | "node": ">=10"
2585 | },
2586 | "peerDependencies": {
2587 | "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
2588 | }
2589 | },
2590 | "node_modules/has-flag": {
2591 | "version": "3.0.0",
2592 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
2593 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
2594 | "dev": true,
2595 | "engines": {
2596 | "node": ">=4"
2597 | }
2598 | },
2599 | "node_modules/hoist-non-react-statics": {
2600 | "version": "3.3.2",
2601 | "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
2602 | "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
2603 | "dependencies": {
2604 | "react-is": "^16.7.0"
2605 | }
2606 | },
2607 | "node_modules/ignore": {
2608 | "version": "5.3.1",
2609 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz",
2610 | "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==",
2611 | "dev": true,
2612 | "engines": {
2613 | "node": ">= 4"
2614 | }
2615 | },
2616 | "node_modules/import-fresh": {
2617 | "version": "3.3.0",
2618 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
2619 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
2620 | "dev": true,
2621 | "dependencies": {
2622 | "parent-module": "^1.0.0",
2623 | "resolve-from": "^4.0.0"
2624 | },
2625 | "engines": {
2626 | "node": ">=6"
2627 | },
2628 | "funding": {
2629 | "url": "https://github.com/sponsors/sindresorhus"
2630 | }
2631 | },
2632 | "node_modules/imurmurhash": {
2633 | "version": "0.1.4",
2634 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
2635 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
2636 | "dev": true,
2637 | "engines": {
2638 | "node": ">=0.8.19"
2639 | }
2640 | },
2641 | "node_modules/inflight": {
2642 | "version": "1.0.6",
2643 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
2644 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
2645 | "dev": true,
2646 | "dependencies": {
2647 | "once": "^1.3.0",
2648 | "wrappy": "1"
2649 | }
2650 | },
2651 | "node_modules/inherits": {
2652 | "version": "2.0.4",
2653 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
2654 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
2655 | "dev": true
2656 | },
2657 | "node_modules/is-extglob": {
2658 | "version": "2.1.1",
2659 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
2660 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
2661 | "dev": true,
2662 | "engines": {
2663 | "node": ">=0.10.0"
2664 | }
2665 | },
2666 | "node_modules/is-glob": {
2667 | "version": "4.0.3",
2668 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
2669 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
2670 | "dev": true,
2671 | "dependencies": {
2672 | "is-extglob": "^2.1.1"
2673 | },
2674 | "engines": {
2675 | "node": ">=0.10.0"
2676 | }
2677 | },
2678 | "node_modules/is-number": {
2679 | "version": "7.0.0",
2680 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
2681 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
2682 | "dev": true,
2683 | "engines": {
2684 | "node": ">=0.12.0"
2685 | }
2686 | },
2687 | "node_modules/is-path-inside": {
2688 | "version": "3.0.3",
2689 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
2690 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
2691 | "dev": true,
2692 | "engines": {
2693 | "node": ">=8"
2694 | }
2695 | },
2696 | "node_modules/isexe": {
2697 | "version": "2.0.0",
2698 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2699 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
2700 | "dev": true
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 | "dev": true,
2712 | "dependencies": {
2713 | "argparse": "^2.0.1"
2714 | },
2715 | "bin": {
2716 | "js-yaml": "bin/js-yaml.js"
2717 | }
2718 | },
2719 | "node_modules/jsesc": {
2720 | "version": "2.5.2",
2721 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
2722 | "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
2723 | "dev": true,
2724 | "bin": {
2725 | "jsesc": "bin/jsesc"
2726 | },
2727 | "engines": {
2728 | "node": ">=4"
2729 | }
2730 | },
2731 | "node_modules/json-buffer": {
2732 | "version": "3.0.1",
2733 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
2734 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
2735 | "dev": true
2736 | },
2737 | "node_modules/json-schema-traverse": {
2738 | "version": "0.4.1",
2739 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
2740 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
2741 | "dev": true
2742 | },
2743 | "node_modules/json-schema-typed": {
2744 | "version": "8.0.1",
2745 | "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-8.0.1.tgz",
2746 | "integrity": "sha512-XQmWYj2Sm4kn4WeTYvmpKEbyPsL7nBsb647c7pMe6l02/yx2+Jfc4dT6UZkEXnIUb5LhD55r2HPsJ1milQ4rDg=="
2747 | },
2748 | "node_modules/json-stable-stringify-without-jsonify": {
2749 | "version": "1.0.1",
2750 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
2751 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
2752 | "dev": true
2753 | },
2754 | "node_modules/json5": {
2755 | "version": "2.2.3",
2756 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
2757 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
2758 | "dev": true,
2759 | "bin": {
2760 | "json5": "lib/cli.js"
2761 | },
2762 | "engines": {
2763 | "node": ">=6"
2764 | }
2765 | },
2766 | "node_modules/keyv": {
2767 | "version": "4.5.4",
2768 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
2769 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
2770 | "dev": true,
2771 | "dependencies": {
2772 | "json-buffer": "3.0.1"
2773 | }
2774 | },
2775 | "node_modules/levn": {
2776 | "version": "0.4.1",
2777 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
2778 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
2779 | "dev": true,
2780 | "dependencies": {
2781 | "prelude-ls": "^1.2.1",
2782 | "type-check": "~0.4.0"
2783 | },
2784 | "engines": {
2785 | "node": ">= 0.8.0"
2786 | }
2787 | },
2788 | "node_modules/locate-path": {
2789 | "version": "6.0.0",
2790 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
2791 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
2792 | "dev": true,
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 | "dev": true
2808 | },
2809 | "node_modules/loose-envify": {
2810 | "version": "1.4.0",
2811 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
2812 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
2813 | "dependencies": {
2814 | "js-tokens": "^3.0.0 || ^4.0.0"
2815 | },
2816 | "bin": {
2817 | "loose-envify": "cli.js"
2818 | }
2819 | },
2820 | "node_modules/lru-cache": {
2821 | "version": "5.1.1",
2822 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
2823 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
2824 | "dev": true,
2825 | "dependencies": {
2826 | "yallist": "^3.0.2"
2827 | }
2828 | },
2829 | "node_modules/merge2": {
2830 | "version": "1.4.1",
2831 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
2832 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
2833 | "dev": true,
2834 | "engines": {
2835 | "node": ">= 8"
2836 | }
2837 | },
2838 | "node_modules/micromatch": {
2839 | "version": "4.0.5",
2840 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
2841 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
2842 | "dev": true,
2843 | "dependencies": {
2844 | "braces": "^3.0.2",
2845 | "picomatch": "^2.3.1"
2846 | },
2847 | "engines": {
2848 | "node": ">=8.6"
2849 | }
2850 | },
2851 | "node_modules/minimatch": {
2852 | "version": "9.0.3",
2853 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
2854 | "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
2855 | "dev": true,
2856 | "dependencies": {
2857 | "brace-expansion": "^2.0.1"
2858 | },
2859 | "engines": {
2860 | "node": ">=16 || 14 >=14.17"
2861 | },
2862 | "funding": {
2863 | "url": "https://github.com/sponsors/isaacs"
2864 | }
2865 | },
2866 | "node_modules/ms": {
2867 | "version": "2.1.2",
2868 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
2869 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
2870 | "dev": true
2871 | },
2872 | "node_modules/nanoid": {
2873 | "version": "3.3.7",
2874 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
2875 | "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
2876 | "dev": true,
2877 | "funding": [
2878 | {
2879 | "type": "github",
2880 | "url": "https://github.com/sponsors/ai"
2881 | }
2882 | ],
2883 | "bin": {
2884 | "nanoid": "bin/nanoid.cjs"
2885 | },
2886 | "engines": {
2887 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2888 | }
2889 | },
2890 | "node_modules/natural-compare": {
2891 | "version": "1.4.0",
2892 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
2893 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
2894 | "dev": true
2895 | },
2896 | "node_modules/node-gyp-build": {
2897 | "version": "4.8.1",
2898 | "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz",
2899 | "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==",
2900 | "bin": {
2901 | "node-gyp-build": "bin.js",
2902 | "node-gyp-build-optional": "optional.js",
2903 | "node-gyp-build-test": "build-test.js"
2904 | }
2905 | },
2906 | "node_modules/node-releases": {
2907 | "version": "2.0.14",
2908 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz",
2909 | "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==",
2910 | "dev": true
2911 | },
2912 | "node_modules/object-assign": {
2913 | "version": "4.1.1",
2914 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
2915 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
2916 | "engines": {
2917 | "node": ">=0.10.0"
2918 | }
2919 | },
2920 | "node_modules/once": {
2921 | "version": "1.4.0",
2922 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
2923 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
2924 | "dev": true,
2925 | "dependencies": {
2926 | "wrappy": "1"
2927 | }
2928 | },
2929 | "node_modules/optimism": {
2930 | "version": "0.18.0",
2931 | "resolved": "https://registry.npmjs.org/optimism/-/optimism-0.18.0.tgz",
2932 | "integrity": "sha512-tGn8+REwLRNFnb9WmcY5IfpOqeX2kpaYJ1s6Ae3mn12AeydLkR3j+jSCmVQFoXqU8D41PAJ1RG1rCRNWmNZVmQ==",
2933 | "dependencies": {
2934 | "@wry/caches": "^1.0.0",
2935 | "@wry/context": "^0.7.0",
2936 | "@wry/trie": "^0.4.3",
2937 | "tslib": "^2.3.0"
2938 | }
2939 | },
2940 | "node_modules/optimism/node_modules/@wry/trie": {
2941 | "version": "0.4.3",
2942 | "resolved": "https://registry.npmjs.org/@wry/trie/-/trie-0.4.3.tgz",
2943 | "integrity": "sha512-I6bHwH0fSf6RqQcnnXLJKhkSXG45MFral3GxPaY4uAl0LYDZM+YDVDAiU9bYwjTuysy1S0IeecWtmq1SZA3M1w==",
2944 | "dependencies": {
2945 | "tslib": "^2.3.0"
2946 | },
2947 | "engines": {
2948 | "node": ">=8"
2949 | }
2950 | },
2951 | "node_modules/optionator": {
2952 | "version": "0.9.3",
2953 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz",
2954 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==",
2955 | "dev": true,
2956 | "dependencies": {
2957 | "@aashutoshrathi/word-wrap": "^1.2.3",
2958 | "deep-is": "^0.1.3",
2959 | "fast-levenshtein": "^2.0.6",
2960 | "levn": "^0.4.1",
2961 | "prelude-ls": "^1.2.1",
2962 | "type-check": "^0.4.0"
2963 | },
2964 | "engines": {
2965 | "node": ">= 0.8.0"
2966 | }
2967 | },
2968 | "node_modules/otrie": {
2969 | "version": "1.1.2",
2970 | "resolved": "https://registry.npmjs.org/otrie/-/otrie-1.1.2.tgz",
2971 | "integrity": "sha512-97dE1x8h6NsBx8AcVWO1GEXlONSQ/h4hpq7KPa5UmMGm/NZUr8OnlC/umBx64dJmRjmcj25lBTMv189+oxEnvg==",
2972 | "dependencies": {
2973 | "assertic": "^1.0.0",
2974 | "ptrie": "^1.0.1",
2975 | "rxjs": "^7.5.7"
2976 | },
2977 | "engines": {
2978 | "node": ">=10"
2979 | }
2980 | },
2981 | "node_modules/p-limit": {
2982 | "version": "3.1.0",
2983 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
2984 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
2985 | "dev": true,
2986 | "dependencies": {
2987 | "yocto-queue": "^0.1.0"
2988 | },
2989 | "engines": {
2990 | "node": ">=10"
2991 | },
2992 | "funding": {
2993 | "url": "https://github.com/sponsors/sindresorhus"
2994 | }
2995 | },
2996 | "node_modules/p-locate": {
2997 | "version": "5.0.0",
2998 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
2999 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
3000 | "dev": true,
3001 | "dependencies": {
3002 | "p-limit": "^3.0.2"
3003 | },
3004 | "engines": {
3005 | "node": ">=10"
3006 | },
3007 | "funding": {
3008 | "url": "https://github.com/sponsors/sindresorhus"
3009 | }
3010 | },
3011 | "node_modules/parent-module": {
3012 | "version": "1.0.1",
3013 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
3014 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
3015 | "dev": true,
3016 | "dependencies": {
3017 | "callsites": "^3.0.0"
3018 | },
3019 | "engines": {
3020 | "node": ">=6"
3021 | }
3022 | },
3023 | "node_modules/path-exists": {
3024 | "version": "4.0.0",
3025 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
3026 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
3027 | "dev": true,
3028 | "engines": {
3029 | "node": ">=8"
3030 | }
3031 | },
3032 | "node_modules/path-is-absolute": {
3033 | "version": "1.0.1",
3034 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
3035 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
3036 | "dev": true,
3037 | "engines": {
3038 | "node": ">=0.10.0"
3039 | }
3040 | },
3041 | "node_modules/path-key": {
3042 | "version": "3.1.1",
3043 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
3044 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
3045 | "dev": true,
3046 | "engines": {
3047 | "node": ">=8"
3048 | }
3049 | },
3050 | "node_modules/path-type": {
3051 | "version": "4.0.0",
3052 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
3053 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
3054 | "dev": true,
3055 | "engines": {
3056 | "node": ">=8"
3057 | }
3058 | },
3059 | "node_modules/picocolors": {
3060 | "version": "1.0.0",
3061 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
3062 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
3063 | "dev": true
3064 | },
3065 | "node_modules/picomatch": {
3066 | "version": "2.3.1",
3067 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
3068 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
3069 | "dev": true,
3070 | "engines": {
3071 | "node": ">=8.6"
3072 | },
3073 | "funding": {
3074 | "url": "https://github.com/sponsors/jonschlinkert"
3075 | }
3076 | },
3077 | "node_modules/postcss": {
3078 | "version": "8.4.35",
3079 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz",
3080 | "integrity": "sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==",
3081 | "dev": true,
3082 | "funding": [
3083 | {
3084 | "type": "opencollective",
3085 | "url": "https://opencollective.com/postcss/"
3086 | },
3087 | {
3088 | "type": "tidelift",
3089 | "url": "https://tidelift.com/funding/github/npm/postcss"
3090 | },
3091 | {
3092 | "type": "github",
3093 | "url": "https://github.com/sponsors/ai"
3094 | }
3095 | ],
3096 | "dependencies": {
3097 | "nanoid": "^3.3.7",
3098 | "picocolors": "^1.0.0",
3099 | "source-map-js": "^1.0.2"
3100 | },
3101 | "engines": {
3102 | "node": "^10 || ^12 || >=14"
3103 | }
3104 | },
3105 | "node_modules/prelude-ls": {
3106 | "version": "1.2.1",
3107 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
3108 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
3109 | "dev": true,
3110 | "engines": {
3111 | "node": ">= 0.8.0"
3112 | }
3113 | },
3114 | "node_modules/prop-types": {
3115 | "version": "15.8.1",
3116 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
3117 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
3118 | "dependencies": {
3119 | "loose-envify": "^1.4.0",
3120 | "object-assign": "^4.1.1",
3121 | "react-is": "^16.13.1"
3122 | }
3123 | },
3124 | "node_modules/ptrie": {
3125 | "version": "1.0.1",
3126 | "resolved": "https://registry.npmjs.org/ptrie/-/ptrie-1.0.1.tgz",
3127 | "integrity": "sha512-OT9FqyP3+s87VDpyxAR8A2JVFGNby4QDgRduA5memUEVDccK/VRfMz0T0q6d2xjCzhFOlioOlFGSKoMhGQMKWA==",
3128 | "engines": {
3129 | "node": ">=10"
3130 | }
3131 | },
3132 | "node_modules/punycode": {
3133 | "version": "2.3.1",
3134 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
3135 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
3136 | "engines": {
3137 | "node": ">=6"
3138 | }
3139 | },
3140 | "node_modules/queue-microtask": {
3141 | "version": "1.2.3",
3142 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
3143 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
3144 | "dev": true,
3145 | "funding": [
3146 | {
3147 | "type": "github",
3148 | "url": "https://github.com/sponsors/feross"
3149 | },
3150 | {
3151 | "type": "patreon",
3152 | "url": "https://www.patreon.com/feross"
3153 | },
3154 | {
3155 | "type": "consulting",
3156 | "url": "https://feross.org/support"
3157 | }
3158 | ]
3159 | },
3160 | "node_modules/react": {
3161 | "version": "18.2.0",
3162 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
3163 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==",
3164 | "dependencies": {
3165 | "loose-envify": "^1.1.0"
3166 | },
3167 | "engines": {
3168 | "node": ">=0.10.0"
3169 | }
3170 | },
3171 | "node_modules/react-dom": {
3172 | "version": "18.2.0",
3173 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz",
3174 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
3175 | "dependencies": {
3176 | "loose-envify": "^1.1.0",
3177 | "scheduler": "^0.23.0"
3178 | },
3179 | "peerDependencies": {
3180 | "react": "^18.2.0"
3181 | }
3182 | },
3183 | "node_modules/react-is": {
3184 | "version": "16.13.1",
3185 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
3186 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
3187 | },
3188 | "node_modules/react-refresh": {
3189 | "version": "0.14.0",
3190 | "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz",
3191 | "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==",
3192 | "dev": true,
3193 | "engines": {
3194 | "node": ">=0.10.0"
3195 | }
3196 | },
3197 | "node_modules/regenerator-runtime": {
3198 | "version": "0.14.1",
3199 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
3200 | "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
3201 | },
3202 | "node_modules/rehackt": {
3203 | "version": "0.1.0",
3204 | "resolved": "https://registry.npmjs.org/rehackt/-/rehackt-0.1.0.tgz",
3205 | "integrity": "sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==",
3206 | "peerDependencies": {
3207 | "@types/react": "*",
3208 | "react": "*"
3209 | },
3210 | "peerDependenciesMeta": {
3211 | "@types/react": {
3212 | "optional": true
3213 | },
3214 | "react": {
3215 | "optional": true
3216 | }
3217 | }
3218 | },
3219 | "node_modules/require-from-string": {
3220 | "version": "2.0.2",
3221 | "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
3222 | "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
3223 | "engines": {
3224 | "node": ">=0.10.0"
3225 | }
3226 | },
3227 | "node_modules/resolve-from": {
3228 | "version": "4.0.0",
3229 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
3230 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
3231 | "dev": true,
3232 | "engines": {
3233 | "node": ">=4"
3234 | }
3235 | },
3236 | "node_modules/response-iterator": {
3237 | "version": "0.2.6",
3238 | "resolved": "https://registry.npmjs.org/response-iterator/-/response-iterator-0.2.6.tgz",
3239 | "integrity": "sha512-pVzEEzrsg23Sh053rmDUvLSkGXluZio0qu8VT6ukrYuvtjVfCbDZH9d6PGXb8HZfzdNZt8feXv/jvUzlhRgLnw==",
3240 | "engines": {
3241 | "node": ">=0.8"
3242 | }
3243 | },
3244 | "node_modules/reusify": {
3245 | "version": "1.0.4",
3246 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
3247 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
3248 | "dev": true,
3249 | "engines": {
3250 | "iojs": ">=1.0.0",
3251 | "node": ">=0.10.0"
3252 | }
3253 | },
3254 | "node_modules/rimraf": {
3255 | "version": "3.0.2",
3256 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
3257 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
3258 | "dev": true,
3259 | "dependencies": {
3260 | "glob": "^7.1.3"
3261 | },
3262 | "bin": {
3263 | "rimraf": "bin.js"
3264 | },
3265 | "funding": {
3266 | "url": "https://github.com/sponsors/isaacs"
3267 | }
3268 | },
3269 | "node_modules/rollup": {
3270 | "version": "4.13.0",
3271 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.13.0.tgz",
3272 | "integrity": "sha512-3YegKemjoQnYKmsBlOHfMLVPPA5xLkQ8MHLLSw/fBrFaVkEayL51DilPpNNLq1exr98F2B1TzrV0FUlN3gWRPg==",
3273 | "dev": true,
3274 | "dependencies": {
3275 | "@types/estree": "1.0.5"
3276 | },
3277 | "bin": {
3278 | "rollup": "dist/bin/rollup"
3279 | },
3280 | "engines": {
3281 | "node": ">=18.0.0",
3282 | "npm": ">=8.0.0"
3283 | },
3284 | "optionalDependencies": {
3285 | "@rollup/rollup-android-arm-eabi": "4.13.0",
3286 | "@rollup/rollup-android-arm64": "4.13.0",
3287 | "@rollup/rollup-darwin-arm64": "4.13.0",
3288 | "@rollup/rollup-darwin-x64": "4.13.0",
3289 | "@rollup/rollup-linux-arm-gnueabihf": "4.13.0",
3290 | "@rollup/rollup-linux-arm64-gnu": "4.13.0",
3291 | "@rollup/rollup-linux-arm64-musl": "4.13.0",
3292 | "@rollup/rollup-linux-riscv64-gnu": "4.13.0",
3293 | "@rollup/rollup-linux-x64-gnu": "4.13.0",
3294 | "@rollup/rollup-linux-x64-musl": "4.13.0",
3295 | "@rollup/rollup-win32-arm64-msvc": "4.13.0",
3296 | "@rollup/rollup-win32-ia32-msvc": "4.13.0",
3297 | "@rollup/rollup-win32-x64-msvc": "4.13.0",
3298 | "fsevents": "~2.3.2"
3299 | }
3300 | },
3301 | "node_modules/run-parallel": {
3302 | "version": "1.2.0",
3303 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
3304 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
3305 | "dev": true,
3306 | "funding": [
3307 | {
3308 | "type": "github",
3309 | "url": "https://github.com/sponsors/feross"
3310 | },
3311 | {
3312 | "type": "patreon",
3313 | "url": "https://www.patreon.com/feross"
3314 | },
3315 | {
3316 | "type": "consulting",
3317 | "url": "https://feross.org/support"
3318 | }
3319 | ],
3320 | "dependencies": {
3321 | "queue-microtask": "^1.2.2"
3322 | }
3323 | },
3324 | "node_modules/rxjs": {
3325 | "version": "7.8.1",
3326 | "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
3327 | "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
3328 | "dependencies": {
3329 | "tslib": "^2.1.0"
3330 | }
3331 | },
3332 | "node_modules/scheduler": {
3333 | "version": "0.23.0",
3334 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
3335 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==",
3336 | "dependencies": {
3337 | "loose-envify": "^1.1.0"
3338 | }
3339 | },
3340 | "node_modules/semver": {
3341 | "version": "7.6.0",
3342 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
3343 | "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
3344 | "dev": true,
3345 | "dependencies": {
3346 | "lru-cache": "^6.0.0"
3347 | },
3348 | "bin": {
3349 | "semver": "bin/semver.js"
3350 | },
3351 | "engines": {
3352 | "node": ">=10"
3353 | }
3354 | },
3355 | "node_modules/semver/node_modules/lru-cache": {
3356 | "version": "6.0.0",
3357 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
3358 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
3359 | "dev": true,
3360 | "dependencies": {
3361 | "yallist": "^4.0.0"
3362 | },
3363 | "engines": {
3364 | "node": ">=10"
3365 | }
3366 | },
3367 | "node_modules/semver/node_modules/yallist": {
3368 | "version": "4.0.0",
3369 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
3370 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
3371 | "dev": true
3372 | },
3373 | "node_modules/shebang-command": {
3374 | "version": "2.0.0",
3375 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
3376 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
3377 | "dev": true,
3378 | "dependencies": {
3379 | "shebang-regex": "^3.0.0"
3380 | },
3381 | "engines": {
3382 | "node": ">=8"
3383 | }
3384 | },
3385 | "node_modules/shebang-regex": {
3386 | "version": "3.0.0",
3387 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
3388 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
3389 | "dev": true,
3390 | "engines": {
3391 | "node": ">=8"
3392 | }
3393 | },
3394 | "node_modules/slash": {
3395 | "version": "3.0.0",
3396 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
3397 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
3398 | "dev": true,
3399 | "engines": {
3400 | "node": ">=8"
3401 | }
3402 | },
3403 | "node_modules/source-map-js": {
3404 | "version": "1.0.2",
3405 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
3406 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
3407 | "dev": true,
3408 | "engines": {
3409 | "node": ">=0.10.0"
3410 | }
3411 | },
3412 | "node_modules/strip-ansi": {
3413 | "version": "6.0.1",
3414 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
3415 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
3416 | "dev": true,
3417 | "dependencies": {
3418 | "ansi-regex": "^5.0.1"
3419 | },
3420 | "engines": {
3421 | "node": ">=8"
3422 | }
3423 | },
3424 | "node_modules/strip-json-comments": {
3425 | "version": "3.1.1",
3426 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
3427 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
3428 | "dev": true,
3429 | "engines": {
3430 | "node": ">=8"
3431 | },
3432 | "funding": {
3433 | "url": "https://github.com/sponsors/sindresorhus"
3434 | }
3435 | },
3436 | "node_modules/supports-color": {
3437 | "version": "5.5.0",
3438 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
3439 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
3440 | "dev": true,
3441 | "dependencies": {
3442 | "has-flag": "^3.0.0"
3443 | },
3444 | "engines": {
3445 | "node": ">=4"
3446 | }
3447 | },
3448 | "node_modules/symbol-observable": {
3449 | "version": "4.0.0",
3450 | "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz",
3451 | "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==",
3452 | "engines": {
3453 | "node": ">=0.10"
3454 | }
3455 | },
3456 | "node_modules/text-table": {
3457 | "version": "0.2.0",
3458 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
3459 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
3460 | "dev": true
3461 | },
3462 | "node_modules/to-fast-properties": {
3463 | "version": "2.0.0",
3464 | "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
3465 | "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==",
3466 | "dev": true,
3467 | "engines": {
3468 | "node": ">=4"
3469 | }
3470 | },
3471 | "node_modules/to-regex-range": {
3472 | "version": "5.0.1",
3473 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
3474 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
3475 | "dev": true,
3476 | "dependencies": {
3477 | "is-number": "^7.0.0"
3478 | },
3479 | "engines": {
3480 | "node": ">=8.0"
3481 | }
3482 | },
3483 | "node_modules/ts-api-utils": {
3484 | "version": "1.3.0",
3485 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz",
3486 | "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==",
3487 | "dev": true,
3488 | "engines": {
3489 | "node": ">=16"
3490 | },
3491 | "peerDependencies": {
3492 | "typescript": ">=4.2.0"
3493 | }
3494 | },
3495 | "node_modules/ts-invariant": {
3496 | "version": "0.10.3",
3497 | "resolved": "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.10.3.tgz",
3498 | "integrity": "sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==",
3499 | "dependencies": {
3500 | "tslib": "^2.1.0"
3501 | },
3502 | "engines": {
3503 | "node": ">=8"
3504 | }
3505 | },
3506 | "node_modules/tslib": {
3507 | "version": "2.6.3",
3508 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
3509 | "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
3510 | },
3511 | "node_modules/type-check": {
3512 | "version": "0.4.0",
3513 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
3514 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
3515 | "dev": true,
3516 | "dependencies": {
3517 | "prelude-ls": "^1.2.1"
3518 | },
3519 | "engines": {
3520 | "node": ">= 0.8.0"
3521 | }
3522 | },
3523 | "node_modules/type-fest": {
3524 | "version": "0.20.2",
3525 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
3526 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
3527 | "dev": true,
3528 | "engines": {
3529 | "node": ">=10"
3530 | },
3531 | "funding": {
3532 | "url": "https://github.com/sponsors/sindresorhus"
3533 | }
3534 | },
3535 | "node_modules/typescript": {
3536 | "version": "5.4.2",
3537 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.2.tgz",
3538 | "integrity": "sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==",
3539 | "dev": true,
3540 | "bin": {
3541 | "tsc": "bin/tsc",
3542 | "tsserver": "bin/tsserver"
3543 | },
3544 | "engines": {
3545 | "node": ">=14.17"
3546 | }
3547 | },
3548 | "node_modules/update-browserslist-db": {
3549 | "version": "1.0.13",
3550 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz",
3551 | "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==",
3552 | "dev": true,
3553 | "funding": [
3554 | {
3555 | "type": "opencollective",
3556 | "url": "https://opencollective.com/browserslist"
3557 | },
3558 | {
3559 | "type": "tidelift",
3560 | "url": "https://tidelift.com/funding/github/npm/browserslist"
3561 | },
3562 | {
3563 | "type": "github",
3564 | "url": "https://github.com/sponsors/ai"
3565 | }
3566 | ],
3567 | "dependencies": {
3568 | "escalade": "^3.1.1",
3569 | "picocolors": "^1.0.0"
3570 | },
3571 | "bin": {
3572 | "update-browserslist-db": "cli.js"
3573 | },
3574 | "peerDependencies": {
3575 | "browserslist": ">= 4.21.0"
3576 | }
3577 | },
3578 | "node_modules/uri-js": {
3579 | "version": "4.4.1",
3580 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
3581 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
3582 | "dependencies": {
3583 | "punycode": "^2.1.0"
3584 | }
3585 | },
3586 | "node_modules/utf-8-validate": {
3587 | "version": "6.0.4",
3588 | "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-6.0.4.tgz",
3589 | "integrity": "sha512-xu9GQDeFp+eZ6LnCywXN/zBancWvOpUMzgjLPSjy4BRHSmTelvn2E0DG0o1sTiw5hkCKBHo8rwSKncfRfv2EEQ==",
3590 | "hasInstallScript": true,
3591 | "dependencies": {
3592 | "node-gyp-build": "^4.3.0"
3593 | },
3594 | "engines": {
3595 | "node": ">=6.14.2"
3596 | }
3597 | },
3598 | "node_modules/vite": {
3599 | "version": "5.1.6",
3600 | "resolved": "https://registry.npmjs.org/vite/-/vite-5.1.6.tgz",
3601 | "integrity": "sha512-yYIAZs9nVfRJ/AiOLCA91zzhjsHUgMjB+EigzFb6W2XTLO8JixBCKCjvhKZaye+NKYHCrkv3Oh50dH9EdLU2RA==",
3602 | "dev": true,
3603 | "dependencies": {
3604 | "esbuild": "^0.19.3",
3605 | "postcss": "^8.4.35",
3606 | "rollup": "^4.2.0"
3607 | },
3608 | "bin": {
3609 | "vite": "bin/vite.js"
3610 | },
3611 | "engines": {
3612 | "node": "^18.0.0 || >=20.0.0"
3613 | },
3614 | "funding": {
3615 | "url": "https://github.com/vitejs/vite?sponsor=1"
3616 | },
3617 | "optionalDependencies": {
3618 | "fsevents": "~2.3.3"
3619 | },
3620 | "peerDependencies": {
3621 | "@types/node": "^18.0.0 || >=20.0.0",
3622 | "less": "*",
3623 | "lightningcss": "^1.21.0",
3624 | "sass": "*",
3625 | "stylus": "*",
3626 | "sugarss": "*",
3627 | "terser": "^5.4.0"
3628 | },
3629 | "peerDependenciesMeta": {
3630 | "@types/node": {
3631 | "optional": true
3632 | },
3633 | "less": {
3634 | "optional": true
3635 | },
3636 | "lightningcss": {
3637 | "optional": true
3638 | },
3639 | "sass": {
3640 | "optional": true
3641 | },
3642 | "stylus": {
3643 | "optional": true
3644 | },
3645 | "sugarss": {
3646 | "optional": true
3647 | },
3648 | "terser": {
3649 | "optional": true
3650 | }
3651 | }
3652 | },
3653 | "node_modules/which": {
3654 | "version": "2.0.2",
3655 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
3656 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
3657 | "dev": true,
3658 | "dependencies": {
3659 | "isexe": "^2.0.0"
3660 | },
3661 | "bin": {
3662 | "node-which": "bin/node-which"
3663 | },
3664 | "engines": {
3665 | "node": ">= 8"
3666 | }
3667 | },
3668 | "node_modules/wrappy": {
3669 | "version": "1.0.2",
3670 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
3671 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
3672 | "dev": true
3673 | },
3674 | "node_modules/ws": {
3675 | "version": "8.17.0",
3676 | "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz",
3677 | "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==",
3678 | "engines": {
3679 | "node": ">=10.0.0"
3680 | },
3681 | "peerDependencies": {
3682 | "bufferutil": "^4.0.1",
3683 | "utf-8-validate": ">=5.0.2"
3684 | },
3685 | "peerDependenciesMeta": {
3686 | "bufferutil": {
3687 | "optional": true
3688 | },
3689 | "utf-8-validate": {
3690 | "optional": true
3691 | }
3692 | }
3693 | },
3694 | "node_modules/yallist": {
3695 | "version": "3.1.1",
3696 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
3697 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
3698 | "dev": true
3699 | },
3700 | "node_modules/yocto-queue": {
3701 | "version": "0.1.0",
3702 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
3703 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
3704 | "dev": true,
3705 | "engines": {
3706 | "node": ">=10"
3707 | },
3708 | "funding": {
3709 | "url": "https://github.com/sponsors/sindresorhus"
3710 | }
3711 | },
3712 | "node_modules/zen-observable": {
3713 | "version": "0.8.15",
3714 | "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.15.tgz",
3715 | "integrity": "sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ=="
3716 | },
3717 | "node_modules/zen-observable-ts": {
3718 | "version": "1.2.5",
3719 | "resolved": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.2.5.tgz",
3720 | "integrity": "sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg==",
3721 | "dependencies": {
3722 | "zen-observable": "0.8.15"
3723 | }
3724 | }
3725 | }
3726 | }
3727 |
--------------------------------------------------------------------------------