@coze-arch/cli 0.0.1-beta.5 → 0.0.2
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/README.md +1 -0
- 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 +229 -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 +46 -0
- package/lib/__templates__/expo/README.md +68 -7
- package/lib/__templates__/expo/_gitignore +1 -1
- package/lib/__templates__/{react-rsbuild → expo}/_npmrc +4 -5
- package/lib/__templates__/expo/client/app/+not-found.tsx +15 -64
- package/lib/__templates__/expo/client/app/_layout.tsx +15 -12
- 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 +22 -38
- package/lib/__templates__/expo/client/components/ThemedText.tsx +33 -0
- package/lib/__templates__/expo/client/components/ThemedView.tsx +37 -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} +40 -10
- package/lib/__templates__/expo/client/hooks/useColorScheme.tsx +48 -0
- package/lib/__templates__/expo/client/hooks/useSafeRouter.ts +152 -0
- package/lib/__templates__/expo/client/hooks/useTheme.ts +26 -6
- package/lib/__templates__/expo/client/metro.config.js +124 -0
- package/lib/__templates__/expo/client/package.json +95 -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 +47 -22
- 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 +1889 -0
- package/lib/__templates__/expo/eslint-plugins/fontawesome6/rule.js +174 -0
- package/lib/__templates__/expo/eslint-plugins/fontawesome6/v5-only-names.js +388 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
- package/lib/__templates__/expo/eslint-plugins/react-native/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/react-native/rule.js +64 -0
- package/lib/__templates__/expo/eslint-plugins/reanimated/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/reanimated/rule.js +88 -0
- package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/rule.js +120 -0
- package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/tech.md +58 -0
- package/lib/__templates__/expo/package.json +16 -91
- package/lib/__templates__/expo/patches/expo@54.0.33.patch +45 -0
- package/lib/__templates__/expo/pnpm-lock.yaml +1805 -3126
- 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 +34 -0
- package/lib/__templates__/expo/server/src/index.ts +20 -0
- package/lib/__templates__/expo/server/tsconfig.json +24 -0
- package/lib/__templates__/expo/template.config.js +58 -1
- package/lib/__templates__/expo/tsconfig.json +1 -24
- package/lib/__templates__/native-static/.coze +11 -0
- package/lib/__templates__/native-static/index.html +33 -0
- package/lib/__templates__/native-static/styles/main.css +136 -0
- package/lib/__templates__/native-static/template.config.js +22 -0
- package/lib/__templates__/nextjs/.babelrc +15 -0
- package/lib/__templates__/nextjs/.coze +4 -3
- package/lib/__templates__/nextjs/README.md +346 -19
- package/lib/__templates__/nextjs/_npmrc +2 -1
- package/lib/__templates__/nextjs/components.json +21 -0
- package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
- package/lib/__templates__/nextjs/next.config.ts +11 -0
- package/lib/__templates__/nextjs/package.json +63 -2
- package/lib/__templates__/nextjs/pnpm-lock.yaml +10053 -1710
- package/lib/__templates__/nextjs/scripts/build.sh +4 -1
- package/lib/__templates__/nextjs/scripts/dev.sh +15 -27
- package/lib/__templates__/{react-rsbuild/scripts/build.sh → nextjs/scripts/prepare.sh} +0 -5
- package/lib/__templates__/nextjs/scripts/start.sh +7 -1
- package/lib/__templates__/nextjs/src/app/globals.css +124 -13
- package/lib/__templates__/nextjs/src/app/layout.tsx +56 -16
- package/lib/__templates__/nextjs/src/app/page.tsx +18 -49
- package/lib/__templates__/nextjs/src/app/robots.ts +11 -0
- 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/src/server.ts +35 -0
- package/lib/__templates__/nextjs/template.config.js +70 -5
- package/lib/__templates__/nextjs/tsconfig.json +1 -1
- package/lib/__templates__/nuxt-vue/.coze +12 -0
- package/lib/__templates__/nuxt-vue/README.md +73 -0
- package/lib/__templates__/nuxt-vue/_gitignore +24 -0
- package/lib/__templates__/{rsbuild → nuxt-vue}/_npmrc +2 -1
- package/lib/__templates__/nuxt-vue/app/app.vue +6 -0
- package/lib/__templates__/nuxt-vue/app/pages/index.vue +23 -0
- package/lib/__templates__/{rsbuild/src/index.css → nuxt-vue/assets/css/main.css} +7 -4
- package/lib/__templates__/nuxt-vue/nuxt.config.ts +116 -0
- package/lib/__templates__/nuxt-vue/package.json +35 -0
- package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +8759 -0
- package/lib/__templates__/nuxt-vue/postcss.config.mjs +8 -0
- package/lib/__templates__/nuxt-vue/public/favicon.ico +0 -0
- package/lib/__templates__/nuxt-vue/public/robots.txt +2 -0
- package/lib/__templates__/{rsbuild → nuxt-vue}/scripts/build.sh +2 -2
- package/lib/__templates__/nuxt-vue/scripts/dev.sh +39 -0
- package/lib/__templates__/nuxt-vue/scripts/prepare.sh +14 -0
- package/lib/__templates__/nuxt-vue/scripts/start.sh +21 -0
- package/lib/__templates__/nuxt-vue/server/api/hello.ts +10 -0
- package/lib/__templates__/nuxt-vue/server/middleware/logger.ts +10 -0
- package/lib/__templates__/nuxt-vue/server/routes/health.ts +10 -0
- package/lib/__templates__/nuxt-vue/tailwind.config.js +13 -0
- package/lib/__templates__/nuxt-vue/template.config.js +87 -0
- package/lib/__templates__/nuxt-vue/tsconfig.json +18 -0
- package/lib/__templates__/taro/.coze +14 -0
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +19 -0
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +14 -0
- package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +2 -0
- package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +151 -0
- package/lib/__templates__/taro/.cozeproj/scripts/init_env.sh +5 -0
- package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -0
- package/lib/__templates__/taro/README.md +763 -0
- package/lib/__templates__/taro/_gitignore +40 -0
- package/lib/__templates__/taro/_npmrc +18 -0
- package/lib/__templates__/taro/babel.config.js +12 -0
- package/lib/__templates__/taro/config/dev.ts +9 -0
- package/lib/__templates__/taro/config/index.ts +238 -0
- package/lib/__templates__/taro/config/prod.ts +34 -0
- package/lib/__templates__/taro/eslint.config.mjs +135 -0
- package/lib/__templates__/taro/key/private.appid.key +0 -0
- package/lib/__templates__/taro/package.json +112 -0
- package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
- package/lib/__templates__/taro/pnpm-lock.yaml +23412 -0
- package/lib/__templates__/taro/pnpm-workspace.yaml +2 -0
- package/lib/__templates__/taro/project.config.json +15 -0
- package/lib/__templates__/taro/server/nest-cli.json +10 -0
- package/lib/__templates__/taro/server/package.json +40 -0
- package/lib/__templates__/taro/server/src/app.controller.ts +23 -0
- package/lib/__templates__/taro/server/src/app.module.ts +10 -0
- package/lib/__templates__/taro/server/src/app.service.ts +8 -0
- package/lib/__templates__/taro/server/src/interceptors/http-status.interceptor.ts +23 -0
- package/lib/__templates__/taro/server/src/main.ts +49 -0
- package/lib/__templates__/taro/server/tsconfig.json +24 -0
- package/lib/__templates__/taro/src/app.config.ts +11 -0
- package/lib/__templates__/taro/src/app.css +156 -0
- package/lib/__templates__/taro/src/app.tsx +9 -0
- package/lib/__templates__/taro/src/components/ui/accordion.tsx +159 -0
- package/lib/__templates__/taro/src/components/ui/alert-dialog.tsx +260 -0
- package/lib/__templates__/taro/src/components/ui/alert.tsx +60 -0
- package/lib/__templates__/taro/src/components/ui/aspect-ratio.tsx +36 -0
- package/lib/__templates__/taro/src/components/ui/avatar.tsx +84 -0
- package/lib/__templates__/taro/src/components/ui/badge.tsx +37 -0
- package/lib/__templates__/taro/src/components/ui/breadcrumb.tsx +117 -0
- package/lib/__templates__/taro/src/components/ui/button-group.tsx +83 -0
- package/lib/__templates__/taro/src/components/ui/button.tsx +67 -0
- package/lib/__templates__/taro/src/components/ui/calendar.tsx +394 -0
- package/lib/__templates__/taro/src/components/ui/card.tsx +108 -0
- package/lib/__templates__/taro/src/components/ui/carousel.tsx +228 -0
- package/lib/__templates__/taro/src/components/ui/checkbox.tsx +58 -0
- package/lib/__templates__/taro/src/components/ui/code-block.tsx +169 -0
- package/lib/__templates__/taro/src/components/ui/collapsible.tsx +71 -0
- package/lib/__templates__/taro/src/components/ui/command.tsx +385 -0
- package/lib/__templates__/taro/src/components/ui/context-menu.tsx +614 -0
- package/lib/__templates__/taro/src/components/ui/dialog.tsx +256 -0
- package/lib/__templates__/taro/src/components/ui/drawer.tsx +192 -0
- package/lib/__templates__/taro/src/components/ui/dropdown-menu.tsx +561 -0
- package/lib/__templates__/taro/src/components/ui/field.tsx +228 -0
- package/lib/__templates__/taro/src/components/ui/hover-card.tsx +282 -0
- package/lib/__templates__/taro/src/components/ui/input-group.tsx +197 -0
- package/lib/__templates__/taro/src/components/ui/input-otp.tsx +136 -0
- package/lib/__templates__/taro/src/components/ui/input.tsx +56 -0
- package/lib/__templates__/taro/src/components/ui/label.tsx +24 -0
- package/lib/__templates__/taro/src/components/ui/menubar.tsx +595 -0
- package/lib/__templates__/taro/src/components/ui/navigation-menu.tsx +264 -0
- package/lib/__templates__/taro/src/components/ui/pagination.tsx +118 -0
- package/lib/__templates__/taro/src/components/ui/popover.tsx +291 -0
- package/lib/__templates__/taro/src/components/ui/portal.tsx +19 -0
- package/lib/__templates__/taro/src/components/ui/progress.tsx +28 -0
- package/lib/__templates__/taro/src/components/ui/radio-group.tsx +64 -0
- package/lib/__templates__/taro/src/components/ui/resizable.tsx +346 -0
- package/lib/__templates__/taro/src/components/ui/scroll-area.tsx +34 -0
- package/lib/__templates__/taro/src/components/ui/select.tsx +438 -0
- package/lib/__templates__/taro/src/components/ui/separator.tsx +30 -0
- package/lib/__templates__/taro/src/components/ui/sheet.tsx +262 -0
- package/lib/__templates__/taro/src/components/ui/skeleton.tsx +17 -0
- package/lib/__templates__/taro/src/components/ui/slider.tsx +203 -0
- package/lib/__templates__/taro/src/components/ui/sonner.tsx +1 -0
- package/lib/__templates__/taro/src/components/ui/switch.tsx +55 -0
- package/lib/__templates__/taro/src/components/ui/table.tsx +142 -0
- package/lib/__templates__/taro/src/components/ui/tabs.tsx +114 -0
- package/lib/__templates__/taro/src/components/ui/textarea.tsx +54 -0
- package/lib/__templates__/taro/src/components/ui/toast.tsx +517 -0
- package/lib/__templates__/taro/src/components/ui/toggle-group.tsx +120 -0
- package/lib/__templates__/taro/src/components/ui/toggle.tsx +77 -0
- package/lib/__templates__/taro/src/components/ui/tooltip.tsx +455 -0
- package/lib/__templates__/taro/src/index.html +39 -0
- package/lib/__templates__/taro/src/lib/hooks/use-keyboard-offset.ts +37 -0
- package/lib/__templates__/taro/src/lib/measure.ts +115 -0
- package/lib/__templates__/taro/src/lib/platform.ts +12 -0
- package/lib/__templates__/taro/src/lib/utils.ts +6 -0
- package/lib/__templates__/taro/src/network.ts +39 -0
- package/lib/__templates__/taro/src/pages/index/index.config.ts +3 -0
- package/lib/__templates__/taro/src/pages/index/index.css +1 -0
- package/lib/__templates__/taro/src/pages/index/index.tsx +33 -0
- package/lib/__templates__/taro/src/presets/dev-debug.ts +23 -0
- package/lib/__templates__/taro/src/presets/h5-container.tsx +15 -0
- package/lib/__templates__/taro/src/presets/h5-navbar.tsx +238 -0
- package/lib/__templates__/taro/src/presets/h5-styles.ts +220 -0
- package/lib/__templates__/taro/src/presets/index.tsx +18 -0
- package/lib/__templates__/taro/stylelint.config.mjs +4 -0
- package/lib/__templates__/taro/template.config.js +68 -0
- package/lib/__templates__/taro/tsconfig.json +29 -0
- package/lib/__templates__/taro/types/global.d.ts +32 -0
- package/lib/__templates__/templates.json +126 -64
- package/lib/__templates__/vite/.coze +4 -3
- package/lib/__templates__/vite/README.md +383 -26
- package/lib/__templates__/vite/_gitignore +1 -0
- package/lib/__templates__/vite/_npmrc +2 -1
- package/lib/__templates__/vite/eslint.config.mjs +14 -0
- package/lib/__templates__/vite/package.json +23 -3
- package/lib/__templates__/vite/pnpm-lock.yaml +2509 -293
- package/lib/__templates__/vite/scripts/build.sh +4 -1
- package/lib/__templates__/vite/scripts/dev.sh +16 -28
- package/lib/__templates__/vite/scripts/prepare.sh +9 -0
- package/lib/__templates__/vite/scripts/start.sh +9 -3
- package/lib/__templates__/vite/server/routes/index.ts +31 -0
- package/lib/__templates__/vite/server/server.ts +65 -0
- package/lib/__templates__/vite/server/vite.ts +67 -0
- package/lib/__templates__/vite/src/main.ts +17 -48
- package/lib/__templates__/vite/template.config.js +82 -10
- package/lib/__templates__/vite/tsconfig.json +4 -3
- package/lib/__templates__/vite/vite.config.ts +8 -3
- package/lib/cli.js +1544 -488
- package/package.json +18 -7
- 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/hooks/useColorScheme.ts +0 -1
- 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/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/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.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 -54
- 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,13 +4,42 @@ settings:
|
|
|
4
4
|
autoInstallPeers: true
|
|
5
5
|
excludeLinksFromLockfile: false
|
|
6
6
|
|
|
7
|
+
overrides:
|
|
8
|
+
esbuild: ^0.27.2
|
|
9
|
+
is-generator-function: 1.0.10
|
|
10
|
+
|
|
7
11
|
importers:
|
|
8
12
|
|
|
9
13
|
.:
|
|
14
|
+
dependencies:
|
|
15
|
+
'@supabase/supabase-js':
|
|
16
|
+
specifier: 2.95.3
|
|
17
|
+
version: 2.95.3
|
|
18
|
+
dotenv:
|
|
19
|
+
specifier: ^17.2.3
|
|
20
|
+
version: 17.2.4
|
|
21
|
+
express:
|
|
22
|
+
specifier: ^4.21.2
|
|
23
|
+
version: 4.22.1
|
|
10
24
|
devDependencies:
|
|
25
|
+
'@types/express':
|
|
26
|
+
specifier: ^5.0.0
|
|
27
|
+
version: 5.0.6
|
|
28
|
+
'@types/node':
|
|
29
|
+
specifier: ^22.10.5
|
|
30
|
+
version: 22.19.15
|
|
11
31
|
autoprefixer:
|
|
12
32
|
specifier: ^10.4.20
|
|
13
33
|
version: 10.4.23(postcss@8.5.6)
|
|
34
|
+
coze-coding-dev-sdk:
|
|
35
|
+
specifier: ^0.7.16
|
|
36
|
+
version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0)
|
|
37
|
+
esbuild:
|
|
38
|
+
specifier: ^0.27.2
|
|
39
|
+
version: 0.27.2
|
|
40
|
+
eslint:
|
|
41
|
+
specifier: ^9
|
|
42
|
+
version: 9.39.2(jiti@1.21.7)
|
|
14
43
|
only-allow:
|
|
15
44
|
specifier: ^1.2.2
|
|
16
45
|
version: 1.2.2
|
|
@@ -19,13 +48,22 @@ importers:
|
|
|
19
48
|
version: 8.5.6
|
|
20
49
|
tailwindcss:
|
|
21
50
|
specifier: ^3.4.17
|
|
22
|
-
version: 3.4.19
|
|
51
|
+
version: 3.4.19(tsx@4.21.0)
|
|
52
|
+
tsup:
|
|
53
|
+
specifier: ^8.3.5
|
|
54
|
+
version: 8.5.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)
|
|
55
|
+
tsx:
|
|
56
|
+
specifier: ^4.19.2
|
|
57
|
+
version: 4.21.0
|
|
23
58
|
typescript:
|
|
24
59
|
specifier: ^5.6.0
|
|
25
60
|
version: 5.9.3
|
|
61
|
+
typescript-eslint:
|
|
62
|
+
specifier: ^8
|
|
63
|
+
version: 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
26
64
|
vite:
|
|
27
|
-
specifier: ^
|
|
28
|
-
version:
|
|
65
|
+
specifier: ^7.2.4
|
|
66
|
+
version: 7.3.1(@types/node@22.19.15)(jiti@1.21.7)(tsx@4.21.0)
|
|
29
67
|
|
|
30
68
|
packages:
|
|
31
69
|
|
|
@@ -33,162 +71,219 @@ packages:
|
|
|
33
71
|
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
|
34
72
|
engines: {node: '>=10'}
|
|
35
73
|
|
|
36
|
-
'@
|
|
37
|
-
resolution: {integrity: sha512-
|
|
74
|
+
'@cfworker/json-schema@4.1.1':
|
|
75
|
+
resolution: {integrity: sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==}
|
|
76
|
+
|
|
77
|
+
'@esbuild/aix-ppc64@0.27.2':
|
|
78
|
+
resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
|
|
38
79
|
engines: {node: '>=18'}
|
|
39
80
|
cpu: [ppc64]
|
|
40
81
|
os: [aix]
|
|
41
82
|
|
|
42
|
-
'@esbuild/android-arm64@0.
|
|
43
|
-
resolution: {integrity: sha512-
|
|
83
|
+
'@esbuild/android-arm64@0.27.2':
|
|
84
|
+
resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
|
|
44
85
|
engines: {node: '>=18'}
|
|
45
86
|
cpu: [arm64]
|
|
46
87
|
os: [android]
|
|
47
88
|
|
|
48
|
-
'@esbuild/android-arm@0.
|
|
49
|
-
resolution: {integrity: sha512-
|
|
89
|
+
'@esbuild/android-arm@0.27.2':
|
|
90
|
+
resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
|
|
50
91
|
engines: {node: '>=18'}
|
|
51
92
|
cpu: [arm]
|
|
52
93
|
os: [android]
|
|
53
94
|
|
|
54
|
-
'@esbuild/android-x64@0.
|
|
55
|
-
resolution: {integrity: sha512-
|
|
95
|
+
'@esbuild/android-x64@0.27.2':
|
|
96
|
+
resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
|
|
56
97
|
engines: {node: '>=18'}
|
|
57
98
|
cpu: [x64]
|
|
58
99
|
os: [android]
|
|
59
100
|
|
|
60
|
-
'@esbuild/darwin-arm64@0.
|
|
61
|
-
resolution: {integrity: sha512-
|
|
101
|
+
'@esbuild/darwin-arm64@0.27.2':
|
|
102
|
+
resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
|
|
62
103
|
engines: {node: '>=18'}
|
|
63
104
|
cpu: [arm64]
|
|
64
105
|
os: [darwin]
|
|
65
106
|
|
|
66
|
-
'@esbuild/darwin-x64@0.
|
|
67
|
-
resolution: {integrity: sha512-
|
|
107
|
+
'@esbuild/darwin-x64@0.27.2':
|
|
108
|
+
resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
|
|
68
109
|
engines: {node: '>=18'}
|
|
69
110
|
cpu: [x64]
|
|
70
111
|
os: [darwin]
|
|
71
112
|
|
|
72
|
-
'@esbuild/freebsd-arm64@0.
|
|
73
|
-
resolution: {integrity: sha512-
|
|
113
|
+
'@esbuild/freebsd-arm64@0.27.2':
|
|
114
|
+
resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
|
|
74
115
|
engines: {node: '>=18'}
|
|
75
116
|
cpu: [arm64]
|
|
76
117
|
os: [freebsd]
|
|
77
118
|
|
|
78
|
-
'@esbuild/freebsd-x64@0.
|
|
79
|
-
resolution: {integrity: sha512-
|
|
119
|
+
'@esbuild/freebsd-x64@0.27.2':
|
|
120
|
+
resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
|
|
80
121
|
engines: {node: '>=18'}
|
|
81
122
|
cpu: [x64]
|
|
82
123
|
os: [freebsd]
|
|
83
124
|
|
|
84
|
-
'@esbuild/linux-arm64@0.
|
|
85
|
-
resolution: {integrity: sha512-
|
|
125
|
+
'@esbuild/linux-arm64@0.27.2':
|
|
126
|
+
resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
|
|
86
127
|
engines: {node: '>=18'}
|
|
87
128
|
cpu: [arm64]
|
|
88
129
|
os: [linux]
|
|
89
130
|
|
|
90
|
-
'@esbuild/linux-arm@0.
|
|
91
|
-
resolution: {integrity: sha512-
|
|
131
|
+
'@esbuild/linux-arm@0.27.2':
|
|
132
|
+
resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
|
|
92
133
|
engines: {node: '>=18'}
|
|
93
134
|
cpu: [arm]
|
|
94
135
|
os: [linux]
|
|
95
136
|
|
|
96
|
-
'@esbuild/linux-ia32@0.
|
|
97
|
-
resolution: {integrity: sha512-
|
|
137
|
+
'@esbuild/linux-ia32@0.27.2':
|
|
138
|
+
resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
|
|
98
139
|
engines: {node: '>=18'}
|
|
99
140
|
cpu: [ia32]
|
|
100
141
|
os: [linux]
|
|
101
142
|
|
|
102
|
-
'@esbuild/linux-loong64@0.
|
|
103
|
-
resolution: {integrity: sha512-
|
|
143
|
+
'@esbuild/linux-loong64@0.27.2':
|
|
144
|
+
resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
|
|
104
145
|
engines: {node: '>=18'}
|
|
105
146
|
cpu: [loong64]
|
|
106
147
|
os: [linux]
|
|
107
148
|
|
|
108
|
-
'@esbuild/linux-mips64el@0.
|
|
109
|
-
resolution: {integrity: sha512-
|
|
149
|
+
'@esbuild/linux-mips64el@0.27.2':
|
|
150
|
+
resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
|
|
110
151
|
engines: {node: '>=18'}
|
|
111
152
|
cpu: [mips64el]
|
|
112
153
|
os: [linux]
|
|
113
154
|
|
|
114
|
-
'@esbuild/linux-ppc64@0.
|
|
115
|
-
resolution: {integrity: sha512-
|
|
155
|
+
'@esbuild/linux-ppc64@0.27.2':
|
|
156
|
+
resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
|
|
116
157
|
engines: {node: '>=18'}
|
|
117
158
|
cpu: [ppc64]
|
|
118
159
|
os: [linux]
|
|
119
160
|
|
|
120
|
-
'@esbuild/linux-riscv64@0.
|
|
121
|
-
resolution: {integrity: sha512-
|
|
161
|
+
'@esbuild/linux-riscv64@0.27.2':
|
|
162
|
+
resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
|
|
122
163
|
engines: {node: '>=18'}
|
|
123
164
|
cpu: [riscv64]
|
|
124
165
|
os: [linux]
|
|
125
166
|
|
|
126
|
-
'@esbuild/linux-s390x@0.
|
|
127
|
-
resolution: {integrity: sha512-
|
|
167
|
+
'@esbuild/linux-s390x@0.27.2':
|
|
168
|
+
resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
|
|
128
169
|
engines: {node: '>=18'}
|
|
129
170
|
cpu: [s390x]
|
|
130
171
|
os: [linux]
|
|
131
172
|
|
|
132
|
-
'@esbuild/linux-x64@0.
|
|
133
|
-
resolution: {integrity: sha512-
|
|
173
|
+
'@esbuild/linux-x64@0.27.2':
|
|
174
|
+
resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
|
|
134
175
|
engines: {node: '>=18'}
|
|
135
176
|
cpu: [x64]
|
|
136
177
|
os: [linux]
|
|
137
178
|
|
|
138
|
-
'@esbuild/netbsd-arm64@0.
|
|
139
|
-
resolution: {integrity: sha512-
|
|
179
|
+
'@esbuild/netbsd-arm64@0.27.2':
|
|
180
|
+
resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
|
|
140
181
|
engines: {node: '>=18'}
|
|
141
182
|
cpu: [arm64]
|
|
142
183
|
os: [netbsd]
|
|
143
184
|
|
|
144
|
-
'@esbuild/netbsd-x64@0.
|
|
145
|
-
resolution: {integrity: sha512-
|
|
185
|
+
'@esbuild/netbsd-x64@0.27.2':
|
|
186
|
+
resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
|
|
146
187
|
engines: {node: '>=18'}
|
|
147
188
|
cpu: [x64]
|
|
148
189
|
os: [netbsd]
|
|
149
190
|
|
|
150
|
-
'@esbuild/openbsd-arm64@0.
|
|
151
|
-
resolution: {integrity: sha512-
|
|
191
|
+
'@esbuild/openbsd-arm64@0.27.2':
|
|
192
|
+
resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
|
|
152
193
|
engines: {node: '>=18'}
|
|
153
194
|
cpu: [arm64]
|
|
154
195
|
os: [openbsd]
|
|
155
196
|
|
|
156
|
-
'@esbuild/openbsd-x64@0.
|
|
157
|
-
resolution: {integrity: sha512
|
|
197
|
+
'@esbuild/openbsd-x64@0.27.2':
|
|
198
|
+
resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
|
|
158
199
|
engines: {node: '>=18'}
|
|
159
200
|
cpu: [x64]
|
|
160
201
|
os: [openbsd]
|
|
161
202
|
|
|
162
|
-
'@esbuild/openharmony-arm64@0.
|
|
163
|
-
resolution: {integrity: sha512-
|
|
203
|
+
'@esbuild/openharmony-arm64@0.27.2':
|
|
204
|
+
resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
|
|
164
205
|
engines: {node: '>=18'}
|
|
165
206
|
cpu: [arm64]
|
|
166
207
|
os: [openharmony]
|
|
167
208
|
|
|
168
|
-
'@esbuild/sunos-x64@0.
|
|
169
|
-
resolution: {integrity: sha512-
|
|
209
|
+
'@esbuild/sunos-x64@0.27.2':
|
|
210
|
+
resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
|
|
170
211
|
engines: {node: '>=18'}
|
|
171
212
|
cpu: [x64]
|
|
172
213
|
os: [sunos]
|
|
173
214
|
|
|
174
|
-
'@esbuild/win32-arm64@0.
|
|
175
|
-
resolution: {integrity: sha512-
|
|
215
|
+
'@esbuild/win32-arm64@0.27.2':
|
|
216
|
+
resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
|
|
176
217
|
engines: {node: '>=18'}
|
|
177
218
|
cpu: [arm64]
|
|
178
219
|
os: [win32]
|
|
179
220
|
|
|
180
|
-
'@esbuild/win32-ia32@0.
|
|
181
|
-
resolution: {integrity: sha512-
|
|
221
|
+
'@esbuild/win32-ia32@0.27.2':
|
|
222
|
+
resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
|
|
182
223
|
engines: {node: '>=18'}
|
|
183
224
|
cpu: [ia32]
|
|
184
225
|
os: [win32]
|
|
185
226
|
|
|
186
|
-
'@esbuild/win32-x64@0.
|
|
187
|
-
resolution: {integrity: sha512-
|
|
227
|
+
'@esbuild/win32-x64@0.27.2':
|
|
228
|
+
resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
|
|
188
229
|
engines: {node: '>=18'}
|
|
189
230
|
cpu: [x64]
|
|
190
231
|
os: [win32]
|
|
191
232
|
|
|
233
|
+
'@eslint-community/eslint-utils@4.9.1':
|
|
234
|
+
resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
|
|
235
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
236
|
+
peerDependencies:
|
|
237
|
+
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
|
238
|
+
|
|
239
|
+
'@eslint-community/regexpp@4.12.2':
|
|
240
|
+
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
|
|
241
|
+
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
|
242
|
+
|
|
243
|
+
'@eslint/config-array@0.21.1':
|
|
244
|
+
resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
|
|
245
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
246
|
+
|
|
247
|
+
'@eslint/config-helpers@0.4.2':
|
|
248
|
+
resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
|
|
249
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
250
|
+
|
|
251
|
+
'@eslint/core@0.17.0':
|
|
252
|
+
resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
|
|
253
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
254
|
+
|
|
255
|
+
'@eslint/eslintrc@3.3.3':
|
|
256
|
+
resolution: {integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==}
|
|
257
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
258
|
+
|
|
259
|
+
'@eslint/js@9.39.2':
|
|
260
|
+
resolution: {integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==}
|
|
261
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
262
|
+
|
|
263
|
+
'@eslint/object-schema@2.1.7':
|
|
264
|
+
resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
|
|
265
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
266
|
+
|
|
267
|
+
'@eslint/plugin-kit@0.4.1':
|
|
268
|
+
resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
|
|
269
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
270
|
+
|
|
271
|
+
'@humanfs/core@0.19.1':
|
|
272
|
+
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
|
|
273
|
+
engines: {node: '>=18.18.0'}
|
|
274
|
+
|
|
275
|
+
'@humanfs/node@0.16.7':
|
|
276
|
+
resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
|
|
277
|
+
engines: {node: '>=18.18.0'}
|
|
278
|
+
|
|
279
|
+
'@humanwhocodes/module-importer@1.0.1':
|
|
280
|
+
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
|
|
281
|
+
engines: {node: '>=12.22'}
|
|
282
|
+
|
|
283
|
+
'@humanwhocodes/retry@0.4.3':
|
|
284
|
+
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
|
|
285
|
+
engines: {node: '>=18.18'}
|
|
286
|
+
|
|
192
287
|
'@jridgewell/gen-mapping@0.3.13':
|
|
193
288
|
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
194
289
|
|
|
@@ -202,6 +297,16 @@ packages:
|
|
|
202
297
|
'@jridgewell/trace-mapping@0.3.31':
|
|
203
298
|
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
204
299
|
|
|
300
|
+
'@langchain/core@1.1.16':
|
|
301
|
+
resolution: {integrity: sha512-2XKQKxvQdeQiuIo0tacAmDVojhSVAci8D2WDdmmyN+6CqDusLHEHyIDaOt4o+UBvpkyHXbCdrljzDTQY/AKeqg==}
|
|
302
|
+
engines: {node: '>=20'}
|
|
303
|
+
|
|
304
|
+
'@langchain/openai@1.2.3':
|
|
305
|
+
resolution: {integrity: sha512-+bKR4+Obz5a/NHEw0bAm3f/s4k0cXc/g46ZRRXqjcyDYP+9wFarItvGNn6DEEk5S7pGp1QqApAQNt9IZk1Ic1Q==}
|
|
306
|
+
engines: {node: '>=20'}
|
|
307
|
+
peerDependencies:
|
|
308
|
+
'@langchain/core': ^1.0.0
|
|
309
|
+
|
|
205
310
|
'@nodelib/fs.scandir@2.1.5':
|
|
206
311
|
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
|
207
312
|
engines: {node: '>= 8'}
|
|
@@ -214,130 +319,302 @@ packages:
|
|
|
214
319
|
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
|
215
320
|
engines: {node: '>= 8'}
|
|
216
321
|
|
|
217
|
-
'@rollup/rollup-android-arm-eabi@4.
|
|
218
|
-
resolution: {integrity: sha512-
|
|
322
|
+
'@rollup/rollup-android-arm-eabi@4.55.3':
|
|
323
|
+
resolution: {integrity: sha512-qyX8+93kK/7R5BEXPC2PjUt0+fS/VO2BVHjEHyIEWiYn88rcRBHmdLgoJjktBltgAf+NY7RfCGB1SoyKS/p9kg==}
|
|
219
324
|
cpu: [arm]
|
|
220
325
|
os: [android]
|
|
221
326
|
|
|
222
|
-
'@rollup/rollup-android-arm64@4.
|
|
223
|
-
resolution: {integrity: sha512-
|
|
327
|
+
'@rollup/rollup-android-arm64@4.55.3':
|
|
328
|
+
resolution: {integrity: sha512-6sHrL42bjt5dHQzJ12Q4vMKfN+kUnZ0atHHnv4V0Wd9JMTk7FDzSY35+7qbz3ypQYMBPANbpGK7JpnWNnhGt8g==}
|
|
224
329
|
cpu: [arm64]
|
|
225
330
|
os: [android]
|
|
226
331
|
|
|
227
|
-
'@rollup/rollup-darwin-arm64@4.
|
|
228
|
-
resolution: {integrity: sha512-
|
|
332
|
+
'@rollup/rollup-darwin-arm64@4.55.3':
|
|
333
|
+
resolution: {integrity: sha512-1ht2SpGIjEl2igJ9AbNpPIKzb1B5goXOcmtD0RFxnwNuMxqkR6AUaaErZz+4o+FKmzxcSNBOLrzsICZVNYa1Rw==}
|
|
229
334
|
cpu: [arm64]
|
|
230
335
|
os: [darwin]
|
|
231
336
|
|
|
232
|
-
'@rollup/rollup-darwin-x64@4.
|
|
233
|
-
resolution: {integrity: sha512-
|
|
337
|
+
'@rollup/rollup-darwin-x64@4.55.3':
|
|
338
|
+
resolution: {integrity: sha512-FYZ4iVunXxtT+CZqQoPVwPhH7549e/Gy7PIRRtq4t5f/vt54pX6eG9ebttRH6QSH7r/zxAFA4EZGlQ0h0FvXiA==}
|
|
234
339
|
cpu: [x64]
|
|
235
340
|
os: [darwin]
|
|
236
341
|
|
|
237
|
-
'@rollup/rollup-freebsd-arm64@4.
|
|
238
|
-
resolution: {integrity: sha512-
|
|
342
|
+
'@rollup/rollup-freebsd-arm64@4.55.3':
|
|
343
|
+
resolution: {integrity: sha512-M/mwDCJ4wLsIgyxv2Lj7Len+UMHd4zAXu4GQ2UaCdksStglWhP61U3uowkaYBQBhVoNpwx5Hputo8eSqM7K82Q==}
|
|
239
344
|
cpu: [arm64]
|
|
240
345
|
os: [freebsd]
|
|
241
346
|
|
|
242
|
-
'@rollup/rollup-freebsd-x64@4.
|
|
243
|
-
resolution: {integrity: sha512-
|
|
347
|
+
'@rollup/rollup-freebsd-x64@4.55.3':
|
|
348
|
+
resolution: {integrity: sha512-5jZT2c7jBCrMegKYTYTpni8mg8y3uY8gzeq2ndFOANwNuC/xJbVAoGKR9LhMDA0H3nIhvaqUoBEuJoICBudFrA==}
|
|
244
349
|
cpu: [x64]
|
|
245
350
|
os: [freebsd]
|
|
246
351
|
|
|
247
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.
|
|
248
|
-
resolution: {integrity: sha512-
|
|
352
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.55.3':
|
|
353
|
+
resolution: {integrity: sha512-YeGUhkN1oA+iSPzzhEjVPS29YbViOr8s4lSsFaZKLHswgqP911xx25fPOyE9+khmN6W4VeM0aevbDp4kkEoHiA==}
|
|
249
354
|
cpu: [arm]
|
|
250
355
|
os: [linux]
|
|
251
356
|
libc: [glibc]
|
|
252
357
|
|
|
253
|
-
'@rollup/rollup-linux-arm-musleabihf@4.
|
|
254
|
-
resolution: {integrity: sha512
|
|
358
|
+
'@rollup/rollup-linux-arm-musleabihf@4.55.3':
|
|
359
|
+
resolution: {integrity: sha512-eo0iOIOvcAlWB3Z3eh8pVM8hZ0oVkK3AjEM9nSrkSug2l15qHzF3TOwT0747omI6+CJJvl7drwZepT+re6Fy/w==}
|
|
255
360
|
cpu: [arm]
|
|
256
361
|
os: [linux]
|
|
257
362
|
libc: [musl]
|
|
258
363
|
|
|
259
|
-
'@rollup/rollup-linux-arm64-gnu@4.
|
|
260
|
-
resolution: {integrity: sha512-
|
|
364
|
+
'@rollup/rollup-linux-arm64-gnu@4.55.3':
|
|
365
|
+
resolution: {integrity: sha512-DJay3ep76bKUDImmn//W5SvpjRN5LmK/ntWyeJs/dcnwiiHESd3N4uteK9FDLf0S0W8E6Y0sVRXpOCoQclQqNg==}
|
|
261
366
|
cpu: [arm64]
|
|
262
367
|
os: [linux]
|
|
263
368
|
libc: [glibc]
|
|
264
369
|
|
|
265
|
-
'@rollup/rollup-linux-arm64-musl@4.
|
|
266
|
-
resolution: {integrity: sha512-
|
|
370
|
+
'@rollup/rollup-linux-arm64-musl@4.55.3':
|
|
371
|
+
resolution: {integrity: sha512-BKKWQkY2WgJ5MC/ayvIJTHjy0JUGb5efaHCUiG/39sSUvAYRBaO3+/EK0AZT1RF3pSj86O24GLLik9mAYu0IJg==}
|
|
267
372
|
cpu: [arm64]
|
|
268
373
|
os: [linux]
|
|
269
374
|
libc: [musl]
|
|
270
375
|
|
|
271
|
-
'@rollup/rollup-linux-loong64-gnu@4.
|
|
272
|
-
resolution: {integrity: sha512-
|
|
376
|
+
'@rollup/rollup-linux-loong64-gnu@4.55.3':
|
|
377
|
+
resolution: {integrity: sha512-Q9nVlWtKAG7ISW80OiZGxTr6rYtyDSkauHUtvkQI6TNOJjFvpj4gcH+KaJihqYInnAzEEUetPQubRwHef4exVg==}
|
|
273
378
|
cpu: [loong64]
|
|
274
379
|
os: [linux]
|
|
275
380
|
libc: [glibc]
|
|
276
381
|
|
|
277
|
-
'@rollup/rollup-linux-
|
|
278
|
-
resolution: {integrity: sha512-
|
|
382
|
+
'@rollup/rollup-linux-loong64-musl@4.55.3':
|
|
383
|
+
resolution: {integrity: sha512-2H5LmhzrpC4fFRNwknzmmTvvyJPHwESoJgyReXeFoYYuIDfBhP29TEXOkCJE/KxHi27mj7wDUClNq78ue3QEBQ==}
|
|
384
|
+
cpu: [loong64]
|
|
385
|
+
os: [linux]
|
|
386
|
+
libc: [musl]
|
|
387
|
+
|
|
388
|
+
'@rollup/rollup-linux-ppc64-gnu@4.55.3':
|
|
389
|
+
resolution: {integrity: sha512-9S542V0ie9LCTznPYlvaeySwBeIEa7rDBgLHKZ5S9DBgcqdJYburabm8TqiqG6mrdTzfV5uttQRHcbKff9lWtA==}
|
|
279
390
|
cpu: [ppc64]
|
|
280
391
|
os: [linux]
|
|
281
392
|
libc: [glibc]
|
|
282
393
|
|
|
283
|
-
'@rollup/rollup-linux-
|
|
284
|
-
resolution: {integrity: sha512-
|
|
394
|
+
'@rollup/rollup-linux-ppc64-musl@4.55.3':
|
|
395
|
+
resolution: {integrity: sha512-ukxw+YH3XXpcezLgbJeasgxyTbdpnNAkrIlFGDl7t+pgCxZ89/6n1a+MxlY7CegU+nDgrgdqDelPRNQ/47zs0g==}
|
|
396
|
+
cpu: [ppc64]
|
|
397
|
+
os: [linux]
|
|
398
|
+
libc: [musl]
|
|
399
|
+
|
|
400
|
+
'@rollup/rollup-linux-riscv64-gnu@4.55.3':
|
|
401
|
+
resolution: {integrity: sha512-Iauw9UsTTvlF++FhghFJjqYxyXdggXsOqGpFBylaRopVpcbfyIIsNvkf9oGwfgIcf57z3m8+/oSYTo6HutBFNw==}
|
|
285
402
|
cpu: [riscv64]
|
|
286
403
|
os: [linux]
|
|
287
404
|
libc: [glibc]
|
|
288
405
|
|
|
289
|
-
'@rollup/rollup-linux-riscv64-musl@4.
|
|
290
|
-
resolution: {integrity: sha512-
|
|
406
|
+
'@rollup/rollup-linux-riscv64-musl@4.55.3':
|
|
407
|
+
resolution: {integrity: sha512-3OqKAHSEQXKdq9mQ4eajqUgNIK27VZPW3I26EP8miIzuKzCJ3aW3oEn2pzF+4/Hj/Moc0YDsOtBgT5bZ56/vcA==}
|
|
291
408
|
cpu: [riscv64]
|
|
292
409
|
os: [linux]
|
|
293
410
|
libc: [musl]
|
|
294
411
|
|
|
295
|
-
'@rollup/rollup-linux-s390x-gnu@4.
|
|
296
|
-
resolution: {integrity: sha512-
|
|
412
|
+
'@rollup/rollup-linux-s390x-gnu@4.55.3':
|
|
413
|
+
resolution: {integrity: sha512-0CM8dSVzVIaqMcXIFej8zZrSFLnGrAE8qlNbbHfTw1EEPnFTg1U1ekI0JdzjPyzSfUsHWtodilQQG/RA55berA==}
|
|
297
414
|
cpu: [s390x]
|
|
298
415
|
os: [linux]
|
|
299
416
|
libc: [glibc]
|
|
300
417
|
|
|
301
|
-
'@rollup/rollup-linux-x64-gnu@4.
|
|
302
|
-
resolution: {integrity: sha512
|
|
418
|
+
'@rollup/rollup-linux-x64-gnu@4.55.3':
|
|
419
|
+
resolution: {integrity: sha512-+fgJE12FZMIgBaKIAGd45rxf+5ftcycANJRWk8Vz0NnMTM5rADPGuRFTYar+Mqs560xuART7XsX2lSACa1iOmQ==}
|
|
303
420
|
cpu: [x64]
|
|
304
421
|
os: [linux]
|
|
305
422
|
libc: [glibc]
|
|
306
423
|
|
|
307
|
-
'@rollup/rollup-linux-x64-musl@4.
|
|
308
|
-
resolution: {integrity: sha512-
|
|
424
|
+
'@rollup/rollup-linux-x64-musl@4.55.3':
|
|
425
|
+
resolution: {integrity: sha512-tMD7NnbAolWPzQlJQJjVFh/fNH3K/KnA7K8gv2dJWCwwnaK6DFCYST1QXYWfu5V0cDwarWC8Sf/cfMHniNq21A==}
|
|
309
426
|
cpu: [x64]
|
|
310
427
|
os: [linux]
|
|
311
428
|
libc: [musl]
|
|
312
429
|
|
|
313
|
-
'@rollup/rollup-
|
|
314
|
-
resolution: {integrity: sha512-
|
|
430
|
+
'@rollup/rollup-openbsd-x64@4.55.3':
|
|
431
|
+
resolution: {integrity: sha512-u5KsqxOxjEeIbn7bUK1MPM34jrnPwjeqgyin4/N6e/KzXKfpE9Mi0nCxcQjaM9lLmPcHmn/xx1yOjgTMtu1jWQ==}
|
|
432
|
+
cpu: [x64]
|
|
433
|
+
os: [openbsd]
|
|
434
|
+
|
|
435
|
+
'@rollup/rollup-openharmony-arm64@4.55.3':
|
|
436
|
+
resolution: {integrity: sha512-vo54aXwjpTtsAnb3ca7Yxs9t2INZg7QdXN/7yaoG7nPGbOBXYXQY41Km+S1Ov26vzOAzLcAjmMdjyEqS1JkVhw==}
|
|
315
437
|
cpu: [arm64]
|
|
316
438
|
os: [openharmony]
|
|
317
439
|
|
|
318
|
-
'@rollup/rollup-win32-arm64-msvc@4.
|
|
319
|
-
resolution: {integrity: sha512-
|
|
440
|
+
'@rollup/rollup-win32-arm64-msvc@4.55.3':
|
|
441
|
+
resolution: {integrity: sha512-HI+PIVZ+m+9AgpnY3pt6rinUdRYrGHvmVdsNQ4odNqQ/eRF78DVpMR7mOq7nW06QxpczibwBmeQzB68wJ+4W4A==}
|
|
320
442
|
cpu: [arm64]
|
|
321
443
|
os: [win32]
|
|
322
444
|
|
|
323
|
-
'@rollup/rollup-win32-ia32-msvc@4.
|
|
324
|
-
resolution: {integrity: sha512-
|
|
445
|
+
'@rollup/rollup-win32-ia32-msvc@4.55.3':
|
|
446
|
+
resolution: {integrity: sha512-vRByotbdMo3Wdi+8oC2nVxtc3RkkFKrGaok+a62AT8lz/YBuQjaVYAS5Zcs3tPzW43Vsf9J0wehJbUY5xRSekA==}
|
|
325
447
|
cpu: [ia32]
|
|
326
448
|
os: [win32]
|
|
327
449
|
|
|
328
|
-
'@rollup/rollup-win32-x64-gnu@4.
|
|
329
|
-
resolution: {integrity: sha512-
|
|
450
|
+
'@rollup/rollup-win32-x64-gnu@4.55.3':
|
|
451
|
+
resolution: {integrity: sha512-POZHq7UeuzMJljC5NjKi8vKMFN6/5EOqcX1yGntNLp7rUTpBAXQ1hW8kWPFxYLv07QMcNM75xqVLGPWQq6TKFA==}
|
|
330
452
|
cpu: [x64]
|
|
331
453
|
os: [win32]
|
|
332
454
|
|
|
333
|
-
'@rollup/rollup-win32-x64-msvc@4.
|
|
334
|
-
resolution: {integrity: sha512-
|
|
455
|
+
'@rollup/rollup-win32-x64-msvc@4.55.3':
|
|
456
|
+
resolution: {integrity: sha512-aPFONczE4fUFKNXszdvnd2GqKEYQdV5oEsIbKPujJmWlCI9zEsv1Otig8RKK+X9bed9gFUN6LAeN4ZcNuu4zjg==}
|
|
335
457
|
cpu: [x64]
|
|
336
458
|
os: [win32]
|
|
337
459
|
|
|
460
|
+
'@supabase/auth-js@2.95.3':
|
|
461
|
+
resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
|
|
462
|
+
engines: {node: '>=20.0.0'}
|
|
463
|
+
|
|
464
|
+
'@supabase/functions-js@2.95.3':
|
|
465
|
+
resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
|
|
466
|
+
engines: {node: '>=20.0.0'}
|
|
467
|
+
|
|
468
|
+
'@supabase/postgrest-js@2.95.3':
|
|
469
|
+
resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
|
|
470
|
+
engines: {node: '>=20.0.0'}
|
|
471
|
+
|
|
472
|
+
'@supabase/realtime-js@2.95.3':
|
|
473
|
+
resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
|
|
474
|
+
engines: {node: '>=20.0.0'}
|
|
475
|
+
|
|
476
|
+
'@supabase/storage-js@2.95.3':
|
|
477
|
+
resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
|
|
478
|
+
engines: {node: '>=20.0.0'}
|
|
479
|
+
|
|
480
|
+
'@supabase/supabase-js@2.95.3':
|
|
481
|
+
resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
|
|
482
|
+
engines: {node: '>=20.0.0'}
|
|
483
|
+
|
|
484
|
+
'@types/body-parser@1.19.6':
|
|
485
|
+
resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==}
|
|
486
|
+
|
|
487
|
+
'@types/connect@3.4.38':
|
|
488
|
+
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
|
|
489
|
+
|
|
338
490
|
'@types/estree@1.0.8':
|
|
339
491
|
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
340
492
|
|
|
493
|
+
'@types/express-serve-static-core@5.1.1':
|
|
494
|
+
resolution: {integrity: sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==}
|
|
495
|
+
|
|
496
|
+
'@types/express@5.0.6':
|
|
497
|
+
resolution: {integrity: sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==}
|
|
498
|
+
|
|
499
|
+
'@types/http-errors@2.0.5':
|
|
500
|
+
resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
|
|
501
|
+
|
|
502
|
+
'@types/json-schema@7.0.15':
|
|
503
|
+
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
504
|
+
|
|
505
|
+
'@types/node@22.19.15':
|
|
506
|
+
resolution: {integrity: sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==}
|
|
507
|
+
|
|
508
|
+
'@types/phoenix@1.6.7':
|
|
509
|
+
resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
|
|
510
|
+
|
|
511
|
+
'@types/qs@6.15.0':
|
|
512
|
+
resolution: {integrity: sha512-JawvT8iBVWpzTrz3EGw9BTQFg3BQNmwERdKE22vlTxawwtbyUSlMppvZYKLZzB5zgACXdXxbD3m1bXaMqP/9ow==}
|
|
513
|
+
|
|
514
|
+
'@types/range-parser@1.2.7':
|
|
515
|
+
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
|
|
516
|
+
|
|
517
|
+
'@types/send@1.2.1':
|
|
518
|
+
resolution: {integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==}
|
|
519
|
+
|
|
520
|
+
'@types/serve-static@2.2.0':
|
|
521
|
+
resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==}
|
|
522
|
+
|
|
523
|
+
'@types/uuid@10.0.0':
|
|
524
|
+
resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
|
|
525
|
+
|
|
526
|
+
'@types/ws@8.18.1':
|
|
527
|
+
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
|
|
528
|
+
|
|
529
|
+
'@typescript-eslint/eslint-plugin@8.53.1':
|
|
530
|
+
resolution: {integrity: sha512-cFYYFZ+oQFi6hUnBTbLRXfTJiaQtYE3t4O692agbBl+2Zy+eqSKWtPjhPXJu1G7j4RLjKgeJPDdq3EqOwmX5Ag==}
|
|
531
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
532
|
+
peerDependencies:
|
|
533
|
+
'@typescript-eslint/parser': ^8.53.1
|
|
534
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
535
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
536
|
+
|
|
537
|
+
'@typescript-eslint/parser@8.53.1':
|
|
538
|
+
resolution: {integrity: sha512-nm3cvFN9SqZGXjmw5bZ6cGmvJSyJPn0wU9gHAZZHDnZl2wF9PhHv78Xf06E0MaNk4zLVHL8hb2/c32XvyJOLQg==}
|
|
539
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
540
|
+
peerDependencies:
|
|
541
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
542
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
543
|
+
|
|
544
|
+
'@typescript-eslint/project-service@8.53.1':
|
|
545
|
+
resolution: {integrity: sha512-WYC4FB5Ra0xidsmlPb+1SsnaSKPmS3gsjIARwbEkHkoWloQmuzcfypljaJcR78uyLA1h8sHdWWPHSLDI+MtNog==}
|
|
546
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
547
|
+
peerDependencies:
|
|
548
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
549
|
+
|
|
550
|
+
'@typescript-eslint/scope-manager@8.53.1':
|
|
551
|
+
resolution: {integrity: sha512-Lu23yw1uJMFY8cUeq7JlrizAgeQvWugNQzJp8C3x8Eo5Jw5Q2ykMdiiTB9vBVOOUBysMzmRRmUfwFrZuI2C4SQ==}
|
|
552
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
553
|
+
|
|
554
|
+
'@typescript-eslint/tsconfig-utils@8.53.1':
|
|
555
|
+
resolution: {integrity: sha512-qfvLXS6F6b1y43pnf0pPbXJ+YoXIC7HKg0UGZ27uMIemKMKA6XH2DTxsEDdpdN29D+vHV07x/pnlPNVLhdhWiA==}
|
|
556
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
557
|
+
peerDependencies:
|
|
558
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
559
|
+
|
|
560
|
+
'@typescript-eslint/type-utils@8.53.1':
|
|
561
|
+
resolution: {integrity: sha512-MOrdtNvyhy0rHyv0ENzub1d4wQYKb2NmIqG7qEqPWFW7Mpy2jzFC3pQ2yKDvirZB7jypm5uGjF2Qqs6OIqu47w==}
|
|
562
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
563
|
+
peerDependencies:
|
|
564
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
565
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
566
|
+
|
|
567
|
+
'@typescript-eslint/types@8.53.1':
|
|
568
|
+
resolution: {integrity: sha512-jr/swrr2aRmUAUjW5/zQHbMaui//vQlsZcJKijZf3M26bnmLj8LyZUpj8/Rd6uzaek06OWsqdofN/Thenm5O8A==}
|
|
569
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
570
|
+
|
|
571
|
+
'@typescript-eslint/typescript-estree@8.53.1':
|
|
572
|
+
resolution: {integrity: sha512-RGlVipGhQAG4GxV1s34O91cxQ/vWiHJTDHbXRr0li2q/BGg3RR/7NM8QDWgkEgrwQYCvmJV9ichIwyoKCQ+DTg==}
|
|
573
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
574
|
+
peerDependencies:
|
|
575
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
576
|
+
|
|
577
|
+
'@typescript-eslint/utils@8.53.1':
|
|
578
|
+
resolution: {integrity: sha512-c4bMvGVWW4hv6JmDUEG7fSYlWOl3II2I4ylt0NM+seinYQlZMQIaKaXIIVJWt9Ofh6whrpM+EdDQXKXjNovvrg==}
|
|
579
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
580
|
+
peerDependencies:
|
|
581
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
582
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
583
|
+
|
|
584
|
+
'@typescript-eslint/visitor-keys@8.53.1':
|
|
585
|
+
resolution: {integrity: sha512-oy+wV7xDKFPRyNggmXuZQSBzvoLnpmJs+GhzRhPjrxl2b/jIlyjVokzm47CZCDUdXKr2zd7ZLodPfOBpOPyPlg==}
|
|
586
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
587
|
+
|
|
588
|
+
accepts@1.3.8:
|
|
589
|
+
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
|
|
590
|
+
engines: {node: '>= 0.6'}
|
|
591
|
+
|
|
592
|
+
acorn-jsx@5.3.2:
|
|
593
|
+
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
|
594
|
+
peerDependencies:
|
|
595
|
+
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
596
|
+
|
|
597
|
+
acorn@8.15.0:
|
|
598
|
+
resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
|
|
599
|
+
engines: {node: '>=0.4.0'}
|
|
600
|
+
hasBin: true
|
|
601
|
+
|
|
602
|
+
acorn@8.16.0:
|
|
603
|
+
resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
|
|
604
|
+
engines: {node: '>=0.4.0'}
|
|
605
|
+
hasBin: true
|
|
606
|
+
|
|
607
|
+
ajv@6.12.6:
|
|
608
|
+
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
|
|
609
|
+
|
|
610
|
+
ansi-styles@4.3.0:
|
|
611
|
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
612
|
+
engines: {node: '>=8'}
|
|
613
|
+
|
|
614
|
+
ansi-styles@5.2.0:
|
|
615
|
+
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
|
|
616
|
+
engines: {node: '>=10'}
|
|
617
|
+
|
|
341
618
|
any-promise@1.3.0:
|
|
342
619
|
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
|
|
343
620
|
|
|
@@ -348,6 +625,15 @@ packages:
|
|
|
348
625
|
arg@5.0.2:
|
|
349
626
|
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
|
|
350
627
|
|
|
628
|
+
argparse@2.0.1:
|
|
629
|
+
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
|
630
|
+
|
|
631
|
+
array-flatten@1.1.1:
|
|
632
|
+
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
|
|
633
|
+
|
|
634
|
+
asynckit@0.4.0:
|
|
635
|
+
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
|
636
|
+
|
|
351
637
|
autoprefixer@10.4.23:
|
|
352
638
|
resolution: {integrity: sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==}
|
|
353
639
|
engines: {node: ^10 || ^12 || >=14}
|
|
@@ -355,14 +641,33 @@ packages:
|
|
|
355
641
|
peerDependencies:
|
|
356
642
|
postcss: ^8.1.0
|
|
357
643
|
|
|
358
|
-
|
|
359
|
-
resolution: {integrity: sha512-
|
|
644
|
+
axios@1.13.2:
|
|
645
|
+
resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==}
|
|
646
|
+
|
|
647
|
+
balanced-match@1.0.2:
|
|
648
|
+
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
|
649
|
+
|
|
650
|
+
base64-js@1.5.1:
|
|
651
|
+
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
652
|
+
|
|
653
|
+
baseline-browser-mapping@2.9.16:
|
|
654
|
+
resolution: {integrity: sha512-KeUZdBuxngy825i8xvzaK1Ncnkx0tBmb3k8DkEuqjKRkmtvNTjey2ZsNeh8Dw4lfKvbCOu9oeNx2TKm2vHqcRw==}
|
|
360
655
|
hasBin: true
|
|
361
656
|
|
|
362
657
|
binary-extensions@2.3.0:
|
|
363
658
|
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
|
|
364
659
|
engines: {node: '>=8'}
|
|
365
660
|
|
|
661
|
+
body-parser@1.20.4:
|
|
662
|
+
resolution: {integrity: sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==}
|
|
663
|
+
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
|
|
664
|
+
|
|
665
|
+
brace-expansion@1.1.12:
|
|
666
|
+
resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
|
|
667
|
+
|
|
668
|
+
brace-expansion@2.0.2:
|
|
669
|
+
resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
|
|
670
|
+
|
|
366
671
|
braces@3.0.3:
|
|
367
672
|
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
|
368
673
|
engines: {node: '>=8'}
|
|
@@ -372,37 +677,190 @@ packages:
|
|
|
372
677
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
373
678
|
hasBin: true
|
|
374
679
|
|
|
680
|
+
bundle-require@5.1.0:
|
|
681
|
+
resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
|
|
682
|
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
683
|
+
peerDependencies:
|
|
684
|
+
esbuild: ^0.27.2
|
|
685
|
+
|
|
686
|
+
bytes@3.1.2:
|
|
687
|
+
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
|
|
688
|
+
engines: {node: '>= 0.8'}
|
|
689
|
+
|
|
690
|
+
cac@6.7.14:
|
|
691
|
+
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
|
|
692
|
+
engines: {node: '>=8'}
|
|
693
|
+
|
|
694
|
+
call-bind-apply-helpers@1.0.2:
|
|
695
|
+
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
|
|
696
|
+
engines: {node: '>= 0.4'}
|
|
697
|
+
|
|
698
|
+
call-bound@1.0.4:
|
|
699
|
+
resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
|
|
700
|
+
engines: {node: '>= 0.4'}
|
|
701
|
+
|
|
702
|
+
callsites@3.1.0:
|
|
703
|
+
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
|
704
|
+
engines: {node: '>=6'}
|
|
705
|
+
|
|
375
706
|
camelcase-css@2.0.1:
|
|
376
707
|
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
|
|
377
708
|
engines: {node: '>= 6'}
|
|
378
709
|
|
|
379
|
-
|
|
380
|
-
resolution: {integrity: sha512-
|
|
710
|
+
camelcase@6.3.0:
|
|
711
|
+
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
|
|
712
|
+
engines: {node: '>=10'}
|
|
713
|
+
|
|
714
|
+
caniuse-lite@1.0.30001765:
|
|
715
|
+
resolution: {integrity: sha512-LWcNtSyZrakjECqmpP4qdg0MMGdN368D7X8XvvAqOcqMv0RxnlqVKZl2V6/mBR68oYMxOZPLw/gO7DuisMHUvQ==}
|
|
716
|
+
|
|
717
|
+
chalk@4.1.2:
|
|
718
|
+
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
|
719
|
+
engines: {node: '>=10'}
|
|
381
720
|
|
|
382
721
|
chokidar@3.6.0:
|
|
383
722
|
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
|
384
723
|
engines: {node: '>= 8.10.0'}
|
|
385
724
|
|
|
725
|
+
chokidar@4.0.3:
|
|
726
|
+
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
|
|
727
|
+
engines: {node: '>= 14.16.0'}
|
|
728
|
+
|
|
729
|
+
color-convert@2.0.1:
|
|
730
|
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
731
|
+
engines: {node: '>=7.0.0'}
|
|
732
|
+
|
|
733
|
+
color-name@1.1.4:
|
|
734
|
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
735
|
+
|
|
736
|
+
combined-stream@1.0.8:
|
|
737
|
+
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
|
|
738
|
+
engines: {node: '>= 0.8'}
|
|
739
|
+
|
|
386
740
|
commander@4.1.1:
|
|
387
741
|
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
|
|
388
742
|
engines: {node: '>= 6'}
|
|
389
743
|
|
|
744
|
+
concat-map@0.0.1:
|
|
745
|
+
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
|
746
|
+
|
|
747
|
+
confbox@0.1.8:
|
|
748
|
+
resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
|
|
749
|
+
|
|
750
|
+
consola@3.4.2:
|
|
751
|
+
resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
|
|
752
|
+
engines: {node: ^14.18.0 || >=16.10.0}
|
|
753
|
+
|
|
754
|
+
console-table-printer@2.15.0:
|
|
755
|
+
resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
|
|
756
|
+
|
|
757
|
+
content-disposition@0.5.4:
|
|
758
|
+
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
|
|
759
|
+
engines: {node: '>= 0.6'}
|
|
760
|
+
|
|
761
|
+
content-type@1.0.5:
|
|
762
|
+
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
|
|
763
|
+
engines: {node: '>= 0.6'}
|
|
764
|
+
|
|
765
|
+
cookie-signature@1.0.7:
|
|
766
|
+
resolution: {integrity: sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==}
|
|
767
|
+
|
|
768
|
+
cookie@0.7.2:
|
|
769
|
+
resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
|
|
770
|
+
engines: {node: '>= 0.6'}
|
|
771
|
+
|
|
772
|
+
coze-coding-dev-sdk@0.7.16:
|
|
773
|
+
resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
|
|
774
|
+
engines: {node: '>=18.0.0'}
|
|
775
|
+
hasBin: true
|
|
776
|
+
|
|
777
|
+
cross-spawn@7.0.6:
|
|
778
|
+
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
|
779
|
+
engines: {node: '>= 8'}
|
|
780
|
+
|
|
390
781
|
cssesc@3.0.0:
|
|
391
782
|
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
|
392
783
|
engines: {node: '>=4'}
|
|
393
784
|
hasBin: true
|
|
394
785
|
|
|
786
|
+
debug@2.6.9:
|
|
787
|
+
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
|
|
788
|
+
peerDependencies:
|
|
789
|
+
supports-color: '*'
|
|
790
|
+
peerDependenciesMeta:
|
|
791
|
+
supports-color:
|
|
792
|
+
optional: true
|
|
793
|
+
|
|
794
|
+
debug@4.4.3:
|
|
795
|
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
796
|
+
engines: {node: '>=6.0'}
|
|
797
|
+
peerDependencies:
|
|
798
|
+
supports-color: '*'
|
|
799
|
+
peerDependenciesMeta:
|
|
800
|
+
supports-color:
|
|
801
|
+
optional: true
|
|
802
|
+
|
|
803
|
+
decamelize@1.2.0:
|
|
804
|
+
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
|
|
805
|
+
engines: {node: '>=0.10.0'}
|
|
806
|
+
|
|
807
|
+
deep-is@0.1.4:
|
|
808
|
+
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
|
809
|
+
|
|
810
|
+
delayed-stream@1.0.0:
|
|
811
|
+
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
|
|
812
|
+
engines: {node: '>=0.4.0'}
|
|
813
|
+
|
|
814
|
+
depd@2.0.0:
|
|
815
|
+
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
|
|
816
|
+
engines: {node: '>= 0.8'}
|
|
817
|
+
|
|
818
|
+
destroy@1.2.0:
|
|
819
|
+
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
|
|
820
|
+
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
|
|
821
|
+
|
|
395
822
|
didyoumean@1.2.2:
|
|
396
823
|
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
|
|
397
824
|
|
|
398
825
|
dlv@1.1.3:
|
|
399
826
|
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
|
|
400
827
|
|
|
828
|
+
dotenv@17.2.4:
|
|
829
|
+
resolution: {integrity: sha512-mudtfb4zRB4bVvdj0xRo+e6duH1csJRM8IukBqfTRvHotn9+LBXB8ynAidP9zHqoRC/fsllXgk4kCKlR21fIhw==}
|
|
830
|
+
engines: {node: '>=12'}
|
|
831
|
+
|
|
832
|
+
dunder-proto@1.0.1:
|
|
833
|
+
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
|
834
|
+
engines: {node: '>= 0.4'}
|
|
835
|
+
|
|
836
|
+
ee-first@1.1.1:
|
|
837
|
+
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
|
838
|
+
|
|
401
839
|
electron-to-chromium@1.5.267:
|
|
402
840
|
resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
|
|
403
841
|
|
|
404
|
-
|
|
405
|
-
resolution: {integrity: sha512-
|
|
842
|
+
encodeurl@2.0.0:
|
|
843
|
+
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
|
|
844
|
+
engines: {node: '>= 0.8'}
|
|
845
|
+
|
|
846
|
+
es-define-property@1.0.1:
|
|
847
|
+
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
|
|
848
|
+
engines: {node: '>= 0.4'}
|
|
849
|
+
|
|
850
|
+
es-errors@1.3.0:
|
|
851
|
+
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
|
852
|
+
engines: {node: '>= 0.4'}
|
|
853
|
+
|
|
854
|
+
es-object-atoms@1.1.1:
|
|
855
|
+
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
|
|
856
|
+
engines: {node: '>= 0.4'}
|
|
857
|
+
|
|
858
|
+
es-set-tostringtag@2.1.0:
|
|
859
|
+
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
|
|
860
|
+
engines: {node: '>= 0.4'}
|
|
861
|
+
|
|
862
|
+
esbuild@0.27.2:
|
|
863
|
+
resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
|
|
406
864
|
engines: {node: '>=18'}
|
|
407
865
|
hasBin: true
|
|
408
866
|
|
|
@@ -410,10 +868,79 @@ packages:
|
|
|
410
868
|
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
411
869
|
engines: {node: '>=6'}
|
|
412
870
|
|
|
871
|
+
escape-html@1.0.3:
|
|
872
|
+
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
|
|
873
|
+
|
|
874
|
+
escape-string-regexp@4.0.0:
|
|
875
|
+
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
|
876
|
+
engines: {node: '>=10'}
|
|
877
|
+
|
|
878
|
+
eslint-scope@8.4.0:
|
|
879
|
+
resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
|
|
880
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
881
|
+
|
|
882
|
+
eslint-visitor-keys@3.4.3:
|
|
883
|
+
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
|
|
884
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
885
|
+
|
|
886
|
+
eslint-visitor-keys@4.2.1:
|
|
887
|
+
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
|
|
888
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
889
|
+
|
|
890
|
+
eslint@9.39.2:
|
|
891
|
+
resolution: {integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==}
|
|
892
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
893
|
+
hasBin: true
|
|
894
|
+
peerDependencies:
|
|
895
|
+
jiti: '*'
|
|
896
|
+
peerDependenciesMeta:
|
|
897
|
+
jiti:
|
|
898
|
+
optional: true
|
|
899
|
+
|
|
900
|
+
espree@10.4.0:
|
|
901
|
+
resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
|
|
902
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
903
|
+
|
|
904
|
+
esquery@1.7.0:
|
|
905
|
+
resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
|
|
906
|
+
engines: {node: '>=0.10'}
|
|
907
|
+
|
|
908
|
+
esrecurse@4.3.0:
|
|
909
|
+
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
|
910
|
+
engines: {node: '>=4.0'}
|
|
911
|
+
|
|
912
|
+
estraverse@5.3.0:
|
|
913
|
+
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
|
914
|
+
engines: {node: '>=4.0'}
|
|
915
|
+
|
|
916
|
+
esutils@2.0.3:
|
|
917
|
+
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
|
918
|
+
engines: {node: '>=0.10.0'}
|
|
919
|
+
|
|
920
|
+
etag@1.8.1:
|
|
921
|
+
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
|
|
922
|
+
engines: {node: '>= 0.6'}
|
|
923
|
+
|
|
924
|
+
eventemitter3@4.0.7:
|
|
925
|
+
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
|
|
926
|
+
|
|
927
|
+
express@4.22.1:
|
|
928
|
+
resolution: {integrity: sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==}
|
|
929
|
+
engines: {node: '>= 0.10.0'}
|
|
930
|
+
|
|
931
|
+
fast-deep-equal@3.1.3:
|
|
932
|
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
933
|
+
|
|
413
934
|
fast-glob@3.3.3:
|
|
414
935
|
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
|
|
415
936
|
engines: {node: '>=8.6.0'}
|
|
416
937
|
|
|
938
|
+
fast-json-stable-stringify@2.1.0:
|
|
939
|
+
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
|
940
|
+
|
|
941
|
+
fast-levenshtein@2.0.6:
|
|
942
|
+
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
|
943
|
+
|
|
417
944
|
fastq@1.20.1:
|
|
418
945
|
resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
|
|
419
946
|
|
|
@@ -426,13 +953,56 @@ packages:
|
|
|
426
953
|
picomatch:
|
|
427
954
|
optional: true
|
|
428
955
|
|
|
956
|
+
file-entry-cache@8.0.0:
|
|
957
|
+
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
|
|
958
|
+
engines: {node: '>=16.0.0'}
|
|
959
|
+
|
|
429
960
|
fill-range@7.1.1:
|
|
430
961
|
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
|
|
431
962
|
engines: {node: '>=8'}
|
|
432
963
|
|
|
964
|
+
finalhandler@1.3.2:
|
|
965
|
+
resolution: {integrity: sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==}
|
|
966
|
+
engines: {node: '>= 0.8'}
|
|
967
|
+
|
|
968
|
+
find-up@5.0.0:
|
|
969
|
+
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
|
|
970
|
+
engines: {node: '>=10'}
|
|
971
|
+
|
|
972
|
+
fix-dts-default-cjs-exports@1.0.1:
|
|
973
|
+
resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==}
|
|
974
|
+
|
|
975
|
+
flat-cache@4.0.1:
|
|
976
|
+
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
|
|
977
|
+
engines: {node: '>=16'}
|
|
978
|
+
|
|
979
|
+
flatted@3.3.3:
|
|
980
|
+
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
|
|
981
|
+
|
|
982
|
+
follow-redirects@1.15.11:
|
|
983
|
+
resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
|
|
984
|
+
engines: {node: '>=4.0'}
|
|
985
|
+
peerDependencies:
|
|
986
|
+
debug: '*'
|
|
987
|
+
peerDependenciesMeta:
|
|
988
|
+
debug:
|
|
989
|
+
optional: true
|
|
990
|
+
|
|
991
|
+
form-data@4.0.5:
|
|
992
|
+
resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
|
|
993
|
+
engines: {node: '>= 6'}
|
|
994
|
+
|
|
995
|
+
forwarded@0.2.0:
|
|
996
|
+
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
|
|
997
|
+
engines: {node: '>= 0.6'}
|
|
998
|
+
|
|
433
999
|
fraction.js@5.3.4:
|
|
434
1000
|
resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
|
|
435
1001
|
|
|
1002
|
+
fresh@0.5.2:
|
|
1003
|
+
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
|
|
1004
|
+
engines: {node: '>= 0.6'}
|
|
1005
|
+
|
|
436
1006
|
fsevents@2.3.3:
|
|
437
1007
|
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
438
1008
|
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
@@ -441,6 +1011,17 @@ packages:
|
|
|
441
1011
|
function-bind@1.1.2:
|
|
442
1012
|
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
|
443
1013
|
|
|
1014
|
+
get-intrinsic@1.3.0:
|
|
1015
|
+
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
|
|
1016
|
+
engines: {node: '>= 0.4'}
|
|
1017
|
+
|
|
1018
|
+
get-proto@1.0.1:
|
|
1019
|
+
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
|
|
1020
|
+
engines: {node: '>= 0.4'}
|
|
1021
|
+
|
|
1022
|
+
get-tsconfig@4.13.6:
|
|
1023
|
+
resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==}
|
|
1024
|
+
|
|
444
1025
|
glob-parent@5.1.2:
|
|
445
1026
|
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
|
446
1027
|
engines: {node: '>= 6'}
|
|
@@ -449,10 +1030,65 @@ packages:
|
|
|
449
1030
|
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
|
450
1031
|
engines: {node: '>=10.13.0'}
|
|
451
1032
|
|
|
1033
|
+
globals@14.0.0:
|
|
1034
|
+
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
|
1035
|
+
engines: {node: '>=18'}
|
|
1036
|
+
|
|
1037
|
+
gopd@1.2.0:
|
|
1038
|
+
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
|
|
1039
|
+
engines: {node: '>= 0.4'}
|
|
1040
|
+
|
|
1041
|
+
has-flag@4.0.0:
|
|
1042
|
+
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
|
1043
|
+
engines: {node: '>=8'}
|
|
1044
|
+
|
|
1045
|
+
has-symbols@1.1.0:
|
|
1046
|
+
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
|
|
1047
|
+
engines: {node: '>= 0.4'}
|
|
1048
|
+
|
|
1049
|
+
has-tostringtag@1.0.2:
|
|
1050
|
+
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
|
|
1051
|
+
engines: {node: '>= 0.4'}
|
|
1052
|
+
|
|
452
1053
|
hasown@2.0.2:
|
|
453
1054
|
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
|
|
454
1055
|
engines: {node: '>= 0.4'}
|
|
455
1056
|
|
|
1057
|
+
http-errors@2.0.1:
|
|
1058
|
+
resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
|
|
1059
|
+
engines: {node: '>= 0.8'}
|
|
1060
|
+
|
|
1061
|
+
iceberg-js@0.8.1:
|
|
1062
|
+
resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
|
|
1063
|
+
engines: {node: '>=20.0.0'}
|
|
1064
|
+
|
|
1065
|
+
iconv-lite@0.4.24:
|
|
1066
|
+
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
|
|
1067
|
+
engines: {node: '>=0.10.0'}
|
|
1068
|
+
|
|
1069
|
+
ignore@5.3.2:
|
|
1070
|
+
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
|
1071
|
+
engines: {node: '>= 4'}
|
|
1072
|
+
|
|
1073
|
+
ignore@7.0.5:
|
|
1074
|
+
resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
|
|
1075
|
+
engines: {node: '>= 4'}
|
|
1076
|
+
|
|
1077
|
+
import-fresh@3.3.1:
|
|
1078
|
+
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
|
|
1079
|
+
engines: {node: '>=6'}
|
|
1080
|
+
|
|
1081
|
+
imurmurhash@0.1.4:
|
|
1082
|
+
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
|
1083
|
+
engines: {node: '>=0.8.19'}
|
|
1084
|
+
|
|
1085
|
+
inherits@2.0.4:
|
|
1086
|
+
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
1087
|
+
|
|
1088
|
+
ipaddr.js@1.9.1:
|
|
1089
|
+
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
|
|
1090
|
+
engines: {node: '>= 0.10'}
|
|
1091
|
+
|
|
456
1092
|
is-binary-path@2.1.0:
|
|
457
1093
|
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
|
458
1094
|
engines: {node: '>=8'}
|
|
@@ -473,10 +1109,57 @@ packages:
|
|
|
473
1109
|
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
|
474
1110
|
engines: {node: '>=0.12.0'}
|
|
475
1111
|
|
|
1112
|
+
isexe@2.0.0:
|
|
1113
|
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
1114
|
+
|
|
476
1115
|
jiti@1.21.7:
|
|
477
1116
|
resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
|
|
478
1117
|
hasBin: true
|
|
479
1118
|
|
|
1119
|
+
joycon@3.1.1:
|
|
1120
|
+
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
|
|
1121
|
+
engines: {node: '>=10'}
|
|
1122
|
+
|
|
1123
|
+
js-tiktoken@1.0.21:
|
|
1124
|
+
resolution: {integrity: sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==}
|
|
1125
|
+
|
|
1126
|
+
js-yaml@4.1.1:
|
|
1127
|
+
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
|
|
1128
|
+
hasBin: true
|
|
1129
|
+
|
|
1130
|
+
json-buffer@3.0.1:
|
|
1131
|
+
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
|
|
1132
|
+
|
|
1133
|
+
json-schema-traverse@0.4.1:
|
|
1134
|
+
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
|
1135
|
+
|
|
1136
|
+
json-stable-stringify-without-jsonify@1.0.1:
|
|
1137
|
+
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
|
1138
|
+
|
|
1139
|
+
keyv@4.5.4:
|
|
1140
|
+
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
|
|
1141
|
+
|
|
1142
|
+
langsmith@0.4.7:
|
|
1143
|
+
resolution: {integrity: sha512-Esv5g/J8wwRwbGQr10PB9+bLsNk0mWbrXc7nnEreQDhh0azbU57I7epSnT7GC4sS4EOWavhbxk+6p8PTXtreHw==}
|
|
1144
|
+
peerDependencies:
|
|
1145
|
+
'@opentelemetry/api': '*'
|
|
1146
|
+
'@opentelemetry/exporter-trace-otlp-proto': '*'
|
|
1147
|
+
'@opentelemetry/sdk-trace-base': '*'
|
|
1148
|
+
openai: '*'
|
|
1149
|
+
peerDependenciesMeta:
|
|
1150
|
+
'@opentelemetry/api':
|
|
1151
|
+
optional: true
|
|
1152
|
+
'@opentelemetry/exporter-trace-otlp-proto':
|
|
1153
|
+
optional: true
|
|
1154
|
+
'@opentelemetry/sdk-trace-base':
|
|
1155
|
+
optional: true
|
|
1156
|
+
openai:
|
|
1157
|
+
optional: true
|
|
1158
|
+
|
|
1159
|
+
levn@0.4.1:
|
|
1160
|
+
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
|
1161
|
+
engines: {node: '>= 0.8.0'}
|
|
1162
|
+
|
|
480
1163
|
lilconfig@3.1.3:
|
|
481
1164
|
resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
|
|
482
1165
|
engines: {node: '>=14'}
|
|
@@ -484,14 +1167,76 @@ packages:
|
|
|
484
1167
|
lines-and-columns@1.2.4:
|
|
485
1168
|
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
|
486
1169
|
|
|
1170
|
+
load-tsconfig@0.2.5:
|
|
1171
|
+
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
|
|
1172
|
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
1173
|
+
|
|
1174
|
+
locate-path@6.0.0:
|
|
1175
|
+
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
|
1176
|
+
engines: {node: '>=10'}
|
|
1177
|
+
|
|
1178
|
+
lodash.merge@4.6.2:
|
|
1179
|
+
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
|
1180
|
+
|
|
1181
|
+
magic-string@0.30.21:
|
|
1182
|
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
1183
|
+
|
|
1184
|
+
math-intrinsics@1.1.0:
|
|
1185
|
+
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
|
|
1186
|
+
engines: {node: '>= 0.4'}
|
|
1187
|
+
|
|
1188
|
+
media-typer@0.3.0:
|
|
1189
|
+
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
|
|
1190
|
+
engines: {node: '>= 0.6'}
|
|
1191
|
+
|
|
1192
|
+
merge-descriptors@1.0.3:
|
|
1193
|
+
resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
|
|
1194
|
+
|
|
487
1195
|
merge2@1.4.1:
|
|
488
1196
|
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
|
489
1197
|
engines: {node: '>= 8'}
|
|
490
1198
|
|
|
1199
|
+
methods@1.1.2:
|
|
1200
|
+
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
|
|
1201
|
+
engines: {node: '>= 0.6'}
|
|
1202
|
+
|
|
491
1203
|
micromatch@4.0.8:
|
|
492
1204
|
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
|
|
493
1205
|
engines: {node: '>=8.6'}
|
|
494
1206
|
|
|
1207
|
+
mime-db@1.52.0:
|
|
1208
|
+
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
|
|
1209
|
+
engines: {node: '>= 0.6'}
|
|
1210
|
+
|
|
1211
|
+
mime-types@2.1.35:
|
|
1212
|
+
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
|
|
1213
|
+
engines: {node: '>= 0.6'}
|
|
1214
|
+
|
|
1215
|
+
mime@1.6.0:
|
|
1216
|
+
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
|
|
1217
|
+
engines: {node: '>=4'}
|
|
1218
|
+
hasBin: true
|
|
1219
|
+
|
|
1220
|
+
minimatch@3.1.2:
|
|
1221
|
+
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
|
1222
|
+
|
|
1223
|
+
minimatch@9.0.5:
|
|
1224
|
+
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
|
|
1225
|
+
engines: {node: '>=16 || 14 >=14.17'}
|
|
1226
|
+
|
|
1227
|
+
mlly@1.8.1:
|
|
1228
|
+
resolution: {integrity: sha512-SnL6sNutTwRWWR/vcmCYHSADjiEesp5TGQQ0pXyLhW5IoeibRlF/CbSLailbB3CNqJUk9cVJ9dUDnbD7GrcHBQ==}
|
|
1229
|
+
|
|
1230
|
+
ms@2.0.0:
|
|
1231
|
+
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
|
|
1232
|
+
|
|
1233
|
+
ms@2.1.3:
|
|
1234
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
1235
|
+
|
|
1236
|
+
mustache@4.2.0:
|
|
1237
|
+
resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
|
|
1238
|
+
hasBin: true
|
|
1239
|
+
|
|
495
1240
|
mz@2.7.0:
|
|
496
1241
|
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
|
|
497
1242
|
|
|
@@ -500,6 +1245,13 @@ packages:
|
|
|
500
1245
|
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
501
1246
|
hasBin: true
|
|
502
1247
|
|
|
1248
|
+
natural-compare@1.4.0:
|
|
1249
|
+
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
|
1250
|
+
|
|
1251
|
+
negotiator@0.6.3:
|
|
1252
|
+
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
|
|
1253
|
+
engines: {node: '>= 0.6'}
|
|
1254
|
+
|
|
503
1255
|
node-releases@2.0.27:
|
|
504
1256
|
resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
|
|
505
1257
|
|
|
@@ -515,13 +1267,113 @@ packages:
|
|
|
515
1267
|
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
|
|
516
1268
|
engines: {node: '>= 6'}
|
|
517
1269
|
|
|
1270
|
+
object-inspect@1.13.4:
|
|
1271
|
+
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
|
|
1272
|
+
engines: {node: '>= 0.4'}
|
|
1273
|
+
|
|
1274
|
+
on-finished@2.4.1:
|
|
1275
|
+
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
|
|
1276
|
+
engines: {node: '>= 0.8'}
|
|
1277
|
+
|
|
518
1278
|
only-allow@1.2.2:
|
|
519
1279
|
resolution: {integrity: sha512-uxyNYDsCh5YIJ780G7hC5OHjVUr9reHsbZNMM80L9tZlTpb3hUzb36KXgW4ZUGtJKQnGA3xegmWg1BxhWV0jJA==}
|
|
520
1280
|
hasBin: true
|
|
521
1281
|
|
|
1282
|
+
openai@6.16.0:
|
|
1283
|
+
resolution: {integrity: sha512-fZ1uBqjFUjXzbGc35fFtYKEOxd20kd9fDpFeqWtsOZWiubY8CZ1NAlXHW3iathaFvqmNtCWMIsosCuyeI7Joxg==}
|
|
1284
|
+
hasBin: true
|
|
1285
|
+
peerDependencies:
|
|
1286
|
+
ws: ^8.18.0
|
|
1287
|
+
zod: ^3.25 || ^4.0
|
|
1288
|
+
peerDependenciesMeta:
|
|
1289
|
+
ws:
|
|
1290
|
+
optional: true
|
|
1291
|
+
zod:
|
|
1292
|
+
optional: true
|
|
1293
|
+
|
|
1294
|
+
optionator@0.9.4:
|
|
1295
|
+
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
|
1296
|
+
engines: {node: '>= 0.8.0'}
|
|
1297
|
+
|
|
1298
|
+
p-finally@1.0.0:
|
|
1299
|
+
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
|
|
1300
|
+
engines: {node: '>=4'}
|
|
1301
|
+
|
|
1302
|
+
p-limit@3.1.0:
|
|
1303
|
+
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
|
|
1304
|
+
engines: {node: '>=10'}
|
|
1305
|
+
|
|
1306
|
+
p-locate@5.0.0:
|
|
1307
|
+
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
|
|
1308
|
+
engines: {node: '>=10'}
|
|
1309
|
+
|
|
1310
|
+
p-queue@6.6.2:
|
|
1311
|
+
resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
|
|
1312
|
+
engines: {node: '>=8'}
|
|
1313
|
+
|
|
1314
|
+
p-timeout@3.2.0:
|
|
1315
|
+
resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
|
|
1316
|
+
engines: {node: '>=8'}
|
|
1317
|
+
|
|
1318
|
+
parent-module@1.0.1:
|
|
1319
|
+
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
|
|
1320
|
+
engines: {node: '>=6'}
|
|
1321
|
+
|
|
1322
|
+
parseurl@1.3.3:
|
|
1323
|
+
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
|
|
1324
|
+
engines: {node: '>= 0.8'}
|
|
1325
|
+
|
|
1326
|
+
path-exists@4.0.0:
|
|
1327
|
+
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
|
1328
|
+
engines: {node: '>=8'}
|
|
1329
|
+
|
|
1330
|
+
path-key@3.1.1:
|
|
1331
|
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
1332
|
+
engines: {node: '>=8'}
|
|
1333
|
+
|
|
522
1334
|
path-parse@1.0.7:
|
|
523
1335
|
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
|
524
1336
|
|
|
1337
|
+
path-to-regexp@0.1.12:
|
|
1338
|
+
resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
|
|
1339
|
+
|
|
1340
|
+
pathe@2.0.3:
|
|
1341
|
+
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
|
|
1342
|
+
|
|
1343
|
+
pg-cloudflare@1.3.0:
|
|
1344
|
+
resolution: {integrity: sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==}
|
|
1345
|
+
|
|
1346
|
+
pg-connection-string@2.10.1:
|
|
1347
|
+
resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
|
|
1348
|
+
|
|
1349
|
+
pg-int8@1.0.1:
|
|
1350
|
+
resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
|
|
1351
|
+
engines: {node: '>=4.0.0'}
|
|
1352
|
+
|
|
1353
|
+
pg-pool@3.11.0:
|
|
1354
|
+
resolution: {integrity: sha512-MJYfvHwtGp870aeusDh+hg9apvOe2zmpZJpyt+BMtzUWlVqbhFmMK6bOBXLBUPd7iRtIF9fZplDc7KrPN3PN7w==}
|
|
1355
|
+
peerDependencies:
|
|
1356
|
+
pg: '>=8.0'
|
|
1357
|
+
|
|
1358
|
+
pg-protocol@1.11.0:
|
|
1359
|
+
resolution: {integrity: sha512-pfsxk2M9M3BuGgDOfuy37VNRRX3jmKgMjcvAcWqNDpZSf4cUmv8HSOl5ViRQFsfARFn0KuUQTgLxVMbNq5NW3g==}
|
|
1360
|
+
|
|
1361
|
+
pg-types@2.2.0:
|
|
1362
|
+
resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
|
|
1363
|
+
engines: {node: '>=4'}
|
|
1364
|
+
|
|
1365
|
+
pg@8.17.2:
|
|
1366
|
+
resolution: {integrity: sha512-vjbKdiBJRqzcYw1fNU5KuHyYvdJ1qpcQg1CeBrHFqV1pWgHeVR6j/+kX0E1AAXfyuLUGY1ICrN2ELKA/z2HWzw==}
|
|
1367
|
+
engines: {node: '>= 16.0.0'}
|
|
1368
|
+
peerDependencies:
|
|
1369
|
+
pg-native: '>=3.0.1'
|
|
1370
|
+
peerDependenciesMeta:
|
|
1371
|
+
pg-native:
|
|
1372
|
+
optional: true
|
|
1373
|
+
|
|
1374
|
+
pgpass@1.0.5:
|
|
1375
|
+
resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==}
|
|
1376
|
+
|
|
525
1377
|
picocolors@1.1.1:
|
|
526
1378
|
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
527
1379
|
|
|
@@ -541,6 +1393,9 @@ packages:
|
|
|
541
1393
|
resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
|
|
542
1394
|
engines: {node: '>= 6'}
|
|
543
1395
|
|
|
1396
|
+
pkg-types@1.3.1:
|
|
1397
|
+
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
|
|
1398
|
+
|
|
544
1399
|
postcss-import@15.1.0:
|
|
545
1400
|
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
|
|
546
1401
|
engines: {node: '>=14.0.0'}
|
|
@@ -588,9 +1443,52 @@ packages:
|
|
|
588
1443
|
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
|
|
589
1444
|
engines: {node: ^10 || ^12 || >=14}
|
|
590
1445
|
|
|
1446
|
+
postgres-array@2.0.0:
|
|
1447
|
+
resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
|
|
1448
|
+
engines: {node: '>=4'}
|
|
1449
|
+
|
|
1450
|
+
postgres-bytea@1.0.1:
|
|
1451
|
+
resolution: {integrity: sha512-5+5HqXnsZPE65IJZSMkZtURARZelel2oXUEO8rH83VS/hxH5vv1uHquPg5wZs8yMAfdv971IU+kcPUczi7NVBQ==}
|
|
1452
|
+
engines: {node: '>=0.10.0'}
|
|
1453
|
+
|
|
1454
|
+
postgres-date@1.0.7:
|
|
1455
|
+
resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==}
|
|
1456
|
+
engines: {node: '>=0.10.0'}
|
|
1457
|
+
|
|
1458
|
+
postgres-interval@1.2.0:
|
|
1459
|
+
resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==}
|
|
1460
|
+
engines: {node: '>=0.10.0'}
|
|
1461
|
+
|
|
1462
|
+
prelude-ls@1.2.1:
|
|
1463
|
+
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
|
|
1464
|
+
engines: {node: '>= 0.8.0'}
|
|
1465
|
+
|
|
1466
|
+
proxy-addr@2.0.7:
|
|
1467
|
+
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
|
|
1468
|
+
engines: {node: '>= 0.10'}
|
|
1469
|
+
|
|
1470
|
+
proxy-from-env@1.1.0:
|
|
1471
|
+
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
|
|
1472
|
+
|
|
1473
|
+
punycode@2.3.1:
|
|
1474
|
+
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
|
1475
|
+
engines: {node: '>=6'}
|
|
1476
|
+
|
|
1477
|
+
qs@6.14.2:
|
|
1478
|
+
resolution: {integrity: sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==}
|
|
1479
|
+
engines: {node: '>=0.6'}
|
|
1480
|
+
|
|
591
1481
|
queue-microtask@1.2.3:
|
|
592
1482
|
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
|
593
1483
|
|
|
1484
|
+
range-parser@1.2.1:
|
|
1485
|
+
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
|
|
1486
|
+
engines: {node: '>= 0.6'}
|
|
1487
|
+
|
|
1488
|
+
raw-body@2.5.3:
|
|
1489
|
+
resolution: {integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==}
|
|
1490
|
+
engines: {node: '>= 0.8'}
|
|
1491
|
+
|
|
594
1492
|
read-cache@1.0.0:
|
|
595
1493
|
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
|
|
596
1494
|
|
|
@@ -598,6 +1496,21 @@ packages:
|
|
|
598
1496
|
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
|
599
1497
|
engines: {node: '>=8.10.0'}
|
|
600
1498
|
|
|
1499
|
+
readdirp@4.1.2:
|
|
1500
|
+
resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
|
|
1501
|
+
engines: {node: '>= 14.18.0'}
|
|
1502
|
+
|
|
1503
|
+
resolve-from@4.0.0:
|
|
1504
|
+
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
|
1505
|
+
engines: {node: '>=4'}
|
|
1506
|
+
|
|
1507
|
+
resolve-from@5.0.0:
|
|
1508
|
+
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
|
|
1509
|
+
engines: {node: '>=8'}
|
|
1510
|
+
|
|
1511
|
+
resolve-pkg-maps@1.0.0:
|
|
1512
|
+
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
1513
|
+
|
|
601
1514
|
resolve@1.22.11:
|
|
602
1515
|
resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
|
|
603
1516
|
engines: {node: '>= 0.4'}
|
|
@@ -607,23 +1520,92 @@ packages:
|
|
|
607
1520
|
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
|
|
608
1521
|
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
|
609
1522
|
|
|
610
|
-
rollup@4.
|
|
611
|
-
resolution: {integrity: sha512-
|
|
1523
|
+
rollup@4.55.3:
|
|
1524
|
+
resolution: {integrity: sha512-y9yUpfQvetAjiDLtNMf1hL9NXchIJgWt6zIKeoB+tCd3npX08Eqfzg60V9DhIGVMtQ0AlMkFw5xa+AQ37zxnAA==}
|
|
612
1525
|
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
613
1526
|
hasBin: true
|
|
614
1527
|
|
|
615
1528
|
run-parallel@1.2.0:
|
|
616
1529
|
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
|
617
1530
|
|
|
1531
|
+
safe-buffer@5.2.1:
|
|
1532
|
+
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
|
1533
|
+
|
|
1534
|
+
safer-buffer@2.1.2:
|
|
1535
|
+
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
|
1536
|
+
|
|
1537
|
+
semver@7.7.3:
|
|
1538
|
+
resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
|
|
1539
|
+
engines: {node: '>=10'}
|
|
1540
|
+
hasBin: true
|
|
1541
|
+
|
|
1542
|
+
send@0.19.2:
|
|
1543
|
+
resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==}
|
|
1544
|
+
engines: {node: '>= 0.8.0'}
|
|
1545
|
+
|
|
1546
|
+
serve-static@1.16.3:
|
|
1547
|
+
resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==}
|
|
1548
|
+
engines: {node: '>= 0.8.0'}
|
|
1549
|
+
|
|
1550
|
+
setprototypeof@1.2.0:
|
|
1551
|
+
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
|
|
1552
|
+
|
|
1553
|
+
shebang-command@2.0.0:
|
|
1554
|
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
1555
|
+
engines: {node: '>=8'}
|
|
1556
|
+
|
|
1557
|
+
shebang-regex@3.0.0:
|
|
1558
|
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
1559
|
+
engines: {node: '>=8'}
|
|
1560
|
+
|
|
1561
|
+
side-channel-list@1.0.0:
|
|
1562
|
+
resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
|
|
1563
|
+
engines: {node: '>= 0.4'}
|
|
1564
|
+
|
|
1565
|
+
side-channel-map@1.0.1:
|
|
1566
|
+
resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
|
|
1567
|
+
engines: {node: '>= 0.4'}
|
|
1568
|
+
|
|
1569
|
+
side-channel-weakmap@1.0.2:
|
|
1570
|
+
resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
|
|
1571
|
+
engines: {node: '>= 0.4'}
|
|
1572
|
+
|
|
1573
|
+
side-channel@1.1.0:
|
|
1574
|
+
resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
|
|
1575
|
+
engines: {node: '>= 0.4'}
|
|
1576
|
+
|
|
1577
|
+
simple-wcswidth@1.1.2:
|
|
1578
|
+
resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
|
|
1579
|
+
|
|
618
1580
|
source-map-js@1.2.1:
|
|
619
1581
|
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
620
1582
|
engines: {node: '>=0.10.0'}
|
|
621
1583
|
|
|
1584
|
+
source-map@0.7.6:
|
|
1585
|
+
resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
|
|
1586
|
+
engines: {node: '>= 12'}
|
|
1587
|
+
|
|
1588
|
+
split2@4.2.0:
|
|
1589
|
+
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
|
|
1590
|
+
engines: {node: '>= 10.x'}
|
|
1591
|
+
|
|
1592
|
+
statuses@2.0.2:
|
|
1593
|
+
resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
|
|
1594
|
+
engines: {node: '>= 0.8'}
|
|
1595
|
+
|
|
1596
|
+
strip-json-comments@3.1.1:
|
|
1597
|
+
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
|
1598
|
+
engines: {node: '>=8'}
|
|
1599
|
+
|
|
622
1600
|
sucrase@3.35.1:
|
|
623
1601
|
resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
|
|
624
1602
|
engines: {node: '>=16 || 14 >=14.17'}
|
|
625
1603
|
hasBin: true
|
|
626
1604
|
|
|
1605
|
+
supports-color@7.2.0:
|
|
1606
|
+
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
|
1607
|
+
engines: {node: '>=8'}
|
|
1608
|
+
|
|
627
1609
|
supports-preserve-symlinks-flag@1.0.0:
|
|
628
1610
|
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
|
629
1611
|
engines: {node: '>= 0.4'}
|
|
@@ -640,6 +1622,9 @@ packages:
|
|
|
640
1622
|
thenify@3.3.1:
|
|
641
1623
|
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
|
|
642
1624
|
|
|
1625
|
+
tinyexec@0.3.2:
|
|
1626
|
+
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
|
|
1627
|
+
|
|
643
1628
|
tinyglobby@0.2.15:
|
|
644
1629
|
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
|
|
645
1630
|
engines: {node: '>=12.0.0'}
|
|
@@ -648,36 +1633,117 @@ packages:
|
|
|
648
1633
|
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
649
1634
|
engines: {node: '>=8.0'}
|
|
650
1635
|
|
|
1636
|
+
toidentifier@1.0.1:
|
|
1637
|
+
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
|
|
1638
|
+
engines: {node: '>=0.6'}
|
|
1639
|
+
|
|
1640
|
+
tree-kill@1.2.2:
|
|
1641
|
+
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
|
|
1642
|
+
hasBin: true
|
|
1643
|
+
|
|
1644
|
+
ts-api-utils@2.4.0:
|
|
1645
|
+
resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
|
|
1646
|
+
engines: {node: '>=18.12'}
|
|
1647
|
+
peerDependencies:
|
|
1648
|
+
typescript: '>=4.8.4'
|
|
1649
|
+
|
|
651
1650
|
ts-interface-checker@0.1.13:
|
|
652
1651
|
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
|
|
653
1652
|
|
|
1653
|
+
tslib@2.8.1:
|
|
1654
|
+
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
1655
|
+
|
|
1656
|
+
tsup@8.5.1:
|
|
1657
|
+
resolution: {integrity: sha512-xtgkqwdhpKWr3tKPmCkvYmS9xnQK3m3XgxZHwSUjvfTjp7YfXe5tT3GgWi0F2N+ZSMsOeWeZFh7ZZFg5iPhing==}
|
|
1658
|
+
engines: {node: '>=18'}
|
|
1659
|
+
hasBin: true
|
|
1660
|
+
peerDependencies:
|
|
1661
|
+
'@microsoft/api-extractor': ^7.36.0
|
|
1662
|
+
'@swc/core': ^1
|
|
1663
|
+
postcss: ^8.4.12
|
|
1664
|
+
typescript: '>=4.5.0'
|
|
1665
|
+
peerDependenciesMeta:
|
|
1666
|
+
'@microsoft/api-extractor':
|
|
1667
|
+
optional: true
|
|
1668
|
+
'@swc/core':
|
|
1669
|
+
optional: true
|
|
1670
|
+
postcss:
|
|
1671
|
+
optional: true
|
|
1672
|
+
typescript:
|
|
1673
|
+
optional: true
|
|
1674
|
+
|
|
1675
|
+
tsx@4.21.0:
|
|
1676
|
+
resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
|
|
1677
|
+
engines: {node: '>=18.0.0'}
|
|
1678
|
+
hasBin: true
|
|
1679
|
+
|
|
1680
|
+
type-check@0.4.0:
|
|
1681
|
+
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
1682
|
+
engines: {node: '>= 0.8.0'}
|
|
1683
|
+
|
|
1684
|
+
type-is@1.6.18:
|
|
1685
|
+
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
|
|
1686
|
+
engines: {node: '>= 0.6'}
|
|
1687
|
+
|
|
1688
|
+
typescript-eslint@8.53.1:
|
|
1689
|
+
resolution: {integrity: sha512-gB+EVQfP5RDElh9ittfXlhZJdjSU4jUSTyE2+ia8CYyNvet4ElfaLlAIqDvQV9JPknKx0jQH1racTYe/4LaLSg==}
|
|
1690
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1691
|
+
peerDependencies:
|
|
1692
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
1693
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
1694
|
+
|
|
654
1695
|
typescript@5.9.3:
|
|
655
1696
|
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
656
1697
|
engines: {node: '>=14.17'}
|
|
657
1698
|
hasBin: true
|
|
658
1699
|
|
|
1700
|
+
ufo@1.6.3:
|
|
1701
|
+
resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
|
|
1702
|
+
|
|
1703
|
+
undici-types@6.21.0:
|
|
1704
|
+
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
|
|
1705
|
+
|
|
1706
|
+
unpipe@1.0.0:
|
|
1707
|
+
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
|
|
1708
|
+
engines: {node: '>= 0.8'}
|
|
1709
|
+
|
|
659
1710
|
update-browserslist-db@1.2.3:
|
|
660
1711
|
resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
|
|
661
1712
|
hasBin: true
|
|
662
1713
|
peerDependencies:
|
|
663
1714
|
browserslist: '>= 4.21.0'
|
|
664
1715
|
|
|
1716
|
+
uri-js@4.4.1:
|
|
1717
|
+
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
|
1718
|
+
|
|
665
1719
|
util-deprecate@1.0.2:
|
|
666
1720
|
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
667
1721
|
|
|
668
|
-
|
|
669
|
-
resolution: {integrity: sha512
|
|
670
|
-
engines: {node:
|
|
1722
|
+
utils-merge@1.0.1:
|
|
1723
|
+
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
|
|
1724
|
+
engines: {node: '>= 0.4.0'}
|
|
1725
|
+
|
|
1726
|
+
uuid@10.0.0:
|
|
1727
|
+
resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
|
|
1728
|
+
hasBin: true
|
|
1729
|
+
|
|
1730
|
+
vary@1.1.2:
|
|
1731
|
+
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
|
|
1732
|
+
engines: {node: '>= 0.8'}
|
|
1733
|
+
|
|
1734
|
+
vite@7.3.1:
|
|
1735
|
+
resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
|
|
1736
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
671
1737
|
hasBin: true
|
|
672
1738
|
peerDependencies:
|
|
673
|
-
'@types/node': ^
|
|
1739
|
+
'@types/node': ^20.19.0 || >=22.12.0
|
|
674
1740
|
jiti: '>=1.21.0'
|
|
675
|
-
less:
|
|
1741
|
+
less: ^4.0.0
|
|
676
1742
|
lightningcss: ^1.21.0
|
|
677
|
-
sass:
|
|
678
|
-
sass-embedded:
|
|
679
|
-
stylus: '
|
|
680
|
-
sugarss:
|
|
1743
|
+
sass: ^1.70.0
|
|
1744
|
+
sass-embedded: ^1.70.0
|
|
1745
|
+
stylus: '>=0.54.8'
|
|
1746
|
+
sugarss: ^5.0.0
|
|
681
1747
|
terser: ^5.16.0
|
|
682
1748
|
tsx: ^4.8.1
|
|
683
1749
|
yaml: ^2.4.2
|
|
@@ -709,88 +1775,179 @@ packages:
|
|
|
709
1775
|
resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
|
|
710
1776
|
engines: {node: '>=4'}
|
|
711
1777
|
|
|
1778
|
+
which@2.0.2:
|
|
1779
|
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
1780
|
+
engines: {node: '>= 8'}
|
|
1781
|
+
hasBin: true
|
|
1782
|
+
|
|
1783
|
+
word-wrap@1.2.5:
|
|
1784
|
+
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
|
|
1785
|
+
engines: {node: '>=0.10.0'}
|
|
1786
|
+
|
|
1787
|
+
ws@8.19.0:
|
|
1788
|
+
resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
|
|
1789
|
+
engines: {node: '>=10.0.0'}
|
|
1790
|
+
peerDependencies:
|
|
1791
|
+
bufferutil: ^4.0.1
|
|
1792
|
+
utf-8-validate: '>=5.0.2'
|
|
1793
|
+
peerDependenciesMeta:
|
|
1794
|
+
bufferutil:
|
|
1795
|
+
optional: true
|
|
1796
|
+
utf-8-validate:
|
|
1797
|
+
optional: true
|
|
1798
|
+
|
|
1799
|
+
xtend@4.0.2:
|
|
1800
|
+
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
|
|
1801
|
+
engines: {node: '>=0.4'}
|
|
1802
|
+
|
|
1803
|
+
yocto-queue@0.1.0:
|
|
1804
|
+
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
|
1805
|
+
engines: {node: '>=10'}
|
|
1806
|
+
|
|
1807
|
+
zod@4.3.5:
|
|
1808
|
+
resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
|
|
1809
|
+
|
|
712
1810
|
snapshots:
|
|
713
1811
|
|
|
714
1812
|
'@alloc/quick-lru@5.2.0': {}
|
|
715
1813
|
|
|
716
|
-
'@
|
|
1814
|
+
'@cfworker/json-schema@4.1.1': {}
|
|
1815
|
+
|
|
1816
|
+
'@esbuild/aix-ppc64@0.27.2':
|
|
717
1817
|
optional: true
|
|
718
1818
|
|
|
719
|
-
'@esbuild/android-arm64@0.
|
|
1819
|
+
'@esbuild/android-arm64@0.27.2':
|
|
720
1820
|
optional: true
|
|
721
1821
|
|
|
722
|
-
'@esbuild/android-arm@0.
|
|
1822
|
+
'@esbuild/android-arm@0.27.2':
|
|
723
1823
|
optional: true
|
|
724
1824
|
|
|
725
|
-
'@esbuild/android-x64@0.
|
|
1825
|
+
'@esbuild/android-x64@0.27.2':
|
|
726
1826
|
optional: true
|
|
727
1827
|
|
|
728
|
-
'@esbuild/darwin-arm64@0.
|
|
1828
|
+
'@esbuild/darwin-arm64@0.27.2':
|
|
729
1829
|
optional: true
|
|
730
1830
|
|
|
731
|
-
'@esbuild/darwin-x64@0.
|
|
1831
|
+
'@esbuild/darwin-x64@0.27.2':
|
|
732
1832
|
optional: true
|
|
733
1833
|
|
|
734
|
-
'@esbuild/freebsd-arm64@0.
|
|
1834
|
+
'@esbuild/freebsd-arm64@0.27.2':
|
|
735
1835
|
optional: true
|
|
736
1836
|
|
|
737
|
-
'@esbuild/freebsd-x64@0.
|
|
1837
|
+
'@esbuild/freebsd-x64@0.27.2':
|
|
738
1838
|
optional: true
|
|
739
1839
|
|
|
740
|
-
'@esbuild/linux-arm64@0.
|
|
1840
|
+
'@esbuild/linux-arm64@0.27.2':
|
|
741
1841
|
optional: true
|
|
742
1842
|
|
|
743
|
-
'@esbuild/linux-arm@0.
|
|
1843
|
+
'@esbuild/linux-arm@0.27.2':
|
|
744
1844
|
optional: true
|
|
745
1845
|
|
|
746
|
-
'@esbuild/linux-ia32@0.
|
|
1846
|
+
'@esbuild/linux-ia32@0.27.2':
|
|
747
1847
|
optional: true
|
|
748
1848
|
|
|
749
|
-
'@esbuild/linux-loong64@0.
|
|
1849
|
+
'@esbuild/linux-loong64@0.27.2':
|
|
750
1850
|
optional: true
|
|
751
1851
|
|
|
752
|
-
'@esbuild/linux-mips64el@0.
|
|
1852
|
+
'@esbuild/linux-mips64el@0.27.2':
|
|
753
1853
|
optional: true
|
|
754
1854
|
|
|
755
|
-
'@esbuild/linux-ppc64@0.
|
|
1855
|
+
'@esbuild/linux-ppc64@0.27.2':
|
|
756
1856
|
optional: true
|
|
757
1857
|
|
|
758
|
-
'@esbuild/linux-riscv64@0.
|
|
1858
|
+
'@esbuild/linux-riscv64@0.27.2':
|
|
759
1859
|
optional: true
|
|
760
1860
|
|
|
761
|
-
'@esbuild/linux-s390x@0.
|
|
1861
|
+
'@esbuild/linux-s390x@0.27.2':
|
|
762
1862
|
optional: true
|
|
763
1863
|
|
|
764
|
-
'@esbuild/linux-x64@0.
|
|
1864
|
+
'@esbuild/linux-x64@0.27.2':
|
|
765
1865
|
optional: true
|
|
766
1866
|
|
|
767
|
-
'@esbuild/netbsd-arm64@0.
|
|
1867
|
+
'@esbuild/netbsd-arm64@0.27.2':
|
|
768
1868
|
optional: true
|
|
769
1869
|
|
|
770
|
-
'@esbuild/netbsd-x64@0.
|
|
1870
|
+
'@esbuild/netbsd-x64@0.27.2':
|
|
771
1871
|
optional: true
|
|
772
1872
|
|
|
773
|
-
'@esbuild/openbsd-arm64@0.
|
|
1873
|
+
'@esbuild/openbsd-arm64@0.27.2':
|
|
774
1874
|
optional: true
|
|
775
1875
|
|
|
776
|
-
'@esbuild/openbsd-x64@0.
|
|
1876
|
+
'@esbuild/openbsd-x64@0.27.2':
|
|
777
1877
|
optional: true
|
|
778
1878
|
|
|
779
|
-
'@esbuild/openharmony-arm64@0.
|
|
1879
|
+
'@esbuild/openharmony-arm64@0.27.2':
|
|
780
1880
|
optional: true
|
|
781
1881
|
|
|
782
|
-
'@esbuild/sunos-x64@0.
|
|
1882
|
+
'@esbuild/sunos-x64@0.27.2':
|
|
783
1883
|
optional: true
|
|
784
1884
|
|
|
785
|
-
'@esbuild/win32-arm64@0.
|
|
1885
|
+
'@esbuild/win32-arm64@0.27.2':
|
|
786
1886
|
optional: true
|
|
787
1887
|
|
|
788
|
-
'@esbuild/win32-ia32@0.
|
|
1888
|
+
'@esbuild/win32-ia32@0.27.2':
|
|
789
1889
|
optional: true
|
|
790
1890
|
|
|
791
|
-
'@esbuild/win32-x64@0.
|
|
1891
|
+
'@esbuild/win32-x64@0.27.2':
|
|
792
1892
|
optional: true
|
|
793
1893
|
|
|
1894
|
+
'@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@1.21.7))':
|
|
1895
|
+
dependencies:
|
|
1896
|
+
eslint: 9.39.2(jiti@1.21.7)
|
|
1897
|
+
eslint-visitor-keys: 3.4.3
|
|
1898
|
+
|
|
1899
|
+
'@eslint-community/regexpp@4.12.2': {}
|
|
1900
|
+
|
|
1901
|
+
'@eslint/config-array@0.21.1':
|
|
1902
|
+
dependencies:
|
|
1903
|
+
'@eslint/object-schema': 2.1.7
|
|
1904
|
+
debug: 4.4.3
|
|
1905
|
+
minimatch: 3.1.2
|
|
1906
|
+
transitivePeerDependencies:
|
|
1907
|
+
- supports-color
|
|
1908
|
+
|
|
1909
|
+
'@eslint/config-helpers@0.4.2':
|
|
1910
|
+
dependencies:
|
|
1911
|
+
'@eslint/core': 0.17.0
|
|
1912
|
+
|
|
1913
|
+
'@eslint/core@0.17.0':
|
|
1914
|
+
dependencies:
|
|
1915
|
+
'@types/json-schema': 7.0.15
|
|
1916
|
+
|
|
1917
|
+
'@eslint/eslintrc@3.3.3':
|
|
1918
|
+
dependencies:
|
|
1919
|
+
ajv: 6.12.6
|
|
1920
|
+
debug: 4.4.3
|
|
1921
|
+
espree: 10.4.0
|
|
1922
|
+
globals: 14.0.0
|
|
1923
|
+
ignore: 5.3.2
|
|
1924
|
+
import-fresh: 3.3.1
|
|
1925
|
+
js-yaml: 4.1.1
|
|
1926
|
+
minimatch: 3.1.2
|
|
1927
|
+
strip-json-comments: 3.1.1
|
|
1928
|
+
transitivePeerDependencies:
|
|
1929
|
+
- supports-color
|
|
1930
|
+
|
|
1931
|
+
'@eslint/js@9.39.2': {}
|
|
1932
|
+
|
|
1933
|
+
'@eslint/object-schema@2.1.7': {}
|
|
1934
|
+
|
|
1935
|
+
'@eslint/plugin-kit@0.4.1':
|
|
1936
|
+
dependencies:
|
|
1937
|
+
'@eslint/core': 0.17.0
|
|
1938
|
+
levn: 0.4.1
|
|
1939
|
+
|
|
1940
|
+
'@humanfs/core@0.19.1': {}
|
|
1941
|
+
|
|
1942
|
+
'@humanfs/node@0.16.7':
|
|
1943
|
+
dependencies:
|
|
1944
|
+
'@humanfs/core': 0.19.1
|
|
1945
|
+
'@humanwhocodes/retry': 0.4.3
|
|
1946
|
+
|
|
1947
|
+
'@humanwhocodes/module-importer@1.0.1': {}
|
|
1948
|
+
|
|
1949
|
+
'@humanwhocodes/retry@0.4.3': {}
|
|
1950
|
+
|
|
794
1951
|
'@jridgewell/gen-mapping@0.3.13':
|
|
795
1952
|
dependencies:
|
|
796
1953
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
@@ -805,6 +1962,33 @@ snapshots:
|
|
|
805
1962
|
'@jridgewell/resolve-uri': 3.1.2
|
|
806
1963
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
807
1964
|
|
|
1965
|
+
'@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))':
|
|
1966
|
+
dependencies:
|
|
1967
|
+
'@cfworker/json-schema': 4.1.1
|
|
1968
|
+
ansi-styles: 5.2.0
|
|
1969
|
+
camelcase: 6.3.0
|
|
1970
|
+
decamelize: 1.2.0
|
|
1971
|
+
js-tiktoken: 1.0.21
|
|
1972
|
+
langsmith: 0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
|
|
1973
|
+
mustache: 4.2.0
|
|
1974
|
+
p-queue: 6.6.2
|
|
1975
|
+
uuid: 10.0.0
|
|
1976
|
+
zod: 4.3.5
|
|
1977
|
+
transitivePeerDependencies:
|
|
1978
|
+
- '@opentelemetry/api'
|
|
1979
|
+
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
1980
|
+
- '@opentelemetry/sdk-trace-base'
|
|
1981
|
+
- openai
|
|
1982
|
+
|
|
1983
|
+
'@langchain/openai@1.2.3(@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5)))(ws@8.19.0)':
|
|
1984
|
+
dependencies:
|
|
1985
|
+
'@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
|
|
1986
|
+
js-tiktoken: 1.0.21
|
|
1987
|
+
openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
|
|
1988
|
+
zod: 4.3.5
|
|
1989
|
+
transitivePeerDependencies:
|
|
1990
|
+
- ws
|
|
1991
|
+
|
|
808
1992
|
'@nodelib/fs.scandir@2.1.5':
|
|
809
1993
|
dependencies:
|
|
810
1994
|
'@nodelib/fs.stat': 2.0.5
|
|
@@ -817,233 +2001,939 @@ snapshots:
|
|
|
817
2001
|
'@nodelib/fs.scandir': 2.1.5
|
|
818
2002
|
fastq: 1.20.1
|
|
819
2003
|
|
|
820
|
-
'@rollup/rollup-android-arm-eabi@4.
|
|
2004
|
+
'@rollup/rollup-android-arm-eabi@4.55.3':
|
|
821
2005
|
optional: true
|
|
822
2006
|
|
|
823
|
-
'@rollup/rollup-android-arm64@4.
|
|
2007
|
+
'@rollup/rollup-android-arm64@4.55.3':
|
|
824
2008
|
optional: true
|
|
825
2009
|
|
|
826
|
-
'@rollup/rollup-darwin-arm64@4.
|
|
2010
|
+
'@rollup/rollup-darwin-arm64@4.55.3':
|
|
827
2011
|
optional: true
|
|
828
2012
|
|
|
829
|
-
'@rollup/rollup-darwin-x64@4.
|
|
2013
|
+
'@rollup/rollup-darwin-x64@4.55.3':
|
|
830
2014
|
optional: true
|
|
831
2015
|
|
|
832
|
-
'@rollup/rollup-freebsd-arm64@4.
|
|
2016
|
+
'@rollup/rollup-freebsd-arm64@4.55.3':
|
|
833
2017
|
optional: true
|
|
834
2018
|
|
|
835
|
-
'@rollup/rollup-freebsd-x64@4.
|
|
2019
|
+
'@rollup/rollup-freebsd-x64@4.55.3':
|
|
836
2020
|
optional: true
|
|
837
2021
|
|
|
838
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.
|
|
2022
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.55.3':
|
|
839
2023
|
optional: true
|
|
840
2024
|
|
|
841
|
-
'@rollup/rollup-linux-arm-musleabihf@4.
|
|
2025
|
+
'@rollup/rollup-linux-arm-musleabihf@4.55.3':
|
|
842
2026
|
optional: true
|
|
843
2027
|
|
|
844
|
-
'@rollup/rollup-linux-arm64-gnu@4.
|
|
2028
|
+
'@rollup/rollup-linux-arm64-gnu@4.55.3':
|
|
845
2029
|
optional: true
|
|
846
2030
|
|
|
847
|
-
'@rollup/rollup-linux-arm64-musl@4.
|
|
2031
|
+
'@rollup/rollup-linux-arm64-musl@4.55.3':
|
|
848
2032
|
optional: true
|
|
849
2033
|
|
|
850
|
-
'@rollup/rollup-linux-loong64-gnu@4.
|
|
2034
|
+
'@rollup/rollup-linux-loong64-gnu@4.55.3':
|
|
851
2035
|
optional: true
|
|
852
2036
|
|
|
853
|
-
'@rollup/rollup-linux-
|
|
2037
|
+
'@rollup/rollup-linux-loong64-musl@4.55.3':
|
|
854
2038
|
optional: true
|
|
855
2039
|
|
|
856
|
-
'@rollup/rollup-linux-
|
|
2040
|
+
'@rollup/rollup-linux-ppc64-gnu@4.55.3':
|
|
857
2041
|
optional: true
|
|
858
2042
|
|
|
859
|
-
'@rollup/rollup-linux-
|
|
2043
|
+
'@rollup/rollup-linux-ppc64-musl@4.55.3':
|
|
860
2044
|
optional: true
|
|
861
2045
|
|
|
862
|
-
'@rollup/rollup-linux-
|
|
2046
|
+
'@rollup/rollup-linux-riscv64-gnu@4.55.3':
|
|
863
2047
|
optional: true
|
|
864
2048
|
|
|
865
|
-
'@rollup/rollup-linux-
|
|
2049
|
+
'@rollup/rollup-linux-riscv64-musl@4.55.3':
|
|
866
2050
|
optional: true
|
|
867
2051
|
|
|
868
|
-
'@rollup/rollup-linux-
|
|
2052
|
+
'@rollup/rollup-linux-s390x-gnu@4.55.3':
|
|
869
2053
|
optional: true
|
|
870
2054
|
|
|
871
|
-
'@rollup/rollup-
|
|
2055
|
+
'@rollup/rollup-linux-x64-gnu@4.55.3':
|
|
872
2056
|
optional: true
|
|
873
2057
|
|
|
874
|
-
'@rollup/rollup-
|
|
2058
|
+
'@rollup/rollup-linux-x64-musl@4.55.3':
|
|
875
2059
|
optional: true
|
|
876
2060
|
|
|
877
|
-
'@rollup/rollup-
|
|
2061
|
+
'@rollup/rollup-openbsd-x64@4.55.3':
|
|
878
2062
|
optional: true
|
|
879
2063
|
|
|
880
|
-
'@rollup/rollup-
|
|
2064
|
+
'@rollup/rollup-openharmony-arm64@4.55.3':
|
|
881
2065
|
optional: true
|
|
882
2066
|
|
|
883
|
-
'@rollup/rollup-win32-
|
|
2067
|
+
'@rollup/rollup-win32-arm64-msvc@4.55.3':
|
|
884
2068
|
optional: true
|
|
885
2069
|
|
|
886
|
-
'@
|
|
2070
|
+
'@rollup/rollup-win32-ia32-msvc@4.55.3':
|
|
2071
|
+
optional: true
|
|
887
2072
|
|
|
888
|
-
|
|
2073
|
+
'@rollup/rollup-win32-x64-gnu@4.55.3':
|
|
2074
|
+
optional: true
|
|
889
2075
|
|
|
890
|
-
|
|
2076
|
+
'@rollup/rollup-win32-x64-msvc@4.55.3':
|
|
2077
|
+
optional: true
|
|
2078
|
+
|
|
2079
|
+
'@supabase/auth-js@2.95.3':
|
|
891
2080
|
dependencies:
|
|
892
|
-
|
|
893
|
-
picomatch: 2.3.1
|
|
2081
|
+
tslib: 2.8.1
|
|
894
2082
|
|
|
895
|
-
|
|
2083
|
+
'@supabase/functions-js@2.95.3':
|
|
2084
|
+
dependencies:
|
|
2085
|
+
tslib: 2.8.1
|
|
896
2086
|
|
|
897
|
-
|
|
2087
|
+
'@supabase/postgrest-js@2.95.3':
|
|
898
2088
|
dependencies:
|
|
899
|
-
|
|
900
|
-
caniuse-lite: 1.0.30001762
|
|
901
|
-
fraction.js: 5.3.4
|
|
902
|
-
picocolors: 1.1.1
|
|
903
|
-
postcss: 8.5.6
|
|
904
|
-
postcss-value-parser: 4.2.0
|
|
2089
|
+
tslib: 2.8.1
|
|
905
2090
|
|
|
906
|
-
|
|
2091
|
+
'@supabase/realtime-js@2.95.3':
|
|
2092
|
+
dependencies:
|
|
2093
|
+
'@types/phoenix': 1.6.7
|
|
2094
|
+
'@types/ws': 8.18.1
|
|
2095
|
+
tslib: 2.8.1
|
|
2096
|
+
ws: 8.19.0
|
|
2097
|
+
transitivePeerDependencies:
|
|
2098
|
+
- bufferutil
|
|
2099
|
+
- utf-8-validate
|
|
907
2100
|
|
|
908
|
-
|
|
2101
|
+
'@supabase/storage-js@2.95.3':
|
|
2102
|
+
dependencies:
|
|
2103
|
+
iceberg-js: 0.8.1
|
|
2104
|
+
tslib: 2.8.1
|
|
909
2105
|
|
|
910
|
-
|
|
2106
|
+
'@supabase/supabase-js@2.95.3':
|
|
911
2107
|
dependencies:
|
|
912
|
-
|
|
2108
|
+
'@supabase/auth-js': 2.95.3
|
|
2109
|
+
'@supabase/functions-js': 2.95.3
|
|
2110
|
+
'@supabase/postgrest-js': 2.95.3
|
|
2111
|
+
'@supabase/realtime-js': 2.95.3
|
|
2112
|
+
'@supabase/storage-js': 2.95.3
|
|
2113
|
+
transitivePeerDependencies:
|
|
2114
|
+
- bufferutil
|
|
2115
|
+
- utf-8-validate
|
|
913
2116
|
|
|
914
|
-
|
|
2117
|
+
'@types/body-parser@1.19.6':
|
|
915
2118
|
dependencies:
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
electron-to-chromium: 1.5.267
|
|
919
|
-
node-releases: 2.0.27
|
|
920
|
-
update-browserslist-db: 1.2.3(browserslist@4.28.1)
|
|
2119
|
+
'@types/connect': 3.4.38
|
|
2120
|
+
'@types/node': 22.19.15
|
|
921
2121
|
|
|
922
|
-
|
|
2122
|
+
'@types/connect@3.4.38':
|
|
2123
|
+
dependencies:
|
|
2124
|
+
'@types/node': 22.19.15
|
|
923
2125
|
|
|
924
|
-
|
|
2126
|
+
'@types/estree@1.0.8': {}
|
|
925
2127
|
|
|
926
|
-
|
|
2128
|
+
'@types/express-serve-static-core@5.1.1':
|
|
927
2129
|
dependencies:
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
is-glob: 4.0.3
|
|
933
|
-
normalize-path: 3.0.0
|
|
934
|
-
readdirp: 3.6.0
|
|
935
|
-
optionalDependencies:
|
|
936
|
-
fsevents: 2.3.3
|
|
2130
|
+
'@types/node': 22.19.15
|
|
2131
|
+
'@types/qs': 6.15.0
|
|
2132
|
+
'@types/range-parser': 1.2.7
|
|
2133
|
+
'@types/send': 1.2.1
|
|
937
2134
|
|
|
938
|
-
|
|
2135
|
+
'@types/express@5.0.6':
|
|
2136
|
+
dependencies:
|
|
2137
|
+
'@types/body-parser': 1.19.6
|
|
2138
|
+
'@types/express-serve-static-core': 5.1.1
|
|
2139
|
+
'@types/serve-static': 2.2.0
|
|
939
2140
|
|
|
940
|
-
|
|
2141
|
+
'@types/http-errors@2.0.5': {}
|
|
941
2142
|
|
|
942
|
-
|
|
2143
|
+
'@types/json-schema@7.0.15': {}
|
|
943
2144
|
|
|
944
|
-
|
|
2145
|
+
'@types/node@22.19.15':
|
|
2146
|
+
dependencies:
|
|
2147
|
+
undici-types: 6.21.0
|
|
945
2148
|
|
|
946
|
-
|
|
2149
|
+
'@types/phoenix@1.6.7': {}
|
|
947
2150
|
|
|
948
|
-
|
|
949
|
-
optionalDependencies:
|
|
950
|
-
'@esbuild/aix-ppc64': 0.25.12
|
|
951
|
-
'@esbuild/android-arm': 0.25.12
|
|
952
|
-
'@esbuild/android-arm64': 0.25.12
|
|
953
|
-
'@esbuild/android-x64': 0.25.12
|
|
954
|
-
'@esbuild/darwin-arm64': 0.25.12
|
|
955
|
-
'@esbuild/darwin-x64': 0.25.12
|
|
956
|
-
'@esbuild/freebsd-arm64': 0.25.12
|
|
957
|
-
'@esbuild/freebsd-x64': 0.25.12
|
|
958
|
-
'@esbuild/linux-arm': 0.25.12
|
|
959
|
-
'@esbuild/linux-arm64': 0.25.12
|
|
960
|
-
'@esbuild/linux-ia32': 0.25.12
|
|
961
|
-
'@esbuild/linux-loong64': 0.25.12
|
|
962
|
-
'@esbuild/linux-mips64el': 0.25.12
|
|
963
|
-
'@esbuild/linux-ppc64': 0.25.12
|
|
964
|
-
'@esbuild/linux-riscv64': 0.25.12
|
|
965
|
-
'@esbuild/linux-s390x': 0.25.12
|
|
966
|
-
'@esbuild/linux-x64': 0.25.12
|
|
967
|
-
'@esbuild/netbsd-arm64': 0.25.12
|
|
968
|
-
'@esbuild/netbsd-x64': 0.25.12
|
|
969
|
-
'@esbuild/openbsd-arm64': 0.25.12
|
|
970
|
-
'@esbuild/openbsd-x64': 0.25.12
|
|
971
|
-
'@esbuild/openharmony-arm64': 0.25.12
|
|
972
|
-
'@esbuild/sunos-x64': 0.25.12
|
|
973
|
-
'@esbuild/win32-arm64': 0.25.12
|
|
974
|
-
'@esbuild/win32-ia32': 0.25.12
|
|
975
|
-
'@esbuild/win32-x64': 0.25.12
|
|
2151
|
+
'@types/qs@6.15.0': {}
|
|
976
2152
|
|
|
977
|
-
|
|
2153
|
+
'@types/range-parser@1.2.7': {}
|
|
978
2154
|
|
|
979
|
-
|
|
2155
|
+
'@types/send@1.2.1':
|
|
980
2156
|
dependencies:
|
|
981
|
-
'@
|
|
982
|
-
'@nodelib/fs.walk': 1.2.8
|
|
983
|
-
glob-parent: 5.1.2
|
|
984
|
-
merge2: 1.4.1
|
|
985
|
-
micromatch: 4.0.8
|
|
2157
|
+
'@types/node': 22.19.15
|
|
986
2158
|
|
|
987
|
-
|
|
2159
|
+
'@types/serve-static@2.2.0':
|
|
988
2160
|
dependencies:
|
|
989
|
-
|
|
2161
|
+
'@types/http-errors': 2.0.5
|
|
2162
|
+
'@types/node': 22.19.15
|
|
990
2163
|
|
|
991
|
-
|
|
992
|
-
optionalDependencies:
|
|
993
|
-
picomatch: 4.0.3
|
|
2164
|
+
'@types/uuid@10.0.0': {}
|
|
994
2165
|
|
|
995
|
-
|
|
2166
|
+
'@types/ws@8.18.1':
|
|
996
2167
|
dependencies:
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
fraction.js@5.3.4: {}
|
|
1000
|
-
|
|
1001
|
-
fsevents@2.3.3:
|
|
1002
|
-
optional: true
|
|
2168
|
+
'@types/node': 22.19.15
|
|
1003
2169
|
|
|
1004
|
-
|
|
2170
|
+
'@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)':
|
|
2171
|
+
dependencies:
|
|
2172
|
+
'@eslint-community/regexpp': 4.12.2
|
|
2173
|
+
'@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
2174
|
+
'@typescript-eslint/scope-manager': 8.53.1
|
|
2175
|
+
'@typescript-eslint/type-utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
2176
|
+
'@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
2177
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
2178
|
+
eslint: 9.39.2(jiti@1.21.7)
|
|
2179
|
+
ignore: 7.0.5
|
|
2180
|
+
natural-compare: 1.4.0
|
|
2181
|
+
ts-api-utils: 2.4.0(typescript@5.9.3)
|
|
2182
|
+
typescript: 5.9.3
|
|
2183
|
+
transitivePeerDependencies:
|
|
2184
|
+
- supports-color
|
|
1005
2185
|
|
|
1006
|
-
|
|
2186
|
+
'@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
1007
2187
|
dependencies:
|
|
1008
|
-
|
|
2188
|
+
'@typescript-eslint/scope-manager': 8.53.1
|
|
2189
|
+
'@typescript-eslint/types': 8.53.1
|
|
2190
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
2191
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
2192
|
+
debug: 4.4.3
|
|
2193
|
+
eslint: 9.39.2(jiti@1.21.7)
|
|
2194
|
+
typescript: 5.9.3
|
|
2195
|
+
transitivePeerDependencies:
|
|
2196
|
+
- supports-color
|
|
1009
2197
|
|
|
1010
|
-
|
|
2198
|
+
'@typescript-eslint/project-service@8.53.1(typescript@5.9.3)':
|
|
1011
2199
|
dependencies:
|
|
1012
|
-
|
|
2200
|
+
'@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.9.3)
|
|
2201
|
+
'@typescript-eslint/types': 8.53.1
|
|
2202
|
+
debug: 4.4.3
|
|
2203
|
+
typescript: 5.9.3
|
|
2204
|
+
transitivePeerDependencies:
|
|
2205
|
+
- supports-color
|
|
1013
2206
|
|
|
1014
|
-
|
|
2207
|
+
'@typescript-eslint/scope-manager@8.53.1':
|
|
1015
2208
|
dependencies:
|
|
1016
|
-
|
|
2209
|
+
'@typescript-eslint/types': 8.53.1
|
|
2210
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
1017
2211
|
|
|
1018
|
-
|
|
2212
|
+
'@typescript-eslint/tsconfig-utils@8.53.1(typescript@5.9.3)':
|
|
1019
2213
|
dependencies:
|
|
1020
|
-
|
|
2214
|
+
typescript: 5.9.3
|
|
1021
2215
|
|
|
1022
|
-
|
|
2216
|
+
'@typescript-eslint/type-utils@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
1023
2217
|
dependencies:
|
|
1024
|
-
|
|
2218
|
+
'@typescript-eslint/types': 8.53.1
|
|
2219
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
2220
|
+
'@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
2221
|
+
debug: 4.4.3
|
|
2222
|
+
eslint: 9.39.2(jiti@1.21.7)
|
|
2223
|
+
ts-api-utils: 2.4.0(typescript@5.9.3)
|
|
2224
|
+
typescript: 5.9.3
|
|
2225
|
+
transitivePeerDependencies:
|
|
2226
|
+
- supports-color
|
|
1025
2227
|
|
|
1026
|
-
|
|
2228
|
+
'@typescript-eslint/types@8.53.1': {}
|
|
1027
2229
|
|
|
1028
|
-
|
|
2230
|
+
'@typescript-eslint/typescript-estree@8.53.1(typescript@5.9.3)':
|
|
2231
|
+
dependencies:
|
|
2232
|
+
'@typescript-eslint/project-service': 8.53.1(typescript@5.9.3)
|
|
2233
|
+
'@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.9.3)
|
|
2234
|
+
'@typescript-eslint/types': 8.53.1
|
|
2235
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
2236
|
+
debug: 4.4.3
|
|
2237
|
+
minimatch: 9.0.5
|
|
2238
|
+
semver: 7.7.3
|
|
2239
|
+
tinyglobby: 0.2.15
|
|
2240
|
+
ts-api-utils: 2.4.0(typescript@5.9.3)
|
|
2241
|
+
typescript: 5.9.3
|
|
2242
|
+
transitivePeerDependencies:
|
|
2243
|
+
- supports-color
|
|
2244
|
+
|
|
2245
|
+
'@typescript-eslint/utils@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
2246
|
+
dependencies:
|
|
2247
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
|
|
2248
|
+
'@typescript-eslint/scope-manager': 8.53.1
|
|
2249
|
+
'@typescript-eslint/types': 8.53.1
|
|
2250
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
2251
|
+
eslint: 9.39.2(jiti@1.21.7)
|
|
2252
|
+
typescript: 5.9.3
|
|
2253
|
+
transitivePeerDependencies:
|
|
2254
|
+
- supports-color
|
|
2255
|
+
|
|
2256
|
+
'@typescript-eslint/visitor-keys@8.53.1':
|
|
2257
|
+
dependencies:
|
|
2258
|
+
'@typescript-eslint/types': 8.53.1
|
|
2259
|
+
eslint-visitor-keys: 4.2.1
|
|
2260
|
+
|
|
2261
|
+
accepts@1.3.8:
|
|
2262
|
+
dependencies:
|
|
2263
|
+
mime-types: 2.1.35
|
|
2264
|
+
negotiator: 0.6.3
|
|
2265
|
+
|
|
2266
|
+
acorn-jsx@5.3.2(acorn@8.15.0):
|
|
2267
|
+
dependencies:
|
|
2268
|
+
acorn: 8.15.0
|
|
2269
|
+
|
|
2270
|
+
acorn@8.15.0: {}
|
|
2271
|
+
|
|
2272
|
+
acorn@8.16.0: {}
|
|
2273
|
+
|
|
2274
|
+
ajv@6.12.6:
|
|
2275
|
+
dependencies:
|
|
2276
|
+
fast-deep-equal: 3.1.3
|
|
2277
|
+
fast-json-stable-stringify: 2.1.0
|
|
2278
|
+
json-schema-traverse: 0.4.1
|
|
2279
|
+
uri-js: 4.4.1
|
|
2280
|
+
|
|
2281
|
+
ansi-styles@4.3.0:
|
|
2282
|
+
dependencies:
|
|
2283
|
+
color-convert: 2.0.1
|
|
2284
|
+
|
|
2285
|
+
ansi-styles@5.2.0: {}
|
|
2286
|
+
|
|
2287
|
+
any-promise@1.3.0: {}
|
|
2288
|
+
|
|
2289
|
+
anymatch@3.1.3:
|
|
2290
|
+
dependencies:
|
|
2291
|
+
normalize-path: 3.0.0
|
|
2292
|
+
picomatch: 2.3.1
|
|
2293
|
+
|
|
2294
|
+
arg@5.0.2: {}
|
|
2295
|
+
|
|
2296
|
+
argparse@2.0.1: {}
|
|
2297
|
+
|
|
2298
|
+
array-flatten@1.1.1: {}
|
|
2299
|
+
|
|
2300
|
+
asynckit@0.4.0: {}
|
|
2301
|
+
|
|
2302
|
+
autoprefixer@10.4.23(postcss@8.5.6):
|
|
2303
|
+
dependencies:
|
|
2304
|
+
browserslist: 4.28.1
|
|
2305
|
+
caniuse-lite: 1.0.30001765
|
|
2306
|
+
fraction.js: 5.3.4
|
|
2307
|
+
picocolors: 1.1.1
|
|
2308
|
+
postcss: 8.5.6
|
|
2309
|
+
postcss-value-parser: 4.2.0
|
|
2310
|
+
|
|
2311
|
+
axios@1.13.2:
|
|
2312
|
+
dependencies:
|
|
2313
|
+
follow-redirects: 1.15.11
|
|
2314
|
+
form-data: 4.0.5
|
|
2315
|
+
proxy-from-env: 1.1.0
|
|
2316
|
+
transitivePeerDependencies:
|
|
2317
|
+
- debug
|
|
2318
|
+
|
|
2319
|
+
balanced-match@1.0.2: {}
|
|
2320
|
+
|
|
2321
|
+
base64-js@1.5.1: {}
|
|
2322
|
+
|
|
2323
|
+
baseline-browser-mapping@2.9.16: {}
|
|
2324
|
+
|
|
2325
|
+
binary-extensions@2.3.0: {}
|
|
2326
|
+
|
|
2327
|
+
body-parser@1.20.4:
|
|
2328
|
+
dependencies:
|
|
2329
|
+
bytes: 3.1.2
|
|
2330
|
+
content-type: 1.0.5
|
|
2331
|
+
debug: 2.6.9
|
|
2332
|
+
depd: 2.0.0
|
|
2333
|
+
destroy: 1.2.0
|
|
2334
|
+
http-errors: 2.0.1
|
|
2335
|
+
iconv-lite: 0.4.24
|
|
2336
|
+
on-finished: 2.4.1
|
|
2337
|
+
qs: 6.14.2
|
|
2338
|
+
raw-body: 2.5.3
|
|
2339
|
+
type-is: 1.6.18
|
|
2340
|
+
unpipe: 1.0.0
|
|
2341
|
+
transitivePeerDependencies:
|
|
2342
|
+
- supports-color
|
|
2343
|
+
|
|
2344
|
+
brace-expansion@1.1.12:
|
|
2345
|
+
dependencies:
|
|
2346
|
+
balanced-match: 1.0.2
|
|
2347
|
+
concat-map: 0.0.1
|
|
2348
|
+
|
|
2349
|
+
brace-expansion@2.0.2:
|
|
2350
|
+
dependencies:
|
|
2351
|
+
balanced-match: 1.0.2
|
|
2352
|
+
|
|
2353
|
+
braces@3.0.3:
|
|
2354
|
+
dependencies:
|
|
2355
|
+
fill-range: 7.1.1
|
|
2356
|
+
|
|
2357
|
+
browserslist@4.28.1:
|
|
2358
|
+
dependencies:
|
|
2359
|
+
baseline-browser-mapping: 2.9.16
|
|
2360
|
+
caniuse-lite: 1.0.30001765
|
|
2361
|
+
electron-to-chromium: 1.5.267
|
|
2362
|
+
node-releases: 2.0.27
|
|
2363
|
+
update-browserslist-db: 1.2.3(browserslist@4.28.1)
|
|
2364
|
+
|
|
2365
|
+
bundle-require@5.1.0(esbuild@0.27.2):
|
|
2366
|
+
dependencies:
|
|
2367
|
+
esbuild: 0.27.2
|
|
2368
|
+
load-tsconfig: 0.2.5
|
|
2369
|
+
|
|
2370
|
+
bytes@3.1.2: {}
|
|
2371
|
+
|
|
2372
|
+
cac@6.7.14: {}
|
|
2373
|
+
|
|
2374
|
+
call-bind-apply-helpers@1.0.2:
|
|
2375
|
+
dependencies:
|
|
2376
|
+
es-errors: 1.3.0
|
|
2377
|
+
function-bind: 1.1.2
|
|
2378
|
+
|
|
2379
|
+
call-bound@1.0.4:
|
|
2380
|
+
dependencies:
|
|
2381
|
+
call-bind-apply-helpers: 1.0.2
|
|
2382
|
+
get-intrinsic: 1.3.0
|
|
2383
|
+
|
|
2384
|
+
callsites@3.1.0: {}
|
|
2385
|
+
|
|
2386
|
+
camelcase-css@2.0.1: {}
|
|
2387
|
+
|
|
2388
|
+
camelcase@6.3.0: {}
|
|
2389
|
+
|
|
2390
|
+
caniuse-lite@1.0.30001765: {}
|
|
2391
|
+
|
|
2392
|
+
chalk@4.1.2:
|
|
2393
|
+
dependencies:
|
|
2394
|
+
ansi-styles: 4.3.0
|
|
2395
|
+
supports-color: 7.2.0
|
|
2396
|
+
|
|
2397
|
+
chokidar@3.6.0:
|
|
2398
|
+
dependencies:
|
|
2399
|
+
anymatch: 3.1.3
|
|
2400
|
+
braces: 3.0.3
|
|
2401
|
+
glob-parent: 5.1.2
|
|
2402
|
+
is-binary-path: 2.1.0
|
|
2403
|
+
is-glob: 4.0.3
|
|
2404
|
+
normalize-path: 3.0.0
|
|
2405
|
+
readdirp: 3.6.0
|
|
2406
|
+
optionalDependencies:
|
|
2407
|
+
fsevents: 2.3.3
|
|
2408
|
+
|
|
2409
|
+
chokidar@4.0.3:
|
|
2410
|
+
dependencies:
|
|
2411
|
+
readdirp: 4.1.2
|
|
2412
|
+
|
|
2413
|
+
color-convert@2.0.1:
|
|
2414
|
+
dependencies:
|
|
2415
|
+
color-name: 1.1.4
|
|
2416
|
+
|
|
2417
|
+
color-name@1.1.4: {}
|
|
2418
|
+
|
|
2419
|
+
combined-stream@1.0.8:
|
|
2420
|
+
dependencies:
|
|
2421
|
+
delayed-stream: 1.0.0
|
|
2422
|
+
|
|
2423
|
+
commander@4.1.1: {}
|
|
2424
|
+
|
|
2425
|
+
concat-map@0.0.1: {}
|
|
2426
|
+
|
|
2427
|
+
confbox@0.1.8: {}
|
|
2428
|
+
|
|
2429
|
+
consola@3.4.2: {}
|
|
2430
|
+
|
|
2431
|
+
console-table-printer@2.15.0:
|
|
2432
|
+
dependencies:
|
|
2433
|
+
simple-wcswidth: 1.1.2
|
|
2434
|
+
|
|
2435
|
+
content-disposition@0.5.4:
|
|
2436
|
+
dependencies:
|
|
2437
|
+
safe-buffer: 5.2.1
|
|
2438
|
+
|
|
2439
|
+
content-type@1.0.5: {}
|
|
2440
|
+
|
|
2441
|
+
cookie-signature@1.0.7: {}
|
|
2442
|
+
|
|
2443
|
+
cookie@0.7.2: {}
|
|
2444
|
+
|
|
2445
|
+
coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0):
|
|
2446
|
+
dependencies:
|
|
2447
|
+
'@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
|
|
2448
|
+
'@langchain/openai': 1.2.3(@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5)))(ws@8.19.0)
|
|
2449
|
+
'@supabase/supabase-js': 2.95.3
|
|
2450
|
+
axios: 1.13.2
|
|
2451
|
+
pg: 8.17.2
|
|
2452
|
+
transitivePeerDependencies:
|
|
2453
|
+
- '@opentelemetry/api'
|
|
2454
|
+
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
2455
|
+
- '@opentelemetry/sdk-trace-base'
|
|
2456
|
+
- bufferutil
|
|
2457
|
+
- debug
|
|
2458
|
+
- openai
|
|
2459
|
+
- pg-native
|
|
2460
|
+
- utf-8-validate
|
|
2461
|
+
- ws
|
|
2462
|
+
|
|
2463
|
+
cross-spawn@7.0.6:
|
|
2464
|
+
dependencies:
|
|
2465
|
+
path-key: 3.1.1
|
|
2466
|
+
shebang-command: 2.0.0
|
|
2467
|
+
which: 2.0.2
|
|
2468
|
+
|
|
2469
|
+
cssesc@3.0.0: {}
|
|
2470
|
+
|
|
2471
|
+
debug@2.6.9:
|
|
2472
|
+
dependencies:
|
|
2473
|
+
ms: 2.0.0
|
|
2474
|
+
|
|
2475
|
+
debug@4.4.3:
|
|
2476
|
+
dependencies:
|
|
2477
|
+
ms: 2.1.3
|
|
2478
|
+
|
|
2479
|
+
decamelize@1.2.0: {}
|
|
2480
|
+
|
|
2481
|
+
deep-is@0.1.4: {}
|
|
2482
|
+
|
|
2483
|
+
delayed-stream@1.0.0: {}
|
|
2484
|
+
|
|
2485
|
+
depd@2.0.0: {}
|
|
2486
|
+
|
|
2487
|
+
destroy@1.2.0: {}
|
|
2488
|
+
|
|
2489
|
+
didyoumean@1.2.2: {}
|
|
2490
|
+
|
|
2491
|
+
dlv@1.1.3: {}
|
|
2492
|
+
|
|
2493
|
+
dotenv@17.2.4: {}
|
|
2494
|
+
|
|
2495
|
+
dunder-proto@1.0.1:
|
|
2496
|
+
dependencies:
|
|
2497
|
+
call-bind-apply-helpers: 1.0.2
|
|
2498
|
+
es-errors: 1.3.0
|
|
2499
|
+
gopd: 1.2.0
|
|
2500
|
+
|
|
2501
|
+
ee-first@1.1.1: {}
|
|
2502
|
+
|
|
2503
|
+
electron-to-chromium@1.5.267: {}
|
|
2504
|
+
|
|
2505
|
+
encodeurl@2.0.0: {}
|
|
2506
|
+
|
|
2507
|
+
es-define-property@1.0.1: {}
|
|
2508
|
+
|
|
2509
|
+
es-errors@1.3.0: {}
|
|
2510
|
+
|
|
2511
|
+
es-object-atoms@1.1.1:
|
|
2512
|
+
dependencies:
|
|
2513
|
+
es-errors: 1.3.0
|
|
2514
|
+
|
|
2515
|
+
es-set-tostringtag@2.1.0:
|
|
2516
|
+
dependencies:
|
|
2517
|
+
es-errors: 1.3.0
|
|
2518
|
+
get-intrinsic: 1.3.0
|
|
2519
|
+
has-tostringtag: 1.0.2
|
|
2520
|
+
hasown: 2.0.2
|
|
2521
|
+
|
|
2522
|
+
esbuild@0.27.2:
|
|
2523
|
+
optionalDependencies:
|
|
2524
|
+
'@esbuild/aix-ppc64': 0.27.2
|
|
2525
|
+
'@esbuild/android-arm': 0.27.2
|
|
2526
|
+
'@esbuild/android-arm64': 0.27.2
|
|
2527
|
+
'@esbuild/android-x64': 0.27.2
|
|
2528
|
+
'@esbuild/darwin-arm64': 0.27.2
|
|
2529
|
+
'@esbuild/darwin-x64': 0.27.2
|
|
2530
|
+
'@esbuild/freebsd-arm64': 0.27.2
|
|
2531
|
+
'@esbuild/freebsd-x64': 0.27.2
|
|
2532
|
+
'@esbuild/linux-arm': 0.27.2
|
|
2533
|
+
'@esbuild/linux-arm64': 0.27.2
|
|
2534
|
+
'@esbuild/linux-ia32': 0.27.2
|
|
2535
|
+
'@esbuild/linux-loong64': 0.27.2
|
|
2536
|
+
'@esbuild/linux-mips64el': 0.27.2
|
|
2537
|
+
'@esbuild/linux-ppc64': 0.27.2
|
|
2538
|
+
'@esbuild/linux-riscv64': 0.27.2
|
|
2539
|
+
'@esbuild/linux-s390x': 0.27.2
|
|
2540
|
+
'@esbuild/linux-x64': 0.27.2
|
|
2541
|
+
'@esbuild/netbsd-arm64': 0.27.2
|
|
2542
|
+
'@esbuild/netbsd-x64': 0.27.2
|
|
2543
|
+
'@esbuild/openbsd-arm64': 0.27.2
|
|
2544
|
+
'@esbuild/openbsd-x64': 0.27.2
|
|
2545
|
+
'@esbuild/openharmony-arm64': 0.27.2
|
|
2546
|
+
'@esbuild/sunos-x64': 0.27.2
|
|
2547
|
+
'@esbuild/win32-arm64': 0.27.2
|
|
2548
|
+
'@esbuild/win32-ia32': 0.27.2
|
|
2549
|
+
'@esbuild/win32-x64': 0.27.2
|
|
2550
|
+
|
|
2551
|
+
escalade@3.2.0: {}
|
|
2552
|
+
|
|
2553
|
+
escape-html@1.0.3: {}
|
|
2554
|
+
|
|
2555
|
+
escape-string-regexp@4.0.0: {}
|
|
2556
|
+
|
|
2557
|
+
eslint-scope@8.4.0:
|
|
2558
|
+
dependencies:
|
|
2559
|
+
esrecurse: 4.3.0
|
|
2560
|
+
estraverse: 5.3.0
|
|
2561
|
+
|
|
2562
|
+
eslint-visitor-keys@3.4.3: {}
|
|
2563
|
+
|
|
2564
|
+
eslint-visitor-keys@4.2.1: {}
|
|
2565
|
+
|
|
2566
|
+
eslint@9.39.2(jiti@1.21.7):
|
|
2567
|
+
dependencies:
|
|
2568
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
|
|
2569
|
+
'@eslint-community/regexpp': 4.12.2
|
|
2570
|
+
'@eslint/config-array': 0.21.1
|
|
2571
|
+
'@eslint/config-helpers': 0.4.2
|
|
2572
|
+
'@eslint/core': 0.17.0
|
|
2573
|
+
'@eslint/eslintrc': 3.3.3
|
|
2574
|
+
'@eslint/js': 9.39.2
|
|
2575
|
+
'@eslint/plugin-kit': 0.4.1
|
|
2576
|
+
'@humanfs/node': 0.16.7
|
|
2577
|
+
'@humanwhocodes/module-importer': 1.0.1
|
|
2578
|
+
'@humanwhocodes/retry': 0.4.3
|
|
2579
|
+
'@types/estree': 1.0.8
|
|
2580
|
+
ajv: 6.12.6
|
|
2581
|
+
chalk: 4.1.2
|
|
2582
|
+
cross-spawn: 7.0.6
|
|
2583
|
+
debug: 4.4.3
|
|
2584
|
+
escape-string-regexp: 4.0.0
|
|
2585
|
+
eslint-scope: 8.4.0
|
|
2586
|
+
eslint-visitor-keys: 4.2.1
|
|
2587
|
+
espree: 10.4.0
|
|
2588
|
+
esquery: 1.7.0
|
|
2589
|
+
esutils: 2.0.3
|
|
2590
|
+
fast-deep-equal: 3.1.3
|
|
2591
|
+
file-entry-cache: 8.0.0
|
|
2592
|
+
find-up: 5.0.0
|
|
2593
|
+
glob-parent: 6.0.2
|
|
2594
|
+
ignore: 5.3.2
|
|
2595
|
+
imurmurhash: 0.1.4
|
|
2596
|
+
is-glob: 4.0.3
|
|
2597
|
+
json-stable-stringify-without-jsonify: 1.0.1
|
|
2598
|
+
lodash.merge: 4.6.2
|
|
2599
|
+
minimatch: 3.1.2
|
|
2600
|
+
natural-compare: 1.4.0
|
|
2601
|
+
optionator: 0.9.4
|
|
2602
|
+
optionalDependencies:
|
|
2603
|
+
jiti: 1.21.7
|
|
2604
|
+
transitivePeerDependencies:
|
|
2605
|
+
- supports-color
|
|
2606
|
+
|
|
2607
|
+
espree@10.4.0:
|
|
2608
|
+
dependencies:
|
|
2609
|
+
acorn: 8.15.0
|
|
2610
|
+
acorn-jsx: 5.3.2(acorn@8.15.0)
|
|
2611
|
+
eslint-visitor-keys: 4.2.1
|
|
2612
|
+
|
|
2613
|
+
esquery@1.7.0:
|
|
2614
|
+
dependencies:
|
|
2615
|
+
estraverse: 5.3.0
|
|
2616
|
+
|
|
2617
|
+
esrecurse@4.3.0:
|
|
2618
|
+
dependencies:
|
|
2619
|
+
estraverse: 5.3.0
|
|
2620
|
+
|
|
2621
|
+
estraverse@5.3.0: {}
|
|
2622
|
+
|
|
2623
|
+
esutils@2.0.3: {}
|
|
2624
|
+
|
|
2625
|
+
etag@1.8.1: {}
|
|
2626
|
+
|
|
2627
|
+
eventemitter3@4.0.7: {}
|
|
2628
|
+
|
|
2629
|
+
express@4.22.1:
|
|
2630
|
+
dependencies:
|
|
2631
|
+
accepts: 1.3.8
|
|
2632
|
+
array-flatten: 1.1.1
|
|
2633
|
+
body-parser: 1.20.4
|
|
2634
|
+
content-disposition: 0.5.4
|
|
2635
|
+
content-type: 1.0.5
|
|
2636
|
+
cookie: 0.7.2
|
|
2637
|
+
cookie-signature: 1.0.7
|
|
2638
|
+
debug: 2.6.9
|
|
2639
|
+
depd: 2.0.0
|
|
2640
|
+
encodeurl: 2.0.0
|
|
2641
|
+
escape-html: 1.0.3
|
|
2642
|
+
etag: 1.8.1
|
|
2643
|
+
finalhandler: 1.3.2
|
|
2644
|
+
fresh: 0.5.2
|
|
2645
|
+
http-errors: 2.0.1
|
|
2646
|
+
merge-descriptors: 1.0.3
|
|
2647
|
+
methods: 1.1.2
|
|
2648
|
+
on-finished: 2.4.1
|
|
2649
|
+
parseurl: 1.3.3
|
|
2650
|
+
path-to-regexp: 0.1.12
|
|
2651
|
+
proxy-addr: 2.0.7
|
|
2652
|
+
qs: 6.14.2
|
|
2653
|
+
range-parser: 1.2.1
|
|
2654
|
+
safe-buffer: 5.2.1
|
|
2655
|
+
send: 0.19.2
|
|
2656
|
+
serve-static: 1.16.3
|
|
2657
|
+
setprototypeof: 1.2.0
|
|
2658
|
+
statuses: 2.0.2
|
|
2659
|
+
type-is: 1.6.18
|
|
2660
|
+
utils-merge: 1.0.1
|
|
2661
|
+
vary: 1.1.2
|
|
2662
|
+
transitivePeerDependencies:
|
|
2663
|
+
- supports-color
|
|
2664
|
+
|
|
2665
|
+
fast-deep-equal@3.1.3: {}
|
|
2666
|
+
|
|
2667
|
+
fast-glob@3.3.3:
|
|
2668
|
+
dependencies:
|
|
2669
|
+
'@nodelib/fs.stat': 2.0.5
|
|
2670
|
+
'@nodelib/fs.walk': 1.2.8
|
|
2671
|
+
glob-parent: 5.1.2
|
|
2672
|
+
merge2: 1.4.1
|
|
2673
|
+
micromatch: 4.0.8
|
|
2674
|
+
|
|
2675
|
+
fast-json-stable-stringify@2.1.0: {}
|
|
2676
|
+
|
|
2677
|
+
fast-levenshtein@2.0.6: {}
|
|
2678
|
+
|
|
2679
|
+
fastq@1.20.1:
|
|
2680
|
+
dependencies:
|
|
2681
|
+
reusify: 1.1.0
|
|
2682
|
+
|
|
2683
|
+
fdir@6.5.0(picomatch@4.0.3):
|
|
2684
|
+
optionalDependencies:
|
|
2685
|
+
picomatch: 4.0.3
|
|
2686
|
+
|
|
2687
|
+
file-entry-cache@8.0.0:
|
|
2688
|
+
dependencies:
|
|
2689
|
+
flat-cache: 4.0.1
|
|
2690
|
+
|
|
2691
|
+
fill-range@7.1.1:
|
|
2692
|
+
dependencies:
|
|
2693
|
+
to-regex-range: 5.0.1
|
|
2694
|
+
|
|
2695
|
+
finalhandler@1.3.2:
|
|
2696
|
+
dependencies:
|
|
2697
|
+
debug: 2.6.9
|
|
2698
|
+
encodeurl: 2.0.0
|
|
2699
|
+
escape-html: 1.0.3
|
|
2700
|
+
on-finished: 2.4.1
|
|
2701
|
+
parseurl: 1.3.3
|
|
2702
|
+
statuses: 2.0.2
|
|
2703
|
+
unpipe: 1.0.0
|
|
2704
|
+
transitivePeerDependencies:
|
|
2705
|
+
- supports-color
|
|
2706
|
+
|
|
2707
|
+
find-up@5.0.0:
|
|
2708
|
+
dependencies:
|
|
2709
|
+
locate-path: 6.0.0
|
|
2710
|
+
path-exists: 4.0.0
|
|
2711
|
+
|
|
2712
|
+
fix-dts-default-cjs-exports@1.0.1:
|
|
2713
|
+
dependencies:
|
|
2714
|
+
magic-string: 0.30.21
|
|
2715
|
+
mlly: 1.8.1
|
|
2716
|
+
rollup: 4.55.3
|
|
2717
|
+
|
|
2718
|
+
flat-cache@4.0.1:
|
|
2719
|
+
dependencies:
|
|
2720
|
+
flatted: 3.3.3
|
|
2721
|
+
keyv: 4.5.4
|
|
2722
|
+
|
|
2723
|
+
flatted@3.3.3: {}
|
|
2724
|
+
|
|
2725
|
+
follow-redirects@1.15.11: {}
|
|
2726
|
+
|
|
2727
|
+
form-data@4.0.5:
|
|
2728
|
+
dependencies:
|
|
2729
|
+
asynckit: 0.4.0
|
|
2730
|
+
combined-stream: 1.0.8
|
|
2731
|
+
es-set-tostringtag: 2.1.0
|
|
2732
|
+
hasown: 2.0.2
|
|
2733
|
+
mime-types: 2.1.35
|
|
2734
|
+
|
|
2735
|
+
forwarded@0.2.0: {}
|
|
2736
|
+
|
|
2737
|
+
fraction.js@5.3.4: {}
|
|
2738
|
+
|
|
2739
|
+
fresh@0.5.2: {}
|
|
2740
|
+
|
|
2741
|
+
fsevents@2.3.3:
|
|
2742
|
+
optional: true
|
|
2743
|
+
|
|
2744
|
+
function-bind@1.1.2: {}
|
|
2745
|
+
|
|
2746
|
+
get-intrinsic@1.3.0:
|
|
2747
|
+
dependencies:
|
|
2748
|
+
call-bind-apply-helpers: 1.0.2
|
|
2749
|
+
es-define-property: 1.0.1
|
|
2750
|
+
es-errors: 1.3.0
|
|
2751
|
+
es-object-atoms: 1.1.1
|
|
2752
|
+
function-bind: 1.1.2
|
|
2753
|
+
get-proto: 1.0.1
|
|
2754
|
+
gopd: 1.2.0
|
|
2755
|
+
has-symbols: 1.1.0
|
|
2756
|
+
hasown: 2.0.2
|
|
2757
|
+
math-intrinsics: 1.1.0
|
|
2758
|
+
|
|
2759
|
+
get-proto@1.0.1:
|
|
2760
|
+
dependencies:
|
|
2761
|
+
dunder-proto: 1.0.1
|
|
2762
|
+
es-object-atoms: 1.1.1
|
|
2763
|
+
|
|
2764
|
+
get-tsconfig@4.13.6:
|
|
2765
|
+
dependencies:
|
|
2766
|
+
resolve-pkg-maps: 1.0.0
|
|
2767
|
+
|
|
2768
|
+
glob-parent@5.1.2:
|
|
2769
|
+
dependencies:
|
|
2770
|
+
is-glob: 4.0.3
|
|
2771
|
+
|
|
2772
|
+
glob-parent@6.0.2:
|
|
2773
|
+
dependencies:
|
|
2774
|
+
is-glob: 4.0.3
|
|
2775
|
+
|
|
2776
|
+
globals@14.0.0: {}
|
|
2777
|
+
|
|
2778
|
+
gopd@1.2.0: {}
|
|
2779
|
+
|
|
2780
|
+
has-flag@4.0.0: {}
|
|
2781
|
+
|
|
2782
|
+
has-symbols@1.1.0: {}
|
|
2783
|
+
|
|
2784
|
+
has-tostringtag@1.0.2:
|
|
2785
|
+
dependencies:
|
|
2786
|
+
has-symbols: 1.1.0
|
|
2787
|
+
|
|
2788
|
+
hasown@2.0.2:
|
|
2789
|
+
dependencies:
|
|
2790
|
+
function-bind: 1.1.2
|
|
2791
|
+
|
|
2792
|
+
http-errors@2.0.1:
|
|
2793
|
+
dependencies:
|
|
2794
|
+
depd: 2.0.0
|
|
2795
|
+
inherits: 2.0.4
|
|
2796
|
+
setprototypeof: 1.2.0
|
|
2797
|
+
statuses: 2.0.2
|
|
2798
|
+
toidentifier: 1.0.1
|
|
2799
|
+
|
|
2800
|
+
iceberg-js@0.8.1: {}
|
|
2801
|
+
|
|
2802
|
+
iconv-lite@0.4.24:
|
|
2803
|
+
dependencies:
|
|
2804
|
+
safer-buffer: 2.1.2
|
|
2805
|
+
|
|
2806
|
+
ignore@5.3.2: {}
|
|
2807
|
+
|
|
2808
|
+
ignore@7.0.5: {}
|
|
2809
|
+
|
|
2810
|
+
import-fresh@3.3.1:
|
|
2811
|
+
dependencies:
|
|
2812
|
+
parent-module: 1.0.1
|
|
2813
|
+
resolve-from: 4.0.0
|
|
2814
|
+
|
|
2815
|
+
imurmurhash@0.1.4: {}
|
|
2816
|
+
|
|
2817
|
+
inherits@2.0.4: {}
|
|
2818
|
+
|
|
2819
|
+
ipaddr.js@1.9.1: {}
|
|
2820
|
+
|
|
2821
|
+
is-binary-path@2.1.0:
|
|
2822
|
+
dependencies:
|
|
2823
|
+
binary-extensions: 2.3.0
|
|
2824
|
+
|
|
2825
|
+
is-core-module@2.16.1:
|
|
2826
|
+
dependencies:
|
|
2827
|
+
hasown: 2.0.2
|
|
2828
|
+
|
|
2829
|
+
is-extglob@2.1.1: {}
|
|
2830
|
+
|
|
2831
|
+
is-glob@4.0.3:
|
|
1029
2832
|
dependencies:
|
|
1030
2833
|
is-extglob: 2.1.1
|
|
1031
2834
|
|
|
1032
2835
|
is-number@7.0.0: {}
|
|
1033
2836
|
|
|
2837
|
+
isexe@2.0.0: {}
|
|
2838
|
+
|
|
1034
2839
|
jiti@1.21.7: {}
|
|
1035
2840
|
|
|
2841
|
+
joycon@3.1.1: {}
|
|
2842
|
+
|
|
2843
|
+
js-tiktoken@1.0.21:
|
|
2844
|
+
dependencies:
|
|
2845
|
+
base64-js: 1.5.1
|
|
2846
|
+
|
|
2847
|
+
js-yaml@4.1.1:
|
|
2848
|
+
dependencies:
|
|
2849
|
+
argparse: 2.0.1
|
|
2850
|
+
|
|
2851
|
+
json-buffer@3.0.1: {}
|
|
2852
|
+
|
|
2853
|
+
json-schema-traverse@0.4.1: {}
|
|
2854
|
+
|
|
2855
|
+
json-stable-stringify-without-jsonify@1.0.1: {}
|
|
2856
|
+
|
|
2857
|
+
keyv@4.5.4:
|
|
2858
|
+
dependencies:
|
|
2859
|
+
json-buffer: 3.0.1
|
|
2860
|
+
|
|
2861
|
+
langsmith@0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5)):
|
|
2862
|
+
dependencies:
|
|
2863
|
+
'@types/uuid': 10.0.0
|
|
2864
|
+
chalk: 4.1.2
|
|
2865
|
+
console-table-printer: 2.15.0
|
|
2866
|
+
p-queue: 6.6.2
|
|
2867
|
+
semver: 7.7.3
|
|
2868
|
+
uuid: 10.0.0
|
|
2869
|
+
optionalDependencies:
|
|
2870
|
+
openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
|
|
2871
|
+
|
|
2872
|
+
levn@0.4.1:
|
|
2873
|
+
dependencies:
|
|
2874
|
+
prelude-ls: 1.2.1
|
|
2875
|
+
type-check: 0.4.0
|
|
2876
|
+
|
|
1036
2877
|
lilconfig@3.1.3: {}
|
|
1037
2878
|
|
|
1038
2879
|
lines-and-columns@1.2.4: {}
|
|
1039
2880
|
|
|
2881
|
+
load-tsconfig@0.2.5: {}
|
|
2882
|
+
|
|
2883
|
+
locate-path@6.0.0:
|
|
2884
|
+
dependencies:
|
|
2885
|
+
p-locate: 5.0.0
|
|
2886
|
+
|
|
2887
|
+
lodash.merge@4.6.2: {}
|
|
2888
|
+
|
|
2889
|
+
magic-string@0.30.21:
|
|
2890
|
+
dependencies:
|
|
2891
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2892
|
+
|
|
2893
|
+
math-intrinsics@1.1.0: {}
|
|
2894
|
+
|
|
2895
|
+
media-typer@0.3.0: {}
|
|
2896
|
+
|
|
2897
|
+
merge-descriptors@1.0.3: {}
|
|
2898
|
+
|
|
1040
2899
|
merge2@1.4.1: {}
|
|
1041
2900
|
|
|
2901
|
+
methods@1.1.2: {}
|
|
2902
|
+
|
|
1042
2903
|
micromatch@4.0.8:
|
|
1043
2904
|
dependencies:
|
|
1044
2905
|
braces: 3.0.3
|
|
1045
2906
|
picomatch: 2.3.1
|
|
1046
2907
|
|
|
2908
|
+
mime-db@1.52.0: {}
|
|
2909
|
+
|
|
2910
|
+
mime-types@2.1.35:
|
|
2911
|
+
dependencies:
|
|
2912
|
+
mime-db: 1.52.0
|
|
2913
|
+
|
|
2914
|
+
mime@1.6.0: {}
|
|
2915
|
+
|
|
2916
|
+
minimatch@3.1.2:
|
|
2917
|
+
dependencies:
|
|
2918
|
+
brace-expansion: 1.1.12
|
|
2919
|
+
|
|
2920
|
+
minimatch@9.0.5:
|
|
2921
|
+
dependencies:
|
|
2922
|
+
brace-expansion: 2.0.2
|
|
2923
|
+
|
|
2924
|
+
mlly@1.8.1:
|
|
2925
|
+
dependencies:
|
|
2926
|
+
acorn: 8.16.0
|
|
2927
|
+
pathe: 2.0.3
|
|
2928
|
+
pkg-types: 1.3.1
|
|
2929
|
+
ufo: 1.6.3
|
|
2930
|
+
|
|
2931
|
+
ms@2.0.0: {}
|
|
2932
|
+
|
|
2933
|
+
ms@2.1.3: {}
|
|
2934
|
+
|
|
2935
|
+
mustache@4.2.0: {}
|
|
2936
|
+
|
|
1047
2937
|
mz@2.7.0:
|
|
1048
2938
|
dependencies:
|
|
1049
2939
|
any-promise: 1.3.0
|
|
@@ -1052,6 +2942,10 @@ snapshots:
|
|
|
1052
2942
|
|
|
1053
2943
|
nanoid@3.3.11: {}
|
|
1054
2944
|
|
|
2945
|
+
natural-compare@1.4.0: {}
|
|
2946
|
+
|
|
2947
|
+
negotiator@0.6.3: {}
|
|
2948
|
+
|
|
1055
2949
|
node-releases@2.0.27: {}
|
|
1056
2950
|
|
|
1057
2951
|
normalize-path@3.0.0: {}
|
|
@@ -1060,12 +2954,100 @@ snapshots:
|
|
|
1060
2954
|
|
|
1061
2955
|
object-hash@3.0.0: {}
|
|
1062
2956
|
|
|
2957
|
+
object-inspect@1.13.4: {}
|
|
2958
|
+
|
|
2959
|
+
on-finished@2.4.1:
|
|
2960
|
+
dependencies:
|
|
2961
|
+
ee-first: 1.1.1
|
|
2962
|
+
|
|
1063
2963
|
only-allow@1.2.2:
|
|
1064
2964
|
dependencies:
|
|
1065
2965
|
which-pm-runs: 1.1.0
|
|
1066
2966
|
|
|
2967
|
+
openai@6.16.0(ws@8.19.0)(zod@4.3.5):
|
|
2968
|
+
optionalDependencies:
|
|
2969
|
+
ws: 8.19.0
|
|
2970
|
+
zod: 4.3.5
|
|
2971
|
+
|
|
2972
|
+
optionator@0.9.4:
|
|
2973
|
+
dependencies:
|
|
2974
|
+
deep-is: 0.1.4
|
|
2975
|
+
fast-levenshtein: 2.0.6
|
|
2976
|
+
levn: 0.4.1
|
|
2977
|
+
prelude-ls: 1.2.1
|
|
2978
|
+
type-check: 0.4.0
|
|
2979
|
+
word-wrap: 1.2.5
|
|
2980
|
+
|
|
2981
|
+
p-finally@1.0.0: {}
|
|
2982
|
+
|
|
2983
|
+
p-limit@3.1.0:
|
|
2984
|
+
dependencies:
|
|
2985
|
+
yocto-queue: 0.1.0
|
|
2986
|
+
|
|
2987
|
+
p-locate@5.0.0:
|
|
2988
|
+
dependencies:
|
|
2989
|
+
p-limit: 3.1.0
|
|
2990
|
+
|
|
2991
|
+
p-queue@6.6.2:
|
|
2992
|
+
dependencies:
|
|
2993
|
+
eventemitter3: 4.0.7
|
|
2994
|
+
p-timeout: 3.2.0
|
|
2995
|
+
|
|
2996
|
+
p-timeout@3.2.0:
|
|
2997
|
+
dependencies:
|
|
2998
|
+
p-finally: 1.0.0
|
|
2999
|
+
|
|
3000
|
+
parent-module@1.0.1:
|
|
3001
|
+
dependencies:
|
|
3002
|
+
callsites: 3.1.0
|
|
3003
|
+
|
|
3004
|
+
parseurl@1.3.3: {}
|
|
3005
|
+
|
|
3006
|
+
path-exists@4.0.0: {}
|
|
3007
|
+
|
|
3008
|
+
path-key@3.1.1: {}
|
|
3009
|
+
|
|
1067
3010
|
path-parse@1.0.7: {}
|
|
1068
3011
|
|
|
3012
|
+
path-to-regexp@0.1.12: {}
|
|
3013
|
+
|
|
3014
|
+
pathe@2.0.3: {}
|
|
3015
|
+
|
|
3016
|
+
pg-cloudflare@1.3.0:
|
|
3017
|
+
optional: true
|
|
3018
|
+
|
|
3019
|
+
pg-connection-string@2.10.1: {}
|
|
3020
|
+
|
|
3021
|
+
pg-int8@1.0.1: {}
|
|
3022
|
+
|
|
3023
|
+
pg-pool@3.11.0(pg@8.17.2):
|
|
3024
|
+
dependencies:
|
|
3025
|
+
pg: 8.17.2
|
|
3026
|
+
|
|
3027
|
+
pg-protocol@1.11.0: {}
|
|
3028
|
+
|
|
3029
|
+
pg-types@2.2.0:
|
|
3030
|
+
dependencies:
|
|
3031
|
+
pg-int8: 1.0.1
|
|
3032
|
+
postgres-array: 2.0.0
|
|
3033
|
+
postgres-bytea: 1.0.1
|
|
3034
|
+
postgres-date: 1.0.7
|
|
3035
|
+
postgres-interval: 1.2.0
|
|
3036
|
+
|
|
3037
|
+
pg@8.17.2:
|
|
3038
|
+
dependencies:
|
|
3039
|
+
pg-connection-string: 2.10.1
|
|
3040
|
+
pg-pool: 3.11.0(pg@8.17.2)
|
|
3041
|
+
pg-protocol: 1.11.0
|
|
3042
|
+
pg-types: 2.2.0
|
|
3043
|
+
pgpass: 1.0.5
|
|
3044
|
+
optionalDependencies:
|
|
3045
|
+
pg-cloudflare: 1.3.0
|
|
3046
|
+
|
|
3047
|
+
pgpass@1.0.5:
|
|
3048
|
+
dependencies:
|
|
3049
|
+
split2: 4.2.0
|
|
3050
|
+
|
|
1069
3051
|
picocolors@1.1.1: {}
|
|
1070
3052
|
|
|
1071
3053
|
picomatch@2.3.1: {}
|
|
@@ -1076,6 +3058,12 @@ snapshots:
|
|
|
1076
3058
|
|
|
1077
3059
|
pirates@4.0.7: {}
|
|
1078
3060
|
|
|
3061
|
+
pkg-types@1.3.1:
|
|
3062
|
+
dependencies:
|
|
3063
|
+
confbox: 0.1.8
|
|
3064
|
+
mlly: 1.8.1
|
|
3065
|
+
pathe: 2.0.3
|
|
3066
|
+
|
|
1079
3067
|
postcss-import@15.1.0(postcss@8.5.6):
|
|
1080
3068
|
dependencies:
|
|
1081
3069
|
postcss: 8.5.6
|
|
@@ -1088,12 +3076,13 @@ snapshots:
|
|
|
1088
3076
|
camelcase-css: 2.0.1
|
|
1089
3077
|
postcss: 8.5.6
|
|
1090
3078
|
|
|
1091
|
-
postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6):
|
|
3079
|
+
postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0):
|
|
1092
3080
|
dependencies:
|
|
1093
3081
|
lilconfig: 3.1.3
|
|
1094
3082
|
optionalDependencies:
|
|
1095
3083
|
jiti: 1.21.7
|
|
1096
3084
|
postcss: 8.5.6
|
|
3085
|
+
tsx: 4.21.0
|
|
1097
3086
|
|
|
1098
3087
|
postcss-nested@6.2.0(postcss@8.5.6):
|
|
1099
3088
|
dependencies:
|
|
@@ -1113,8 +3102,42 @@ snapshots:
|
|
|
1113
3102
|
picocolors: 1.1.1
|
|
1114
3103
|
source-map-js: 1.2.1
|
|
1115
3104
|
|
|
3105
|
+
postgres-array@2.0.0: {}
|
|
3106
|
+
|
|
3107
|
+
postgres-bytea@1.0.1: {}
|
|
3108
|
+
|
|
3109
|
+
postgres-date@1.0.7: {}
|
|
3110
|
+
|
|
3111
|
+
postgres-interval@1.2.0:
|
|
3112
|
+
dependencies:
|
|
3113
|
+
xtend: 4.0.2
|
|
3114
|
+
|
|
3115
|
+
prelude-ls@1.2.1: {}
|
|
3116
|
+
|
|
3117
|
+
proxy-addr@2.0.7:
|
|
3118
|
+
dependencies:
|
|
3119
|
+
forwarded: 0.2.0
|
|
3120
|
+
ipaddr.js: 1.9.1
|
|
3121
|
+
|
|
3122
|
+
proxy-from-env@1.1.0: {}
|
|
3123
|
+
|
|
3124
|
+
punycode@2.3.1: {}
|
|
3125
|
+
|
|
3126
|
+
qs@6.14.2:
|
|
3127
|
+
dependencies:
|
|
3128
|
+
side-channel: 1.1.0
|
|
3129
|
+
|
|
1116
3130
|
queue-microtask@1.2.3: {}
|
|
1117
3131
|
|
|
3132
|
+
range-parser@1.2.1: {}
|
|
3133
|
+
|
|
3134
|
+
raw-body@2.5.3:
|
|
3135
|
+
dependencies:
|
|
3136
|
+
bytes: 3.1.2
|
|
3137
|
+
http-errors: 2.0.1
|
|
3138
|
+
iconv-lite: 0.4.24
|
|
3139
|
+
unpipe: 1.0.0
|
|
3140
|
+
|
|
1118
3141
|
read-cache@1.0.0:
|
|
1119
3142
|
dependencies:
|
|
1120
3143
|
pify: 2.3.0
|
|
@@ -1123,6 +3146,14 @@ snapshots:
|
|
|
1123
3146
|
dependencies:
|
|
1124
3147
|
picomatch: 2.3.1
|
|
1125
3148
|
|
|
3149
|
+
readdirp@4.1.2: {}
|
|
3150
|
+
|
|
3151
|
+
resolve-from@4.0.0: {}
|
|
3152
|
+
|
|
3153
|
+
resolve-from@5.0.0: {}
|
|
3154
|
+
|
|
3155
|
+
resolve-pkg-maps@1.0.0: {}
|
|
3156
|
+
|
|
1126
3157
|
resolve@1.22.11:
|
|
1127
3158
|
dependencies:
|
|
1128
3159
|
is-core-module: 2.16.1
|
|
@@ -1131,40 +3162,122 @@ snapshots:
|
|
|
1131
3162
|
|
|
1132
3163
|
reusify@1.1.0: {}
|
|
1133
3164
|
|
|
1134
|
-
rollup@4.
|
|
3165
|
+
rollup@4.55.3:
|
|
1135
3166
|
dependencies:
|
|
1136
3167
|
'@types/estree': 1.0.8
|
|
1137
3168
|
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-
|
|
3169
|
+
'@rollup/rollup-android-arm-eabi': 4.55.3
|
|
3170
|
+
'@rollup/rollup-android-arm64': 4.55.3
|
|
3171
|
+
'@rollup/rollup-darwin-arm64': 4.55.3
|
|
3172
|
+
'@rollup/rollup-darwin-x64': 4.55.3
|
|
3173
|
+
'@rollup/rollup-freebsd-arm64': 4.55.3
|
|
3174
|
+
'@rollup/rollup-freebsd-x64': 4.55.3
|
|
3175
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.55.3
|
|
3176
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.55.3
|
|
3177
|
+
'@rollup/rollup-linux-arm64-gnu': 4.55.3
|
|
3178
|
+
'@rollup/rollup-linux-arm64-musl': 4.55.3
|
|
3179
|
+
'@rollup/rollup-linux-loong64-gnu': 4.55.3
|
|
3180
|
+
'@rollup/rollup-linux-loong64-musl': 4.55.3
|
|
3181
|
+
'@rollup/rollup-linux-ppc64-gnu': 4.55.3
|
|
3182
|
+
'@rollup/rollup-linux-ppc64-musl': 4.55.3
|
|
3183
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.55.3
|
|
3184
|
+
'@rollup/rollup-linux-riscv64-musl': 4.55.3
|
|
3185
|
+
'@rollup/rollup-linux-s390x-gnu': 4.55.3
|
|
3186
|
+
'@rollup/rollup-linux-x64-gnu': 4.55.3
|
|
3187
|
+
'@rollup/rollup-linux-x64-musl': 4.55.3
|
|
3188
|
+
'@rollup/rollup-openbsd-x64': 4.55.3
|
|
3189
|
+
'@rollup/rollup-openharmony-arm64': 4.55.3
|
|
3190
|
+
'@rollup/rollup-win32-arm64-msvc': 4.55.3
|
|
3191
|
+
'@rollup/rollup-win32-ia32-msvc': 4.55.3
|
|
3192
|
+
'@rollup/rollup-win32-x64-gnu': 4.55.3
|
|
3193
|
+
'@rollup/rollup-win32-x64-msvc': 4.55.3
|
|
1160
3194
|
fsevents: 2.3.3
|
|
1161
3195
|
|
|
1162
3196
|
run-parallel@1.2.0:
|
|
1163
3197
|
dependencies:
|
|
1164
3198
|
queue-microtask: 1.2.3
|
|
1165
3199
|
|
|
3200
|
+
safe-buffer@5.2.1: {}
|
|
3201
|
+
|
|
3202
|
+
safer-buffer@2.1.2: {}
|
|
3203
|
+
|
|
3204
|
+
semver@7.7.3: {}
|
|
3205
|
+
|
|
3206
|
+
send@0.19.2:
|
|
3207
|
+
dependencies:
|
|
3208
|
+
debug: 2.6.9
|
|
3209
|
+
depd: 2.0.0
|
|
3210
|
+
destroy: 1.2.0
|
|
3211
|
+
encodeurl: 2.0.0
|
|
3212
|
+
escape-html: 1.0.3
|
|
3213
|
+
etag: 1.8.1
|
|
3214
|
+
fresh: 0.5.2
|
|
3215
|
+
http-errors: 2.0.1
|
|
3216
|
+
mime: 1.6.0
|
|
3217
|
+
ms: 2.1.3
|
|
3218
|
+
on-finished: 2.4.1
|
|
3219
|
+
range-parser: 1.2.1
|
|
3220
|
+
statuses: 2.0.2
|
|
3221
|
+
transitivePeerDependencies:
|
|
3222
|
+
- supports-color
|
|
3223
|
+
|
|
3224
|
+
serve-static@1.16.3:
|
|
3225
|
+
dependencies:
|
|
3226
|
+
encodeurl: 2.0.0
|
|
3227
|
+
escape-html: 1.0.3
|
|
3228
|
+
parseurl: 1.3.3
|
|
3229
|
+
send: 0.19.2
|
|
3230
|
+
transitivePeerDependencies:
|
|
3231
|
+
- supports-color
|
|
3232
|
+
|
|
3233
|
+
setprototypeof@1.2.0: {}
|
|
3234
|
+
|
|
3235
|
+
shebang-command@2.0.0:
|
|
3236
|
+
dependencies:
|
|
3237
|
+
shebang-regex: 3.0.0
|
|
3238
|
+
|
|
3239
|
+
shebang-regex@3.0.0: {}
|
|
3240
|
+
|
|
3241
|
+
side-channel-list@1.0.0:
|
|
3242
|
+
dependencies:
|
|
3243
|
+
es-errors: 1.3.0
|
|
3244
|
+
object-inspect: 1.13.4
|
|
3245
|
+
|
|
3246
|
+
side-channel-map@1.0.1:
|
|
3247
|
+
dependencies:
|
|
3248
|
+
call-bound: 1.0.4
|
|
3249
|
+
es-errors: 1.3.0
|
|
3250
|
+
get-intrinsic: 1.3.0
|
|
3251
|
+
object-inspect: 1.13.4
|
|
3252
|
+
|
|
3253
|
+
side-channel-weakmap@1.0.2:
|
|
3254
|
+
dependencies:
|
|
3255
|
+
call-bound: 1.0.4
|
|
3256
|
+
es-errors: 1.3.0
|
|
3257
|
+
get-intrinsic: 1.3.0
|
|
3258
|
+
object-inspect: 1.13.4
|
|
3259
|
+
side-channel-map: 1.0.1
|
|
3260
|
+
|
|
3261
|
+
side-channel@1.1.0:
|
|
3262
|
+
dependencies:
|
|
3263
|
+
es-errors: 1.3.0
|
|
3264
|
+
object-inspect: 1.13.4
|
|
3265
|
+
side-channel-list: 1.0.0
|
|
3266
|
+
side-channel-map: 1.0.1
|
|
3267
|
+
side-channel-weakmap: 1.0.2
|
|
3268
|
+
|
|
3269
|
+
simple-wcswidth@1.1.2: {}
|
|
3270
|
+
|
|
1166
3271
|
source-map-js@1.2.1: {}
|
|
1167
3272
|
|
|
3273
|
+
source-map@0.7.6: {}
|
|
3274
|
+
|
|
3275
|
+
split2@4.2.0: {}
|
|
3276
|
+
|
|
3277
|
+
statuses@2.0.2: {}
|
|
3278
|
+
|
|
3279
|
+
strip-json-comments@3.1.1: {}
|
|
3280
|
+
|
|
1168
3281
|
sucrase@3.35.1:
|
|
1169
3282
|
dependencies:
|
|
1170
3283
|
'@jridgewell/gen-mapping': 0.3.13
|
|
@@ -1175,9 +3288,13 @@ snapshots:
|
|
|
1175
3288
|
tinyglobby: 0.2.15
|
|
1176
3289
|
ts-interface-checker: 0.1.13
|
|
1177
3290
|
|
|
3291
|
+
supports-color@7.2.0:
|
|
3292
|
+
dependencies:
|
|
3293
|
+
has-flag: 4.0.0
|
|
3294
|
+
|
|
1178
3295
|
supports-preserve-symlinks-flag@1.0.0: {}
|
|
1179
3296
|
|
|
1180
|
-
tailwindcss@3.4.19:
|
|
3297
|
+
tailwindcss@3.4.19(tsx@4.21.0):
|
|
1181
3298
|
dependencies:
|
|
1182
3299
|
'@alloc/quick-lru': 5.2.0
|
|
1183
3300
|
arg: 5.0.2
|
|
@@ -1196,7 +3313,7 @@ snapshots:
|
|
|
1196
3313
|
postcss: 8.5.6
|
|
1197
3314
|
postcss-import: 15.1.0(postcss@8.5.6)
|
|
1198
3315
|
postcss-js: 4.1.0(postcss@8.5.6)
|
|
1199
|
-
postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)
|
|
3316
|
+
postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)
|
|
1200
3317
|
postcss-nested: 6.2.0(postcss@8.5.6)
|
|
1201
3318
|
postcss-selector-parser: 6.1.2
|
|
1202
3319
|
resolve: 1.22.11
|
|
@@ -1213,6 +3330,8 @@ snapshots:
|
|
|
1213
3330
|
dependencies:
|
|
1214
3331
|
any-promise: 1.3.0
|
|
1215
3332
|
|
|
3333
|
+
tinyexec@0.3.2: {}
|
|
3334
|
+
|
|
1216
3335
|
tinyglobby@0.2.15:
|
|
1217
3336
|
dependencies:
|
|
1218
3337
|
fdir: 6.5.0(picomatch@4.0.3)
|
|
@@ -1222,28 +3341,125 @@ snapshots:
|
|
|
1222
3341
|
dependencies:
|
|
1223
3342
|
is-number: 7.0.0
|
|
1224
3343
|
|
|
3344
|
+
toidentifier@1.0.1: {}
|
|
3345
|
+
|
|
3346
|
+
tree-kill@1.2.2: {}
|
|
3347
|
+
|
|
3348
|
+
ts-api-utils@2.4.0(typescript@5.9.3):
|
|
3349
|
+
dependencies:
|
|
3350
|
+
typescript: 5.9.3
|
|
3351
|
+
|
|
1225
3352
|
ts-interface-checker@0.1.13: {}
|
|
1226
3353
|
|
|
3354
|
+
tslib@2.8.1: {}
|
|
3355
|
+
|
|
3356
|
+
tsup@8.5.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3):
|
|
3357
|
+
dependencies:
|
|
3358
|
+
bundle-require: 5.1.0(esbuild@0.27.2)
|
|
3359
|
+
cac: 6.7.14
|
|
3360
|
+
chokidar: 4.0.3
|
|
3361
|
+
consola: 3.4.2
|
|
3362
|
+
debug: 4.4.3
|
|
3363
|
+
esbuild: 0.27.2
|
|
3364
|
+
fix-dts-default-cjs-exports: 1.0.1
|
|
3365
|
+
joycon: 3.1.1
|
|
3366
|
+
picocolors: 1.1.1
|
|
3367
|
+
postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)
|
|
3368
|
+
resolve-from: 5.0.0
|
|
3369
|
+
rollup: 4.55.3
|
|
3370
|
+
source-map: 0.7.6
|
|
3371
|
+
sucrase: 3.35.1
|
|
3372
|
+
tinyexec: 0.3.2
|
|
3373
|
+
tinyglobby: 0.2.15
|
|
3374
|
+
tree-kill: 1.2.2
|
|
3375
|
+
optionalDependencies:
|
|
3376
|
+
postcss: 8.5.6
|
|
3377
|
+
typescript: 5.9.3
|
|
3378
|
+
transitivePeerDependencies:
|
|
3379
|
+
- jiti
|
|
3380
|
+
- supports-color
|
|
3381
|
+
- tsx
|
|
3382
|
+
- yaml
|
|
3383
|
+
|
|
3384
|
+
tsx@4.21.0:
|
|
3385
|
+
dependencies:
|
|
3386
|
+
esbuild: 0.27.2
|
|
3387
|
+
get-tsconfig: 4.13.6
|
|
3388
|
+
optionalDependencies:
|
|
3389
|
+
fsevents: 2.3.3
|
|
3390
|
+
|
|
3391
|
+
type-check@0.4.0:
|
|
3392
|
+
dependencies:
|
|
3393
|
+
prelude-ls: 1.2.1
|
|
3394
|
+
|
|
3395
|
+
type-is@1.6.18:
|
|
3396
|
+
dependencies:
|
|
3397
|
+
media-typer: 0.3.0
|
|
3398
|
+
mime-types: 2.1.35
|
|
3399
|
+
|
|
3400
|
+
typescript-eslint@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3):
|
|
3401
|
+
dependencies:
|
|
3402
|
+
'@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)
|
|
3403
|
+
'@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
3404
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
3405
|
+
'@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
3406
|
+
eslint: 9.39.2(jiti@1.21.7)
|
|
3407
|
+
typescript: 5.9.3
|
|
3408
|
+
transitivePeerDependencies:
|
|
3409
|
+
- supports-color
|
|
3410
|
+
|
|
1227
3411
|
typescript@5.9.3: {}
|
|
1228
3412
|
|
|
3413
|
+
ufo@1.6.3: {}
|
|
3414
|
+
|
|
3415
|
+
undici-types@6.21.0: {}
|
|
3416
|
+
|
|
3417
|
+
unpipe@1.0.0: {}
|
|
3418
|
+
|
|
1229
3419
|
update-browserslist-db@1.2.3(browserslist@4.28.1):
|
|
1230
3420
|
dependencies:
|
|
1231
3421
|
browserslist: 4.28.1
|
|
1232
3422
|
escalade: 3.2.0
|
|
1233
3423
|
picocolors: 1.1.1
|
|
1234
3424
|
|
|
3425
|
+
uri-js@4.4.1:
|
|
3426
|
+
dependencies:
|
|
3427
|
+
punycode: 2.3.1
|
|
3428
|
+
|
|
1235
3429
|
util-deprecate@1.0.2: {}
|
|
1236
3430
|
|
|
1237
|
-
|
|
3431
|
+
utils-merge@1.0.1: {}
|
|
3432
|
+
|
|
3433
|
+
uuid@10.0.0: {}
|
|
3434
|
+
|
|
3435
|
+
vary@1.1.2: {}
|
|
3436
|
+
|
|
3437
|
+
vite@7.3.1(@types/node@22.19.15)(jiti@1.21.7)(tsx@4.21.0):
|
|
1238
3438
|
dependencies:
|
|
1239
|
-
esbuild: 0.
|
|
3439
|
+
esbuild: 0.27.2
|
|
1240
3440
|
fdir: 6.5.0(picomatch@4.0.3)
|
|
1241
3441
|
picomatch: 4.0.3
|
|
1242
3442
|
postcss: 8.5.6
|
|
1243
|
-
rollup: 4.
|
|
3443
|
+
rollup: 4.55.3
|
|
1244
3444
|
tinyglobby: 0.2.15
|
|
1245
3445
|
optionalDependencies:
|
|
3446
|
+
'@types/node': 22.19.15
|
|
1246
3447
|
fsevents: 2.3.3
|
|
1247
3448
|
jiti: 1.21.7
|
|
3449
|
+
tsx: 4.21.0
|
|
1248
3450
|
|
|
1249
3451
|
which-pm-runs@1.1.0: {}
|
|
3452
|
+
|
|
3453
|
+
which@2.0.2:
|
|
3454
|
+
dependencies:
|
|
3455
|
+
isexe: 2.0.0
|
|
3456
|
+
|
|
3457
|
+
word-wrap@1.2.5: {}
|
|
3458
|
+
|
|
3459
|
+
ws@8.19.0: {}
|
|
3460
|
+
|
|
3461
|
+
xtend@4.0.2: {}
|
|
3462
|
+
|
|
3463
|
+
yocto-queue@0.1.0: {}
|
|
3464
|
+
|
|
3465
|
+
zod@4.3.5: {}
|