Spaces:
Sleeping
Sleeping
Upload 33 files
Browse files- components/CTA/CTASection.tsx +9 -4
- components/Footer/Footer.tsx +1 -47
- context/AudioContext.tsx +36 -4
- index.css +34 -0
- index.html +0 -74
- package-lock.json +2783 -0
- package.json +5 -4
- postcss.config.cjs +6 -0
- tailwind.config.cjs +28 -0
- vite.config.ts +0 -6
components/CTA/CTASection.tsx
CHANGED
|
@@ -5,7 +5,10 @@ import { CTA_DATA } from '../../data/mockData';
|
|
| 5 |
|
| 6 |
const CTASection: React.FC = () => {
|
| 7 |
return (
|
| 8 |
-
<section
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
{/* Background: Subtle Deep Red Pulse (Breathing Effect) */}
|
| 11 |
<motion.div
|
|
@@ -24,7 +27,8 @@ const CTASection: React.FC = () => {
|
|
| 24 |
}}
|
| 25 |
/>
|
| 26 |
|
| 27 |
-
|
|
|
|
| 28 |
|
| 29 |
{/* Headline - Big, Serif, Authoritative */}
|
| 30 |
<motion.h2
|
|
@@ -32,7 +36,7 @@ const CTASection: React.FC = () => {
|
|
| 32 |
whileInView={{ opacity: 1, y: 0 }}
|
| 33 |
transition={{ duration: 1, ease: "easeOut" }}
|
| 34 |
viewport={{ once: true }}
|
| 35 |
-
className="font-serif text-5xl md:text-7xl lg:text-8xl text-white mb-16 leading-tight"
|
| 36 |
>
|
| 37 |
{CTA_DATA.headline}
|
| 38 |
</motion.h2>
|
|
@@ -62,12 +66,13 @@ const CTASection: React.FC = () => {
|
|
| 62 |
</div>
|
| 63 |
|
| 64 |
{/* Owner "Signature" Block */}
|
|
|
|
| 65 |
<motion.div
|
| 66 |
initial={{ opacity: 0 }}
|
| 67 |
whileInView={{ opacity: 1 }}
|
| 68 |
transition={{ duration: 1, delay: 0.6 }}
|
| 69 |
viewport={{ once: true }}
|
| 70 |
-
className="
|
| 71 |
>
|
| 72 |
<div className="max-w-4xl mx-auto flex flex-col md:flex-row items-center justify-center gap-8 md:gap-16 border-t border-white/10 pt-10">
|
| 73 |
|
|
|
|
| 5 |
|
| 6 |
const CTASection: React.FC = () => {
|
| 7 |
return (
|
| 8 |
+
<section
|
| 9 |
+
id="contact"
|
| 10 |
+
className="relative min-h-[85vh] flex flex-col items-center justify-between bg-[#2a0505] overflow-hidden"
|
| 11 |
+
>
|
| 12 |
|
| 13 |
{/* Background: Subtle Deep Red Pulse (Breathing Effect) */}
|
| 14 |
<motion.div
|
|
|
|
| 27 |
}}
|
| 28 |
/>
|
| 29 |
|
| 30 |
+
{/* Main Content Container - Using flex-grow to center vertically in available space */}
|
| 31 |
+
<div className="relative z-10 w-full max-w-5xl mx-auto px-6 flex-grow flex flex-col items-center justify-center py-20">
|
| 32 |
|
| 33 |
{/* Headline - Big, Serif, Authoritative */}
|
| 34 |
<motion.h2
|
|
|
|
| 36 |
whileInView={{ opacity: 1, y: 0 }}
|
| 37 |
transition={{ duration: 1, ease: "easeOut" }}
|
| 38 |
viewport={{ once: true }}
|
| 39 |
+
className="font-serif text-5xl md:text-7xl lg:text-8xl text-white mb-16 leading-tight text-center"
|
| 40 |
>
|
| 41 |
{CTA_DATA.headline}
|
| 42 |
</motion.h2>
|
|
|
|
| 66 |
</div>
|
| 67 |
|
| 68 |
{/* Owner "Signature" Block */}
|
| 69 |
+
{/* Changed from absolute positioning to standard flow with mt-auto */}
|
| 70 |
<motion.div
|
| 71 |
initial={{ opacity: 0 }}
|
| 72 |
whileInView={{ opacity: 1 }}
|
| 73 |
transition={{ duration: 1, delay: 0.6 }}
|
| 74 |
viewport={{ once: true }}
|
| 75 |
+
className="relative z-10 w-full px-6 pb-16 md:pb-24 mt-auto"
|
| 76 |
>
|
| 77 |
<div className="max-w-4xl mx-auto flex flex-col md:flex-row items-center justify-center gap-8 md:gap-16 border-t border-white/10 pt-10">
|
| 78 |
|
components/Footer/Footer.tsx
CHANGED
|
@@ -2,34 +2,8 @@ import React from 'react';
|
|
| 2 |
import { motion } from 'framer-motion';
|
| 3 |
import { MapPin, Linkedin, Instagram, Phone } from 'lucide-react';
|
| 4 |
import { FOOTER_DATA, SOCIAL_LINKS } from '../../data/mockData';
|
| 5 |
-
import { MapContainer, TileLayer, Marker, Popup } from 'react-leaflet';
|
| 6 |
-
import L from 'leaflet';
|
| 7 |
-
|
| 8 |
-
// Custom Animated Pin Icon
|
| 9 |
-
const createCustomIcon = () => {
|
| 10 |
-
return L.divIcon({
|
| 11 |
-
className: 'custom-pin',
|
| 12 |
-
html: `
|
| 13 |
-
<div style="position: relative; width: 50px; height: 50px; display: flex; justify-content: center; align-items: flex-end; overflow: visible;">
|
| 14 |
-
<!-- Shadow Pulse -->
|
| 15 |
-
<div style="position: absolute; width: 24px; height: 8px; background: #000; border-radius: 50%; bottom: 2px; opacity: 0.5; filter: blur(3px); animation: shadow-pulse 2s ease-in-out infinite;"></div>
|
| 16 |
-
|
| 17 |
-
<!-- Floating Pin -->
|
| 18 |
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" style="width: 42px; height: 42px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)); animation: pin-float 2s ease-in-out infinite; transform-origin: bottom center; padding-bottom: 4px;">
|
| 19 |
-
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z" fill="#dc2626" stroke="#d4af37" stroke-width="1.5" stroke-linejoin="round"/>
|
| 20 |
-
<circle cx="12" cy="10" r="3.5" fill="#1a0505"/>
|
| 21 |
-
</svg>
|
| 22 |
-
</div>
|
| 23 |
-
`,
|
| 24 |
-
iconSize: [50, 50],
|
| 25 |
-
iconAnchor: [25, 50], // Tip of the pin exactly at bottom center
|
| 26 |
-
popupAnchor: [0, -50]
|
| 27 |
-
});
|
| 28 |
-
};
|
| 29 |
|
| 30 |
const Footer: React.FC = () => {
|
| 31 |
-
const position: [number, number] = [16.855778, 74.582750]; // Converted from 16°51'20.8"N 74°34'57.9"E
|
| 32 |
-
|
| 33 |
return (
|
| 34 |
<footer className="relative bg-[#0f0202] text-white/80 overflow-hidden pt-24 pb-12 border-t border-white/5">
|
| 35 |
|
|
@@ -104,27 +78,7 @@ const Footer: React.FC = () => {
|
|
| 104 |
|
| 105 |
{/* Map - Right */}
|
| 106 |
<div className="lg:col-span-6 h-[350px] w-full rounded-xl overflow-hidden border border-white/10 relative shadow-2xl bg-[#1a0505]">
|
| 107 |
-
|
| 108 |
-
center={position}
|
| 109 |
-
zoom={16}
|
| 110 |
-
scrollWheelZoom={false}
|
| 111 |
-
style={{ height: '100%', width: '100%' }}
|
| 112 |
-
dragging={true}
|
| 113 |
-
>
|
| 114 |
-
{/* Dark Matter Tile Layer for Cinematic Feel */}
|
| 115 |
-
<TileLayer
|
| 116 |
-
attribution='© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors © <a href="https://carto.com/attributions">CARTO</a>'
|
| 117 |
-
url="https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png"
|
| 118 |
-
/>
|
| 119 |
-
<Marker position={position} icon={createCustomIcon()}>
|
| 120 |
-
<Popup className="font-sans text-sm bg-[#1a0505] text-white border-brand-gold">
|
| 121 |
-
<div className="text-center">
|
| 122 |
-
<strong className="block text-brand-gold text-base mb-1 font-serif">C.S. Pattanshetti</strong>
|
| 123 |
-
<span className="text-gray-300 text-xs uppercase tracking-wide">Sangli Market Yard</span>
|
| 124 |
-
</div>
|
| 125 |
-
</Popup>
|
| 126 |
-
</Marker>
|
| 127 |
-
</MapContainer>
|
| 128 |
|
| 129 |
{/* Interactive overlay instructions or border */}
|
| 130 |
<div className="absolute inset-0 pointer-events-none border border-white/10 rounded-xl shadow-[inset_0_0_40px_rgba(0,0,0,0.6)] z-[1000]" />
|
|
|
|
| 2 |
import { motion } from 'framer-motion';
|
| 3 |
import { MapPin, Linkedin, Instagram, Phone } from 'lucide-react';
|
| 4 |
import { FOOTER_DATA, SOCIAL_LINKS } from '../../data/mockData';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
const Footer: React.FC = () => {
|
|
|
|
|
|
|
| 7 |
return (
|
| 8 |
<footer className="relative bg-[#0f0202] text-white/80 overflow-hidden pt-24 pb-12 border-t border-white/5">
|
| 9 |
|
|
|
|
| 78 |
|
| 79 |
{/* Map - Right */}
|
| 80 |
<div className="lg:col-span-6 h-[350px] w-full rounded-xl overflow-hidden border border-white/10 relative shadow-2xl bg-[#1a0505]">
|
| 81 |
+
<div className="h-full w-full" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 82 |
|
| 83 |
{/* Interactive overlay instructions or border */}
|
| 84 |
<div className="absolute inset-0 pointer-events-none border border-white/10 rounded-xl shadow-[inset_0_0_40px_rgba(0,0,0,0.6)] z-[1000]" />
|
context/AudioContext.tsx
CHANGED
|
@@ -34,6 +34,27 @@ export const AudioProvider: React.FC<{ children: React.ReactNode }> = ({ childre
|
|
| 34 |
const globalAmbientRef = useRef<HTMLAudioElement | null>(null);
|
| 35 |
const sectionAudioRef = useRef<HTMLAudioElement | null>(null);
|
| 36 |
const fadeIntervalRef = useRef<number | null>(null);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
// Helper: Create Audio with Error Handling
|
| 39 |
const createSafeAudio = (url: string, loop: boolean = true) => {
|
|
@@ -94,16 +115,27 @@ export const AudioProvider: React.FC<{ children: React.ReactNode }> = ({ childre
|
|
| 94 |
gsapFadeVolume(audio, 0.4);
|
| 95 |
})
|
| 96 |
.catch(e => {
|
| 97 |
-
// Browsers block autoplay without interaction.
|
| 98 |
-
//
|
| 99 |
-
|
| 100 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
});
|
| 102 |
}
|
| 103 |
}
|
| 104 |
}
|
| 105 |
|
| 106 |
return () => {
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
if (globalAmbientRef.current) {
|
| 108 |
globalAmbientRef.current.pause();
|
| 109 |
globalAmbientRef.current = null;
|
|
|
|
| 34 |
const globalAmbientRef = useRef<HTMLAudioElement | null>(null);
|
| 35 |
const sectionAudioRef = useRef<HTMLAudioElement | null>(null);
|
| 36 |
const fadeIntervalRef = useRef<number | null>(null);
|
| 37 |
+
const resumeOnInteractionCleanupRef = useRef<(() => void) | null>(null);
|
| 38 |
+
|
| 39 |
+
const setupResumeOnFirstInteraction = (resume: () => void) => {
|
| 40 |
+
if (resumeOnInteractionCleanupRef.current) return;
|
| 41 |
+
|
| 42 |
+
const handler = () => {
|
| 43 |
+
resume();
|
| 44 |
+
resumeOnInteractionCleanupRef.current?.();
|
| 45 |
+
resumeOnInteractionCleanupRef.current = null;
|
| 46 |
+
};
|
| 47 |
+
|
| 48 |
+
window.addEventListener('pointerdown', handler, { once: true });
|
| 49 |
+
window.addEventListener('keydown', handler, { once: true });
|
| 50 |
+
window.addEventListener('touchstart', handler, { once: true });
|
| 51 |
+
|
| 52 |
+
resumeOnInteractionCleanupRef.current = () => {
|
| 53 |
+
window.removeEventListener('pointerdown', handler);
|
| 54 |
+
window.removeEventListener('keydown', handler);
|
| 55 |
+
window.removeEventListener('touchstart', handler);
|
| 56 |
+
};
|
| 57 |
+
};
|
| 58 |
|
| 59 |
// Helper: Create Audio with Error Handling
|
| 60 |
const createSafeAudio = (url: string, loop: boolean = true) => {
|
|
|
|
| 115 |
gsapFadeVolume(audio, 0.4);
|
| 116 |
})
|
| 117 |
.catch(e => {
|
| 118 |
+
// Browsers block autoplay without interaction.
|
| 119 |
+
// Resume on the first user interaction, without surfacing console noise.
|
| 120 |
+
setupResumeOnFirstInteraction(() => {
|
| 121 |
+
if (!globalAmbientRef.current || isMuted) return;
|
| 122 |
+
globalAmbientRef.current
|
| 123 |
+
.play()
|
| 124 |
+
.then(() => gsapFadeVolume(globalAmbientRef.current!, 0.4))
|
| 125 |
+
.catch(() => {
|
| 126 |
+
// Ignore subsequent autoplay rejections.
|
| 127 |
+
});
|
| 128 |
+
});
|
| 129 |
});
|
| 130 |
}
|
| 131 |
}
|
| 132 |
}
|
| 133 |
|
| 134 |
return () => {
|
| 135 |
+
if (resumeOnInteractionCleanupRef.current) {
|
| 136 |
+
resumeOnInteractionCleanupRef.current();
|
| 137 |
+
resumeOnInteractionCleanupRef.current = null;
|
| 138 |
+
}
|
| 139 |
if (globalAmbientRef.current) {
|
| 140 |
globalAmbientRef.current.pause();
|
| 141 |
globalAmbientRef.current = null;
|
index.css
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@tailwind base;
|
| 2 |
+
@tailwind components;
|
| 3 |
+
@tailwind utilities;
|
| 4 |
+
|
| 5 |
+
body {
|
| 6 |
+
background-color: #0f0202;
|
| 7 |
+
color: #fce7f3;
|
| 8 |
+
overflow-x: hidden;
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
+
::-webkit-scrollbar {
|
| 12 |
+
width: 6px;
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
::-webkit-scrollbar-track {
|
| 16 |
+
background: #1a0505;
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
::-webkit-scrollbar-thumb {
|
| 20 |
+
background: #7f1d1d;
|
| 21 |
+
border-radius: 3px;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
.noise-overlay {
|
| 25 |
+
position: fixed;
|
| 26 |
+
top: 0;
|
| 27 |
+
left: 0;
|
| 28 |
+
width: 100%;
|
| 29 |
+
height: 100%;
|
| 30 |
+
pointer-events: none;
|
| 31 |
+
z-index: 9999;
|
| 32 |
+
opacity: 0.04;
|
| 33 |
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
|
| 34 |
+
}
|
index.html
CHANGED
|
@@ -12,37 +12,6 @@
|
|
| 12 |
<meta name="description" content="India's premier source for authentic Byadgi and Teja red chillies. We supply high-ASTA, lab-tested spices to global brands and exporters." />
|
| 13 |
|
| 14 |
<!-- Tailwind CSS -->
|
| 15 |
-
<script src="https://cdn.tailwindcss.com"></script>
|
| 16 |
-
<script>
|
| 17 |
-
tailwind.config = {
|
| 18 |
-
theme: {
|
| 19 |
-
extend: {
|
| 20 |
-
colors: {
|
| 21 |
-
brand: {
|
| 22 |
-
dark: '#1a0505',
|
| 23 |
-
maroon: '#450a0a',
|
| 24 |
-
red: '#dc2626',
|
| 25 |
-
accent: '#fca5a5',
|
| 26 |
-
gold: '#d4af37'
|
| 27 |
-
}
|
| 28 |
-
},
|
| 29 |
-
fontFamily: {
|
| 30 |
-
serif: ['"Playfair Display"', 'serif'],
|
| 31 |
-
sans: ['"Inter"', 'sans-serif'],
|
| 32 |
-
doto: ['"Doto"', 'sans-serif'],
|
| 33 |
-
devanagari: ['"Noto Serif Devanagari"', 'serif'],
|
| 34 |
-
kannada: ['"Noto Serif Kannada"', 'serif'],
|
| 35 |
-
},
|
| 36 |
-
animation: {
|
| 37 |
-
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
|
| 38 |
-
}
|
| 39 |
-
}
|
| 40 |
-
}
|
| 41 |
-
}
|
| 42 |
-
</script>
|
| 43 |
-
|
| 44 |
-
<!-- Leaflet CSS -->
|
| 45 |
-
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
|
| 46 |
|
| 47 |
<!-- Google Fonts -->
|
| 48 |
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
@@ -79,50 +48,7 @@
|
|
| 79 |
opacity: 0.04;
|
| 80 |
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
|
| 81 |
}
|
| 82 |
-
|
| 83 |
-
/* Leaflet Customizations for Dark Theme */
|
| 84 |
-
.leaflet-container {
|
| 85 |
-
background: #0f0202 !important;
|
| 86 |
-
font-family: 'Inter', sans-serif;
|
| 87 |
-
}
|
| 88 |
-
.leaflet-popup-content-wrapper {
|
| 89 |
-
background: rgba(26, 5, 5, 0.95);
|
| 90 |
-
backdrop-filter: blur(10px);
|
| 91 |
-
color: #d4af37;
|
| 92 |
-
border: 1px solid rgba(255, 255, 255, 0.1);
|
| 93 |
-
border-radius: 4px;
|
| 94 |
-
}
|
| 95 |
-
.leaflet-popup-tip {
|
| 96 |
-
background: rgba(26, 5, 5, 0.95);
|
| 97 |
-
}
|
| 98 |
-
.leaflet-control-attribution {
|
| 99 |
-
background: rgba(0,0,0,0.5) !important;
|
| 100 |
-
color: #888 !important;
|
| 101 |
-
}
|
| 102 |
-
.leaflet-control-attribution a {
|
| 103 |
-
color: #d4af37 !important;
|
| 104 |
-
}
|
| 105 |
</style>
|
| 106 |
-
<script type="importmap">
|
| 107 |
-
{
|
| 108 |
-
"imports": {
|
| 109 |
-
"lucide-react": "https://esm.sh/lucide-react@0.263.1?external=react",
|
| 110 |
-
"react-dom/client": "https://esm.sh/react-dom@18.2.0/client",
|
| 111 |
-
"react-dom": "https://esm.sh/react-dom@18.2.0",
|
| 112 |
-
"react": "https://esm.sh/react@18.2.0",
|
| 113 |
-
"react/jsx-runtime": "https://esm.sh/react@18.2.0/jsx-runtime",
|
| 114 |
-
"framer-motion": "https://esm.sh/framer-motion@10.16.5?external=react,react-dom",
|
| 115 |
-
"gsap": "https://esm.sh/gsap@3.12.2",
|
| 116 |
-
"gsap/ScrollTrigger": "https://esm.sh/gsap@3.12.2/ScrollTrigger",
|
| 117 |
-
"leaflet": "https://esm.sh/leaflet@1.9.4",
|
| 118 |
-
"react-leaflet": "https://esm.sh/react-leaflet@4.2.1?external=react,react-dom,leaflet",
|
| 119 |
-
"react-helmet-async": "https://esm.sh/react-helmet-async@2.0.4?external=react,react-dom",
|
| 120 |
-
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
|
| 121 |
-
"react/": "https://esm.sh/react@^19.2.3/",
|
| 122 |
-
"gsap/": "https://esm.sh/gsap@^3.14.2/"
|
| 123 |
-
}
|
| 124 |
-
}
|
| 125 |
-
</script>
|
| 126 |
<link rel="stylesheet" href="/index.css">
|
| 127 |
</head>
|
| 128 |
<body>
|
|
|
|
| 12 |
<meta name="description" content="India's premier source for authentic Byadgi and Teja red chillies. We supply high-ASTA, lab-tested spices to global brands and exporters." />
|
| 13 |
|
| 14 |
<!-- Tailwind CSS -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
<!-- Google Fonts -->
|
| 17 |
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
| 48 |
opacity: 0.04;
|
| 49 |
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
|
| 50 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
<link rel="stylesheet" href="/index.css">
|
| 53 |
</head>
|
| 54 |
<body>
|
package-lock.json
ADDED
|
@@ -0,0 +1,2783 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "crimson-heat---premium-chilli",
|
| 3 |
+
"version": "0.0.0",
|
| 4 |
+
"lockfileVersion": 3,
|
| 5 |
+
"requires": true,
|
| 6 |
+
"packages": {
|
| 7 |
+
"": {
|
| 8 |
+
"name": "crimson-heat---premium-chilli",
|
| 9 |
+
"version": "0.0.0",
|
| 10 |
+
"dependencies": {
|
| 11 |
+
"framer-motion": "10.16.5",
|
| 12 |
+
"gsap": "^3.14.2",
|
| 13 |
+
"lucide-react": "0.263.1",
|
| 14 |
+
"react": "^18.2.0",
|
| 15 |
+
"react-dom": "^18.2.0",
|
| 16 |
+
"react-helmet-async": "2.0.4"
|
| 17 |
+
},
|
| 18 |
+
"devDependencies": {
|
| 19 |
+
"@types/node": "^22.14.0",
|
| 20 |
+
"@vitejs/plugin-react": "^5.0.0",
|
| 21 |
+
"autoprefixer": "^10.4.20",
|
| 22 |
+
"postcss": "^8.4.49",
|
| 23 |
+
"tailwindcss": "^3.4.17",
|
| 24 |
+
"typescript": "~5.8.2",
|
| 25 |
+
"vite": "^6.2.0"
|
| 26 |
+
}
|
| 27 |
+
},
|
| 28 |
+
"node_modules/@alloc/quick-lru": {
|
| 29 |
+
"version": "5.2.0",
|
| 30 |
+
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
|
| 31 |
+
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
|
| 32 |
+
"dev": true,
|
| 33 |
+
"license": "MIT",
|
| 34 |
+
"engines": {
|
| 35 |
+
"node": ">=10"
|
| 36 |
+
},
|
| 37 |
+
"funding": {
|
| 38 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
| 39 |
+
}
|
| 40 |
+
},
|
| 41 |
+
"node_modules/@babel/code-frame": {
|
| 42 |
+
"version": "7.27.1",
|
| 43 |
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
|
| 44 |
+
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
|
| 45 |
+
"dev": true,
|
| 46 |
+
"license": "MIT",
|
| 47 |
+
"dependencies": {
|
| 48 |
+
"@babel/helper-validator-identifier": "^7.27.1",
|
| 49 |
+
"js-tokens": "^4.0.0",
|
| 50 |
+
"picocolors": "^1.1.1"
|
| 51 |
+
},
|
| 52 |
+
"engines": {
|
| 53 |
+
"node": ">=6.9.0"
|
| 54 |
+
}
|
| 55 |
+
},
|
| 56 |
+
"node_modules/@babel/compat-data": {
|
| 57 |
+
"version": "7.28.5",
|
| 58 |
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz",
|
| 59 |
+
"integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==",
|
| 60 |
+
"dev": true,
|
| 61 |
+
"license": "MIT",
|
| 62 |
+
"engines": {
|
| 63 |
+
"node": ">=6.9.0"
|
| 64 |
+
}
|
| 65 |
+
},
|
| 66 |
+
"node_modules/@babel/core": {
|
| 67 |
+
"version": "7.28.5",
|
| 68 |
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz",
|
| 69 |
+
"integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==",
|
| 70 |
+
"dev": true,
|
| 71 |
+
"license": "MIT",
|
| 72 |
+
"dependencies": {
|
| 73 |
+
"@babel/code-frame": "^7.27.1",
|
| 74 |
+
"@babel/generator": "^7.28.5",
|
| 75 |
+
"@babel/helper-compilation-targets": "^7.27.2",
|
| 76 |
+
"@babel/helper-module-transforms": "^7.28.3",
|
| 77 |
+
"@babel/helpers": "^7.28.4",
|
| 78 |
+
"@babel/parser": "^7.28.5",
|
| 79 |
+
"@babel/template": "^7.27.2",
|
| 80 |
+
"@babel/traverse": "^7.28.5",
|
| 81 |
+
"@babel/types": "^7.28.5",
|
| 82 |
+
"@jridgewell/remapping": "^2.3.5",
|
| 83 |
+
"convert-source-map": "^2.0.0",
|
| 84 |
+
"debug": "^4.1.0",
|
| 85 |
+
"gensync": "^1.0.0-beta.2",
|
| 86 |
+
"json5": "^2.2.3",
|
| 87 |
+
"semver": "^6.3.1"
|
| 88 |
+
},
|
| 89 |
+
"engines": {
|
| 90 |
+
"node": ">=6.9.0"
|
| 91 |
+
},
|
| 92 |
+
"funding": {
|
| 93 |
+
"type": "opencollective",
|
| 94 |
+
"url": "https://opencollective.com/babel"
|
| 95 |
+
}
|
| 96 |
+
},
|
| 97 |
+
"node_modules/@babel/generator": {
|
| 98 |
+
"version": "7.28.5",
|
| 99 |
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz",
|
| 100 |
+
"integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==",
|
| 101 |
+
"dev": true,
|
| 102 |
+
"license": "MIT",
|
| 103 |
+
"dependencies": {
|
| 104 |
+
"@babel/parser": "^7.28.5",
|
| 105 |
+
"@babel/types": "^7.28.5",
|
| 106 |
+
"@jridgewell/gen-mapping": "^0.3.12",
|
| 107 |
+
"@jridgewell/trace-mapping": "^0.3.28",
|
| 108 |
+
"jsesc": "^3.0.2"
|
| 109 |
+
},
|
| 110 |
+
"engines": {
|
| 111 |
+
"node": ">=6.9.0"
|
| 112 |
+
}
|
| 113 |
+
},
|
| 114 |
+
"node_modules/@babel/helper-compilation-targets": {
|
| 115 |
+
"version": "7.27.2",
|
| 116 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
|
| 117 |
+
"integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
|
| 118 |
+
"dev": true,
|
| 119 |
+
"license": "MIT",
|
| 120 |
+
"dependencies": {
|
| 121 |
+
"@babel/compat-data": "^7.27.2",
|
| 122 |
+
"@babel/helper-validator-option": "^7.27.1",
|
| 123 |
+
"browserslist": "^4.24.0",
|
| 124 |
+
"lru-cache": "^5.1.1",
|
| 125 |
+
"semver": "^6.3.1"
|
| 126 |
+
},
|
| 127 |
+
"engines": {
|
| 128 |
+
"node": ">=6.9.0"
|
| 129 |
+
}
|
| 130 |
+
},
|
| 131 |
+
"node_modules/@babel/helper-globals": {
|
| 132 |
+
"version": "7.28.0",
|
| 133 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
|
| 134 |
+
"integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
|
| 135 |
+
"dev": true,
|
| 136 |
+
"license": "MIT",
|
| 137 |
+
"engines": {
|
| 138 |
+
"node": ">=6.9.0"
|
| 139 |
+
}
|
| 140 |
+
},
|
| 141 |
+
"node_modules/@babel/helper-module-imports": {
|
| 142 |
+
"version": "7.27.1",
|
| 143 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
|
| 144 |
+
"integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
|
| 145 |
+
"dev": true,
|
| 146 |
+
"license": "MIT",
|
| 147 |
+
"dependencies": {
|
| 148 |
+
"@babel/traverse": "^7.27.1",
|
| 149 |
+
"@babel/types": "^7.27.1"
|
| 150 |
+
},
|
| 151 |
+
"engines": {
|
| 152 |
+
"node": ">=6.9.0"
|
| 153 |
+
}
|
| 154 |
+
},
|
| 155 |
+
"node_modules/@babel/helper-module-transforms": {
|
| 156 |
+
"version": "7.28.3",
|
| 157 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz",
|
| 158 |
+
"integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==",
|
| 159 |
+
"dev": true,
|
| 160 |
+
"license": "MIT",
|
| 161 |
+
"dependencies": {
|
| 162 |
+
"@babel/helper-module-imports": "^7.27.1",
|
| 163 |
+
"@babel/helper-validator-identifier": "^7.27.1",
|
| 164 |
+
"@babel/traverse": "^7.28.3"
|
| 165 |
+
},
|
| 166 |
+
"engines": {
|
| 167 |
+
"node": ">=6.9.0"
|
| 168 |
+
},
|
| 169 |
+
"peerDependencies": {
|
| 170 |
+
"@babel/core": "^7.0.0"
|
| 171 |
+
}
|
| 172 |
+
},
|
| 173 |
+
"node_modules/@babel/helper-plugin-utils": {
|
| 174 |
+
"version": "7.27.1",
|
| 175 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
|
| 176 |
+
"integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
|
| 177 |
+
"dev": true,
|
| 178 |
+
"license": "MIT",
|
| 179 |
+
"engines": {
|
| 180 |
+
"node": ">=6.9.0"
|
| 181 |
+
}
|
| 182 |
+
},
|
| 183 |
+
"node_modules/@babel/helper-string-parser": {
|
| 184 |
+
"version": "7.27.1",
|
| 185 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
|
| 186 |
+
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
|
| 187 |
+
"dev": true,
|
| 188 |
+
"license": "MIT",
|
| 189 |
+
"engines": {
|
| 190 |
+
"node": ">=6.9.0"
|
| 191 |
+
}
|
| 192 |
+
},
|
| 193 |
+
"node_modules/@babel/helper-validator-identifier": {
|
| 194 |
+
"version": "7.28.5",
|
| 195 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
|
| 196 |
+
"integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
|
| 197 |
+
"dev": true,
|
| 198 |
+
"license": "MIT",
|
| 199 |
+
"engines": {
|
| 200 |
+
"node": ">=6.9.0"
|
| 201 |
+
}
|
| 202 |
+
},
|
| 203 |
+
"node_modules/@babel/helper-validator-option": {
|
| 204 |
+
"version": "7.27.1",
|
| 205 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
|
| 206 |
+
"integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
|
| 207 |
+
"dev": true,
|
| 208 |
+
"license": "MIT",
|
| 209 |
+
"engines": {
|
| 210 |
+
"node": ">=6.9.0"
|
| 211 |
+
}
|
| 212 |
+
},
|
| 213 |
+
"node_modules/@babel/helpers": {
|
| 214 |
+
"version": "7.28.4",
|
| 215 |
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz",
|
| 216 |
+
"integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==",
|
| 217 |
+
"dev": true,
|
| 218 |
+
"license": "MIT",
|
| 219 |
+
"dependencies": {
|
| 220 |
+
"@babel/template": "^7.27.2",
|
| 221 |
+
"@babel/types": "^7.28.4"
|
| 222 |
+
},
|
| 223 |
+
"engines": {
|
| 224 |
+
"node": ">=6.9.0"
|
| 225 |
+
}
|
| 226 |
+
},
|
| 227 |
+
"node_modules/@babel/parser": {
|
| 228 |
+
"version": "7.28.5",
|
| 229 |
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz",
|
| 230 |
+
"integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==",
|
| 231 |
+
"dev": true,
|
| 232 |
+
"license": "MIT",
|
| 233 |
+
"dependencies": {
|
| 234 |
+
"@babel/types": "^7.28.5"
|
| 235 |
+
},
|
| 236 |
+
"bin": {
|
| 237 |
+
"parser": "bin/babel-parser.js"
|
| 238 |
+
},
|
| 239 |
+
"engines": {
|
| 240 |
+
"node": ">=6.0.0"
|
| 241 |
+
}
|
| 242 |
+
},
|
| 243 |
+
"node_modules/@babel/plugin-transform-react-jsx-self": {
|
| 244 |
+
"version": "7.27.1",
|
| 245 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
|
| 246 |
+
"integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
|
| 247 |
+
"dev": true,
|
| 248 |
+
"license": "MIT",
|
| 249 |
+
"dependencies": {
|
| 250 |
+
"@babel/helper-plugin-utils": "^7.27.1"
|
| 251 |
+
},
|
| 252 |
+
"engines": {
|
| 253 |
+
"node": ">=6.9.0"
|
| 254 |
+
},
|
| 255 |
+
"peerDependencies": {
|
| 256 |
+
"@babel/core": "^7.0.0-0"
|
| 257 |
+
}
|
| 258 |
+
},
|
| 259 |
+
"node_modules/@babel/plugin-transform-react-jsx-source": {
|
| 260 |
+
"version": "7.27.1",
|
| 261 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
|
| 262 |
+
"integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
|
| 263 |
+
"dev": true,
|
| 264 |
+
"license": "MIT",
|
| 265 |
+
"dependencies": {
|
| 266 |
+
"@babel/helper-plugin-utils": "^7.27.1"
|
| 267 |
+
},
|
| 268 |
+
"engines": {
|
| 269 |
+
"node": ">=6.9.0"
|
| 270 |
+
},
|
| 271 |
+
"peerDependencies": {
|
| 272 |
+
"@babel/core": "^7.0.0-0"
|
| 273 |
+
}
|
| 274 |
+
},
|
| 275 |
+
"node_modules/@babel/template": {
|
| 276 |
+
"version": "7.27.2",
|
| 277 |
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
|
| 278 |
+
"integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
|
| 279 |
+
"dev": true,
|
| 280 |
+
"license": "MIT",
|
| 281 |
+
"dependencies": {
|
| 282 |
+
"@babel/code-frame": "^7.27.1",
|
| 283 |
+
"@babel/parser": "^7.27.2",
|
| 284 |
+
"@babel/types": "^7.27.1"
|
| 285 |
+
},
|
| 286 |
+
"engines": {
|
| 287 |
+
"node": ">=6.9.0"
|
| 288 |
+
}
|
| 289 |
+
},
|
| 290 |
+
"node_modules/@babel/traverse": {
|
| 291 |
+
"version": "7.28.5",
|
| 292 |
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz",
|
| 293 |
+
"integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==",
|
| 294 |
+
"dev": true,
|
| 295 |
+
"license": "MIT",
|
| 296 |
+
"dependencies": {
|
| 297 |
+
"@babel/code-frame": "^7.27.1",
|
| 298 |
+
"@babel/generator": "^7.28.5",
|
| 299 |
+
"@babel/helper-globals": "^7.28.0",
|
| 300 |
+
"@babel/parser": "^7.28.5",
|
| 301 |
+
"@babel/template": "^7.27.2",
|
| 302 |
+
"@babel/types": "^7.28.5",
|
| 303 |
+
"debug": "^4.3.1"
|
| 304 |
+
},
|
| 305 |
+
"engines": {
|
| 306 |
+
"node": ">=6.9.0"
|
| 307 |
+
}
|
| 308 |
+
},
|
| 309 |
+
"node_modules/@babel/types": {
|
| 310 |
+
"version": "7.28.5",
|
| 311 |
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz",
|
| 312 |
+
"integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==",
|
| 313 |
+
"dev": true,
|
| 314 |
+
"license": "MIT",
|
| 315 |
+
"dependencies": {
|
| 316 |
+
"@babel/helper-string-parser": "^7.27.1",
|
| 317 |
+
"@babel/helper-validator-identifier": "^7.28.5"
|
| 318 |
+
},
|
| 319 |
+
"engines": {
|
| 320 |
+
"node": ">=6.9.0"
|
| 321 |
+
}
|
| 322 |
+
},
|
| 323 |
+
"node_modules/@emotion/is-prop-valid": {
|
| 324 |
+
"version": "0.8.8",
|
| 325 |
+
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
|
| 326 |
+
"integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
|
| 327 |
+
"license": "MIT",
|
| 328 |
+
"optional": true,
|
| 329 |
+
"dependencies": {
|
| 330 |
+
"@emotion/memoize": "0.7.4"
|
| 331 |
+
}
|
| 332 |
+
},
|
| 333 |
+
"node_modules/@emotion/memoize": {
|
| 334 |
+
"version": "0.7.4",
|
| 335 |
+
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
|
| 336 |
+
"integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==",
|
| 337 |
+
"license": "MIT",
|
| 338 |
+
"optional": true
|
| 339 |
+
},
|
| 340 |
+
"node_modules/@esbuild/aix-ppc64": {
|
| 341 |
+
"version": "0.25.12",
|
| 342 |
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
|
| 343 |
+
"integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
|
| 344 |
+
"cpu": [
|
| 345 |
+
"ppc64"
|
| 346 |
+
],
|
| 347 |
+
"dev": true,
|
| 348 |
+
"license": "MIT",
|
| 349 |
+
"optional": true,
|
| 350 |
+
"os": [
|
| 351 |
+
"aix"
|
| 352 |
+
],
|
| 353 |
+
"engines": {
|
| 354 |
+
"node": ">=18"
|
| 355 |
+
}
|
| 356 |
+
},
|
| 357 |
+
"node_modules/@esbuild/android-arm": {
|
| 358 |
+
"version": "0.25.12",
|
| 359 |
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
|
| 360 |
+
"integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
|
| 361 |
+
"cpu": [
|
| 362 |
+
"arm"
|
| 363 |
+
],
|
| 364 |
+
"dev": true,
|
| 365 |
+
"license": "MIT",
|
| 366 |
+
"optional": true,
|
| 367 |
+
"os": [
|
| 368 |
+
"android"
|
| 369 |
+
],
|
| 370 |
+
"engines": {
|
| 371 |
+
"node": ">=18"
|
| 372 |
+
}
|
| 373 |
+
},
|
| 374 |
+
"node_modules/@esbuild/android-arm64": {
|
| 375 |
+
"version": "0.25.12",
|
| 376 |
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
|
| 377 |
+
"integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
|
| 378 |
+
"cpu": [
|
| 379 |
+
"arm64"
|
| 380 |
+
],
|
| 381 |
+
"dev": true,
|
| 382 |
+
"license": "MIT",
|
| 383 |
+
"optional": true,
|
| 384 |
+
"os": [
|
| 385 |
+
"android"
|
| 386 |
+
],
|
| 387 |
+
"engines": {
|
| 388 |
+
"node": ">=18"
|
| 389 |
+
}
|
| 390 |
+
},
|
| 391 |
+
"node_modules/@esbuild/android-x64": {
|
| 392 |
+
"version": "0.25.12",
|
| 393 |
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
|
| 394 |
+
"integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
|
| 395 |
+
"cpu": [
|
| 396 |
+
"x64"
|
| 397 |
+
],
|
| 398 |
+
"dev": true,
|
| 399 |
+
"license": "MIT",
|
| 400 |
+
"optional": true,
|
| 401 |
+
"os": [
|
| 402 |
+
"android"
|
| 403 |
+
],
|
| 404 |
+
"engines": {
|
| 405 |
+
"node": ">=18"
|
| 406 |
+
}
|
| 407 |
+
},
|
| 408 |
+
"node_modules/@esbuild/darwin-arm64": {
|
| 409 |
+
"version": "0.25.12",
|
| 410 |
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz",
|
| 411 |
+
"integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==",
|
| 412 |
+
"cpu": [
|
| 413 |
+
"arm64"
|
| 414 |
+
],
|
| 415 |
+
"dev": true,
|
| 416 |
+
"license": "MIT",
|
| 417 |
+
"optional": true,
|
| 418 |
+
"os": [
|
| 419 |
+
"darwin"
|
| 420 |
+
],
|
| 421 |
+
"engines": {
|
| 422 |
+
"node": ">=18"
|
| 423 |
+
}
|
| 424 |
+
},
|
| 425 |
+
"node_modules/@esbuild/darwin-x64": {
|
| 426 |
+
"version": "0.25.12",
|
| 427 |
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
|
| 428 |
+
"integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
|
| 429 |
+
"cpu": [
|
| 430 |
+
"x64"
|
| 431 |
+
],
|
| 432 |
+
"dev": true,
|
| 433 |
+
"license": "MIT",
|
| 434 |
+
"optional": true,
|
| 435 |
+
"os": [
|
| 436 |
+
"darwin"
|
| 437 |
+
],
|
| 438 |
+
"engines": {
|
| 439 |
+
"node": ">=18"
|
| 440 |
+
}
|
| 441 |
+
},
|
| 442 |
+
"node_modules/@esbuild/freebsd-arm64": {
|
| 443 |
+
"version": "0.25.12",
|
| 444 |
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
|
| 445 |
+
"integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
|
| 446 |
+
"cpu": [
|
| 447 |
+
"arm64"
|
| 448 |
+
],
|
| 449 |
+
"dev": true,
|
| 450 |
+
"license": "MIT",
|
| 451 |
+
"optional": true,
|
| 452 |
+
"os": [
|
| 453 |
+
"freebsd"
|
| 454 |
+
],
|
| 455 |
+
"engines": {
|
| 456 |
+
"node": ">=18"
|
| 457 |
+
}
|
| 458 |
+
},
|
| 459 |
+
"node_modules/@esbuild/freebsd-x64": {
|
| 460 |
+
"version": "0.25.12",
|
| 461 |
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
|
| 462 |
+
"integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
|
| 463 |
+
"cpu": [
|
| 464 |
+
"x64"
|
| 465 |
+
],
|
| 466 |
+
"dev": true,
|
| 467 |
+
"license": "MIT",
|
| 468 |
+
"optional": true,
|
| 469 |
+
"os": [
|
| 470 |
+
"freebsd"
|
| 471 |
+
],
|
| 472 |
+
"engines": {
|
| 473 |
+
"node": ">=18"
|
| 474 |
+
}
|
| 475 |
+
},
|
| 476 |
+
"node_modules/@esbuild/linux-arm": {
|
| 477 |
+
"version": "0.25.12",
|
| 478 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
|
| 479 |
+
"integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
|
| 480 |
+
"cpu": [
|
| 481 |
+
"arm"
|
| 482 |
+
],
|
| 483 |
+
"dev": true,
|
| 484 |
+
"license": "MIT",
|
| 485 |
+
"optional": true,
|
| 486 |
+
"os": [
|
| 487 |
+
"linux"
|
| 488 |
+
],
|
| 489 |
+
"engines": {
|
| 490 |
+
"node": ">=18"
|
| 491 |
+
}
|
| 492 |
+
},
|
| 493 |
+
"node_modules/@esbuild/linux-arm64": {
|
| 494 |
+
"version": "0.25.12",
|
| 495 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
|
| 496 |
+
"integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
|
| 497 |
+
"cpu": [
|
| 498 |
+
"arm64"
|
| 499 |
+
],
|
| 500 |
+
"dev": true,
|
| 501 |
+
"license": "MIT",
|
| 502 |
+
"optional": true,
|
| 503 |
+
"os": [
|
| 504 |
+
"linux"
|
| 505 |
+
],
|
| 506 |
+
"engines": {
|
| 507 |
+
"node": ">=18"
|
| 508 |
+
}
|
| 509 |
+
},
|
| 510 |
+
"node_modules/@esbuild/linux-ia32": {
|
| 511 |
+
"version": "0.25.12",
|
| 512 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
|
| 513 |
+
"integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
|
| 514 |
+
"cpu": [
|
| 515 |
+
"ia32"
|
| 516 |
+
],
|
| 517 |
+
"dev": true,
|
| 518 |
+
"license": "MIT",
|
| 519 |
+
"optional": true,
|
| 520 |
+
"os": [
|
| 521 |
+
"linux"
|
| 522 |
+
],
|
| 523 |
+
"engines": {
|
| 524 |
+
"node": ">=18"
|
| 525 |
+
}
|
| 526 |
+
},
|
| 527 |
+
"node_modules/@esbuild/linux-loong64": {
|
| 528 |
+
"version": "0.25.12",
|
| 529 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
|
| 530 |
+
"integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
|
| 531 |
+
"cpu": [
|
| 532 |
+
"loong64"
|
| 533 |
+
],
|
| 534 |
+
"dev": true,
|
| 535 |
+
"license": "MIT",
|
| 536 |
+
"optional": true,
|
| 537 |
+
"os": [
|
| 538 |
+
"linux"
|
| 539 |
+
],
|
| 540 |
+
"engines": {
|
| 541 |
+
"node": ">=18"
|
| 542 |
+
}
|
| 543 |
+
},
|
| 544 |
+
"node_modules/@esbuild/linux-mips64el": {
|
| 545 |
+
"version": "0.25.12",
|
| 546 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
|
| 547 |
+
"integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
|
| 548 |
+
"cpu": [
|
| 549 |
+
"mips64el"
|
| 550 |
+
],
|
| 551 |
+
"dev": true,
|
| 552 |
+
"license": "MIT",
|
| 553 |
+
"optional": true,
|
| 554 |
+
"os": [
|
| 555 |
+
"linux"
|
| 556 |
+
],
|
| 557 |
+
"engines": {
|
| 558 |
+
"node": ">=18"
|
| 559 |
+
}
|
| 560 |
+
},
|
| 561 |
+
"node_modules/@esbuild/linux-ppc64": {
|
| 562 |
+
"version": "0.25.12",
|
| 563 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
|
| 564 |
+
"integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
|
| 565 |
+
"cpu": [
|
| 566 |
+
"ppc64"
|
| 567 |
+
],
|
| 568 |
+
"dev": true,
|
| 569 |
+
"license": "MIT",
|
| 570 |
+
"optional": true,
|
| 571 |
+
"os": [
|
| 572 |
+
"linux"
|
| 573 |
+
],
|
| 574 |
+
"engines": {
|
| 575 |
+
"node": ">=18"
|
| 576 |
+
}
|
| 577 |
+
},
|
| 578 |
+
"node_modules/@esbuild/linux-riscv64": {
|
| 579 |
+
"version": "0.25.12",
|
| 580 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
|
| 581 |
+
"integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
|
| 582 |
+
"cpu": [
|
| 583 |
+
"riscv64"
|
| 584 |
+
],
|
| 585 |
+
"dev": true,
|
| 586 |
+
"license": "MIT",
|
| 587 |
+
"optional": true,
|
| 588 |
+
"os": [
|
| 589 |
+
"linux"
|
| 590 |
+
],
|
| 591 |
+
"engines": {
|
| 592 |
+
"node": ">=18"
|
| 593 |
+
}
|
| 594 |
+
},
|
| 595 |
+
"node_modules/@esbuild/linux-s390x": {
|
| 596 |
+
"version": "0.25.12",
|
| 597 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
|
| 598 |
+
"integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
|
| 599 |
+
"cpu": [
|
| 600 |
+
"s390x"
|
| 601 |
+
],
|
| 602 |
+
"dev": true,
|
| 603 |
+
"license": "MIT",
|
| 604 |
+
"optional": true,
|
| 605 |
+
"os": [
|
| 606 |
+
"linux"
|
| 607 |
+
],
|
| 608 |
+
"engines": {
|
| 609 |
+
"node": ">=18"
|
| 610 |
+
}
|
| 611 |
+
},
|
| 612 |
+
"node_modules/@esbuild/linux-x64": {
|
| 613 |
+
"version": "0.25.12",
|
| 614 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
|
| 615 |
+
"integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
|
| 616 |
+
"cpu": [
|
| 617 |
+
"x64"
|
| 618 |
+
],
|
| 619 |
+
"dev": true,
|
| 620 |
+
"license": "MIT",
|
| 621 |
+
"optional": true,
|
| 622 |
+
"os": [
|
| 623 |
+
"linux"
|
| 624 |
+
],
|
| 625 |
+
"engines": {
|
| 626 |
+
"node": ">=18"
|
| 627 |
+
}
|
| 628 |
+
},
|
| 629 |
+
"node_modules/@esbuild/netbsd-arm64": {
|
| 630 |
+
"version": "0.25.12",
|
| 631 |
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
|
| 632 |
+
"integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
|
| 633 |
+
"cpu": [
|
| 634 |
+
"arm64"
|
| 635 |
+
],
|
| 636 |
+
"dev": true,
|
| 637 |
+
"license": "MIT",
|
| 638 |
+
"optional": true,
|
| 639 |
+
"os": [
|
| 640 |
+
"netbsd"
|
| 641 |
+
],
|
| 642 |
+
"engines": {
|
| 643 |
+
"node": ">=18"
|
| 644 |
+
}
|
| 645 |
+
},
|
| 646 |
+
"node_modules/@esbuild/netbsd-x64": {
|
| 647 |
+
"version": "0.25.12",
|
| 648 |
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
|
| 649 |
+
"integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
|
| 650 |
+
"cpu": [
|
| 651 |
+
"x64"
|
| 652 |
+
],
|
| 653 |
+
"dev": true,
|
| 654 |
+
"license": "MIT",
|
| 655 |
+
"optional": true,
|
| 656 |
+
"os": [
|
| 657 |
+
"netbsd"
|
| 658 |
+
],
|
| 659 |
+
"engines": {
|
| 660 |
+
"node": ">=18"
|
| 661 |
+
}
|
| 662 |
+
},
|
| 663 |
+
"node_modules/@esbuild/openbsd-arm64": {
|
| 664 |
+
"version": "0.25.12",
|
| 665 |
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
|
| 666 |
+
"integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
|
| 667 |
+
"cpu": [
|
| 668 |
+
"arm64"
|
| 669 |
+
],
|
| 670 |
+
"dev": true,
|
| 671 |
+
"license": "MIT",
|
| 672 |
+
"optional": true,
|
| 673 |
+
"os": [
|
| 674 |
+
"openbsd"
|
| 675 |
+
],
|
| 676 |
+
"engines": {
|
| 677 |
+
"node": ">=18"
|
| 678 |
+
}
|
| 679 |
+
},
|
| 680 |
+
"node_modules/@esbuild/openbsd-x64": {
|
| 681 |
+
"version": "0.25.12",
|
| 682 |
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
|
| 683 |
+
"integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
|
| 684 |
+
"cpu": [
|
| 685 |
+
"x64"
|
| 686 |
+
],
|
| 687 |
+
"dev": true,
|
| 688 |
+
"license": "MIT",
|
| 689 |
+
"optional": true,
|
| 690 |
+
"os": [
|
| 691 |
+
"openbsd"
|
| 692 |
+
],
|
| 693 |
+
"engines": {
|
| 694 |
+
"node": ">=18"
|
| 695 |
+
}
|
| 696 |
+
},
|
| 697 |
+
"node_modules/@esbuild/openharmony-arm64": {
|
| 698 |
+
"version": "0.25.12",
|
| 699 |
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
|
| 700 |
+
"integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
|
| 701 |
+
"cpu": [
|
| 702 |
+
"arm64"
|
| 703 |
+
],
|
| 704 |
+
"dev": true,
|
| 705 |
+
"license": "MIT",
|
| 706 |
+
"optional": true,
|
| 707 |
+
"os": [
|
| 708 |
+
"openharmony"
|
| 709 |
+
],
|
| 710 |
+
"engines": {
|
| 711 |
+
"node": ">=18"
|
| 712 |
+
}
|
| 713 |
+
},
|
| 714 |
+
"node_modules/@esbuild/sunos-x64": {
|
| 715 |
+
"version": "0.25.12",
|
| 716 |
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
|
| 717 |
+
"integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
|
| 718 |
+
"cpu": [
|
| 719 |
+
"x64"
|
| 720 |
+
],
|
| 721 |
+
"dev": true,
|
| 722 |
+
"license": "MIT",
|
| 723 |
+
"optional": true,
|
| 724 |
+
"os": [
|
| 725 |
+
"sunos"
|
| 726 |
+
],
|
| 727 |
+
"engines": {
|
| 728 |
+
"node": ">=18"
|
| 729 |
+
}
|
| 730 |
+
},
|
| 731 |
+
"node_modules/@esbuild/win32-arm64": {
|
| 732 |
+
"version": "0.25.12",
|
| 733 |
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
|
| 734 |
+
"integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
|
| 735 |
+
"cpu": [
|
| 736 |
+
"arm64"
|
| 737 |
+
],
|
| 738 |
+
"dev": true,
|
| 739 |
+
"license": "MIT",
|
| 740 |
+
"optional": true,
|
| 741 |
+
"os": [
|
| 742 |
+
"win32"
|
| 743 |
+
],
|
| 744 |
+
"engines": {
|
| 745 |
+
"node": ">=18"
|
| 746 |
+
}
|
| 747 |
+
},
|
| 748 |
+
"node_modules/@esbuild/win32-ia32": {
|
| 749 |
+
"version": "0.25.12",
|
| 750 |
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
|
| 751 |
+
"integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
|
| 752 |
+
"cpu": [
|
| 753 |
+
"ia32"
|
| 754 |
+
],
|
| 755 |
+
"dev": true,
|
| 756 |
+
"license": "MIT",
|
| 757 |
+
"optional": true,
|
| 758 |
+
"os": [
|
| 759 |
+
"win32"
|
| 760 |
+
],
|
| 761 |
+
"engines": {
|
| 762 |
+
"node": ">=18"
|
| 763 |
+
}
|
| 764 |
+
},
|
| 765 |
+
"node_modules/@esbuild/win32-x64": {
|
| 766 |
+
"version": "0.25.12",
|
| 767 |
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
|
| 768 |
+
"integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
|
| 769 |
+
"cpu": [
|
| 770 |
+
"x64"
|
| 771 |
+
],
|
| 772 |
+
"dev": true,
|
| 773 |
+
"license": "MIT",
|
| 774 |
+
"optional": true,
|
| 775 |
+
"os": [
|
| 776 |
+
"win32"
|
| 777 |
+
],
|
| 778 |
+
"engines": {
|
| 779 |
+
"node": ">=18"
|
| 780 |
+
}
|
| 781 |
+
},
|
| 782 |
+
"node_modules/@jridgewell/gen-mapping": {
|
| 783 |
+
"version": "0.3.13",
|
| 784 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
| 785 |
+
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
| 786 |
+
"dev": true,
|
| 787 |
+
"license": "MIT",
|
| 788 |
+
"dependencies": {
|
| 789 |
+
"@jridgewell/sourcemap-codec": "^1.5.0",
|
| 790 |
+
"@jridgewell/trace-mapping": "^0.3.24"
|
| 791 |
+
}
|
| 792 |
+
},
|
| 793 |
+
"node_modules/@jridgewell/remapping": {
|
| 794 |
+
"version": "2.3.5",
|
| 795 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
|
| 796 |
+
"integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
|
| 797 |
+
"dev": true,
|
| 798 |
+
"license": "MIT",
|
| 799 |
+
"dependencies": {
|
| 800 |
+
"@jridgewell/gen-mapping": "^0.3.5",
|
| 801 |
+
"@jridgewell/trace-mapping": "^0.3.24"
|
| 802 |
+
}
|
| 803 |
+
},
|
| 804 |
+
"node_modules/@jridgewell/resolve-uri": {
|
| 805 |
+
"version": "3.1.2",
|
| 806 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
| 807 |
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
| 808 |
+
"dev": true,
|
| 809 |
+
"license": "MIT",
|
| 810 |
+
"engines": {
|
| 811 |
+
"node": ">=6.0.0"
|
| 812 |
+
}
|
| 813 |
+
},
|
| 814 |
+
"node_modules/@jridgewell/sourcemap-codec": {
|
| 815 |
+
"version": "1.5.5",
|
| 816 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
| 817 |
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
| 818 |
+
"dev": true,
|
| 819 |
+
"license": "MIT"
|
| 820 |
+
},
|
| 821 |
+
"node_modules/@jridgewell/trace-mapping": {
|
| 822 |
+
"version": "0.3.31",
|
| 823 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
| 824 |
+
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
|
| 825 |
+
"dev": true,
|
| 826 |
+
"license": "MIT",
|
| 827 |
+
"dependencies": {
|
| 828 |
+
"@jridgewell/resolve-uri": "^3.1.0",
|
| 829 |
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
| 830 |
+
}
|
| 831 |
+
},
|
| 832 |
+
"node_modules/@nodelib/fs.scandir": {
|
| 833 |
+
"version": "2.1.5",
|
| 834 |
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
|
| 835 |
+
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
|
| 836 |
+
"dev": true,
|
| 837 |
+
"license": "MIT",
|
| 838 |
+
"dependencies": {
|
| 839 |
+
"@nodelib/fs.stat": "2.0.5",
|
| 840 |
+
"run-parallel": "^1.1.9"
|
| 841 |
+
},
|
| 842 |
+
"engines": {
|
| 843 |
+
"node": ">= 8"
|
| 844 |
+
}
|
| 845 |
+
},
|
| 846 |
+
"node_modules/@nodelib/fs.stat": {
|
| 847 |
+
"version": "2.0.5",
|
| 848 |
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
|
| 849 |
+
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
|
| 850 |
+
"dev": true,
|
| 851 |
+
"license": "MIT",
|
| 852 |
+
"engines": {
|
| 853 |
+
"node": ">= 8"
|
| 854 |
+
}
|
| 855 |
+
},
|
| 856 |
+
"node_modules/@nodelib/fs.walk": {
|
| 857 |
+
"version": "1.2.8",
|
| 858 |
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
|
| 859 |
+
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
|
| 860 |
+
"dev": true,
|
| 861 |
+
"license": "MIT",
|
| 862 |
+
"dependencies": {
|
| 863 |
+
"@nodelib/fs.scandir": "2.1.5",
|
| 864 |
+
"fastq": "^1.6.0"
|
| 865 |
+
},
|
| 866 |
+
"engines": {
|
| 867 |
+
"node": ">= 8"
|
| 868 |
+
}
|
| 869 |
+
},
|
| 870 |
+
"node_modules/@rolldown/pluginutils": {
|
| 871 |
+
"version": "1.0.0-beta.53",
|
| 872 |
+
"resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.53.tgz",
|
| 873 |
+
"integrity": "sha512-vENRlFU4YbrwVqNDZ7fLvy+JR1CRkyr01jhSiDpE1u6py3OMzQfztQU2jxykW3ALNxO4kSlqIDeYyD0Y9RcQeQ==",
|
| 874 |
+
"dev": true,
|
| 875 |
+
"license": "MIT"
|
| 876 |
+
},
|
| 877 |
+
"node_modules/@rollup/rollup-android-arm-eabi": {
|
| 878 |
+
"version": "4.53.5",
|
| 879 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.5.tgz",
|
| 880 |
+
"integrity": "sha512-iDGS/h7D8t7tvZ1t6+WPK04KD0MwzLZrG0se1hzBjSi5fyxlsiggoJHwh18PCFNn7tG43OWb6pdZ6Y+rMlmyNQ==",
|
| 881 |
+
"cpu": [
|
| 882 |
+
"arm"
|
| 883 |
+
],
|
| 884 |
+
"dev": true,
|
| 885 |
+
"license": "MIT",
|
| 886 |
+
"optional": true,
|
| 887 |
+
"os": [
|
| 888 |
+
"android"
|
| 889 |
+
]
|
| 890 |
+
},
|
| 891 |
+
"node_modules/@rollup/rollup-android-arm64": {
|
| 892 |
+
"version": "4.53.5",
|
| 893 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.5.tgz",
|
| 894 |
+
"integrity": "sha512-wrSAViWvZHBMMlWk6EJhvg8/rjxzyEhEdgfMMjREHEq11EtJ6IP6yfcCH57YAEca2Oe3FNCE9DSTgU70EIGmVw==",
|
| 895 |
+
"cpu": [
|
| 896 |
+
"arm64"
|
| 897 |
+
],
|
| 898 |
+
"dev": true,
|
| 899 |
+
"license": "MIT",
|
| 900 |
+
"optional": true,
|
| 901 |
+
"os": [
|
| 902 |
+
"android"
|
| 903 |
+
]
|
| 904 |
+
},
|
| 905 |
+
"node_modules/@rollup/rollup-darwin-arm64": {
|
| 906 |
+
"version": "4.53.5",
|
| 907 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.5.tgz",
|
| 908 |
+
"integrity": "sha512-S87zZPBmRO6u1YXQLwpveZm4JfPpAa6oHBX7/ghSiGH3rz/KDgAu1rKdGutV+WUI6tKDMbaBJomhnT30Y2t4VQ==",
|
| 909 |
+
"cpu": [
|
| 910 |
+
"arm64"
|
| 911 |
+
],
|
| 912 |
+
"dev": true,
|
| 913 |
+
"license": "MIT",
|
| 914 |
+
"optional": true,
|
| 915 |
+
"os": [
|
| 916 |
+
"darwin"
|
| 917 |
+
]
|
| 918 |
+
},
|
| 919 |
+
"node_modules/@rollup/rollup-darwin-x64": {
|
| 920 |
+
"version": "4.53.5",
|
| 921 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.5.tgz",
|
| 922 |
+
"integrity": "sha512-YTbnsAaHo6VrAczISxgpTva8EkfQus0VPEVJCEaboHtZRIb6h6j0BNxRBOwnDciFTZLDPW5r+ZBmhL/+YpTZgA==",
|
| 923 |
+
"cpu": [
|
| 924 |
+
"x64"
|
| 925 |
+
],
|
| 926 |
+
"dev": true,
|
| 927 |
+
"license": "MIT",
|
| 928 |
+
"optional": true,
|
| 929 |
+
"os": [
|
| 930 |
+
"darwin"
|
| 931 |
+
]
|
| 932 |
+
},
|
| 933 |
+
"node_modules/@rollup/rollup-freebsd-arm64": {
|
| 934 |
+
"version": "4.53.5",
|
| 935 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.5.tgz",
|
| 936 |
+
"integrity": "sha512-1T8eY2J8rKJWzaznV7zedfdhD1BqVs1iqILhmHDq/bqCUZsrMt+j8VCTHhP0vdfbHK3e1IQ7VYx3jlKqwlf+vw==",
|
| 937 |
+
"cpu": [
|
| 938 |
+
"arm64"
|
| 939 |
+
],
|
| 940 |
+
"dev": true,
|
| 941 |
+
"license": "MIT",
|
| 942 |
+
"optional": true,
|
| 943 |
+
"os": [
|
| 944 |
+
"freebsd"
|
| 945 |
+
]
|
| 946 |
+
},
|
| 947 |
+
"node_modules/@rollup/rollup-freebsd-x64": {
|
| 948 |
+
"version": "4.53.5",
|
| 949 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.5.tgz",
|
| 950 |
+
"integrity": "sha512-sHTiuXyBJApxRn+VFMaw1U+Qsz4kcNlxQ742snICYPrY+DDL8/ZbaC4DVIB7vgZmp3jiDaKA0WpBdP0aqPJoBQ==",
|
| 951 |
+
"cpu": [
|
| 952 |
+
"x64"
|
| 953 |
+
],
|
| 954 |
+
"dev": true,
|
| 955 |
+
"license": "MIT",
|
| 956 |
+
"optional": true,
|
| 957 |
+
"os": [
|
| 958 |
+
"freebsd"
|
| 959 |
+
]
|
| 960 |
+
},
|
| 961 |
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
| 962 |
+
"version": "4.53.5",
|
| 963 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.5.tgz",
|
| 964 |
+
"integrity": "sha512-dV3T9MyAf0w8zPVLVBptVlzaXxka6xg1f16VAQmjg+4KMSTWDvhimI/Y6mp8oHwNrmnmVl9XxJ/w/mO4uIQONA==",
|
| 965 |
+
"cpu": [
|
| 966 |
+
"arm"
|
| 967 |
+
],
|
| 968 |
+
"dev": true,
|
| 969 |
+
"license": "MIT",
|
| 970 |
+
"optional": true,
|
| 971 |
+
"os": [
|
| 972 |
+
"linux"
|
| 973 |
+
]
|
| 974 |
+
},
|
| 975 |
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
| 976 |
+
"version": "4.53.5",
|
| 977 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.5.tgz",
|
| 978 |
+
"integrity": "sha512-wIGYC1x/hyjP+KAu9+ewDI+fi5XSNiUi9Bvg6KGAh2TsNMA3tSEs+Sh6jJ/r4BV/bx/CyWu2ue9kDnIdRyafcQ==",
|
| 979 |
+
"cpu": [
|
| 980 |
+
"arm"
|
| 981 |
+
],
|
| 982 |
+
"dev": true,
|
| 983 |
+
"license": "MIT",
|
| 984 |
+
"optional": true,
|
| 985 |
+
"os": [
|
| 986 |
+
"linux"
|
| 987 |
+
]
|
| 988 |
+
},
|
| 989 |
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
| 990 |
+
"version": "4.53.5",
|
| 991 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.5.tgz",
|
| 992 |
+
"integrity": "sha512-Y+qVA0D9d0y2FRNiG9oM3Hut/DgODZbU9I8pLLPwAsU0tUKZ49cyV1tzmB/qRbSzGvY8lpgGkJuMyuhH7Ma+Vg==",
|
| 993 |
+
"cpu": [
|
| 994 |
+
"arm64"
|
| 995 |
+
],
|
| 996 |
+
"dev": true,
|
| 997 |
+
"license": "MIT",
|
| 998 |
+
"optional": true,
|
| 999 |
+
"os": [
|
| 1000 |
+
"linux"
|
| 1001 |
+
]
|
| 1002 |
+
},
|
| 1003 |
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
| 1004 |
+
"version": "4.53.5",
|
| 1005 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.5.tgz",
|
| 1006 |
+
"integrity": "sha512-juaC4bEgJsyFVfqhtGLz8mbopaWD+WeSOYr5E16y+1of6KQjc0BpwZLuxkClqY1i8sco+MdyoXPNiCkQou09+g==",
|
| 1007 |
+
"cpu": [
|
| 1008 |
+
"arm64"
|
| 1009 |
+
],
|
| 1010 |
+
"dev": true,
|
| 1011 |
+
"license": "MIT",
|
| 1012 |
+
"optional": true,
|
| 1013 |
+
"os": [
|
| 1014 |
+
"linux"
|
| 1015 |
+
]
|
| 1016 |
+
},
|
| 1017 |
+
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
| 1018 |
+
"version": "4.53.5",
|
| 1019 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.5.tgz",
|
| 1020 |
+
"integrity": "sha512-rIEC0hZ17A42iXtHX+EPJVL/CakHo+tT7W0pbzdAGuWOt2jxDFh7A/lRhsNHBcqL4T36+UiAgwO8pbmn3dE8wA==",
|
| 1021 |
+
"cpu": [
|
| 1022 |
+
"loong64"
|
| 1023 |
+
],
|
| 1024 |
+
"dev": true,
|
| 1025 |
+
"license": "MIT",
|
| 1026 |
+
"optional": true,
|
| 1027 |
+
"os": [
|
| 1028 |
+
"linux"
|
| 1029 |
+
]
|
| 1030 |
+
},
|
| 1031 |
+
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
| 1032 |
+
"version": "4.53.5",
|
| 1033 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.5.tgz",
|
| 1034 |
+
"integrity": "sha512-T7l409NhUE552RcAOcmJHj3xyZ2h7vMWzcwQI0hvn5tqHh3oSoclf9WgTl+0QqffWFG8MEVZZP1/OBglKZx52Q==",
|
| 1035 |
+
"cpu": [
|
| 1036 |
+
"ppc64"
|
| 1037 |
+
],
|
| 1038 |
+
"dev": true,
|
| 1039 |
+
"license": "MIT",
|
| 1040 |
+
"optional": true,
|
| 1041 |
+
"os": [
|
| 1042 |
+
"linux"
|
| 1043 |
+
]
|
| 1044 |
+
},
|
| 1045 |
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
| 1046 |
+
"version": "4.53.5",
|
| 1047 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.5.tgz",
|
| 1048 |
+
"integrity": "sha512-7OK5/GhxbnrMcxIFoYfhV/TkknarkYC1hqUw1wU2xUN3TVRLNT5FmBv4KkheSG2xZ6IEbRAhTooTV2+R5Tk0lQ==",
|
| 1049 |
+
"cpu": [
|
| 1050 |
+
"riscv64"
|
| 1051 |
+
],
|
| 1052 |
+
"dev": true,
|
| 1053 |
+
"license": "MIT",
|
| 1054 |
+
"optional": true,
|
| 1055 |
+
"os": [
|
| 1056 |
+
"linux"
|
| 1057 |
+
]
|
| 1058 |
+
},
|
| 1059 |
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
| 1060 |
+
"version": "4.53.5",
|
| 1061 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.5.tgz",
|
| 1062 |
+
"integrity": "sha512-GwuDBE/PsXaTa76lO5eLJTyr2k8QkPipAyOrs4V/KJufHCZBJ495VCGJol35grx9xryk4V+2zd3Ri+3v7NPh+w==",
|
| 1063 |
+
"cpu": [
|
| 1064 |
+
"riscv64"
|
| 1065 |
+
],
|
| 1066 |
+
"dev": true,
|
| 1067 |
+
"license": "MIT",
|
| 1068 |
+
"optional": true,
|
| 1069 |
+
"os": [
|
| 1070 |
+
"linux"
|
| 1071 |
+
]
|
| 1072 |
+
},
|
| 1073 |
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
| 1074 |
+
"version": "4.53.5",
|
| 1075 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.5.tgz",
|
| 1076 |
+
"integrity": "sha512-IAE1Ziyr1qNfnmiQLHBURAD+eh/zH1pIeJjeShleII7Vj8kyEm2PF77o+lf3WTHDpNJcu4IXJxNO0Zluro8bOw==",
|
| 1077 |
+
"cpu": [
|
| 1078 |
+
"s390x"
|
| 1079 |
+
],
|
| 1080 |
+
"dev": true,
|
| 1081 |
+
"license": "MIT",
|
| 1082 |
+
"optional": true,
|
| 1083 |
+
"os": [
|
| 1084 |
+
"linux"
|
| 1085 |
+
]
|
| 1086 |
+
},
|
| 1087 |
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
| 1088 |
+
"version": "4.53.5",
|
| 1089 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.5.tgz",
|
| 1090 |
+
"integrity": "sha512-Pg6E+oP7GvZ4XwgRJBuSXZjcqpIW3yCBhK4BcsANvb47qMvAbCjR6E+1a/U2WXz1JJxp9/4Dno3/iSJLcm5auw==",
|
| 1091 |
+
"cpu": [
|
| 1092 |
+
"x64"
|
| 1093 |
+
],
|
| 1094 |
+
"dev": true,
|
| 1095 |
+
"license": "MIT",
|
| 1096 |
+
"optional": true,
|
| 1097 |
+
"os": [
|
| 1098 |
+
"linux"
|
| 1099 |
+
]
|
| 1100 |
+
},
|
| 1101 |
+
"node_modules/@rollup/rollup-linux-x64-musl": {
|
| 1102 |
+
"version": "4.53.5",
|
| 1103 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.5.tgz",
|
| 1104 |
+
"integrity": "sha512-txGtluxDKTxaMDzUduGP0wdfng24y1rygUMnmlUJ88fzCCULCLn7oE5kb2+tRB+MWq1QDZT6ObT5RrR8HFRKqg==",
|
| 1105 |
+
"cpu": [
|
| 1106 |
+
"x64"
|
| 1107 |
+
],
|
| 1108 |
+
"dev": true,
|
| 1109 |
+
"license": "MIT",
|
| 1110 |
+
"optional": true,
|
| 1111 |
+
"os": [
|
| 1112 |
+
"linux"
|
| 1113 |
+
]
|
| 1114 |
+
},
|
| 1115 |
+
"node_modules/@rollup/rollup-openharmony-arm64": {
|
| 1116 |
+
"version": "4.53.5",
|
| 1117 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.5.tgz",
|
| 1118 |
+
"integrity": "sha512-3DFiLPnTxiOQV993fMc+KO8zXHTcIjgaInrqlG8zDp1TlhYl6WgrOHuJkJQ6M8zHEcntSJsUp1XFZSY8C1DYbg==",
|
| 1119 |
+
"cpu": [
|
| 1120 |
+
"arm64"
|
| 1121 |
+
],
|
| 1122 |
+
"dev": true,
|
| 1123 |
+
"license": "MIT",
|
| 1124 |
+
"optional": true,
|
| 1125 |
+
"os": [
|
| 1126 |
+
"openharmony"
|
| 1127 |
+
]
|
| 1128 |
+
},
|
| 1129 |
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
| 1130 |
+
"version": "4.53.5",
|
| 1131 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.5.tgz",
|
| 1132 |
+
"integrity": "sha512-nggc/wPpNTgjGg75hu+Q/3i32R00Lq1B6N1DO7MCU340MRKL3WZJMjA9U4K4gzy3dkZPXm9E1Nc81FItBVGRlA==",
|
| 1133 |
+
"cpu": [
|
| 1134 |
+
"arm64"
|
| 1135 |
+
],
|
| 1136 |
+
"dev": true,
|
| 1137 |
+
"license": "MIT",
|
| 1138 |
+
"optional": true,
|
| 1139 |
+
"os": [
|
| 1140 |
+
"win32"
|
| 1141 |
+
]
|
| 1142 |
+
},
|
| 1143 |
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
| 1144 |
+
"version": "4.53.5",
|
| 1145 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.5.tgz",
|
| 1146 |
+
"integrity": "sha512-U/54pTbdQpPLBdEzCT6NBCFAfSZMvmjr0twhnD9f4EIvlm9wy3jjQ38yQj1AGznrNO65EWQMgm/QUjuIVrYF9w==",
|
| 1147 |
+
"cpu": [
|
| 1148 |
+
"ia32"
|
| 1149 |
+
],
|
| 1150 |
+
"dev": true,
|
| 1151 |
+
"license": "MIT",
|
| 1152 |
+
"optional": true,
|
| 1153 |
+
"os": [
|
| 1154 |
+
"win32"
|
| 1155 |
+
]
|
| 1156 |
+
},
|
| 1157 |
+
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
| 1158 |
+
"version": "4.53.5",
|
| 1159 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.5.tgz",
|
| 1160 |
+
"integrity": "sha512-2NqKgZSuLH9SXBBV2dWNRCZmocgSOx8OJSdpRaEcRlIfX8YrKxUT6z0F1NpvDVhOsl190UFTRh2F2WDWWCYp3A==",
|
| 1161 |
+
"cpu": [
|
| 1162 |
+
"x64"
|
| 1163 |
+
],
|
| 1164 |
+
"dev": true,
|
| 1165 |
+
"license": "MIT",
|
| 1166 |
+
"optional": true,
|
| 1167 |
+
"os": [
|
| 1168 |
+
"win32"
|
| 1169 |
+
]
|
| 1170 |
+
},
|
| 1171 |
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
| 1172 |
+
"version": "4.53.5",
|
| 1173 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.5.tgz",
|
| 1174 |
+
"integrity": "sha512-JRpZUhCfhZ4keB5v0fe02gQJy05GqboPOaxvjugW04RLSYYoB/9t2lx2u/tMs/Na/1NXfY8QYjgRljRpN+MjTQ==",
|
| 1175 |
+
"cpu": [
|
| 1176 |
+
"x64"
|
| 1177 |
+
],
|
| 1178 |
+
"dev": true,
|
| 1179 |
+
"license": "MIT",
|
| 1180 |
+
"optional": true,
|
| 1181 |
+
"os": [
|
| 1182 |
+
"win32"
|
| 1183 |
+
]
|
| 1184 |
+
},
|
| 1185 |
+
"node_modules/@types/babel__core": {
|
| 1186 |
+
"version": "7.20.5",
|
| 1187 |
+
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
|
| 1188 |
+
"integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
|
| 1189 |
+
"dev": true,
|
| 1190 |
+
"license": "MIT",
|
| 1191 |
+
"dependencies": {
|
| 1192 |
+
"@babel/parser": "^7.20.7",
|
| 1193 |
+
"@babel/types": "^7.20.7",
|
| 1194 |
+
"@types/babel__generator": "*",
|
| 1195 |
+
"@types/babel__template": "*",
|
| 1196 |
+
"@types/babel__traverse": "*"
|
| 1197 |
+
}
|
| 1198 |
+
},
|
| 1199 |
+
"node_modules/@types/babel__generator": {
|
| 1200 |
+
"version": "7.27.0",
|
| 1201 |
+
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
|
| 1202 |
+
"integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
|
| 1203 |
+
"dev": true,
|
| 1204 |
+
"license": "MIT",
|
| 1205 |
+
"dependencies": {
|
| 1206 |
+
"@babel/types": "^7.0.0"
|
| 1207 |
+
}
|
| 1208 |
+
},
|
| 1209 |
+
"node_modules/@types/babel__template": {
|
| 1210 |
+
"version": "7.4.4",
|
| 1211 |
+
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
|
| 1212 |
+
"integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
|
| 1213 |
+
"dev": true,
|
| 1214 |
+
"license": "MIT",
|
| 1215 |
+
"dependencies": {
|
| 1216 |
+
"@babel/parser": "^7.1.0",
|
| 1217 |
+
"@babel/types": "^7.0.0"
|
| 1218 |
+
}
|
| 1219 |
+
},
|
| 1220 |
+
"node_modules/@types/babel__traverse": {
|
| 1221 |
+
"version": "7.28.0",
|
| 1222 |
+
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
|
| 1223 |
+
"integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
|
| 1224 |
+
"dev": true,
|
| 1225 |
+
"license": "MIT",
|
| 1226 |
+
"dependencies": {
|
| 1227 |
+
"@babel/types": "^7.28.2"
|
| 1228 |
+
}
|
| 1229 |
+
},
|
| 1230 |
+
"node_modules/@types/estree": {
|
| 1231 |
+
"version": "1.0.8",
|
| 1232 |
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
| 1233 |
+
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
| 1234 |
+
"dev": true,
|
| 1235 |
+
"license": "MIT"
|
| 1236 |
+
},
|
| 1237 |
+
"node_modules/@types/node": {
|
| 1238 |
+
"version": "22.19.3",
|
| 1239 |
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.3.tgz",
|
| 1240 |
+
"integrity": "sha512-1N9SBnWYOJTrNZCdh/yJE+t910Y128BoyY+zBLWhL3r0TYzlTmFdXrPwHL9DyFZmlEXNQQolTZh3KHV31QDhyA==",
|
| 1241 |
+
"dev": true,
|
| 1242 |
+
"license": "MIT",
|
| 1243 |
+
"dependencies": {
|
| 1244 |
+
"undici-types": "~6.21.0"
|
| 1245 |
+
}
|
| 1246 |
+
},
|
| 1247 |
+
"node_modules/@vitejs/plugin-react": {
|
| 1248 |
+
"version": "5.1.2",
|
| 1249 |
+
"resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.1.2.tgz",
|
| 1250 |
+
"integrity": "sha512-EcA07pHJouywpzsoTUqNh5NwGayl2PPVEJKUSinGGSxFGYn+shYbqMGBg6FXDqgXum9Ou/ecb+411ssw8HImJQ==",
|
| 1251 |
+
"dev": true,
|
| 1252 |
+
"license": "MIT",
|
| 1253 |
+
"dependencies": {
|
| 1254 |
+
"@babel/core": "^7.28.5",
|
| 1255 |
+
"@babel/plugin-transform-react-jsx-self": "^7.27.1",
|
| 1256 |
+
"@babel/plugin-transform-react-jsx-source": "^7.27.1",
|
| 1257 |
+
"@rolldown/pluginutils": "1.0.0-beta.53",
|
| 1258 |
+
"@types/babel__core": "^7.20.5",
|
| 1259 |
+
"react-refresh": "^0.18.0"
|
| 1260 |
+
},
|
| 1261 |
+
"engines": {
|
| 1262 |
+
"node": "^20.19.0 || >=22.12.0"
|
| 1263 |
+
},
|
| 1264 |
+
"peerDependencies": {
|
| 1265 |
+
"vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
|
| 1266 |
+
}
|
| 1267 |
+
},
|
| 1268 |
+
"node_modules/any-promise": {
|
| 1269 |
+
"version": "1.3.0",
|
| 1270 |
+
"resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
|
| 1271 |
+
"integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
|
| 1272 |
+
"dev": true,
|
| 1273 |
+
"license": "MIT"
|
| 1274 |
+
},
|
| 1275 |
+
"node_modules/anymatch": {
|
| 1276 |
+
"version": "3.1.3",
|
| 1277 |
+
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
|
| 1278 |
+
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
|
| 1279 |
+
"dev": true,
|
| 1280 |
+
"license": "ISC",
|
| 1281 |
+
"dependencies": {
|
| 1282 |
+
"normalize-path": "^3.0.0",
|
| 1283 |
+
"picomatch": "^2.0.4"
|
| 1284 |
+
},
|
| 1285 |
+
"engines": {
|
| 1286 |
+
"node": ">= 8"
|
| 1287 |
+
}
|
| 1288 |
+
},
|
| 1289 |
+
"node_modules/arg": {
|
| 1290 |
+
"version": "5.0.2",
|
| 1291 |
+
"resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
|
| 1292 |
+
"integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
|
| 1293 |
+
"dev": true,
|
| 1294 |
+
"license": "MIT"
|
| 1295 |
+
},
|
| 1296 |
+
"node_modules/autoprefixer": {
|
| 1297 |
+
"version": "10.4.23",
|
| 1298 |
+
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.23.tgz",
|
| 1299 |
+
"integrity": "sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==",
|
| 1300 |
+
"dev": true,
|
| 1301 |
+
"funding": [
|
| 1302 |
+
{
|
| 1303 |
+
"type": "opencollective",
|
| 1304 |
+
"url": "https://opencollective.com/postcss/"
|
| 1305 |
+
},
|
| 1306 |
+
{
|
| 1307 |
+
"type": "tidelift",
|
| 1308 |
+
"url": "https://tidelift.com/funding/github/npm/autoprefixer"
|
| 1309 |
+
},
|
| 1310 |
+
{
|
| 1311 |
+
"type": "github",
|
| 1312 |
+
"url": "https://github.com/sponsors/ai"
|
| 1313 |
+
}
|
| 1314 |
+
],
|
| 1315 |
+
"license": "MIT",
|
| 1316 |
+
"dependencies": {
|
| 1317 |
+
"browserslist": "^4.28.1",
|
| 1318 |
+
"caniuse-lite": "^1.0.30001760",
|
| 1319 |
+
"fraction.js": "^5.3.4",
|
| 1320 |
+
"picocolors": "^1.1.1",
|
| 1321 |
+
"postcss-value-parser": "^4.2.0"
|
| 1322 |
+
},
|
| 1323 |
+
"bin": {
|
| 1324 |
+
"autoprefixer": "bin/autoprefixer"
|
| 1325 |
+
},
|
| 1326 |
+
"engines": {
|
| 1327 |
+
"node": "^10 || ^12 || >=14"
|
| 1328 |
+
},
|
| 1329 |
+
"peerDependencies": {
|
| 1330 |
+
"postcss": "^8.1.0"
|
| 1331 |
+
}
|
| 1332 |
+
},
|
| 1333 |
+
"node_modules/baseline-browser-mapping": {
|
| 1334 |
+
"version": "2.9.10",
|
| 1335 |
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.10.tgz",
|
| 1336 |
+
"integrity": "sha512-2VIKvDx8Z1a9rTB2eCkdPE5nSe28XnA+qivGnWHoB40hMMt/h1hSz0960Zqsn6ZyxWXUie0EBdElKv8may20AA==",
|
| 1337 |
+
"dev": true,
|
| 1338 |
+
"license": "Apache-2.0",
|
| 1339 |
+
"bin": {
|
| 1340 |
+
"baseline-browser-mapping": "dist/cli.js"
|
| 1341 |
+
}
|
| 1342 |
+
},
|
| 1343 |
+
"node_modules/binary-extensions": {
|
| 1344 |
+
"version": "2.3.0",
|
| 1345 |
+
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
| 1346 |
+
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
|
| 1347 |
+
"dev": true,
|
| 1348 |
+
"license": "MIT",
|
| 1349 |
+
"engines": {
|
| 1350 |
+
"node": ">=8"
|
| 1351 |
+
},
|
| 1352 |
+
"funding": {
|
| 1353 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
| 1354 |
+
}
|
| 1355 |
+
},
|
| 1356 |
+
"node_modules/braces": {
|
| 1357 |
+
"version": "3.0.3",
|
| 1358 |
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
| 1359 |
+
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
| 1360 |
+
"dev": true,
|
| 1361 |
+
"license": "MIT",
|
| 1362 |
+
"dependencies": {
|
| 1363 |
+
"fill-range": "^7.1.1"
|
| 1364 |
+
},
|
| 1365 |
+
"engines": {
|
| 1366 |
+
"node": ">=8"
|
| 1367 |
+
}
|
| 1368 |
+
},
|
| 1369 |
+
"node_modules/browserslist": {
|
| 1370 |
+
"version": "4.28.1",
|
| 1371 |
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
|
| 1372 |
+
"integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
|
| 1373 |
+
"dev": true,
|
| 1374 |
+
"funding": [
|
| 1375 |
+
{
|
| 1376 |
+
"type": "opencollective",
|
| 1377 |
+
"url": "https://opencollective.com/browserslist"
|
| 1378 |
+
},
|
| 1379 |
+
{
|
| 1380 |
+
"type": "tidelift",
|
| 1381 |
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
| 1382 |
+
},
|
| 1383 |
+
{
|
| 1384 |
+
"type": "github",
|
| 1385 |
+
"url": "https://github.com/sponsors/ai"
|
| 1386 |
+
}
|
| 1387 |
+
],
|
| 1388 |
+
"license": "MIT",
|
| 1389 |
+
"dependencies": {
|
| 1390 |
+
"baseline-browser-mapping": "^2.9.0",
|
| 1391 |
+
"caniuse-lite": "^1.0.30001759",
|
| 1392 |
+
"electron-to-chromium": "^1.5.263",
|
| 1393 |
+
"node-releases": "^2.0.27",
|
| 1394 |
+
"update-browserslist-db": "^1.2.0"
|
| 1395 |
+
},
|
| 1396 |
+
"bin": {
|
| 1397 |
+
"browserslist": "cli.js"
|
| 1398 |
+
},
|
| 1399 |
+
"engines": {
|
| 1400 |
+
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
| 1401 |
+
}
|
| 1402 |
+
},
|
| 1403 |
+
"node_modules/camelcase-css": {
|
| 1404 |
+
"version": "2.0.1",
|
| 1405 |
+
"resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
|
| 1406 |
+
"integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
|
| 1407 |
+
"dev": true,
|
| 1408 |
+
"license": "MIT",
|
| 1409 |
+
"engines": {
|
| 1410 |
+
"node": ">= 6"
|
| 1411 |
+
}
|
| 1412 |
+
},
|
| 1413 |
+
"node_modules/caniuse-lite": {
|
| 1414 |
+
"version": "1.0.30001760",
|
| 1415 |
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001760.tgz",
|
| 1416 |
+
"integrity": "sha512-7AAMPcueWELt1p3mi13HR/LHH0TJLT11cnwDJEs3xA4+CK/PLKeO9Kl1oru24htkyUKtkGCvAx4ohB0Ttry8Dw==",
|
| 1417 |
+
"dev": true,
|
| 1418 |
+
"funding": [
|
| 1419 |
+
{
|
| 1420 |
+
"type": "opencollective",
|
| 1421 |
+
"url": "https://opencollective.com/browserslist"
|
| 1422 |
+
},
|
| 1423 |
+
{
|
| 1424 |
+
"type": "tidelift",
|
| 1425 |
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
| 1426 |
+
},
|
| 1427 |
+
{
|
| 1428 |
+
"type": "github",
|
| 1429 |
+
"url": "https://github.com/sponsors/ai"
|
| 1430 |
+
}
|
| 1431 |
+
],
|
| 1432 |
+
"license": "CC-BY-4.0"
|
| 1433 |
+
},
|
| 1434 |
+
"node_modules/chokidar": {
|
| 1435 |
+
"version": "3.6.0",
|
| 1436 |
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
| 1437 |
+
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
| 1438 |
+
"dev": true,
|
| 1439 |
+
"license": "MIT",
|
| 1440 |
+
"dependencies": {
|
| 1441 |
+
"anymatch": "~3.1.2",
|
| 1442 |
+
"braces": "~3.0.2",
|
| 1443 |
+
"glob-parent": "~5.1.2",
|
| 1444 |
+
"is-binary-path": "~2.1.0",
|
| 1445 |
+
"is-glob": "~4.0.1",
|
| 1446 |
+
"normalize-path": "~3.0.0",
|
| 1447 |
+
"readdirp": "~3.6.0"
|
| 1448 |
+
},
|
| 1449 |
+
"engines": {
|
| 1450 |
+
"node": ">= 8.10.0"
|
| 1451 |
+
},
|
| 1452 |
+
"funding": {
|
| 1453 |
+
"url": "https://paulmillr.com/funding/"
|
| 1454 |
+
},
|
| 1455 |
+
"optionalDependencies": {
|
| 1456 |
+
"fsevents": "~2.3.2"
|
| 1457 |
+
}
|
| 1458 |
+
},
|
| 1459 |
+
"node_modules/chokidar/node_modules/glob-parent": {
|
| 1460 |
+
"version": "5.1.2",
|
| 1461 |
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
| 1462 |
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
| 1463 |
+
"dev": true,
|
| 1464 |
+
"license": "ISC",
|
| 1465 |
+
"dependencies": {
|
| 1466 |
+
"is-glob": "^4.0.1"
|
| 1467 |
+
},
|
| 1468 |
+
"engines": {
|
| 1469 |
+
"node": ">= 6"
|
| 1470 |
+
}
|
| 1471 |
+
},
|
| 1472 |
+
"node_modules/commander": {
|
| 1473 |
+
"version": "4.1.1",
|
| 1474 |
+
"resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
|
| 1475 |
+
"integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
|
| 1476 |
+
"dev": true,
|
| 1477 |
+
"license": "MIT",
|
| 1478 |
+
"engines": {
|
| 1479 |
+
"node": ">= 6"
|
| 1480 |
+
}
|
| 1481 |
+
},
|
| 1482 |
+
"node_modules/convert-source-map": {
|
| 1483 |
+
"version": "2.0.0",
|
| 1484 |
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
|
| 1485 |
+
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
|
| 1486 |
+
"dev": true,
|
| 1487 |
+
"license": "MIT"
|
| 1488 |
+
},
|
| 1489 |
+
"node_modules/cssesc": {
|
| 1490 |
+
"version": "3.0.0",
|
| 1491 |
+
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
|
| 1492 |
+
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
|
| 1493 |
+
"dev": true,
|
| 1494 |
+
"license": "MIT",
|
| 1495 |
+
"bin": {
|
| 1496 |
+
"cssesc": "bin/cssesc"
|
| 1497 |
+
},
|
| 1498 |
+
"engines": {
|
| 1499 |
+
"node": ">=4"
|
| 1500 |
+
}
|
| 1501 |
+
},
|
| 1502 |
+
"node_modules/debug": {
|
| 1503 |
+
"version": "4.4.3",
|
| 1504 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
| 1505 |
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
| 1506 |
+
"dev": true,
|
| 1507 |
+
"license": "MIT",
|
| 1508 |
+
"dependencies": {
|
| 1509 |
+
"ms": "^2.1.3"
|
| 1510 |
+
},
|
| 1511 |
+
"engines": {
|
| 1512 |
+
"node": ">=6.0"
|
| 1513 |
+
},
|
| 1514 |
+
"peerDependenciesMeta": {
|
| 1515 |
+
"supports-color": {
|
| 1516 |
+
"optional": true
|
| 1517 |
+
}
|
| 1518 |
+
}
|
| 1519 |
+
},
|
| 1520 |
+
"node_modules/didyoumean": {
|
| 1521 |
+
"version": "1.2.2",
|
| 1522 |
+
"resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
|
| 1523 |
+
"integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
|
| 1524 |
+
"dev": true,
|
| 1525 |
+
"license": "Apache-2.0"
|
| 1526 |
+
},
|
| 1527 |
+
"node_modules/dlv": {
|
| 1528 |
+
"version": "1.1.3",
|
| 1529 |
+
"resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
|
| 1530 |
+
"integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
|
| 1531 |
+
"dev": true,
|
| 1532 |
+
"license": "MIT"
|
| 1533 |
+
},
|
| 1534 |
+
"node_modules/electron-to-chromium": {
|
| 1535 |
+
"version": "1.5.267",
|
| 1536 |
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz",
|
| 1537 |
+
"integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==",
|
| 1538 |
+
"dev": true,
|
| 1539 |
+
"license": "ISC"
|
| 1540 |
+
},
|
| 1541 |
+
"node_modules/esbuild": {
|
| 1542 |
+
"version": "0.25.12",
|
| 1543 |
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz",
|
| 1544 |
+
"integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==",
|
| 1545 |
+
"dev": true,
|
| 1546 |
+
"hasInstallScript": true,
|
| 1547 |
+
"license": "MIT",
|
| 1548 |
+
"bin": {
|
| 1549 |
+
"esbuild": "bin/esbuild"
|
| 1550 |
+
},
|
| 1551 |
+
"engines": {
|
| 1552 |
+
"node": ">=18"
|
| 1553 |
+
},
|
| 1554 |
+
"optionalDependencies": {
|
| 1555 |
+
"@esbuild/aix-ppc64": "0.25.12",
|
| 1556 |
+
"@esbuild/android-arm": "0.25.12",
|
| 1557 |
+
"@esbuild/android-arm64": "0.25.12",
|
| 1558 |
+
"@esbuild/android-x64": "0.25.12",
|
| 1559 |
+
"@esbuild/darwin-arm64": "0.25.12",
|
| 1560 |
+
"@esbuild/darwin-x64": "0.25.12",
|
| 1561 |
+
"@esbuild/freebsd-arm64": "0.25.12",
|
| 1562 |
+
"@esbuild/freebsd-x64": "0.25.12",
|
| 1563 |
+
"@esbuild/linux-arm": "0.25.12",
|
| 1564 |
+
"@esbuild/linux-arm64": "0.25.12",
|
| 1565 |
+
"@esbuild/linux-ia32": "0.25.12",
|
| 1566 |
+
"@esbuild/linux-loong64": "0.25.12",
|
| 1567 |
+
"@esbuild/linux-mips64el": "0.25.12",
|
| 1568 |
+
"@esbuild/linux-ppc64": "0.25.12",
|
| 1569 |
+
"@esbuild/linux-riscv64": "0.25.12",
|
| 1570 |
+
"@esbuild/linux-s390x": "0.25.12",
|
| 1571 |
+
"@esbuild/linux-x64": "0.25.12",
|
| 1572 |
+
"@esbuild/netbsd-arm64": "0.25.12",
|
| 1573 |
+
"@esbuild/netbsd-x64": "0.25.12",
|
| 1574 |
+
"@esbuild/openbsd-arm64": "0.25.12",
|
| 1575 |
+
"@esbuild/openbsd-x64": "0.25.12",
|
| 1576 |
+
"@esbuild/openharmony-arm64": "0.25.12",
|
| 1577 |
+
"@esbuild/sunos-x64": "0.25.12",
|
| 1578 |
+
"@esbuild/win32-arm64": "0.25.12",
|
| 1579 |
+
"@esbuild/win32-ia32": "0.25.12",
|
| 1580 |
+
"@esbuild/win32-x64": "0.25.12"
|
| 1581 |
+
}
|
| 1582 |
+
},
|
| 1583 |
+
"node_modules/escalade": {
|
| 1584 |
+
"version": "3.2.0",
|
| 1585 |
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
| 1586 |
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
|
| 1587 |
+
"dev": true,
|
| 1588 |
+
"license": "MIT",
|
| 1589 |
+
"engines": {
|
| 1590 |
+
"node": ">=6"
|
| 1591 |
+
}
|
| 1592 |
+
},
|
| 1593 |
+
"node_modules/fast-glob": {
|
| 1594 |
+
"version": "3.3.3",
|
| 1595 |
+
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
|
| 1596 |
+
"integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
|
| 1597 |
+
"dev": true,
|
| 1598 |
+
"license": "MIT",
|
| 1599 |
+
"dependencies": {
|
| 1600 |
+
"@nodelib/fs.stat": "^2.0.2",
|
| 1601 |
+
"@nodelib/fs.walk": "^1.2.3",
|
| 1602 |
+
"glob-parent": "^5.1.2",
|
| 1603 |
+
"merge2": "^1.3.0",
|
| 1604 |
+
"micromatch": "^4.0.8"
|
| 1605 |
+
},
|
| 1606 |
+
"engines": {
|
| 1607 |
+
"node": ">=8.6.0"
|
| 1608 |
+
}
|
| 1609 |
+
},
|
| 1610 |
+
"node_modules/fast-glob/node_modules/glob-parent": {
|
| 1611 |
+
"version": "5.1.2",
|
| 1612 |
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
| 1613 |
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
| 1614 |
+
"dev": true,
|
| 1615 |
+
"license": "ISC",
|
| 1616 |
+
"dependencies": {
|
| 1617 |
+
"is-glob": "^4.0.1"
|
| 1618 |
+
},
|
| 1619 |
+
"engines": {
|
| 1620 |
+
"node": ">= 6"
|
| 1621 |
+
}
|
| 1622 |
+
},
|
| 1623 |
+
"node_modules/fastq": {
|
| 1624 |
+
"version": "1.19.1",
|
| 1625 |
+
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
|
| 1626 |
+
"integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
|
| 1627 |
+
"dev": true,
|
| 1628 |
+
"license": "ISC",
|
| 1629 |
+
"dependencies": {
|
| 1630 |
+
"reusify": "^1.0.4"
|
| 1631 |
+
}
|
| 1632 |
+
},
|
| 1633 |
+
"node_modules/fdir": {
|
| 1634 |
+
"version": "6.5.0",
|
| 1635 |
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
| 1636 |
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
| 1637 |
+
"dev": true,
|
| 1638 |
+
"license": "MIT",
|
| 1639 |
+
"engines": {
|
| 1640 |
+
"node": ">=12.0.0"
|
| 1641 |
+
},
|
| 1642 |
+
"peerDependencies": {
|
| 1643 |
+
"picomatch": "^3 || ^4"
|
| 1644 |
+
},
|
| 1645 |
+
"peerDependenciesMeta": {
|
| 1646 |
+
"picomatch": {
|
| 1647 |
+
"optional": true
|
| 1648 |
+
}
|
| 1649 |
+
}
|
| 1650 |
+
},
|
| 1651 |
+
"node_modules/fill-range": {
|
| 1652 |
+
"version": "7.1.1",
|
| 1653 |
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
| 1654 |
+
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
| 1655 |
+
"dev": true,
|
| 1656 |
+
"license": "MIT",
|
| 1657 |
+
"dependencies": {
|
| 1658 |
+
"to-regex-range": "^5.0.1"
|
| 1659 |
+
},
|
| 1660 |
+
"engines": {
|
| 1661 |
+
"node": ">=8"
|
| 1662 |
+
}
|
| 1663 |
+
},
|
| 1664 |
+
"node_modules/fraction.js": {
|
| 1665 |
+
"version": "5.3.4",
|
| 1666 |
+
"resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz",
|
| 1667 |
+
"integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==",
|
| 1668 |
+
"dev": true,
|
| 1669 |
+
"license": "MIT",
|
| 1670 |
+
"engines": {
|
| 1671 |
+
"node": "*"
|
| 1672 |
+
},
|
| 1673 |
+
"funding": {
|
| 1674 |
+
"type": "github",
|
| 1675 |
+
"url": "https://github.com/sponsors/rawify"
|
| 1676 |
+
}
|
| 1677 |
+
},
|
| 1678 |
+
"node_modules/framer-motion": {
|
| 1679 |
+
"version": "10.16.5",
|
| 1680 |
+
"resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-10.16.5.tgz",
|
| 1681 |
+
"integrity": "sha512-GEzVjOYP2MIpV9bT/GbhcsBNoImG3/2X3O/xVNWmktkv9MdJ7P/44zELm/7Fjb+O3v39SmKFnoDQB32giThzpg==",
|
| 1682 |
+
"license": "MIT",
|
| 1683 |
+
"dependencies": {
|
| 1684 |
+
"tslib": "^2.4.0"
|
| 1685 |
+
},
|
| 1686 |
+
"optionalDependencies": {
|
| 1687 |
+
"@emotion/is-prop-valid": "^0.8.2"
|
| 1688 |
+
},
|
| 1689 |
+
"peerDependencies": {
|
| 1690 |
+
"react": "^18.0.0",
|
| 1691 |
+
"react-dom": "^18.0.0"
|
| 1692 |
+
},
|
| 1693 |
+
"peerDependenciesMeta": {
|
| 1694 |
+
"react": {
|
| 1695 |
+
"optional": true
|
| 1696 |
+
},
|
| 1697 |
+
"react-dom": {
|
| 1698 |
+
"optional": true
|
| 1699 |
+
}
|
| 1700 |
+
}
|
| 1701 |
+
},
|
| 1702 |
+
"node_modules/fsevents": {
|
| 1703 |
+
"version": "2.3.3",
|
| 1704 |
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
| 1705 |
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
| 1706 |
+
"dev": true,
|
| 1707 |
+
"hasInstallScript": true,
|
| 1708 |
+
"license": "MIT",
|
| 1709 |
+
"optional": true,
|
| 1710 |
+
"os": [
|
| 1711 |
+
"darwin"
|
| 1712 |
+
],
|
| 1713 |
+
"engines": {
|
| 1714 |
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
| 1715 |
+
}
|
| 1716 |
+
},
|
| 1717 |
+
"node_modules/function-bind": {
|
| 1718 |
+
"version": "1.1.2",
|
| 1719 |
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
| 1720 |
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
| 1721 |
+
"dev": true,
|
| 1722 |
+
"license": "MIT",
|
| 1723 |
+
"funding": {
|
| 1724 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1725 |
+
}
|
| 1726 |
+
},
|
| 1727 |
+
"node_modules/gensync": {
|
| 1728 |
+
"version": "1.0.0-beta.2",
|
| 1729 |
+
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
|
| 1730 |
+
"integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
|
| 1731 |
+
"dev": true,
|
| 1732 |
+
"license": "MIT",
|
| 1733 |
+
"engines": {
|
| 1734 |
+
"node": ">=6.9.0"
|
| 1735 |
+
}
|
| 1736 |
+
},
|
| 1737 |
+
"node_modules/glob-parent": {
|
| 1738 |
+
"version": "6.0.2",
|
| 1739 |
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
|
| 1740 |
+
"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
|
| 1741 |
+
"dev": true,
|
| 1742 |
+
"license": "ISC",
|
| 1743 |
+
"dependencies": {
|
| 1744 |
+
"is-glob": "^4.0.3"
|
| 1745 |
+
},
|
| 1746 |
+
"engines": {
|
| 1747 |
+
"node": ">=10.13.0"
|
| 1748 |
+
}
|
| 1749 |
+
},
|
| 1750 |
+
"node_modules/gsap": {
|
| 1751 |
+
"version": "3.14.2",
|
| 1752 |
+
"resolved": "https://registry.npmjs.org/gsap/-/gsap-3.14.2.tgz",
|
| 1753 |
+
"integrity": "sha512-P8/mMxVLU7o4+55+1TCnQrPmgjPKnwkzkXOK1asnR9Jg2lna4tEY5qBJjMmAaOBDDZWtlRjBXjLa0w53G/uBLA==",
|
| 1754 |
+
"license": "Standard 'no charge' license: https://gsap.com/standard-license."
|
| 1755 |
+
},
|
| 1756 |
+
"node_modules/hasown": {
|
| 1757 |
+
"version": "2.0.2",
|
| 1758 |
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
| 1759 |
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
| 1760 |
+
"dev": true,
|
| 1761 |
+
"license": "MIT",
|
| 1762 |
+
"dependencies": {
|
| 1763 |
+
"function-bind": "^1.1.2"
|
| 1764 |
+
},
|
| 1765 |
+
"engines": {
|
| 1766 |
+
"node": ">= 0.4"
|
| 1767 |
+
}
|
| 1768 |
+
},
|
| 1769 |
+
"node_modules/invariant": {
|
| 1770 |
+
"version": "2.2.4",
|
| 1771 |
+
"resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
|
| 1772 |
+
"integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
|
| 1773 |
+
"license": "MIT",
|
| 1774 |
+
"dependencies": {
|
| 1775 |
+
"loose-envify": "^1.0.0"
|
| 1776 |
+
}
|
| 1777 |
+
},
|
| 1778 |
+
"node_modules/is-binary-path": {
|
| 1779 |
+
"version": "2.1.0",
|
| 1780 |
+
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
| 1781 |
+
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
| 1782 |
+
"dev": true,
|
| 1783 |
+
"license": "MIT",
|
| 1784 |
+
"dependencies": {
|
| 1785 |
+
"binary-extensions": "^2.0.0"
|
| 1786 |
+
},
|
| 1787 |
+
"engines": {
|
| 1788 |
+
"node": ">=8"
|
| 1789 |
+
}
|
| 1790 |
+
},
|
| 1791 |
+
"node_modules/is-core-module": {
|
| 1792 |
+
"version": "2.16.1",
|
| 1793 |
+
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
|
| 1794 |
+
"integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
|
| 1795 |
+
"dev": true,
|
| 1796 |
+
"license": "MIT",
|
| 1797 |
+
"dependencies": {
|
| 1798 |
+
"hasown": "^2.0.2"
|
| 1799 |
+
},
|
| 1800 |
+
"engines": {
|
| 1801 |
+
"node": ">= 0.4"
|
| 1802 |
+
},
|
| 1803 |
+
"funding": {
|
| 1804 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1805 |
+
}
|
| 1806 |
+
},
|
| 1807 |
+
"node_modules/is-extglob": {
|
| 1808 |
+
"version": "2.1.1",
|
| 1809 |
+
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
| 1810 |
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
| 1811 |
+
"dev": true,
|
| 1812 |
+
"license": "MIT",
|
| 1813 |
+
"engines": {
|
| 1814 |
+
"node": ">=0.10.0"
|
| 1815 |
+
}
|
| 1816 |
+
},
|
| 1817 |
+
"node_modules/is-glob": {
|
| 1818 |
+
"version": "4.0.3",
|
| 1819 |
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
| 1820 |
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
| 1821 |
+
"dev": true,
|
| 1822 |
+
"license": "MIT",
|
| 1823 |
+
"dependencies": {
|
| 1824 |
+
"is-extglob": "^2.1.1"
|
| 1825 |
+
},
|
| 1826 |
+
"engines": {
|
| 1827 |
+
"node": ">=0.10.0"
|
| 1828 |
+
}
|
| 1829 |
+
},
|
| 1830 |
+
"node_modules/is-number": {
|
| 1831 |
+
"version": "7.0.0",
|
| 1832 |
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
| 1833 |
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
| 1834 |
+
"dev": true,
|
| 1835 |
+
"license": "MIT",
|
| 1836 |
+
"engines": {
|
| 1837 |
+
"node": ">=0.12.0"
|
| 1838 |
+
}
|
| 1839 |
+
},
|
| 1840 |
+
"node_modules/jiti": {
|
| 1841 |
+
"version": "1.21.7",
|
| 1842 |
+
"resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz",
|
| 1843 |
+
"integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==",
|
| 1844 |
+
"dev": true,
|
| 1845 |
+
"license": "MIT",
|
| 1846 |
+
"bin": {
|
| 1847 |
+
"jiti": "bin/jiti.js"
|
| 1848 |
+
}
|
| 1849 |
+
},
|
| 1850 |
+
"node_modules/js-tokens": {
|
| 1851 |
+
"version": "4.0.0",
|
| 1852 |
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
| 1853 |
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
| 1854 |
+
"license": "MIT"
|
| 1855 |
+
},
|
| 1856 |
+
"node_modules/jsesc": {
|
| 1857 |
+
"version": "3.1.0",
|
| 1858 |
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
|
| 1859 |
+
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
|
| 1860 |
+
"dev": true,
|
| 1861 |
+
"license": "MIT",
|
| 1862 |
+
"bin": {
|
| 1863 |
+
"jsesc": "bin/jsesc"
|
| 1864 |
+
},
|
| 1865 |
+
"engines": {
|
| 1866 |
+
"node": ">=6"
|
| 1867 |
+
}
|
| 1868 |
+
},
|
| 1869 |
+
"node_modules/json5": {
|
| 1870 |
+
"version": "2.2.3",
|
| 1871 |
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
|
| 1872 |
+
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
|
| 1873 |
+
"dev": true,
|
| 1874 |
+
"license": "MIT",
|
| 1875 |
+
"bin": {
|
| 1876 |
+
"json5": "lib/cli.js"
|
| 1877 |
+
},
|
| 1878 |
+
"engines": {
|
| 1879 |
+
"node": ">=6"
|
| 1880 |
+
}
|
| 1881 |
+
},
|
| 1882 |
+
"node_modules/lilconfig": {
|
| 1883 |
+
"version": "3.1.3",
|
| 1884 |
+
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
|
| 1885 |
+
"integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
|
| 1886 |
+
"dev": true,
|
| 1887 |
+
"license": "MIT",
|
| 1888 |
+
"engines": {
|
| 1889 |
+
"node": ">=14"
|
| 1890 |
+
},
|
| 1891 |
+
"funding": {
|
| 1892 |
+
"url": "https://github.com/sponsors/antonk52"
|
| 1893 |
+
}
|
| 1894 |
+
},
|
| 1895 |
+
"node_modules/lines-and-columns": {
|
| 1896 |
+
"version": "1.2.4",
|
| 1897 |
+
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
|
| 1898 |
+
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
|
| 1899 |
+
"dev": true,
|
| 1900 |
+
"license": "MIT"
|
| 1901 |
+
},
|
| 1902 |
+
"node_modules/loose-envify": {
|
| 1903 |
+
"version": "1.4.0",
|
| 1904 |
+
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
| 1905 |
+
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
|
| 1906 |
+
"license": "MIT",
|
| 1907 |
+
"dependencies": {
|
| 1908 |
+
"js-tokens": "^3.0.0 || ^4.0.0"
|
| 1909 |
+
},
|
| 1910 |
+
"bin": {
|
| 1911 |
+
"loose-envify": "cli.js"
|
| 1912 |
+
}
|
| 1913 |
+
},
|
| 1914 |
+
"node_modules/lru-cache": {
|
| 1915 |
+
"version": "5.1.1",
|
| 1916 |
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
|
| 1917 |
+
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
|
| 1918 |
+
"dev": true,
|
| 1919 |
+
"license": "ISC",
|
| 1920 |
+
"dependencies": {
|
| 1921 |
+
"yallist": "^3.0.2"
|
| 1922 |
+
}
|
| 1923 |
+
},
|
| 1924 |
+
"node_modules/lucide-react": {
|
| 1925 |
+
"version": "0.263.1",
|
| 1926 |
+
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.263.1.tgz",
|
| 1927 |
+
"integrity": "sha512-keqxAx97PlaEN89PXZ6ki1N8nRjGWtDa4021GFYLNj0RgruM5odbpl8GHTExj0hhPq3sF6Up0gnxt6TSHu+ovw==",
|
| 1928 |
+
"license": "ISC",
|
| 1929 |
+
"peerDependencies": {
|
| 1930 |
+
"react": "^16.5.1 || ^17.0.0 || ^18.0.0"
|
| 1931 |
+
}
|
| 1932 |
+
},
|
| 1933 |
+
"node_modules/merge2": {
|
| 1934 |
+
"version": "1.4.1",
|
| 1935 |
+
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
|
| 1936 |
+
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
|
| 1937 |
+
"dev": true,
|
| 1938 |
+
"license": "MIT",
|
| 1939 |
+
"engines": {
|
| 1940 |
+
"node": ">= 8"
|
| 1941 |
+
}
|
| 1942 |
+
},
|
| 1943 |
+
"node_modules/micromatch": {
|
| 1944 |
+
"version": "4.0.8",
|
| 1945 |
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
|
| 1946 |
+
"integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
|
| 1947 |
+
"dev": true,
|
| 1948 |
+
"license": "MIT",
|
| 1949 |
+
"dependencies": {
|
| 1950 |
+
"braces": "^3.0.3",
|
| 1951 |
+
"picomatch": "^2.3.1"
|
| 1952 |
+
},
|
| 1953 |
+
"engines": {
|
| 1954 |
+
"node": ">=8.6"
|
| 1955 |
+
}
|
| 1956 |
+
},
|
| 1957 |
+
"node_modules/ms": {
|
| 1958 |
+
"version": "2.1.3",
|
| 1959 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
| 1960 |
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
| 1961 |
+
"dev": true,
|
| 1962 |
+
"license": "MIT"
|
| 1963 |
+
},
|
| 1964 |
+
"node_modules/mz": {
|
| 1965 |
+
"version": "2.7.0",
|
| 1966 |
+
"resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
|
| 1967 |
+
"integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
|
| 1968 |
+
"dev": true,
|
| 1969 |
+
"license": "MIT",
|
| 1970 |
+
"dependencies": {
|
| 1971 |
+
"any-promise": "^1.0.0",
|
| 1972 |
+
"object-assign": "^4.0.1",
|
| 1973 |
+
"thenify-all": "^1.0.0"
|
| 1974 |
+
}
|
| 1975 |
+
},
|
| 1976 |
+
"node_modules/nanoid": {
|
| 1977 |
+
"version": "3.3.11",
|
| 1978 |
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
| 1979 |
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
| 1980 |
+
"dev": true,
|
| 1981 |
+
"funding": [
|
| 1982 |
+
{
|
| 1983 |
+
"type": "github",
|
| 1984 |
+
"url": "https://github.com/sponsors/ai"
|
| 1985 |
+
}
|
| 1986 |
+
],
|
| 1987 |
+
"license": "MIT",
|
| 1988 |
+
"bin": {
|
| 1989 |
+
"nanoid": "bin/nanoid.cjs"
|
| 1990 |
+
},
|
| 1991 |
+
"engines": {
|
| 1992 |
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
| 1993 |
+
}
|
| 1994 |
+
},
|
| 1995 |
+
"node_modules/node-releases": {
|
| 1996 |
+
"version": "2.0.27",
|
| 1997 |
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
|
| 1998 |
+
"integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
|
| 1999 |
+
"dev": true,
|
| 2000 |
+
"license": "MIT"
|
| 2001 |
+
},
|
| 2002 |
+
"node_modules/normalize-path": {
|
| 2003 |
+
"version": "3.0.0",
|
| 2004 |
+
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
| 2005 |
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
| 2006 |
+
"dev": true,
|
| 2007 |
+
"license": "MIT",
|
| 2008 |
+
"engines": {
|
| 2009 |
+
"node": ">=0.10.0"
|
| 2010 |
+
}
|
| 2011 |
+
},
|
| 2012 |
+
"node_modules/object-assign": {
|
| 2013 |
+
"version": "4.1.1",
|
| 2014 |
+
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
| 2015 |
+
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
|
| 2016 |
+
"dev": true,
|
| 2017 |
+
"license": "MIT",
|
| 2018 |
+
"engines": {
|
| 2019 |
+
"node": ">=0.10.0"
|
| 2020 |
+
}
|
| 2021 |
+
},
|
| 2022 |
+
"node_modules/object-hash": {
|
| 2023 |
+
"version": "3.0.0",
|
| 2024 |
+
"resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
|
| 2025 |
+
"integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
|
| 2026 |
+
"dev": true,
|
| 2027 |
+
"license": "MIT",
|
| 2028 |
+
"engines": {
|
| 2029 |
+
"node": ">= 6"
|
| 2030 |
+
}
|
| 2031 |
+
},
|
| 2032 |
+
"node_modules/path-parse": {
|
| 2033 |
+
"version": "1.0.7",
|
| 2034 |
+
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
|
| 2035 |
+
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
|
| 2036 |
+
"dev": true,
|
| 2037 |
+
"license": "MIT"
|
| 2038 |
+
},
|
| 2039 |
+
"node_modules/picocolors": {
|
| 2040 |
+
"version": "1.1.1",
|
| 2041 |
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
| 2042 |
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
| 2043 |
+
"dev": true,
|
| 2044 |
+
"license": "ISC"
|
| 2045 |
+
},
|
| 2046 |
+
"node_modules/picomatch": {
|
| 2047 |
+
"version": "2.3.1",
|
| 2048 |
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
| 2049 |
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
| 2050 |
+
"dev": true,
|
| 2051 |
+
"license": "MIT",
|
| 2052 |
+
"engines": {
|
| 2053 |
+
"node": ">=8.6"
|
| 2054 |
+
},
|
| 2055 |
+
"funding": {
|
| 2056 |
+
"url": "https://github.com/sponsors/jonschlinkert"
|
| 2057 |
+
}
|
| 2058 |
+
},
|
| 2059 |
+
"node_modules/pify": {
|
| 2060 |
+
"version": "2.3.0",
|
| 2061 |
+
"resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
| 2062 |
+
"integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
|
| 2063 |
+
"dev": true,
|
| 2064 |
+
"license": "MIT",
|
| 2065 |
+
"engines": {
|
| 2066 |
+
"node": ">=0.10.0"
|
| 2067 |
+
}
|
| 2068 |
+
},
|
| 2069 |
+
"node_modules/pirates": {
|
| 2070 |
+
"version": "4.0.7",
|
| 2071 |
+
"resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz",
|
| 2072 |
+
"integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==",
|
| 2073 |
+
"dev": true,
|
| 2074 |
+
"license": "MIT",
|
| 2075 |
+
"engines": {
|
| 2076 |
+
"node": ">= 6"
|
| 2077 |
+
}
|
| 2078 |
+
},
|
| 2079 |
+
"node_modules/postcss": {
|
| 2080 |
+
"version": "8.5.6",
|
| 2081 |
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
| 2082 |
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
| 2083 |
+
"dev": true,
|
| 2084 |
+
"funding": [
|
| 2085 |
+
{
|
| 2086 |
+
"type": "opencollective",
|
| 2087 |
+
"url": "https://opencollective.com/postcss/"
|
| 2088 |
+
},
|
| 2089 |
+
{
|
| 2090 |
+
"type": "tidelift",
|
| 2091 |
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
| 2092 |
+
},
|
| 2093 |
+
{
|
| 2094 |
+
"type": "github",
|
| 2095 |
+
"url": "https://github.com/sponsors/ai"
|
| 2096 |
+
}
|
| 2097 |
+
],
|
| 2098 |
+
"license": "MIT",
|
| 2099 |
+
"dependencies": {
|
| 2100 |
+
"nanoid": "^3.3.11",
|
| 2101 |
+
"picocolors": "^1.1.1",
|
| 2102 |
+
"source-map-js": "^1.2.1"
|
| 2103 |
+
},
|
| 2104 |
+
"engines": {
|
| 2105 |
+
"node": "^10 || ^12 || >=14"
|
| 2106 |
+
}
|
| 2107 |
+
},
|
| 2108 |
+
"node_modules/postcss-import": {
|
| 2109 |
+
"version": "15.1.0",
|
| 2110 |
+
"resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
|
| 2111 |
+
"integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
|
| 2112 |
+
"dev": true,
|
| 2113 |
+
"license": "MIT",
|
| 2114 |
+
"dependencies": {
|
| 2115 |
+
"postcss-value-parser": "^4.0.0",
|
| 2116 |
+
"read-cache": "^1.0.0",
|
| 2117 |
+
"resolve": "^1.1.7"
|
| 2118 |
+
},
|
| 2119 |
+
"engines": {
|
| 2120 |
+
"node": ">=14.0.0"
|
| 2121 |
+
},
|
| 2122 |
+
"peerDependencies": {
|
| 2123 |
+
"postcss": "^8.0.0"
|
| 2124 |
+
}
|
| 2125 |
+
},
|
| 2126 |
+
"node_modules/postcss-js": {
|
| 2127 |
+
"version": "4.1.0",
|
| 2128 |
+
"resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.1.0.tgz",
|
| 2129 |
+
"integrity": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==",
|
| 2130 |
+
"dev": true,
|
| 2131 |
+
"funding": [
|
| 2132 |
+
{
|
| 2133 |
+
"type": "opencollective",
|
| 2134 |
+
"url": "https://opencollective.com/postcss/"
|
| 2135 |
+
},
|
| 2136 |
+
{
|
| 2137 |
+
"type": "github",
|
| 2138 |
+
"url": "https://github.com/sponsors/ai"
|
| 2139 |
+
}
|
| 2140 |
+
],
|
| 2141 |
+
"license": "MIT",
|
| 2142 |
+
"dependencies": {
|
| 2143 |
+
"camelcase-css": "^2.0.1"
|
| 2144 |
+
},
|
| 2145 |
+
"engines": {
|
| 2146 |
+
"node": "^12 || ^14 || >= 16"
|
| 2147 |
+
},
|
| 2148 |
+
"peerDependencies": {
|
| 2149 |
+
"postcss": "^8.4.21"
|
| 2150 |
+
}
|
| 2151 |
+
},
|
| 2152 |
+
"node_modules/postcss-load-config": {
|
| 2153 |
+
"version": "6.0.1",
|
| 2154 |
+
"resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz",
|
| 2155 |
+
"integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==",
|
| 2156 |
+
"dev": true,
|
| 2157 |
+
"funding": [
|
| 2158 |
+
{
|
| 2159 |
+
"type": "opencollective",
|
| 2160 |
+
"url": "https://opencollective.com/postcss/"
|
| 2161 |
+
},
|
| 2162 |
+
{
|
| 2163 |
+
"type": "github",
|
| 2164 |
+
"url": "https://github.com/sponsors/ai"
|
| 2165 |
+
}
|
| 2166 |
+
],
|
| 2167 |
+
"license": "MIT",
|
| 2168 |
+
"dependencies": {
|
| 2169 |
+
"lilconfig": "^3.1.1"
|
| 2170 |
+
},
|
| 2171 |
+
"engines": {
|
| 2172 |
+
"node": ">= 18"
|
| 2173 |
+
},
|
| 2174 |
+
"peerDependencies": {
|
| 2175 |
+
"jiti": ">=1.21.0",
|
| 2176 |
+
"postcss": ">=8.0.9",
|
| 2177 |
+
"tsx": "^4.8.1",
|
| 2178 |
+
"yaml": "^2.4.2"
|
| 2179 |
+
},
|
| 2180 |
+
"peerDependenciesMeta": {
|
| 2181 |
+
"jiti": {
|
| 2182 |
+
"optional": true
|
| 2183 |
+
},
|
| 2184 |
+
"postcss": {
|
| 2185 |
+
"optional": true
|
| 2186 |
+
},
|
| 2187 |
+
"tsx": {
|
| 2188 |
+
"optional": true
|
| 2189 |
+
},
|
| 2190 |
+
"yaml": {
|
| 2191 |
+
"optional": true
|
| 2192 |
+
}
|
| 2193 |
+
}
|
| 2194 |
+
},
|
| 2195 |
+
"node_modules/postcss-nested": {
|
| 2196 |
+
"version": "6.2.0",
|
| 2197 |
+
"resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz",
|
| 2198 |
+
"integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
|
| 2199 |
+
"dev": true,
|
| 2200 |
+
"funding": [
|
| 2201 |
+
{
|
| 2202 |
+
"type": "opencollective",
|
| 2203 |
+
"url": "https://opencollective.com/postcss/"
|
| 2204 |
+
},
|
| 2205 |
+
{
|
| 2206 |
+
"type": "github",
|
| 2207 |
+
"url": "https://github.com/sponsors/ai"
|
| 2208 |
+
}
|
| 2209 |
+
],
|
| 2210 |
+
"license": "MIT",
|
| 2211 |
+
"dependencies": {
|
| 2212 |
+
"postcss-selector-parser": "^6.1.1"
|
| 2213 |
+
},
|
| 2214 |
+
"engines": {
|
| 2215 |
+
"node": ">=12.0"
|
| 2216 |
+
},
|
| 2217 |
+
"peerDependencies": {
|
| 2218 |
+
"postcss": "^8.2.14"
|
| 2219 |
+
}
|
| 2220 |
+
},
|
| 2221 |
+
"node_modules/postcss-selector-parser": {
|
| 2222 |
+
"version": "6.1.2",
|
| 2223 |
+
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
|
| 2224 |
+
"integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
|
| 2225 |
+
"dev": true,
|
| 2226 |
+
"license": "MIT",
|
| 2227 |
+
"dependencies": {
|
| 2228 |
+
"cssesc": "^3.0.0",
|
| 2229 |
+
"util-deprecate": "^1.0.2"
|
| 2230 |
+
},
|
| 2231 |
+
"engines": {
|
| 2232 |
+
"node": ">=4"
|
| 2233 |
+
}
|
| 2234 |
+
},
|
| 2235 |
+
"node_modules/postcss-value-parser": {
|
| 2236 |
+
"version": "4.2.0",
|
| 2237 |
+
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
|
| 2238 |
+
"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
|
| 2239 |
+
"dev": true,
|
| 2240 |
+
"license": "MIT"
|
| 2241 |
+
},
|
| 2242 |
+
"node_modules/queue-microtask": {
|
| 2243 |
+
"version": "1.2.3",
|
| 2244 |
+
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
|
| 2245 |
+
"integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
|
| 2246 |
+
"dev": true,
|
| 2247 |
+
"funding": [
|
| 2248 |
+
{
|
| 2249 |
+
"type": "github",
|
| 2250 |
+
"url": "https://github.com/sponsors/feross"
|
| 2251 |
+
},
|
| 2252 |
+
{
|
| 2253 |
+
"type": "patreon",
|
| 2254 |
+
"url": "https://www.patreon.com/feross"
|
| 2255 |
+
},
|
| 2256 |
+
{
|
| 2257 |
+
"type": "consulting",
|
| 2258 |
+
"url": "https://feross.org/support"
|
| 2259 |
+
}
|
| 2260 |
+
],
|
| 2261 |
+
"license": "MIT"
|
| 2262 |
+
},
|
| 2263 |
+
"node_modules/react": {
|
| 2264 |
+
"version": "18.3.1",
|
| 2265 |
+
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
|
| 2266 |
+
"integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
|
| 2267 |
+
"license": "MIT",
|
| 2268 |
+
"dependencies": {
|
| 2269 |
+
"loose-envify": "^1.1.0"
|
| 2270 |
+
},
|
| 2271 |
+
"engines": {
|
| 2272 |
+
"node": ">=0.10.0"
|
| 2273 |
+
}
|
| 2274 |
+
},
|
| 2275 |
+
"node_modules/react-dom": {
|
| 2276 |
+
"version": "18.3.1",
|
| 2277 |
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
|
| 2278 |
+
"integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
|
| 2279 |
+
"license": "MIT",
|
| 2280 |
+
"dependencies": {
|
| 2281 |
+
"loose-envify": "^1.1.0",
|
| 2282 |
+
"scheduler": "^0.23.2"
|
| 2283 |
+
},
|
| 2284 |
+
"peerDependencies": {
|
| 2285 |
+
"react": "^18.3.1"
|
| 2286 |
+
}
|
| 2287 |
+
},
|
| 2288 |
+
"node_modules/react-fast-compare": {
|
| 2289 |
+
"version": "3.2.2",
|
| 2290 |
+
"resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz",
|
| 2291 |
+
"integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==",
|
| 2292 |
+
"license": "MIT"
|
| 2293 |
+
},
|
| 2294 |
+
"node_modules/react-helmet-async": {
|
| 2295 |
+
"version": "2.0.4",
|
| 2296 |
+
"resolved": "https://registry.npmjs.org/react-helmet-async/-/react-helmet-async-2.0.4.tgz",
|
| 2297 |
+
"integrity": "sha512-yxjQMWposw+akRfvpl5+8xejl4JtUlHnEBcji6u8/e6oc7ozT+P9PNTWMhCbz2y9tc5zPegw2BvKjQA+NwdEjQ==",
|
| 2298 |
+
"license": "Apache-2.0",
|
| 2299 |
+
"dependencies": {
|
| 2300 |
+
"invariant": "^2.2.4",
|
| 2301 |
+
"react-fast-compare": "^3.2.2",
|
| 2302 |
+
"shallowequal": "^1.1.0"
|
| 2303 |
+
},
|
| 2304 |
+
"peerDependencies": {
|
| 2305 |
+
"react": "^16.6.0 || ^17.0.0 || ^18.0.0",
|
| 2306 |
+
"react-dom": "^16.6.0 || ^17.0.0 || ^18.0.0"
|
| 2307 |
+
}
|
| 2308 |
+
},
|
| 2309 |
+
"node_modules/react-refresh": {
|
| 2310 |
+
"version": "0.18.0",
|
| 2311 |
+
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz",
|
| 2312 |
+
"integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==",
|
| 2313 |
+
"dev": true,
|
| 2314 |
+
"license": "MIT",
|
| 2315 |
+
"engines": {
|
| 2316 |
+
"node": ">=0.10.0"
|
| 2317 |
+
}
|
| 2318 |
+
},
|
| 2319 |
+
"node_modules/read-cache": {
|
| 2320 |
+
"version": "1.0.0",
|
| 2321 |
+
"resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
|
| 2322 |
+
"integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
|
| 2323 |
+
"dev": true,
|
| 2324 |
+
"license": "MIT",
|
| 2325 |
+
"dependencies": {
|
| 2326 |
+
"pify": "^2.3.0"
|
| 2327 |
+
}
|
| 2328 |
+
},
|
| 2329 |
+
"node_modules/readdirp": {
|
| 2330 |
+
"version": "3.6.0",
|
| 2331 |
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
| 2332 |
+
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
| 2333 |
+
"dev": true,
|
| 2334 |
+
"license": "MIT",
|
| 2335 |
+
"dependencies": {
|
| 2336 |
+
"picomatch": "^2.2.1"
|
| 2337 |
+
},
|
| 2338 |
+
"engines": {
|
| 2339 |
+
"node": ">=8.10.0"
|
| 2340 |
+
}
|
| 2341 |
+
},
|
| 2342 |
+
"node_modules/resolve": {
|
| 2343 |
+
"version": "1.22.11",
|
| 2344 |
+
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz",
|
| 2345 |
+
"integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==",
|
| 2346 |
+
"dev": true,
|
| 2347 |
+
"license": "MIT",
|
| 2348 |
+
"dependencies": {
|
| 2349 |
+
"is-core-module": "^2.16.1",
|
| 2350 |
+
"path-parse": "^1.0.7",
|
| 2351 |
+
"supports-preserve-symlinks-flag": "^1.0.0"
|
| 2352 |
+
},
|
| 2353 |
+
"bin": {
|
| 2354 |
+
"resolve": "bin/resolve"
|
| 2355 |
+
},
|
| 2356 |
+
"engines": {
|
| 2357 |
+
"node": ">= 0.4"
|
| 2358 |
+
},
|
| 2359 |
+
"funding": {
|
| 2360 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 2361 |
+
}
|
| 2362 |
+
},
|
| 2363 |
+
"node_modules/reusify": {
|
| 2364 |
+
"version": "1.1.0",
|
| 2365 |
+
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
|
| 2366 |
+
"integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
|
| 2367 |
+
"dev": true,
|
| 2368 |
+
"license": "MIT",
|
| 2369 |
+
"engines": {
|
| 2370 |
+
"iojs": ">=1.0.0",
|
| 2371 |
+
"node": ">=0.10.0"
|
| 2372 |
+
}
|
| 2373 |
+
},
|
| 2374 |
+
"node_modules/rollup": {
|
| 2375 |
+
"version": "4.53.5",
|
| 2376 |
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.5.tgz",
|
| 2377 |
+
"integrity": "sha512-iTNAbFSlRpcHeeWu73ywU/8KuU/LZmNCSxp6fjQkJBD3ivUb8tpDrXhIxEzA05HlYMEwmtaUnb3RP+YNv162OQ==",
|
| 2378 |
+
"dev": true,
|
| 2379 |
+
"license": "MIT",
|
| 2380 |
+
"dependencies": {
|
| 2381 |
+
"@types/estree": "1.0.8"
|
| 2382 |
+
},
|
| 2383 |
+
"bin": {
|
| 2384 |
+
"rollup": "dist/bin/rollup"
|
| 2385 |
+
},
|
| 2386 |
+
"engines": {
|
| 2387 |
+
"node": ">=18.0.0",
|
| 2388 |
+
"npm": ">=8.0.0"
|
| 2389 |
+
},
|
| 2390 |
+
"optionalDependencies": {
|
| 2391 |
+
"@rollup/rollup-android-arm-eabi": "4.53.5",
|
| 2392 |
+
"@rollup/rollup-android-arm64": "4.53.5",
|
| 2393 |
+
"@rollup/rollup-darwin-arm64": "4.53.5",
|
| 2394 |
+
"@rollup/rollup-darwin-x64": "4.53.5",
|
| 2395 |
+
"@rollup/rollup-freebsd-arm64": "4.53.5",
|
| 2396 |
+
"@rollup/rollup-freebsd-x64": "4.53.5",
|
| 2397 |
+
"@rollup/rollup-linux-arm-gnueabihf": "4.53.5",
|
| 2398 |
+
"@rollup/rollup-linux-arm-musleabihf": "4.53.5",
|
| 2399 |
+
"@rollup/rollup-linux-arm64-gnu": "4.53.5",
|
| 2400 |
+
"@rollup/rollup-linux-arm64-musl": "4.53.5",
|
| 2401 |
+
"@rollup/rollup-linux-loong64-gnu": "4.53.5",
|
| 2402 |
+
"@rollup/rollup-linux-ppc64-gnu": "4.53.5",
|
| 2403 |
+
"@rollup/rollup-linux-riscv64-gnu": "4.53.5",
|
| 2404 |
+
"@rollup/rollup-linux-riscv64-musl": "4.53.5",
|
| 2405 |
+
"@rollup/rollup-linux-s390x-gnu": "4.53.5",
|
| 2406 |
+
"@rollup/rollup-linux-x64-gnu": "4.53.5",
|
| 2407 |
+
"@rollup/rollup-linux-x64-musl": "4.53.5",
|
| 2408 |
+
"@rollup/rollup-openharmony-arm64": "4.53.5",
|
| 2409 |
+
"@rollup/rollup-win32-arm64-msvc": "4.53.5",
|
| 2410 |
+
"@rollup/rollup-win32-ia32-msvc": "4.53.5",
|
| 2411 |
+
"@rollup/rollup-win32-x64-gnu": "4.53.5",
|
| 2412 |
+
"@rollup/rollup-win32-x64-msvc": "4.53.5",
|
| 2413 |
+
"fsevents": "~2.3.2"
|
| 2414 |
+
}
|
| 2415 |
+
},
|
| 2416 |
+
"node_modules/run-parallel": {
|
| 2417 |
+
"version": "1.2.0",
|
| 2418 |
+
"resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
|
| 2419 |
+
"integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
|
| 2420 |
+
"dev": true,
|
| 2421 |
+
"funding": [
|
| 2422 |
+
{
|
| 2423 |
+
"type": "github",
|
| 2424 |
+
"url": "https://github.com/sponsors/feross"
|
| 2425 |
+
},
|
| 2426 |
+
{
|
| 2427 |
+
"type": "patreon",
|
| 2428 |
+
"url": "https://www.patreon.com/feross"
|
| 2429 |
+
},
|
| 2430 |
+
{
|
| 2431 |
+
"type": "consulting",
|
| 2432 |
+
"url": "https://feross.org/support"
|
| 2433 |
+
}
|
| 2434 |
+
],
|
| 2435 |
+
"license": "MIT",
|
| 2436 |
+
"dependencies": {
|
| 2437 |
+
"queue-microtask": "^1.2.2"
|
| 2438 |
+
}
|
| 2439 |
+
},
|
| 2440 |
+
"node_modules/scheduler": {
|
| 2441 |
+
"version": "0.23.2",
|
| 2442 |
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
|
| 2443 |
+
"integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
|
| 2444 |
+
"license": "MIT",
|
| 2445 |
+
"dependencies": {
|
| 2446 |
+
"loose-envify": "^1.1.0"
|
| 2447 |
+
}
|
| 2448 |
+
},
|
| 2449 |
+
"node_modules/semver": {
|
| 2450 |
+
"version": "6.3.1",
|
| 2451 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
| 2452 |
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
| 2453 |
+
"dev": true,
|
| 2454 |
+
"license": "ISC",
|
| 2455 |
+
"bin": {
|
| 2456 |
+
"semver": "bin/semver.js"
|
| 2457 |
+
}
|
| 2458 |
+
},
|
| 2459 |
+
"node_modules/shallowequal": {
|
| 2460 |
+
"version": "1.1.0",
|
| 2461 |
+
"resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz",
|
| 2462 |
+
"integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==",
|
| 2463 |
+
"license": "MIT"
|
| 2464 |
+
},
|
| 2465 |
+
"node_modules/source-map-js": {
|
| 2466 |
+
"version": "1.2.1",
|
| 2467 |
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
| 2468 |
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
| 2469 |
+
"dev": true,
|
| 2470 |
+
"license": "BSD-3-Clause",
|
| 2471 |
+
"engines": {
|
| 2472 |
+
"node": ">=0.10.0"
|
| 2473 |
+
}
|
| 2474 |
+
},
|
| 2475 |
+
"node_modules/sucrase": {
|
| 2476 |
+
"version": "3.35.1",
|
| 2477 |
+
"resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.1.tgz",
|
| 2478 |
+
"integrity": "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==",
|
| 2479 |
+
"dev": true,
|
| 2480 |
+
"license": "MIT",
|
| 2481 |
+
"dependencies": {
|
| 2482 |
+
"@jridgewell/gen-mapping": "^0.3.2",
|
| 2483 |
+
"commander": "^4.0.0",
|
| 2484 |
+
"lines-and-columns": "^1.1.6",
|
| 2485 |
+
"mz": "^2.7.0",
|
| 2486 |
+
"pirates": "^4.0.1",
|
| 2487 |
+
"tinyglobby": "^0.2.11",
|
| 2488 |
+
"ts-interface-checker": "^0.1.9"
|
| 2489 |
+
},
|
| 2490 |
+
"bin": {
|
| 2491 |
+
"sucrase": "bin/sucrase",
|
| 2492 |
+
"sucrase-node": "bin/sucrase-node"
|
| 2493 |
+
},
|
| 2494 |
+
"engines": {
|
| 2495 |
+
"node": ">=16 || 14 >=14.17"
|
| 2496 |
+
}
|
| 2497 |
+
},
|
| 2498 |
+
"node_modules/supports-preserve-symlinks-flag": {
|
| 2499 |
+
"version": "1.0.0",
|
| 2500 |
+
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
|
| 2501 |
+
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
|
| 2502 |
+
"dev": true,
|
| 2503 |
+
"license": "MIT",
|
| 2504 |
+
"engines": {
|
| 2505 |
+
"node": ">= 0.4"
|
| 2506 |
+
},
|
| 2507 |
+
"funding": {
|
| 2508 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 2509 |
+
}
|
| 2510 |
+
},
|
| 2511 |
+
"node_modules/tailwindcss": {
|
| 2512 |
+
"version": "3.4.19",
|
| 2513 |
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.19.tgz",
|
| 2514 |
+
"integrity": "sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==",
|
| 2515 |
+
"dev": true,
|
| 2516 |
+
"license": "MIT",
|
| 2517 |
+
"dependencies": {
|
| 2518 |
+
"@alloc/quick-lru": "^5.2.0",
|
| 2519 |
+
"arg": "^5.0.2",
|
| 2520 |
+
"chokidar": "^3.6.0",
|
| 2521 |
+
"didyoumean": "^1.2.2",
|
| 2522 |
+
"dlv": "^1.1.3",
|
| 2523 |
+
"fast-glob": "^3.3.2",
|
| 2524 |
+
"glob-parent": "^6.0.2",
|
| 2525 |
+
"is-glob": "^4.0.3",
|
| 2526 |
+
"jiti": "^1.21.7",
|
| 2527 |
+
"lilconfig": "^3.1.3",
|
| 2528 |
+
"micromatch": "^4.0.8",
|
| 2529 |
+
"normalize-path": "^3.0.0",
|
| 2530 |
+
"object-hash": "^3.0.0",
|
| 2531 |
+
"picocolors": "^1.1.1",
|
| 2532 |
+
"postcss": "^8.4.47",
|
| 2533 |
+
"postcss-import": "^15.1.0",
|
| 2534 |
+
"postcss-js": "^4.0.1",
|
| 2535 |
+
"postcss-load-config": "^4.0.2 || ^5.0 || ^6.0",
|
| 2536 |
+
"postcss-nested": "^6.2.0",
|
| 2537 |
+
"postcss-selector-parser": "^6.1.2",
|
| 2538 |
+
"resolve": "^1.22.8",
|
| 2539 |
+
"sucrase": "^3.35.0"
|
| 2540 |
+
},
|
| 2541 |
+
"bin": {
|
| 2542 |
+
"tailwind": "lib/cli.js",
|
| 2543 |
+
"tailwindcss": "lib/cli.js"
|
| 2544 |
+
},
|
| 2545 |
+
"engines": {
|
| 2546 |
+
"node": ">=14.0.0"
|
| 2547 |
+
}
|
| 2548 |
+
},
|
| 2549 |
+
"node_modules/thenify": {
|
| 2550 |
+
"version": "3.3.1",
|
| 2551 |
+
"resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
|
| 2552 |
+
"integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
|
| 2553 |
+
"dev": true,
|
| 2554 |
+
"license": "MIT",
|
| 2555 |
+
"dependencies": {
|
| 2556 |
+
"any-promise": "^1.0.0"
|
| 2557 |
+
}
|
| 2558 |
+
},
|
| 2559 |
+
"node_modules/thenify-all": {
|
| 2560 |
+
"version": "1.6.0",
|
| 2561 |
+
"resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
|
| 2562 |
+
"integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
|
| 2563 |
+
"dev": true,
|
| 2564 |
+
"license": "MIT",
|
| 2565 |
+
"dependencies": {
|
| 2566 |
+
"thenify": ">= 3.1.0 < 4"
|
| 2567 |
+
},
|
| 2568 |
+
"engines": {
|
| 2569 |
+
"node": ">=0.8"
|
| 2570 |
+
}
|
| 2571 |
+
},
|
| 2572 |
+
"node_modules/tinyglobby": {
|
| 2573 |
+
"version": "0.2.15",
|
| 2574 |
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
|
| 2575 |
+
"integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
|
| 2576 |
+
"dev": true,
|
| 2577 |
+
"license": "MIT",
|
| 2578 |
+
"dependencies": {
|
| 2579 |
+
"fdir": "^6.5.0",
|
| 2580 |
+
"picomatch": "^4.0.3"
|
| 2581 |
+
},
|
| 2582 |
+
"engines": {
|
| 2583 |
+
"node": ">=12.0.0"
|
| 2584 |
+
},
|
| 2585 |
+
"funding": {
|
| 2586 |
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
| 2587 |
+
}
|
| 2588 |
+
},
|
| 2589 |
+
"node_modules/tinyglobby/node_modules/picomatch": {
|
| 2590 |
+
"version": "4.0.3",
|
| 2591 |
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
|
| 2592 |
+
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
| 2593 |
+
"dev": true,
|
| 2594 |
+
"license": "MIT",
|
| 2595 |
+
"engines": {
|
| 2596 |
+
"node": ">=12"
|
| 2597 |
+
},
|
| 2598 |
+
"funding": {
|
| 2599 |
+
"url": "https://github.com/sponsors/jonschlinkert"
|
| 2600 |
+
}
|
| 2601 |
+
},
|
| 2602 |
+
"node_modules/to-regex-range": {
|
| 2603 |
+
"version": "5.0.1",
|
| 2604 |
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
| 2605 |
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
| 2606 |
+
"dev": true,
|
| 2607 |
+
"license": "MIT",
|
| 2608 |
+
"dependencies": {
|
| 2609 |
+
"is-number": "^7.0.0"
|
| 2610 |
+
},
|
| 2611 |
+
"engines": {
|
| 2612 |
+
"node": ">=8.0"
|
| 2613 |
+
}
|
| 2614 |
+
},
|
| 2615 |
+
"node_modules/ts-interface-checker": {
|
| 2616 |
+
"version": "0.1.13",
|
| 2617 |
+
"resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
|
| 2618 |
+
"integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==",
|
| 2619 |
+
"dev": true,
|
| 2620 |
+
"license": "Apache-2.0"
|
| 2621 |
+
},
|
| 2622 |
+
"node_modules/tslib": {
|
| 2623 |
+
"version": "2.8.1",
|
| 2624 |
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
| 2625 |
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
| 2626 |
+
"license": "0BSD"
|
| 2627 |
+
},
|
| 2628 |
+
"node_modules/typescript": {
|
| 2629 |
+
"version": "5.8.3",
|
| 2630 |
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
|
| 2631 |
+
"integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
|
| 2632 |
+
"dev": true,
|
| 2633 |
+
"license": "Apache-2.0",
|
| 2634 |
+
"bin": {
|
| 2635 |
+
"tsc": "bin/tsc",
|
| 2636 |
+
"tsserver": "bin/tsserver"
|
| 2637 |
+
},
|
| 2638 |
+
"engines": {
|
| 2639 |
+
"node": ">=14.17"
|
| 2640 |
+
}
|
| 2641 |
+
},
|
| 2642 |
+
"node_modules/undici-types": {
|
| 2643 |
+
"version": "6.21.0",
|
| 2644 |
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
| 2645 |
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
| 2646 |
+
"dev": true,
|
| 2647 |
+
"license": "MIT"
|
| 2648 |
+
},
|
| 2649 |
+
"node_modules/update-browserslist-db": {
|
| 2650 |
+
"version": "1.2.3",
|
| 2651 |
+
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
|
| 2652 |
+
"integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
|
| 2653 |
+
"dev": true,
|
| 2654 |
+
"funding": [
|
| 2655 |
+
{
|
| 2656 |
+
"type": "opencollective",
|
| 2657 |
+
"url": "https://opencollective.com/browserslist"
|
| 2658 |
+
},
|
| 2659 |
+
{
|
| 2660 |
+
"type": "tidelift",
|
| 2661 |
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
| 2662 |
+
},
|
| 2663 |
+
{
|
| 2664 |
+
"type": "github",
|
| 2665 |
+
"url": "https://github.com/sponsors/ai"
|
| 2666 |
+
}
|
| 2667 |
+
],
|
| 2668 |
+
"license": "MIT",
|
| 2669 |
+
"dependencies": {
|
| 2670 |
+
"escalade": "^3.2.0",
|
| 2671 |
+
"picocolors": "^1.1.1"
|
| 2672 |
+
},
|
| 2673 |
+
"bin": {
|
| 2674 |
+
"update-browserslist-db": "cli.js"
|
| 2675 |
+
},
|
| 2676 |
+
"peerDependencies": {
|
| 2677 |
+
"browserslist": ">= 4.21.0"
|
| 2678 |
+
}
|
| 2679 |
+
},
|
| 2680 |
+
"node_modules/util-deprecate": {
|
| 2681 |
+
"version": "1.0.2",
|
| 2682 |
+
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
| 2683 |
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
| 2684 |
+
"dev": true,
|
| 2685 |
+
"license": "MIT"
|
| 2686 |
+
},
|
| 2687 |
+
"node_modules/vite": {
|
| 2688 |
+
"version": "6.4.1",
|
| 2689 |
+
"resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz",
|
| 2690 |
+
"integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==",
|
| 2691 |
+
"dev": true,
|
| 2692 |
+
"license": "MIT",
|
| 2693 |
+
"dependencies": {
|
| 2694 |
+
"esbuild": "^0.25.0",
|
| 2695 |
+
"fdir": "^6.4.4",
|
| 2696 |
+
"picomatch": "^4.0.2",
|
| 2697 |
+
"postcss": "^8.5.3",
|
| 2698 |
+
"rollup": "^4.34.9",
|
| 2699 |
+
"tinyglobby": "^0.2.13"
|
| 2700 |
+
},
|
| 2701 |
+
"bin": {
|
| 2702 |
+
"vite": "bin/vite.js"
|
| 2703 |
+
},
|
| 2704 |
+
"engines": {
|
| 2705 |
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
| 2706 |
+
},
|
| 2707 |
+
"funding": {
|
| 2708 |
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
| 2709 |
+
},
|
| 2710 |
+
"optionalDependencies": {
|
| 2711 |
+
"fsevents": "~2.3.3"
|
| 2712 |
+
},
|
| 2713 |
+
"peerDependencies": {
|
| 2714 |
+
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
|
| 2715 |
+
"jiti": ">=1.21.0",
|
| 2716 |
+
"less": "*",
|
| 2717 |
+
"lightningcss": "^1.21.0",
|
| 2718 |
+
"sass": "*",
|
| 2719 |
+
"sass-embedded": "*",
|
| 2720 |
+
"stylus": "*",
|
| 2721 |
+
"sugarss": "*",
|
| 2722 |
+
"terser": "^5.16.0",
|
| 2723 |
+
"tsx": "^4.8.1",
|
| 2724 |
+
"yaml": "^2.4.2"
|
| 2725 |
+
},
|
| 2726 |
+
"peerDependenciesMeta": {
|
| 2727 |
+
"@types/node": {
|
| 2728 |
+
"optional": true
|
| 2729 |
+
},
|
| 2730 |
+
"jiti": {
|
| 2731 |
+
"optional": true
|
| 2732 |
+
},
|
| 2733 |
+
"less": {
|
| 2734 |
+
"optional": true
|
| 2735 |
+
},
|
| 2736 |
+
"lightningcss": {
|
| 2737 |
+
"optional": true
|
| 2738 |
+
},
|
| 2739 |
+
"sass": {
|
| 2740 |
+
"optional": true
|
| 2741 |
+
},
|
| 2742 |
+
"sass-embedded": {
|
| 2743 |
+
"optional": true
|
| 2744 |
+
},
|
| 2745 |
+
"stylus": {
|
| 2746 |
+
"optional": true
|
| 2747 |
+
},
|
| 2748 |
+
"sugarss": {
|
| 2749 |
+
"optional": true
|
| 2750 |
+
},
|
| 2751 |
+
"terser": {
|
| 2752 |
+
"optional": true
|
| 2753 |
+
},
|
| 2754 |
+
"tsx": {
|
| 2755 |
+
"optional": true
|
| 2756 |
+
},
|
| 2757 |
+
"yaml": {
|
| 2758 |
+
"optional": true
|
| 2759 |
+
}
|
| 2760 |
+
}
|
| 2761 |
+
},
|
| 2762 |
+
"node_modules/vite/node_modules/picomatch": {
|
| 2763 |
+
"version": "4.0.3",
|
| 2764 |
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
|
| 2765 |
+
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
| 2766 |
+
"dev": true,
|
| 2767 |
+
"license": "MIT",
|
| 2768 |
+
"engines": {
|
| 2769 |
+
"node": ">=12"
|
| 2770 |
+
},
|
| 2771 |
+
"funding": {
|
| 2772 |
+
"url": "https://github.com/sponsors/jonschlinkert"
|
| 2773 |
+
}
|
| 2774 |
+
},
|
| 2775 |
+
"node_modules/yallist": {
|
| 2776 |
+
"version": "3.1.1",
|
| 2777 |
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
|
| 2778 |
+
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
|
| 2779 |
+
"dev": true,
|
| 2780 |
+
"license": "ISC"
|
| 2781 |
+
}
|
| 2782 |
+
}
|
| 2783 |
+
}
|
package.json
CHANGED
|
@@ -10,17 +10,18 @@
|
|
| 10 |
},
|
| 11 |
"dependencies": {
|
| 12 |
"lucide-react": "0.263.1",
|
| 13 |
-
"react-dom": "^
|
| 14 |
-
"react": "^
|
| 15 |
"framer-motion": "10.16.5",
|
| 16 |
"gsap": "^3.14.2",
|
| 17 |
-
"leaflet": "1.9.4",
|
| 18 |
-
"react-leaflet": "4.2.1",
|
| 19 |
"react-helmet-async": "2.0.4"
|
| 20 |
},
|
| 21 |
"devDependencies": {
|
| 22 |
"@types/node": "^22.14.0",
|
| 23 |
"@vitejs/plugin-react": "^5.0.0",
|
|
|
|
|
|
|
|
|
|
| 24 |
"typescript": "~5.8.2",
|
| 25 |
"vite": "^6.2.0"
|
| 26 |
}
|
|
|
|
| 10 |
},
|
| 11 |
"dependencies": {
|
| 12 |
"lucide-react": "0.263.1",
|
| 13 |
+
"react-dom": "^18.2.0",
|
| 14 |
+
"react": "^18.2.0",
|
| 15 |
"framer-motion": "10.16.5",
|
| 16 |
"gsap": "^3.14.2",
|
|
|
|
|
|
|
| 17 |
"react-helmet-async": "2.0.4"
|
| 18 |
},
|
| 19 |
"devDependencies": {
|
| 20 |
"@types/node": "^22.14.0",
|
| 21 |
"@vitejs/plugin-react": "^5.0.0",
|
| 22 |
+
"autoprefixer": "^10.4.20",
|
| 23 |
+
"postcss": "^8.4.49",
|
| 24 |
+
"tailwindcss": "^3.4.17",
|
| 25 |
"typescript": "~5.8.2",
|
| 26 |
"vite": "^6.2.0"
|
| 27 |
}
|
postcss.config.cjs
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
module.exports = {
|
| 2 |
+
plugins: {
|
| 3 |
+
tailwindcss: {},
|
| 4 |
+
autoprefixer: {}
|
| 5 |
+
}
|
| 6 |
+
};
|
tailwind.config.cjs
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/** @type {import('tailwindcss').Config} */
|
| 2 |
+
module.exports = {
|
| 3 |
+
content: ['./index.html', './**/*.{js,ts,jsx,tsx}'],
|
| 4 |
+
theme: {
|
| 5 |
+
extend: {
|
| 6 |
+
colors: {
|
| 7 |
+
brand: {
|
| 8 |
+
dark: '#1a0505',
|
| 9 |
+
maroon: '#450a0a',
|
| 10 |
+
red: '#dc2626',
|
| 11 |
+
accent: '#fca5a5',
|
| 12 |
+
gold: '#d4af37'
|
| 13 |
+
}
|
| 14 |
+
},
|
| 15 |
+
fontFamily: {
|
| 16 |
+
serif: ['"Playfair Display"', 'serif'],
|
| 17 |
+
sans: ['"Inter"', 'sans-serif'],
|
| 18 |
+
doto: ['"Doto"', 'sans-serif'],
|
| 19 |
+
devanagari: ['"Noto Serif Devanagari"', 'serif'],
|
| 20 |
+
kannada: ['"Noto Serif Kannada"', 'serif']
|
| 21 |
+
},
|
| 22 |
+
animation: {
|
| 23 |
+
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite'
|
| 24 |
+
}
|
| 25 |
+
}
|
| 26 |
+
},
|
| 27 |
+
plugins: []
|
| 28 |
+
};
|
vite.config.ts
CHANGED
|
@@ -9,12 +9,6 @@ export default defineConfig(({ mode }) => {
|
|
| 9 |
port: 3000,
|
| 10 |
host: '0.0.0.0',
|
| 11 |
},
|
| 12 |
-
preview: {
|
| 13 |
-
host: true, // Listen on all addresses
|
| 14 |
-
port: 7860,
|
| 15 |
-
strictPort: true,
|
| 16 |
-
allowedHosts: ['antaram-websitepratik.hf.space'] // Add this line
|
| 17 |
-
}
|
| 18 |
plugins: [react()],
|
| 19 |
define: {
|
| 20 |
'process.env.API_KEY': JSON.stringify(env.GEMINI_API_KEY),
|
|
|
|
| 9 |
port: 3000,
|
| 10 |
host: '0.0.0.0',
|
| 11 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
plugins: [react()],
|
| 13 |
define: {
|
| 14 |
'process.env.API_KEY': JSON.stringify(env.GEMINI_API_KEY),
|