├── .eslintrc.cjs
├── .github
└── workflows
│ └── deploy.yml
├── .gitignore
├── LICENSE
├── README.md
├── index.html
├── package.json
├── pnpm-lock.yaml
├── postcss.config.cjs
├── src
├── App.css
├── App.tsx
├── assets
│ ├── datafusion-playground-demo.png
│ └── react.svg
├── components
│ ├── About.tsx
│ ├── CloudConfig.tsx
│ ├── History.tsx
│ ├── InputArea.tsx
│ └── Sidebar.tsx
├── index.css
├── main.tsx
└── vite-env.d.ts
├── tsconfig.json
├── tsconfig.node.json
├── uno.config.ts
└── vite.config.ts
/.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 |
--------------------------------------------------------------------------------
/.github/workflows/deploy.yml:
--------------------------------------------------------------------------------
1 | # Simple workflow for deploying static content to GitHub Pages
2 | name: Deploy static content to Pages
3 |
4 | on:
5 | # Runs on pushes targeting the default branch
6 | push:
7 | branches: ['main']
8 |
9 | # Allows you to run this workflow manually from the Actions tab
10 | workflow_dispatch:
11 |
12 | # Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages
13 | permissions:
14 | contents: read
15 | pages: write
16 | id-token: write
17 |
18 | # Allow one concurrent deployment
19 | concurrency:
20 | group: 'pages'
21 | cancel-in-progress: true
22 |
23 | jobs:
24 | # Single deploy job since we're just deploying
25 | deploy:
26 | environment:
27 | name: github-pages
28 | url: ${{ steps.deployment.outputs.page_url }}
29 | runs-on: ubuntu-latest
30 | steps:
31 | - name: Checkout
32 | uses: actions/checkout@v4
33 | - uses: pnpm/action-setup@v3
34 | with:
35 | version: 8
36 | - name: Set up Node
37 | uses: actions/setup-node@v4
38 | with:
39 | node-version: 20
40 | cache: 'pnpm'
41 | - name: Install dependencies
42 | run: pnpm install
43 | - name: Build
44 | run: pnpm run build
45 | - name: Setup Pages
46 | uses: actions/configure-pages@v4
47 | - name: Upload artifact
48 | uses: actions/upload-pages-artifact@v3
49 | with:
50 | # Upload dist folder
51 | path: './dist'
52 | - name: Deploy to GitHub Pages
53 | id: deployment
54 | uses: actions/deploy-pages@v4
55 |
--------------------------------------------------------------------------------
/.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 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "[]"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright [yyyy] [name of copyright owner]
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | DataFusion Playground
7 | ---------------------
8 |
9 | > [!NOTE]
10 | > The follow up development of this project is moved to [DataFusion WASM Playground](https://github.com/datafusion-contrib/datafusion-wasm-playground). Please check it out for the latest updates.
11 |
12 | Playground of [Apache Arrow DataFusion](https://github.com/apache/arrow-datafusion) with [WebAssembly](https://webassembly.org). In the early experimental stage as my side project.
13 |
14 | 🌱 Live Demo: https://waynexia.github.io/datafusion-playground/
15 |
16 | ## Features
17 |
18 | - Cloud storage support: HTTP, AWS S3 (Google Cloud Storage and Azure Blob Storage are on the way)
19 | - Full functional DataFusion query engine.
20 | - Data formats: CSV, Parquet, JSON, Avro
21 |
22 | ## Screenshot
23 |
24 | 
25 |
26 | ## Examples
27 |
28 | Create an external table from S3 parquet file:
29 |
30 | ```sql
31 | CREATE EXTERNAL TABLE test STORED AS PARQUET
32 | LOCATION 's3://path-to-your.parquet';
33 | ```
34 |
35 | Explain a query:
36 |
37 | ```sql
38 | EXPLAIN SELECT MIN(airport_fee), MAX(airport_fee) FROM test;
39 | ```
40 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | Apache DataFusion Playground
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "datafusion-playground",
3 | "private": true,
4 | "version": "0.2.0",
5 | "type": "module",
6 | "scripts": {
7 | "dev": "vite",
8 | "build": "tsc && vite build",
9 | "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
10 | "preview": "vite preview"
11 | },
12 | "dependencies": {
13 | "@mantine/core": "^7.4.2",
14 | "datafusion-wasm": "^0.2.0",
15 | "jotai": "^2.6.2",
16 | "react": "^18.2.0",
17 | "react-dom": "^18.2.0"
18 | },
19 | "devDependencies": {
20 | "@iconify-json/tabler": "^1.1.104",
21 | "@types/react": "^18.2.43",
22 | "@types/react-dom": "^18.2.17",
23 | "@typescript-eslint/eslint-plugin": "^6.14.0",
24 | "@typescript-eslint/parser": "^6.14.0",
25 | "@unocss/preset-icons": "^0.58.3",
26 | "@unocss/preset-uno": "^0.58.3",
27 | "@vitejs/plugin-react": "^4.2.1",
28 | "eslint": "^8.55.0",
29 | "eslint-plugin-react-hooks": "^4.6.0",
30 | "eslint-plugin-react-refresh": "^0.4.5",
31 | "postcss": "^8.4.33",
32 | "postcss-preset-mantine": "^1.12.3",
33 | "postcss-simple-vars": "^7.0.1",
34 | "typescript": "^5.2.2",
35 | "unocss": "^0.58.3",
36 | "vite": "^5.0.8",
37 | "vite-plugin-top-level-await": "^1.4.1",
38 | "vite-plugin-wasm": "^3.3.0"
39 | }
40 | }
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '6.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | dependencies:
8 | '@mantine/core':
9 | specifier: ^7.4.2
10 | version: 7.4.2(@mantine/hooks@7.4.2)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
11 | datafusion-wasm:
12 | specifier: ^0.2.0
13 | version: 0.2.0
14 | jotai:
15 | specifier: ^2.6.2
16 | version: 2.6.2(@types/react@18.2.48)(react@18.2.0)
17 | react:
18 | specifier: ^18.2.0
19 | version: 18.2.0
20 | react-dom:
21 | specifier: ^18.2.0
22 | version: 18.2.0(react@18.2.0)
23 |
24 | devDependencies:
25 | '@iconify-json/tabler':
26 | specifier: ^1.1.104
27 | version: 1.1.104
28 | '@types/react':
29 | specifier: ^18.2.43
30 | version: 18.2.48
31 | '@types/react-dom':
32 | specifier: ^18.2.17
33 | version: 18.2.18
34 | '@typescript-eslint/eslint-plugin':
35 | specifier: ^6.14.0
36 | version: 6.19.0(@typescript-eslint/parser@6.19.0)(eslint@8.56.0)(typescript@5.3.3)
37 | '@typescript-eslint/parser':
38 | specifier: ^6.14.0
39 | version: 6.19.0(eslint@8.56.0)(typescript@5.3.3)
40 | '@unocss/preset-icons':
41 | specifier: ^0.58.3
42 | version: 0.58.3
43 | '@unocss/preset-uno':
44 | specifier: ^0.58.3
45 | version: 0.58.3
46 | '@vitejs/plugin-react':
47 | specifier: ^4.2.1
48 | version: 4.2.1(vite@5.0.11)
49 | eslint:
50 | specifier: ^8.55.0
51 | version: 8.56.0
52 | eslint-plugin-react-hooks:
53 | specifier: ^4.6.0
54 | version: 4.6.0(eslint@8.56.0)
55 | eslint-plugin-react-refresh:
56 | specifier: ^0.4.5
57 | version: 0.4.5(eslint@8.56.0)
58 | postcss:
59 | specifier: ^8.4.33
60 | version: 8.4.33
61 | postcss-preset-mantine:
62 | specifier: ^1.12.3
63 | version: 1.12.3(postcss@8.4.33)
64 | postcss-simple-vars:
65 | specifier: ^7.0.1
66 | version: 7.0.1(postcss@8.4.33)
67 | typescript:
68 | specifier: ^5.2.2
69 | version: 5.3.3
70 | unocss:
71 | specifier: ^0.58.3
72 | version: 0.58.3(postcss@8.4.33)(vite@5.0.11)
73 | vite:
74 | specifier: ^5.0.8
75 | version: 5.0.11
76 | vite-plugin-top-level-await:
77 | specifier: ^1.4.1
78 | version: 1.4.1(vite@5.0.11)
79 | vite-plugin-wasm:
80 | specifier: ^3.3.0
81 | version: 3.3.0(vite@5.0.11)
82 |
83 | packages:
84 |
85 | /@aashutoshrathi/word-wrap@1.2.6:
86 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
87 | engines: {node: '>=0.10.0'}
88 | dev: true
89 |
90 | /@ampproject/remapping@2.2.1:
91 | resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
92 | engines: {node: '>=6.0.0'}
93 | dependencies:
94 | '@jridgewell/gen-mapping': 0.3.3
95 | '@jridgewell/trace-mapping': 0.3.21
96 | dev: true
97 |
98 | /@antfu/install-pkg@0.1.1:
99 | resolution: {integrity: sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==}
100 | dependencies:
101 | execa: 5.1.1
102 | find-up: 5.0.0
103 | dev: true
104 |
105 | /@antfu/utils@0.7.7:
106 | resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==}
107 | dev: true
108 |
109 | /@babel/code-frame@7.23.5:
110 | resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
111 | engines: {node: '>=6.9.0'}
112 | dependencies:
113 | '@babel/highlight': 7.23.4
114 | chalk: 2.4.2
115 | dev: true
116 |
117 | /@babel/compat-data@7.23.5:
118 | resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
119 | engines: {node: '>=6.9.0'}
120 | dev: true
121 |
122 | /@babel/core@7.23.7:
123 | resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==}
124 | engines: {node: '>=6.9.0'}
125 | dependencies:
126 | '@ampproject/remapping': 2.2.1
127 | '@babel/code-frame': 7.23.5
128 | '@babel/generator': 7.23.6
129 | '@babel/helper-compilation-targets': 7.23.6
130 | '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
131 | '@babel/helpers': 7.23.8
132 | '@babel/parser': 7.23.6
133 | '@babel/template': 7.22.15
134 | '@babel/traverse': 7.23.7
135 | '@babel/types': 7.23.6
136 | convert-source-map: 2.0.0
137 | debug: 4.3.4
138 | gensync: 1.0.0-beta.2
139 | json5: 2.2.3
140 | semver: 6.3.1
141 | transitivePeerDependencies:
142 | - supports-color
143 | dev: true
144 |
145 | /@babel/generator@7.23.6:
146 | resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
147 | engines: {node: '>=6.9.0'}
148 | dependencies:
149 | '@babel/types': 7.23.6
150 | '@jridgewell/gen-mapping': 0.3.3
151 | '@jridgewell/trace-mapping': 0.3.21
152 | jsesc: 2.5.2
153 | dev: true
154 |
155 | /@babel/helper-annotate-as-pure@7.22.5:
156 | resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
157 | engines: {node: '>=6.9.0'}
158 | dependencies:
159 | '@babel/types': 7.23.6
160 | dev: true
161 |
162 | /@babel/helper-compilation-targets@7.23.6:
163 | resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
164 | engines: {node: '>=6.9.0'}
165 | dependencies:
166 | '@babel/compat-data': 7.23.5
167 | '@babel/helper-validator-option': 7.23.5
168 | browserslist: 4.22.2
169 | lru-cache: 5.1.1
170 | semver: 6.3.1
171 | dev: true
172 |
173 | /@babel/helper-create-class-features-plugin@7.23.7(@babel/core@7.23.7):
174 | resolution: {integrity: sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==}
175 | engines: {node: '>=6.9.0'}
176 | peerDependencies:
177 | '@babel/core': ^7.0.0
178 | dependencies:
179 | '@babel/core': 7.23.7
180 | '@babel/helper-annotate-as-pure': 7.22.5
181 | '@babel/helper-environment-visitor': 7.22.20
182 | '@babel/helper-function-name': 7.23.0
183 | '@babel/helper-member-expression-to-functions': 7.23.0
184 | '@babel/helper-optimise-call-expression': 7.22.5
185 | '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
186 | '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
187 | '@babel/helper-split-export-declaration': 7.22.6
188 | semver: 6.3.1
189 | dev: true
190 |
191 | /@babel/helper-environment-visitor@7.22.20:
192 | resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
193 | engines: {node: '>=6.9.0'}
194 | dev: true
195 |
196 | /@babel/helper-function-name@7.23.0:
197 | resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
198 | engines: {node: '>=6.9.0'}
199 | dependencies:
200 | '@babel/template': 7.22.15
201 | '@babel/types': 7.23.6
202 | dev: true
203 |
204 | /@babel/helper-hoist-variables@7.22.5:
205 | resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
206 | engines: {node: '>=6.9.0'}
207 | dependencies:
208 | '@babel/types': 7.23.6
209 | dev: true
210 |
211 | /@babel/helper-member-expression-to-functions@7.23.0:
212 | resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
213 | engines: {node: '>=6.9.0'}
214 | dependencies:
215 | '@babel/types': 7.23.6
216 | dev: true
217 |
218 | /@babel/helper-module-imports@7.22.15:
219 | resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
220 | engines: {node: '>=6.9.0'}
221 | dependencies:
222 | '@babel/types': 7.23.6
223 | dev: true
224 |
225 | /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7):
226 | resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
227 | engines: {node: '>=6.9.0'}
228 | peerDependencies:
229 | '@babel/core': ^7.0.0
230 | dependencies:
231 | '@babel/core': 7.23.7
232 | '@babel/helper-environment-visitor': 7.22.20
233 | '@babel/helper-module-imports': 7.22.15
234 | '@babel/helper-simple-access': 7.22.5
235 | '@babel/helper-split-export-declaration': 7.22.6
236 | '@babel/helper-validator-identifier': 7.22.20
237 | dev: true
238 |
239 | /@babel/helper-optimise-call-expression@7.22.5:
240 | resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
241 | engines: {node: '>=6.9.0'}
242 | dependencies:
243 | '@babel/types': 7.23.6
244 | dev: true
245 |
246 | /@babel/helper-plugin-utils@7.22.5:
247 | resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
248 | engines: {node: '>=6.9.0'}
249 | dev: true
250 |
251 | /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.7):
252 | resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
253 | engines: {node: '>=6.9.0'}
254 | peerDependencies:
255 | '@babel/core': ^7.0.0
256 | dependencies:
257 | '@babel/core': 7.23.7
258 | '@babel/helper-environment-visitor': 7.22.20
259 | '@babel/helper-member-expression-to-functions': 7.23.0
260 | '@babel/helper-optimise-call-expression': 7.22.5
261 | dev: true
262 |
263 | /@babel/helper-simple-access@7.22.5:
264 | resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
265 | engines: {node: '>=6.9.0'}
266 | dependencies:
267 | '@babel/types': 7.23.6
268 | dev: true
269 |
270 | /@babel/helper-skip-transparent-expression-wrappers@7.22.5:
271 | resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
272 | engines: {node: '>=6.9.0'}
273 | dependencies:
274 | '@babel/types': 7.23.6
275 | dev: true
276 |
277 | /@babel/helper-split-export-declaration@7.22.6:
278 | resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
279 | engines: {node: '>=6.9.0'}
280 | dependencies:
281 | '@babel/types': 7.23.6
282 | dev: true
283 |
284 | /@babel/helper-string-parser@7.23.4:
285 | resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
286 | engines: {node: '>=6.9.0'}
287 | dev: true
288 |
289 | /@babel/helper-validator-identifier@7.22.20:
290 | resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
291 | engines: {node: '>=6.9.0'}
292 | dev: true
293 |
294 | /@babel/helper-validator-option@7.23.5:
295 | resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
296 | engines: {node: '>=6.9.0'}
297 | dev: true
298 |
299 | /@babel/helpers@7.23.8:
300 | resolution: {integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==}
301 | engines: {node: '>=6.9.0'}
302 | dependencies:
303 | '@babel/template': 7.22.15
304 | '@babel/traverse': 7.23.7
305 | '@babel/types': 7.23.6
306 | transitivePeerDependencies:
307 | - supports-color
308 | dev: true
309 |
310 | /@babel/highlight@7.23.4:
311 | resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
312 | engines: {node: '>=6.9.0'}
313 | dependencies:
314 | '@babel/helper-validator-identifier': 7.22.20
315 | chalk: 2.4.2
316 | js-tokens: 4.0.0
317 | dev: true
318 |
319 | /@babel/parser@7.23.6:
320 | resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==}
321 | engines: {node: '>=6.0.0'}
322 | hasBin: true
323 | dependencies:
324 | '@babel/types': 7.23.6
325 | dev: true
326 |
327 | /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.7):
328 | resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
329 | engines: {node: '>=6.9.0'}
330 | peerDependencies:
331 | '@babel/core': ^7.0.0-0
332 | dependencies:
333 | '@babel/core': 7.23.7
334 | '@babel/helper-plugin-utils': 7.22.5
335 | dev: true
336 |
337 | /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.7):
338 | resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
339 | engines: {node: '>=6.9.0'}
340 | peerDependencies:
341 | '@babel/core': ^7.0.0-0
342 | dependencies:
343 | '@babel/core': 7.23.7
344 | '@babel/helper-plugin-utils': 7.22.5
345 | dev: true
346 |
347 | /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.7):
348 | resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
349 | engines: {node: '>=6.9.0'}
350 | peerDependencies:
351 | '@babel/core': ^7.0.0-0
352 | dependencies:
353 | '@babel/core': 7.23.7
354 | '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
355 | '@babel/helper-plugin-utils': 7.22.5
356 | '@babel/helper-simple-access': 7.22.5
357 | dev: true
358 |
359 | /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.7):
360 | resolution: {integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==}
361 | engines: {node: '>=6.9.0'}
362 | peerDependencies:
363 | '@babel/core': ^7.0.0-0
364 | dependencies:
365 | '@babel/core': 7.23.7
366 | '@babel/helper-plugin-utils': 7.22.5
367 | dev: true
368 |
369 | /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.7):
370 | resolution: {integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==}
371 | engines: {node: '>=6.9.0'}
372 | peerDependencies:
373 | '@babel/core': ^7.0.0-0
374 | dependencies:
375 | '@babel/core': 7.23.7
376 | '@babel/helper-plugin-utils': 7.22.5
377 | dev: true
378 |
379 | /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.7):
380 | resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==}
381 | engines: {node: '>=6.9.0'}
382 | peerDependencies:
383 | '@babel/core': ^7.0.0-0
384 | dependencies:
385 | '@babel/core': 7.23.7
386 | '@babel/helper-annotate-as-pure': 7.22.5
387 | '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
388 | '@babel/helper-plugin-utils': 7.22.5
389 | '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7)
390 | dev: true
391 |
392 | /@babel/preset-typescript@7.23.3(@babel/core@7.23.7):
393 | resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==}
394 | engines: {node: '>=6.9.0'}
395 | peerDependencies:
396 | '@babel/core': ^7.0.0-0
397 | dependencies:
398 | '@babel/core': 7.23.7
399 | '@babel/helper-plugin-utils': 7.22.5
400 | '@babel/helper-validator-option': 7.23.5
401 | '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
402 | '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
403 | '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.7)
404 | dev: true
405 |
406 | /@babel/runtime@7.23.8:
407 | resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==}
408 | engines: {node: '>=6.9.0'}
409 | dependencies:
410 | regenerator-runtime: 0.14.1
411 | dev: false
412 |
413 | /@babel/template@7.22.15:
414 | resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
415 | engines: {node: '>=6.9.0'}
416 | dependencies:
417 | '@babel/code-frame': 7.23.5
418 | '@babel/parser': 7.23.6
419 | '@babel/types': 7.23.6
420 | dev: true
421 |
422 | /@babel/traverse@7.23.7:
423 | resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==}
424 | engines: {node: '>=6.9.0'}
425 | dependencies:
426 | '@babel/code-frame': 7.23.5
427 | '@babel/generator': 7.23.6
428 | '@babel/helper-environment-visitor': 7.22.20
429 | '@babel/helper-function-name': 7.23.0
430 | '@babel/helper-hoist-variables': 7.22.5
431 | '@babel/helper-split-export-declaration': 7.22.6
432 | '@babel/parser': 7.23.6
433 | '@babel/types': 7.23.6
434 | debug: 4.3.4
435 | globals: 11.12.0
436 | transitivePeerDependencies:
437 | - supports-color
438 | dev: true
439 |
440 | /@babel/types@7.23.6:
441 | resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==}
442 | engines: {node: '>=6.9.0'}
443 | dependencies:
444 | '@babel/helper-string-parser': 7.23.4
445 | '@babel/helper-validator-identifier': 7.22.20
446 | to-fast-properties: 2.0.0
447 | dev: true
448 |
449 | /@esbuild/aix-ppc64@0.19.11:
450 | resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==}
451 | engines: {node: '>=12'}
452 | cpu: [ppc64]
453 | os: [aix]
454 | requiresBuild: true
455 | dev: true
456 | optional: true
457 |
458 | /@esbuild/android-arm64@0.19.11:
459 | resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==}
460 | engines: {node: '>=12'}
461 | cpu: [arm64]
462 | os: [android]
463 | requiresBuild: true
464 | dev: true
465 | optional: true
466 |
467 | /@esbuild/android-arm@0.19.11:
468 | resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==}
469 | engines: {node: '>=12'}
470 | cpu: [arm]
471 | os: [android]
472 | requiresBuild: true
473 | dev: true
474 | optional: true
475 |
476 | /@esbuild/android-x64@0.19.11:
477 | resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==}
478 | engines: {node: '>=12'}
479 | cpu: [x64]
480 | os: [android]
481 | requiresBuild: true
482 | dev: true
483 | optional: true
484 |
485 | /@esbuild/darwin-arm64@0.19.11:
486 | resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==}
487 | engines: {node: '>=12'}
488 | cpu: [arm64]
489 | os: [darwin]
490 | requiresBuild: true
491 | dev: true
492 | optional: true
493 |
494 | /@esbuild/darwin-x64@0.19.11:
495 | resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==}
496 | engines: {node: '>=12'}
497 | cpu: [x64]
498 | os: [darwin]
499 | requiresBuild: true
500 | dev: true
501 | optional: true
502 |
503 | /@esbuild/freebsd-arm64@0.19.11:
504 | resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==}
505 | engines: {node: '>=12'}
506 | cpu: [arm64]
507 | os: [freebsd]
508 | requiresBuild: true
509 | dev: true
510 | optional: true
511 |
512 | /@esbuild/freebsd-x64@0.19.11:
513 | resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==}
514 | engines: {node: '>=12'}
515 | cpu: [x64]
516 | os: [freebsd]
517 | requiresBuild: true
518 | dev: true
519 | optional: true
520 |
521 | /@esbuild/linux-arm64@0.19.11:
522 | resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==}
523 | engines: {node: '>=12'}
524 | cpu: [arm64]
525 | os: [linux]
526 | requiresBuild: true
527 | dev: true
528 | optional: true
529 |
530 | /@esbuild/linux-arm@0.19.11:
531 | resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==}
532 | engines: {node: '>=12'}
533 | cpu: [arm]
534 | os: [linux]
535 | requiresBuild: true
536 | dev: true
537 | optional: true
538 |
539 | /@esbuild/linux-ia32@0.19.11:
540 | resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==}
541 | engines: {node: '>=12'}
542 | cpu: [ia32]
543 | os: [linux]
544 | requiresBuild: true
545 | dev: true
546 | optional: true
547 |
548 | /@esbuild/linux-loong64@0.19.11:
549 | resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==}
550 | engines: {node: '>=12'}
551 | cpu: [loong64]
552 | os: [linux]
553 | requiresBuild: true
554 | dev: true
555 | optional: true
556 |
557 | /@esbuild/linux-mips64el@0.19.11:
558 | resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==}
559 | engines: {node: '>=12'}
560 | cpu: [mips64el]
561 | os: [linux]
562 | requiresBuild: true
563 | dev: true
564 | optional: true
565 |
566 | /@esbuild/linux-ppc64@0.19.11:
567 | resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==}
568 | engines: {node: '>=12'}
569 | cpu: [ppc64]
570 | os: [linux]
571 | requiresBuild: true
572 | dev: true
573 | optional: true
574 |
575 | /@esbuild/linux-riscv64@0.19.11:
576 | resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==}
577 | engines: {node: '>=12'}
578 | cpu: [riscv64]
579 | os: [linux]
580 | requiresBuild: true
581 | dev: true
582 | optional: true
583 |
584 | /@esbuild/linux-s390x@0.19.11:
585 | resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==}
586 | engines: {node: '>=12'}
587 | cpu: [s390x]
588 | os: [linux]
589 | requiresBuild: true
590 | dev: true
591 | optional: true
592 |
593 | /@esbuild/linux-x64@0.19.11:
594 | resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==}
595 | engines: {node: '>=12'}
596 | cpu: [x64]
597 | os: [linux]
598 | requiresBuild: true
599 | dev: true
600 | optional: true
601 |
602 | /@esbuild/netbsd-x64@0.19.11:
603 | resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==}
604 | engines: {node: '>=12'}
605 | cpu: [x64]
606 | os: [netbsd]
607 | requiresBuild: true
608 | dev: true
609 | optional: true
610 |
611 | /@esbuild/openbsd-x64@0.19.11:
612 | resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==}
613 | engines: {node: '>=12'}
614 | cpu: [x64]
615 | os: [openbsd]
616 | requiresBuild: true
617 | dev: true
618 | optional: true
619 |
620 | /@esbuild/sunos-x64@0.19.11:
621 | resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==}
622 | engines: {node: '>=12'}
623 | cpu: [x64]
624 | os: [sunos]
625 | requiresBuild: true
626 | dev: true
627 | optional: true
628 |
629 | /@esbuild/win32-arm64@0.19.11:
630 | resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==}
631 | engines: {node: '>=12'}
632 | cpu: [arm64]
633 | os: [win32]
634 | requiresBuild: true
635 | dev: true
636 | optional: true
637 |
638 | /@esbuild/win32-ia32@0.19.11:
639 | resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==}
640 | engines: {node: '>=12'}
641 | cpu: [ia32]
642 | os: [win32]
643 | requiresBuild: true
644 | dev: true
645 | optional: true
646 |
647 | /@esbuild/win32-x64@0.19.11:
648 | resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==}
649 | engines: {node: '>=12'}
650 | cpu: [x64]
651 | os: [win32]
652 | requiresBuild: true
653 | dev: true
654 | optional: true
655 |
656 | /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0):
657 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
658 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
659 | peerDependencies:
660 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
661 | dependencies:
662 | eslint: 8.56.0
663 | eslint-visitor-keys: 3.4.3
664 | dev: true
665 |
666 | /@eslint-community/regexpp@4.10.0:
667 | resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
668 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
669 | dev: true
670 |
671 | /@eslint/eslintrc@2.1.4:
672 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
673 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
674 | dependencies:
675 | ajv: 6.12.6
676 | debug: 4.3.4
677 | espree: 9.6.1
678 | globals: 13.24.0
679 | ignore: 5.3.0
680 | import-fresh: 3.3.0
681 | js-yaml: 4.1.0
682 | minimatch: 3.1.2
683 | strip-json-comments: 3.1.1
684 | transitivePeerDependencies:
685 | - supports-color
686 | dev: true
687 |
688 | /@eslint/js@8.56.0:
689 | resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==}
690 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
691 | dev: true
692 |
693 | /@floating-ui/core@1.5.3:
694 | resolution: {integrity: sha512-O0WKDOo0yhJuugCx6trZQj5jVJ9yR0ystG2JaNAemYUWce+pmM6WUEFIibnWyEJKdrDxhm75NoSRME35FNaM/Q==}
695 | dependencies:
696 | '@floating-ui/utils': 0.2.1
697 | dev: false
698 |
699 | /@floating-ui/dom@1.5.4:
700 | resolution: {integrity: sha512-jByEsHIY+eEdCjnTVu+E3ephzTOzkQ8hgUfGwos+bg7NlH33Zc5uO+QHz1mrQUOgIKKDD1RtS201P9NvAfq3XQ==}
701 | dependencies:
702 | '@floating-ui/core': 1.5.3
703 | '@floating-ui/utils': 0.2.1
704 | dev: false
705 |
706 | /@floating-ui/react-dom@2.0.6(react-dom@18.2.0)(react@18.2.0):
707 | resolution: {integrity: sha512-IB8aCRFxr8nFkdYZgH+Otd9EVQPJoynxeFRGTB8voPoZMRWo8XjYuCRgpI1btvuKY69XMiLnW+ym7zoBHM90Rw==}
708 | peerDependencies:
709 | react: '>=16.8.0'
710 | react-dom: '>=16.8.0'
711 | dependencies:
712 | '@floating-ui/dom': 1.5.4
713 | react: 18.2.0
714 | react-dom: 18.2.0(react@18.2.0)
715 | dev: false
716 |
717 | /@floating-ui/react@0.24.8(react-dom@18.2.0)(react@18.2.0):
718 | resolution: {integrity: sha512-AuYeDoaR8jtUlUXtZ1IJ/6jtBkGnSpJXbGNzokBL87VDJ8opMq1Bgrc0szhK482ReQY6KZsMoZCVSb4xwalkBA==}
719 | peerDependencies:
720 | react: '>=16.8.0'
721 | react-dom: '>=16.8.0'
722 | dependencies:
723 | '@floating-ui/react-dom': 2.0.6(react-dom@18.2.0)(react@18.2.0)
724 | aria-hidden: 1.2.3
725 | react: 18.2.0
726 | react-dom: 18.2.0(react@18.2.0)
727 | tabbable: 6.2.0
728 | dev: false
729 |
730 | /@floating-ui/utils@0.2.1:
731 | resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==}
732 | dev: false
733 |
734 | /@humanwhocodes/config-array@0.11.14:
735 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
736 | engines: {node: '>=10.10.0'}
737 | dependencies:
738 | '@humanwhocodes/object-schema': 2.0.2
739 | debug: 4.3.4
740 | minimatch: 3.1.2
741 | transitivePeerDependencies:
742 | - supports-color
743 | dev: true
744 |
745 | /@humanwhocodes/module-importer@1.0.1:
746 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
747 | engines: {node: '>=12.22'}
748 | dev: true
749 |
750 | /@humanwhocodes/object-schema@2.0.2:
751 | resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==}
752 | dev: true
753 |
754 | /@iconify-json/tabler@1.1.104:
755 | resolution: {integrity: sha512-wULNz6HmRZSOUansZl57uI9PkE98QlkplIpalBEez56RtJ2Ygi30JqFNG+eSBRA8dYcYJG9TPNg6fcOV3TZYpA==}
756 | dependencies:
757 | '@iconify/types': 2.0.0
758 | dev: true
759 |
760 | /@iconify/types@2.0.0:
761 | resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
762 | dev: true
763 |
764 | /@iconify/utils@2.1.15:
765 | resolution: {integrity: sha512-8chdk3NhkYiqIVxPRBPN5wGnVYaTqc8XUagCNez84Ex7yK/oNrj1XINVn7zv+JljqZbF6r5B/bd1gRNlMSwYhg==}
766 | dependencies:
767 | '@antfu/install-pkg': 0.1.1
768 | '@antfu/utils': 0.7.7
769 | '@iconify/types': 2.0.0
770 | debug: 4.3.4
771 | kolorist: 1.8.0
772 | local-pkg: 0.4.3
773 | transitivePeerDependencies:
774 | - supports-color
775 | dev: true
776 |
777 | /@jridgewell/gen-mapping@0.3.3:
778 | resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
779 | engines: {node: '>=6.0.0'}
780 | dependencies:
781 | '@jridgewell/set-array': 1.1.2
782 | '@jridgewell/sourcemap-codec': 1.4.15
783 | '@jridgewell/trace-mapping': 0.3.21
784 | dev: true
785 |
786 | /@jridgewell/resolve-uri@3.1.1:
787 | resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
788 | engines: {node: '>=6.0.0'}
789 | dev: true
790 |
791 | /@jridgewell/set-array@1.1.2:
792 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
793 | engines: {node: '>=6.0.0'}
794 | dev: true
795 |
796 | /@jridgewell/sourcemap-codec@1.4.15:
797 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
798 | dev: true
799 |
800 | /@jridgewell/trace-mapping@0.3.21:
801 | resolution: {integrity: sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==}
802 | dependencies:
803 | '@jridgewell/resolve-uri': 3.1.1
804 | '@jridgewell/sourcemap-codec': 1.4.15
805 | dev: true
806 |
807 | /@mantine/core@7.4.2(@mantine/hooks@7.4.2)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
808 | resolution: {integrity: sha512-kXmq7NjSd1AsOIzqPwQhA7SeZS9hrbARRqhRwr4LLR3NKps9hLmVto441DnpHH/D27eL9gGLSl4GRIdogjX6mg==}
809 | peerDependencies:
810 | '@mantine/hooks': 7.4.2
811 | react: ^18.2.0
812 | react-dom: ^18.2.0
813 | dependencies:
814 | '@floating-ui/react': 0.24.8(react-dom@18.2.0)(react@18.2.0)
815 | '@mantine/hooks': 7.4.2(react@18.2.0)
816 | clsx: 2.0.0
817 | react: 18.2.0
818 | react-dom: 18.2.0(react@18.2.0)
819 | react-number-format: 5.3.1(react-dom@18.2.0)(react@18.2.0)
820 | react-remove-scroll: 2.5.7(@types/react@18.2.48)(react@18.2.0)
821 | react-textarea-autosize: 8.5.3(@types/react@18.2.48)(react@18.2.0)
822 | type-fest: 3.13.1
823 | transitivePeerDependencies:
824 | - '@types/react'
825 | dev: false
826 |
827 | /@mantine/hooks@7.4.2(react@18.2.0):
828 | resolution: {integrity: sha512-tNtn/SNOtSmjLQmIk4S5nsTJjV84Oj0AUYRrAN78HHw3bfWp6bdWbgYPtPEH9e6iFJfdxiX0hrLfWqROalAsbQ==}
829 | peerDependencies:
830 | react: ^18.2.0
831 | dependencies:
832 | react: 18.2.0
833 | dev: false
834 |
835 | /@nodelib/fs.scandir@2.1.5:
836 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
837 | engines: {node: '>= 8'}
838 | dependencies:
839 | '@nodelib/fs.stat': 2.0.5
840 | run-parallel: 1.2.0
841 | dev: true
842 |
843 | /@nodelib/fs.stat@2.0.5:
844 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
845 | engines: {node: '>= 8'}
846 | dev: true
847 |
848 | /@nodelib/fs.walk@1.2.8:
849 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
850 | engines: {node: '>= 8'}
851 | dependencies:
852 | '@nodelib/fs.scandir': 2.1.5
853 | fastq: 1.16.0
854 | dev: true
855 |
856 | /@polka/url@1.0.0-next.24:
857 | resolution: {integrity: sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==}
858 | dev: true
859 |
860 | /@rollup/plugin-virtual@3.0.2:
861 | resolution: {integrity: sha512-10monEYsBp3scM4/ND4LNH5Rxvh3e/cVeL3jWTgZ2SrQ+BmUoQcopVQvnaMcOnykb1VkxUFuDAN+0FnpTFRy2A==}
862 | engines: {node: '>=14.0.0'}
863 | peerDependencies:
864 | rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
865 | peerDependenciesMeta:
866 | rollup:
867 | optional: true
868 | dev: true
869 |
870 | /@rollup/pluginutils@5.1.0:
871 | resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
872 | engines: {node: '>=14.0.0'}
873 | peerDependencies:
874 | rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
875 | peerDependenciesMeta:
876 | rollup:
877 | optional: true
878 | dependencies:
879 | '@types/estree': 1.0.5
880 | estree-walker: 2.0.2
881 | picomatch: 2.3.1
882 | dev: true
883 |
884 | /@rollup/rollup-android-arm-eabi@4.9.5:
885 | resolution: {integrity: sha512-idWaG8xeSRCfRq9KpRysDHJ/rEHBEXcHuJ82XY0yYFIWnLMjZv9vF/7DOq8djQ2n3Lk6+3qfSH8AqlmHlmi1MA==}
886 | cpu: [arm]
887 | os: [android]
888 | requiresBuild: true
889 | dev: true
890 | optional: true
891 |
892 | /@rollup/rollup-android-arm64@4.9.5:
893 | resolution: {integrity: sha512-f14d7uhAMtsCGjAYwZGv6TwuS3IFaM4ZnGMUn3aCBgkcHAYErhV1Ad97WzBvS2o0aaDv4mVz+syiN0ElMyfBPg==}
894 | cpu: [arm64]
895 | os: [android]
896 | requiresBuild: true
897 | dev: true
898 | optional: true
899 |
900 | /@rollup/rollup-darwin-arm64@4.9.5:
901 | resolution: {integrity: sha512-ndoXeLx455FffL68OIUrVr89Xu1WLzAG4n65R8roDlCoYiQcGGg6MALvs2Ap9zs7AHg8mpHtMpwC8jBBjZrT/w==}
902 | cpu: [arm64]
903 | os: [darwin]
904 | requiresBuild: true
905 | dev: true
906 | optional: true
907 |
908 | /@rollup/rollup-darwin-x64@4.9.5:
909 | resolution: {integrity: sha512-UmElV1OY2m/1KEEqTlIjieKfVwRg0Zwg4PLgNf0s3glAHXBN99KLpw5A5lrSYCa1Kp63czTpVll2MAqbZYIHoA==}
910 | cpu: [x64]
911 | os: [darwin]
912 | requiresBuild: true
913 | dev: true
914 | optional: true
915 |
916 | /@rollup/rollup-linux-arm-gnueabihf@4.9.5:
917 | resolution: {integrity: sha512-Q0LcU61v92tQB6ae+udZvOyZ0wfpGojtAKrrpAaIqmJ7+psq4cMIhT/9lfV6UQIpeItnq/2QDROhNLo00lOD1g==}
918 | cpu: [arm]
919 | os: [linux]
920 | requiresBuild: true
921 | dev: true
922 | optional: true
923 |
924 | /@rollup/rollup-linux-arm64-gnu@4.9.5:
925 | resolution: {integrity: sha512-dkRscpM+RrR2Ee3eOQmRWFjmV/payHEOrjyq1VZegRUa5OrZJ2MAxBNs05bZuY0YCtpqETDy1Ix4i/hRqX98cA==}
926 | cpu: [arm64]
927 | os: [linux]
928 | requiresBuild: true
929 | dev: true
930 | optional: true
931 |
932 | /@rollup/rollup-linux-arm64-musl@4.9.5:
933 | resolution: {integrity: sha512-QaKFVOzzST2xzY4MAmiDmURagWLFh+zZtttuEnuNn19AiZ0T3fhPyjPPGwLNdiDT82ZE91hnfJsUiDwF9DClIQ==}
934 | cpu: [arm64]
935 | os: [linux]
936 | requiresBuild: true
937 | dev: true
938 | optional: true
939 |
940 | /@rollup/rollup-linux-riscv64-gnu@4.9.5:
941 | resolution: {integrity: sha512-HeGqmRJuyVg6/X6MpE2ur7GbymBPS8Np0S/vQFHDmocfORT+Zt76qu+69NUoxXzGqVP1pzaY6QIi0FJWLC3OPA==}
942 | cpu: [riscv64]
943 | os: [linux]
944 | requiresBuild: true
945 | dev: true
946 | optional: true
947 |
948 | /@rollup/rollup-linux-x64-gnu@4.9.5:
949 | resolution: {integrity: sha512-Dq1bqBdLaZ1Gb/l2e5/+o3B18+8TI9ANlA1SkejZqDgdU/jK/ThYaMPMJpVMMXy2uRHvGKbkz9vheVGdq3cJfA==}
950 | cpu: [x64]
951 | os: [linux]
952 | requiresBuild: true
953 | dev: true
954 | optional: true
955 |
956 | /@rollup/rollup-linux-x64-musl@4.9.5:
957 | resolution: {integrity: sha512-ezyFUOwldYpj7AbkwyW9AJ203peub81CaAIVvckdkyH8EvhEIoKzaMFJj0G4qYJ5sw3BpqhFrsCc30t54HV8vg==}
958 | cpu: [x64]
959 | os: [linux]
960 | requiresBuild: true
961 | dev: true
962 | optional: true
963 |
964 | /@rollup/rollup-win32-arm64-msvc@4.9.5:
965 | resolution: {integrity: sha512-aHSsMnUw+0UETB0Hlv7B/ZHOGY5bQdwMKJSzGfDfvyhnpmVxLMGnQPGNE9wgqkLUs3+gbG1Qx02S2LLfJ5GaRQ==}
966 | cpu: [arm64]
967 | os: [win32]
968 | requiresBuild: true
969 | dev: true
970 | optional: true
971 |
972 | /@rollup/rollup-win32-ia32-msvc@4.9.5:
973 | resolution: {integrity: sha512-AiqiLkb9KSf7Lj/o1U3SEP9Zn+5NuVKgFdRIZkvd4N0+bYrTOovVd0+LmYCPQGbocT4kvFyK+LXCDiXPBF3fyA==}
974 | cpu: [ia32]
975 | os: [win32]
976 | requiresBuild: true
977 | dev: true
978 | optional: true
979 |
980 | /@rollup/rollup-win32-x64-msvc@4.9.5:
981 | resolution: {integrity: sha512-1q+mykKE3Vot1kaFJIDoUFv5TuW+QQVaf2FmTT9krg86pQrGStOSJJ0Zil7CFagyxDuouTepzt5Y5TVzyajOdQ==}
982 | cpu: [x64]
983 | os: [win32]
984 | requiresBuild: true
985 | dev: true
986 | optional: true
987 |
988 | /@swc/core-darwin-arm64@1.3.103:
989 | resolution: {integrity: sha512-Dqqz48mvdm/3PHPPA6YeAEofkF9H5Krgqd/baPf0dXcarzng6U9Ilv2aCtDjq7dfI9jfkVCW5zuwq98PE2GEdw==}
990 | engines: {node: '>=10'}
991 | cpu: [arm64]
992 | os: [darwin]
993 | requiresBuild: true
994 | dev: true
995 | optional: true
996 |
997 | /@swc/core-darwin-x64@1.3.103:
998 | resolution: {integrity: sha512-mhUVSCEAyFLqtrDtwr9qPbe891J8cKxq53CD873/ZsUnyasHMPyWXzTvy9qjmbYyfDIArm6fGqjF5YsDKwGGNg==}
999 | engines: {node: '>=10'}
1000 | cpu: [x64]
1001 | os: [darwin]
1002 | requiresBuild: true
1003 | dev: true
1004 | optional: true
1005 |
1006 | /@swc/core-linux-arm-gnueabihf@1.3.103:
1007 | resolution: {integrity: sha512-rYLmwxr01ZHOI6AzooqwB0DOkMm0oU8Jznk6uutV1lHgcwyxsNiC1Css8yf77Xr/sYTvKvuTfBjThqa5H716pA==}
1008 | engines: {node: '>=10'}
1009 | cpu: [arm]
1010 | os: [linux]
1011 | requiresBuild: true
1012 | dev: true
1013 | optional: true
1014 |
1015 | /@swc/core-linux-arm64-gnu@1.3.103:
1016 | resolution: {integrity: sha512-w+5XFpUqxiAGUBiyRyYR28Ghddp5uVyo+dHAkCnY1u3V6RsZkY3vRwmoXT7/HxVGV7csodJ1P9Cp9VaRnNvTKA==}
1017 | engines: {node: '>=10'}
1018 | cpu: [arm64]
1019 | os: [linux]
1020 | requiresBuild: true
1021 | dev: true
1022 | optional: true
1023 |
1024 | /@swc/core-linux-arm64-musl@1.3.103:
1025 | resolution: {integrity: sha512-lS5p8ewAIar7adX6t0OrkICTcw92PXrn3ZmYyG5hvfjUg4RPQFjMfFMDQSne32ZJhGXHBf0LVm1R8wHwkcpwgA==}
1026 | engines: {node: '>=10'}
1027 | cpu: [arm64]
1028 | os: [linux]
1029 | requiresBuild: true
1030 | dev: true
1031 | optional: true
1032 |
1033 | /@swc/core-linux-x64-gnu@1.3.103:
1034 | resolution: {integrity: sha512-Lf2cHDoEPNB6TwexHBEZCsAO2C7beb0YljhtQS+QfjWLLVqCiwt5LRCPuKN2Bav7el9KZXOI5baXedUeFj0oFg==}
1035 | engines: {node: '>=10'}
1036 | cpu: [x64]
1037 | os: [linux]
1038 | requiresBuild: true
1039 | dev: true
1040 | optional: true
1041 |
1042 | /@swc/core-linux-x64-musl@1.3.103:
1043 | resolution: {integrity: sha512-HR1Y9iiLEO3F49P47vjbHczBza9RbdXWRWC8NpcOcGJ4Wnw0c2DLWAh416fGH3VYCF/19EuglLEXhvSj0NXGuA==}
1044 | engines: {node: '>=10'}
1045 | cpu: [x64]
1046 | os: [linux]
1047 | requiresBuild: true
1048 | dev: true
1049 | optional: true
1050 |
1051 | /@swc/core-win32-arm64-msvc@1.3.103:
1052 | resolution: {integrity: sha512-3/GfROD1GPyf2hi6R0l4iZ5nrrKG8IU29hYhZCb7r0ZqhL/58kktVPlkib8X/EAJI8xbhM/NMl76h8ElrnyH5w==}
1053 | engines: {node: '>=10'}
1054 | cpu: [arm64]
1055 | os: [win32]
1056 | requiresBuild: true
1057 | dev: true
1058 | optional: true
1059 |
1060 | /@swc/core-win32-ia32-msvc@1.3.103:
1061 | resolution: {integrity: sha512-9ejEFjfgPi0ibNmtuiRbYq9p4RRV6oH1DN9XjkYM8zh2qHlpZHKQZ3n4eHS0VtJO4rEGZxL8ebcnTNs62wqJig==}
1062 | engines: {node: '>=10'}
1063 | cpu: [ia32]
1064 | os: [win32]
1065 | requiresBuild: true
1066 | dev: true
1067 | optional: true
1068 |
1069 | /@swc/core-win32-x64-msvc@1.3.103:
1070 | resolution: {integrity: sha512-/1RvaOmZolXurWAUdnELYynVlFUiT0hj3PyTPoo+YK6+KV7er4EqUalRsoUf3zzGepQuhKFZFDpQn6Xi9kJX1A==}
1071 | engines: {node: '>=10'}
1072 | cpu: [x64]
1073 | os: [win32]
1074 | requiresBuild: true
1075 | dev: true
1076 | optional: true
1077 |
1078 | /@swc/core@1.3.103:
1079 | resolution: {integrity: sha512-PYtt8KzRXIFDwxeD7BA9ylmXNQ4hRVcmDVuAmL3yvL9rgx7Tn3qn6T37wiMVZnP1OjqGyhuHRPNycd+ssr+byw==}
1080 | engines: {node: '>=10'}
1081 | requiresBuild: true
1082 | peerDependencies:
1083 | '@swc/helpers': ^0.5.0
1084 | peerDependenciesMeta:
1085 | '@swc/helpers':
1086 | optional: true
1087 | dependencies:
1088 | '@swc/counter': 0.1.2
1089 | '@swc/types': 0.1.5
1090 | optionalDependencies:
1091 | '@swc/core-darwin-arm64': 1.3.103
1092 | '@swc/core-darwin-x64': 1.3.103
1093 | '@swc/core-linux-arm-gnueabihf': 1.3.103
1094 | '@swc/core-linux-arm64-gnu': 1.3.103
1095 | '@swc/core-linux-arm64-musl': 1.3.103
1096 | '@swc/core-linux-x64-gnu': 1.3.103
1097 | '@swc/core-linux-x64-musl': 1.3.103
1098 | '@swc/core-win32-arm64-msvc': 1.3.103
1099 | '@swc/core-win32-ia32-msvc': 1.3.103
1100 | '@swc/core-win32-x64-msvc': 1.3.103
1101 | dev: true
1102 |
1103 | /@swc/counter@0.1.2:
1104 | resolution: {integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==}
1105 | dev: true
1106 |
1107 | /@swc/types@0.1.5:
1108 | resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==}
1109 | dev: true
1110 |
1111 | /@types/babel__core@7.20.5:
1112 | resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
1113 | dependencies:
1114 | '@babel/parser': 7.23.6
1115 | '@babel/types': 7.23.6
1116 | '@types/babel__generator': 7.6.8
1117 | '@types/babel__template': 7.4.4
1118 | '@types/babel__traverse': 7.20.5
1119 | dev: true
1120 |
1121 | /@types/babel__generator@7.6.8:
1122 | resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
1123 | dependencies:
1124 | '@babel/types': 7.23.6
1125 | dev: true
1126 |
1127 | /@types/babel__template@7.4.4:
1128 | resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
1129 | dependencies:
1130 | '@babel/parser': 7.23.6
1131 | '@babel/types': 7.23.6
1132 | dev: true
1133 |
1134 | /@types/babel__traverse@7.20.5:
1135 | resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==}
1136 | dependencies:
1137 | '@babel/types': 7.23.6
1138 | dev: true
1139 |
1140 | /@types/estree@1.0.5:
1141 | resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
1142 | dev: true
1143 |
1144 | /@types/json-schema@7.0.15:
1145 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
1146 | dev: true
1147 |
1148 | /@types/prop-types@15.7.11:
1149 | resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==}
1150 |
1151 | /@types/react-dom@18.2.18:
1152 | resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==}
1153 | dependencies:
1154 | '@types/react': 18.2.48
1155 | dev: true
1156 |
1157 | /@types/react@18.2.48:
1158 | resolution: {integrity: sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==}
1159 | dependencies:
1160 | '@types/prop-types': 15.7.11
1161 | '@types/scheduler': 0.16.8
1162 | csstype: 3.1.3
1163 |
1164 | /@types/scheduler@0.16.8:
1165 | resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==}
1166 |
1167 | /@types/semver@7.5.6:
1168 | resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==}
1169 | dev: true
1170 |
1171 | /@typescript-eslint/eslint-plugin@6.19.0(@typescript-eslint/parser@6.19.0)(eslint@8.56.0)(typescript@5.3.3):
1172 | resolution: {integrity: sha512-DUCUkQNklCQYnrBSSikjVChdc84/vMPDQSgJTHBZ64G9bA9w0Crc0rd2diujKbTdp6w2J47qkeHQLoi0rpLCdg==}
1173 | engines: {node: ^16.0.0 || >=18.0.0}
1174 | peerDependencies:
1175 | '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
1176 | eslint: ^7.0.0 || ^8.0.0
1177 | typescript: '*'
1178 | peerDependenciesMeta:
1179 | typescript:
1180 | optional: true
1181 | dependencies:
1182 | '@eslint-community/regexpp': 4.10.0
1183 | '@typescript-eslint/parser': 6.19.0(eslint@8.56.0)(typescript@5.3.3)
1184 | '@typescript-eslint/scope-manager': 6.19.0
1185 | '@typescript-eslint/type-utils': 6.19.0(eslint@8.56.0)(typescript@5.3.3)
1186 | '@typescript-eslint/utils': 6.19.0(eslint@8.56.0)(typescript@5.3.3)
1187 | '@typescript-eslint/visitor-keys': 6.19.0
1188 | debug: 4.3.4
1189 | eslint: 8.56.0
1190 | graphemer: 1.4.0
1191 | ignore: 5.3.0
1192 | natural-compare: 1.4.0
1193 | semver: 7.5.4
1194 | ts-api-utils: 1.0.3(typescript@5.3.3)
1195 | typescript: 5.3.3
1196 | transitivePeerDependencies:
1197 | - supports-color
1198 | dev: true
1199 |
1200 | /@typescript-eslint/parser@6.19.0(eslint@8.56.0)(typescript@5.3.3):
1201 | resolution: {integrity: sha512-1DyBLG5SH7PYCd00QlroiW60YJ4rWMuUGa/JBV0iZuqi4l4IK3twKPq5ZkEebmGqRjXWVgsUzfd3+nZveewgow==}
1202 | engines: {node: ^16.0.0 || >=18.0.0}
1203 | peerDependencies:
1204 | eslint: ^7.0.0 || ^8.0.0
1205 | typescript: '*'
1206 | peerDependenciesMeta:
1207 | typescript:
1208 | optional: true
1209 | dependencies:
1210 | '@typescript-eslint/scope-manager': 6.19.0
1211 | '@typescript-eslint/types': 6.19.0
1212 | '@typescript-eslint/typescript-estree': 6.19.0(typescript@5.3.3)
1213 | '@typescript-eslint/visitor-keys': 6.19.0
1214 | debug: 4.3.4
1215 | eslint: 8.56.0
1216 | typescript: 5.3.3
1217 | transitivePeerDependencies:
1218 | - supports-color
1219 | dev: true
1220 |
1221 | /@typescript-eslint/scope-manager@6.19.0:
1222 | resolution: {integrity: sha512-dO1XMhV2ehBI6QN8Ufi7I10wmUovmLU0Oru3n5LVlM2JuzB4M+dVphCPLkVpKvGij2j/pHBWuJ9piuXx+BhzxQ==}
1223 | engines: {node: ^16.0.0 || >=18.0.0}
1224 | dependencies:
1225 | '@typescript-eslint/types': 6.19.0
1226 | '@typescript-eslint/visitor-keys': 6.19.0
1227 | dev: true
1228 |
1229 | /@typescript-eslint/type-utils@6.19.0(eslint@8.56.0)(typescript@5.3.3):
1230 | resolution: {integrity: sha512-mcvS6WSWbjiSxKCwBcXtOM5pRkPQ6kcDds/juxcy/727IQr3xMEcwr/YLHW2A2+Fp5ql6khjbKBzOyjuPqGi/w==}
1231 | engines: {node: ^16.0.0 || >=18.0.0}
1232 | peerDependencies:
1233 | eslint: ^7.0.0 || ^8.0.0
1234 | typescript: '*'
1235 | peerDependenciesMeta:
1236 | typescript:
1237 | optional: true
1238 | dependencies:
1239 | '@typescript-eslint/typescript-estree': 6.19.0(typescript@5.3.3)
1240 | '@typescript-eslint/utils': 6.19.0(eslint@8.56.0)(typescript@5.3.3)
1241 | debug: 4.3.4
1242 | eslint: 8.56.0
1243 | ts-api-utils: 1.0.3(typescript@5.3.3)
1244 | typescript: 5.3.3
1245 | transitivePeerDependencies:
1246 | - supports-color
1247 | dev: true
1248 |
1249 | /@typescript-eslint/types@6.19.0:
1250 | resolution: {integrity: sha512-lFviGV/vYhOy3m8BJ/nAKoAyNhInTdXpftonhWle66XHAtT1ouBlkjL496b5H5hb8dWXHwtypTqgtb/DEa+j5A==}
1251 | engines: {node: ^16.0.0 || >=18.0.0}
1252 | dev: true
1253 |
1254 | /@typescript-eslint/typescript-estree@6.19.0(typescript@5.3.3):
1255 | resolution: {integrity: sha512-o/zefXIbbLBZ8YJ51NlkSAt2BamrK6XOmuxSR3hynMIzzyMY33KuJ9vuMdFSXW+H0tVvdF9qBPTHA91HDb4BIQ==}
1256 | engines: {node: ^16.0.0 || >=18.0.0}
1257 | peerDependencies:
1258 | typescript: '*'
1259 | peerDependenciesMeta:
1260 | typescript:
1261 | optional: true
1262 | dependencies:
1263 | '@typescript-eslint/types': 6.19.0
1264 | '@typescript-eslint/visitor-keys': 6.19.0
1265 | debug: 4.3.4
1266 | globby: 11.1.0
1267 | is-glob: 4.0.3
1268 | minimatch: 9.0.3
1269 | semver: 7.5.4
1270 | ts-api-utils: 1.0.3(typescript@5.3.3)
1271 | typescript: 5.3.3
1272 | transitivePeerDependencies:
1273 | - supports-color
1274 | dev: true
1275 |
1276 | /@typescript-eslint/utils@6.19.0(eslint@8.56.0)(typescript@5.3.3):
1277 | resolution: {integrity: sha512-QR41YXySiuN++/dC9UArYOg4X86OAYP83OWTewpVx5ct1IZhjjgTLocj7QNxGhWoTqknsgpl7L+hGygCO+sdYw==}
1278 | engines: {node: ^16.0.0 || >=18.0.0}
1279 | peerDependencies:
1280 | eslint: ^7.0.0 || ^8.0.0
1281 | dependencies:
1282 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
1283 | '@types/json-schema': 7.0.15
1284 | '@types/semver': 7.5.6
1285 | '@typescript-eslint/scope-manager': 6.19.0
1286 | '@typescript-eslint/types': 6.19.0
1287 | '@typescript-eslint/typescript-estree': 6.19.0(typescript@5.3.3)
1288 | eslint: 8.56.0
1289 | semver: 7.5.4
1290 | transitivePeerDependencies:
1291 | - supports-color
1292 | - typescript
1293 | dev: true
1294 |
1295 | /@typescript-eslint/visitor-keys@6.19.0:
1296 | resolution: {integrity: sha512-hZaUCORLgubBvtGpp1JEFEazcuEdfxta9j4iUwdSAr7mEsYYAp3EAUyCZk3VEEqGj6W+AV4uWyrDGtrlawAsgQ==}
1297 | engines: {node: ^16.0.0 || >=18.0.0}
1298 | dependencies:
1299 | '@typescript-eslint/types': 6.19.0
1300 | eslint-visitor-keys: 3.4.3
1301 | dev: true
1302 |
1303 | /@ungap/structured-clone@1.2.0:
1304 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
1305 | dev: true
1306 |
1307 | /@unocss/astro@0.58.3(vite@5.0.11):
1308 | resolution: {integrity: sha512-qJL+XkWYJhEIX4AmOtbfb2Zu4holTDpRscfvVci4T+2VWjyE3mgtsyNzi9ZChe/hdEPRa7g26gSpNQeMhjh/Kw==}
1309 | peerDependencies:
1310 | vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
1311 | peerDependenciesMeta:
1312 | vite:
1313 | optional: true
1314 | dependencies:
1315 | '@unocss/core': 0.58.3
1316 | '@unocss/reset': 0.58.3
1317 | '@unocss/vite': 0.58.3(vite@5.0.11)
1318 | vite: 5.0.11
1319 | transitivePeerDependencies:
1320 | - rollup
1321 | dev: true
1322 |
1323 | /@unocss/cli@0.58.3:
1324 | resolution: {integrity: sha512-veGdHhwm7GRvruXCMdqoFu3wVozr7ELEVWsFB6GpqWdGYIJ1i72M18l72UHDA2+TuDillZONnAQ5AvX9x/sYAw==}
1325 | engines: {node: '>=14'}
1326 | hasBin: true
1327 | dependencies:
1328 | '@ampproject/remapping': 2.2.1
1329 | '@rollup/pluginutils': 5.1.0
1330 | '@unocss/config': 0.58.3
1331 | '@unocss/core': 0.58.3
1332 | '@unocss/preset-uno': 0.58.3
1333 | cac: 6.7.14
1334 | chokidar: 3.5.3
1335 | colorette: 2.0.20
1336 | consola: 3.2.3
1337 | fast-glob: 3.3.2
1338 | magic-string: 0.30.5
1339 | pathe: 1.1.2
1340 | perfect-debounce: 1.0.0
1341 | transitivePeerDependencies:
1342 | - rollup
1343 | dev: true
1344 |
1345 | /@unocss/config@0.58.3:
1346 | resolution: {integrity: sha512-8BQDoLzf/BkyfnkQsjnXI84oj+Spqkr7Bf2AbOGcX14vof0qqHSDvJXQV1e0u7jv2QETe2D1+PI4fnkJCumaRw==}
1347 | engines: {node: '>=14'}
1348 | dependencies:
1349 | '@unocss/core': 0.58.3
1350 | unconfig: 0.3.11
1351 | dev: true
1352 |
1353 | /@unocss/core@0.58.3:
1354 | resolution: {integrity: sha512-9hTxzsrSLh+07ql/lGhE+8ZbE9MTTeZeMx131cPf2jDJUxAZooLE5pBCoK0k77ZJGcribRrwPGkUScBNOK0cYQ==}
1355 | dev: true
1356 |
1357 | /@unocss/extractor-arbitrary-variants@0.58.3:
1358 | resolution: {integrity: sha512-QszC2atLcvzyoZFsjgtMBbILN4lrYI60iVRWdii+GGiKVtoIaKRWiA/3WERkvYGVPseVWOMflUpfxNeq+s9zUw==}
1359 | dependencies:
1360 | '@unocss/core': 0.58.3
1361 | dev: true
1362 |
1363 | /@unocss/inspector@0.58.3:
1364 | resolution: {integrity: sha512-FqkoHiO23lGGcQ+qJbE1Kb8+kPJWc/LxBz3B4Ehml1vQryncNh4p+3sczVn5YVTfPDGBXBCkP05Q+PJRKabPXQ==}
1365 | dependencies:
1366 | '@unocss/core': 0.58.3
1367 | '@unocss/rule-utils': 0.58.3
1368 | gzip-size: 6.0.0
1369 | sirv: 2.0.4
1370 | dev: true
1371 |
1372 | /@unocss/postcss@0.58.3(postcss@8.4.33):
1373 | resolution: {integrity: sha512-y1WQNvLUidypCu/tr6oJfaV4pjd8Lsk1N27ASEVsvockOH3MekRYpHtJfTl2fMk+1Y98AHv7hPAVjM2NlvhDow==}
1374 | engines: {node: '>=14'}
1375 | peerDependencies:
1376 | postcss: ^8.4.21
1377 | dependencies:
1378 | '@unocss/config': 0.58.3
1379 | '@unocss/core': 0.58.3
1380 | '@unocss/rule-utils': 0.58.3
1381 | css-tree: 2.3.1
1382 | fast-glob: 3.3.2
1383 | magic-string: 0.30.5
1384 | postcss: 8.4.33
1385 | dev: true
1386 |
1387 | /@unocss/preset-attributify@0.58.3:
1388 | resolution: {integrity: sha512-iDXNfnSC0SI51UnMltHmMcPr2SYYkimo86i+SBQqc/WBGcCF7fFqFj8G2WsZfwHvU9SdAHF8tYIwNq06w1WSeg==}
1389 | dependencies:
1390 | '@unocss/core': 0.58.3
1391 | dev: true
1392 |
1393 | /@unocss/preset-icons@0.58.3:
1394 | resolution: {integrity: sha512-SA4Eu4rOQ9+zUgIyK6RacS01ygm0PJWkqKlD8ccrBqEyZapqiU+vLL+v6X8YVjoZjR+5CVgcMD5Km7zEQgqXQw==}
1395 | dependencies:
1396 | '@iconify/utils': 2.1.15
1397 | '@unocss/core': 0.58.3
1398 | ofetch: 1.3.3
1399 | transitivePeerDependencies:
1400 | - supports-color
1401 | dev: true
1402 |
1403 | /@unocss/preset-mini@0.58.3:
1404 | resolution: {integrity: sha512-vPC97vZPY6J9uZ+KmK4x7atKFlZJPH4tR7+SmzTmguaGIHZJG8k1cjBCg+5M7P4MaxINRMukUQS8/mM/uWFqvQ==}
1405 | dependencies:
1406 | '@unocss/core': 0.58.3
1407 | '@unocss/extractor-arbitrary-variants': 0.58.3
1408 | '@unocss/rule-utils': 0.58.3
1409 | dev: true
1410 |
1411 | /@unocss/preset-tagify@0.58.3:
1412 | resolution: {integrity: sha512-9CEh4p8M8zFuNFzmPIs1paExWRcwr0Gp6lSMffFnqaVToeRBgEH7VnRj6/R3ZPAmQ2rEemZ1+3eOQlsspEE6aw==}
1413 | dependencies:
1414 | '@unocss/core': 0.58.3
1415 | dev: true
1416 |
1417 | /@unocss/preset-typography@0.58.3:
1418 | resolution: {integrity: sha512-hOQa2Sjkxo5v+jMwPXYv1MpHSrirf73FKPqwwHlvEUSCq9iweGDOU/MVOc5fI9qCg0SrfWhIvrZb4ASlgAuzWQ==}
1419 | dependencies:
1420 | '@unocss/core': 0.58.3
1421 | '@unocss/preset-mini': 0.58.3
1422 | dev: true
1423 |
1424 | /@unocss/preset-uno@0.58.3:
1425 | resolution: {integrity: sha512-E/g2BS4KXS9E/4OqyJSt0xSB6gbbk2VGjgIXrpcSXuDr2S2F29XLVlhJA5HJBADPlEfbo41z7Mk3LA3nQPWxQQ==}
1426 | dependencies:
1427 | '@unocss/core': 0.58.3
1428 | '@unocss/preset-mini': 0.58.3
1429 | '@unocss/preset-wind': 0.58.3
1430 | '@unocss/rule-utils': 0.58.3
1431 | dev: true
1432 |
1433 | /@unocss/preset-web-fonts@0.58.3:
1434 | resolution: {integrity: sha512-g+ru8gX74uZVSfKgdSGp46XQ+wMr66Hp3wtI01yyu9wqmJRAVWQmeehFYZ0hDnGgX20veYSbG+ybZfxIKeTy6w==}
1435 | dependencies:
1436 | '@unocss/core': 0.58.3
1437 | ofetch: 1.3.3
1438 | dev: true
1439 |
1440 | /@unocss/preset-wind@0.58.3:
1441 | resolution: {integrity: sha512-/YhvKDFGnTNvKxNaBv1dazHaqNmBM0Ulh0U9lhycGz11qsJTQSl/Y9ZP64fVC7fuo+Uiaj8AN/9gpmpVrCgt4A==}
1442 | dependencies:
1443 | '@unocss/core': 0.58.3
1444 | '@unocss/preset-mini': 0.58.3
1445 | '@unocss/rule-utils': 0.58.3
1446 | dev: true
1447 |
1448 | /@unocss/reset@0.58.3:
1449 | resolution: {integrity: sha512-Q2KiRQlam2iYsTZgKdvnXEfUN4TA2oVpGIVD9Wa0ggs0XlYj5aOo0g0+4Tgqqn+YaviZQeJKnDs/JWE+ygHhZA==}
1450 | dev: true
1451 |
1452 | /@unocss/rule-utils@0.58.3:
1453 | resolution: {integrity: sha512-0Px9gIW+VOKetZuYET19uamIRpk7A9c8sCzQuGlNvCLXKEWamqXz5asLtnvPzw6SwCXEQDgWXE9i+aeoXaM0Jg==}
1454 | engines: {node: '>=14'}
1455 | dependencies:
1456 | '@unocss/core': 0.58.3
1457 | magic-string: 0.30.5
1458 | dev: true
1459 |
1460 | /@unocss/scope@0.58.3:
1461 | resolution: {integrity: sha512-Bkf6sk/0wry+fa5P8eLnzjC4pdrRlBY29g4F64qjsMBR0gk0stFRNzeoMOk412gmJXWjjlAQgNYiBZDHoPghZw==}
1462 | dev: true
1463 |
1464 | /@unocss/transformer-attributify-jsx-babel@0.58.3:
1465 | resolution: {integrity: sha512-ar+s1rUVHpTy5Yz31WP4DGF2IHxyD4sk/t9ayvR2nOZddAZipdLGSShG03GLkRv4h2/r0x+BIyJGdwAC0BgVZQ==}
1466 | dependencies:
1467 | '@babel/core': 7.23.7
1468 | '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
1469 | '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7)
1470 | '@unocss/core': 0.58.3
1471 | transitivePeerDependencies:
1472 | - supports-color
1473 | dev: true
1474 |
1475 | /@unocss/transformer-attributify-jsx@0.58.3:
1476 | resolution: {integrity: sha512-H6wLJ5aAdHz8K/Z9/7OfiCBpOmKM7Gah2YtooT/Vfxu66bGehZO4QF6fcla6St53HifNvZ5odhlzqVEyHvQEaQ==}
1477 | dependencies:
1478 | '@unocss/core': 0.58.3
1479 | dev: true
1480 |
1481 | /@unocss/transformer-compile-class@0.58.3:
1482 | resolution: {integrity: sha512-VmnByb3N8uGAEXjnfhra3DzKq8ZeVCL30n46GG5RTC03MK0rZmKVOmBOBIB99rmSV+D/WVrb12Gf4fHsoLca7g==}
1483 | dependencies:
1484 | '@unocss/core': 0.58.3
1485 | dev: true
1486 |
1487 | /@unocss/transformer-directives@0.58.3:
1488 | resolution: {integrity: sha512-JMfeA8GJz106UqafqsCDp6BBEU7TozZHpLw414CKZjOW1CuMmaKEGrlr2UCjCYgM1vH7KEFKRMwTRUEV3NvywQ==}
1489 | dependencies:
1490 | '@unocss/core': 0.58.3
1491 | '@unocss/rule-utils': 0.58.3
1492 | css-tree: 2.3.1
1493 | dev: true
1494 |
1495 | /@unocss/transformer-variant-group@0.58.3:
1496 | resolution: {integrity: sha512-/8CyzLwzpJC5cdiA/Wd5/Pg+HEIK+xxJJ3/VXoo93OPNCCbA9/h6DPwDh1ogKk15c6b5H75Ow6zKq1rYQAz2EA==}
1497 | dependencies:
1498 | '@unocss/core': 0.58.3
1499 | dev: true
1500 |
1501 | /@unocss/vite@0.58.3(vite@5.0.11):
1502 | resolution: {integrity: sha512-gmB2//z7lDEK7Bw5HbHTSQ3abOM0iveAY/W3L3FFXpvduoxMQyuI5dDk0hOCtzhAWeJoynnVN4MBGVmXM4Y/Mg==}
1503 | peerDependencies:
1504 | vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
1505 | dependencies:
1506 | '@ampproject/remapping': 2.2.1
1507 | '@rollup/pluginutils': 5.1.0
1508 | '@unocss/config': 0.58.3
1509 | '@unocss/core': 0.58.3
1510 | '@unocss/inspector': 0.58.3
1511 | '@unocss/scope': 0.58.3
1512 | '@unocss/transformer-directives': 0.58.3
1513 | chokidar: 3.5.3
1514 | fast-glob: 3.3.2
1515 | magic-string: 0.30.5
1516 | vite: 5.0.11
1517 | transitivePeerDependencies:
1518 | - rollup
1519 | dev: true
1520 |
1521 | /@vitejs/plugin-react@4.2.1(vite@5.0.11):
1522 | resolution: {integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==}
1523 | engines: {node: ^14.18.0 || >=16.0.0}
1524 | peerDependencies:
1525 | vite: ^4.2.0 || ^5.0.0
1526 | dependencies:
1527 | '@babel/core': 7.23.7
1528 | '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.7)
1529 | '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.7)
1530 | '@types/babel__core': 7.20.5
1531 | react-refresh: 0.14.0
1532 | vite: 5.0.11
1533 | transitivePeerDependencies:
1534 | - supports-color
1535 | dev: true
1536 |
1537 | /acorn-jsx@5.3.2(acorn@8.11.3):
1538 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
1539 | peerDependencies:
1540 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
1541 | dependencies:
1542 | acorn: 8.11.3
1543 | dev: true
1544 |
1545 | /acorn@8.11.3:
1546 | resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
1547 | engines: {node: '>=0.4.0'}
1548 | hasBin: true
1549 | dev: true
1550 |
1551 | /ajv@6.12.6:
1552 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
1553 | dependencies:
1554 | fast-deep-equal: 3.1.3
1555 | fast-json-stable-stringify: 2.1.0
1556 | json-schema-traverse: 0.4.1
1557 | uri-js: 4.4.1
1558 | dev: true
1559 |
1560 | /ansi-regex@5.0.1:
1561 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
1562 | engines: {node: '>=8'}
1563 | dev: true
1564 |
1565 | /ansi-styles@3.2.1:
1566 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
1567 | engines: {node: '>=4'}
1568 | dependencies:
1569 | color-convert: 1.9.3
1570 | dev: true
1571 |
1572 | /ansi-styles@4.3.0:
1573 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
1574 | engines: {node: '>=8'}
1575 | dependencies:
1576 | color-convert: 2.0.1
1577 | dev: true
1578 |
1579 | /anymatch@3.1.3:
1580 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
1581 | engines: {node: '>= 8'}
1582 | dependencies:
1583 | normalize-path: 3.0.0
1584 | picomatch: 2.3.1
1585 | dev: true
1586 |
1587 | /argparse@2.0.1:
1588 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
1589 | dev: true
1590 |
1591 | /aria-hidden@1.2.3:
1592 | resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==}
1593 | engines: {node: '>=10'}
1594 | dependencies:
1595 | tslib: 2.6.2
1596 | dev: false
1597 |
1598 | /array-union@2.1.0:
1599 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
1600 | engines: {node: '>=8'}
1601 | dev: true
1602 |
1603 | /balanced-match@1.0.2:
1604 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
1605 | dev: true
1606 |
1607 | /binary-extensions@2.2.0:
1608 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
1609 | engines: {node: '>=8'}
1610 | dev: true
1611 |
1612 | /brace-expansion@1.1.11:
1613 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
1614 | dependencies:
1615 | balanced-match: 1.0.2
1616 | concat-map: 0.0.1
1617 | dev: true
1618 |
1619 | /brace-expansion@2.0.1:
1620 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
1621 | dependencies:
1622 | balanced-match: 1.0.2
1623 | dev: true
1624 |
1625 | /braces@3.0.2:
1626 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
1627 | engines: {node: '>=8'}
1628 | dependencies:
1629 | fill-range: 7.0.1
1630 | dev: true
1631 |
1632 | /browserslist@4.22.2:
1633 | resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==}
1634 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
1635 | hasBin: true
1636 | dependencies:
1637 | caniuse-lite: 1.0.30001577
1638 | electron-to-chromium: 1.4.632
1639 | node-releases: 2.0.14
1640 | update-browserslist-db: 1.0.13(browserslist@4.22.2)
1641 | dev: true
1642 |
1643 | /cac@6.7.14:
1644 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
1645 | engines: {node: '>=8'}
1646 | dev: true
1647 |
1648 | /callsites@3.1.0:
1649 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
1650 | engines: {node: '>=6'}
1651 | dev: true
1652 |
1653 | /camelcase-css@2.0.1:
1654 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
1655 | engines: {node: '>= 6'}
1656 | dev: true
1657 |
1658 | /caniuse-lite@1.0.30001577:
1659 | resolution: {integrity: sha512-rs2ZygrG1PNXMfmncM0B5H1hndY5ZCC9b5TkFaVNfZ+AUlyqcMyVIQtc3fsezi0NUCk5XZfDf9WS6WxMxnfdrg==}
1660 | dev: true
1661 |
1662 | /chalk@2.4.2:
1663 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
1664 | engines: {node: '>=4'}
1665 | dependencies:
1666 | ansi-styles: 3.2.1
1667 | escape-string-regexp: 1.0.5
1668 | supports-color: 5.5.0
1669 | dev: true
1670 |
1671 | /chalk@4.1.2:
1672 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
1673 | engines: {node: '>=10'}
1674 | dependencies:
1675 | ansi-styles: 4.3.0
1676 | supports-color: 7.2.0
1677 | dev: true
1678 |
1679 | /chokidar@3.5.3:
1680 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
1681 | engines: {node: '>= 8.10.0'}
1682 | dependencies:
1683 | anymatch: 3.1.3
1684 | braces: 3.0.2
1685 | glob-parent: 5.1.2
1686 | is-binary-path: 2.1.0
1687 | is-glob: 4.0.3
1688 | normalize-path: 3.0.0
1689 | readdirp: 3.6.0
1690 | optionalDependencies:
1691 | fsevents: 2.3.3
1692 | dev: true
1693 |
1694 | /clsx@2.0.0:
1695 | resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
1696 | engines: {node: '>=6'}
1697 | dev: false
1698 |
1699 | /color-convert@1.9.3:
1700 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
1701 | dependencies:
1702 | color-name: 1.1.3
1703 | dev: true
1704 |
1705 | /color-convert@2.0.1:
1706 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
1707 | engines: {node: '>=7.0.0'}
1708 | dependencies:
1709 | color-name: 1.1.4
1710 | dev: true
1711 |
1712 | /color-name@1.1.3:
1713 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
1714 | dev: true
1715 |
1716 | /color-name@1.1.4:
1717 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
1718 | dev: true
1719 |
1720 | /colorette@2.0.20:
1721 | resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
1722 | dev: true
1723 |
1724 | /concat-map@0.0.1:
1725 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
1726 | dev: true
1727 |
1728 | /consola@3.2.3:
1729 | resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
1730 | engines: {node: ^14.18.0 || >=16.10.0}
1731 | dev: true
1732 |
1733 | /convert-source-map@2.0.0:
1734 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
1735 | dev: true
1736 |
1737 | /cross-spawn@7.0.3:
1738 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
1739 | engines: {node: '>= 8'}
1740 | dependencies:
1741 | path-key: 3.1.1
1742 | shebang-command: 2.0.0
1743 | which: 2.0.2
1744 | dev: true
1745 |
1746 | /css-tree@2.3.1:
1747 | resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
1748 | engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
1749 | dependencies:
1750 | mdn-data: 2.0.30
1751 | source-map-js: 1.0.2
1752 | dev: true
1753 |
1754 | /cssesc@3.0.0:
1755 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
1756 | engines: {node: '>=4'}
1757 | hasBin: true
1758 | dev: true
1759 |
1760 | /csstype@3.1.3:
1761 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
1762 |
1763 | /datafusion-wasm@0.2.0:
1764 | resolution: {integrity: sha512-4l3Y2D7kUoU2PoIVBuqlgGXuEkyvPL1WH079Bm9rVEzORsVUaFJT51g2l26LviXEn/cGT538aXo1+3qdLYOvIA==}
1765 | dev: false
1766 |
1767 | /debug@4.3.4:
1768 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
1769 | engines: {node: '>=6.0'}
1770 | peerDependencies:
1771 | supports-color: '*'
1772 | peerDependenciesMeta:
1773 | supports-color:
1774 | optional: true
1775 | dependencies:
1776 | ms: 2.1.2
1777 | dev: true
1778 |
1779 | /deep-is@0.1.4:
1780 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
1781 | dev: true
1782 |
1783 | /defu@6.1.4:
1784 | resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
1785 | dev: true
1786 |
1787 | /destr@2.0.2:
1788 | resolution: {integrity: sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==}
1789 | dev: true
1790 |
1791 | /detect-node-es@1.1.0:
1792 | resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
1793 | dev: false
1794 |
1795 | /dir-glob@3.0.1:
1796 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
1797 | engines: {node: '>=8'}
1798 | dependencies:
1799 | path-type: 4.0.0
1800 | dev: true
1801 |
1802 | /doctrine@3.0.0:
1803 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
1804 | engines: {node: '>=6.0.0'}
1805 | dependencies:
1806 | esutils: 2.0.3
1807 | dev: true
1808 |
1809 | /duplexer@0.1.2:
1810 | resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
1811 | dev: true
1812 |
1813 | /electron-to-chromium@1.4.632:
1814 | resolution: {integrity: sha512-JGmudTwg7yxMYvR/gWbalqqQiyu7WTFv2Xu3vw4cJHXPFxNgAk0oy8UHaer8nLF4lZJa+rNoj6GsrKIVJTV6Tw==}
1815 | dev: true
1816 |
1817 | /esbuild@0.19.11:
1818 | resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==}
1819 | engines: {node: '>=12'}
1820 | hasBin: true
1821 | requiresBuild: true
1822 | optionalDependencies:
1823 | '@esbuild/aix-ppc64': 0.19.11
1824 | '@esbuild/android-arm': 0.19.11
1825 | '@esbuild/android-arm64': 0.19.11
1826 | '@esbuild/android-x64': 0.19.11
1827 | '@esbuild/darwin-arm64': 0.19.11
1828 | '@esbuild/darwin-x64': 0.19.11
1829 | '@esbuild/freebsd-arm64': 0.19.11
1830 | '@esbuild/freebsd-x64': 0.19.11
1831 | '@esbuild/linux-arm': 0.19.11
1832 | '@esbuild/linux-arm64': 0.19.11
1833 | '@esbuild/linux-ia32': 0.19.11
1834 | '@esbuild/linux-loong64': 0.19.11
1835 | '@esbuild/linux-mips64el': 0.19.11
1836 | '@esbuild/linux-ppc64': 0.19.11
1837 | '@esbuild/linux-riscv64': 0.19.11
1838 | '@esbuild/linux-s390x': 0.19.11
1839 | '@esbuild/linux-x64': 0.19.11
1840 | '@esbuild/netbsd-x64': 0.19.11
1841 | '@esbuild/openbsd-x64': 0.19.11
1842 | '@esbuild/sunos-x64': 0.19.11
1843 | '@esbuild/win32-arm64': 0.19.11
1844 | '@esbuild/win32-ia32': 0.19.11
1845 | '@esbuild/win32-x64': 0.19.11
1846 | dev: true
1847 |
1848 | /escalade@3.1.1:
1849 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
1850 | engines: {node: '>=6'}
1851 | dev: true
1852 |
1853 | /escape-string-regexp@1.0.5:
1854 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
1855 | engines: {node: '>=0.8.0'}
1856 | dev: true
1857 |
1858 | /escape-string-regexp@4.0.0:
1859 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
1860 | engines: {node: '>=10'}
1861 | dev: true
1862 |
1863 | /eslint-plugin-react-hooks@4.6.0(eslint@8.56.0):
1864 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
1865 | engines: {node: '>=10'}
1866 | peerDependencies:
1867 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
1868 | dependencies:
1869 | eslint: 8.56.0
1870 | dev: true
1871 |
1872 | /eslint-plugin-react-refresh@0.4.5(eslint@8.56.0):
1873 | resolution: {integrity: sha512-D53FYKJa+fDmZMtriODxvhwrO+IOqrxoEo21gMA0sjHdU6dPVH4OhyFip9ypl8HOF5RV5KdTo+rBQLvnY2cO8w==}
1874 | peerDependencies:
1875 | eslint: '>=7'
1876 | dependencies:
1877 | eslint: 8.56.0
1878 | dev: true
1879 |
1880 | /eslint-scope@7.2.2:
1881 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
1882 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1883 | dependencies:
1884 | esrecurse: 4.3.0
1885 | estraverse: 5.3.0
1886 | dev: true
1887 |
1888 | /eslint-visitor-keys@3.4.3:
1889 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
1890 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1891 | dev: true
1892 |
1893 | /eslint@8.56.0:
1894 | resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==}
1895 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1896 | hasBin: true
1897 | dependencies:
1898 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
1899 | '@eslint-community/regexpp': 4.10.0
1900 | '@eslint/eslintrc': 2.1.4
1901 | '@eslint/js': 8.56.0
1902 | '@humanwhocodes/config-array': 0.11.14
1903 | '@humanwhocodes/module-importer': 1.0.1
1904 | '@nodelib/fs.walk': 1.2.8
1905 | '@ungap/structured-clone': 1.2.0
1906 | ajv: 6.12.6
1907 | chalk: 4.1.2
1908 | cross-spawn: 7.0.3
1909 | debug: 4.3.4
1910 | doctrine: 3.0.0
1911 | escape-string-regexp: 4.0.0
1912 | eslint-scope: 7.2.2
1913 | eslint-visitor-keys: 3.4.3
1914 | espree: 9.6.1
1915 | esquery: 1.5.0
1916 | esutils: 2.0.3
1917 | fast-deep-equal: 3.1.3
1918 | file-entry-cache: 6.0.1
1919 | find-up: 5.0.0
1920 | glob-parent: 6.0.2
1921 | globals: 13.24.0
1922 | graphemer: 1.4.0
1923 | ignore: 5.3.0
1924 | imurmurhash: 0.1.4
1925 | is-glob: 4.0.3
1926 | is-path-inside: 3.0.3
1927 | js-yaml: 4.1.0
1928 | json-stable-stringify-without-jsonify: 1.0.1
1929 | levn: 0.4.1
1930 | lodash.merge: 4.6.2
1931 | minimatch: 3.1.2
1932 | natural-compare: 1.4.0
1933 | optionator: 0.9.3
1934 | strip-ansi: 6.0.1
1935 | text-table: 0.2.0
1936 | transitivePeerDependencies:
1937 | - supports-color
1938 | dev: true
1939 |
1940 | /espree@9.6.1:
1941 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
1942 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1943 | dependencies:
1944 | acorn: 8.11.3
1945 | acorn-jsx: 5.3.2(acorn@8.11.3)
1946 | eslint-visitor-keys: 3.4.3
1947 | dev: true
1948 |
1949 | /esquery@1.5.0:
1950 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
1951 | engines: {node: '>=0.10'}
1952 | dependencies:
1953 | estraverse: 5.3.0
1954 | dev: true
1955 |
1956 | /esrecurse@4.3.0:
1957 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1958 | engines: {node: '>=4.0'}
1959 | dependencies:
1960 | estraverse: 5.3.0
1961 | dev: true
1962 |
1963 | /estraverse@5.3.0:
1964 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1965 | engines: {node: '>=4.0'}
1966 | dev: true
1967 |
1968 | /estree-walker@2.0.2:
1969 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
1970 | dev: true
1971 |
1972 | /esutils@2.0.3:
1973 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1974 | engines: {node: '>=0.10.0'}
1975 | dev: true
1976 |
1977 | /execa@5.1.1:
1978 | resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
1979 | engines: {node: '>=10'}
1980 | dependencies:
1981 | cross-spawn: 7.0.3
1982 | get-stream: 6.0.1
1983 | human-signals: 2.1.0
1984 | is-stream: 2.0.1
1985 | merge-stream: 2.0.0
1986 | npm-run-path: 4.0.1
1987 | onetime: 5.1.2
1988 | signal-exit: 3.0.7
1989 | strip-final-newline: 2.0.0
1990 | dev: true
1991 |
1992 | /fast-deep-equal@3.1.3:
1993 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1994 | dev: true
1995 |
1996 | /fast-glob@3.3.2:
1997 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
1998 | engines: {node: '>=8.6.0'}
1999 | dependencies:
2000 | '@nodelib/fs.stat': 2.0.5
2001 | '@nodelib/fs.walk': 1.2.8
2002 | glob-parent: 5.1.2
2003 | merge2: 1.4.1
2004 | micromatch: 4.0.5
2005 | dev: true
2006 |
2007 | /fast-json-stable-stringify@2.1.0:
2008 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
2009 | dev: true
2010 |
2011 | /fast-levenshtein@2.0.6:
2012 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
2013 | dev: true
2014 |
2015 | /fastq@1.16.0:
2016 | resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==}
2017 | dependencies:
2018 | reusify: 1.0.4
2019 | dev: true
2020 |
2021 | /file-entry-cache@6.0.1:
2022 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
2023 | engines: {node: ^10.12.0 || >=12.0.0}
2024 | dependencies:
2025 | flat-cache: 3.2.0
2026 | dev: true
2027 |
2028 | /fill-range@7.0.1:
2029 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
2030 | engines: {node: '>=8'}
2031 | dependencies:
2032 | to-regex-range: 5.0.1
2033 | dev: true
2034 |
2035 | /find-up@5.0.0:
2036 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
2037 | engines: {node: '>=10'}
2038 | dependencies:
2039 | locate-path: 6.0.0
2040 | path-exists: 4.0.0
2041 | dev: true
2042 |
2043 | /flat-cache@3.2.0:
2044 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
2045 | engines: {node: ^10.12.0 || >=12.0.0}
2046 | dependencies:
2047 | flatted: 3.2.9
2048 | keyv: 4.5.4
2049 | rimraf: 3.0.2
2050 | dev: true
2051 |
2052 | /flatted@3.2.9:
2053 | resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
2054 | dev: true
2055 |
2056 | /fs.realpath@1.0.0:
2057 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
2058 | dev: true
2059 |
2060 | /fsevents@2.3.3:
2061 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
2062 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
2063 | os: [darwin]
2064 | requiresBuild: true
2065 | dev: true
2066 | optional: true
2067 |
2068 | /gensync@1.0.0-beta.2:
2069 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
2070 | engines: {node: '>=6.9.0'}
2071 | dev: true
2072 |
2073 | /get-nonce@1.0.1:
2074 | resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
2075 | engines: {node: '>=6'}
2076 | dev: false
2077 |
2078 | /get-stream@6.0.1:
2079 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
2080 | engines: {node: '>=10'}
2081 | dev: true
2082 |
2083 | /glob-parent@5.1.2:
2084 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
2085 | engines: {node: '>= 6'}
2086 | dependencies:
2087 | is-glob: 4.0.3
2088 | dev: true
2089 |
2090 | /glob-parent@6.0.2:
2091 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
2092 | engines: {node: '>=10.13.0'}
2093 | dependencies:
2094 | is-glob: 4.0.3
2095 | dev: true
2096 |
2097 | /glob@7.2.3:
2098 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
2099 | dependencies:
2100 | fs.realpath: 1.0.0
2101 | inflight: 1.0.6
2102 | inherits: 2.0.4
2103 | minimatch: 3.1.2
2104 | once: 1.4.0
2105 | path-is-absolute: 1.0.1
2106 | dev: true
2107 |
2108 | /globals@11.12.0:
2109 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
2110 | engines: {node: '>=4'}
2111 | dev: true
2112 |
2113 | /globals@13.24.0:
2114 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
2115 | engines: {node: '>=8'}
2116 | dependencies:
2117 | type-fest: 0.20.2
2118 | dev: true
2119 |
2120 | /globby@11.1.0:
2121 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
2122 | engines: {node: '>=10'}
2123 | dependencies:
2124 | array-union: 2.1.0
2125 | dir-glob: 3.0.1
2126 | fast-glob: 3.3.2
2127 | ignore: 5.3.0
2128 | merge2: 1.4.1
2129 | slash: 3.0.0
2130 | dev: true
2131 |
2132 | /graphemer@1.4.0:
2133 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
2134 | dev: true
2135 |
2136 | /gzip-size@6.0.0:
2137 | resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
2138 | engines: {node: '>=10'}
2139 | dependencies:
2140 | duplexer: 0.1.2
2141 | dev: true
2142 |
2143 | /has-flag@3.0.0:
2144 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
2145 | engines: {node: '>=4'}
2146 | dev: true
2147 |
2148 | /has-flag@4.0.0:
2149 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
2150 | engines: {node: '>=8'}
2151 | dev: true
2152 |
2153 | /human-signals@2.1.0:
2154 | resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
2155 | engines: {node: '>=10.17.0'}
2156 | dev: true
2157 |
2158 | /ignore@5.3.0:
2159 | resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
2160 | engines: {node: '>= 4'}
2161 | dev: true
2162 |
2163 | /import-fresh@3.3.0:
2164 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
2165 | engines: {node: '>=6'}
2166 | dependencies:
2167 | parent-module: 1.0.1
2168 | resolve-from: 4.0.0
2169 | dev: true
2170 |
2171 | /imurmurhash@0.1.4:
2172 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
2173 | engines: {node: '>=0.8.19'}
2174 | dev: true
2175 |
2176 | /inflight@1.0.6:
2177 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
2178 | dependencies:
2179 | once: 1.4.0
2180 | wrappy: 1.0.2
2181 | dev: true
2182 |
2183 | /inherits@2.0.4:
2184 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
2185 | dev: true
2186 |
2187 | /invariant@2.2.4:
2188 | resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
2189 | dependencies:
2190 | loose-envify: 1.4.0
2191 | dev: false
2192 |
2193 | /is-binary-path@2.1.0:
2194 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
2195 | engines: {node: '>=8'}
2196 | dependencies:
2197 | binary-extensions: 2.2.0
2198 | dev: true
2199 |
2200 | /is-extglob@2.1.1:
2201 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
2202 | engines: {node: '>=0.10.0'}
2203 | dev: true
2204 |
2205 | /is-glob@4.0.3:
2206 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
2207 | engines: {node: '>=0.10.0'}
2208 | dependencies:
2209 | is-extglob: 2.1.1
2210 | dev: true
2211 |
2212 | /is-number@7.0.0:
2213 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
2214 | engines: {node: '>=0.12.0'}
2215 | dev: true
2216 |
2217 | /is-path-inside@3.0.3:
2218 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
2219 | engines: {node: '>=8'}
2220 | dev: true
2221 |
2222 | /is-stream@2.0.1:
2223 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
2224 | engines: {node: '>=8'}
2225 | dev: true
2226 |
2227 | /isexe@2.0.0:
2228 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
2229 | dev: true
2230 |
2231 | /jiti@1.21.0:
2232 | resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
2233 | hasBin: true
2234 | dev: true
2235 |
2236 | /jotai@2.6.2(@types/react@18.2.48)(react@18.2.0):
2237 | resolution: {integrity: sha512-kl4KguU1Fr+tFiLi3A3h9qPEzhvLTTDA10DO3QZAz6k7BEaQJ+qvSBwolzonnfNI4QzEovyQfUqVgnRxfnnQVQ==}
2238 | engines: {node: '>=12.20.0'}
2239 | peerDependencies:
2240 | '@types/react': '>=17.0.0'
2241 | react: '>=17.0.0'
2242 | peerDependenciesMeta:
2243 | '@types/react':
2244 | optional: true
2245 | react:
2246 | optional: true
2247 | dependencies:
2248 | '@types/react': 18.2.48
2249 | react: 18.2.0
2250 | dev: false
2251 |
2252 | /js-tokens@4.0.0:
2253 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
2254 |
2255 | /js-yaml@4.1.0:
2256 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
2257 | hasBin: true
2258 | dependencies:
2259 | argparse: 2.0.1
2260 | dev: true
2261 |
2262 | /jsesc@2.5.2:
2263 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
2264 | engines: {node: '>=4'}
2265 | hasBin: true
2266 | dev: true
2267 |
2268 | /json-buffer@3.0.1:
2269 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
2270 | dev: true
2271 |
2272 | /json-schema-traverse@0.4.1:
2273 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
2274 | dev: true
2275 |
2276 | /json-stable-stringify-without-jsonify@1.0.1:
2277 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
2278 | dev: true
2279 |
2280 | /json5@2.2.3:
2281 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
2282 | engines: {node: '>=6'}
2283 | hasBin: true
2284 | dev: true
2285 |
2286 | /jsonc-parser@3.2.0:
2287 | resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
2288 | dev: true
2289 |
2290 | /keyv@4.5.4:
2291 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
2292 | dependencies:
2293 | json-buffer: 3.0.1
2294 | dev: true
2295 |
2296 | /kolorist@1.8.0:
2297 | resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
2298 | dev: true
2299 |
2300 | /levn@0.4.1:
2301 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
2302 | engines: {node: '>= 0.8.0'}
2303 | dependencies:
2304 | prelude-ls: 1.2.1
2305 | type-check: 0.4.0
2306 | dev: true
2307 |
2308 | /local-pkg@0.4.3:
2309 | resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
2310 | engines: {node: '>=14'}
2311 | dev: true
2312 |
2313 | /locate-path@6.0.0:
2314 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
2315 | engines: {node: '>=10'}
2316 | dependencies:
2317 | p-locate: 5.0.0
2318 | dev: true
2319 |
2320 | /lodash.merge@4.6.2:
2321 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
2322 | dev: true
2323 |
2324 | /loose-envify@1.4.0:
2325 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
2326 | hasBin: true
2327 | dependencies:
2328 | js-tokens: 4.0.0
2329 | dev: false
2330 |
2331 | /lru-cache@5.1.1:
2332 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
2333 | dependencies:
2334 | yallist: 3.1.1
2335 | dev: true
2336 |
2337 | /lru-cache@6.0.0:
2338 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
2339 | engines: {node: '>=10'}
2340 | dependencies:
2341 | yallist: 4.0.0
2342 | dev: true
2343 |
2344 | /magic-string@0.30.5:
2345 | resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
2346 | engines: {node: '>=12'}
2347 | dependencies:
2348 | '@jridgewell/sourcemap-codec': 1.4.15
2349 | dev: true
2350 |
2351 | /mdn-data@2.0.30:
2352 | resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
2353 | dev: true
2354 |
2355 | /merge-stream@2.0.0:
2356 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
2357 | dev: true
2358 |
2359 | /merge2@1.4.1:
2360 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
2361 | engines: {node: '>= 8'}
2362 | dev: true
2363 |
2364 | /micromatch@4.0.5:
2365 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
2366 | engines: {node: '>=8.6'}
2367 | dependencies:
2368 | braces: 3.0.2
2369 | picomatch: 2.3.1
2370 | dev: true
2371 |
2372 | /mimic-fn@2.1.0:
2373 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
2374 | engines: {node: '>=6'}
2375 | dev: true
2376 |
2377 | /minimatch@3.1.2:
2378 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
2379 | dependencies:
2380 | brace-expansion: 1.1.11
2381 | dev: true
2382 |
2383 | /minimatch@9.0.3:
2384 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
2385 | engines: {node: '>=16 || 14 >=14.17'}
2386 | dependencies:
2387 | brace-expansion: 2.0.1
2388 | dev: true
2389 |
2390 | /mlly@1.5.0:
2391 | resolution: {integrity: sha512-NPVQvAY1xr1QoVeG0cy8yUYC7FQcOx6evl/RjT1wL5FvzPnzOysoqB/jmx/DhssT2dYa8nxECLAaFI/+gVLhDQ==}
2392 | dependencies:
2393 | acorn: 8.11.3
2394 | pathe: 1.1.2
2395 | pkg-types: 1.0.3
2396 | ufo: 1.3.2
2397 | dev: true
2398 |
2399 | /mrmime@2.0.0:
2400 | resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
2401 | engines: {node: '>=10'}
2402 | dev: true
2403 |
2404 | /ms@2.1.2:
2405 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
2406 | dev: true
2407 |
2408 | /nanoid@3.3.7:
2409 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
2410 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
2411 | hasBin: true
2412 | dev: true
2413 |
2414 | /natural-compare@1.4.0:
2415 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
2416 | dev: true
2417 |
2418 | /node-fetch-native@1.6.1:
2419 | resolution: {integrity: sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==}
2420 | dev: true
2421 |
2422 | /node-releases@2.0.14:
2423 | resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
2424 | dev: true
2425 |
2426 | /normalize-path@3.0.0:
2427 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
2428 | engines: {node: '>=0.10.0'}
2429 | dev: true
2430 |
2431 | /npm-run-path@4.0.1:
2432 | resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
2433 | engines: {node: '>=8'}
2434 | dependencies:
2435 | path-key: 3.1.1
2436 | dev: true
2437 |
2438 | /object-assign@4.1.1:
2439 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
2440 | engines: {node: '>=0.10.0'}
2441 | dev: false
2442 |
2443 | /ofetch@1.3.3:
2444 | resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==}
2445 | dependencies:
2446 | destr: 2.0.2
2447 | node-fetch-native: 1.6.1
2448 | ufo: 1.3.2
2449 | dev: true
2450 |
2451 | /once@1.4.0:
2452 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
2453 | dependencies:
2454 | wrappy: 1.0.2
2455 | dev: true
2456 |
2457 | /onetime@5.1.2:
2458 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
2459 | engines: {node: '>=6'}
2460 | dependencies:
2461 | mimic-fn: 2.1.0
2462 | dev: true
2463 |
2464 | /optionator@0.9.3:
2465 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
2466 | engines: {node: '>= 0.8.0'}
2467 | dependencies:
2468 | '@aashutoshrathi/word-wrap': 1.2.6
2469 | deep-is: 0.1.4
2470 | fast-levenshtein: 2.0.6
2471 | levn: 0.4.1
2472 | prelude-ls: 1.2.1
2473 | type-check: 0.4.0
2474 | dev: true
2475 |
2476 | /p-limit@3.1.0:
2477 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
2478 | engines: {node: '>=10'}
2479 | dependencies:
2480 | yocto-queue: 0.1.0
2481 | dev: true
2482 |
2483 | /p-locate@5.0.0:
2484 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
2485 | engines: {node: '>=10'}
2486 | dependencies:
2487 | p-limit: 3.1.0
2488 | dev: true
2489 |
2490 | /parent-module@1.0.1:
2491 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
2492 | engines: {node: '>=6'}
2493 | dependencies:
2494 | callsites: 3.1.0
2495 | dev: true
2496 |
2497 | /path-exists@4.0.0:
2498 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
2499 | engines: {node: '>=8'}
2500 | dev: true
2501 |
2502 | /path-is-absolute@1.0.1:
2503 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
2504 | engines: {node: '>=0.10.0'}
2505 | dev: true
2506 |
2507 | /path-key@3.1.1:
2508 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
2509 | engines: {node: '>=8'}
2510 | dev: true
2511 |
2512 | /path-type@4.0.0:
2513 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
2514 | engines: {node: '>=8'}
2515 | dev: true
2516 |
2517 | /pathe@1.1.2:
2518 | resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
2519 | dev: true
2520 |
2521 | /perfect-debounce@1.0.0:
2522 | resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
2523 | dev: true
2524 |
2525 | /picocolors@1.0.0:
2526 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
2527 | dev: true
2528 |
2529 | /picomatch@2.3.1:
2530 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
2531 | engines: {node: '>=8.6'}
2532 | dev: true
2533 |
2534 | /pkg-types@1.0.3:
2535 | resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
2536 | dependencies:
2537 | jsonc-parser: 3.2.0
2538 | mlly: 1.5.0
2539 | pathe: 1.1.2
2540 | dev: true
2541 |
2542 | /postcss-js@4.0.1(postcss@8.4.33):
2543 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
2544 | engines: {node: ^12 || ^14 || >= 16}
2545 | peerDependencies:
2546 | postcss: ^8.4.21
2547 | dependencies:
2548 | camelcase-css: 2.0.1
2549 | postcss: 8.4.33
2550 | dev: true
2551 |
2552 | /postcss-mixins@9.0.4(postcss@8.4.33):
2553 | resolution: {integrity: sha512-XVq5jwQJDRu5M1XGkdpgASqLk37OqkH4JCFDXl/Dn7janOJjCTEKL+36cnRVy7bMtoBzALfO7bV7nTIsFnUWLA==}
2554 | engines: {node: '>=14.0'}
2555 | peerDependencies:
2556 | postcss: ^8.2.14
2557 | dependencies:
2558 | fast-glob: 3.3.2
2559 | postcss: 8.4.33
2560 | postcss-js: 4.0.1(postcss@8.4.33)
2561 | postcss-simple-vars: 7.0.1(postcss@8.4.33)
2562 | sugarss: 4.0.1(postcss@8.4.33)
2563 | dev: true
2564 |
2565 | /postcss-nested@6.0.1(postcss@8.4.33):
2566 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
2567 | engines: {node: '>=12.0'}
2568 | peerDependencies:
2569 | postcss: ^8.2.14
2570 | dependencies:
2571 | postcss: 8.4.33
2572 | postcss-selector-parser: 6.0.15
2573 | dev: true
2574 |
2575 | /postcss-preset-mantine@1.12.3(postcss@8.4.33):
2576 | resolution: {integrity: sha512-cCwowf20mIyRXnV1cSVoMGfhYgy8ZqFJWsEJthdMZ3n7LijjucE9l/HO47gv5gAtr9nY1MkaEkpWS7ulhSTbSg==}
2577 | peerDependencies:
2578 | postcss: '>=8.0.0'
2579 | dependencies:
2580 | postcss: 8.4.33
2581 | postcss-mixins: 9.0.4(postcss@8.4.33)
2582 | postcss-nested: 6.0.1(postcss@8.4.33)
2583 | dev: true
2584 |
2585 | /postcss-selector-parser@6.0.15:
2586 | resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==}
2587 | engines: {node: '>=4'}
2588 | dependencies:
2589 | cssesc: 3.0.0
2590 | util-deprecate: 1.0.2
2591 | dev: true
2592 |
2593 | /postcss-simple-vars@7.0.1(postcss@8.4.33):
2594 | resolution: {integrity: sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==}
2595 | engines: {node: '>=14.0'}
2596 | peerDependencies:
2597 | postcss: ^8.2.1
2598 | dependencies:
2599 | postcss: 8.4.33
2600 | dev: true
2601 |
2602 | /postcss@8.4.33:
2603 | resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==}
2604 | engines: {node: ^10 || ^12 || >=14}
2605 | dependencies:
2606 | nanoid: 3.3.7
2607 | picocolors: 1.0.0
2608 | source-map-js: 1.0.2
2609 | dev: true
2610 |
2611 | /prelude-ls@1.2.1:
2612 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
2613 | engines: {node: '>= 0.8.0'}
2614 | dev: true
2615 |
2616 | /prop-types@15.8.1:
2617 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
2618 | dependencies:
2619 | loose-envify: 1.4.0
2620 | object-assign: 4.1.1
2621 | react-is: 16.13.1
2622 | dev: false
2623 |
2624 | /punycode@2.3.1:
2625 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
2626 | engines: {node: '>=6'}
2627 | dev: true
2628 |
2629 | /queue-microtask@1.2.3:
2630 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
2631 | dev: true
2632 |
2633 | /react-dom@18.2.0(react@18.2.0):
2634 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
2635 | peerDependencies:
2636 | react: ^18.2.0
2637 | dependencies:
2638 | loose-envify: 1.4.0
2639 | react: 18.2.0
2640 | scheduler: 0.23.0
2641 | dev: false
2642 |
2643 | /react-is@16.13.1:
2644 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
2645 | dev: false
2646 |
2647 | /react-number-format@5.3.1(react-dom@18.2.0)(react@18.2.0):
2648 | resolution: {integrity: sha512-qpYcQLauIeEhCZUZY9jXZnnroOtdy3jYaS1zQ3M1Sr6r/KMOBEIGNIb7eKT19g2N1wbYgFgvDzs19hw5TrB8XQ==}
2649 | peerDependencies:
2650 | react: ^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
2651 | react-dom: ^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
2652 | dependencies:
2653 | prop-types: 15.8.1
2654 | react: 18.2.0
2655 | react-dom: 18.2.0(react@18.2.0)
2656 | dev: false
2657 |
2658 | /react-refresh@0.14.0:
2659 | resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==}
2660 | engines: {node: '>=0.10.0'}
2661 | dev: true
2662 |
2663 | /react-remove-scroll-bar@2.3.4(@types/react@18.2.48)(react@18.2.0):
2664 | resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
2665 | engines: {node: '>=10'}
2666 | peerDependencies:
2667 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
2668 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
2669 | peerDependenciesMeta:
2670 | '@types/react':
2671 | optional: true
2672 | dependencies:
2673 | '@types/react': 18.2.48
2674 | react: 18.2.0
2675 | react-style-singleton: 2.2.1(@types/react@18.2.48)(react@18.2.0)
2676 | tslib: 2.6.2
2677 | dev: false
2678 |
2679 | /react-remove-scroll@2.5.7(@types/react@18.2.48)(react@18.2.0):
2680 | resolution: {integrity: sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==}
2681 | engines: {node: '>=10'}
2682 | peerDependencies:
2683 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
2684 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
2685 | peerDependenciesMeta:
2686 | '@types/react':
2687 | optional: true
2688 | dependencies:
2689 | '@types/react': 18.2.48
2690 | react: 18.2.0
2691 | react-remove-scroll-bar: 2.3.4(@types/react@18.2.48)(react@18.2.0)
2692 | react-style-singleton: 2.2.1(@types/react@18.2.48)(react@18.2.0)
2693 | tslib: 2.6.2
2694 | use-callback-ref: 1.3.1(@types/react@18.2.48)(react@18.2.0)
2695 | use-sidecar: 1.1.2(@types/react@18.2.48)(react@18.2.0)
2696 | dev: false
2697 |
2698 | /react-style-singleton@2.2.1(@types/react@18.2.48)(react@18.2.0):
2699 | resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
2700 | engines: {node: '>=10'}
2701 | peerDependencies:
2702 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
2703 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
2704 | peerDependenciesMeta:
2705 | '@types/react':
2706 | optional: true
2707 | dependencies:
2708 | '@types/react': 18.2.48
2709 | get-nonce: 1.0.1
2710 | invariant: 2.2.4
2711 | react: 18.2.0
2712 | tslib: 2.6.2
2713 | dev: false
2714 |
2715 | /react-textarea-autosize@8.5.3(@types/react@18.2.48)(react@18.2.0):
2716 | resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==}
2717 | engines: {node: '>=10'}
2718 | peerDependencies:
2719 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
2720 | dependencies:
2721 | '@babel/runtime': 7.23.8
2722 | react: 18.2.0
2723 | use-composed-ref: 1.3.0(react@18.2.0)
2724 | use-latest: 1.2.1(@types/react@18.2.48)(react@18.2.0)
2725 | transitivePeerDependencies:
2726 | - '@types/react'
2727 | dev: false
2728 |
2729 | /react@18.2.0:
2730 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
2731 | engines: {node: '>=0.10.0'}
2732 | dependencies:
2733 | loose-envify: 1.4.0
2734 | dev: false
2735 |
2736 | /readdirp@3.6.0:
2737 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
2738 | engines: {node: '>=8.10.0'}
2739 | dependencies:
2740 | picomatch: 2.3.1
2741 | dev: true
2742 |
2743 | /regenerator-runtime@0.14.1:
2744 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
2745 | dev: false
2746 |
2747 | /resolve-from@4.0.0:
2748 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
2749 | engines: {node: '>=4'}
2750 | dev: true
2751 |
2752 | /reusify@1.0.4:
2753 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
2754 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
2755 | dev: true
2756 |
2757 | /rimraf@3.0.2:
2758 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
2759 | hasBin: true
2760 | dependencies:
2761 | glob: 7.2.3
2762 | dev: true
2763 |
2764 | /rollup@4.9.5:
2765 | resolution: {integrity: sha512-E4vQW0H/mbNMw2yLSqJyjtkHY9dslf/p0zuT1xehNRqUTBOFMqEjguDvqhXr7N7r/4ttb2jr4T41d3dncmIgbQ==}
2766 | engines: {node: '>=18.0.0', npm: '>=8.0.0'}
2767 | hasBin: true
2768 | dependencies:
2769 | '@types/estree': 1.0.5
2770 | optionalDependencies:
2771 | '@rollup/rollup-android-arm-eabi': 4.9.5
2772 | '@rollup/rollup-android-arm64': 4.9.5
2773 | '@rollup/rollup-darwin-arm64': 4.9.5
2774 | '@rollup/rollup-darwin-x64': 4.9.5
2775 | '@rollup/rollup-linux-arm-gnueabihf': 4.9.5
2776 | '@rollup/rollup-linux-arm64-gnu': 4.9.5
2777 | '@rollup/rollup-linux-arm64-musl': 4.9.5
2778 | '@rollup/rollup-linux-riscv64-gnu': 4.9.5
2779 | '@rollup/rollup-linux-x64-gnu': 4.9.5
2780 | '@rollup/rollup-linux-x64-musl': 4.9.5
2781 | '@rollup/rollup-win32-arm64-msvc': 4.9.5
2782 | '@rollup/rollup-win32-ia32-msvc': 4.9.5
2783 | '@rollup/rollup-win32-x64-msvc': 4.9.5
2784 | fsevents: 2.3.3
2785 | dev: true
2786 |
2787 | /run-parallel@1.2.0:
2788 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
2789 | dependencies:
2790 | queue-microtask: 1.2.3
2791 | dev: true
2792 |
2793 | /scheduler@0.23.0:
2794 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
2795 | dependencies:
2796 | loose-envify: 1.4.0
2797 | dev: false
2798 |
2799 | /semver@6.3.1:
2800 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
2801 | hasBin: true
2802 | dev: true
2803 |
2804 | /semver@7.5.4:
2805 | resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
2806 | engines: {node: '>=10'}
2807 | hasBin: true
2808 | dependencies:
2809 | lru-cache: 6.0.0
2810 | dev: true
2811 |
2812 | /shebang-command@2.0.0:
2813 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
2814 | engines: {node: '>=8'}
2815 | dependencies:
2816 | shebang-regex: 3.0.0
2817 | dev: true
2818 |
2819 | /shebang-regex@3.0.0:
2820 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
2821 | engines: {node: '>=8'}
2822 | dev: true
2823 |
2824 | /signal-exit@3.0.7:
2825 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
2826 | dev: true
2827 |
2828 | /sirv@2.0.4:
2829 | resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
2830 | engines: {node: '>= 10'}
2831 | dependencies:
2832 | '@polka/url': 1.0.0-next.24
2833 | mrmime: 2.0.0
2834 | totalist: 3.0.1
2835 | dev: true
2836 |
2837 | /slash@3.0.0:
2838 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
2839 | engines: {node: '>=8'}
2840 | dev: true
2841 |
2842 | /source-map-js@1.0.2:
2843 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
2844 | engines: {node: '>=0.10.0'}
2845 | dev: true
2846 |
2847 | /strip-ansi@6.0.1:
2848 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
2849 | engines: {node: '>=8'}
2850 | dependencies:
2851 | ansi-regex: 5.0.1
2852 | dev: true
2853 |
2854 | /strip-final-newline@2.0.0:
2855 | resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
2856 | engines: {node: '>=6'}
2857 | dev: true
2858 |
2859 | /strip-json-comments@3.1.1:
2860 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
2861 | engines: {node: '>=8'}
2862 | dev: true
2863 |
2864 | /sugarss@4.0.1(postcss@8.4.33):
2865 | resolution: {integrity: sha512-WCjS5NfuVJjkQzK10s8WOBY+hhDxxNt/N6ZaGwxFZ+wN3/lKKFSaaKUNecULcTTvE4urLcKaZFQD8vO0mOZujw==}
2866 | engines: {node: '>=12.0'}
2867 | peerDependencies:
2868 | postcss: ^8.3.3
2869 | dependencies:
2870 | postcss: 8.4.33
2871 | dev: true
2872 |
2873 | /supports-color@5.5.0:
2874 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
2875 | engines: {node: '>=4'}
2876 | dependencies:
2877 | has-flag: 3.0.0
2878 | dev: true
2879 |
2880 | /supports-color@7.2.0:
2881 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
2882 | engines: {node: '>=8'}
2883 | dependencies:
2884 | has-flag: 4.0.0
2885 | dev: true
2886 |
2887 | /tabbable@6.2.0:
2888 | resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
2889 | dev: false
2890 |
2891 | /text-table@0.2.0:
2892 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
2893 | dev: true
2894 |
2895 | /to-fast-properties@2.0.0:
2896 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
2897 | engines: {node: '>=4'}
2898 | dev: true
2899 |
2900 | /to-regex-range@5.0.1:
2901 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
2902 | engines: {node: '>=8.0'}
2903 | dependencies:
2904 | is-number: 7.0.0
2905 | dev: true
2906 |
2907 | /totalist@3.0.1:
2908 | resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
2909 | engines: {node: '>=6'}
2910 | dev: true
2911 |
2912 | /ts-api-utils@1.0.3(typescript@5.3.3):
2913 | resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==}
2914 | engines: {node: '>=16.13.0'}
2915 | peerDependencies:
2916 | typescript: '>=4.2.0'
2917 | dependencies:
2918 | typescript: 5.3.3
2919 | dev: true
2920 |
2921 | /tslib@2.6.2:
2922 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
2923 | dev: false
2924 |
2925 | /type-check@0.4.0:
2926 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
2927 | engines: {node: '>= 0.8.0'}
2928 | dependencies:
2929 | prelude-ls: 1.2.1
2930 | dev: true
2931 |
2932 | /type-fest@0.20.2:
2933 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
2934 | engines: {node: '>=10'}
2935 | dev: true
2936 |
2937 | /type-fest@3.13.1:
2938 | resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==}
2939 | engines: {node: '>=14.16'}
2940 | dev: false
2941 |
2942 | /typescript@5.3.3:
2943 | resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==}
2944 | engines: {node: '>=14.17'}
2945 | hasBin: true
2946 | dev: true
2947 |
2948 | /ufo@1.3.2:
2949 | resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==}
2950 | dev: true
2951 |
2952 | /unconfig@0.3.11:
2953 | resolution: {integrity: sha512-bV/nqePAKv71v3HdVUn6UefbsDKQWRX+bJIkiSm0+twIds6WiD2bJLWWT3i214+J/B4edufZpG2w7Y63Vbwxow==}
2954 | dependencies:
2955 | '@antfu/utils': 0.7.7
2956 | defu: 6.1.4
2957 | jiti: 1.21.0
2958 | mlly: 1.5.0
2959 | dev: true
2960 |
2961 | /unocss@0.58.3(postcss@8.4.33)(vite@5.0.11):
2962 | resolution: {integrity: sha512-2rnvghfiIDRQ2cOrmN4P7J7xV2p3yBK+bPAt1aoUxCXcszkLczAnQzh9c7IZ+p70kSVstK45cJTYV6TMzOLF7Q==}
2963 | engines: {node: '>=14'}
2964 | peerDependencies:
2965 | '@unocss/webpack': 0.58.3
2966 | vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
2967 | peerDependenciesMeta:
2968 | '@unocss/webpack':
2969 | optional: true
2970 | vite:
2971 | optional: true
2972 | dependencies:
2973 | '@unocss/astro': 0.58.3(vite@5.0.11)
2974 | '@unocss/cli': 0.58.3
2975 | '@unocss/core': 0.58.3
2976 | '@unocss/extractor-arbitrary-variants': 0.58.3
2977 | '@unocss/postcss': 0.58.3(postcss@8.4.33)
2978 | '@unocss/preset-attributify': 0.58.3
2979 | '@unocss/preset-icons': 0.58.3
2980 | '@unocss/preset-mini': 0.58.3
2981 | '@unocss/preset-tagify': 0.58.3
2982 | '@unocss/preset-typography': 0.58.3
2983 | '@unocss/preset-uno': 0.58.3
2984 | '@unocss/preset-web-fonts': 0.58.3
2985 | '@unocss/preset-wind': 0.58.3
2986 | '@unocss/reset': 0.58.3
2987 | '@unocss/transformer-attributify-jsx': 0.58.3
2988 | '@unocss/transformer-attributify-jsx-babel': 0.58.3
2989 | '@unocss/transformer-compile-class': 0.58.3
2990 | '@unocss/transformer-directives': 0.58.3
2991 | '@unocss/transformer-variant-group': 0.58.3
2992 | '@unocss/vite': 0.58.3(vite@5.0.11)
2993 | vite: 5.0.11
2994 | transitivePeerDependencies:
2995 | - postcss
2996 | - rollup
2997 | - supports-color
2998 | dev: true
2999 |
3000 | /update-browserslist-db@1.0.13(browserslist@4.22.2):
3001 | resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
3002 | hasBin: true
3003 | peerDependencies:
3004 | browserslist: '>= 4.21.0'
3005 | dependencies:
3006 | browserslist: 4.22.2
3007 | escalade: 3.1.1
3008 | picocolors: 1.0.0
3009 | dev: true
3010 |
3011 | /uri-js@4.4.1:
3012 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
3013 | dependencies:
3014 | punycode: 2.3.1
3015 | dev: true
3016 |
3017 | /use-callback-ref@1.3.1(@types/react@18.2.48)(react@18.2.0):
3018 | resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==}
3019 | engines: {node: '>=10'}
3020 | peerDependencies:
3021 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
3022 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
3023 | peerDependenciesMeta:
3024 | '@types/react':
3025 | optional: true
3026 | dependencies:
3027 | '@types/react': 18.2.48
3028 | react: 18.2.0
3029 | tslib: 2.6.2
3030 | dev: false
3031 |
3032 | /use-composed-ref@1.3.0(react@18.2.0):
3033 | resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
3034 | peerDependencies:
3035 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
3036 | dependencies:
3037 | react: 18.2.0
3038 | dev: false
3039 |
3040 | /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.48)(react@18.2.0):
3041 | resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
3042 | peerDependencies:
3043 | '@types/react': '*'
3044 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
3045 | peerDependenciesMeta:
3046 | '@types/react':
3047 | optional: true
3048 | dependencies:
3049 | '@types/react': 18.2.48
3050 | react: 18.2.0
3051 | dev: false
3052 |
3053 | /use-latest@1.2.1(@types/react@18.2.48)(react@18.2.0):
3054 | resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
3055 | peerDependencies:
3056 | '@types/react': '*'
3057 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
3058 | peerDependenciesMeta:
3059 | '@types/react':
3060 | optional: true
3061 | dependencies:
3062 | '@types/react': 18.2.48
3063 | react: 18.2.0
3064 | use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.48)(react@18.2.0)
3065 | dev: false
3066 |
3067 | /use-sidecar@1.1.2(@types/react@18.2.48)(react@18.2.0):
3068 | resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
3069 | engines: {node: '>=10'}
3070 | peerDependencies:
3071 | '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
3072 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
3073 | peerDependenciesMeta:
3074 | '@types/react':
3075 | optional: true
3076 | dependencies:
3077 | '@types/react': 18.2.48
3078 | detect-node-es: 1.1.0
3079 | react: 18.2.0
3080 | tslib: 2.6.2
3081 | dev: false
3082 |
3083 | /util-deprecate@1.0.2:
3084 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
3085 | dev: true
3086 |
3087 | /uuid@9.0.1:
3088 | resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
3089 | hasBin: true
3090 | dev: true
3091 |
3092 | /vite-plugin-top-level-await@1.4.1(vite@5.0.11):
3093 | resolution: {integrity: sha512-hogbZ6yT7+AqBaV6lK9JRNvJDn4/IJvHLu6ET06arNfo0t2IsyCaon7el9Xa8OumH+ESuq//SDf8xscZFE0rWw==}
3094 | peerDependencies:
3095 | vite: '>=2.8'
3096 | dependencies:
3097 | '@rollup/plugin-virtual': 3.0.2
3098 | '@swc/core': 1.3.103
3099 | uuid: 9.0.1
3100 | vite: 5.0.11
3101 | transitivePeerDependencies:
3102 | - '@swc/helpers'
3103 | - rollup
3104 | dev: true
3105 |
3106 | /vite-plugin-wasm@3.3.0(vite@5.0.11):
3107 | resolution: {integrity: sha512-tVhz6w+W9MVsOCHzxo6SSMSswCeIw4HTrXEi6qL3IRzATl83jl09JVO1djBqPSwfjgnpVHNLYcaMbaDX5WB/pg==}
3108 | peerDependencies:
3109 | vite: ^2 || ^3 || ^4 || ^5
3110 | dependencies:
3111 | vite: 5.0.11
3112 | dev: true
3113 |
3114 | /vite@5.0.11:
3115 | resolution: {integrity: sha512-XBMnDjZcNAw/G1gEiskiM1v6yzM4GE5aMGvhWTlHAYYhxb7S3/V1s3m2LDHa8Vh6yIWYYB0iJwsEaS523c4oYA==}
3116 | engines: {node: ^18.0.0 || >=20.0.0}
3117 | hasBin: true
3118 | peerDependencies:
3119 | '@types/node': ^18.0.0 || >=20.0.0
3120 | less: '*'
3121 | lightningcss: ^1.21.0
3122 | sass: '*'
3123 | stylus: '*'
3124 | sugarss: '*'
3125 | terser: ^5.4.0
3126 | peerDependenciesMeta:
3127 | '@types/node':
3128 | optional: true
3129 | less:
3130 | optional: true
3131 | lightningcss:
3132 | optional: true
3133 | sass:
3134 | optional: true
3135 | stylus:
3136 | optional: true
3137 | sugarss:
3138 | optional: true
3139 | terser:
3140 | optional: true
3141 | dependencies:
3142 | esbuild: 0.19.11
3143 | postcss: 8.4.33
3144 | rollup: 4.9.5
3145 | optionalDependencies:
3146 | fsevents: 2.3.3
3147 | dev: true
3148 |
3149 | /which@2.0.2:
3150 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
3151 | engines: {node: '>= 8'}
3152 | hasBin: true
3153 | dependencies:
3154 | isexe: 2.0.0
3155 | dev: true
3156 |
3157 | /wrappy@1.0.2:
3158 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
3159 | dev: true
3160 |
3161 | /yallist@3.1.1:
3162 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
3163 | dev: true
3164 |
3165 | /yallist@4.0.0:
3166 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
3167 | dev: true
3168 |
3169 | /yocto-queue@0.1.0:
3170 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
3171 | engines: {node: '>=10'}
3172 | dev: true
3173 |
--------------------------------------------------------------------------------
/postcss.config.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | 'postcss-preset-mantine': {},
4 | 'postcss-simple-vars': {
5 | variables: {
6 | 'mantine-breakpoint-xs': '36em',
7 | 'mantine-breakpoint-sm': '48em',
8 | 'mantine-breakpoint-md': '62em',
9 | 'mantine-breakpoint-lg': '75em',
10 | 'mantine-breakpoint-xl': '88em',
11 | },
12 | },
13 | },
14 | };
--------------------------------------------------------------------------------
/src/App.css:
--------------------------------------------------------------------------------
1 | main {
2 | display: grid;
3 | grid-template-areas:
4 | 'sidebar history history'
5 | 'sidebar history history'
6 | 'sidebar input-area input-area';
7 | padding: 10px;
8 | grid-template-columns: 20% auto auto;
9 | grid-template-rows: auto auto 20%;
10 | }
11 |
12 | .sidebar {
13 | grid-area: sidebar;
14 | }
15 |
16 | .history {
17 | grid-area: history;
18 | }
19 |
20 | .input-area {
21 | grid-area: input-area;
22 | }
--------------------------------------------------------------------------------
/src/App.tsx:
--------------------------------------------------------------------------------
1 | import './App.css'
2 | import * as datafusion_wasm from 'datafusion-wasm'
3 | import { MantineProvider } from '@mantine/core';
4 | import '@mantine/core/styles.css';
5 | import { History } from './components/History.tsx';
6 | import { InputArea } from './components/InputArea.tsx';
7 | import { Sidebar } from './components/Sidebar.tsx';
8 |
9 | console.log(datafusion_wasm.DataFusionContext.greet())
10 | export const dfCtx = datafusion_wasm.DataFusionContext.new()
11 |
12 | function App() {
13 | return (
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 | )
29 | }
30 |
31 | export default App
32 |
--------------------------------------------------------------------------------
/src/assets/datafusion-playground-demo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waynexia/datafusion-playground/a743d6ce9744677293ea51b4fff8071e8135f221/src/assets/datafusion-playground-demo.png
--------------------------------------------------------------------------------
/src/assets/react.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/components/About.tsx:
--------------------------------------------------------------------------------
1 | export function About() {
2 | return (
3 | <>
4 |
15 | >
16 | )
17 | }
--------------------------------------------------------------------------------
/src/components/CloudConfig.tsx:
--------------------------------------------------------------------------------
1 | import { Button, PasswordInput, TextInput, Tooltip, rem } from "@mantine/core";
2 | import { dfCtx } from "../App";
3 | import { atom, useAtom } from "jotai";
4 | import { useRef } from "react";
5 |
6 | const s3SavedAtom = atom(false)
7 |
8 | export function CloudConfig() {
9 | const [s3Saved, setS3Saved] = useAtom(s3SavedAtom);
10 |
11 | const rootRef = useRef(null);
12 | const bucketRef = useRef(null);
13 | const regionRef = useRef(null);
14 | const accessKeyIdRef = useRef(null);
15 | const secretAccessKeyRef = useRef(null);
16 |
17 | return (
18 | <>
19 |
20 |
Make sure the CORS permission is configured properly in your cloud storage provider
21 |
22 |
AWS S3
23 |
28 |
33 |
38 |
43 |
44 |
45 |
46 |
47 |
56 |
62 | ) : (
63 |
64 | )
65 | }
66 | radius="m"
67 | size="m"
68 | styles={{
69 | root: { paddingRight: rem(14), height: rem(48) },
70 | section: { marginLeft: rem(22) },
71 | }}
72 | onClick={() => {
73 | // Get the values from the input elements
74 | const root = rootRef.current ? rootRef.current.value : '';
75 | const bucket = bucketRef.current ? bucketRef.current.value : '';
76 | const region = regionRef.current ? regionRef.current.value : '';
77 | const accessKeyId = accessKeyIdRef.current ? accessKeyIdRef.current.value : '';
78 | const secretAccessKey = secretAccessKeyRef.current ? secretAccessKeyRef.current.value : '';
79 |
80 | // Set the values to dfCtx
81 | dfCtx.set_s3_config(root, bucket, region, accessKeyId, secretAccessKey);
82 |
83 | // Show the tooltip
84 | setS3Saved(true);
85 |
86 | // Clear the tooltip after 2 seconds
87 | setTimeout(() => {
88 | setS3Saved(false);
89 | }, 2000);
90 | }}
91 | >
92 | Save
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 | >
102 | );
103 | }
104 |
--------------------------------------------------------------------------------
/src/components/History.tsx:
--------------------------------------------------------------------------------
1 | import { ActionIcon, Tooltip } from "@mantine/core";
2 | import { atom, useAtomValue } from "jotai";
3 |
4 | const initialGreeting = { query: '', result: 'DataFusion Playground is initialized!', isErr: false }
5 |
6 | class ExecuteHistory {
7 | query!: string;
8 | result!: string;
9 | isErr!: boolean;
10 | }
11 |
12 | export const historyListAtom = atom([initialGreeting])
13 |
14 | const actions = [
15 | // { tip: "Delete", icon: "i-tabler-trash", action: () => { } },
16 | // { tip: "Collapse", icon: "i-tabler-box-align-top", action: () => { } },
17 | { tip: "Copy Query", icon: "i-tabler-arrow-left-to-arc", action: (executeHistory: ExecuteHistory) => { navigator.clipboard.writeText(executeHistory.query) } },
18 | { tip: "Copy Result", icon: "i-tabler-copy", action: (executeHistory: ExecuteHistory) => { navigator.clipboard.writeText(executeHistory.result) } },
19 | ]
20 |
21 | function ActionPanel(executeHistory: ExecuteHistory) {
22 | return (
23 |
24 | {
25 | actions.map((action, index) => (
26 |
27 | { action.action(executeHistory) }}>
32 |
33 |
34 | )
35 | )
36 | }
37 |
38 | )
39 | }
40 |
41 | function HistoryItem(executeHistory: ExecuteHistory) {
42 | return (
43 |
44 |
45 |
48 |
49 |
50 |
{executeHistory.query}
51 |
{executeHistory.result}
52 |
53 |
54 |
55 | )
56 | }
57 |
58 | export function History() {
59 | const results = useAtomValue(historyListAtom)
60 |
61 | return (
62 |
63 | {
64 | results.map((result, index) => ( ))
65 | }
66 |
67 | )
68 | }
--------------------------------------------------------------------------------
/src/components/InputArea.tsx:
--------------------------------------------------------------------------------
1 | import { Textarea } from "@mantine/core"
2 | import { atom, useAtom, useSetAtom } from "jotai"
3 | import { historyListAtom, } from "./History"
4 | import { dfCtx } from "../App"
5 |
6 | export const sqlAtom = atom('')
7 |
8 | export function InputArea() {
9 | const [sql, setSql] = useAtom(sqlAtom)
10 | const setHistoryList = useSetAtom(historyListAtom)
11 |
12 | const handleChange = (e: React.ChangeEvent) => {
13 | setSql(e.currentTarget.value)
14 | }
15 |
16 | const handleCtrlEnter = (e: React.KeyboardEvent) => {
17 | if (e.key === 'Enter' && e.ctrlKey) {
18 | doQuery();
19 |
20 | e.currentTarget.value = ''
21 | }
22 | }
23 |
24 | const doQuery = () => {
25 | const result = dfCtx.execute_sql(sql)
26 | result.then((r: string) => {
27 | setHistoryList((history) => [{ query: sql, result: r, isErr: false }, ...history])
28 | }).catch((e: string) => {
29 | setHistoryList((history) => [{ query: sql, result: e, isErr: true }, ...history])
30 | })
31 | console.log('doQuery' + sql)
32 | }
33 |
34 | return (
35 | < Textarea
36 | className="m-4"
37 | size="md"
38 | radius="m"
39 | minRows={4}
40 | maxRows={7}
41 | autosize={true}
42 | description="Ctrl + Enter to execute"
43 | placeholder="SQL here"
44 | onChange={handleChange}
45 | onKeyDown={handleCtrlEnter}
46 | />)
47 | }
--------------------------------------------------------------------------------
/src/components/Sidebar.tsx:
--------------------------------------------------------------------------------
1 | import { Title, Tooltip, UnstyledButton, rem } from "@mantine/core";
2 | import { atom, useAtom, useAtomValue } from "jotai";
3 | import { About } from "./About";
4 | import { CloudConfig } from "./CloudConfig";
5 |
6 | // unresolved problem:
7 | // - icon is not rounded
8 | // - active tab acon is not blue
9 |
10 | const mainTabData = [
11 | { icon: "i-tabler-info-circle", label: 'About' },
12 | { icon: "i-tabler-cloud-share", label: 'Cloud' },
13 | { icon: "i-tabler-file-upload", label: 'Upload' },
14 | { icon: "i-tabler-settings", label: 'Settings' },
15 | ];
16 |
17 | const activeTabAtom = atom("About")
18 |
19 | function switchTab() {
20 | const activeTab = useAtomValue(activeTabAtom)
21 | switch (activeTab) {
22 | case "About": return
23 | case "Cloud": return
24 | default: return Empty Tab
25 | }
26 | }
27 |
28 | export function Sidebar() {
29 | const [activeTab, setActiveTab] = useAtom(activeTabAtom);
30 |
31 | const mainTabs = mainTabData.map((tab) => (
32 |
39 | setActiveTab(tab.label)}
41 | className={"size-7 rounded-5 flex flex-items-center flex-justify-center " + tab.label === activeTab ? " c-blue-5 bg-blue-1" : " hover:bg-gray-2"}
42 | data-active={tab.label === activeTab || undefined}
43 | >
44 |
45 |
46 |
47 | ));
48 |
49 |
50 | return (
51 |
52 |
53 |
54 |
57 | {mainTabs}
58 |
59 |
60 |
61 | {activeTab}
62 |
63 |
64 |
65 | {switchTab()}
66 |
67 |
68 |
69 |
70 |
71 | )
72 | }
--------------------------------------------------------------------------------
/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 |
8 | font-synthesis: none;
9 | text-rendering: optimizeLegibility;
10 | -webkit-font-smoothing: antialiased;
11 | -moz-osx-font-smoothing: grayscale;
12 | }
--------------------------------------------------------------------------------
/src/main.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import ReactDOM from 'react-dom/client'
3 | import App from './App.tsx'
4 | import './index.css'
5 | import 'uno.css'
6 |
7 | ReactDOM.createRoot(document.getElementById('root')!).render(
8 |
9 |
10 | ,
11 | )
12 |
--------------------------------------------------------------------------------
/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/tsconfig.node.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "composite": true,
4 | "skipLibCheck": true,
5 | "module": "ESNext",
6 | "moduleResolution": "bundler",
7 | "allowSyntheticDefaultImports": true
8 | },
9 | "include": ["vite.config.ts"]
10 | }
11 |
--------------------------------------------------------------------------------
/uno.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'unocss'
2 | import presetIcons from '@unocss/preset-icons'
3 | import { presetUno } from 'unocss'
4 |
5 | export default defineConfig({
6 | presets: [
7 | presetUno(),
8 | presetIcons({}),
9 | ],
10 | })
--------------------------------------------------------------------------------
/vite.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vite'
2 | import UnoCSS from 'unocss/vite'
3 | import react from '@vitejs/plugin-react'
4 | import wasm from "vite-plugin-wasm"
5 | import topLevelAwait from "vite-plugin-top-level-await";
6 | import jotaiDebugLabel from 'jotai/babel/plugin-debug-label'
7 | import jotaiReactRefresh from 'jotai/babel/plugin-react-refresh'
8 |
9 | // https://vitejs.dev/config/
10 | export default defineConfig({
11 | base: '/datafusion-playground/',
12 | plugins: [
13 | wasm(),
14 | topLevelAwait(),
15 | react({ babel: { plugins: [jotaiDebugLabel, jotaiReactRefresh] } }),
16 | UnoCSS()],
17 | })
18 |
19 |
--------------------------------------------------------------------------------