@geminilight/mindos 0.1.0
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/.env.local.example +38 -0
- package/LICENSE +21 -0
- package/README.md +423 -0
- package/README_zh.md +423 -0
- package/app/README.md +152 -0
- package/app/app/api/ask/route.ts +170 -0
- package/app/app/api/ask-sessions/route.ts +90 -0
- package/app/app/api/auth/route.ts +37 -0
- package/app/app/api/backlinks/route.ts +22 -0
- package/app/app/api/bootstrap/route.ts +37 -0
- package/app/app/api/extract-pdf/route.ts +82 -0
- package/app/app/api/file/route.ts +138 -0
- package/app/app/api/files/route.ts +12 -0
- package/app/app/api/git/route.ts +42 -0
- package/app/app/api/graph/route.ts +113 -0
- package/app/app/api/recent-files/route.ts +10 -0
- package/app/app/api/search/route.ts +17 -0
- package/app/app/api/settings/reset-token/route.ts +21 -0
- package/app/app/api/settings/route.ts +123 -0
- package/app/app/error.tsx +33 -0
- package/app/app/globals.css +368 -0
- package/app/app/icon.svg +35 -0
- package/app/app/layout.tsx +103 -0
- package/app/app/login/page.tsx +120 -0
- package/app/app/page.tsx +12 -0
- package/app/app/view/[...path]/ViewPageClient.tsx +343 -0
- package/app/app/view/[...path]/error.tsx +33 -0
- package/app/app/view/[...path]/loading.tsx +15 -0
- package/app/app/view/[...path]/page.tsx +93 -0
- package/app/components/AskFab.tsx +59 -0
- package/app/components/AskModal.tsx +398 -0
- package/app/components/Backlinks.tsx +75 -0
- package/app/components/Breadcrumb.tsx +31 -0
- package/app/components/CsvView.tsx +325 -0
- package/app/components/DirView.tsx +138 -0
- package/app/components/Editor.tsx +124 -0
- package/app/components/EditorWrapper.tsx +17 -0
- package/app/components/ErrorBoundary.tsx +53 -0
- package/app/components/FileTree.tsx +369 -0
- package/app/components/HomeContent.tsx +262 -0
- package/app/components/JsonView.tsx +27 -0
- package/app/components/MarkdownEditor.tsx +95 -0
- package/app/components/MarkdownView.tsx +118 -0
- package/app/components/SearchModal.tsx +193 -0
- package/app/components/SettingsModal.tsx +237 -0
- package/app/components/Sidebar.tsx +136 -0
- package/app/components/SidebarLayout.tsx +36 -0
- package/app/components/TableOfContents.tsx +150 -0
- package/app/components/ThemeToggle.tsx +34 -0
- package/app/components/WysiwygEditor.tsx +75 -0
- package/app/components/ask/FileChip.tsx +30 -0
- package/app/components/ask/MentionPopover.tsx +52 -0
- package/app/components/ask/MessageList.tsx +126 -0
- package/app/components/ask/SessionHistory.tsx +49 -0
- package/app/components/renderers/AgentInspectorRenderer.tsx +277 -0
- package/app/components/renderers/BacklinksRenderer.tsx +147 -0
- package/app/components/renderers/ConfigRenderer.tsx +236 -0
- package/app/components/renderers/CsvRenderer.tsx +77 -0
- package/app/components/renderers/DiffRenderer.tsx +310 -0
- package/app/components/renderers/GraphRenderer.tsx +428 -0
- package/app/components/renderers/SummaryRenderer.tsx +251 -0
- package/app/components/renderers/TimelineRenderer.tsx +213 -0
- package/app/components/renderers/TodoRenderer.tsx +474 -0
- package/app/components/renderers/WorkflowRenderer.tsx +404 -0
- package/app/components/renderers/csv/BoardView.tsx +146 -0
- package/app/components/renderers/csv/ConfigPanel.tsx +117 -0
- package/app/components/renderers/csv/EditableCell.tsx +43 -0
- package/app/components/renderers/csv/GalleryView.tsx +40 -0
- package/app/components/renderers/csv/TableView.tsx +164 -0
- package/app/components/renderers/csv/types.ts +87 -0
- package/app/components/settings/AiTab.tsx +111 -0
- package/app/components/settings/AppearanceTab.tsx +101 -0
- package/app/components/settings/KnowledgeTab.tsx +157 -0
- package/app/components/settings/PluginsTab.tsx +82 -0
- package/app/components/settings/Primitives.tsx +60 -0
- package/app/components/settings/ShortcutsTab.tsx +22 -0
- package/app/components/settings/types.ts +41 -0
- package/app/components/ui/button.tsx +60 -0
- package/app/components/ui/dialog.tsx +157 -0
- package/app/components/ui/input.tsx +20 -0
- package/app/components/ui/scroll-area.tsx +55 -0
- package/app/components/ui/toggle.tsx +44 -0
- package/app/components/ui/tooltip.tsx +66 -0
- package/app/components.json +25 -0
- package/app/data/pages/home-dark.png +0 -0
- package/app/data/pages/home-mobile-crop.png +0 -0
- package/app/data/pages/home-mobile.png +0 -0
- package/app/data/pages/home.png +0 -0
- package/app/data/pages/view-dir.png +0 -0
- package/app/data/pages/view-file-bot.png +0 -0
- package/app/data/pages/view-file-dark-crop.png +0 -0
- package/app/data/pages/view-file-dark.png +0 -0
- package/app/data/pages/view-file-mobile.png +0 -0
- package/app/data/pages/view-file-sm.png +0 -0
- package/app/data/pages/view-file-top.png +0 -0
- package/app/data/pages/view-file.png +0 -0
- package/app/eslint.config.mjs +18 -0
- package/app/hooks/useAskSession.ts +181 -0
- package/app/hooks/useFileUpload.ts +126 -0
- package/app/hooks/useMention.ts +65 -0
- package/app/lib/LocaleContext.tsx +40 -0
- package/app/lib/actions.ts +40 -0
- package/app/lib/agent/index.ts +3 -0
- package/app/lib/agent/model.ts +18 -0
- package/app/lib/agent/prompt.ts +32 -0
- package/app/lib/agent/tools.ts +151 -0
- package/app/lib/api.ts +55 -0
- package/app/lib/core/backlinks.ts +40 -0
- package/app/lib/core/csv.ts +28 -0
- package/app/lib/core/fs-ops.ts +118 -0
- package/app/lib/core/git.ts +50 -0
- package/app/lib/core/index.ts +58 -0
- package/app/lib/core/lines.ts +89 -0
- package/app/lib/core/search.ts +79 -0
- package/app/lib/core/security.ts +43 -0
- package/app/lib/core/tree.ts +113 -0
- package/app/lib/core/types.ts +40 -0
- package/app/lib/fs.ts +467 -0
- package/app/lib/i18n.ts +300 -0
- package/app/lib/jwt.ts +58 -0
- package/app/lib/renderers/index.ts +79 -0
- package/app/lib/renderers/registry.ts +70 -0
- package/app/lib/settings.ts +150 -0
- package/app/lib/types.ts +32 -0
- package/app/lib/utils.ts +34 -0
- package/app/next-env.d.ts +6 -0
- package/app/next.config.ts +10 -0
- package/app/package-lock.json +15306 -0
- package/app/package.json +71 -0
- package/app/postcss.config.mjs +7 -0
- package/app/proxy.ts +64 -0
- package/app/public/file.svg +1 -0
- package/app/public/globe.svg +1 -0
- package/app/public/landing/index.html +353 -0
- package/app/public/landing/style.css +216 -0
- package/app/public/logo-square.svg +37 -0
- package/app/public/logo.svg +37 -0
- package/app/public/next.svg +1 -0
- package/app/public/vercel.svg +1 -0
- package/app/public/window.svg +1 -0
- package/app/scripts/extract-pdf.cjs +56 -0
- package/app/tsconfig.json +34 -0
- package/app/vitest.config.ts +14 -0
- package/assets/demo-flow-zh.html +622 -0
- package/assets/images/demo-flow-dark.png +0 -0
- package/assets/images/demo-flow-light.png +0 -0
- package/assets/images/demo-flow-zh-dark.png +0 -0
- package/assets/images/demo-flow-zh-light.png +0 -0
- package/assets/images/gui-sync-cv.png +0 -0
- package/assets/logo-square.svg +37 -0
- package/bin/cli.js +894 -0
- package/mcp/README.md +113 -0
- package/mcp/package-lock.json +1717 -0
- package/mcp/package.json +18 -0
- package/mcp/src/index.ts +494 -0
- package/mcp/tsconfig.json +13 -0
- package/package.json +49 -0
- package/scripts/setup.js +675 -0
- package/scripts/upgrade-prompt.md +147 -0
- package/skills/mindos/SKILL.md +319 -0
- package/skills/mindos-zh/SKILL.md +318 -0
- package/templates/README.md +31 -0
- package/templates/empty/CHANGELOG.md +9 -0
- package/templates/empty/CONFIG.json +197 -0
- package/templates/empty/CONFIG.md +73 -0
- package/templates/empty/INSTRUCTION.md +177 -0
- package/templates/empty/README.md +27 -0
- package/templates/en/CHANGELOG.md +9 -0
- package/templates/en/CONFIG.json +197 -0
- package/templates/en/CONFIG.md +73 -0
- package/templates/en/INSTRUCTION.md +177 -0
- package/templates/en/README.md +27 -0
- package/templates/en/TODO.md +13 -0
- package/templates/en//360/237/221/244 Profile/INSTRUCTION.md" +21 -0
- package/templates/en//360/237/221/244 Profile/README.md" +15 -0
- package/templates/en//360/237/221/244 Profile//342/232/231/357/270/217 Preferences.md" +21 -0
- package/templates/en//360/237/221/244 Profile//360/237/216/257 Focus.md" +31 -0
- package/templates/en//360/237/221/244 Profile//360/237/221/244 Identity.md" +22 -0
- package/templates/en//360/237/223/232 Resources/INSTRUCTION.md" +29 -0
- package/templates/en//360/237/223/232 Resources/README.md" +21 -0
- package/templates/en//360/237/223/232 Resources//360/237/247/276 AI Influencers.csv" +1 -0
- package/templates/en//360/237/223/232 Resources//360/237/247/276 AI Products.csv" +1 -0
- package/templates/en//360/237/223/232 Resources//360/237/247/276 AI Scholars.csv" +1 -0
- package/templates/en//360/237/223/232 Resources//360/237/247/276 AI Tools.csv" +1 -0
- package/templates/en//360/237/223/235 Notes/INSTRUCTION.md" +31 -0
- package/templates/en//360/237/223/235 Notes/Ideas/README.md" +8 -0
- package/templates/en//360/237/223/235 Notes/Ideas//360/237/247/252_example_product_idea.md" +16 -0
- package/templates/en//360/237/223/235 Notes/Inbox/README.md" +8 -0
- package/templates/en//360/237/223/235 Notes/Inbox//360/237/247/252_example_quick_capture.md" +14 -0
- package/templates/en//360/237/223/235 Notes/Meetings/README.md" +8 -0
- package/templates/en//360/237/223/235 Notes/Meetings//360/237/247/252_example_meeting_note.md" +17 -0
- package/templates/en//360/237/223/235 Notes/README.md" +24 -0
- package/templates/en//360/237/223/235 Notes/Waiting/README.md" +8 -0
- package/templates/en//360/237/223/235 Notes/Waiting//360/237/247/252_example_blocked_item.md" +16 -0
- package/templates/en//360/237/224/204 Workflows/Configurations/README.md" +3 -0
- package/templates/en//360/237/224/204 Workflows/Configurations//360/237/247/252_example_config_update_sop.md" +14 -0
- package/templates/en//360/237/224/204 Workflows/INSTRUCTION.md" +21 -0
- package/templates/en//360/237/224/204 Workflows/Information/README.md" +16 -0
- package/templates/en//360/237/224/204 Workflows/Information//360/237/247/252_example_info_capture_sop.md" +13 -0
- package/templates/en//360/237/224/204 Workflows/Media/README.md" +16 -0
- package/templates/en//360/237/224/204 Workflows/Media//360/237/247/252_example_content_publish_sop.md" +13 -0
- package/templates/en//360/237/224/204 Workflows/README.md" +22 -0
- package/templates/en//360/237/224/204 Workflows/Research/README.md" +16 -0
- package/templates/en//360/237/224/204 Workflows/Research//360/237/247/252_example_lit_review_sop.md" +16 -0
- package/templates/en//360/237/224/204 Workflows/Startup/README.md" +3 -0
- package/templates/en//360/237/224/204 Workflows/Startup//360/237/247/252_example_weekly_founder_ops.md" +22 -0
- package/templates/en//360/237/224/227 Connections/Classmates/README.md" +11 -0
- package/templates/en//360/237/224/227 Connections/Classmates//360/237/247/252_example_leo_chen.md" +16 -0
- package/templates/en//360/237/224/227 Connections/Colleagues/README.md" +11 -0
- package/templates/en//360/237/224/227 Connections/Colleagues//360/237/247/252_example_ethan_zhao.md" +16 -0
- package/templates/en//360/237/224/227 Connections/Connections Overview.csv" +5 -0
- package/templates/en//360/237/224/227 Connections/Family/README.md" +11 -0
- package/templates/en//360/237/224/227 Connections/Family//360/237/247/252_example_james_wang.md" +16 -0
- package/templates/en//360/237/224/227 Connections/Friends/README.md" +11 -0
- package/templates/en//360/237/224/227 Connections/Friends//360/237/247/252_example_lily_lin.md" +16 -0
- package/templates/en//360/237/224/227 Connections/INSTRUCTION.md" +56 -0
- package/templates/en//360/237/224/227 Connections/README.md" +20 -0
- package/templates/en//360/237/232/200 Projects/Archived/README.md" +9 -0
- package/templates/en//360/237/232/200 Projects/Archived//360/237/247/252_example_archived_project_note.md" +14 -0
- package/templates/en//360/237/232/200 Projects/INSTRUCTION.md" +29 -0
- package/templates/en//360/237/232/200 Projects/Products/README.md" +16 -0
- package/templates/en//360/237/232/200 Projects/Products//360/237/247/252_example_product_project_brief.md" +20 -0
- package/templates/en//360/237/232/200 Projects/README.md" +21 -0
- package/templates/en//360/237/232/200 Projects/Research/README.md" +16 -0
- package/templates/en//360/237/232/200 Projects/Research//360/237/247/252_example_research_project_brief.md" +16 -0
- package/templates/template-generation-skill.md +79 -0
- package/templates/zh/CHANGELOG.md +9 -0
- package/templates/zh/CONFIG.json +197 -0
- package/templates/zh/CONFIG.md +66 -0
- package/templates/zh/INSTRUCTION.md +177 -0
- package/templates/zh/README.md +27 -0
- package/templates/zh/TODO.md +13 -0
- package/templates/zh//360/237/221/244 /347/224/273/345/203/217/INSTRUCTION.md" +28 -0
- package/templates/zh//360/237/221/244 /347/224/273/345/203/217/README.md" +20 -0
- package/templates/zh//360/237/221/244 /347/224/273/345/203/217//342/232/231/357/270/217 Preferences.md" +21 -0
- package/templates/zh//360/237/221/244 /347/224/273/345/203/217//360/237/216/257 Focus.md" +31 -0
- package/templates/zh//360/237/221/244 /347/224/273/345/203/217//360/237/221/244 Identity.md" +22 -0
- package/templates/zh//360/237/223/232 /350/265/204/346/272/220/INSTRUCTION.md" +29 -0
- package/templates/zh//360/237/223/232 /350/265/204/346/272/220/README.md" +21 -0
- package/templates/zh//360/237/223/232 /350/265/204/346/272/220//360/237/247/276 AI Inferencers.csv" +1 -0
- package/templates/zh//360/237/223/232 /350/265/204/346/272/220//360/237/247/276 AI /344/272/247/345/223/201.csv" +1 -0
- package/templates/zh//360/237/223/232 /350/265/204/346/272/220//360/237/247/276 AI /345/255/246/350/200/205/346/270/205/345/215/225.csv" +1 -0
- package/templates/zh//360/237/223/232 /350/265/204/346/272/220//360/237/247/276 AI /345/267/245/345/205/267/346/270/205/345/215/225.csv" +1 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260/INSTRUCTION.md" +31 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260/README.md" +24 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//344/274/232/350/256/256/README.md" +8 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//344/274/232/350/256/256//360/237/247/252_example_/344/274/232/350/256/256/347/272/252/350/246/201.md" +17 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//345/276/205/345/217/215/351/246/210/README.md" +8 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//345/276/205/345/217/215/351/246/210//360/237/247/252_example_/345/276/205/345/217/215/351/246/210/344/272/213/351/241/271.md" +16 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//346/203/263/346/263/225/README.md" +8 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//346/203/263/346/263/225//360/237/247/252_example_/344/272/247/345/223/201/346/203/263/346/263/225.md" +16 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//346/224/266/344/273/266/347/256/261/README.md" +8 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//346/224/266/344/273/266/347/256/261//360/237/247/252_example_/344/270/264/346/227/266/351/200/237/350/256/260.md" +13 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213/INSTRUCTION.md" +29 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213/README.md" +21 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//344/277/241/346/201/257/README.md" +16 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//344/277/241/346/201/257//360/237/247/252_example_/344/277/241/346/201/257/351/207/207/351/233/206/346/265/201/347/250/213.md" +13 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//345/252/222/344/275/223/README.md" +16 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//345/252/222/344/275/223//360/237/247/252_example_/345/206/205/345/256/271/345/217/221/345/270/203/346/265/201/347/250/213.md" +13 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//347/247/221/347/240/224/README.md" +16 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//347/247/221/347/240/224//360/237/247/252_example_/346/226/207/347/214/256/347/273/274/350/277/260/346/265/201/347/250/213.md" +16 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//351/205/215/347/275/256/README.md" +3 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//351/205/215/347/275/256//360/237/247/252_example_/351/205/215/347/275/256/346/233/264/346/226/260/346/265/201/347/250/213.md" +26 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273/INSTRUCTION.md" +62 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273/README.md" +20 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//345/205/263/347/263/273/346/200/273/350/247/210.csv" +5 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//345/220/214/344/272/213/README.md" +11 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//345/220/214/344/272/213//360/237/247/252_example_/345/220/214/344/272/213/350/265/265/344/270/200/350/276/260.md" +16 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//345/220/214/345/255/246/README.md" +11 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//345/220/214/345/255/246//360/237/247/252_example_/345/220/214/345/255/246/351/231/210/347/253/213/346/254/247.md" +16 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//345/256/266/344/272/272/README.md" +11 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//345/256/266/344/272/272//360/237/247/252_example_/345/256/266/344/272/272/347/216/213/345/273/272/345/233/275.md" +16 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//346/234/213/345/217/213/README.md" +11 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//346/234/213/345/217/213//360/237/247/252_example_/346/234/213/345/217/213/346/236/227/345/260/217/344/270/275.md" +16 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256/INSTRUCTION.md" +31 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256/README.md" +21 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256//344/272/247/345/223/201/README.md" +16 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256//344/272/247/345/223/201//360/237/247/252_example_/344/272/247/345/223/201/351/241/271/347/233/256/347/256/200/346/212/245.md" +20 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256//345/267/262/345/275/222/346/241/243/README.md" +9 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256//345/267/262/345/275/222/346/241/243//360/237/247/252_example_/345/275/222/346/241/243/351/241/271/347/233/256/350/256/260/345/275/225.md" +15 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256//347/247/221/347/240/224/README.md" +16 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256//347/247/221/347/240/224//360/237/247/252_example_/347/247/221/347/240/224/351/241/271/347/233/256/347/256/200/346/212/245.md" +16 -0
|
@@ -0,0 +1,1717 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mindos-mcp",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "mindos-mcp",
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@modelcontextprotocol/sdk": "^1.6.1",
|
|
12
|
+
"zod": "^3.23.8"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@types/node": "^25.4.0",
|
|
16
|
+
"tsx": "^4.19.0",
|
|
17
|
+
"typescript": "^5"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"node_modules/@esbuild/aix-ppc64": {
|
|
21
|
+
"version": "0.27.3",
|
|
22
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz",
|
|
23
|
+
"integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==",
|
|
24
|
+
"cpu": [
|
|
25
|
+
"ppc64"
|
|
26
|
+
],
|
|
27
|
+
"dev": true,
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"optional": true,
|
|
30
|
+
"os": [
|
|
31
|
+
"aix"
|
|
32
|
+
],
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=18"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"node_modules/@esbuild/android-arm": {
|
|
38
|
+
"version": "0.27.3",
|
|
39
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.27.3.tgz",
|
|
40
|
+
"integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==",
|
|
41
|
+
"cpu": [
|
|
42
|
+
"arm"
|
|
43
|
+
],
|
|
44
|
+
"dev": true,
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"optional": true,
|
|
47
|
+
"os": [
|
|
48
|
+
"android"
|
|
49
|
+
],
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=18"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"node_modules/@esbuild/android-arm64": {
|
|
55
|
+
"version": "0.27.3",
|
|
56
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz",
|
|
57
|
+
"integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==",
|
|
58
|
+
"cpu": [
|
|
59
|
+
"arm64"
|
|
60
|
+
],
|
|
61
|
+
"dev": true,
|
|
62
|
+
"license": "MIT",
|
|
63
|
+
"optional": true,
|
|
64
|
+
"os": [
|
|
65
|
+
"android"
|
|
66
|
+
],
|
|
67
|
+
"engines": {
|
|
68
|
+
"node": ">=18"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"node_modules/@esbuild/android-x64": {
|
|
72
|
+
"version": "0.27.3",
|
|
73
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.27.3.tgz",
|
|
74
|
+
"integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==",
|
|
75
|
+
"cpu": [
|
|
76
|
+
"x64"
|
|
77
|
+
],
|
|
78
|
+
"dev": true,
|
|
79
|
+
"license": "MIT",
|
|
80
|
+
"optional": true,
|
|
81
|
+
"os": [
|
|
82
|
+
"android"
|
|
83
|
+
],
|
|
84
|
+
"engines": {
|
|
85
|
+
"node": ">=18"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"node_modules/@esbuild/darwin-arm64": {
|
|
89
|
+
"version": "0.27.3",
|
|
90
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz",
|
|
91
|
+
"integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==",
|
|
92
|
+
"cpu": [
|
|
93
|
+
"arm64"
|
|
94
|
+
],
|
|
95
|
+
"dev": true,
|
|
96
|
+
"license": "MIT",
|
|
97
|
+
"optional": true,
|
|
98
|
+
"os": [
|
|
99
|
+
"darwin"
|
|
100
|
+
],
|
|
101
|
+
"engines": {
|
|
102
|
+
"node": ">=18"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"node_modules/@esbuild/darwin-x64": {
|
|
106
|
+
"version": "0.27.3",
|
|
107
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz",
|
|
108
|
+
"integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==",
|
|
109
|
+
"cpu": [
|
|
110
|
+
"x64"
|
|
111
|
+
],
|
|
112
|
+
"dev": true,
|
|
113
|
+
"license": "MIT",
|
|
114
|
+
"optional": true,
|
|
115
|
+
"os": [
|
|
116
|
+
"darwin"
|
|
117
|
+
],
|
|
118
|
+
"engines": {
|
|
119
|
+
"node": ">=18"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"node_modules/@esbuild/freebsd-arm64": {
|
|
123
|
+
"version": "0.27.3",
|
|
124
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz",
|
|
125
|
+
"integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==",
|
|
126
|
+
"cpu": [
|
|
127
|
+
"arm64"
|
|
128
|
+
],
|
|
129
|
+
"dev": true,
|
|
130
|
+
"license": "MIT",
|
|
131
|
+
"optional": true,
|
|
132
|
+
"os": [
|
|
133
|
+
"freebsd"
|
|
134
|
+
],
|
|
135
|
+
"engines": {
|
|
136
|
+
"node": ">=18"
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"node_modules/@esbuild/freebsd-x64": {
|
|
140
|
+
"version": "0.27.3",
|
|
141
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz",
|
|
142
|
+
"integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==",
|
|
143
|
+
"cpu": [
|
|
144
|
+
"x64"
|
|
145
|
+
],
|
|
146
|
+
"dev": true,
|
|
147
|
+
"license": "MIT",
|
|
148
|
+
"optional": true,
|
|
149
|
+
"os": [
|
|
150
|
+
"freebsd"
|
|
151
|
+
],
|
|
152
|
+
"engines": {
|
|
153
|
+
"node": ">=18"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"node_modules/@esbuild/linux-arm": {
|
|
157
|
+
"version": "0.27.3",
|
|
158
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz",
|
|
159
|
+
"integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==",
|
|
160
|
+
"cpu": [
|
|
161
|
+
"arm"
|
|
162
|
+
],
|
|
163
|
+
"dev": true,
|
|
164
|
+
"license": "MIT",
|
|
165
|
+
"optional": true,
|
|
166
|
+
"os": [
|
|
167
|
+
"linux"
|
|
168
|
+
],
|
|
169
|
+
"engines": {
|
|
170
|
+
"node": ">=18"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"node_modules/@esbuild/linux-arm64": {
|
|
174
|
+
"version": "0.27.3",
|
|
175
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz",
|
|
176
|
+
"integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==",
|
|
177
|
+
"cpu": [
|
|
178
|
+
"arm64"
|
|
179
|
+
],
|
|
180
|
+
"dev": true,
|
|
181
|
+
"license": "MIT",
|
|
182
|
+
"optional": true,
|
|
183
|
+
"os": [
|
|
184
|
+
"linux"
|
|
185
|
+
],
|
|
186
|
+
"engines": {
|
|
187
|
+
"node": ">=18"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"node_modules/@esbuild/linux-ia32": {
|
|
191
|
+
"version": "0.27.3",
|
|
192
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz",
|
|
193
|
+
"integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==",
|
|
194
|
+
"cpu": [
|
|
195
|
+
"ia32"
|
|
196
|
+
],
|
|
197
|
+
"dev": true,
|
|
198
|
+
"license": "MIT",
|
|
199
|
+
"optional": true,
|
|
200
|
+
"os": [
|
|
201
|
+
"linux"
|
|
202
|
+
],
|
|
203
|
+
"engines": {
|
|
204
|
+
"node": ">=18"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"node_modules/@esbuild/linux-loong64": {
|
|
208
|
+
"version": "0.27.3",
|
|
209
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz",
|
|
210
|
+
"integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==",
|
|
211
|
+
"cpu": [
|
|
212
|
+
"loong64"
|
|
213
|
+
],
|
|
214
|
+
"dev": true,
|
|
215
|
+
"license": "MIT",
|
|
216
|
+
"optional": true,
|
|
217
|
+
"os": [
|
|
218
|
+
"linux"
|
|
219
|
+
],
|
|
220
|
+
"engines": {
|
|
221
|
+
"node": ">=18"
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
"node_modules/@esbuild/linux-mips64el": {
|
|
225
|
+
"version": "0.27.3",
|
|
226
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz",
|
|
227
|
+
"integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==",
|
|
228
|
+
"cpu": [
|
|
229
|
+
"mips64el"
|
|
230
|
+
],
|
|
231
|
+
"dev": true,
|
|
232
|
+
"license": "MIT",
|
|
233
|
+
"optional": true,
|
|
234
|
+
"os": [
|
|
235
|
+
"linux"
|
|
236
|
+
],
|
|
237
|
+
"engines": {
|
|
238
|
+
"node": ">=18"
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
"node_modules/@esbuild/linux-ppc64": {
|
|
242
|
+
"version": "0.27.3",
|
|
243
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz",
|
|
244
|
+
"integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==",
|
|
245
|
+
"cpu": [
|
|
246
|
+
"ppc64"
|
|
247
|
+
],
|
|
248
|
+
"dev": true,
|
|
249
|
+
"license": "MIT",
|
|
250
|
+
"optional": true,
|
|
251
|
+
"os": [
|
|
252
|
+
"linux"
|
|
253
|
+
],
|
|
254
|
+
"engines": {
|
|
255
|
+
"node": ">=18"
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"node_modules/@esbuild/linux-riscv64": {
|
|
259
|
+
"version": "0.27.3",
|
|
260
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz",
|
|
261
|
+
"integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==",
|
|
262
|
+
"cpu": [
|
|
263
|
+
"riscv64"
|
|
264
|
+
],
|
|
265
|
+
"dev": true,
|
|
266
|
+
"license": "MIT",
|
|
267
|
+
"optional": true,
|
|
268
|
+
"os": [
|
|
269
|
+
"linux"
|
|
270
|
+
],
|
|
271
|
+
"engines": {
|
|
272
|
+
"node": ">=18"
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
"node_modules/@esbuild/linux-s390x": {
|
|
276
|
+
"version": "0.27.3",
|
|
277
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz",
|
|
278
|
+
"integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==",
|
|
279
|
+
"cpu": [
|
|
280
|
+
"s390x"
|
|
281
|
+
],
|
|
282
|
+
"dev": true,
|
|
283
|
+
"license": "MIT",
|
|
284
|
+
"optional": true,
|
|
285
|
+
"os": [
|
|
286
|
+
"linux"
|
|
287
|
+
],
|
|
288
|
+
"engines": {
|
|
289
|
+
"node": ">=18"
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
"node_modules/@esbuild/linux-x64": {
|
|
293
|
+
"version": "0.27.3",
|
|
294
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz",
|
|
295
|
+
"integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==",
|
|
296
|
+
"cpu": [
|
|
297
|
+
"x64"
|
|
298
|
+
],
|
|
299
|
+
"dev": true,
|
|
300
|
+
"license": "MIT",
|
|
301
|
+
"optional": true,
|
|
302
|
+
"os": [
|
|
303
|
+
"linux"
|
|
304
|
+
],
|
|
305
|
+
"engines": {
|
|
306
|
+
"node": ">=18"
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"node_modules/@esbuild/netbsd-arm64": {
|
|
310
|
+
"version": "0.27.3",
|
|
311
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz",
|
|
312
|
+
"integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==",
|
|
313
|
+
"cpu": [
|
|
314
|
+
"arm64"
|
|
315
|
+
],
|
|
316
|
+
"dev": true,
|
|
317
|
+
"license": "MIT",
|
|
318
|
+
"optional": true,
|
|
319
|
+
"os": [
|
|
320
|
+
"netbsd"
|
|
321
|
+
],
|
|
322
|
+
"engines": {
|
|
323
|
+
"node": ">=18"
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
"node_modules/@esbuild/netbsd-x64": {
|
|
327
|
+
"version": "0.27.3",
|
|
328
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz",
|
|
329
|
+
"integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==",
|
|
330
|
+
"cpu": [
|
|
331
|
+
"x64"
|
|
332
|
+
],
|
|
333
|
+
"dev": true,
|
|
334
|
+
"license": "MIT",
|
|
335
|
+
"optional": true,
|
|
336
|
+
"os": [
|
|
337
|
+
"netbsd"
|
|
338
|
+
],
|
|
339
|
+
"engines": {
|
|
340
|
+
"node": ">=18"
|
|
341
|
+
}
|
|
342
|
+
},
|
|
343
|
+
"node_modules/@esbuild/openbsd-arm64": {
|
|
344
|
+
"version": "0.27.3",
|
|
345
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz",
|
|
346
|
+
"integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==",
|
|
347
|
+
"cpu": [
|
|
348
|
+
"arm64"
|
|
349
|
+
],
|
|
350
|
+
"dev": true,
|
|
351
|
+
"license": "MIT",
|
|
352
|
+
"optional": true,
|
|
353
|
+
"os": [
|
|
354
|
+
"openbsd"
|
|
355
|
+
],
|
|
356
|
+
"engines": {
|
|
357
|
+
"node": ">=18"
|
|
358
|
+
}
|
|
359
|
+
},
|
|
360
|
+
"node_modules/@esbuild/openbsd-x64": {
|
|
361
|
+
"version": "0.27.3",
|
|
362
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz",
|
|
363
|
+
"integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==",
|
|
364
|
+
"cpu": [
|
|
365
|
+
"x64"
|
|
366
|
+
],
|
|
367
|
+
"dev": true,
|
|
368
|
+
"license": "MIT",
|
|
369
|
+
"optional": true,
|
|
370
|
+
"os": [
|
|
371
|
+
"openbsd"
|
|
372
|
+
],
|
|
373
|
+
"engines": {
|
|
374
|
+
"node": ">=18"
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
"node_modules/@esbuild/openharmony-arm64": {
|
|
378
|
+
"version": "0.27.3",
|
|
379
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz",
|
|
380
|
+
"integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==",
|
|
381
|
+
"cpu": [
|
|
382
|
+
"arm64"
|
|
383
|
+
],
|
|
384
|
+
"dev": true,
|
|
385
|
+
"license": "MIT",
|
|
386
|
+
"optional": true,
|
|
387
|
+
"os": [
|
|
388
|
+
"openharmony"
|
|
389
|
+
],
|
|
390
|
+
"engines": {
|
|
391
|
+
"node": ">=18"
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"node_modules/@esbuild/sunos-x64": {
|
|
395
|
+
"version": "0.27.3",
|
|
396
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz",
|
|
397
|
+
"integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==",
|
|
398
|
+
"cpu": [
|
|
399
|
+
"x64"
|
|
400
|
+
],
|
|
401
|
+
"dev": true,
|
|
402
|
+
"license": "MIT",
|
|
403
|
+
"optional": true,
|
|
404
|
+
"os": [
|
|
405
|
+
"sunos"
|
|
406
|
+
],
|
|
407
|
+
"engines": {
|
|
408
|
+
"node": ">=18"
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
"node_modules/@esbuild/win32-arm64": {
|
|
412
|
+
"version": "0.27.3",
|
|
413
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz",
|
|
414
|
+
"integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==",
|
|
415
|
+
"cpu": [
|
|
416
|
+
"arm64"
|
|
417
|
+
],
|
|
418
|
+
"dev": true,
|
|
419
|
+
"license": "MIT",
|
|
420
|
+
"optional": true,
|
|
421
|
+
"os": [
|
|
422
|
+
"win32"
|
|
423
|
+
],
|
|
424
|
+
"engines": {
|
|
425
|
+
"node": ">=18"
|
|
426
|
+
}
|
|
427
|
+
},
|
|
428
|
+
"node_modules/@esbuild/win32-ia32": {
|
|
429
|
+
"version": "0.27.3",
|
|
430
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz",
|
|
431
|
+
"integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==",
|
|
432
|
+
"cpu": [
|
|
433
|
+
"ia32"
|
|
434
|
+
],
|
|
435
|
+
"dev": true,
|
|
436
|
+
"license": "MIT",
|
|
437
|
+
"optional": true,
|
|
438
|
+
"os": [
|
|
439
|
+
"win32"
|
|
440
|
+
],
|
|
441
|
+
"engines": {
|
|
442
|
+
"node": ">=18"
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
"node_modules/@esbuild/win32-x64": {
|
|
446
|
+
"version": "0.27.3",
|
|
447
|
+
"resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz",
|
|
448
|
+
"integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==",
|
|
449
|
+
"cpu": [
|
|
450
|
+
"x64"
|
|
451
|
+
],
|
|
452
|
+
"dev": true,
|
|
453
|
+
"license": "MIT",
|
|
454
|
+
"optional": true,
|
|
455
|
+
"os": [
|
|
456
|
+
"win32"
|
|
457
|
+
],
|
|
458
|
+
"engines": {
|
|
459
|
+
"node": ">=18"
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
"node_modules/@hono/node-server": {
|
|
463
|
+
"version": "1.19.11",
|
|
464
|
+
"resolved": "https://registry.npmmirror.com/@hono/node-server/-/node-server-1.19.11.tgz",
|
|
465
|
+
"integrity": "sha512-dr8/3zEaB+p0D2n/IUrlPF1HZm586qgJNXK1a9fhg/PzdtkK7Ksd5l312tJX2yBuALqDYBlG20QEbayqPyxn+g==",
|
|
466
|
+
"license": "MIT",
|
|
467
|
+
"engines": {
|
|
468
|
+
"node": ">=18.14.1"
|
|
469
|
+
},
|
|
470
|
+
"peerDependencies": {
|
|
471
|
+
"hono": "^4"
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
"node_modules/@modelcontextprotocol/sdk": {
|
|
475
|
+
"version": "1.27.1",
|
|
476
|
+
"resolved": "https://registry.npmmirror.com/@modelcontextprotocol/sdk/-/sdk-1.27.1.tgz",
|
|
477
|
+
"integrity": "sha512-sr6GbP+4edBwFndLbM60gf07z0FQ79gaExpnsjMGePXqFcSSb7t6iscpjk9DhFhwd+mTEQrzNafGP8/iGGFYaA==",
|
|
478
|
+
"license": "MIT",
|
|
479
|
+
"dependencies": {
|
|
480
|
+
"@hono/node-server": "^1.19.9",
|
|
481
|
+
"ajv": "^8.17.1",
|
|
482
|
+
"ajv-formats": "^3.0.1",
|
|
483
|
+
"content-type": "^1.0.5",
|
|
484
|
+
"cors": "^2.8.5",
|
|
485
|
+
"cross-spawn": "^7.0.5",
|
|
486
|
+
"eventsource": "^3.0.2",
|
|
487
|
+
"eventsource-parser": "^3.0.0",
|
|
488
|
+
"express": "^5.2.1",
|
|
489
|
+
"express-rate-limit": "^8.2.1",
|
|
490
|
+
"hono": "^4.11.4",
|
|
491
|
+
"jose": "^6.1.3",
|
|
492
|
+
"json-schema-typed": "^8.0.2",
|
|
493
|
+
"pkce-challenge": "^5.0.0",
|
|
494
|
+
"raw-body": "^3.0.0",
|
|
495
|
+
"zod": "^3.25 || ^4.0",
|
|
496
|
+
"zod-to-json-schema": "^3.25.1"
|
|
497
|
+
},
|
|
498
|
+
"engines": {
|
|
499
|
+
"node": ">=18"
|
|
500
|
+
},
|
|
501
|
+
"peerDependencies": {
|
|
502
|
+
"@cfworker/json-schema": "^4.1.1",
|
|
503
|
+
"zod": "^3.25 || ^4.0"
|
|
504
|
+
},
|
|
505
|
+
"peerDependenciesMeta": {
|
|
506
|
+
"@cfworker/json-schema": {
|
|
507
|
+
"optional": true
|
|
508
|
+
},
|
|
509
|
+
"zod": {
|
|
510
|
+
"optional": false
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
"node_modules/@types/node": {
|
|
515
|
+
"version": "25.4.0",
|
|
516
|
+
"resolved": "https://registry.npmmirror.com/@types/node/-/node-25.4.0.tgz",
|
|
517
|
+
"integrity": "sha512-9wLpoeWuBlcbBpOY3XmzSTG3oscB6xjBEEtn+pYXTfhyXhIxC5FsBer2KTopBlvKEiW9l13po9fq+SJY/5lkhw==",
|
|
518
|
+
"dev": true,
|
|
519
|
+
"license": "MIT",
|
|
520
|
+
"dependencies": {
|
|
521
|
+
"undici-types": "~7.18.0"
|
|
522
|
+
}
|
|
523
|
+
},
|
|
524
|
+
"node_modules/accepts": {
|
|
525
|
+
"version": "2.0.0",
|
|
526
|
+
"resolved": "https://registry.npmmirror.com/accepts/-/accepts-2.0.0.tgz",
|
|
527
|
+
"integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
|
|
528
|
+
"license": "MIT",
|
|
529
|
+
"dependencies": {
|
|
530
|
+
"mime-types": "^3.0.0",
|
|
531
|
+
"negotiator": "^1.0.0"
|
|
532
|
+
},
|
|
533
|
+
"engines": {
|
|
534
|
+
"node": ">= 0.6"
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
"node_modules/ajv": {
|
|
538
|
+
"version": "8.18.0",
|
|
539
|
+
"resolved": "https://registry.npmmirror.com/ajv/-/ajv-8.18.0.tgz",
|
|
540
|
+
"integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==",
|
|
541
|
+
"license": "MIT",
|
|
542
|
+
"dependencies": {
|
|
543
|
+
"fast-deep-equal": "^3.1.3",
|
|
544
|
+
"fast-uri": "^3.0.1",
|
|
545
|
+
"json-schema-traverse": "^1.0.0",
|
|
546
|
+
"require-from-string": "^2.0.2"
|
|
547
|
+
},
|
|
548
|
+
"funding": {
|
|
549
|
+
"type": "github",
|
|
550
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
"node_modules/ajv-formats": {
|
|
554
|
+
"version": "3.0.1",
|
|
555
|
+
"resolved": "https://registry.npmmirror.com/ajv-formats/-/ajv-formats-3.0.1.tgz",
|
|
556
|
+
"integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==",
|
|
557
|
+
"license": "MIT",
|
|
558
|
+
"dependencies": {
|
|
559
|
+
"ajv": "^8.0.0"
|
|
560
|
+
},
|
|
561
|
+
"peerDependencies": {
|
|
562
|
+
"ajv": "^8.0.0"
|
|
563
|
+
},
|
|
564
|
+
"peerDependenciesMeta": {
|
|
565
|
+
"ajv": {
|
|
566
|
+
"optional": true
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
},
|
|
570
|
+
"node_modules/body-parser": {
|
|
571
|
+
"version": "2.2.2",
|
|
572
|
+
"resolved": "https://registry.npmmirror.com/body-parser/-/body-parser-2.2.2.tgz",
|
|
573
|
+
"integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
|
|
574
|
+
"license": "MIT",
|
|
575
|
+
"dependencies": {
|
|
576
|
+
"bytes": "^3.1.2",
|
|
577
|
+
"content-type": "^1.0.5",
|
|
578
|
+
"debug": "^4.4.3",
|
|
579
|
+
"http-errors": "^2.0.0",
|
|
580
|
+
"iconv-lite": "^0.7.0",
|
|
581
|
+
"on-finished": "^2.4.1",
|
|
582
|
+
"qs": "^6.14.1",
|
|
583
|
+
"raw-body": "^3.0.1",
|
|
584
|
+
"type-is": "^2.0.1"
|
|
585
|
+
},
|
|
586
|
+
"engines": {
|
|
587
|
+
"node": ">=18"
|
|
588
|
+
},
|
|
589
|
+
"funding": {
|
|
590
|
+
"type": "opencollective",
|
|
591
|
+
"url": "https://opencollective.com/express"
|
|
592
|
+
}
|
|
593
|
+
},
|
|
594
|
+
"node_modules/bytes": {
|
|
595
|
+
"version": "3.1.2",
|
|
596
|
+
"resolved": "https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz",
|
|
597
|
+
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
|
|
598
|
+
"license": "MIT",
|
|
599
|
+
"engines": {
|
|
600
|
+
"node": ">= 0.8"
|
|
601
|
+
}
|
|
602
|
+
},
|
|
603
|
+
"node_modules/call-bind-apply-helpers": {
|
|
604
|
+
"version": "1.0.2",
|
|
605
|
+
"resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
606
|
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
|
607
|
+
"license": "MIT",
|
|
608
|
+
"dependencies": {
|
|
609
|
+
"es-errors": "^1.3.0",
|
|
610
|
+
"function-bind": "^1.1.2"
|
|
611
|
+
},
|
|
612
|
+
"engines": {
|
|
613
|
+
"node": ">= 0.4"
|
|
614
|
+
}
|
|
615
|
+
},
|
|
616
|
+
"node_modules/call-bound": {
|
|
617
|
+
"version": "1.0.4",
|
|
618
|
+
"resolved": "https://registry.npmmirror.com/call-bound/-/call-bound-1.0.4.tgz",
|
|
619
|
+
"integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
|
|
620
|
+
"license": "MIT",
|
|
621
|
+
"dependencies": {
|
|
622
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
623
|
+
"get-intrinsic": "^1.3.0"
|
|
624
|
+
},
|
|
625
|
+
"engines": {
|
|
626
|
+
"node": ">= 0.4"
|
|
627
|
+
},
|
|
628
|
+
"funding": {
|
|
629
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
"node_modules/content-disposition": {
|
|
633
|
+
"version": "1.0.1",
|
|
634
|
+
"resolved": "https://registry.npmmirror.com/content-disposition/-/content-disposition-1.0.1.tgz",
|
|
635
|
+
"integrity": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==",
|
|
636
|
+
"license": "MIT",
|
|
637
|
+
"engines": {
|
|
638
|
+
"node": ">=18"
|
|
639
|
+
},
|
|
640
|
+
"funding": {
|
|
641
|
+
"type": "opencollective",
|
|
642
|
+
"url": "https://opencollective.com/express"
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
"node_modules/content-type": {
|
|
646
|
+
"version": "1.0.5",
|
|
647
|
+
"resolved": "https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz",
|
|
648
|
+
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
|
|
649
|
+
"license": "MIT",
|
|
650
|
+
"engines": {
|
|
651
|
+
"node": ">= 0.6"
|
|
652
|
+
}
|
|
653
|
+
},
|
|
654
|
+
"node_modules/cookie": {
|
|
655
|
+
"version": "0.7.2",
|
|
656
|
+
"resolved": "https://registry.npmmirror.com/cookie/-/cookie-0.7.2.tgz",
|
|
657
|
+
"integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
|
|
658
|
+
"license": "MIT",
|
|
659
|
+
"engines": {
|
|
660
|
+
"node": ">= 0.6"
|
|
661
|
+
}
|
|
662
|
+
},
|
|
663
|
+
"node_modules/cookie-signature": {
|
|
664
|
+
"version": "1.2.2",
|
|
665
|
+
"resolved": "https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.2.2.tgz",
|
|
666
|
+
"integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
|
|
667
|
+
"license": "MIT",
|
|
668
|
+
"engines": {
|
|
669
|
+
"node": ">=6.6.0"
|
|
670
|
+
}
|
|
671
|
+
},
|
|
672
|
+
"node_modules/cors": {
|
|
673
|
+
"version": "2.8.6",
|
|
674
|
+
"resolved": "https://registry.npmmirror.com/cors/-/cors-2.8.6.tgz",
|
|
675
|
+
"integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
|
|
676
|
+
"license": "MIT",
|
|
677
|
+
"dependencies": {
|
|
678
|
+
"object-assign": "^4",
|
|
679
|
+
"vary": "^1"
|
|
680
|
+
},
|
|
681
|
+
"engines": {
|
|
682
|
+
"node": ">= 0.10"
|
|
683
|
+
},
|
|
684
|
+
"funding": {
|
|
685
|
+
"type": "opencollective",
|
|
686
|
+
"url": "https://opencollective.com/express"
|
|
687
|
+
}
|
|
688
|
+
},
|
|
689
|
+
"node_modules/cross-spawn": {
|
|
690
|
+
"version": "7.0.6",
|
|
691
|
+
"resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.6.tgz",
|
|
692
|
+
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
|
693
|
+
"license": "MIT",
|
|
694
|
+
"dependencies": {
|
|
695
|
+
"path-key": "^3.1.0",
|
|
696
|
+
"shebang-command": "^2.0.0",
|
|
697
|
+
"which": "^2.0.1"
|
|
698
|
+
},
|
|
699
|
+
"engines": {
|
|
700
|
+
"node": ">= 8"
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
"node_modules/debug": {
|
|
704
|
+
"version": "4.4.3",
|
|
705
|
+
"resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz",
|
|
706
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
707
|
+
"license": "MIT",
|
|
708
|
+
"dependencies": {
|
|
709
|
+
"ms": "^2.1.3"
|
|
710
|
+
},
|
|
711
|
+
"engines": {
|
|
712
|
+
"node": ">=6.0"
|
|
713
|
+
},
|
|
714
|
+
"peerDependenciesMeta": {
|
|
715
|
+
"supports-color": {
|
|
716
|
+
"optional": true
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
},
|
|
720
|
+
"node_modules/depd": {
|
|
721
|
+
"version": "2.0.0",
|
|
722
|
+
"resolved": "https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz",
|
|
723
|
+
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
|
|
724
|
+
"license": "MIT",
|
|
725
|
+
"engines": {
|
|
726
|
+
"node": ">= 0.8"
|
|
727
|
+
}
|
|
728
|
+
},
|
|
729
|
+
"node_modules/dunder-proto": {
|
|
730
|
+
"version": "1.0.1",
|
|
731
|
+
"resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
732
|
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
|
733
|
+
"license": "MIT",
|
|
734
|
+
"dependencies": {
|
|
735
|
+
"call-bind-apply-helpers": "^1.0.1",
|
|
736
|
+
"es-errors": "^1.3.0",
|
|
737
|
+
"gopd": "^1.2.0"
|
|
738
|
+
},
|
|
739
|
+
"engines": {
|
|
740
|
+
"node": ">= 0.4"
|
|
741
|
+
}
|
|
742
|
+
},
|
|
743
|
+
"node_modules/ee-first": {
|
|
744
|
+
"version": "1.1.1",
|
|
745
|
+
"resolved": "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz",
|
|
746
|
+
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
|
|
747
|
+
"license": "MIT"
|
|
748
|
+
},
|
|
749
|
+
"node_modules/encodeurl": {
|
|
750
|
+
"version": "2.0.0",
|
|
751
|
+
"resolved": "https://registry.npmmirror.com/encodeurl/-/encodeurl-2.0.0.tgz",
|
|
752
|
+
"integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
|
|
753
|
+
"license": "MIT",
|
|
754
|
+
"engines": {
|
|
755
|
+
"node": ">= 0.8"
|
|
756
|
+
}
|
|
757
|
+
},
|
|
758
|
+
"node_modules/es-define-property": {
|
|
759
|
+
"version": "1.0.1",
|
|
760
|
+
"resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz",
|
|
761
|
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
|
762
|
+
"license": "MIT",
|
|
763
|
+
"engines": {
|
|
764
|
+
"node": ">= 0.4"
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
"node_modules/es-errors": {
|
|
768
|
+
"version": "1.3.0",
|
|
769
|
+
"resolved": "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz",
|
|
770
|
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
|
771
|
+
"license": "MIT",
|
|
772
|
+
"engines": {
|
|
773
|
+
"node": ">= 0.4"
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
"node_modules/es-object-atoms": {
|
|
777
|
+
"version": "1.1.1",
|
|
778
|
+
"resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
|
779
|
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
|
780
|
+
"license": "MIT",
|
|
781
|
+
"dependencies": {
|
|
782
|
+
"es-errors": "^1.3.0"
|
|
783
|
+
},
|
|
784
|
+
"engines": {
|
|
785
|
+
"node": ">= 0.4"
|
|
786
|
+
}
|
|
787
|
+
},
|
|
788
|
+
"node_modules/esbuild": {
|
|
789
|
+
"version": "0.27.3",
|
|
790
|
+
"resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.27.3.tgz",
|
|
791
|
+
"integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==",
|
|
792
|
+
"dev": true,
|
|
793
|
+
"hasInstallScript": true,
|
|
794
|
+
"license": "MIT",
|
|
795
|
+
"bin": {
|
|
796
|
+
"esbuild": "bin/esbuild"
|
|
797
|
+
},
|
|
798
|
+
"engines": {
|
|
799
|
+
"node": ">=18"
|
|
800
|
+
},
|
|
801
|
+
"optionalDependencies": {
|
|
802
|
+
"@esbuild/aix-ppc64": "0.27.3",
|
|
803
|
+
"@esbuild/android-arm": "0.27.3",
|
|
804
|
+
"@esbuild/android-arm64": "0.27.3",
|
|
805
|
+
"@esbuild/android-x64": "0.27.3",
|
|
806
|
+
"@esbuild/darwin-arm64": "0.27.3",
|
|
807
|
+
"@esbuild/darwin-x64": "0.27.3",
|
|
808
|
+
"@esbuild/freebsd-arm64": "0.27.3",
|
|
809
|
+
"@esbuild/freebsd-x64": "0.27.3",
|
|
810
|
+
"@esbuild/linux-arm": "0.27.3",
|
|
811
|
+
"@esbuild/linux-arm64": "0.27.3",
|
|
812
|
+
"@esbuild/linux-ia32": "0.27.3",
|
|
813
|
+
"@esbuild/linux-loong64": "0.27.3",
|
|
814
|
+
"@esbuild/linux-mips64el": "0.27.3",
|
|
815
|
+
"@esbuild/linux-ppc64": "0.27.3",
|
|
816
|
+
"@esbuild/linux-riscv64": "0.27.3",
|
|
817
|
+
"@esbuild/linux-s390x": "0.27.3",
|
|
818
|
+
"@esbuild/linux-x64": "0.27.3",
|
|
819
|
+
"@esbuild/netbsd-arm64": "0.27.3",
|
|
820
|
+
"@esbuild/netbsd-x64": "0.27.3",
|
|
821
|
+
"@esbuild/openbsd-arm64": "0.27.3",
|
|
822
|
+
"@esbuild/openbsd-x64": "0.27.3",
|
|
823
|
+
"@esbuild/openharmony-arm64": "0.27.3",
|
|
824
|
+
"@esbuild/sunos-x64": "0.27.3",
|
|
825
|
+
"@esbuild/win32-arm64": "0.27.3",
|
|
826
|
+
"@esbuild/win32-ia32": "0.27.3",
|
|
827
|
+
"@esbuild/win32-x64": "0.27.3"
|
|
828
|
+
}
|
|
829
|
+
},
|
|
830
|
+
"node_modules/escape-html": {
|
|
831
|
+
"version": "1.0.3",
|
|
832
|
+
"resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz",
|
|
833
|
+
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
|
|
834
|
+
"license": "MIT"
|
|
835
|
+
},
|
|
836
|
+
"node_modules/etag": {
|
|
837
|
+
"version": "1.8.1",
|
|
838
|
+
"resolved": "https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz",
|
|
839
|
+
"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
|
|
840
|
+
"license": "MIT",
|
|
841
|
+
"engines": {
|
|
842
|
+
"node": ">= 0.6"
|
|
843
|
+
}
|
|
844
|
+
},
|
|
845
|
+
"node_modules/eventsource": {
|
|
846
|
+
"version": "3.0.7",
|
|
847
|
+
"resolved": "https://registry.npmmirror.com/eventsource/-/eventsource-3.0.7.tgz",
|
|
848
|
+
"integrity": "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==",
|
|
849
|
+
"license": "MIT",
|
|
850
|
+
"dependencies": {
|
|
851
|
+
"eventsource-parser": "^3.0.1"
|
|
852
|
+
},
|
|
853
|
+
"engines": {
|
|
854
|
+
"node": ">=18.0.0"
|
|
855
|
+
}
|
|
856
|
+
},
|
|
857
|
+
"node_modules/eventsource-parser": {
|
|
858
|
+
"version": "3.0.6",
|
|
859
|
+
"resolved": "https://registry.npmmirror.com/eventsource-parser/-/eventsource-parser-3.0.6.tgz",
|
|
860
|
+
"integrity": "sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==",
|
|
861
|
+
"license": "MIT",
|
|
862
|
+
"engines": {
|
|
863
|
+
"node": ">=18.0.0"
|
|
864
|
+
}
|
|
865
|
+
},
|
|
866
|
+
"node_modules/express": {
|
|
867
|
+
"version": "5.2.1",
|
|
868
|
+
"resolved": "https://registry.npmmirror.com/express/-/express-5.2.1.tgz",
|
|
869
|
+
"integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
|
|
870
|
+
"license": "MIT",
|
|
871
|
+
"dependencies": {
|
|
872
|
+
"accepts": "^2.0.0",
|
|
873
|
+
"body-parser": "^2.2.1",
|
|
874
|
+
"content-disposition": "^1.0.0",
|
|
875
|
+
"content-type": "^1.0.5",
|
|
876
|
+
"cookie": "^0.7.1",
|
|
877
|
+
"cookie-signature": "^1.2.1",
|
|
878
|
+
"debug": "^4.4.0",
|
|
879
|
+
"depd": "^2.0.0",
|
|
880
|
+
"encodeurl": "^2.0.0",
|
|
881
|
+
"escape-html": "^1.0.3",
|
|
882
|
+
"etag": "^1.8.1",
|
|
883
|
+
"finalhandler": "^2.1.0",
|
|
884
|
+
"fresh": "^2.0.0",
|
|
885
|
+
"http-errors": "^2.0.0",
|
|
886
|
+
"merge-descriptors": "^2.0.0",
|
|
887
|
+
"mime-types": "^3.0.0",
|
|
888
|
+
"on-finished": "^2.4.1",
|
|
889
|
+
"once": "^1.4.0",
|
|
890
|
+
"parseurl": "^1.3.3",
|
|
891
|
+
"proxy-addr": "^2.0.7",
|
|
892
|
+
"qs": "^6.14.0",
|
|
893
|
+
"range-parser": "^1.2.1",
|
|
894
|
+
"router": "^2.2.0",
|
|
895
|
+
"send": "^1.1.0",
|
|
896
|
+
"serve-static": "^2.2.0",
|
|
897
|
+
"statuses": "^2.0.1",
|
|
898
|
+
"type-is": "^2.0.1",
|
|
899
|
+
"vary": "^1.1.2"
|
|
900
|
+
},
|
|
901
|
+
"engines": {
|
|
902
|
+
"node": ">= 18"
|
|
903
|
+
},
|
|
904
|
+
"funding": {
|
|
905
|
+
"type": "opencollective",
|
|
906
|
+
"url": "https://opencollective.com/express"
|
|
907
|
+
}
|
|
908
|
+
},
|
|
909
|
+
"node_modules/express-rate-limit": {
|
|
910
|
+
"version": "8.3.1",
|
|
911
|
+
"resolved": "https://registry.npmmirror.com/express-rate-limit/-/express-rate-limit-8.3.1.tgz",
|
|
912
|
+
"integrity": "sha512-D1dKN+cmyPWuvB+G2SREQDzPY1agpBIcTa9sJxOPMCNeH3gwzhqJRDWCXW3gg0y//+LQ/8j52JbMROWyrKdMdw==",
|
|
913
|
+
"license": "MIT",
|
|
914
|
+
"dependencies": {
|
|
915
|
+
"ip-address": "10.1.0"
|
|
916
|
+
},
|
|
917
|
+
"engines": {
|
|
918
|
+
"node": ">= 16"
|
|
919
|
+
},
|
|
920
|
+
"funding": {
|
|
921
|
+
"url": "https://github.com/sponsors/express-rate-limit"
|
|
922
|
+
},
|
|
923
|
+
"peerDependencies": {
|
|
924
|
+
"express": ">= 4.11"
|
|
925
|
+
}
|
|
926
|
+
},
|
|
927
|
+
"node_modules/fast-deep-equal": {
|
|
928
|
+
"version": "3.1.3",
|
|
929
|
+
"resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
930
|
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
|
931
|
+
"license": "MIT"
|
|
932
|
+
},
|
|
933
|
+
"node_modules/fast-uri": {
|
|
934
|
+
"version": "3.1.0",
|
|
935
|
+
"resolved": "https://registry.npmmirror.com/fast-uri/-/fast-uri-3.1.0.tgz",
|
|
936
|
+
"integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==",
|
|
937
|
+
"funding": [
|
|
938
|
+
{
|
|
939
|
+
"type": "github",
|
|
940
|
+
"url": "https://github.com/sponsors/fastify"
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"type": "opencollective",
|
|
944
|
+
"url": "https://opencollective.com/fastify"
|
|
945
|
+
}
|
|
946
|
+
],
|
|
947
|
+
"license": "BSD-3-Clause"
|
|
948
|
+
},
|
|
949
|
+
"node_modules/finalhandler": {
|
|
950
|
+
"version": "2.1.1",
|
|
951
|
+
"resolved": "https://registry.npmmirror.com/finalhandler/-/finalhandler-2.1.1.tgz",
|
|
952
|
+
"integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
|
|
953
|
+
"license": "MIT",
|
|
954
|
+
"dependencies": {
|
|
955
|
+
"debug": "^4.4.0",
|
|
956
|
+
"encodeurl": "^2.0.0",
|
|
957
|
+
"escape-html": "^1.0.3",
|
|
958
|
+
"on-finished": "^2.4.1",
|
|
959
|
+
"parseurl": "^1.3.3",
|
|
960
|
+
"statuses": "^2.0.1"
|
|
961
|
+
},
|
|
962
|
+
"engines": {
|
|
963
|
+
"node": ">= 18.0.0"
|
|
964
|
+
},
|
|
965
|
+
"funding": {
|
|
966
|
+
"type": "opencollective",
|
|
967
|
+
"url": "https://opencollective.com/express"
|
|
968
|
+
}
|
|
969
|
+
},
|
|
970
|
+
"node_modules/forwarded": {
|
|
971
|
+
"version": "0.2.0",
|
|
972
|
+
"resolved": "https://registry.npmmirror.com/forwarded/-/forwarded-0.2.0.tgz",
|
|
973
|
+
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
|
|
974
|
+
"license": "MIT",
|
|
975
|
+
"engines": {
|
|
976
|
+
"node": ">= 0.6"
|
|
977
|
+
}
|
|
978
|
+
},
|
|
979
|
+
"node_modules/fresh": {
|
|
980
|
+
"version": "2.0.0",
|
|
981
|
+
"resolved": "https://registry.npmmirror.com/fresh/-/fresh-2.0.0.tgz",
|
|
982
|
+
"integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
|
|
983
|
+
"license": "MIT",
|
|
984
|
+
"engines": {
|
|
985
|
+
"node": ">= 0.8"
|
|
986
|
+
}
|
|
987
|
+
},
|
|
988
|
+
"node_modules/fsevents": {
|
|
989
|
+
"version": "2.3.3",
|
|
990
|
+
"resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
|
|
991
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
992
|
+
"dev": true,
|
|
993
|
+
"hasInstallScript": true,
|
|
994
|
+
"license": "MIT",
|
|
995
|
+
"optional": true,
|
|
996
|
+
"os": [
|
|
997
|
+
"darwin"
|
|
998
|
+
],
|
|
999
|
+
"engines": {
|
|
1000
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
"node_modules/function-bind": {
|
|
1004
|
+
"version": "1.1.2",
|
|
1005
|
+
"resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz",
|
|
1006
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
1007
|
+
"license": "MIT",
|
|
1008
|
+
"funding": {
|
|
1009
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1010
|
+
}
|
|
1011
|
+
},
|
|
1012
|
+
"node_modules/get-intrinsic": {
|
|
1013
|
+
"version": "1.3.0",
|
|
1014
|
+
"resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
|
1015
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
1016
|
+
"license": "MIT",
|
|
1017
|
+
"dependencies": {
|
|
1018
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
1019
|
+
"es-define-property": "^1.0.1",
|
|
1020
|
+
"es-errors": "^1.3.0",
|
|
1021
|
+
"es-object-atoms": "^1.1.1",
|
|
1022
|
+
"function-bind": "^1.1.2",
|
|
1023
|
+
"get-proto": "^1.0.1",
|
|
1024
|
+
"gopd": "^1.2.0",
|
|
1025
|
+
"has-symbols": "^1.1.0",
|
|
1026
|
+
"hasown": "^2.0.2",
|
|
1027
|
+
"math-intrinsics": "^1.1.0"
|
|
1028
|
+
},
|
|
1029
|
+
"engines": {
|
|
1030
|
+
"node": ">= 0.4"
|
|
1031
|
+
},
|
|
1032
|
+
"funding": {
|
|
1033
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1034
|
+
}
|
|
1035
|
+
},
|
|
1036
|
+
"node_modules/get-proto": {
|
|
1037
|
+
"version": "1.0.1",
|
|
1038
|
+
"resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz",
|
|
1039
|
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
|
1040
|
+
"license": "MIT",
|
|
1041
|
+
"dependencies": {
|
|
1042
|
+
"dunder-proto": "^1.0.1",
|
|
1043
|
+
"es-object-atoms": "^1.0.0"
|
|
1044
|
+
},
|
|
1045
|
+
"engines": {
|
|
1046
|
+
"node": ">= 0.4"
|
|
1047
|
+
}
|
|
1048
|
+
},
|
|
1049
|
+
"node_modules/get-tsconfig": {
|
|
1050
|
+
"version": "4.13.6",
|
|
1051
|
+
"resolved": "https://registry.npmmirror.com/get-tsconfig/-/get-tsconfig-4.13.6.tgz",
|
|
1052
|
+
"integrity": "sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==",
|
|
1053
|
+
"dev": true,
|
|
1054
|
+
"license": "MIT",
|
|
1055
|
+
"dependencies": {
|
|
1056
|
+
"resolve-pkg-maps": "^1.0.0"
|
|
1057
|
+
},
|
|
1058
|
+
"funding": {
|
|
1059
|
+
"url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
|
|
1060
|
+
}
|
|
1061
|
+
},
|
|
1062
|
+
"node_modules/gopd": {
|
|
1063
|
+
"version": "1.2.0",
|
|
1064
|
+
"resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz",
|
|
1065
|
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
|
1066
|
+
"license": "MIT",
|
|
1067
|
+
"engines": {
|
|
1068
|
+
"node": ">= 0.4"
|
|
1069
|
+
},
|
|
1070
|
+
"funding": {
|
|
1071
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1072
|
+
}
|
|
1073
|
+
},
|
|
1074
|
+
"node_modules/has-symbols": {
|
|
1075
|
+
"version": "1.1.0",
|
|
1076
|
+
"resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
1077
|
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
1078
|
+
"license": "MIT",
|
|
1079
|
+
"engines": {
|
|
1080
|
+
"node": ">= 0.4"
|
|
1081
|
+
},
|
|
1082
|
+
"funding": {
|
|
1083
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1084
|
+
}
|
|
1085
|
+
},
|
|
1086
|
+
"node_modules/hasown": {
|
|
1087
|
+
"version": "2.0.2",
|
|
1088
|
+
"resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz",
|
|
1089
|
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
|
1090
|
+
"license": "MIT",
|
|
1091
|
+
"dependencies": {
|
|
1092
|
+
"function-bind": "^1.1.2"
|
|
1093
|
+
},
|
|
1094
|
+
"engines": {
|
|
1095
|
+
"node": ">= 0.4"
|
|
1096
|
+
}
|
|
1097
|
+
},
|
|
1098
|
+
"node_modules/hono": {
|
|
1099
|
+
"version": "4.12.7",
|
|
1100
|
+
"resolved": "https://registry.npmmirror.com/hono/-/hono-4.12.7.tgz",
|
|
1101
|
+
"integrity": "sha512-jq9l1DM0zVIvsm3lv9Nw9nlJnMNPOcAtsbsgiUhWcFzPE99Gvo6yRTlszSLLYacMeQ6quHD6hMfId8crVHvexw==",
|
|
1102
|
+
"license": "MIT",
|
|
1103
|
+
"engines": {
|
|
1104
|
+
"node": ">=16.9.0"
|
|
1105
|
+
}
|
|
1106
|
+
},
|
|
1107
|
+
"node_modules/http-errors": {
|
|
1108
|
+
"version": "2.0.1",
|
|
1109
|
+
"resolved": "https://registry.npmmirror.com/http-errors/-/http-errors-2.0.1.tgz",
|
|
1110
|
+
"integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
|
|
1111
|
+
"license": "MIT",
|
|
1112
|
+
"dependencies": {
|
|
1113
|
+
"depd": "~2.0.0",
|
|
1114
|
+
"inherits": "~2.0.4",
|
|
1115
|
+
"setprototypeof": "~1.2.0",
|
|
1116
|
+
"statuses": "~2.0.2",
|
|
1117
|
+
"toidentifier": "~1.0.1"
|
|
1118
|
+
},
|
|
1119
|
+
"engines": {
|
|
1120
|
+
"node": ">= 0.8"
|
|
1121
|
+
},
|
|
1122
|
+
"funding": {
|
|
1123
|
+
"type": "opencollective",
|
|
1124
|
+
"url": "https://opencollective.com/express"
|
|
1125
|
+
}
|
|
1126
|
+
},
|
|
1127
|
+
"node_modules/iconv-lite": {
|
|
1128
|
+
"version": "0.7.2",
|
|
1129
|
+
"resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.7.2.tgz",
|
|
1130
|
+
"integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
|
|
1131
|
+
"license": "MIT",
|
|
1132
|
+
"dependencies": {
|
|
1133
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
1134
|
+
},
|
|
1135
|
+
"engines": {
|
|
1136
|
+
"node": ">=0.10.0"
|
|
1137
|
+
},
|
|
1138
|
+
"funding": {
|
|
1139
|
+
"type": "opencollective",
|
|
1140
|
+
"url": "https://opencollective.com/express"
|
|
1141
|
+
}
|
|
1142
|
+
},
|
|
1143
|
+
"node_modules/inherits": {
|
|
1144
|
+
"version": "2.0.4",
|
|
1145
|
+
"resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz",
|
|
1146
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
1147
|
+
"license": "ISC"
|
|
1148
|
+
},
|
|
1149
|
+
"node_modules/ip-address": {
|
|
1150
|
+
"version": "10.1.0",
|
|
1151
|
+
"resolved": "https://registry.npmmirror.com/ip-address/-/ip-address-10.1.0.tgz",
|
|
1152
|
+
"integrity": "sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==",
|
|
1153
|
+
"license": "MIT",
|
|
1154
|
+
"engines": {
|
|
1155
|
+
"node": ">= 12"
|
|
1156
|
+
}
|
|
1157
|
+
},
|
|
1158
|
+
"node_modules/ipaddr.js": {
|
|
1159
|
+
"version": "1.9.1",
|
|
1160
|
+
"resolved": "https://registry.npmmirror.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
|
1161
|
+
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
|
|
1162
|
+
"license": "MIT",
|
|
1163
|
+
"engines": {
|
|
1164
|
+
"node": ">= 0.10"
|
|
1165
|
+
}
|
|
1166
|
+
},
|
|
1167
|
+
"node_modules/is-promise": {
|
|
1168
|
+
"version": "4.0.0",
|
|
1169
|
+
"resolved": "https://registry.npmmirror.com/is-promise/-/is-promise-4.0.0.tgz",
|
|
1170
|
+
"integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
|
|
1171
|
+
"license": "MIT"
|
|
1172
|
+
},
|
|
1173
|
+
"node_modules/isexe": {
|
|
1174
|
+
"version": "2.0.0",
|
|
1175
|
+
"resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz",
|
|
1176
|
+
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
|
|
1177
|
+
"license": "ISC"
|
|
1178
|
+
},
|
|
1179
|
+
"node_modules/jose": {
|
|
1180
|
+
"version": "6.2.1",
|
|
1181
|
+
"resolved": "https://registry.npmmirror.com/jose/-/jose-6.2.1.tgz",
|
|
1182
|
+
"integrity": "sha512-jUaKr1yrbfaImV7R2TN/b3IcZzsw38/chqMpo2XJ7i2F8AfM/lA4G1goC3JVEwg0H7UldTmSt3P68nt31W7/mw==",
|
|
1183
|
+
"license": "MIT",
|
|
1184
|
+
"funding": {
|
|
1185
|
+
"url": "https://github.com/sponsors/panva"
|
|
1186
|
+
}
|
|
1187
|
+
},
|
|
1188
|
+
"node_modules/json-schema-traverse": {
|
|
1189
|
+
"version": "1.0.0",
|
|
1190
|
+
"resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
1191
|
+
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
|
|
1192
|
+
"license": "MIT"
|
|
1193
|
+
},
|
|
1194
|
+
"node_modules/json-schema-typed": {
|
|
1195
|
+
"version": "8.0.2",
|
|
1196
|
+
"resolved": "https://registry.npmmirror.com/json-schema-typed/-/json-schema-typed-8.0.2.tgz",
|
|
1197
|
+
"integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==",
|
|
1198
|
+
"license": "BSD-2-Clause"
|
|
1199
|
+
},
|
|
1200
|
+
"node_modules/math-intrinsics": {
|
|
1201
|
+
"version": "1.1.0",
|
|
1202
|
+
"resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
1203
|
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
|
1204
|
+
"license": "MIT",
|
|
1205
|
+
"engines": {
|
|
1206
|
+
"node": ">= 0.4"
|
|
1207
|
+
}
|
|
1208
|
+
},
|
|
1209
|
+
"node_modules/media-typer": {
|
|
1210
|
+
"version": "1.1.0",
|
|
1211
|
+
"resolved": "https://registry.npmmirror.com/media-typer/-/media-typer-1.1.0.tgz",
|
|
1212
|
+
"integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
|
|
1213
|
+
"license": "MIT",
|
|
1214
|
+
"engines": {
|
|
1215
|
+
"node": ">= 0.8"
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1218
|
+
"node_modules/merge-descriptors": {
|
|
1219
|
+
"version": "2.0.0",
|
|
1220
|
+
"resolved": "https://registry.npmmirror.com/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
|
|
1221
|
+
"integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
|
|
1222
|
+
"license": "MIT",
|
|
1223
|
+
"engines": {
|
|
1224
|
+
"node": ">=18"
|
|
1225
|
+
},
|
|
1226
|
+
"funding": {
|
|
1227
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1228
|
+
}
|
|
1229
|
+
},
|
|
1230
|
+
"node_modules/mime-db": {
|
|
1231
|
+
"version": "1.54.0",
|
|
1232
|
+
"resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.54.0.tgz",
|
|
1233
|
+
"integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
|
|
1234
|
+
"license": "MIT",
|
|
1235
|
+
"engines": {
|
|
1236
|
+
"node": ">= 0.6"
|
|
1237
|
+
}
|
|
1238
|
+
},
|
|
1239
|
+
"node_modules/mime-types": {
|
|
1240
|
+
"version": "3.0.2",
|
|
1241
|
+
"resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-3.0.2.tgz",
|
|
1242
|
+
"integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
|
|
1243
|
+
"license": "MIT",
|
|
1244
|
+
"dependencies": {
|
|
1245
|
+
"mime-db": "^1.54.0"
|
|
1246
|
+
},
|
|
1247
|
+
"engines": {
|
|
1248
|
+
"node": ">=18"
|
|
1249
|
+
},
|
|
1250
|
+
"funding": {
|
|
1251
|
+
"type": "opencollective",
|
|
1252
|
+
"url": "https://opencollective.com/express"
|
|
1253
|
+
}
|
|
1254
|
+
},
|
|
1255
|
+
"node_modules/ms": {
|
|
1256
|
+
"version": "2.1.3",
|
|
1257
|
+
"resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
|
|
1258
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
1259
|
+
"license": "MIT"
|
|
1260
|
+
},
|
|
1261
|
+
"node_modules/negotiator": {
|
|
1262
|
+
"version": "1.0.0",
|
|
1263
|
+
"resolved": "https://registry.npmmirror.com/negotiator/-/negotiator-1.0.0.tgz",
|
|
1264
|
+
"integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
|
|
1265
|
+
"license": "MIT",
|
|
1266
|
+
"engines": {
|
|
1267
|
+
"node": ">= 0.6"
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
1270
|
+
"node_modules/object-assign": {
|
|
1271
|
+
"version": "4.1.1",
|
|
1272
|
+
"resolved": "https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz",
|
|
1273
|
+
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
|
|
1274
|
+
"license": "MIT",
|
|
1275
|
+
"engines": {
|
|
1276
|
+
"node": ">=0.10.0"
|
|
1277
|
+
}
|
|
1278
|
+
},
|
|
1279
|
+
"node_modules/object-inspect": {
|
|
1280
|
+
"version": "1.13.4",
|
|
1281
|
+
"resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.13.4.tgz",
|
|
1282
|
+
"integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
|
|
1283
|
+
"license": "MIT",
|
|
1284
|
+
"engines": {
|
|
1285
|
+
"node": ">= 0.4"
|
|
1286
|
+
},
|
|
1287
|
+
"funding": {
|
|
1288
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1289
|
+
}
|
|
1290
|
+
},
|
|
1291
|
+
"node_modules/on-finished": {
|
|
1292
|
+
"version": "2.4.1",
|
|
1293
|
+
"resolved": "https://registry.npmmirror.com/on-finished/-/on-finished-2.4.1.tgz",
|
|
1294
|
+
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
|
|
1295
|
+
"license": "MIT",
|
|
1296
|
+
"dependencies": {
|
|
1297
|
+
"ee-first": "1.1.1"
|
|
1298
|
+
},
|
|
1299
|
+
"engines": {
|
|
1300
|
+
"node": ">= 0.8"
|
|
1301
|
+
}
|
|
1302
|
+
},
|
|
1303
|
+
"node_modules/once": {
|
|
1304
|
+
"version": "1.4.0",
|
|
1305
|
+
"resolved": "https://registry.npmmirror.com/once/-/once-1.4.0.tgz",
|
|
1306
|
+
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
|
1307
|
+
"license": "ISC",
|
|
1308
|
+
"dependencies": {
|
|
1309
|
+
"wrappy": "1"
|
|
1310
|
+
}
|
|
1311
|
+
},
|
|
1312
|
+
"node_modules/parseurl": {
|
|
1313
|
+
"version": "1.3.3",
|
|
1314
|
+
"resolved": "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz",
|
|
1315
|
+
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
|
|
1316
|
+
"license": "MIT",
|
|
1317
|
+
"engines": {
|
|
1318
|
+
"node": ">= 0.8"
|
|
1319
|
+
}
|
|
1320
|
+
},
|
|
1321
|
+
"node_modules/path-key": {
|
|
1322
|
+
"version": "3.1.1",
|
|
1323
|
+
"resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz",
|
|
1324
|
+
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
|
|
1325
|
+
"license": "MIT",
|
|
1326
|
+
"engines": {
|
|
1327
|
+
"node": ">=8"
|
|
1328
|
+
}
|
|
1329
|
+
},
|
|
1330
|
+
"node_modules/path-to-regexp": {
|
|
1331
|
+
"version": "8.3.0",
|
|
1332
|
+
"resolved": "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-8.3.0.tgz",
|
|
1333
|
+
"integrity": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==",
|
|
1334
|
+
"license": "MIT",
|
|
1335
|
+
"funding": {
|
|
1336
|
+
"type": "opencollective",
|
|
1337
|
+
"url": "https://opencollective.com/express"
|
|
1338
|
+
}
|
|
1339
|
+
},
|
|
1340
|
+
"node_modules/pkce-challenge": {
|
|
1341
|
+
"version": "5.0.1",
|
|
1342
|
+
"resolved": "https://registry.npmmirror.com/pkce-challenge/-/pkce-challenge-5.0.1.tgz",
|
|
1343
|
+
"integrity": "sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==",
|
|
1344
|
+
"license": "MIT",
|
|
1345
|
+
"engines": {
|
|
1346
|
+
"node": ">=16.20.0"
|
|
1347
|
+
}
|
|
1348
|
+
},
|
|
1349
|
+
"node_modules/proxy-addr": {
|
|
1350
|
+
"version": "2.0.7",
|
|
1351
|
+
"resolved": "https://registry.npmmirror.com/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
|
1352
|
+
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
|
|
1353
|
+
"license": "MIT",
|
|
1354
|
+
"dependencies": {
|
|
1355
|
+
"forwarded": "0.2.0",
|
|
1356
|
+
"ipaddr.js": "1.9.1"
|
|
1357
|
+
},
|
|
1358
|
+
"engines": {
|
|
1359
|
+
"node": ">= 0.10"
|
|
1360
|
+
}
|
|
1361
|
+
},
|
|
1362
|
+
"node_modules/qs": {
|
|
1363
|
+
"version": "6.15.0",
|
|
1364
|
+
"resolved": "https://registry.npmmirror.com/qs/-/qs-6.15.0.tgz",
|
|
1365
|
+
"integrity": "sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==",
|
|
1366
|
+
"license": "BSD-3-Clause",
|
|
1367
|
+
"dependencies": {
|
|
1368
|
+
"side-channel": "^1.1.0"
|
|
1369
|
+
},
|
|
1370
|
+
"engines": {
|
|
1371
|
+
"node": ">=0.6"
|
|
1372
|
+
},
|
|
1373
|
+
"funding": {
|
|
1374
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1375
|
+
}
|
|
1376
|
+
},
|
|
1377
|
+
"node_modules/range-parser": {
|
|
1378
|
+
"version": "1.2.1",
|
|
1379
|
+
"resolved": "https://registry.npmmirror.com/range-parser/-/range-parser-1.2.1.tgz",
|
|
1380
|
+
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
|
|
1381
|
+
"license": "MIT",
|
|
1382
|
+
"engines": {
|
|
1383
|
+
"node": ">= 0.6"
|
|
1384
|
+
}
|
|
1385
|
+
},
|
|
1386
|
+
"node_modules/raw-body": {
|
|
1387
|
+
"version": "3.0.2",
|
|
1388
|
+
"resolved": "https://registry.npmmirror.com/raw-body/-/raw-body-3.0.2.tgz",
|
|
1389
|
+
"integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
|
|
1390
|
+
"license": "MIT",
|
|
1391
|
+
"dependencies": {
|
|
1392
|
+
"bytes": "~3.1.2",
|
|
1393
|
+
"http-errors": "~2.0.1",
|
|
1394
|
+
"iconv-lite": "~0.7.0",
|
|
1395
|
+
"unpipe": "~1.0.0"
|
|
1396
|
+
},
|
|
1397
|
+
"engines": {
|
|
1398
|
+
"node": ">= 0.10"
|
|
1399
|
+
}
|
|
1400
|
+
},
|
|
1401
|
+
"node_modules/require-from-string": {
|
|
1402
|
+
"version": "2.0.2",
|
|
1403
|
+
"resolved": "https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
1404
|
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
|
1405
|
+
"license": "MIT",
|
|
1406
|
+
"engines": {
|
|
1407
|
+
"node": ">=0.10.0"
|
|
1408
|
+
}
|
|
1409
|
+
},
|
|
1410
|
+
"node_modules/resolve-pkg-maps": {
|
|
1411
|
+
"version": "1.0.0",
|
|
1412
|
+
"resolved": "https://registry.npmmirror.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
|
|
1413
|
+
"integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
|
|
1414
|
+
"dev": true,
|
|
1415
|
+
"license": "MIT",
|
|
1416
|
+
"funding": {
|
|
1417
|
+
"url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
|
|
1418
|
+
}
|
|
1419
|
+
},
|
|
1420
|
+
"node_modules/router": {
|
|
1421
|
+
"version": "2.2.0",
|
|
1422
|
+
"resolved": "https://registry.npmmirror.com/router/-/router-2.2.0.tgz",
|
|
1423
|
+
"integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
|
|
1424
|
+
"license": "MIT",
|
|
1425
|
+
"dependencies": {
|
|
1426
|
+
"debug": "^4.4.0",
|
|
1427
|
+
"depd": "^2.0.0",
|
|
1428
|
+
"is-promise": "^4.0.0",
|
|
1429
|
+
"parseurl": "^1.3.3",
|
|
1430
|
+
"path-to-regexp": "^8.0.0"
|
|
1431
|
+
},
|
|
1432
|
+
"engines": {
|
|
1433
|
+
"node": ">= 18"
|
|
1434
|
+
}
|
|
1435
|
+
},
|
|
1436
|
+
"node_modules/safer-buffer": {
|
|
1437
|
+
"version": "2.1.2",
|
|
1438
|
+
"resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
1439
|
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
1440
|
+
"license": "MIT"
|
|
1441
|
+
},
|
|
1442
|
+
"node_modules/send": {
|
|
1443
|
+
"version": "1.2.1",
|
|
1444
|
+
"resolved": "https://registry.npmmirror.com/send/-/send-1.2.1.tgz",
|
|
1445
|
+
"integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
|
|
1446
|
+
"license": "MIT",
|
|
1447
|
+
"dependencies": {
|
|
1448
|
+
"debug": "^4.4.3",
|
|
1449
|
+
"encodeurl": "^2.0.0",
|
|
1450
|
+
"escape-html": "^1.0.3",
|
|
1451
|
+
"etag": "^1.8.1",
|
|
1452
|
+
"fresh": "^2.0.0",
|
|
1453
|
+
"http-errors": "^2.0.1",
|
|
1454
|
+
"mime-types": "^3.0.2",
|
|
1455
|
+
"ms": "^2.1.3",
|
|
1456
|
+
"on-finished": "^2.4.1",
|
|
1457
|
+
"range-parser": "^1.2.1",
|
|
1458
|
+
"statuses": "^2.0.2"
|
|
1459
|
+
},
|
|
1460
|
+
"engines": {
|
|
1461
|
+
"node": ">= 18"
|
|
1462
|
+
},
|
|
1463
|
+
"funding": {
|
|
1464
|
+
"type": "opencollective",
|
|
1465
|
+
"url": "https://opencollective.com/express"
|
|
1466
|
+
}
|
|
1467
|
+
},
|
|
1468
|
+
"node_modules/serve-static": {
|
|
1469
|
+
"version": "2.2.1",
|
|
1470
|
+
"resolved": "https://registry.npmmirror.com/serve-static/-/serve-static-2.2.1.tgz",
|
|
1471
|
+
"integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
|
|
1472
|
+
"license": "MIT",
|
|
1473
|
+
"dependencies": {
|
|
1474
|
+
"encodeurl": "^2.0.0",
|
|
1475
|
+
"escape-html": "^1.0.3",
|
|
1476
|
+
"parseurl": "^1.3.3",
|
|
1477
|
+
"send": "^1.2.0"
|
|
1478
|
+
},
|
|
1479
|
+
"engines": {
|
|
1480
|
+
"node": ">= 18"
|
|
1481
|
+
},
|
|
1482
|
+
"funding": {
|
|
1483
|
+
"type": "opencollective",
|
|
1484
|
+
"url": "https://opencollective.com/express"
|
|
1485
|
+
}
|
|
1486
|
+
},
|
|
1487
|
+
"node_modules/setprototypeof": {
|
|
1488
|
+
"version": "1.2.0",
|
|
1489
|
+
"resolved": "https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
|
1490
|
+
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
|
|
1491
|
+
"license": "ISC"
|
|
1492
|
+
},
|
|
1493
|
+
"node_modules/shebang-command": {
|
|
1494
|
+
"version": "2.0.0",
|
|
1495
|
+
"resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz",
|
|
1496
|
+
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
|
1497
|
+
"license": "MIT",
|
|
1498
|
+
"dependencies": {
|
|
1499
|
+
"shebang-regex": "^3.0.0"
|
|
1500
|
+
},
|
|
1501
|
+
"engines": {
|
|
1502
|
+
"node": ">=8"
|
|
1503
|
+
}
|
|
1504
|
+
},
|
|
1505
|
+
"node_modules/shebang-regex": {
|
|
1506
|
+
"version": "3.0.0",
|
|
1507
|
+
"resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
|
1508
|
+
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
|
|
1509
|
+
"license": "MIT",
|
|
1510
|
+
"engines": {
|
|
1511
|
+
"node": ">=8"
|
|
1512
|
+
}
|
|
1513
|
+
},
|
|
1514
|
+
"node_modules/side-channel": {
|
|
1515
|
+
"version": "1.1.0",
|
|
1516
|
+
"resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.1.0.tgz",
|
|
1517
|
+
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
|
|
1518
|
+
"license": "MIT",
|
|
1519
|
+
"dependencies": {
|
|
1520
|
+
"es-errors": "^1.3.0",
|
|
1521
|
+
"object-inspect": "^1.13.3",
|
|
1522
|
+
"side-channel-list": "^1.0.0",
|
|
1523
|
+
"side-channel-map": "^1.0.1",
|
|
1524
|
+
"side-channel-weakmap": "^1.0.2"
|
|
1525
|
+
},
|
|
1526
|
+
"engines": {
|
|
1527
|
+
"node": ">= 0.4"
|
|
1528
|
+
},
|
|
1529
|
+
"funding": {
|
|
1530
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1531
|
+
}
|
|
1532
|
+
},
|
|
1533
|
+
"node_modules/side-channel-list": {
|
|
1534
|
+
"version": "1.0.0",
|
|
1535
|
+
"resolved": "https://registry.npmmirror.com/side-channel-list/-/side-channel-list-1.0.0.tgz",
|
|
1536
|
+
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
|
|
1537
|
+
"license": "MIT",
|
|
1538
|
+
"dependencies": {
|
|
1539
|
+
"es-errors": "^1.3.0",
|
|
1540
|
+
"object-inspect": "^1.13.3"
|
|
1541
|
+
},
|
|
1542
|
+
"engines": {
|
|
1543
|
+
"node": ">= 0.4"
|
|
1544
|
+
},
|
|
1545
|
+
"funding": {
|
|
1546
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1547
|
+
}
|
|
1548
|
+
},
|
|
1549
|
+
"node_modules/side-channel-map": {
|
|
1550
|
+
"version": "1.0.1",
|
|
1551
|
+
"resolved": "https://registry.npmmirror.com/side-channel-map/-/side-channel-map-1.0.1.tgz",
|
|
1552
|
+
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
|
|
1553
|
+
"license": "MIT",
|
|
1554
|
+
"dependencies": {
|
|
1555
|
+
"call-bound": "^1.0.2",
|
|
1556
|
+
"es-errors": "^1.3.0",
|
|
1557
|
+
"get-intrinsic": "^1.2.5",
|
|
1558
|
+
"object-inspect": "^1.13.3"
|
|
1559
|
+
},
|
|
1560
|
+
"engines": {
|
|
1561
|
+
"node": ">= 0.4"
|
|
1562
|
+
},
|
|
1563
|
+
"funding": {
|
|
1564
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1565
|
+
}
|
|
1566
|
+
},
|
|
1567
|
+
"node_modules/side-channel-weakmap": {
|
|
1568
|
+
"version": "1.0.2",
|
|
1569
|
+
"resolved": "https://registry.npmmirror.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
|
|
1570
|
+
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
|
|
1571
|
+
"license": "MIT",
|
|
1572
|
+
"dependencies": {
|
|
1573
|
+
"call-bound": "^1.0.2",
|
|
1574
|
+
"es-errors": "^1.3.0",
|
|
1575
|
+
"get-intrinsic": "^1.2.5",
|
|
1576
|
+
"object-inspect": "^1.13.3",
|
|
1577
|
+
"side-channel-map": "^1.0.1"
|
|
1578
|
+
},
|
|
1579
|
+
"engines": {
|
|
1580
|
+
"node": ">= 0.4"
|
|
1581
|
+
},
|
|
1582
|
+
"funding": {
|
|
1583
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1584
|
+
}
|
|
1585
|
+
},
|
|
1586
|
+
"node_modules/statuses": {
|
|
1587
|
+
"version": "2.0.2",
|
|
1588
|
+
"resolved": "https://registry.npmmirror.com/statuses/-/statuses-2.0.2.tgz",
|
|
1589
|
+
"integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
|
|
1590
|
+
"license": "MIT",
|
|
1591
|
+
"engines": {
|
|
1592
|
+
"node": ">= 0.8"
|
|
1593
|
+
}
|
|
1594
|
+
},
|
|
1595
|
+
"node_modules/toidentifier": {
|
|
1596
|
+
"version": "1.0.1",
|
|
1597
|
+
"resolved": "https://registry.npmmirror.com/toidentifier/-/toidentifier-1.0.1.tgz",
|
|
1598
|
+
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
|
|
1599
|
+
"license": "MIT",
|
|
1600
|
+
"engines": {
|
|
1601
|
+
"node": ">=0.6"
|
|
1602
|
+
}
|
|
1603
|
+
},
|
|
1604
|
+
"node_modules/tsx": {
|
|
1605
|
+
"version": "4.21.0",
|
|
1606
|
+
"resolved": "https://registry.npmmirror.com/tsx/-/tsx-4.21.0.tgz",
|
|
1607
|
+
"integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==",
|
|
1608
|
+
"dev": true,
|
|
1609
|
+
"license": "MIT",
|
|
1610
|
+
"dependencies": {
|
|
1611
|
+
"esbuild": "~0.27.0",
|
|
1612
|
+
"get-tsconfig": "^4.7.5"
|
|
1613
|
+
},
|
|
1614
|
+
"bin": {
|
|
1615
|
+
"tsx": "dist/cli.mjs"
|
|
1616
|
+
},
|
|
1617
|
+
"engines": {
|
|
1618
|
+
"node": ">=18.0.0"
|
|
1619
|
+
},
|
|
1620
|
+
"optionalDependencies": {
|
|
1621
|
+
"fsevents": "~2.3.3"
|
|
1622
|
+
}
|
|
1623
|
+
},
|
|
1624
|
+
"node_modules/type-is": {
|
|
1625
|
+
"version": "2.0.1",
|
|
1626
|
+
"resolved": "https://registry.npmmirror.com/type-is/-/type-is-2.0.1.tgz",
|
|
1627
|
+
"integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
|
|
1628
|
+
"license": "MIT",
|
|
1629
|
+
"dependencies": {
|
|
1630
|
+
"content-type": "^1.0.5",
|
|
1631
|
+
"media-typer": "^1.1.0",
|
|
1632
|
+
"mime-types": "^3.0.0"
|
|
1633
|
+
},
|
|
1634
|
+
"engines": {
|
|
1635
|
+
"node": ">= 0.6"
|
|
1636
|
+
}
|
|
1637
|
+
},
|
|
1638
|
+
"node_modules/typescript": {
|
|
1639
|
+
"version": "5.9.3",
|
|
1640
|
+
"resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.9.3.tgz",
|
|
1641
|
+
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
1642
|
+
"dev": true,
|
|
1643
|
+
"license": "Apache-2.0",
|
|
1644
|
+
"bin": {
|
|
1645
|
+
"tsc": "bin/tsc",
|
|
1646
|
+
"tsserver": "bin/tsserver"
|
|
1647
|
+
},
|
|
1648
|
+
"engines": {
|
|
1649
|
+
"node": ">=14.17"
|
|
1650
|
+
}
|
|
1651
|
+
},
|
|
1652
|
+
"node_modules/undici-types": {
|
|
1653
|
+
"version": "7.18.2",
|
|
1654
|
+
"resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-7.18.2.tgz",
|
|
1655
|
+
"integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
|
|
1656
|
+
"dev": true,
|
|
1657
|
+
"license": "MIT"
|
|
1658
|
+
},
|
|
1659
|
+
"node_modules/unpipe": {
|
|
1660
|
+
"version": "1.0.0",
|
|
1661
|
+
"resolved": "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz",
|
|
1662
|
+
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
|
|
1663
|
+
"license": "MIT",
|
|
1664
|
+
"engines": {
|
|
1665
|
+
"node": ">= 0.8"
|
|
1666
|
+
}
|
|
1667
|
+
},
|
|
1668
|
+
"node_modules/vary": {
|
|
1669
|
+
"version": "1.1.2",
|
|
1670
|
+
"resolved": "https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz",
|
|
1671
|
+
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
|
|
1672
|
+
"license": "MIT",
|
|
1673
|
+
"engines": {
|
|
1674
|
+
"node": ">= 0.8"
|
|
1675
|
+
}
|
|
1676
|
+
},
|
|
1677
|
+
"node_modules/which": {
|
|
1678
|
+
"version": "2.0.2",
|
|
1679
|
+
"resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz",
|
|
1680
|
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
1681
|
+
"license": "ISC",
|
|
1682
|
+
"dependencies": {
|
|
1683
|
+
"isexe": "^2.0.0"
|
|
1684
|
+
},
|
|
1685
|
+
"bin": {
|
|
1686
|
+
"node-which": "bin/node-which"
|
|
1687
|
+
},
|
|
1688
|
+
"engines": {
|
|
1689
|
+
"node": ">= 8"
|
|
1690
|
+
}
|
|
1691
|
+
},
|
|
1692
|
+
"node_modules/wrappy": {
|
|
1693
|
+
"version": "1.0.2",
|
|
1694
|
+
"resolved": "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz",
|
|
1695
|
+
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
|
|
1696
|
+
"license": "ISC"
|
|
1697
|
+
},
|
|
1698
|
+
"node_modules/zod": {
|
|
1699
|
+
"version": "3.25.76",
|
|
1700
|
+
"resolved": "https://registry.npmmirror.com/zod/-/zod-3.25.76.tgz",
|
|
1701
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
1702
|
+
"license": "MIT",
|
|
1703
|
+
"funding": {
|
|
1704
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
1705
|
+
}
|
|
1706
|
+
},
|
|
1707
|
+
"node_modules/zod-to-json-schema": {
|
|
1708
|
+
"version": "3.25.1",
|
|
1709
|
+
"resolved": "https://registry.npmmirror.com/zod-to-json-schema/-/zod-to-json-schema-3.25.1.tgz",
|
|
1710
|
+
"integrity": "sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==",
|
|
1711
|
+
"license": "ISC",
|
|
1712
|
+
"peerDependencies": {
|
|
1713
|
+
"zod": "^3.25 || ^4"
|
|
1714
|
+
}
|
|
1715
|
+
}
|
|
1716
|
+
}
|
|
1717
|
+
}
|