Spaces:
Running
Running
wuyiqun0718
commited on
Commit
·
26c4b30
1
Parent(s):
9b0efaf
feat: support upload to aws s3 and save to kv store
Browse files- app/api/upload/route.ts +53 -27
- components/chat-sidebar/ChatCard.tsx +1 -1
- components/chat/ImageSelector.tsx +27 -1
- lib/aws.ts +43 -0
- lib/hooks/useImageUpload.ts +45 -44
- package.json +3 -1
- pnpm-lock.yaml +1326 -122
app/api/upload/route.ts
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
import { auth } from '@/auth';
|
|
|
2 |
import { ChatEntity, MessageBase } from '@/lib/types';
|
3 |
import { nanoid } from '@/lib/utils';
|
4 |
import { kv } from '@vercel/kv';
|
@@ -17,31 +18,56 @@ export async function POST(req: Request): Promise<Response> {
|
|
17 |
});
|
18 |
}
|
19 |
|
20 |
-
|
21 |
-
url
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
}
|
|
|
1 |
import { auth } from '@/auth';
|
2 |
+
import { upload } from '@/lib/aws';
|
3 |
import { ChatEntity, MessageBase } from '@/lib/types';
|
4 |
import { nanoid } from '@/lib/utils';
|
5 |
import { kv } from '@vercel/kv';
|
|
|
18 |
});
|
19 |
}
|
20 |
|
21 |
+
try {
|
22 |
+
const { url, base64, initMessages, fileType } = (await req.json()) as {
|
23 |
+
url?: string;
|
24 |
+
file?: File;
|
25 |
+
base64?: string;
|
26 |
+
fileType?: string;
|
27 |
+
initMessages?: MessageBase[];
|
28 |
+
};
|
29 |
+
|
30 |
+
if (!url && !base64) {
|
31 |
+
return new Response('Missing both url and base64 in payload', {
|
32 |
+
status: 400,
|
33 |
+
});
|
34 |
+
}
|
35 |
+
|
36 |
+
const id = nanoid();
|
37 |
+
|
38 |
+
let urlToSave = url;
|
39 |
+
if (base64) {
|
40 |
+
const fileName = `${email}/${id}/${Date.now()}-image.jpg`;
|
41 |
+
const res = await upload(base64, fileName, fileType ?? 'image/png');
|
42 |
+
if (res.ok) {
|
43 |
+
console.log('Image uploaded successfully');
|
44 |
+
urlToSave = `https://${process.env.AWS_BUCKET_NAME}.s3.${process.env.AWS_REGION}.amazonaws.com/${fileName}`;
|
45 |
+
} else {
|
46 |
+
throw new Error('Failed to upload image');
|
47 |
+
}
|
48 |
+
}
|
49 |
+
|
50 |
+
const payload: ChatEntity = {
|
51 |
+
url: urlToSave!, // TODO can be uploaded as well
|
52 |
+
id,
|
53 |
+
user: email,
|
54 |
+
messages: initMessages ?? [],
|
55 |
+
};
|
56 |
+
|
57 |
+
await kv.hmset(`chat:${id}`, payload);
|
58 |
+
await kv.zadd(`user:chat:${email}`, {
|
59 |
+
score: Date.now(),
|
60 |
+
member: `chat:${id}`,
|
61 |
+
});
|
62 |
+
await kv.zadd('user:chat:all', {
|
63 |
+
score: Date.now(),
|
64 |
+
member: `chat:${id}`,
|
65 |
+
});
|
66 |
+
|
67 |
+
return Response.json(payload);
|
68 |
+
} catch (error) {
|
69 |
+
return new Response((error as Error).message, {
|
70 |
+
status: 400,
|
71 |
+
});
|
72 |
+
}
|
73 |
}
|
components/chat-sidebar/ChatCard.tsx
CHANGED
@@ -30,7 +30,7 @@ const ChatCard: React.FC<ChatCardProps> = ({ chat }) => {
|
|
30 |
className="rounded w-1/4 "
|
31 |
/>
|
32 |
<p className="text-xs text-gray-500 w-3/4 ml-2">
|
33 |
-
{messages?.[0]
|
34 |
</p>
|
35 |
</div>
|
36 |
</Link>
|
|
|
30 |
className="rounded w-1/4 "
|
31 |
/>
|
32 |
<p className="text-xs text-gray-500 w-3/4 ml-2">
|
33 |
+
{messages?.[0]?.content.slice(0, 50) + ' ...' ?? 'new chat'}
|
34 |
</p>
|
35 |
</div>
|
36 |
</Link>
|
components/chat/ImageSelector.tsx
CHANGED
@@ -28,7 +28,30 @@ const examples: Example[] = [
|
|
28 |
|
29 |
const ImageSelector: React.FC<ImageSelectorProps> = () => {
|
30 |
const router = useRouter();
|
31 |
-
const { getRootProps, getInputProps } = useImageUpload(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
return (
|
33 |
<div className="mx-auto max-w-2xl px-4 mt-8">
|
34 |
<div className="rounded-lg border bg-background p-8">
|
@@ -58,6 +81,9 @@ const ImageSelector: React.FC<ImageSelectorProps> = () => {
|
|
58 |
onClick={async () => {
|
59 |
const resp = await fetcher<ChatEntity>('/api/upload', {
|
60 |
method: 'POST',
|
|
|
|
|
|
|
61 |
body: JSON.stringify({ url, initMessages }),
|
62 |
});
|
63 |
if (resp) {
|
|
|
28 |
|
29 |
const ImageSelector: React.FC<ImageSelectorProps> = () => {
|
30 |
const router = useRouter();
|
31 |
+
const { getRootProps, getInputProps } = useImageUpload(
|
32 |
+
undefined,
|
33 |
+
async files => {
|
34 |
+
const formData = new FormData();
|
35 |
+
if (files.length !== 1) {
|
36 |
+
throw new Error('Only one image can be uploaded at a time');
|
37 |
+
}
|
38 |
+
console.log();
|
39 |
+
const reader = new FileReader();
|
40 |
+
reader.readAsDataURL(files[0]);
|
41 |
+
reader.onload = async () => {
|
42 |
+
const resp = await fetcher<ChatEntity>('/api/upload', {
|
43 |
+
method: 'POST',
|
44 |
+
body: JSON.stringify({
|
45 |
+
base64: reader.result as string,
|
46 |
+
fileType: files[0].type,
|
47 |
+
}),
|
48 |
+
});
|
49 |
+
if (resp) {
|
50 |
+
router.push(`/chat/${resp.id}`);
|
51 |
+
}
|
52 |
+
};
|
53 |
+
},
|
54 |
+
);
|
55 |
return (
|
56 |
<div className="mx-auto max-w-2xl px-4 mt-8">
|
57 |
<div className="rounded-lg border bg-background p-8">
|
|
|
81 |
onClick={async () => {
|
82 |
const resp = await fetcher<ChatEntity>('/api/upload', {
|
83 |
method: 'POST',
|
84 |
+
headers: {
|
85 |
+
'Content-Type': 'application/json',
|
86 |
+
},
|
87 |
body: JSON.stringify({ url, initMessages }),
|
88 |
});
|
89 |
if (resp) {
|
lib/aws.ts
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { createPresignedPost } from '@aws-sdk/s3-presigned-post';
|
2 |
+
import { S3Client } from '@aws-sdk/client-s3';
|
3 |
+
import { fromEnv } from '@aws-sdk/credential-providers';
|
4 |
+
|
5 |
+
const s3Client = new S3Client({
|
6 |
+
region: process.env.AWS_REGION,
|
7 |
+
credentials: fromEnv(),
|
8 |
+
});
|
9 |
+
|
10 |
+
const FILE_SIZE_LIMIT = 10485760; // 10MB
|
11 |
+
|
12 |
+
export const upload = async (
|
13 |
+
base64: string,
|
14 |
+
fileName: string,
|
15 |
+
fileType: string,
|
16 |
+
) => {
|
17 |
+
const imageBuffer = Buffer.from(base64, 'base64');
|
18 |
+
const { url, fields } = await createPresignedPost(s3Client, {
|
19 |
+
Bucket: process.env.AWS_BUCKET_NAME ?? 'vision-agent-dev',
|
20 |
+
Key: fileName,
|
21 |
+
Conditions: [
|
22 |
+
['content-length-range', 0, FILE_SIZE_LIMIT],
|
23 |
+
['starts-with', '$Content-Type', fileType],
|
24 |
+
],
|
25 |
+
Fields: {
|
26 |
+
acl: 'public-read',
|
27 |
+
'Content-Type': fileType,
|
28 |
+
},
|
29 |
+
Expires: 600,
|
30 |
+
});
|
31 |
+
const formData = new FormData();
|
32 |
+
Object.entries(fields).forEach(([key, value]) => {
|
33 |
+
formData.append(key, value as string);
|
34 |
+
});
|
35 |
+
const res = await fetch(base64);
|
36 |
+
const blob = await res.blob();
|
37 |
+
formData.append('file', blob);
|
38 |
+
|
39 |
+
return fetch(url, {
|
40 |
+
method: 'POST',
|
41 |
+
body: formData,
|
42 |
+
});
|
43 |
+
};
|
lib/hooks/useImageUpload.ts
CHANGED
@@ -1,53 +1,54 @@
|
|
1 |
-
import { useAtom } from 'jotai';
|
2 |
import { DropzoneOptions, useDropzone } from 'react-dropzone';
|
3 |
-
import { datasetAtom } from '../../state';
|
4 |
-
import { toast } from 'react-hot-toast';
|
5 |
-
import { DatasetImageEntity } from '../types';
|
6 |
|
7 |
-
const useImageUpload = (
|
|
|
|
|
|
|
8 |
const { getRootProps, getInputProps, isDragActive } = useDropzone({
|
9 |
accept: {
|
10 |
'image/*': ['.jpeg', '.png'],
|
11 |
},
|
12 |
-
multiple:
|
13 |
-
onDrop:
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
|
|
|
|
51 |
...options,
|
52 |
});
|
53 |
|
|
|
|
|
1 |
import { DropzoneOptions, useDropzone } from 'react-dropzone';
|
|
|
|
|
|
|
2 |
|
3 |
+
const useImageUpload = (
|
4 |
+
options?: Partial<DropzoneOptions>,
|
5 |
+
onDrop?: (files: File[]) => void,
|
6 |
+
) => {
|
7 |
const { getRootProps, getInputProps, isDragActive } = useDropzone({
|
8 |
accept: {
|
9 |
'image/*': ['.jpeg', '.png'],
|
10 |
},
|
11 |
+
multiple: false,
|
12 |
+
onDrop: onDrop
|
13 |
+
? onDrop
|
14 |
+
: acceptedFiles => {
|
15 |
+
// if (acceptedFiles.length > 10) {
|
16 |
+
// toast('You can only upload 10 images max.', {
|
17 |
+
// icon: '⚠️',
|
18 |
+
// });
|
19 |
+
// }
|
20 |
+
acceptedFiles.forEach(file => {
|
21 |
+
try {
|
22 |
+
const reader = new FileReader();
|
23 |
+
reader.onloadend = () => {
|
24 |
+
// const newImage = reader.result as string;
|
25 |
+
// setTarget(prev => {
|
26 |
+
// // Check if the image already exists in the state
|
27 |
+
// if (
|
28 |
+
// // prev.length >= 10 ||
|
29 |
+
// prev.find(entity => entity.url === newImage)
|
30 |
+
// ) {
|
31 |
+
// // If it does, return the state unchanged
|
32 |
+
// return prev;
|
33 |
+
// } else {
|
34 |
+
// // If it doesn't, add the new image to the state
|
35 |
+
// return [
|
36 |
+
// ...prev,
|
37 |
+
// {
|
38 |
+
// url: newImage,
|
39 |
+
// selected: false,
|
40 |
+
// name: `i-${prev.length + 1}`,
|
41 |
+
// } satisfies DatasetImageEntity,
|
42 |
+
// ];
|
43 |
+
// }
|
44 |
+
// });
|
45 |
+
};
|
46 |
+
reader.readAsDataURL(file);
|
47 |
+
} catch (err) {
|
48 |
+
console.error(err);
|
49 |
+
}
|
50 |
+
});
|
51 |
+
},
|
52 |
...options,
|
53 |
});
|
54 |
|
package.json
CHANGED
@@ -13,6 +13,9 @@
|
|
13 |
"format:check": "prettier --check \"{app,lib,components}**/*.{ts,tsx,mdx}\" --cache"
|
14 |
},
|
15 |
"dependencies": {
|
|
|
|
|
|
|
16 |
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
17 |
"@radix-ui/react-label": "^2.0.2",
|
18 |
"@radix-ui/react-select": "^2.0.0",
|
@@ -22,7 +25,6 @@
|
|
22 |
"@radix-ui/react-tooltip": "^1.0.7",
|
23 |
"@vercel/kv": "^1.0.1",
|
24 |
"ai": "^2.2.31",
|
25 |
-
"aws-sdk": "^2.1601.0",
|
26 |
"class-variance-authority": "^0.7.0",
|
27 |
"clsx": "^2.1.0",
|
28 |
"date-fns": "^3.6.0",
|
|
|
13 |
"format:check": "prettier --check \"{app,lib,components}**/*.{ts,tsx,mdx}\" --cache"
|
14 |
},
|
15 |
"dependencies": {
|
16 |
+
"@aws-sdk/client-s3": "^3.556.0",
|
17 |
+
"@aws-sdk/credential-providers": "^3.556.0",
|
18 |
+
"@aws-sdk/s3-presigned-post": "^3.556.0",
|
19 |
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
20 |
"@radix-ui/react-label": "^2.0.2",
|
21 |
"@radix-ui/react-select": "^2.0.0",
|
|
|
25 |
"@radix-ui/react-tooltip": "^1.0.7",
|
26 |
"@vercel/kv": "^1.0.1",
|
27 |
"ai": "^2.2.31",
|
|
|
28 |
"class-variance-authority": "^0.7.0",
|
29 |
"clsx": "^2.1.0",
|
30 |
"date-fns": "^3.6.0",
|
pnpm-lock.yaml
CHANGED
@@ -8,6 +8,15 @@ importers:
|
|
8 |
|
9 |
.:
|
10 |
dependencies:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
'@radix-ui/react-dropdown-menu':
|
12 |
specifier: ^2.0.6
|
13 |
version: 2.0.6(@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])
|
@@ -35,9 +44,6 @@ importers:
|
|
35 |
ai:
|
36 |
specifier: ^2.2.31
|
37 |
version: 2.2.37([email protected])([email protected])([email protected])([email protected]([email protected]))
|
38 |
-
aws-sdk:
|
39 |
-
specifier: ^2.1601.0
|
40 |
-
version: 2.1601.0
|
41 |
class-variance-authority:
|
42 |
specifier: ^0.7.0
|
43 |
version: 0.7.0
|
@@ -194,6 +200,193 @@ packages:
|
|
194 |
nodemailer:
|
195 |
optional: true
|
196 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
'@babel/[email protected]':
|
198 |
resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
|
199 |
engines: {node: '>=6.9.0'}
|
@@ -720,6 +913,197 @@ packages:
|
|
720 |
'@rushstack/[email protected]':
|
721 |
resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==}
|
722 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
723 |
'@swc/[email protected]':
|
724 |
resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==}
|
725 |
|
@@ -983,10 +1367,6 @@ packages:
|
|
983 |
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
|
984 |
engines: {node: '>= 0.4'}
|
985 |
|
986 | |
987 |
-
resolution: {integrity: sha512-znwVdKs3g0j1cAFfi+PGPSmBxXjiekJXp1nnOUq4rxXYvN7av8gxptXaQz+vqB4uhNFsD+OXNQh+6bd9eQxZmw==}
|
988 |
-
engines: {node: '>= 10.0.0'}
|
989 |
-
|
990 | |
991 |
resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
|
992 |
engines: {node: '>=4'}
|
@@ -1003,13 +1383,13 @@ packages:
|
|
1003 | |
1004 |
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
1005 |
|
1006 | |
1007 |
-
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
1008 |
-
|
1009 | |
1010 |
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
|
1011 |
engines: {node: '>=8'}
|
1012 |
|
|
|
|
|
|
|
1013 | |
1014 |
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
1015 |
|
@@ -1025,9 +1405,6 @@ packages:
|
|
1025 |
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
1026 |
hasBin: true
|
1027 |
|
1028 | |
1029 |
-
resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==}
|
1030 |
-
|
1031 | |
1032 |
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
|
1033 |
engines: {node: '>=10.16.0'}
|
@@ -1406,10 +1783,6 @@ packages:
|
|
1406 |
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
|
1407 |
engines: {node: '>=6'}
|
1408 |
|
1409 | |
1410 |
-
resolution: {integrity: sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==}
|
1411 |
-
engines: {node: '>=0.4.x'}
|
1412 |
-
|
1413 | |
1414 |
resolution: {integrity: sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==}
|
1415 |
engines: {node: '>=14.18'}
|
@@ -1430,6 +1803,10 @@ packages:
|
|
1430 | |
1431 |
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
1432 |
|
|
|
|
|
|
|
|
|
1433 | |
1434 |
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
|
1435 |
|
@@ -1631,9 +2008,6 @@ packages:
|
|
1631 | |
1632 |
resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
|
1633 |
|
1634 | |
1635 |
-
resolution: {integrity: sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==}
|
1636 |
-
|
1637 | |
1638 |
resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
|
1639 |
engines: {node: '>= 4'}
|
@@ -1671,10 +2045,6 @@ packages:
|
|
1671 | |
1672 |
resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
|
1673 |
|
1674 | |
1675 |
-
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
|
1676 |
-
engines: {node: '>= 0.4'}
|
1677 |
-
|
1678 | |
1679 |
resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
|
1680 |
engines: {node: '>= 0.4'}
|
@@ -1800,9 +2170,6 @@ packages:
|
|
1800 |
resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
|
1801 |
engines: {node: '>= 0.4'}
|
1802 |
|
1803 | |
1804 |
-
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
|
1805 |
-
|
1806 | |
1807 |
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
|
1808 |
|
@@ -1820,10 +2187,6 @@ packages:
|
|
1820 |
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
|
1821 |
hasBin: true
|
1822 |
|
1823 | |
1824 |
-
resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==}
|
1825 |
-
engines: {node: '>= 0.6.0'}
|
1826 |
-
|
1827 | |
1828 |
resolution: {integrity: sha512-6ScbIk2WWCeXkmzF6bRPmEuaqy1m8SbsRFMa/FLrSCkGIhj8OLVG/IH+XHVmNMx/KUo8cVWEE6oKR4dJ+S0Rkg==}
|
1829 |
|
@@ -2395,18 +2758,10 @@ packages:
|
|
2395 | |
2396 |
resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
|
2397 |
|
2398 | |
2399 |
-
resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==}
|
2400 |
-
|
2401 | |
2402 |
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
2403 |
engines: {node: '>=6'}
|
2404 |
|
2405 | |
2406 |
-
resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==}
|
2407 |
-
engines: {node: '>=0.4.x'}
|
2408 |
-
deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
|
2409 |
-
|
2410 | |
2411 |
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
2412 |
|
@@ -2565,9 +2920,6 @@ packages:
|
|
2565 |
resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
|
2566 |
engines: {node: '>= 0.4'}
|
2567 |
|
2568 | |
2569 |
-
resolution: {integrity: sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==}
|
2570 |
-
|
2571 | |
2572 |
resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
|
2573 |
|
@@ -2686,6 +3038,9 @@ packages:
|
|
2686 |
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
2687 |
engines: {node: '>=8'}
|
2688 |
|
|
|
|
|
|
|
2689 | |
2690 |
resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==}
|
2691 |
|
@@ -2795,6 +3150,9 @@ packages:
|
|
2795 | |
2796 |
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
|
2797 |
|
|
|
|
|
|
|
2798 | |
2799 |
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
|
2800 |
|
@@ -2863,9 +3221,6 @@ packages:
|
|
2863 | |
2864 |
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
2865 |
|
2866 | |
2867 |
-
resolution: {integrity: sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ==}
|
2868 |
-
|
2869 | |
2870 |
resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
|
2871 |
engines: {node: '>=10'}
|
@@ -2917,13 +3272,6 @@ packages:
|
|
2917 | |
2918 |
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
2919 |
|
2920 | |
2921 |
-
resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
|
2922 |
-
|
2923 | |
2924 |
-
resolution: {integrity: sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==}
|
2925 |
-
hasBin: true
|
2926 |
-
|
2927 | |
2928 |
resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
|
2929 |
hasBin: true
|
@@ -2992,14 +3340,6 @@ packages:
|
|
2992 | |
2993 |
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
2994 |
|
2995 | |
2996 |
-
resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==}
|
2997 |
-
engines: {node: '>=4.0.0'}
|
2998 |
-
|
2999 | |
3000 |
-
resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
|
3001 |
-
engines: {node: '>=4.0'}
|
3002 |
-
|
3003 | |
3004 |
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
|
3005 |
engines: {node: '>=0.4'}
|
@@ -3040,6 +3380,608 @@ snapshots:
|
|
3040 |
preact: 10.11.3
|
3041 |
preact-render-to-string: 5.2.3([email protected])
|
3042 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3043 |
'@babel/[email protected]': {}
|
3044 |
|
3045 |
'@babel/[email protected]': {}
|
@@ -3562,6 +4504,320 @@ snapshots:
|
|
3562 |
|
3563 |
'@rushstack/[email protected]': {}
|
3564 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3565 |
'@swc/[email protected]':
|
3566 |
dependencies:
|
3567 |
tslib: 2.6.2
|
@@ -3890,19 +5146,6 @@ snapshots:
|
|
3890 |
dependencies:
|
3891 |
possible-typed-array-names: 1.0.0
|
3892 |
|
3893 | |
3894 |
-
dependencies:
|
3895 |
-
buffer: 4.9.2
|
3896 |
-
events: 1.1.1
|
3897 |
-
ieee754: 1.1.13
|
3898 |
-
jmespath: 0.16.0
|
3899 |
-
querystring: 0.2.0
|
3900 |
-
sax: 1.2.1
|
3901 |
-
url: 0.10.3
|
3902 |
-
util: 0.12.5
|
3903 |
-
uuid: 8.0.0
|
3904 |
-
xml2js: 0.6.2
|
3905 |
-
|
3906 | |
3907 |
|
3908 | |
@@ -3917,10 +5160,10 @@ snapshots:
|
|
3917 |
|
3918 | |
3919 |
|
3920 |
-
[email protected]: {}
|
3921 |
-
|
3922 | |
3923 |
|
|
|
|
|
3924 | |
3925 |
dependencies:
|
3926 |
balanced-match: 1.0.2
|
@@ -3941,12 +5184,6 @@ snapshots:
|
|
3941 |
node-releases: 2.0.14
|
3942 |
update-browserslist-db: 1.0.13([email protected])
|
3943 |
|
3944 | |
3945 |
-
dependencies:
|
3946 |
-
base64-js: 1.5.1
|
3947 |
-
ieee754: 1.1.13
|
3948 |
-
isarray: 1.0.0
|
3949 |
-
|
3950 | |
3951 |
dependencies:
|
3952 |
streamsearch: 1.1.0
|
@@ -4447,8 +5684,6 @@ snapshots:
|
|
4447 |
|
4448 | |
4449 |
|
4450 |
-
[email protected]: {}
|
4451 |
-
|
4452 | |
4453 |
|
4454 | |
@@ -4467,6 +5702,10 @@ snapshots:
|
|
4467 |
|
4468 | |
4469 |
|
|
|
|
|
|
|
|
|
4470 | |
4471 |
dependencies:
|
4472 |
reusify: 1.0.4
|
@@ -4686,8 +5925,6 @@ snapshots:
|
|
4686 |
dependencies:
|
4687 |
ms: 2.1.3
|
4688 |
|
4689 |
-
[email protected]: {}
|
4690 |
-
|
4691 | |
4692 |
|
4693 | |
@@ -4725,11 +5962,6 @@ snapshots:
|
|
4725 |
is-alphabetical: 1.0.4
|
4726 |
is-decimal: 1.0.4
|
4727 |
|
4728 | |
4729 |
-
dependencies:
|
4730 |
-
call-bind: 1.0.7
|
4731 |
-
has-tostringtag: 1.0.2
|
4732 |
-
|
4733 | |
4734 |
dependencies:
|
4735 |
call-bind: 1.0.7
|
@@ -4840,8 +6072,6 @@ snapshots:
|
|
4840 |
call-bind: 1.0.7
|
4841 |
get-intrinsic: 1.2.4
|
4842 |
|
4843 |
-
[email protected]: {}
|
4844 |
-
|
4845 | |
4846 |
|
4847 | |
@@ -4862,8 +6092,6 @@ snapshots:
|
|
4862 |
|
4863 | |
4864 |
|
4865 |
-
[email protected]: {}
|
4866 |
-
|
4867 | |
4868 |
|
4869 | |
@@ -5571,12 +6799,8 @@ snapshots:
|
|
5571 |
|
5572 | |
5573 |
|
5574 |
-
[email protected]: {}
|
5575 |
-
|
5576 | |
5577 |
|
5578 |
-
[email protected]: {}
|
5579 |
-
|
5580 | |
5581 |
|
5582 | |
@@ -5789,8 +7013,6 @@ snapshots:
|
|
5789 |
es-errors: 1.3.0
|
5790 |
is-regex: 1.1.4
|
5791 |
|
5792 |
-
[email protected]: {}
|
5793 |
-
|
5794 | |
5795 |
dependencies:
|
5796 |
loose-envify: 1.4.0
|
@@ -5922,6 +7144,8 @@ snapshots:
|
|
5922 |
|
5923 | |
5924 |
|
|
|
|
|
5925 | |
5926 |
dependencies:
|
5927 |
inline-style-parser: 0.1.1
|
@@ -6053,6 +7277,8 @@ snapshots:
|
|
6053 |
minimist: 1.2.8
|
6054 |
strip-bom: 3.0.0
|
6055 |
|
|
|
|
|
6056 | |
6057 |
|
6058 | |
@@ -6149,11 +7375,6 @@ snapshots:
|
|
6149 |
dependencies:
|
6150 |
punycode: 2.3.1
|
6151 |
|
6152 | |
6153 |
-
dependencies:
|
6154 |
-
punycode: 1.3.2
|
6155 |
-
querystring: 0.2.0
|
6156 |
-
|
6157 | |
6158 |
dependencies:
|
6159 |
react: 18.2.0
|
@@ -6192,16 +7413,6 @@ snapshots:
|
|
6192 |
|
6193 | |
6194 |
|
6195 | |
6196 |
-
dependencies:
|
6197 |
-
inherits: 2.0.4
|
6198 |
-
is-arguments: 1.1.1
|
6199 |
-
is-generator-function: 1.0.10
|
6200 |
-
is-typed-array: 1.1.13
|
6201 |
-
which-typed-array: 1.1.15
|
6202 |
-
|
6203 |
-
[email protected]: {}
|
6204 |
-
|
6205 | |
6206 |
|
6207 | |
@@ -6300,13 +7511,6 @@ snapshots:
|
|
6300 |
|
6301 | |
6302 |
|
6303 | |
6304 |
-
dependencies:
|
6305 |
-
sax: 1.2.1
|
6306 |
-
xmlbuilder: 11.0.1
|
6307 |
-
|
6308 |
-
[email protected]: {}
|
6309 |
-
|
6310 | |
6311 |
|
6312 |
|
|
8 |
|
9 |
.:
|
10 |
dependencies:
|
11 |
+
'@aws-sdk/client-s3':
|
12 |
+
specifier: ^3.556.0
|
13 |
+
version: 3.556.0
|
14 |
+
'@aws-sdk/credential-providers':
|
15 |
+
specifier: ^3.556.0
|
16 |
+
version: 3.556.0
|
17 |
+
'@aws-sdk/s3-presigned-post':
|
18 |
+
specifier: ^3.556.0
|
19 |
+
version: 3.556.0
|
20 |
'@radix-ui/react-dropdown-menu':
|
21 |
specifier: ^2.0.6
|
22 |
version: 2.0.6(@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])
|
|
|
44 |
ai:
|
45 |
specifier: ^2.2.31
|
46 |
version: 2.2.37([email protected])([email protected])([email protected])([email protected]([email protected]))
|
|
|
|
|
|
|
47 |
class-variance-authority:
|
48 |
specifier: ^0.7.0
|
49 |
version: 0.7.0
|
|
|
200 |
nodemailer:
|
201 |
optional: true
|
202 |
|
203 |
+
'@aws-crypto/[email protected]':
|
204 |
+
resolution: {integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==}
|
205 |
+
|
206 |
+
'@aws-crypto/[email protected]':
|
207 |
+
resolution: {integrity: sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==}
|
208 |
+
|
209 |
+
'@aws-crypto/[email protected]':
|
210 |
+
resolution: {integrity: sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==}
|
211 |
+
|
212 |
+
'@aws-crypto/[email protected]':
|
213 |
+
resolution: {integrity: sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw==}
|
214 |
+
|
215 |
+
'@aws-crypto/[email protected]':
|
216 |
+
resolution: {integrity: sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==}
|
217 |
+
|
218 |
+
'@aws-crypto/[email protected]':
|
219 |
+
resolution: {integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==}
|
220 |
+
|
221 |
+
'@aws-crypto/[email protected]':
|
222 |
+
resolution: {integrity: sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==}
|
223 |
+
|
224 |
+
'@aws-crypto/[email protected]':
|
225 |
+
resolution: {integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==}
|
226 |
+
|
227 |
+
'@aws-sdk/[email protected]':
|
228 |
+
resolution: {integrity: sha512-HWd7PyXCuY1Z9KBaufbzpIvS2QeUAak5wfYwylW2DrEvt6A4tjWCBSbbSXNoawqCv/HitA39v953N/1PojJVVQ==}
|
229 |
+
engines: {node: '>=14.0.0'}
|
230 |
+
|
231 |
+
'@aws-sdk/[email protected]':
|
232 |
+
resolution: {integrity: sha512-6WF9Kuzz1/8zqX8hKBpqj9+FYwQ5uTsVcOKpTW94AMX2qtIeVRlwlnNnYyywWo61yqD3g59CMNHcqSsaqAwglg==}
|
233 |
+
engines: {node: '>=14.0.0'}
|
234 |
+
|
235 |
+
'@aws-sdk/[email protected]':
|
236 |
+
resolution: {integrity: sha512-AXKd2TB6nNrksu+OfmHl8uI07PdgzOo4o8AxoRO8SHlwoMAGvcT9optDGVSYoVfgOKTymCoE7h8/UoUfPc11wQ==}
|
237 |
+
engines: {node: '>=14.0.0'}
|
238 |
+
peerDependencies:
|
239 |
+
'@aws-sdk/credential-provider-node': ^3.556.0
|
240 |
+
|
241 |
+
'@aws-sdk/[email protected]':
|
242 |
+
resolution: {integrity: sha512-unXdWS7uvHqCcOyC1de+Fr8m3F2vMg2m24GPea0bg7rVGTYmiyn9mhUX11VCt+ozydrw+F50FQwL6OqoqPocmw==}
|
243 |
+
engines: {node: '>=14.0.0'}
|
244 |
+
|
245 |
+
'@aws-sdk/[email protected]':
|
246 |
+
resolution: {integrity: sha512-TsK3js7Suh9xEmC886aY+bv0KdLLYtzrcmVt6sJ/W6EnDXYQhBuKYFhp03NrN2+vSvMGpqJwR62DyfKe1G0QzQ==}
|
247 |
+
engines: {node: '>=14.0.0'}
|
248 |
+
peerDependencies:
|
249 |
+
'@aws-sdk/credential-provider-node': ^3.556.0
|
250 |
+
|
251 |
+
'@aws-sdk/[email protected]':
|
252 |
+
resolution: {integrity: sha512-vJaSaHw2kPQlo11j/Rzuz0gk1tEaKdz+2ser0f0qZ5vwFlANjt08m/frU17ctnVKC1s58bxpctO/1P894fHLrA==}
|
253 |
+
engines: {node: '>=14.0.0'}
|
254 |
+
|
255 |
+
'@aws-sdk/[email protected]':
|
256 |
+
resolution: {integrity: sha512-PKYBjfpLHJZhrIv0M9eJ47yeDaV8NUMVe4vsiHG5tvlvwWGP84k9GJlr51U/s84OzIyXzVpiqP8PU5yKovUFIg==}
|
257 |
+
engines: {node: '>=14.0.0'}
|
258 |
+
|
259 |
+
'@aws-sdk/[email protected]':
|
260 |
+
resolution: {integrity: sha512-XppwO8c0GCGSAvdzyJOhbtktSEaShg14VJKg8mpMa1XcgqzmcqqHQjtDWbx5rZheY1VdpXZhpEzJkB6LpQejpA==}
|
261 |
+
engines: {node: '>=14.0.0'}
|
262 |
+
|
263 |
+
'@aws-sdk/[email protected]':
|
264 |
+
resolution: {integrity: sha512-vsmu7Cz1i45pFEqzVb4JcFmAmVnWFNLsGheZc8SCptlqCO5voETrZZILHYIl4cjKkSDk3pblBOf0PhyjqWW6WQ==}
|
265 |
+
engines: {node: '>=14.0.0'}
|
266 |
+
|
267 |
+
'@aws-sdk/[email protected]':
|
268 |
+
resolution: {integrity: sha512-0Nz4ErOlXhe3muxWYMbPwRMgfKmVbBp36BAE2uv/z5wTbfdBkcgUwaflEvlKCLUTdHzuZsQk+BFS/gVyaUeOuA==}
|
269 |
+
engines: {node: '>=14.0.0'}
|
270 |
+
|
271 |
+
'@aws-sdk/[email protected]':
|
272 |
+
resolution: {integrity: sha512-s1xVtKjyGc60O8qcNIzS1X3H+pWEwEfZ7TgNznVDNyuXvLrlNWiAcigPWGl2aAkc8tGcsSG0Qpyw2KYC939LFg==}
|
273 |
+
engines: {node: '>=14.0.0'}
|
274 |
+
|
275 |
+
'@aws-sdk/[email protected]':
|
276 |
+
resolution: {integrity: sha512-9O1OaprGCnlb/kYl8RwmH7Mlg8JREZctB8r9sa1KhSsWFq/SWO0AuJTyowxD7zL5PkeS4eTvzFFHWCa3OO5epA==}
|
277 |
+
engines: {node: '>=14.0.0'}
|
278 |
+
|
279 |
+
'@aws-sdk/[email protected]':
|
280 |
+
resolution: {integrity: sha512-ETuBgcnpfxqadEAqhQFWpKoV1C/NAgvs5CbBc5EJbelJ8f4prTdErIHjrRtVT8c02MXj92QwczsiNYd5IoOqyw==}
|
281 |
+
engines: {node: '>=14.0.0'}
|
282 |
+
|
283 |
+
'@aws-sdk/[email protected]':
|
284 |
+
resolution: {integrity: sha512-R/YAL8Uh8i+dzVjzMnbcWLIGeeRi2mioHVGnVF+minmaIkCiQMZg2HPrdlKm49El+RljT28Nl5YHRuiqzEIwMA==}
|
285 |
+
engines: {node: '>=14.0.0'}
|
286 |
+
|
287 |
+
'@aws-sdk/[email protected]':
|
288 |
+
resolution: {integrity: sha512-CnWP/AEF+sPeO8fabrHy4Oeo52xDFuDQMpjKcI7oJzGF6Ne2ZPTq6wTJQPLeXeg4OzLcK0tT3G4z/27MLdsLsw==}
|
289 |
+
engines: {node: '>=14.0.0'}
|
290 |
+
|
291 |
+
'@aws-sdk/[email protected]':
|
292 |
+
resolution: {integrity: sha512-7sijlfQsc4UO9Fsl11mU26Y5f9E7g6UoNg/iJUBpC5pgvvmdBRO5UEhbB/gnqvOEPsBXyhmfzbstebq23Qdz7A==}
|
293 |
+
engines: {node: '>=14.0.0'}
|
294 |
+
|
295 |
+
'@aws-sdk/[email protected]':
|
296 |
+
resolution: {integrity: sha512-hFKyqUBky0NWCVku8iZ9+PACehx0p6vuMw5YnZf8FVgHP0fode0b/NwQY6UY7oor/GftvRsAlRUAWGNFEGUpwA==}
|
297 |
+
engines: {node: '>=14.0.0'}
|
298 |
+
|
299 |
+
'@aws-sdk/[email protected]':
|
300 |
+
resolution: {integrity: sha512-rBIzldY9jjRATxICDX7t77aW6ctqmVDgnuAOgbVT5xgHftt4o7PGWKoMvl/45hYqoQgxVFnCBof9bxkqSBebVA==}
|
301 |
+
engines: {node: '>=14.0.0'}
|
302 |
+
|
303 |
+
'@aws-sdk/[email protected]':
|
304 |
+
resolution: {integrity: sha512-0h6TWjBWtDaYwHMQJI9ulafeS4lLaw1vIxRjbpH0svFRt6Eve+Sy8NlVhECfTU2hNz/fLubvrUxsXoThaLBIew==}
|
305 |
+
engines: {node: '>=14.0.0'}
|
306 |
+
|
307 |
+
'@aws-sdk/[email protected]':
|
308 |
+
resolution: {integrity: sha512-SxfS9wfidUZZ+WnlKRTCRn3h+XTsymXRXPJj8VV6hNRNeOwzNweoG3YhQbTowuuNfXf89m9v6meYkBBtkdacKw==}
|
309 |
+
engines: {node: '>=14.0.0'}
|
310 |
+
|
311 |
+
'@aws-sdk/[email protected]':
|
312 |
+
resolution: {integrity: sha512-huNHpONOrEDrdRTvSQr1cJiRMNf0S52NDXtaPzdxiubTkP+vni2MohmZANMOai/qT0olmEVX01LhZ0ZAOgmg6A==}
|
313 |
+
engines: {node: '>=14.0.0'}
|
314 |
+
|
315 |
+
'@aws-sdk/[email protected]':
|
316 |
+
resolution: {integrity: sha512-am2qgGs+gwqmR4wHLWpzlZ8PWhm4ktj5bYSgDrsOfjhdBlWNxvPoID9/pDAz5RWL48+oH7I6SQzMqxXsFDikrw==}
|
317 |
+
engines: {node: '>=14.0.0'}
|
318 |
+
|
319 |
+
'@aws-sdk/[email protected]':
|
320 |
+
resolution: {integrity: sha512-4W/dnxqj1B6/uS/5Z+3UHaqDDGjNPgEVlqf5d3ToOFZ31ZfpANwhcCmyX39JklC4aolCEi9renQ5wHnTCC8K8g==}
|
321 |
+
engines: {node: '>=14.0.0'}
|
322 |
+
|
323 |
+
'@aws-sdk/[email protected]':
|
324 |
+
resolution: {integrity: sha512-kWrPmU8qd3gI5qzpuW9LtWFaH80cOz1ZJDavXx6PRpYZJ5JaKdUHghwfDlVTzzFYAeJmVsWIkPcLT5d5mY5ZTQ==}
|
325 |
+
engines: {node: '>=14.0.0'}
|
326 |
+
|
327 |
+
'@aws-sdk/[email protected]':
|
328 |
+
resolution: {integrity: sha512-2QWMrbwd5eBy5KCYn9a15JEWBgrK2qFEKQN2lqb/6z0bhtevIOxIRfC99tzvRuPt6nixFQ+ynKuBjcfT4ZFrdQ==}
|
329 |
+
engines: {node: '>=14.0.0'}
|
330 |
+
|
331 |
+
'@aws-sdk/[email protected]':
|
332 |
+
resolution: {integrity: sha512-8Rd6wPeXDnOYzWj1XCmOKcx/Q87L0K1/EHqOBocGjLVbN3gmRxBvpmR1pRTjf7IsWfnnzN5btqtcAkfDPYQUMQ==}
|
333 |
+
engines: {node: '>=14.0.0'}
|
334 |
+
|
335 |
+
'@aws-sdk/[email protected]':
|
336 |
+
resolution: {integrity: sha512-IXOznDiaItBjsQy4Fil0kzX/J3HxIOknEphqHbOfUf+LpA5ugcsxuQQONrbEQusCBnfJyymrldBvBhFmtlU9Wg==}
|
337 |
+
engines: {node: '>=14.0.0'}
|
338 |
+
|
339 |
+
'@aws-sdk/[email protected]':
|
340 |
+
resolution: {integrity: sha512-/E3Pi/a3m/Map7kWjc79kLCIi9VPNOy+jkYFH4d8y5+ulV34NWtjvTPp9wrILn3FsaN0lcjwi+kXp6Dd16eDdQ==}
|
341 |
+
engines: {node: '>=14.0.0'}
|
342 |
+
|
343 |
+
'@aws-sdk/[email protected]':
|
344 |
+
resolution: {integrity: sha512-bWDSK0ggK7QzAOmPZGv29UAIZocL1MNY7XyOvm3P3P1U3tFMoIBilQQBLabXyHoZ9J3Ik0Vv4n95htUhRQ35ow==}
|
345 |
+
engines: {node: '>=14.0.0'}
|
346 |
+
|
347 |
+
'@aws-sdk/[email protected]':
|
348 |
+
resolution: {integrity: sha512-tvIiugNF0/+2wfuImMrpKjXMx4nCnFWQjQvouObny+wrif/PGqqQYrybwxPJDvzbd965bu1I+QuSv85/ug7xsg==}
|
349 |
+
engines: {node: '>=14.0.0'}
|
350 |
+
|
351 |
+
'@aws-sdk/[email protected]':
|
352 |
+
resolution: {integrity: sha512-aY4MYfduNj+sRR37U7XxYR8wemfbKP6lx00ze2M2uubn7mZotuVrWYAafbMSXrdEMSToE5JDhr28vArSOoLcSg==}
|
353 |
+
engines: {node: '>=14.0.0'}
|
354 |
+
|
355 |
+
'@aws-sdk/[email protected]':
|
356 |
+
resolution: {integrity: sha512-smVo29nUPAOprp8Z5Y3GHuhiOtw6c8/EtLCm5AVMtRsTPw4V414ZXL2H66tzmb5kEeSzQlbfBSBEdIFZoxO9kg==}
|
357 |
+
engines: {node: '>=14.0.0'}
|
358 |
+
|
359 |
+
'@aws-sdk/[email protected]':
|
360 |
+
resolution: {integrity: sha512-1kMyQFAWx6f8alaI6UT65/5YW/7pDWAKAdNwL6vuJLea03KrZRX3PMoONOSJpAS5m3Ot7HlWZvf3wZDNTLELZw==}
|
361 |
+
engines: {node: '>=14.0.0'}
|
362 |
+
|
363 |
+
'@aws-sdk/[email protected]':
|
364 |
+
resolution: {integrity: sha512-ElbNkm0bddu53CuW44Iuux1ZbTV50fydbSh/4ypW3LrmUvHx193ogj0HXQ7X26kmmo9rXcsrLdM92yIeTjidVg==}
|
365 |
+
engines: {node: '>=14.0.0'}
|
366 |
+
|
367 |
+
'@aws-sdk/[email protected]':
|
368 |
+
resolution: {integrity: sha512-PHJ3SL6d2jpcgbqdgiPxkXpu7Drc2PYViwxSIqvvMKhDwzSB1W3mMvtpzwKM4IE7zLFodZo0GKjJ9AsoXndXhA==}
|
369 |
+
engines: {node: '>=14.0.0'}
|
370 |
+
|
371 |
+
'@aws-sdk/[email protected]':
|
372 |
+
resolution: {integrity: sha512-RWMcF/xV5n+nhaA/Ff5P3yNP3Kur/I+VNZngog4TEs92oB/nwOdAg/2JL8bVAhUbMrjTjpwm7PItziYFQoqyig==}
|
373 |
+
|
374 |
+
'@aws-sdk/[email protected]':
|
375 |
+
resolution: {integrity: sha512-dRek0zUuIT25wOWJlsRm97nTkUlh1NDcLsQZIN2Y8KxhwoXXWtJs5vaDPT+qAg+OpcNj80i1zLR/CirqlFg/TQ==}
|
376 |
+
engines: {node: '>=14.0.0'}
|
377 |
+
peerDependencies:
|
378 |
+
aws-crt: '>=1.0.0'
|
379 |
+
peerDependenciesMeta:
|
380 |
+
aws-crt:
|
381 |
+
optional: true
|
382 |
+
|
383 |
+
'@aws-sdk/[email protected]':
|
384 |
+
resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==}
|
385 |
+
|
386 |
+
'@aws-sdk/[email protected]':
|
387 |
+
resolution: {integrity: sha512-VXAq/Jz8KIrU84+HqsOJhIKZqG0PNTdi6n6PFQ4xJf44ZQHD/5C7ouH4qCFX5XgZXcgbRIcMVVYGC6Jye0dRng==}
|
388 |
+
engines: {node: '>=14.0.0'}
|
389 |
+
|
390 |
'@babel/[email protected]':
|
391 |
resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
|
392 |
engines: {node: '>=6.9.0'}
|
|
|
913 |
'@rushstack/[email protected]':
|
914 |
resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==}
|
915 |
|
916 |
+
'@smithy/[email protected]':
|
917 |
+
resolution: {integrity: sha512-wRlta7GuLWpTqtFfGo+nZyOO1vEvewdNR1R4rTxpC8XU6vG/NDyrFBhwLZsqg1NUoR1noVaXJPC/7ZK47QCySw==}
|
918 |
+
engines: {node: '>=14.0.0'}
|
919 |
+
|
920 |
+
'@smithy/[email protected]':
|
921 |
+
resolution: {integrity: sha512-VNB5+1oCgX3Fzs072yuRsUoC2N4Zg/LJ11DTxX3+Qu+Paa6AmbIF0E9sc2wthz9Psrk/zcOlTCyuposlIhPjZQ==}
|
922 |
+
|
923 |
+
'@smithy/[email protected]':
|
924 |
+
resolution: {integrity: sha512-3GJNvRwXBGdkDZZOGiziVYzDpn4j6zfyULHMDKAGIUo72yHALpE9CbhfQp/XcLNVoc1byfMpn6uW5H2BqPjgaQ==}
|
925 |
+
|
926 |
+
'@smithy/[email protected]':
|
927 |
+
resolution: {integrity: sha512-fsiMgd8toyUba6n1WRmr+qACzXltpdDkPTAaDqc8QqPBUzO+/JKwL6bUBseHVi8tu9l+3JOK+tSf7cay+4B3LA==}
|
928 |
+
engines: {node: '>=14.0.0'}
|
929 |
+
|
930 |
+
'@smithy/[email protected]':
|
931 |
+
resolution: {integrity: sha512-2fek3I0KZHWJlRLvRTqxTEri+qV0GRHrJIoLFuBMZB4EMg4WgeBGfF0X6abnrNYpq55KJ6R4D6x4f0vLnhzinA==}
|
932 |
+
engines: {node: '>=14.0.0'}
|
933 |
+
|
934 |
+
'@smithy/[email protected]':
|
935 |
+
resolution: {integrity: sha512-BWB9mIukO1wjEOo1Ojgl6LrG4avcaC7T/ZP6ptmAaW4xluhSIPZhY+/PI5YKzlk+jsm+4sQZB45Bt1OfMeQa3w==}
|
936 |
+
engines: {node: '>=14.0.0'}
|
937 |
+
|
938 |
+
'@smithy/[email protected]':
|
939 |
+
resolution: {integrity: sha512-8janZoJw85nJmQZc4L8TuePp2pk1nxLgkxIR0TUjKJ5Dkj5oelB9WtiSSGXCQvNsJl0VSTvK/2ueMXxvpa9GVw==}
|
940 |
+
|
941 |
+
'@smithy/[email protected]':
|
942 |
+
resolution: {integrity: sha512-UaPf8jKbcP71BGiO0CdeLmlg+RhWnlN8ipsMSdwvqBFigl5nil3rHOI/5GE3tfiuX8LvY5Z9N0meuU7Rab7jWw==}
|
943 |
+
engines: {node: '>=14.0.0'}
|
944 |
+
|
945 |
+
'@smithy/[email protected]':
|
946 |
+
resolution: {integrity: sha512-RHhbTw/JW3+r8QQH7PrganjNCiuiEZmpi6fYUAetFfPLfZ6EkiA08uN3EFfcyKubXQxOwTeJRZSQmDDCdUshaA==}
|
947 |
+
engines: {node: '>=14.0.0'}
|
948 |
+
|
949 |
+
'@smithy/[email protected]':
|
950 |
+
resolution: {integrity: sha512-zpQMtJVqCUMn+pCSFcl9K/RPNtQE0NuMh8sKpCdEHafhwRsjP50Oq/4kMmvxSRy6d8Jslqd8BLvDngrUtmN9iA==}
|
951 |
+
engines: {node: '>=14.0.0'}
|
952 |
+
|
953 |
+
'@smithy/[email protected]':
|
954 |
+
resolution: {integrity: sha512-pvoe/vvJY0mOpuF84BEtyZoYfbehiFj8KKWk1ds2AT0mTLYFVs+7sBJZmioOFdBXKd48lfrx1vumdPdmGlCLxA==}
|
955 |
+
engines: {node: '>=14.0.0'}
|
956 |
+
|
957 |
+
'@smithy/[email protected]':
|
958 |
+
resolution: {integrity: sha512-BOWEBeppWhLn/no/JxUL/ghTfANTjT7kg3Ww2rPqTUY9R4yHPXxJ9JhMe3Z03LN3aPwiwlpDIUcVw1xDyHqEhw==}
|
959 |
+
|
960 |
+
'@smithy/[email protected]':
|
961 |
+
resolution: {integrity: sha512-SGPoVH8mdXBqrkVCJ1Hd1X7vh1zDXojNN1yZyZTZsCno99hVue9+IYzWDjq/EQDDXxmITB0gBmuyPh8oAZSTcg==}
|
962 |
+
|
963 |
+
'@smithy/[email protected]':
|
964 |
+
resolution: {integrity: sha512-zLWaC/5aWpMrHKpoDF6nqpNtBhlAYKF/7+9yMN7GpdR8CzohnWfGtMznPybnwSS8saaXBMxIGwJqR4HmRp6b3g==}
|
965 |
+
engines: {node: '>=14.0.0'}
|
966 |
+
|
967 |
+
'@smithy/[email protected]':
|
968 |
+
resolution: {integrity: sha512-aT+HCATOSRMGpPI7bi7NSsTNVZE/La9IaxLXWoVAYMxHT5hGO3ZOGEMZQg8A6nNL+pdFGtZQtND1eoY084HgHQ==}
|
969 |
+
engines: {node: '>=14.0.0'}
|
970 |
+
|
971 |
+
'@smithy/[email protected]':
|
972 |
+
resolution: {integrity: sha512-nEDASdbKFKPXN2O6lOlTgrEEOO9NHIeO+HVvZnkqc8h5U9g3BIhWsvzFo+UcUbliMHvKNPD/zVxDrkP1Sbgp8Q==}
|
973 |
+
|
974 |
+
'@smithy/[email protected]':
|
975 |
+
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
|
976 |
+
engines: {node: '>=14.0.0'}
|
977 |
+
|
978 |
+
'@smithy/[email protected]':
|
979 |
+
resolution: {integrity: sha512-M26XTtt9IIusVMOWEAhIvFIr9jYj4ISPPGJROqw6vXngO3IYJCnVVSMFn4Tx1rUTG5BiKJNg9u2nxmBiZC5IlQ==}
|
980 |
+
|
981 |
+
'@smithy/[email protected]':
|
982 |
+
resolution: {integrity: sha512-5bl2LG1Ah/7E5cMSC+q+h3IpVHMeOkG0yLRyQT1p2aMJkSrZG7RlXHPuAgb7EyaFeidKEnnd/fNaLLaKlHGzDQ==}
|
983 |
+
engines: {node: '>=14.0.0'}
|
984 |
+
|
985 |
+
'@smithy/[email protected]':
|
986 |
+
resolution: {integrity: sha512-1/8kFp6Fl4OsSIVTWHnNjLnTL8IqpIb/D3sTSczrKFnrE9VMNWxnrRKNvpUHOJ6zpGD5f62TPm7+17ilTJpiCQ==}
|
987 |
+
engines: {node: '>=14.0.0'}
|
988 |
+
|
989 |
+
'@smithy/[email protected]':
|
990 |
+
resolution: {integrity: sha512-P2bGufFpFdYcWvqpyqqmalRtwFUNUA8vHjJR5iGqbfR6mp65qKOLcUd6lTr4S9Gn/enynSrSf3p3FVgVAf6bXA==}
|
991 |
+
engines: {node: '>=14.0.0'}
|
992 |
+
|
993 |
+
'@smithy/[email protected]':
|
994 |
+
resolution: {integrity: sha512-sIADe7ojwqTyvEQBe1nc/GXB9wdHhi9UwyX0lTyttmUWDJLP655ZYE1WngnNyXREme8I27KCaUhyhZWRXL0q7Q==}
|
995 |
+
engines: {node: '>=14.0.0'}
|
996 |
+
|
997 |
+
'@smithy/[email protected]':
|
998 |
+
resolution: {integrity: sha512-Qntc3jrtwwrsAC+X8wms8zhrTr0sFXnyEGhZd9sLtsJ/6gGQKFzNB+wWbOcpJd7BR8ThNCoKt76BuQahfMvpeA==}
|
999 |
+
engines: {node: '>=14.0.0'}
|
1000 |
+
|
1001 |
+
'@smithy/[email protected]':
|
1002 |
+
resolution: {integrity: sha512-0elK5/03a1JPWMDPaS726Iw6LpQg80gFut1tNpPfxFuChEEklo2yL823V94SpTZTxmKlXFtFgsP55uh3dErnIg==}
|
1003 |
+
engines: {node: '>=14.0.0'}
|
1004 |
+
|
1005 |
+
'@smithy/[email protected]':
|
1006 |
+
resolution: {integrity: sha512-mVGyPBzkkGQsPoxQUbxlEfRjrj6FPyA3u3u2VXGr9hT8wilsoQdZdvKpMBFMB8Crfhv5dNkKHIW0Yyuc7eABqA==}
|
1007 |
+
engines: {node: '>=14.0.0'}
|
1008 |
+
|
1009 |
+
'@smithy/[email protected]':
|
1010 |
+
resolution: {integrity: sha512-+xiil2lFhtTRzXkx8F053AV46QnIw6e7MV8od5Mi68E1ICOjCeCHw2XfLnDEUHnT9WGUIkwcqavXjfwuJbGlpg==}
|
1011 |
+
engines: {node: '>=14.0.0'}
|
1012 |
+
|
1013 |
+
'@smithy/[email protected]':
|
1014 |
+
resolution: {integrity: sha512-Xy5XK1AFWW2nlY/biWZXu6/krgbaf2dg0q492D8M5qthsnU2H+UgFeZLbM76FnH7s6RO/xhQRkj+T6KBO3JzgQ==}
|
1015 |
+
engines: {node: '>=14.0.0'}
|
1016 |
+
|
1017 |
+
'@smithy/[email protected]':
|
1018 |
+
resolution: {integrity: sha512-L1kSeviUWL+emq3CUVSgdogoM/D9QMFaqxL/dd0X7PCNWmPXqt+ExtrBjqT0V7HLN03Vs9SuiLrG3zy3JGnE5A==}
|
1019 |
+
engines: {node: '>=14.0.0'}
|
1020 |
+
|
1021 |
+
'@smithy/[email protected]':
|
1022 |
+
resolution: {integrity: sha512-BvHCDrKfbG5Yhbpj4vsbuPV2GgcpHiAkLeIlcA1LtfpMz3jrqizP1+OguSNSj1MwBHEiN+jwNisXLGdajGDQJA==}
|
1023 |
+
engines: {node: '>=14.0.0'}
|
1024 |
+
|
1025 |
+
'@smithy/[email protected]':
|
1026 |
+
resolution: {integrity: sha512-uBDTIBBEdAQryvHdc5W8sS5YX7RQzF683XrHePVdFmAgKiMofU15FLSM0/HU03hKTnazdNRFa0YHS7+ArwoUSQ==}
|
1027 |
+
engines: {node: '>=14.0.0'}
|
1028 |
+
|
1029 |
+
'@smithy/[email protected]':
|
1030 |
+
resolution: {integrity: sha512-WyujUJL8e1B6Z4PBfAqC/aGY1+C7T0w20Gih3yrvJSk97gpiVfB+y7c46T4Nunk+ZngLq0rOIdeVeIklk0R3OA==}
|
1031 |
+
engines: {node: '>=14.0.0'}
|
1032 |
+
|
1033 |
+
'@smithy/[email protected]':
|
1034 |
+
resolution: {integrity: sha512-ui/NlpILU+6HAQBfJX8BBsDXuKSNrjTSuOYArRblcrErwKFutjrCNb/OExfVRyj9+26F9J+ZmfWT+fKWuDrH3Q==}
|
1035 |
+
engines: {node: '>=14.0.0'}
|
1036 |
+
|
1037 |
+
'@smithy/[email protected]':
|
1038 |
+
resolution: {integrity: sha512-jrbSQrYCho0yDaaf92qWgd+7nAeap5LtHTI51KXqmpIFCceKU3K9+vIVTUH72bOJngBMqa4kyu1VJhRcSrk/CQ==}
|
1039 |
+
engines: {node: '>=14.0.0'}
|
1040 |
+
|
1041 |
+
'@smithy/[email protected]':
|
1042 |
+
resolution: {integrity: sha512-QwYgloJ0sVNBeBuBs65cIkTbfzV/Q6ZNPCJ99EICFEdJYG50nGIY/uYXp+TbsdJReIuPr0a0kXmCvren3MbRRw==}
|
1043 |
+
engines: {node: '>=14.0.0'}
|
1044 |
+
|
1045 |
+
'@smithy/[email protected]':
|
1046 |
+
resolution: {integrity: sha512-hoA4zm61q1mNTpksiSWp2nEl1dt3j726HdRhiNgVJQMj7mLp7dprtF57mOB6JvEk/x9d2bsuL5hlqZbBuHQylQ==}
|
1047 |
+
|
1048 |
+
'@smithy/[email protected]':
|
1049 |
+
resolution: {integrity: sha512-s3+eVwNeJuXUwuMbusncZNViuhv2LjVJ1nMwTqSA0XAC7gjKhqqxRdJPhR8+YrkoZ9IiIbFk/yK6ACe/xlF+hw==}
|
1050 |
+
engines: {node: '>=14.0.0'}
|
1051 |
+
|
1052 |
+
'@smithy/[email protected]':
|
1053 |
+
resolution: {integrity: sha512-dtpw9uQP7W+n3vOtx0CfBD5EWd7EPdIdsQnWTDoFf77e3VUf05uA7R7TGipIo8e4WL2kuPdnsr3hMQn9ziYj5w==}
|
1054 |
+
|
1055 |
+
'@smithy/[email protected]':
|
1056 |
+
resolution: {integrity: sha512-ITWT1Wqjubf2CJthb0BuT9+bpzBfXeMokH/AAa5EJQgbv9aPMVfnM76iFIZVFf50hYXGbtiV71BHAthNWd6+dw==}
|
1057 |
+
engines: {node: '>=14.0.0'}
|
1058 |
+
|
1059 |
+
'@smithy/[email protected]':
|
1060 |
+
resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==}
|
1061 |
+
engines: {node: '>=14.0.0'}
|
1062 |
+
|
1063 |
+
'@smithy/[email protected]':
|
1064 |
+
resolution: {integrity: sha512-HZkzrRcuFN1k70RLqlNK4FnPXKOpkik1+4JaBoHNJn+RnJGYqaa3c5/+XtLOXhlKzlRgNvyaLieHTW2VwGN0VQ==}
|
1065 |
+
engines: {node: '>=14.0.0'}
|
1066 |
+
|
1067 |
+
'@smithy/[email protected]':
|
1068 |
+
resolution: {integrity: sha512-RtKW+8j8skk17SYowucwRUjeh4mCtnm5odCL0Lm2NtHQBsYKrNW0od9Rhopu9wF1gHMfHeWF7i90NwBz/U22Kw==}
|
1069 |
+
engines: {node: '>= 10.0.0'}
|
1070 |
+
|
1071 |
+
'@smithy/[email protected]':
|
1072 |
+
resolution: {integrity: sha512-vkMXHQ0BcLFysBMWgSBLSk3+leMpFSyyFj8zQtv5ZyUBx8/owVh1/pPEkzmW/DR/Gy/5c8vjLDD9gZjXNKbrpA==}
|
1073 |
+
engines: {node: '>= 10.0.0'}
|
1074 |
+
|
1075 |
+
'@smithy/[email protected]':
|
1076 |
+
resolution: {integrity: sha512-BuDHv8zRjsE5zXd3PxFXFknzBG3owCpjq8G3FcsXW3CykYXuEqM3nTSsmLzw5q+T12ZYuDlVUZKBdpNbhVtlrQ==}
|
1077 |
+
engines: {node: '>= 14.0.0'}
|
1078 |
+
|
1079 |
+
'@smithy/[email protected]':
|
1080 |
+
resolution: {integrity: sha512-7iKXR+/4TpLK194pVjKiasIyqMtTYJsgKgM242Y9uzt5dhHnUDvMNb+3xIhRJ9QhvqGii/5cRUt4fJn3dtXNHQ==}
|
1081 |
+
engines: {node: '>=14.0.0'}
|
1082 |
+
|
1083 |
+
'@smithy/[email protected]':
|
1084 |
+
resolution: {integrity: sha512-L1qpleXf9QD6LwLCJ5jddGkgWyuSvWBkJwWAZ6kFkdifdso+sk3L3O1HdmPvCdnCK3IS4qWyPxev01QMnfHSBw==}
|
1085 |
+
engines: {node: '>=14.0.0'}
|
1086 |
+
|
1087 |
+
'@smithy/[email protected]':
|
1088 |
+
resolution: {integrity: sha512-q9+pAFPTfftHXRytmZ7GzLFFrEGavqapFc06XxzZFcSIGERXMerXxCitjOG1prVDR9QdjqotF40SWvbqcCpf8g==}
|
1089 |
+
engines: {node: '>= 14.0.0'}
|
1090 |
+
|
1091 |
+
'@smithy/[email protected]':
|
1092 |
+
resolution: {integrity: sha512-17faEXbYWIRst1aU9SvPZyMdWmqIrduZjVOqCPMIsWFNxs5yQQgFrJL6b2SdiCzyW9mJoDjFtgi53xx7EH+BXA==}
|
1093 |
+
engines: {node: '>=14.0.0'}
|
1094 |
+
|
1095 |
+
'@smithy/[email protected]':
|
1096 |
+
resolution: {integrity: sha512-jtmJMyt1xMD/d8OtbVJ2gFZOSKc+ueYJZPW20ULW1GOp/q/YIM0wNh+u8ZFao9UaIGz4WoPW8hC64qlWLIfoDA==}
|
1097 |
+
engines: {node: '>=14.0.0'}
|
1098 |
+
|
1099 |
+
'@smithy/[email protected]':
|
1100 |
+
resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==}
|
1101 |
+
engines: {node: '>=14.0.0'}
|
1102 |
+
|
1103 |
+
'@smithy/[email protected]':
|
1104 |
+
resolution: {integrity: sha512-IHk53BVw6MPMi2Gsn+hCng8rFA3ZmR3Rk7GllxDUW9qFJl/hiSvskn7XldkECapQVkIg/1dHpMAxI9xSTaLLSA==}
|
1105 |
+
engines: {node: '>=14.0.0'}
|
1106 |
+
|
1107 |
'@swc/[email protected]':
|
1108 |
resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==}
|
1109 |
|
|
|
1367 |
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
|
1368 |
engines: {node: '>= 0.4'}
|
1369 |
|
|
|
|
|
|
|
|
|
1370 | |
1371 |
resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
|
1372 |
engines: {node: '>=4'}
|
|
|
1383 | |
1384 |
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
1385 |
|
|
|
|
|
|
|
1386 | |
1387 |
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
|
1388 |
engines: {node: '>=8'}
|
1389 |
|
1390 | |
1391 |
+
resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==}
|
1392 |
+
|
1393 | |
1394 |
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
1395 |
|
|
|
1405 |
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
1406 |
hasBin: true
|
1407 |
|
|
|
|
|
|
|
1408 | |
1409 |
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
|
1410 |
engines: {node: '>=10.16.0'}
|
|
|
1783 |
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
|
1784 |
engines: {node: '>=6'}
|
1785 |
|
|
|
|
|
|
|
|
|
1786 | |
1787 |
resolution: {integrity: sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==}
|
1788 |
engines: {node: '>=14.18'}
|
|
|
1803 | |
1804 |
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
1805 |
|
1806 | |
1807 |
+
resolution: {integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==}
|
1808 |
+
hasBin: true
|
1809 |
+
|
1810 | |
1811 |
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
|
1812 |
|
|
|
2008 | |
2009 |
resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
|
2010 |
|
|
|
|
|
|
|
2011 | |
2012 |
resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
|
2013 |
engines: {node: '>= 4'}
|
|
|
2045 | |
2046 |
resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
|
2047 |
|
|
|
|
|
|
|
|
|
2048 | |
2049 |
resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
|
2050 |
engines: {node: '>= 0.4'}
|
|
|
2170 |
resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
|
2171 |
engines: {node: '>= 0.4'}
|
2172 |
|
|
|
|
|
|
|
2173 | |
2174 |
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
|
2175 |
|
|
|
2187 |
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
|
2188 |
hasBin: true
|
2189 |
|
|
|
|
|
|
|
|
|
2190 | |
2191 |
resolution: {integrity: sha512-6ScbIk2WWCeXkmzF6bRPmEuaqy1m8SbsRFMa/FLrSCkGIhj8OLVG/IH+XHVmNMx/KUo8cVWEE6oKR4dJ+S0Rkg==}
|
2192 |
|
|
|
2758 | |
2759 |
resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
|
2760 |
|
|
|
|
|
|
|
2761 | |
2762 |
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
2763 |
engines: {node: '>=6'}
|
2764 |
|
|
|
|
|
|
|
|
|
|
|
2765 | |
2766 |
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
2767 |
|
|
|
2920 |
resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
|
2921 |
engines: {node: '>= 0.4'}
|
2922 |
|
|
|
|
|
|
|
2923 | |
2924 |
resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
|
2925 |
|
|
|
3038 |
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
3039 |
engines: {node: '>=8'}
|
3040 |
|
3041 | |
3042 |
+
resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
|
3043 |
+
|
3044 | |
3045 |
resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==}
|
3046 |
|
|
|
3150 | |
3151 |
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
|
3152 |
|
3153 | |
3154 |
+
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
|
3155 |
+
|
3156 | |
3157 |
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
|
3158 |
|
|
|
3221 | |
3222 |
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
3223 |
|
|
|
|
|
|
|
3224 | |
3225 |
resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
|
3226 |
engines: {node: '>=10'}
|
|
|
3272 | |
3273 |
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
3274 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3275 | |
3276 |
resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
|
3277 |
hasBin: true
|
|
|
3340 | |
3341 |
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
3342 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3343 | |
3344 |
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
|
3345 |
engines: {node: '>=0.4'}
|
|
|
3380 |
preact: 10.11.3
|
3381 |
preact-render-to-string: 5.2.3([email protected])
|
3382 |
|
3383 |
+
'@aws-crypto/[email protected]':
|
3384 |
+
dependencies:
|
3385 |
+
'@aws-crypto/util': 3.0.0
|
3386 |
+
'@aws-sdk/types': 3.535.0
|
3387 |
+
tslib: 1.14.1
|
3388 |
+
|
3389 |
+
'@aws-crypto/[email protected]':
|
3390 |
+
dependencies:
|
3391 |
+
'@aws-crypto/util': 3.0.0
|
3392 |
+
'@aws-sdk/types': 3.535.0
|
3393 |
+
tslib: 1.14.1
|
3394 |
+
|
3395 |
+
'@aws-crypto/[email protected]':
|
3396 |
+
dependencies:
|
3397 |
+
tslib: 1.14.1
|
3398 |
+
|
3399 |
+
'@aws-crypto/[email protected]':
|
3400 |
+
dependencies:
|
3401 |
+
'@aws-crypto/ie11-detection': 3.0.0
|
3402 |
+
'@aws-crypto/supports-web-crypto': 3.0.0
|
3403 |
+
'@aws-crypto/util': 3.0.0
|
3404 |
+
'@aws-sdk/types': 3.535.0
|
3405 |
+
'@aws-sdk/util-locate-window': 3.535.0
|
3406 |
+
'@aws-sdk/util-utf8-browser': 3.259.0
|
3407 |
+
tslib: 1.14.1
|
3408 |
+
|
3409 |
+
'@aws-crypto/[email protected]':
|
3410 |
+
dependencies:
|
3411 |
+
'@aws-crypto/ie11-detection': 3.0.0
|
3412 |
+
'@aws-crypto/sha256-js': 3.0.0
|
3413 |
+
'@aws-crypto/supports-web-crypto': 3.0.0
|
3414 |
+
'@aws-crypto/util': 3.0.0
|
3415 |
+
'@aws-sdk/types': 3.535.0
|
3416 |
+
'@aws-sdk/util-locate-window': 3.535.0
|
3417 |
+
'@aws-sdk/util-utf8-browser': 3.259.0
|
3418 |
+
tslib: 1.14.1
|
3419 |
+
|
3420 |
+
'@aws-crypto/[email protected]':
|
3421 |
+
dependencies:
|
3422 |
+
'@aws-crypto/util': 3.0.0
|
3423 |
+
'@aws-sdk/types': 3.535.0
|
3424 |
+
tslib: 1.14.1
|
3425 |
+
|
3426 |
+
'@aws-crypto/[email protected]':
|
3427 |
+
dependencies:
|
3428 |
+
tslib: 1.14.1
|
3429 |
+
|
3430 |
+
'@aws-crypto/[email protected]':
|
3431 |
+
dependencies:
|
3432 |
+
'@aws-sdk/types': 3.535.0
|
3433 |
+
'@aws-sdk/util-utf8-browser': 3.259.0
|
3434 |
+
tslib: 1.14.1
|
3435 |
+
|
3436 |
+
'@aws-sdk/[email protected]':
|
3437 |
+
dependencies:
|
3438 |
+
'@aws-crypto/sha256-browser': 3.0.0
|
3439 |
+
'@aws-crypto/sha256-js': 3.0.0
|
3440 |
+
'@aws-sdk/client-sts': 3.556.0(@aws-sdk/[email protected])
|
3441 |
+
'@aws-sdk/core': 3.556.0
|
3442 |
+
'@aws-sdk/credential-provider-node': 3.556.0
|
3443 |
+
'@aws-sdk/middleware-host-header': 3.535.0
|
3444 |
+
'@aws-sdk/middleware-logger': 3.535.0
|
3445 |
+
'@aws-sdk/middleware-recursion-detection': 3.535.0
|
3446 |
+
'@aws-sdk/middleware-user-agent': 3.540.0
|
3447 |
+
'@aws-sdk/region-config-resolver': 3.535.0
|
3448 |
+
'@aws-sdk/types': 3.535.0
|
3449 |
+
'@aws-sdk/util-endpoints': 3.540.0
|
3450 |
+
'@aws-sdk/util-user-agent-browser': 3.535.0
|
3451 |
+
'@aws-sdk/util-user-agent-node': 3.535.0
|
3452 |
+
'@smithy/config-resolver': 2.2.0
|
3453 |
+
'@smithy/core': 1.4.2
|
3454 |
+
'@smithy/fetch-http-handler': 2.5.0
|
3455 |
+
'@smithy/hash-node': 2.2.0
|
3456 |
+
'@smithy/invalid-dependency': 2.2.0
|
3457 |
+
'@smithy/middleware-content-length': 2.2.0
|
3458 |
+
'@smithy/middleware-endpoint': 2.5.1
|
3459 |
+
'@smithy/middleware-retry': 2.3.1
|
3460 |
+
'@smithy/middleware-serde': 2.3.0
|
3461 |
+
'@smithy/middleware-stack': 2.2.0
|
3462 |
+
'@smithy/node-config-provider': 2.3.0
|
3463 |
+
'@smithy/node-http-handler': 2.5.0
|
3464 |
+
'@smithy/protocol-http': 3.3.0
|
3465 |
+
'@smithy/smithy-client': 2.5.1
|
3466 |
+
'@smithy/types': 2.12.0
|
3467 |
+
'@smithy/url-parser': 2.2.0
|
3468 |
+
'@smithy/util-base64': 2.3.0
|
3469 |
+
'@smithy/util-body-length-browser': 2.2.0
|
3470 |
+
'@smithy/util-body-length-node': 2.3.0
|
3471 |
+
'@smithy/util-defaults-mode-browser': 2.2.1
|
3472 |
+
'@smithy/util-defaults-mode-node': 2.3.1
|
3473 |
+
'@smithy/util-endpoints': 1.2.0
|
3474 |
+
'@smithy/util-middleware': 2.2.0
|
3475 |
+
'@smithy/util-retry': 2.2.0
|
3476 |
+
'@smithy/util-utf8': 2.3.0
|
3477 |
+
tslib: 2.6.2
|
3478 |
+
transitivePeerDependencies:
|
3479 |
+
- aws-crt
|
3480 |
+
|
3481 |
+
'@aws-sdk/[email protected]':
|
3482 |
+
dependencies:
|
3483 |
+
'@aws-crypto/sha1-browser': 3.0.0
|
3484 |
+
'@aws-crypto/sha256-browser': 3.0.0
|
3485 |
+
'@aws-crypto/sha256-js': 3.0.0
|
3486 |
+
'@aws-sdk/client-sts': 3.556.0(@aws-sdk/[email protected])
|
3487 |
+
'@aws-sdk/core': 3.556.0
|
3488 |
+
'@aws-sdk/credential-provider-node': 3.556.0
|
3489 |
+
'@aws-sdk/middleware-bucket-endpoint': 3.535.0
|
3490 |
+
'@aws-sdk/middleware-expect-continue': 3.535.0
|
3491 |
+
'@aws-sdk/middleware-flexible-checksums': 3.535.0
|
3492 |
+
'@aws-sdk/middleware-host-header': 3.535.0
|
3493 |
+
'@aws-sdk/middleware-location-constraint': 3.535.0
|
3494 |
+
'@aws-sdk/middleware-logger': 3.535.0
|
3495 |
+
'@aws-sdk/middleware-recursion-detection': 3.535.0
|
3496 |
+
'@aws-sdk/middleware-sdk-s3': 3.556.0
|
3497 |
+
'@aws-sdk/middleware-signing': 3.556.0
|
3498 |
+
'@aws-sdk/middleware-ssec': 3.537.0
|
3499 |
+
'@aws-sdk/middleware-user-agent': 3.540.0
|
3500 |
+
'@aws-sdk/region-config-resolver': 3.535.0
|
3501 |
+
'@aws-sdk/signature-v4-multi-region': 3.556.0
|
3502 |
+
'@aws-sdk/types': 3.535.0
|
3503 |
+
'@aws-sdk/util-endpoints': 3.540.0
|
3504 |
+
'@aws-sdk/util-user-agent-browser': 3.535.0
|
3505 |
+
'@aws-sdk/util-user-agent-node': 3.535.0
|
3506 |
+
'@aws-sdk/xml-builder': 3.535.0
|
3507 |
+
'@smithy/config-resolver': 2.2.0
|
3508 |
+
'@smithy/core': 1.4.2
|
3509 |
+
'@smithy/eventstream-serde-browser': 2.2.0
|
3510 |
+
'@smithy/eventstream-serde-config-resolver': 2.2.0
|
3511 |
+
'@smithy/eventstream-serde-node': 2.2.0
|
3512 |
+
'@smithy/fetch-http-handler': 2.5.0
|
3513 |
+
'@smithy/hash-blob-browser': 2.2.0
|
3514 |
+
'@smithy/hash-node': 2.2.0
|
3515 |
+
'@smithy/hash-stream-node': 2.2.0
|
3516 |
+
'@smithy/invalid-dependency': 2.2.0
|
3517 |
+
'@smithy/md5-js': 2.2.0
|
3518 |
+
'@smithy/middleware-content-length': 2.2.0
|
3519 |
+
'@smithy/middleware-endpoint': 2.5.1
|
3520 |
+
'@smithy/middleware-retry': 2.3.1
|
3521 |
+
'@smithy/middleware-serde': 2.3.0
|
3522 |
+
'@smithy/middleware-stack': 2.2.0
|
3523 |
+
'@smithy/node-config-provider': 2.3.0
|
3524 |
+
'@smithy/node-http-handler': 2.5.0
|
3525 |
+
'@smithy/protocol-http': 3.3.0
|
3526 |
+
'@smithy/smithy-client': 2.5.1
|
3527 |
+
'@smithy/types': 2.12.0
|
3528 |
+
'@smithy/url-parser': 2.2.0
|
3529 |
+
'@smithy/util-base64': 2.3.0
|
3530 |
+
'@smithy/util-body-length-browser': 2.2.0
|
3531 |
+
'@smithy/util-body-length-node': 2.3.0
|
3532 |
+
'@smithy/util-defaults-mode-browser': 2.2.1
|
3533 |
+
'@smithy/util-defaults-mode-node': 2.3.1
|
3534 |
+
'@smithy/util-endpoints': 1.2.0
|
3535 |
+
'@smithy/util-retry': 2.2.0
|
3536 |
+
'@smithy/util-stream': 2.2.0
|
3537 |
+
'@smithy/util-utf8': 2.3.0
|
3538 |
+
'@smithy/util-waiter': 2.2.0
|
3539 |
+
tslib: 2.6.2
|
3540 |
+
transitivePeerDependencies:
|
3541 |
+
- aws-crt
|
3542 |
+
|
3543 |
+
'@aws-sdk/[email protected](@aws-sdk/[email protected])':
|
3544 |
+
dependencies:
|
3545 |
+
'@aws-crypto/sha256-browser': 3.0.0
|
3546 |
+
'@aws-crypto/sha256-js': 3.0.0
|
3547 |
+
'@aws-sdk/client-sts': 3.556.0(@aws-sdk/[email protected])
|
3548 |
+
'@aws-sdk/core': 3.556.0
|
3549 |
+
'@aws-sdk/credential-provider-node': 3.556.0
|
3550 |
+
'@aws-sdk/middleware-host-header': 3.535.0
|
3551 |
+
'@aws-sdk/middleware-logger': 3.535.0
|
3552 |
+
'@aws-sdk/middleware-recursion-detection': 3.535.0
|
3553 |
+
'@aws-sdk/middleware-user-agent': 3.540.0
|
3554 |
+
'@aws-sdk/region-config-resolver': 3.535.0
|
3555 |
+
'@aws-sdk/types': 3.535.0
|
3556 |
+
'@aws-sdk/util-endpoints': 3.540.0
|
3557 |
+
'@aws-sdk/util-user-agent-browser': 3.535.0
|
3558 |
+
'@aws-sdk/util-user-agent-node': 3.535.0
|
3559 |
+
'@smithy/config-resolver': 2.2.0
|
3560 |
+
'@smithy/core': 1.4.2
|
3561 |
+
'@smithy/fetch-http-handler': 2.5.0
|
3562 |
+
'@smithy/hash-node': 2.2.0
|
3563 |
+
'@smithy/invalid-dependency': 2.2.0
|
3564 |
+
'@smithy/middleware-content-length': 2.2.0
|
3565 |
+
'@smithy/middleware-endpoint': 2.5.1
|
3566 |
+
'@smithy/middleware-retry': 2.3.1
|
3567 |
+
'@smithy/middleware-serde': 2.3.0
|
3568 |
+
'@smithy/middleware-stack': 2.2.0
|
3569 |
+
'@smithy/node-config-provider': 2.3.0
|
3570 |
+
'@smithy/node-http-handler': 2.5.0
|
3571 |
+
'@smithy/protocol-http': 3.3.0
|
3572 |
+
'@smithy/smithy-client': 2.5.1
|
3573 |
+
'@smithy/types': 2.12.0
|
3574 |
+
'@smithy/url-parser': 2.2.0
|
3575 |
+
'@smithy/util-base64': 2.3.0
|
3576 |
+
'@smithy/util-body-length-browser': 2.2.0
|
3577 |
+
'@smithy/util-body-length-node': 2.3.0
|
3578 |
+
'@smithy/util-defaults-mode-browser': 2.2.1
|
3579 |
+
'@smithy/util-defaults-mode-node': 2.3.1
|
3580 |
+
'@smithy/util-endpoints': 1.2.0
|
3581 |
+
'@smithy/util-middleware': 2.2.0
|
3582 |
+
'@smithy/util-retry': 2.2.0
|
3583 |
+
'@smithy/util-utf8': 2.3.0
|
3584 |
+
tslib: 2.6.2
|
3585 |
+
transitivePeerDependencies:
|
3586 |
+
- aws-crt
|
3587 |
+
|
3588 |
+
'@aws-sdk/[email protected]':
|
3589 |
+
dependencies:
|
3590 |
+
'@aws-crypto/sha256-browser': 3.0.0
|
3591 |
+
'@aws-crypto/sha256-js': 3.0.0
|
3592 |
+
'@aws-sdk/core': 3.556.0
|
3593 |
+
'@aws-sdk/middleware-host-header': 3.535.0
|
3594 |
+
'@aws-sdk/middleware-logger': 3.535.0
|
3595 |
+
'@aws-sdk/middleware-recursion-detection': 3.535.0
|
3596 |
+
'@aws-sdk/middleware-user-agent': 3.540.0
|
3597 |
+
'@aws-sdk/region-config-resolver': 3.535.0
|
3598 |
+
'@aws-sdk/types': 3.535.0
|
3599 |
+
'@aws-sdk/util-endpoints': 3.540.0
|
3600 |
+
'@aws-sdk/util-user-agent-browser': 3.535.0
|
3601 |
+
'@aws-sdk/util-user-agent-node': 3.535.0
|
3602 |
+
'@smithy/config-resolver': 2.2.0
|
3603 |
+
'@smithy/core': 1.4.2
|
3604 |
+
'@smithy/fetch-http-handler': 2.5.0
|
3605 |
+
'@smithy/hash-node': 2.2.0
|
3606 |
+
'@smithy/invalid-dependency': 2.2.0
|
3607 |
+
'@smithy/middleware-content-length': 2.2.0
|
3608 |
+
'@smithy/middleware-endpoint': 2.5.1
|
3609 |
+
'@smithy/middleware-retry': 2.3.1
|
3610 |
+
'@smithy/middleware-serde': 2.3.0
|
3611 |
+
'@smithy/middleware-stack': 2.2.0
|
3612 |
+
'@smithy/node-config-provider': 2.3.0
|
3613 |
+
'@smithy/node-http-handler': 2.5.0
|
3614 |
+
'@smithy/protocol-http': 3.3.0
|
3615 |
+
'@smithy/smithy-client': 2.5.1
|
3616 |
+
'@smithy/types': 2.12.0
|
3617 |
+
'@smithy/url-parser': 2.2.0
|
3618 |
+
'@smithy/util-base64': 2.3.0
|
3619 |
+
'@smithy/util-body-length-browser': 2.2.0
|
3620 |
+
'@smithy/util-body-length-node': 2.3.0
|
3621 |
+
'@smithy/util-defaults-mode-browser': 2.2.1
|
3622 |
+
'@smithy/util-defaults-mode-node': 2.3.1
|
3623 |
+
'@smithy/util-endpoints': 1.2.0
|
3624 |
+
'@smithy/util-middleware': 2.2.0
|
3625 |
+
'@smithy/util-retry': 2.2.0
|
3626 |
+
'@smithy/util-utf8': 2.3.0
|
3627 |
+
tslib: 2.6.2
|
3628 |
+
transitivePeerDependencies:
|
3629 |
+
- aws-crt
|
3630 |
+
|
3631 |
+
'@aws-sdk/[email protected](@aws-sdk/[email protected])':
|
3632 |
+
dependencies:
|
3633 |
+
'@aws-crypto/sha256-browser': 3.0.0
|
3634 |
+
'@aws-crypto/sha256-js': 3.0.0
|
3635 |
+
'@aws-sdk/core': 3.556.0
|
3636 |
+
'@aws-sdk/credential-provider-node': 3.556.0
|
3637 |
+
'@aws-sdk/middleware-host-header': 3.535.0
|
3638 |
+
'@aws-sdk/middleware-logger': 3.535.0
|
3639 |
+
'@aws-sdk/middleware-recursion-detection': 3.535.0
|
3640 |
+
'@aws-sdk/middleware-user-agent': 3.540.0
|
3641 |
+
'@aws-sdk/region-config-resolver': 3.535.0
|
3642 |
+
'@aws-sdk/types': 3.535.0
|
3643 |
+
'@aws-sdk/util-endpoints': 3.540.0
|
3644 |
+
'@aws-sdk/util-user-agent-browser': 3.535.0
|
3645 |
+
'@aws-sdk/util-user-agent-node': 3.535.0
|
3646 |
+
'@smithy/config-resolver': 2.2.0
|
3647 |
+
'@smithy/core': 1.4.2
|
3648 |
+
'@smithy/fetch-http-handler': 2.5.0
|
3649 |
+
'@smithy/hash-node': 2.2.0
|
3650 |
+
'@smithy/invalid-dependency': 2.2.0
|
3651 |
+
'@smithy/middleware-content-length': 2.2.0
|
3652 |
+
'@smithy/middleware-endpoint': 2.5.1
|
3653 |
+
'@smithy/middleware-retry': 2.3.1
|
3654 |
+
'@smithy/middleware-serde': 2.3.0
|
3655 |
+
'@smithy/middleware-stack': 2.2.0
|
3656 |
+
'@smithy/node-config-provider': 2.3.0
|
3657 |
+
'@smithy/node-http-handler': 2.5.0
|
3658 |
+
'@smithy/protocol-http': 3.3.0
|
3659 |
+
'@smithy/smithy-client': 2.5.1
|
3660 |
+
'@smithy/types': 2.12.0
|
3661 |
+
'@smithy/url-parser': 2.2.0
|
3662 |
+
'@smithy/util-base64': 2.3.0
|
3663 |
+
'@smithy/util-body-length-browser': 2.2.0
|
3664 |
+
'@smithy/util-body-length-node': 2.3.0
|
3665 |
+
'@smithy/util-defaults-mode-browser': 2.2.1
|
3666 |
+
'@smithy/util-defaults-mode-node': 2.3.1
|
3667 |
+
'@smithy/util-endpoints': 1.2.0
|
3668 |
+
'@smithy/util-middleware': 2.2.0
|
3669 |
+
'@smithy/util-retry': 2.2.0
|
3670 |
+
'@smithy/util-utf8': 2.3.0
|
3671 |
+
tslib: 2.6.2
|
3672 |
+
transitivePeerDependencies:
|
3673 |
+
- aws-crt
|
3674 |
+
|
3675 |
+
'@aws-sdk/[email protected]':
|
3676 |
+
dependencies:
|
3677 |
+
'@smithy/core': 1.4.2
|
3678 |
+
'@smithy/protocol-http': 3.3.0
|
3679 |
+
'@smithy/signature-v4': 2.3.0
|
3680 |
+
'@smithy/smithy-client': 2.5.1
|
3681 |
+
'@smithy/types': 2.12.0
|
3682 |
+
fast-xml-parser: 4.2.5
|
3683 |
+
tslib: 2.6.2
|
3684 |
+
|
3685 |
+
'@aws-sdk/[email protected]':
|
3686 |
+
dependencies:
|
3687 |
+
'@aws-sdk/client-cognito-identity': 3.556.0
|
3688 |
+
'@aws-sdk/types': 3.535.0
|
3689 |
+
'@smithy/property-provider': 2.2.0
|
3690 |
+
'@smithy/types': 2.12.0
|
3691 |
+
tslib: 2.6.2
|
3692 |
+
transitivePeerDependencies:
|
3693 |
+
- aws-crt
|
3694 |
+
|
3695 |
+
'@aws-sdk/[email protected]':
|
3696 |
+
dependencies:
|
3697 |
+
'@aws-sdk/types': 3.535.0
|
3698 |
+
'@smithy/property-provider': 2.2.0
|
3699 |
+
'@smithy/types': 2.12.0
|
3700 |
+
tslib: 2.6.2
|
3701 |
+
|
3702 |
+
'@aws-sdk/[email protected]':
|
3703 |
+
dependencies:
|
3704 |
+
'@aws-sdk/types': 3.535.0
|
3705 |
+
'@smithy/fetch-http-handler': 2.5.0
|
3706 |
+
'@smithy/node-http-handler': 2.5.0
|
3707 |
+
'@smithy/property-provider': 2.2.0
|
3708 |
+
'@smithy/protocol-http': 3.3.0
|
3709 |
+
'@smithy/smithy-client': 2.5.1
|
3710 |
+
'@smithy/types': 2.12.0
|
3711 |
+
'@smithy/util-stream': 2.2.0
|
3712 |
+
tslib: 2.6.2
|
3713 |
+
|
3714 |
+
'@aws-sdk/[email protected](@aws-sdk/[email protected])':
|
3715 |
+
dependencies:
|
3716 |
+
'@aws-sdk/client-sts': 3.556.0(@aws-sdk/[email protected])
|
3717 |
+
'@aws-sdk/credential-provider-env': 3.535.0
|
3718 |
+
'@aws-sdk/credential-provider-process': 3.535.0
|
3719 |
+
'@aws-sdk/credential-provider-sso': 3.556.0(@aws-sdk/[email protected])
|
3720 |
+
'@aws-sdk/credential-provider-web-identity': 3.556.0(@aws-sdk/[email protected])
|
3721 |
+
'@aws-sdk/types': 3.535.0
|
3722 |
+
'@smithy/credential-provider-imds': 2.3.0
|
3723 |
+
'@smithy/property-provider': 2.2.0
|
3724 |
+
'@smithy/shared-ini-file-loader': 2.4.0
|
3725 |
+
'@smithy/types': 2.12.0
|
3726 |
+
tslib: 2.6.2
|
3727 |
+
transitivePeerDependencies:
|
3728 |
+
- '@aws-sdk/credential-provider-node'
|
3729 |
+
- aws-crt
|
3730 |
+
|
3731 |
+
'@aws-sdk/[email protected]':
|
3732 |
+
dependencies:
|
3733 |
+
'@aws-sdk/credential-provider-env': 3.535.0
|
3734 |
+
'@aws-sdk/credential-provider-http': 3.552.0
|
3735 |
+
'@aws-sdk/credential-provider-ini': 3.556.0(@aws-sdk/[email protected])
|
3736 |
+
'@aws-sdk/credential-provider-process': 3.535.0
|
3737 |
+
'@aws-sdk/credential-provider-sso': 3.556.0(@aws-sdk/[email protected])
|
3738 |
+
'@aws-sdk/credential-provider-web-identity': 3.556.0(@aws-sdk/[email protected])
|
3739 |
+
'@aws-sdk/types': 3.535.0
|
3740 |
+
'@smithy/credential-provider-imds': 2.3.0
|
3741 |
+
'@smithy/property-provider': 2.2.0
|
3742 |
+
'@smithy/shared-ini-file-loader': 2.4.0
|
3743 |
+
'@smithy/types': 2.12.0
|
3744 |
+
tslib: 2.6.2
|
3745 |
+
transitivePeerDependencies:
|
3746 |
+
- aws-crt
|
3747 |
+
|
3748 |
+
'@aws-sdk/[email protected]':
|
3749 |
+
dependencies:
|
3750 |
+
'@aws-sdk/types': 3.535.0
|
3751 |
+
'@smithy/property-provider': 2.2.0
|
3752 |
+
'@smithy/shared-ini-file-loader': 2.4.0
|
3753 |
+
'@smithy/types': 2.12.0
|
3754 |
+
tslib: 2.6.2
|
3755 |
+
|
3756 |
+
'@aws-sdk/[email protected](@aws-sdk/[email protected])':
|
3757 |
+
dependencies:
|
3758 |
+
'@aws-sdk/client-sso': 3.556.0
|
3759 |
+
'@aws-sdk/token-providers': 3.556.0(@aws-sdk/[email protected])
|
3760 |
+
'@aws-sdk/types': 3.535.0
|
3761 |
+
'@smithy/property-provider': 2.2.0
|
3762 |
+
'@smithy/shared-ini-file-loader': 2.4.0
|
3763 |
+
'@smithy/types': 2.12.0
|
3764 |
+
tslib: 2.6.2
|
3765 |
+
transitivePeerDependencies:
|
3766 |
+
- '@aws-sdk/credential-provider-node'
|
3767 |
+
- aws-crt
|
3768 |
+
|
3769 |
+
'@aws-sdk/[email protected](@aws-sdk/[email protected])':
|
3770 |
+
dependencies:
|
3771 |
+
'@aws-sdk/client-sts': 3.556.0(@aws-sdk/[email protected])
|
3772 |
+
'@aws-sdk/types': 3.535.0
|
3773 |
+
'@smithy/property-provider': 2.2.0
|
3774 |
+
'@smithy/types': 2.12.0
|
3775 |
+
tslib: 2.6.2
|
3776 |
+
transitivePeerDependencies:
|
3777 |
+
- '@aws-sdk/credential-provider-node'
|
3778 |
+
- aws-crt
|
3779 |
+
|
3780 |
+
'@aws-sdk/[email protected]':
|
3781 |
+
dependencies:
|
3782 |
+
'@aws-sdk/client-cognito-identity': 3.556.0
|
3783 |
+
'@aws-sdk/client-sso': 3.556.0
|
3784 |
+
'@aws-sdk/client-sts': 3.556.0(@aws-sdk/[email protected])
|
3785 |
+
'@aws-sdk/credential-provider-cognito-identity': 3.556.0
|
3786 |
+
'@aws-sdk/credential-provider-env': 3.535.0
|
3787 |
+
'@aws-sdk/credential-provider-http': 3.552.0
|
3788 |
+
'@aws-sdk/credential-provider-ini': 3.556.0(@aws-sdk/[email protected])
|
3789 |
+
'@aws-sdk/credential-provider-node': 3.556.0
|
3790 |
+
'@aws-sdk/credential-provider-process': 3.535.0
|
3791 |
+
'@aws-sdk/credential-provider-sso': 3.556.0(@aws-sdk/[email protected])
|
3792 |
+
'@aws-sdk/credential-provider-web-identity': 3.556.0(@aws-sdk/[email protected])
|
3793 |
+
'@aws-sdk/types': 3.535.0
|
3794 |
+
'@smithy/credential-provider-imds': 2.3.0
|
3795 |
+
'@smithy/property-provider': 2.2.0
|
3796 |
+
'@smithy/types': 2.12.0
|
3797 |
+
tslib: 2.6.2
|
3798 |
+
transitivePeerDependencies:
|
3799 |
+
- aws-crt
|
3800 |
+
|
3801 |
+
'@aws-sdk/[email protected]':
|
3802 |
+
dependencies:
|
3803 |
+
'@aws-sdk/types': 3.535.0
|
3804 |
+
'@aws-sdk/util-arn-parser': 3.535.0
|
3805 |
+
'@smithy/node-config-provider': 2.3.0
|
3806 |
+
'@smithy/protocol-http': 3.3.0
|
3807 |
+
'@smithy/types': 2.12.0
|
3808 |
+
'@smithy/util-config-provider': 2.3.0
|
3809 |
+
tslib: 2.6.2
|
3810 |
+
|
3811 |
+
'@aws-sdk/[email protected]':
|
3812 |
+
dependencies:
|
3813 |
+
'@aws-sdk/types': 3.535.0
|
3814 |
+
'@smithy/protocol-http': 3.3.0
|
3815 |
+
'@smithy/types': 2.12.0
|
3816 |
+
tslib: 2.6.2
|
3817 |
+
|
3818 |
+
'@aws-sdk/[email protected]':
|
3819 |
+
dependencies:
|
3820 |
+
'@aws-crypto/crc32': 3.0.0
|
3821 |
+
'@aws-crypto/crc32c': 3.0.0
|
3822 |
+
'@aws-sdk/types': 3.535.0
|
3823 |
+
'@smithy/is-array-buffer': 2.2.0
|
3824 |
+
'@smithy/protocol-http': 3.3.0
|
3825 |
+
'@smithy/types': 2.12.0
|
3826 |
+
'@smithy/util-utf8': 2.3.0
|
3827 |
+
tslib: 2.6.2
|
3828 |
+
|
3829 |
+
'@aws-sdk/[email protected]':
|
3830 |
+
dependencies:
|
3831 |
+
'@aws-sdk/types': 3.535.0
|
3832 |
+
'@smithy/protocol-http': 3.3.0
|
3833 |
+
'@smithy/types': 2.12.0
|
3834 |
+
tslib: 2.6.2
|
3835 |
+
|
3836 |
+
'@aws-sdk/[email protected]':
|
3837 |
+
dependencies:
|
3838 |
+
'@aws-sdk/types': 3.535.0
|
3839 |
+
'@smithy/types': 2.12.0
|
3840 |
+
tslib: 2.6.2
|
3841 |
+
|
3842 |
+
'@aws-sdk/[email protected]':
|
3843 |
+
dependencies:
|
3844 |
+
'@aws-sdk/types': 3.535.0
|
3845 |
+
'@smithy/types': 2.12.0
|
3846 |
+
tslib: 2.6.2
|
3847 |
+
|
3848 |
+
'@aws-sdk/[email protected]':
|
3849 |
+
dependencies:
|
3850 |
+
'@aws-sdk/types': 3.535.0
|
3851 |
+
'@smithy/protocol-http': 3.3.0
|
3852 |
+
'@smithy/types': 2.12.0
|
3853 |
+
tslib: 2.6.2
|
3854 |
+
|
3855 |
+
'@aws-sdk/[email protected]':
|
3856 |
+
dependencies:
|
3857 |
+
'@aws-sdk/types': 3.535.0
|
3858 |
+
'@aws-sdk/util-arn-parser': 3.535.0
|
3859 |
+
'@smithy/node-config-provider': 2.3.0
|
3860 |
+
'@smithy/protocol-http': 3.3.0
|
3861 |
+
'@smithy/signature-v4': 2.3.0
|
3862 |
+
'@smithy/smithy-client': 2.5.1
|
3863 |
+
'@smithy/types': 2.12.0
|
3864 |
+
'@smithy/util-config-provider': 2.3.0
|
3865 |
+
tslib: 2.6.2
|
3866 |
+
|
3867 |
+
'@aws-sdk/[email protected]':
|
3868 |
+
dependencies:
|
3869 |
+
'@aws-sdk/types': 3.535.0
|
3870 |
+
'@smithy/property-provider': 2.2.0
|
3871 |
+
'@smithy/protocol-http': 3.3.0
|
3872 |
+
'@smithy/signature-v4': 2.3.0
|
3873 |
+
'@smithy/types': 2.12.0
|
3874 |
+
'@smithy/util-middleware': 2.2.0
|
3875 |
+
tslib: 2.6.2
|
3876 |
+
|
3877 |
+
'@aws-sdk/[email protected]':
|
3878 |
+
dependencies:
|
3879 |
+
'@aws-sdk/types': 3.535.0
|
3880 |
+
'@smithy/types': 2.12.0
|
3881 |
+
tslib: 2.6.2
|
3882 |
+
|
3883 |
+
'@aws-sdk/[email protected]':
|
3884 |
+
dependencies:
|
3885 |
+
'@aws-sdk/types': 3.535.0
|
3886 |
+
'@aws-sdk/util-endpoints': 3.540.0
|
3887 |
+
'@smithy/protocol-http': 3.3.0
|
3888 |
+
'@smithy/types': 2.12.0
|
3889 |
+
tslib: 2.6.2
|
3890 |
+
|
3891 |
+
'@aws-sdk/[email protected]':
|
3892 |
+
dependencies:
|
3893 |
+
'@aws-sdk/types': 3.535.0
|
3894 |
+
'@smithy/node-config-provider': 2.3.0
|
3895 |
+
'@smithy/types': 2.12.0
|
3896 |
+
'@smithy/util-config-provider': 2.3.0
|
3897 |
+
'@smithy/util-middleware': 2.2.0
|
3898 |
+
tslib: 2.6.2
|
3899 |
+
|
3900 |
+
'@aws-sdk/[email protected]':
|
3901 |
+
dependencies:
|
3902 |
+
'@aws-sdk/client-s3': 3.556.0
|
3903 |
+
'@aws-sdk/types': 3.535.0
|
3904 |
+
'@aws-sdk/util-format-url': 3.535.0
|
3905 |
+
'@smithy/middleware-endpoint': 2.5.1
|
3906 |
+
'@smithy/signature-v4': 2.3.0
|
3907 |
+
'@smithy/types': 2.12.0
|
3908 |
+
'@smithy/util-hex-encoding': 2.2.0
|
3909 |
+
'@smithy/util-utf8': 2.3.0
|
3910 |
+
tslib: 2.6.2
|
3911 |
+
transitivePeerDependencies:
|
3912 |
+
- aws-crt
|
3913 |
+
|
3914 |
+
'@aws-sdk/[email protected]':
|
3915 |
+
dependencies:
|
3916 |
+
'@aws-sdk/middleware-sdk-s3': 3.556.0
|
3917 |
+
'@aws-sdk/types': 3.535.0
|
3918 |
+
'@smithy/protocol-http': 3.3.0
|
3919 |
+
'@smithy/signature-v4': 2.3.0
|
3920 |
+
'@smithy/types': 2.12.0
|
3921 |
+
tslib: 2.6.2
|
3922 |
+
|
3923 |
+
'@aws-sdk/[email protected](@aws-sdk/[email protected])':
|
3924 |
+
dependencies:
|
3925 |
+
'@aws-sdk/client-sso-oidc': 3.556.0(@aws-sdk/[email protected])
|
3926 |
+
'@aws-sdk/types': 3.535.0
|
3927 |
+
'@smithy/property-provider': 2.2.0
|
3928 |
+
'@smithy/shared-ini-file-loader': 2.4.0
|
3929 |
+
'@smithy/types': 2.12.0
|
3930 |
+
tslib: 2.6.2
|
3931 |
+
transitivePeerDependencies:
|
3932 |
+
- '@aws-sdk/credential-provider-node'
|
3933 |
+
- aws-crt
|
3934 |
+
|
3935 |
+
'@aws-sdk/[email protected]':
|
3936 |
+
dependencies:
|
3937 |
+
'@smithy/types': 2.12.0
|
3938 |
+
tslib: 2.6.2
|
3939 |
+
|
3940 |
+
'@aws-sdk/[email protected]':
|
3941 |
+
dependencies:
|
3942 |
+
tslib: 2.6.2
|
3943 |
+
|
3944 |
+
'@aws-sdk/[email protected]':
|
3945 |
+
dependencies:
|
3946 |
+
'@aws-sdk/types': 3.535.0
|
3947 |
+
'@smithy/types': 2.12.0
|
3948 |
+
'@smithy/util-endpoints': 1.2.0
|
3949 |
+
tslib: 2.6.2
|
3950 |
+
|
3951 |
+
'@aws-sdk/[email protected]':
|
3952 |
+
dependencies:
|
3953 |
+
'@aws-sdk/types': 3.535.0
|
3954 |
+
'@smithy/querystring-builder': 2.2.0
|
3955 |
+
'@smithy/types': 2.12.0
|
3956 |
+
tslib: 2.6.2
|
3957 |
+
|
3958 |
+
'@aws-sdk/[email protected]':
|
3959 |
+
dependencies:
|
3960 |
+
tslib: 2.6.2
|
3961 |
+
|
3962 |
+
'@aws-sdk/[email protected]':
|
3963 |
+
dependencies:
|
3964 |
+
'@aws-sdk/types': 3.535.0
|
3965 |
+
'@smithy/types': 2.12.0
|
3966 |
+
bowser: 2.11.0
|
3967 |
+
tslib: 2.6.2
|
3968 |
+
|
3969 |
+
'@aws-sdk/[email protected]':
|
3970 |
+
dependencies:
|
3971 |
+
'@aws-sdk/types': 3.535.0
|
3972 |
+
'@smithy/node-config-provider': 2.3.0
|
3973 |
+
'@smithy/types': 2.12.0
|
3974 |
+
tslib: 2.6.2
|
3975 |
+
|
3976 |
+
'@aws-sdk/[email protected]':
|
3977 |
+
dependencies:
|
3978 |
+
tslib: 2.6.2
|
3979 |
+
|
3980 |
+
'@aws-sdk/[email protected]':
|
3981 |
+
dependencies:
|
3982 |
+
'@smithy/types': 2.12.0
|
3983 |
+
tslib: 2.6.2
|
3984 |
+
|
3985 |
'@babel/[email protected]': {}
|
3986 |
|
3987 |
'@babel/[email protected]': {}
|
|
|
4504 |
|
4505 |
'@rushstack/[email protected]': {}
|
4506 |
|
4507 |
+
'@smithy/[email protected]':
|
4508 |
+
dependencies:
|
4509 |
+
'@smithy/types': 2.12.0
|
4510 |
+
tslib: 2.6.2
|
4511 |
+
|
4512 |
+
'@smithy/[email protected]':
|
4513 |
+
dependencies:
|
4514 |
+
'@smithy/util-base64': 2.3.0
|
4515 |
+
tslib: 2.6.2
|
4516 |
+
|
4517 |
+
'@smithy/[email protected]':
|
4518 |
+
dependencies:
|
4519 |
+
tslib: 2.6.2
|
4520 |
+
|
4521 |
+
'@smithy/[email protected]':
|
4522 |
+
dependencies:
|
4523 |
+
'@smithy/node-config-provider': 2.3.0
|
4524 |
+
'@smithy/types': 2.12.0
|
4525 |
+
'@smithy/util-config-provider': 2.3.0
|
4526 |
+
'@smithy/util-middleware': 2.2.0
|
4527 |
+
tslib: 2.6.2
|
4528 |
+
|
4529 |
+
'@smithy/[email protected]':
|
4530 |
+
dependencies:
|
4531 |
+
'@smithy/middleware-endpoint': 2.5.1
|
4532 |
+
'@smithy/middleware-retry': 2.3.1
|
4533 |
+
'@smithy/middleware-serde': 2.3.0
|
4534 |
+
'@smithy/protocol-http': 3.3.0
|
4535 |
+
'@smithy/smithy-client': 2.5.1
|
4536 |
+
'@smithy/types': 2.12.0
|
4537 |
+
'@smithy/util-middleware': 2.2.0
|
4538 |
+
tslib: 2.6.2
|
4539 |
+
|
4540 |
+
'@smithy/[email protected]':
|
4541 |
+
dependencies:
|
4542 |
+
'@smithy/node-config-provider': 2.3.0
|
4543 |
+
'@smithy/property-provider': 2.2.0
|
4544 |
+
'@smithy/types': 2.12.0
|
4545 |
+
'@smithy/url-parser': 2.2.0
|
4546 |
+
tslib: 2.6.2
|
4547 |
+
|
4548 |
+
'@smithy/[email protected]':
|
4549 |
+
dependencies:
|
4550 |
+
'@aws-crypto/crc32': 3.0.0
|
4551 |
+
'@smithy/types': 2.12.0
|
4552 |
+
'@smithy/util-hex-encoding': 2.2.0
|
4553 |
+
tslib: 2.6.2
|
4554 |
+
|
4555 |
+
'@smithy/[email protected]':
|
4556 |
+
dependencies:
|
4557 |
+
'@smithy/eventstream-serde-universal': 2.2.0
|
4558 |
+
'@smithy/types': 2.12.0
|
4559 |
+
tslib: 2.6.2
|
4560 |
+
|
4561 |
+
'@smithy/[email protected]':
|
4562 |
+
dependencies:
|
4563 |
+
'@smithy/types': 2.12.0
|
4564 |
+
tslib: 2.6.2
|
4565 |
+
|
4566 |
+
'@smithy/[email protected]':
|
4567 |
+
dependencies:
|
4568 |
+
'@smithy/eventstream-serde-universal': 2.2.0
|
4569 |
+
'@smithy/types': 2.12.0
|
4570 |
+
tslib: 2.6.2
|
4571 |
+
|
4572 |
+
'@smithy/[email protected]':
|
4573 |
+
dependencies:
|
4574 |
+
'@smithy/eventstream-codec': 2.2.0
|
4575 |
+
'@smithy/types': 2.12.0
|
4576 |
+
tslib: 2.6.2
|
4577 |
+
|
4578 |
+
'@smithy/[email protected]':
|
4579 |
+
dependencies:
|
4580 |
+
'@smithy/protocol-http': 3.3.0
|
4581 |
+
'@smithy/querystring-builder': 2.2.0
|
4582 |
+
'@smithy/types': 2.12.0
|
4583 |
+
'@smithy/util-base64': 2.3.0
|
4584 |
+
tslib: 2.6.2
|
4585 |
+
|
4586 |
+
'@smithy/[email protected]':
|
4587 |
+
dependencies:
|
4588 |
+
'@smithy/chunked-blob-reader': 2.2.0
|
4589 |
+
'@smithy/chunked-blob-reader-native': 2.2.0
|
4590 |
+
'@smithy/types': 2.12.0
|
4591 |
+
tslib: 2.6.2
|
4592 |
+
|
4593 |
+
'@smithy/[email protected]':
|
4594 |
+
dependencies:
|
4595 |
+
'@smithy/types': 2.12.0
|
4596 |
+
'@smithy/util-buffer-from': 2.2.0
|
4597 |
+
'@smithy/util-utf8': 2.3.0
|
4598 |
+
tslib: 2.6.2
|
4599 |
+
|
4600 |
+
'@smithy/[email protected]':
|
4601 |
+
dependencies:
|
4602 |
+
'@smithy/types': 2.12.0
|
4603 |
+
'@smithy/util-utf8': 2.3.0
|
4604 |
+
tslib: 2.6.2
|
4605 |
+
|
4606 |
+
'@smithy/[email protected]':
|
4607 |
+
dependencies:
|
4608 |
+
'@smithy/types': 2.12.0
|
4609 |
+
tslib: 2.6.2
|
4610 |
+
|
4611 |
+
'@smithy/[email protected]':
|
4612 |
+
dependencies:
|
4613 |
+
tslib: 2.6.2
|
4614 |
+
|
4615 |
+
'@smithy/[email protected]':
|
4616 |
+
dependencies:
|
4617 |
+
'@smithy/types': 2.12.0
|
4618 |
+
'@smithy/util-utf8': 2.3.0
|
4619 |
+
tslib: 2.6.2
|
4620 |
+
|
4621 |
+
'@smithy/[email protected]':
|
4622 |
+
dependencies:
|
4623 |
+
'@smithy/protocol-http': 3.3.0
|
4624 |
+
'@smithy/types': 2.12.0
|
4625 |
+
tslib: 2.6.2
|
4626 |
+
|
4627 |
+
'@smithy/[email protected]':
|
4628 |
+
dependencies:
|
4629 |
+
'@smithy/middleware-serde': 2.3.0
|
4630 |
+
'@smithy/node-config-provider': 2.3.0
|
4631 |
+
'@smithy/shared-ini-file-loader': 2.4.0
|
4632 |
+
'@smithy/types': 2.12.0
|
4633 |
+
'@smithy/url-parser': 2.2.0
|
4634 |
+
'@smithy/util-middleware': 2.2.0
|
4635 |
+
tslib: 2.6.2
|
4636 |
+
|
4637 |
+
'@smithy/[email protected]':
|
4638 |
+
dependencies:
|
4639 |
+
'@smithy/node-config-provider': 2.3.0
|
4640 |
+
'@smithy/protocol-http': 3.3.0
|
4641 |
+
'@smithy/service-error-classification': 2.1.5
|
4642 |
+
'@smithy/smithy-client': 2.5.1
|
4643 |
+
'@smithy/types': 2.12.0
|
4644 |
+
'@smithy/util-middleware': 2.2.0
|
4645 |
+
'@smithy/util-retry': 2.2.0
|
4646 |
+
tslib: 2.6.2
|
4647 |
+
uuid: 9.0.1
|
4648 |
+
|
4649 |
+
'@smithy/[email protected]':
|
4650 |
+
dependencies:
|
4651 |
+
'@smithy/types': 2.12.0
|
4652 |
+
tslib: 2.6.2
|
4653 |
+
|
4654 |
+
'@smithy/[email protected]':
|
4655 |
+
dependencies:
|
4656 |
+
'@smithy/types': 2.12.0
|
4657 |
+
tslib: 2.6.2
|
4658 |
+
|
4659 |
+
'@smithy/[email protected]':
|
4660 |
+
dependencies:
|
4661 |
+
'@smithy/property-provider': 2.2.0
|
4662 |
+
'@smithy/shared-ini-file-loader': 2.4.0
|
4663 |
+
'@smithy/types': 2.12.0
|
4664 |
+
tslib: 2.6.2
|
4665 |
+
|
4666 |
+
'@smithy/[email protected]':
|
4667 |
+
dependencies:
|
4668 |
+
'@smithy/abort-controller': 2.2.0
|
4669 |
+
'@smithy/protocol-http': 3.3.0
|
4670 |
+
'@smithy/querystring-builder': 2.2.0
|
4671 |
+
'@smithy/types': 2.12.0
|
4672 |
+
tslib: 2.6.2
|
4673 |
+
|
4674 |
+
'@smithy/[email protected]':
|
4675 |
+
dependencies:
|
4676 |
+
'@smithy/types': 2.12.0
|
4677 |
+
tslib: 2.6.2
|
4678 |
+
|
4679 |
+
'@smithy/[email protected]':
|
4680 |
+
dependencies:
|
4681 |
+
'@smithy/types': 2.12.0
|
4682 |
+
tslib: 2.6.2
|
4683 |
+
|
4684 |
+
'@smithy/[email protected]':
|
4685 |
+
dependencies:
|
4686 |
+
'@smithy/types': 2.12.0
|
4687 |
+
'@smithy/util-uri-escape': 2.2.0
|
4688 |
+
tslib: 2.6.2
|
4689 |
+
|
4690 |
+
'@smithy/[email protected]':
|
4691 |
+
dependencies:
|
4692 |
+
'@smithy/types': 2.12.0
|
4693 |
+
tslib: 2.6.2
|
4694 |
+
|
4695 |
+
'@smithy/[email protected]':
|
4696 |
+
dependencies:
|
4697 |
+
'@smithy/types': 2.12.0
|
4698 |
+
|
4699 |
+
'@smithy/[email protected]':
|
4700 |
+
dependencies:
|
4701 |
+
'@smithy/types': 2.12.0
|
4702 |
+
tslib: 2.6.2
|
4703 |
+
|
4704 |
+
'@smithy/[email protected]':
|
4705 |
+
dependencies:
|
4706 |
+
'@smithy/is-array-buffer': 2.2.0
|
4707 |
+
'@smithy/types': 2.12.0
|
4708 |
+
'@smithy/util-hex-encoding': 2.2.0
|
4709 |
+
'@smithy/util-middleware': 2.2.0
|
4710 |
+
'@smithy/util-uri-escape': 2.2.0
|
4711 |
+
'@smithy/util-utf8': 2.3.0
|
4712 |
+
tslib: 2.6.2
|
4713 |
+
|
4714 |
+
'@smithy/[email protected]':
|
4715 |
+
dependencies:
|
4716 |
+
'@smithy/middleware-endpoint': 2.5.1
|
4717 |
+
'@smithy/middleware-stack': 2.2.0
|
4718 |
+
'@smithy/protocol-http': 3.3.0
|
4719 |
+
'@smithy/types': 2.12.0
|
4720 |
+
'@smithy/util-stream': 2.2.0
|
4721 |
+
tslib: 2.6.2
|
4722 |
+
|
4723 |
+
'@smithy/[email protected]':
|
4724 |
+
dependencies:
|
4725 |
+
tslib: 2.6.2
|
4726 |
+
|
4727 |
+
'@smithy/[email protected]':
|
4728 |
+
dependencies:
|
4729 |
+
'@smithy/querystring-parser': 2.2.0
|
4730 |
+
'@smithy/types': 2.12.0
|
4731 |
+
tslib: 2.6.2
|
4732 |
+
|
4733 |
+
'@smithy/[email protected]':
|
4734 |
+
dependencies:
|
4735 |
+
'@smithy/util-buffer-from': 2.2.0
|
4736 |
+
'@smithy/util-utf8': 2.3.0
|
4737 |
+
tslib: 2.6.2
|
4738 |
+
|
4739 |
+
'@smithy/[email protected]':
|
4740 |
+
dependencies:
|
4741 |
+
tslib: 2.6.2
|
4742 |
+
|
4743 |
+
'@smithy/[email protected]':
|
4744 |
+
dependencies:
|
4745 |
+
tslib: 2.6.2
|
4746 |
+
|
4747 |
+
'@smithy/[email protected]':
|
4748 |
+
dependencies:
|
4749 |
+
'@smithy/is-array-buffer': 2.2.0
|
4750 |
+
tslib: 2.6.2
|
4751 |
+
|
4752 |
+
'@smithy/[email protected]':
|
4753 |
+
dependencies:
|
4754 |
+
tslib: 2.6.2
|
4755 |
+
|
4756 |
+
'@smithy/[email protected]':
|
4757 |
+
dependencies:
|
4758 |
+
'@smithy/property-provider': 2.2.0
|
4759 |
+
'@smithy/smithy-client': 2.5.1
|
4760 |
+
'@smithy/types': 2.12.0
|
4761 |
+
bowser: 2.11.0
|
4762 |
+
tslib: 2.6.2
|
4763 |
+
|
4764 |
+
'@smithy/[email protected]':
|
4765 |
+
dependencies:
|
4766 |
+
'@smithy/config-resolver': 2.2.0
|
4767 |
+
'@smithy/credential-provider-imds': 2.3.0
|
4768 |
+
'@smithy/node-config-provider': 2.3.0
|
4769 |
+
'@smithy/property-provider': 2.2.0
|
4770 |
+
'@smithy/smithy-client': 2.5.1
|
4771 |
+
'@smithy/types': 2.12.0
|
4772 |
+
tslib: 2.6.2
|
4773 |
+
|
4774 |
+
'@smithy/[email protected]':
|
4775 |
+
dependencies:
|
4776 |
+
'@smithy/node-config-provider': 2.3.0
|
4777 |
+
'@smithy/types': 2.12.0
|
4778 |
+
tslib: 2.6.2
|
4779 |
+
|
4780 |
+
'@smithy/[email protected]':
|
4781 |
+
dependencies:
|
4782 |
+
tslib: 2.6.2
|
4783 |
+
|
4784 |
+
'@smithy/[email protected]':
|
4785 |
+
dependencies:
|
4786 |
+
'@smithy/types': 2.12.0
|
4787 |
+
tslib: 2.6.2
|
4788 |
+
|
4789 |
+
'@smithy/[email protected]':
|
4790 |
+
dependencies:
|
4791 |
+
'@smithy/service-error-classification': 2.1.5
|
4792 |
+
'@smithy/types': 2.12.0
|
4793 |
+
tslib: 2.6.2
|
4794 |
+
|
4795 |
+
'@smithy/[email protected]':
|
4796 |
+
dependencies:
|
4797 |
+
'@smithy/fetch-http-handler': 2.5.0
|
4798 |
+
'@smithy/node-http-handler': 2.5.0
|
4799 |
+
'@smithy/types': 2.12.0
|
4800 |
+
'@smithy/util-base64': 2.3.0
|
4801 |
+
'@smithy/util-buffer-from': 2.2.0
|
4802 |
+
'@smithy/util-hex-encoding': 2.2.0
|
4803 |
+
'@smithy/util-utf8': 2.3.0
|
4804 |
+
tslib: 2.6.2
|
4805 |
+
|
4806 |
+
'@smithy/[email protected]':
|
4807 |
+
dependencies:
|
4808 |
+
tslib: 2.6.2
|
4809 |
+
|
4810 |
+
'@smithy/[email protected]':
|
4811 |
+
dependencies:
|
4812 |
+
'@smithy/util-buffer-from': 2.2.0
|
4813 |
+
tslib: 2.6.2
|
4814 |
+
|
4815 |
+
'@smithy/[email protected]':
|
4816 |
+
dependencies:
|
4817 |
+
'@smithy/abort-controller': 2.2.0
|
4818 |
+
'@smithy/types': 2.12.0
|
4819 |
+
tslib: 2.6.2
|
4820 |
+
|
4821 |
'@swc/[email protected]':
|
4822 |
dependencies:
|
4823 |
tslib: 2.6.2
|
|
|
5146 |
dependencies:
|
5147 |
possible-typed-array-names: 1.0.0
|
5148 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5149 | |
5150 |
|
5151 | |
|
|
5160 |
|
5161 | |
5162 |
|
|
|
|
|
5163 | |
5164 |
|
5165 |
+
[email protected]: {}
|
5166 |
+
|
5167 | |
5168 |
dependencies:
|
5169 |
balanced-match: 1.0.2
|
|
|
5184 |
node-releases: 2.0.14
|
5185 |
update-browserslist-db: 1.0.13([email protected])
|
5186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
5187 | |
5188 |
dependencies:
|
5189 |
streamsearch: 1.1.0
|
|
|
5684 |
|
5685 | |
5686 |
|
|
|
|
|
5687 | |
5688 |
|
5689 | |
|
|
5702 |
|
5703 | |
5704 |
|
5705 | |
5706 |
+
dependencies:
|
5707 |
+
strnum: 1.0.5
|
5708 |
+
|
5709 | |
5710 |
dependencies:
|
5711 |
reusify: 1.0.4
|
|
|
5925 |
dependencies:
|
5926 |
ms: 2.1.3
|
5927 |
|
|
|
|
|
5928 | |
5929 |
|
5930 | |
|
|
5962 |
is-alphabetical: 1.0.4
|
5963 |
is-decimal: 1.0.4
|
5964 |
|
|
|
|
|
|
|
|
|
|
|
5965 | |
5966 |
dependencies:
|
5967 |
call-bind: 1.0.7
|
|
|
6072 |
call-bind: 1.0.7
|
6073 |
get-intrinsic: 1.2.4
|
6074 |
|
|
|
|
|
6075 | |
6076 |
|
6077 | |
|
|
6092 |
|
6093 | |
6094 |
|
|
|
|
|
6095 | |
6096 |
|
6097 | |
|
|
6799 |
|
6800 | |
6801 |
|
|
|
|
|
6802 | |
6803 |
|
|
|
|
|
6804 | |
6805 |
|
6806 | |
|
|
7013 |
es-errors: 1.3.0
|
7014 |
is-regex: 1.1.4
|
7015 |
|
|
|
|
|
7016 | |
7017 |
dependencies:
|
7018 |
loose-envify: 1.4.0
|
|
|
7144 |
|
7145 | |
7146 |
|
7147 |
+
[email protected]: {}
|
7148 |
+
|
7149 | |
7150 |
dependencies:
|
7151 |
inline-style-parser: 0.1.1
|
|
|
7277 |
minimist: 1.2.8
|
7278 |
strip-bom: 3.0.0
|
7279 |
|
7280 |
+
[email protected]: {}
|
7281 |
+
|
7282 | |
7283 |
|
7284 | |
|
|
7375 |
dependencies:
|
7376 |
punycode: 2.3.1
|
7377 |
|
|
|
|
|
|
|
|
|
|
|
7378 | |
7379 |
dependencies:
|
7380 |
react: 18.2.0
|
|
|
7413 |
|
7414 | |
7415 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7416 | |
7417 |
|
7418 | |
|
|
7511 |
|
7512 | |
7513 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7514 | |
7515 |
|
7516 |