@coze-arch/cli 0.0.1-alpha.f74941 → 0.0.1-alpha.f91253
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/__templates__/expo/.coze +7 -2
- package/lib/__templates__/expo/.cozeproj/scripts/dev_build.sh +46 -0
- package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +220 -0
- package/lib/__templates__/expo/.cozeproj/scripts/prod_build.sh +47 -0
- package/lib/__templates__/expo/.cozeproj/scripts/prod_run.sh +34 -0
- package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +45 -0
- package/lib/__templates__/expo/README.md +68 -7
- package/lib/__templates__/expo/_gitignore +1 -1
- package/lib/__templates__/expo/_npmrc +3 -5
- package/lib/__templates__/expo/client/app/_layout.tsx +14 -14
- package/lib/__templates__/expo/client/app/index.tsx +1 -0
- package/lib/__templates__/expo/client/app.config.ts +76 -0
- package/lib/__templates__/expo/client/components/Screen.tsx +1 -17
- package/lib/__templates__/expo/client/components/ThemedText.tsx +33 -0
- package/lib/__templates__/expo/client/components/ThemedView.tsx +38 -0
- package/lib/__templates__/expo/client/constants/theme.ts +117 -58
- package/lib/__templates__/expo/client/contexts/AuthContext.tsx +14 -107
- package/lib/__templates__/expo/client/declarations.d.ts +5 -0
- package/lib/__templates__/expo/{eslint.config.mjs → client/eslint.config.mjs} +14 -10
- package/lib/__templates__/expo/client/hooks/useColorScheme.ts +34 -1
- package/lib/__templates__/expo/client/hooks/useTheme.ts +26 -6
- package/lib/__templates__/expo/client/metro.config.js +121 -0
- package/lib/__templates__/expo/client/package.json +93 -0
- package/lib/__templates__/expo/client/screens/demo/index.tsx +25 -0
- package/lib/__templates__/expo/client/screens/demo/styles.ts +28 -0
- package/lib/__templates__/expo/client/scripts/install-missing-deps.js +37 -12
- package/lib/__templates__/expo/client/tsconfig.json +24 -0
- package/lib/__templates__/expo/client/utils/index.ts +23 -2
- package/lib/__templates__/expo/eslint-plugins/fontawesome6/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/fontawesome6/names.js +2486 -0
- package/lib/__templates__/expo/eslint-plugins/fontawesome6/rule.js +155 -0
- package/lib/__templates__/expo/package.json +13 -92
- package/lib/__templates__/expo/pnpm-lock.yaml +675 -678
- package/lib/__templates__/expo/pnpm-workspace.yaml +3 -0
- package/lib/__templates__/expo/server/build.js +21 -0
- package/lib/__templates__/expo/server/package.json +32 -0
- package/lib/__templates__/expo/server/src/index.ts +19 -0
- package/lib/__templates__/expo/server/tsconfig.json +24 -0
- package/lib/__templates__/expo/template.config.js +2 -1
- package/lib/__templates__/expo/tsconfig.json +1 -24
- package/lib/__templates__/nextjs/.babelrc +15 -0
- package/lib/__templates__/nextjs/.coze +4 -3
- package/lib/__templates__/nextjs/README.md +341 -19
- package/lib/__templates__/nextjs/_npmrc +2 -1
- package/lib/__templates__/nextjs/components.json +21 -0
- package/lib/__templates__/nextjs/next.config.ts +12 -0
- package/lib/__templates__/nextjs/package.json +64 -2
- package/lib/__templates__/nextjs/pnpm-lock.yaml +8768 -1565
- package/lib/__templates__/nextjs/scripts/dev.sh +9 -27
- package/lib/__templates__/{react-rsbuild/scripts/build.sh → nextjs/scripts/prepare.sh} +0 -5
- package/lib/__templates__/nextjs/src/app/globals.css +124 -13
- package/lib/__templates__/nextjs/src/app/layout.tsx +23 -32
- package/lib/__templates__/nextjs/src/app/page.tsx +35 -23
- package/lib/__templates__/nextjs/src/components/ui/accordion.tsx +66 -0
- package/lib/__templates__/nextjs/src/components/ui/alert-dialog.tsx +157 -0
- package/lib/__templates__/nextjs/src/components/ui/alert.tsx +66 -0
- package/lib/__templates__/nextjs/src/components/ui/aspect-ratio.tsx +11 -0
- package/lib/__templates__/nextjs/src/components/ui/avatar.tsx +53 -0
- package/lib/__templates__/nextjs/src/components/ui/badge.tsx +46 -0
- package/lib/__templates__/nextjs/src/components/ui/breadcrumb.tsx +109 -0
- package/lib/__templates__/nextjs/src/components/ui/button-group.tsx +83 -0
- package/lib/__templates__/nextjs/src/components/ui/button.tsx +62 -0
- package/lib/__templates__/nextjs/src/components/ui/calendar.tsx +220 -0
- package/lib/__templates__/nextjs/src/components/ui/card.tsx +92 -0
- package/lib/__templates__/nextjs/src/components/ui/carousel.tsx +241 -0
- package/lib/__templates__/nextjs/src/components/ui/chart.tsx +357 -0
- package/lib/__templates__/nextjs/src/components/ui/checkbox.tsx +32 -0
- package/lib/__templates__/nextjs/src/components/ui/collapsible.tsx +33 -0
- package/lib/__templates__/nextjs/src/components/ui/command.tsx +184 -0
- package/lib/__templates__/nextjs/src/components/ui/context-menu.tsx +252 -0
- package/lib/__templates__/nextjs/src/components/ui/dialog.tsx +143 -0
- package/lib/__templates__/nextjs/src/components/ui/drawer.tsx +135 -0
- package/lib/__templates__/nextjs/src/components/ui/dropdown-menu.tsx +257 -0
- package/lib/__templates__/nextjs/src/components/ui/empty.tsx +104 -0
- package/lib/__templates__/nextjs/src/components/ui/field.tsx +248 -0
- package/lib/__templates__/nextjs/src/components/ui/form.tsx +167 -0
- package/lib/__templates__/nextjs/src/components/ui/hover-card.tsx +44 -0
- package/lib/__templates__/nextjs/src/components/ui/input-group.tsx +170 -0
- package/lib/__templates__/nextjs/src/components/ui/input-otp.tsx +77 -0
- package/lib/__templates__/nextjs/src/components/ui/input.tsx +21 -0
- package/lib/__templates__/nextjs/src/components/ui/item.tsx +193 -0
- package/lib/__templates__/nextjs/src/components/ui/kbd.tsx +28 -0
- package/lib/__templates__/nextjs/src/components/ui/label.tsx +24 -0
- package/lib/__templates__/nextjs/src/components/ui/menubar.tsx +276 -0
- package/lib/__templates__/nextjs/src/components/ui/navigation-menu.tsx +168 -0
- package/lib/__templates__/nextjs/src/components/ui/pagination.tsx +127 -0
- package/lib/__templates__/nextjs/src/components/ui/popover.tsx +48 -0
- package/lib/__templates__/nextjs/src/components/ui/progress.tsx +31 -0
- package/lib/__templates__/nextjs/src/components/ui/radio-group.tsx +45 -0
- package/lib/__templates__/nextjs/src/components/ui/resizable.tsx +63 -0
- package/lib/__templates__/nextjs/src/components/ui/scroll-area.tsx +58 -0
- package/lib/__templates__/nextjs/src/components/ui/select.tsx +190 -0
- package/lib/__templates__/nextjs/src/components/ui/separator.tsx +28 -0
- package/lib/__templates__/nextjs/src/components/ui/sheet.tsx +139 -0
- package/lib/__templates__/nextjs/src/components/ui/sidebar.tsx +724 -0
- package/lib/__templates__/nextjs/src/components/ui/skeleton.tsx +13 -0
- package/lib/__templates__/nextjs/src/components/ui/slider.tsx +63 -0
- package/lib/__templates__/nextjs/src/components/ui/sonner.tsx +40 -0
- package/lib/__templates__/nextjs/src/components/ui/spinner.tsx +16 -0
- package/lib/__templates__/nextjs/src/components/ui/switch.tsx +31 -0
- package/lib/__templates__/nextjs/src/components/ui/table.tsx +116 -0
- package/lib/__templates__/nextjs/src/components/ui/tabs.tsx +66 -0
- package/lib/__templates__/nextjs/src/components/ui/textarea.tsx +18 -0
- package/lib/__templates__/nextjs/src/components/ui/toggle-group.tsx +83 -0
- package/lib/__templates__/nextjs/src/components/ui/toggle.tsx +47 -0
- package/lib/__templates__/nextjs/src/components/ui/tooltip.tsx +61 -0
- package/lib/__templates__/nextjs/src/hooks/use-mobile.ts +19 -0
- package/lib/__templates__/nextjs/src/lib/utils.ts +6 -0
- package/lib/__templates__/nextjs/template.config.js +32 -2
- package/lib/__templates__/templates.json +61 -74
- package/lib/__templates__/vite/.coze +4 -3
- package/lib/__templates__/vite/README.md +204 -26
- package/lib/__templates__/vite/_npmrc +2 -1
- package/lib/__templates__/vite/eslint.config.mjs +9 -0
- package/lib/__templates__/vite/package.json +11 -2
- package/lib/__templates__/vite/pnpm-lock.yaml +3232 -243
- package/lib/__templates__/vite/scripts/dev.sh +7 -26
- package/lib/__templates__/{rsbuild/scripts/build.sh → vite/scripts/prepare.sh} +0 -5
- package/lib/__templates__/vite/src/main.ts +1 -2
- package/lib/__templates__/vite/template.config.js +41 -6
- package/lib/__templates__/vite/vite.config.ts +3 -3
- package/lib/cli.js +874 -316
- package/package.json +11 -4
- package/lib/__templates__/expo/.cozeproj/scripts/deploy_build.sh +0 -109
- package/lib/__templates__/expo/.cozeproj/scripts/deploy_run.sh +0 -257
- package/lib/__templates__/expo/app.json +0 -63
- package/lib/__templates__/expo/babel.config.js +0 -9
- package/lib/__templates__/expo/client/app/(tabs)/_layout.tsx +0 -43
- package/lib/__templates__/expo/client/app/(tabs)/home.tsx +0 -1
- package/lib/__templates__/expo/client/app/(tabs)/index.tsx +0 -7
- package/lib/__templates__/expo/client/app/+not-found.tsx +0 -79
- package/lib/__templates__/expo/client/index.js +0 -11
- package/lib/__templates__/expo/client/screens/home/index.tsx +0 -54
- package/lib/__templates__/expo/client/screens/home/styles.ts +0 -332
- package/lib/__templates__/expo/metro.config.js +0 -53
- package/lib/__templates__/expo/src/index.ts +0 -12
- package/lib/__templates__/nextjs/.vscode/settings.json +0 -121
- package/lib/__templates__/react-rsbuild/.coze +0 -11
- package/lib/__templates__/react-rsbuild/.vscode/settings.json +0 -121
- package/lib/__templates__/react-rsbuild/README.md +0 -61
- package/lib/__templates__/react-rsbuild/_gitignore +0 -97
- package/lib/__templates__/react-rsbuild/_npmrc +0 -22
- package/lib/__templates__/react-rsbuild/package.json +0 -31
- package/lib/__templates__/react-rsbuild/pnpm-lock.yaml +0 -997
- package/lib/__templates__/react-rsbuild/rsbuild.config.ts +0 -13
- package/lib/__templates__/react-rsbuild/scripts/dev.sh +0 -51
- package/lib/__templates__/react-rsbuild/scripts/start.sh +0 -15
- package/lib/__templates__/react-rsbuild/src/App.tsx +0 -60
- package/lib/__templates__/react-rsbuild/src/index.css +0 -21
- package/lib/__templates__/react-rsbuild/src/index.html +0 -12
- package/lib/__templates__/react-rsbuild/src/index.tsx +0 -16
- package/lib/__templates__/react-rsbuild/tailwind.config.js +0 -9
- package/lib/__templates__/react-rsbuild/template.config.js +0 -54
- package/lib/__templates__/react-rsbuild/tsconfig.json +0 -17
- package/lib/__templates__/rsbuild/.coze +0 -11
- package/lib/__templates__/rsbuild/.vscode/settings.json +0 -7
- package/lib/__templates__/rsbuild/README.md +0 -61
- package/lib/__templates__/rsbuild/_gitignore +0 -97
- package/lib/__templates__/rsbuild/_npmrc +0 -22
- package/lib/__templates__/rsbuild/package.json +0 -24
- package/lib/__templates__/rsbuild/pnpm-lock.yaml +0 -888
- package/lib/__templates__/rsbuild/rsbuild.config.ts +0 -12
- package/lib/__templates__/rsbuild/scripts/dev.sh +0 -51
- package/lib/__templates__/rsbuild/scripts/start.sh +0 -15
- package/lib/__templates__/rsbuild/src/index.css +0 -21
- package/lib/__templates__/rsbuild/src/index.html +0 -12
- package/lib/__templates__/rsbuild/src/index.ts +0 -5
- package/lib/__templates__/rsbuild/src/main.ts +0 -65
- package/lib/__templates__/rsbuild/tailwind.config.js +0 -9
- package/lib/__templates__/rsbuild/template.config.js +0 -56
- package/lib/__templates__/rsbuild/tsconfig.json +0 -16
- package/lib/__templates__/vite/.vscode/settings.json +0 -7
- /package/lib/__templates__/expo/{eslint-formatter-simple.mjs → client/eslint-formatter-simple.mjs} +0 -0
|
@@ -4,6 +4,9 @@ settings:
|
|
|
4
4
|
autoInstallPeers: true
|
|
5
5
|
excludeLinksFromLockfile: false
|
|
6
6
|
|
|
7
|
+
overrides:
|
|
8
|
+
esbuild: ^0.27.2
|
|
9
|
+
|
|
7
10
|
importers:
|
|
8
11
|
|
|
9
12
|
.:
|
|
@@ -11,6 +14,12 @@ importers:
|
|
|
11
14
|
autoprefixer:
|
|
12
15
|
specifier: ^10.4.20
|
|
13
16
|
version: 10.4.23(postcss@8.5.6)
|
|
17
|
+
coze-coding-dev-sdk:
|
|
18
|
+
specifier: ^0.7.3
|
|
19
|
+
version: 0.7.3(openai@6.16.0(zod@4.3.5))
|
|
20
|
+
eslint:
|
|
21
|
+
specifier: ^9
|
|
22
|
+
version: 9.39.2(jiti@1.21.7)
|
|
14
23
|
only-allow:
|
|
15
24
|
specifier: ^1.2.2
|
|
16
25
|
version: 1.2.2
|
|
@@ -23,9 +32,12 @@ importers:
|
|
|
23
32
|
typescript:
|
|
24
33
|
specifier: ^5.6.0
|
|
25
34
|
version: 5.9.3
|
|
35
|
+
typescript-eslint:
|
|
36
|
+
specifier: ^8
|
|
37
|
+
version: 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
26
38
|
vite:
|
|
27
|
-
specifier: ^
|
|
28
|
-
version:
|
|
39
|
+
specifier: ^7.2.4
|
|
40
|
+
version: 7.3.1(jiti@1.21.7)
|
|
29
41
|
|
|
30
42
|
packages:
|
|
31
43
|
|
|
@@ -33,162 +45,399 @@ packages:
|
|
|
33
45
|
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
|
34
46
|
engines: {node: '>=10'}
|
|
35
47
|
|
|
36
|
-
'@
|
|
37
|
-
resolution: {integrity: sha512-
|
|
48
|
+
'@aws-crypto/crc32@5.2.0':
|
|
49
|
+
resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
|
|
50
|
+
engines: {node: '>=16.0.0'}
|
|
51
|
+
|
|
52
|
+
'@aws-crypto/crc32c@5.2.0':
|
|
53
|
+
resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==}
|
|
54
|
+
|
|
55
|
+
'@aws-crypto/sha1-browser@5.2.0':
|
|
56
|
+
resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==}
|
|
57
|
+
|
|
58
|
+
'@aws-crypto/sha256-browser@5.2.0':
|
|
59
|
+
resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
|
|
60
|
+
|
|
61
|
+
'@aws-crypto/sha256-js@5.2.0':
|
|
62
|
+
resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
|
|
63
|
+
engines: {node: '>=16.0.0'}
|
|
64
|
+
|
|
65
|
+
'@aws-crypto/supports-web-crypto@5.2.0':
|
|
66
|
+
resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
|
|
67
|
+
|
|
68
|
+
'@aws-crypto/util@5.2.0':
|
|
69
|
+
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
|
|
70
|
+
|
|
71
|
+
'@aws-sdk/client-s3@3.972.0':
|
|
72
|
+
resolution: {integrity: sha512-ghpDQtjZvbhbnHWymq/V5TL8NppdAGF2THAxYRRBLCJ5JRlq71T24NdovAzvzYaGdH7HtcRkgErBRsFT1gtq4g==}
|
|
73
|
+
engines: {node: '>=20.0.0'}
|
|
74
|
+
|
|
75
|
+
'@aws-sdk/client-sso@3.972.0':
|
|
76
|
+
resolution: {integrity: sha512-5qw6qLiRE4SUiz0hWy878dSR13tSVhbTWhsvFT8mGHe37NRRiaobm5MA2sWD0deRAuO98djSiV+dhWXa1xIFNw==}
|
|
77
|
+
engines: {node: '>=20.0.0'}
|
|
78
|
+
|
|
79
|
+
'@aws-sdk/core@3.972.0':
|
|
80
|
+
resolution: {integrity: sha512-nEeUW2M9F+xdIaD98F5MBcQ4ITtykj3yKbgFZ6J0JtL3bq+Z90szQ6Yy8H/BLPYXTs3V4n9ifnBo8cprRDiE6A==}
|
|
81
|
+
engines: {node: '>=20.0.0'}
|
|
82
|
+
|
|
83
|
+
'@aws-sdk/crc64-nvme@3.972.0':
|
|
84
|
+
resolution: {integrity: sha512-ThlLhTqX68jvoIVv+pryOdb5coP1cX1/MaTbB9xkGDCbWbsqQcLqzPxuSoW1DCnAAIacmXCWpzUNOB9pv+xXQw==}
|
|
85
|
+
engines: {node: '>=20.0.0'}
|
|
86
|
+
|
|
87
|
+
'@aws-sdk/credential-provider-env@3.972.0':
|
|
88
|
+
resolution: {integrity: sha512-kKHoNv+maHlPQOAhYamhap0PObd16SAb3jwaY0KYgNTiSbeXlbGUZPLioo9oA3wU10zItJzx83ClU7d7h40luA==}
|
|
89
|
+
engines: {node: '>=20.0.0'}
|
|
90
|
+
|
|
91
|
+
'@aws-sdk/credential-provider-http@3.972.0':
|
|
92
|
+
resolution: {integrity: sha512-xzEi81L7I5jGUbpmqEHCe7zZr54hCABdj4H+3LzktHYuovV/oqnvoDdvZpGFR0e/KAw1+PL38NbGrpG30j6qlA==}
|
|
93
|
+
engines: {node: '>=20.0.0'}
|
|
94
|
+
|
|
95
|
+
'@aws-sdk/credential-provider-ini@3.972.0':
|
|
96
|
+
resolution: {integrity: sha512-ruhAMceUIq2aknFd3jhWxmO0P0Efab5efjyIXOkI9i80g+zDY5VekeSxfqRKStEEJSKSCHDLQuOu0BnAn4Rzew==}
|
|
97
|
+
engines: {node: '>=20.0.0'}
|
|
98
|
+
|
|
99
|
+
'@aws-sdk/credential-provider-login@3.972.0':
|
|
100
|
+
resolution: {integrity: sha512-SsrsFJsEYAJHO4N/r2P0aK6o8si6f1lprR+Ej8J731XJqTckSGs/HFHcbxOyW/iKt+LNUvZa59/VlJmjhF4bEQ==}
|
|
101
|
+
engines: {node: '>=20.0.0'}
|
|
102
|
+
|
|
103
|
+
'@aws-sdk/credential-provider-node@3.972.0':
|
|
104
|
+
resolution: {integrity: sha512-wwJDpEGl6+sOygic8QKu0OHVB8SiodqF1fr5jvUlSFfS6tJss/E9vBc2aFjl7zI6KpAIYfIzIgM006lRrZtWCQ==}
|
|
105
|
+
engines: {node: '>=20.0.0'}
|
|
106
|
+
|
|
107
|
+
'@aws-sdk/credential-provider-process@3.972.0':
|
|
108
|
+
resolution: {integrity: sha512-nmzYhamLDJ8K+v3zWck79IaKMc350xZnWsf/GeaXO6E3MewSzd3lYkTiMi7lEp3/UwDm9NHfPguoPm+mhlSWQQ==}
|
|
109
|
+
engines: {node: '>=20.0.0'}
|
|
110
|
+
|
|
111
|
+
'@aws-sdk/credential-provider-sso@3.972.0':
|
|
112
|
+
resolution: {integrity: sha512-6mYyfk1SrMZ15cH9T53yAF4YSnvq4yU1Xlgm3nqV1gZVQzmF5kr4t/F3BU3ygbvzi4uSwWxG3I3TYYS5eMlAyg==}
|
|
113
|
+
engines: {node: '>=20.0.0'}
|
|
114
|
+
|
|
115
|
+
'@aws-sdk/credential-provider-web-identity@3.972.0':
|
|
116
|
+
resolution: {integrity: sha512-vsJXBGL8H54kz4T6do3p5elATj5d1izVGUXMluRJntm9/I0be/zUYtdd4oDTM2kSUmd4Zhyw3fMQ9lw7CVhd4A==}
|
|
117
|
+
engines: {node: '>=20.0.0'}
|
|
118
|
+
|
|
119
|
+
'@aws-sdk/lib-storage@3.972.0':
|
|
120
|
+
resolution: {integrity: sha512-4xNJ1B4zKzvwEedNuhJRoLmrNCfHorwBFvZjjR/bFSWxxCK0Mh5NSarB4sgeycVyZjCwOGFTFHxk4RtXi9JksA==}
|
|
121
|
+
engines: {node: '>=20.0.0'}
|
|
122
|
+
peerDependencies:
|
|
123
|
+
'@aws-sdk/client-s3': 3.972.0
|
|
124
|
+
|
|
125
|
+
'@aws-sdk/middleware-bucket-endpoint@3.972.0':
|
|
126
|
+
resolution: {integrity: sha512-IrIjAehc3PrseAGfk2ldtAf+N0BAnNHR1DCZIDh9IAcFrTVWC3Fi9KJdtabrxcY3Onpt/8opOco4EIEAWgMz7A==}
|
|
127
|
+
engines: {node: '>=20.0.0'}
|
|
128
|
+
|
|
129
|
+
'@aws-sdk/middleware-expect-continue@3.972.0':
|
|
130
|
+
resolution: {integrity: sha512-xyhDoY0qse8MvQC4RZCpT5WoIQ4/kwqv71Dh1s3mdXjL789Z4a6L/khBTSXECR5+egSZ960AInj3aR+CrezDRQ==}
|
|
131
|
+
engines: {node: '>=20.0.0'}
|
|
132
|
+
|
|
133
|
+
'@aws-sdk/middleware-flexible-checksums@3.972.0':
|
|
134
|
+
resolution: {integrity: sha512-zxK0ezmT7fLEPJ650S8QBc4rGDq5+5rdsLnnuZ6hPaZE4/+QtUoTw+gSDETyiWodNcRuz2ZWnqi17K+7nKtSRg==}
|
|
135
|
+
engines: {node: '>=20.0.0'}
|
|
136
|
+
|
|
137
|
+
'@aws-sdk/middleware-host-header@3.972.0':
|
|
138
|
+
resolution: {integrity: sha512-3eztFI6F9/eHtkIaWKN3nT+PM+eQ6p1MALDuNshFk323ixuCZzOOVT8oUqtZa30Z6dycNXJwhlIq7NhUVFfimw==}
|
|
139
|
+
engines: {node: '>=20.0.0'}
|
|
140
|
+
|
|
141
|
+
'@aws-sdk/middleware-location-constraint@3.972.0':
|
|
142
|
+
resolution: {integrity: sha512-WpsxoVPzbGPQGb/jupNYjpE0REcCPtjz7Q7zAt+dyo7fxsLBn4J+Rp6AYzSa04J9VrmrvCqCbVLu6B88PlSKSQ==}
|
|
143
|
+
engines: {node: '>=20.0.0'}
|
|
144
|
+
|
|
145
|
+
'@aws-sdk/middleware-logger@3.972.0':
|
|
146
|
+
resolution: {integrity: sha512-ZvdyVRwzK+ra31v1pQrgbqR/KsLD+wwJjHgko6JfoKUBIcEfAwJzQKO6HspHxdHWTVUz6MgvwskheR/TTYZl2g==}
|
|
147
|
+
engines: {node: '>=20.0.0'}
|
|
148
|
+
|
|
149
|
+
'@aws-sdk/middleware-recursion-detection@3.972.0':
|
|
150
|
+
resolution: {integrity: sha512-F2SmUeO+S6l1h6dydNet3BQIk173uAkcfU1HDkw/bUdRLAnh15D3HP9vCZ7oCPBNcdEICbXYDmx0BR9rRUHGlQ==}
|
|
151
|
+
engines: {node: '>=20.0.0'}
|
|
152
|
+
|
|
153
|
+
'@aws-sdk/middleware-sdk-s3@3.972.0':
|
|
154
|
+
resolution: {integrity: sha512-0bcKFXWx+NZ7tIlOo7KjQ+O2rydiHdIQahrq+fN6k9Osky29v17guy68urUKfhTobR6iY6KvxkroFWaFtTgS5w==}
|
|
155
|
+
engines: {node: '>=20.0.0'}
|
|
156
|
+
|
|
157
|
+
'@aws-sdk/middleware-ssec@3.972.0':
|
|
158
|
+
resolution: {integrity: sha512-cEr2HtK4R2fi8Y0P95cjbr4KJOjKBt8ms95mEJhabJN8KM4CpD4iS/J1lhvMj+qWir0KBTV6gKmxECXdfL9S6w==}
|
|
159
|
+
engines: {node: '>=20.0.0'}
|
|
160
|
+
|
|
161
|
+
'@aws-sdk/middleware-user-agent@3.972.0':
|
|
162
|
+
resolution: {integrity: sha512-kFHQm2OCBJCzGWRafgdWHGFjitUXY/OxXngymcX4l8CiyiNDZB27HDDBg2yLj3OUJc4z4fexLMmP8r9vgag19g==}
|
|
163
|
+
engines: {node: '>=20.0.0'}
|
|
164
|
+
|
|
165
|
+
'@aws-sdk/nested-clients@3.972.0':
|
|
166
|
+
resolution: {integrity: sha512-QGlbnuGzSQJVG6bR9Qw6G0Blh6abFR4VxNa61ttMbzy9jt28xmk2iGtrYLrQPlCCPhY6enHqjTWm3n3LOb0wAw==}
|
|
167
|
+
engines: {node: '>=20.0.0'}
|
|
168
|
+
|
|
169
|
+
'@aws-sdk/region-config-resolver@3.972.0':
|
|
170
|
+
resolution: {integrity: sha512-JyOf+R/6vJW8OEVFCAyzEOn2reri/Q+L0z9zx4JQSKWvTmJ1qeFO25sOm8VIfB8URKhfGRTQF30pfYaH2zxt/A==}
|
|
171
|
+
engines: {node: '>=20.0.0'}
|
|
172
|
+
|
|
173
|
+
'@aws-sdk/signature-v4-multi-region@3.972.0':
|
|
174
|
+
resolution: {integrity: sha512-2udiRijmjpN81Pvajje4TsjbXDZNP6K9bYUanBYH8hXa/tZG5qfGCySD+TyX0sgDxCQmEDMg3LaQdfjNHBDEgQ==}
|
|
175
|
+
engines: {node: '>=20.0.0'}
|
|
176
|
+
|
|
177
|
+
'@aws-sdk/token-providers@3.972.0':
|
|
178
|
+
resolution: {integrity: sha512-kWlXG+y5nZhgXGEtb72Je+EvqepBPs8E3vZse//1PYLWs2speFqbGE/ywCXmzEJgHgVqSB/u/lqBvs5WlYmSqQ==}
|
|
179
|
+
engines: {node: '>=20.0.0'}
|
|
180
|
+
|
|
181
|
+
'@aws-sdk/types@3.972.0':
|
|
182
|
+
resolution: {integrity: sha512-U7xBIbLSetONxb2bNzHyDgND3oKGoIfmknrEVnoEU4GUSs+0augUOIn9DIWGUO2ETcRFdsRUnmx9KhPT9Ojbug==}
|
|
183
|
+
engines: {node: '>=20.0.0'}
|
|
184
|
+
|
|
185
|
+
'@aws-sdk/util-arn-parser@3.972.0':
|
|
186
|
+
resolution: {integrity: sha512-RM5Mmo/KJ593iMSrALlHEOcc9YOIyOsDmS5x2NLOMdEmzv1o00fcpAkCQ02IGu1eFneBFT7uX0Mpag0HI+Cz2g==}
|
|
187
|
+
engines: {node: '>=20.0.0'}
|
|
188
|
+
|
|
189
|
+
'@aws-sdk/util-endpoints@3.972.0':
|
|
190
|
+
resolution: {integrity: sha512-6JHsl1V/a1ZW8D8AFfd4R52fwZPnZ5H4U6DS8m/bWT8qad72NvbOFAC7U2cDtFs2TShqUO3TEiX/EJibtY3ijg==}
|
|
191
|
+
engines: {node: '>=20.0.0'}
|
|
192
|
+
|
|
193
|
+
'@aws-sdk/util-locate-window@3.965.3':
|
|
194
|
+
resolution: {integrity: sha512-FNUqAjlKAGA7GM05kywE99q8wiPHPZqrzhq3wXRga6PRD6A0kzT85Pb0AzYBVTBRpSrKyyr6M92Y6bnSBVp2BA==}
|
|
195
|
+
engines: {node: '>=20.0.0'}
|
|
196
|
+
|
|
197
|
+
'@aws-sdk/util-user-agent-browser@3.972.0':
|
|
198
|
+
resolution: {integrity: sha512-eOLdkQyoRbDgioTS3Orr7iVsVEutJyMZxvyZ6WAF95IrF0kfWx5Rd/KXnfbnG/VKa2CvjZiitWfouLzfVEyvJA==}
|
|
199
|
+
|
|
200
|
+
'@aws-sdk/util-user-agent-node@3.972.0':
|
|
201
|
+
resolution: {integrity: sha512-GOy+AiSrE9kGiojiwlZvVVSXwylu4+fmP0MJfvras/MwP09RB/YtQuOVR1E0fKQc6OMwaTNBjgAbOEhxuWFbAw==}
|
|
202
|
+
engines: {node: '>=20.0.0'}
|
|
203
|
+
peerDependencies:
|
|
204
|
+
aws-crt: '>=1.0.0'
|
|
205
|
+
peerDependenciesMeta:
|
|
206
|
+
aws-crt:
|
|
207
|
+
optional: true
|
|
208
|
+
|
|
209
|
+
'@aws-sdk/xml-builder@3.972.0':
|
|
210
|
+
resolution: {integrity: sha512-POaGMcXnozzqBUyJM3HLUZ9GR6OKJWPGJEmhtTnxZXt8B6JcJ/6K3xRJ5H/j8oovVLz8Wg6vFxAHv8lvuASxMg==}
|
|
211
|
+
engines: {node: '>=20.0.0'}
|
|
212
|
+
|
|
213
|
+
'@aws/lambda-invoke-store@0.2.3':
|
|
214
|
+
resolution: {integrity: sha512-oLvsaPMTBejkkmHhjf09xTgk71mOqyr/409NKhRIL08If7AhVfUsJhVsx386uJaqNd42v9kWamQ9lFbkoC2dYw==}
|
|
215
|
+
engines: {node: '>=18.0.0'}
|
|
216
|
+
|
|
217
|
+
'@cfworker/json-schema@4.1.1':
|
|
218
|
+
resolution: {integrity: sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==}
|
|
219
|
+
|
|
220
|
+
'@drizzle-team/brocli@0.10.2':
|
|
221
|
+
resolution: {integrity: sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==}
|
|
222
|
+
|
|
223
|
+
'@esbuild-kit/core-utils@3.3.2':
|
|
224
|
+
resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==}
|
|
225
|
+
deprecated: 'Merged into tsx: https://tsx.is'
|
|
226
|
+
|
|
227
|
+
'@esbuild-kit/esm-loader@2.6.5':
|
|
228
|
+
resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==}
|
|
229
|
+
deprecated: 'Merged into tsx: https://tsx.is'
|
|
230
|
+
|
|
231
|
+
'@esbuild/aix-ppc64@0.27.2':
|
|
232
|
+
resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
|
|
38
233
|
engines: {node: '>=18'}
|
|
39
234
|
cpu: [ppc64]
|
|
40
235
|
os: [aix]
|
|
41
236
|
|
|
42
|
-
'@esbuild/android-arm64@0.
|
|
43
|
-
resolution: {integrity: sha512-
|
|
237
|
+
'@esbuild/android-arm64@0.27.2':
|
|
238
|
+
resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
|
|
44
239
|
engines: {node: '>=18'}
|
|
45
240
|
cpu: [arm64]
|
|
46
241
|
os: [android]
|
|
47
242
|
|
|
48
|
-
'@esbuild/android-arm@0.
|
|
49
|
-
resolution: {integrity: sha512-
|
|
243
|
+
'@esbuild/android-arm@0.27.2':
|
|
244
|
+
resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
|
|
50
245
|
engines: {node: '>=18'}
|
|
51
246
|
cpu: [arm]
|
|
52
247
|
os: [android]
|
|
53
248
|
|
|
54
|
-
'@esbuild/android-x64@0.
|
|
55
|
-
resolution: {integrity: sha512-
|
|
249
|
+
'@esbuild/android-x64@0.27.2':
|
|
250
|
+
resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
|
|
56
251
|
engines: {node: '>=18'}
|
|
57
252
|
cpu: [x64]
|
|
58
253
|
os: [android]
|
|
59
254
|
|
|
60
|
-
'@esbuild/darwin-arm64@0.
|
|
61
|
-
resolution: {integrity: sha512-
|
|
255
|
+
'@esbuild/darwin-arm64@0.27.2':
|
|
256
|
+
resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
|
|
62
257
|
engines: {node: '>=18'}
|
|
63
258
|
cpu: [arm64]
|
|
64
259
|
os: [darwin]
|
|
65
260
|
|
|
66
|
-
'@esbuild/darwin-x64@0.
|
|
67
|
-
resolution: {integrity: sha512-
|
|
261
|
+
'@esbuild/darwin-x64@0.27.2':
|
|
262
|
+
resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
|
|
68
263
|
engines: {node: '>=18'}
|
|
69
264
|
cpu: [x64]
|
|
70
265
|
os: [darwin]
|
|
71
266
|
|
|
72
|
-
'@esbuild/freebsd-arm64@0.
|
|
73
|
-
resolution: {integrity: sha512-
|
|
267
|
+
'@esbuild/freebsd-arm64@0.27.2':
|
|
268
|
+
resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
|
|
74
269
|
engines: {node: '>=18'}
|
|
75
270
|
cpu: [arm64]
|
|
76
271
|
os: [freebsd]
|
|
77
272
|
|
|
78
|
-
'@esbuild/freebsd-x64@0.
|
|
79
|
-
resolution: {integrity: sha512-
|
|
273
|
+
'@esbuild/freebsd-x64@0.27.2':
|
|
274
|
+
resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
|
|
80
275
|
engines: {node: '>=18'}
|
|
81
276
|
cpu: [x64]
|
|
82
277
|
os: [freebsd]
|
|
83
278
|
|
|
84
|
-
'@esbuild/linux-arm64@0.
|
|
85
|
-
resolution: {integrity: sha512-
|
|
279
|
+
'@esbuild/linux-arm64@0.27.2':
|
|
280
|
+
resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
|
|
86
281
|
engines: {node: '>=18'}
|
|
87
282
|
cpu: [arm64]
|
|
88
283
|
os: [linux]
|
|
89
284
|
|
|
90
|
-
'@esbuild/linux-arm@0.
|
|
91
|
-
resolution: {integrity: sha512-
|
|
285
|
+
'@esbuild/linux-arm@0.27.2':
|
|
286
|
+
resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
|
|
92
287
|
engines: {node: '>=18'}
|
|
93
288
|
cpu: [arm]
|
|
94
289
|
os: [linux]
|
|
95
290
|
|
|
96
|
-
'@esbuild/linux-ia32@0.
|
|
97
|
-
resolution: {integrity: sha512-
|
|
291
|
+
'@esbuild/linux-ia32@0.27.2':
|
|
292
|
+
resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
|
|
98
293
|
engines: {node: '>=18'}
|
|
99
294
|
cpu: [ia32]
|
|
100
295
|
os: [linux]
|
|
101
296
|
|
|
102
|
-
'@esbuild/linux-loong64@0.
|
|
103
|
-
resolution: {integrity: sha512-
|
|
297
|
+
'@esbuild/linux-loong64@0.27.2':
|
|
298
|
+
resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
|
|
104
299
|
engines: {node: '>=18'}
|
|
105
300
|
cpu: [loong64]
|
|
106
301
|
os: [linux]
|
|
107
302
|
|
|
108
|
-
'@esbuild/linux-mips64el@0.
|
|
109
|
-
resolution: {integrity: sha512-
|
|
303
|
+
'@esbuild/linux-mips64el@0.27.2':
|
|
304
|
+
resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
|
|
110
305
|
engines: {node: '>=18'}
|
|
111
306
|
cpu: [mips64el]
|
|
112
307
|
os: [linux]
|
|
113
308
|
|
|
114
|
-
'@esbuild/linux-ppc64@0.
|
|
115
|
-
resolution: {integrity: sha512-
|
|
309
|
+
'@esbuild/linux-ppc64@0.27.2':
|
|
310
|
+
resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
|
|
116
311
|
engines: {node: '>=18'}
|
|
117
312
|
cpu: [ppc64]
|
|
118
313
|
os: [linux]
|
|
119
314
|
|
|
120
|
-
'@esbuild/linux-riscv64@0.
|
|
121
|
-
resolution: {integrity: sha512-
|
|
315
|
+
'@esbuild/linux-riscv64@0.27.2':
|
|
316
|
+
resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
|
|
122
317
|
engines: {node: '>=18'}
|
|
123
318
|
cpu: [riscv64]
|
|
124
319
|
os: [linux]
|
|
125
320
|
|
|
126
|
-
'@esbuild/linux-s390x@0.
|
|
127
|
-
resolution: {integrity: sha512-
|
|
321
|
+
'@esbuild/linux-s390x@0.27.2':
|
|
322
|
+
resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
|
|
128
323
|
engines: {node: '>=18'}
|
|
129
324
|
cpu: [s390x]
|
|
130
325
|
os: [linux]
|
|
131
326
|
|
|
132
|
-
'@esbuild/linux-x64@0.
|
|
133
|
-
resolution: {integrity: sha512-
|
|
327
|
+
'@esbuild/linux-x64@0.27.2':
|
|
328
|
+
resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
|
|
134
329
|
engines: {node: '>=18'}
|
|
135
330
|
cpu: [x64]
|
|
136
331
|
os: [linux]
|
|
137
332
|
|
|
138
|
-
'@esbuild/netbsd-arm64@0.
|
|
139
|
-
resolution: {integrity: sha512-
|
|
333
|
+
'@esbuild/netbsd-arm64@0.27.2':
|
|
334
|
+
resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
|
|
140
335
|
engines: {node: '>=18'}
|
|
141
336
|
cpu: [arm64]
|
|
142
337
|
os: [netbsd]
|
|
143
338
|
|
|
144
|
-
'@esbuild/netbsd-x64@0.
|
|
145
|
-
resolution: {integrity: sha512-
|
|
339
|
+
'@esbuild/netbsd-x64@0.27.2':
|
|
340
|
+
resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
|
|
146
341
|
engines: {node: '>=18'}
|
|
147
342
|
cpu: [x64]
|
|
148
343
|
os: [netbsd]
|
|
149
344
|
|
|
150
|
-
'@esbuild/openbsd-arm64@0.
|
|
151
|
-
resolution: {integrity: sha512-
|
|
345
|
+
'@esbuild/openbsd-arm64@0.27.2':
|
|
346
|
+
resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
|
|
152
347
|
engines: {node: '>=18'}
|
|
153
348
|
cpu: [arm64]
|
|
154
349
|
os: [openbsd]
|
|
155
350
|
|
|
156
|
-
'@esbuild/openbsd-x64@0.
|
|
157
|
-
resolution: {integrity: sha512
|
|
351
|
+
'@esbuild/openbsd-x64@0.27.2':
|
|
352
|
+
resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
|
|
158
353
|
engines: {node: '>=18'}
|
|
159
354
|
cpu: [x64]
|
|
160
355
|
os: [openbsd]
|
|
161
356
|
|
|
162
|
-
'@esbuild/openharmony-arm64@0.
|
|
163
|
-
resolution: {integrity: sha512-
|
|
357
|
+
'@esbuild/openharmony-arm64@0.27.2':
|
|
358
|
+
resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
|
|
164
359
|
engines: {node: '>=18'}
|
|
165
360
|
cpu: [arm64]
|
|
166
361
|
os: [openharmony]
|
|
167
362
|
|
|
168
|
-
'@esbuild/sunos-x64@0.
|
|
169
|
-
resolution: {integrity: sha512-
|
|
363
|
+
'@esbuild/sunos-x64@0.27.2':
|
|
364
|
+
resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
|
|
170
365
|
engines: {node: '>=18'}
|
|
171
366
|
cpu: [x64]
|
|
172
367
|
os: [sunos]
|
|
173
368
|
|
|
174
|
-
'@esbuild/win32-arm64@0.
|
|
175
|
-
resolution: {integrity: sha512-
|
|
369
|
+
'@esbuild/win32-arm64@0.27.2':
|
|
370
|
+
resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
|
|
176
371
|
engines: {node: '>=18'}
|
|
177
372
|
cpu: [arm64]
|
|
178
373
|
os: [win32]
|
|
179
374
|
|
|
180
|
-
'@esbuild/win32-ia32@0.
|
|
181
|
-
resolution: {integrity: sha512-
|
|
375
|
+
'@esbuild/win32-ia32@0.27.2':
|
|
376
|
+
resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
|
|
182
377
|
engines: {node: '>=18'}
|
|
183
378
|
cpu: [ia32]
|
|
184
379
|
os: [win32]
|
|
185
380
|
|
|
186
|
-
'@esbuild/win32-x64@0.
|
|
187
|
-
resolution: {integrity: sha512-
|
|
381
|
+
'@esbuild/win32-x64@0.27.2':
|
|
382
|
+
resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
|
|
188
383
|
engines: {node: '>=18'}
|
|
189
384
|
cpu: [x64]
|
|
190
385
|
os: [win32]
|
|
191
386
|
|
|
387
|
+
'@eslint-community/eslint-utils@4.9.1':
|
|
388
|
+
resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
|
|
389
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
390
|
+
peerDependencies:
|
|
391
|
+
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
|
392
|
+
|
|
393
|
+
'@eslint-community/regexpp@4.12.2':
|
|
394
|
+
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
|
|
395
|
+
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
|
396
|
+
|
|
397
|
+
'@eslint/config-array@0.21.1':
|
|
398
|
+
resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
|
|
399
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
400
|
+
|
|
401
|
+
'@eslint/config-helpers@0.4.2':
|
|
402
|
+
resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
|
|
403
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
404
|
+
|
|
405
|
+
'@eslint/core@0.17.0':
|
|
406
|
+
resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
|
|
407
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
408
|
+
|
|
409
|
+
'@eslint/eslintrc@3.3.3':
|
|
410
|
+
resolution: {integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==}
|
|
411
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
412
|
+
|
|
413
|
+
'@eslint/js@9.39.2':
|
|
414
|
+
resolution: {integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==}
|
|
415
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
416
|
+
|
|
417
|
+
'@eslint/object-schema@2.1.7':
|
|
418
|
+
resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
|
|
419
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
420
|
+
|
|
421
|
+
'@eslint/plugin-kit@0.4.1':
|
|
422
|
+
resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
|
|
423
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
424
|
+
|
|
425
|
+
'@humanfs/core@0.19.1':
|
|
426
|
+
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
|
|
427
|
+
engines: {node: '>=18.18.0'}
|
|
428
|
+
|
|
429
|
+
'@humanfs/node@0.16.7':
|
|
430
|
+
resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
|
|
431
|
+
engines: {node: '>=18.18.0'}
|
|
432
|
+
|
|
433
|
+
'@humanwhocodes/module-importer@1.0.1':
|
|
434
|
+
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
|
|
435
|
+
engines: {node: '>=12.22'}
|
|
436
|
+
|
|
437
|
+
'@humanwhocodes/retry@0.4.3':
|
|
438
|
+
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
|
|
439
|
+
engines: {node: '>=18.18'}
|
|
440
|
+
|
|
192
441
|
'@jridgewell/gen-mapping@0.3.13':
|
|
193
442
|
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
194
443
|
|
|
@@ -202,6 +451,16 @@ packages:
|
|
|
202
451
|
'@jridgewell/trace-mapping@0.3.31':
|
|
203
452
|
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
204
453
|
|
|
454
|
+
'@langchain/core@1.1.16':
|
|
455
|
+
resolution: {integrity: sha512-2XKQKxvQdeQiuIo0tacAmDVojhSVAci8D2WDdmmyN+6CqDusLHEHyIDaOt4o+UBvpkyHXbCdrljzDTQY/AKeqg==}
|
|
456
|
+
engines: {node: '>=20'}
|
|
457
|
+
|
|
458
|
+
'@langchain/openai@1.2.3':
|
|
459
|
+
resolution: {integrity: sha512-+bKR4+Obz5a/NHEw0bAm3f/s4k0cXc/g46ZRRXqjcyDYP+9wFarItvGNn6DEEk5S7pGp1QqApAQNt9IZk1Ic1Q==}
|
|
460
|
+
engines: {node: '>=20'}
|
|
461
|
+
peerDependencies:
|
|
462
|
+
'@langchain/core': ^1.0.0
|
|
463
|
+
|
|
205
464
|
'@nodelib/fs.scandir@2.1.5':
|
|
206
465
|
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
|
207
466
|
engines: {node: '>= 8'}
|
|
@@ -214,130 +473,440 @@ packages:
|
|
|
214
473
|
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
|
215
474
|
engines: {node: '>= 8'}
|
|
216
475
|
|
|
217
|
-
'@rollup/rollup-android-arm-eabi@4.
|
|
218
|
-
resolution: {integrity: sha512-
|
|
476
|
+
'@rollup/rollup-android-arm-eabi@4.55.3':
|
|
477
|
+
resolution: {integrity: sha512-qyX8+93kK/7R5BEXPC2PjUt0+fS/VO2BVHjEHyIEWiYn88rcRBHmdLgoJjktBltgAf+NY7RfCGB1SoyKS/p9kg==}
|
|
219
478
|
cpu: [arm]
|
|
220
479
|
os: [android]
|
|
221
480
|
|
|
222
|
-
'@rollup/rollup-android-arm64@4.
|
|
223
|
-
resolution: {integrity: sha512-
|
|
481
|
+
'@rollup/rollup-android-arm64@4.55.3':
|
|
482
|
+
resolution: {integrity: sha512-6sHrL42bjt5dHQzJ12Q4vMKfN+kUnZ0atHHnv4V0Wd9JMTk7FDzSY35+7qbz3ypQYMBPANbpGK7JpnWNnhGt8g==}
|
|
224
483
|
cpu: [arm64]
|
|
225
484
|
os: [android]
|
|
226
485
|
|
|
227
|
-
'@rollup/rollup-darwin-arm64@4.
|
|
228
|
-
resolution: {integrity: sha512-
|
|
486
|
+
'@rollup/rollup-darwin-arm64@4.55.3':
|
|
487
|
+
resolution: {integrity: sha512-1ht2SpGIjEl2igJ9AbNpPIKzb1B5goXOcmtD0RFxnwNuMxqkR6AUaaErZz+4o+FKmzxcSNBOLrzsICZVNYa1Rw==}
|
|
229
488
|
cpu: [arm64]
|
|
230
489
|
os: [darwin]
|
|
231
490
|
|
|
232
|
-
'@rollup/rollup-darwin-x64@4.
|
|
233
|
-
resolution: {integrity: sha512-
|
|
491
|
+
'@rollup/rollup-darwin-x64@4.55.3':
|
|
492
|
+
resolution: {integrity: sha512-FYZ4iVunXxtT+CZqQoPVwPhH7549e/Gy7PIRRtq4t5f/vt54pX6eG9ebttRH6QSH7r/zxAFA4EZGlQ0h0FvXiA==}
|
|
234
493
|
cpu: [x64]
|
|
235
494
|
os: [darwin]
|
|
236
495
|
|
|
237
|
-
'@rollup/rollup-freebsd-arm64@4.
|
|
238
|
-
resolution: {integrity: sha512-
|
|
496
|
+
'@rollup/rollup-freebsd-arm64@4.55.3':
|
|
497
|
+
resolution: {integrity: sha512-M/mwDCJ4wLsIgyxv2Lj7Len+UMHd4zAXu4GQ2UaCdksStglWhP61U3uowkaYBQBhVoNpwx5Hputo8eSqM7K82Q==}
|
|
239
498
|
cpu: [arm64]
|
|
240
499
|
os: [freebsd]
|
|
241
500
|
|
|
242
|
-
'@rollup/rollup-freebsd-x64@4.
|
|
243
|
-
resolution: {integrity: sha512-
|
|
501
|
+
'@rollup/rollup-freebsd-x64@4.55.3':
|
|
502
|
+
resolution: {integrity: sha512-5jZT2c7jBCrMegKYTYTpni8mg8y3uY8gzeq2ndFOANwNuC/xJbVAoGKR9LhMDA0H3nIhvaqUoBEuJoICBudFrA==}
|
|
244
503
|
cpu: [x64]
|
|
245
504
|
os: [freebsd]
|
|
246
505
|
|
|
247
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.
|
|
248
|
-
resolution: {integrity: sha512-
|
|
506
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.55.3':
|
|
507
|
+
resolution: {integrity: sha512-YeGUhkN1oA+iSPzzhEjVPS29YbViOr8s4lSsFaZKLHswgqP911xx25fPOyE9+khmN6W4VeM0aevbDp4kkEoHiA==}
|
|
249
508
|
cpu: [arm]
|
|
250
509
|
os: [linux]
|
|
251
|
-
libc: [glibc]
|
|
252
510
|
|
|
253
|
-
'@rollup/rollup-linux-arm-musleabihf@4.
|
|
254
|
-
resolution: {integrity: sha512
|
|
511
|
+
'@rollup/rollup-linux-arm-musleabihf@4.55.3':
|
|
512
|
+
resolution: {integrity: sha512-eo0iOIOvcAlWB3Z3eh8pVM8hZ0oVkK3AjEM9nSrkSug2l15qHzF3TOwT0747omI6+CJJvl7drwZepT+re6Fy/w==}
|
|
255
513
|
cpu: [arm]
|
|
256
514
|
os: [linux]
|
|
257
|
-
libc: [musl]
|
|
258
515
|
|
|
259
|
-
'@rollup/rollup-linux-arm64-gnu@4.
|
|
260
|
-
resolution: {integrity: sha512-
|
|
516
|
+
'@rollup/rollup-linux-arm64-gnu@4.55.3':
|
|
517
|
+
resolution: {integrity: sha512-DJay3ep76bKUDImmn//W5SvpjRN5LmK/ntWyeJs/dcnwiiHESd3N4uteK9FDLf0S0W8E6Y0sVRXpOCoQclQqNg==}
|
|
261
518
|
cpu: [arm64]
|
|
262
519
|
os: [linux]
|
|
263
|
-
libc: [glibc]
|
|
264
520
|
|
|
265
|
-
'@rollup/rollup-linux-arm64-musl@4.
|
|
266
|
-
resolution: {integrity: sha512-
|
|
521
|
+
'@rollup/rollup-linux-arm64-musl@4.55.3':
|
|
522
|
+
resolution: {integrity: sha512-BKKWQkY2WgJ5MC/ayvIJTHjy0JUGb5efaHCUiG/39sSUvAYRBaO3+/EK0AZT1RF3pSj86O24GLLik9mAYu0IJg==}
|
|
267
523
|
cpu: [arm64]
|
|
268
524
|
os: [linux]
|
|
269
|
-
libc: [musl]
|
|
270
525
|
|
|
271
|
-
'@rollup/rollup-linux-loong64-gnu@4.
|
|
272
|
-
resolution: {integrity: sha512-
|
|
526
|
+
'@rollup/rollup-linux-loong64-gnu@4.55.3':
|
|
527
|
+
resolution: {integrity: sha512-Q9nVlWtKAG7ISW80OiZGxTr6rYtyDSkauHUtvkQI6TNOJjFvpj4gcH+KaJihqYInnAzEEUetPQubRwHef4exVg==}
|
|
273
528
|
cpu: [loong64]
|
|
274
529
|
os: [linux]
|
|
275
|
-
libc: [glibc]
|
|
276
530
|
|
|
277
|
-
'@rollup/rollup-linux-
|
|
278
|
-
resolution: {integrity: sha512-
|
|
531
|
+
'@rollup/rollup-linux-loong64-musl@4.55.3':
|
|
532
|
+
resolution: {integrity: sha512-2H5LmhzrpC4fFRNwknzmmTvvyJPHwESoJgyReXeFoYYuIDfBhP29TEXOkCJE/KxHi27mj7wDUClNq78ue3QEBQ==}
|
|
533
|
+
cpu: [loong64]
|
|
534
|
+
os: [linux]
|
|
535
|
+
|
|
536
|
+
'@rollup/rollup-linux-ppc64-gnu@4.55.3':
|
|
537
|
+
resolution: {integrity: sha512-9S542V0ie9LCTznPYlvaeySwBeIEa7rDBgLHKZ5S9DBgcqdJYburabm8TqiqG6mrdTzfV5uttQRHcbKff9lWtA==}
|
|
538
|
+
cpu: [ppc64]
|
|
539
|
+
os: [linux]
|
|
540
|
+
|
|
541
|
+
'@rollup/rollup-linux-ppc64-musl@4.55.3':
|
|
542
|
+
resolution: {integrity: sha512-ukxw+YH3XXpcezLgbJeasgxyTbdpnNAkrIlFGDl7t+pgCxZ89/6n1a+MxlY7CegU+nDgrgdqDelPRNQ/47zs0g==}
|
|
279
543
|
cpu: [ppc64]
|
|
280
544
|
os: [linux]
|
|
281
|
-
libc: [glibc]
|
|
282
545
|
|
|
283
|
-
'@rollup/rollup-linux-riscv64-gnu@4.
|
|
284
|
-
resolution: {integrity: sha512-
|
|
546
|
+
'@rollup/rollup-linux-riscv64-gnu@4.55.3':
|
|
547
|
+
resolution: {integrity: sha512-Iauw9UsTTvlF++FhghFJjqYxyXdggXsOqGpFBylaRopVpcbfyIIsNvkf9oGwfgIcf57z3m8+/oSYTo6HutBFNw==}
|
|
285
548
|
cpu: [riscv64]
|
|
286
549
|
os: [linux]
|
|
287
|
-
libc: [glibc]
|
|
288
550
|
|
|
289
|
-
'@rollup/rollup-linux-riscv64-musl@4.
|
|
290
|
-
resolution: {integrity: sha512-
|
|
551
|
+
'@rollup/rollup-linux-riscv64-musl@4.55.3':
|
|
552
|
+
resolution: {integrity: sha512-3OqKAHSEQXKdq9mQ4eajqUgNIK27VZPW3I26EP8miIzuKzCJ3aW3oEn2pzF+4/Hj/Moc0YDsOtBgT5bZ56/vcA==}
|
|
291
553
|
cpu: [riscv64]
|
|
292
554
|
os: [linux]
|
|
293
|
-
libc: [musl]
|
|
294
555
|
|
|
295
|
-
'@rollup/rollup-linux-s390x-gnu@4.
|
|
296
|
-
resolution: {integrity: sha512-
|
|
556
|
+
'@rollup/rollup-linux-s390x-gnu@4.55.3':
|
|
557
|
+
resolution: {integrity: sha512-0CM8dSVzVIaqMcXIFej8zZrSFLnGrAE8qlNbbHfTw1EEPnFTg1U1ekI0JdzjPyzSfUsHWtodilQQG/RA55berA==}
|
|
297
558
|
cpu: [s390x]
|
|
298
559
|
os: [linux]
|
|
299
|
-
libc: [glibc]
|
|
300
560
|
|
|
301
|
-
'@rollup/rollup-linux-x64-gnu@4.
|
|
302
|
-
resolution: {integrity: sha512
|
|
561
|
+
'@rollup/rollup-linux-x64-gnu@4.55.3':
|
|
562
|
+
resolution: {integrity: sha512-+fgJE12FZMIgBaKIAGd45rxf+5ftcycANJRWk8Vz0NnMTM5rADPGuRFTYar+Mqs560xuART7XsX2lSACa1iOmQ==}
|
|
303
563
|
cpu: [x64]
|
|
304
564
|
os: [linux]
|
|
305
|
-
libc: [glibc]
|
|
306
565
|
|
|
307
|
-
'@rollup/rollup-linux-x64-musl@4.
|
|
308
|
-
resolution: {integrity: sha512-
|
|
566
|
+
'@rollup/rollup-linux-x64-musl@4.55.3':
|
|
567
|
+
resolution: {integrity: sha512-tMD7NnbAolWPzQlJQJjVFh/fNH3K/KnA7K8gv2dJWCwwnaK6DFCYST1QXYWfu5V0cDwarWC8Sf/cfMHniNq21A==}
|
|
309
568
|
cpu: [x64]
|
|
310
569
|
os: [linux]
|
|
311
|
-
libc: [musl]
|
|
312
570
|
|
|
313
|
-
'@rollup/rollup-
|
|
314
|
-
resolution: {integrity: sha512-
|
|
571
|
+
'@rollup/rollup-openbsd-x64@4.55.3':
|
|
572
|
+
resolution: {integrity: sha512-u5KsqxOxjEeIbn7bUK1MPM34jrnPwjeqgyin4/N6e/KzXKfpE9Mi0nCxcQjaM9lLmPcHmn/xx1yOjgTMtu1jWQ==}
|
|
573
|
+
cpu: [x64]
|
|
574
|
+
os: [openbsd]
|
|
575
|
+
|
|
576
|
+
'@rollup/rollup-openharmony-arm64@4.55.3':
|
|
577
|
+
resolution: {integrity: sha512-vo54aXwjpTtsAnb3ca7Yxs9t2INZg7QdXN/7yaoG7nPGbOBXYXQY41Km+S1Ov26vzOAzLcAjmMdjyEqS1JkVhw==}
|
|
315
578
|
cpu: [arm64]
|
|
316
579
|
os: [openharmony]
|
|
317
580
|
|
|
318
|
-
'@rollup/rollup-win32-arm64-msvc@4.
|
|
319
|
-
resolution: {integrity: sha512-
|
|
581
|
+
'@rollup/rollup-win32-arm64-msvc@4.55.3':
|
|
582
|
+
resolution: {integrity: sha512-HI+PIVZ+m+9AgpnY3pt6rinUdRYrGHvmVdsNQ4odNqQ/eRF78DVpMR7mOq7nW06QxpczibwBmeQzB68wJ+4W4A==}
|
|
320
583
|
cpu: [arm64]
|
|
321
584
|
os: [win32]
|
|
322
585
|
|
|
323
|
-
'@rollup/rollup-win32-ia32-msvc@4.
|
|
324
|
-
resolution: {integrity: sha512-
|
|
586
|
+
'@rollup/rollup-win32-ia32-msvc@4.55.3':
|
|
587
|
+
resolution: {integrity: sha512-vRByotbdMo3Wdi+8oC2nVxtc3RkkFKrGaok+a62AT8lz/YBuQjaVYAS5Zcs3tPzW43Vsf9J0wehJbUY5xRSekA==}
|
|
325
588
|
cpu: [ia32]
|
|
326
589
|
os: [win32]
|
|
327
590
|
|
|
328
|
-
'@rollup/rollup-win32-x64-gnu@4.
|
|
329
|
-
resolution: {integrity: sha512-
|
|
591
|
+
'@rollup/rollup-win32-x64-gnu@4.55.3':
|
|
592
|
+
resolution: {integrity: sha512-POZHq7UeuzMJljC5NjKi8vKMFN6/5EOqcX1yGntNLp7rUTpBAXQ1hW8kWPFxYLv07QMcNM75xqVLGPWQq6TKFA==}
|
|
330
593
|
cpu: [x64]
|
|
331
594
|
os: [win32]
|
|
332
595
|
|
|
333
|
-
'@rollup/rollup-win32-x64-msvc@4.
|
|
334
|
-
resolution: {integrity: sha512-
|
|
596
|
+
'@rollup/rollup-win32-x64-msvc@4.55.3':
|
|
597
|
+
resolution: {integrity: sha512-aPFONczE4fUFKNXszdvnd2GqKEYQdV5oEsIbKPujJmWlCI9zEsv1Otig8RKK+X9bed9gFUN6LAeN4ZcNuu4zjg==}
|
|
335
598
|
cpu: [x64]
|
|
336
599
|
os: [win32]
|
|
337
600
|
|
|
601
|
+
'@smithy/abort-controller@4.2.8':
|
|
602
|
+
resolution: {integrity: sha512-peuVfkYHAmS5ybKxWcfraK7WBBP0J+rkfUcbHJJKQ4ir3UAUNQI+Y4Vt/PqSzGqgloJ5O1dk7+WzNL8wcCSXbw==}
|
|
603
|
+
engines: {node: '>=18.0.0'}
|
|
604
|
+
|
|
605
|
+
'@smithy/chunked-blob-reader-native@4.2.1':
|
|
606
|
+
resolution: {integrity: sha512-lX9Ay+6LisTfpLid2zZtIhSEjHMZoAR5hHCR4H7tBz/Zkfr5ea8RcQ7Tk4mi0P76p4cN+Btz16Ffno7YHpKXnQ==}
|
|
607
|
+
engines: {node: '>=18.0.0'}
|
|
608
|
+
|
|
609
|
+
'@smithy/chunked-blob-reader@5.2.0':
|
|
610
|
+
resolution: {integrity: sha512-WmU0TnhEAJLWvfSeMxBNe5xtbselEO8+4wG0NtZeL8oR21WgH1xiO37El+/Y+H/Ie4SCwBy3MxYWmOYaGgZueA==}
|
|
611
|
+
engines: {node: '>=18.0.0'}
|
|
612
|
+
|
|
613
|
+
'@smithy/config-resolver@4.4.6':
|
|
614
|
+
resolution: {integrity: sha512-qJpzYC64kaj3S0fueiu3kXm8xPrR3PcXDPEgnaNMRn0EjNSZFoFjvbUp0YUDsRhN1CB90EnHJtbxWKevnH99UQ==}
|
|
615
|
+
engines: {node: '>=18.0.0'}
|
|
616
|
+
|
|
617
|
+
'@smithy/core@3.21.0':
|
|
618
|
+
resolution: {integrity: sha512-bg2TfzgsERyETAxc/Ims/eJX8eAnIeTi4r4LHpMpfF/2NyO6RsWis0rjKcCPaGksljmOb23BZRiCeT/3NvwkXw==}
|
|
619
|
+
engines: {node: '>=18.0.0'}
|
|
620
|
+
|
|
621
|
+
'@smithy/credential-provider-imds@4.2.8':
|
|
622
|
+
resolution: {integrity: sha512-FNT0xHS1c/CPN8upqbMFP83+ul5YgdisfCfkZ86Jh2NSmnqw/AJ6x5pEogVCTVvSm7j9MopRU89bmDelxuDMYw==}
|
|
623
|
+
engines: {node: '>=18.0.0'}
|
|
624
|
+
|
|
625
|
+
'@smithy/eventstream-codec@4.2.8':
|
|
626
|
+
resolution: {integrity: sha512-jS/O5Q14UsufqoGhov7dHLOPCzkYJl9QDzusI2Psh4wyYx/izhzvX9P4D69aTxcdfVhEPhjK+wYyn/PzLjKbbw==}
|
|
627
|
+
engines: {node: '>=18.0.0'}
|
|
628
|
+
|
|
629
|
+
'@smithy/eventstream-serde-browser@4.2.8':
|
|
630
|
+
resolution: {integrity: sha512-MTfQT/CRQz5g24ayXdjg53V0mhucZth4PESoA5IhvaWVDTOQLfo8qI9vzqHcPsdd2v6sqfTYqF5L/l+pea5Uyw==}
|
|
631
|
+
engines: {node: '>=18.0.0'}
|
|
632
|
+
|
|
633
|
+
'@smithy/eventstream-serde-config-resolver@4.3.8':
|
|
634
|
+
resolution: {integrity: sha512-ah12+luBiDGzBruhu3efNy1IlbwSEdNiw8fOZksoKoWW1ZHvO/04MQsdnws/9Aj+5b0YXSSN2JXKy/ClIsW8MQ==}
|
|
635
|
+
engines: {node: '>=18.0.0'}
|
|
636
|
+
|
|
637
|
+
'@smithy/eventstream-serde-node@4.2.8':
|
|
638
|
+
resolution: {integrity: sha512-cYpCpp29z6EJHa5T9WL0KAlq3SOKUQkcgSoeRfRVwjGgSFl7Uh32eYGt7IDYCX20skiEdRffyDpvF2efEZPC0A==}
|
|
639
|
+
engines: {node: '>=18.0.0'}
|
|
640
|
+
|
|
641
|
+
'@smithy/eventstream-serde-universal@4.2.8':
|
|
642
|
+
resolution: {integrity: sha512-iJ6YNJd0bntJYnX6s52NC4WFYcZeKrPUr1Kmmr5AwZcwCSzVpS7oavAmxMR7pMq7V+D1G4s9F5NJK0xwOsKAlQ==}
|
|
643
|
+
engines: {node: '>=18.0.0'}
|
|
644
|
+
|
|
645
|
+
'@smithy/fetch-http-handler@5.3.9':
|
|
646
|
+
resolution: {integrity: sha512-I4UhmcTYXBrct03rwzQX1Y/iqQlzVQaPxWjCjula++5EmWq9YGBrx6bbGqluGc1f0XEfhSkiY4jhLgbsJUMKRA==}
|
|
647
|
+
engines: {node: '>=18.0.0'}
|
|
648
|
+
|
|
649
|
+
'@smithy/hash-blob-browser@4.2.9':
|
|
650
|
+
resolution: {integrity: sha512-m80d/iicI7DlBDxyQP6Th7BW/ejDGiF0bgI754+tiwK0lgMkcaIBgvwwVc7OFbY4eUzpGtnig52MhPAEJ7iNYg==}
|
|
651
|
+
engines: {node: '>=18.0.0'}
|
|
652
|
+
|
|
653
|
+
'@smithy/hash-node@4.2.8':
|
|
654
|
+
resolution: {integrity: sha512-7ZIlPbmaDGxVoxErDZnuFG18WekhbA/g2/i97wGj+wUBeS6pcUeAym8u4BXh/75RXWhgIJhyC11hBzig6MljwA==}
|
|
655
|
+
engines: {node: '>=18.0.0'}
|
|
656
|
+
|
|
657
|
+
'@smithy/hash-stream-node@4.2.8':
|
|
658
|
+
resolution: {integrity: sha512-v0FLTXgHrTeheYZFGhR+ehX5qUm4IQsjAiL9qehad2cyjMWcN2QG6/4mSwbSgEQzI7jwfoXj7z4fxZUx/Mhj2w==}
|
|
659
|
+
engines: {node: '>=18.0.0'}
|
|
660
|
+
|
|
661
|
+
'@smithy/invalid-dependency@4.2.8':
|
|
662
|
+
resolution: {integrity: sha512-N9iozRybwAQ2dn9Fot9kI6/w9vos2oTXLhtK7ovGqwZjlOcxu6XhPlpLpC+INsxktqHinn5gS2DXDjDF2kG5sQ==}
|
|
663
|
+
engines: {node: '>=18.0.0'}
|
|
664
|
+
|
|
665
|
+
'@smithy/is-array-buffer@2.2.0':
|
|
666
|
+
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
|
|
667
|
+
engines: {node: '>=14.0.0'}
|
|
668
|
+
|
|
669
|
+
'@smithy/is-array-buffer@4.2.0':
|
|
670
|
+
resolution: {integrity: sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ==}
|
|
671
|
+
engines: {node: '>=18.0.0'}
|
|
672
|
+
|
|
673
|
+
'@smithy/md5-js@4.2.8':
|
|
674
|
+
resolution: {integrity: sha512-oGMaLj4tVZzLi3itBa9TCswgMBr7k9b+qKYowQ6x1rTyTuO1IU2YHdHUa+891OsOH+wCsH7aTPRsTJO3RMQmjQ==}
|
|
675
|
+
engines: {node: '>=18.0.0'}
|
|
676
|
+
|
|
677
|
+
'@smithy/middleware-content-length@4.2.8':
|
|
678
|
+
resolution: {integrity: sha512-RO0jeoaYAB1qBRhfVyq0pMgBoUK34YEJxVxyjOWYZiOKOq2yMZ4MnVXMZCUDenpozHue207+9P5ilTV1zeda0A==}
|
|
679
|
+
engines: {node: '>=18.0.0'}
|
|
680
|
+
|
|
681
|
+
'@smithy/middleware-endpoint@4.4.10':
|
|
682
|
+
resolution: {integrity: sha512-kwWpNltpxrvPabnjEFvwSmA+66l6s2ReCvgVSzW/z92LU4T28fTdgZ18IdYRYOrisu2NMQ0jUndRScbO65A/zg==}
|
|
683
|
+
engines: {node: '>=18.0.0'}
|
|
684
|
+
|
|
685
|
+
'@smithy/middleware-retry@4.4.26':
|
|
686
|
+
resolution: {integrity: sha512-ozZMoTAr+B2aVYfLYfkssFvc8ZV3p/vLpVQ7/k277xxUOA9ykSPe5obL2j6yHfbdrM/SZV7qj0uk/hSqavHrLw==}
|
|
687
|
+
engines: {node: '>=18.0.0'}
|
|
688
|
+
|
|
689
|
+
'@smithy/middleware-serde@4.2.9':
|
|
690
|
+
resolution: {integrity: sha512-eMNiej0u/snzDvlqRGSN3Vl0ESn3838+nKyVfF2FKNXFbi4SERYT6PR392D39iczngbqqGG0Jl1DlCnp7tBbXQ==}
|
|
691
|
+
engines: {node: '>=18.0.0'}
|
|
692
|
+
|
|
693
|
+
'@smithy/middleware-stack@4.2.8':
|
|
694
|
+
resolution: {integrity: sha512-w6LCfOviTYQjBctOKSwy6A8FIkQy7ICvglrZFl6Bw4FmcQ1Z420fUtIhxaUZZshRe0VCq4kvDiPiXrPZAe8oRA==}
|
|
695
|
+
engines: {node: '>=18.0.0'}
|
|
696
|
+
|
|
697
|
+
'@smithy/node-config-provider@4.3.8':
|
|
698
|
+
resolution: {integrity: sha512-aFP1ai4lrbVlWjfpAfRSL8KFcnJQYfTl5QxLJXY32vghJrDuFyPZ6LtUL+JEGYiFRG1PfPLHLoxj107ulncLIg==}
|
|
699
|
+
engines: {node: '>=18.0.0'}
|
|
700
|
+
|
|
701
|
+
'@smithy/node-http-handler@4.4.8':
|
|
702
|
+
resolution: {integrity: sha512-q9u+MSbJVIJ1QmJ4+1u+cERXkrhuILCBDsJUBAW1MPE6sFonbCNaegFuwW9ll8kh5UdyY3jOkoOGlc7BesoLpg==}
|
|
703
|
+
engines: {node: '>=18.0.0'}
|
|
704
|
+
|
|
705
|
+
'@smithy/property-provider@4.2.8':
|
|
706
|
+
resolution: {integrity: sha512-EtCTbyIveCKeOXDSWSdze3k612yCPq1YbXsbqX3UHhkOSW8zKsM9NOJG5gTIya0vbY2DIaieG8pKo1rITHYL0w==}
|
|
707
|
+
engines: {node: '>=18.0.0'}
|
|
708
|
+
|
|
709
|
+
'@smithy/protocol-http@5.3.8':
|
|
710
|
+
resolution: {integrity: sha512-QNINVDhxpZ5QnP3aviNHQFlRogQZDfYlCkQT+7tJnErPQbDhysondEjhikuANxgMsZrkGeiAxXy4jguEGsDrWQ==}
|
|
711
|
+
engines: {node: '>=18.0.0'}
|
|
712
|
+
|
|
713
|
+
'@smithy/querystring-builder@4.2.8':
|
|
714
|
+
resolution: {integrity: sha512-Xr83r31+DrE8CP3MqPgMJl+pQlLLmOfiEUnoyAlGzzJIrEsbKsPy1hqH0qySaQm4oWrCBlUqRt+idEgunKB+iw==}
|
|
715
|
+
engines: {node: '>=18.0.0'}
|
|
716
|
+
|
|
717
|
+
'@smithy/querystring-parser@4.2.8':
|
|
718
|
+
resolution: {integrity: sha512-vUurovluVy50CUlazOiXkPq40KGvGWSdmusa3130MwrR1UNnNgKAlj58wlOe61XSHRpUfIIh6cE0zZ8mzKaDPA==}
|
|
719
|
+
engines: {node: '>=18.0.0'}
|
|
720
|
+
|
|
721
|
+
'@smithy/service-error-classification@4.2.8':
|
|
722
|
+
resolution: {integrity: sha512-mZ5xddodpJhEt3RkCjbmUQuXUOaPNTkbMGR0bcS8FE0bJDLMZlhmpgrvPNCYglVw5rsYTpSnv19womw9WWXKQQ==}
|
|
723
|
+
engines: {node: '>=18.0.0'}
|
|
724
|
+
|
|
725
|
+
'@smithy/shared-ini-file-loader@4.4.3':
|
|
726
|
+
resolution: {integrity: sha512-DfQjxXQnzC5UbCUPeC3Ie8u+rIWZTvuDPAGU/BxzrOGhRvgUanaP68kDZA+jaT3ZI+djOf+4dERGlm9mWfFDrg==}
|
|
727
|
+
engines: {node: '>=18.0.0'}
|
|
728
|
+
|
|
729
|
+
'@smithy/signature-v4@5.3.8':
|
|
730
|
+
resolution: {integrity: sha512-6A4vdGj7qKNRF16UIcO8HhHjKW27thsxYci+5r/uVRkdcBEkOEiY8OMPuydLX4QHSrJqGHPJzPRwwVTqbLZJhg==}
|
|
731
|
+
engines: {node: '>=18.0.0'}
|
|
732
|
+
|
|
733
|
+
'@smithy/smithy-client@4.10.11':
|
|
734
|
+
resolution: {integrity: sha512-6o804SCyHGMXAb5mFJ+iTy9kVKv7F91a9szN0J+9X6p8A0NrdpUxdaC57aye2ipQkP2C4IAqETEpGZ0Zj77Haw==}
|
|
735
|
+
engines: {node: '>=18.0.0'}
|
|
736
|
+
|
|
737
|
+
'@smithy/types@4.12.0':
|
|
738
|
+
resolution: {integrity: sha512-9YcuJVTOBDjg9LWo23Qp0lTQ3D7fQsQtwle0jVfpbUHy9qBwCEgKuVH4FqFB3VYu0nwdHKiEMA+oXz7oV8X1kw==}
|
|
739
|
+
engines: {node: '>=18.0.0'}
|
|
740
|
+
|
|
741
|
+
'@smithy/url-parser@4.2.8':
|
|
742
|
+
resolution: {integrity: sha512-NQho9U68TGMEU639YkXnVMV3GEFFULmmaWdlu1E9qzyIePOHsoSnagTGSDv1Zi8DCNN6btxOSdgmy5E/hsZwhA==}
|
|
743
|
+
engines: {node: '>=18.0.0'}
|
|
744
|
+
|
|
745
|
+
'@smithy/util-base64@4.3.0':
|
|
746
|
+
resolution: {integrity: sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ==}
|
|
747
|
+
engines: {node: '>=18.0.0'}
|
|
748
|
+
|
|
749
|
+
'@smithy/util-body-length-browser@4.2.0':
|
|
750
|
+
resolution: {integrity: sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg==}
|
|
751
|
+
engines: {node: '>=18.0.0'}
|
|
752
|
+
|
|
753
|
+
'@smithy/util-body-length-node@4.2.1':
|
|
754
|
+
resolution: {integrity: sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA==}
|
|
755
|
+
engines: {node: '>=18.0.0'}
|
|
756
|
+
|
|
757
|
+
'@smithy/util-buffer-from@2.2.0':
|
|
758
|
+
resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==}
|
|
759
|
+
engines: {node: '>=14.0.0'}
|
|
760
|
+
|
|
761
|
+
'@smithy/util-buffer-from@4.2.0':
|
|
762
|
+
resolution: {integrity: sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew==}
|
|
763
|
+
engines: {node: '>=18.0.0'}
|
|
764
|
+
|
|
765
|
+
'@smithy/util-config-provider@4.2.0':
|
|
766
|
+
resolution: {integrity: sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==}
|
|
767
|
+
engines: {node: '>=18.0.0'}
|
|
768
|
+
|
|
769
|
+
'@smithy/util-defaults-mode-browser@4.3.25':
|
|
770
|
+
resolution: {integrity: sha512-8ugoNMtss2dJHsXnqsibGPqoaafvWJPACmYKxJ4E6QWaDrixsAemmiMMAVbvwYadjR0H9G2+AlzsInSzRi8PSw==}
|
|
771
|
+
engines: {node: '>=18.0.0'}
|
|
772
|
+
|
|
773
|
+
'@smithy/util-defaults-mode-node@4.2.28':
|
|
774
|
+
resolution: {integrity: sha512-mjUdcP8h3E0K/XvNMi9oBXRV3DMCzeRiYIieZ1LQ7jq5tu6GH/GTWym7a1xIIE0pKSoLcpGsaImuQhGPSIJzAA==}
|
|
775
|
+
engines: {node: '>=18.0.0'}
|
|
776
|
+
|
|
777
|
+
'@smithy/util-endpoints@3.2.8':
|
|
778
|
+
resolution: {integrity: sha512-8JaVTn3pBDkhZgHQ8R0epwWt+BqPSLCjdjXXusK1onwJlRuN69fbvSK66aIKKO7SwVFM6x2J2ox5X8pOaWcUEw==}
|
|
779
|
+
engines: {node: '>=18.0.0'}
|
|
780
|
+
|
|
781
|
+
'@smithy/util-hex-encoding@4.2.0':
|
|
782
|
+
resolution: {integrity: sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw==}
|
|
783
|
+
engines: {node: '>=18.0.0'}
|
|
784
|
+
|
|
785
|
+
'@smithy/util-middleware@4.2.8':
|
|
786
|
+
resolution: {integrity: sha512-PMqfeJxLcNPMDgvPbbLl/2Vpin+luxqTGPpW3NAQVLbRrFRzTa4rNAASYeIGjRV9Ytuhzny39SpyU04EQreF+A==}
|
|
787
|
+
engines: {node: '>=18.0.0'}
|
|
788
|
+
|
|
789
|
+
'@smithy/util-retry@4.2.8':
|
|
790
|
+
resolution: {integrity: sha512-CfJqwvoRY0kTGe5AkQokpURNCT1u/MkRzMTASWMPPo2hNSnKtF1D45dQl3DE2LKLr4m+PW9mCeBMJr5mCAVThg==}
|
|
791
|
+
engines: {node: '>=18.0.0'}
|
|
792
|
+
|
|
793
|
+
'@smithy/util-stream@4.5.10':
|
|
794
|
+
resolution: {integrity: sha512-jbqemy51UFSZSp2y0ZmRfckmrzuKww95zT9BYMmuJ8v3altGcqjwoV1tzpOwuHaKrwQrCjIzOib499ymr2f98g==}
|
|
795
|
+
engines: {node: '>=18.0.0'}
|
|
796
|
+
|
|
797
|
+
'@smithy/util-uri-escape@4.2.0':
|
|
798
|
+
resolution: {integrity: sha512-igZpCKV9+E/Mzrpq6YacdTQ0qTiLm85gD6N/IrmyDvQFA4UnU3d5g3m8tMT/6zG/vVkWSU+VxeUyGonL62DuxA==}
|
|
799
|
+
engines: {node: '>=18.0.0'}
|
|
800
|
+
|
|
801
|
+
'@smithy/util-utf8@2.3.0':
|
|
802
|
+
resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==}
|
|
803
|
+
engines: {node: '>=14.0.0'}
|
|
804
|
+
|
|
805
|
+
'@smithy/util-utf8@4.2.0':
|
|
806
|
+
resolution: {integrity: sha512-zBPfuzoI8xyBtR2P6WQj63Rz8i3AmfAaJLuNG8dWsfvPe8lO4aCPYLn879mEgHndZH1zQ2oXmG8O1GGzzaoZiw==}
|
|
807
|
+
engines: {node: '>=18.0.0'}
|
|
808
|
+
|
|
809
|
+
'@smithy/util-waiter@4.2.8':
|
|
810
|
+
resolution: {integrity: sha512-n+lahlMWk+aejGuax7DPWtqav8HYnWxQwR+LCG2BgCUmaGcTe9qZCFsmw8TMg9iG75HOwhrJCX9TCJRLH+Yzqg==}
|
|
811
|
+
engines: {node: '>=18.0.0'}
|
|
812
|
+
|
|
813
|
+
'@smithy/uuid@1.1.0':
|
|
814
|
+
resolution: {integrity: sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw==}
|
|
815
|
+
engines: {node: '>=18.0.0'}
|
|
816
|
+
|
|
338
817
|
'@types/estree@1.0.8':
|
|
339
818
|
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
340
819
|
|
|
820
|
+
'@types/json-schema@7.0.15':
|
|
821
|
+
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
822
|
+
|
|
823
|
+
'@types/uuid@10.0.0':
|
|
824
|
+
resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
|
|
825
|
+
|
|
826
|
+
'@typescript-eslint/eslint-plugin@8.53.1':
|
|
827
|
+
resolution: {integrity: sha512-cFYYFZ+oQFi6hUnBTbLRXfTJiaQtYE3t4O692agbBl+2Zy+eqSKWtPjhPXJu1G7j4RLjKgeJPDdq3EqOwmX5Ag==}
|
|
828
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
829
|
+
peerDependencies:
|
|
830
|
+
'@typescript-eslint/parser': ^8.53.1
|
|
831
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
832
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
833
|
+
|
|
834
|
+
'@typescript-eslint/parser@8.53.1':
|
|
835
|
+
resolution: {integrity: sha512-nm3cvFN9SqZGXjmw5bZ6cGmvJSyJPn0wU9gHAZZHDnZl2wF9PhHv78Xf06E0MaNk4zLVHL8hb2/c32XvyJOLQg==}
|
|
836
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
837
|
+
peerDependencies:
|
|
838
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
839
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
840
|
+
|
|
841
|
+
'@typescript-eslint/project-service@8.53.1':
|
|
842
|
+
resolution: {integrity: sha512-WYC4FB5Ra0xidsmlPb+1SsnaSKPmS3gsjIARwbEkHkoWloQmuzcfypljaJcR78uyLA1h8sHdWWPHSLDI+MtNog==}
|
|
843
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
844
|
+
peerDependencies:
|
|
845
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
846
|
+
|
|
847
|
+
'@typescript-eslint/scope-manager@8.53.1':
|
|
848
|
+
resolution: {integrity: sha512-Lu23yw1uJMFY8cUeq7JlrizAgeQvWugNQzJp8C3x8Eo5Jw5Q2ykMdiiTB9vBVOOUBysMzmRRmUfwFrZuI2C4SQ==}
|
|
849
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
850
|
+
|
|
851
|
+
'@typescript-eslint/tsconfig-utils@8.53.1':
|
|
852
|
+
resolution: {integrity: sha512-qfvLXS6F6b1y43pnf0pPbXJ+YoXIC7HKg0UGZ27uMIemKMKA6XH2DTxsEDdpdN29D+vHV07x/pnlPNVLhdhWiA==}
|
|
853
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
854
|
+
peerDependencies:
|
|
855
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
856
|
+
|
|
857
|
+
'@typescript-eslint/type-utils@8.53.1':
|
|
858
|
+
resolution: {integrity: sha512-MOrdtNvyhy0rHyv0ENzub1d4wQYKb2NmIqG7qEqPWFW7Mpy2jzFC3pQ2yKDvirZB7jypm5uGjF2Qqs6OIqu47w==}
|
|
859
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
860
|
+
peerDependencies:
|
|
861
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
862
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
863
|
+
|
|
864
|
+
'@typescript-eslint/types@8.53.1':
|
|
865
|
+
resolution: {integrity: sha512-jr/swrr2aRmUAUjW5/zQHbMaui//vQlsZcJKijZf3M26bnmLj8LyZUpj8/Rd6uzaek06OWsqdofN/Thenm5O8A==}
|
|
866
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
867
|
+
|
|
868
|
+
'@typescript-eslint/typescript-estree@8.53.1':
|
|
869
|
+
resolution: {integrity: sha512-RGlVipGhQAG4GxV1s34O91cxQ/vWiHJTDHbXRr0li2q/BGg3RR/7NM8QDWgkEgrwQYCvmJV9ichIwyoKCQ+DTg==}
|
|
870
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
871
|
+
peerDependencies:
|
|
872
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
873
|
+
|
|
874
|
+
'@typescript-eslint/utils@8.53.1':
|
|
875
|
+
resolution: {integrity: sha512-c4bMvGVWW4hv6JmDUEG7fSYlWOl3II2I4ylt0NM+seinYQlZMQIaKaXIIVJWt9Ofh6whrpM+EdDQXKXjNovvrg==}
|
|
876
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
877
|
+
peerDependencies:
|
|
878
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
879
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
880
|
+
|
|
881
|
+
'@typescript-eslint/visitor-keys@8.53.1':
|
|
882
|
+
resolution: {integrity: sha512-oy+wV7xDKFPRyNggmXuZQSBzvoLnpmJs+GhzRhPjrxl2b/jIlyjVokzm47CZCDUdXKr2zd7ZLodPfOBpOPyPlg==}
|
|
883
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
884
|
+
|
|
885
|
+
acorn-jsx@5.3.2:
|
|
886
|
+
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
|
887
|
+
peerDependencies:
|
|
888
|
+
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
889
|
+
|
|
890
|
+
acorn@8.15.0:
|
|
891
|
+
resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
|
|
892
|
+
engines: {node: '>=0.4.0'}
|
|
893
|
+
hasBin: true
|
|
894
|
+
|
|
895
|
+
ajv@6.12.6:
|
|
896
|
+
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
|
|
897
|
+
|
|
898
|
+
ansi-regex@6.2.2:
|
|
899
|
+
resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
|
|
900
|
+
engines: {node: '>=12'}
|
|
901
|
+
|
|
902
|
+
ansi-styles@4.3.0:
|
|
903
|
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
904
|
+
engines: {node: '>=8'}
|
|
905
|
+
|
|
906
|
+
ansi-styles@5.2.0:
|
|
907
|
+
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
|
|
908
|
+
engines: {node: '>=10'}
|
|
909
|
+
|
|
341
910
|
any-promise@1.3.0:
|
|
342
911
|
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
|
|
343
912
|
|
|
@@ -348,6 +917,12 @@ packages:
|
|
|
348
917
|
arg@5.0.2:
|
|
349
918
|
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
|
|
350
919
|
|
|
920
|
+
argparse@2.0.1:
|
|
921
|
+
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
|
922
|
+
|
|
923
|
+
asynckit@0.4.0:
|
|
924
|
+
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
|
925
|
+
|
|
351
926
|
autoprefixer@10.4.23:
|
|
352
927
|
resolution: {integrity: sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==}
|
|
353
928
|
engines: {node: ^10 || ^12 || >=14}
|
|
@@ -355,14 +930,32 @@ packages:
|
|
|
355
930
|
peerDependencies:
|
|
356
931
|
postcss: ^8.1.0
|
|
357
932
|
|
|
358
|
-
|
|
359
|
-
resolution: {integrity: sha512-
|
|
933
|
+
axios@1.13.2:
|
|
934
|
+
resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==}
|
|
935
|
+
|
|
936
|
+
balanced-match@1.0.2:
|
|
937
|
+
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
|
938
|
+
|
|
939
|
+
base64-js@1.5.1:
|
|
940
|
+
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
941
|
+
|
|
942
|
+
baseline-browser-mapping@2.9.16:
|
|
943
|
+
resolution: {integrity: sha512-KeUZdBuxngy825i8xvzaK1Ncnkx0tBmb3k8DkEuqjKRkmtvNTjey2ZsNeh8Dw4lfKvbCOu9oeNx2TKm2vHqcRw==}
|
|
360
944
|
hasBin: true
|
|
361
945
|
|
|
362
946
|
binary-extensions@2.3.0:
|
|
363
947
|
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
|
|
364
948
|
engines: {node: '>=8'}
|
|
365
949
|
|
|
950
|
+
bowser@2.13.1:
|
|
951
|
+
resolution: {integrity: sha512-OHawaAbjwx6rqICCKgSG0SAnT05bzd7ppyKLVUITZpANBaaMFBAsaNkto3LoQ31tyFP5kNujE8Cdx85G9VzOkw==}
|
|
952
|
+
|
|
953
|
+
brace-expansion@1.1.12:
|
|
954
|
+
resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
|
|
955
|
+
|
|
956
|
+
brace-expansion@2.0.2:
|
|
957
|
+
resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
|
|
958
|
+
|
|
366
959
|
braces@3.0.3:
|
|
367
960
|
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
|
368
961
|
engines: {node: '>=8'}
|
|
@@ -372,37 +965,242 @@ packages:
|
|
|
372
965
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
373
966
|
hasBin: true
|
|
374
967
|
|
|
968
|
+
buffer-from@1.1.2:
|
|
969
|
+
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
|
970
|
+
|
|
971
|
+
buffer@5.6.0:
|
|
972
|
+
resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==}
|
|
973
|
+
|
|
974
|
+
call-bind-apply-helpers@1.0.2:
|
|
975
|
+
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
|
|
976
|
+
engines: {node: '>= 0.4'}
|
|
977
|
+
|
|
978
|
+
callsites@3.1.0:
|
|
979
|
+
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
|
980
|
+
engines: {node: '>=6'}
|
|
981
|
+
|
|
375
982
|
camelcase-css@2.0.1:
|
|
376
983
|
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
|
|
377
984
|
engines: {node: '>= 6'}
|
|
378
985
|
|
|
379
|
-
|
|
380
|
-
resolution: {integrity: sha512-
|
|
986
|
+
camelcase@6.3.0:
|
|
987
|
+
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
|
|
988
|
+
engines: {node: '>=10'}
|
|
989
|
+
|
|
990
|
+
caniuse-lite@1.0.30001765:
|
|
991
|
+
resolution: {integrity: sha512-LWcNtSyZrakjECqmpP4qdg0MMGdN368D7X8XvvAqOcqMv0RxnlqVKZl2V6/mBR68oYMxOZPLw/gO7DuisMHUvQ==}
|
|
992
|
+
|
|
993
|
+
chalk@4.1.2:
|
|
994
|
+
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
|
995
|
+
engines: {node: '>=10'}
|
|
996
|
+
|
|
997
|
+
chalk@5.6.2:
|
|
998
|
+
resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
|
|
999
|
+
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
|
|
381
1000
|
|
|
382
1001
|
chokidar@3.6.0:
|
|
383
1002
|
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
|
384
1003
|
engines: {node: '>= 8.10.0'}
|
|
385
1004
|
|
|
1005
|
+
cli-cursor@5.0.0:
|
|
1006
|
+
resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
|
|
1007
|
+
engines: {node: '>=18'}
|
|
1008
|
+
|
|
1009
|
+
cli-spinners@3.4.0:
|
|
1010
|
+
resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
|
|
1011
|
+
engines: {node: '>=18.20'}
|
|
1012
|
+
|
|
1013
|
+
color-convert@2.0.1:
|
|
1014
|
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
1015
|
+
engines: {node: '>=7.0.0'}
|
|
1016
|
+
|
|
1017
|
+
color-name@1.1.4:
|
|
1018
|
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
1019
|
+
|
|
1020
|
+
combined-stream@1.0.8:
|
|
1021
|
+
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
|
|
1022
|
+
engines: {node: '>= 0.8'}
|
|
1023
|
+
|
|
1024
|
+
commander@14.0.2:
|
|
1025
|
+
resolution: {integrity: sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==}
|
|
1026
|
+
engines: {node: '>=20'}
|
|
1027
|
+
|
|
386
1028
|
commander@4.1.1:
|
|
387
1029
|
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
|
|
388
1030
|
engines: {node: '>= 6'}
|
|
389
1031
|
|
|
1032
|
+
concat-map@0.0.1:
|
|
1033
|
+
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
|
1034
|
+
|
|
1035
|
+
console-table-printer@2.15.0:
|
|
1036
|
+
resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
|
|
1037
|
+
|
|
1038
|
+
coze-coding-dev-sdk@0.7.3:
|
|
1039
|
+
resolution: {integrity: sha512-BLOjwSjAHW/LL6l/KMbsKJt7xJCrFJfEUkGvlafjpYrsZ8w/xlyQMbAv5lwk+9En60quX93wpK6AsX3eMcw/Jw==}
|
|
1040
|
+
engines: {node: '>=18.0.0'}
|
|
1041
|
+
hasBin: true
|
|
1042
|
+
|
|
1043
|
+
cross-spawn@7.0.6:
|
|
1044
|
+
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
|
1045
|
+
engines: {node: '>= 8'}
|
|
1046
|
+
|
|
390
1047
|
cssesc@3.0.0:
|
|
391
1048
|
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
|
392
1049
|
engines: {node: '>=4'}
|
|
393
1050
|
hasBin: true
|
|
394
1051
|
|
|
1052
|
+
debug@4.4.3:
|
|
1053
|
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
1054
|
+
engines: {node: '>=6.0'}
|
|
1055
|
+
peerDependencies:
|
|
1056
|
+
supports-color: '*'
|
|
1057
|
+
peerDependenciesMeta:
|
|
1058
|
+
supports-color:
|
|
1059
|
+
optional: true
|
|
1060
|
+
|
|
1061
|
+
decamelize@1.2.0:
|
|
1062
|
+
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
|
|
1063
|
+
engines: {node: '>=0.10.0'}
|
|
1064
|
+
|
|
1065
|
+
deep-is@0.1.4:
|
|
1066
|
+
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
|
1067
|
+
|
|
1068
|
+
delayed-stream@1.0.0:
|
|
1069
|
+
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
|
|
1070
|
+
engines: {node: '>=0.4.0'}
|
|
1071
|
+
|
|
395
1072
|
didyoumean@1.2.2:
|
|
396
1073
|
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
|
|
397
1074
|
|
|
398
1075
|
dlv@1.1.3:
|
|
399
1076
|
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
|
|
400
1077
|
|
|
1078
|
+
drizzle-kit@0.31.8:
|
|
1079
|
+
resolution: {integrity: sha512-O9EC/miwdnRDY10qRxM8P3Pg8hXe3LyU4ZipReKOgTwn4OqANmftj8XJz1UPUAS6NMHf0E2htjsbQujUTkncCg==}
|
|
1080
|
+
hasBin: true
|
|
1081
|
+
|
|
1082
|
+
drizzle-orm@0.45.1:
|
|
1083
|
+
resolution: {integrity: sha512-Te0FOdKIistGNPMq2jscdqngBRfBpC8uMFVwqjf6gtTVJHIQ/dosgV/CLBU2N4ZJBsXL5savCba9b0YJskKdcA==}
|
|
1084
|
+
peerDependencies:
|
|
1085
|
+
'@aws-sdk/client-rds-data': '>=3'
|
|
1086
|
+
'@cloudflare/workers-types': '>=4'
|
|
1087
|
+
'@electric-sql/pglite': '>=0.2.0'
|
|
1088
|
+
'@libsql/client': '>=0.10.0'
|
|
1089
|
+
'@libsql/client-wasm': '>=0.10.0'
|
|
1090
|
+
'@neondatabase/serverless': '>=0.10.0'
|
|
1091
|
+
'@op-engineering/op-sqlite': '>=2'
|
|
1092
|
+
'@opentelemetry/api': ^1.4.1
|
|
1093
|
+
'@planetscale/database': '>=1.13'
|
|
1094
|
+
'@prisma/client': '*'
|
|
1095
|
+
'@tidbcloud/serverless': '*'
|
|
1096
|
+
'@types/better-sqlite3': '*'
|
|
1097
|
+
'@types/pg': '*'
|
|
1098
|
+
'@types/sql.js': '*'
|
|
1099
|
+
'@upstash/redis': '>=1.34.7'
|
|
1100
|
+
'@vercel/postgres': '>=0.8.0'
|
|
1101
|
+
'@xata.io/client': '*'
|
|
1102
|
+
better-sqlite3: '>=7'
|
|
1103
|
+
bun-types: '*'
|
|
1104
|
+
expo-sqlite: '>=14.0.0'
|
|
1105
|
+
gel: '>=2'
|
|
1106
|
+
knex: '*'
|
|
1107
|
+
kysely: '*'
|
|
1108
|
+
mysql2: '>=2'
|
|
1109
|
+
pg: '>=8'
|
|
1110
|
+
postgres: '>=3'
|
|
1111
|
+
prisma: '*'
|
|
1112
|
+
sql.js: '>=1'
|
|
1113
|
+
sqlite3: '>=5'
|
|
1114
|
+
peerDependenciesMeta:
|
|
1115
|
+
'@aws-sdk/client-rds-data':
|
|
1116
|
+
optional: true
|
|
1117
|
+
'@cloudflare/workers-types':
|
|
1118
|
+
optional: true
|
|
1119
|
+
'@electric-sql/pglite':
|
|
1120
|
+
optional: true
|
|
1121
|
+
'@libsql/client':
|
|
1122
|
+
optional: true
|
|
1123
|
+
'@libsql/client-wasm':
|
|
1124
|
+
optional: true
|
|
1125
|
+
'@neondatabase/serverless':
|
|
1126
|
+
optional: true
|
|
1127
|
+
'@op-engineering/op-sqlite':
|
|
1128
|
+
optional: true
|
|
1129
|
+
'@opentelemetry/api':
|
|
1130
|
+
optional: true
|
|
1131
|
+
'@planetscale/database':
|
|
1132
|
+
optional: true
|
|
1133
|
+
'@prisma/client':
|
|
1134
|
+
optional: true
|
|
1135
|
+
'@tidbcloud/serverless':
|
|
1136
|
+
optional: true
|
|
1137
|
+
'@types/better-sqlite3':
|
|
1138
|
+
optional: true
|
|
1139
|
+
'@types/pg':
|
|
1140
|
+
optional: true
|
|
1141
|
+
'@types/sql.js':
|
|
1142
|
+
optional: true
|
|
1143
|
+
'@upstash/redis':
|
|
1144
|
+
optional: true
|
|
1145
|
+
'@vercel/postgres':
|
|
1146
|
+
optional: true
|
|
1147
|
+
'@xata.io/client':
|
|
1148
|
+
optional: true
|
|
1149
|
+
better-sqlite3:
|
|
1150
|
+
optional: true
|
|
1151
|
+
bun-types:
|
|
1152
|
+
optional: true
|
|
1153
|
+
expo-sqlite:
|
|
1154
|
+
optional: true
|
|
1155
|
+
gel:
|
|
1156
|
+
optional: true
|
|
1157
|
+
knex:
|
|
1158
|
+
optional: true
|
|
1159
|
+
kysely:
|
|
1160
|
+
optional: true
|
|
1161
|
+
mysql2:
|
|
1162
|
+
optional: true
|
|
1163
|
+
pg:
|
|
1164
|
+
optional: true
|
|
1165
|
+
postgres:
|
|
1166
|
+
optional: true
|
|
1167
|
+
prisma:
|
|
1168
|
+
optional: true
|
|
1169
|
+
sql.js:
|
|
1170
|
+
optional: true
|
|
1171
|
+
sqlite3:
|
|
1172
|
+
optional: true
|
|
1173
|
+
|
|
1174
|
+
dunder-proto@1.0.1:
|
|
1175
|
+
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
|
1176
|
+
engines: {node: '>= 0.4'}
|
|
1177
|
+
|
|
401
1178
|
electron-to-chromium@1.5.267:
|
|
402
1179
|
resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
|
|
403
1180
|
|
|
404
|
-
|
|
405
|
-
resolution: {integrity: sha512-
|
|
1181
|
+
es-define-property@1.0.1:
|
|
1182
|
+
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
|
|
1183
|
+
engines: {node: '>= 0.4'}
|
|
1184
|
+
|
|
1185
|
+
es-errors@1.3.0:
|
|
1186
|
+
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
|
1187
|
+
engines: {node: '>= 0.4'}
|
|
1188
|
+
|
|
1189
|
+
es-object-atoms@1.1.1:
|
|
1190
|
+
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
|
|
1191
|
+
engines: {node: '>= 0.4'}
|
|
1192
|
+
|
|
1193
|
+
es-set-tostringtag@2.1.0:
|
|
1194
|
+
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
|
|
1195
|
+
engines: {node: '>= 0.4'}
|
|
1196
|
+
|
|
1197
|
+
esbuild-register@3.6.0:
|
|
1198
|
+
resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
|
|
1199
|
+
peerDependencies:
|
|
1200
|
+
esbuild: ^0.27.2
|
|
1201
|
+
|
|
1202
|
+
esbuild@0.27.2:
|
|
1203
|
+
resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
|
|
406
1204
|
engines: {node: '>=18'}
|
|
407
1205
|
hasBin: true
|
|
408
1206
|
|
|
@@ -410,12 +1208,78 @@ packages:
|
|
|
410
1208
|
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
411
1209
|
engines: {node: '>=6'}
|
|
412
1210
|
|
|
413
|
-
|
|
414
|
-
resolution: {integrity: sha512-
|
|
415
|
-
engines: {node: '>=
|
|
1211
|
+
escape-string-regexp@4.0.0:
|
|
1212
|
+
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
|
1213
|
+
engines: {node: '>=10'}
|
|
416
1214
|
|
|
417
|
-
|
|
418
|
-
resolution: {integrity: sha512-
|
|
1215
|
+
eslint-scope@8.4.0:
|
|
1216
|
+
resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
|
|
1217
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1218
|
+
|
|
1219
|
+
eslint-visitor-keys@3.4.3:
|
|
1220
|
+
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
|
|
1221
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1222
|
+
|
|
1223
|
+
eslint-visitor-keys@4.2.1:
|
|
1224
|
+
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
|
|
1225
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1226
|
+
|
|
1227
|
+
eslint@9.39.2:
|
|
1228
|
+
resolution: {integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==}
|
|
1229
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1230
|
+
hasBin: true
|
|
1231
|
+
peerDependencies:
|
|
1232
|
+
jiti: '*'
|
|
1233
|
+
peerDependenciesMeta:
|
|
1234
|
+
jiti:
|
|
1235
|
+
optional: true
|
|
1236
|
+
|
|
1237
|
+
espree@10.4.0:
|
|
1238
|
+
resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
|
|
1239
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1240
|
+
|
|
1241
|
+
esquery@1.7.0:
|
|
1242
|
+
resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
|
|
1243
|
+
engines: {node: '>=0.10'}
|
|
1244
|
+
|
|
1245
|
+
esrecurse@4.3.0:
|
|
1246
|
+
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
|
1247
|
+
engines: {node: '>=4.0'}
|
|
1248
|
+
|
|
1249
|
+
estraverse@5.3.0:
|
|
1250
|
+
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
|
1251
|
+
engines: {node: '>=4.0'}
|
|
1252
|
+
|
|
1253
|
+
esutils@2.0.3:
|
|
1254
|
+
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
|
1255
|
+
engines: {node: '>=0.10.0'}
|
|
1256
|
+
|
|
1257
|
+
eventemitter3@4.0.7:
|
|
1258
|
+
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
|
|
1259
|
+
|
|
1260
|
+
events@3.3.0:
|
|
1261
|
+
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
|
|
1262
|
+
engines: {node: '>=0.8.x'}
|
|
1263
|
+
|
|
1264
|
+
fast-deep-equal@3.1.3:
|
|
1265
|
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
1266
|
+
|
|
1267
|
+
fast-glob@3.3.3:
|
|
1268
|
+
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
|
|
1269
|
+
engines: {node: '>=8.6.0'}
|
|
1270
|
+
|
|
1271
|
+
fast-json-stable-stringify@2.1.0:
|
|
1272
|
+
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
|
1273
|
+
|
|
1274
|
+
fast-levenshtein@2.0.6:
|
|
1275
|
+
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
|
1276
|
+
|
|
1277
|
+
fast-xml-parser@5.2.5:
|
|
1278
|
+
resolution: {integrity: sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ==}
|
|
1279
|
+
hasBin: true
|
|
1280
|
+
|
|
1281
|
+
fastq@1.20.1:
|
|
1282
|
+
resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
|
|
419
1283
|
|
|
420
1284
|
fdir@6.5.0:
|
|
421
1285
|
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
|
@@ -426,10 +1290,38 @@ packages:
|
|
|
426
1290
|
picomatch:
|
|
427
1291
|
optional: true
|
|
428
1292
|
|
|
1293
|
+
file-entry-cache@8.0.0:
|
|
1294
|
+
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
|
|
1295
|
+
engines: {node: '>=16.0.0'}
|
|
1296
|
+
|
|
429
1297
|
fill-range@7.1.1:
|
|
430
1298
|
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
|
|
431
1299
|
engines: {node: '>=8'}
|
|
432
1300
|
|
|
1301
|
+
find-up@5.0.0:
|
|
1302
|
+
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
|
|
1303
|
+
engines: {node: '>=10'}
|
|
1304
|
+
|
|
1305
|
+
flat-cache@4.0.1:
|
|
1306
|
+
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
|
|
1307
|
+
engines: {node: '>=16'}
|
|
1308
|
+
|
|
1309
|
+
flatted@3.3.3:
|
|
1310
|
+
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
|
|
1311
|
+
|
|
1312
|
+
follow-redirects@1.15.11:
|
|
1313
|
+
resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
|
|
1314
|
+
engines: {node: '>=4.0'}
|
|
1315
|
+
peerDependencies:
|
|
1316
|
+
debug: '*'
|
|
1317
|
+
peerDependenciesMeta:
|
|
1318
|
+
debug:
|
|
1319
|
+
optional: true
|
|
1320
|
+
|
|
1321
|
+
form-data@4.0.5:
|
|
1322
|
+
resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
|
|
1323
|
+
engines: {node: '>= 6'}
|
|
1324
|
+
|
|
433
1325
|
fraction.js@5.3.4:
|
|
434
1326
|
resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
|
|
435
1327
|
|
|
@@ -441,6 +1333,21 @@ packages:
|
|
|
441
1333
|
function-bind@1.1.2:
|
|
442
1334
|
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
|
443
1335
|
|
|
1336
|
+
get-east-asian-width@1.4.0:
|
|
1337
|
+
resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
|
|
1338
|
+
engines: {node: '>=18'}
|
|
1339
|
+
|
|
1340
|
+
get-intrinsic@1.3.0:
|
|
1341
|
+
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
|
|
1342
|
+
engines: {node: '>= 0.4'}
|
|
1343
|
+
|
|
1344
|
+
get-proto@1.0.1:
|
|
1345
|
+
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
|
|
1346
|
+
engines: {node: '>= 0.4'}
|
|
1347
|
+
|
|
1348
|
+
get-tsconfig@4.13.0:
|
|
1349
|
+
resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==}
|
|
1350
|
+
|
|
444
1351
|
glob-parent@5.1.2:
|
|
445
1352
|
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
|
446
1353
|
engines: {node: '>= 6'}
|
|
@@ -449,10 +1356,52 @@ packages:
|
|
|
449
1356
|
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
|
450
1357
|
engines: {node: '>=10.13.0'}
|
|
451
1358
|
|
|
1359
|
+
globals@14.0.0:
|
|
1360
|
+
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
|
1361
|
+
engines: {node: '>=18'}
|
|
1362
|
+
|
|
1363
|
+
gopd@1.2.0:
|
|
1364
|
+
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
|
|
1365
|
+
engines: {node: '>= 0.4'}
|
|
1366
|
+
|
|
1367
|
+
has-flag@4.0.0:
|
|
1368
|
+
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
|
1369
|
+
engines: {node: '>=8'}
|
|
1370
|
+
|
|
1371
|
+
has-symbols@1.1.0:
|
|
1372
|
+
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
|
|
1373
|
+
engines: {node: '>= 0.4'}
|
|
1374
|
+
|
|
1375
|
+
has-tostringtag@1.0.2:
|
|
1376
|
+
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
|
|
1377
|
+
engines: {node: '>= 0.4'}
|
|
1378
|
+
|
|
452
1379
|
hasown@2.0.2:
|
|
453
1380
|
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
|
|
454
1381
|
engines: {node: '>= 0.4'}
|
|
455
1382
|
|
|
1383
|
+
ieee754@1.2.1:
|
|
1384
|
+
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
|
|
1385
|
+
|
|
1386
|
+
ignore@5.3.2:
|
|
1387
|
+
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
|
1388
|
+
engines: {node: '>= 4'}
|
|
1389
|
+
|
|
1390
|
+
ignore@7.0.5:
|
|
1391
|
+
resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
|
|
1392
|
+
engines: {node: '>= 4'}
|
|
1393
|
+
|
|
1394
|
+
import-fresh@3.3.1:
|
|
1395
|
+
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
|
|
1396
|
+
engines: {node: '>=6'}
|
|
1397
|
+
|
|
1398
|
+
imurmurhash@0.1.4:
|
|
1399
|
+
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
|
1400
|
+
engines: {node: '>=0.8.19'}
|
|
1401
|
+
|
|
1402
|
+
inherits@2.0.4:
|
|
1403
|
+
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
1404
|
+
|
|
456
1405
|
is-binary-path@2.1.0:
|
|
457
1406
|
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
|
458
1407
|
engines: {node: '>=8'}
|
|
@@ -469,14 +1418,65 @@ packages:
|
|
|
469
1418
|
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
470
1419
|
engines: {node: '>=0.10.0'}
|
|
471
1420
|
|
|
1421
|
+
is-interactive@2.0.0:
|
|
1422
|
+
resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
|
|
1423
|
+
engines: {node: '>=12'}
|
|
1424
|
+
|
|
472
1425
|
is-number@7.0.0:
|
|
473
1426
|
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
|
474
1427
|
engines: {node: '>=0.12.0'}
|
|
475
1428
|
|
|
1429
|
+
is-unicode-supported@2.1.0:
|
|
1430
|
+
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
|
|
1431
|
+
engines: {node: '>=18'}
|
|
1432
|
+
|
|
1433
|
+
isexe@2.0.0:
|
|
1434
|
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
1435
|
+
|
|
476
1436
|
jiti@1.21.7:
|
|
477
1437
|
resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
|
|
478
1438
|
hasBin: true
|
|
479
1439
|
|
|
1440
|
+
js-tiktoken@1.0.21:
|
|
1441
|
+
resolution: {integrity: sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==}
|
|
1442
|
+
|
|
1443
|
+
js-yaml@4.1.1:
|
|
1444
|
+
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
|
|
1445
|
+
hasBin: true
|
|
1446
|
+
|
|
1447
|
+
json-buffer@3.0.1:
|
|
1448
|
+
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
|
|
1449
|
+
|
|
1450
|
+
json-schema-traverse@0.4.1:
|
|
1451
|
+
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
|
1452
|
+
|
|
1453
|
+
json-stable-stringify-without-jsonify@1.0.1:
|
|
1454
|
+
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
|
1455
|
+
|
|
1456
|
+
keyv@4.5.4:
|
|
1457
|
+
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
|
|
1458
|
+
|
|
1459
|
+
langsmith@0.4.7:
|
|
1460
|
+
resolution: {integrity: sha512-Esv5g/J8wwRwbGQr10PB9+bLsNk0mWbrXc7nnEreQDhh0azbU57I7epSnT7GC4sS4EOWavhbxk+6p8PTXtreHw==}
|
|
1461
|
+
peerDependencies:
|
|
1462
|
+
'@opentelemetry/api': '*'
|
|
1463
|
+
'@opentelemetry/exporter-trace-otlp-proto': '*'
|
|
1464
|
+
'@opentelemetry/sdk-trace-base': '*'
|
|
1465
|
+
openai: '*'
|
|
1466
|
+
peerDependenciesMeta:
|
|
1467
|
+
'@opentelemetry/api':
|
|
1468
|
+
optional: true
|
|
1469
|
+
'@opentelemetry/exporter-trace-otlp-proto':
|
|
1470
|
+
optional: true
|
|
1471
|
+
'@opentelemetry/sdk-trace-base':
|
|
1472
|
+
optional: true
|
|
1473
|
+
openai:
|
|
1474
|
+
optional: true
|
|
1475
|
+
|
|
1476
|
+
levn@0.4.1:
|
|
1477
|
+
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
|
1478
|
+
engines: {node: '>= 0.8.0'}
|
|
1479
|
+
|
|
480
1480
|
lilconfig@3.1.3:
|
|
481
1481
|
resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
|
|
482
1482
|
engines: {node: '>=14'}
|
|
@@ -484,6 +1484,21 @@ packages:
|
|
|
484
1484
|
lines-and-columns@1.2.4:
|
|
485
1485
|
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
|
486
1486
|
|
|
1487
|
+
locate-path@6.0.0:
|
|
1488
|
+
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
|
1489
|
+
engines: {node: '>=10'}
|
|
1490
|
+
|
|
1491
|
+
lodash.merge@4.6.2:
|
|
1492
|
+
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
|
1493
|
+
|
|
1494
|
+
log-symbols@7.0.1:
|
|
1495
|
+
resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
|
|
1496
|
+
engines: {node: '>=18'}
|
|
1497
|
+
|
|
1498
|
+
math-intrinsics@1.1.0:
|
|
1499
|
+
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
|
|
1500
|
+
engines: {node: '>= 0.4'}
|
|
1501
|
+
|
|
487
1502
|
merge2@1.4.1:
|
|
488
1503
|
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
|
489
1504
|
engines: {node: '>= 8'}
|
|
@@ -492,6 +1507,32 @@ packages:
|
|
|
492
1507
|
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
|
|
493
1508
|
engines: {node: '>=8.6'}
|
|
494
1509
|
|
|
1510
|
+
mime-db@1.52.0:
|
|
1511
|
+
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
|
|
1512
|
+
engines: {node: '>= 0.6'}
|
|
1513
|
+
|
|
1514
|
+
mime-types@2.1.35:
|
|
1515
|
+
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
|
|
1516
|
+
engines: {node: '>= 0.6'}
|
|
1517
|
+
|
|
1518
|
+
mimic-function@5.0.1:
|
|
1519
|
+
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
|
|
1520
|
+
engines: {node: '>=18'}
|
|
1521
|
+
|
|
1522
|
+
minimatch@3.1.2:
|
|
1523
|
+
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
|
1524
|
+
|
|
1525
|
+
minimatch@9.0.5:
|
|
1526
|
+
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
|
|
1527
|
+
engines: {node: '>=16 || 14 >=14.17'}
|
|
1528
|
+
|
|
1529
|
+
ms@2.1.3:
|
|
1530
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
1531
|
+
|
|
1532
|
+
mustache@4.2.0:
|
|
1533
|
+
resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
|
|
1534
|
+
hasBin: true
|
|
1535
|
+
|
|
495
1536
|
mz@2.7.0:
|
|
496
1537
|
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
|
|
497
1538
|
|
|
@@ -500,6 +1541,9 @@ packages:
|
|
|
500
1541
|
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
501
1542
|
hasBin: true
|
|
502
1543
|
|
|
1544
|
+
natural-compare@1.4.0:
|
|
1545
|
+
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
|
1546
|
+
|
|
503
1547
|
node-releases@2.0.27:
|
|
504
1548
|
resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
|
|
505
1549
|
|
|
@@ -515,13 +1559,103 @@ packages:
|
|
|
515
1559
|
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
|
|
516
1560
|
engines: {node: '>= 6'}
|
|
517
1561
|
|
|
1562
|
+
onetime@7.0.0:
|
|
1563
|
+
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
|
|
1564
|
+
engines: {node: '>=18'}
|
|
1565
|
+
|
|
518
1566
|
only-allow@1.2.2:
|
|
519
1567
|
resolution: {integrity: sha512-uxyNYDsCh5YIJ780G7hC5OHjVUr9reHsbZNMM80L9tZlTpb3hUzb36KXgW4ZUGtJKQnGA3xegmWg1BxhWV0jJA==}
|
|
520
1568
|
hasBin: true
|
|
521
1569
|
|
|
1570
|
+
openai@6.16.0:
|
|
1571
|
+
resolution: {integrity: sha512-fZ1uBqjFUjXzbGc35fFtYKEOxd20kd9fDpFeqWtsOZWiubY8CZ1NAlXHW3iathaFvqmNtCWMIsosCuyeI7Joxg==}
|
|
1572
|
+
hasBin: true
|
|
1573
|
+
peerDependencies:
|
|
1574
|
+
ws: ^8.18.0
|
|
1575
|
+
zod: ^3.25 || ^4.0
|
|
1576
|
+
peerDependenciesMeta:
|
|
1577
|
+
ws:
|
|
1578
|
+
optional: true
|
|
1579
|
+
zod:
|
|
1580
|
+
optional: true
|
|
1581
|
+
|
|
1582
|
+
optionator@0.9.4:
|
|
1583
|
+
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
|
1584
|
+
engines: {node: '>= 0.8.0'}
|
|
1585
|
+
|
|
1586
|
+
ora@9.1.0:
|
|
1587
|
+
resolution: {integrity: sha512-53uuLsXHOAJl5zLrUrzY9/kE+uIFEx7iaH4g2BIJQK4LZjY4LpCCYZVKDWIkL+F01wAaCg93duQ1whnK/AmY1A==}
|
|
1588
|
+
engines: {node: '>=20'}
|
|
1589
|
+
|
|
1590
|
+
p-finally@1.0.0:
|
|
1591
|
+
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
|
|
1592
|
+
engines: {node: '>=4'}
|
|
1593
|
+
|
|
1594
|
+
p-limit@3.1.0:
|
|
1595
|
+
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
|
|
1596
|
+
engines: {node: '>=10'}
|
|
1597
|
+
|
|
1598
|
+
p-locate@5.0.0:
|
|
1599
|
+
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
|
|
1600
|
+
engines: {node: '>=10'}
|
|
1601
|
+
|
|
1602
|
+
p-queue@6.6.2:
|
|
1603
|
+
resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
|
|
1604
|
+
engines: {node: '>=8'}
|
|
1605
|
+
|
|
1606
|
+
p-timeout@3.2.0:
|
|
1607
|
+
resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
|
|
1608
|
+
engines: {node: '>=8'}
|
|
1609
|
+
|
|
1610
|
+
parent-module@1.0.1:
|
|
1611
|
+
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
|
|
1612
|
+
engines: {node: '>=6'}
|
|
1613
|
+
|
|
1614
|
+
path-exists@4.0.0:
|
|
1615
|
+
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
|
1616
|
+
engines: {node: '>=8'}
|
|
1617
|
+
|
|
1618
|
+
path-key@3.1.1:
|
|
1619
|
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
1620
|
+
engines: {node: '>=8'}
|
|
1621
|
+
|
|
522
1622
|
path-parse@1.0.7:
|
|
523
1623
|
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
|
524
1624
|
|
|
1625
|
+
pg-cloudflare@1.3.0:
|
|
1626
|
+
resolution: {integrity: sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==}
|
|
1627
|
+
|
|
1628
|
+
pg-connection-string@2.10.1:
|
|
1629
|
+
resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
|
|
1630
|
+
|
|
1631
|
+
pg-int8@1.0.1:
|
|
1632
|
+
resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
|
|
1633
|
+
engines: {node: '>=4.0.0'}
|
|
1634
|
+
|
|
1635
|
+
pg-pool@3.11.0:
|
|
1636
|
+
resolution: {integrity: sha512-MJYfvHwtGp870aeusDh+hg9apvOe2zmpZJpyt+BMtzUWlVqbhFmMK6bOBXLBUPd7iRtIF9fZplDc7KrPN3PN7w==}
|
|
1637
|
+
peerDependencies:
|
|
1638
|
+
pg: '>=8.0'
|
|
1639
|
+
|
|
1640
|
+
pg-protocol@1.11.0:
|
|
1641
|
+
resolution: {integrity: sha512-pfsxk2M9M3BuGgDOfuy37VNRRX3jmKgMjcvAcWqNDpZSf4cUmv8HSOl5ViRQFsfARFn0KuUQTgLxVMbNq5NW3g==}
|
|
1642
|
+
|
|
1643
|
+
pg-types@2.2.0:
|
|
1644
|
+
resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
|
|
1645
|
+
engines: {node: '>=4'}
|
|
1646
|
+
|
|
1647
|
+
pg@8.17.2:
|
|
1648
|
+
resolution: {integrity: sha512-vjbKdiBJRqzcYw1fNU5KuHyYvdJ1qpcQg1CeBrHFqV1pWgHeVR6j/+kX0E1AAXfyuLUGY1ICrN2ELKA/z2HWzw==}
|
|
1649
|
+
engines: {node: '>= 16.0.0'}
|
|
1650
|
+
peerDependencies:
|
|
1651
|
+
pg-native: '>=3.0.1'
|
|
1652
|
+
peerDependenciesMeta:
|
|
1653
|
+
pg-native:
|
|
1654
|
+
optional: true
|
|
1655
|
+
|
|
1656
|
+
pgpass@1.0.5:
|
|
1657
|
+
resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==}
|
|
1658
|
+
|
|
525
1659
|
picocolors@1.1.1:
|
|
526
1660
|
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
527
1661
|
|
|
@@ -588,42 +1722,147 @@ packages:
|
|
|
588
1722
|
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
|
|
589
1723
|
engines: {node: ^10 || ^12 || >=14}
|
|
590
1724
|
|
|
1725
|
+
postgres-array@2.0.0:
|
|
1726
|
+
resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
|
|
1727
|
+
engines: {node: '>=4'}
|
|
1728
|
+
|
|
1729
|
+
postgres-bytea@1.0.1:
|
|
1730
|
+
resolution: {integrity: sha512-5+5HqXnsZPE65IJZSMkZtURARZelel2oXUEO8rH83VS/hxH5vv1uHquPg5wZs8yMAfdv971IU+kcPUczi7NVBQ==}
|
|
1731
|
+
engines: {node: '>=0.10.0'}
|
|
1732
|
+
|
|
1733
|
+
postgres-date@1.0.7:
|
|
1734
|
+
resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==}
|
|
1735
|
+
engines: {node: '>=0.10.0'}
|
|
1736
|
+
|
|
1737
|
+
postgres-interval@1.2.0:
|
|
1738
|
+
resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==}
|
|
1739
|
+
engines: {node: '>=0.10.0'}
|
|
1740
|
+
|
|
1741
|
+
prelude-ls@1.2.1:
|
|
1742
|
+
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
|
|
1743
|
+
engines: {node: '>= 0.8.0'}
|
|
1744
|
+
|
|
1745
|
+
proxy-from-env@1.1.0:
|
|
1746
|
+
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
|
|
1747
|
+
|
|
1748
|
+
punycode@2.3.1:
|
|
1749
|
+
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
|
1750
|
+
engines: {node: '>=6'}
|
|
1751
|
+
|
|
591
1752
|
queue-microtask@1.2.3:
|
|
592
1753
|
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
|
593
1754
|
|
|
594
1755
|
read-cache@1.0.0:
|
|
595
1756
|
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
|
|
596
1757
|
|
|
1758
|
+
readable-stream@3.6.2:
|
|
1759
|
+
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
|
|
1760
|
+
engines: {node: '>= 6'}
|
|
1761
|
+
|
|
597
1762
|
readdirp@3.6.0:
|
|
598
1763
|
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
|
599
1764
|
engines: {node: '>=8.10.0'}
|
|
600
1765
|
|
|
1766
|
+
resolve-from@4.0.0:
|
|
1767
|
+
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
|
1768
|
+
engines: {node: '>=4'}
|
|
1769
|
+
|
|
1770
|
+
resolve-pkg-maps@1.0.0:
|
|
1771
|
+
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
1772
|
+
|
|
601
1773
|
resolve@1.22.11:
|
|
602
1774
|
resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
|
|
603
1775
|
engines: {node: '>= 0.4'}
|
|
604
1776
|
hasBin: true
|
|
605
1777
|
|
|
1778
|
+
restore-cursor@5.1.0:
|
|
1779
|
+
resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
|
|
1780
|
+
engines: {node: '>=18'}
|
|
1781
|
+
|
|
606
1782
|
reusify@1.1.0:
|
|
607
1783
|
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
|
|
608
1784
|
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
|
609
1785
|
|
|
610
|
-
rollup@4.
|
|
611
|
-
resolution: {integrity: sha512-
|
|
1786
|
+
rollup@4.55.3:
|
|
1787
|
+
resolution: {integrity: sha512-y9yUpfQvetAjiDLtNMf1hL9NXchIJgWt6zIKeoB+tCd3npX08Eqfzg60V9DhIGVMtQ0AlMkFw5xa+AQ37zxnAA==}
|
|
612
1788
|
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
613
1789
|
hasBin: true
|
|
614
1790
|
|
|
615
1791
|
run-parallel@1.2.0:
|
|
616
1792
|
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
|
617
1793
|
|
|
1794
|
+
safe-buffer@5.2.1:
|
|
1795
|
+
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
|
1796
|
+
|
|
1797
|
+
semver@7.7.3:
|
|
1798
|
+
resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
|
|
1799
|
+
engines: {node: '>=10'}
|
|
1800
|
+
hasBin: true
|
|
1801
|
+
|
|
1802
|
+
shebang-command@2.0.0:
|
|
1803
|
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
1804
|
+
engines: {node: '>=8'}
|
|
1805
|
+
|
|
1806
|
+
shebang-regex@3.0.0:
|
|
1807
|
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
1808
|
+
engines: {node: '>=8'}
|
|
1809
|
+
|
|
1810
|
+
signal-exit@4.1.0:
|
|
1811
|
+
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
|
|
1812
|
+
engines: {node: '>=14'}
|
|
1813
|
+
|
|
1814
|
+
simple-wcswidth@1.1.2:
|
|
1815
|
+
resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
|
|
1816
|
+
|
|
618
1817
|
source-map-js@1.2.1:
|
|
619
1818
|
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
620
1819
|
engines: {node: '>=0.10.0'}
|
|
621
1820
|
|
|
1821
|
+
source-map-support@0.5.21:
|
|
1822
|
+
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
|
|
1823
|
+
|
|
1824
|
+
source-map@0.6.1:
|
|
1825
|
+
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
|
|
1826
|
+
engines: {node: '>=0.10.0'}
|
|
1827
|
+
|
|
1828
|
+
split2@4.2.0:
|
|
1829
|
+
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
|
|
1830
|
+
engines: {node: '>= 10.x'}
|
|
1831
|
+
|
|
1832
|
+
stdin-discarder@0.2.2:
|
|
1833
|
+
resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
|
|
1834
|
+
engines: {node: '>=18'}
|
|
1835
|
+
|
|
1836
|
+
stream-browserify@3.0.0:
|
|
1837
|
+
resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==}
|
|
1838
|
+
|
|
1839
|
+
string-width@8.1.0:
|
|
1840
|
+
resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==}
|
|
1841
|
+
engines: {node: '>=20'}
|
|
1842
|
+
|
|
1843
|
+
string_decoder@1.3.0:
|
|
1844
|
+
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
|
|
1845
|
+
|
|
1846
|
+
strip-ansi@7.1.2:
|
|
1847
|
+
resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
|
|
1848
|
+
engines: {node: '>=12'}
|
|
1849
|
+
|
|
1850
|
+
strip-json-comments@3.1.1:
|
|
1851
|
+
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
|
1852
|
+
engines: {node: '>=8'}
|
|
1853
|
+
|
|
1854
|
+
strnum@2.1.2:
|
|
1855
|
+
resolution: {integrity: sha512-l63NF9y/cLROq/yqKXSLtcMeeyOfnSQlfMSlzFt/K73oIaD8DGaQWd7Z34X9GPiKqP5rbSh84Hl4bOlLcjiSrQ==}
|
|
1856
|
+
|
|
622
1857
|
sucrase@3.35.1:
|
|
623
1858
|
resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
|
|
624
1859
|
engines: {node: '>=16 || 14 >=14.17'}
|
|
625
1860
|
hasBin: true
|
|
626
1861
|
|
|
1862
|
+
supports-color@7.2.0:
|
|
1863
|
+
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
|
1864
|
+
engines: {node: '>=8'}
|
|
1865
|
+
|
|
627
1866
|
supports-preserve-symlinks-flag@1.0.0:
|
|
628
1867
|
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
|
629
1868
|
engines: {node: '>= 0.4'}
|
|
@@ -648,9 +1887,34 @@ packages:
|
|
|
648
1887
|
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
649
1888
|
engines: {node: '>=8.0'}
|
|
650
1889
|
|
|
1890
|
+
transliteration@2.6.1:
|
|
1891
|
+
resolution: {integrity: sha512-hJ9BhrQAOnNTbpOr1MxsNjZISkn7ppvF5TKUeFmTE1mG4ZPD/XVxF0L0LUoIUCWmQyxH0gJpVtfYLAWf298U9w==}
|
|
1892
|
+
engines: {node: '>=20.0.0'}
|
|
1893
|
+
hasBin: true
|
|
1894
|
+
|
|
1895
|
+
ts-api-utils@2.4.0:
|
|
1896
|
+
resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
|
|
1897
|
+
engines: {node: '>=18.12'}
|
|
1898
|
+
peerDependencies:
|
|
1899
|
+
typescript: '>=4.8.4'
|
|
1900
|
+
|
|
651
1901
|
ts-interface-checker@0.1.13:
|
|
652
1902
|
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
|
|
653
1903
|
|
|
1904
|
+
tslib@2.8.1:
|
|
1905
|
+
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
1906
|
+
|
|
1907
|
+
type-check@0.4.0:
|
|
1908
|
+
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
1909
|
+
engines: {node: '>= 0.8.0'}
|
|
1910
|
+
|
|
1911
|
+
typescript-eslint@8.53.1:
|
|
1912
|
+
resolution: {integrity: sha512-gB+EVQfP5RDElh9ittfXlhZJdjSU4jUSTyE2+ia8CYyNvet4ElfaLlAIqDvQV9JPknKx0jQH1racTYe/4LaLSg==}
|
|
1913
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1914
|
+
peerDependencies:
|
|
1915
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
1916
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
1917
|
+
|
|
654
1918
|
typescript@5.9.3:
|
|
655
1919
|
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
656
1920
|
engines: {node: '>=14.17'}
|
|
@@ -662,22 +1926,29 @@ packages:
|
|
|
662
1926
|
peerDependencies:
|
|
663
1927
|
browserslist: '>= 4.21.0'
|
|
664
1928
|
|
|
1929
|
+
uri-js@4.4.1:
|
|
1930
|
+
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
|
1931
|
+
|
|
665
1932
|
util-deprecate@1.0.2:
|
|
666
1933
|
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
667
1934
|
|
|
668
|
-
|
|
669
|
-
resolution: {integrity: sha512
|
|
670
|
-
|
|
1935
|
+
uuid@10.0.0:
|
|
1936
|
+
resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
|
|
1937
|
+
hasBin: true
|
|
1938
|
+
|
|
1939
|
+
vite@7.3.1:
|
|
1940
|
+
resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
|
|
1941
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
671
1942
|
hasBin: true
|
|
672
1943
|
peerDependencies:
|
|
673
|
-
'@types/node': ^
|
|
1944
|
+
'@types/node': ^20.19.0 || >=22.12.0
|
|
674
1945
|
jiti: '>=1.21.0'
|
|
675
|
-
less:
|
|
1946
|
+
less: ^4.0.0
|
|
676
1947
|
lightningcss: ^1.21.0
|
|
677
|
-
sass:
|
|
678
|
-
sass-embedded:
|
|
679
|
-
stylus: '
|
|
680
|
-
sugarss:
|
|
1948
|
+
sass: ^1.70.0
|
|
1949
|
+
sass-embedded: ^1.70.0
|
|
1950
|
+
stylus: '>=0.54.8'
|
|
1951
|
+
sugarss: ^5.0.0
|
|
681
1952
|
terser: ^5.16.0
|
|
682
1953
|
tsx: ^4.8.1
|
|
683
1954
|
yaml: ^2.4.2
|
|
@@ -709,88 +1980,679 @@ packages:
|
|
|
709
1980
|
resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
|
|
710
1981
|
engines: {node: '>=4'}
|
|
711
1982
|
|
|
1983
|
+
which@2.0.2:
|
|
1984
|
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
1985
|
+
engines: {node: '>= 8'}
|
|
1986
|
+
hasBin: true
|
|
1987
|
+
|
|
1988
|
+
word-wrap@1.2.5:
|
|
1989
|
+
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
|
|
1990
|
+
engines: {node: '>=0.10.0'}
|
|
1991
|
+
|
|
1992
|
+
xtend@4.0.2:
|
|
1993
|
+
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
|
|
1994
|
+
engines: {node: '>=0.4'}
|
|
1995
|
+
|
|
1996
|
+
yocto-queue@0.1.0:
|
|
1997
|
+
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
|
1998
|
+
engines: {node: '>=10'}
|
|
1999
|
+
|
|
2000
|
+
yoctocolors@2.1.2:
|
|
2001
|
+
resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
|
|
2002
|
+
engines: {node: '>=18'}
|
|
2003
|
+
|
|
2004
|
+
zod@4.3.5:
|
|
2005
|
+
resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
|
|
2006
|
+
|
|
712
2007
|
snapshots:
|
|
713
2008
|
|
|
714
2009
|
'@alloc/quick-lru@5.2.0': {}
|
|
715
2010
|
|
|
716
|
-
'@
|
|
2011
|
+
'@aws-crypto/crc32@5.2.0':
|
|
2012
|
+
dependencies:
|
|
2013
|
+
'@aws-crypto/util': 5.2.0
|
|
2014
|
+
'@aws-sdk/types': 3.972.0
|
|
2015
|
+
tslib: 2.8.1
|
|
2016
|
+
|
|
2017
|
+
'@aws-crypto/crc32c@5.2.0':
|
|
2018
|
+
dependencies:
|
|
2019
|
+
'@aws-crypto/util': 5.2.0
|
|
2020
|
+
'@aws-sdk/types': 3.972.0
|
|
2021
|
+
tslib: 2.8.1
|
|
2022
|
+
|
|
2023
|
+
'@aws-crypto/sha1-browser@5.2.0':
|
|
2024
|
+
dependencies:
|
|
2025
|
+
'@aws-crypto/supports-web-crypto': 5.2.0
|
|
2026
|
+
'@aws-crypto/util': 5.2.0
|
|
2027
|
+
'@aws-sdk/types': 3.972.0
|
|
2028
|
+
'@aws-sdk/util-locate-window': 3.965.3
|
|
2029
|
+
'@smithy/util-utf8': 2.3.0
|
|
2030
|
+
tslib: 2.8.1
|
|
2031
|
+
|
|
2032
|
+
'@aws-crypto/sha256-browser@5.2.0':
|
|
2033
|
+
dependencies:
|
|
2034
|
+
'@aws-crypto/sha256-js': 5.2.0
|
|
2035
|
+
'@aws-crypto/supports-web-crypto': 5.2.0
|
|
2036
|
+
'@aws-crypto/util': 5.2.0
|
|
2037
|
+
'@aws-sdk/types': 3.972.0
|
|
2038
|
+
'@aws-sdk/util-locate-window': 3.965.3
|
|
2039
|
+
'@smithy/util-utf8': 2.3.0
|
|
2040
|
+
tslib: 2.8.1
|
|
2041
|
+
|
|
2042
|
+
'@aws-crypto/sha256-js@5.2.0':
|
|
2043
|
+
dependencies:
|
|
2044
|
+
'@aws-crypto/util': 5.2.0
|
|
2045
|
+
'@aws-sdk/types': 3.972.0
|
|
2046
|
+
tslib: 2.8.1
|
|
2047
|
+
|
|
2048
|
+
'@aws-crypto/supports-web-crypto@5.2.0':
|
|
2049
|
+
dependencies:
|
|
2050
|
+
tslib: 2.8.1
|
|
2051
|
+
|
|
2052
|
+
'@aws-crypto/util@5.2.0':
|
|
2053
|
+
dependencies:
|
|
2054
|
+
'@aws-sdk/types': 3.972.0
|
|
2055
|
+
'@smithy/util-utf8': 2.3.0
|
|
2056
|
+
tslib: 2.8.1
|
|
2057
|
+
|
|
2058
|
+
'@aws-sdk/client-s3@3.972.0':
|
|
2059
|
+
dependencies:
|
|
2060
|
+
'@aws-crypto/sha1-browser': 5.2.0
|
|
2061
|
+
'@aws-crypto/sha256-browser': 5.2.0
|
|
2062
|
+
'@aws-crypto/sha256-js': 5.2.0
|
|
2063
|
+
'@aws-sdk/core': 3.972.0
|
|
2064
|
+
'@aws-sdk/credential-provider-node': 3.972.0
|
|
2065
|
+
'@aws-sdk/middleware-bucket-endpoint': 3.972.0
|
|
2066
|
+
'@aws-sdk/middleware-expect-continue': 3.972.0
|
|
2067
|
+
'@aws-sdk/middleware-flexible-checksums': 3.972.0
|
|
2068
|
+
'@aws-sdk/middleware-host-header': 3.972.0
|
|
2069
|
+
'@aws-sdk/middleware-location-constraint': 3.972.0
|
|
2070
|
+
'@aws-sdk/middleware-logger': 3.972.0
|
|
2071
|
+
'@aws-sdk/middleware-recursion-detection': 3.972.0
|
|
2072
|
+
'@aws-sdk/middleware-sdk-s3': 3.972.0
|
|
2073
|
+
'@aws-sdk/middleware-ssec': 3.972.0
|
|
2074
|
+
'@aws-sdk/middleware-user-agent': 3.972.0
|
|
2075
|
+
'@aws-sdk/region-config-resolver': 3.972.0
|
|
2076
|
+
'@aws-sdk/signature-v4-multi-region': 3.972.0
|
|
2077
|
+
'@aws-sdk/types': 3.972.0
|
|
2078
|
+
'@aws-sdk/util-endpoints': 3.972.0
|
|
2079
|
+
'@aws-sdk/util-user-agent-browser': 3.972.0
|
|
2080
|
+
'@aws-sdk/util-user-agent-node': 3.972.0
|
|
2081
|
+
'@smithy/config-resolver': 4.4.6
|
|
2082
|
+
'@smithy/core': 3.21.0
|
|
2083
|
+
'@smithy/eventstream-serde-browser': 4.2.8
|
|
2084
|
+
'@smithy/eventstream-serde-config-resolver': 4.3.8
|
|
2085
|
+
'@smithy/eventstream-serde-node': 4.2.8
|
|
2086
|
+
'@smithy/fetch-http-handler': 5.3.9
|
|
2087
|
+
'@smithy/hash-blob-browser': 4.2.9
|
|
2088
|
+
'@smithy/hash-node': 4.2.8
|
|
2089
|
+
'@smithy/hash-stream-node': 4.2.8
|
|
2090
|
+
'@smithy/invalid-dependency': 4.2.8
|
|
2091
|
+
'@smithy/md5-js': 4.2.8
|
|
2092
|
+
'@smithy/middleware-content-length': 4.2.8
|
|
2093
|
+
'@smithy/middleware-endpoint': 4.4.10
|
|
2094
|
+
'@smithy/middleware-retry': 4.4.26
|
|
2095
|
+
'@smithy/middleware-serde': 4.2.9
|
|
2096
|
+
'@smithy/middleware-stack': 4.2.8
|
|
2097
|
+
'@smithy/node-config-provider': 4.3.8
|
|
2098
|
+
'@smithy/node-http-handler': 4.4.8
|
|
2099
|
+
'@smithy/protocol-http': 5.3.8
|
|
2100
|
+
'@smithy/smithy-client': 4.10.11
|
|
2101
|
+
'@smithy/types': 4.12.0
|
|
2102
|
+
'@smithy/url-parser': 4.2.8
|
|
2103
|
+
'@smithy/util-base64': 4.3.0
|
|
2104
|
+
'@smithy/util-body-length-browser': 4.2.0
|
|
2105
|
+
'@smithy/util-body-length-node': 4.2.1
|
|
2106
|
+
'@smithy/util-defaults-mode-browser': 4.3.25
|
|
2107
|
+
'@smithy/util-defaults-mode-node': 4.2.28
|
|
2108
|
+
'@smithy/util-endpoints': 3.2.8
|
|
2109
|
+
'@smithy/util-middleware': 4.2.8
|
|
2110
|
+
'@smithy/util-retry': 4.2.8
|
|
2111
|
+
'@smithy/util-stream': 4.5.10
|
|
2112
|
+
'@smithy/util-utf8': 4.2.0
|
|
2113
|
+
'@smithy/util-waiter': 4.2.8
|
|
2114
|
+
tslib: 2.8.1
|
|
2115
|
+
transitivePeerDependencies:
|
|
2116
|
+
- aws-crt
|
|
2117
|
+
|
|
2118
|
+
'@aws-sdk/client-sso@3.972.0':
|
|
2119
|
+
dependencies:
|
|
2120
|
+
'@aws-crypto/sha256-browser': 5.2.0
|
|
2121
|
+
'@aws-crypto/sha256-js': 5.2.0
|
|
2122
|
+
'@aws-sdk/core': 3.972.0
|
|
2123
|
+
'@aws-sdk/middleware-host-header': 3.972.0
|
|
2124
|
+
'@aws-sdk/middleware-logger': 3.972.0
|
|
2125
|
+
'@aws-sdk/middleware-recursion-detection': 3.972.0
|
|
2126
|
+
'@aws-sdk/middleware-user-agent': 3.972.0
|
|
2127
|
+
'@aws-sdk/region-config-resolver': 3.972.0
|
|
2128
|
+
'@aws-sdk/types': 3.972.0
|
|
2129
|
+
'@aws-sdk/util-endpoints': 3.972.0
|
|
2130
|
+
'@aws-sdk/util-user-agent-browser': 3.972.0
|
|
2131
|
+
'@aws-sdk/util-user-agent-node': 3.972.0
|
|
2132
|
+
'@smithy/config-resolver': 4.4.6
|
|
2133
|
+
'@smithy/core': 3.21.0
|
|
2134
|
+
'@smithy/fetch-http-handler': 5.3.9
|
|
2135
|
+
'@smithy/hash-node': 4.2.8
|
|
2136
|
+
'@smithy/invalid-dependency': 4.2.8
|
|
2137
|
+
'@smithy/middleware-content-length': 4.2.8
|
|
2138
|
+
'@smithy/middleware-endpoint': 4.4.10
|
|
2139
|
+
'@smithy/middleware-retry': 4.4.26
|
|
2140
|
+
'@smithy/middleware-serde': 4.2.9
|
|
2141
|
+
'@smithy/middleware-stack': 4.2.8
|
|
2142
|
+
'@smithy/node-config-provider': 4.3.8
|
|
2143
|
+
'@smithy/node-http-handler': 4.4.8
|
|
2144
|
+
'@smithy/protocol-http': 5.3.8
|
|
2145
|
+
'@smithy/smithy-client': 4.10.11
|
|
2146
|
+
'@smithy/types': 4.12.0
|
|
2147
|
+
'@smithy/url-parser': 4.2.8
|
|
2148
|
+
'@smithy/util-base64': 4.3.0
|
|
2149
|
+
'@smithy/util-body-length-browser': 4.2.0
|
|
2150
|
+
'@smithy/util-body-length-node': 4.2.1
|
|
2151
|
+
'@smithy/util-defaults-mode-browser': 4.3.25
|
|
2152
|
+
'@smithy/util-defaults-mode-node': 4.2.28
|
|
2153
|
+
'@smithy/util-endpoints': 3.2.8
|
|
2154
|
+
'@smithy/util-middleware': 4.2.8
|
|
2155
|
+
'@smithy/util-retry': 4.2.8
|
|
2156
|
+
'@smithy/util-utf8': 4.2.0
|
|
2157
|
+
tslib: 2.8.1
|
|
2158
|
+
transitivePeerDependencies:
|
|
2159
|
+
- aws-crt
|
|
2160
|
+
|
|
2161
|
+
'@aws-sdk/core@3.972.0':
|
|
2162
|
+
dependencies:
|
|
2163
|
+
'@aws-sdk/types': 3.972.0
|
|
2164
|
+
'@aws-sdk/xml-builder': 3.972.0
|
|
2165
|
+
'@smithy/core': 3.21.0
|
|
2166
|
+
'@smithy/node-config-provider': 4.3.8
|
|
2167
|
+
'@smithy/property-provider': 4.2.8
|
|
2168
|
+
'@smithy/protocol-http': 5.3.8
|
|
2169
|
+
'@smithy/signature-v4': 5.3.8
|
|
2170
|
+
'@smithy/smithy-client': 4.10.11
|
|
2171
|
+
'@smithy/types': 4.12.0
|
|
2172
|
+
'@smithy/util-base64': 4.3.0
|
|
2173
|
+
'@smithy/util-middleware': 4.2.8
|
|
2174
|
+
'@smithy/util-utf8': 4.2.0
|
|
2175
|
+
tslib: 2.8.1
|
|
2176
|
+
|
|
2177
|
+
'@aws-sdk/crc64-nvme@3.972.0':
|
|
2178
|
+
dependencies:
|
|
2179
|
+
'@smithy/types': 4.12.0
|
|
2180
|
+
tslib: 2.8.1
|
|
2181
|
+
|
|
2182
|
+
'@aws-sdk/credential-provider-env@3.972.0':
|
|
2183
|
+
dependencies:
|
|
2184
|
+
'@aws-sdk/core': 3.972.0
|
|
2185
|
+
'@aws-sdk/types': 3.972.0
|
|
2186
|
+
'@smithy/property-provider': 4.2.8
|
|
2187
|
+
'@smithy/types': 4.12.0
|
|
2188
|
+
tslib: 2.8.1
|
|
2189
|
+
|
|
2190
|
+
'@aws-sdk/credential-provider-http@3.972.0':
|
|
2191
|
+
dependencies:
|
|
2192
|
+
'@aws-sdk/core': 3.972.0
|
|
2193
|
+
'@aws-sdk/types': 3.972.0
|
|
2194
|
+
'@smithy/fetch-http-handler': 5.3.9
|
|
2195
|
+
'@smithy/node-http-handler': 4.4.8
|
|
2196
|
+
'@smithy/property-provider': 4.2.8
|
|
2197
|
+
'@smithy/protocol-http': 5.3.8
|
|
2198
|
+
'@smithy/smithy-client': 4.10.11
|
|
2199
|
+
'@smithy/types': 4.12.0
|
|
2200
|
+
'@smithy/util-stream': 4.5.10
|
|
2201
|
+
tslib: 2.8.1
|
|
2202
|
+
|
|
2203
|
+
'@aws-sdk/credential-provider-ini@3.972.0':
|
|
2204
|
+
dependencies:
|
|
2205
|
+
'@aws-sdk/core': 3.972.0
|
|
2206
|
+
'@aws-sdk/credential-provider-env': 3.972.0
|
|
2207
|
+
'@aws-sdk/credential-provider-http': 3.972.0
|
|
2208
|
+
'@aws-sdk/credential-provider-login': 3.972.0
|
|
2209
|
+
'@aws-sdk/credential-provider-process': 3.972.0
|
|
2210
|
+
'@aws-sdk/credential-provider-sso': 3.972.0
|
|
2211
|
+
'@aws-sdk/credential-provider-web-identity': 3.972.0
|
|
2212
|
+
'@aws-sdk/nested-clients': 3.972.0
|
|
2213
|
+
'@aws-sdk/types': 3.972.0
|
|
2214
|
+
'@smithy/credential-provider-imds': 4.2.8
|
|
2215
|
+
'@smithy/property-provider': 4.2.8
|
|
2216
|
+
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2217
|
+
'@smithy/types': 4.12.0
|
|
2218
|
+
tslib: 2.8.1
|
|
2219
|
+
transitivePeerDependencies:
|
|
2220
|
+
- aws-crt
|
|
2221
|
+
|
|
2222
|
+
'@aws-sdk/credential-provider-login@3.972.0':
|
|
2223
|
+
dependencies:
|
|
2224
|
+
'@aws-sdk/core': 3.972.0
|
|
2225
|
+
'@aws-sdk/nested-clients': 3.972.0
|
|
2226
|
+
'@aws-sdk/types': 3.972.0
|
|
2227
|
+
'@smithy/property-provider': 4.2.8
|
|
2228
|
+
'@smithy/protocol-http': 5.3.8
|
|
2229
|
+
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2230
|
+
'@smithy/types': 4.12.0
|
|
2231
|
+
tslib: 2.8.1
|
|
2232
|
+
transitivePeerDependencies:
|
|
2233
|
+
- aws-crt
|
|
2234
|
+
|
|
2235
|
+
'@aws-sdk/credential-provider-node@3.972.0':
|
|
2236
|
+
dependencies:
|
|
2237
|
+
'@aws-sdk/credential-provider-env': 3.972.0
|
|
2238
|
+
'@aws-sdk/credential-provider-http': 3.972.0
|
|
2239
|
+
'@aws-sdk/credential-provider-ini': 3.972.0
|
|
2240
|
+
'@aws-sdk/credential-provider-process': 3.972.0
|
|
2241
|
+
'@aws-sdk/credential-provider-sso': 3.972.0
|
|
2242
|
+
'@aws-sdk/credential-provider-web-identity': 3.972.0
|
|
2243
|
+
'@aws-sdk/types': 3.972.0
|
|
2244
|
+
'@smithy/credential-provider-imds': 4.2.8
|
|
2245
|
+
'@smithy/property-provider': 4.2.8
|
|
2246
|
+
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2247
|
+
'@smithy/types': 4.12.0
|
|
2248
|
+
tslib: 2.8.1
|
|
2249
|
+
transitivePeerDependencies:
|
|
2250
|
+
- aws-crt
|
|
2251
|
+
|
|
2252
|
+
'@aws-sdk/credential-provider-process@3.972.0':
|
|
2253
|
+
dependencies:
|
|
2254
|
+
'@aws-sdk/core': 3.972.0
|
|
2255
|
+
'@aws-sdk/types': 3.972.0
|
|
2256
|
+
'@smithy/property-provider': 4.2.8
|
|
2257
|
+
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2258
|
+
'@smithy/types': 4.12.0
|
|
2259
|
+
tslib: 2.8.1
|
|
2260
|
+
|
|
2261
|
+
'@aws-sdk/credential-provider-sso@3.972.0':
|
|
2262
|
+
dependencies:
|
|
2263
|
+
'@aws-sdk/client-sso': 3.972.0
|
|
2264
|
+
'@aws-sdk/core': 3.972.0
|
|
2265
|
+
'@aws-sdk/token-providers': 3.972.0
|
|
2266
|
+
'@aws-sdk/types': 3.972.0
|
|
2267
|
+
'@smithy/property-provider': 4.2.8
|
|
2268
|
+
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2269
|
+
'@smithy/types': 4.12.0
|
|
2270
|
+
tslib: 2.8.1
|
|
2271
|
+
transitivePeerDependencies:
|
|
2272
|
+
- aws-crt
|
|
2273
|
+
|
|
2274
|
+
'@aws-sdk/credential-provider-web-identity@3.972.0':
|
|
2275
|
+
dependencies:
|
|
2276
|
+
'@aws-sdk/core': 3.972.0
|
|
2277
|
+
'@aws-sdk/nested-clients': 3.972.0
|
|
2278
|
+
'@aws-sdk/types': 3.972.0
|
|
2279
|
+
'@smithy/property-provider': 4.2.8
|
|
2280
|
+
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2281
|
+
'@smithy/types': 4.12.0
|
|
2282
|
+
tslib: 2.8.1
|
|
2283
|
+
transitivePeerDependencies:
|
|
2284
|
+
- aws-crt
|
|
2285
|
+
|
|
2286
|
+
'@aws-sdk/lib-storage@3.972.0(@aws-sdk/client-s3@3.972.0)':
|
|
2287
|
+
dependencies:
|
|
2288
|
+
'@aws-sdk/client-s3': 3.972.0
|
|
2289
|
+
'@smithy/abort-controller': 4.2.8
|
|
2290
|
+
'@smithy/middleware-endpoint': 4.4.10
|
|
2291
|
+
'@smithy/smithy-client': 4.10.11
|
|
2292
|
+
buffer: 5.6.0
|
|
2293
|
+
events: 3.3.0
|
|
2294
|
+
stream-browserify: 3.0.0
|
|
2295
|
+
tslib: 2.8.1
|
|
2296
|
+
|
|
2297
|
+
'@aws-sdk/middleware-bucket-endpoint@3.972.0':
|
|
2298
|
+
dependencies:
|
|
2299
|
+
'@aws-sdk/types': 3.972.0
|
|
2300
|
+
'@aws-sdk/util-arn-parser': 3.972.0
|
|
2301
|
+
'@smithy/node-config-provider': 4.3.8
|
|
2302
|
+
'@smithy/protocol-http': 5.3.8
|
|
2303
|
+
'@smithy/types': 4.12.0
|
|
2304
|
+
'@smithy/util-config-provider': 4.2.0
|
|
2305
|
+
tslib: 2.8.1
|
|
2306
|
+
|
|
2307
|
+
'@aws-sdk/middleware-expect-continue@3.972.0':
|
|
2308
|
+
dependencies:
|
|
2309
|
+
'@aws-sdk/types': 3.972.0
|
|
2310
|
+
'@smithy/protocol-http': 5.3.8
|
|
2311
|
+
'@smithy/types': 4.12.0
|
|
2312
|
+
tslib: 2.8.1
|
|
2313
|
+
|
|
2314
|
+
'@aws-sdk/middleware-flexible-checksums@3.972.0':
|
|
2315
|
+
dependencies:
|
|
2316
|
+
'@aws-crypto/crc32': 5.2.0
|
|
2317
|
+
'@aws-crypto/crc32c': 5.2.0
|
|
2318
|
+
'@aws-crypto/util': 5.2.0
|
|
2319
|
+
'@aws-sdk/core': 3.972.0
|
|
2320
|
+
'@aws-sdk/crc64-nvme': 3.972.0
|
|
2321
|
+
'@aws-sdk/types': 3.972.0
|
|
2322
|
+
'@smithy/is-array-buffer': 4.2.0
|
|
2323
|
+
'@smithy/node-config-provider': 4.3.8
|
|
2324
|
+
'@smithy/protocol-http': 5.3.8
|
|
2325
|
+
'@smithy/types': 4.12.0
|
|
2326
|
+
'@smithy/util-middleware': 4.2.8
|
|
2327
|
+
'@smithy/util-stream': 4.5.10
|
|
2328
|
+
'@smithy/util-utf8': 4.2.0
|
|
2329
|
+
tslib: 2.8.1
|
|
2330
|
+
|
|
2331
|
+
'@aws-sdk/middleware-host-header@3.972.0':
|
|
2332
|
+
dependencies:
|
|
2333
|
+
'@aws-sdk/types': 3.972.0
|
|
2334
|
+
'@smithy/protocol-http': 5.3.8
|
|
2335
|
+
'@smithy/types': 4.12.0
|
|
2336
|
+
tslib: 2.8.1
|
|
2337
|
+
|
|
2338
|
+
'@aws-sdk/middleware-location-constraint@3.972.0':
|
|
2339
|
+
dependencies:
|
|
2340
|
+
'@aws-sdk/types': 3.972.0
|
|
2341
|
+
'@smithy/types': 4.12.0
|
|
2342
|
+
tslib: 2.8.1
|
|
2343
|
+
|
|
2344
|
+
'@aws-sdk/middleware-logger@3.972.0':
|
|
2345
|
+
dependencies:
|
|
2346
|
+
'@aws-sdk/types': 3.972.0
|
|
2347
|
+
'@smithy/types': 4.12.0
|
|
2348
|
+
tslib: 2.8.1
|
|
2349
|
+
|
|
2350
|
+
'@aws-sdk/middleware-recursion-detection@3.972.0':
|
|
2351
|
+
dependencies:
|
|
2352
|
+
'@aws-sdk/types': 3.972.0
|
|
2353
|
+
'@aws/lambda-invoke-store': 0.2.3
|
|
2354
|
+
'@smithy/protocol-http': 5.3.8
|
|
2355
|
+
'@smithy/types': 4.12.0
|
|
2356
|
+
tslib: 2.8.1
|
|
2357
|
+
|
|
2358
|
+
'@aws-sdk/middleware-sdk-s3@3.972.0':
|
|
2359
|
+
dependencies:
|
|
2360
|
+
'@aws-sdk/core': 3.972.0
|
|
2361
|
+
'@aws-sdk/types': 3.972.0
|
|
2362
|
+
'@aws-sdk/util-arn-parser': 3.972.0
|
|
2363
|
+
'@smithy/core': 3.21.0
|
|
2364
|
+
'@smithy/node-config-provider': 4.3.8
|
|
2365
|
+
'@smithy/protocol-http': 5.3.8
|
|
2366
|
+
'@smithy/signature-v4': 5.3.8
|
|
2367
|
+
'@smithy/smithy-client': 4.10.11
|
|
2368
|
+
'@smithy/types': 4.12.0
|
|
2369
|
+
'@smithy/util-config-provider': 4.2.0
|
|
2370
|
+
'@smithy/util-middleware': 4.2.8
|
|
2371
|
+
'@smithy/util-stream': 4.5.10
|
|
2372
|
+
'@smithy/util-utf8': 4.2.0
|
|
2373
|
+
tslib: 2.8.1
|
|
2374
|
+
|
|
2375
|
+
'@aws-sdk/middleware-ssec@3.972.0':
|
|
2376
|
+
dependencies:
|
|
2377
|
+
'@aws-sdk/types': 3.972.0
|
|
2378
|
+
'@smithy/types': 4.12.0
|
|
2379
|
+
tslib: 2.8.1
|
|
2380
|
+
|
|
2381
|
+
'@aws-sdk/middleware-user-agent@3.972.0':
|
|
2382
|
+
dependencies:
|
|
2383
|
+
'@aws-sdk/core': 3.972.0
|
|
2384
|
+
'@aws-sdk/types': 3.972.0
|
|
2385
|
+
'@aws-sdk/util-endpoints': 3.972.0
|
|
2386
|
+
'@smithy/core': 3.21.0
|
|
2387
|
+
'@smithy/protocol-http': 5.3.8
|
|
2388
|
+
'@smithy/types': 4.12.0
|
|
2389
|
+
tslib: 2.8.1
|
|
2390
|
+
|
|
2391
|
+
'@aws-sdk/nested-clients@3.972.0':
|
|
2392
|
+
dependencies:
|
|
2393
|
+
'@aws-crypto/sha256-browser': 5.2.0
|
|
2394
|
+
'@aws-crypto/sha256-js': 5.2.0
|
|
2395
|
+
'@aws-sdk/core': 3.972.0
|
|
2396
|
+
'@aws-sdk/middleware-host-header': 3.972.0
|
|
2397
|
+
'@aws-sdk/middleware-logger': 3.972.0
|
|
2398
|
+
'@aws-sdk/middleware-recursion-detection': 3.972.0
|
|
2399
|
+
'@aws-sdk/middleware-user-agent': 3.972.0
|
|
2400
|
+
'@aws-sdk/region-config-resolver': 3.972.0
|
|
2401
|
+
'@aws-sdk/types': 3.972.0
|
|
2402
|
+
'@aws-sdk/util-endpoints': 3.972.0
|
|
2403
|
+
'@aws-sdk/util-user-agent-browser': 3.972.0
|
|
2404
|
+
'@aws-sdk/util-user-agent-node': 3.972.0
|
|
2405
|
+
'@smithy/config-resolver': 4.4.6
|
|
2406
|
+
'@smithy/core': 3.21.0
|
|
2407
|
+
'@smithy/fetch-http-handler': 5.3.9
|
|
2408
|
+
'@smithy/hash-node': 4.2.8
|
|
2409
|
+
'@smithy/invalid-dependency': 4.2.8
|
|
2410
|
+
'@smithy/middleware-content-length': 4.2.8
|
|
2411
|
+
'@smithy/middleware-endpoint': 4.4.10
|
|
2412
|
+
'@smithy/middleware-retry': 4.4.26
|
|
2413
|
+
'@smithy/middleware-serde': 4.2.9
|
|
2414
|
+
'@smithy/middleware-stack': 4.2.8
|
|
2415
|
+
'@smithy/node-config-provider': 4.3.8
|
|
2416
|
+
'@smithy/node-http-handler': 4.4.8
|
|
2417
|
+
'@smithy/protocol-http': 5.3.8
|
|
2418
|
+
'@smithy/smithy-client': 4.10.11
|
|
2419
|
+
'@smithy/types': 4.12.0
|
|
2420
|
+
'@smithy/url-parser': 4.2.8
|
|
2421
|
+
'@smithy/util-base64': 4.3.0
|
|
2422
|
+
'@smithy/util-body-length-browser': 4.2.0
|
|
2423
|
+
'@smithy/util-body-length-node': 4.2.1
|
|
2424
|
+
'@smithy/util-defaults-mode-browser': 4.3.25
|
|
2425
|
+
'@smithy/util-defaults-mode-node': 4.2.28
|
|
2426
|
+
'@smithy/util-endpoints': 3.2.8
|
|
2427
|
+
'@smithy/util-middleware': 4.2.8
|
|
2428
|
+
'@smithy/util-retry': 4.2.8
|
|
2429
|
+
'@smithy/util-utf8': 4.2.0
|
|
2430
|
+
tslib: 2.8.1
|
|
2431
|
+
transitivePeerDependencies:
|
|
2432
|
+
- aws-crt
|
|
2433
|
+
|
|
2434
|
+
'@aws-sdk/region-config-resolver@3.972.0':
|
|
2435
|
+
dependencies:
|
|
2436
|
+
'@aws-sdk/types': 3.972.0
|
|
2437
|
+
'@smithy/config-resolver': 4.4.6
|
|
2438
|
+
'@smithy/node-config-provider': 4.3.8
|
|
2439
|
+
'@smithy/types': 4.12.0
|
|
2440
|
+
tslib: 2.8.1
|
|
2441
|
+
|
|
2442
|
+
'@aws-sdk/signature-v4-multi-region@3.972.0':
|
|
2443
|
+
dependencies:
|
|
2444
|
+
'@aws-sdk/middleware-sdk-s3': 3.972.0
|
|
2445
|
+
'@aws-sdk/types': 3.972.0
|
|
2446
|
+
'@smithy/protocol-http': 5.3.8
|
|
2447
|
+
'@smithy/signature-v4': 5.3.8
|
|
2448
|
+
'@smithy/types': 4.12.0
|
|
2449
|
+
tslib: 2.8.1
|
|
2450
|
+
|
|
2451
|
+
'@aws-sdk/token-providers@3.972.0':
|
|
2452
|
+
dependencies:
|
|
2453
|
+
'@aws-sdk/core': 3.972.0
|
|
2454
|
+
'@aws-sdk/nested-clients': 3.972.0
|
|
2455
|
+
'@aws-sdk/types': 3.972.0
|
|
2456
|
+
'@smithy/property-provider': 4.2.8
|
|
2457
|
+
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2458
|
+
'@smithy/types': 4.12.0
|
|
2459
|
+
tslib: 2.8.1
|
|
2460
|
+
transitivePeerDependencies:
|
|
2461
|
+
- aws-crt
|
|
2462
|
+
|
|
2463
|
+
'@aws-sdk/types@3.972.0':
|
|
2464
|
+
dependencies:
|
|
2465
|
+
'@smithy/types': 4.12.0
|
|
2466
|
+
tslib: 2.8.1
|
|
2467
|
+
|
|
2468
|
+
'@aws-sdk/util-arn-parser@3.972.0':
|
|
2469
|
+
dependencies:
|
|
2470
|
+
tslib: 2.8.1
|
|
2471
|
+
|
|
2472
|
+
'@aws-sdk/util-endpoints@3.972.0':
|
|
2473
|
+
dependencies:
|
|
2474
|
+
'@aws-sdk/types': 3.972.0
|
|
2475
|
+
'@smithy/types': 4.12.0
|
|
2476
|
+
'@smithy/url-parser': 4.2.8
|
|
2477
|
+
'@smithy/util-endpoints': 3.2.8
|
|
2478
|
+
tslib: 2.8.1
|
|
2479
|
+
|
|
2480
|
+
'@aws-sdk/util-locate-window@3.965.3':
|
|
2481
|
+
dependencies:
|
|
2482
|
+
tslib: 2.8.1
|
|
2483
|
+
|
|
2484
|
+
'@aws-sdk/util-user-agent-browser@3.972.0':
|
|
2485
|
+
dependencies:
|
|
2486
|
+
'@aws-sdk/types': 3.972.0
|
|
2487
|
+
'@smithy/types': 4.12.0
|
|
2488
|
+
bowser: 2.13.1
|
|
2489
|
+
tslib: 2.8.1
|
|
2490
|
+
|
|
2491
|
+
'@aws-sdk/util-user-agent-node@3.972.0':
|
|
2492
|
+
dependencies:
|
|
2493
|
+
'@aws-sdk/middleware-user-agent': 3.972.0
|
|
2494
|
+
'@aws-sdk/types': 3.972.0
|
|
2495
|
+
'@smithy/node-config-provider': 4.3.8
|
|
2496
|
+
'@smithy/types': 4.12.0
|
|
2497
|
+
tslib: 2.8.1
|
|
2498
|
+
|
|
2499
|
+
'@aws-sdk/xml-builder@3.972.0':
|
|
2500
|
+
dependencies:
|
|
2501
|
+
'@smithy/types': 4.12.0
|
|
2502
|
+
fast-xml-parser: 5.2.5
|
|
2503
|
+
tslib: 2.8.1
|
|
2504
|
+
|
|
2505
|
+
'@aws/lambda-invoke-store@0.2.3': {}
|
|
2506
|
+
|
|
2507
|
+
'@cfworker/json-schema@4.1.1': {}
|
|
2508
|
+
|
|
2509
|
+
'@drizzle-team/brocli@0.10.2': {}
|
|
2510
|
+
|
|
2511
|
+
'@esbuild-kit/core-utils@3.3.2':
|
|
2512
|
+
dependencies:
|
|
2513
|
+
esbuild: 0.27.2
|
|
2514
|
+
source-map-support: 0.5.21
|
|
2515
|
+
|
|
2516
|
+
'@esbuild-kit/esm-loader@2.6.5':
|
|
2517
|
+
dependencies:
|
|
2518
|
+
'@esbuild-kit/core-utils': 3.3.2
|
|
2519
|
+
get-tsconfig: 4.13.0
|
|
2520
|
+
|
|
2521
|
+
'@esbuild/aix-ppc64@0.27.2':
|
|
717
2522
|
optional: true
|
|
718
2523
|
|
|
719
|
-
'@esbuild/android-arm64@0.
|
|
2524
|
+
'@esbuild/android-arm64@0.27.2':
|
|
720
2525
|
optional: true
|
|
721
2526
|
|
|
722
|
-
'@esbuild/android-arm@0.
|
|
2527
|
+
'@esbuild/android-arm@0.27.2':
|
|
723
2528
|
optional: true
|
|
724
2529
|
|
|
725
|
-
'@esbuild/android-x64@0.
|
|
2530
|
+
'@esbuild/android-x64@0.27.2':
|
|
726
2531
|
optional: true
|
|
727
2532
|
|
|
728
|
-
'@esbuild/darwin-arm64@0.
|
|
2533
|
+
'@esbuild/darwin-arm64@0.27.2':
|
|
729
2534
|
optional: true
|
|
730
2535
|
|
|
731
|
-
'@esbuild/darwin-x64@0.
|
|
2536
|
+
'@esbuild/darwin-x64@0.27.2':
|
|
732
2537
|
optional: true
|
|
733
2538
|
|
|
734
|
-
'@esbuild/freebsd-arm64@0.
|
|
2539
|
+
'@esbuild/freebsd-arm64@0.27.2':
|
|
735
2540
|
optional: true
|
|
736
2541
|
|
|
737
|
-
'@esbuild/freebsd-x64@0.
|
|
2542
|
+
'@esbuild/freebsd-x64@0.27.2':
|
|
738
2543
|
optional: true
|
|
739
2544
|
|
|
740
|
-
'@esbuild/linux-arm64@0.
|
|
2545
|
+
'@esbuild/linux-arm64@0.27.2':
|
|
741
2546
|
optional: true
|
|
742
2547
|
|
|
743
|
-
'@esbuild/linux-arm@0.
|
|
2548
|
+
'@esbuild/linux-arm@0.27.2':
|
|
744
2549
|
optional: true
|
|
745
2550
|
|
|
746
|
-
'@esbuild/linux-ia32@0.
|
|
2551
|
+
'@esbuild/linux-ia32@0.27.2':
|
|
747
2552
|
optional: true
|
|
748
2553
|
|
|
749
|
-
'@esbuild/linux-loong64@0.
|
|
2554
|
+
'@esbuild/linux-loong64@0.27.2':
|
|
750
2555
|
optional: true
|
|
751
2556
|
|
|
752
|
-
'@esbuild/linux-mips64el@0.
|
|
2557
|
+
'@esbuild/linux-mips64el@0.27.2':
|
|
753
2558
|
optional: true
|
|
754
2559
|
|
|
755
|
-
'@esbuild/linux-ppc64@0.
|
|
2560
|
+
'@esbuild/linux-ppc64@0.27.2':
|
|
756
2561
|
optional: true
|
|
757
2562
|
|
|
758
|
-
'@esbuild/linux-riscv64@0.
|
|
2563
|
+
'@esbuild/linux-riscv64@0.27.2':
|
|
759
2564
|
optional: true
|
|
760
2565
|
|
|
761
|
-
'@esbuild/linux-s390x@0.
|
|
2566
|
+
'@esbuild/linux-s390x@0.27.2':
|
|
762
2567
|
optional: true
|
|
763
2568
|
|
|
764
|
-
'@esbuild/linux-x64@0.
|
|
2569
|
+
'@esbuild/linux-x64@0.27.2':
|
|
765
2570
|
optional: true
|
|
766
2571
|
|
|
767
|
-
'@esbuild/netbsd-arm64@0.
|
|
2572
|
+
'@esbuild/netbsd-arm64@0.27.2':
|
|
768
2573
|
optional: true
|
|
769
2574
|
|
|
770
|
-
'@esbuild/netbsd-x64@0.
|
|
2575
|
+
'@esbuild/netbsd-x64@0.27.2':
|
|
771
2576
|
optional: true
|
|
772
2577
|
|
|
773
|
-
'@esbuild/openbsd-arm64@0.
|
|
2578
|
+
'@esbuild/openbsd-arm64@0.27.2':
|
|
774
2579
|
optional: true
|
|
775
2580
|
|
|
776
|
-
'@esbuild/openbsd-x64@0.
|
|
2581
|
+
'@esbuild/openbsd-x64@0.27.2':
|
|
777
2582
|
optional: true
|
|
778
2583
|
|
|
779
|
-
'@esbuild/openharmony-arm64@0.
|
|
2584
|
+
'@esbuild/openharmony-arm64@0.27.2':
|
|
780
2585
|
optional: true
|
|
781
2586
|
|
|
782
|
-
'@esbuild/sunos-x64@0.
|
|
2587
|
+
'@esbuild/sunos-x64@0.27.2':
|
|
783
2588
|
optional: true
|
|
784
2589
|
|
|
785
|
-
'@esbuild/win32-arm64@0.
|
|
2590
|
+
'@esbuild/win32-arm64@0.27.2':
|
|
786
2591
|
optional: true
|
|
787
2592
|
|
|
788
|
-
'@esbuild/win32-ia32@0.
|
|
2593
|
+
'@esbuild/win32-ia32@0.27.2':
|
|
789
2594
|
optional: true
|
|
790
2595
|
|
|
791
|
-
'@esbuild/win32-x64@0.
|
|
2596
|
+
'@esbuild/win32-x64@0.27.2':
|
|
792
2597
|
optional: true
|
|
793
2598
|
|
|
2599
|
+
'@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@1.21.7))':
|
|
2600
|
+
dependencies:
|
|
2601
|
+
eslint: 9.39.2(jiti@1.21.7)
|
|
2602
|
+
eslint-visitor-keys: 3.4.3
|
|
2603
|
+
|
|
2604
|
+
'@eslint-community/regexpp@4.12.2': {}
|
|
2605
|
+
|
|
2606
|
+
'@eslint/config-array@0.21.1':
|
|
2607
|
+
dependencies:
|
|
2608
|
+
'@eslint/object-schema': 2.1.7
|
|
2609
|
+
debug: 4.4.3
|
|
2610
|
+
minimatch: 3.1.2
|
|
2611
|
+
transitivePeerDependencies:
|
|
2612
|
+
- supports-color
|
|
2613
|
+
|
|
2614
|
+
'@eslint/config-helpers@0.4.2':
|
|
2615
|
+
dependencies:
|
|
2616
|
+
'@eslint/core': 0.17.0
|
|
2617
|
+
|
|
2618
|
+
'@eslint/core@0.17.0':
|
|
2619
|
+
dependencies:
|
|
2620
|
+
'@types/json-schema': 7.0.15
|
|
2621
|
+
|
|
2622
|
+
'@eslint/eslintrc@3.3.3':
|
|
2623
|
+
dependencies:
|
|
2624
|
+
ajv: 6.12.6
|
|
2625
|
+
debug: 4.4.3
|
|
2626
|
+
espree: 10.4.0
|
|
2627
|
+
globals: 14.0.0
|
|
2628
|
+
ignore: 5.3.2
|
|
2629
|
+
import-fresh: 3.3.1
|
|
2630
|
+
js-yaml: 4.1.1
|
|
2631
|
+
minimatch: 3.1.2
|
|
2632
|
+
strip-json-comments: 3.1.1
|
|
2633
|
+
transitivePeerDependencies:
|
|
2634
|
+
- supports-color
|
|
2635
|
+
|
|
2636
|
+
'@eslint/js@9.39.2': {}
|
|
2637
|
+
|
|
2638
|
+
'@eslint/object-schema@2.1.7': {}
|
|
2639
|
+
|
|
2640
|
+
'@eslint/plugin-kit@0.4.1':
|
|
2641
|
+
dependencies:
|
|
2642
|
+
'@eslint/core': 0.17.0
|
|
2643
|
+
levn: 0.4.1
|
|
2644
|
+
|
|
2645
|
+
'@humanfs/core@0.19.1': {}
|
|
2646
|
+
|
|
2647
|
+
'@humanfs/node@0.16.7':
|
|
2648
|
+
dependencies:
|
|
2649
|
+
'@humanfs/core': 0.19.1
|
|
2650
|
+
'@humanwhocodes/retry': 0.4.3
|
|
2651
|
+
|
|
2652
|
+
'@humanwhocodes/module-importer@1.0.1': {}
|
|
2653
|
+
|
|
2654
|
+
'@humanwhocodes/retry@0.4.3': {}
|
|
2655
|
+
|
|
794
2656
|
'@jridgewell/gen-mapping@0.3.13':
|
|
795
2657
|
dependencies:
|
|
796
2658
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
@@ -805,6 +2667,33 @@ snapshots:
|
|
|
805
2667
|
'@jridgewell/resolve-uri': 3.1.2
|
|
806
2668
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
807
2669
|
|
|
2670
|
+
'@langchain/core@1.1.16(openai@6.16.0(zod@4.3.5))':
|
|
2671
|
+
dependencies:
|
|
2672
|
+
'@cfworker/json-schema': 4.1.1
|
|
2673
|
+
ansi-styles: 5.2.0
|
|
2674
|
+
camelcase: 6.3.0
|
|
2675
|
+
decamelize: 1.2.0
|
|
2676
|
+
js-tiktoken: 1.0.21
|
|
2677
|
+
langsmith: 0.4.7(openai@6.16.0(zod@4.3.5))
|
|
2678
|
+
mustache: 4.2.0
|
|
2679
|
+
p-queue: 6.6.2
|
|
2680
|
+
uuid: 10.0.0
|
|
2681
|
+
zod: 4.3.5
|
|
2682
|
+
transitivePeerDependencies:
|
|
2683
|
+
- '@opentelemetry/api'
|
|
2684
|
+
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
2685
|
+
- '@opentelemetry/sdk-trace-base'
|
|
2686
|
+
- openai
|
|
2687
|
+
|
|
2688
|
+
'@langchain/openai@1.2.3(@langchain/core@1.1.16(openai@6.16.0(zod@4.3.5)))':
|
|
2689
|
+
dependencies:
|
|
2690
|
+
'@langchain/core': 1.1.16(openai@6.16.0(zod@4.3.5))
|
|
2691
|
+
js-tiktoken: 1.0.21
|
|
2692
|
+
openai: 6.16.0(zod@4.3.5)
|
|
2693
|
+
zod: 4.3.5
|
|
2694
|
+
transitivePeerDependencies:
|
|
2695
|
+
- ws
|
|
2696
|
+
|
|
808
2697
|
'@nodelib/fs.scandir@2.1.5':
|
|
809
2698
|
dependencies:
|
|
810
2699
|
'@nodelib/fs.stat': 2.0.5
|
|
@@ -817,73 +2706,536 @@ snapshots:
|
|
|
817
2706
|
'@nodelib/fs.scandir': 2.1.5
|
|
818
2707
|
fastq: 1.20.1
|
|
819
2708
|
|
|
820
|
-
'@rollup/rollup-android-arm-eabi@4.
|
|
2709
|
+
'@rollup/rollup-android-arm-eabi@4.55.3':
|
|
2710
|
+
optional: true
|
|
2711
|
+
|
|
2712
|
+
'@rollup/rollup-android-arm64@4.55.3':
|
|
2713
|
+
optional: true
|
|
2714
|
+
|
|
2715
|
+
'@rollup/rollup-darwin-arm64@4.55.3':
|
|
2716
|
+
optional: true
|
|
2717
|
+
|
|
2718
|
+
'@rollup/rollup-darwin-x64@4.55.3':
|
|
2719
|
+
optional: true
|
|
2720
|
+
|
|
2721
|
+
'@rollup/rollup-freebsd-arm64@4.55.3':
|
|
2722
|
+
optional: true
|
|
2723
|
+
|
|
2724
|
+
'@rollup/rollup-freebsd-x64@4.55.3':
|
|
2725
|
+
optional: true
|
|
2726
|
+
|
|
2727
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.55.3':
|
|
2728
|
+
optional: true
|
|
2729
|
+
|
|
2730
|
+
'@rollup/rollup-linux-arm-musleabihf@4.55.3':
|
|
821
2731
|
optional: true
|
|
822
2732
|
|
|
823
|
-
'@rollup/rollup-
|
|
2733
|
+
'@rollup/rollup-linux-arm64-gnu@4.55.3':
|
|
824
2734
|
optional: true
|
|
825
2735
|
|
|
826
|
-
'@rollup/rollup-
|
|
2736
|
+
'@rollup/rollup-linux-arm64-musl@4.55.3':
|
|
827
2737
|
optional: true
|
|
828
2738
|
|
|
829
|
-
'@rollup/rollup-
|
|
2739
|
+
'@rollup/rollup-linux-loong64-gnu@4.55.3':
|
|
830
2740
|
optional: true
|
|
831
2741
|
|
|
832
|
-
'@rollup/rollup-
|
|
2742
|
+
'@rollup/rollup-linux-loong64-musl@4.55.3':
|
|
833
2743
|
optional: true
|
|
834
2744
|
|
|
835
|
-
'@rollup/rollup-
|
|
2745
|
+
'@rollup/rollup-linux-ppc64-gnu@4.55.3':
|
|
836
2746
|
optional: true
|
|
837
2747
|
|
|
838
|
-
'@rollup/rollup-linux-
|
|
2748
|
+
'@rollup/rollup-linux-ppc64-musl@4.55.3':
|
|
839
2749
|
optional: true
|
|
840
2750
|
|
|
841
|
-
'@rollup/rollup-linux-
|
|
2751
|
+
'@rollup/rollup-linux-riscv64-gnu@4.55.3':
|
|
842
2752
|
optional: true
|
|
843
2753
|
|
|
844
|
-
'@rollup/rollup-linux-
|
|
2754
|
+
'@rollup/rollup-linux-riscv64-musl@4.55.3':
|
|
845
2755
|
optional: true
|
|
846
2756
|
|
|
847
|
-
'@rollup/rollup-linux-
|
|
2757
|
+
'@rollup/rollup-linux-s390x-gnu@4.55.3':
|
|
848
2758
|
optional: true
|
|
849
2759
|
|
|
850
|
-
'@rollup/rollup-linux-
|
|
2760
|
+
'@rollup/rollup-linux-x64-gnu@4.55.3':
|
|
851
2761
|
optional: true
|
|
852
2762
|
|
|
853
|
-
'@rollup/rollup-linux-
|
|
2763
|
+
'@rollup/rollup-linux-x64-musl@4.55.3':
|
|
854
2764
|
optional: true
|
|
855
2765
|
|
|
856
|
-
'@rollup/rollup-
|
|
2766
|
+
'@rollup/rollup-openbsd-x64@4.55.3':
|
|
857
2767
|
optional: true
|
|
858
2768
|
|
|
859
|
-
'@rollup/rollup-
|
|
2769
|
+
'@rollup/rollup-openharmony-arm64@4.55.3':
|
|
860
2770
|
optional: true
|
|
861
2771
|
|
|
862
|
-
'@rollup/rollup-
|
|
2772
|
+
'@rollup/rollup-win32-arm64-msvc@4.55.3':
|
|
863
2773
|
optional: true
|
|
864
2774
|
|
|
865
|
-
'@rollup/rollup-
|
|
2775
|
+
'@rollup/rollup-win32-ia32-msvc@4.55.3':
|
|
866
2776
|
optional: true
|
|
867
2777
|
|
|
868
|
-
'@rollup/rollup-
|
|
2778
|
+
'@rollup/rollup-win32-x64-gnu@4.55.3':
|
|
869
2779
|
optional: true
|
|
870
2780
|
|
|
871
|
-
'@rollup/rollup-
|
|
872
|
-
optional: true
|
|
2781
|
+
'@rollup/rollup-win32-x64-msvc@4.55.3':
|
|
2782
|
+
optional: true
|
|
2783
|
+
|
|
2784
|
+
'@smithy/abort-controller@4.2.8':
|
|
2785
|
+
dependencies:
|
|
2786
|
+
'@smithy/types': 4.12.0
|
|
2787
|
+
tslib: 2.8.1
|
|
2788
|
+
|
|
2789
|
+
'@smithy/chunked-blob-reader-native@4.2.1':
|
|
2790
|
+
dependencies:
|
|
2791
|
+
'@smithy/util-base64': 4.3.0
|
|
2792
|
+
tslib: 2.8.1
|
|
2793
|
+
|
|
2794
|
+
'@smithy/chunked-blob-reader@5.2.0':
|
|
2795
|
+
dependencies:
|
|
2796
|
+
tslib: 2.8.1
|
|
2797
|
+
|
|
2798
|
+
'@smithy/config-resolver@4.4.6':
|
|
2799
|
+
dependencies:
|
|
2800
|
+
'@smithy/node-config-provider': 4.3.8
|
|
2801
|
+
'@smithy/types': 4.12.0
|
|
2802
|
+
'@smithy/util-config-provider': 4.2.0
|
|
2803
|
+
'@smithy/util-endpoints': 3.2.8
|
|
2804
|
+
'@smithy/util-middleware': 4.2.8
|
|
2805
|
+
tslib: 2.8.1
|
|
2806
|
+
|
|
2807
|
+
'@smithy/core@3.21.0':
|
|
2808
|
+
dependencies:
|
|
2809
|
+
'@smithy/middleware-serde': 4.2.9
|
|
2810
|
+
'@smithy/protocol-http': 5.3.8
|
|
2811
|
+
'@smithy/types': 4.12.0
|
|
2812
|
+
'@smithy/util-base64': 4.3.0
|
|
2813
|
+
'@smithy/util-body-length-browser': 4.2.0
|
|
2814
|
+
'@smithy/util-middleware': 4.2.8
|
|
2815
|
+
'@smithy/util-stream': 4.5.10
|
|
2816
|
+
'@smithy/util-utf8': 4.2.0
|
|
2817
|
+
'@smithy/uuid': 1.1.0
|
|
2818
|
+
tslib: 2.8.1
|
|
2819
|
+
|
|
2820
|
+
'@smithy/credential-provider-imds@4.2.8':
|
|
2821
|
+
dependencies:
|
|
2822
|
+
'@smithy/node-config-provider': 4.3.8
|
|
2823
|
+
'@smithy/property-provider': 4.2.8
|
|
2824
|
+
'@smithy/types': 4.12.0
|
|
2825
|
+
'@smithy/url-parser': 4.2.8
|
|
2826
|
+
tslib: 2.8.1
|
|
2827
|
+
|
|
2828
|
+
'@smithy/eventstream-codec@4.2.8':
|
|
2829
|
+
dependencies:
|
|
2830
|
+
'@aws-crypto/crc32': 5.2.0
|
|
2831
|
+
'@smithy/types': 4.12.0
|
|
2832
|
+
'@smithy/util-hex-encoding': 4.2.0
|
|
2833
|
+
tslib: 2.8.1
|
|
2834
|
+
|
|
2835
|
+
'@smithy/eventstream-serde-browser@4.2.8':
|
|
2836
|
+
dependencies:
|
|
2837
|
+
'@smithy/eventstream-serde-universal': 4.2.8
|
|
2838
|
+
'@smithy/types': 4.12.0
|
|
2839
|
+
tslib: 2.8.1
|
|
2840
|
+
|
|
2841
|
+
'@smithy/eventstream-serde-config-resolver@4.3.8':
|
|
2842
|
+
dependencies:
|
|
2843
|
+
'@smithy/types': 4.12.0
|
|
2844
|
+
tslib: 2.8.1
|
|
2845
|
+
|
|
2846
|
+
'@smithy/eventstream-serde-node@4.2.8':
|
|
2847
|
+
dependencies:
|
|
2848
|
+
'@smithy/eventstream-serde-universal': 4.2.8
|
|
2849
|
+
'@smithy/types': 4.12.0
|
|
2850
|
+
tslib: 2.8.1
|
|
2851
|
+
|
|
2852
|
+
'@smithy/eventstream-serde-universal@4.2.8':
|
|
2853
|
+
dependencies:
|
|
2854
|
+
'@smithy/eventstream-codec': 4.2.8
|
|
2855
|
+
'@smithy/types': 4.12.0
|
|
2856
|
+
tslib: 2.8.1
|
|
2857
|
+
|
|
2858
|
+
'@smithy/fetch-http-handler@5.3.9':
|
|
2859
|
+
dependencies:
|
|
2860
|
+
'@smithy/protocol-http': 5.3.8
|
|
2861
|
+
'@smithy/querystring-builder': 4.2.8
|
|
2862
|
+
'@smithy/types': 4.12.0
|
|
2863
|
+
'@smithy/util-base64': 4.3.0
|
|
2864
|
+
tslib: 2.8.1
|
|
2865
|
+
|
|
2866
|
+
'@smithy/hash-blob-browser@4.2.9':
|
|
2867
|
+
dependencies:
|
|
2868
|
+
'@smithy/chunked-blob-reader': 5.2.0
|
|
2869
|
+
'@smithy/chunked-blob-reader-native': 4.2.1
|
|
2870
|
+
'@smithy/types': 4.12.0
|
|
2871
|
+
tslib: 2.8.1
|
|
2872
|
+
|
|
2873
|
+
'@smithy/hash-node@4.2.8':
|
|
2874
|
+
dependencies:
|
|
2875
|
+
'@smithy/types': 4.12.0
|
|
2876
|
+
'@smithy/util-buffer-from': 4.2.0
|
|
2877
|
+
'@smithy/util-utf8': 4.2.0
|
|
2878
|
+
tslib: 2.8.1
|
|
2879
|
+
|
|
2880
|
+
'@smithy/hash-stream-node@4.2.8':
|
|
2881
|
+
dependencies:
|
|
2882
|
+
'@smithy/types': 4.12.0
|
|
2883
|
+
'@smithy/util-utf8': 4.2.0
|
|
2884
|
+
tslib: 2.8.1
|
|
2885
|
+
|
|
2886
|
+
'@smithy/invalid-dependency@4.2.8':
|
|
2887
|
+
dependencies:
|
|
2888
|
+
'@smithy/types': 4.12.0
|
|
2889
|
+
tslib: 2.8.1
|
|
2890
|
+
|
|
2891
|
+
'@smithy/is-array-buffer@2.2.0':
|
|
2892
|
+
dependencies:
|
|
2893
|
+
tslib: 2.8.1
|
|
2894
|
+
|
|
2895
|
+
'@smithy/is-array-buffer@4.2.0':
|
|
2896
|
+
dependencies:
|
|
2897
|
+
tslib: 2.8.1
|
|
2898
|
+
|
|
2899
|
+
'@smithy/md5-js@4.2.8':
|
|
2900
|
+
dependencies:
|
|
2901
|
+
'@smithy/types': 4.12.0
|
|
2902
|
+
'@smithy/util-utf8': 4.2.0
|
|
2903
|
+
tslib: 2.8.1
|
|
2904
|
+
|
|
2905
|
+
'@smithy/middleware-content-length@4.2.8':
|
|
2906
|
+
dependencies:
|
|
2907
|
+
'@smithy/protocol-http': 5.3.8
|
|
2908
|
+
'@smithy/types': 4.12.0
|
|
2909
|
+
tslib: 2.8.1
|
|
2910
|
+
|
|
2911
|
+
'@smithy/middleware-endpoint@4.4.10':
|
|
2912
|
+
dependencies:
|
|
2913
|
+
'@smithy/core': 3.21.0
|
|
2914
|
+
'@smithy/middleware-serde': 4.2.9
|
|
2915
|
+
'@smithy/node-config-provider': 4.3.8
|
|
2916
|
+
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2917
|
+
'@smithy/types': 4.12.0
|
|
2918
|
+
'@smithy/url-parser': 4.2.8
|
|
2919
|
+
'@smithy/util-middleware': 4.2.8
|
|
2920
|
+
tslib: 2.8.1
|
|
2921
|
+
|
|
2922
|
+
'@smithy/middleware-retry@4.4.26':
|
|
2923
|
+
dependencies:
|
|
2924
|
+
'@smithy/node-config-provider': 4.3.8
|
|
2925
|
+
'@smithy/protocol-http': 5.3.8
|
|
2926
|
+
'@smithy/service-error-classification': 4.2.8
|
|
2927
|
+
'@smithy/smithy-client': 4.10.11
|
|
2928
|
+
'@smithy/types': 4.12.0
|
|
2929
|
+
'@smithy/util-middleware': 4.2.8
|
|
2930
|
+
'@smithy/util-retry': 4.2.8
|
|
2931
|
+
'@smithy/uuid': 1.1.0
|
|
2932
|
+
tslib: 2.8.1
|
|
2933
|
+
|
|
2934
|
+
'@smithy/middleware-serde@4.2.9':
|
|
2935
|
+
dependencies:
|
|
2936
|
+
'@smithy/protocol-http': 5.3.8
|
|
2937
|
+
'@smithy/types': 4.12.0
|
|
2938
|
+
tslib: 2.8.1
|
|
2939
|
+
|
|
2940
|
+
'@smithy/middleware-stack@4.2.8':
|
|
2941
|
+
dependencies:
|
|
2942
|
+
'@smithy/types': 4.12.0
|
|
2943
|
+
tslib: 2.8.1
|
|
2944
|
+
|
|
2945
|
+
'@smithy/node-config-provider@4.3.8':
|
|
2946
|
+
dependencies:
|
|
2947
|
+
'@smithy/property-provider': 4.2.8
|
|
2948
|
+
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2949
|
+
'@smithy/types': 4.12.0
|
|
2950
|
+
tslib: 2.8.1
|
|
2951
|
+
|
|
2952
|
+
'@smithy/node-http-handler@4.4.8':
|
|
2953
|
+
dependencies:
|
|
2954
|
+
'@smithy/abort-controller': 4.2.8
|
|
2955
|
+
'@smithy/protocol-http': 5.3.8
|
|
2956
|
+
'@smithy/querystring-builder': 4.2.8
|
|
2957
|
+
'@smithy/types': 4.12.0
|
|
2958
|
+
tslib: 2.8.1
|
|
2959
|
+
|
|
2960
|
+
'@smithy/property-provider@4.2.8':
|
|
2961
|
+
dependencies:
|
|
2962
|
+
'@smithy/types': 4.12.0
|
|
2963
|
+
tslib: 2.8.1
|
|
2964
|
+
|
|
2965
|
+
'@smithy/protocol-http@5.3.8':
|
|
2966
|
+
dependencies:
|
|
2967
|
+
'@smithy/types': 4.12.0
|
|
2968
|
+
tslib: 2.8.1
|
|
2969
|
+
|
|
2970
|
+
'@smithy/querystring-builder@4.2.8':
|
|
2971
|
+
dependencies:
|
|
2972
|
+
'@smithy/types': 4.12.0
|
|
2973
|
+
'@smithy/util-uri-escape': 4.2.0
|
|
2974
|
+
tslib: 2.8.1
|
|
2975
|
+
|
|
2976
|
+
'@smithy/querystring-parser@4.2.8':
|
|
2977
|
+
dependencies:
|
|
2978
|
+
'@smithy/types': 4.12.0
|
|
2979
|
+
tslib: 2.8.1
|
|
2980
|
+
|
|
2981
|
+
'@smithy/service-error-classification@4.2.8':
|
|
2982
|
+
dependencies:
|
|
2983
|
+
'@smithy/types': 4.12.0
|
|
2984
|
+
|
|
2985
|
+
'@smithy/shared-ini-file-loader@4.4.3':
|
|
2986
|
+
dependencies:
|
|
2987
|
+
'@smithy/types': 4.12.0
|
|
2988
|
+
tslib: 2.8.1
|
|
2989
|
+
|
|
2990
|
+
'@smithy/signature-v4@5.3.8':
|
|
2991
|
+
dependencies:
|
|
2992
|
+
'@smithy/is-array-buffer': 4.2.0
|
|
2993
|
+
'@smithy/protocol-http': 5.3.8
|
|
2994
|
+
'@smithy/types': 4.12.0
|
|
2995
|
+
'@smithy/util-hex-encoding': 4.2.0
|
|
2996
|
+
'@smithy/util-middleware': 4.2.8
|
|
2997
|
+
'@smithy/util-uri-escape': 4.2.0
|
|
2998
|
+
'@smithy/util-utf8': 4.2.0
|
|
2999
|
+
tslib: 2.8.1
|
|
3000
|
+
|
|
3001
|
+
'@smithy/smithy-client@4.10.11':
|
|
3002
|
+
dependencies:
|
|
3003
|
+
'@smithy/core': 3.21.0
|
|
3004
|
+
'@smithy/middleware-endpoint': 4.4.10
|
|
3005
|
+
'@smithy/middleware-stack': 4.2.8
|
|
3006
|
+
'@smithy/protocol-http': 5.3.8
|
|
3007
|
+
'@smithy/types': 4.12.0
|
|
3008
|
+
'@smithy/util-stream': 4.5.10
|
|
3009
|
+
tslib: 2.8.1
|
|
3010
|
+
|
|
3011
|
+
'@smithy/types@4.12.0':
|
|
3012
|
+
dependencies:
|
|
3013
|
+
tslib: 2.8.1
|
|
3014
|
+
|
|
3015
|
+
'@smithy/url-parser@4.2.8':
|
|
3016
|
+
dependencies:
|
|
3017
|
+
'@smithy/querystring-parser': 4.2.8
|
|
3018
|
+
'@smithy/types': 4.12.0
|
|
3019
|
+
tslib: 2.8.1
|
|
3020
|
+
|
|
3021
|
+
'@smithy/util-base64@4.3.0':
|
|
3022
|
+
dependencies:
|
|
3023
|
+
'@smithy/util-buffer-from': 4.2.0
|
|
3024
|
+
'@smithy/util-utf8': 4.2.0
|
|
3025
|
+
tslib: 2.8.1
|
|
3026
|
+
|
|
3027
|
+
'@smithy/util-body-length-browser@4.2.0':
|
|
3028
|
+
dependencies:
|
|
3029
|
+
tslib: 2.8.1
|
|
3030
|
+
|
|
3031
|
+
'@smithy/util-body-length-node@4.2.1':
|
|
3032
|
+
dependencies:
|
|
3033
|
+
tslib: 2.8.1
|
|
3034
|
+
|
|
3035
|
+
'@smithy/util-buffer-from@2.2.0':
|
|
3036
|
+
dependencies:
|
|
3037
|
+
'@smithy/is-array-buffer': 2.2.0
|
|
3038
|
+
tslib: 2.8.1
|
|
3039
|
+
|
|
3040
|
+
'@smithy/util-buffer-from@4.2.0':
|
|
3041
|
+
dependencies:
|
|
3042
|
+
'@smithy/is-array-buffer': 4.2.0
|
|
3043
|
+
tslib: 2.8.1
|
|
3044
|
+
|
|
3045
|
+
'@smithy/util-config-provider@4.2.0':
|
|
3046
|
+
dependencies:
|
|
3047
|
+
tslib: 2.8.1
|
|
3048
|
+
|
|
3049
|
+
'@smithy/util-defaults-mode-browser@4.3.25':
|
|
3050
|
+
dependencies:
|
|
3051
|
+
'@smithy/property-provider': 4.2.8
|
|
3052
|
+
'@smithy/smithy-client': 4.10.11
|
|
3053
|
+
'@smithy/types': 4.12.0
|
|
3054
|
+
tslib: 2.8.1
|
|
3055
|
+
|
|
3056
|
+
'@smithy/util-defaults-mode-node@4.2.28':
|
|
3057
|
+
dependencies:
|
|
3058
|
+
'@smithy/config-resolver': 4.4.6
|
|
3059
|
+
'@smithy/credential-provider-imds': 4.2.8
|
|
3060
|
+
'@smithy/node-config-provider': 4.3.8
|
|
3061
|
+
'@smithy/property-provider': 4.2.8
|
|
3062
|
+
'@smithy/smithy-client': 4.10.11
|
|
3063
|
+
'@smithy/types': 4.12.0
|
|
3064
|
+
tslib: 2.8.1
|
|
3065
|
+
|
|
3066
|
+
'@smithy/util-endpoints@3.2.8':
|
|
3067
|
+
dependencies:
|
|
3068
|
+
'@smithy/node-config-provider': 4.3.8
|
|
3069
|
+
'@smithy/types': 4.12.0
|
|
3070
|
+
tslib: 2.8.1
|
|
3071
|
+
|
|
3072
|
+
'@smithy/util-hex-encoding@4.2.0':
|
|
3073
|
+
dependencies:
|
|
3074
|
+
tslib: 2.8.1
|
|
3075
|
+
|
|
3076
|
+
'@smithy/util-middleware@4.2.8':
|
|
3077
|
+
dependencies:
|
|
3078
|
+
'@smithy/types': 4.12.0
|
|
3079
|
+
tslib: 2.8.1
|
|
3080
|
+
|
|
3081
|
+
'@smithy/util-retry@4.2.8':
|
|
3082
|
+
dependencies:
|
|
3083
|
+
'@smithy/service-error-classification': 4.2.8
|
|
3084
|
+
'@smithy/types': 4.12.0
|
|
3085
|
+
tslib: 2.8.1
|
|
3086
|
+
|
|
3087
|
+
'@smithy/util-stream@4.5.10':
|
|
3088
|
+
dependencies:
|
|
3089
|
+
'@smithy/fetch-http-handler': 5.3.9
|
|
3090
|
+
'@smithy/node-http-handler': 4.4.8
|
|
3091
|
+
'@smithy/types': 4.12.0
|
|
3092
|
+
'@smithy/util-base64': 4.3.0
|
|
3093
|
+
'@smithy/util-buffer-from': 4.2.0
|
|
3094
|
+
'@smithy/util-hex-encoding': 4.2.0
|
|
3095
|
+
'@smithy/util-utf8': 4.2.0
|
|
3096
|
+
tslib: 2.8.1
|
|
3097
|
+
|
|
3098
|
+
'@smithy/util-uri-escape@4.2.0':
|
|
3099
|
+
dependencies:
|
|
3100
|
+
tslib: 2.8.1
|
|
3101
|
+
|
|
3102
|
+
'@smithy/util-utf8@2.3.0':
|
|
3103
|
+
dependencies:
|
|
3104
|
+
'@smithy/util-buffer-from': 2.2.0
|
|
3105
|
+
tslib: 2.8.1
|
|
3106
|
+
|
|
3107
|
+
'@smithy/util-utf8@4.2.0':
|
|
3108
|
+
dependencies:
|
|
3109
|
+
'@smithy/util-buffer-from': 4.2.0
|
|
3110
|
+
tslib: 2.8.1
|
|
3111
|
+
|
|
3112
|
+
'@smithy/util-waiter@4.2.8':
|
|
3113
|
+
dependencies:
|
|
3114
|
+
'@smithy/abort-controller': 4.2.8
|
|
3115
|
+
'@smithy/types': 4.12.0
|
|
3116
|
+
tslib: 2.8.1
|
|
3117
|
+
|
|
3118
|
+
'@smithy/uuid@1.1.0':
|
|
3119
|
+
dependencies:
|
|
3120
|
+
tslib: 2.8.1
|
|
3121
|
+
|
|
3122
|
+
'@types/estree@1.0.8': {}
|
|
3123
|
+
|
|
3124
|
+
'@types/json-schema@7.0.15': {}
|
|
3125
|
+
|
|
3126
|
+
'@types/uuid@10.0.0': {}
|
|
3127
|
+
|
|
3128
|
+
'@typescript-eslint/eslint-plugin@8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
3129
|
+
dependencies:
|
|
3130
|
+
'@eslint-community/regexpp': 4.12.2
|
|
3131
|
+
'@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
3132
|
+
'@typescript-eslint/scope-manager': 8.53.1
|
|
3133
|
+
'@typescript-eslint/type-utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
3134
|
+
'@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
3135
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
3136
|
+
eslint: 9.39.2(jiti@1.21.7)
|
|
3137
|
+
ignore: 7.0.5
|
|
3138
|
+
natural-compare: 1.4.0
|
|
3139
|
+
ts-api-utils: 2.4.0(typescript@5.9.3)
|
|
3140
|
+
typescript: 5.9.3
|
|
3141
|
+
transitivePeerDependencies:
|
|
3142
|
+
- supports-color
|
|
3143
|
+
|
|
3144
|
+
'@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
3145
|
+
dependencies:
|
|
3146
|
+
'@typescript-eslint/scope-manager': 8.53.1
|
|
3147
|
+
'@typescript-eslint/types': 8.53.1
|
|
3148
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
3149
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
3150
|
+
debug: 4.4.3
|
|
3151
|
+
eslint: 9.39.2(jiti@1.21.7)
|
|
3152
|
+
typescript: 5.9.3
|
|
3153
|
+
transitivePeerDependencies:
|
|
3154
|
+
- supports-color
|
|
3155
|
+
|
|
3156
|
+
'@typescript-eslint/project-service@8.53.1(typescript@5.9.3)':
|
|
3157
|
+
dependencies:
|
|
3158
|
+
'@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.9.3)
|
|
3159
|
+
'@typescript-eslint/types': 8.53.1
|
|
3160
|
+
debug: 4.4.3
|
|
3161
|
+
typescript: 5.9.3
|
|
3162
|
+
transitivePeerDependencies:
|
|
3163
|
+
- supports-color
|
|
3164
|
+
|
|
3165
|
+
'@typescript-eslint/scope-manager@8.53.1':
|
|
3166
|
+
dependencies:
|
|
3167
|
+
'@typescript-eslint/types': 8.53.1
|
|
3168
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
3169
|
+
|
|
3170
|
+
'@typescript-eslint/tsconfig-utils@8.53.1(typescript@5.9.3)':
|
|
3171
|
+
dependencies:
|
|
3172
|
+
typescript: 5.9.3
|
|
3173
|
+
|
|
3174
|
+
'@typescript-eslint/type-utils@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
3175
|
+
dependencies:
|
|
3176
|
+
'@typescript-eslint/types': 8.53.1
|
|
3177
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
3178
|
+
'@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
3179
|
+
debug: 4.4.3
|
|
3180
|
+
eslint: 9.39.2(jiti@1.21.7)
|
|
3181
|
+
ts-api-utils: 2.4.0(typescript@5.9.3)
|
|
3182
|
+
typescript: 5.9.3
|
|
3183
|
+
transitivePeerDependencies:
|
|
3184
|
+
- supports-color
|
|
3185
|
+
|
|
3186
|
+
'@typescript-eslint/types@8.53.1': {}
|
|
3187
|
+
|
|
3188
|
+
'@typescript-eslint/typescript-estree@8.53.1(typescript@5.9.3)':
|
|
3189
|
+
dependencies:
|
|
3190
|
+
'@typescript-eslint/project-service': 8.53.1(typescript@5.9.3)
|
|
3191
|
+
'@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.9.3)
|
|
3192
|
+
'@typescript-eslint/types': 8.53.1
|
|
3193
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
3194
|
+
debug: 4.4.3
|
|
3195
|
+
minimatch: 9.0.5
|
|
3196
|
+
semver: 7.7.3
|
|
3197
|
+
tinyglobby: 0.2.15
|
|
3198
|
+
ts-api-utils: 2.4.0(typescript@5.9.3)
|
|
3199
|
+
typescript: 5.9.3
|
|
3200
|
+
transitivePeerDependencies:
|
|
3201
|
+
- supports-color
|
|
3202
|
+
|
|
3203
|
+
'@typescript-eslint/utils@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
3204
|
+
dependencies:
|
|
3205
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
|
|
3206
|
+
'@typescript-eslint/scope-manager': 8.53.1
|
|
3207
|
+
'@typescript-eslint/types': 8.53.1
|
|
3208
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
3209
|
+
eslint: 9.39.2(jiti@1.21.7)
|
|
3210
|
+
typescript: 5.9.3
|
|
3211
|
+
transitivePeerDependencies:
|
|
3212
|
+
- supports-color
|
|
3213
|
+
|
|
3214
|
+
'@typescript-eslint/visitor-keys@8.53.1':
|
|
3215
|
+
dependencies:
|
|
3216
|
+
'@typescript-eslint/types': 8.53.1
|
|
3217
|
+
eslint-visitor-keys: 4.2.1
|
|
3218
|
+
|
|
3219
|
+
acorn-jsx@5.3.2(acorn@8.15.0):
|
|
3220
|
+
dependencies:
|
|
3221
|
+
acorn: 8.15.0
|
|
873
3222
|
|
|
874
|
-
|
|
875
|
-
optional: true
|
|
3223
|
+
acorn@8.15.0: {}
|
|
876
3224
|
|
|
877
|
-
|
|
878
|
-
|
|
3225
|
+
ajv@6.12.6:
|
|
3226
|
+
dependencies:
|
|
3227
|
+
fast-deep-equal: 3.1.3
|
|
3228
|
+
fast-json-stable-stringify: 2.1.0
|
|
3229
|
+
json-schema-traverse: 0.4.1
|
|
3230
|
+
uri-js: 4.4.1
|
|
879
3231
|
|
|
880
|
-
|
|
881
|
-
optional: true
|
|
3232
|
+
ansi-regex@6.2.2: {}
|
|
882
3233
|
|
|
883
|
-
|
|
884
|
-
|
|
3234
|
+
ansi-styles@4.3.0:
|
|
3235
|
+
dependencies:
|
|
3236
|
+
color-convert: 2.0.1
|
|
885
3237
|
|
|
886
|
-
|
|
3238
|
+
ansi-styles@5.2.0: {}
|
|
887
3239
|
|
|
888
3240
|
any-promise@1.3.0: {}
|
|
889
3241
|
|
|
@@ -894,34 +3246,84 @@ snapshots:
|
|
|
894
3246
|
|
|
895
3247
|
arg@5.0.2: {}
|
|
896
3248
|
|
|
3249
|
+
argparse@2.0.1: {}
|
|
3250
|
+
|
|
3251
|
+
asynckit@0.4.0: {}
|
|
3252
|
+
|
|
897
3253
|
autoprefixer@10.4.23(postcss@8.5.6):
|
|
898
3254
|
dependencies:
|
|
899
3255
|
browserslist: 4.28.1
|
|
900
|
-
caniuse-lite: 1.0.
|
|
3256
|
+
caniuse-lite: 1.0.30001765
|
|
901
3257
|
fraction.js: 5.3.4
|
|
902
3258
|
picocolors: 1.1.1
|
|
903
3259
|
postcss: 8.5.6
|
|
904
3260
|
postcss-value-parser: 4.2.0
|
|
905
3261
|
|
|
906
|
-
|
|
3262
|
+
axios@1.13.2:
|
|
3263
|
+
dependencies:
|
|
3264
|
+
follow-redirects: 1.15.11
|
|
3265
|
+
form-data: 4.0.5
|
|
3266
|
+
proxy-from-env: 1.1.0
|
|
3267
|
+
transitivePeerDependencies:
|
|
3268
|
+
- debug
|
|
3269
|
+
|
|
3270
|
+
balanced-match@1.0.2: {}
|
|
3271
|
+
|
|
3272
|
+
base64-js@1.5.1: {}
|
|
3273
|
+
|
|
3274
|
+
baseline-browser-mapping@2.9.16: {}
|
|
907
3275
|
|
|
908
3276
|
binary-extensions@2.3.0: {}
|
|
909
3277
|
|
|
3278
|
+
bowser@2.13.1: {}
|
|
3279
|
+
|
|
3280
|
+
brace-expansion@1.1.12:
|
|
3281
|
+
dependencies:
|
|
3282
|
+
balanced-match: 1.0.2
|
|
3283
|
+
concat-map: 0.0.1
|
|
3284
|
+
|
|
3285
|
+
brace-expansion@2.0.2:
|
|
3286
|
+
dependencies:
|
|
3287
|
+
balanced-match: 1.0.2
|
|
3288
|
+
|
|
910
3289
|
braces@3.0.3:
|
|
911
3290
|
dependencies:
|
|
912
3291
|
fill-range: 7.1.1
|
|
913
3292
|
|
|
914
3293
|
browserslist@4.28.1:
|
|
915
3294
|
dependencies:
|
|
916
|
-
baseline-browser-mapping: 2.9.
|
|
917
|
-
caniuse-lite: 1.0.
|
|
3295
|
+
baseline-browser-mapping: 2.9.16
|
|
3296
|
+
caniuse-lite: 1.0.30001765
|
|
918
3297
|
electron-to-chromium: 1.5.267
|
|
919
3298
|
node-releases: 2.0.27
|
|
920
3299
|
update-browserslist-db: 1.2.3(browserslist@4.28.1)
|
|
921
3300
|
|
|
3301
|
+
buffer-from@1.1.2: {}
|
|
3302
|
+
|
|
3303
|
+
buffer@5.6.0:
|
|
3304
|
+
dependencies:
|
|
3305
|
+
base64-js: 1.5.1
|
|
3306
|
+
ieee754: 1.2.1
|
|
3307
|
+
|
|
3308
|
+
call-bind-apply-helpers@1.0.2:
|
|
3309
|
+
dependencies:
|
|
3310
|
+
es-errors: 1.3.0
|
|
3311
|
+
function-bind: 1.1.2
|
|
3312
|
+
|
|
3313
|
+
callsites@3.1.0: {}
|
|
3314
|
+
|
|
922
3315
|
camelcase-css@2.0.1: {}
|
|
923
3316
|
|
|
924
|
-
|
|
3317
|
+
camelcase@6.3.0: {}
|
|
3318
|
+
|
|
3319
|
+
caniuse-lite@1.0.30001765: {}
|
|
3320
|
+
|
|
3321
|
+
chalk@4.1.2:
|
|
3322
|
+
dependencies:
|
|
3323
|
+
ansi-styles: 4.3.0
|
|
3324
|
+
supports-color: 7.2.0
|
|
3325
|
+
|
|
3326
|
+
chalk@5.6.2: {}
|
|
925
3327
|
|
|
926
3328
|
chokidar@3.6.0:
|
|
927
3329
|
dependencies:
|
|
@@ -935,47 +3337,256 @@ snapshots:
|
|
|
935
3337
|
optionalDependencies:
|
|
936
3338
|
fsevents: 2.3.3
|
|
937
3339
|
|
|
3340
|
+
cli-cursor@5.0.0:
|
|
3341
|
+
dependencies:
|
|
3342
|
+
restore-cursor: 5.1.0
|
|
3343
|
+
|
|
3344
|
+
cli-spinners@3.4.0: {}
|
|
3345
|
+
|
|
3346
|
+
color-convert@2.0.1:
|
|
3347
|
+
dependencies:
|
|
3348
|
+
color-name: 1.1.4
|
|
3349
|
+
|
|
3350
|
+
color-name@1.1.4: {}
|
|
3351
|
+
|
|
3352
|
+
combined-stream@1.0.8:
|
|
3353
|
+
dependencies:
|
|
3354
|
+
delayed-stream: 1.0.0
|
|
3355
|
+
|
|
3356
|
+
commander@14.0.2: {}
|
|
3357
|
+
|
|
938
3358
|
commander@4.1.1: {}
|
|
939
3359
|
|
|
3360
|
+
concat-map@0.0.1: {}
|
|
3361
|
+
|
|
3362
|
+
console-table-printer@2.15.0:
|
|
3363
|
+
dependencies:
|
|
3364
|
+
simple-wcswidth: 1.1.2
|
|
3365
|
+
|
|
3366
|
+
coze-coding-dev-sdk@0.7.3(openai@6.16.0(zod@4.3.5)):
|
|
3367
|
+
dependencies:
|
|
3368
|
+
'@aws-sdk/client-s3': 3.972.0
|
|
3369
|
+
'@aws-sdk/lib-storage': 3.972.0(@aws-sdk/client-s3@3.972.0)
|
|
3370
|
+
'@langchain/core': 1.1.16(openai@6.16.0(zod@4.3.5))
|
|
3371
|
+
'@langchain/openai': 1.2.3(@langchain/core@1.1.16(openai@6.16.0(zod@4.3.5)))
|
|
3372
|
+
axios: 1.13.2
|
|
3373
|
+
chalk: 5.6.2
|
|
3374
|
+
commander: 14.0.2
|
|
3375
|
+
drizzle-kit: 0.31.8
|
|
3376
|
+
drizzle-orm: 0.45.1(pg@8.17.2)
|
|
3377
|
+
ora: 9.1.0
|
|
3378
|
+
pg: 8.17.2
|
|
3379
|
+
transliteration: 2.6.1
|
|
3380
|
+
transitivePeerDependencies:
|
|
3381
|
+
- '@aws-sdk/client-rds-data'
|
|
3382
|
+
- '@cloudflare/workers-types'
|
|
3383
|
+
- '@electric-sql/pglite'
|
|
3384
|
+
- '@libsql/client'
|
|
3385
|
+
- '@libsql/client-wasm'
|
|
3386
|
+
- '@neondatabase/serverless'
|
|
3387
|
+
- '@op-engineering/op-sqlite'
|
|
3388
|
+
- '@opentelemetry/api'
|
|
3389
|
+
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
3390
|
+
- '@opentelemetry/sdk-trace-base'
|
|
3391
|
+
- '@planetscale/database'
|
|
3392
|
+
- '@prisma/client'
|
|
3393
|
+
- '@tidbcloud/serverless'
|
|
3394
|
+
- '@types/better-sqlite3'
|
|
3395
|
+
- '@types/pg'
|
|
3396
|
+
- '@types/sql.js'
|
|
3397
|
+
- '@upstash/redis'
|
|
3398
|
+
- '@vercel/postgres'
|
|
3399
|
+
- '@xata.io/client'
|
|
3400
|
+
- aws-crt
|
|
3401
|
+
- better-sqlite3
|
|
3402
|
+
- bun-types
|
|
3403
|
+
- debug
|
|
3404
|
+
- expo-sqlite
|
|
3405
|
+
- gel
|
|
3406
|
+
- knex
|
|
3407
|
+
- kysely
|
|
3408
|
+
- mysql2
|
|
3409
|
+
- openai
|
|
3410
|
+
- pg-native
|
|
3411
|
+
- postgres
|
|
3412
|
+
- prisma
|
|
3413
|
+
- sql.js
|
|
3414
|
+
- sqlite3
|
|
3415
|
+
- supports-color
|
|
3416
|
+
- ws
|
|
3417
|
+
|
|
3418
|
+
cross-spawn@7.0.6:
|
|
3419
|
+
dependencies:
|
|
3420
|
+
path-key: 3.1.1
|
|
3421
|
+
shebang-command: 2.0.0
|
|
3422
|
+
which: 2.0.2
|
|
3423
|
+
|
|
940
3424
|
cssesc@3.0.0: {}
|
|
941
3425
|
|
|
3426
|
+
debug@4.4.3:
|
|
3427
|
+
dependencies:
|
|
3428
|
+
ms: 2.1.3
|
|
3429
|
+
|
|
3430
|
+
decamelize@1.2.0: {}
|
|
3431
|
+
|
|
3432
|
+
deep-is@0.1.4: {}
|
|
3433
|
+
|
|
3434
|
+
delayed-stream@1.0.0: {}
|
|
3435
|
+
|
|
942
3436
|
didyoumean@1.2.2: {}
|
|
943
3437
|
|
|
944
3438
|
dlv@1.1.3: {}
|
|
945
3439
|
|
|
3440
|
+
drizzle-kit@0.31.8:
|
|
3441
|
+
dependencies:
|
|
3442
|
+
'@drizzle-team/brocli': 0.10.2
|
|
3443
|
+
'@esbuild-kit/esm-loader': 2.6.5
|
|
3444
|
+
esbuild: 0.27.2
|
|
3445
|
+
esbuild-register: 3.6.0(esbuild@0.27.2)
|
|
3446
|
+
transitivePeerDependencies:
|
|
3447
|
+
- supports-color
|
|
3448
|
+
|
|
3449
|
+
drizzle-orm@0.45.1(pg@8.17.2):
|
|
3450
|
+
optionalDependencies:
|
|
3451
|
+
pg: 8.17.2
|
|
3452
|
+
|
|
3453
|
+
dunder-proto@1.0.1:
|
|
3454
|
+
dependencies:
|
|
3455
|
+
call-bind-apply-helpers: 1.0.2
|
|
3456
|
+
es-errors: 1.3.0
|
|
3457
|
+
gopd: 1.2.0
|
|
3458
|
+
|
|
946
3459
|
electron-to-chromium@1.5.267: {}
|
|
947
3460
|
|
|
948
|
-
|
|
3461
|
+
es-define-property@1.0.1: {}
|
|
3462
|
+
|
|
3463
|
+
es-errors@1.3.0: {}
|
|
3464
|
+
|
|
3465
|
+
es-object-atoms@1.1.1:
|
|
3466
|
+
dependencies:
|
|
3467
|
+
es-errors: 1.3.0
|
|
3468
|
+
|
|
3469
|
+
es-set-tostringtag@2.1.0:
|
|
3470
|
+
dependencies:
|
|
3471
|
+
es-errors: 1.3.0
|
|
3472
|
+
get-intrinsic: 1.3.0
|
|
3473
|
+
has-tostringtag: 1.0.2
|
|
3474
|
+
hasown: 2.0.2
|
|
3475
|
+
|
|
3476
|
+
esbuild-register@3.6.0(esbuild@0.27.2):
|
|
3477
|
+
dependencies:
|
|
3478
|
+
debug: 4.4.3
|
|
3479
|
+
esbuild: 0.27.2
|
|
3480
|
+
transitivePeerDependencies:
|
|
3481
|
+
- supports-color
|
|
3482
|
+
|
|
3483
|
+
esbuild@0.27.2:
|
|
949
3484
|
optionalDependencies:
|
|
950
|
-
'@esbuild/aix-ppc64': 0.
|
|
951
|
-
'@esbuild/android-arm': 0.
|
|
952
|
-
'@esbuild/android-arm64': 0.
|
|
953
|
-
'@esbuild/android-x64': 0.
|
|
954
|
-
'@esbuild/darwin-arm64': 0.
|
|
955
|
-
'@esbuild/darwin-x64': 0.
|
|
956
|
-
'@esbuild/freebsd-arm64': 0.
|
|
957
|
-
'@esbuild/freebsd-x64': 0.
|
|
958
|
-
'@esbuild/linux-arm': 0.
|
|
959
|
-
'@esbuild/linux-arm64': 0.
|
|
960
|
-
'@esbuild/linux-ia32': 0.
|
|
961
|
-
'@esbuild/linux-loong64': 0.
|
|
962
|
-
'@esbuild/linux-mips64el': 0.
|
|
963
|
-
'@esbuild/linux-ppc64': 0.
|
|
964
|
-
'@esbuild/linux-riscv64': 0.
|
|
965
|
-
'@esbuild/linux-s390x': 0.
|
|
966
|
-
'@esbuild/linux-x64': 0.
|
|
967
|
-
'@esbuild/netbsd-arm64': 0.
|
|
968
|
-
'@esbuild/netbsd-x64': 0.
|
|
969
|
-
'@esbuild/openbsd-arm64': 0.
|
|
970
|
-
'@esbuild/openbsd-x64': 0.
|
|
971
|
-
'@esbuild/openharmony-arm64': 0.
|
|
972
|
-
'@esbuild/sunos-x64': 0.
|
|
973
|
-
'@esbuild/win32-arm64': 0.
|
|
974
|
-
'@esbuild/win32-ia32': 0.
|
|
975
|
-
'@esbuild/win32-x64': 0.
|
|
3485
|
+
'@esbuild/aix-ppc64': 0.27.2
|
|
3486
|
+
'@esbuild/android-arm': 0.27.2
|
|
3487
|
+
'@esbuild/android-arm64': 0.27.2
|
|
3488
|
+
'@esbuild/android-x64': 0.27.2
|
|
3489
|
+
'@esbuild/darwin-arm64': 0.27.2
|
|
3490
|
+
'@esbuild/darwin-x64': 0.27.2
|
|
3491
|
+
'@esbuild/freebsd-arm64': 0.27.2
|
|
3492
|
+
'@esbuild/freebsd-x64': 0.27.2
|
|
3493
|
+
'@esbuild/linux-arm': 0.27.2
|
|
3494
|
+
'@esbuild/linux-arm64': 0.27.2
|
|
3495
|
+
'@esbuild/linux-ia32': 0.27.2
|
|
3496
|
+
'@esbuild/linux-loong64': 0.27.2
|
|
3497
|
+
'@esbuild/linux-mips64el': 0.27.2
|
|
3498
|
+
'@esbuild/linux-ppc64': 0.27.2
|
|
3499
|
+
'@esbuild/linux-riscv64': 0.27.2
|
|
3500
|
+
'@esbuild/linux-s390x': 0.27.2
|
|
3501
|
+
'@esbuild/linux-x64': 0.27.2
|
|
3502
|
+
'@esbuild/netbsd-arm64': 0.27.2
|
|
3503
|
+
'@esbuild/netbsd-x64': 0.27.2
|
|
3504
|
+
'@esbuild/openbsd-arm64': 0.27.2
|
|
3505
|
+
'@esbuild/openbsd-x64': 0.27.2
|
|
3506
|
+
'@esbuild/openharmony-arm64': 0.27.2
|
|
3507
|
+
'@esbuild/sunos-x64': 0.27.2
|
|
3508
|
+
'@esbuild/win32-arm64': 0.27.2
|
|
3509
|
+
'@esbuild/win32-ia32': 0.27.2
|
|
3510
|
+
'@esbuild/win32-x64': 0.27.2
|
|
976
3511
|
|
|
977
3512
|
escalade@3.2.0: {}
|
|
978
3513
|
|
|
3514
|
+
escape-string-regexp@4.0.0: {}
|
|
3515
|
+
|
|
3516
|
+
eslint-scope@8.4.0:
|
|
3517
|
+
dependencies:
|
|
3518
|
+
esrecurse: 4.3.0
|
|
3519
|
+
estraverse: 5.3.0
|
|
3520
|
+
|
|
3521
|
+
eslint-visitor-keys@3.4.3: {}
|
|
3522
|
+
|
|
3523
|
+
eslint-visitor-keys@4.2.1: {}
|
|
3524
|
+
|
|
3525
|
+
eslint@9.39.2(jiti@1.21.7):
|
|
3526
|
+
dependencies:
|
|
3527
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
|
|
3528
|
+
'@eslint-community/regexpp': 4.12.2
|
|
3529
|
+
'@eslint/config-array': 0.21.1
|
|
3530
|
+
'@eslint/config-helpers': 0.4.2
|
|
3531
|
+
'@eslint/core': 0.17.0
|
|
3532
|
+
'@eslint/eslintrc': 3.3.3
|
|
3533
|
+
'@eslint/js': 9.39.2
|
|
3534
|
+
'@eslint/plugin-kit': 0.4.1
|
|
3535
|
+
'@humanfs/node': 0.16.7
|
|
3536
|
+
'@humanwhocodes/module-importer': 1.0.1
|
|
3537
|
+
'@humanwhocodes/retry': 0.4.3
|
|
3538
|
+
'@types/estree': 1.0.8
|
|
3539
|
+
ajv: 6.12.6
|
|
3540
|
+
chalk: 4.1.2
|
|
3541
|
+
cross-spawn: 7.0.6
|
|
3542
|
+
debug: 4.4.3
|
|
3543
|
+
escape-string-regexp: 4.0.0
|
|
3544
|
+
eslint-scope: 8.4.0
|
|
3545
|
+
eslint-visitor-keys: 4.2.1
|
|
3546
|
+
espree: 10.4.0
|
|
3547
|
+
esquery: 1.7.0
|
|
3548
|
+
esutils: 2.0.3
|
|
3549
|
+
fast-deep-equal: 3.1.3
|
|
3550
|
+
file-entry-cache: 8.0.0
|
|
3551
|
+
find-up: 5.0.0
|
|
3552
|
+
glob-parent: 6.0.2
|
|
3553
|
+
ignore: 5.3.2
|
|
3554
|
+
imurmurhash: 0.1.4
|
|
3555
|
+
is-glob: 4.0.3
|
|
3556
|
+
json-stable-stringify-without-jsonify: 1.0.1
|
|
3557
|
+
lodash.merge: 4.6.2
|
|
3558
|
+
minimatch: 3.1.2
|
|
3559
|
+
natural-compare: 1.4.0
|
|
3560
|
+
optionator: 0.9.4
|
|
3561
|
+
optionalDependencies:
|
|
3562
|
+
jiti: 1.21.7
|
|
3563
|
+
transitivePeerDependencies:
|
|
3564
|
+
- supports-color
|
|
3565
|
+
|
|
3566
|
+
espree@10.4.0:
|
|
3567
|
+
dependencies:
|
|
3568
|
+
acorn: 8.15.0
|
|
3569
|
+
acorn-jsx: 5.3.2(acorn@8.15.0)
|
|
3570
|
+
eslint-visitor-keys: 4.2.1
|
|
3571
|
+
|
|
3572
|
+
esquery@1.7.0:
|
|
3573
|
+
dependencies:
|
|
3574
|
+
estraverse: 5.3.0
|
|
3575
|
+
|
|
3576
|
+
esrecurse@4.3.0:
|
|
3577
|
+
dependencies:
|
|
3578
|
+
estraverse: 5.3.0
|
|
3579
|
+
|
|
3580
|
+
estraverse@5.3.0: {}
|
|
3581
|
+
|
|
3582
|
+
esutils@2.0.3: {}
|
|
3583
|
+
|
|
3584
|
+
eventemitter3@4.0.7: {}
|
|
3585
|
+
|
|
3586
|
+
events@3.3.0: {}
|
|
3587
|
+
|
|
3588
|
+
fast-deep-equal@3.1.3: {}
|
|
3589
|
+
|
|
979
3590
|
fast-glob@3.3.3:
|
|
980
3591
|
dependencies:
|
|
981
3592
|
'@nodelib/fs.stat': 2.0.5
|
|
@@ -984,6 +3595,14 @@ snapshots:
|
|
|
984
3595
|
merge2: 1.4.1
|
|
985
3596
|
micromatch: 4.0.8
|
|
986
3597
|
|
|
3598
|
+
fast-json-stable-stringify@2.1.0: {}
|
|
3599
|
+
|
|
3600
|
+
fast-levenshtein@2.0.6: {}
|
|
3601
|
+
|
|
3602
|
+
fast-xml-parser@5.2.5:
|
|
3603
|
+
dependencies:
|
|
3604
|
+
strnum: 2.1.2
|
|
3605
|
+
|
|
987
3606
|
fastq@1.20.1:
|
|
988
3607
|
dependencies:
|
|
989
3608
|
reusify: 1.1.0
|
|
@@ -992,10 +3611,36 @@ snapshots:
|
|
|
992
3611
|
optionalDependencies:
|
|
993
3612
|
picomatch: 4.0.3
|
|
994
3613
|
|
|
3614
|
+
file-entry-cache@8.0.0:
|
|
3615
|
+
dependencies:
|
|
3616
|
+
flat-cache: 4.0.1
|
|
3617
|
+
|
|
995
3618
|
fill-range@7.1.1:
|
|
996
3619
|
dependencies:
|
|
997
3620
|
to-regex-range: 5.0.1
|
|
998
3621
|
|
|
3622
|
+
find-up@5.0.0:
|
|
3623
|
+
dependencies:
|
|
3624
|
+
locate-path: 6.0.0
|
|
3625
|
+
path-exists: 4.0.0
|
|
3626
|
+
|
|
3627
|
+
flat-cache@4.0.1:
|
|
3628
|
+
dependencies:
|
|
3629
|
+
flatted: 3.3.3
|
|
3630
|
+
keyv: 4.5.4
|
|
3631
|
+
|
|
3632
|
+
flatted@3.3.3: {}
|
|
3633
|
+
|
|
3634
|
+
follow-redirects@1.15.11: {}
|
|
3635
|
+
|
|
3636
|
+
form-data@4.0.5:
|
|
3637
|
+
dependencies:
|
|
3638
|
+
asynckit: 0.4.0
|
|
3639
|
+
combined-stream: 1.0.8
|
|
3640
|
+
es-set-tostringtag: 2.1.0
|
|
3641
|
+
hasown: 2.0.2
|
|
3642
|
+
mime-types: 2.1.35
|
|
3643
|
+
|
|
999
3644
|
fraction.js@5.3.4: {}
|
|
1000
3645
|
|
|
1001
3646
|
fsevents@2.3.3:
|
|
@@ -1003,6 +3648,30 @@ snapshots:
|
|
|
1003
3648
|
|
|
1004
3649
|
function-bind@1.1.2: {}
|
|
1005
3650
|
|
|
3651
|
+
get-east-asian-width@1.4.0: {}
|
|
3652
|
+
|
|
3653
|
+
get-intrinsic@1.3.0:
|
|
3654
|
+
dependencies:
|
|
3655
|
+
call-bind-apply-helpers: 1.0.2
|
|
3656
|
+
es-define-property: 1.0.1
|
|
3657
|
+
es-errors: 1.3.0
|
|
3658
|
+
es-object-atoms: 1.1.1
|
|
3659
|
+
function-bind: 1.1.2
|
|
3660
|
+
get-proto: 1.0.1
|
|
3661
|
+
gopd: 1.2.0
|
|
3662
|
+
has-symbols: 1.1.0
|
|
3663
|
+
hasown: 2.0.2
|
|
3664
|
+
math-intrinsics: 1.1.0
|
|
3665
|
+
|
|
3666
|
+
get-proto@1.0.1:
|
|
3667
|
+
dependencies:
|
|
3668
|
+
dunder-proto: 1.0.1
|
|
3669
|
+
es-object-atoms: 1.1.1
|
|
3670
|
+
|
|
3671
|
+
get-tsconfig@4.13.0:
|
|
3672
|
+
dependencies:
|
|
3673
|
+
resolve-pkg-maps: 1.0.0
|
|
3674
|
+
|
|
1006
3675
|
glob-parent@5.1.2:
|
|
1007
3676
|
dependencies:
|
|
1008
3677
|
is-glob: 4.0.3
|
|
@@ -1011,10 +3680,37 @@ snapshots:
|
|
|
1011
3680
|
dependencies:
|
|
1012
3681
|
is-glob: 4.0.3
|
|
1013
3682
|
|
|
3683
|
+
globals@14.0.0: {}
|
|
3684
|
+
|
|
3685
|
+
gopd@1.2.0: {}
|
|
3686
|
+
|
|
3687
|
+
has-flag@4.0.0: {}
|
|
3688
|
+
|
|
3689
|
+
has-symbols@1.1.0: {}
|
|
3690
|
+
|
|
3691
|
+
has-tostringtag@1.0.2:
|
|
3692
|
+
dependencies:
|
|
3693
|
+
has-symbols: 1.1.0
|
|
3694
|
+
|
|
1014
3695
|
hasown@2.0.2:
|
|
1015
3696
|
dependencies:
|
|
1016
3697
|
function-bind: 1.1.2
|
|
1017
3698
|
|
|
3699
|
+
ieee754@1.2.1: {}
|
|
3700
|
+
|
|
3701
|
+
ignore@5.3.2: {}
|
|
3702
|
+
|
|
3703
|
+
ignore@7.0.5: {}
|
|
3704
|
+
|
|
3705
|
+
import-fresh@3.3.1:
|
|
3706
|
+
dependencies:
|
|
3707
|
+
parent-module: 1.0.1
|
|
3708
|
+
resolve-from: 4.0.0
|
|
3709
|
+
|
|
3710
|
+
imurmurhash@0.1.4: {}
|
|
3711
|
+
|
|
3712
|
+
inherits@2.0.4: {}
|
|
3713
|
+
|
|
1018
3714
|
is-binary-path@2.1.0:
|
|
1019
3715
|
dependencies:
|
|
1020
3716
|
binary-extensions: 2.3.0
|
|
@@ -1029,14 +3725,67 @@ snapshots:
|
|
|
1029
3725
|
dependencies:
|
|
1030
3726
|
is-extglob: 2.1.1
|
|
1031
3727
|
|
|
3728
|
+
is-interactive@2.0.0: {}
|
|
3729
|
+
|
|
1032
3730
|
is-number@7.0.0: {}
|
|
1033
3731
|
|
|
3732
|
+
is-unicode-supported@2.1.0: {}
|
|
3733
|
+
|
|
3734
|
+
isexe@2.0.0: {}
|
|
3735
|
+
|
|
1034
3736
|
jiti@1.21.7: {}
|
|
1035
3737
|
|
|
3738
|
+
js-tiktoken@1.0.21:
|
|
3739
|
+
dependencies:
|
|
3740
|
+
base64-js: 1.5.1
|
|
3741
|
+
|
|
3742
|
+
js-yaml@4.1.1:
|
|
3743
|
+
dependencies:
|
|
3744
|
+
argparse: 2.0.1
|
|
3745
|
+
|
|
3746
|
+
json-buffer@3.0.1: {}
|
|
3747
|
+
|
|
3748
|
+
json-schema-traverse@0.4.1: {}
|
|
3749
|
+
|
|
3750
|
+
json-stable-stringify-without-jsonify@1.0.1: {}
|
|
3751
|
+
|
|
3752
|
+
keyv@4.5.4:
|
|
3753
|
+
dependencies:
|
|
3754
|
+
json-buffer: 3.0.1
|
|
3755
|
+
|
|
3756
|
+
langsmith@0.4.7(openai@6.16.0(zod@4.3.5)):
|
|
3757
|
+
dependencies:
|
|
3758
|
+
'@types/uuid': 10.0.0
|
|
3759
|
+
chalk: 4.1.2
|
|
3760
|
+
console-table-printer: 2.15.0
|
|
3761
|
+
p-queue: 6.6.2
|
|
3762
|
+
semver: 7.7.3
|
|
3763
|
+
uuid: 10.0.0
|
|
3764
|
+
optionalDependencies:
|
|
3765
|
+
openai: 6.16.0(zod@4.3.5)
|
|
3766
|
+
|
|
3767
|
+
levn@0.4.1:
|
|
3768
|
+
dependencies:
|
|
3769
|
+
prelude-ls: 1.2.1
|
|
3770
|
+
type-check: 0.4.0
|
|
3771
|
+
|
|
1036
3772
|
lilconfig@3.1.3: {}
|
|
1037
3773
|
|
|
1038
3774
|
lines-and-columns@1.2.4: {}
|
|
1039
3775
|
|
|
3776
|
+
locate-path@6.0.0:
|
|
3777
|
+
dependencies:
|
|
3778
|
+
p-locate: 5.0.0
|
|
3779
|
+
|
|
3780
|
+
lodash.merge@4.6.2: {}
|
|
3781
|
+
|
|
3782
|
+
log-symbols@7.0.1:
|
|
3783
|
+
dependencies:
|
|
3784
|
+
is-unicode-supported: 2.1.0
|
|
3785
|
+
yoctocolors: 2.1.2
|
|
3786
|
+
|
|
3787
|
+
math-intrinsics@1.1.0: {}
|
|
3788
|
+
|
|
1040
3789
|
merge2@1.4.1: {}
|
|
1041
3790
|
|
|
1042
3791
|
micromatch@4.0.8:
|
|
@@ -1044,6 +3793,26 @@ snapshots:
|
|
|
1044
3793
|
braces: 3.0.3
|
|
1045
3794
|
picomatch: 2.3.1
|
|
1046
3795
|
|
|
3796
|
+
mime-db@1.52.0: {}
|
|
3797
|
+
|
|
3798
|
+
mime-types@2.1.35:
|
|
3799
|
+
dependencies:
|
|
3800
|
+
mime-db: 1.52.0
|
|
3801
|
+
|
|
3802
|
+
mimic-function@5.0.1: {}
|
|
3803
|
+
|
|
3804
|
+
minimatch@3.1.2:
|
|
3805
|
+
dependencies:
|
|
3806
|
+
brace-expansion: 1.1.12
|
|
3807
|
+
|
|
3808
|
+
minimatch@9.0.5:
|
|
3809
|
+
dependencies:
|
|
3810
|
+
brace-expansion: 2.0.2
|
|
3811
|
+
|
|
3812
|
+
ms@2.1.3: {}
|
|
3813
|
+
|
|
3814
|
+
mustache@4.2.0: {}
|
|
3815
|
+
|
|
1047
3816
|
mz@2.7.0:
|
|
1048
3817
|
dependencies:
|
|
1049
3818
|
any-promise: 1.3.0
|
|
@@ -1052,6 +3821,8 @@ snapshots:
|
|
|
1052
3821
|
|
|
1053
3822
|
nanoid@3.3.11: {}
|
|
1054
3823
|
|
|
3824
|
+
natural-compare@1.4.0: {}
|
|
3825
|
+
|
|
1055
3826
|
node-releases@2.0.27: {}
|
|
1056
3827
|
|
|
1057
3828
|
normalize-path@3.0.0: {}
|
|
@@ -1060,12 +3831,102 @@ snapshots:
|
|
|
1060
3831
|
|
|
1061
3832
|
object-hash@3.0.0: {}
|
|
1062
3833
|
|
|
3834
|
+
onetime@7.0.0:
|
|
3835
|
+
dependencies:
|
|
3836
|
+
mimic-function: 5.0.1
|
|
3837
|
+
|
|
1063
3838
|
only-allow@1.2.2:
|
|
1064
3839
|
dependencies:
|
|
1065
3840
|
which-pm-runs: 1.1.0
|
|
1066
3841
|
|
|
3842
|
+
openai@6.16.0(zod@4.3.5):
|
|
3843
|
+
optionalDependencies:
|
|
3844
|
+
zod: 4.3.5
|
|
3845
|
+
|
|
3846
|
+
optionator@0.9.4:
|
|
3847
|
+
dependencies:
|
|
3848
|
+
deep-is: 0.1.4
|
|
3849
|
+
fast-levenshtein: 2.0.6
|
|
3850
|
+
levn: 0.4.1
|
|
3851
|
+
prelude-ls: 1.2.1
|
|
3852
|
+
type-check: 0.4.0
|
|
3853
|
+
word-wrap: 1.2.5
|
|
3854
|
+
|
|
3855
|
+
ora@9.1.0:
|
|
3856
|
+
dependencies:
|
|
3857
|
+
chalk: 5.6.2
|
|
3858
|
+
cli-cursor: 5.0.0
|
|
3859
|
+
cli-spinners: 3.4.0
|
|
3860
|
+
is-interactive: 2.0.0
|
|
3861
|
+
is-unicode-supported: 2.1.0
|
|
3862
|
+
log-symbols: 7.0.1
|
|
3863
|
+
stdin-discarder: 0.2.2
|
|
3864
|
+
string-width: 8.1.0
|
|
3865
|
+
|
|
3866
|
+
p-finally@1.0.0: {}
|
|
3867
|
+
|
|
3868
|
+
p-limit@3.1.0:
|
|
3869
|
+
dependencies:
|
|
3870
|
+
yocto-queue: 0.1.0
|
|
3871
|
+
|
|
3872
|
+
p-locate@5.0.0:
|
|
3873
|
+
dependencies:
|
|
3874
|
+
p-limit: 3.1.0
|
|
3875
|
+
|
|
3876
|
+
p-queue@6.6.2:
|
|
3877
|
+
dependencies:
|
|
3878
|
+
eventemitter3: 4.0.7
|
|
3879
|
+
p-timeout: 3.2.0
|
|
3880
|
+
|
|
3881
|
+
p-timeout@3.2.0:
|
|
3882
|
+
dependencies:
|
|
3883
|
+
p-finally: 1.0.0
|
|
3884
|
+
|
|
3885
|
+
parent-module@1.0.1:
|
|
3886
|
+
dependencies:
|
|
3887
|
+
callsites: 3.1.0
|
|
3888
|
+
|
|
3889
|
+
path-exists@4.0.0: {}
|
|
3890
|
+
|
|
3891
|
+
path-key@3.1.1: {}
|
|
3892
|
+
|
|
1067
3893
|
path-parse@1.0.7: {}
|
|
1068
3894
|
|
|
3895
|
+
pg-cloudflare@1.3.0:
|
|
3896
|
+
optional: true
|
|
3897
|
+
|
|
3898
|
+
pg-connection-string@2.10.1: {}
|
|
3899
|
+
|
|
3900
|
+
pg-int8@1.0.1: {}
|
|
3901
|
+
|
|
3902
|
+
pg-pool@3.11.0(pg@8.17.2):
|
|
3903
|
+
dependencies:
|
|
3904
|
+
pg: 8.17.2
|
|
3905
|
+
|
|
3906
|
+
pg-protocol@1.11.0: {}
|
|
3907
|
+
|
|
3908
|
+
pg-types@2.2.0:
|
|
3909
|
+
dependencies:
|
|
3910
|
+
pg-int8: 1.0.1
|
|
3911
|
+
postgres-array: 2.0.0
|
|
3912
|
+
postgres-bytea: 1.0.1
|
|
3913
|
+
postgres-date: 1.0.7
|
|
3914
|
+
postgres-interval: 1.2.0
|
|
3915
|
+
|
|
3916
|
+
pg@8.17.2:
|
|
3917
|
+
dependencies:
|
|
3918
|
+
pg-connection-string: 2.10.1
|
|
3919
|
+
pg-pool: 3.11.0(pg@8.17.2)
|
|
3920
|
+
pg-protocol: 1.11.0
|
|
3921
|
+
pg-types: 2.2.0
|
|
3922
|
+
pgpass: 1.0.5
|
|
3923
|
+
optionalDependencies:
|
|
3924
|
+
pg-cloudflare: 1.3.0
|
|
3925
|
+
|
|
3926
|
+
pgpass@1.0.5:
|
|
3927
|
+
dependencies:
|
|
3928
|
+
split2: 4.2.0
|
|
3929
|
+
|
|
1069
3930
|
picocolors@1.1.1: {}
|
|
1070
3931
|
|
|
1071
3932
|
picomatch@2.3.1: {}
|
|
@@ -1113,58 +3974,139 @@ snapshots:
|
|
|
1113
3974
|
picocolors: 1.1.1
|
|
1114
3975
|
source-map-js: 1.2.1
|
|
1115
3976
|
|
|
3977
|
+
postgres-array@2.0.0: {}
|
|
3978
|
+
|
|
3979
|
+
postgres-bytea@1.0.1: {}
|
|
3980
|
+
|
|
3981
|
+
postgres-date@1.0.7: {}
|
|
3982
|
+
|
|
3983
|
+
postgres-interval@1.2.0:
|
|
3984
|
+
dependencies:
|
|
3985
|
+
xtend: 4.0.2
|
|
3986
|
+
|
|
3987
|
+
prelude-ls@1.2.1: {}
|
|
3988
|
+
|
|
3989
|
+
proxy-from-env@1.1.0: {}
|
|
3990
|
+
|
|
3991
|
+
punycode@2.3.1: {}
|
|
3992
|
+
|
|
1116
3993
|
queue-microtask@1.2.3: {}
|
|
1117
3994
|
|
|
1118
3995
|
read-cache@1.0.0:
|
|
1119
3996
|
dependencies:
|
|
1120
3997
|
pify: 2.3.0
|
|
1121
3998
|
|
|
3999
|
+
readable-stream@3.6.2:
|
|
4000
|
+
dependencies:
|
|
4001
|
+
inherits: 2.0.4
|
|
4002
|
+
string_decoder: 1.3.0
|
|
4003
|
+
util-deprecate: 1.0.2
|
|
4004
|
+
|
|
1122
4005
|
readdirp@3.6.0:
|
|
1123
4006
|
dependencies:
|
|
1124
4007
|
picomatch: 2.3.1
|
|
1125
4008
|
|
|
4009
|
+
resolve-from@4.0.0: {}
|
|
4010
|
+
|
|
4011
|
+
resolve-pkg-maps@1.0.0: {}
|
|
4012
|
+
|
|
1126
4013
|
resolve@1.22.11:
|
|
1127
4014
|
dependencies:
|
|
1128
4015
|
is-core-module: 2.16.1
|
|
1129
4016
|
path-parse: 1.0.7
|
|
1130
4017
|
supports-preserve-symlinks-flag: 1.0.0
|
|
1131
4018
|
|
|
4019
|
+
restore-cursor@5.1.0:
|
|
4020
|
+
dependencies:
|
|
4021
|
+
onetime: 7.0.0
|
|
4022
|
+
signal-exit: 4.1.0
|
|
4023
|
+
|
|
1132
4024
|
reusify@1.1.0: {}
|
|
1133
4025
|
|
|
1134
|
-
rollup@4.
|
|
4026
|
+
rollup@4.55.3:
|
|
1135
4027
|
dependencies:
|
|
1136
4028
|
'@types/estree': 1.0.8
|
|
1137
4029
|
optionalDependencies:
|
|
1138
|
-
'@rollup/rollup-android-arm-eabi': 4.
|
|
1139
|
-
'@rollup/rollup-android-arm64': 4.
|
|
1140
|
-
'@rollup/rollup-darwin-arm64': 4.
|
|
1141
|
-
'@rollup/rollup-darwin-x64': 4.
|
|
1142
|
-
'@rollup/rollup-freebsd-arm64': 4.
|
|
1143
|
-
'@rollup/rollup-freebsd-x64': 4.
|
|
1144
|
-
'@rollup/rollup-linux-arm-gnueabihf': 4.
|
|
1145
|
-
'@rollup/rollup-linux-arm-musleabihf': 4.
|
|
1146
|
-
'@rollup/rollup-linux-arm64-gnu': 4.
|
|
1147
|
-
'@rollup/rollup-linux-arm64-musl': 4.
|
|
1148
|
-
'@rollup/rollup-linux-loong64-gnu': 4.
|
|
1149
|
-
'@rollup/rollup-linux-
|
|
1150
|
-
'@rollup/rollup-linux-
|
|
1151
|
-
'@rollup/rollup-linux-
|
|
1152
|
-
'@rollup/rollup-linux-
|
|
1153
|
-
'@rollup/rollup-linux-
|
|
1154
|
-
'@rollup/rollup-linux-
|
|
1155
|
-
'@rollup/rollup-
|
|
1156
|
-
'@rollup/rollup-
|
|
1157
|
-
'@rollup/rollup-
|
|
1158
|
-
'@rollup/rollup-
|
|
1159
|
-
'@rollup/rollup-win32-
|
|
4030
|
+
'@rollup/rollup-android-arm-eabi': 4.55.3
|
|
4031
|
+
'@rollup/rollup-android-arm64': 4.55.3
|
|
4032
|
+
'@rollup/rollup-darwin-arm64': 4.55.3
|
|
4033
|
+
'@rollup/rollup-darwin-x64': 4.55.3
|
|
4034
|
+
'@rollup/rollup-freebsd-arm64': 4.55.3
|
|
4035
|
+
'@rollup/rollup-freebsd-x64': 4.55.3
|
|
4036
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.55.3
|
|
4037
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.55.3
|
|
4038
|
+
'@rollup/rollup-linux-arm64-gnu': 4.55.3
|
|
4039
|
+
'@rollup/rollup-linux-arm64-musl': 4.55.3
|
|
4040
|
+
'@rollup/rollup-linux-loong64-gnu': 4.55.3
|
|
4041
|
+
'@rollup/rollup-linux-loong64-musl': 4.55.3
|
|
4042
|
+
'@rollup/rollup-linux-ppc64-gnu': 4.55.3
|
|
4043
|
+
'@rollup/rollup-linux-ppc64-musl': 4.55.3
|
|
4044
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.55.3
|
|
4045
|
+
'@rollup/rollup-linux-riscv64-musl': 4.55.3
|
|
4046
|
+
'@rollup/rollup-linux-s390x-gnu': 4.55.3
|
|
4047
|
+
'@rollup/rollup-linux-x64-gnu': 4.55.3
|
|
4048
|
+
'@rollup/rollup-linux-x64-musl': 4.55.3
|
|
4049
|
+
'@rollup/rollup-openbsd-x64': 4.55.3
|
|
4050
|
+
'@rollup/rollup-openharmony-arm64': 4.55.3
|
|
4051
|
+
'@rollup/rollup-win32-arm64-msvc': 4.55.3
|
|
4052
|
+
'@rollup/rollup-win32-ia32-msvc': 4.55.3
|
|
4053
|
+
'@rollup/rollup-win32-x64-gnu': 4.55.3
|
|
4054
|
+
'@rollup/rollup-win32-x64-msvc': 4.55.3
|
|
1160
4055
|
fsevents: 2.3.3
|
|
1161
4056
|
|
|
1162
4057
|
run-parallel@1.2.0:
|
|
1163
4058
|
dependencies:
|
|
1164
4059
|
queue-microtask: 1.2.3
|
|
1165
4060
|
|
|
4061
|
+
safe-buffer@5.2.1: {}
|
|
4062
|
+
|
|
4063
|
+
semver@7.7.3: {}
|
|
4064
|
+
|
|
4065
|
+
shebang-command@2.0.0:
|
|
4066
|
+
dependencies:
|
|
4067
|
+
shebang-regex: 3.0.0
|
|
4068
|
+
|
|
4069
|
+
shebang-regex@3.0.0: {}
|
|
4070
|
+
|
|
4071
|
+
signal-exit@4.1.0: {}
|
|
4072
|
+
|
|
4073
|
+
simple-wcswidth@1.1.2: {}
|
|
4074
|
+
|
|
1166
4075
|
source-map-js@1.2.1: {}
|
|
1167
4076
|
|
|
4077
|
+
source-map-support@0.5.21:
|
|
4078
|
+
dependencies:
|
|
4079
|
+
buffer-from: 1.1.2
|
|
4080
|
+
source-map: 0.6.1
|
|
4081
|
+
|
|
4082
|
+
source-map@0.6.1: {}
|
|
4083
|
+
|
|
4084
|
+
split2@4.2.0: {}
|
|
4085
|
+
|
|
4086
|
+
stdin-discarder@0.2.2: {}
|
|
4087
|
+
|
|
4088
|
+
stream-browserify@3.0.0:
|
|
4089
|
+
dependencies:
|
|
4090
|
+
inherits: 2.0.4
|
|
4091
|
+
readable-stream: 3.6.2
|
|
4092
|
+
|
|
4093
|
+
string-width@8.1.0:
|
|
4094
|
+
dependencies:
|
|
4095
|
+
get-east-asian-width: 1.4.0
|
|
4096
|
+
strip-ansi: 7.1.2
|
|
4097
|
+
|
|
4098
|
+
string_decoder@1.3.0:
|
|
4099
|
+
dependencies:
|
|
4100
|
+
safe-buffer: 5.2.1
|
|
4101
|
+
|
|
4102
|
+
strip-ansi@7.1.2:
|
|
4103
|
+
dependencies:
|
|
4104
|
+
ansi-regex: 6.2.2
|
|
4105
|
+
|
|
4106
|
+
strip-json-comments@3.1.1: {}
|
|
4107
|
+
|
|
4108
|
+
strnum@2.1.2: {}
|
|
4109
|
+
|
|
1168
4110
|
sucrase@3.35.1:
|
|
1169
4111
|
dependencies:
|
|
1170
4112
|
'@jridgewell/gen-mapping': 0.3.13
|
|
@@ -1175,6 +4117,10 @@ snapshots:
|
|
|
1175
4117
|
tinyglobby: 0.2.15
|
|
1176
4118
|
ts-interface-checker: 0.1.13
|
|
1177
4119
|
|
|
4120
|
+
supports-color@7.2.0:
|
|
4121
|
+
dependencies:
|
|
4122
|
+
has-flag: 4.0.0
|
|
4123
|
+
|
|
1178
4124
|
supports-preserve-symlinks-flag@1.0.0: {}
|
|
1179
4125
|
|
|
1180
4126
|
tailwindcss@3.4.19:
|
|
@@ -1222,8 +4168,31 @@ snapshots:
|
|
|
1222
4168
|
dependencies:
|
|
1223
4169
|
is-number: 7.0.0
|
|
1224
4170
|
|
|
4171
|
+
transliteration@2.6.1: {}
|
|
4172
|
+
|
|
4173
|
+
ts-api-utils@2.4.0(typescript@5.9.3):
|
|
4174
|
+
dependencies:
|
|
4175
|
+
typescript: 5.9.3
|
|
4176
|
+
|
|
1225
4177
|
ts-interface-checker@0.1.13: {}
|
|
1226
4178
|
|
|
4179
|
+
tslib@2.8.1: {}
|
|
4180
|
+
|
|
4181
|
+
type-check@0.4.0:
|
|
4182
|
+
dependencies:
|
|
4183
|
+
prelude-ls: 1.2.1
|
|
4184
|
+
|
|
4185
|
+
typescript-eslint@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3):
|
|
4186
|
+
dependencies:
|
|
4187
|
+
'@typescript-eslint/eslint-plugin': 8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
4188
|
+
'@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
4189
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
4190
|
+
'@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
4191
|
+
eslint: 9.39.2(jiti@1.21.7)
|
|
4192
|
+
typescript: 5.9.3
|
|
4193
|
+
transitivePeerDependencies:
|
|
4194
|
+
- supports-color
|
|
4195
|
+
|
|
1227
4196
|
typescript@5.9.3: {}
|
|
1228
4197
|
|
|
1229
4198
|
update-browserslist-db@1.2.3(browserslist@4.28.1):
|
|
@@ -1232,18 +4201,38 @@ snapshots:
|
|
|
1232
4201
|
escalade: 3.2.0
|
|
1233
4202
|
picocolors: 1.1.1
|
|
1234
4203
|
|
|
4204
|
+
uri-js@4.4.1:
|
|
4205
|
+
dependencies:
|
|
4206
|
+
punycode: 2.3.1
|
|
4207
|
+
|
|
1235
4208
|
util-deprecate@1.0.2: {}
|
|
1236
4209
|
|
|
1237
|
-
|
|
4210
|
+
uuid@10.0.0: {}
|
|
4211
|
+
|
|
4212
|
+
vite@7.3.1(jiti@1.21.7):
|
|
1238
4213
|
dependencies:
|
|
1239
|
-
esbuild: 0.
|
|
4214
|
+
esbuild: 0.27.2
|
|
1240
4215
|
fdir: 6.5.0(picomatch@4.0.3)
|
|
1241
4216
|
picomatch: 4.0.3
|
|
1242
4217
|
postcss: 8.5.6
|
|
1243
|
-
rollup: 4.
|
|
4218
|
+
rollup: 4.55.3
|
|
1244
4219
|
tinyglobby: 0.2.15
|
|
1245
4220
|
optionalDependencies:
|
|
1246
4221
|
fsevents: 2.3.3
|
|
1247
4222
|
jiti: 1.21.7
|
|
1248
4223
|
|
|
1249
4224
|
which-pm-runs@1.1.0: {}
|
|
4225
|
+
|
|
4226
|
+
which@2.0.2:
|
|
4227
|
+
dependencies:
|
|
4228
|
+
isexe: 2.0.0
|
|
4229
|
+
|
|
4230
|
+
word-wrap@1.2.5: {}
|
|
4231
|
+
|
|
4232
|
+
xtend@4.0.2: {}
|
|
4233
|
+
|
|
4234
|
+
yocto-queue@0.1.0: {}
|
|
4235
|
+
|
|
4236
|
+
yoctocolors@2.1.2: {}
|
|
4237
|
+
|
|
4238
|
+
zod@4.3.5: {}
|