Karan6124 commited on
Commit
673ed4c
·
1 Parent(s): b841b71

initialize React Vite frontend project with Tailwind v4 setup

Browse files
.gitignore CHANGED
@@ -39,4 +39,9 @@ htmlcov/
39
  Thumbs.db
40
 
41
  # Prometheus multiproc metrics
42
- prometheus_multiproc_dir/
 
 
 
 
 
 
39
  Thumbs.db
40
 
41
  # Prometheus multiproc metrics
42
+ prometheus_multiproc_dir/
43
+
44
+ # Frontend dependencies & builds
45
+ node_modules/
46
+ frontend/node_modules/
47
+ frontend/dist/
frontend/.gitignore ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Logs
2
+ logs
3
+ *.log
4
+ npm-debug.log*
5
+ yarn-debug.log*
6
+ yarn-error.log*
7
+ pnpm-debug.log*
8
+ lerna-debug.log*
9
+
10
+ node_modules
11
+ dist
12
+ dist-ssr
13
+ *.local
14
+
15
+ # Editor directories and files
16
+ .vscode/*
17
+ !.vscode/extensions.json
18
+ .idea
19
+ .DS_Store
20
+ *.suo
21
+ *.ntvs*
22
+ *.njsproj
23
+ *.sln
24
+ *.sw?
frontend/README.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # React + Vite
2
+
3
+ This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
+
5
+ Currently, two official plugins are available:
6
+
7
+ - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Oxc](https://oxc.rs)
8
+ - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/)
9
+
10
+ ## React Compiler
11
+
12
+ The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
13
+
14
+ ## Expanding the ESLint configuration
15
+
16
+ If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) for information on how to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project.
frontend/eslint.config.js ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import js from '@eslint/js'
2
+ import globals from 'globals'
3
+ import reactHooks from 'eslint-plugin-react-hooks'
4
+ import reactRefresh from 'eslint-plugin-react-refresh'
5
+ import { defineConfig, globalIgnores } from 'eslint/config'
6
+
7
+ export default defineConfig([
8
+ globalIgnores(['dist']),
9
+ {
10
+ files: ['**/*.{js,jsx}'],
11
+ extends: [
12
+ js.configs.recommended,
13
+ reactHooks.configs.flat.recommended,
14
+ reactRefresh.configs.vite,
15
+ ],
16
+ languageOptions: {
17
+ globals: globals.browser,
18
+ parserOptions: { ecmaFeatures: { jsx: true } },
19
+ },
20
+ },
21
+ ])
frontend/index.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>frontend</title>
8
+ </head>
9
+ <body>
10
+ <div id="root"></div>
11
+ <script type="module" src="/src/main.jsx"></script>
12
+ </body>
13
+ </html>
frontend/package-lock.json ADDED
@@ -0,0 +1,2793 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "frontend",
3
+ "version": "0.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "frontend",
9
+ "version": "0.0.0",
10
+ "dependencies": {
11
+ "@tailwindcss/vite": "^4.3.1",
12
+ "framer-motion": "^12.40.0",
13
+ "react": "^19.2.6",
14
+ "react-dom": "^19.2.6"
15
+ },
16
+ "devDependencies": {
17
+ "@eslint/js": "^10.0.1",
18
+ "@types/react": "^19.2.14",
19
+ "@types/react-dom": "^19.2.3",
20
+ "@vitejs/plugin-react": "^6.0.1",
21
+ "autoprefixer": "^10.5.0",
22
+ "eslint": "^10.3.0",
23
+ "eslint-plugin-react-hooks": "^7.1.1",
24
+ "eslint-plugin-react-refresh": "^0.5.2",
25
+ "globals": "^17.6.0",
26
+ "postcss": "^8.5.15",
27
+ "tailwindcss": "^4.3.1",
28
+ "vite": "^8.0.12"
29
+ }
30
+ },
31
+ "node_modules/@babel/code-frame": {
32
+ "version": "7.29.7",
33
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
34
+ "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
35
+ "dev": true,
36
+ "license": "MIT",
37
+ "dependencies": {
38
+ "@babel/helper-validator-identifier": "^7.29.7",
39
+ "js-tokens": "^4.0.0",
40
+ "picocolors": "^1.1.1"
41
+ },
42
+ "engines": {
43
+ "node": ">=6.9.0"
44
+ }
45
+ },
46
+ "node_modules/@babel/compat-data": {
47
+ "version": "7.29.7",
48
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz",
49
+ "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==",
50
+ "dev": true,
51
+ "license": "MIT",
52
+ "engines": {
53
+ "node": ">=6.9.0"
54
+ }
55
+ },
56
+ "node_modules/@babel/core": {
57
+ "version": "7.29.7",
58
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz",
59
+ "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
60
+ "dev": true,
61
+ "license": "MIT",
62
+ "dependencies": {
63
+ "@babel/code-frame": "^7.29.7",
64
+ "@babel/generator": "^7.29.7",
65
+ "@babel/helper-compilation-targets": "^7.29.7",
66
+ "@babel/helper-module-transforms": "^7.29.7",
67
+ "@babel/helpers": "^7.29.7",
68
+ "@babel/parser": "^7.29.7",
69
+ "@babel/template": "^7.29.7",
70
+ "@babel/traverse": "^7.29.7",
71
+ "@babel/types": "^7.29.7",
72
+ "@jridgewell/remapping": "^2.3.5",
73
+ "convert-source-map": "^2.0.0",
74
+ "debug": "^4.1.0",
75
+ "gensync": "^1.0.0-beta.2",
76
+ "json5": "^2.2.3",
77
+ "semver": "^6.3.1"
78
+ },
79
+ "engines": {
80
+ "node": ">=6.9.0"
81
+ },
82
+ "funding": {
83
+ "type": "opencollective",
84
+ "url": "https://opencollective.com/babel"
85
+ }
86
+ },
87
+ "node_modules/@babel/generator": {
88
+ "version": "7.29.7",
89
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz",
90
+ "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==",
91
+ "dev": true,
92
+ "license": "MIT",
93
+ "dependencies": {
94
+ "@babel/parser": "^7.29.7",
95
+ "@babel/types": "^7.29.7",
96
+ "@jridgewell/gen-mapping": "^0.3.12",
97
+ "@jridgewell/trace-mapping": "^0.3.28",
98
+ "jsesc": "^3.0.2"
99
+ },
100
+ "engines": {
101
+ "node": ">=6.9.0"
102
+ }
103
+ },
104
+ "node_modules/@babel/helper-compilation-targets": {
105
+ "version": "7.29.7",
106
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
107
+ "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
108
+ "dev": true,
109
+ "license": "MIT",
110
+ "dependencies": {
111
+ "@babel/compat-data": "^7.29.7",
112
+ "@babel/helper-validator-option": "^7.29.7",
113
+ "browserslist": "^4.24.0",
114
+ "lru-cache": "^5.1.1",
115
+ "semver": "^6.3.1"
116
+ },
117
+ "engines": {
118
+ "node": ">=6.9.0"
119
+ }
120
+ },
121
+ "node_modules/@babel/helper-globals": {
122
+ "version": "7.29.7",
123
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
124
+ "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
125
+ "dev": true,
126
+ "license": "MIT",
127
+ "engines": {
128
+ "node": ">=6.9.0"
129
+ }
130
+ },
131
+ "node_modules/@babel/helper-module-imports": {
132
+ "version": "7.29.7",
133
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
134
+ "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
135
+ "dev": true,
136
+ "license": "MIT",
137
+ "dependencies": {
138
+ "@babel/traverse": "^7.29.7",
139
+ "@babel/types": "^7.29.7"
140
+ },
141
+ "engines": {
142
+ "node": ">=6.9.0"
143
+ }
144
+ },
145
+ "node_modules/@babel/helper-module-transforms": {
146
+ "version": "7.29.7",
147
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
148
+ "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
149
+ "dev": true,
150
+ "license": "MIT",
151
+ "dependencies": {
152
+ "@babel/helper-module-imports": "^7.29.7",
153
+ "@babel/helper-validator-identifier": "^7.29.7",
154
+ "@babel/traverse": "^7.29.7"
155
+ },
156
+ "engines": {
157
+ "node": ">=6.9.0"
158
+ },
159
+ "peerDependencies": {
160
+ "@babel/core": "^7.0.0"
161
+ }
162
+ },
163
+ "node_modules/@babel/helper-string-parser": {
164
+ "version": "7.29.7",
165
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
166
+ "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
167
+ "dev": true,
168
+ "license": "MIT",
169
+ "engines": {
170
+ "node": ">=6.9.0"
171
+ }
172
+ },
173
+ "node_modules/@babel/helper-validator-identifier": {
174
+ "version": "7.29.7",
175
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
176
+ "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
177
+ "dev": true,
178
+ "license": "MIT",
179
+ "engines": {
180
+ "node": ">=6.9.0"
181
+ }
182
+ },
183
+ "node_modules/@babel/helper-validator-option": {
184
+ "version": "7.29.7",
185
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
186
+ "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==",
187
+ "dev": true,
188
+ "license": "MIT",
189
+ "engines": {
190
+ "node": ">=6.9.0"
191
+ }
192
+ },
193
+ "node_modules/@babel/helpers": {
194
+ "version": "7.29.7",
195
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz",
196
+ "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
197
+ "dev": true,
198
+ "license": "MIT",
199
+ "dependencies": {
200
+ "@babel/template": "^7.29.7",
201
+ "@babel/types": "^7.29.7"
202
+ },
203
+ "engines": {
204
+ "node": ">=6.9.0"
205
+ }
206
+ },
207
+ "node_modules/@babel/parser": {
208
+ "version": "7.29.7",
209
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
210
+ "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
211
+ "dev": true,
212
+ "license": "MIT",
213
+ "dependencies": {
214
+ "@babel/types": "^7.29.7"
215
+ },
216
+ "bin": {
217
+ "parser": "bin/babel-parser.js"
218
+ },
219
+ "engines": {
220
+ "node": ">=6.0.0"
221
+ }
222
+ },
223
+ "node_modules/@babel/template": {
224
+ "version": "7.29.7",
225
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
226
+ "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
227
+ "dev": true,
228
+ "license": "MIT",
229
+ "dependencies": {
230
+ "@babel/code-frame": "^7.29.7",
231
+ "@babel/parser": "^7.29.7",
232
+ "@babel/types": "^7.29.7"
233
+ },
234
+ "engines": {
235
+ "node": ">=6.9.0"
236
+ }
237
+ },
238
+ "node_modules/@babel/traverse": {
239
+ "version": "7.29.7",
240
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz",
241
+ "integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==",
242
+ "dev": true,
243
+ "license": "MIT",
244
+ "dependencies": {
245
+ "@babel/code-frame": "^7.29.7",
246
+ "@babel/generator": "^7.29.7",
247
+ "@babel/helper-globals": "^7.29.7",
248
+ "@babel/parser": "^7.29.7",
249
+ "@babel/template": "^7.29.7",
250
+ "@babel/types": "^7.29.7",
251
+ "debug": "^4.3.1"
252
+ },
253
+ "engines": {
254
+ "node": ">=6.9.0"
255
+ }
256
+ },
257
+ "node_modules/@babel/types": {
258
+ "version": "7.29.7",
259
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
260
+ "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
261
+ "dev": true,
262
+ "license": "MIT",
263
+ "dependencies": {
264
+ "@babel/helper-string-parser": "^7.29.7",
265
+ "@babel/helper-validator-identifier": "^7.29.7"
266
+ },
267
+ "engines": {
268
+ "node": ">=6.9.0"
269
+ }
270
+ },
271
+ "node_modules/@emnapi/core": {
272
+ "version": "1.10.0",
273
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
274
+ "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
275
+ "license": "MIT",
276
+ "optional": true,
277
+ "dependencies": {
278
+ "@emnapi/wasi-threads": "1.2.1",
279
+ "tslib": "^2.4.0"
280
+ }
281
+ },
282
+ "node_modules/@emnapi/runtime": {
283
+ "version": "1.10.0",
284
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
285
+ "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
286
+ "license": "MIT",
287
+ "optional": true,
288
+ "dependencies": {
289
+ "tslib": "^2.4.0"
290
+ }
291
+ },
292
+ "node_modules/@emnapi/wasi-threads": {
293
+ "version": "1.2.1",
294
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
295
+ "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
296
+ "license": "MIT",
297
+ "optional": true,
298
+ "dependencies": {
299
+ "tslib": "^2.4.0"
300
+ }
301
+ },
302
+ "node_modules/@eslint-community/eslint-utils": {
303
+ "version": "4.9.1",
304
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz",
305
+ "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
306
+ "dev": true,
307
+ "license": "MIT",
308
+ "dependencies": {
309
+ "eslint-visitor-keys": "^3.4.3"
310
+ },
311
+ "engines": {
312
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
313
+ },
314
+ "funding": {
315
+ "url": "https://opencollective.com/eslint"
316
+ },
317
+ "peerDependencies": {
318
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
319
+ }
320
+ },
321
+ "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
322
+ "version": "3.4.3",
323
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
324
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
325
+ "dev": true,
326
+ "license": "Apache-2.0",
327
+ "engines": {
328
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
329
+ },
330
+ "funding": {
331
+ "url": "https://opencollective.com/eslint"
332
+ }
333
+ },
334
+ "node_modules/@eslint-community/regexpp": {
335
+ "version": "4.12.2",
336
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
337
+ "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
338
+ "dev": true,
339
+ "license": "MIT",
340
+ "engines": {
341
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
342
+ }
343
+ },
344
+ "node_modules/@eslint/config-array": {
345
+ "version": "0.23.5",
346
+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.23.5.tgz",
347
+ "integrity": "sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==",
348
+ "dev": true,
349
+ "license": "Apache-2.0",
350
+ "dependencies": {
351
+ "@eslint/object-schema": "^3.0.5",
352
+ "debug": "^4.3.1",
353
+ "minimatch": "^10.2.4"
354
+ },
355
+ "engines": {
356
+ "node": "^20.19.0 || ^22.13.0 || >=24"
357
+ }
358
+ },
359
+ "node_modules/@eslint/config-helpers": {
360
+ "version": "0.6.0",
361
+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.6.0.tgz",
362
+ "integrity": "sha512-ii6Bw9jJ2zi2cWA2Z+9/QZ/+3DX6kwaV5Q986D/CdP3Lap3w/pgQZ373FV7byY/i7L4IRH/G43I5dz1ClsCbpA==",
363
+ "dev": true,
364
+ "license": "Apache-2.0",
365
+ "dependencies": {
366
+ "@eslint/core": "^1.2.1"
367
+ },
368
+ "engines": {
369
+ "node": "^20.19.0 || ^22.13.0 || >=24"
370
+ }
371
+ },
372
+ "node_modules/@eslint/core": {
373
+ "version": "1.2.1",
374
+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-1.2.1.tgz",
375
+ "integrity": "sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==",
376
+ "dev": true,
377
+ "license": "Apache-2.0",
378
+ "dependencies": {
379
+ "@types/json-schema": "^7.0.15"
380
+ },
381
+ "engines": {
382
+ "node": "^20.19.0 || ^22.13.0 || >=24"
383
+ }
384
+ },
385
+ "node_modules/@eslint/js": {
386
+ "version": "10.0.1",
387
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-10.0.1.tgz",
388
+ "integrity": "sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==",
389
+ "dev": true,
390
+ "license": "MIT",
391
+ "engines": {
392
+ "node": "^20.19.0 || ^22.13.0 || >=24"
393
+ },
394
+ "funding": {
395
+ "url": "https://eslint.org/donate"
396
+ },
397
+ "peerDependencies": {
398
+ "eslint": "^10.0.0"
399
+ },
400
+ "peerDependenciesMeta": {
401
+ "eslint": {
402
+ "optional": true
403
+ }
404
+ }
405
+ },
406
+ "node_modules/@eslint/object-schema": {
407
+ "version": "3.0.5",
408
+ "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-3.0.5.tgz",
409
+ "integrity": "sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==",
410
+ "dev": true,
411
+ "license": "Apache-2.0",
412
+ "engines": {
413
+ "node": "^20.19.0 || ^22.13.0 || >=24"
414
+ }
415
+ },
416
+ "node_modules/@eslint/plugin-kit": {
417
+ "version": "0.7.2",
418
+ "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.7.2.tgz",
419
+ "integrity": "sha512-+CNAzxglkrpNf/kKywqQfk74QjtceuOE7Qm+AF8miRvPF/wmmK5+OJOgVh3AVTT3RP2mH3+FOaxlE5v72owk0A==",
420
+ "dev": true,
421
+ "license": "Apache-2.0",
422
+ "dependencies": {
423
+ "@eslint/core": "^1.2.1",
424
+ "levn": "^0.4.1"
425
+ },
426
+ "engines": {
427
+ "node": "^20.19.0 || ^22.13.0 || >=24"
428
+ }
429
+ },
430
+ "node_modules/@humanfs/core": {
431
+ "version": "0.19.2",
432
+ "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz",
433
+ "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==",
434
+ "dev": true,
435
+ "license": "Apache-2.0",
436
+ "dependencies": {
437
+ "@humanfs/types": "^0.15.0"
438
+ },
439
+ "engines": {
440
+ "node": ">=18.18.0"
441
+ }
442
+ },
443
+ "node_modules/@humanfs/node": {
444
+ "version": "0.16.8",
445
+ "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz",
446
+ "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==",
447
+ "dev": true,
448
+ "license": "Apache-2.0",
449
+ "dependencies": {
450
+ "@humanfs/core": "^0.19.2",
451
+ "@humanfs/types": "^0.15.0",
452
+ "@humanwhocodes/retry": "^0.4.0"
453
+ },
454
+ "engines": {
455
+ "node": ">=18.18.0"
456
+ }
457
+ },
458
+ "node_modules/@humanfs/types": {
459
+ "version": "0.15.0",
460
+ "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz",
461
+ "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==",
462
+ "dev": true,
463
+ "license": "Apache-2.0",
464
+ "engines": {
465
+ "node": ">=18.18.0"
466
+ }
467
+ },
468
+ "node_modules/@humanwhocodes/module-importer": {
469
+ "version": "1.0.1",
470
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
471
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
472
+ "dev": true,
473
+ "license": "Apache-2.0",
474
+ "engines": {
475
+ "node": ">=12.22"
476
+ },
477
+ "funding": {
478
+ "type": "github",
479
+ "url": "https://github.com/sponsors/nzakas"
480
+ }
481
+ },
482
+ "node_modules/@humanwhocodes/retry": {
483
+ "version": "0.4.3",
484
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
485
+ "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
486
+ "dev": true,
487
+ "license": "Apache-2.0",
488
+ "engines": {
489
+ "node": ">=18.18"
490
+ },
491
+ "funding": {
492
+ "type": "github",
493
+ "url": "https://github.com/sponsors/nzakas"
494
+ }
495
+ },
496
+ "node_modules/@jridgewell/gen-mapping": {
497
+ "version": "0.3.13",
498
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
499
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
500
+ "license": "MIT",
501
+ "dependencies": {
502
+ "@jridgewell/sourcemap-codec": "^1.5.0",
503
+ "@jridgewell/trace-mapping": "^0.3.24"
504
+ }
505
+ },
506
+ "node_modules/@jridgewell/remapping": {
507
+ "version": "2.3.5",
508
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
509
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
510
+ "license": "MIT",
511
+ "dependencies": {
512
+ "@jridgewell/gen-mapping": "^0.3.5",
513
+ "@jridgewell/trace-mapping": "^0.3.24"
514
+ }
515
+ },
516
+ "node_modules/@jridgewell/resolve-uri": {
517
+ "version": "3.1.2",
518
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
519
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
520
+ "license": "MIT",
521
+ "engines": {
522
+ "node": ">=6.0.0"
523
+ }
524
+ },
525
+ "node_modules/@jridgewell/sourcemap-codec": {
526
+ "version": "1.5.5",
527
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
528
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
529
+ "license": "MIT"
530
+ },
531
+ "node_modules/@jridgewell/trace-mapping": {
532
+ "version": "0.3.31",
533
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
534
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
535
+ "license": "MIT",
536
+ "dependencies": {
537
+ "@jridgewell/resolve-uri": "^3.1.0",
538
+ "@jridgewell/sourcemap-codec": "^1.4.14"
539
+ }
540
+ },
541
+ "node_modules/@napi-rs/wasm-runtime": {
542
+ "version": "1.1.5",
543
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.5.tgz",
544
+ "integrity": "sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==",
545
+ "license": "MIT",
546
+ "optional": true,
547
+ "dependencies": {
548
+ "@tybys/wasm-util": "^0.10.2"
549
+ },
550
+ "funding": {
551
+ "type": "github",
552
+ "url": "https://github.com/sponsors/Brooooooklyn"
553
+ },
554
+ "peerDependencies": {
555
+ "@emnapi/core": "^1.7.1",
556
+ "@emnapi/runtime": "^1.7.1"
557
+ }
558
+ },
559
+ "node_modules/@oxc-project/types": {
560
+ "version": "0.133.0",
561
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.133.0.tgz",
562
+ "integrity": "sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==",
563
+ "license": "MIT",
564
+ "funding": {
565
+ "url": "https://github.com/sponsors/Boshen"
566
+ }
567
+ },
568
+ "node_modules/@rolldown/binding-android-arm64": {
569
+ "version": "1.0.3",
570
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz",
571
+ "integrity": "sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==",
572
+ "cpu": [
573
+ "arm64"
574
+ ],
575
+ "license": "MIT",
576
+ "optional": true,
577
+ "os": [
578
+ "android"
579
+ ],
580
+ "engines": {
581
+ "node": "^20.19.0 || >=22.12.0"
582
+ }
583
+ },
584
+ "node_modules/@rolldown/binding-darwin-arm64": {
585
+ "version": "1.0.3",
586
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.3.tgz",
587
+ "integrity": "sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==",
588
+ "cpu": [
589
+ "arm64"
590
+ ],
591
+ "license": "MIT",
592
+ "optional": true,
593
+ "os": [
594
+ "darwin"
595
+ ],
596
+ "engines": {
597
+ "node": "^20.19.0 || >=22.12.0"
598
+ }
599
+ },
600
+ "node_modules/@rolldown/binding-darwin-x64": {
601
+ "version": "1.0.3",
602
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.3.tgz",
603
+ "integrity": "sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==",
604
+ "cpu": [
605
+ "x64"
606
+ ],
607
+ "license": "MIT",
608
+ "optional": true,
609
+ "os": [
610
+ "darwin"
611
+ ],
612
+ "engines": {
613
+ "node": "^20.19.0 || >=22.12.0"
614
+ }
615
+ },
616
+ "node_modules/@rolldown/binding-freebsd-x64": {
617
+ "version": "1.0.3",
618
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.3.tgz",
619
+ "integrity": "sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==",
620
+ "cpu": [
621
+ "x64"
622
+ ],
623
+ "license": "MIT",
624
+ "optional": true,
625
+ "os": [
626
+ "freebsd"
627
+ ],
628
+ "engines": {
629
+ "node": "^20.19.0 || >=22.12.0"
630
+ }
631
+ },
632
+ "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
633
+ "version": "1.0.3",
634
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.3.tgz",
635
+ "integrity": "sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==",
636
+ "cpu": [
637
+ "arm"
638
+ ],
639
+ "license": "MIT",
640
+ "optional": true,
641
+ "os": [
642
+ "linux"
643
+ ],
644
+ "engines": {
645
+ "node": "^20.19.0 || >=22.12.0"
646
+ }
647
+ },
648
+ "node_modules/@rolldown/binding-linux-arm64-gnu": {
649
+ "version": "1.0.3",
650
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.3.tgz",
651
+ "integrity": "sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==",
652
+ "cpu": [
653
+ "arm64"
654
+ ],
655
+ "license": "MIT",
656
+ "optional": true,
657
+ "os": [
658
+ "linux"
659
+ ],
660
+ "engines": {
661
+ "node": "^20.19.0 || >=22.12.0"
662
+ }
663
+ },
664
+ "node_modules/@rolldown/binding-linux-arm64-musl": {
665
+ "version": "1.0.3",
666
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.3.tgz",
667
+ "integrity": "sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==",
668
+ "cpu": [
669
+ "arm64"
670
+ ],
671
+ "license": "MIT",
672
+ "optional": true,
673
+ "os": [
674
+ "linux"
675
+ ],
676
+ "engines": {
677
+ "node": "^20.19.0 || >=22.12.0"
678
+ }
679
+ },
680
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
681
+ "version": "1.0.3",
682
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.3.tgz",
683
+ "integrity": "sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==",
684
+ "cpu": [
685
+ "ppc64"
686
+ ],
687
+ "license": "MIT",
688
+ "optional": true,
689
+ "os": [
690
+ "linux"
691
+ ],
692
+ "engines": {
693
+ "node": "^20.19.0 || >=22.12.0"
694
+ }
695
+ },
696
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
697
+ "version": "1.0.3",
698
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.3.tgz",
699
+ "integrity": "sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==",
700
+ "cpu": [
701
+ "s390x"
702
+ ],
703
+ "license": "MIT",
704
+ "optional": true,
705
+ "os": [
706
+ "linux"
707
+ ],
708
+ "engines": {
709
+ "node": "^20.19.0 || >=22.12.0"
710
+ }
711
+ },
712
+ "node_modules/@rolldown/binding-linux-x64-gnu": {
713
+ "version": "1.0.3",
714
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.3.tgz",
715
+ "integrity": "sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==",
716
+ "cpu": [
717
+ "x64"
718
+ ],
719
+ "license": "MIT",
720
+ "optional": true,
721
+ "os": [
722
+ "linux"
723
+ ],
724
+ "engines": {
725
+ "node": "^20.19.0 || >=22.12.0"
726
+ }
727
+ },
728
+ "node_modules/@rolldown/binding-linux-x64-musl": {
729
+ "version": "1.0.3",
730
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.3.tgz",
731
+ "integrity": "sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==",
732
+ "cpu": [
733
+ "x64"
734
+ ],
735
+ "license": "MIT",
736
+ "optional": true,
737
+ "os": [
738
+ "linux"
739
+ ],
740
+ "engines": {
741
+ "node": "^20.19.0 || >=22.12.0"
742
+ }
743
+ },
744
+ "node_modules/@rolldown/binding-openharmony-arm64": {
745
+ "version": "1.0.3",
746
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.3.tgz",
747
+ "integrity": "sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==",
748
+ "cpu": [
749
+ "arm64"
750
+ ],
751
+ "license": "MIT",
752
+ "optional": true,
753
+ "os": [
754
+ "openharmony"
755
+ ],
756
+ "engines": {
757
+ "node": "^20.19.0 || >=22.12.0"
758
+ }
759
+ },
760
+ "node_modules/@rolldown/binding-wasm32-wasi": {
761
+ "version": "1.0.3",
762
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.3.tgz",
763
+ "integrity": "sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==",
764
+ "cpu": [
765
+ "wasm32"
766
+ ],
767
+ "license": "MIT",
768
+ "optional": true,
769
+ "dependencies": {
770
+ "@emnapi/core": "1.10.0",
771
+ "@emnapi/runtime": "1.10.0",
772
+ "@napi-rs/wasm-runtime": "^1.1.4"
773
+ },
774
+ "engines": {
775
+ "node": "^20.19.0 || >=22.12.0"
776
+ }
777
+ },
778
+ "node_modules/@rolldown/binding-win32-arm64-msvc": {
779
+ "version": "1.0.3",
780
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.3.tgz",
781
+ "integrity": "sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==",
782
+ "cpu": [
783
+ "arm64"
784
+ ],
785
+ "license": "MIT",
786
+ "optional": true,
787
+ "os": [
788
+ "win32"
789
+ ],
790
+ "engines": {
791
+ "node": "^20.19.0 || >=22.12.0"
792
+ }
793
+ },
794
+ "node_modules/@rolldown/binding-win32-x64-msvc": {
795
+ "version": "1.0.3",
796
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.3.tgz",
797
+ "integrity": "sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==",
798
+ "cpu": [
799
+ "x64"
800
+ ],
801
+ "license": "MIT",
802
+ "optional": true,
803
+ "os": [
804
+ "win32"
805
+ ],
806
+ "engines": {
807
+ "node": "^20.19.0 || >=22.12.0"
808
+ }
809
+ },
810
+ "node_modules/@rolldown/pluginutils": {
811
+ "version": "1.0.1",
812
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
813
+ "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
814
+ "license": "MIT"
815
+ },
816
+ "node_modules/@tailwindcss/node": {
817
+ "version": "4.3.1",
818
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.1.tgz",
819
+ "integrity": "sha512-6NDaqRoAMSXD1mr/RXu0HBvNE9a2n5tHPsxu9XHLws8o4Twes5rBM2205SUUiJ9goAtadrN6xTGX0UDEwp/N4A==",
820
+ "license": "MIT",
821
+ "dependencies": {
822
+ "@jridgewell/remapping": "^2.3.5",
823
+ "enhanced-resolve": "5.21.6",
824
+ "jiti": "^2.7.0",
825
+ "lightningcss": "1.32.0",
826
+ "magic-string": "^0.30.21",
827
+ "source-map-js": "^1.2.1",
828
+ "tailwindcss": "4.3.1"
829
+ }
830
+ },
831
+ "node_modules/@tailwindcss/oxide": {
832
+ "version": "4.3.1",
833
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.1.tgz",
834
+ "integrity": "sha512-yVPyo8RNkabVr3O2EhHEE0Rewu7YKzc1DhIqfL46LKveFrmu9XbDazNOJY7/GRuvw1h6u3utWnR29H/p5JPlgA==",
835
+ "license": "MIT",
836
+ "engines": {
837
+ "node": ">= 20"
838
+ },
839
+ "optionalDependencies": {
840
+ "@tailwindcss/oxide-android-arm64": "4.3.1",
841
+ "@tailwindcss/oxide-darwin-arm64": "4.3.1",
842
+ "@tailwindcss/oxide-darwin-x64": "4.3.1",
843
+ "@tailwindcss/oxide-freebsd-x64": "4.3.1",
844
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.1",
845
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.3.1",
846
+ "@tailwindcss/oxide-linux-arm64-musl": "4.3.1",
847
+ "@tailwindcss/oxide-linux-x64-gnu": "4.3.1",
848
+ "@tailwindcss/oxide-linux-x64-musl": "4.3.1",
849
+ "@tailwindcss/oxide-wasm32-wasi": "4.3.1",
850
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.3.1",
851
+ "@tailwindcss/oxide-win32-x64-msvc": "4.3.1"
852
+ }
853
+ },
854
+ "node_modules/@tailwindcss/oxide-android-arm64": {
855
+ "version": "4.3.1",
856
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.1.tgz",
857
+ "integrity": "sha512-SVlyf61g374l5cHyg8x9kf5xmLcOaxvOTsbsqDnSsDJaKOEFZ7GCvi84VAVGpxojYOs1+3K6M0UjXfqPU8vmOQ==",
858
+ "cpu": [
859
+ "arm64"
860
+ ],
861
+ "license": "MIT",
862
+ "optional": true,
863
+ "os": [
864
+ "android"
865
+ ],
866
+ "engines": {
867
+ "node": ">= 20"
868
+ }
869
+ },
870
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
871
+ "version": "4.3.1",
872
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.1.tgz",
873
+ "integrity": "sha512-hVnWLwv+e/l7c4WKyVtHVrIPvYdqWHjRB3MDIqARynzFtnQg85kmQEFCbV9Ja0VVx4xXTIiDWY60Y7iz/iNoDA==",
874
+ "cpu": [
875
+ "arm64"
876
+ ],
877
+ "license": "MIT",
878
+ "optional": true,
879
+ "os": [
880
+ "darwin"
881
+ ],
882
+ "engines": {
883
+ "node": ">= 20"
884
+ }
885
+ },
886
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
887
+ "version": "4.3.1",
888
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.1.tgz",
889
+ "integrity": "sha512-Cf7abu0WVgbhU7ANgPUnSAvm7nCvMweusHb8FnaHlLfv/Caq4GYaEZg7ZImzzmjx4lIAfuS8q+eLIS7A7IzxIg==",
890
+ "cpu": [
891
+ "x64"
892
+ ],
893
+ "license": "MIT",
894
+ "optional": true,
895
+ "os": [
896
+ "darwin"
897
+ ],
898
+ "engines": {
899
+ "node": ">= 20"
900
+ }
901
+ },
902
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
903
+ "version": "4.3.1",
904
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.1.tgz",
905
+ "integrity": "sha512-ZZqzX2Y+GXtXXfqSfpJhDm60OoZfvLHLCgm+J7NVqgHHJjG/m9ugZI77RwTsVd4fnBJuCFP6Ae6kTJb71UdS8g==",
906
+ "cpu": [
907
+ "x64"
908
+ ],
909
+ "license": "MIT",
910
+ "optional": true,
911
+ "os": [
912
+ "freebsd"
913
+ ],
914
+ "engines": {
915
+ "node": ">= 20"
916
+ }
917
+ },
918
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
919
+ "version": "4.3.1",
920
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.1.tgz",
921
+ "integrity": "sha512-/Ah/xik0LaMYfv9DZ0S/t4pBlBNYOcqtRwusjgovHkvT8ixueWCLyJjsaF5kQIckjb4IT8Q6K6p/iPmZMixYgg==",
922
+ "cpu": [
923
+ "arm"
924
+ ],
925
+ "license": "MIT",
926
+ "optional": true,
927
+ "os": [
928
+ "linux"
929
+ ],
930
+ "engines": {
931
+ "node": ">= 20"
932
+ }
933
+ },
934
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
935
+ "version": "4.3.1",
936
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.1.tgz",
937
+ "integrity": "sha512-gqdFoVJlw444GvpnheZLHmvTzSxI/cOUUh2KSNejQjTcYkW062SVD+En0rUgD+QV91bz1XGIGtt1HJd48xUGbQ==",
938
+ "cpu": [
939
+ "arm64"
940
+ ],
941
+ "license": "MIT",
942
+ "optional": true,
943
+ "os": [
944
+ "linux"
945
+ ],
946
+ "engines": {
947
+ "node": ">= 20"
948
+ }
949
+ },
950
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
951
+ "version": "4.3.1",
952
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.1.tgz",
953
+ "integrity": "sha512-Bwv9KwOvE0VKa86xPFif9b9c3Y1NxOV1P0gLti/IYaWEsQYZXDlxfGEtA8mdDZ7SG3wyNXAWYT5SIn3giL57oA==",
954
+ "cpu": [
955
+ "arm64"
956
+ ],
957
+ "license": "MIT",
958
+ "optional": true,
959
+ "os": [
960
+ "linux"
961
+ ],
962
+ "engines": {
963
+ "node": ">= 20"
964
+ }
965
+ },
966
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
967
+ "version": "4.3.1",
968
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.1.tgz",
969
+ "integrity": "sha512-Ymi8O8T15HYQdOUWUtTI6ldN0neHP85FC+Qz32xTcZ7iJXtem/x8ITev0o1e9e5rkqj4lONZfTRLvkmin1+tKg==",
970
+ "cpu": [
971
+ "x64"
972
+ ],
973
+ "license": "MIT",
974
+ "optional": true,
975
+ "os": [
976
+ "linux"
977
+ ],
978
+ "engines": {
979
+ "node": ">= 20"
980
+ }
981
+ },
982
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
983
+ "version": "4.3.1",
984
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.1.tgz",
985
+ "integrity": "sha512-M+P/91qJ6uILLw4k2G93GMDRAXj61SMvFQYt39AqvUqYgExXpLL5aepfns7sj4HiAQeolirQF9E0lzRvdf4zPQ==",
986
+ "cpu": [
987
+ "x64"
988
+ ],
989
+ "license": "MIT",
990
+ "optional": true,
991
+ "os": [
992
+ "linux"
993
+ ],
994
+ "engines": {
995
+ "node": ">= 20"
996
+ }
997
+ },
998
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
999
+ "version": "4.3.1",
1000
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.1.tgz",
1001
+ "integrity": "sha512-zsM8uOeqvVGHsAXsJxsT28ttosFahLJKCLOTUBqRAtKnVgGSRitds9T432QiT8b77Yga7JIBkulIRRlJPtYhRA==",
1002
+ "bundleDependencies": [
1003
+ "@napi-rs/wasm-runtime",
1004
+ "@emnapi/core",
1005
+ "@emnapi/runtime",
1006
+ "@tybys/wasm-util",
1007
+ "@emnapi/wasi-threads",
1008
+ "tslib"
1009
+ ],
1010
+ "cpu": [
1011
+ "wasm32"
1012
+ ],
1013
+ "license": "MIT",
1014
+ "optional": true,
1015
+ "dependencies": {
1016
+ "@emnapi/core": "^1.10.0",
1017
+ "@emnapi/runtime": "^1.10.0",
1018
+ "@emnapi/wasi-threads": "^1.2.1",
1019
+ "@napi-rs/wasm-runtime": "^1.1.4",
1020
+ "@tybys/wasm-util": "^0.10.2",
1021
+ "tslib": "^2.8.1"
1022
+ },
1023
+ "engines": {
1024
+ "node": ">=14.0.0"
1025
+ }
1026
+ },
1027
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
1028
+ "version": "4.3.1",
1029
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.1.tgz",
1030
+ "integrity": "sha512-aiNvSq9BsVk8V513lDKlrCFAgf8qBMPZTpgEhInL+NwQqs97mYmupVMrPrgBBSL8Pv/0zXu9MrMF9rMun1ZeNg==",
1031
+ "cpu": [
1032
+ "arm64"
1033
+ ],
1034
+ "license": "MIT",
1035
+ "optional": true,
1036
+ "os": [
1037
+ "win32"
1038
+ ],
1039
+ "engines": {
1040
+ "node": ">= 20"
1041
+ }
1042
+ },
1043
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
1044
+ "version": "4.3.1",
1045
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.1.tgz",
1046
+ "integrity": "sha512-xDEyu1rg290472FEGaKHnzyDyh5QH+AlWvsU5hMoMtPpzmKlRI0jaYKCgSHDYtaQWZOYbMaduSyCwFwY4n1HmA==",
1047
+ "cpu": [
1048
+ "x64"
1049
+ ],
1050
+ "license": "MIT",
1051
+ "optional": true,
1052
+ "os": [
1053
+ "win32"
1054
+ ],
1055
+ "engines": {
1056
+ "node": ">= 20"
1057
+ }
1058
+ },
1059
+ "node_modules/@tailwindcss/vite": {
1060
+ "version": "4.3.1",
1061
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.1.tgz",
1062
+ "integrity": "sha512-hItDHuIIlEV61R+faXu66s1K36aTurO/Qw0e45Vskz57gXl9pWOT6eg3zmcEui6CZXddbN7zd41bwmvag4JGwQ==",
1063
+ "license": "MIT",
1064
+ "dependencies": {
1065
+ "@tailwindcss/node": "4.3.1",
1066
+ "@tailwindcss/oxide": "4.3.1",
1067
+ "tailwindcss": "4.3.1"
1068
+ },
1069
+ "peerDependencies": {
1070
+ "vite": "^5.2.0 || ^6 || ^7 || ^8"
1071
+ }
1072
+ },
1073
+ "node_modules/@tybys/wasm-util": {
1074
+ "version": "0.10.2",
1075
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
1076
+ "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
1077
+ "license": "MIT",
1078
+ "optional": true,
1079
+ "dependencies": {
1080
+ "tslib": "^2.4.0"
1081
+ }
1082
+ },
1083
+ "node_modules/@types/esrecurse": {
1084
+ "version": "4.3.1",
1085
+ "resolved": "https://registry.npmjs.org/@types/esrecurse/-/esrecurse-4.3.1.tgz",
1086
+ "integrity": "sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==",
1087
+ "dev": true,
1088
+ "license": "MIT"
1089
+ },
1090
+ "node_modules/@types/estree": {
1091
+ "version": "1.0.9",
1092
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
1093
+ "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
1094
+ "dev": true,
1095
+ "license": "MIT"
1096
+ },
1097
+ "node_modules/@types/json-schema": {
1098
+ "version": "7.0.15",
1099
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
1100
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
1101
+ "dev": true,
1102
+ "license": "MIT"
1103
+ },
1104
+ "node_modules/@types/react": {
1105
+ "version": "19.2.17",
1106
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz",
1107
+ "integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==",
1108
+ "dev": true,
1109
+ "license": "MIT",
1110
+ "dependencies": {
1111
+ "csstype": "^3.2.2"
1112
+ }
1113
+ },
1114
+ "node_modules/@types/react-dom": {
1115
+ "version": "19.2.3",
1116
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
1117
+ "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
1118
+ "dev": true,
1119
+ "license": "MIT",
1120
+ "peerDependencies": {
1121
+ "@types/react": "^19.2.0"
1122
+ }
1123
+ },
1124
+ "node_modules/@vitejs/plugin-react": {
1125
+ "version": "6.0.2",
1126
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.2.tgz",
1127
+ "integrity": "sha512-DlSMqo4WhThw4vB8Mpn0Woe9J+Jfq1geJ61AKW0QEgLzGMNwtIMdxbDUzLxcun8W7NbJO0e2Jg/Nxm3cCSVzzg==",
1128
+ "dev": true,
1129
+ "license": "MIT",
1130
+ "dependencies": {
1131
+ "@rolldown/pluginutils": "^1.0.0"
1132
+ },
1133
+ "engines": {
1134
+ "node": "^20.19.0 || >=22.12.0"
1135
+ },
1136
+ "peerDependencies": {
1137
+ "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0",
1138
+ "babel-plugin-react-compiler": "^1.0.0",
1139
+ "vite": "^8.0.0"
1140
+ },
1141
+ "peerDependenciesMeta": {
1142
+ "@rolldown/plugin-babel": {
1143
+ "optional": true
1144
+ },
1145
+ "babel-plugin-react-compiler": {
1146
+ "optional": true
1147
+ }
1148
+ }
1149
+ },
1150
+ "node_modules/acorn": {
1151
+ "version": "8.17.0",
1152
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.17.0.tgz",
1153
+ "integrity": "sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==",
1154
+ "dev": true,
1155
+ "license": "MIT",
1156
+ "bin": {
1157
+ "acorn": "bin/acorn"
1158
+ },
1159
+ "engines": {
1160
+ "node": ">=0.4.0"
1161
+ }
1162
+ },
1163
+ "node_modules/acorn-jsx": {
1164
+ "version": "5.3.2",
1165
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
1166
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
1167
+ "dev": true,
1168
+ "license": "MIT",
1169
+ "peerDependencies": {
1170
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
1171
+ }
1172
+ },
1173
+ "node_modules/ajv": {
1174
+ "version": "6.15.0",
1175
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz",
1176
+ "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==",
1177
+ "dev": true,
1178
+ "license": "MIT",
1179
+ "dependencies": {
1180
+ "fast-deep-equal": "^3.1.1",
1181
+ "fast-json-stable-stringify": "^2.0.0",
1182
+ "json-schema-traverse": "^0.4.1",
1183
+ "uri-js": "^4.2.2"
1184
+ },
1185
+ "funding": {
1186
+ "type": "github",
1187
+ "url": "https://github.com/sponsors/epoberezkin"
1188
+ }
1189
+ },
1190
+ "node_modules/autoprefixer": {
1191
+ "version": "10.5.0",
1192
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.5.0.tgz",
1193
+ "integrity": "sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==",
1194
+ "dev": true,
1195
+ "funding": [
1196
+ {
1197
+ "type": "opencollective",
1198
+ "url": "https://opencollective.com/postcss/"
1199
+ },
1200
+ {
1201
+ "type": "tidelift",
1202
+ "url": "https://tidelift.com/funding/github/npm/autoprefixer"
1203
+ },
1204
+ {
1205
+ "type": "github",
1206
+ "url": "https://github.com/sponsors/ai"
1207
+ }
1208
+ ],
1209
+ "license": "MIT",
1210
+ "dependencies": {
1211
+ "browserslist": "^4.28.2",
1212
+ "caniuse-lite": "^1.0.30001787",
1213
+ "fraction.js": "^5.3.4",
1214
+ "picocolors": "^1.1.1",
1215
+ "postcss-value-parser": "^4.2.0"
1216
+ },
1217
+ "bin": {
1218
+ "autoprefixer": "bin/autoprefixer"
1219
+ },
1220
+ "engines": {
1221
+ "node": "^10 || ^12 || >=14"
1222
+ },
1223
+ "peerDependencies": {
1224
+ "postcss": "^8.1.0"
1225
+ }
1226
+ },
1227
+ "node_modules/balanced-match": {
1228
+ "version": "4.0.4",
1229
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
1230
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
1231
+ "dev": true,
1232
+ "license": "MIT",
1233
+ "engines": {
1234
+ "node": "18 || 20 || >=22"
1235
+ }
1236
+ },
1237
+ "node_modules/baseline-browser-mapping": {
1238
+ "version": "2.10.37",
1239
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.37.tgz",
1240
+ "integrity": "sha512-girxaJ7WZssDOFhzCGZTDKoTa1gk6A1TbflaYTpykLJ4UU9Fz9kx1aREM8JCuoVHbL8X8T/mJg7w2oYSq72Oig==",
1241
+ "dev": true,
1242
+ "license": "Apache-2.0",
1243
+ "bin": {
1244
+ "baseline-browser-mapping": "dist/cli.cjs"
1245
+ },
1246
+ "engines": {
1247
+ "node": ">=6.0.0"
1248
+ }
1249
+ },
1250
+ "node_modules/brace-expansion": {
1251
+ "version": "5.0.6",
1252
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
1253
+ "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
1254
+ "dev": true,
1255
+ "license": "MIT",
1256
+ "dependencies": {
1257
+ "balanced-match": "^4.0.2"
1258
+ },
1259
+ "engines": {
1260
+ "node": "18 || 20 || >=22"
1261
+ }
1262
+ },
1263
+ "node_modules/browserslist": {
1264
+ "version": "4.28.2",
1265
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz",
1266
+ "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==",
1267
+ "dev": true,
1268
+ "funding": [
1269
+ {
1270
+ "type": "opencollective",
1271
+ "url": "https://opencollective.com/browserslist"
1272
+ },
1273
+ {
1274
+ "type": "tidelift",
1275
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
1276
+ },
1277
+ {
1278
+ "type": "github",
1279
+ "url": "https://github.com/sponsors/ai"
1280
+ }
1281
+ ],
1282
+ "license": "MIT",
1283
+ "dependencies": {
1284
+ "baseline-browser-mapping": "^2.10.12",
1285
+ "caniuse-lite": "^1.0.30001782",
1286
+ "electron-to-chromium": "^1.5.328",
1287
+ "node-releases": "^2.0.36",
1288
+ "update-browserslist-db": "^1.2.3"
1289
+ },
1290
+ "bin": {
1291
+ "browserslist": "cli.js"
1292
+ },
1293
+ "engines": {
1294
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1295
+ }
1296
+ },
1297
+ "node_modules/caniuse-lite": {
1298
+ "version": "1.0.30001799",
1299
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz",
1300
+ "integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==",
1301
+ "dev": true,
1302
+ "funding": [
1303
+ {
1304
+ "type": "opencollective",
1305
+ "url": "https://opencollective.com/browserslist"
1306
+ },
1307
+ {
1308
+ "type": "tidelift",
1309
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1310
+ },
1311
+ {
1312
+ "type": "github",
1313
+ "url": "https://github.com/sponsors/ai"
1314
+ }
1315
+ ],
1316
+ "license": "CC-BY-4.0"
1317
+ },
1318
+ "node_modules/convert-source-map": {
1319
+ "version": "2.0.0",
1320
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
1321
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
1322
+ "dev": true,
1323
+ "license": "MIT"
1324
+ },
1325
+ "node_modules/cross-spawn": {
1326
+ "version": "7.0.6",
1327
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
1328
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
1329
+ "dev": true,
1330
+ "license": "MIT",
1331
+ "dependencies": {
1332
+ "path-key": "^3.1.0",
1333
+ "shebang-command": "^2.0.0",
1334
+ "which": "^2.0.1"
1335
+ },
1336
+ "engines": {
1337
+ "node": ">= 8"
1338
+ }
1339
+ },
1340
+ "node_modules/csstype": {
1341
+ "version": "3.2.3",
1342
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
1343
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
1344
+ "dev": true,
1345
+ "license": "MIT"
1346
+ },
1347
+ "node_modules/debug": {
1348
+ "version": "4.4.3",
1349
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1350
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1351
+ "dev": true,
1352
+ "license": "MIT",
1353
+ "dependencies": {
1354
+ "ms": "^2.1.3"
1355
+ },
1356
+ "engines": {
1357
+ "node": ">=6.0"
1358
+ },
1359
+ "peerDependenciesMeta": {
1360
+ "supports-color": {
1361
+ "optional": true
1362
+ }
1363
+ }
1364
+ },
1365
+ "node_modules/deep-is": {
1366
+ "version": "0.1.4",
1367
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
1368
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
1369
+ "dev": true,
1370
+ "license": "MIT"
1371
+ },
1372
+ "node_modules/detect-libc": {
1373
+ "version": "2.1.2",
1374
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1375
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1376
+ "license": "Apache-2.0",
1377
+ "engines": {
1378
+ "node": ">=8"
1379
+ }
1380
+ },
1381
+ "node_modules/electron-to-chromium": {
1382
+ "version": "1.5.372",
1383
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.372.tgz",
1384
+ "integrity": "sha512-M3yhbAlilnwqC8D21t28UCDGHyitShTmmLRU/H+b74P6Ski16Nb9HONYEaVpMj/pwC7BEo5B95FpjODLCWbtfA==",
1385
+ "dev": true,
1386
+ "license": "ISC"
1387
+ },
1388
+ "node_modules/enhanced-resolve": {
1389
+ "version": "5.21.6",
1390
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.6.tgz",
1391
+ "integrity": "sha512-aNnGCvbJ/RIyWo1IuhNdVjnNF+EjH9wpzpNHt+ci/m9He9LJvUN8wrCcXjp9cWsGNAuvSpVFTx/vraAFQ8qGjQ==",
1392
+ "license": "MIT",
1393
+ "dependencies": {
1394
+ "graceful-fs": "^4.2.4",
1395
+ "tapable": "^2.3.3"
1396
+ },
1397
+ "engines": {
1398
+ "node": ">=10.13.0"
1399
+ }
1400
+ },
1401
+ "node_modules/escalade": {
1402
+ "version": "3.2.0",
1403
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
1404
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
1405
+ "dev": true,
1406
+ "license": "MIT",
1407
+ "engines": {
1408
+ "node": ">=6"
1409
+ }
1410
+ },
1411
+ "node_modules/escape-string-regexp": {
1412
+ "version": "4.0.0",
1413
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1414
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1415
+ "dev": true,
1416
+ "license": "MIT",
1417
+ "engines": {
1418
+ "node": ">=10"
1419
+ },
1420
+ "funding": {
1421
+ "url": "https://github.com/sponsors/sindresorhus"
1422
+ }
1423
+ },
1424
+ "node_modules/eslint": {
1425
+ "version": "10.5.0",
1426
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.5.0.tgz",
1427
+ "integrity": "sha512-1y+7C+vi12bUK1IpZeaV3gsH9fHLBmPvYmPx42pvT/E9yG0IC8g3PUZZgp0+JLJl7ZDK0flc2gc+Aw9dpCvIsQ==",
1428
+ "dev": true,
1429
+ "license": "MIT",
1430
+ "workspaces": [
1431
+ "packages/*"
1432
+ ],
1433
+ "dependencies": {
1434
+ "@eslint-community/eslint-utils": "^4.8.0",
1435
+ "@eslint-community/regexpp": "^4.12.2",
1436
+ "@eslint/config-array": "^0.23.5",
1437
+ "@eslint/config-helpers": "^0.6.0",
1438
+ "@eslint/core": "^1.2.1",
1439
+ "@eslint/plugin-kit": "^0.7.2",
1440
+ "@humanfs/node": "^0.16.6",
1441
+ "@humanwhocodes/module-importer": "^1.0.1",
1442
+ "@humanwhocodes/retry": "^0.4.2",
1443
+ "@types/estree": "^1.0.6",
1444
+ "ajv": "^6.14.0",
1445
+ "cross-spawn": "^7.0.6",
1446
+ "debug": "^4.3.2",
1447
+ "escape-string-regexp": "^4.0.0",
1448
+ "eslint-scope": "^9.1.2",
1449
+ "eslint-visitor-keys": "^5.0.1",
1450
+ "espree": "^11.2.0",
1451
+ "esquery": "^1.7.0",
1452
+ "esutils": "^2.0.2",
1453
+ "fast-deep-equal": "^3.1.3",
1454
+ "file-entry-cache": "^8.0.0",
1455
+ "find-up": "^5.0.0",
1456
+ "glob-parent": "^6.0.2",
1457
+ "ignore": "^5.2.0",
1458
+ "imurmurhash": "^0.1.4",
1459
+ "is-glob": "^4.0.0",
1460
+ "json-stable-stringify-without-jsonify": "^1.0.1",
1461
+ "minimatch": "^10.2.4",
1462
+ "natural-compare": "^1.4.0",
1463
+ "optionator": "^0.9.3"
1464
+ },
1465
+ "bin": {
1466
+ "eslint": "bin/eslint.js"
1467
+ },
1468
+ "engines": {
1469
+ "node": "^20.19.0 || ^22.13.0 || >=24"
1470
+ },
1471
+ "funding": {
1472
+ "url": "https://eslint.org/donate"
1473
+ },
1474
+ "peerDependencies": {
1475
+ "jiti": "*"
1476
+ },
1477
+ "peerDependenciesMeta": {
1478
+ "jiti": {
1479
+ "optional": true
1480
+ }
1481
+ }
1482
+ },
1483
+ "node_modules/eslint-plugin-react-hooks": {
1484
+ "version": "7.1.1",
1485
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.1.1.tgz",
1486
+ "integrity": "sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==",
1487
+ "dev": true,
1488
+ "license": "MIT",
1489
+ "dependencies": {
1490
+ "@babel/core": "^7.24.4",
1491
+ "@babel/parser": "^7.24.4",
1492
+ "hermes-parser": "^0.25.1",
1493
+ "zod": "^3.25.0 || ^4.0.0",
1494
+ "zod-validation-error": "^3.5.0 || ^4.0.0"
1495
+ },
1496
+ "engines": {
1497
+ "node": ">=18"
1498
+ },
1499
+ "peerDependencies": {
1500
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0"
1501
+ }
1502
+ },
1503
+ "node_modules/eslint-plugin-react-refresh": {
1504
+ "version": "0.5.2",
1505
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.2.tgz",
1506
+ "integrity": "sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==",
1507
+ "dev": true,
1508
+ "license": "MIT",
1509
+ "peerDependencies": {
1510
+ "eslint": "^9 || ^10"
1511
+ }
1512
+ },
1513
+ "node_modules/eslint-scope": {
1514
+ "version": "9.1.2",
1515
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-9.1.2.tgz",
1516
+ "integrity": "sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==",
1517
+ "dev": true,
1518
+ "license": "BSD-2-Clause",
1519
+ "dependencies": {
1520
+ "@types/esrecurse": "^4.3.1",
1521
+ "@types/estree": "^1.0.8",
1522
+ "esrecurse": "^4.3.0",
1523
+ "estraverse": "^5.2.0"
1524
+ },
1525
+ "engines": {
1526
+ "node": "^20.19.0 || ^22.13.0 || >=24"
1527
+ },
1528
+ "funding": {
1529
+ "url": "https://opencollective.com/eslint"
1530
+ }
1531
+ },
1532
+ "node_modules/eslint-visitor-keys": {
1533
+ "version": "5.0.1",
1534
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
1535
+ "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
1536
+ "dev": true,
1537
+ "license": "Apache-2.0",
1538
+ "engines": {
1539
+ "node": "^20.19.0 || ^22.13.0 || >=24"
1540
+ },
1541
+ "funding": {
1542
+ "url": "https://opencollective.com/eslint"
1543
+ }
1544
+ },
1545
+ "node_modules/espree": {
1546
+ "version": "11.2.0",
1547
+ "resolved": "https://registry.npmjs.org/espree/-/espree-11.2.0.tgz",
1548
+ "integrity": "sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==",
1549
+ "dev": true,
1550
+ "license": "BSD-2-Clause",
1551
+ "dependencies": {
1552
+ "acorn": "^8.16.0",
1553
+ "acorn-jsx": "^5.3.2",
1554
+ "eslint-visitor-keys": "^5.0.1"
1555
+ },
1556
+ "engines": {
1557
+ "node": "^20.19.0 || ^22.13.0 || >=24"
1558
+ },
1559
+ "funding": {
1560
+ "url": "https://opencollective.com/eslint"
1561
+ }
1562
+ },
1563
+ "node_modules/esquery": {
1564
+ "version": "1.7.0",
1565
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz",
1566
+ "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
1567
+ "dev": true,
1568
+ "license": "BSD-3-Clause",
1569
+ "dependencies": {
1570
+ "estraverse": "^5.1.0"
1571
+ },
1572
+ "engines": {
1573
+ "node": ">=0.10"
1574
+ }
1575
+ },
1576
+ "node_modules/esrecurse": {
1577
+ "version": "4.3.0",
1578
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
1579
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
1580
+ "dev": true,
1581
+ "license": "BSD-2-Clause",
1582
+ "dependencies": {
1583
+ "estraverse": "^5.2.0"
1584
+ },
1585
+ "engines": {
1586
+ "node": ">=4.0"
1587
+ }
1588
+ },
1589
+ "node_modules/estraverse": {
1590
+ "version": "5.3.0",
1591
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
1592
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
1593
+ "dev": true,
1594
+ "license": "BSD-2-Clause",
1595
+ "engines": {
1596
+ "node": ">=4.0"
1597
+ }
1598
+ },
1599
+ "node_modules/esutils": {
1600
+ "version": "2.0.3",
1601
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
1602
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
1603
+ "dev": true,
1604
+ "license": "BSD-2-Clause",
1605
+ "engines": {
1606
+ "node": ">=0.10.0"
1607
+ }
1608
+ },
1609
+ "node_modules/fast-deep-equal": {
1610
+ "version": "3.1.3",
1611
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1612
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
1613
+ "dev": true,
1614
+ "license": "MIT"
1615
+ },
1616
+ "node_modules/fast-json-stable-stringify": {
1617
+ "version": "2.1.0",
1618
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1619
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
1620
+ "dev": true,
1621
+ "license": "MIT"
1622
+ },
1623
+ "node_modules/fast-levenshtein": {
1624
+ "version": "2.0.6",
1625
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1626
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
1627
+ "dev": true,
1628
+ "license": "MIT"
1629
+ },
1630
+ "node_modules/fdir": {
1631
+ "version": "6.5.0",
1632
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
1633
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
1634
+ "license": "MIT",
1635
+ "engines": {
1636
+ "node": ">=12.0.0"
1637
+ },
1638
+ "peerDependencies": {
1639
+ "picomatch": "^3 || ^4"
1640
+ },
1641
+ "peerDependenciesMeta": {
1642
+ "picomatch": {
1643
+ "optional": true
1644
+ }
1645
+ }
1646
+ },
1647
+ "node_modules/file-entry-cache": {
1648
+ "version": "8.0.0",
1649
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
1650
+ "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
1651
+ "dev": true,
1652
+ "license": "MIT",
1653
+ "dependencies": {
1654
+ "flat-cache": "^4.0.0"
1655
+ },
1656
+ "engines": {
1657
+ "node": ">=16.0.0"
1658
+ }
1659
+ },
1660
+ "node_modules/find-up": {
1661
+ "version": "5.0.0",
1662
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
1663
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
1664
+ "dev": true,
1665
+ "license": "MIT",
1666
+ "dependencies": {
1667
+ "locate-path": "^6.0.0",
1668
+ "path-exists": "^4.0.0"
1669
+ },
1670
+ "engines": {
1671
+ "node": ">=10"
1672
+ },
1673
+ "funding": {
1674
+ "url": "https://github.com/sponsors/sindresorhus"
1675
+ }
1676
+ },
1677
+ "node_modules/flat-cache": {
1678
+ "version": "4.0.1",
1679
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
1680
+ "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
1681
+ "dev": true,
1682
+ "license": "MIT",
1683
+ "dependencies": {
1684
+ "flatted": "^3.2.9",
1685
+ "keyv": "^4.5.4"
1686
+ },
1687
+ "engines": {
1688
+ "node": ">=16"
1689
+ }
1690
+ },
1691
+ "node_modules/flatted": {
1692
+ "version": "3.4.2",
1693
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
1694
+ "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
1695
+ "dev": true,
1696
+ "license": "ISC"
1697
+ },
1698
+ "node_modules/fraction.js": {
1699
+ "version": "5.3.4",
1700
+ "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz",
1701
+ "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==",
1702
+ "dev": true,
1703
+ "license": "MIT",
1704
+ "engines": {
1705
+ "node": "*"
1706
+ },
1707
+ "funding": {
1708
+ "type": "github",
1709
+ "url": "https://github.com/sponsors/rawify"
1710
+ }
1711
+ },
1712
+ "node_modules/framer-motion": {
1713
+ "version": "12.40.0",
1714
+ "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-12.40.0.tgz",
1715
+ "integrity": "sha512-uaBd3qC1v3KQqBEjwTUd183K6PbS+j0yR9w9VmEOLWA/tnUcSn8Xa3uck7t4dgpDoUss8xQTcj8W2L07lrnLFg==",
1716
+ "license": "MIT",
1717
+ "dependencies": {
1718
+ "motion-dom": "^12.40.0",
1719
+ "motion-utils": "^12.39.0",
1720
+ "tslib": "^2.4.0"
1721
+ },
1722
+ "peerDependencies": {
1723
+ "@emotion/is-prop-valid": "*",
1724
+ "react": "^18.0.0 || ^19.0.0",
1725
+ "react-dom": "^18.0.0 || ^19.0.0"
1726
+ },
1727
+ "peerDependenciesMeta": {
1728
+ "@emotion/is-prop-valid": {
1729
+ "optional": true
1730
+ },
1731
+ "react": {
1732
+ "optional": true
1733
+ },
1734
+ "react-dom": {
1735
+ "optional": true
1736
+ }
1737
+ }
1738
+ },
1739
+ "node_modules/fsevents": {
1740
+ "version": "2.3.3",
1741
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1742
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1743
+ "hasInstallScript": true,
1744
+ "license": "MIT",
1745
+ "optional": true,
1746
+ "os": [
1747
+ "darwin"
1748
+ ],
1749
+ "engines": {
1750
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1751
+ }
1752
+ },
1753
+ "node_modules/gensync": {
1754
+ "version": "1.0.0-beta.2",
1755
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
1756
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
1757
+ "dev": true,
1758
+ "license": "MIT",
1759
+ "engines": {
1760
+ "node": ">=6.9.0"
1761
+ }
1762
+ },
1763
+ "node_modules/glob-parent": {
1764
+ "version": "6.0.2",
1765
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
1766
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
1767
+ "dev": true,
1768
+ "license": "ISC",
1769
+ "dependencies": {
1770
+ "is-glob": "^4.0.3"
1771
+ },
1772
+ "engines": {
1773
+ "node": ">=10.13.0"
1774
+ }
1775
+ },
1776
+ "node_modules/globals": {
1777
+ "version": "17.6.0",
1778
+ "resolved": "https://registry.npmjs.org/globals/-/globals-17.6.0.tgz",
1779
+ "integrity": "sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==",
1780
+ "dev": true,
1781
+ "license": "MIT",
1782
+ "engines": {
1783
+ "node": ">=18"
1784
+ },
1785
+ "funding": {
1786
+ "url": "https://github.com/sponsors/sindresorhus"
1787
+ }
1788
+ },
1789
+ "node_modules/graceful-fs": {
1790
+ "version": "4.2.11",
1791
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1792
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1793
+ "license": "ISC"
1794
+ },
1795
+ "node_modules/hermes-estree": {
1796
+ "version": "0.25.1",
1797
+ "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz",
1798
+ "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==",
1799
+ "dev": true,
1800
+ "license": "MIT"
1801
+ },
1802
+ "node_modules/hermes-parser": {
1803
+ "version": "0.25.1",
1804
+ "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz",
1805
+ "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==",
1806
+ "dev": true,
1807
+ "license": "MIT",
1808
+ "dependencies": {
1809
+ "hermes-estree": "0.25.1"
1810
+ }
1811
+ },
1812
+ "node_modules/ignore": {
1813
+ "version": "5.3.2",
1814
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
1815
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
1816
+ "dev": true,
1817
+ "license": "MIT",
1818
+ "engines": {
1819
+ "node": ">= 4"
1820
+ }
1821
+ },
1822
+ "node_modules/imurmurhash": {
1823
+ "version": "0.1.4",
1824
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
1825
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
1826
+ "dev": true,
1827
+ "license": "MIT",
1828
+ "engines": {
1829
+ "node": ">=0.8.19"
1830
+ }
1831
+ },
1832
+ "node_modules/is-extglob": {
1833
+ "version": "2.1.1",
1834
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1835
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
1836
+ "dev": true,
1837
+ "license": "MIT",
1838
+ "engines": {
1839
+ "node": ">=0.10.0"
1840
+ }
1841
+ },
1842
+ "node_modules/is-glob": {
1843
+ "version": "4.0.3",
1844
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
1845
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1846
+ "dev": true,
1847
+ "license": "MIT",
1848
+ "dependencies": {
1849
+ "is-extglob": "^2.1.1"
1850
+ },
1851
+ "engines": {
1852
+ "node": ">=0.10.0"
1853
+ }
1854
+ },
1855
+ "node_modules/isexe": {
1856
+ "version": "2.0.0",
1857
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1858
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
1859
+ "dev": true,
1860
+ "license": "ISC"
1861
+ },
1862
+ "node_modules/jiti": {
1863
+ "version": "2.7.0",
1864
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
1865
+ "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
1866
+ "license": "MIT",
1867
+ "bin": {
1868
+ "jiti": "lib/jiti-cli.mjs"
1869
+ }
1870
+ },
1871
+ "node_modules/js-tokens": {
1872
+ "version": "4.0.0",
1873
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
1874
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
1875
+ "dev": true,
1876
+ "license": "MIT"
1877
+ },
1878
+ "node_modules/jsesc": {
1879
+ "version": "3.1.0",
1880
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
1881
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
1882
+ "dev": true,
1883
+ "license": "MIT",
1884
+ "bin": {
1885
+ "jsesc": "bin/jsesc"
1886
+ },
1887
+ "engines": {
1888
+ "node": ">=6"
1889
+ }
1890
+ },
1891
+ "node_modules/json-buffer": {
1892
+ "version": "3.0.1",
1893
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
1894
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
1895
+ "dev": true,
1896
+ "license": "MIT"
1897
+ },
1898
+ "node_modules/json-schema-traverse": {
1899
+ "version": "0.4.1",
1900
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
1901
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
1902
+ "dev": true,
1903
+ "license": "MIT"
1904
+ },
1905
+ "node_modules/json-stable-stringify-without-jsonify": {
1906
+ "version": "1.0.1",
1907
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
1908
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
1909
+ "dev": true,
1910
+ "license": "MIT"
1911
+ },
1912
+ "node_modules/json5": {
1913
+ "version": "2.2.3",
1914
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
1915
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
1916
+ "dev": true,
1917
+ "license": "MIT",
1918
+ "bin": {
1919
+ "json5": "lib/cli.js"
1920
+ },
1921
+ "engines": {
1922
+ "node": ">=6"
1923
+ }
1924
+ },
1925
+ "node_modules/keyv": {
1926
+ "version": "4.5.4",
1927
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
1928
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
1929
+ "dev": true,
1930
+ "license": "MIT",
1931
+ "dependencies": {
1932
+ "json-buffer": "3.0.1"
1933
+ }
1934
+ },
1935
+ "node_modules/levn": {
1936
+ "version": "0.4.1",
1937
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
1938
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
1939
+ "dev": true,
1940
+ "license": "MIT",
1941
+ "dependencies": {
1942
+ "prelude-ls": "^1.2.1",
1943
+ "type-check": "~0.4.0"
1944
+ },
1945
+ "engines": {
1946
+ "node": ">= 0.8.0"
1947
+ }
1948
+ },
1949
+ "node_modules/lightningcss": {
1950
+ "version": "1.32.0",
1951
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
1952
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
1953
+ "license": "MPL-2.0",
1954
+ "dependencies": {
1955
+ "detect-libc": "^2.0.3"
1956
+ },
1957
+ "engines": {
1958
+ "node": ">= 12.0.0"
1959
+ },
1960
+ "funding": {
1961
+ "type": "opencollective",
1962
+ "url": "https://opencollective.com/parcel"
1963
+ },
1964
+ "optionalDependencies": {
1965
+ "lightningcss-android-arm64": "1.32.0",
1966
+ "lightningcss-darwin-arm64": "1.32.0",
1967
+ "lightningcss-darwin-x64": "1.32.0",
1968
+ "lightningcss-freebsd-x64": "1.32.0",
1969
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
1970
+ "lightningcss-linux-arm64-gnu": "1.32.0",
1971
+ "lightningcss-linux-arm64-musl": "1.32.0",
1972
+ "lightningcss-linux-x64-gnu": "1.32.0",
1973
+ "lightningcss-linux-x64-musl": "1.32.0",
1974
+ "lightningcss-win32-arm64-msvc": "1.32.0",
1975
+ "lightningcss-win32-x64-msvc": "1.32.0"
1976
+ }
1977
+ },
1978
+ "node_modules/lightningcss-android-arm64": {
1979
+ "version": "1.32.0",
1980
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
1981
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
1982
+ "cpu": [
1983
+ "arm64"
1984
+ ],
1985
+ "license": "MPL-2.0",
1986
+ "optional": true,
1987
+ "os": [
1988
+ "android"
1989
+ ],
1990
+ "engines": {
1991
+ "node": ">= 12.0.0"
1992
+ },
1993
+ "funding": {
1994
+ "type": "opencollective",
1995
+ "url": "https://opencollective.com/parcel"
1996
+ }
1997
+ },
1998
+ "node_modules/lightningcss-darwin-arm64": {
1999
+ "version": "1.32.0",
2000
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
2001
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
2002
+ "cpu": [
2003
+ "arm64"
2004
+ ],
2005
+ "license": "MPL-2.0",
2006
+ "optional": true,
2007
+ "os": [
2008
+ "darwin"
2009
+ ],
2010
+ "engines": {
2011
+ "node": ">= 12.0.0"
2012
+ },
2013
+ "funding": {
2014
+ "type": "opencollective",
2015
+ "url": "https://opencollective.com/parcel"
2016
+ }
2017
+ },
2018
+ "node_modules/lightningcss-darwin-x64": {
2019
+ "version": "1.32.0",
2020
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
2021
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
2022
+ "cpu": [
2023
+ "x64"
2024
+ ],
2025
+ "license": "MPL-2.0",
2026
+ "optional": true,
2027
+ "os": [
2028
+ "darwin"
2029
+ ],
2030
+ "engines": {
2031
+ "node": ">= 12.0.0"
2032
+ },
2033
+ "funding": {
2034
+ "type": "opencollective",
2035
+ "url": "https://opencollective.com/parcel"
2036
+ }
2037
+ },
2038
+ "node_modules/lightningcss-freebsd-x64": {
2039
+ "version": "1.32.0",
2040
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
2041
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
2042
+ "cpu": [
2043
+ "x64"
2044
+ ],
2045
+ "license": "MPL-2.0",
2046
+ "optional": true,
2047
+ "os": [
2048
+ "freebsd"
2049
+ ],
2050
+ "engines": {
2051
+ "node": ">= 12.0.0"
2052
+ },
2053
+ "funding": {
2054
+ "type": "opencollective",
2055
+ "url": "https://opencollective.com/parcel"
2056
+ }
2057
+ },
2058
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
2059
+ "version": "1.32.0",
2060
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
2061
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
2062
+ "cpu": [
2063
+ "arm"
2064
+ ],
2065
+ "license": "MPL-2.0",
2066
+ "optional": true,
2067
+ "os": [
2068
+ "linux"
2069
+ ],
2070
+ "engines": {
2071
+ "node": ">= 12.0.0"
2072
+ },
2073
+ "funding": {
2074
+ "type": "opencollective",
2075
+ "url": "https://opencollective.com/parcel"
2076
+ }
2077
+ },
2078
+ "node_modules/lightningcss-linux-arm64-gnu": {
2079
+ "version": "1.32.0",
2080
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
2081
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
2082
+ "cpu": [
2083
+ "arm64"
2084
+ ],
2085
+ "license": "MPL-2.0",
2086
+ "optional": true,
2087
+ "os": [
2088
+ "linux"
2089
+ ],
2090
+ "engines": {
2091
+ "node": ">= 12.0.0"
2092
+ },
2093
+ "funding": {
2094
+ "type": "opencollective",
2095
+ "url": "https://opencollective.com/parcel"
2096
+ }
2097
+ },
2098
+ "node_modules/lightningcss-linux-arm64-musl": {
2099
+ "version": "1.32.0",
2100
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
2101
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
2102
+ "cpu": [
2103
+ "arm64"
2104
+ ],
2105
+ "license": "MPL-2.0",
2106
+ "optional": true,
2107
+ "os": [
2108
+ "linux"
2109
+ ],
2110
+ "engines": {
2111
+ "node": ">= 12.0.0"
2112
+ },
2113
+ "funding": {
2114
+ "type": "opencollective",
2115
+ "url": "https://opencollective.com/parcel"
2116
+ }
2117
+ },
2118
+ "node_modules/lightningcss-linux-x64-gnu": {
2119
+ "version": "1.32.0",
2120
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
2121
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
2122
+ "cpu": [
2123
+ "x64"
2124
+ ],
2125
+ "license": "MPL-2.0",
2126
+ "optional": true,
2127
+ "os": [
2128
+ "linux"
2129
+ ],
2130
+ "engines": {
2131
+ "node": ">= 12.0.0"
2132
+ },
2133
+ "funding": {
2134
+ "type": "opencollective",
2135
+ "url": "https://opencollective.com/parcel"
2136
+ }
2137
+ },
2138
+ "node_modules/lightningcss-linux-x64-musl": {
2139
+ "version": "1.32.0",
2140
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
2141
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
2142
+ "cpu": [
2143
+ "x64"
2144
+ ],
2145
+ "license": "MPL-2.0",
2146
+ "optional": true,
2147
+ "os": [
2148
+ "linux"
2149
+ ],
2150
+ "engines": {
2151
+ "node": ">= 12.0.0"
2152
+ },
2153
+ "funding": {
2154
+ "type": "opencollective",
2155
+ "url": "https://opencollective.com/parcel"
2156
+ }
2157
+ },
2158
+ "node_modules/lightningcss-win32-arm64-msvc": {
2159
+ "version": "1.32.0",
2160
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
2161
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
2162
+ "cpu": [
2163
+ "arm64"
2164
+ ],
2165
+ "license": "MPL-2.0",
2166
+ "optional": true,
2167
+ "os": [
2168
+ "win32"
2169
+ ],
2170
+ "engines": {
2171
+ "node": ">= 12.0.0"
2172
+ },
2173
+ "funding": {
2174
+ "type": "opencollective",
2175
+ "url": "https://opencollective.com/parcel"
2176
+ }
2177
+ },
2178
+ "node_modules/lightningcss-win32-x64-msvc": {
2179
+ "version": "1.32.0",
2180
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
2181
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
2182
+ "cpu": [
2183
+ "x64"
2184
+ ],
2185
+ "license": "MPL-2.0",
2186
+ "optional": true,
2187
+ "os": [
2188
+ "win32"
2189
+ ],
2190
+ "engines": {
2191
+ "node": ">= 12.0.0"
2192
+ },
2193
+ "funding": {
2194
+ "type": "opencollective",
2195
+ "url": "https://opencollective.com/parcel"
2196
+ }
2197
+ },
2198
+ "node_modules/locate-path": {
2199
+ "version": "6.0.0",
2200
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
2201
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
2202
+ "dev": true,
2203
+ "license": "MIT",
2204
+ "dependencies": {
2205
+ "p-locate": "^5.0.0"
2206
+ },
2207
+ "engines": {
2208
+ "node": ">=10"
2209
+ },
2210
+ "funding": {
2211
+ "url": "https://github.com/sponsors/sindresorhus"
2212
+ }
2213
+ },
2214
+ "node_modules/lru-cache": {
2215
+ "version": "5.1.1",
2216
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
2217
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
2218
+ "dev": true,
2219
+ "license": "ISC",
2220
+ "dependencies": {
2221
+ "yallist": "^3.0.2"
2222
+ }
2223
+ },
2224
+ "node_modules/magic-string": {
2225
+ "version": "0.30.21",
2226
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
2227
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
2228
+ "license": "MIT",
2229
+ "dependencies": {
2230
+ "@jridgewell/sourcemap-codec": "^1.5.5"
2231
+ }
2232
+ },
2233
+ "node_modules/minimatch": {
2234
+ "version": "10.2.5",
2235
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
2236
+ "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
2237
+ "dev": true,
2238
+ "license": "BlueOak-1.0.0",
2239
+ "dependencies": {
2240
+ "brace-expansion": "^5.0.5"
2241
+ },
2242
+ "engines": {
2243
+ "node": "18 || 20 || >=22"
2244
+ },
2245
+ "funding": {
2246
+ "url": "https://github.com/sponsors/isaacs"
2247
+ }
2248
+ },
2249
+ "node_modules/motion-dom": {
2250
+ "version": "12.40.0",
2251
+ "resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-12.40.0.tgz",
2252
+ "integrity": "sha512-HxU3ZaBwNPVQUBQf1xxgq+7JrPNZvjLVxgbpEZL7RrWJnsxOf0/OM+yrHG9ogLQ31Do/r57Oz2gQWPK+6q62mg==",
2253
+ "license": "MIT",
2254
+ "dependencies": {
2255
+ "motion-utils": "^12.39.0"
2256
+ }
2257
+ },
2258
+ "node_modules/motion-utils": {
2259
+ "version": "12.39.0",
2260
+ "resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-12.39.0.tgz",
2261
+ "integrity": "sha512-8nadJAJjTtqRkmRF36FoJTrywK9nnFmnPwnSMyxaOCU7GDjN9RTMJIxx9De8ErM+vpPhMccr/6fo5WciyQLnMQ==",
2262
+ "license": "MIT"
2263
+ },
2264
+ "node_modules/ms": {
2265
+ "version": "2.1.3",
2266
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2267
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2268
+ "dev": true,
2269
+ "license": "MIT"
2270
+ },
2271
+ "node_modules/nanoid": {
2272
+ "version": "3.3.12",
2273
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
2274
+ "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
2275
+ "funding": [
2276
+ {
2277
+ "type": "github",
2278
+ "url": "https://github.com/sponsors/ai"
2279
+ }
2280
+ ],
2281
+ "license": "MIT",
2282
+ "bin": {
2283
+ "nanoid": "bin/nanoid.cjs"
2284
+ },
2285
+ "engines": {
2286
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2287
+ }
2288
+ },
2289
+ "node_modules/natural-compare": {
2290
+ "version": "1.4.0",
2291
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
2292
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
2293
+ "dev": true,
2294
+ "license": "MIT"
2295
+ },
2296
+ "node_modules/node-releases": {
2297
+ "version": "2.0.47",
2298
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.47.tgz",
2299
+ "integrity": "sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==",
2300
+ "dev": true,
2301
+ "license": "MIT",
2302
+ "engines": {
2303
+ "node": ">=18"
2304
+ }
2305
+ },
2306
+ "node_modules/optionator": {
2307
+ "version": "0.9.4",
2308
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
2309
+ "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
2310
+ "dev": true,
2311
+ "license": "MIT",
2312
+ "dependencies": {
2313
+ "deep-is": "^0.1.3",
2314
+ "fast-levenshtein": "^2.0.6",
2315
+ "levn": "^0.4.1",
2316
+ "prelude-ls": "^1.2.1",
2317
+ "type-check": "^0.4.0",
2318
+ "word-wrap": "^1.2.5"
2319
+ },
2320
+ "engines": {
2321
+ "node": ">= 0.8.0"
2322
+ }
2323
+ },
2324
+ "node_modules/p-limit": {
2325
+ "version": "3.1.0",
2326
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
2327
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
2328
+ "dev": true,
2329
+ "license": "MIT",
2330
+ "dependencies": {
2331
+ "yocto-queue": "^0.1.0"
2332
+ },
2333
+ "engines": {
2334
+ "node": ">=10"
2335
+ },
2336
+ "funding": {
2337
+ "url": "https://github.com/sponsors/sindresorhus"
2338
+ }
2339
+ },
2340
+ "node_modules/p-locate": {
2341
+ "version": "5.0.0",
2342
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
2343
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
2344
+ "dev": true,
2345
+ "license": "MIT",
2346
+ "dependencies": {
2347
+ "p-limit": "^3.0.2"
2348
+ },
2349
+ "engines": {
2350
+ "node": ">=10"
2351
+ },
2352
+ "funding": {
2353
+ "url": "https://github.com/sponsors/sindresorhus"
2354
+ }
2355
+ },
2356
+ "node_modules/path-exists": {
2357
+ "version": "4.0.0",
2358
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
2359
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
2360
+ "dev": true,
2361
+ "license": "MIT",
2362
+ "engines": {
2363
+ "node": ">=8"
2364
+ }
2365
+ },
2366
+ "node_modules/path-key": {
2367
+ "version": "3.1.1",
2368
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2369
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2370
+ "dev": true,
2371
+ "license": "MIT",
2372
+ "engines": {
2373
+ "node": ">=8"
2374
+ }
2375
+ },
2376
+ "node_modules/picocolors": {
2377
+ "version": "1.1.1",
2378
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2379
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2380
+ "license": "ISC"
2381
+ },
2382
+ "node_modules/picomatch": {
2383
+ "version": "4.0.4",
2384
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
2385
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
2386
+ "license": "MIT",
2387
+ "engines": {
2388
+ "node": ">=12"
2389
+ },
2390
+ "funding": {
2391
+ "url": "https://github.com/sponsors/jonschlinkert"
2392
+ }
2393
+ },
2394
+ "node_modules/postcss": {
2395
+ "version": "8.5.15",
2396
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
2397
+ "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
2398
+ "funding": [
2399
+ {
2400
+ "type": "opencollective",
2401
+ "url": "https://opencollective.com/postcss/"
2402
+ },
2403
+ {
2404
+ "type": "tidelift",
2405
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2406
+ },
2407
+ {
2408
+ "type": "github",
2409
+ "url": "https://github.com/sponsors/ai"
2410
+ }
2411
+ ],
2412
+ "license": "MIT",
2413
+ "dependencies": {
2414
+ "nanoid": "^3.3.12",
2415
+ "picocolors": "^1.1.1",
2416
+ "source-map-js": "^1.2.1"
2417
+ },
2418
+ "engines": {
2419
+ "node": "^10 || ^12 || >=14"
2420
+ }
2421
+ },
2422
+ "node_modules/postcss-value-parser": {
2423
+ "version": "4.2.0",
2424
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
2425
+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
2426
+ "dev": true,
2427
+ "license": "MIT"
2428
+ },
2429
+ "node_modules/prelude-ls": {
2430
+ "version": "1.2.1",
2431
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
2432
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
2433
+ "dev": true,
2434
+ "license": "MIT",
2435
+ "engines": {
2436
+ "node": ">= 0.8.0"
2437
+ }
2438
+ },
2439
+ "node_modules/punycode": {
2440
+ "version": "2.3.1",
2441
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
2442
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
2443
+ "dev": true,
2444
+ "license": "MIT",
2445
+ "engines": {
2446
+ "node": ">=6"
2447
+ }
2448
+ },
2449
+ "node_modules/react": {
2450
+ "version": "19.2.7",
2451
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.7.tgz",
2452
+ "integrity": "sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==",
2453
+ "license": "MIT",
2454
+ "engines": {
2455
+ "node": ">=0.10.0"
2456
+ }
2457
+ },
2458
+ "node_modules/react-dom": {
2459
+ "version": "19.2.7",
2460
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz",
2461
+ "integrity": "sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==",
2462
+ "license": "MIT",
2463
+ "dependencies": {
2464
+ "scheduler": "^0.27.0"
2465
+ },
2466
+ "peerDependencies": {
2467
+ "react": "^19.2.7"
2468
+ }
2469
+ },
2470
+ "node_modules/rolldown": {
2471
+ "version": "1.0.3",
2472
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.3.tgz",
2473
+ "integrity": "sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==",
2474
+ "license": "MIT",
2475
+ "dependencies": {
2476
+ "@oxc-project/types": "=0.133.0",
2477
+ "@rolldown/pluginutils": "^1.0.0"
2478
+ },
2479
+ "bin": {
2480
+ "rolldown": "bin/cli.mjs"
2481
+ },
2482
+ "engines": {
2483
+ "node": "^20.19.0 || >=22.12.0"
2484
+ },
2485
+ "optionalDependencies": {
2486
+ "@rolldown/binding-android-arm64": "1.0.3",
2487
+ "@rolldown/binding-darwin-arm64": "1.0.3",
2488
+ "@rolldown/binding-darwin-x64": "1.0.3",
2489
+ "@rolldown/binding-freebsd-x64": "1.0.3",
2490
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.3",
2491
+ "@rolldown/binding-linux-arm64-gnu": "1.0.3",
2492
+ "@rolldown/binding-linux-arm64-musl": "1.0.3",
2493
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.3",
2494
+ "@rolldown/binding-linux-s390x-gnu": "1.0.3",
2495
+ "@rolldown/binding-linux-x64-gnu": "1.0.3",
2496
+ "@rolldown/binding-linux-x64-musl": "1.0.3",
2497
+ "@rolldown/binding-openharmony-arm64": "1.0.3",
2498
+ "@rolldown/binding-wasm32-wasi": "1.0.3",
2499
+ "@rolldown/binding-win32-arm64-msvc": "1.0.3",
2500
+ "@rolldown/binding-win32-x64-msvc": "1.0.3"
2501
+ }
2502
+ },
2503
+ "node_modules/scheduler": {
2504
+ "version": "0.27.0",
2505
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
2506
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
2507
+ "license": "MIT"
2508
+ },
2509
+ "node_modules/semver": {
2510
+ "version": "6.3.1",
2511
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
2512
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
2513
+ "dev": true,
2514
+ "license": "ISC",
2515
+ "bin": {
2516
+ "semver": "bin/semver.js"
2517
+ }
2518
+ },
2519
+ "node_modules/shebang-command": {
2520
+ "version": "2.0.0",
2521
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
2522
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
2523
+ "dev": true,
2524
+ "license": "MIT",
2525
+ "dependencies": {
2526
+ "shebang-regex": "^3.0.0"
2527
+ },
2528
+ "engines": {
2529
+ "node": ">=8"
2530
+ }
2531
+ },
2532
+ "node_modules/shebang-regex": {
2533
+ "version": "3.0.0",
2534
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
2535
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
2536
+ "dev": true,
2537
+ "license": "MIT",
2538
+ "engines": {
2539
+ "node": ">=8"
2540
+ }
2541
+ },
2542
+ "node_modules/source-map-js": {
2543
+ "version": "1.2.1",
2544
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
2545
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
2546
+ "license": "BSD-3-Clause",
2547
+ "engines": {
2548
+ "node": ">=0.10.0"
2549
+ }
2550
+ },
2551
+ "node_modules/tailwindcss": {
2552
+ "version": "4.3.1",
2553
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.1.tgz",
2554
+ "integrity": "sha512-hk+TB1m+K8CYNrP6rjQaq/Y+4Zylwpa87mLYBKCunwnnQ9p+fHb7kmSfGqyEJoxF/O6CDyABWVFEafNSYKll+Q==",
2555
+ "license": "MIT"
2556
+ },
2557
+ "node_modules/tapable": {
2558
+ "version": "2.3.3",
2559
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz",
2560
+ "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==",
2561
+ "license": "MIT",
2562
+ "engines": {
2563
+ "node": ">=6"
2564
+ },
2565
+ "funding": {
2566
+ "type": "opencollective",
2567
+ "url": "https://opencollective.com/webpack"
2568
+ }
2569
+ },
2570
+ "node_modules/tinyglobby": {
2571
+ "version": "0.2.17",
2572
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
2573
+ "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
2574
+ "license": "MIT",
2575
+ "dependencies": {
2576
+ "fdir": "^6.5.0",
2577
+ "picomatch": "^4.0.4"
2578
+ },
2579
+ "engines": {
2580
+ "node": ">=12.0.0"
2581
+ },
2582
+ "funding": {
2583
+ "url": "https://github.com/sponsors/SuperchupuDev"
2584
+ }
2585
+ },
2586
+ "node_modules/tslib": {
2587
+ "version": "2.8.1",
2588
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
2589
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
2590
+ "license": "0BSD"
2591
+ },
2592
+ "node_modules/type-check": {
2593
+ "version": "0.4.0",
2594
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
2595
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
2596
+ "dev": true,
2597
+ "license": "MIT",
2598
+ "dependencies": {
2599
+ "prelude-ls": "^1.2.1"
2600
+ },
2601
+ "engines": {
2602
+ "node": ">= 0.8.0"
2603
+ }
2604
+ },
2605
+ "node_modules/update-browserslist-db": {
2606
+ "version": "1.2.3",
2607
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
2608
+ "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
2609
+ "dev": true,
2610
+ "funding": [
2611
+ {
2612
+ "type": "opencollective",
2613
+ "url": "https://opencollective.com/browserslist"
2614
+ },
2615
+ {
2616
+ "type": "tidelift",
2617
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
2618
+ },
2619
+ {
2620
+ "type": "github",
2621
+ "url": "https://github.com/sponsors/ai"
2622
+ }
2623
+ ],
2624
+ "license": "MIT",
2625
+ "dependencies": {
2626
+ "escalade": "^3.2.0",
2627
+ "picocolors": "^1.1.1"
2628
+ },
2629
+ "bin": {
2630
+ "update-browserslist-db": "cli.js"
2631
+ },
2632
+ "peerDependencies": {
2633
+ "browserslist": ">= 4.21.0"
2634
+ }
2635
+ },
2636
+ "node_modules/uri-js": {
2637
+ "version": "4.4.1",
2638
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
2639
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
2640
+ "dev": true,
2641
+ "license": "BSD-2-Clause",
2642
+ "dependencies": {
2643
+ "punycode": "^2.1.0"
2644
+ }
2645
+ },
2646
+ "node_modules/vite": {
2647
+ "version": "8.0.16",
2648
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.16.tgz",
2649
+ "integrity": "sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==",
2650
+ "license": "MIT",
2651
+ "dependencies": {
2652
+ "lightningcss": "^1.32.0",
2653
+ "picomatch": "^4.0.4",
2654
+ "postcss": "^8.5.15",
2655
+ "rolldown": "1.0.3",
2656
+ "tinyglobby": "^0.2.17"
2657
+ },
2658
+ "bin": {
2659
+ "vite": "bin/vite.js"
2660
+ },
2661
+ "engines": {
2662
+ "node": "^20.19.0 || >=22.12.0"
2663
+ },
2664
+ "funding": {
2665
+ "url": "https://github.com/vitejs/vite?sponsor=1"
2666
+ },
2667
+ "optionalDependencies": {
2668
+ "fsevents": "~2.3.3"
2669
+ },
2670
+ "peerDependencies": {
2671
+ "@types/node": "^20.19.0 || >=22.12.0",
2672
+ "@vitejs/devtools": "^0.1.18",
2673
+ "esbuild": "^0.27.0 || ^0.28.0",
2674
+ "jiti": ">=1.21.0",
2675
+ "less": "^4.0.0",
2676
+ "sass": "^1.70.0",
2677
+ "sass-embedded": "^1.70.0",
2678
+ "stylus": ">=0.54.8",
2679
+ "sugarss": "^5.0.0",
2680
+ "terser": "^5.16.0",
2681
+ "tsx": "^4.8.1",
2682
+ "yaml": "^2.4.2"
2683
+ },
2684
+ "peerDependenciesMeta": {
2685
+ "@types/node": {
2686
+ "optional": true
2687
+ },
2688
+ "@vitejs/devtools": {
2689
+ "optional": true
2690
+ },
2691
+ "esbuild": {
2692
+ "optional": true
2693
+ },
2694
+ "jiti": {
2695
+ "optional": true
2696
+ },
2697
+ "less": {
2698
+ "optional": true
2699
+ },
2700
+ "sass": {
2701
+ "optional": true
2702
+ },
2703
+ "sass-embedded": {
2704
+ "optional": true
2705
+ },
2706
+ "stylus": {
2707
+ "optional": true
2708
+ },
2709
+ "sugarss": {
2710
+ "optional": true
2711
+ },
2712
+ "terser": {
2713
+ "optional": true
2714
+ },
2715
+ "tsx": {
2716
+ "optional": true
2717
+ },
2718
+ "yaml": {
2719
+ "optional": true
2720
+ }
2721
+ }
2722
+ },
2723
+ "node_modules/which": {
2724
+ "version": "2.0.2",
2725
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
2726
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
2727
+ "dev": true,
2728
+ "license": "ISC",
2729
+ "dependencies": {
2730
+ "isexe": "^2.0.0"
2731
+ },
2732
+ "bin": {
2733
+ "node-which": "bin/node-which"
2734
+ },
2735
+ "engines": {
2736
+ "node": ">= 8"
2737
+ }
2738
+ },
2739
+ "node_modules/word-wrap": {
2740
+ "version": "1.2.5",
2741
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
2742
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
2743
+ "dev": true,
2744
+ "license": "MIT",
2745
+ "engines": {
2746
+ "node": ">=0.10.0"
2747
+ }
2748
+ },
2749
+ "node_modules/yallist": {
2750
+ "version": "3.1.1",
2751
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
2752
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
2753
+ "dev": true,
2754
+ "license": "ISC"
2755
+ },
2756
+ "node_modules/yocto-queue": {
2757
+ "version": "0.1.0",
2758
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
2759
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
2760
+ "dev": true,
2761
+ "license": "MIT",
2762
+ "engines": {
2763
+ "node": ">=10"
2764
+ },
2765
+ "funding": {
2766
+ "url": "https://github.com/sponsors/sindresorhus"
2767
+ }
2768
+ },
2769
+ "node_modules/zod": {
2770
+ "version": "4.4.3",
2771
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
2772
+ "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
2773
+ "dev": true,
2774
+ "license": "MIT",
2775
+ "funding": {
2776
+ "url": "https://github.com/sponsors/colinhacks"
2777
+ }
2778
+ },
2779
+ "node_modules/zod-validation-error": {
2780
+ "version": "4.0.2",
2781
+ "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz",
2782
+ "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==",
2783
+ "dev": true,
2784
+ "license": "MIT",
2785
+ "engines": {
2786
+ "node": ">=18.0.0"
2787
+ },
2788
+ "peerDependencies": {
2789
+ "zod": "^3.25.0 || ^4.0.0"
2790
+ }
2791
+ }
2792
+ }
2793
+ }
frontend/package.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "frontend",
3
+ "private": true,
4
+ "version": "0.0.0",
5
+ "type": "module",
6
+ "scripts": {
7
+ "dev": "vite",
8
+ "build": "vite build",
9
+ "lint": "eslint .",
10
+ "preview": "vite preview"
11
+ },
12
+ "dependencies": {
13
+ "@tailwindcss/vite": "^4.3.1",
14
+ "framer-motion": "^12.40.0",
15
+ "react": "^19.2.6",
16
+ "react-dom": "^19.2.6"
17
+ },
18
+ "devDependencies": {
19
+ "@eslint/js": "^10.0.1",
20
+ "@types/react": "^19.2.14",
21
+ "@types/react-dom": "^19.2.3",
22
+ "@vitejs/plugin-react": "^6.0.1",
23
+ "autoprefixer": "^10.5.0",
24
+ "eslint": "^10.3.0",
25
+ "eslint-plugin-react-hooks": "^7.1.1",
26
+ "eslint-plugin-react-refresh": "^0.5.2",
27
+ "globals": "^17.6.0",
28
+ "postcss": "^8.5.15",
29
+ "tailwindcss": "^4.3.1",
30
+ "vite": "^8.0.12"
31
+ }
32
+ }
frontend/public/favicon.svg ADDED
frontend/public/icons.svg ADDED
frontend/src/App.css ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .counter {
2
+ font-size: 16px;
3
+ padding: 5px 10px;
4
+ border-radius: 5px;
5
+ color: var(--accent);
6
+ background: var(--accent-bg);
7
+ border: 2px solid transparent;
8
+ transition: border-color 0.3s;
9
+ margin-bottom: 24px;
10
+
11
+ &:hover {
12
+ border-color: var(--accent-border);
13
+ }
14
+ &:focus-visible {
15
+ outline: 2px solid var(--accent);
16
+ outline-offset: 2px;
17
+ }
18
+ }
19
+
20
+ .hero {
21
+ position: relative;
22
+
23
+ .base,
24
+ .framework,
25
+ .vite {
26
+ inset-inline: 0;
27
+ margin: 0 auto;
28
+ }
29
+
30
+ .base {
31
+ width: 170px;
32
+ position: relative;
33
+ z-index: 0;
34
+ }
35
+
36
+ .framework,
37
+ .vite {
38
+ position: absolute;
39
+ }
40
+
41
+ .framework {
42
+ z-index: 1;
43
+ top: 34px;
44
+ height: 28px;
45
+ transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
46
+ scale(1.4);
47
+ }
48
+
49
+ .vite {
50
+ z-index: 0;
51
+ top: 107px;
52
+ height: 26px;
53
+ width: auto;
54
+ transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
55
+ scale(0.8);
56
+ }
57
+ }
58
+
59
+ #center {
60
+ display: flex;
61
+ flex-direction: column;
62
+ gap: 25px;
63
+ place-content: center;
64
+ place-items: center;
65
+ flex-grow: 1;
66
+
67
+ @media (max-width: 1024px) {
68
+ padding: 32px 20px 24px;
69
+ gap: 18px;
70
+ }
71
+ }
72
+
73
+ #next-steps {
74
+ display: flex;
75
+ border-top: 1px solid var(--border);
76
+ text-align: left;
77
+
78
+ & > div {
79
+ flex: 1 1 0;
80
+ padding: 32px;
81
+ @media (max-width: 1024px) {
82
+ padding: 24px 20px;
83
+ }
84
+ }
85
+
86
+ .icon {
87
+ margin-bottom: 16px;
88
+ width: 22px;
89
+ height: 22px;
90
+ }
91
+
92
+ @media (max-width: 1024px) {
93
+ flex-direction: column;
94
+ text-align: center;
95
+ }
96
+ }
97
+
98
+ #docs {
99
+ border-right: 1px solid var(--border);
100
+
101
+ @media (max-width: 1024px) {
102
+ border-right: none;
103
+ border-bottom: 1px solid var(--border);
104
+ }
105
+ }
106
+
107
+ #next-steps ul {
108
+ list-style: none;
109
+ padding: 0;
110
+ display: flex;
111
+ gap: 8px;
112
+ margin: 32px 0 0;
113
+
114
+ .logo {
115
+ height: 18px;
116
+ }
117
+
118
+ a {
119
+ color: var(--text-h);
120
+ font-size: 16px;
121
+ border-radius: 6px;
122
+ background: var(--social-bg);
123
+ display: flex;
124
+ padding: 6px 12px;
125
+ align-items: center;
126
+ gap: 8px;
127
+ text-decoration: none;
128
+ transition: box-shadow 0.3s;
129
+
130
+ &:hover {
131
+ box-shadow: var(--shadow);
132
+ }
133
+ .button-icon {
134
+ height: 18px;
135
+ width: 18px;
136
+ }
137
+ }
138
+
139
+ @media (max-width: 1024px) {
140
+ margin-top: 20px;
141
+ flex-wrap: wrap;
142
+ justify-content: center;
143
+
144
+ li {
145
+ flex: 1 1 calc(50% - 8px);
146
+ }
147
+
148
+ a {
149
+ width: 100%;
150
+ justify-content: center;
151
+ box-sizing: border-box;
152
+ }
153
+ }
154
+ }
155
+
156
+ #spacer {
157
+ height: 88px;
158
+ border-top: 1px solid var(--border);
159
+ @media (max-width: 1024px) {
160
+ height: 48px;
161
+ }
162
+ }
163
+
164
+ .ticks {
165
+ position: relative;
166
+ width: 100%;
167
+
168
+ &::before,
169
+ &::after {
170
+ content: '';
171
+ position: absolute;
172
+ top: -4.5px;
173
+ border: 5px solid transparent;
174
+ }
175
+
176
+ &::before {
177
+ left: 0;
178
+ border-left-color: var(--border);
179
+ }
180
+ &::after {
181
+ right: 0;
182
+ border-right-color: var(--border);
183
+ }
184
+ }
frontend/src/App.jsx ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { useState } from 'react'
2
+ import reactLogo from './assets/react.svg'
3
+ import viteLogo from './assets/vite.svg'
4
+ import heroImg from './assets/hero.png'
5
+ import './App.css'
6
+
7
+ function App() {
8
+ const [count, setCount] = useState(0)
9
+
10
+ return (
11
+ <>
12
+ <section id="center">
13
+ <div className="hero">
14
+ <img src={heroImg} className="base" width="170" height="179" alt="" />
15
+ <img src={reactLogo} className="framework" alt="React logo" />
16
+ <img src={viteLogo} className="vite" alt="Vite logo" />
17
+ </div>
18
+ <div>
19
+ <h1>Get started</h1>
20
+ <p>
21
+ Edit <code>src/App.jsx</code> and save to test <code>HMR</code>
22
+ </p>
23
+ </div>
24
+ <button
25
+ type="button"
26
+ className="counter"
27
+ onClick={() => setCount((count) => count + 1)}
28
+ >
29
+ Count is {count}
30
+ </button>
31
+ </section>
32
+
33
+ <div className="ticks"></div>
34
+
35
+ <section id="next-steps">
36
+ <div id="docs">
37
+ <svg className="icon" role="presentation" aria-hidden="true">
38
+ <use href="/icons.svg#documentation-icon"></use>
39
+ </svg>
40
+ <h2>Documentation</h2>
41
+ <p>Your questions, answered</p>
42
+ <ul>
43
+ <li>
44
+ <a href="https://vite.dev/" target="_blank">
45
+ <img className="logo" src={viteLogo} alt="" />
46
+ Explore Vite
47
+ </a>
48
+ </li>
49
+ <li>
50
+ <a href="https://react.dev/" target="_blank">
51
+ <img className="button-icon" src={reactLogo} alt="" />
52
+ Learn more
53
+ </a>
54
+ </li>
55
+ </ul>
56
+ </div>
57
+ <div id="social">
58
+ <svg className="icon" role="presentation" aria-hidden="true">
59
+ <use href="/icons.svg#social-icon"></use>
60
+ </svg>
61
+ <h2>Connect with us</h2>
62
+ <p>Join the Vite community</p>
63
+ <ul>
64
+ <li>
65
+ <a href="https://github.com/vitejs/vite" target="_blank">
66
+ <svg
67
+ className="button-icon"
68
+ role="presentation"
69
+ aria-hidden="true"
70
+ >
71
+ <use href="/icons.svg#github-icon"></use>
72
+ </svg>
73
+ GitHub
74
+ </a>
75
+ </li>
76
+ <li>
77
+ <a href="https://chat.vite.dev/" target="_blank">
78
+ <svg
79
+ className="button-icon"
80
+ role="presentation"
81
+ aria-hidden="true"
82
+ >
83
+ <use href="/icons.svg#discord-icon"></use>
84
+ </svg>
85
+ Discord
86
+ </a>
87
+ </li>
88
+ <li>
89
+ <a href="https://x.com/vite_js" target="_blank">
90
+ <svg
91
+ className="button-icon"
92
+ role="presentation"
93
+ aria-hidden="true"
94
+ >
95
+ <use href="/icons.svg#x-icon"></use>
96
+ </svg>
97
+ X.com
98
+ </a>
99
+ </li>
100
+ <li>
101
+ <a href="https://bsky.app/profile/vite.dev" target="_blank">
102
+ <svg
103
+ className="button-icon"
104
+ role="presentation"
105
+ aria-hidden="true"
106
+ >
107
+ <use href="/icons.svg#bluesky-icon"></use>
108
+ </svg>
109
+ Bluesky
110
+ </a>
111
+ </li>
112
+ </ul>
113
+ </div>
114
+ </section>
115
+
116
+ <div className="ticks"></div>
117
+ <section id="spacer"></section>
118
+ </>
119
+ )
120
+ }
121
+
122
+ export default App
frontend/src/assets/hero.png ADDED
frontend/src/assets/react.svg ADDED
frontend/src/assets/vite.svg ADDED
frontend/src/components/BlurText.jsx ADDED
@@ -0,0 +1 @@
 
 
1
+ // BlurText component
frontend/src/components/FadingVideo.jsx ADDED
@@ -0,0 +1 @@
 
 
1
+ // FadingVideo component
frontend/src/components/Navbar.jsx ADDED
@@ -0,0 +1 @@
 
 
1
+ // Navbar component
frontend/src/index.css ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "tailwindcss";
2
+
3
+ @theme {
4
+ /* Fonts configuration */
5
+ --font-heading: "Instrument Serif", serif;
6
+ --font-body: "Barlow", sans-serif;
7
+
8
+ /* Default border radius override: bare rounded -> pill (9999px) */
9
+ --radius-DEFAULT: 9999px;
10
+ }
11
+
12
+ /* Liquid-glass utilities */
13
+ .liquid-glass {
14
+ background: rgba(255, 255, 255, 0.01);
15
+ background-blend-mode: luminosity;
16
+ backdrop-filter: blur(4px);
17
+ -webkit-backdrop-filter: blur(4px);
18
+ border: none;
19
+ box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
20
+ position: relative;
21
+ overflow: hidden;
22
+ }
23
+
24
+ .liquid-glass::before {
25
+ content: "";
26
+ position: absolute;
27
+ inset: 0;
28
+ border-radius: inherit;
29
+ padding: 1.4px;
30
+ background: linear-gradient(180deg,
31
+ rgba(255, 255, 255, 0.45) 0%,
32
+ rgba(255, 255, 255, 0.15) 20%,
33
+ rgba(255, 255, 255, 0) 40%,
34
+ rgba(255, 255, 255, 0) 60%,
35
+ rgba(255, 255, 255, 0.15) 80%,
36
+ rgba(255, 255, 255, 0.45) 100%);
37
+ -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
38
+ -webkit-mask-composite: xor;
39
+ mask-composite: exclude;
40
+ pointer-events: none;
41
+ }
42
+
43
+ .liquid-glass-strong {
44
+ background: rgba(255, 255, 255, 0.02);
45
+ background-blend-mode: luminosity;
46
+ backdrop-filter: blur(50px);
47
+ -webkit-backdrop-filter: blur(50px);
48
+ border: none;
49
+ box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.15);
50
+ position: relative;
51
+ overflow: hidden;
52
+ }
53
+
54
+ .liquid-glass-strong::before {
55
+ content: "";
56
+ position: absolute;
57
+ inset: 0;
58
+ border-radius: inherit;
59
+ padding: 1.4px;
60
+ background: linear-gradient(180deg,
61
+ rgba(255, 255, 255, 0.5) 0%,
62
+ rgba(255, 255, 255, 0.2) 20%,
63
+ rgba(255, 255, 255, 0) 40%,
64
+ rgba(255, 255, 255, 0) 60%,
65
+ rgba(255, 255, 255, 0.2) 80%,
66
+ rgba(255, 255, 255, 0.5) 100%);
67
+ -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
68
+ -webkit-mask-composite: xor;
69
+ mask-composite: exclude;
70
+ pointer-events: none;
71
+ }
72
+
73
+ /* Base resets */
74
+ body {
75
+ background-color: #000;
76
+ color: #fff;
77
+ font-family: var(--font-body);
78
+ margin: 0;
79
+ padding: 0;
80
+ overflow-x: hidden;
81
+ }
frontend/src/main.jsx ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import { StrictMode } from 'react'
2
+ import { createRoot } from 'react-dom/client'
3
+ import './index.css'
4
+ import App from './App.jsx'
5
+
6
+ createRoot(document.getElementById('root')).render(
7
+ <StrictMode>
8
+ <App />
9
+ </StrictMode>,
10
+ )
frontend/src/sections/CapabilitiesSection.jsx ADDED
@@ -0,0 +1 @@
 
 
1
+ // CapabilitiesSection component
frontend/src/sections/HeroSection.jsx ADDED
@@ -0,0 +1 @@
 
 
1
+ // HeroSection component
frontend/vite.config.js ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { defineConfig } from 'vite'
2
+ import react from '@vitejs/plugin-react'
3
+ import tailwindcss from '@tailwindcss/vite'
4
+
5
+ // https://vite.dev/config/
6
+ export default defineConfig({
7
+ plugins: [
8
+ react(),
9
+ tailwindcss()
10
+ ],
11
+ })