Use npm over pnpm
Browse files- Dockerfile +4 -7
- pnpm-lock.yaml +0 -1910
Dockerfile
CHANGED
@@ -1,25 +1,22 @@
|
|
1 |
FROM node:alpine
|
2 |
|
3 |
-
# Install pnpm
|
4 |
-
RUN npm install -g pnpm
|
5 |
-
|
6 |
# Set the working directory
|
7 |
WORKDIR /app
|
8 |
|
9 |
# Copy package.json and pnpm-lock.yaml (if available)
|
10 |
-
COPY package.json
|
11 |
|
12 |
# Install all dependencies, including dev dependencies
|
13 |
-
RUN
|
14 |
|
15 |
# Copy the rest of the application code
|
16 |
COPY . .
|
17 |
|
18 |
# Build the application
|
19 |
-
RUN
|
20 |
|
21 |
# Prune dev dependencies
|
22 |
-
RUN
|
23 |
|
24 |
# Set correct permissions
|
25 |
RUN chown -R node:node /app
|
|
|
1 |
FROM node:alpine
|
2 |
|
|
|
|
|
|
|
3 |
# Set the working directory
|
4 |
WORKDIR /app
|
5 |
|
6 |
# Copy package.json and pnpm-lock.yaml (if available)
|
7 |
+
COPY package.json package-lock.json* ./
|
8 |
|
9 |
# Install all dependencies, including dev dependencies
|
10 |
+
RUN npm install --frozen-lockfile
|
11 |
|
12 |
# Copy the rest of the application code
|
13 |
COPY . .
|
14 |
|
15 |
# Build the application
|
16 |
+
RUN npm run build
|
17 |
|
18 |
# Prune dev dependencies
|
19 |
+
RUN npm prune --prod
|
20 |
|
21 |
# Set correct permissions
|
22 |
RUN chown -R node:node /app
|
pnpm-lock.yaml
DELETED
@@ -1,1910 +0,0 @@
|
|
1 |
-
lockfileVersion: '6.0'
|
2 |
-
|
3 |
-
settings:
|
4 |
-
autoInstallPeers: true
|
5 |
-
excludeLinksFromLockfile: false
|
6 |
-
|
7 |
-
dependencies:
|
8 |
-
'@huggingface/hub':
|
9 |
-
specifier: ^0.15.1
|
10 |
-
version: 0.15.1
|
11 |
-
'@huggingface/inference':
|
12 |
-
specifier: ^2.7.0
|
13 |
-
version: 2.7.0
|
14 |
-
'@huggingface/tasks':
|
15 |
-
specifier: ^0.10.22
|
16 |
-
version: 0.10.22
|
17 |
-
'@tailwindcss/container-queries':
|
18 |
-
specifier: ^0.1.1
|
19 |
-
version: 0.1.1([email protected])
|
20 |
-
|
21 |
-
devDependencies:
|
22 |
-
'@sveltejs/adapter-auto':
|
23 |
-
specifier: ^3.2.2
|
24 |
-
version: 3.2.2(@sveltejs/[email protected])
|
25 |
-
'@sveltejs/adapter-node':
|
26 |
-
specifier: ^5.2.0
|
27 |
-
version: 5.2.0(@sveltejs/[email protected])
|
28 |
-
'@sveltejs/kit':
|
29 |
-
specifier: ^2.0.0
|
30 |
-
version: 2.5.17(@sveltejs/[email protected])([email protected])([email protected])
|
31 |
-
'@sveltejs/vite-plugin-svelte':
|
32 |
-
specifier: ^3.0.0
|
33 |
-
version: 3.1.1([email protected])([email protected])
|
34 |
-
autoprefixer:
|
35 |
-
specifier: ^10.4.19
|
36 |
-
version: 10.4.19([email protected])
|
37 |
-
highlight.js:
|
38 |
-
specifier: ^11.10.0
|
39 |
-
version: 11.10.0
|
40 |
-
postcss:
|
41 |
-
specifier: ^8.4.38
|
42 |
-
version: 8.4.38
|
43 |
-
prettier:
|
44 |
-
specifier: ^3.1.1
|
45 |
-
version: 3.3.2
|
46 |
-
prettier-plugin-svelte:
|
47 |
-
specifier: ^3.1.2
|
48 |
-
version: 3.2.5([email protected])([email protected])
|
49 |
-
prettier-plugin-tailwindcss:
|
50 |
-
specifier: ^0.6.4
|
51 |
-
version: 0.6.5([email protected])([email protected])
|
52 |
-
svelte:
|
53 |
-
specifier: ^4.2.7
|
54 |
-
version: 4.2.18
|
55 |
-
svelte-check:
|
56 |
-
specifier: ^3.6.0
|
57 |
-
version: 3.8.4([email protected])([email protected])
|
58 |
-
tailwindcss:
|
59 |
-
specifier: ^3.4.4
|
60 |
-
version: 3.4.4
|
61 |
-
tslib:
|
62 |
-
specifier: ^2.4.1
|
63 |
-
version: 2.6.3
|
64 |
-
typescript:
|
65 |
-
specifier: ^5.0.0
|
66 |
-
version: 5.5.2
|
67 |
-
vite:
|
68 |
-
specifier: ^5.0.3
|
69 |
-
version: 5.3.1
|
70 |
-
|
71 |
-
packages:
|
72 |
-
|
73 |
-
/@alloc/[email protected]:
|
74 |
-
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
75 |
-
engines: {node: '>=10'}
|
76 |
-
|
77 |
-
/@ampproject/[email protected]:
|
78 |
-
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
|
79 |
-
engines: {node: '>=6.0.0'}
|
80 |
-
dependencies:
|
81 |
-
'@jridgewell/gen-mapping': 0.3.5
|
82 |
-
'@jridgewell/trace-mapping': 0.3.25
|
83 |
-
dev: true
|
84 |
-
|
85 |
-
/@esbuild/[email protected]:
|
86 |
-
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
|
87 |
-
engines: {node: '>=12'}
|
88 |
-
cpu: [ppc64]
|
89 |
-
os: [aix]
|
90 |
-
requiresBuild: true
|
91 |
-
dev: true
|
92 |
-
optional: true
|
93 |
-
|
94 |
-
/@esbuild/[email protected]:
|
95 |
-
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
|
96 |
-
engines: {node: '>=12'}
|
97 |
-
cpu: [arm64]
|
98 |
-
os: [android]
|
99 |
-
requiresBuild: true
|
100 |
-
dev: true
|
101 |
-
optional: true
|
102 |
-
|
103 |
-
/@esbuild/[email protected]:
|
104 |
-
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
|
105 |
-
engines: {node: '>=12'}
|
106 |
-
cpu: [arm]
|
107 |
-
os: [android]
|
108 |
-
requiresBuild: true
|
109 |
-
dev: true
|
110 |
-
optional: true
|
111 |
-
|
112 |
-
/@esbuild/[email protected]:
|
113 |
-
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
|
114 |
-
engines: {node: '>=12'}
|
115 |
-
cpu: [x64]
|
116 |
-
os: [android]
|
117 |
-
requiresBuild: true
|
118 |
-
dev: true
|
119 |
-
optional: true
|
120 |
-
|
121 |
-
/@esbuild/[email protected]:
|
122 |
-
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
|
123 |
-
engines: {node: '>=12'}
|
124 |
-
cpu: [arm64]
|
125 |
-
os: [darwin]
|
126 |
-
requiresBuild: true
|
127 |
-
dev: true
|
128 |
-
optional: true
|
129 |
-
|
130 |
-
/@esbuild/[email protected]:
|
131 |
-
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
|
132 |
-
engines: {node: '>=12'}
|
133 |
-
cpu: [x64]
|
134 |
-
os: [darwin]
|
135 |
-
requiresBuild: true
|
136 |
-
dev: true
|
137 |
-
optional: true
|
138 |
-
|
139 |
-
/@esbuild/[email protected]:
|
140 |
-
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
|
141 |
-
engines: {node: '>=12'}
|
142 |
-
cpu: [arm64]
|
143 |
-
os: [freebsd]
|
144 |
-
requiresBuild: true
|
145 |
-
dev: true
|
146 |
-
optional: true
|
147 |
-
|
148 |
-
/@esbuild/[email protected]:
|
149 |
-
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
|
150 |
-
engines: {node: '>=12'}
|
151 |
-
cpu: [x64]
|
152 |
-
os: [freebsd]
|
153 |
-
requiresBuild: true
|
154 |
-
dev: true
|
155 |
-
optional: true
|
156 |
-
|
157 |
-
/@esbuild/[email protected]:
|
158 |
-
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
|
159 |
-
engines: {node: '>=12'}
|
160 |
-
cpu: [arm64]
|
161 |
-
os: [linux]
|
162 |
-
requiresBuild: true
|
163 |
-
dev: true
|
164 |
-
optional: true
|
165 |
-
|
166 |
-
/@esbuild/[email protected]:
|
167 |
-
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
|
168 |
-
engines: {node: '>=12'}
|
169 |
-
cpu: [arm]
|
170 |
-
os: [linux]
|
171 |
-
requiresBuild: true
|
172 |
-
dev: true
|
173 |
-
optional: true
|
174 |
-
|
175 |
-
/@esbuild/[email protected]:
|
176 |
-
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
|
177 |
-
engines: {node: '>=12'}
|
178 |
-
cpu: [ia32]
|
179 |
-
os: [linux]
|
180 |
-
requiresBuild: true
|
181 |
-
dev: true
|
182 |
-
optional: true
|
183 |
-
|
184 |
-
/@esbuild/[email protected]:
|
185 |
-
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
|
186 |
-
engines: {node: '>=12'}
|
187 |
-
cpu: [loong64]
|
188 |
-
os: [linux]
|
189 |
-
requiresBuild: true
|
190 |
-
dev: true
|
191 |
-
optional: true
|
192 |
-
|
193 |
-
/@esbuild/[email protected]:
|
194 |
-
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
|
195 |
-
engines: {node: '>=12'}
|
196 |
-
cpu: [mips64el]
|
197 |
-
os: [linux]
|
198 |
-
requiresBuild: true
|
199 |
-
dev: true
|
200 |
-
optional: true
|
201 |
-
|
202 |
-
/@esbuild/[email protected]:
|
203 |
-
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
|
204 |
-
engines: {node: '>=12'}
|
205 |
-
cpu: [ppc64]
|
206 |
-
os: [linux]
|
207 |
-
requiresBuild: true
|
208 |
-
dev: true
|
209 |
-
optional: true
|
210 |
-
|
211 |
-
/@esbuild/[email protected]:
|
212 |
-
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
|
213 |
-
engines: {node: '>=12'}
|
214 |
-
cpu: [riscv64]
|
215 |
-
os: [linux]
|
216 |
-
requiresBuild: true
|
217 |
-
dev: true
|
218 |
-
optional: true
|
219 |
-
|
220 |
-
/@esbuild/[email protected]:
|
221 |
-
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
|
222 |
-
engines: {node: '>=12'}
|
223 |
-
cpu: [s390x]
|
224 |
-
os: [linux]
|
225 |
-
requiresBuild: true
|
226 |
-
dev: true
|
227 |
-
optional: true
|
228 |
-
|
229 |
-
/@esbuild/[email protected]:
|
230 |
-
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
|
231 |
-
engines: {node: '>=12'}
|
232 |
-
cpu: [x64]
|
233 |
-
os: [linux]
|
234 |
-
requiresBuild: true
|
235 |
-
dev: true
|
236 |
-
optional: true
|
237 |
-
|
238 |
-
/@esbuild/[email protected]:
|
239 |
-
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
|
240 |
-
engines: {node: '>=12'}
|
241 |
-
cpu: [x64]
|
242 |
-
os: [netbsd]
|
243 |
-
requiresBuild: true
|
244 |
-
dev: true
|
245 |
-
optional: true
|
246 |
-
|
247 |
-
/@esbuild/[email protected]:
|
248 |
-
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
|
249 |
-
engines: {node: '>=12'}
|
250 |
-
cpu: [x64]
|
251 |
-
os: [openbsd]
|
252 |
-
requiresBuild: true
|
253 |
-
dev: true
|
254 |
-
optional: true
|
255 |
-
|
256 |
-
/@esbuild/[email protected]:
|
257 |
-
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
|
258 |
-
engines: {node: '>=12'}
|
259 |
-
cpu: [x64]
|
260 |
-
os: [sunos]
|
261 |
-
requiresBuild: true
|
262 |
-
dev: true
|
263 |
-
optional: true
|
264 |
-
|
265 |
-
/@esbuild/[email protected]:
|
266 |
-
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
|
267 |
-
engines: {node: '>=12'}
|
268 |
-
cpu: [arm64]
|
269 |
-
os: [win32]
|
270 |
-
requiresBuild: true
|
271 |
-
dev: true
|
272 |
-
optional: true
|
273 |
-
|
274 |
-
/@esbuild/[email protected]:
|
275 |
-
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
|
276 |
-
engines: {node: '>=12'}
|
277 |
-
cpu: [ia32]
|
278 |
-
os: [win32]
|
279 |
-
requiresBuild: true
|
280 |
-
dev: true
|
281 |
-
optional: true
|
282 |
-
|
283 |
-
/@esbuild/[email protected]:
|
284 |
-
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
|
285 |
-
engines: {node: '>=12'}
|
286 |
-
cpu: [x64]
|
287 |
-
os: [win32]
|
288 |
-
requiresBuild: true
|
289 |
-
dev: true
|
290 |
-
optional: true
|
291 |
-
|
292 |
-
/@huggingface/[email protected]:
|
293 |
-
resolution: {integrity: sha512-uHb4aFkJDoGfLeRHfFTjkI36Z8IV6Z1c+KzhMDqUSC56opyr7Mn1Nsx7Rri/C7KDwROhQfBp/fOOqqjTzn6Cgg==}
|
294 |
-
engines: {node: '>=18'}
|
295 |
-
dependencies:
|
296 |
-
'@huggingface/tasks': 0.10.22
|
297 |
-
hash-wasm: 4.11.0
|
298 |
-
dev: false
|
299 |
-
|
300 |
-
/@huggingface/[email protected]:
|
301 |
-
resolution: {integrity: sha512-u7Fn637Q3f7nUB1tajM4CgzhvoFQkOQr5W5Fm+2wT9ETgGoLBh25BLlYPTJRjAd2WY01s71v0lqAwNvHHCc3mg==}
|
302 |
-
engines: {node: '>=18'}
|
303 |
-
dependencies:
|
304 |
-
'@huggingface/tasks': 0.10.22
|
305 |
-
dev: false
|
306 |
-
|
307 |
-
/@huggingface/[email protected]:
|
308 |
-
resolution: {integrity: sha512-sCtp+A6sq6NXoUU7NXuXWoVNNjKddk1GTQIh3cJ6illF8S4zmFoerCVRvFf19BdgICGvF+RVZiv9sGGK9KRDTg==}
|
309 |
-
dev: false
|
310 |
-
|
311 |
-
/@isaacs/[email protected]:
|
312 |
-
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
|
313 |
-
engines: {node: '>=12'}
|
314 |
-
dependencies:
|
315 |
-
string-width: 5.1.2
|
316 |
-
string-width-cjs: /[email protected]
|
317 |
-
strip-ansi: 7.1.0
|
318 |
-
strip-ansi-cjs: /[email protected]
|
319 |
-
wrap-ansi: 8.1.0
|
320 |
-
wrap-ansi-cjs: /[email protected]
|
321 |
-
|
322 |
-
/@jridgewell/[email protected]:
|
323 |
-
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
|
324 |
-
engines: {node: '>=6.0.0'}
|
325 |
-
dependencies:
|
326 |
-
'@jridgewell/set-array': 1.2.1
|
327 |
-
'@jridgewell/sourcemap-codec': 1.4.15
|
328 |
-
'@jridgewell/trace-mapping': 0.3.25
|
329 |
-
|
330 |
-
/@jridgewell/[email protected]:
|
331 |
-
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
332 |
-
engines: {node: '>=6.0.0'}
|
333 |
-
|
334 |
-
/@jridgewell/[email protected]:
|
335 |
-
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
|
336 |
-
engines: {node: '>=6.0.0'}
|
337 |
-
|
338 |
-
/@jridgewell/[email protected]:
|
339 |
-
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
|
340 |
-
|
341 |
-
/@jridgewell/[email protected]:
|
342 |
-
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
|
343 |
-
dependencies:
|
344 |
-
'@jridgewell/resolve-uri': 3.1.2
|
345 |
-
'@jridgewell/sourcemap-codec': 1.4.15
|
346 |
-
|
347 |
-
/@nodelib/[email protected]:
|
348 |
-
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
349 |
-
engines: {node: '>= 8'}
|
350 |
-
dependencies:
|
351 |
-
'@nodelib/fs.stat': 2.0.5
|
352 |
-
run-parallel: 1.2.0
|
353 |
-
|
354 |
-
/@nodelib/[email protected]:
|
355 |
-
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
|
356 |
-
engines: {node: '>= 8'}
|
357 |
-
|
358 |
-
/@nodelib/[email protected]:
|
359 |
-
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
360 |
-
engines: {node: '>= 8'}
|
361 |
-
dependencies:
|
362 |
-
'@nodelib/fs.scandir': 2.1.5
|
363 |
-
fastq: 1.17.1
|
364 |
-
|
365 |
-
/@pkgjs/[email protected]:
|
366 |
-
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
|
367 |
-
engines: {node: '>=14'}
|
368 |
-
requiresBuild: true
|
369 |
-
optional: true
|
370 |
-
|
371 |
-
/@polka/[email protected]:
|
372 |
-
resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
|
373 |
-
dev: true
|
374 |
-
|
375 |
-
/@rollup/[email protected]([email protected]):
|
376 |
-
resolution: {integrity: sha512-UnsKoZK6/aGIH6AdkptXhNvhaqftcjq3zZdT+LY5Ftms6JR06nADcDsYp5hTU9E2lbJUEOhdlY5J4DNTneM+jQ==}
|
377 |
-
engines: {node: '>=16.0.0 || 14 >= 14.17'}
|
378 |
-
peerDependencies:
|
379 |
-
rollup: ^2.68.0||^3.0.0||^4.0.0
|
380 |
-
peerDependenciesMeta:
|
381 |
-
rollup:
|
382 |
-
optional: true
|
383 |
-
dependencies:
|
384 |
-
'@rollup/pluginutils': 5.1.0([email protected])
|
385 |
-
commondir: 1.0.1
|
386 |
-
estree-walker: 2.0.2
|
387 |
-
glob: 10.4.2
|
388 |
-
is-reference: 1.2.1
|
389 |
-
magic-string: 0.30.10
|
390 |
-
rollup: 4.18.0
|
391 |
-
dev: true
|
392 |
-
|
393 |
-
/@rollup/[email protected]([email protected]):
|
394 |
-
resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==}
|
395 |
-
engines: {node: '>=14.0.0'}
|
396 |
-
peerDependencies:
|
397 |
-
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
|
398 |
-
peerDependenciesMeta:
|
399 |
-
rollup:
|
400 |
-
optional: true
|
401 |
-
dependencies:
|
402 |
-
'@rollup/pluginutils': 5.1.0([email protected])
|
403 |
-
rollup: 4.18.0
|
404 |
-
dev: true
|
405 |
-
|
406 |
-
/@rollup/[email protected]([email protected]):
|
407 |
-
resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==}
|
408 |
-
engines: {node: '>=14.0.0'}
|
409 |
-
peerDependencies:
|
410 |
-
rollup: ^2.78.0||^3.0.0||^4.0.0
|
411 |
-
peerDependenciesMeta:
|
412 |
-
rollup:
|
413 |
-
optional: true
|
414 |
-
dependencies:
|
415 |
-
'@rollup/pluginutils': 5.1.0([email protected])
|
416 |
-
'@types/resolve': 1.20.2
|
417 |
-
deepmerge: 4.3.1
|
418 |
-
is-builtin-module: 3.2.1
|
419 |
-
is-module: 1.0.0
|
420 |
-
resolve: 1.22.8
|
421 |
-
rollup: 4.18.0
|
422 |
-
dev: true
|
423 |
-
|
424 |
-
/@rollup/[email protected]([email protected]):
|
425 |
-
resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
|
426 |
-
engines: {node: '>=14.0.0'}
|
427 |
-
peerDependencies:
|
428 |
-
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
|
429 |
-
peerDependenciesMeta:
|
430 |
-
rollup:
|
431 |
-
optional: true
|
432 |
-
dependencies:
|
433 |
-
'@types/estree': 1.0.5
|
434 |
-
estree-walker: 2.0.2
|
435 |
-
picomatch: 2.3.1
|
436 |
-
rollup: 4.18.0
|
437 |
-
dev: true
|
438 |
-
|
439 |
-
/@rollup/[email protected]:
|
440 |
-
resolution: {integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==}
|
441 |
-
cpu: [arm]
|
442 |
-
os: [android]
|
443 |
-
requiresBuild: true
|
444 |
-
dev: true
|
445 |
-
optional: true
|
446 |
-
|
447 |
-
/@rollup/[email protected]:
|
448 |
-
resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==}
|
449 |
-
cpu: [arm64]
|
450 |
-
os: [android]
|
451 |
-
requiresBuild: true
|
452 |
-
dev: true
|
453 |
-
optional: true
|
454 |
-
|
455 |
-
/@rollup/[email protected]:
|
456 |
-
resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==}
|
457 |
-
cpu: [arm64]
|
458 |
-
os: [darwin]
|
459 |
-
requiresBuild: true
|
460 |
-
dev: true
|
461 |
-
optional: true
|
462 |
-
|
463 |
-
/@rollup/[email protected]:
|
464 |
-
resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==}
|
465 |
-
cpu: [x64]
|
466 |
-
os: [darwin]
|
467 |
-
requiresBuild: true
|
468 |
-
dev: true
|
469 |
-
optional: true
|
470 |
-
|
471 |
-
/@rollup/[email protected]:
|
472 |
-
resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==}
|
473 |
-
cpu: [arm]
|
474 |
-
os: [linux]
|
475 |
-
requiresBuild: true
|
476 |
-
dev: true
|
477 |
-
optional: true
|
478 |
-
|
479 |
-
/@rollup/[email protected]:
|
480 |
-
resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==}
|
481 |
-
cpu: [arm]
|
482 |
-
os: [linux]
|
483 |
-
requiresBuild: true
|
484 |
-
dev: true
|
485 |
-
optional: true
|
486 |
-
|
487 |
-
/@rollup/[email protected]:
|
488 |
-
resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==}
|
489 |
-
cpu: [arm64]
|
490 |
-
os: [linux]
|
491 |
-
requiresBuild: true
|
492 |
-
dev: true
|
493 |
-
optional: true
|
494 |
-
|
495 |
-
/@rollup/[email protected]:
|
496 |
-
resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==}
|
497 |
-
cpu: [arm64]
|
498 |
-
os: [linux]
|
499 |
-
requiresBuild: true
|
500 |
-
dev: true
|
501 |
-
optional: true
|
502 |
-
|
503 |
-
/@rollup/[email protected]:
|
504 |
-
resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==}
|
505 |
-
cpu: [ppc64]
|
506 |
-
os: [linux]
|
507 |
-
requiresBuild: true
|
508 |
-
dev: true
|
509 |
-
optional: true
|
510 |
-
|
511 |
-
/@rollup/[email protected]:
|
512 |
-
resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==}
|
513 |
-
cpu: [riscv64]
|
514 |
-
os: [linux]
|
515 |
-
requiresBuild: true
|
516 |
-
dev: true
|
517 |
-
optional: true
|
518 |
-
|
519 |
-
/@rollup/[email protected]:
|
520 |
-
resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==}
|
521 |
-
cpu: [s390x]
|
522 |
-
os: [linux]
|
523 |
-
requiresBuild: true
|
524 |
-
dev: true
|
525 |
-
optional: true
|
526 |
-
|
527 |
-
/@rollup/[email protected]:
|
528 |
-
resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==}
|
529 |
-
cpu: [x64]
|
530 |
-
os: [linux]
|
531 |
-
requiresBuild: true
|
532 |
-
dev: true
|
533 |
-
optional: true
|
534 |
-
|
535 |
-
/@rollup/[email protected]:
|
536 |
-
resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==}
|
537 |
-
cpu: [x64]
|
538 |
-
os: [linux]
|
539 |
-
requiresBuild: true
|
540 |
-
dev: true
|
541 |
-
optional: true
|
542 |
-
|
543 |
-
/@rollup/[email protected]:
|
544 |
-
resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==}
|
545 |
-
cpu: [arm64]
|
546 |
-
os: [win32]
|
547 |
-
requiresBuild: true
|
548 |
-
dev: true
|
549 |
-
optional: true
|
550 |
-
|
551 |
-
/@rollup/[email protected]:
|
552 |
-
resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==}
|
553 |
-
cpu: [ia32]
|
554 |
-
os: [win32]
|
555 |
-
requiresBuild: true
|
556 |
-
dev: true
|
557 |
-
optional: true
|
558 |
-
|
559 |
-
/@rollup/[email protected]:
|
560 |
-
resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==}
|
561 |
-
cpu: [x64]
|
562 |
-
os: [win32]
|
563 |
-
requiresBuild: true
|
564 |
-
dev: true
|
565 |
-
optional: true
|
566 |
-
|
567 |
-
/@sveltejs/[email protected](@sveltejs/[email protected]):
|
568 |
-
resolution: {integrity: sha512-Mso5xPCA8zgcKrv+QioVlqMZkyUQ5MjDJiEPuG/Z7cV/5tmwV7LmcVWk5tZ+H0NCOV1x12AsoSpt/CwFwuVXMA==}
|
569 |
-
peerDependencies:
|
570 |
-
'@sveltejs/kit': ^2.0.0
|
571 |
-
dependencies:
|
572 |
-
'@sveltejs/kit': 2.5.17(@sveltejs/[email protected])([email protected])([email protected])
|
573 |
-
import-meta-resolve: 4.1.0
|
574 |
-
dev: true
|
575 |
-
|
576 |
-
/@sveltejs/[email protected](@sveltejs/[email protected]):
|
577 |
-
resolution: {integrity: sha512-HVZoei2078XSyPmvdTHE03VXDUD0ytTvMuMHMQP0j6zX4nPDpCcKrgvU7baEblMeCCMdM/shQvstFxOJPQKlUQ==}
|
578 |
-
peerDependencies:
|
579 |
-
'@sveltejs/kit': ^2.4.0
|
580 |
-
dependencies:
|
581 |
-
'@rollup/plugin-commonjs': 26.0.1([email protected])
|
582 |
-
'@rollup/plugin-json': 6.1.0([email protected])
|
583 |
-
'@rollup/plugin-node-resolve': 15.2.3([email protected])
|
584 |
-
'@sveltejs/kit': 2.5.17(@sveltejs/[email protected])([email protected])([email protected])
|
585 |
-
rollup: 4.18.0
|
586 |
-
dev: true
|
587 |
-
|
588 |
-
/@sveltejs/[email protected](@sveltejs/[email protected])([email protected])([email protected]):
|
589 |
-
resolution: {integrity: sha512-wiADwq7VreR3ctOyxilAZOfPz3Jiy2IIp2C8gfafhTdQaVuGIHllfqQm8dXZKADymKr3uShxzgLZFT+a+CM4kA==}
|
590 |
-
engines: {node: '>=18.13'}
|
591 |
-
hasBin: true
|
592 |
-
requiresBuild: true
|
593 |
-
peerDependencies:
|
594 |
-
'@sveltejs/vite-plugin-svelte': ^3.0.0
|
595 |
-
svelte: ^4.0.0 || ^5.0.0-next.0
|
596 |
-
vite: ^5.0.3
|
597 |
-
dependencies:
|
598 |
-
'@sveltejs/vite-plugin-svelte': 3.1.1([email protected])([email protected])
|
599 |
-
'@types/cookie': 0.6.0
|
600 |
-
cookie: 0.6.0
|
601 |
-
devalue: 5.0.0
|
602 |
-
esm-env: 1.0.0
|
603 |
-
import-meta-resolve: 4.1.0
|
604 |
-
kleur: 4.1.5
|
605 |
-
magic-string: 0.30.10
|
606 |
-
mrmime: 2.0.0
|
607 |
-
sade: 1.8.1
|
608 |
-
set-cookie-parser: 2.6.0
|
609 |
-
sirv: 2.0.4
|
610 |
-
svelte: 4.2.18
|
611 |
-
tiny-glob: 0.2.9
|
612 |
-
vite: 5.3.1
|
613 |
-
dev: true
|
614 |
-
|
615 |
-
/@sveltejs/[email protected](@sveltejs/[email protected])([email protected])([email protected]):
|
616 |
-
resolution: {integrity: sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==}
|
617 |
-
engines: {node: ^18.0.0 || >=20}
|
618 |
-
peerDependencies:
|
619 |
-
'@sveltejs/vite-plugin-svelte': ^3.0.0
|
620 |
-
svelte: ^4.0.0 || ^5.0.0-next.0
|
621 |
-
vite: ^5.0.0
|
622 |
-
dependencies:
|
623 |
-
'@sveltejs/vite-plugin-svelte': 3.1.1([email protected])([email protected])
|
624 |
-
debug: 4.3.5
|
625 |
-
svelte: 4.2.18
|
626 |
-
vite: 5.3.1
|
627 |
-
transitivePeerDependencies:
|
628 |
-
- supports-color
|
629 |
-
dev: true
|
630 |
-
|
631 |
-
/@sveltejs/[email protected]([email protected])([email protected]):
|
632 |
-
resolution: {integrity: sha512-rimpFEAboBBHIlzISibg94iP09k/KYdHgVhJlcsTfn7KMBhc70jFX/GRWkRdFCc2fdnk+4+Bdfej23cMDnJS6A==}
|
633 |
-
engines: {node: ^18.0.0 || >=20}
|
634 |
-
peerDependencies:
|
635 |
-
svelte: ^4.0.0 || ^5.0.0-next.0
|
636 |
-
vite: ^5.0.0
|
637 |
-
dependencies:
|
638 |
-
'@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/[email protected])([email protected])([email protected])
|
639 |
-
debug: 4.3.5
|
640 |
-
deepmerge: 4.3.1
|
641 |
-
kleur: 4.1.5
|
642 |
-
magic-string: 0.30.10
|
643 |
-
svelte: 4.2.18
|
644 |
-
svelte-hmr: 0.16.0([email protected])
|
645 |
-
vite: 5.3.1
|
646 |
-
vitefu: 0.2.5([email protected])
|
647 |
-
transitivePeerDependencies:
|
648 |
-
- supports-color
|
649 |
-
dev: true
|
650 |
-
|
651 |
-
/@tailwindcss/[email protected]([email protected]):
|
652 |
-
resolution: {integrity: sha512-p18dswChx6WnTSaJCSGx6lTmrGzNNvm2FtXmiO6AuA1V4U5REyoqwmT6kgAsIMdjo07QdAfYXHJ4hnMtfHzWgA==}
|
653 |
-
peerDependencies:
|
654 |
-
tailwindcss: '>=3.2.0'
|
655 |
-
dependencies:
|
656 |
-
tailwindcss: 3.4.4
|
657 |
-
dev: false
|
658 |
-
|
659 |
-
/@types/[email protected]:
|
660 |
-
resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
|
661 |
-
dev: true
|
662 |
-
|
663 |
-
/@types/[email protected]:
|
664 |
-
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
|
665 |
-
dev: true
|
666 |
-
|
667 |
-
/@types/[email protected]:
|
668 |
-
resolution: {integrity: sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==}
|
669 |
-
dev: true
|
670 |
-
|
671 |
-
/@types/[email protected]:
|
672 |
-
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
|
673 |
-
dev: true
|
674 |
-
|
675 | |
676 |
-
resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==}
|
677 |
-
engines: {node: '>=0.4.0'}
|
678 |
-
hasBin: true
|
679 |
-
dev: true
|
680 |
-
|
681 | |
682 |
-
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
683 |
-
engines: {node: '>=8'}
|
684 |
-
|
685 | |
686 |
-
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
|
687 |
-
engines: {node: '>=12'}
|
688 |
-
|
689 | |
690 |
-
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
691 |
-
engines: {node: '>=8'}
|
692 |
-
dependencies:
|
693 |
-
color-convert: 2.0.1
|
694 |
-
|
695 | |
696 |
-
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
|
697 |
-
engines: {node: '>=12'}
|
698 |
-
|
699 | |
700 |
-
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
|
701 |
-
|
702 | |
703 |
-
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
|
704 |
-
engines: {node: '>= 8'}
|
705 |
-
dependencies:
|
706 |
-
normalize-path: 3.0.0
|
707 |
-
picomatch: 2.3.1
|
708 |
-
|
709 | |
710 |
-
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
|
711 |
-
|
712 | |
713 |
-
resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
|
714 |
-
dependencies:
|
715 |
-
dequal: 2.0.3
|
716 |
-
dev: true
|
717 |
-
|
718 | |
719 |
-
resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
|
720 |
-
engines: {node: ^10 || ^12 || >=14}
|
721 |
-
hasBin: true
|
722 |
-
peerDependencies:
|
723 |
-
postcss: ^8.1.0
|
724 |
-
dependencies:
|
725 |
-
browserslist: 4.23.1
|
726 |
-
caniuse-lite: 1.0.30001638
|
727 |
-
fraction.js: 4.3.7
|
728 |
-
normalize-range: 0.1.2
|
729 |
-
picocolors: 1.0.1
|
730 |
-
postcss: 8.4.38
|
731 |
-
postcss-value-parser: 4.2.0
|
732 |
-
dev: true
|
733 |
-
|
734 | |
735 |
-
resolution: {integrity: sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==}
|
736 |
-
dependencies:
|
737 |
-
dequal: 2.0.3
|
738 |
-
dev: true
|
739 |
-
|
740 | |
741 |
-
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
742 |
-
|
743 | |
744 |
-
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
|
745 |
-
engines: {node: '>=8'}
|
746 |
-
|
747 | |
748 |
-
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
749 |
-
dependencies:
|
750 |
-
balanced-match: 1.0.2
|
751 |
-
concat-map: 0.0.1
|
752 |
-
dev: true
|
753 |
-
|
754 | |
755 |
-
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
|
756 |
-
dependencies:
|
757 |
-
balanced-match: 1.0.2
|
758 |
-
|
759 | |
760 |
-
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
761 |
-
engines: {node: '>=8'}
|
762 |
-
dependencies:
|
763 |
-
fill-range: 7.1.1
|
764 |
-
|
765 | |
766 |
-
resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==}
|
767 |
-
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
768 |
-
hasBin: true
|
769 |
-
dependencies:
|
770 |
-
caniuse-lite: 1.0.30001638
|
771 |
-
electron-to-chromium: 1.4.812
|
772 |
-
node-releases: 2.0.14
|
773 |
-
update-browserslist-db: 1.0.16([email protected])
|
774 |
-
dev: true
|
775 |
-
|
776 | |
777 |
-
resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
|
778 |
-
engines: {node: '>=8.0.0'}
|
779 |
-
dev: true
|
780 |
-
|
781 | |
782 |
-
resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
|
783 |
-
engines: {node: '>=6'}
|
784 |
-
dev: true
|
785 |
-
|
786 | |
787 |
-
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
|
788 |
-
engines: {node: '>= 6'}
|
789 |
-
|
790 | |
791 |
-
resolution: {integrity: sha512-5SuJUJ7cZnhPpeLHaH0c/HPAnAHZvS6ElWyHK9GSIbVOQABLzowiI2pjmpvZ1WEbkyz46iFd4UXlOHR5SqgfMQ==}
|
792 |
-
dev: true
|
793 |
-
|
794 | |
795 |
-
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
796 |
-
engines: {node: '>= 8.10.0'}
|
797 |
-
dependencies:
|
798 |
-
anymatch: 3.1.3
|
799 |
-
braces: 3.0.3
|
800 |
-
glob-parent: 5.1.2
|
801 |
-
is-binary-path: 2.1.0
|
802 |
-
is-glob: 4.0.3
|
803 |
-
normalize-path: 3.0.0
|
804 |
-
readdirp: 3.6.0
|
805 |
-
optionalDependencies:
|
806 |
-
fsevents: 2.3.3
|
807 |
-
|
808 | |
809 |
-
resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==}
|
810 |
-
dependencies:
|
811 |
-
'@jridgewell/sourcemap-codec': 1.4.15
|
812 |
-
'@types/estree': 1.0.5
|
813 |
-
acorn: 8.12.0
|
814 |
-
estree-walker: 3.0.3
|
815 |
-
periscopic: 3.1.0
|
816 |
-
dev: true
|
817 |
-
|
818 | |
819 |
-
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
820 |
-
engines: {node: '>=7.0.0'}
|
821 |
-
dependencies:
|
822 |
-
color-name: 1.1.4
|
823 |
-
|
824 | |
825 |
-
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
826 |
-
|
827 | |
828 |
-
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
|
829 |
-
engines: {node: '>= 6'}
|
830 |
-
|
831 | |
832 |
-
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
|
833 |
-
dev: true
|
834 |
-
|
835 | |
836 |
-
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
837 |
-
dev: true
|
838 |
-
|
839 | |
840 |
-
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
|
841 |
-
engines: {node: '>= 0.6'}
|
842 |
-
dev: true
|
843 |
-
|
844 | |
845 |
-
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
|
846 |
-
engines: {node: '>= 8'}
|
847 |
-
dependencies:
|
848 |
-
path-key: 3.1.1
|
849 |
-
shebang-command: 2.0.0
|
850 |
-
which: 2.0.2
|
851 |
-
|
852 | |
853 |
-
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
|
854 |
-
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
|
855 |
-
dependencies:
|
856 |
-
mdn-data: 2.0.30
|
857 |
-
source-map-js: 1.2.0
|
858 |
-
dev: true
|
859 |
-
|
860 | |
861 |
-
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
862 |
-
engines: {node: '>=4'}
|
863 |
-
hasBin: true
|
864 |
-
|
865 | |
866 |
-
resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
|
867 |
-
engines: {node: '>=6.0'}
|
868 |
-
peerDependencies:
|
869 |
-
supports-color: '*'
|
870 |
-
peerDependenciesMeta:
|
871 |
-
supports-color:
|
872 |
-
optional: true
|
873 |
-
dependencies:
|
874 |
-
ms: 2.1.2
|
875 |
-
dev: true
|
876 |
-
|
877 | |
878 |
-
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
|
879 |
-
engines: {node: '>=0.10.0'}
|
880 |
-
dev: true
|
881 |
-
|
882 | |
883 |
-
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
|
884 |
-
engines: {node: '>=6'}
|
885 |
-
dev: true
|
886 |
-
|
887 | |
888 |
-
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
|
889 |
-
engines: {node: '>=8'}
|
890 |
-
dev: true
|
891 |
-
|
892 | |
893 |
-
resolution: {integrity: sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==}
|
894 |
-
dev: true
|
895 |
-
|
896 | |
897 |
-
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
|
898 |
-
|
899 | |
900 |
-
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
|
901 |
-
|
902 | |
903 |
-
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
|
904 |
-
|
905 | |
906 |
-
resolution: {integrity: sha512-7L8fC2Ey/b6SePDFKR2zHAy4mbdp1/38Yk5TsARO66W3hC5KEaeKMMHoxwtuH+jcu2AYLSn9QX04i95t6Fl1Hg==}
|
907 |
-
dev: true
|
908 |
-
|
909 | |
910 |
-
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
911 |
-
|
912 | |
913 |
-
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
|
914 |
-
|
915 | |
916 |
-
resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==}
|
917 |
-
dev: true
|
918 |
-
|
919 | |
920 |
-
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
|
921 |
-
engines: {node: '>=12'}
|
922 |
-
hasBin: true
|
923 |
-
requiresBuild: true
|
924 |
-
optionalDependencies:
|
925 |
-
'@esbuild/aix-ppc64': 0.21.5
|
926 |
-
'@esbuild/android-arm': 0.21.5
|
927 |
-
'@esbuild/android-arm64': 0.21.5
|
928 |
-
'@esbuild/android-x64': 0.21.5
|
929 |
-
'@esbuild/darwin-arm64': 0.21.5
|
930 |
-
'@esbuild/darwin-x64': 0.21.5
|
931 |
-
'@esbuild/freebsd-arm64': 0.21.5
|
932 |
-
'@esbuild/freebsd-x64': 0.21.5
|
933 |
-
'@esbuild/linux-arm': 0.21.5
|
934 |
-
'@esbuild/linux-arm64': 0.21.5
|
935 |
-
'@esbuild/linux-ia32': 0.21.5
|
936 |
-
'@esbuild/linux-loong64': 0.21.5
|
937 |
-
'@esbuild/linux-mips64el': 0.21.5
|
938 |
-
'@esbuild/linux-ppc64': 0.21.5
|
939 |
-
'@esbuild/linux-riscv64': 0.21.5
|
940 |
-
'@esbuild/linux-s390x': 0.21.5
|
941 |
-
'@esbuild/linux-x64': 0.21.5
|
942 |
-
'@esbuild/netbsd-x64': 0.21.5
|
943 |
-
'@esbuild/openbsd-x64': 0.21.5
|
944 |
-
'@esbuild/sunos-x64': 0.21.5
|
945 |
-
'@esbuild/win32-arm64': 0.21.5
|
946 |
-
'@esbuild/win32-ia32': 0.21.5
|
947 |
-
'@esbuild/win32-x64': 0.21.5
|
948 |
-
dev: true
|
949 |
-
|
950 | |
951 |
-
resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
|
952 |
-
engines: {node: '>=6'}
|
953 |
-
dev: true
|
954 |
-
|
955 | |
956 |
-
resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==}
|
957 |
-
dev: true
|
958 |
-
|
959 | |
960 |
-
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
|
961 |
-
dev: true
|
962 |
-
|
963 | |
964 |
-
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
|
965 |
-
dependencies:
|
966 |
-
'@types/estree': 1.0.5
|
967 |
-
dev: true
|
968 |
-
|
969 | |
970 |
-
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
|
971 |
-
engines: {node: '>=8.6.0'}
|
972 |
-
dependencies:
|
973 |
-
'@nodelib/fs.stat': 2.0.5
|
974 |
-
'@nodelib/fs.walk': 1.2.8
|
975 |
-
glob-parent: 5.1.2
|
976 |
-
merge2: 1.4.1
|
977 |
-
micromatch: 4.0.7
|
978 |
-
|
979 | |
980 |
-
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
|
981 |
-
dependencies:
|
982 |
-
reusify: 1.0.4
|
983 |
-
|
984 | |
985 |
-
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
|
986 |
-
engines: {node: '>=8'}
|
987 |
-
dependencies:
|
988 |
-
to-regex-range: 5.0.1
|
989 |
-
|
990 | |
991 |
-
resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==}
|
992 |
-
engines: {node: '>=14'}
|
993 |
-
dependencies:
|
994 |
-
cross-spawn: 7.0.3
|
995 |
-
signal-exit: 4.1.0
|
996 |
-
|
997 | |
998 |
-
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
|
999 |
-
dev: true
|
1000 |
-
|
1001 | |
1002 |
-
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
|
1003 |
-
dev: true
|
1004 |
-
|
1005 | |
1006 |
-
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
1007 |
-
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
1008 |
-
os: [darwin]
|
1009 |
-
requiresBuild: true
|
1010 |
-
optional: true
|
1011 |
-
|
1012 | |
1013 |
-
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
1014 |
-
|
1015 | |
1016 |
-
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
1017 |
-
engines: {node: '>= 6'}
|
1018 |
-
dependencies:
|
1019 |
-
is-glob: 4.0.3
|
1020 |
-
|
1021 | |
1022 |
-
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
1023 |
-
engines: {node: '>=10.13.0'}
|
1024 |
-
dependencies:
|
1025 |
-
is-glob: 4.0.3
|
1026 |
-
|
1027 | |
1028 |
-
resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==}
|
1029 |
-
engines: {node: '>=16 || 14 >=14.18'}
|
1030 |
-
hasBin: true
|
1031 |
-
dependencies:
|
1032 |
-
foreground-child: 3.2.1
|
1033 |
-
jackspeak: 3.4.0
|
1034 |
-
minimatch: 9.0.5
|
1035 |
-
minipass: 7.1.2
|
1036 |
-
package-json-from-dist: 1.0.0
|
1037 |
-
path-scurry: 1.11.1
|
1038 |
-
|
1039 | |
1040 |
-
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
|
1041 |
-
deprecated: Glob versions prior to v9 are no longer supported
|
1042 |
-
dependencies:
|
1043 |
-
fs.realpath: 1.0.0
|
1044 |
-
inflight: 1.0.6
|
1045 |
-
inherits: 2.0.4
|
1046 |
-
minimatch: 3.1.2
|
1047 |
-
once: 1.4.0
|
1048 |
-
path-is-absolute: 1.0.1
|
1049 |
-
dev: true
|
1050 |
-
|
1051 | |
1052 |
-
resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
|
1053 |
-
dev: true
|
1054 |
-
|
1055 | |
1056 |
-
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
|
1057 |
-
dev: true
|
1058 |
-
|
1059 | |
1060 |
-
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
1061 |
-
dev: true
|
1062 |
-
|
1063 | |
1064 |
-
resolution: {integrity: sha512-HVusNXlVqHe0fzIzdQOGolnFN6mX/fqcrSAOcTBXdvzrXVHwTz11vXeKRmkR5gTuwVpvHZEIyKoePDvuAR+XwQ==}
|
1065 |
-
dev: false
|
1066 |
-
|
1067 | |
1068 |
-
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
|
1069 |
-
engines: {node: '>= 0.4'}
|
1070 |
-
dependencies:
|
1071 |
-
function-bind: 1.1.2
|
1072 |
-
|
1073 | |
1074 |
-
resolution: {integrity: sha512-SYVnVFswQER+zu1laSya563s+F8VDGt7o35d4utbamowvUNLLMovFqwCLSocpZTz3MgaSRA1IbqRWZv97dtErQ==}
|
1075 |
-
engines: {node: '>=12.0.0'}
|
1076 |
-
dev: true
|
1077 |
-
|
1078 | |
1079 |
-
resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
|
1080 |
-
dev: true
|
1081 |
-
|
1082 | |
1083 |
-
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
|
1084 |
-
deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
|
1085 |
-
dependencies:
|
1086 |
-
once: 1.4.0
|
1087 |
-
wrappy: 1.0.2
|
1088 |
-
dev: true
|
1089 |
-
|
1090 | |
1091 |
-
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
1092 |
-
dev: true
|
1093 |
-
|
1094 | |
1095 |
-
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
1096 |
-
engines: {node: '>=8'}
|
1097 |
-
dependencies:
|
1098 |
-
binary-extensions: 2.3.0
|
1099 |
-
|
1100 | |
1101 |
-
resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
|
1102 |
-
engines: {node: '>=6'}
|
1103 |
-
dependencies:
|
1104 |
-
builtin-modules: 3.3.0
|
1105 |
-
dev: true
|
1106 |
-
|
1107 | |
1108 |
-
resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==}
|
1109 |
-
engines: {node: '>= 0.4'}
|
1110 |
-
dependencies:
|
1111 |
-
hasown: 2.0.2
|
1112 |
-
|
1113 | |
1114 |
-
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
1115 |
-
engines: {node: '>=0.10.0'}
|
1116 |
-
|
1117 | |
1118 |
-
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
|
1119 |
-
engines: {node: '>=8'}
|
1120 |
-
|
1121 | |
1122 |
-
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
1123 |
-
engines: {node: '>=0.10.0'}
|
1124 |
-
dependencies:
|
1125 |
-
is-extglob: 2.1.1
|
1126 |
-
|
1127 | |
1128 |
-
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
|
1129 |
-
dev: true
|
1130 |
-
|
1131 | |
1132 |
-
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
1133 |
-
engines: {node: '>=0.12.0'}
|
1134 |
-
|
1135 | |
1136 |
-
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
|
1137 |
-
dependencies:
|
1138 |
-
'@types/estree': 1.0.5
|
1139 |
-
dev: true
|
1140 |
-
|
1141 | |
1142 |
-
resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
|
1143 |
-
dependencies:
|
1144 |
-
'@types/estree': 1.0.5
|
1145 |
-
dev: true
|
1146 |
-
|
1147 | |
1148 |
-
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
1149 |
-
|
1150 | |
1151 |
-
resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==}
|
1152 |
-
engines: {node: '>=14'}
|
1153 |
-
dependencies:
|
1154 |
-
'@isaacs/cliui': 8.0.2
|
1155 |
-
optionalDependencies:
|
1156 |
-
'@pkgjs/parseargs': 0.11.0
|
1157 |
-
|
1158 | |
1159 |
-
resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
|
1160 |
-
hasBin: true
|
1161 |
-
|
1162 | |
1163 |
-
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
|
1164 |
-
engines: {node: '>=6'}
|
1165 |
-
dev: true
|
1166 |
-
|
1167 | |
1168 |
-
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
|
1169 |
-
engines: {node: '>=10'}
|
1170 |
-
|
1171 | |
1172 |
-
resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
|
1173 |
-
engines: {node: '>=14'}
|
1174 |
-
|
1175 | |
1176 |
-
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
1177 |
-
|
1178 | |
1179 |
-
resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==}
|
1180 |
-
dev: true
|
1181 |
-
|
1182 | |
1183 |
-
resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==}
|
1184 |
-
engines: {node: 14 || >=16.14}
|
1185 |
-
|
1186 | |
1187 |
-
resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
|
1188 |
-
dependencies:
|
1189 |
-
'@jridgewell/sourcemap-codec': 1.4.15
|
1190 |
-
dev: true
|
1191 |
-
|
1192 | |
1193 |
-
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
|
1194 |
-
dev: true
|
1195 |
-
|
1196 | |
1197 |
-
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
1198 |
-
engines: {node: '>= 8'}
|
1199 |
-
|
1200 | |
1201 |
-
resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
|
1202 |
-
engines: {node: '>=8.6'}
|
1203 |
-
dependencies:
|
1204 |
-
braces: 3.0.3
|
1205 |
-
picomatch: 2.3.1
|
1206 |
-
|
1207 | |
1208 |
-
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
|
1209 |
-
engines: {node: '>=4'}
|
1210 |
-
dev: true
|
1211 |
-
|
1212 | |
1213 |
-
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
1214 |
-
dependencies:
|
1215 |
-
brace-expansion: 1.1.11
|
1216 |
-
dev: true
|
1217 |
-
|
1218 | |
1219 |
-
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
|
1220 |
-
engines: {node: '>=16 || 14 >=14.17'}
|
1221 |
-
dependencies:
|
1222 |
-
brace-expansion: 2.0.1
|
1223 |
-
|
1224 | |
1225 |
-
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
|
1226 |
-
dev: true
|
1227 |
-
|
1228 | |
1229 |
-
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
|
1230 |
-
engines: {node: '>=16 || 14 >=14.17'}
|
1231 |
-
|
1232 | |
1233 |
-
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
|
1234 |
-
hasBin: true
|
1235 |
-
dependencies:
|
1236 |
-
minimist: 1.2.8
|
1237 |
-
dev: true
|
1238 |
-
|
1239 | |
1240 |
-
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
|
1241 |
-
engines: {node: '>=4'}
|
1242 |
-
dev: true
|
1243 |
-
|
1244 | |
1245 |
-
resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
|
1246 |
-
engines: {node: '>=10'}
|
1247 |
-
dev: true
|
1248 |
-
|
1249 | |
1250 |
-
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
|
1251 |
-
dev: true
|
1252 |
-
|
1253 | |
1254 |
-
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
|
1255 |
-
dependencies:
|
1256 |
-
any-promise: 1.3.0
|
1257 |
-
object-assign: 4.1.1
|
1258 |
-
thenify-all: 1.6.0
|
1259 |
-
|
1260 | |
1261 |
-
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
|
1262 |
-
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
1263 |
-
hasBin: true
|
1264 |
-
|
1265 | |
1266 |
-
resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
|
1267 |
-
dev: true
|
1268 |
-
|
1269 | |
1270 |
-
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
|
1271 |
-
engines: {node: '>=0.10.0'}
|
1272 |
-
|
1273 | |
1274 |
-
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
|
1275 |
-
engines: {node: '>=0.10.0'}
|
1276 |
-
dev: true
|
1277 |
-
|
1278 | |
1279 |
-
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
1280 |
-
engines: {node: '>=0.10.0'}
|
1281 |
-
|
1282 | |
1283 |
-
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
|
1284 |
-
engines: {node: '>= 6'}
|
1285 |
-
|
1286 | |
1287 |
-
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
|
1288 |
-
dependencies:
|
1289 |
-
wrappy: 1.0.2
|
1290 |
-
dev: true
|
1291 |
-
|
1292 | |
1293 |
-
resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
|
1294 |
-
|
1295 | |
1296 |
-
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
|
1297 |
-
engines: {node: '>=0.10.0'}
|
1298 |
-
dev: true
|
1299 |
-
|
1300 | |
1301 |
-
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
1302 |
-
engines: {node: '>=8'}
|
1303 |
-
|
1304 | |
1305 |
-
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
1306 |
-
|
1307 | |
1308 |
-
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
|
1309 |
-
engines: {node: '>=16 || 14 >=14.18'}
|
1310 |
-
dependencies:
|
1311 |
-
lru-cache: 10.2.2
|
1312 |
-
minipass: 7.1.2
|
1313 |
-
|
1314 | |
1315 |
-
resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
|
1316 |
-
dependencies:
|
1317 |
-
'@types/estree': 1.0.5
|
1318 |
-
estree-walker: 3.0.3
|
1319 |
-
is-reference: 3.0.2
|
1320 |
-
dev: true
|
1321 |
-
|
1322 | |
1323 |
-
resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
|
1324 |
-
|
1325 | |
1326 |
-
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
1327 |
-
engines: {node: '>=8.6'}
|
1328 |
-
|
1329 | |
1330 |
-
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
|
1331 |
-
engines: {node: '>=0.10.0'}
|
1332 |
-
|
1333 | |
1334 |
-
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
|
1335 |
-
engines: {node: '>= 6'}
|
1336 |
-
|
1337 | |
1338 |
-
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
|
1339 |
-
engines: {node: '>=14.0.0'}
|
1340 |
-
peerDependencies:
|
1341 |
-
postcss: ^8.0.0
|
1342 |
-
dependencies:
|
1343 |
-
postcss: 8.4.38
|
1344 |
-
postcss-value-parser: 4.2.0
|
1345 |
-
read-cache: 1.0.0
|
1346 |
-
resolve: 1.22.8
|
1347 |
-
|
1348 | |
1349 |
-
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
|
1350 |
-
engines: {node: ^12 || ^14 || >= 16}
|
1351 |
-
peerDependencies:
|
1352 |
-
postcss: ^8.4.21
|
1353 |
-
dependencies:
|
1354 |
-
camelcase-css: 2.0.1
|
1355 |
-
postcss: 8.4.38
|
1356 |
-
|
1357 | |
1358 |
-
resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
|
1359 |
-
engines: {node: '>= 14'}
|
1360 |
-
peerDependencies:
|
1361 |
-
postcss: '>=8.0.9'
|
1362 |
-
ts-node: '>=9.0.0'
|
1363 |
-
peerDependenciesMeta:
|
1364 |
-
postcss:
|
1365 |
-
optional: true
|
1366 |
-
ts-node:
|
1367 |
-
optional: true
|
1368 |
-
dependencies:
|
1369 |
-
lilconfig: 3.1.2
|
1370 |
-
postcss: 8.4.38
|
1371 |
-
yaml: 2.4.5
|
1372 |
-
|
1373 | |
1374 |
-
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
|
1375 |
-
engines: {node: '>=12.0'}
|
1376 |
-
peerDependencies:
|
1377 |
-
postcss: ^8.2.14
|
1378 |
-
dependencies:
|
1379 |
-
postcss: 8.4.38
|
1380 |
-
postcss-selector-parser: 6.1.0
|
1381 |
-
|
1382 | |
1383 |
-
resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==}
|
1384 |
-
engines: {node: '>=4'}
|
1385 |
-
dependencies:
|
1386 |
-
cssesc: 3.0.0
|
1387 |
-
util-deprecate: 1.0.2
|
1388 |
-
|
1389 | |
1390 |
-
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
1391 |
-
|
1392 | |
1393 |
-
resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
|
1394 |
-
engines: {node: ^10 || ^12 || >=14}
|
1395 |
-
dependencies:
|
1396 |
-
nanoid: 3.3.7
|
1397 |
-
picocolors: 1.0.1
|
1398 |
-
source-map-js: 1.2.0
|
1399 |
-
|
1400 | |
1401 |
-
resolution: {integrity: sha512-vP/M/Goc8z4iVIvrwXwbrYVjJgA0Hf8PO1G4LBh/ocSt6vUP6sLvyu9F3ABEGr+dbKyxZjEKLkeFsWy/yYl0HQ==}
|
1402 |
-
peerDependencies:
|
1403 |
-
prettier: ^3.0.0
|
1404 |
-
svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0
|
1405 |
-
dependencies:
|
1406 |
-
prettier: 3.3.2
|
1407 |
-
svelte: 4.2.18
|
1408 |
-
dev: true
|
1409 |
-
|
1410 | |
1411 |
-
resolution: {integrity: sha512-axfeOArc/RiGHjOIy9HytehlC0ZLeMaqY09mm8YCkMzznKiDkwFzOpBvtuhuv3xG5qB73+Mj7OCe2j/L1ryfuQ==}
|
1412 |
-
engines: {node: '>=14.21.3'}
|
1413 |
-
peerDependencies:
|
1414 |
-
'@ianvs/prettier-plugin-sort-imports': '*'
|
1415 |
-
'@prettier/plugin-pug': '*'
|
1416 |
-
'@shopify/prettier-plugin-liquid': '*'
|
1417 |
-
'@trivago/prettier-plugin-sort-imports': '*'
|
1418 |
-
'@zackad/prettier-plugin-twig-melody': '*'
|
1419 |
-
prettier: ^3.0
|
1420 |
-
prettier-plugin-astro: '*'
|
1421 |
-
prettier-plugin-css-order: '*'
|
1422 |
-
prettier-plugin-import-sort: '*'
|
1423 |
-
prettier-plugin-jsdoc: '*'
|
1424 |
-
prettier-plugin-marko: '*'
|
1425 |
-
prettier-plugin-organize-attributes: '*'
|
1426 |
-
prettier-plugin-organize-imports: '*'
|
1427 |
-
prettier-plugin-sort-imports: '*'
|
1428 |
-
prettier-plugin-style-order: '*'
|
1429 |
-
prettier-plugin-svelte: '*'
|
1430 |
-
peerDependenciesMeta:
|
1431 |
-
'@ianvs/prettier-plugin-sort-imports':
|
1432 |
-
optional: true
|
1433 |
-
'@prettier/plugin-pug':
|
1434 |
-
optional: true
|
1435 |
-
'@shopify/prettier-plugin-liquid':
|
1436 |
-
optional: true
|
1437 |
-
'@trivago/prettier-plugin-sort-imports':
|
1438 |
-
optional: true
|
1439 |
-
'@zackad/prettier-plugin-twig-melody':
|
1440 |
-
optional: true
|
1441 |
-
prettier-plugin-astro:
|
1442 |
-
optional: true
|
1443 |
-
prettier-plugin-css-order:
|
1444 |
-
optional: true
|
1445 |
-
prettier-plugin-import-sort:
|
1446 |
-
optional: true
|
1447 |
-
prettier-plugin-jsdoc:
|
1448 |
-
optional: true
|
1449 |
-
prettier-plugin-marko:
|
1450 |
-
optional: true
|
1451 |
-
prettier-plugin-organize-attributes:
|
1452 |
-
optional: true
|
1453 |
-
prettier-plugin-organize-imports:
|
1454 |
-
optional: true
|
1455 |
-
prettier-plugin-sort-imports:
|
1456 |
-
optional: true
|
1457 |
-
prettier-plugin-style-order:
|
1458 |
-
optional: true
|
1459 |
-
prettier-plugin-svelte:
|
1460 |
-
optional: true
|
1461 |
-
dependencies:
|
1462 |
-
prettier: 3.3.2
|
1463 |
-
prettier-plugin-svelte: 3.2.5([email protected])([email protected])
|
1464 |
-
dev: true
|
1465 |
-
|
1466 | |
1467 |
-
resolution: {integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==}
|
1468 |
-
engines: {node: '>=14'}
|
1469 |
-
hasBin: true
|
1470 |
-
dev: true
|
1471 |
-
|
1472 | |
1473 |
-
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
1474 |
-
|
1475 | |
1476 |
-
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
|
1477 |
-
dependencies:
|
1478 |
-
pify: 2.3.0
|
1479 |
-
|
1480 | |
1481 |
-
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
1482 |
-
engines: {node: '>=8.10.0'}
|
1483 |
-
dependencies:
|
1484 |
-
picomatch: 2.3.1
|
1485 |
-
|
1486 | |
1487 |
-
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
|
1488 |
-
hasBin: true
|
1489 |
-
dependencies:
|
1490 |
-
is-core-module: 2.14.0
|
1491 |
-
path-parse: 1.0.7
|
1492 |
-
supports-preserve-symlinks-flag: 1.0.0
|
1493 |
-
|
1494 | |
1495 |
-
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
|
1496 |
-
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
1497 |
-
|
1498 | |
1499 |
-
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
|
1500 |
-
deprecated: Rimraf versions prior to v4 are no longer supported
|
1501 |
-
hasBin: true
|
1502 |
-
dependencies:
|
1503 |
-
glob: 7.2.3
|
1504 |
-
dev: true
|
1505 |
-
|
1506 | |
1507 |
-
resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==}
|
1508 |
-
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
1509 |
-
hasBin: true
|
1510 |
-
dependencies:
|
1511 |
-
'@types/estree': 1.0.5
|
1512 |
-
optionalDependencies:
|
1513 |
-
'@rollup/rollup-android-arm-eabi': 4.18.0
|
1514 |
-
'@rollup/rollup-android-arm64': 4.18.0
|
1515 |
-
'@rollup/rollup-darwin-arm64': 4.18.0
|
1516 |
-
'@rollup/rollup-darwin-x64': 4.18.0
|
1517 |
-
'@rollup/rollup-linux-arm-gnueabihf': 4.18.0
|
1518 |
-
'@rollup/rollup-linux-arm-musleabihf': 4.18.0
|
1519 |
-
'@rollup/rollup-linux-arm64-gnu': 4.18.0
|
1520 |
-
'@rollup/rollup-linux-arm64-musl': 4.18.0
|
1521 |
-
'@rollup/rollup-linux-powerpc64le-gnu': 4.18.0
|
1522 |
-
'@rollup/rollup-linux-riscv64-gnu': 4.18.0
|
1523 |
-
'@rollup/rollup-linux-s390x-gnu': 4.18.0
|
1524 |
-
'@rollup/rollup-linux-x64-gnu': 4.18.0
|
1525 |
-
'@rollup/rollup-linux-x64-musl': 4.18.0
|
1526 |
-
'@rollup/rollup-win32-arm64-msvc': 4.18.0
|
1527 |
-
'@rollup/rollup-win32-ia32-msvc': 4.18.0
|
1528 |
-
'@rollup/rollup-win32-x64-msvc': 4.18.0
|
1529 |
-
fsevents: 2.3.3
|
1530 |
-
dev: true
|
1531 |
-
|
1532 | |
1533 |
-
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
1534 |
-
dependencies:
|
1535 |
-
queue-microtask: 1.2.3
|
1536 |
-
|
1537 | |
1538 |
-
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
|
1539 |
-
engines: {node: '>=6'}
|
1540 |
-
dependencies:
|
1541 |
-
mri: 1.2.0
|
1542 |
-
dev: true
|
1543 |
-
|
1544 | |
1545 |
-
resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==}
|
1546 |
-
dependencies:
|
1547 |
-
es6-promise: 3.3.1
|
1548 |
-
graceful-fs: 4.2.11
|
1549 |
-
mkdirp: 0.5.6
|
1550 |
-
rimraf: 2.7.1
|
1551 |
-
dev: true
|
1552 |
-
|
1553 | |
1554 |
-
resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==}
|
1555 |
-
dev: true
|
1556 |
-
|
1557 | |
1558 |
-
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
1559 |
-
engines: {node: '>=8'}
|
1560 |
-
dependencies:
|
1561 |
-
shebang-regex: 3.0.0
|
1562 |
-
|
1563 | |
1564 |
-
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
1565 |
-
engines: {node: '>=8'}
|
1566 |
-
|
1567 | |
1568 |
-
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
|
1569 |
-
engines: {node: '>=14'}
|
1570 |
-
|
1571 | |
1572 |
-
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
|
1573 |
-
engines: {node: '>= 10'}
|
1574 |
-
dependencies:
|
1575 |
-
'@polka/url': 1.0.0-next.25
|
1576 |
-
mrmime: 2.0.0
|
1577 |
-
totalist: 3.0.1
|
1578 |
-
dev: true
|
1579 |
-
|
1580 | |
1581 |
-
resolution: {integrity: sha512-o7npfeJE6wi6J9l0/5LKshFzZ2rMatRiCDwYeDQaOzqdzRJwALhX7mk/A/ecg6wjMu7wdZbmXfD2S/vpOg0bdQ==}
|
1582 |
-
hasBin: true
|
1583 |
-
dependencies:
|
1584 |
-
'@jridgewell/sourcemap-codec': 1.4.15
|
1585 |
-
buffer-crc32: 1.0.0
|
1586 |
-
minimist: 1.2.8
|
1587 |
-
sander: 0.5.1
|
1588 |
-
dev: true
|
1589 |
-
|
1590 | |
1591 |
-
resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
|
1592 |
-
engines: {node: '>=0.10.0'}
|
1593 |
-
|
1594 | |
1595 |
-
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
|
1596 |
-
engines: {node: '>=8'}
|
1597 |
-
dependencies:
|
1598 |
-
emoji-regex: 8.0.0
|
1599 |
-
is-fullwidth-code-point: 3.0.0
|
1600 |
-
strip-ansi: 6.0.1
|
1601 |
-
|
1602 | |
1603 |
-
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
|
1604 |
-
engines: {node: '>=12'}
|
1605 |
-
dependencies:
|
1606 |
-
eastasianwidth: 0.2.0
|
1607 |
-
emoji-regex: 9.2.2
|
1608 |
-
strip-ansi: 7.1.0
|
1609 |
-
|
1610 | |
1611 |
-
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
1612 |
-
engines: {node: '>=8'}
|
1613 |
-
dependencies:
|
1614 |
-
ansi-regex: 5.0.1
|
1615 |
-
|
1616 | |
1617 |
-
resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
|
1618 |
-
engines: {node: '>=12'}
|
1619 |
-
dependencies:
|
1620 |
-
ansi-regex: 6.0.1
|
1621 |
-
|
1622 | |
1623 |
-
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
|
1624 |
-
engines: {node: '>=8'}
|
1625 |
-
dependencies:
|
1626 |
-
min-indent: 1.0.1
|
1627 |
-
dev: true
|
1628 |
-
|
1629 | |
1630 |
-
resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
|
1631 |
-
engines: {node: '>=16 || 14 >=14.17'}
|
1632 |
-
hasBin: true
|
1633 |
-
dependencies:
|
1634 |
-
'@jridgewell/gen-mapping': 0.3.5
|
1635 |
-
commander: 4.1.1
|
1636 |
-
glob: 10.4.2
|
1637 |
-
lines-and-columns: 1.2.4
|
1638 |
-
mz: 2.7.0
|
1639 |
-
pirates: 4.0.6
|
1640 |
-
ts-interface-checker: 0.1.13
|
1641 |
-
|
1642 | |
1643 |
-
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
1644 |
-
engines: {node: '>= 0.4'}
|
1645 |
-
|
1646 | |
1647 |
-
resolution: {integrity: sha512-61aHMkdinWyH8BkkTX9jPLYxYzaAAz/FK/VQqdr2FiCQQ/q04WCwDlpGbHff1GdrMYTmW8chlTFvRWL9k0A8vg==}
|
1648 |
-
hasBin: true
|
1649 |
-
peerDependencies:
|
1650 |
-
svelte: ^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
|
1651 |
-
dependencies:
|
1652 |
-
'@jridgewell/trace-mapping': 0.3.25
|
1653 |
-
chokidar: 3.6.0
|
1654 |
-
picocolors: 1.0.1
|
1655 |
-
sade: 1.8.1
|
1656 |
-
svelte: 4.2.18
|
1657 |
-
svelte-preprocess: 5.1.4([email protected])([email protected])([email protected])
|
1658 |
-
typescript: 5.5.2
|
1659 |
-
transitivePeerDependencies:
|
1660 |
-
- '@babel/core'
|
1661 |
-
- coffeescript
|
1662 |
-
- less
|
1663 |
-
- postcss
|
1664 |
-
- postcss-load-config
|
1665 |
-
- pug
|
1666 |
-
- sass
|
1667 |
-
- stylus
|
1668 |
-
- sugarss
|
1669 |
-
dev: true
|
1670 |
-
|
1671 | |
1672 |
-
resolution: {integrity: sha512-Gyc7cOS3VJzLlfj7wKS0ZnzDVdv3Pn2IuVeJPk9m2skfhcu5bq3wtIZyQGggr7/Iim5rH5cncyQft/kRLupcnA==}
|
1673 |
-
engines: {node: ^12.20 || ^14.13.1 || >= 16}
|
1674 |
-
peerDependencies:
|
1675 |
-
svelte: ^3.19.0 || ^4.0.0
|
1676 |
-
dependencies:
|
1677 |
-
svelte: 4.2.18
|
1678 |
-
dev: true
|
1679 |
-
|
1680 | |
1681 |
-
resolution: {integrity: sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==}
|
1682 |
-
engines: {node: '>= 16.0.0'}
|
1683 |
-
requiresBuild: true
|
1684 |
-
peerDependencies:
|
1685 |
-
'@babel/core': ^7.10.2
|
1686 |
-
coffeescript: ^2.5.1
|
1687 |
-
less: ^3.11.3 || ^4.0.0
|
1688 |
-
postcss: ^7 || ^8
|
1689 |
-
postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
|
1690 |
-
pug: ^3.0.0
|
1691 |
-
sass: ^1.26.8
|
1692 |
-
stylus: ^0.55.0
|
1693 |
-
sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0
|
1694 |
-
svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
|
1695 |
-
typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0'
|
1696 |
-
peerDependenciesMeta:
|
1697 |
-
'@babel/core':
|
1698 |
-
optional: true
|
1699 |
-
coffeescript:
|
1700 |
-
optional: true
|
1701 |
-
less:
|
1702 |
-
optional: true
|
1703 |
-
postcss:
|
1704 |
-
optional: true
|
1705 |
-
postcss-load-config:
|
1706 |
-
optional: true
|
1707 |
-
pug:
|
1708 |
-
optional: true
|
1709 |
-
sass:
|
1710 |
-
optional: true
|
1711 |
-
stylus:
|
1712 |
-
optional: true
|
1713 |
-
sugarss:
|
1714 |
-
optional: true
|
1715 |
-
typescript:
|
1716 |
-
optional: true
|
1717 |
-
dependencies:
|
1718 |
-
'@types/pug': 2.0.10
|
1719 |
-
detect-indent: 6.1.0
|
1720 |
-
magic-string: 0.30.10
|
1721 |
-
postcss: 8.4.38
|
1722 |
-
sorcery: 0.11.1
|
1723 |
-
strip-indent: 3.0.0
|
1724 |
-
svelte: 4.2.18
|
1725 |
-
typescript: 5.5.2
|
1726 |
-
dev: true
|
1727 |
-
|
1728 | |
1729 |
-
resolution: {integrity: sha512-d0FdzYIiAePqRJEb90WlJDkjUEx42xhivxN8muUBmfZnP+tzUgz12DJ2hRJi8sIHCME7jeK1PTMgKPSfTd8JrA==}
|
1730 |
-
engines: {node: '>=16'}
|
1731 |
-
dependencies:
|
1732 |
-
'@ampproject/remapping': 2.3.0
|
1733 |
-
'@jridgewell/sourcemap-codec': 1.4.15
|
1734 |
-
'@jridgewell/trace-mapping': 0.3.25
|
1735 |
-
'@types/estree': 1.0.5
|
1736 |
-
acorn: 8.12.0
|
1737 |
-
aria-query: 5.3.0
|
1738 |
-
axobject-query: 4.0.0
|
1739 |
-
code-red: 1.0.4
|
1740 |
-
css-tree: 2.3.1
|
1741 |
-
estree-walker: 3.0.3
|
1742 |
-
is-reference: 3.0.2
|
1743 |
-
locate-character: 3.0.0
|
1744 |
-
magic-string: 0.30.10
|
1745 |
-
periscopic: 3.1.0
|
1746 |
-
dev: true
|
1747 |
-
|
1748 | |
1749 |
-
resolution: {integrity: sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==}
|
1750 |
-
engines: {node: '>=14.0.0'}
|
1751 |
-
hasBin: true
|
1752 |
-
dependencies:
|
1753 |
-
'@alloc/quick-lru': 5.2.0
|
1754 |
-
arg: 5.0.2
|
1755 |
-
chokidar: 3.6.0
|
1756 |
-
didyoumean: 1.2.2
|
1757 |
-
dlv: 1.1.3
|
1758 |
-
fast-glob: 3.3.2
|
1759 |
-
glob-parent: 6.0.2
|
1760 |
-
is-glob: 4.0.3
|
1761 |
-
jiti: 1.21.6
|
1762 |
-
lilconfig: 2.1.0
|
1763 |
-
micromatch: 4.0.7
|
1764 |
-
normalize-path: 3.0.0
|
1765 |
-
object-hash: 3.0.0
|
1766 |
-
picocolors: 1.0.1
|
1767 |
-
postcss: 8.4.38
|
1768 |
-
postcss-import: 15.1.0([email protected])
|
1769 |
-
postcss-js: 4.0.1([email protected])
|
1770 |
-
postcss-load-config: 4.0.2([email protected])
|
1771 |
-
postcss-nested: 6.0.1([email protected])
|
1772 |
-
postcss-selector-parser: 6.1.0
|
1773 |
-
resolve: 1.22.8
|
1774 |
-
sucrase: 3.35.0
|
1775 |
-
transitivePeerDependencies:
|
1776 |
-
- ts-node
|
1777 |
-
|
1778 | |
1779 |
-
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
|
1780 |
-
engines: {node: '>=0.8'}
|
1781 |
-
dependencies:
|
1782 |
-
thenify: 3.3.1
|
1783 |
-
|
1784 | |
1785 |
-
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
|
1786 |
-
dependencies:
|
1787 |
-
any-promise: 1.3.0
|
1788 |
-
|
1789 | |
1790 |
-
resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
|
1791 |
-
dependencies:
|
1792 |
-
globalyzer: 0.1.0
|
1793 |
-
globrex: 0.1.2
|
1794 |
-
dev: true
|
1795 |
-
|
1796 | |
1797 |
-
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
1798 |
-
engines: {node: '>=8.0'}
|
1799 |
-
dependencies:
|
1800 |
-
is-number: 7.0.0
|
1801 |
-
|
1802 | |
1803 |
-
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
|
1804 |
-
engines: {node: '>=6'}
|
1805 |
-
dev: true
|
1806 |
-
|
1807 | |
1808 |
-
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
|
1809 |
-
|
1810 | |
1811 |
-
resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
|
1812 |
-
dev: true
|
1813 |
-
|
1814 | |
1815 |
-
resolution: {integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==}
|
1816 |
-
engines: {node: '>=14.17'}
|
1817 |
-
hasBin: true
|
1818 |
-
dev: true
|
1819 |
-
|
1820 | |
1821 |
-
resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==}
|
1822 |
-
hasBin: true
|
1823 |
-
peerDependencies:
|
1824 |
-
browserslist: '>= 4.21.0'
|
1825 |
-
dependencies:
|
1826 |
-
browserslist: 4.23.1
|
1827 |
-
escalade: 3.1.2
|
1828 |
-
picocolors: 1.0.1
|
1829 |
-
dev: true
|
1830 |
-
|
1831 | |
1832 |
-
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
1833 |
-
|
1834 | |
1835 |
-
resolution: {integrity: sha512-XBmSKRLXLxiaPYamLv3/hnP/KXDai1NDexN0FpkTaZXTfycHvkRHoenpgl/fvuK/kPbB6xAgoyiryAhQNxYmAQ==}
|
1836 |
-
engines: {node: ^18.0.0 || >=20.0.0}
|
1837 |
-
hasBin: true
|
1838 |
-
peerDependencies:
|
1839 |
-
'@types/node': ^18.0.0 || >=20.0.0
|
1840 |
-
less: '*'
|
1841 |
-
lightningcss: ^1.21.0
|
1842 |
-
sass: '*'
|
1843 |
-
stylus: '*'
|
1844 |
-
sugarss: '*'
|
1845 |
-
terser: ^5.4.0
|
1846 |
-
peerDependenciesMeta:
|
1847 |
-
'@types/node':
|
1848 |
-
optional: true
|
1849 |
-
less:
|
1850 |
-
optional: true
|
1851 |
-
lightningcss:
|
1852 |
-
optional: true
|
1853 |
-
sass:
|
1854 |
-
optional: true
|
1855 |
-
stylus:
|
1856 |
-
optional: true
|
1857 |
-
sugarss:
|
1858 |
-
optional: true
|
1859 |
-
terser:
|
1860 |
-
optional: true
|
1861 |
-
dependencies:
|
1862 |
-
esbuild: 0.21.5
|
1863 |
-
postcss: 8.4.38
|
1864 |
-
rollup: 4.18.0
|
1865 |
-
optionalDependencies:
|
1866 |
-
fsevents: 2.3.3
|
1867 |
-
dev: true
|
1868 |
-
|
1869 | |
1870 |
-
resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==}
|
1871 |
-
peerDependencies:
|
1872 |
-
vite: ^3.0.0 || ^4.0.0 || ^5.0.0
|
1873 |
-
peerDependenciesMeta:
|
1874 |
-
vite:
|
1875 |
-
optional: true
|
1876 |
-
dependencies:
|
1877 |
-
vite: 5.3.1
|
1878 |
-
dev: true
|
1879 |
-
|
1880 | |
1881 |
-
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
1882 |
-
engines: {node: '>= 8'}
|
1883 |
-
hasBin: true
|
1884 |
-
dependencies:
|
1885 |
-
isexe: 2.0.0
|
1886 |
-
|
1887 | |
1888 |
-
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
|
1889 |
-
engines: {node: '>=10'}
|
1890 |
-
dependencies:
|
1891 |
-
ansi-styles: 4.3.0
|
1892 |
-
string-width: 4.2.3
|
1893 |
-
strip-ansi: 6.0.1
|
1894 |
-
|
1895 | |
1896 |
-
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
|
1897 |
-
engines: {node: '>=12'}
|
1898 |
-
dependencies:
|
1899 |
-
ansi-styles: 6.2.1
|
1900 |
-
string-width: 5.1.2
|
1901 |
-
strip-ansi: 7.1.0
|
1902 |
-
|
1903 | |
1904 |
-
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
1905 |
-
dev: true
|
1906 |
-
|
1907 | |
1908 |
-
resolution: {integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==}
|
1909 |
-
engines: {node: '>= 14'}
|
1910 |
-
hasBin: true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|