@mcp-shark/mcp-shark 1.4.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/LICENSE +85 -0
- package/README.md +724 -0
- package/bin/mcp-shark.js +93 -0
- package/mcp-server/.editorconfig +15 -0
- package/mcp-server/.prettierignore +11 -0
- package/mcp-server/.prettierrc +12 -0
- package/mcp-server/README.md +280 -0
- package/mcp-server/commitlint.config.cjs +42 -0
- package/mcp-server/eslint.config.js +131 -0
- package/mcp-server/lib/auditor/audit.js +228 -0
- package/mcp-server/lib/common/error.js +15 -0
- package/mcp-server/lib/server/external/all.js +32 -0
- package/mcp-server/lib/server/external/config.js +59 -0
- package/mcp-server/lib/server/external/kv.js +102 -0
- package/mcp-server/lib/server/external/single/client.js +35 -0
- package/mcp-server/lib/server/external/single/request.js +49 -0
- package/mcp-server/lib/server/external/single/run.js +75 -0
- package/mcp-server/lib/server/external/single/transport.js +57 -0
- package/mcp-server/lib/server/internal/handlers/common.js +20 -0
- package/mcp-server/lib/server/internal/handlers/error.js +7 -0
- package/mcp-server/lib/server/internal/handlers/prompts-get.js +22 -0
- package/mcp-server/lib/server/internal/handlers/prompts-list.js +12 -0
- package/mcp-server/lib/server/internal/handlers/resources-list.js +12 -0
- package/mcp-server/lib/server/internal/handlers/resources-read.js +19 -0
- package/mcp-server/lib/server/internal/handlers/tools-call.js +37 -0
- package/mcp-server/lib/server/internal/handlers/tools-list.js +14 -0
- package/mcp-server/lib/server/internal/run.js +49 -0
- package/mcp-server/lib/server/internal/server.js +63 -0
- package/mcp-server/lib/server/internal/session.js +39 -0
- package/mcp-server/mcp-shark.js +72 -0
- package/mcp-server/package-lock.json +4784 -0
- package/mcp-server/package.json +30 -0
- package/package.json +103 -0
- package/ui/README.md +212 -0
- package/ui/index.html +16 -0
- package/ui/package-lock.json +3574 -0
- package/ui/package.json +12 -0
- package/ui/paths.js +282 -0
- package/ui/public/og-image.png +0 -0
- package/ui/server/routes/backups.js +251 -0
- package/ui/server/routes/composite.js +244 -0
- package/ui/server/routes/config.js +175 -0
- package/ui/server/routes/conversations.js +25 -0
- package/ui/server/routes/help.js +43 -0
- package/ui/server/routes/logs.js +32 -0
- package/ui/server/routes/playground.js +152 -0
- package/ui/server/routes/requests.js +235 -0
- package/ui/server/routes/sessions.js +27 -0
- package/ui/server/routes/smartscan/discover.js +117 -0
- package/ui/server/routes/smartscan/scans/clearCache.js +22 -0
- package/ui/server/routes/smartscan/scans/createBatchScans.js +123 -0
- package/ui/server/routes/smartscan/scans/createScan.js +42 -0
- package/ui/server/routes/smartscan/scans/getCachedResults.js +51 -0
- package/ui/server/routes/smartscan/scans/getScan.js +41 -0
- package/ui/server/routes/smartscan/scans/listScans.js +24 -0
- package/ui/server/routes/smartscan/scans.js +13 -0
- package/ui/server/routes/smartscan/token.js +56 -0
- package/ui/server/routes/smartscan/transport.js +53 -0
- package/ui/server/routes/smartscan.js +24 -0
- package/ui/server/routes/statistics.js +83 -0
- package/ui/server/utils/config-update.js +212 -0
- package/ui/server/utils/config.js +98 -0
- package/ui/server/utils/paths.js +23 -0
- package/ui/server/utils/port.js +28 -0
- package/ui/server/utils/process.js +80 -0
- package/ui/server/utils/scan-cache/all-results.js +180 -0
- package/ui/server/utils/scan-cache/directory.js +35 -0
- package/ui/server/utils/scan-cache/file-operations.js +104 -0
- package/ui/server/utils/scan-cache/hash.js +47 -0
- package/ui/server/utils/scan-cache/server-operations.js +80 -0
- package/ui/server/utils/scan-cache.js +12 -0
- package/ui/server/utils/serialization.js +13 -0
- package/ui/server/utils/smartscan-token.js +42 -0
- package/ui/server.js +199 -0
- package/ui/src/App.jsx +153 -0
- package/ui/src/CompositeLogs.jsx +164 -0
- package/ui/src/CompositeSetup.jsx +285 -0
- package/ui/src/HelpGuide/HelpGuideContent.jsx +118 -0
- package/ui/src/HelpGuide/HelpGuideFooter.jsx +58 -0
- package/ui/src/HelpGuide/HelpGuideHeader.jsx +56 -0
- package/ui/src/HelpGuide.jsx +65 -0
- package/ui/src/IntroTour.jsx +140 -0
- package/ui/src/LogDetail.jsx +122 -0
- package/ui/src/LogTable.jsx +242 -0
- package/ui/src/PacketDetail.jsx +190 -0
- package/ui/src/PacketFilters.jsx +222 -0
- package/ui/src/PacketList.jsx +183 -0
- package/ui/src/SmartScan.jsx +178 -0
- package/ui/src/TabNavigation.jsx +143 -0
- package/ui/src/components/App/HelpButton.jsx +64 -0
- package/ui/src/components/App/TrafficTab.jsx +69 -0
- package/ui/src/components/App/useAppState.js +163 -0
- package/ui/src/components/BackupList.jsx +192 -0
- package/ui/src/components/CollapsibleSection.jsx +82 -0
- package/ui/src/components/ConfigFileSection.jsx +84 -0
- package/ui/src/components/ConfigViewerModal.jsx +141 -0
- package/ui/src/components/ConfirmationModal.jsx +129 -0
- package/ui/src/components/DetailsTab/BodySection.jsx +27 -0
- package/ui/src/components/DetailsTab/CollapsibleRequestResponse.jsx +70 -0
- package/ui/src/components/DetailsTab/HeadersSection.jsx +25 -0
- package/ui/src/components/DetailsTab/InfoSection.jsx +28 -0
- package/ui/src/components/DetailsTab/NetworkInfoSection.jsx +63 -0
- package/ui/src/components/DetailsTab/ProtocolInfoSection.jsx +75 -0
- package/ui/src/components/DetailsTab/RequestDetailsSection.jsx +46 -0
- package/ui/src/components/DetailsTab/ResponseDetailsSection.jsx +66 -0
- package/ui/src/components/DetailsTab.jsx +31 -0
- package/ui/src/components/DetectedPathsList.jsx +171 -0
- package/ui/src/components/FileInput.jsx +144 -0
- package/ui/src/components/GroupHeader.jsx +76 -0
- package/ui/src/components/GroupedByMcpView.jsx +103 -0
- package/ui/src/components/GroupedByServerView.jsx +134 -0
- package/ui/src/components/GroupedBySessionView.jsx +127 -0
- package/ui/src/components/GroupedViews.jsx +2 -0
- package/ui/src/components/HexTab.jsx +188 -0
- package/ui/src/components/LogsDisplay.jsx +93 -0
- package/ui/src/components/LogsToolbar.jsx +193 -0
- package/ui/src/components/McpPlayground/LoadingModal.jsx +113 -0
- package/ui/src/components/McpPlayground/PromptsSection/PromptCallPanel.jsx +125 -0
- package/ui/src/components/McpPlayground/PromptsSection/PromptItem.jsx +48 -0
- package/ui/src/components/McpPlayground/PromptsSection/PromptsList.jsx +45 -0
- package/ui/src/components/McpPlayground/PromptsSection.jsx +106 -0
- package/ui/src/components/McpPlayground/ResourcesSection/ResourceCallPanel.jsx +89 -0
- package/ui/src/components/McpPlayground/ResourcesSection/ResourceItem.jsx +59 -0
- package/ui/src/components/McpPlayground/ResourcesSection/ResourcesList.jsx +45 -0
- package/ui/src/components/McpPlayground/ResourcesSection.jsx +91 -0
- package/ui/src/components/McpPlayground/ToolsSection/ToolCallPanel.jsx +125 -0
- package/ui/src/components/McpPlayground/ToolsSection/ToolItem.jsx +48 -0
- package/ui/src/components/McpPlayground/ToolsSection/ToolsList.jsx +45 -0
- package/ui/src/components/McpPlayground/ToolsSection.jsx +107 -0
- package/ui/src/components/McpPlayground/common/EmptyState.jsx +17 -0
- package/ui/src/components/McpPlayground/common/ErrorState.jsx +17 -0
- package/ui/src/components/McpPlayground/common/LoadingState.jsx +17 -0
- package/ui/src/components/McpPlayground/useMcpPlayground.js +280 -0
- package/ui/src/components/McpPlayground.jsx +171 -0
- package/ui/src/components/MessageDisplay.jsx +28 -0
- package/ui/src/components/PacketDetailHeader.jsx +88 -0
- package/ui/src/components/PacketFilters/ExportControls.jsx +126 -0
- package/ui/src/components/PacketFilters/FilterInput.jsx +59 -0
- package/ui/src/components/RawTab.jsx +142 -0
- package/ui/src/components/RequestRow/OrphanedResponseRow.jsx +155 -0
- package/ui/src/components/RequestRow/RequestRowMain.jsx +240 -0
- package/ui/src/components/RequestRow/ResponseRow.jsx +158 -0
- package/ui/src/components/RequestRow.jsx +70 -0
- package/ui/src/components/ServerControl.jsx +133 -0
- package/ui/src/components/ServiceSelector.jsx +209 -0
- package/ui/src/components/SetupHeader.jsx +30 -0
- package/ui/src/components/SharkLogo.jsx +21 -0
- package/ui/src/components/SmartScan/AnalysisResult.jsx +64 -0
- package/ui/src/components/SmartScan/BatchResultsDisplay/BatchResultItem.jsx +215 -0
- package/ui/src/components/SmartScan/BatchResultsDisplay/BatchResultsHeader.jsx +94 -0
- package/ui/src/components/SmartScan/BatchResultsDisplay.jsx +26 -0
- package/ui/src/components/SmartScan/DebugInfoSection.jsx +53 -0
- package/ui/src/components/SmartScan/EmptyState.jsx +57 -0
- package/ui/src/components/SmartScan/ErrorDisplay.jsx +48 -0
- package/ui/src/components/SmartScan/ExpandableSection.jsx +93 -0
- package/ui/src/components/SmartScan/FindingsTable.jsx +257 -0
- package/ui/src/components/SmartScan/ListViewContent.jsx +75 -0
- package/ui/src/components/SmartScan/NotablePatternsSection.jsx +75 -0
- package/ui/src/components/SmartScan/OverallSummarySection.jsx +72 -0
- package/ui/src/components/SmartScan/RawDataSection.jsx +52 -0
- package/ui/src/components/SmartScan/RecommendationsSection.jsx +78 -0
- package/ui/src/components/SmartScan/ScanDetailHeader.jsx +92 -0
- package/ui/src/components/SmartScan/ScanDetailView.jsx +141 -0
- package/ui/src/components/SmartScan/ScanListView/ScanListHeader.jsx +49 -0
- package/ui/src/components/SmartScan/ScanListView/ScanListItem.jsx +201 -0
- package/ui/src/components/SmartScan/ScanListView.jsx +73 -0
- package/ui/src/components/SmartScan/ScanOverviewSection.jsx +123 -0
- package/ui/src/components/SmartScan/ScanResultsDisplay.jsx +35 -0
- package/ui/src/components/SmartScan/ScanViewContent.jsx +68 -0
- package/ui/src/components/SmartScan/ScanningProgress.jsx +47 -0
- package/ui/src/components/SmartScan/ServerInfoSection.jsx +43 -0
- package/ui/src/components/SmartScan/ServerSelectionRow.jsx +207 -0
- package/ui/src/components/SmartScan/SingleResultDisplay.jsx +269 -0
- package/ui/src/components/SmartScan/SmartScanControls.jsx +290 -0
- package/ui/src/components/SmartScan/SmartScanHeader.jsx +77 -0
- package/ui/src/components/SmartScan/ViewModeTabs.jsx +57 -0
- package/ui/src/components/SmartScan/hooks/useCacheManagement.js +34 -0
- package/ui/src/components/SmartScan/hooks/useMcpDiscovery.js +121 -0
- package/ui/src/components/SmartScan/hooks/useScanList.js +193 -0
- package/ui/src/components/SmartScan/hooks/useScanOperations.js +87 -0
- package/ui/src/components/SmartScan/hooks/useServerStatus.js +26 -0
- package/ui/src/components/SmartScan/hooks/useTokenManagement.js +53 -0
- package/ui/src/components/SmartScan/scanDataUtils.js +98 -0
- package/ui/src/components/SmartScan/useSmartScan.js +72 -0
- package/ui/src/components/SmartScan/utils.js +19 -0
- package/ui/src/components/SmartScanIcons.jsx +58 -0
- package/ui/src/components/TabNavigation/DesktopTabs.jsx +111 -0
- package/ui/src/components/TabNavigation/MobileDropdown.jsx +140 -0
- package/ui/src/components/TabNavigation.jsx +97 -0
- package/ui/src/components/TabNavigationIcons.jsx +40 -0
- package/ui/src/components/TableHeader.jsx +164 -0
- package/ui/src/components/TourOverlay.jsx +117 -0
- package/ui/src/components/TourTooltip/TourTooltipButtons.jsx +117 -0
- package/ui/src/components/TourTooltip/TourTooltipHeader.jsx +70 -0
- package/ui/src/components/TourTooltip/TourTooltipIcons.jsx +45 -0
- package/ui/src/components/TourTooltip/useTooltipPosition.js +108 -0
- package/ui/src/components/TourTooltip.jsx +83 -0
- package/ui/src/components/ViewModeTabs.jsx +91 -0
- package/ui/src/components/WhatThisDoesSection.jsx +61 -0
- package/ui/src/config/tourSteps.jsx +141 -0
- package/ui/src/hooks/useAnimation.js +92 -0
- package/ui/src/hooks/useConfigManagement.js +124 -0
- package/ui/src/hooks/useServiceExtraction.js +51 -0
- package/ui/src/index.css +42 -0
- package/ui/src/main.jsx +10 -0
- package/ui/src/theme.js +65 -0
- package/ui/src/utils/animations.js +170 -0
- package/ui/src/utils/groupingUtils.js +93 -0
- package/ui/src/utils/hexUtils.js +24 -0
- package/ui/src/utils/mcpGroupingUtils.js +262 -0
- package/ui/src/utils/requestUtils.js +297 -0
- package/ui/vite.config.js +18 -0
|
@@ -0,0 +1,3574 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mcp-shark-ui",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "mcp-shark-ui",
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@modelcontextprotocol/sdk": "^1.20.2",
|
|
12
|
+
"@tabler/icons-react": "^3.0.0",
|
|
13
|
+
"animejs": "^3.2.2",
|
|
14
|
+
"express": "^4.18.2",
|
|
15
|
+
"mcp-shark-common": "github:mcp-shark/mcp-shark-common",
|
|
16
|
+
"react": "^18.2.0",
|
|
17
|
+
"react-dom": "^18.2.0",
|
|
18
|
+
"ws": "^8.16.0"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
22
|
+
"vite": "^5.1.0"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"../../cli": {
|
|
26
|
+
"name": "@mcp-shark/cli",
|
|
27
|
+
"version": "1.0.5",
|
|
28
|
+
"extraneous": true,
|
|
29
|
+
"hasInstallScript": true,
|
|
30
|
+
"license": "ISC",
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@modelcontextprotocol/sdk": "^1.20.2",
|
|
33
|
+
"axios": "^1.13.1",
|
|
34
|
+
"cli-boxes": "^3.0.0",
|
|
35
|
+
"commander": "^14.0.2",
|
|
36
|
+
"consola": "^3.4.2",
|
|
37
|
+
"save": "^2.9.0"
|
|
38
|
+
},
|
|
39
|
+
"bin": {
|
|
40
|
+
"cli": "cli.js",
|
|
41
|
+
"mcp-shark-cli": "cli.js"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@commitlint/cli": "^19.5.0",
|
|
45
|
+
"@commitlint/config-conventional": "^19.5.0",
|
|
46
|
+
"@eslint/js": "^9.15.0",
|
|
47
|
+
"eslint": "^9.15.0",
|
|
48
|
+
"eslint-config-prettier": "^9.1.0",
|
|
49
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
50
|
+
"husky": "^9.1.6",
|
|
51
|
+
"lint-staged": "^15.2.10",
|
|
52
|
+
"prettier": "^3.3.3"
|
|
53
|
+
},
|
|
54
|
+
"engines": {
|
|
55
|
+
"node": ">=18.0.0"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"node_modules/@babel/code-frame": {
|
|
59
|
+
"version": "7.27.1",
|
|
60
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
|
|
61
|
+
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
|
|
62
|
+
"dev": true,
|
|
63
|
+
"license": "MIT",
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"@babel/helper-validator-identifier": "^7.27.1",
|
|
66
|
+
"js-tokens": "^4.0.0",
|
|
67
|
+
"picocolors": "^1.1.1"
|
|
68
|
+
},
|
|
69
|
+
"engines": {
|
|
70
|
+
"node": ">=6.9.0"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"node_modules/@babel/compat-data": {
|
|
74
|
+
"version": "7.28.5",
|
|
75
|
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz",
|
|
76
|
+
"integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==",
|
|
77
|
+
"dev": true,
|
|
78
|
+
"license": "MIT",
|
|
79
|
+
"engines": {
|
|
80
|
+
"node": ">=6.9.0"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"node_modules/@babel/core": {
|
|
84
|
+
"version": "7.28.5",
|
|
85
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz",
|
|
86
|
+
"integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==",
|
|
87
|
+
"dev": true,
|
|
88
|
+
"license": "MIT",
|
|
89
|
+
"dependencies": {
|
|
90
|
+
"@babel/code-frame": "^7.27.1",
|
|
91
|
+
"@babel/generator": "^7.28.5",
|
|
92
|
+
"@babel/helper-compilation-targets": "^7.27.2",
|
|
93
|
+
"@babel/helper-module-transforms": "^7.28.3",
|
|
94
|
+
"@babel/helpers": "^7.28.4",
|
|
95
|
+
"@babel/parser": "^7.28.5",
|
|
96
|
+
"@babel/template": "^7.27.2",
|
|
97
|
+
"@babel/traverse": "^7.28.5",
|
|
98
|
+
"@babel/types": "^7.28.5",
|
|
99
|
+
"@jridgewell/remapping": "^2.3.5",
|
|
100
|
+
"convert-source-map": "^2.0.0",
|
|
101
|
+
"debug": "^4.1.0",
|
|
102
|
+
"gensync": "^1.0.0-beta.2",
|
|
103
|
+
"json5": "^2.2.3",
|
|
104
|
+
"semver": "^6.3.1"
|
|
105
|
+
},
|
|
106
|
+
"engines": {
|
|
107
|
+
"node": ">=6.9.0"
|
|
108
|
+
},
|
|
109
|
+
"funding": {
|
|
110
|
+
"type": "opencollective",
|
|
111
|
+
"url": "https://opencollective.com/babel"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"node_modules/@babel/generator": {
|
|
115
|
+
"version": "7.28.5",
|
|
116
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz",
|
|
117
|
+
"integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==",
|
|
118
|
+
"dev": true,
|
|
119
|
+
"license": "MIT",
|
|
120
|
+
"dependencies": {
|
|
121
|
+
"@babel/parser": "^7.28.5",
|
|
122
|
+
"@babel/types": "^7.28.5",
|
|
123
|
+
"@jridgewell/gen-mapping": "^0.3.12",
|
|
124
|
+
"@jridgewell/trace-mapping": "^0.3.28",
|
|
125
|
+
"jsesc": "^3.0.2"
|
|
126
|
+
},
|
|
127
|
+
"engines": {
|
|
128
|
+
"node": ">=6.9.0"
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"node_modules/@babel/helper-compilation-targets": {
|
|
132
|
+
"version": "7.27.2",
|
|
133
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
|
|
134
|
+
"integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
|
|
135
|
+
"dev": true,
|
|
136
|
+
"license": "MIT",
|
|
137
|
+
"dependencies": {
|
|
138
|
+
"@babel/compat-data": "^7.27.2",
|
|
139
|
+
"@babel/helper-validator-option": "^7.27.1",
|
|
140
|
+
"browserslist": "^4.24.0",
|
|
141
|
+
"lru-cache": "^5.1.1",
|
|
142
|
+
"semver": "^6.3.1"
|
|
143
|
+
},
|
|
144
|
+
"engines": {
|
|
145
|
+
"node": ">=6.9.0"
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
"node_modules/@babel/helper-globals": {
|
|
149
|
+
"version": "7.28.0",
|
|
150
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
|
|
151
|
+
"integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
|
|
152
|
+
"dev": true,
|
|
153
|
+
"license": "MIT",
|
|
154
|
+
"engines": {
|
|
155
|
+
"node": ">=6.9.0"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"node_modules/@babel/helper-module-imports": {
|
|
159
|
+
"version": "7.27.1",
|
|
160
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
|
|
161
|
+
"integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
|
|
162
|
+
"dev": true,
|
|
163
|
+
"license": "MIT",
|
|
164
|
+
"dependencies": {
|
|
165
|
+
"@babel/traverse": "^7.27.1",
|
|
166
|
+
"@babel/types": "^7.27.1"
|
|
167
|
+
},
|
|
168
|
+
"engines": {
|
|
169
|
+
"node": ">=6.9.0"
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
"node_modules/@babel/helper-module-transforms": {
|
|
173
|
+
"version": "7.28.3",
|
|
174
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz",
|
|
175
|
+
"integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==",
|
|
176
|
+
"dev": true,
|
|
177
|
+
"license": "MIT",
|
|
178
|
+
"dependencies": {
|
|
179
|
+
"@babel/helper-module-imports": "^7.27.1",
|
|
180
|
+
"@babel/helper-validator-identifier": "^7.27.1",
|
|
181
|
+
"@babel/traverse": "^7.28.3"
|
|
182
|
+
},
|
|
183
|
+
"engines": {
|
|
184
|
+
"node": ">=6.9.0"
|
|
185
|
+
},
|
|
186
|
+
"peerDependencies": {
|
|
187
|
+
"@babel/core": "^7.0.0"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"node_modules/@babel/helper-plugin-utils": {
|
|
191
|
+
"version": "7.27.1",
|
|
192
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
|
|
193
|
+
"integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
|
|
194
|
+
"dev": true,
|
|
195
|
+
"license": "MIT",
|
|
196
|
+
"engines": {
|
|
197
|
+
"node": ">=6.9.0"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"node_modules/@babel/helper-string-parser": {
|
|
201
|
+
"version": "7.27.1",
|
|
202
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
|
|
203
|
+
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
|
|
204
|
+
"dev": true,
|
|
205
|
+
"license": "MIT",
|
|
206
|
+
"engines": {
|
|
207
|
+
"node": ">=6.9.0"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"node_modules/@babel/helper-validator-identifier": {
|
|
211
|
+
"version": "7.28.5",
|
|
212
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
|
|
213
|
+
"integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
|
|
214
|
+
"dev": true,
|
|
215
|
+
"license": "MIT",
|
|
216
|
+
"engines": {
|
|
217
|
+
"node": ">=6.9.0"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"node_modules/@babel/helper-validator-option": {
|
|
221
|
+
"version": "7.27.1",
|
|
222
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
|
|
223
|
+
"integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
|
|
224
|
+
"dev": true,
|
|
225
|
+
"license": "MIT",
|
|
226
|
+
"engines": {
|
|
227
|
+
"node": ">=6.9.0"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"node_modules/@babel/helpers": {
|
|
231
|
+
"version": "7.28.4",
|
|
232
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz",
|
|
233
|
+
"integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==",
|
|
234
|
+
"dev": true,
|
|
235
|
+
"license": "MIT",
|
|
236
|
+
"dependencies": {
|
|
237
|
+
"@babel/template": "^7.27.2",
|
|
238
|
+
"@babel/types": "^7.28.4"
|
|
239
|
+
},
|
|
240
|
+
"engines": {
|
|
241
|
+
"node": ">=6.9.0"
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
"node_modules/@babel/parser": {
|
|
245
|
+
"version": "7.28.5",
|
|
246
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz",
|
|
247
|
+
"integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==",
|
|
248
|
+
"dev": true,
|
|
249
|
+
"license": "MIT",
|
|
250
|
+
"dependencies": {
|
|
251
|
+
"@babel/types": "^7.28.5"
|
|
252
|
+
},
|
|
253
|
+
"bin": {
|
|
254
|
+
"parser": "bin/babel-parser.js"
|
|
255
|
+
},
|
|
256
|
+
"engines": {
|
|
257
|
+
"node": ">=6.0.0"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
"node_modules/@babel/plugin-transform-react-jsx-self": {
|
|
261
|
+
"version": "7.27.1",
|
|
262
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
|
|
263
|
+
"integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
|
|
264
|
+
"dev": true,
|
|
265
|
+
"license": "MIT",
|
|
266
|
+
"dependencies": {
|
|
267
|
+
"@babel/helper-plugin-utils": "^7.27.1"
|
|
268
|
+
},
|
|
269
|
+
"engines": {
|
|
270
|
+
"node": ">=6.9.0"
|
|
271
|
+
},
|
|
272
|
+
"peerDependencies": {
|
|
273
|
+
"@babel/core": "^7.0.0-0"
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
"node_modules/@babel/plugin-transform-react-jsx-source": {
|
|
277
|
+
"version": "7.27.1",
|
|
278
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
|
|
279
|
+
"integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
|
|
280
|
+
"dev": true,
|
|
281
|
+
"license": "MIT",
|
|
282
|
+
"dependencies": {
|
|
283
|
+
"@babel/helper-plugin-utils": "^7.27.1"
|
|
284
|
+
},
|
|
285
|
+
"engines": {
|
|
286
|
+
"node": ">=6.9.0"
|
|
287
|
+
},
|
|
288
|
+
"peerDependencies": {
|
|
289
|
+
"@babel/core": "^7.0.0-0"
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
"node_modules/@babel/template": {
|
|
293
|
+
"version": "7.27.2",
|
|
294
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
|
|
295
|
+
"integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
|
|
296
|
+
"dev": true,
|
|
297
|
+
"license": "MIT",
|
|
298
|
+
"dependencies": {
|
|
299
|
+
"@babel/code-frame": "^7.27.1",
|
|
300
|
+
"@babel/parser": "^7.27.2",
|
|
301
|
+
"@babel/types": "^7.27.1"
|
|
302
|
+
},
|
|
303
|
+
"engines": {
|
|
304
|
+
"node": ">=6.9.0"
|
|
305
|
+
}
|
|
306
|
+
},
|
|
307
|
+
"node_modules/@babel/traverse": {
|
|
308
|
+
"version": "7.28.5",
|
|
309
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz",
|
|
310
|
+
"integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==",
|
|
311
|
+
"dev": true,
|
|
312
|
+
"license": "MIT",
|
|
313
|
+
"dependencies": {
|
|
314
|
+
"@babel/code-frame": "^7.27.1",
|
|
315
|
+
"@babel/generator": "^7.28.5",
|
|
316
|
+
"@babel/helper-globals": "^7.28.0",
|
|
317
|
+
"@babel/parser": "^7.28.5",
|
|
318
|
+
"@babel/template": "^7.27.2",
|
|
319
|
+
"@babel/types": "^7.28.5",
|
|
320
|
+
"debug": "^4.3.1"
|
|
321
|
+
},
|
|
322
|
+
"engines": {
|
|
323
|
+
"node": ">=6.9.0"
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
"node_modules/@babel/types": {
|
|
327
|
+
"version": "7.28.5",
|
|
328
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz",
|
|
329
|
+
"integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==",
|
|
330
|
+
"dev": true,
|
|
331
|
+
"license": "MIT",
|
|
332
|
+
"dependencies": {
|
|
333
|
+
"@babel/helper-string-parser": "^7.27.1",
|
|
334
|
+
"@babel/helper-validator-identifier": "^7.28.5"
|
|
335
|
+
},
|
|
336
|
+
"engines": {
|
|
337
|
+
"node": ">=6.9.0"
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
"node_modules/@esbuild/aix-ppc64": {
|
|
341
|
+
"version": "0.21.5",
|
|
342
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
|
|
343
|
+
"integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
|
|
344
|
+
"cpu": [
|
|
345
|
+
"ppc64"
|
|
346
|
+
],
|
|
347
|
+
"dev": true,
|
|
348
|
+
"license": "MIT",
|
|
349
|
+
"optional": true,
|
|
350
|
+
"os": [
|
|
351
|
+
"aix"
|
|
352
|
+
],
|
|
353
|
+
"engines": {
|
|
354
|
+
"node": ">=12"
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
"node_modules/@esbuild/android-arm": {
|
|
358
|
+
"version": "0.21.5",
|
|
359
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
|
|
360
|
+
"integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
|
|
361
|
+
"cpu": [
|
|
362
|
+
"arm"
|
|
363
|
+
],
|
|
364
|
+
"dev": true,
|
|
365
|
+
"license": "MIT",
|
|
366
|
+
"optional": true,
|
|
367
|
+
"os": [
|
|
368
|
+
"android"
|
|
369
|
+
],
|
|
370
|
+
"engines": {
|
|
371
|
+
"node": ">=12"
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
"node_modules/@esbuild/android-arm64": {
|
|
375
|
+
"version": "0.21.5",
|
|
376
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
|
|
377
|
+
"integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
|
|
378
|
+
"cpu": [
|
|
379
|
+
"arm64"
|
|
380
|
+
],
|
|
381
|
+
"dev": true,
|
|
382
|
+
"license": "MIT",
|
|
383
|
+
"optional": true,
|
|
384
|
+
"os": [
|
|
385
|
+
"android"
|
|
386
|
+
],
|
|
387
|
+
"engines": {
|
|
388
|
+
"node": ">=12"
|
|
389
|
+
}
|
|
390
|
+
},
|
|
391
|
+
"node_modules/@esbuild/android-x64": {
|
|
392
|
+
"version": "0.21.5",
|
|
393
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
|
|
394
|
+
"integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
|
|
395
|
+
"cpu": [
|
|
396
|
+
"x64"
|
|
397
|
+
],
|
|
398
|
+
"dev": true,
|
|
399
|
+
"license": "MIT",
|
|
400
|
+
"optional": true,
|
|
401
|
+
"os": [
|
|
402
|
+
"android"
|
|
403
|
+
],
|
|
404
|
+
"engines": {
|
|
405
|
+
"node": ">=12"
|
|
406
|
+
}
|
|
407
|
+
},
|
|
408
|
+
"node_modules/@esbuild/darwin-arm64": {
|
|
409
|
+
"version": "0.21.5",
|
|
410
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
|
|
411
|
+
"integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
|
|
412
|
+
"cpu": [
|
|
413
|
+
"arm64"
|
|
414
|
+
],
|
|
415
|
+
"dev": true,
|
|
416
|
+
"license": "MIT",
|
|
417
|
+
"optional": true,
|
|
418
|
+
"os": [
|
|
419
|
+
"darwin"
|
|
420
|
+
],
|
|
421
|
+
"engines": {
|
|
422
|
+
"node": ">=12"
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
"node_modules/@esbuild/darwin-x64": {
|
|
426
|
+
"version": "0.21.5",
|
|
427
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
|
|
428
|
+
"integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
|
|
429
|
+
"cpu": [
|
|
430
|
+
"x64"
|
|
431
|
+
],
|
|
432
|
+
"dev": true,
|
|
433
|
+
"license": "MIT",
|
|
434
|
+
"optional": true,
|
|
435
|
+
"os": [
|
|
436
|
+
"darwin"
|
|
437
|
+
],
|
|
438
|
+
"engines": {
|
|
439
|
+
"node": ">=12"
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
"node_modules/@esbuild/freebsd-arm64": {
|
|
443
|
+
"version": "0.21.5",
|
|
444
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
|
|
445
|
+
"integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
|
|
446
|
+
"cpu": [
|
|
447
|
+
"arm64"
|
|
448
|
+
],
|
|
449
|
+
"dev": true,
|
|
450
|
+
"license": "MIT",
|
|
451
|
+
"optional": true,
|
|
452
|
+
"os": [
|
|
453
|
+
"freebsd"
|
|
454
|
+
],
|
|
455
|
+
"engines": {
|
|
456
|
+
"node": ">=12"
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
"node_modules/@esbuild/freebsd-x64": {
|
|
460
|
+
"version": "0.21.5",
|
|
461
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
|
|
462
|
+
"integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
|
|
463
|
+
"cpu": [
|
|
464
|
+
"x64"
|
|
465
|
+
],
|
|
466
|
+
"dev": true,
|
|
467
|
+
"license": "MIT",
|
|
468
|
+
"optional": true,
|
|
469
|
+
"os": [
|
|
470
|
+
"freebsd"
|
|
471
|
+
],
|
|
472
|
+
"engines": {
|
|
473
|
+
"node": ">=12"
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
"node_modules/@esbuild/linux-arm": {
|
|
477
|
+
"version": "0.21.5",
|
|
478
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
|
|
479
|
+
"integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
|
|
480
|
+
"cpu": [
|
|
481
|
+
"arm"
|
|
482
|
+
],
|
|
483
|
+
"dev": true,
|
|
484
|
+
"license": "MIT",
|
|
485
|
+
"optional": true,
|
|
486
|
+
"os": [
|
|
487
|
+
"linux"
|
|
488
|
+
],
|
|
489
|
+
"engines": {
|
|
490
|
+
"node": ">=12"
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
"node_modules/@esbuild/linux-arm64": {
|
|
494
|
+
"version": "0.21.5",
|
|
495
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
|
|
496
|
+
"integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
|
|
497
|
+
"cpu": [
|
|
498
|
+
"arm64"
|
|
499
|
+
],
|
|
500
|
+
"dev": true,
|
|
501
|
+
"license": "MIT",
|
|
502
|
+
"optional": true,
|
|
503
|
+
"os": [
|
|
504
|
+
"linux"
|
|
505
|
+
],
|
|
506
|
+
"engines": {
|
|
507
|
+
"node": ">=12"
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
"node_modules/@esbuild/linux-ia32": {
|
|
511
|
+
"version": "0.21.5",
|
|
512
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
|
|
513
|
+
"integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
|
|
514
|
+
"cpu": [
|
|
515
|
+
"ia32"
|
|
516
|
+
],
|
|
517
|
+
"dev": true,
|
|
518
|
+
"license": "MIT",
|
|
519
|
+
"optional": true,
|
|
520
|
+
"os": [
|
|
521
|
+
"linux"
|
|
522
|
+
],
|
|
523
|
+
"engines": {
|
|
524
|
+
"node": ">=12"
|
|
525
|
+
}
|
|
526
|
+
},
|
|
527
|
+
"node_modules/@esbuild/linux-loong64": {
|
|
528
|
+
"version": "0.21.5",
|
|
529
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
|
|
530
|
+
"integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
|
|
531
|
+
"cpu": [
|
|
532
|
+
"loong64"
|
|
533
|
+
],
|
|
534
|
+
"dev": true,
|
|
535
|
+
"license": "MIT",
|
|
536
|
+
"optional": true,
|
|
537
|
+
"os": [
|
|
538
|
+
"linux"
|
|
539
|
+
],
|
|
540
|
+
"engines": {
|
|
541
|
+
"node": ">=12"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
"node_modules/@esbuild/linux-mips64el": {
|
|
545
|
+
"version": "0.21.5",
|
|
546
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
|
|
547
|
+
"integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
|
|
548
|
+
"cpu": [
|
|
549
|
+
"mips64el"
|
|
550
|
+
],
|
|
551
|
+
"dev": true,
|
|
552
|
+
"license": "MIT",
|
|
553
|
+
"optional": true,
|
|
554
|
+
"os": [
|
|
555
|
+
"linux"
|
|
556
|
+
],
|
|
557
|
+
"engines": {
|
|
558
|
+
"node": ">=12"
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
"node_modules/@esbuild/linux-ppc64": {
|
|
562
|
+
"version": "0.21.5",
|
|
563
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
|
|
564
|
+
"integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
|
|
565
|
+
"cpu": [
|
|
566
|
+
"ppc64"
|
|
567
|
+
],
|
|
568
|
+
"dev": true,
|
|
569
|
+
"license": "MIT",
|
|
570
|
+
"optional": true,
|
|
571
|
+
"os": [
|
|
572
|
+
"linux"
|
|
573
|
+
],
|
|
574
|
+
"engines": {
|
|
575
|
+
"node": ">=12"
|
|
576
|
+
}
|
|
577
|
+
},
|
|
578
|
+
"node_modules/@esbuild/linux-riscv64": {
|
|
579
|
+
"version": "0.21.5",
|
|
580
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
|
|
581
|
+
"integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
|
|
582
|
+
"cpu": [
|
|
583
|
+
"riscv64"
|
|
584
|
+
],
|
|
585
|
+
"dev": true,
|
|
586
|
+
"license": "MIT",
|
|
587
|
+
"optional": true,
|
|
588
|
+
"os": [
|
|
589
|
+
"linux"
|
|
590
|
+
],
|
|
591
|
+
"engines": {
|
|
592
|
+
"node": ">=12"
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
"node_modules/@esbuild/linux-s390x": {
|
|
596
|
+
"version": "0.21.5",
|
|
597
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
|
|
598
|
+
"integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
|
|
599
|
+
"cpu": [
|
|
600
|
+
"s390x"
|
|
601
|
+
],
|
|
602
|
+
"dev": true,
|
|
603
|
+
"license": "MIT",
|
|
604
|
+
"optional": true,
|
|
605
|
+
"os": [
|
|
606
|
+
"linux"
|
|
607
|
+
],
|
|
608
|
+
"engines": {
|
|
609
|
+
"node": ">=12"
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
"node_modules/@esbuild/linux-x64": {
|
|
613
|
+
"version": "0.21.5",
|
|
614
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
|
|
615
|
+
"integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
|
|
616
|
+
"cpu": [
|
|
617
|
+
"x64"
|
|
618
|
+
],
|
|
619
|
+
"dev": true,
|
|
620
|
+
"license": "MIT",
|
|
621
|
+
"optional": true,
|
|
622
|
+
"os": [
|
|
623
|
+
"linux"
|
|
624
|
+
],
|
|
625
|
+
"engines": {
|
|
626
|
+
"node": ">=12"
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
"node_modules/@esbuild/netbsd-x64": {
|
|
630
|
+
"version": "0.21.5",
|
|
631
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
|
|
632
|
+
"integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
|
|
633
|
+
"cpu": [
|
|
634
|
+
"x64"
|
|
635
|
+
],
|
|
636
|
+
"dev": true,
|
|
637
|
+
"license": "MIT",
|
|
638
|
+
"optional": true,
|
|
639
|
+
"os": [
|
|
640
|
+
"netbsd"
|
|
641
|
+
],
|
|
642
|
+
"engines": {
|
|
643
|
+
"node": ">=12"
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
"node_modules/@esbuild/openbsd-x64": {
|
|
647
|
+
"version": "0.21.5",
|
|
648
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
|
|
649
|
+
"integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
|
|
650
|
+
"cpu": [
|
|
651
|
+
"x64"
|
|
652
|
+
],
|
|
653
|
+
"dev": true,
|
|
654
|
+
"license": "MIT",
|
|
655
|
+
"optional": true,
|
|
656
|
+
"os": [
|
|
657
|
+
"openbsd"
|
|
658
|
+
],
|
|
659
|
+
"engines": {
|
|
660
|
+
"node": ">=12"
|
|
661
|
+
}
|
|
662
|
+
},
|
|
663
|
+
"node_modules/@esbuild/sunos-x64": {
|
|
664
|
+
"version": "0.21.5",
|
|
665
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
|
|
666
|
+
"integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
|
|
667
|
+
"cpu": [
|
|
668
|
+
"x64"
|
|
669
|
+
],
|
|
670
|
+
"dev": true,
|
|
671
|
+
"license": "MIT",
|
|
672
|
+
"optional": true,
|
|
673
|
+
"os": [
|
|
674
|
+
"sunos"
|
|
675
|
+
],
|
|
676
|
+
"engines": {
|
|
677
|
+
"node": ">=12"
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
"node_modules/@esbuild/win32-arm64": {
|
|
681
|
+
"version": "0.21.5",
|
|
682
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
|
|
683
|
+
"integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
|
|
684
|
+
"cpu": [
|
|
685
|
+
"arm64"
|
|
686
|
+
],
|
|
687
|
+
"dev": true,
|
|
688
|
+
"license": "MIT",
|
|
689
|
+
"optional": true,
|
|
690
|
+
"os": [
|
|
691
|
+
"win32"
|
|
692
|
+
],
|
|
693
|
+
"engines": {
|
|
694
|
+
"node": ">=12"
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
"node_modules/@esbuild/win32-ia32": {
|
|
698
|
+
"version": "0.21.5",
|
|
699
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
|
|
700
|
+
"integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
|
|
701
|
+
"cpu": [
|
|
702
|
+
"ia32"
|
|
703
|
+
],
|
|
704
|
+
"dev": true,
|
|
705
|
+
"license": "MIT",
|
|
706
|
+
"optional": true,
|
|
707
|
+
"os": [
|
|
708
|
+
"win32"
|
|
709
|
+
],
|
|
710
|
+
"engines": {
|
|
711
|
+
"node": ">=12"
|
|
712
|
+
}
|
|
713
|
+
},
|
|
714
|
+
"node_modules/@esbuild/win32-x64": {
|
|
715
|
+
"version": "0.21.5",
|
|
716
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
|
|
717
|
+
"integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
|
|
718
|
+
"cpu": [
|
|
719
|
+
"x64"
|
|
720
|
+
],
|
|
721
|
+
"dev": true,
|
|
722
|
+
"license": "MIT",
|
|
723
|
+
"optional": true,
|
|
724
|
+
"os": [
|
|
725
|
+
"win32"
|
|
726
|
+
],
|
|
727
|
+
"engines": {
|
|
728
|
+
"node": ">=12"
|
|
729
|
+
}
|
|
730
|
+
},
|
|
731
|
+
"node_modules/@jridgewell/gen-mapping": {
|
|
732
|
+
"version": "0.3.13",
|
|
733
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
|
734
|
+
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
|
735
|
+
"dev": true,
|
|
736
|
+
"license": "MIT",
|
|
737
|
+
"dependencies": {
|
|
738
|
+
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
739
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
740
|
+
}
|
|
741
|
+
},
|
|
742
|
+
"node_modules/@jridgewell/remapping": {
|
|
743
|
+
"version": "2.3.5",
|
|
744
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
|
|
745
|
+
"integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
|
|
746
|
+
"dev": true,
|
|
747
|
+
"license": "MIT",
|
|
748
|
+
"dependencies": {
|
|
749
|
+
"@jridgewell/gen-mapping": "^0.3.5",
|
|
750
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
751
|
+
}
|
|
752
|
+
},
|
|
753
|
+
"node_modules/@jridgewell/resolve-uri": {
|
|
754
|
+
"version": "3.1.2",
|
|
755
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
|
756
|
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
|
757
|
+
"dev": true,
|
|
758
|
+
"license": "MIT",
|
|
759
|
+
"engines": {
|
|
760
|
+
"node": ">=6.0.0"
|
|
761
|
+
}
|
|
762
|
+
},
|
|
763
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
764
|
+
"version": "1.5.5",
|
|
765
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
766
|
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
767
|
+
"dev": true,
|
|
768
|
+
"license": "MIT"
|
|
769
|
+
},
|
|
770
|
+
"node_modules/@jridgewell/trace-mapping": {
|
|
771
|
+
"version": "0.3.31",
|
|
772
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
|
773
|
+
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
|
|
774
|
+
"dev": true,
|
|
775
|
+
"license": "MIT",
|
|
776
|
+
"dependencies": {
|
|
777
|
+
"@jridgewell/resolve-uri": "^3.1.0",
|
|
778
|
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
"node_modules/@modelcontextprotocol/sdk": {
|
|
782
|
+
"version": "1.22.0",
|
|
783
|
+
"resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.22.0.tgz",
|
|
784
|
+
"integrity": "sha512-VUpl106XVTCpDmTBil2ehgJZjhyLY2QZikzF8NvTXtLRF1CvO5iEE2UNZdVIUer35vFOwMKYeUGbjJtvPWan3g==",
|
|
785
|
+
"license": "MIT",
|
|
786
|
+
"dependencies": {
|
|
787
|
+
"ajv": "^8.17.1",
|
|
788
|
+
"ajv-formats": "^3.0.1",
|
|
789
|
+
"content-type": "^1.0.5",
|
|
790
|
+
"cors": "^2.8.5",
|
|
791
|
+
"cross-spawn": "^7.0.5",
|
|
792
|
+
"eventsource": "^3.0.2",
|
|
793
|
+
"eventsource-parser": "^3.0.0",
|
|
794
|
+
"express": "^5.0.1",
|
|
795
|
+
"express-rate-limit": "^7.5.0",
|
|
796
|
+
"pkce-challenge": "^5.0.0",
|
|
797
|
+
"raw-body": "^3.0.0",
|
|
798
|
+
"zod": "^3.23.8",
|
|
799
|
+
"zod-to-json-schema": "^3.24.1"
|
|
800
|
+
},
|
|
801
|
+
"engines": {
|
|
802
|
+
"node": ">=18"
|
|
803
|
+
},
|
|
804
|
+
"peerDependencies": {
|
|
805
|
+
"@cfworker/json-schema": "^4.1.1"
|
|
806
|
+
},
|
|
807
|
+
"peerDependenciesMeta": {
|
|
808
|
+
"@cfworker/json-schema": {
|
|
809
|
+
"optional": true
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
},
|
|
813
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/accepts": {
|
|
814
|
+
"version": "2.0.0",
|
|
815
|
+
"resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
|
|
816
|
+
"integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
|
|
817
|
+
"license": "MIT",
|
|
818
|
+
"dependencies": {
|
|
819
|
+
"mime-types": "^3.0.0",
|
|
820
|
+
"negotiator": "^1.0.0"
|
|
821
|
+
},
|
|
822
|
+
"engines": {
|
|
823
|
+
"node": ">= 0.6"
|
|
824
|
+
}
|
|
825
|
+
},
|
|
826
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/body-parser": {
|
|
827
|
+
"version": "2.2.0",
|
|
828
|
+
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.0.tgz",
|
|
829
|
+
"integrity": "sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg==",
|
|
830
|
+
"license": "MIT",
|
|
831
|
+
"dependencies": {
|
|
832
|
+
"bytes": "^3.1.2",
|
|
833
|
+
"content-type": "^1.0.5",
|
|
834
|
+
"debug": "^4.4.0",
|
|
835
|
+
"http-errors": "^2.0.0",
|
|
836
|
+
"iconv-lite": "^0.6.3",
|
|
837
|
+
"on-finished": "^2.4.1",
|
|
838
|
+
"qs": "^6.14.0",
|
|
839
|
+
"raw-body": "^3.0.0",
|
|
840
|
+
"type-is": "^2.0.0"
|
|
841
|
+
},
|
|
842
|
+
"engines": {
|
|
843
|
+
"node": ">=18"
|
|
844
|
+
}
|
|
845
|
+
},
|
|
846
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/content-disposition": {
|
|
847
|
+
"version": "1.0.0",
|
|
848
|
+
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.0.tgz",
|
|
849
|
+
"integrity": "sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==",
|
|
850
|
+
"license": "MIT",
|
|
851
|
+
"dependencies": {
|
|
852
|
+
"safe-buffer": "5.2.1"
|
|
853
|
+
},
|
|
854
|
+
"engines": {
|
|
855
|
+
"node": ">= 0.6"
|
|
856
|
+
}
|
|
857
|
+
},
|
|
858
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/cookie-signature": {
|
|
859
|
+
"version": "1.2.2",
|
|
860
|
+
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
|
|
861
|
+
"integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
|
|
862
|
+
"license": "MIT",
|
|
863
|
+
"engines": {
|
|
864
|
+
"node": ">=6.6.0"
|
|
865
|
+
}
|
|
866
|
+
},
|
|
867
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/express": {
|
|
868
|
+
"version": "5.1.0",
|
|
869
|
+
"resolved": "https://registry.npmjs.org/express/-/express-5.1.0.tgz",
|
|
870
|
+
"integrity": "sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA==",
|
|
871
|
+
"license": "MIT",
|
|
872
|
+
"dependencies": {
|
|
873
|
+
"accepts": "^2.0.0",
|
|
874
|
+
"body-parser": "^2.2.0",
|
|
875
|
+
"content-disposition": "^1.0.0",
|
|
876
|
+
"content-type": "^1.0.5",
|
|
877
|
+
"cookie": "^0.7.1",
|
|
878
|
+
"cookie-signature": "^1.2.1",
|
|
879
|
+
"debug": "^4.4.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/@modelcontextprotocol/sdk/node_modules/finalhandler": {
|
|
910
|
+
"version": "2.1.0",
|
|
911
|
+
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.0.tgz",
|
|
912
|
+
"integrity": "sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==",
|
|
913
|
+
"license": "MIT",
|
|
914
|
+
"dependencies": {
|
|
915
|
+
"debug": "^4.4.0",
|
|
916
|
+
"encodeurl": "^2.0.0",
|
|
917
|
+
"escape-html": "^1.0.3",
|
|
918
|
+
"on-finished": "^2.4.1",
|
|
919
|
+
"parseurl": "^1.3.3",
|
|
920
|
+
"statuses": "^2.0.1"
|
|
921
|
+
},
|
|
922
|
+
"engines": {
|
|
923
|
+
"node": ">= 0.8"
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/fresh": {
|
|
927
|
+
"version": "2.0.0",
|
|
928
|
+
"resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
|
|
929
|
+
"integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
|
|
930
|
+
"license": "MIT",
|
|
931
|
+
"engines": {
|
|
932
|
+
"node": ">= 0.8"
|
|
933
|
+
}
|
|
934
|
+
},
|
|
935
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/iconv-lite": {
|
|
936
|
+
"version": "0.6.3",
|
|
937
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
|
938
|
+
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
|
|
939
|
+
"license": "MIT",
|
|
940
|
+
"dependencies": {
|
|
941
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
942
|
+
},
|
|
943
|
+
"engines": {
|
|
944
|
+
"node": ">=0.10.0"
|
|
945
|
+
}
|
|
946
|
+
},
|
|
947
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/media-typer": {
|
|
948
|
+
"version": "1.1.0",
|
|
949
|
+
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
|
|
950
|
+
"integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
|
|
951
|
+
"license": "MIT",
|
|
952
|
+
"engines": {
|
|
953
|
+
"node": ">= 0.8"
|
|
954
|
+
}
|
|
955
|
+
},
|
|
956
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/merge-descriptors": {
|
|
957
|
+
"version": "2.0.0",
|
|
958
|
+
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
|
|
959
|
+
"integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
|
|
960
|
+
"license": "MIT",
|
|
961
|
+
"engines": {
|
|
962
|
+
"node": ">=18"
|
|
963
|
+
},
|
|
964
|
+
"funding": {
|
|
965
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
966
|
+
}
|
|
967
|
+
},
|
|
968
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/mime-db": {
|
|
969
|
+
"version": "1.54.0",
|
|
970
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
|
|
971
|
+
"integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
|
|
972
|
+
"license": "MIT",
|
|
973
|
+
"engines": {
|
|
974
|
+
"node": ">= 0.6"
|
|
975
|
+
}
|
|
976
|
+
},
|
|
977
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/mime-types": {
|
|
978
|
+
"version": "3.0.1",
|
|
979
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.1.tgz",
|
|
980
|
+
"integrity": "sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==",
|
|
981
|
+
"license": "MIT",
|
|
982
|
+
"dependencies": {
|
|
983
|
+
"mime-db": "^1.54.0"
|
|
984
|
+
},
|
|
985
|
+
"engines": {
|
|
986
|
+
"node": ">= 0.6"
|
|
987
|
+
}
|
|
988
|
+
},
|
|
989
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/negotiator": {
|
|
990
|
+
"version": "1.0.0",
|
|
991
|
+
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
|
|
992
|
+
"integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
|
|
993
|
+
"license": "MIT",
|
|
994
|
+
"engines": {
|
|
995
|
+
"node": ">= 0.6"
|
|
996
|
+
}
|
|
997
|
+
},
|
|
998
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/qs": {
|
|
999
|
+
"version": "6.14.0",
|
|
1000
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz",
|
|
1001
|
+
"integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==",
|
|
1002
|
+
"license": "BSD-3-Clause",
|
|
1003
|
+
"dependencies": {
|
|
1004
|
+
"side-channel": "^1.1.0"
|
|
1005
|
+
},
|
|
1006
|
+
"engines": {
|
|
1007
|
+
"node": ">=0.6"
|
|
1008
|
+
},
|
|
1009
|
+
"funding": {
|
|
1010
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1011
|
+
}
|
|
1012
|
+
},
|
|
1013
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/raw-body": {
|
|
1014
|
+
"version": "3.0.1",
|
|
1015
|
+
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.1.tgz",
|
|
1016
|
+
"integrity": "sha512-9G8cA+tuMS75+6G/TzW8OtLzmBDMo8p1JRxN5AZ+LAp8uxGA8V8GZm4GQ4/N5QNQEnLmg6SS7wyuSmbKepiKqA==",
|
|
1017
|
+
"license": "MIT",
|
|
1018
|
+
"dependencies": {
|
|
1019
|
+
"bytes": "3.1.2",
|
|
1020
|
+
"http-errors": "2.0.0",
|
|
1021
|
+
"iconv-lite": "0.7.0",
|
|
1022
|
+
"unpipe": "1.0.0"
|
|
1023
|
+
},
|
|
1024
|
+
"engines": {
|
|
1025
|
+
"node": ">= 0.10"
|
|
1026
|
+
}
|
|
1027
|
+
},
|
|
1028
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/raw-body/node_modules/iconv-lite": {
|
|
1029
|
+
"version": "0.7.0",
|
|
1030
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.0.tgz",
|
|
1031
|
+
"integrity": "sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==",
|
|
1032
|
+
"license": "MIT",
|
|
1033
|
+
"dependencies": {
|
|
1034
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
1035
|
+
},
|
|
1036
|
+
"engines": {
|
|
1037
|
+
"node": ">=0.10.0"
|
|
1038
|
+
},
|
|
1039
|
+
"funding": {
|
|
1040
|
+
"type": "opencollective",
|
|
1041
|
+
"url": "https://opencollective.com/express"
|
|
1042
|
+
}
|
|
1043
|
+
},
|
|
1044
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/send": {
|
|
1045
|
+
"version": "1.2.0",
|
|
1046
|
+
"resolved": "https://registry.npmjs.org/send/-/send-1.2.0.tgz",
|
|
1047
|
+
"integrity": "sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==",
|
|
1048
|
+
"license": "MIT",
|
|
1049
|
+
"dependencies": {
|
|
1050
|
+
"debug": "^4.3.5",
|
|
1051
|
+
"encodeurl": "^2.0.0",
|
|
1052
|
+
"escape-html": "^1.0.3",
|
|
1053
|
+
"etag": "^1.8.1",
|
|
1054
|
+
"fresh": "^2.0.0",
|
|
1055
|
+
"http-errors": "^2.0.0",
|
|
1056
|
+
"mime-types": "^3.0.1",
|
|
1057
|
+
"ms": "^2.1.3",
|
|
1058
|
+
"on-finished": "^2.4.1",
|
|
1059
|
+
"range-parser": "^1.2.1",
|
|
1060
|
+
"statuses": "^2.0.1"
|
|
1061
|
+
},
|
|
1062
|
+
"engines": {
|
|
1063
|
+
"node": ">= 18"
|
|
1064
|
+
}
|
|
1065
|
+
},
|
|
1066
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/serve-static": {
|
|
1067
|
+
"version": "2.2.0",
|
|
1068
|
+
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.0.tgz",
|
|
1069
|
+
"integrity": "sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==",
|
|
1070
|
+
"license": "MIT",
|
|
1071
|
+
"dependencies": {
|
|
1072
|
+
"encodeurl": "^2.0.0",
|
|
1073
|
+
"escape-html": "^1.0.3",
|
|
1074
|
+
"parseurl": "^1.3.3",
|
|
1075
|
+
"send": "^1.2.0"
|
|
1076
|
+
},
|
|
1077
|
+
"engines": {
|
|
1078
|
+
"node": ">= 18"
|
|
1079
|
+
}
|
|
1080
|
+
},
|
|
1081
|
+
"node_modules/@modelcontextprotocol/sdk/node_modules/type-is": {
|
|
1082
|
+
"version": "2.0.1",
|
|
1083
|
+
"resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
|
|
1084
|
+
"integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
|
|
1085
|
+
"license": "MIT",
|
|
1086
|
+
"dependencies": {
|
|
1087
|
+
"content-type": "^1.0.5",
|
|
1088
|
+
"media-typer": "^1.1.0",
|
|
1089
|
+
"mime-types": "^3.0.0"
|
|
1090
|
+
},
|
|
1091
|
+
"engines": {
|
|
1092
|
+
"node": ">= 0.6"
|
|
1093
|
+
}
|
|
1094
|
+
},
|
|
1095
|
+
"node_modules/@rolldown/pluginutils": {
|
|
1096
|
+
"version": "1.0.0-beta.27",
|
|
1097
|
+
"resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz",
|
|
1098
|
+
"integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==",
|
|
1099
|
+
"dev": true,
|
|
1100
|
+
"license": "MIT"
|
|
1101
|
+
},
|
|
1102
|
+
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
1103
|
+
"version": "4.53.2",
|
|
1104
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.2.tgz",
|
|
1105
|
+
"integrity": "sha512-yDPzwsgiFO26RJA4nZo8I+xqzh7sJTZIWQOxn+/XOdPE31lAvLIYCKqjV+lNH/vxE2L2iH3plKxDCRK6i+CwhA==",
|
|
1106
|
+
"cpu": [
|
|
1107
|
+
"arm"
|
|
1108
|
+
],
|
|
1109
|
+
"dev": true,
|
|
1110
|
+
"license": "MIT",
|
|
1111
|
+
"optional": true,
|
|
1112
|
+
"os": [
|
|
1113
|
+
"android"
|
|
1114
|
+
]
|
|
1115
|
+
},
|
|
1116
|
+
"node_modules/@rollup/rollup-android-arm64": {
|
|
1117
|
+
"version": "4.53.2",
|
|
1118
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.2.tgz",
|
|
1119
|
+
"integrity": "sha512-k8FontTxIE7b0/OGKeSN5B6j25EuppBcWM33Z19JoVT7UTXFSo3D9CdU39wGTeb29NO3XxpMNauh09B+Ibw+9g==",
|
|
1120
|
+
"cpu": [
|
|
1121
|
+
"arm64"
|
|
1122
|
+
],
|
|
1123
|
+
"dev": true,
|
|
1124
|
+
"license": "MIT",
|
|
1125
|
+
"optional": true,
|
|
1126
|
+
"os": [
|
|
1127
|
+
"android"
|
|
1128
|
+
]
|
|
1129
|
+
},
|
|
1130
|
+
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
1131
|
+
"version": "4.53.2",
|
|
1132
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.2.tgz",
|
|
1133
|
+
"integrity": "sha512-A6s4gJpomNBtJ2yioj8bflM2oogDwzUiMl2yNJ2v9E7++sHrSrsQ29fOfn5DM/iCzpWcebNYEdXpaK4tr2RhfQ==",
|
|
1134
|
+
"cpu": [
|
|
1135
|
+
"arm64"
|
|
1136
|
+
],
|
|
1137
|
+
"dev": true,
|
|
1138
|
+
"license": "MIT",
|
|
1139
|
+
"optional": true,
|
|
1140
|
+
"os": [
|
|
1141
|
+
"darwin"
|
|
1142
|
+
]
|
|
1143
|
+
},
|
|
1144
|
+
"node_modules/@rollup/rollup-darwin-x64": {
|
|
1145
|
+
"version": "4.53.2",
|
|
1146
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.2.tgz",
|
|
1147
|
+
"integrity": "sha512-e6XqVmXlHrBlG56obu9gDRPW3O3hLxpwHpLsBJvuI8qqnsrtSZ9ERoWUXtPOkY8c78WghyPHZdmPhHLWNdAGEw==",
|
|
1148
|
+
"cpu": [
|
|
1149
|
+
"x64"
|
|
1150
|
+
],
|
|
1151
|
+
"dev": true,
|
|
1152
|
+
"license": "MIT",
|
|
1153
|
+
"optional": true,
|
|
1154
|
+
"os": [
|
|
1155
|
+
"darwin"
|
|
1156
|
+
]
|
|
1157
|
+
},
|
|
1158
|
+
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
1159
|
+
"version": "4.53.2",
|
|
1160
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.2.tgz",
|
|
1161
|
+
"integrity": "sha512-v0E9lJW8VsrwPux5Qe5CwmH/CF/2mQs6xU1MF3nmUxmZUCHazCjLgYvToOk+YuuUqLQBio1qkkREhxhc656ViA==",
|
|
1162
|
+
"cpu": [
|
|
1163
|
+
"arm64"
|
|
1164
|
+
],
|
|
1165
|
+
"dev": true,
|
|
1166
|
+
"license": "MIT",
|
|
1167
|
+
"optional": true,
|
|
1168
|
+
"os": [
|
|
1169
|
+
"freebsd"
|
|
1170
|
+
]
|
|
1171
|
+
},
|
|
1172
|
+
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
1173
|
+
"version": "4.53.2",
|
|
1174
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.2.tgz",
|
|
1175
|
+
"integrity": "sha512-ClAmAPx3ZCHtp6ysl4XEhWU69GUB1D+s7G9YjHGhIGCSrsg00nEGRRZHmINYxkdoJehde8VIsDC5t9C0gb6yqA==",
|
|
1176
|
+
"cpu": [
|
|
1177
|
+
"x64"
|
|
1178
|
+
],
|
|
1179
|
+
"dev": true,
|
|
1180
|
+
"license": "MIT",
|
|
1181
|
+
"optional": true,
|
|
1182
|
+
"os": [
|
|
1183
|
+
"freebsd"
|
|
1184
|
+
]
|
|
1185
|
+
},
|
|
1186
|
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
1187
|
+
"version": "4.53.2",
|
|
1188
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.2.tgz",
|
|
1189
|
+
"integrity": "sha512-EPlb95nUsz6Dd9Qy13fI5kUPXNSljaG9FiJ4YUGU1O/Q77i5DYFW5KR8g1OzTcdZUqQQ1KdDqsTohdFVwCwjqg==",
|
|
1190
|
+
"cpu": [
|
|
1191
|
+
"arm"
|
|
1192
|
+
],
|
|
1193
|
+
"dev": true,
|
|
1194
|
+
"license": "MIT",
|
|
1195
|
+
"optional": true,
|
|
1196
|
+
"os": [
|
|
1197
|
+
"linux"
|
|
1198
|
+
]
|
|
1199
|
+
},
|
|
1200
|
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
1201
|
+
"version": "4.53.2",
|
|
1202
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.2.tgz",
|
|
1203
|
+
"integrity": "sha512-BOmnVW+khAUX+YZvNfa0tGTEMVVEerOxN0pDk2E6N6DsEIa2Ctj48FOMfNDdrwinocKaC7YXUZ1pHlKpnkja/Q==",
|
|
1204
|
+
"cpu": [
|
|
1205
|
+
"arm"
|
|
1206
|
+
],
|
|
1207
|
+
"dev": true,
|
|
1208
|
+
"license": "MIT",
|
|
1209
|
+
"optional": true,
|
|
1210
|
+
"os": [
|
|
1211
|
+
"linux"
|
|
1212
|
+
]
|
|
1213
|
+
},
|
|
1214
|
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
1215
|
+
"version": "4.53.2",
|
|
1216
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.2.tgz",
|
|
1217
|
+
"integrity": "sha512-Xt2byDZ+6OVNuREgBXr4+CZDJtrVso5woFtpKdGPhpTPHcNG7D8YXeQzpNbFRxzTVqJf7kvPMCub/pcGUWgBjA==",
|
|
1218
|
+
"cpu": [
|
|
1219
|
+
"arm64"
|
|
1220
|
+
],
|
|
1221
|
+
"dev": true,
|
|
1222
|
+
"license": "MIT",
|
|
1223
|
+
"optional": true,
|
|
1224
|
+
"os": [
|
|
1225
|
+
"linux"
|
|
1226
|
+
]
|
|
1227
|
+
},
|
|
1228
|
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
1229
|
+
"version": "4.53.2",
|
|
1230
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.2.tgz",
|
|
1231
|
+
"integrity": "sha512-+LdZSldy/I9N8+klim/Y1HsKbJ3BbInHav5qE9Iy77dtHC/pibw1SR/fXlWyAk0ThnpRKoODwnAuSjqxFRDHUQ==",
|
|
1232
|
+
"cpu": [
|
|
1233
|
+
"arm64"
|
|
1234
|
+
],
|
|
1235
|
+
"dev": true,
|
|
1236
|
+
"license": "MIT",
|
|
1237
|
+
"optional": true,
|
|
1238
|
+
"os": [
|
|
1239
|
+
"linux"
|
|
1240
|
+
]
|
|
1241
|
+
},
|
|
1242
|
+
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
1243
|
+
"version": "4.53.2",
|
|
1244
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.2.tgz",
|
|
1245
|
+
"integrity": "sha512-8ms8sjmyc1jWJS6WdNSA23rEfdjWB30LH8Wqj0Cqvv7qSHnvw6kgMMXRdop6hkmGPlyYBdRPkjJnj3KCUHV/uQ==",
|
|
1246
|
+
"cpu": [
|
|
1247
|
+
"loong64"
|
|
1248
|
+
],
|
|
1249
|
+
"dev": true,
|
|
1250
|
+
"license": "MIT",
|
|
1251
|
+
"optional": true,
|
|
1252
|
+
"os": [
|
|
1253
|
+
"linux"
|
|
1254
|
+
]
|
|
1255
|
+
},
|
|
1256
|
+
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
1257
|
+
"version": "4.53.2",
|
|
1258
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.2.tgz",
|
|
1259
|
+
"integrity": "sha512-3HRQLUQbpBDMmzoxPJYd3W6vrVHOo2cVW8RUo87Xz0JPJcBLBr5kZ1pGcQAhdZgX9VV7NbGNipah1omKKe23/g==",
|
|
1260
|
+
"cpu": [
|
|
1261
|
+
"ppc64"
|
|
1262
|
+
],
|
|
1263
|
+
"dev": true,
|
|
1264
|
+
"license": "MIT",
|
|
1265
|
+
"optional": true,
|
|
1266
|
+
"os": [
|
|
1267
|
+
"linux"
|
|
1268
|
+
]
|
|
1269
|
+
},
|
|
1270
|
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
1271
|
+
"version": "4.53.2",
|
|
1272
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.2.tgz",
|
|
1273
|
+
"integrity": "sha512-fMjKi+ojnmIvhk34gZP94vjogXNNUKMEYs+EDaB/5TG/wUkoeua7p7VCHnE6T2Tx+iaghAqQX8teQzcvrYpaQA==",
|
|
1274
|
+
"cpu": [
|
|
1275
|
+
"riscv64"
|
|
1276
|
+
],
|
|
1277
|
+
"dev": true,
|
|
1278
|
+
"license": "MIT",
|
|
1279
|
+
"optional": true,
|
|
1280
|
+
"os": [
|
|
1281
|
+
"linux"
|
|
1282
|
+
]
|
|
1283
|
+
},
|
|
1284
|
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
1285
|
+
"version": "4.53.2",
|
|
1286
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.2.tgz",
|
|
1287
|
+
"integrity": "sha512-XuGFGU+VwUUV5kLvoAdi0Wz5Xbh2SrjIxCtZj6Wq8MDp4bflb/+ThZsVxokM7n0pcbkEr2h5/pzqzDYI7cCgLQ==",
|
|
1288
|
+
"cpu": [
|
|
1289
|
+
"riscv64"
|
|
1290
|
+
],
|
|
1291
|
+
"dev": true,
|
|
1292
|
+
"license": "MIT",
|
|
1293
|
+
"optional": true,
|
|
1294
|
+
"os": [
|
|
1295
|
+
"linux"
|
|
1296
|
+
]
|
|
1297
|
+
},
|
|
1298
|
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
1299
|
+
"version": "4.53.2",
|
|
1300
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.2.tgz",
|
|
1301
|
+
"integrity": "sha512-w6yjZF0P+NGzWR3AXWX9zc0DNEGdtvykB03uhonSHMRa+oWA6novflo2WaJr6JZakG2ucsyb+rvhrKac6NIy+w==",
|
|
1302
|
+
"cpu": [
|
|
1303
|
+
"s390x"
|
|
1304
|
+
],
|
|
1305
|
+
"dev": true,
|
|
1306
|
+
"license": "MIT",
|
|
1307
|
+
"optional": true,
|
|
1308
|
+
"os": [
|
|
1309
|
+
"linux"
|
|
1310
|
+
]
|
|
1311
|
+
},
|
|
1312
|
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
1313
|
+
"version": "4.53.2",
|
|
1314
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.2.tgz",
|
|
1315
|
+
"integrity": "sha512-yo8d6tdfdeBArzC7T/PnHd7OypfI9cbuZzPnzLJIyKYFhAQ8SvlkKtKBMbXDxe1h03Rcr7u++nFS7tqXz87Gtw==",
|
|
1316
|
+
"cpu": [
|
|
1317
|
+
"x64"
|
|
1318
|
+
],
|
|
1319
|
+
"dev": true,
|
|
1320
|
+
"license": "MIT",
|
|
1321
|
+
"optional": true,
|
|
1322
|
+
"os": [
|
|
1323
|
+
"linux"
|
|
1324
|
+
]
|
|
1325
|
+
},
|
|
1326
|
+
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
1327
|
+
"version": "4.53.2",
|
|
1328
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.2.tgz",
|
|
1329
|
+
"integrity": "sha512-ah59c1YkCxKExPP8O9PwOvs+XRLKwh/mV+3YdKqQ5AMQ0r4M4ZDuOrpWkUaqO7fzAHdINzV9tEVu8vNw48z0lA==",
|
|
1330
|
+
"cpu": [
|
|
1331
|
+
"x64"
|
|
1332
|
+
],
|
|
1333
|
+
"dev": true,
|
|
1334
|
+
"license": "MIT",
|
|
1335
|
+
"optional": true,
|
|
1336
|
+
"os": [
|
|
1337
|
+
"linux"
|
|
1338
|
+
]
|
|
1339
|
+
},
|
|
1340
|
+
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
1341
|
+
"version": "4.53.2",
|
|
1342
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.2.tgz",
|
|
1343
|
+
"integrity": "sha512-4VEd19Wmhr+Zy7hbUsFZ6YXEiP48hE//KPLCSVNY5RMGX2/7HZ+QkN55a3atM1C/BZCGIgqN+xrVgtdak2S9+A==",
|
|
1344
|
+
"cpu": [
|
|
1345
|
+
"arm64"
|
|
1346
|
+
],
|
|
1347
|
+
"dev": true,
|
|
1348
|
+
"license": "MIT",
|
|
1349
|
+
"optional": true,
|
|
1350
|
+
"os": [
|
|
1351
|
+
"openharmony"
|
|
1352
|
+
]
|
|
1353
|
+
},
|
|
1354
|
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
1355
|
+
"version": "4.53.2",
|
|
1356
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.2.tgz",
|
|
1357
|
+
"integrity": "sha512-IlbHFYc/pQCgew/d5fslcy1KEaYVCJ44G8pajugd8VoOEI8ODhtb/j8XMhLpwHCMB3yk2J07ctup10gpw2nyMA==",
|
|
1358
|
+
"cpu": [
|
|
1359
|
+
"arm64"
|
|
1360
|
+
],
|
|
1361
|
+
"dev": true,
|
|
1362
|
+
"license": "MIT",
|
|
1363
|
+
"optional": true,
|
|
1364
|
+
"os": [
|
|
1365
|
+
"win32"
|
|
1366
|
+
]
|
|
1367
|
+
},
|
|
1368
|
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
1369
|
+
"version": "4.53.2",
|
|
1370
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.2.tgz",
|
|
1371
|
+
"integrity": "sha512-lNlPEGgdUfSzdCWU176ku/dQRnA7W+Gp8d+cWv73jYrb8uT7HTVVxq62DUYxjbaByuf1Yk0RIIAbDzp+CnOTFg==",
|
|
1372
|
+
"cpu": [
|
|
1373
|
+
"ia32"
|
|
1374
|
+
],
|
|
1375
|
+
"dev": true,
|
|
1376
|
+
"license": "MIT",
|
|
1377
|
+
"optional": true,
|
|
1378
|
+
"os": [
|
|
1379
|
+
"win32"
|
|
1380
|
+
]
|
|
1381
|
+
},
|
|
1382
|
+
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
1383
|
+
"version": "4.53.2",
|
|
1384
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.2.tgz",
|
|
1385
|
+
"integrity": "sha512-S6YojNVrHybQis2lYov1sd+uj7K0Q05NxHcGktuMMdIQ2VixGwAfbJ23NnlvvVV1bdpR2m5MsNBViHJKcA4ADw==",
|
|
1386
|
+
"cpu": [
|
|
1387
|
+
"x64"
|
|
1388
|
+
],
|
|
1389
|
+
"dev": true,
|
|
1390
|
+
"license": "MIT",
|
|
1391
|
+
"optional": true,
|
|
1392
|
+
"os": [
|
|
1393
|
+
"win32"
|
|
1394
|
+
]
|
|
1395
|
+
},
|
|
1396
|
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
1397
|
+
"version": "4.53.2",
|
|
1398
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.2.tgz",
|
|
1399
|
+
"integrity": "sha512-k+/Rkcyx//P6fetPoLMb8pBeqJBNGx81uuf7iljX9++yNBVRDQgD04L+SVXmXmh5ZP4/WOp4mWF0kmi06PW2tA==",
|
|
1400
|
+
"cpu": [
|
|
1401
|
+
"x64"
|
|
1402
|
+
],
|
|
1403
|
+
"dev": true,
|
|
1404
|
+
"license": "MIT",
|
|
1405
|
+
"optional": true,
|
|
1406
|
+
"os": [
|
|
1407
|
+
"win32"
|
|
1408
|
+
]
|
|
1409
|
+
},
|
|
1410
|
+
"node_modules/@tabler/icons": {
|
|
1411
|
+
"version": "3.35.0",
|
|
1412
|
+
"resolved": "https://registry.npmjs.org/@tabler/icons/-/icons-3.35.0.tgz",
|
|
1413
|
+
"integrity": "sha512-yYXe+gJ56xlZFiXwV9zVoe3FWCGuZ/D7/G4ZIlDtGxSx5CGQK110wrnT29gUj52kEZoxqF7oURTk97GQxELOFQ==",
|
|
1414
|
+
"license": "MIT",
|
|
1415
|
+
"funding": {
|
|
1416
|
+
"type": "github",
|
|
1417
|
+
"url": "https://github.com/sponsors/codecalm"
|
|
1418
|
+
}
|
|
1419
|
+
},
|
|
1420
|
+
"node_modules/@tabler/icons-react": {
|
|
1421
|
+
"version": "3.35.0",
|
|
1422
|
+
"resolved": "https://registry.npmjs.org/@tabler/icons-react/-/icons-react-3.35.0.tgz",
|
|
1423
|
+
"integrity": "sha512-XG7t2DYf3DyHT5jxFNp5xyLVbL4hMJYJhiSdHADzAjLRYfL7AnjlRfiHDHeXxkb2N103rEIvTsBRazxXtAUz2g==",
|
|
1424
|
+
"license": "MIT",
|
|
1425
|
+
"dependencies": {
|
|
1426
|
+
"@tabler/icons": "3.35.0"
|
|
1427
|
+
},
|
|
1428
|
+
"funding": {
|
|
1429
|
+
"type": "github",
|
|
1430
|
+
"url": "https://github.com/sponsors/codecalm"
|
|
1431
|
+
},
|
|
1432
|
+
"peerDependencies": {
|
|
1433
|
+
"react": ">= 16"
|
|
1434
|
+
}
|
|
1435
|
+
},
|
|
1436
|
+
"node_modules/@types/babel__core": {
|
|
1437
|
+
"version": "7.20.5",
|
|
1438
|
+
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
|
|
1439
|
+
"integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
|
|
1440
|
+
"dev": true,
|
|
1441
|
+
"license": "MIT",
|
|
1442
|
+
"dependencies": {
|
|
1443
|
+
"@babel/parser": "^7.20.7",
|
|
1444
|
+
"@babel/types": "^7.20.7",
|
|
1445
|
+
"@types/babel__generator": "*",
|
|
1446
|
+
"@types/babel__template": "*",
|
|
1447
|
+
"@types/babel__traverse": "*"
|
|
1448
|
+
}
|
|
1449
|
+
},
|
|
1450
|
+
"node_modules/@types/babel__generator": {
|
|
1451
|
+
"version": "7.27.0",
|
|
1452
|
+
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
|
|
1453
|
+
"integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
|
|
1454
|
+
"dev": true,
|
|
1455
|
+
"license": "MIT",
|
|
1456
|
+
"dependencies": {
|
|
1457
|
+
"@babel/types": "^7.0.0"
|
|
1458
|
+
}
|
|
1459
|
+
},
|
|
1460
|
+
"node_modules/@types/babel__template": {
|
|
1461
|
+
"version": "7.4.4",
|
|
1462
|
+
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
|
|
1463
|
+
"integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
|
|
1464
|
+
"dev": true,
|
|
1465
|
+
"license": "MIT",
|
|
1466
|
+
"dependencies": {
|
|
1467
|
+
"@babel/parser": "^7.1.0",
|
|
1468
|
+
"@babel/types": "^7.0.0"
|
|
1469
|
+
}
|
|
1470
|
+
},
|
|
1471
|
+
"node_modules/@types/babel__traverse": {
|
|
1472
|
+
"version": "7.28.0",
|
|
1473
|
+
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
|
|
1474
|
+
"integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
|
|
1475
|
+
"dev": true,
|
|
1476
|
+
"license": "MIT",
|
|
1477
|
+
"dependencies": {
|
|
1478
|
+
"@babel/types": "^7.28.2"
|
|
1479
|
+
}
|
|
1480
|
+
},
|
|
1481
|
+
"node_modules/@types/estree": {
|
|
1482
|
+
"version": "1.0.8",
|
|
1483
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
1484
|
+
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
1485
|
+
"dev": true,
|
|
1486
|
+
"license": "MIT"
|
|
1487
|
+
},
|
|
1488
|
+
"node_modules/@vitejs/plugin-react": {
|
|
1489
|
+
"version": "4.7.0",
|
|
1490
|
+
"resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz",
|
|
1491
|
+
"integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==",
|
|
1492
|
+
"dev": true,
|
|
1493
|
+
"license": "MIT",
|
|
1494
|
+
"dependencies": {
|
|
1495
|
+
"@babel/core": "^7.28.0",
|
|
1496
|
+
"@babel/plugin-transform-react-jsx-self": "^7.27.1",
|
|
1497
|
+
"@babel/plugin-transform-react-jsx-source": "^7.27.1",
|
|
1498
|
+
"@rolldown/pluginutils": "1.0.0-beta.27",
|
|
1499
|
+
"@types/babel__core": "^7.20.5",
|
|
1500
|
+
"react-refresh": "^0.17.0"
|
|
1501
|
+
},
|
|
1502
|
+
"engines": {
|
|
1503
|
+
"node": "^14.18.0 || >=16.0.0"
|
|
1504
|
+
},
|
|
1505
|
+
"peerDependencies": {
|
|
1506
|
+
"vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
|
|
1507
|
+
}
|
|
1508
|
+
},
|
|
1509
|
+
"node_modules/accepts": {
|
|
1510
|
+
"version": "1.3.8",
|
|
1511
|
+
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
|
|
1512
|
+
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
|
|
1513
|
+
"license": "MIT",
|
|
1514
|
+
"dependencies": {
|
|
1515
|
+
"mime-types": "~2.1.34",
|
|
1516
|
+
"negotiator": "0.6.3"
|
|
1517
|
+
},
|
|
1518
|
+
"engines": {
|
|
1519
|
+
"node": ">= 0.6"
|
|
1520
|
+
}
|
|
1521
|
+
},
|
|
1522
|
+
"node_modules/ajv": {
|
|
1523
|
+
"version": "8.17.1",
|
|
1524
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
|
|
1525
|
+
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
|
|
1526
|
+
"license": "MIT",
|
|
1527
|
+
"dependencies": {
|
|
1528
|
+
"fast-deep-equal": "^3.1.3",
|
|
1529
|
+
"fast-uri": "^3.0.1",
|
|
1530
|
+
"json-schema-traverse": "^1.0.0",
|
|
1531
|
+
"require-from-string": "^2.0.2"
|
|
1532
|
+
},
|
|
1533
|
+
"funding": {
|
|
1534
|
+
"type": "github",
|
|
1535
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
1536
|
+
}
|
|
1537
|
+
},
|
|
1538
|
+
"node_modules/ajv-formats": {
|
|
1539
|
+
"version": "3.0.1",
|
|
1540
|
+
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz",
|
|
1541
|
+
"integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==",
|
|
1542
|
+
"license": "MIT",
|
|
1543
|
+
"dependencies": {
|
|
1544
|
+
"ajv": "^8.0.0"
|
|
1545
|
+
},
|
|
1546
|
+
"peerDependencies": {
|
|
1547
|
+
"ajv": "^8.0.0"
|
|
1548
|
+
},
|
|
1549
|
+
"peerDependenciesMeta": {
|
|
1550
|
+
"ajv": {
|
|
1551
|
+
"optional": true
|
|
1552
|
+
}
|
|
1553
|
+
}
|
|
1554
|
+
},
|
|
1555
|
+
"node_modules/animejs": {
|
|
1556
|
+
"version": "3.2.2",
|
|
1557
|
+
"resolved": "https://registry.npmjs.org/animejs/-/animejs-3.2.2.tgz",
|
|
1558
|
+
"integrity": "sha512-Ao95qWLpDPXXM+WrmwcKbl6uNlC5tjnowlaRYtuVDHHoygjtIPfDUoK9NthrlZsQSKjZXlmji2TrBUAVbiH0LQ==",
|
|
1559
|
+
"license": "MIT"
|
|
1560
|
+
},
|
|
1561
|
+
"node_modules/array-flatten": {
|
|
1562
|
+
"version": "1.1.1",
|
|
1563
|
+
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
|
|
1564
|
+
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
|
|
1565
|
+
"license": "MIT"
|
|
1566
|
+
},
|
|
1567
|
+
"node_modules/base64-js": {
|
|
1568
|
+
"version": "1.5.1",
|
|
1569
|
+
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
|
1570
|
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
|
|
1571
|
+
"funding": [
|
|
1572
|
+
{
|
|
1573
|
+
"type": "github",
|
|
1574
|
+
"url": "https://github.com/sponsors/feross"
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
"type": "patreon",
|
|
1578
|
+
"url": "https://www.patreon.com/feross"
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
"type": "consulting",
|
|
1582
|
+
"url": "https://feross.org/support"
|
|
1583
|
+
}
|
|
1584
|
+
],
|
|
1585
|
+
"license": "MIT"
|
|
1586
|
+
},
|
|
1587
|
+
"node_modules/baseline-browser-mapping": {
|
|
1588
|
+
"version": "2.8.28",
|
|
1589
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.28.tgz",
|
|
1590
|
+
"integrity": "sha512-gYjt7OIqdM0PcttNYP2aVrr2G0bMALkBaoehD4BuRGjAOtipg0b6wHg1yNL+s5zSnLZZrGHOw4IrND8CD+3oIQ==",
|
|
1591
|
+
"dev": true,
|
|
1592
|
+
"license": "Apache-2.0",
|
|
1593
|
+
"bin": {
|
|
1594
|
+
"baseline-browser-mapping": "dist/cli.js"
|
|
1595
|
+
}
|
|
1596
|
+
},
|
|
1597
|
+
"node_modules/better-sqlite3": {
|
|
1598
|
+
"version": "12.4.1",
|
|
1599
|
+
"resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-12.4.1.tgz",
|
|
1600
|
+
"integrity": "sha512-3yVdyZhklTiNrtg+4WqHpJpFDd+WHTg2oM7UcR80GqL05AOV0xEJzc6qNvFYoEtE+hRp1n9MpN6/+4yhlGkDXQ==",
|
|
1601
|
+
"hasInstallScript": true,
|
|
1602
|
+
"license": "MIT",
|
|
1603
|
+
"dependencies": {
|
|
1604
|
+
"bindings": "^1.5.0",
|
|
1605
|
+
"prebuild-install": "^7.1.1"
|
|
1606
|
+
},
|
|
1607
|
+
"engines": {
|
|
1608
|
+
"node": "20.x || 22.x || 23.x || 24.x"
|
|
1609
|
+
}
|
|
1610
|
+
},
|
|
1611
|
+
"node_modules/bindings": {
|
|
1612
|
+
"version": "1.5.0",
|
|
1613
|
+
"resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
|
|
1614
|
+
"integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
|
|
1615
|
+
"license": "MIT",
|
|
1616
|
+
"dependencies": {
|
|
1617
|
+
"file-uri-to-path": "1.0.0"
|
|
1618
|
+
}
|
|
1619
|
+
},
|
|
1620
|
+
"node_modules/bl": {
|
|
1621
|
+
"version": "4.1.0",
|
|
1622
|
+
"resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
|
|
1623
|
+
"integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
|
|
1624
|
+
"license": "MIT",
|
|
1625
|
+
"dependencies": {
|
|
1626
|
+
"buffer": "^5.5.0",
|
|
1627
|
+
"inherits": "^2.0.4",
|
|
1628
|
+
"readable-stream": "^3.4.0"
|
|
1629
|
+
}
|
|
1630
|
+
},
|
|
1631
|
+
"node_modules/body-parser": {
|
|
1632
|
+
"version": "1.20.3",
|
|
1633
|
+
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
|
|
1634
|
+
"integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
|
|
1635
|
+
"license": "MIT",
|
|
1636
|
+
"dependencies": {
|
|
1637
|
+
"bytes": "3.1.2",
|
|
1638
|
+
"content-type": "~1.0.5",
|
|
1639
|
+
"debug": "2.6.9",
|
|
1640
|
+
"depd": "2.0.0",
|
|
1641
|
+
"destroy": "1.2.0",
|
|
1642
|
+
"http-errors": "2.0.0",
|
|
1643
|
+
"iconv-lite": "0.4.24",
|
|
1644
|
+
"on-finished": "2.4.1",
|
|
1645
|
+
"qs": "6.13.0",
|
|
1646
|
+
"raw-body": "2.5.2",
|
|
1647
|
+
"type-is": "~1.6.18",
|
|
1648
|
+
"unpipe": "1.0.0"
|
|
1649
|
+
},
|
|
1650
|
+
"engines": {
|
|
1651
|
+
"node": ">= 0.8",
|
|
1652
|
+
"npm": "1.2.8000 || >= 1.4.16"
|
|
1653
|
+
}
|
|
1654
|
+
},
|
|
1655
|
+
"node_modules/body-parser/node_modules/debug": {
|
|
1656
|
+
"version": "2.6.9",
|
|
1657
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
1658
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
1659
|
+
"license": "MIT",
|
|
1660
|
+
"dependencies": {
|
|
1661
|
+
"ms": "2.0.0"
|
|
1662
|
+
}
|
|
1663
|
+
},
|
|
1664
|
+
"node_modules/body-parser/node_modules/ms": {
|
|
1665
|
+
"version": "2.0.0",
|
|
1666
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
1667
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
1668
|
+
"license": "MIT"
|
|
1669
|
+
},
|
|
1670
|
+
"node_modules/browserslist": {
|
|
1671
|
+
"version": "4.28.0",
|
|
1672
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.0.tgz",
|
|
1673
|
+
"integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==",
|
|
1674
|
+
"dev": true,
|
|
1675
|
+
"funding": [
|
|
1676
|
+
{
|
|
1677
|
+
"type": "opencollective",
|
|
1678
|
+
"url": "https://opencollective.com/browserslist"
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
"type": "tidelift",
|
|
1682
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
1683
|
+
},
|
|
1684
|
+
{
|
|
1685
|
+
"type": "github",
|
|
1686
|
+
"url": "https://github.com/sponsors/ai"
|
|
1687
|
+
}
|
|
1688
|
+
],
|
|
1689
|
+
"license": "MIT",
|
|
1690
|
+
"dependencies": {
|
|
1691
|
+
"baseline-browser-mapping": "^2.8.25",
|
|
1692
|
+
"caniuse-lite": "^1.0.30001754",
|
|
1693
|
+
"electron-to-chromium": "^1.5.249",
|
|
1694
|
+
"node-releases": "^2.0.27",
|
|
1695
|
+
"update-browserslist-db": "^1.1.4"
|
|
1696
|
+
},
|
|
1697
|
+
"bin": {
|
|
1698
|
+
"browserslist": "cli.js"
|
|
1699
|
+
},
|
|
1700
|
+
"engines": {
|
|
1701
|
+
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
|
1702
|
+
}
|
|
1703
|
+
},
|
|
1704
|
+
"node_modules/buffer": {
|
|
1705
|
+
"version": "5.7.1",
|
|
1706
|
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
|
|
1707
|
+
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
|
|
1708
|
+
"funding": [
|
|
1709
|
+
{
|
|
1710
|
+
"type": "github",
|
|
1711
|
+
"url": "https://github.com/sponsors/feross"
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
"type": "patreon",
|
|
1715
|
+
"url": "https://www.patreon.com/feross"
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
"type": "consulting",
|
|
1719
|
+
"url": "https://feross.org/support"
|
|
1720
|
+
}
|
|
1721
|
+
],
|
|
1722
|
+
"license": "MIT",
|
|
1723
|
+
"dependencies": {
|
|
1724
|
+
"base64-js": "^1.3.1",
|
|
1725
|
+
"ieee754": "^1.1.13"
|
|
1726
|
+
}
|
|
1727
|
+
},
|
|
1728
|
+
"node_modules/bytes": {
|
|
1729
|
+
"version": "3.1.2",
|
|
1730
|
+
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
|
|
1731
|
+
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
|
|
1732
|
+
"license": "MIT",
|
|
1733
|
+
"engines": {
|
|
1734
|
+
"node": ">= 0.8"
|
|
1735
|
+
}
|
|
1736
|
+
},
|
|
1737
|
+
"node_modules/call-bind-apply-helpers": {
|
|
1738
|
+
"version": "1.0.2",
|
|
1739
|
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
1740
|
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
|
1741
|
+
"license": "MIT",
|
|
1742
|
+
"dependencies": {
|
|
1743
|
+
"es-errors": "^1.3.0",
|
|
1744
|
+
"function-bind": "^1.1.2"
|
|
1745
|
+
},
|
|
1746
|
+
"engines": {
|
|
1747
|
+
"node": ">= 0.4"
|
|
1748
|
+
}
|
|
1749
|
+
},
|
|
1750
|
+
"node_modules/call-bound": {
|
|
1751
|
+
"version": "1.0.4",
|
|
1752
|
+
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
|
|
1753
|
+
"integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
|
|
1754
|
+
"license": "MIT",
|
|
1755
|
+
"dependencies": {
|
|
1756
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
1757
|
+
"get-intrinsic": "^1.3.0"
|
|
1758
|
+
},
|
|
1759
|
+
"engines": {
|
|
1760
|
+
"node": ">= 0.4"
|
|
1761
|
+
},
|
|
1762
|
+
"funding": {
|
|
1763
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1764
|
+
}
|
|
1765
|
+
},
|
|
1766
|
+
"node_modules/caniuse-lite": {
|
|
1767
|
+
"version": "1.0.30001754",
|
|
1768
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001754.tgz",
|
|
1769
|
+
"integrity": "sha512-x6OeBXueoAceOmotzx3PO4Zpt4rzpeIFsSr6AAePTZxSkXiYDUmpypEl7e2+8NCd9bD7bXjqyef8CJYPC1jfxg==",
|
|
1770
|
+
"dev": true,
|
|
1771
|
+
"funding": [
|
|
1772
|
+
{
|
|
1773
|
+
"type": "opencollective",
|
|
1774
|
+
"url": "https://opencollective.com/browserslist"
|
|
1775
|
+
},
|
|
1776
|
+
{
|
|
1777
|
+
"type": "tidelift",
|
|
1778
|
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
"type": "github",
|
|
1782
|
+
"url": "https://github.com/sponsors/ai"
|
|
1783
|
+
}
|
|
1784
|
+
],
|
|
1785
|
+
"license": "CC-BY-4.0"
|
|
1786
|
+
},
|
|
1787
|
+
"node_modules/chownr": {
|
|
1788
|
+
"version": "1.1.4",
|
|
1789
|
+
"resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
|
|
1790
|
+
"integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
|
|
1791
|
+
"license": "ISC"
|
|
1792
|
+
},
|
|
1793
|
+
"node_modules/content-disposition": {
|
|
1794
|
+
"version": "0.5.4",
|
|
1795
|
+
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
|
|
1796
|
+
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
|
|
1797
|
+
"license": "MIT",
|
|
1798
|
+
"dependencies": {
|
|
1799
|
+
"safe-buffer": "5.2.1"
|
|
1800
|
+
},
|
|
1801
|
+
"engines": {
|
|
1802
|
+
"node": ">= 0.6"
|
|
1803
|
+
}
|
|
1804
|
+
},
|
|
1805
|
+
"node_modules/content-type": {
|
|
1806
|
+
"version": "1.0.5",
|
|
1807
|
+
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
|
|
1808
|
+
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
|
|
1809
|
+
"license": "MIT",
|
|
1810
|
+
"engines": {
|
|
1811
|
+
"node": ">= 0.6"
|
|
1812
|
+
}
|
|
1813
|
+
},
|
|
1814
|
+
"node_modules/convert-source-map": {
|
|
1815
|
+
"version": "2.0.0",
|
|
1816
|
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
|
|
1817
|
+
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
|
|
1818
|
+
"dev": true,
|
|
1819
|
+
"license": "MIT"
|
|
1820
|
+
},
|
|
1821
|
+
"node_modules/cookie": {
|
|
1822
|
+
"version": "0.7.1",
|
|
1823
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
|
|
1824
|
+
"integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==",
|
|
1825
|
+
"license": "MIT",
|
|
1826
|
+
"engines": {
|
|
1827
|
+
"node": ">= 0.6"
|
|
1828
|
+
}
|
|
1829
|
+
},
|
|
1830
|
+
"node_modules/cookie-signature": {
|
|
1831
|
+
"version": "1.0.6",
|
|
1832
|
+
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
|
|
1833
|
+
"integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==",
|
|
1834
|
+
"license": "MIT"
|
|
1835
|
+
},
|
|
1836
|
+
"node_modules/cors": {
|
|
1837
|
+
"version": "2.8.5",
|
|
1838
|
+
"resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz",
|
|
1839
|
+
"integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==",
|
|
1840
|
+
"license": "MIT",
|
|
1841
|
+
"dependencies": {
|
|
1842
|
+
"object-assign": "^4",
|
|
1843
|
+
"vary": "^1"
|
|
1844
|
+
},
|
|
1845
|
+
"engines": {
|
|
1846
|
+
"node": ">= 0.10"
|
|
1847
|
+
}
|
|
1848
|
+
},
|
|
1849
|
+
"node_modules/cross-spawn": {
|
|
1850
|
+
"version": "7.0.6",
|
|
1851
|
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
|
|
1852
|
+
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
|
1853
|
+
"license": "MIT",
|
|
1854
|
+
"dependencies": {
|
|
1855
|
+
"path-key": "^3.1.0",
|
|
1856
|
+
"shebang-command": "^2.0.0",
|
|
1857
|
+
"which": "^2.0.1"
|
|
1858
|
+
},
|
|
1859
|
+
"engines": {
|
|
1860
|
+
"node": ">= 8"
|
|
1861
|
+
}
|
|
1862
|
+
},
|
|
1863
|
+
"node_modules/debug": {
|
|
1864
|
+
"version": "4.4.3",
|
|
1865
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
1866
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
1867
|
+
"license": "MIT",
|
|
1868
|
+
"dependencies": {
|
|
1869
|
+
"ms": "^2.1.3"
|
|
1870
|
+
},
|
|
1871
|
+
"engines": {
|
|
1872
|
+
"node": ">=6.0"
|
|
1873
|
+
},
|
|
1874
|
+
"peerDependenciesMeta": {
|
|
1875
|
+
"supports-color": {
|
|
1876
|
+
"optional": true
|
|
1877
|
+
}
|
|
1878
|
+
}
|
|
1879
|
+
},
|
|
1880
|
+
"node_modules/decompress-response": {
|
|
1881
|
+
"version": "6.0.0",
|
|
1882
|
+
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
|
|
1883
|
+
"integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
|
|
1884
|
+
"license": "MIT",
|
|
1885
|
+
"dependencies": {
|
|
1886
|
+
"mimic-response": "^3.1.0"
|
|
1887
|
+
},
|
|
1888
|
+
"engines": {
|
|
1889
|
+
"node": ">=10"
|
|
1890
|
+
},
|
|
1891
|
+
"funding": {
|
|
1892
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1893
|
+
}
|
|
1894
|
+
},
|
|
1895
|
+
"node_modules/deep-extend": {
|
|
1896
|
+
"version": "0.6.0",
|
|
1897
|
+
"resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
|
|
1898
|
+
"integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
|
|
1899
|
+
"license": "MIT",
|
|
1900
|
+
"engines": {
|
|
1901
|
+
"node": ">=4.0.0"
|
|
1902
|
+
}
|
|
1903
|
+
},
|
|
1904
|
+
"node_modules/depd": {
|
|
1905
|
+
"version": "2.0.0",
|
|
1906
|
+
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
|
1907
|
+
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
|
|
1908
|
+
"license": "MIT",
|
|
1909
|
+
"engines": {
|
|
1910
|
+
"node": ">= 0.8"
|
|
1911
|
+
}
|
|
1912
|
+
},
|
|
1913
|
+
"node_modules/destroy": {
|
|
1914
|
+
"version": "1.2.0",
|
|
1915
|
+
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
|
|
1916
|
+
"integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
|
|
1917
|
+
"license": "MIT",
|
|
1918
|
+
"engines": {
|
|
1919
|
+
"node": ">= 0.8",
|
|
1920
|
+
"npm": "1.2.8000 || >= 1.4.16"
|
|
1921
|
+
}
|
|
1922
|
+
},
|
|
1923
|
+
"node_modules/detect-libc": {
|
|
1924
|
+
"version": "2.1.2",
|
|
1925
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
1926
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
1927
|
+
"license": "Apache-2.0",
|
|
1928
|
+
"engines": {
|
|
1929
|
+
"node": ">=8"
|
|
1930
|
+
}
|
|
1931
|
+
},
|
|
1932
|
+
"node_modules/dunder-proto": {
|
|
1933
|
+
"version": "1.0.1",
|
|
1934
|
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
1935
|
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
|
1936
|
+
"license": "MIT",
|
|
1937
|
+
"dependencies": {
|
|
1938
|
+
"call-bind-apply-helpers": "^1.0.1",
|
|
1939
|
+
"es-errors": "^1.3.0",
|
|
1940
|
+
"gopd": "^1.2.0"
|
|
1941
|
+
},
|
|
1942
|
+
"engines": {
|
|
1943
|
+
"node": ">= 0.4"
|
|
1944
|
+
}
|
|
1945
|
+
},
|
|
1946
|
+
"node_modules/ee-first": {
|
|
1947
|
+
"version": "1.1.1",
|
|
1948
|
+
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
|
|
1949
|
+
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
|
|
1950
|
+
"license": "MIT"
|
|
1951
|
+
},
|
|
1952
|
+
"node_modules/electron-to-chromium": {
|
|
1953
|
+
"version": "1.5.252",
|
|
1954
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.252.tgz",
|
|
1955
|
+
"integrity": "sha512-53uTpjtRgS7gjIxZ4qCgFdNO2q+wJt/Z8+xAvxbCqXPJrY6h7ighUkadQmNMXH96crtpa6gPFNP7BF4UBGDuaA==",
|
|
1956
|
+
"dev": true,
|
|
1957
|
+
"license": "ISC"
|
|
1958
|
+
},
|
|
1959
|
+
"node_modules/encodeurl": {
|
|
1960
|
+
"version": "2.0.0",
|
|
1961
|
+
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
|
|
1962
|
+
"integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
|
|
1963
|
+
"license": "MIT",
|
|
1964
|
+
"engines": {
|
|
1965
|
+
"node": ">= 0.8"
|
|
1966
|
+
}
|
|
1967
|
+
},
|
|
1968
|
+
"node_modules/end-of-stream": {
|
|
1969
|
+
"version": "1.4.5",
|
|
1970
|
+
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
|
|
1971
|
+
"integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
|
|
1972
|
+
"license": "MIT",
|
|
1973
|
+
"dependencies": {
|
|
1974
|
+
"once": "^1.4.0"
|
|
1975
|
+
}
|
|
1976
|
+
},
|
|
1977
|
+
"node_modules/es-define-property": {
|
|
1978
|
+
"version": "1.0.1",
|
|
1979
|
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
|
1980
|
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
|
1981
|
+
"license": "MIT",
|
|
1982
|
+
"engines": {
|
|
1983
|
+
"node": ">= 0.4"
|
|
1984
|
+
}
|
|
1985
|
+
},
|
|
1986
|
+
"node_modules/es-errors": {
|
|
1987
|
+
"version": "1.3.0",
|
|
1988
|
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
|
1989
|
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
|
1990
|
+
"license": "MIT",
|
|
1991
|
+
"engines": {
|
|
1992
|
+
"node": ">= 0.4"
|
|
1993
|
+
}
|
|
1994
|
+
},
|
|
1995
|
+
"node_modules/es-object-atoms": {
|
|
1996
|
+
"version": "1.1.1",
|
|
1997
|
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
|
1998
|
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
|
1999
|
+
"license": "MIT",
|
|
2000
|
+
"dependencies": {
|
|
2001
|
+
"es-errors": "^1.3.0"
|
|
2002
|
+
},
|
|
2003
|
+
"engines": {
|
|
2004
|
+
"node": ">= 0.4"
|
|
2005
|
+
}
|
|
2006
|
+
},
|
|
2007
|
+
"node_modules/esbuild": {
|
|
2008
|
+
"version": "0.21.5",
|
|
2009
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
|
|
2010
|
+
"integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
|
|
2011
|
+
"dev": true,
|
|
2012
|
+
"hasInstallScript": true,
|
|
2013
|
+
"license": "MIT",
|
|
2014
|
+
"bin": {
|
|
2015
|
+
"esbuild": "bin/esbuild"
|
|
2016
|
+
},
|
|
2017
|
+
"engines": {
|
|
2018
|
+
"node": ">=12"
|
|
2019
|
+
},
|
|
2020
|
+
"optionalDependencies": {
|
|
2021
|
+
"@esbuild/aix-ppc64": "0.21.5",
|
|
2022
|
+
"@esbuild/android-arm": "0.21.5",
|
|
2023
|
+
"@esbuild/android-arm64": "0.21.5",
|
|
2024
|
+
"@esbuild/android-x64": "0.21.5",
|
|
2025
|
+
"@esbuild/darwin-arm64": "0.21.5",
|
|
2026
|
+
"@esbuild/darwin-x64": "0.21.5",
|
|
2027
|
+
"@esbuild/freebsd-arm64": "0.21.5",
|
|
2028
|
+
"@esbuild/freebsd-x64": "0.21.5",
|
|
2029
|
+
"@esbuild/linux-arm": "0.21.5",
|
|
2030
|
+
"@esbuild/linux-arm64": "0.21.5",
|
|
2031
|
+
"@esbuild/linux-ia32": "0.21.5",
|
|
2032
|
+
"@esbuild/linux-loong64": "0.21.5",
|
|
2033
|
+
"@esbuild/linux-mips64el": "0.21.5",
|
|
2034
|
+
"@esbuild/linux-ppc64": "0.21.5",
|
|
2035
|
+
"@esbuild/linux-riscv64": "0.21.5",
|
|
2036
|
+
"@esbuild/linux-s390x": "0.21.5",
|
|
2037
|
+
"@esbuild/linux-x64": "0.21.5",
|
|
2038
|
+
"@esbuild/netbsd-x64": "0.21.5",
|
|
2039
|
+
"@esbuild/openbsd-x64": "0.21.5",
|
|
2040
|
+
"@esbuild/sunos-x64": "0.21.5",
|
|
2041
|
+
"@esbuild/win32-arm64": "0.21.5",
|
|
2042
|
+
"@esbuild/win32-ia32": "0.21.5",
|
|
2043
|
+
"@esbuild/win32-x64": "0.21.5"
|
|
2044
|
+
}
|
|
2045
|
+
},
|
|
2046
|
+
"node_modules/escalade": {
|
|
2047
|
+
"version": "3.2.0",
|
|
2048
|
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
|
2049
|
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
|
|
2050
|
+
"dev": true,
|
|
2051
|
+
"license": "MIT",
|
|
2052
|
+
"engines": {
|
|
2053
|
+
"node": ">=6"
|
|
2054
|
+
}
|
|
2055
|
+
},
|
|
2056
|
+
"node_modules/escape-html": {
|
|
2057
|
+
"version": "1.0.3",
|
|
2058
|
+
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
|
|
2059
|
+
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
|
|
2060
|
+
"license": "MIT"
|
|
2061
|
+
},
|
|
2062
|
+
"node_modules/etag": {
|
|
2063
|
+
"version": "1.8.1",
|
|
2064
|
+
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
|
2065
|
+
"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
|
|
2066
|
+
"license": "MIT",
|
|
2067
|
+
"engines": {
|
|
2068
|
+
"node": ">= 0.6"
|
|
2069
|
+
}
|
|
2070
|
+
},
|
|
2071
|
+
"node_modules/eventsource": {
|
|
2072
|
+
"version": "3.0.7",
|
|
2073
|
+
"resolved": "https://registry.npmjs.org/eventsource/-/eventsource-3.0.7.tgz",
|
|
2074
|
+
"integrity": "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==",
|
|
2075
|
+
"license": "MIT",
|
|
2076
|
+
"dependencies": {
|
|
2077
|
+
"eventsource-parser": "^3.0.1"
|
|
2078
|
+
},
|
|
2079
|
+
"engines": {
|
|
2080
|
+
"node": ">=18.0.0"
|
|
2081
|
+
}
|
|
2082
|
+
},
|
|
2083
|
+
"node_modules/eventsource-parser": {
|
|
2084
|
+
"version": "3.0.6",
|
|
2085
|
+
"resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.0.6.tgz",
|
|
2086
|
+
"integrity": "sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==",
|
|
2087
|
+
"license": "MIT",
|
|
2088
|
+
"engines": {
|
|
2089
|
+
"node": ">=18.0.0"
|
|
2090
|
+
}
|
|
2091
|
+
},
|
|
2092
|
+
"node_modules/expand-template": {
|
|
2093
|
+
"version": "2.0.3",
|
|
2094
|
+
"resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz",
|
|
2095
|
+
"integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
|
|
2096
|
+
"license": "(MIT OR WTFPL)",
|
|
2097
|
+
"engines": {
|
|
2098
|
+
"node": ">=6"
|
|
2099
|
+
}
|
|
2100
|
+
},
|
|
2101
|
+
"node_modules/express": {
|
|
2102
|
+
"version": "4.21.2",
|
|
2103
|
+
"resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
|
|
2104
|
+
"integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
|
|
2105
|
+
"license": "MIT",
|
|
2106
|
+
"dependencies": {
|
|
2107
|
+
"accepts": "~1.3.8",
|
|
2108
|
+
"array-flatten": "1.1.1",
|
|
2109
|
+
"body-parser": "1.20.3",
|
|
2110
|
+
"content-disposition": "0.5.4",
|
|
2111
|
+
"content-type": "~1.0.4",
|
|
2112
|
+
"cookie": "0.7.1",
|
|
2113
|
+
"cookie-signature": "1.0.6",
|
|
2114
|
+
"debug": "2.6.9",
|
|
2115
|
+
"depd": "2.0.0",
|
|
2116
|
+
"encodeurl": "~2.0.0",
|
|
2117
|
+
"escape-html": "~1.0.3",
|
|
2118
|
+
"etag": "~1.8.1",
|
|
2119
|
+
"finalhandler": "1.3.1",
|
|
2120
|
+
"fresh": "0.5.2",
|
|
2121
|
+
"http-errors": "2.0.0",
|
|
2122
|
+
"merge-descriptors": "1.0.3",
|
|
2123
|
+
"methods": "~1.1.2",
|
|
2124
|
+
"on-finished": "2.4.1",
|
|
2125
|
+
"parseurl": "~1.3.3",
|
|
2126
|
+
"path-to-regexp": "0.1.12",
|
|
2127
|
+
"proxy-addr": "~2.0.7",
|
|
2128
|
+
"qs": "6.13.0",
|
|
2129
|
+
"range-parser": "~1.2.1",
|
|
2130
|
+
"safe-buffer": "5.2.1",
|
|
2131
|
+
"send": "0.19.0",
|
|
2132
|
+
"serve-static": "1.16.2",
|
|
2133
|
+
"setprototypeof": "1.2.0",
|
|
2134
|
+
"statuses": "2.0.1",
|
|
2135
|
+
"type-is": "~1.6.18",
|
|
2136
|
+
"utils-merge": "1.0.1",
|
|
2137
|
+
"vary": "~1.1.2"
|
|
2138
|
+
},
|
|
2139
|
+
"engines": {
|
|
2140
|
+
"node": ">= 0.10.0"
|
|
2141
|
+
},
|
|
2142
|
+
"funding": {
|
|
2143
|
+
"type": "opencollective",
|
|
2144
|
+
"url": "https://opencollective.com/express"
|
|
2145
|
+
}
|
|
2146
|
+
},
|
|
2147
|
+
"node_modules/express-rate-limit": {
|
|
2148
|
+
"version": "7.5.1",
|
|
2149
|
+
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-7.5.1.tgz",
|
|
2150
|
+
"integrity": "sha512-7iN8iPMDzOMHPUYllBEsQdWVB6fPDMPqwjBaFrgr4Jgr/+okjvzAy+UHlYYL/Vs0OsOrMkwS6PJDkFlJwoxUnw==",
|
|
2151
|
+
"license": "MIT",
|
|
2152
|
+
"engines": {
|
|
2153
|
+
"node": ">= 16"
|
|
2154
|
+
},
|
|
2155
|
+
"funding": {
|
|
2156
|
+
"url": "https://github.com/sponsors/express-rate-limit"
|
|
2157
|
+
},
|
|
2158
|
+
"peerDependencies": {
|
|
2159
|
+
"express": ">= 4.11"
|
|
2160
|
+
}
|
|
2161
|
+
},
|
|
2162
|
+
"node_modules/express/node_modules/debug": {
|
|
2163
|
+
"version": "2.6.9",
|
|
2164
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
2165
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
2166
|
+
"license": "MIT",
|
|
2167
|
+
"dependencies": {
|
|
2168
|
+
"ms": "2.0.0"
|
|
2169
|
+
}
|
|
2170
|
+
},
|
|
2171
|
+
"node_modules/express/node_modules/ms": {
|
|
2172
|
+
"version": "2.0.0",
|
|
2173
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
2174
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
2175
|
+
"license": "MIT"
|
|
2176
|
+
},
|
|
2177
|
+
"node_modules/fast-deep-equal": {
|
|
2178
|
+
"version": "3.1.3",
|
|
2179
|
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
2180
|
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
|
2181
|
+
"license": "MIT"
|
|
2182
|
+
},
|
|
2183
|
+
"node_modules/fast-uri": {
|
|
2184
|
+
"version": "3.1.0",
|
|
2185
|
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz",
|
|
2186
|
+
"integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==",
|
|
2187
|
+
"funding": [
|
|
2188
|
+
{
|
|
2189
|
+
"type": "github",
|
|
2190
|
+
"url": "https://github.com/sponsors/fastify"
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
"type": "opencollective",
|
|
2194
|
+
"url": "https://opencollective.com/fastify"
|
|
2195
|
+
}
|
|
2196
|
+
],
|
|
2197
|
+
"license": "BSD-3-Clause"
|
|
2198
|
+
},
|
|
2199
|
+
"node_modules/file-uri-to-path": {
|
|
2200
|
+
"version": "1.0.0",
|
|
2201
|
+
"resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
|
|
2202
|
+
"integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
|
|
2203
|
+
"license": "MIT"
|
|
2204
|
+
},
|
|
2205
|
+
"node_modules/finalhandler": {
|
|
2206
|
+
"version": "1.3.1",
|
|
2207
|
+
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz",
|
|
2208
|
+
"integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==",
|
|
2209
|
+
"license": "MIT",
|
|
2210
|
+
"dependencies": {
|
|
2211
|
+
"debug": "2.6.9",
|
|
2212
|
+
"encodeurl": "~2.0.0",
|
|
2213
|
+
"escape-html": "~1.0.3",
|
|
2214
|
+
"on-finished": "2.4.1",
|
|
2215
|
+
"parseurl": "~1.3.3",
|
|
2216
|
+
"statuses": "2.0.1",
|
|
2217
|
+
"unpipe": "~1.0.0"
|
|
2218
|
+
},
|
|
2219
|
+
"engines": {
|
|
2220
|
+
"node": ">= 0.8"
|
|
2221
|
+
}
|
|
2222
|
+
},
|
|
2223
|
+
"node_modules/finalhandler/node_modules/debug": {
|
|
2224
|
+
"version": "2.6.9",
|
|
2225
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
2226
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
2227
|
+
"license": "MIT",
|
|
2228
|
+
"dependencies": {
|
|
2229
|
+
"ms": "2.0.0"
|
|
2230
|
+
}
|
|
2231
|
+
},
|
|
2232
|
+
"node_modules/finalhandler/node_modules/ms": {
|
|
2233
|
+
"version": "2.0.0",
|
|
2234
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
2235
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
2236
|
+
"license": "MIT"
|
|
2237
|
+
},
|
|
2238
|
+
"node_modules/forwarded": {
|
|
2239
|
+
"version": "0.2.0",
|
|
2240
|
+
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
|
|
2241
|
+
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
|
|
2242
|
+
"license": "MIT",
|
|
2243
|
+
"engines": {
|
|
2244
|
+
"node": ">= 0.6"
|
|
2245
|
+
}
|
|
2246
|
+
},
|
|
2247
|
+
"node_modules/fresh": {
|
|
2248
|
+
"version": "0.5.2",
|
|
2249
|
+
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
|
|
2250
|
+
"integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
|
|
2251
|
+
"license": "MIT",
|
|
2252
|
+
"engines": {
|
|
2253
|
+
"node": ">= 0.6"
|
|
2254
|
+
}
|
|
2255
|
+
},
|
|
2256
|
+
"node_modules/fs-constants": {
|
|
2257
|
+
"version": "1.0.0",
|
|
2258
|
+
"resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
|
|
2259
|
+
"integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
|
|
2260
|
+
"license": "MIT"
|
|
2261
|
+
},
|
|
2262
|
+
"node_modules/fsevents": {
|
|
2263
|
+
"version": "2.3.3",
|
|
2264
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
2265
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
2266
|
+
"dev": true,
|
|
2267
|
+
"hasInstallScript": true,
|
|
2268
|
+
"license": "MIT",
|
|
2269
|
+
"optional": true,
|
|
2270
|
+
"os": [
|
|
2271
|
+
"darwin"
|
|
2272
|
+
],
|
|
2273
|
+
"engines": {
|
|
2274
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
2275
|
+
}
|
|
2276
|
+
},
|
|
2277
|
+
"node_modules/function-bind": {
|
|
2278
|
+
"version": "1.1.2",
|
|
2279
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
2280
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
2281
|
+
"license": "MIT",
|
|
2282
|
+
"funding": {
|
|
2283
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2284
|
+
}
|
|
2285
|
+
},
|
|
2286
|
+
"node_modules/gensync": {
|
|
2287
|
+
"version": "1.0.0-beta.2",
|
|
2288
|
+
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
|
|
2289
|
+
"integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
|
|
2290
|
+
"dev": true,
|
|
2291
|
+
"license": "MIT",
|
|
2292
|
+
"engines": {
|
|
2293
|
+
"node": ">=6.9.0"
|
|
2294
|
+
}
|
|
2295
|
+
},
|
|
2296
|
+
"node_modules/get-intrinsic": {
|
|
2297
|
+
"version": "1.3.0",
|
|
2298
|
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
|
2299
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
2300
|
+
"license": "MIT",
|
|
2301
|
+
"dependencies": {
|
|
2302
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
2303
|
+
"es-define-property": "^1.0.1",
|
|
2304
|
+
"es-errors": "^1.3.0",
|
|
2305
|
+
"es-object-atoms": "^1.1.1",
|
|
2306
|
+
"function-bind": "^1.1.2",
|
|
2307
|
+
"get-proto": "^1.0.1",
|
|
2308
|
+
"gopd": "^1.2.0",
|
|
2309
|
+
"has-symbols": "^1.1.0",
|
|
2310
|
+
"hasown": "^2.0.2",
|
|
2311
|
+
"math-intrinsics": "^1.1.0"
|
|
2312
|
+
},
|
|
2313
|
+
"engines": {
|
|
2314
|
+
"node": ">= 0.4"
|
|
2315
|
+
},
|
|
2316
|
+
"funding": {
|
|
2317
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2318
|
+
}
|
|
2319
|
+
},
|
|
2320
|
+
"node_modules/get-proto": {
|
|
2321
|
+
"version": "1.0.1",
|
|
2322
|
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
|
2323
|
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
|
2324
|
+
"license": "MIT",
|
|
2325
|
+
"dependencies": {
|
|
2326
|
+
"dunder-proto": "^1.0.1",
|
|
2327
|
+
"es-object-atoms": "^1.0.0"
|
|
2328
|
+
},
|
|
2329
|
+
"engines": {
|
|
2330
|
+
"node": ">= 0.4"
|
|
2331
|
+
}
|
|
2332
|
+
},
|
|
2333
|
+
"node_modules/github-from-package": {
|
|
2334
|
+
"version": "0.0.0",
|
|
2335
|
+
"resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
|
|
2336
|
+
"integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==",
|
|
2337
|
+
"license": "MIT"
|
|
2338
|
+
},
|
|
2339
|
+
"node_modules/gopd": {
|
|
2340
|
+
"version": "1.2.0",
|
|
2341
|
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
|
2342
|
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
|
2343
|
+
"license": "MIT",
|
|
2344
|
+
"engines": {
|
|
2345
|
+
"node": ">= 0.4"
|
|
2346
|
+
},
|
|
2347
|
+
"funding": {
|
|
2348
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2349
|
+
}
|
|
2350
|
+
},
|
|
2351
|
+
"node_modules/has-symbols": {
|
|
2352
|
+
"version": "1.1.0",
|
|
2353
|
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
2354
|
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
2355
|
+
"license": "MIT",
|
|
2356
|
+
"engines": {
|
|
2357
|
+
"node": ">= 0.4"
|
|
2358
|
+
},
|
|
2359
|
+
"funding": {
|
|
2360
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2361
|
+
}
|
|
2362
|
+
},
|
|
2363
|
+
"node_modules/hasown": {
|
|
2364
|
+
"version": "2.0.2",
|
|
2365
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
|
2366
|
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
|
2367
|
+
"license": "MIT",
|
|
2368
|
+
"dependencies": {
|
|
2369
|
+
"function-bind": "^1.1.2"
|
|
2370
|
+
},
|
|
2371
|
+
"engines": {
|
|
2372
|
+
"node": ">= 0.4"
|
|
2373
|
+
}
|
|
2374
|
+
},
|
|
2375
|
+
"node_modules/http-errors": {
|
|
2376
|
+
"version": "2.0.0",
|
|
2377
|
+
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
|
|
2378
|
+
"integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
|
|
2379
|
+
"license": "MIT",
|
|
2380
|
+
"dependencies": {
|
|
2381
|
+
"depd": "2.0.0",
|
|
2382
|
+
"inherits": "2.0.4",
|
|
2383
|
+
"setprototypeof": "1.2.0",
|
|
2384
|
+
"statuses": "2.0.1",
|
|
2385
|
+
"toidentifier": "1.0.1"
|
|
2386
|
+
},
|
|
2387
|
+
"engines": {
|
|
2388
|
+
"node": ">= 0.8"
|
|
2389
|
+
}
|
|
2390
|
+
},
|
|
2391
|
+
"node_modules/iconv-lite": {
|
|
2392
|
+
"version": "0.4.24",
|
|
2393
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
|
|
2394
|
+
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
|
2395
|
+
"license": "MIT",
|
|
2396
|
+
"dependencies": {
|
|
2397
|
+
"safer-buffer": ">= 2.1.2 < 3"
|
|
2398
|
+
},
|
|
2399
|
+
"engines": {
|
|
2400
|
+
"node": ">=0.10.0"
|
|
2401
|
+
}
|
|
2402
|
+
},
|
|
2403
|
+
"node_modules/ieee754": {
|
|
2404
|
+
"version": "1.2.1",
|
|
2405
|
+
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
|
2406
|
+
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
|
2407
|
+
"funding": [
|
|
2408
|
+
{
|
|
2409
|
+
"type": "github",
|
|
2410
|
+
"url": "https://github.com/sponsors/feross"
|
|
2411
|
+
},
|
|
2412
|
+
{
|
|
2413
|
+
"type": "patreon",
|
|
2414
|
+
"url": "https://www.patreon.com/feross"
|
|
2415
|
+
},
|
|
2416
|
+
{
|
|
2417
|
+
"type": "consulting",
|
|
2418
|
+
"url": "https://feross.org/support"
|
|
2419
|
+
}
|
|
2420
|
+
],
|
|
2421
|
+
"license": "BSD-3-Clause"
|
|
2422
|
+
},
|
|
2423
|
+
"node_modules/inherits": {
|
|
2424
|
+
"version": "2.0.4",
|
|
2425
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
2426
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
2427
|
+
"license": "ISC"
|
|
2428
|
+
},
|
|
2429
|
+
"node_modules/ini": {
|
|
2430
|
+
"version": "1.3.8",
|
|
2431
|
+
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
|
|
2432
|
+
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
|
|
2433
|
+
"license": "ISC"
|
|
2434
|
+
},
|
|
2435
|
+
"node_modules/ipaddr.js": {
|
|
2436
|
+
"version": "1.9.1",
|
|
2437
|
+
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
|
2438
|
+
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
|
|
2439
|
+
"license": "MIT",
|
|
2440
|
+
"engines": {
|
|
2441
|
+
"node": ">= 0.10"
|
|
2442
|
+
}
|
|
2443
|
+
},
|
|
2444
|
+
"node_modules/is-promise": {
|
|
2445
|
+
"version": "4.0.0",
|
|
2446
|
+
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
|
|
2447
|
+
"integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
|
|
2448
|
+
"license": "MIT"
|
|
2449
|
+
},
|
|
2450
|
+
"node_modules/isexe": {
|
|
2451
|
+
"version": "2.0.0",
|
|
2452
|
+
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
|
2453
|
+
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
|
|
2454
|
+
"license": "ISC"
|
|
2455
|
+
},
|
|
2456
|
+
"node_modules/js-tokens": {
|
|
2457
|
+
"version": "4.0.0",
|
|
2458
|
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
|
2459
|
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
|
2460
|
+
"license": "MIT"
|
|
2461
|
+
},
|
|
2462
|
+
"node_modules/jsesc": {
|
|
2463
|
+
"version": "3.1.0",
|
|
2464
|
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
|
|
2465
|
+
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
|
|
2466
|
+
"dev": true,
|
|
2467
|
+
"license": "MIT",
|
|
2468
|
+
"bin": {
|
|
2469
|
+
"jsesc": "bin/jsesc"
|
|
2470
|
+
},
|
|
2471
|
+
"engines": {
|
|
2472
|
+
"node": ">=6"
|
|
2473
|
+
}
|
|
2474
|
+
},
|
|
2475
|
+
"node_modules/json-schema-traverse": {
|
|
2476
|
+
"version": "1.0.0",
|
|
2477
|
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
2478
|
+
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
|
|
2479
|
+
"license": "MIT"
|
|
2480
|
+
},
|
|
2481
|
+
"node_modules/json5": {
|
|
2482
|
+
"version": "2.2.3",
|
|
2483
|
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
|
|
2484
|
+
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
|
|
2485
|
+
"dev": true,
|
|
2486
|
+
"license": "MIT",
|
|
2487
|
+
"bin": {
|
|
2488
|
+
"json5": "lib/cli.js"
|
|
2489
|
+
},
|
|
2490
|
+
"engines": {
|
|
2491
|
+
"node": ">=6"
|
|
2492
|
+
}
|
|
2493
|
+
},
|
|
2494
|
+
"node_modules/loose-envify": {
|
|
2495
|
+
"version": "1.4.0",
|
|
2496
|
+
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
|
2497
|
+
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
|
|
2498
|
+
"license": "MIT",
|
|
2499
|
+
"dependencies": {
|
|
2500
|
+
"js-tokens": "^3.0.0 || ^4.0.0"
|
|
2501
|
+
},
|
|
2502
|
+
"bin": {
|
|
2503
|
+
"loose-envify": "cli.js"
|
|
2504
|
+
}
|
|
2505
|
+
},
|
|
2506
|
+
"node_modules/lru-cache": {
|
|
2507
|
+
"version": "5.1.1",
|
|
2508
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
|
|
2509
|
+
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
|
|
2510
|
+
"dev": true,
|
|
2511
|
+
"license": "ISC",
|
|
2512
|
+
"dependencies": {
|
|
2513
|
+
"yallist": "^3.0.2"
|
|
2514
|
+
}
|
|
2515
|
+
},
|
|
2516
|
+
"node_modules/math-intrinsics": {
|
|
2517
|
+
"version": "1.1.0",
|
|
2518
|
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
2519
|
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
|
2520
|
+
"license": "MIT",
|
|
2521
|
+
"engines": {
|
|
2522
|
+
"node": ">= 0.4"
|
|
2523
|
+
}
|
|
2524
|
+
},
|
|
2525
|
+
"node_modules/mcp-shark-common": {
|
|
2526
|
+
"version": "1.0.0",
|
|
2527
|
+
"resolved": "git+ssh://git@github.com/mcp-shark/mcp-shark-common.git#25a0287eca19453ba5d5a9c9cc16534bd2abfb07",
|
|
2528
|
+
"license": "ISC",
|
|
2529
|
+
"dependencies": {
|
|
2530
|
+
"better-sqlite3": "^12.4.1"
|
|
2531
|
+
}
|
|
2532
|
+
},
|
|
2533
|
+
"node_modules/media-typer": {
|
|
2534
|
+
"version": "0.3.0",
|
|
2535
|
+
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
|
|
2536
|
+
"integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
|
|
2537
|
+
"license": "MIT",
|
|
2538
|
+
"engines": {
|
|
2539
|
+
"node": ">= 0.6"
|
|
2540
|
+
}
|
|
2541
|
+
},
|
|
2542
|
+
"node_modules/merge-descriptors": {
|
|
2543
|
+
"version": "1.0.3",
|
|
2544
|
+
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
|
|
2545
|
+
"integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
|
|
2546
|
+
"license": "MIT",
|
|
2547
|
+
"funding": {
|
|
2548
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2549
|
+
}
|
|
2550
|
+
},
|
|
2551
|
+
"node_modules/methods": {
|
|
2552
|
+
"version": "1.1.2",
|
|
2553
|
+
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
|
|
2554
|
+
"integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
|
|
2555
|
+
"license": "MIT",
|
|
2556
|
+
"engines": {
|
|
2557
|
+
"node": ">= 0.6"
|
|
2558
|
+
}
|
|
2559
|
+
},
|
|
2560
|
+
"node_modules/mime": {
|
|
2561
|
+
"version": "1.6.0",
|
|
2562
|
+
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
|
2563
|
+
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
|
|
2564
|
+
"license": "MIT",
|
|
2565
|
+
"bin": {
|
|
2566
|
+
"mime": "cli.js"
|
|
2567
|
+
},
|
|
2568
|
+
"engines": {
|
|
2569
|
+
"node": ">=4"
|
|
2570
|
+
}
|
|
2571
|
+
},
|
|
2572
|
+
"node_modules/mime-db": {
|
|
2573
|
+
"version": "1.52.0",
|
|
2574
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
|
2575
|
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
2576
|
+
"license": "MIT",
|
|
2577
|
+
"engines": {
|
|
2578
|
+
"node": ">= 0.6"
|
|
2579
|
+
}
|
|
2580
|
+
},
|
|
2581
|
+
"node_modules/mime-types": {
|
|
2582
|
+
"version": "2.1.35",
|
|
2583
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
|
2584
|
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
|
2585
|
+
"license": "MIT",
|
|
2586
|
+
"dependencies": {
|
|
2587
|
+
"mime-db": "1.52.0"
|
|
2588
|
+
},
|
|
2589
|
+
"engines": {
|
|
2590
|
+
"node": ">= 0.6"
|
|
2591
|
+
}
|
|
2592
|
+
},
|
|
2593
|
+
"node_modules/mimic-response": {
|
|
2594
|
+
"version": "3.1.0",
|
|
2595
|
+
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
|
|
2596
|
+
"integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
|
|
2597
|
+
"license": "MIT",
|
|
2598
|
+
"engines": {
|
|
2599
|
+
"node": ">=10"
|
|
2600
|
+
},
|
|
2601
|
+
"funding": {
|
|
2602
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2603
|
+
}
|
|
2604
|
+
},
|
|
2605
|
+
"node_modules/minimist": {
|
|
2606
|
+
"version": "1.2.8",
|
|
2607
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
|
|
2608
|
+
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
|
|
2609
|
+
"license": "MIT",
|
|
2610
|
+
"funding": {
|
|
2611
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2612
|
+
}
|
|
2613
|
+
},
|
|
2614
|
+
"node_modules/mkdirp-classic": {
|
|
2615
|
+
"version": "0.5.3",
|
|
2616
|
+
"resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
|
|
2617
|
+
"integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
|
|
2618
|
+
"license": "MIT"
|
|
2619
|
+
},
|
|
2620
|
+
"node_modules/ms": {
|
|
2621
|
+
"version": "2.1.3",
|
|
2622
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
2623
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
2624
|
+
"license": "MIT"
|
|
2625
|
+
},
|
|
2626
|
+
"node_modules/nanoid": {
|
|
2627
|
+
"version": "3.3.11",
|
|
2628
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
2629
|
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
2630
|
+
"dev": true,
|
|
2631
|
+
"funding": [
|
|
2632
|
+
{
|
|
2633
|
+
"type": "github",
|
|
2634
|
+
"url": "https://github.com/sponsors/ai"
|
|
2635
|
+
}
|
|
2636
|
+
],
|
|
2637
|
+
"license": "MIT",
|
|
2638
|
+
"bin": {
|
|
2639
|
+
"nanoid": "bin/nanoid.cjs"
|
|
2640
|
+
},
|
|
2641
|
+
"engines": {
|
|
2642
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
2643
|
+
}
|
|
2644
|
+
},
|
|
2645
|
+
"node_modules/napi-build-utils": {
|
|
2646
|
+
"version": "2.0.0",
|
|
2647
|
+
"resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-2.0.0.tgz",
|
|
2648
|
+
"integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==",
|
|
2649
|
+
"license": "MIT"
|
|
2650
|
+
},
|
|
2651
|
+
"node_modules/negotiator": {
|
|
2652
|
+
"version": "0.6.3",
|
|
2653
|
+
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
|
|
2654
|
+
"integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
|
|
2655
|
+
"license": "MIT",
|
|
2656
|
+
"engines": {
|
|
2657
|
+
"node": ">= 0.6"
|
|
2658
|
+
}
|
|
2659
|
+
},
|
|
2660
|
+
"node_modules/node-abi": {
|
|
2661
|
+
"version": "3.85.0",
|
|
2662
|
+
"resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.85.0.tgz",
|
|
2663
|
+
"integrity": "sha512-zsFhmbkAzwhTft6nd3VxcG0cvJsT70rL+BIGHWVq5fi6MwGrHwzqKaxXE+Hl2GmnGItnDKPPkO5/LQqjVkIdFg==",
|
|
2664
|
+
"license": "MIT",
|
|
2665
|
+
"dependencies": {
|
|
2666
|
+
"semver": "^7.3.5"
|
|
2667
|
+
},
|
|
2668
|
+
"engines": {
|
|
2669
|
+
"node": ">=10"
|
|
2670
|
+
}
|
|
2671
|
+
},
|
|
2672
|
+
"node_modules/node-abi/node_modules/semver": {
|
|
2673
|
+
"version": "7.7.3",
|
|
2674
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
|
|
2675
|
+
"integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
|
|
2676
|
+
"license": "ISC",
|
|
2677
|
+
"bin": {
|
|
2678
|
+
"semver": "bin/semver.js"
|
|
2679
|
+
},
|
|
2680
|
+
"engines": {
|
|
2681
|
+
"node": ">=10"
|
|
2682
|
+
}
|
|
2683
|
+
},
|
|
2684
|
+
"node_modules/node-releases": {
|
|
2685
|
+
"version": "2.0.27",
|
|
2686
|
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
|
|
2687
|
+
"integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
|
|
2688
|
+
"dev": true,
|
|
2689
|
+
"license": "MIT"
|
|
2690
|
+
},
|
|
2691
|
+
"node_modules/object-assign": {
|
|
2692
|
+
"version": "4.1.1",
|
|
2693
|
+
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
2694
|
+
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
|
|
2695
|
+
"license": "MIT",
|
|
2696
|
+
"engines": {
|
|
2697
|
+
"node": ">=0.10.0"
|
|
2698
|
+
}
|
|
2699
|
+
},
|
|
2700
|
+
"node_modules/object-inspect": {
|
|
2701
|
+
"version": "1.13.4",
|
|
2702
|
+
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
|
|
2703
|
+
"integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
|
|
2704
|
+
"license": "MIT",
|
|
2705
|
+
"engines": {
|
|
2706
|
+
"node": ">= 0.4"
|
|
2707
|
+
},
|
|
2708
|
+
"funding": {
|
|
2709
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2710
|
+
}
|
|
2711
|
+
},
|
|
2712
|
+
"node_modules/on-finished": {
|
|
2713
|
+
"version": "2.4.1",
|
|
2714
|
+
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
|
|
2715
|
+
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
|
|
2716
|
+
"license": "MIT",
|
|
2717
|
+
"dependencies": {
|
|
2718
|
+
"ee-first": "1.1.1"
|
|
2719
|
+
},
|
|
2720
|
+
"engines": {
|
|
2721
|
+
"node": ">= 0.8"
|
|
2722
|
+
}
|
|
2723
|
+
},
|
|
2724
|
+
"node_modules/once": {
|
|
2725
|
+
"version": "1.4.0",
|
|
2726
|
+
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
2727
|
+
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
|
2728
|
+
"license": "ISC",
|
|
2729
|
+
"dependencies": {
|
|
2730
|
+
"wrappy": "1"
|
|
2731
|
+
}
|
|
2732
|
+
},
|
|
2733
|
+
"node_modules/parseurl": {
|
|
2734
|
+
"version": "1.3.3",
|
|
2735
|
+
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
|
|
2736
|
+
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
|
|
2737
|
+
"license": "MIT",
|
|
2738
|
+
"engines": {
|
|
2739
|
+
"node": ">= 0.8"
|
|
2740
|
+
}
|
|
2741
|
+
},
|
|
2742
|
+
"node_modules/path-key": {
|
|
2743
|
+
"version": "3.1.1",
|
|
2744
|
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
|
|
2745
|
+
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
|
|
2746
|
+
"license": "MIT",
|
|
2747
|
+
"engines": {
|
|
2748
|
+
"node": ">=8"
|
|
2749
|
+
}
|
|
2750
|
+
},
|
|
2751
|
+
"node_modules/path-to-regexp": {
|
|
2752
|
+
"version": "0.1.12",
|
|
2753
|
+
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
|
|
2754
|
+
"integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==",
|
|
2755
|
+
"license": "MIT"
|
|
2756
|
+
},
|
|
2757
|
+
"node_modules/picocolors": {
|
|
2758
|
+
"version": "1.1.1",
|
|
2759
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
2760
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
2761
|
+
"dev": true,
|
|
2762
|
+
"license": "ISC"
|
|
2763
|
+
},
|
|
2764
|
+
"node_modules/pkce-challenge": {
|
|
2765
|
+
"version": "5.0.0",
|
|
2766
|
+
"resolved": "https://registry.npmjs.org/pkce-challenge/-/pkce-challenge-5.0.0.tgz",
|
|
2767
|
+
"integrity": "sha512-ueGLflrrnvwB3xuo/uGob5pd5FN7l0MsLf0Z87o/UQmRtwjvfylfc9MurIxRAWywCYTgrvpXBcqjV4OfCYGCIQ==",
|
|
2768
|
+
"license": "MIT",
|
|
2769
|
+
"engines": {
|
|
2770
|
+
"node": ">=16.20.0"
|
|
2771
|
+
}
|
|
2772
|
+
},
|
|
2773
|
+
"node_modules/postcss": {
|
|
2774
|
+
"version": "8.5.6",
|
|
2775
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
|
2776
|
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
|
2777
|
+
"dev": true,
|
|
2778
|
+
"funding": [
|
|
2779
|
+
{
|
|
2780
|
+
"type": "opencollective",
|
|
2781
|
+
"url": "https://opencollective.com/postcss/"
|
|
2782
|
+
},
|
|
2783
|
+
{
|
|
2784
|
+
"type": "tidelift",
|
|
2785
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
2786
|
+
},
|
|
2787
|
+
{
|
|
2788
|
+
"type": "github",
|
|
2789
|
+
"url": "https://github.com/sponsors/ai"
|
|
2790
|
+
}
|
|
2791
|
+
],
|
|
2792
|
+
"license": "MIT",
|
|
2793
|
+
"dependencies": {
|
|
2794
|
+
"nanoid": "^3.3.11",
|
|
2795
|
+
"picocolors": "^1.1.1",
|
|
2796
|
+
"source-map-js": "^1.2.1"
|
|
2797
|
+
},
|
|
2798
|
+
"engines": {
|
|
2799
|
+
"node": "^10 || ^12 || >=14"
|
|
2800
|
+
}
|
|
2801
|
+
},
|
|
2802
|
+
"node_modules/prebuild-install": {
|
|
2803
|
+
"version": "7.1.3",
|
|
2804
|
+
"resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.3.tgz",
|
|
2805
|
+
"integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==",
|
|
2806
|
+
"license": "MIT",
|
|
2807
|
+
"dependencies": {
|
|
2808
|
+
"detect-libc": "^2.0.0",
|
|
2809
|
+
"expand-template": "^2.0.3",
|
|
2810
|
+
"github-from-package": "0.0.0",
|
|
2811
|
+
"minimist": "^1.2.3",
|
|
2812
|
+
"mkdirp-classic": "^0.5.3",
|
|
2813
|
+
"napi-build-utils": "^2.0.0",
|
|
2814
|
+
"node-abi": "^3.3.0",
|
|
2815
|
+
"pump": "^3.0.0",
|
|
2816
|
+
"rc": "^1.2.7",
|
|
2817
|
+
"simple-get": "^4.0.0",
|
|
2818
|
+
"tar-fs": "^2.0.0",
|
|
2819
|
+
"tunnel-agent": "^0.6.0"
|
|
2820
|
+
},
|
|
2821
|
+
"bin": {
|
|
2822
|
+
"prebuild-install": "bin.js"
|
|
2823
|
+
},
|
|
2824
|
+
"engines": {
|
|
2825
|
+
"node": ">=10"
|
|
2826
|
+
}
|
|
2827
|
+
},
|
|
2828
|
+
"node_modules/proxy-addr": {
|
|
2829
|
+
"version": "2.0.7",
|
|
2830
|
+
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
|
2831
|
+
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
|
|
2832
|
+
"license": "MIT",
|
|
2833
|
+
"dependencies": {
|
|
2834
|
+
"forwarded": "0.2.0",
|
|
2835
|
+
"ipaddr.js": "1.9.1"
|
|
2836
|
+
},
|
|
2837
|
+
"engines": {
|
|
2838
|
+
"node": ">= 0.10"
|
|
2839
|
+
}
|
|
2840
|
+
},
|
|
2841
|
+
"node_modules/pump": {
|
|
2842
|
+
"version": "3.0.3",
|
|
2843
|
+
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz",
|
|
2844
|
+
"integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==",
|
|
2845
|
+
"license": "MIT",
|
|
2846
|
+
"dependencies": {
|
|
2847
|
+
"end-of-stream": "^1.1.0",
|
|
2848
|
+
"once": "^1.3.1"
|
|
2849
|
+
}
|
|
2850
|
+
},
|
|
2851
|
+
"node_modules/qs": {
|
|
2852
|
+
"version": "6.13.0",
|
|
2853
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
|
|
2854
|
+
"integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
|
|
2855
|
+
"license": "BSD-3-Clause",
|
|
2856
|
+
"dependencies": {
|
|
2857
|
+
"side-channel": "^1.0.6"
|
|
2858
|
+
},
|
|
2859
|
+
"engines": {
|
|
2860
|
+
"node": ">=0.6"
|
|
2861
|
+
},
|
|
2862
|
+
"funding": {
|
|
2863
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2864
|
+
}
|
|
2865
|
+
},
|
|
2866
|
+
"node_modules/range-parser": {
|
|
2867
|
+
"version": "1.2.1",
|
|
2868
|
+
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
|
|
2869
|
+
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
|
|
2870
|
+
"license": "MIT",
|
|
2871
|
+
"engines": {
|
|
2872
|
+
"node": ">= 0.6"
|
|
2873
|
+
}
|
|
2874
|
+
},
|
|
2875
|
+
"node_modules/raw-body": {
|
|
2876
|
+
"version": "2.5.2",
|
|
2877
|
+
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
|
|
2878
|
+
"integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
|
|
2879
|
+
"license": "MIT",
|
|
2880
|
+
"dependencies": {
|
|
2881
|
+
"bytes": "3.1.2",
|
|
2882
|
+
"http-errors": "2.0.0",
|
|
2883
|
+
"iconv-lite": "0.4.24",
|
|
2884
|
+
"unpipe": "1.0.0"
|
|
2885
|
+
},
|
|
2886
|
+
"engines": {
|
|
2887
|
+
"node": ">= 0.8"
|
|
2888
|
+
}
|
|
2889
|
+
},
|
|
2890
|
+
"node_modules/rc": {
|
|
2891
|
+
"version": "1.2.8",
|
|
2892
|
+
"resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
|
|
2893
|
+
"integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
|
|
2894
|
+
"license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
|
|
2895
|
+
"dependencies": {
|
|
2896
|
+
"deep-extend": "^0.6.0",
|
|
2897
|
+
"ini": "~1.3.0",
|
|
2898
|
+
"minimist": "^1.2.0",
|
|
2899
|
+
"strip-json-comments": "~2.0.1"
|
|
2900
|
+
},
|
|
2901
|
+
"bin": {
|
|
2902
|
+
"rc": "cli.js"
|
|
2903
|
+
}
|
|
2904
|
+
},
|
|
2905
|
+
"node_modules/react": {
|
|
2906
|
+
"version": "18.3.1",
|
|
2907
|
+
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
|
|
2908
|
+
"integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
|
|
2909
|
+
"license": "MIT",
|
|
2910
|
+
"dependencies": {
|
|
2911
|
+
"loose-envify": "^1.1.0"
|
|
2912
|
+
},
|
|
2913
|
+
"engines": {
|
|
2914
|
+
"node": ">=0.10.0"
|
|
2915
|
+
}
|
|
2916
|
+
},
|
|
2917
|
+
"node_modules/react-dom": {
|
|
2918
|
+
"version": "18.3.1",
|
|
2919
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
|
|
2920
|
+
"integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
|
|
2921
|
+
"license": "MIT",
|
|
2922
|
+
"dependencies": {
|
|
2923
|
+
"loose-envify": "^1.1.0",
|
|
2924
|
+
"scheduler": "^0.23.2"
|
|
2925
|
+
},
|
|
2926
|
+
"peerDependencies": {
|
|
2927
|
+
"react": "^18.3.1"
|
|
2928
|
+
}
|
|
2929
|
+
},
|
|
2930
|
+
"node_modules/react-refresh": {
|
|
2931
|
+
"version": "0.17.0",
|
|
2932
|
+
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
|
|
2933
|
+
"integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==",
|
|
2934
|
+
"dev": true,
|
|
2935
|
+
"license": "MIT",
|
|
2936
|
+
"engines": {
|
|
2937
|
+
"node": ">=0.10.0"
|
|
2938
|
+
}
|
|
2939
|
+
},
|
|
2940
|
+
"node_modules/readable-stream": {
|
|
2941
|
+
"version": "3.6.2",
|
|
2942
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
|
|
2943
|
+
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
|
2944
|
+
"license": "MIT",
|
|
2945
|
+
"dependencies": {
|
|
2946
|
+
"inherits": "^2.0.3",
|
|
2947
|
+
"string_decoder": "^1.1.1",
|
|
2948
|
+
"util-deprecate": "^1.0.1"
|
|
2949
|
+
},
|
|
2950
|
+
"engines": {
|
|
2951
|
+
"node": ">= 6"
|
|
2952
|
+
}
|
|
2953
|
+
},
|
|
2954
|
+
"node_modules/require-from-string": {
|
|
2955
|
+
"version": "2.0.2",
|
|
2956
|
+
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
2957
|
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
|
2958
|
+
"license": "MIT",
|
|
2959
|
+
"engines": {
|
|
2960
|
+
"node": ">=0.10.0"
|
|
2961
|
+
}
|
|
2962
|
+
},
|
|
2963
|
+
"node_modules/rollup": {
|
|
2964
|
+
"version": "4.53.2",
|
|
2965
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.2.tgz",
|
|
2966
|
+
"integrity": "sha512-MHngMYwGJVi6Fmnk6ISmnk7JAHRNF0UkuucA0CUW3N3a4KnONPEZz+vUanQP/ZC/iY1Qkf3bwPWzyY84wEks1g==",
|
|
2967
|
+
"dev": true,
|
|
2968
|
+
"license": "MIT",
|
|
2969
|
+
"dependencies": {
|
|
2970
|
+
"@types/estree": "1.0.8"
|
|
2971
|
+
},
|
|
2972
|
+
"bin": {
|
|
2973
|
+
"rollup": "dist/bin/rollup"
|
|
2974
|
+
},
|
|
2975
|
+
"engines": {
|
|
2976
|
+
"node": ">=18.0.0",
|
|
2977
|
+
"npm": ">=8.0.0"
|
|
2978
|
+
},
|
|
2979
|
+
"optionalDependencies": {
|
|
2980
|
+
"@rollup/rollup-android-arm-eabi": "4.53.2",
|
|
2981
|
+
"@rollup/rollup-android-arm64": "4.53.2",
|
|
2982
|
+
"@rollup/rollup-darwin-arm64": "4.53.2",
|
|
2983
|
+
"@rollup/rollup-darwin-x64": "4.53.2",
|
|
2984
|
+
"@rollup/rollup-freebsd-arm64": "4.53.2",
|
|
2985
|
+
"@rollup/rollup-freebsd-x64": "4.53.2",
|
|
2986
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.53.2",
|
|
2987
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.53.2",
|
|
2988
|
+
"@rollup/rollup-linux-arm64-gnu": "4.53.2",
|
|
2989
|
+
"@rollup/rollup-linux-arm64-musl": "4.53.2",
|
|
2990
|
+
"@rollup/rollup-linux-loong64-gnu": "4.53.2",
|
|
2991
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.53.2",
|
|
2992
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.53.2",
|
|
2993
|
+
"@rollup/rollup-linux-riscv64-musl": "4.53.2",
|
|
2994
|
+
"@rollup/rollup-linux-s390x-gnu": "4.53.2",
|
|
2995
|
+
"@rollup/rollup-linux-x64-gnu": "4.53.2",
|
|
2996
|
+
"@rollup/rollup-linux-x64-musl": "4.53.2",
|
|
2997
|
+
"@rollup/rollup-openharmony-arm64": "4.53.2",
|
|
2998
|
+
"@rollup/rollup-win32-arm64-msvc": "4.53.2",
|
|
2999
|
+
"@rollup/rollup-win32-ia32-msvc": "4.53.2",
|
|
3000
|
+
"@rollup/rollup-win32-x64-gnu": "4.53.2",
|
|
3001
|
+
"@rollup/rollup-win32-x64-msvc": "4.53.2",
|
|
3002
|
+
"fsevents": "~2.3.2"
|
|
3003
|
+
}
|
|
3004
|
+
},
|
|
3005
|
+
"node_modules/router": {
|
|
3006
|
+
"version": "2.2.0",
|
|
3007
|
+
"resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
|
|
3008
|
+
"integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
|
|
3009
|
+
"license": "MIT",
|
|
3010
|
+
"dependencies": {
|
|
3011
|
+
"debug": "^4.4.0",
|
|
3012
|
+
"depd": "^2.0.0",
|
|
3013
|
+
"is-promise": "^4.0.0",
|
|
3014
|
+
"parseurl": "^1.3.3",
|
|
3015
|
+
"path-to-regexp": "^8.0.0"
|
|
3016
|
+
},
|
|
3017
|
+
"engines": {
|
|
3018
|
+
"node": ">= 18"
|
|
3019
|
+
}
|
|
3020
|
+
},
|
|
3021
|
+
"node_modules/router/node_modules/path-to-regexp": {
|
|
3022
|
+
"version": "8.3.0",
|
|
3023
|
+
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.3.0.tgz",
|
|
3024
|
+
"integrity": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==",
|
|
3025
|
+
"license": "MIT",
|
|
3026
|
+
"funding": {
|
|
3027
|
+
"type": "opencollective",
|
|
3028
|
+
"url": "https://opencollective.com/express"
|
|
3029
|
+
}
|
|
3030
|
+
},
|
|
3031
|
+
"node_modules/safe-buffer": {
|
|
3032
|
+
"version": "5.2.1",
|
|
3033
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
3034
|
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
3035
|
+
"funding": [
|
|
3036
|
+
{
|
|
3037
|
+
"type": "github",
|
|
3038
|
+
"url": "https://github.com/sponsors/feross"
|
|
3039
|
+
},
|
|
3040
|
+
{
|
|
3041
|
+
"type": "patreon",
|
|
3042
|
+
"url": "https://www.patreon.com/feross"
|
|
3043
|
+
},
|
|
3044
|
+
{
|
|
3045
|
+
"type": "consulting",
|
|
3046
|
+
"url": "https://feross.org/support"
|
|
3047
|
+
}
|
|
3048
|
+
],
|
|
3049
|
+
"license": "MIT"
|
|
3050
|
+
},
|
|
3051
|
+
"node_modules/safer-buffer": {
|
|
3052
|
+
"version": "2.1.2",
|
|
3053
|
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
3054
|
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
3055
|
+
"license": "MIT"
|
|
3056
|
+
},
|
|
3057
|
+
"node_modules/scheduler": {
|
|
3058
|
+
"version": "0.23.2",
|
|
3059
|
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
|
|
3060
|
+
"integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
|
|
3061
|
+
"license": "MIT",
|
|
3062
|
+
"dependencies": {
|
|
3063
|
+
"loose-envify": "^1.1.0"
|
|
3064
|
+
}
|
|
3065
|
+
},
|
|
3066
|
+
"node_modules/semver": {
|
|
3067
|
+
"version": "6.3.1",
|
|
3068
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
3069
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
3070
|
+
"dev": true,
|
|
3071
|
+
"license": "ISC",
|
|
3072
|
+
"bin": {
|
|
3073
|
+
"semver": "bin/semver.js"
|
|
3074
|
+
}
|
|
3075
|
+
},
|
|
3076
|
+
"node_modules/send": {
|
|
3077
|
+
"version": "0.19.0",
|
|
3078
|
+
"resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
|
|
3079
|
+
"integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
|
|
3080
|
+
"license": "MIT",
|
|
3081
|
+
"dependencies": {
|
|
3082
|
+
"debug": "2.6.9",
|
|
3083
|
+
"depd": "2.0.0",
|
|
3084
|
+
"destroy": "1.2.0",
|
|
3085
|
+
"encodeurl": "~1.0.2",
|
|
3086
|
+
"escape-html": "~1.0.3",
|
|
3087
|
+
"etag": "~1.8.1",
|
|
3088
|
+
"fresh": "0.5.2",
|
|
3089
|
+
"http-errors": "2.0.0",
|
|
3090
|
+
"mime": "1.6.0",
|
|
3091
|
+
"ms": "2.1.3",
|
|
3092
|
+
"on-finished": "2.4.1",
|
|
3093
|
+
"range-parser": "~1.2.1",
|
|
3094
|
+
"statuses": "2.0.1"
|
|
3095
|
+
},
|
|
3096
|
+
"engines": {
|
|
3097
|
+
"node": ">= 0.8.0"
|
|
3098
|
+
}
|
|
3099
|
+
},
|
|
3100
|
+
"node_modules/send/node_modules/debug": {
|
|
3101
|
+
"version": "2.6.9",
|
|
3102
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
3103
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
3104
|
+
"license": "MIT",
|
|
3105
|
+
"dependencies": {
|
|
3106
|
+
"ms": "2.0.0"
|
|
3107
|
+
}
|
|
3108
|
+
},
|
|
3109
|
+
"node_modules/send/node_modules/debug/node_modules/ms": {
|
|
3110
|
+
"version": "2.0.0",
|
|
3111
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
3112
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
3113
|
+
"license": "MIT"
|
|
3114
|
+
},
|
|
3115
|
+
"node_modules/send/node_modules/encodeurl": {
|
|
3116
|
+
"version": "1.0.2",
|
|
3117
|
+
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
|
|
3118
|
+
"integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
|
|
3119
|
+
"license": "MIT",
|
|
3120
|
+
"engines": {
|
|
3121
|
+
"node": ">= 0.8"
|
|
3122
|
+
}
|
|
3123
|
+
},
|
|
3124
|
+
"node_modules/serve-static": {
|
|
3125
|
+
"version": "1.16.2",
|
|
3126
|
+
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
|
|
3127
|
+
"integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
|
|
3128
|
+
"license": "MIT",
|
|
3129
|
+
"dependencies": {
|
|
3130
|
+
"encodeurl": "~2.0.0",
|
|
3131
|
+
"escape-html": "~1.0.3",
|
|
3132
|
+
"parseurl": "~1.3.3",
|
|
3133
|
+
"send": "0.19.0"
|
|
3134
|
+
},
|
|
3135
|
+
"engines": {
|
|
3136
|
+
"node": ">= 0.8.0"
|
|
3137
|
+
}
|
|
3138
|
+
},
|
|
3139
|
+
"node_modules/setprototypeof": {
|
|
3140
|
+
"version": "1.2.0",
|
|
3141
|
+
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
|
3142
|
+
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
|
|
3143
|
+
"license": "ISC"
|
|
3144
|
+
},
|
|
3145
|
+
"node_modules/shebang-command": {
|
|
3146
|
+
"version": "2.0.0",
|
|
3147
|
+
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
|
3148
|
+
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
|
3149
|
+
"license": "MIT",
|
|
3150
|
+
"dependencies": {
|
|
3151
|
+
"shebang-regex": "^3.0.0"
|
|
3152
|
+
},
|
|
3153
|
+
"engines": {
|
|
3154
|
+
"node": ">=8"
|
|
3155
|
+
}
|
|
3156
|
+
},
|
|
3157
|
+
"node_modules/shebang-regex": {
|
|
3158
|
+
"version": "3.0.0",
|
|
3159
|
+
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
|
3160
|
+
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
|
|
3161
|
+
"license": "MIT",
|
|
3162
|
+
"engines": {
|
|
3163
|
+
"node": ">=8"
|
|
3164
|
+
}
|
|
3165
|
+
},
|
|
3166
|
+
"node_modules/side-channel": {
|
|
3167
|
+
"version": "1.1.0",
|
|
3168
|
+
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
|
|
3169
|
+
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
|
|
3170
|
+
"license": "MIT",
|
|
3171
|
+
"dependencies": {
|
|
3172
|
+
"es-errors": "^1.3.0",
|
|
3173
|
+
"object-inspect": "^1.13.3",
|
|
3174
|
+
"side-channel-list": "^1.0.0",
|
|
3175
|
+
"side-channel-map": "^1.0.1",
|
|
3176
|
+
"side-channel-weakmap": "^1.0.2"
|
|
3177
|
+
},
|
|
3178
|
+
"engines": {
|
|
3179
|
+
"node": ">= 0.4"
|
|
3180
|
+
},
|
|
3181
|
+
"funding": {
|
|
3182
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3183
|
+
}
|
|
3184
|
+
},
|
|
3185
|
+
"node_modules/side-channel-list": {
|
|
3186
|
+
"version": "1.0.0",
|
|
3187
|
+
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
|
|
3188
|
+
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
|
|
3189
|
+
"license": "MIT",
|
|
3190
|
+
"dependencies": {
|
|
3191
|
+
"es-errors": "^1.3.0",
|
|
3192
|
+
"object-inspect": "^1.13.3"
|
|
3193
|
+
},
|
|
3194
|
+
"engines": {
|
|
3195
|
+
"node": ">= 0.4"
|
|
3196
|
+
},
|
|
3197
|
+
"funding": {
|
|
3198
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3199
|
+
}
|
|
3200
|
+
},
|
|
3201
|
+
"node_modules/side-channel-map": {
|
|
3202
|
+
"version": "1.0.1",
|
|
3203
|
+
"resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
|
|
3204
|
+
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
|
|
3205
|
+
"license": "MIT",
|
|
3206
|
+
"dependencies": {
|
|
3207
|
+
"call-bound": "^1.0.2",
|
|
3208
|
+
"es-errors": "^1.3.0",
|
|
3209
|
+
"get-intrinsic": "^1.2.5",
|
|
3210
|
+
"object-inspect": "^1.13.3"
|
|
3211
|
+
},
|
|
3212
|
+
"engines": {
|
|
3213
|
+
"node": ">= 0.4"
|
|
3214
|
+
},
|
|
3215
|
+
"funding": {
|
|
3216
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3217
|
+
}
|
|
3218
|
+
},
|
|
3219
|
+
"node_modules/side-channel-weakmap": {
|
|
3220
|
+
"version": "1.0.2",
|
|
3221
|
+
"resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
|
|
3222
|
+
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
|
|
3223
|
+
"license": "MIT",
|
|
3224
|
+
"dependencies": {
|
|
3225
|
+
"call-bound": "^1.0.2",
|
|
3226
|
+
"es-errors": "^1.3.0",
|
|
3227
|
+
"get-intrinsic": "^1.2.5",
|
|
3228
|
+
"object-inspect": "^1.13.3",
|
|
3229
|
+
"side-channel-map": "^1.0.1"
|
|
3230
|
+
},
|
|
3231
|
+
"engines": {
|
|
3232
|
+
"node": ">= 0.4"
|
|
3233
|
+
},
|
|
3234
|
+
"funding": {
|
|
3235
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3236
|
+
}
|
|
3237
|
+
},
|
|
3238
|
+
"node_modules/simple-concat": {
|
|
3239
|
+
"version": "1.0.1",
|
|
3240
|
+
"resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
|
|
3241
|
+
"integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
|
|
3242
|
+
"funding": [
|
|
3243
|
+
{
|
|
3244
|
+
"type": "github",
|
|
3245
|
+
"url": "https://github.com/sponsors/feross"
|
|
3246
|
+
},
|
|
3247
|
+
{
|
|
3248
|
+
"type": "patreon",
|
|
3249
|
+
"url": "https://www.patreon.com/feross"
|
|
3250
|
+
},
|
|
3251
|
+
{
|
|
3252
|
+
"type": "consulting",
|
|
3253
|
+
"url": "https://feross.org/support"
|
|
3254
|
+
}
|
|
3255
|
+
],
|
|
3256
|
+
"license": "MIT"
|
|
3257
|
+
},
|
|
3258
|
+
"node_modules/simple-get": {
|
|
3259
|
+
"version": "4.0.1",
|
|
3260
|
+
"resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz",
|
|
3261
|
+
"integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
|
|
3262
|
+
"funding": [
|
|
3263
|
+
{
|
|
3264
|
+
"type": "github",
|
|
3265
|
+
"url": "https://github.com/sponsors/feross"
|
|
3266
|
+
},
|
|
3267
|
+
{
|
|
3268
|
+
"type": "patreon",
|
|
3269
|
+
"url": "https://www.patreon.com/feross"
|
|
3270
|
+
},
|
|
3271
|
+
{
|
|
3272
|
+
"type": "consulting",
|
|
3273
|
+
"url": "https://feross.org/support"
|
|
3274
|
+
}
|
|
3275
|
+
],
|
|
3276
|
+
"license": "MIT",
|
|
3277
|
+
"dependencies": {
|
|
3278
|
+
"decompress-response": "^6.0.0",
|
|
3279
|
+
"once": "^1.3.1",
|
|
3280
|
+
"simple-concat": "^1.0.0"
|
|
3281
|
+
}
|
|
3282
|
+
},
|
|
3283
|
+
"node_modules/source-map-js": {
|
|
3284
|
+
"version": "1.2.1",
|
|
3285
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
3286
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
3287
|
+
"dev": true,
|
|
3288
|
+
"license": "BSD-3-Clause",
|
|
3289
|
+
"engines": {
|
|
3290
|
+
"node": ">=0.10.0"
|
|
3291
|
+
}
|
|
3292
|
+
},
|
|
3293
|
+
"node_modules/statuses": {
|
|
3294
|
+
"version": "2.0.1",
|
|
3295
|
+
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
|
|
3296
|
+
"integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
|
|
3297
|
+
"license": "MIT",
|
|
3298
|
+
"engines": {
|
|
3299
|
+
"node": ">= 0.8"
|
|
3300
|
+
}
|
|
3301
|
+
},
|
|
3302
|
+
"node_modules/string_decoder": {
|
|
3303
|
+
"version": "1.3.0",
|
|
3304
|
+
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
|
3305
|
+
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
|
3306
|
+
"license": "MIT",
|
|
3307
|
+
"dependencies": {
|
|
3308
|
+
"safe-buffer": "~5.2.0"
|
|
3309
|
+
}
|
|
3310
|
+
},
|
|
3311
|
+
"node_modules/strip-json-comments": {
|
|
3312
|
+
"version": "2.0.1",
|
|
3313
|
+
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
|
|
3314
|
+
"integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
|
|
3315
|
+
"license": "MIT",
|
|
3316
|
+
"engines": {
|
|
3317
|
+
"node": ">=0.10.0"
|
|
3318
|
+
}
|
|
3319
|
+
},
|
|
3320
|
+
"node_modules/tar-fs": {
|
|
3321
|
+
"version": "2.1.4",
|
|
3322
|
+
"resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.4.tgz",
|
|
3323
|
+
"integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==",
|
|
3324
|
+
"license": "MIT",
|
|
3325
|
+
"dependencies": {
|
|
3326
|
+
"chownr": "^1.1.1",
|
|
3327
|
+
"mkdirp-classic": "^0.5.2",
|
|
3328
|
+
"pump": "^3.0.0",
|
|
3329
|
+
"tar-stream": "^2.1.4"
|
|
3330
|
+
}
|
|
3331
|
+
},
|
|
3332
|
+
"node_modules/tar-stream": {
|
|
3333
|
+
"version": "2.2.0",
|
|
3334
|
+
"resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
|
|
3335
|
+
"integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
|
|
3336
|
+
"license": "MIT",
|
|
3337
|
+
"dependencies": {
|
|
3338
|
+
"bl": "^4.0.3",
|
|
3339
|
+
"end-of-stream": "^1.4.1",
|
|
3340
|
+
"fs-constants": "^1.0.0",
|
|
3341
|
+
"inherits": "^2.0.3",
|
|
3342
|
+
"readable-stream": "^3.1.1"
|
|
3343
|
+
},
|
|
3344
|
+
"engines": {
|
|
3345
|
+
"node": ">=6"
|
|
3346
|
+
}
|
|
3347
|
+
},
|
|
3348
|
+
"node_modules/toidentifier": {
|
|
3349
|
+
"version": "1.0.1",
|
|
3350
|
+
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
|
|
3351
|
+
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
|
|
3352
|
+
"license": "MIT",
|
|
3353
|
+
"engines": {
|
|
3354
|
+
"node": ">=0.6"
|
|
3355
|
+
}
|
|
3356
|
+
},
|
|
3357
|
+
"node_modules/tunnel-agent": {
|
|
3358
|
+
"version": "0.6.0",
|
|
3359
|
+
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
|
|
3360
|
+
"integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
|
|
3361
|
+
"license": "Apache-2.0",
|
|
3362
|
+
"dependencies": {
|
|
3363
|
+
"safe-buffer": "^5.0.1"
|
|
3364
|
+
},
|
|
3365
|
+
"engines": {
|
|
3366
|
+
"node": "*"
|
|
3367
|
+
}
|
|
3368
|
+
},
|
|
3369
|
+
"node_modules/type-is": {
|
|
3370
|
+
"version": "1.6.18",
|
|
3371
|
+
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
|
|
3372
|
+
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
|
|
3373
|
+
"license": "MIT",
|
|
3374
|
+
"dependencies": {
|
|
3375
|
+
"media-typer": "0.3.0",
|
|
3376
|
+
"mime-types": "~2.1.24"
|
|
3377
|
+
},
|
|
3378
|
+
"engines": {
|
|
3379
|
+
"node": ">= 0.6"
|
|
3380
|
+
}
|
|
3381
|
+
},
|
|
3382
|
+
"node_modules/unpipe": {
|
|
3383
|
+
"version": "1.0.0",
|
|
3384
|
+
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
|
|
3385
|
+
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
|
|
3386
|
+
"license": "MIT",
|
|
3387
|
+
"engines": {
|
|
3388
|
+
"node": ">= 0.8"
|
|
3389
|
+
}
|
|
3390
|
+
},
|
|
3391
|
+
"node_modules/update-browserslist-db": {
|
|
3392
|
+
"version": "1.1.4",
|
|
3393
|
+
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz",
|
|
3394
|
+
"integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==",
|
|
3395
|
+
"dev": true,
|
|
3396
|
+
"funding": [
|
|
3397
|
+
{
|
|
3398
|
+
"type": "opencollective",
|
|
3399
|
+
"url": "https://opencollective.com/browserslist"
|
|
3400
|
+
},
|
|
3401
|
+
{
|
|
3402
|
+
"type": "tidelift",
|
|
3403
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
3404
|
+
},
|
|
3405
|
+
{
|
|
3406
|
+
"type": "github",
|
|
3407
|
+
"url": "https://github.com/sponsors/ai"
|
|
3408
|
+
}
|
|
3409
|
+
],
|
|
3410
|
+
"license": "MIT",
|
|
3411
|
+
"dependencies": {
|
|
3412
|
+
"escalade": "^3.2.0",
|
|
3413
|
+
"picocolors": "^1.1.1"
|
|
3414
|
+
},
|
|
3415
|
+
"bin": {
|
|
3416
|
+
"update-browserslist-db": "cli.js"
|
|
3417
|
+
},
|
|
3418
|
+
"peerDependencies": {
|
|
3419
|
+
"browserslist": ">= 4.21.0"
|
|
3420
|
+
}
|
|
3421
|
+
},
|
|
3422
|
+
"node_modules/util-deprecate": {
|
|
3423
|
+
"version": "1.0.2",
|
|
3424
|
+
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
3425
|
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
|
3426
|
+
"license": "MIT"
|
|
3427
|
+
},
|
|
3428
|
+
"node_modules/utils-merge": {
|
|
3429
|
+
"version": "1.0.1",
|
|
3430
|
+
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
|
|
3431
|
+
"integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
|
|
3432
|
+
"license": "MIT",
|
|
3433
|
+
"engines": {
|
|
3434
|
+
"node": ">= 0.4.0"
|
|
3435
|
+
}
|
|
3436
|
+
},
|
|
3437
|
+
"node_modules/vary": {
|
|
3438
|
+
"version": "1.1.2",
|
|
3439
|
+
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
|
|
3440
|
+
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
|
|
3441
|
+
"license": "MIT",
|
|
3442
|
+
"engines": {
|
|
3443
|
+
"node": ">= 0.8"
|
|
3444
|
+
}
|
|
3445
|
+
},
|
|
3446
|
+
"node_modules/vite": {
|
|
3447
|
+
"version": "5.4.21",
|
|
3448
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz",
|
|
3449
|
+
"integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==",
|
|
3450
|
+
"dev": true,
|
|
3451
|
+
"license": "MIT",
|
|
3452
|
+
"dependencies": {
|
|
3453
|
+
"esbuild": "^0.21.3",
|
|
3454
|
+
"postcss": "^8.4.43",
|
|
3455
|
+
"rollup": "^4.20.0"
|
|
3456
|
+
},
|
|
3457
|
+
"bin": {
|
|
3458
|
+
"vite": "bin/vite.js"
|
|
3459
|
+
},
|
|
3460
|
+
"engines": {
|
|
3461
|
+
"node": "^18.0.0 || >=20.0.0"
|
|
3462
|
+
},
|
|
3463
|
+
"funding": {
|
|
3464
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
3465
|
+
},
|
|
3466
|
+
"optionalDependencies": {
|
|
3467
|
+
"fsevents": "~2.3.3"
|
|
3468
|
+
},
|
|
3469
|
+
"peerDependencies": {
|
|
3470
|
+
"@types/node": "^18.0.0 || >=20.0.0",
|
|
3471
|
+
"less": "*",
|
|
3472
|
+
"lightningcss": "^1.21.0",
|
|
3473
|
+
"sass": "*",
|
|
3474
|
+
"sass-embedded": "*",
|
|
3475
|
+
"stylus": "*",
|
|
3476
|
+
"sugarss": "*",
|
|
3477
|
+
"terser": "^5.4.0"
|
|
3478
|
+
},
|
|
3479
|
+
"peerDependenciesMeta": {
|
|
3480
|
+
"@types/node": {
|
|
3481
|
+
"optional": true
|
|
3482
|
+
},
|
|
3483
|
+
"less": {
|
|
3484
|
+
"optional": true
|
|
3485
|
+
},
|
|
3486
|
+
"lightningcss": {
|
|
3487
|
+
"optional": true
|
|
3488
|
+
},
|
|
3489
|
+
"sass": {
|
|
3490
|
+
"optional": true
|
|
3491
|
+
},
|
|
3492
|
+
"sass-embedded": {
|
|
3493
|
+
"optional": true
|
|
3494
|
+
},
|
|
3495
|
+
"stylus": {
|
|
3496
|
+
"optional": true
|
|
3497
|
+
},
|
|
3498
|
+
"sugarss": {
|
|
3499
|
+
"optional": true
|
|
3500
|
+
},
|
|
3501
|
+
"terser": {
|
|
3502
|
+
"optional": true
|
|
3503
|
+
}
|
|
3504
|
+
}
|
|
3505
|
+
},
|
|
3506
|
+
"node_modules/which": {
|
|
3507
|
+
"version": "2.0.2",
|
|
3508
|
+
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
3509
|
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
3510
|
+
"license": "ISC",
|
|
3511
|
+
"dependencies": {
|
|
3512
|
+
"isexe": "^2.0.0"
|
|
3513
|
+
},
|
|
3514
|
+
"bin": {
|
|
3515
|
+
"node-which": "bin/node-which"
|
|
3516
|
+
},
|
|
3517
|
+
"engines": {
|
|
3518
|
+
"node": ">= 8"
|
|
3519
|
+
}
|
|
3520
|
+
},
|
|
3521
|
+
"node_modules/wrappy": {
|
|
3522
|
+
"version": "1.0.2",
|
|
3523
|
+
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
3524
|
+
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
|
|
3525
|
+
"license": "ISC"
|
|
3526
|
+
},
|
|
3527
|
+
"node_modules/ws": {
|
|
3528
|
+
"version": "8.18.3",
|
|
3529
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
|
|
3530
|
+
"integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
|
|
3531
|
+
"license": "MIT",
|
|
3532
|
+
"engines": {
|
|
3533
|
+
"node": ">=10.0.0"
|
|
3534
|
+
},
|
|
3535
|
+
"peerDependencies": {
|
|
3536
|
+
"bufferutil": "^4.0.1",
|
|
3537
|
+
"utf-8-validate": ">=5.0.2"
|
|
3538
|
+
},
|
|
3539
|
+
"peerDependenciesMeta": {
|
|
3540
|
+
"bufferutil": {
|
|
3541
|
+
"optional": true
|
|
3542
|
+
},
|
|
3543
|
+
"utf-8-validate": {
|
|
3544
|
+
"optional": true
|
|
3545
|
+
}
|
|
3546
|
+
}
|
|
3547
|
+
},
|
|
3548
|
+
"node_modules/yallist": {
|
|
3549
|
+
"version": "3.1.1",
|
|
3550
|
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
|
|
3551
|
+
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
|
|
3552
|
+
"dev": true,
|
|
3553
|
+
"license": "ISC"
|
|
3554
|
+
},
|
|
3555
|
+
"node_modules/zod": {
|
|
3556
|
+
"version": "3.25.76",
|
|
3557
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3558
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3559
|
+
"license": "MIT",
|
|
3560
|
+
"funding": {
|
|
3561
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3562
|
+
}
|
|
3563
|
+
},
|
|
3564
|
+
"node_modules/zod-to-json-schema": {
|
|
3565
|
+
"version": "3.24.6",
|
|
3566
|
+
"resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.6.tgz",
|
|
3567
|
+
"integrity": "sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==",
|
|
3568
|
+
"license": "ISC",
|
|
3569
|
+
"peerDependencies": {
|
|
3570
|
+
"zod": "^3.24.1"
|
|
3571
|
+
}
|
|
3572
|
+
}
|
|
3573
|
+
}
|
|
3574
|
+
}
|