@prostgles/prostgles 2.3.6-dev.1786548258
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/.dockerignore +14 -0
- package/.eslintrc.common.js +71 -0
- package/.gitattributes +2 -0
- package/.github/ISSUE_TEMPLATE/BUG.yml +52 -0
- package/.github/ISSUE_TEMPLATE/CUSTOM.yml +13 -0
- package/.github/ISSUE_TEMPLATE/FEATURE.yml +27 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +9 -0
- package/.github/ISSUE_TEMPLATE/config.yml +5 -0
- package/.github/ISSUE_TEMPLATE/custom.md +3 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +5 -0
- package/.github/workflows/docker_test.yml +46 -0
- package/.github/workflows/electron_build_linux.yml +40 -0
- package/.github/workflows/electron_build_macos.yml +36 -0
- package/.github/workflows/electron_build_windows.yml +34 -0
- package/.github/workflows/electron_linux_test.yml +24 -0
- package/.github/workflows/electron_macos_test.yml +25 -0
- package/.github/workflows/linux_test.yml +127 -0
- package/.github/workflows/macos_test.yml +63 -0
- package/.github/workflows/on_release.yml +185 -0
- package/.github/workflows/package_version_increased.yml +66 -0
- package/.github/workflows/publish_release.yml +67 -0
- package/.github/workflows/windows_test.yml +48 -0
- package/.prettierignore +5 -0
- package/.prettierrc +3 -0
- package/.vscode/settings.json +46 -0
- package/CODE_OF_CONDUCT +47 -0
- package/CONTRIBUTING +59 -0
- package/DB.Dockerfile +11 -0
- package/Dockerfile +31 -0
- package/LICENSE +661 -0
- package/PRIVACY +28 -0
- package/README.md +132 -0
- package/SECURITY.md +8 -0
- package/changelog/v1.0.0.md +5 -0
- package/changelog/v2.0.0.md +25 -0
- package/changelog/v2.2.0.md +13 -0
- package/changelog/v2.2.1.md +4 -0
- package/changelog/v2.2.2.md +3 -0
- package/changelog/v2.2.3.md +2 -0
- package/changelog/v2.2.4.md +3 -0
- package/changelog/v2.3.0.md +5 -0
- package/changelog/v2.3.1.md +1 -0
- package/changelog/v2.3.2.md +1 -0
- package/changelog/v2.3.3.md +2 -0
- package/changelog/v2.3.4.md +2 -0
- package/changelog/v2.3.5.md +2 -0
- package/changelog/v2.3.6.md +2 -0
- package/client/build.sh +1 -0
- package/client/eslint.config.mjs +114 -0
- package/client/package-lock.json +16513 -0
- package/client/package.json +108 -0
- package/client/public/manifest.json +12 -0
- package/client/public/robots.txt +3 -0
- package/client/setup-icons.js +59 -0
- package/client/src/App.css +31 -0
- package/client/src/App.tsx +364 -0
- package/client/src/Testing.ts +724 -0
- package/client/src/app/CommandPalette/CommandPalette.css +11 -0
- package/client/src/app/CommandPalette/CommandPalette.tsx +119 -0
- package/client/src/app/CommandPalette/Documentation.css +3 -0
- package/client/src/app/CommandPalette/Documentation.tsx +77 -0
- package/client/src/app/CommandPalette/DynamicComponent.tsx +87 -0
- package/client/src/app/CommandPalette/getDocumentation.ts +175 -0
- package/client/src/app/CommandPalette/getUIDocShortestPath.ts +62 -0
- package/client/src/app/CommandPalette/useCommandPaletteState.tsx +188 -0
- package/client/src/app/CommandPalette/useGoToUI.tsx +147 -0
- package/client/src/app/CommandPalette/useHighlightDocItem.ts +89 -0
- package/client/src/app/CommandPalette/utils.ts +111 -0
- package/client/src/app/UIDocs/UIInstallationUIDoc.ts +43 -0
- package/client/src/app/UIDocs/accountUIDoc.ts +128 -0
- package/client/src/app/UIDocs/commandPaletteUIDoc.ts +40 -0
- package/client/src/app/UIDocs/connection/AIAssistantUIDoc.ts +309 -0
- package/client/src/app/UIDocs/connection/agenticWorkflowsUIDoc.ts +37 -0
- package/client/src/app/UIDocs/connection/config/accessControlUIDoc.ts +44 -0
- package/client/src/app/UIDocs/connection/config/apiUIDoc.ts +95 -0
- package/client/src/app/UIDocs/connection/config/authentication.UIDoc.ts +96 -0
- package/client/src/app/UIDocs/connection/config/backupAndRestoreUIDoc.ts +238 -0
- package/client/src/app/UIDocs/connection/config/fileStorageUIDoc.ts +27 -0
- package/client/src/app/UIDocs/connection/connectionConfigUIDoc.ts +79 -0
- package/client/src/app/UIDocs/connection/dashboard/dashboardContentUIDoc.ts +27 -0
- package/client/src/app/UIDocs/connection/dashboard/dashboardMenuUIDoc.ts +189 -0
- package/client/src/app/UIDocs/connection/dashboard/mapUIDoc.ts +172 -0
- package/client/src/app/UIDocs/connection/dashboard/schemaGraphUIDoc.ts +66 -0
- package/client/src/app/UIDocs/connection/dashboard/serverSideFunctionUIDoc.ts +27 -0
- package/client/src/app/UIDocs/connection/dashboard/sqlEditorUIDoc.ts +284 -0
- package/client/src/app/UIDocs/connection/dashboard/table/addColumnMenuUIDoc.ts +250 -0
- package/client/src/app/UIDocs/connection/dashboard/table/columnMenuUIDoc.ts +123 -0
- package/client/src/app/UIDocs/connection/dashboard/table/paginationUIDoc.ts +56 -0
- package/client/src/app/UIDocs/connection/dashboard/table/smartFilterBarUIDoc.ts +126 -0
- package/client/src/app/UIDocs/connection/dashboard/table/smartFormUIDoc.ts +168 -0
- package/client/src/app/UIDocs/connection/dashboard/table/tableMenuUIDoc.ts +228 -0
- package/client/src/app/UIDocs/connection/dashboard/table/tableUIDoc.ts +90 -0
- package/client/src/app/UIDocs/connection/dashboard/timechartUIDoc.ts +169 -0
- package/client/src/app/UIDocs/connection/dashboardUIDoc.ts +176 -0
- package/client/src/app/UIDocs/connection/getCommonViewHeaderUIDoc.ts +146 -0
- package/client/src/app/UIDocs/connectionsUIDoc.ts +261 -0
- package/client/src/app/UIDocs/desktopInstallation.ts +32 -0
- package/client/src/app/UIDocs/editConnectionUIDoc.ts +131 -0
- package/client/src/app/UIDocs/navbarUIDoc.ts +145 -0
- package/client/src/app/UIDocs/overviewUIDoc.ts +31 -0
- package/client/src/app/UIDocs/serverSettingsUIDoc.ts +64 -0
- package/client/src/app/UIDocs.ts +274 -0
- package/client/src/app/XRealIpSpoofableAlert.tsx +39 -0
- package/client/src/app/domToSVG/SVGif/addSVGifCaption.ts +112 -0
- package/client/src/app/domToSVG/SVGif/addSVGifPointer.ts +59 -0
- package/client/src/app/domToSVG/SVGif/addSVGifTimelineControls.ts +94 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifCursorAnimationHandler.ts +162 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifCustomAnimation.ts +53 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifPropertiesAnimation.ts +50 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifTypeAnimation.ts +105 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifZoomToAnimation.ts +114 -0
- package/client/src/app/domToSVG/SVGif/compressSVGif.ts +86 -0
- package/client/src/app/domToSVG/SVGif/getSVGif.ts +111 -0
- package/client/src/app/domToSVG/SVGif/getSVGifAnimations.ts +318 -0
- package/client/src/app/domToSVG/SVGif/getSVGifKeyframes.ts +42 -0
- package/client/src/app/domToSVG/SVGif/getSVGifParsedScenes.ts +52 -0
- package/client/src/app/domToSVG/SVGif/getSVGifRevealKeyframes.ts +73 -0
- package/client/src/app/domToSVG/SVGif/getSVGifTargetBBox.ts +36 -0
- package/client/src/app/domToSVG/addFragmentViewBoxes.ts +43 -0
- package/client/src/app/domToSVG/containers/addOverflowClipPath.ts +117 -0
- package/client/src/app/domToSVG/containers/bgAndBorderToSVG.ts +204 -0
- package/client/src/app/domToSVG/containers/deduplicateSVGPaths.ts +128 -0
- package/client/src/app/domToSVG/containers/elementToSVG.ts +231 -0
- package/client/src/app/domToSVG/containers/rectangleToSVG.ts +196 -0
- package/client/src/app/domToSVG/containers/shadowToSVG.ts +52 -0
- package/client/src/app/domToSVG/domToSVG.ts +263 -0
- package/client/src/app/domToSVG/domToSvg2.ts +129 -0
- package/client/src/app/domToSVG/domToThemeAwareSVG.ts +361 -0
- package/client/src/app/domToSVG/getCorrespondingDarkNode.ts +87 -0
- package/client/src/app/domToSVG/graphics/fontIconToSVG.ts +141 -0
- package/client/src/app/domToSVG/graphics/getForeignObject.ts +43 -0
- package/client/src/app/domToSVG/graphics/imgToSVG.ts +140 -0
- package/client/src/app/domToSVG/setThemeForSVGScreenshot.ts +82 -0
- package/client/src/app/domToSVG/text/getTextForSVG.ts +243 -0
- package/client/src/app/domToSVG/text/textToSVG.ts +264 -0
- package/client/src/app/domToSVG/utils/addNewChildren.ts +55 -0
- package/client/src/app/domToSVG/utils/canvasToDataURL.ts +6 -0
- package/client/src/app/domToSVG/utils/copyAnimationStylesToSvg.ts +127 -0
- package/client/src/app/domToSVG/utils/getWhatToRenderOnSVG.ts +218 -0
- package/client/src/app/domToSVG/utils/isElementVisible.ts +144 -0
- package/client/src/app/domToSVG/utils/toFixed.ts +3 -0
- package/client/src/appUtils.ts +135 -0
- package/client/src/components/AlertProvider.tsx +99 -0
- package/client/src/components/Animations.css +207 -0
- package/client/src/components/Animations.tsx +130 -0
- package/client/src/components/Btn.css +235 -0
- package/client/src/components/Btn.tsx +603 -0
- package/client/src/components/ButtonBar.tsx +29 -0
- package/client/src/components/ButtonGroup.tsx +135 -0
- package/client/src/components/Chat/Chat.css +116 -0
- package/client/src/components/Chat/Chat.tsx +200 -0
- package/client/src/components/Chat/ChatFileAttachments/ChatFileAttachments.tsx +126 -0
- package/client/src/components/Chat/ChatMessage.tsx +38 -0
- package/client/src/components/Chat/ChatSendControls.tsx +117 -0
- package/client/src/components/Chat/ChatSpeech/ChatSpeech.tsx +201 -0
- package/client/src/components/Chat/ChatSpeech/ChatSpeechSetup.tsx +75 -0
- package/client/src/components/Chat/ChatSpeech/hooks/SpeechRecorder.ts +295 -0
- package/client/src/components/Chat/ChatSpeech/hooks/renderSpeechAudioLevelsIcon.ts +67 -0
- package/client/src/components/Chat/ChatSpeech/hooks/useSpeechRecorder.ts +59 -0
- package/client/src/components/Chat/ChatSpeech/hooks/useSpeechToTextWeb.ts +125 -0
- package/client/src/components/Chat/ChatSpeech/useChatSpeechSetup.ts +106 -0
- package/client/src/components/Chat/Marked.tsx +258 -0
- package/client/src/components/Chat/MonacoCodeInMarkdown/MarkdownMonacoCodeHeader.tsx +179 -0
- package/client/src/components/Chat/MonacoCodeInMarkdown/MonacoCodeInMarkdown.tsx +162 -0
- package/client/src/components/Chat/MonacoCodeInMarkdown/useOnRunSQL.ts +70 -0
- package/client/src/components/Chat/useChatFileUpload.ts +167 -0
- package/client/src/components/Chat/useChatOnPaste.ts +102 -0
- package/client/src/components/Chat/useChatState.ts +118 -0
- package/client/src/components/Checkbox.css +24 -0
- package/client/src/components/Checkbox.tsx +152 -0
- package/client/src/components/Chip.css +78 -0
- package/client/src/components/Chip.tsx +150 -0
- package/client/src/components/ClickCatch.tsx +49 -0
- package/client/src/components/ClickCatchOverlay.css +7 -0
- package/client/src/components/ClickCatchOverlay.tsx +30 -0
- package/client/src/components/CodeFileBrowser/CodeFileBrowser.tsx +85 -0
- package/client/src/components/CodeFileBrowser/ProjectCodeEditor.tsx +89 -0
- package/client/src/components/CodeFileBrowser/WebAppFileBrowser.tsx +96 -0
- package/client/src/components/CompactTabs/CompactTabs.tsx +101 -0
- package/client/src/components/ConfirmationDialog.tsx +90 -0
- package/client/src/components/CopyToClipboardBtn.tsx +24 -0
- package/client/src/components/DragOverUpload/DragOverUpload.css +36 -0
- package/client/src/components/DragOverUpload/DragOverUpload.tsx +46 -0
- package/client/src/components/DraggableLI.tsx +182 -0
- package/client/src/components/ElectronSearchBar.tsx +335 -0
- package/client/src/components/ErrorComponent.tsx +240 -0
- package/client/src/components/ExpandSection.tsx +55 -0
- package/client/src/components/Expander.tsx +16 -0
- package/client/src/components/FileInput/DropZone.tsx +23 -0
- package/client/src/components/FileInput/FileInput.tsx +363 -0
- package/client/src/components/FileInput/FileInputMedia.tsx +144 -0
- package/client/src/components/FileInput/useFileDropZone.ts +51 -0
- package/client/src/components/FileTree/FILE_EXTENSION_TO_ICON_INFO.ts +687 -0
- package/client/src/components/FileTree/FileIcon.tsx +31 -0
- package/client/src/components/FileTree/FileTree.tsx +147 -0
- package/client/src/components/FileTree/FileTreeCurrentDirectory.tsx +135 -0
- package/client/src/components/FileTree/FileTreeNode.css +12 -0
- package/client/src/components/FileTree/FileTreeNode.tsx +264 -0
- package/client/src/components/FileTree/FileTreeNodeCheckbox.tsx +48 -0
- package/client/src/components/FileTree/FileTreeSearchBar.tsx +121 -0
- package/client/src/components/FileTree/FileTreeSelectedItems.tsx +73 -0
- package/client/src/components/FileTree/FolderIcon.tsx +18 -0
- package/client/src/components/FileTree/fileSystemTreeUtils.ts +15 -0
- package/client/src/components/FileTree/useFileTree.ts +255 -0
- package/client/src/components/FileTree/useFileTreeChecked.ts +158 -0
- package/client/src/components/FlashMessage.tsx +64 -0
- package/client/src/components/Flex.tsx +76 -0
- package/client/src/components/FormField/FormField.css +91 -0
- package/client/src/components/FormField/FormField.tsx +748 -0
- package/client/src/components/FormField/FormFieldCodeEditor.tsx +97 -0
- package/client/src/components/FormField/FormFieldDebounced.tsx +60 -0
- package/client/src/components/FormField/FormFieldSkeleton.tsx +206 -0
- package/client/src/components/FormField/onFormFieldKeyDown.ts +124 -0
- package/client/src/components/FullscreenWrapper/FullscreenWrapper.tsx +154 -0
- package/client/src/components/FullscreenWrapper/useFullscreen.ts +46 -0
- package/client/src/components/HeaderSection.tsx +36 -0
- package/client/src/components/Hotkey.css +12 -0
- package/client/src/components/Hotkey.tsx +26 -0
- package/client/src/components/IFrame/IFrame.tsx +54 -0
- package/client/src/components/Icon/Icon.tsx +138 -0
- package/client/src/components/IconPalette/IconPalette.tsx +194 -0
- package/client/src/components/InfoRow.tsx +64 -0
- package/client/src/components/Input.tsx +63 -0
- package/client/src/components/JSONBSchema/JSONBSchema.tsx +182 -0
- package/client/src/components/JSONBSchema/JSONBSchemaAllowedOptions.tsx +112 -0
- package/client/src/components/JSONBSchema/JSONBSchemaArray.tsx +172 -0
- package/client/src/components/JSONBSchema/JSONBSchemaLookup.tsx +249 -0
- package/client/src/components/JSONBSchema/JSONBSchemaObject.tsx +130 -0
- package/client/src/components/JSONBSchema/JSONBSchemaOneOfType.tsx +155 -0
- package/client/src/components/JSONBSchema/JSONBSchemaPrimitive.tsx +209 -0
- package/client/src/components/JSONBSchema/JSONBSchemaRecord.tsx +78 -0
- package/client/src/components/JSONBSchema/isCompleteJSONB.ts +54 -0
- package/client/src/components/Label.css +10 -0
- package/client/src/components/Label.tsx +152 -0
- package/client/src/components/LabeledRow.tsx +51 -0
- package/client/src/components/List.css +51 -0
- package/client/src/components/List.tsx +170 -0
- package/client/src/components/Loader/Loading.css +141 -0
- package/client/src/components/Loader/Loading.tsx +254 -0
- package/client/src/components/Loader/SpinnerV2.tsx +121 -0
- package/client/src/components/Loader/SpinnerV3.tsx +58 -0
- package/client/src/components/Loader/SpinnerV4.tsx +31 -0
- package/client/src/components/MarkdownWithPlugins/MarkdownWithPlugins.tsx +99 -0
- package/client/src/components/MarkdownWithPlugins/Marked.css +72 -0
- package/client/src/components/MarkdownWithPlugins/preserveDisallowedHtmlAsText.ts +76 -0
- package/client/src/components/MediaViewer/MediaViewer.tsx +252 -0
- package/client/src/components/MediaViewer/MediaViewerContent.tsx +223 -0
- package/client/src/components/MediaViewer/managedTableUtils.ts +99 -0
- package/client/src/components/MenuList.css +3 -0
- package/client/src/components/MenuList.tsx +237 -0
- package/client/src/components/MenuListItem.tsx +126 -0
- package/client/src/components/MonacoEditor/MonacoEditor.tsx +273 -0
- package/client/src/components/MonacoEditor/monacoHackyFixes.ts +56 -0
- package/client/src/components/MonacoEditor/useMonacoEditorAddActions.ts +56 -0
- package/client/src/components/MonacoEditor/useWhyDidYouUpdate.ts +80 -0
- package/client/src/components/MonacoLogs/MonacoLogs.tsx +98 -0
- package/client/src/components/MonacoLogs/MonacoLogsWithFullscreen.tsx +124 -0
- package/client/src/components/MonacoLogs/setAnsiLogContent.ts +163 -0
- package/client/src/components/NavBar/NavBar.css +110 -0
- package/client/src/components/NavBar/NavBar.tsx +152 -0
- package/client/src/components/NavBar/NavBarWrapper.tsx +55 -0
- package/client/src/components/NavBar/useNavBarItems.ts +40 -0
- package/client/src/components/Pan.tsx +63 -0
- package/client/src/components/PdfViewer/PdfViewer.css +58 -0
- package/client/src/components/PdfViewer/PdfViewer.tsx +126 -0
- package/client/src/components/PdfViewer/PdfViewerDoclingTextOverlay.tsx +44 -0
- package/client/src/components/PdfViewer/PdfViewerHeaderControls.tsx +82 -0
- package/client/src/components/PdfViewer/PdfViewerHighlights/PdfViewerHighlights.tsx +146 -0
- package/client/src/components/PdfViewer/PdfViewerHighlights/usePdfViewerHighlights.ts +212 -0
- package/client/src/components/PdfViewer/PdfViewerSearch/PdfViewerSearch.css +21 -0
- package/client/src/components/PdfViewer/PdfViewerSearch/PdfViewerSearch.tsx +323 -0
- package/client/src/components/PdfViewer/PdfViewerWithFileTableContext.tsx +209 -0
- package/client/src/components/PdfViewer/usePdfViewer.ts +215 -0
- package/client/src/components/Popup/Footer.tsx +41 -0
- package/client/src/components/Popup/FooterButtons.tsx +60 -0
- package/client/src/components/Popup/Popup.css +14 -0
- package/client/src/components/Popup/Popup.tsx +469 -0
- package/client/src/components/Popup/PopupHeader.tsx +113 -0
- package/client/src/components/Popup/getPopupPosition.ts +137 -0
- package/client/src/components/Popup/getPopupStyle.ts +57 -0
- package/client/src/components/Popup/popupCheckPosition.ts +280 -0
- package/client/src/components/PopupMenu.tsx +106 -0
- package/client/src/components/PopupMenuList.tsx +36 -0
- package/client/src/components/PostgresInstallationInstructions.tsx +112 -0
- package/client/src/components/ProgressBar.css +29 -0
- package/client/src/components/ProgressBar.tsx +131 -0
- package/client/src/components/QRCodeImage.tsx +57 -0
- package/client/src/components/Scheduler.css +7 -0
- package/client/src/components/Scheduler.tsx +149 -0
- package/client/src/components/ScrollFade/ScrollFade.css +4 -0
- package/client/src/components/ScrollFade/ScrollFade.tsx +177 -0
- package/client/src/components/ScrollFade/useAutoScrollToBottom.ts +31 -0
- package/client/src/components/ScrollFade/useResizeObserver.ts +96 -0
- package/client/src/components/SearchList/SearchInput.tsx +143 -0
- package/client/src/components/SearchList/SearchList.css +37 -0
- package/client/src/components/SearchList/SearchList.tsx +184 -0
- package/client/src/components/SearchList/SearchListContent.tsx +285 -0
- package/client/src/components/SearchList/SearchListItems.tsx +244 -0
- package/client/src/components/SearchList/SearchListRowContent.tsx +46 -0
- package/client/src/components/SearchList/getSearchListMatchAndHighlight.tsx +162 -0
- package/client/src/components/SearchList/hooks/useSearchListItems.tsx +113 -0
- package/client/src/components/SearchList/hooks/useSearchListItemsSorting.tsx +169 -0
- package/client/src/components/SearchList/hooks/useSearchListOnClick.ts +69 -0
- package/client/src/components/SearchList/hooks/useSearchListOnKeyUpDown.ts +128 -0
- package/client/src/components/SearchList/hooks/useSearchListSearch.ts +211 -0
- package/client/src/components/SearchList/searchMatchUtils/getItemSearchRank.ts +74 -0
- package/client/src/components/SearchList/searchMatchUtils/getSearchRanking.ts +18 -0
- package/client/src/components/Section.tsx +159 -0
- package/client/src/components/SegmentedToggle.tsx +57 -0
- package/client/src/components/Select/Select.css +18 -0
- package/client/src/components/Select/Select.tsx +629 -0
- package/client/src/components/Select/SelectTriggerButton.tsx +204 -0
- package/client/src/components/ShorterText.tsx +56 -0
- package/client/src/components/SidePanel.tsx +49 -0
- package/client/src/components/Slider.css +65 -0
- package/client/src/components/Slider.tsx +66 -0
- package/client/src/components/StatusChip.tsx +34 -0
- package/client/src/components/Stepper.tsx +92 -0
- package/client/src/components/Stopwatch.tsx +121 -0
- package/client/src/components/SvgIcon.tsx +181 -0
- package/client/src/components/SwitchToggle.css +136 -0
- package/client/src/components/SwitchToggle.tsx +141 -0
- package/client/src/components/Table/Pagination.tsx +178 -0
- package/client/src/components/Table/Table.css +97 -0
- package/client/src/components/Table/Table.tsx +216 -0
- package/client/src/components/Table/TableBody.tsx +146 -0
- package/client/src/components/Table/TableHeader.tsx +491 -0
- package/client/src/components/Table/TableRow.tsx +164 -0
- package/client/src/components/Table/useVirtualisedRows.ts +160 -0
- package/client/src/components/Tabs.tsx +320 -0
- package/client/src/components/Tooltip.tsx +47 -0
- package/client/src/dashboard/API/zip.ts +151 -0
- package/client/src/dashboard/AccessControl/AccessControl.tsx +164 -0
- package/client/src/dashboard/AccessControl/AccessControlRuleEditor.tsx +373 -0
- package/client/src/dashboard/AccessControl/AccessRuleEditorFooter.tsx +241 -0
- package/client/src/dashboard/AccessControl/AccessRuleSummary.tsx +159 -0
- package/client/src/dashboard/AccessControl/ContextDataSelector.tsx +89 -0
- package/client/src/dashboard/AccessControl/ContextFilter.tsx +161 -0
- package/client/src/dashboard/AccessControl/ExistingAccessRules.tsx +168 -0
- package/client/src/dashboard/AccessControl/Methods/MethodDefinition.tsx +156 -0
- package/client/src/dashboard/AccessControl/Methods/MethodDefinitionEditAsJson.tsx +73 -0
- package/client/src/dashboard/AccessControl/Methods/MethodFunctionDefinition.tsx +97 -0
- package/client/src/dashboard/AccessControl/Methods/ReferencesDefinition.tsx +155 -0
- package/client/src/dashboard/AccessControl/Methods/useCodeEditorTsTypes.ts +152 -0
- package/client/src/dashboard/AccessControl/OptionControllers/DynamicFields.tsx +145 -0
- package/client/src/dashboard/AccessControl/OptionControllers/FieldFilterControl.tsx +193 -0
- package/client/src/dashboard/AccessControl/OptionControllers/FilterControl.tsx +207 -0
- package/client/src/dashboard/AccessControl/PasswordlessSetup.tsx +90 -0
- package/client/src/dashboard/AccessControl/PermissionTypes/PAllTables.tsx +50 -0
- package/client/src/dashboard/AccessControl/PermissionTypes/PCustomTables.tsx +237 -0
- package/client/src/dashboard/AccessControl/PermissionTypes/PRunSQL.tsx +92 -0
- package/client/src/dashboard/AccessControl/PublishedWorkspaceSelector.tsx +290 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/ComparablePGPolicies.tsx +179 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/DeleteRuleControl.tsx +95 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/ExampleComparablePolicy.tsx +112 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/InsertRuleControl.tsx +115 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/RuleToggle.tsx +19 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/SelectRuleControl.tsx +186 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/SyncRuleControl.tsx +130 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/UpdateRuleControl.tsx +207 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/getComparablePGPolicy.ts +130 -0
- package/client/src/dashboard/AccessControl/TableRules/FileTableAccessControlInfo.tsx +161 -0
- package/client/src/dashboard/AccessControl/TableRules/TablePermissionControls.tsx +251 -0
- package/client/src/dashboard/AccessControl/TableRules/TableRulesPopup.tsx +167 -0
- package/client/src/dashboard/AccessControl/TableRules/useLocalTableRulesErrors.ts +27 -0
- package/client/src/dashboard/AccessControl/UserStats.tsx +83 -0
- package/client/src/dashboard/AccessControl/UserSyncConfig.tsx +168 -0
- package/client/src/dashboard/AccessControl/UserTypeSelect.tsx +86 -0
- package/client/src/dashboard/AccessControl/useAccessControlSearchParams.ts +81 -0
- package/client/src/dashboard/AccessControl/useEditedAccessRule.ts +293 -0
- package/client/src/dashboard/AskLLM/AskLLM.tsx +91 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChat.tsx +208 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatHeader.tsx +127 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessage.tsx +77 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessageContent.tsx +96 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessageContentText.tsx +57 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessageHeader.tsx +129 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMGroupedToolCallsMessage.tsx +122 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMSingleChatMessage.tsx +44 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMToolCallIcon.tsx +12 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/Agent/Agent.tsx +161 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/Agent/AgentGoalToolCall.tsx +59 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgentDefinition.tsx +206 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflow.tsx +242 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActions.tsx +245 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActivity/AgenticWorkflowActivity.tsx +225 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActivity/ToolCall.tsx +137 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActivity/useAgenticWorkflowActivityItems.ts +70 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowDefinition.tsx +173 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowDetails.tsx +141 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowMessage.tsx +103 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowSchemaDrift.tsx +146 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/ContainerConfigurationEditor.tsx +184 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/McpToolAccess.tsx +156 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/UserInput.tsx +393 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/UserInputColumnValues.tsx +61 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/hooks/useAgenticWorkflowState.ts +50 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/hooks/useUserInput.ts +27 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AskUserQuestions.tsx +249 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/CreateTables.tsx +32 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DockerContainer.tsx +296 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingDocument.d.ts +154 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingDocumentViewer.tsx +98 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingDocumentViewerPage.tsx +42 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingTable.tsx +166 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingText.tsx +99 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingToolUseView.tsx +47 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/ExecuteSQL.tsx +34 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/LoadSuggestedDashboards.tsx +172 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/RequestToolAccess.tsx +272 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/RunCodeInSandbox.tsx +33 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/RunTypescriptInNodejs.tsx +48 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/ToolUseResultError.tsx +29 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/WebSearch/Favicon.tsx +34 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/WebSearch/Markdown.tsx +21 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/WebSearch/WebSearch.tsx +70 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/Webdev/CreateComponentQuickFeedbackPreview.tsx +104 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/DatabaseAccessPermissions.tsx +63 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/HeaderList.tsx +26 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useJSONBParsedData.ts +16 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useSendToolUseResult.ts +46 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useToolUseResultString.ts +27 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useTypedToolUseResultData.ts +85 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesToolUseMessage.tsx +127 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/InChatToolApprover.tsx +82 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessage.tsx +109 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageBtn.tsx +51 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageBtnTextSummary.tsx +45 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageJSONData.tsx +132 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageResult.tsx +57 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseReRunBtn.tsx +71 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/useToolUseChatMessage.ts +51 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/utils/getToolUseResult.ts +40 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/hooks/useLLMChatMessageGrouper.tsx +168 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/hooks/useLLMChatMessages.tsx +157 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/setChatPrompt.ts +116 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatSettings.tsx +88 -0
- package/client/src/dashboard/AskLLM/Chat/useAskLLMChatSend.ts +111 -0
- package/client/src/dashboard/AskLLM/Chat/useLLMChat.tsx +126 -0
- package/client/src/dashboard/AskLLM/Chat/useLLMSchemaStr.ts +207 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBar.tsx +34 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarDatabaseAccess.tsx +273 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarMCPTools.tsx +102 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarMCPToolsBtn.tsx +167 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarModelSelector.tsx +238 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarPromptSelector.tsx +206 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/PromptAndAllowedMcpToolsSchemaPreviews.tsx +85 -0
- package/client/src/dashboard/AskLLM/LLMModelSelector.tsx +270 -0
- package/client/src/dashboard/AskLLM/Setup/AddLLMPromptForm.tsx +33 -0
- package/client/src/dashboard/AskLLM/Setup/AskLLMAccessControl.tsx +246 -0
- package/client/src/dashboard/AskLLM/Setup/LLMProviderSetup.tsx +68 -0
- package/client/src/dashboard/AskLLM/Setup/LLMSetupProvider.tsx +111 -0
- package/client/src/dashboard/AskLLM/Setup/ProstglesSignup.tsx +108 -0
- package/client/src/dashboard/AskLLM/Setup/SetupLLMCredentials.tsx +89 -0
- package/client/src/dashboard/AskLLM/Tools/AskLLMToolApprover.tsx +279 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedBarchart.ts +126 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedMap.ts +58 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedTable.ts +159 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedTimechart.ts +78 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedWorkspaces.ts +168 -0
- package/client/src/dashboard/AskLLM/Tools/useAskLLMToolApprover.ts +99 -0
- package/client/src/dashboard/AskLLM/useLocalLLM.ts +84 -0
- package/client/src/dashboard/BackupAndRestore/AutomaticBackups.tsx +212 -0
- package/client/src/dashboard/BackupAndRestore/BackupsControls.tsx +291 -0
- package/client/src/dashboard/BackupAndRestore/BackupsInProgress.tsx +98 -0
- package/client/src/dashboard/BackupAndRestore/CloudStorageCredentialSelector.tsx +215 -0
- package/client/src/dashboard/BackupAndRestore/CodeConfirmation.tsx +205 -0
- package/client/src/dashboard/BackupAndRestore/CompletedBackups/DeleteAllBackups.tsx +58 -0
- package/client/src/dashboard/BackupAndRestore/CompletedBackups.tsx +276 -0
- package/client/src/dashboard/BackupAndRestore/DumpLocationOptions.tsx +40 -0
- package/client/src/dashboard/BackupAndRestore/DumpRestoreAlerts.tsx +82 -0
- package/client/src/dashboard/BackupAndRestore/PGDumpOptions.tsx +299 -0
- package/client/src/dashboard/BackupAndRestore/RenderBackupLogs.tsx +48 -0
- package/client/src/dashboard/BackupAndRestore/RenderBackupStatus.tsx +58 -0
- package/client/src/dashboard/BackupAndRestore/Restore/Restore.tsx +205 -0
- package/client/src/dashboard/BackupAndRestore/Restore/RestoreOptions.tsx +148 -0
- package/client/src/dashboard/BackupAndRestore/Restore/useRestoreDatabaseFromFile.ts +73 -0
- package/client/src/dashboard/BackupAndRestore/useBackupsControlsState.ts +39 -0
- package/client/src/dashboard/Charts/CanvasChart.ts +746 -0
- package/client/src/dashboard/Charts/TimeChart/TimeChart.tsx +232 -0
- package/client/src/dashboard/Charts/TimeChart/getBinValueLabels.ts +125 -0
- package/client/src/dashboard/Charts/TimeChart/getCssVariableValue.ts +6 -0
- package/client/src/dashboard/Charts/TimeChart/getTimeAxisTicks.ts +426 -0
- package/client/src/dashboard/Charts/TimeChart/getTimechartBinSize.ts +121 -0
- package/client/src/dashboard/Charts/TimeChart/getTimechartTooltipIntersections.ts +94 -0
- package/client/src/dashboard/Charts/TimeChart/getTimechartTooltipShapes.ts +318 -0
- package/client/src/dashboard/Charts/TimeChart/measureText.ts +34 -0
- package/client/src/dashboard/Charts/TimeChart/onDeltaTimechart.ts +65 -0
- package/client/src/dashboard/Charts/TimeChart/onRenderTimechart.ts +354 -0
- package/client/src/dashboard/Charts/TimeChart/prepareTimechartData.ts +185 -0
- package/client/src/dashboard/Charts/constants.ts +8 -0
- package/client/src/dashboard/Charts/createHiPPICanvas.ts +31 -0
- package/client/src/dashboard/Charts/drawMonotoneXCurve.ts +171 -0
- package/client/src/dashboard/Charts/drawShapes/drawLinkLine.ts +29 -0
- package/client/src/dashboard/Charts/drawShapes/drawShapes.ts +217 -0
- package/client/src/dashboard/Charts/drawShapes/drawShapesOnSVG.ts +481 -0
- package/client/src/dashboard/Charts/drawShapes/findShortestPathAroundRectangles.ts +241 -0
- package/client/src/dashboard/Charts/drawShapes/getLinkLinePoints.ts +124 -0
- package/client/src/dashboard/Charts/drawShapes/getTimechartGradientPeakSections.ts +27 -0
- package/client/src/dashboard/Charts/drawShapes/shortestLinkLineV2.ts +182 -0
- package/client/src/dashboard/Charts/roundRect.ts +42 -0
- package/client/src/dashboard/Charts.tsx +216 -0
- package/client/src/dashboard/CodeEditor/CodeEditor.tsx +288 -0
- package/client/src/dashboard/CodeEditor/CodeEditorWithSaveButton.tsx +208 -0
- package/client/src/dashboard/CodeEditor/registerLogLang.ts +128 -0
- package/client/src/dashboard/CodeEditor/utils/getMonacoJsonSchemas.ts +31 -0
- package/client/src/dashboard/CodeEditor/utils/installGoToDefinition.ts +40 -0
- package/client/src/dashboard/CodeEditor/utils/navigateTo.ts +61 -0
- package/client/src/dashboard/CodeEditor/utils/resolveDefinition..ts +33 -0
- package/client/src/dashboard/CodeEditor/utils/setMonacoErrorMarkers.ts +67 -0
- package/client/src/dashboard/CodeEditor/utils/useSetMonacoJsonSchemas.ts +60 -0
- package/client/src/dashboard/CodeEditor/utils/useSetMonacoTsLibraries.ts +157 -0
- package/client/src/dashboard/CodeExample.tsx +34 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APICodeExamples.tsx +280 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetails.tsx +111 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetailsHttp.tsx +123 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetailsTokens.tsx +137 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetailsWs.tsx +98 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/AllowedOriginCheck.tsx +104 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/getApiEndpoint.ts +8 -0
- package/client/src/dashboard/ConnectionConfig/ConnectionConfig.tsx +267 -0
- package/client/src/dashboard/ConnectionConfig/ConnectionConfigSync.tsx +123 -0
- package/client/src/dashboard/ConnectionConfig/ServerSideFunctions.tsx +46 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfig.tsx +90 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfigComponents.tsx +47 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfigFooterActions.tsx +137 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfigSetup.tsx +135 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/hooks/useWebAppConfigActiveSection.ts +12 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/hooks/useWebAppConfigState.ts +76 -0
- package/client/src/dashboard/ConnectionConfig/useConnectionConfigSearchParams.ts +35 -0
- package/client/src/dashboard/ConnectionSelector.tsx +58 -0
- package/client/src/dashboard/Dashboard/CloseSaveSQLPopup.tsx +81 -0
- package/client/src/dashboard/Dashboard/DBS.ts +19 -0
- package/client/src/dashboard/Dashboard/Dashboard.tsx +667 -0
- package/client/src/dashboard/Dashboard/DashboardCenteredLayoutResizer.tsx +56 -0
- package/client/src/dashboard/Dashboard/PALETTE.ts +36 -0
- package/client/src/dashboard/Dashboard/ViewRenderer.tsx +498 -0
- package/client/src/dashboard/Dashboard/addChart.ts +261 -0
- package/client/src/dashboard/Dashboard/addLink.ts +48 -0
- package/client/src/dashboard/Dashboard/addWindow.ts +51 -0
- package/client/src/dashboard/Dashboard/cardLayout.ts +28 -0
- package/client/src/dashboard/Dashboard/cloneWorkspace.ts +102 -0
- package/client/src/dashboard/Dashboard/dashboardUtils.ts +377 -0
- package/client/src/dashboard/Dashboard/debuggingUtils.ts +112 -0
- package/client/src/dashboard/Dashboard/getTables.ts +31 -0
- package/client/src/dashboard/Dashboard/getViewRendererUtils.ts +108 -0
- package/client/src/dashboard/Dashboard/onLinkTable.ts +45 -0
- package/client/src/dashboard/Dashboard/useAddViewToWorkspace.ts +92 -0
- package/client/src/dashboard/DashboardMenu/CreateTable.tsx +307 -0
- package/client/src/dashboard/DashboardMenu/DashboardHotkeys.tsx +38 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenu.tsx +183 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuContent.tsx +203 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuHeader.tsx +86 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuHotkeys.tsx +102 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuResizer.tsx +68 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuSettings.tsx +241 -0
- package/client/src/dashboard/DashboardMenu/NewTableMenu.tsx +121 -0
- package/client/src/dashboard/DashboardMenu/SavedAgenticWorkflowsAndContainers.tsx +149 -0
- package/client/src/dashboard/DashboardMenu/SettingsSection.tsx +22 -0
- package/client/src/dashboard/DashboardMenu/TableList.tsx +141 -0
- package/client/src/dashboard/DashboardMenu/useTableSizeInfo.ts +98 -0
- package/client/src/dashboard/DatabaseAccessEditor/DatabaseAccessEditor.tsx +174 -0
- package/client/src/dashboard/DatabaseAccessEditor/DatabaseAccessEditorCustomTables.tsx +149 -0
- package/client/src/dashboard/DatabaseAccessEditor/TableAccessAdvancedOptions.tsx +128 -0
- package/client/src/dashboard/DatabaseAccessEditor/TableAccessAdvancedOptionsMenu.tsx +65 -0
- package/client/src/dashboard/DatabaseAccessEditor/TableAccessDetails.tsx +163 -0
- package/client/src/dashboard/DatabaseAccessEditor/TableAccessEditor.tsx +229 -0
- package/client/src/dashboard/DatabaseAccessEditor/getTableSchemaDriftState.ts +65 -0
- package/client/src/dashboard/DatabaseAccessEditor/useDatabaseAccessEditorTables.tsx +99 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseControl.tsx +139 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseControlRouter.tsx +192 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/AgeFilter.tsx +148 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/GeoFilter.tsx +255 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/ListFilter/ListFilter.tsx +235 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/ListFilter/fetchListFilterOptions.ts +76 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/NumberOrDateFilter.tsx +206 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterControl.tsx +157 -0
- package/client/src/dashboard/DetailedFilterControl/FTS_LANGUAGES.ts +35 -0
- package/client/src/dashboard/DetailedFilterControl/FilterWrapper.css +7 -0
- package/client/src/dashboard/DetailedFilterControl/FilterWrapper.tsx +339 -0
- package/client/src/dashboard/DetailedFilterControl/validateFilter.ts +46 -0
- package/client/src/dashboard/Feedback.tsx +145 -0
- package/client/src/dashboard/FileImporter/FileImporter.tsx +770 -0
- package/client/src/dashboard/FileImporter/FileImporterFooter.tsx +100 -0
- package/client/src/dashboard/FileImporter/checkCSVColumnDataTypes.tsx +139 -0
- package/client/src/dashboard/FileImporter/importFile.ts +303 -0
- package/client/src/dashboard/FileImporter/parseCSVFile.ts +123 -0
- package/client/src/dashboard/FileImporter/setFile.ts +251 -0
- package/client/src/dashboard/FileTableControls/CreateFileColumn.tsx +189 -0
- package/client/src/dashboard/FileTableControls/FileColumnConfigControls.tsx +191 -0
- package/client/src/dashboard/FileTableControls/FileColumnConfigEditor.tsx +251 -0
- package/client/src/dashboard/FileTableControls/FileStorageControls.tsx +294 -0
- package/client/src/dashboard/FileTableControls/FileStorageDelete.tsx +106 -0
- package/client/src/dashboard/FileTableControls/FileStorageReferencedTablesConfig.tsx +80 -0
- package/client/src/dashboard/FileTableControls/FileTableConfigControls.tsx +69 -0
- package/client/src/dashboard/FileTableControls/hooks/useFileTableConfigControls.ts +70 -0
- package/client/src/dashboard/FileTableControls/hooks/useSetFileStorage.ts +128 -0
- package/client/src/dashboard/JSONBColumnEditor.tsx +60 -0
- package/client/src/dashboard/LinkMenu.tsx +332 -0
- package/client/src/dashboard/Map/DeckGLFeatureEditor.tsx +645 -0
- package/client/src/dashboard/Map/DeckGLMap.css +45 -0
- package/client/src/dashboard/Map/DeckGLMap.tsx +576 -0
- package/client/src/dashboard/Map/DeckGLWrapped.ts +312 -0
- package/client/src/dashboard/Map/InMapControls.tsx +137 -0
- package/client/src/dashboard/Map/MVTLayerProps.ts +306 -0
- package/client/src/dashboard/Map/fitBounds.ts +63 -0
- package/client/src/dashboard/Map/mapDrawUtils.ts +129 -0
- package/client/src/dashboard/Map/mapUtils.ts +183 -0
- package/client/src/dashboard/RTComp.tsx +165 -0
- package/client/src/dashboard/RenderFilter.tsx +174 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/CommonMatchImports.ts +366 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/KEYWORDS.ts +448 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/MatchCreate.ts +294 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/MatchCreateView.ts +106 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateIndex.ts +220 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreatePolicy.ts +108 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateRule.tsx +99 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateTable.ts +336 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateTrigger.ts +84 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/MatchAlter.tsx +258 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/matchAlterPolicy.ts +50 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/matchAlterTable.ts +325 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/matchCreateOrAlterUser.tsx +192 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchComment.ts +86 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchCopy.ts +367 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchDrop.ts +161 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchFirst.ts +471 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchGrant.ts +331 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchInsert.tsx +123 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchLast.ts +10 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchPublication.ts +126 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchReassign.ts +35 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchReindex.ts +36 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchSelect.ts +623 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchSet.ts +183 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchSubscription.ts +231 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchUpdate.ts +79 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchVacuum.ts +86 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchWith.ts +222 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MathDelete.ts +18 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/PSQL.ts +136 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/STARTING_KEYWORDS.ts +931 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/TableKWDs.ts +479 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/checkIfInsideDollarFunctionDefinition.ts +88 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/checkIfUnfinishedParenthesis.ts +74 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getCodeBlock.ts +627 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getQueryReturnType.ts +274 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getTableExpressionReturnTypes.ts +243 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getTabularExpressions.ts +428 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getTokens.ts +239 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getExpected.ts +176 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getJoinSuggestions.ts +193 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getMatch.ts +62 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getPGObjects.ts +1270 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getPrevTokensNoParantheses.ts +234 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/jsonbPathSuggest.ts +188 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/monacoSQLSetup/registerHover.ts +138 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/monacoSQLSetup/registerSuggestions.ts +549 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestColumnLike.ts +251 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestCondition.ts +320 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestFuncArgs.ts +105 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestTableLike.ts +104 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestValue.ts +125 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/withKWDs.ts +507 -0
- package/client/src/dashboard/SQLEditor/SQLEditorSuggestions.ts +1883 -0
- package/client/src/dashboard/SQLEditor/SQLSmartEditor.tsx +124 -0
- package/client/src/dashboard/SQLEditor/SQL_SNIPPETS.ts +43 -0
- package/client/src/dashboard/SQLEditor/W_SQLEditor.css +15 -0
- package/client/src/dashboard/SQLEditor/W_SQLEditor.tsx +746 -0
- package/client/src/dashboard/SQLEditor/addSqlEditorFunctions.ts +74 -0
- package/client/src/dashboard/SQLEditor/defineCustomMonacoSQLTheme.ts +74 -0
- package/client/src/dashboard/SQLEditor/getFormattedSql.ts +154 -0
- package/client/src/dashboard/SQLEditor/registerFunctionSuggestions.ts +175 -0
- package/client/src/dashboard/SQLEditor/utils/scrollToLineIfNeeded.ts +17 -0
- package/client/src/dashboard/SQLEditor/utils/setMonacEditorError.ts +93 -0
- package/client/src/dashboard/SampleSchemas.tsx +50 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/ERDSchema.tsx +175 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/getInitialPlacement.ts +115 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/getInitialPlacementV2.ts +343 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useCanvasPanZoom.ts +54 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useDrawHiddenSvgForNativeTextSearch.ts +80 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useDrawSchemaShapes.ts +242 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useFetchSchemaForDiagram.ts +276 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/usePanShapes.ts +160 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useSchemaShapes.ts +352 -0
- package/client/src/dashboard/SchemaGraph/SchemaGraph.tsx +55 -0
- package/client/src/dashboard/SchemaGraph/SchemaGraphControls.tsx +226 -0
- package/client/src/dashboard/SchemaGraph/types.ts +29 -0
- package/client/src/dashboard/SearchAll/SearchAll.tsx +77 -0
- package/client/src/dashboard/SearchAll/SearchAllContent.tsx +63 -0
- package/client/src/dashboard/SearchAll/SearchAllHeader.tsx +71 -0
- package/client/src/dashboard/SearchAll/SearchMatchRow.tsx +103 -0
- package/client/src/dashboard/SearchAll/hooks/useSearchAllState.ts +46 -0
- package/client/src/dashboard/SearchAll/hooks/useSearchListProps.tsx +178 -0
- package/client/src/dashboard/SearchAll/hooks/useSearchTables.tsx +163 -0
- package/client/src/dashboard/SearchAll/hooks/useTablesAndViewsSearchItems.ts +55 -0
- package/client/src/dashboard/SilverGrid/SilverGrid.tsx +531 -0
- package/client/src/dashboard/SilverGrid/SilverGridChild.tsx +403 -0
- package/client/src/dashboard/SilverGrid/SilverGridChildHeader.tsx +235 -0
- package/client/src/dashboard/SilverGrid/SilverGridResizer.tsx +129 -0
- package/client/src/dashboard/SilverGrid/TreeBuilder.ts +261 -0
- package/client/src/dashboard/SmartCard/SmartCard.tsx +218 -0
- package/client/src/dashboard/SmartCard/SmartCardActions.tsx +113 -0
- package/client/src/dashboard/SmartCard/SmartCardColumn.tsx +49 -0
- package/client/src/dashboard/SmartCard/getSelectForFieldConfigs.ts +44 -0
- package/client/src/dashboard/SmartCard/parseFieldConfigs.tsx +165 -0
- package/client/src/dashboard/SmartCard/useFieldConfigParser.ts +55 -0
- package/client/src/dashboard/SmartCard/useSmartCardColumns.ts +46 -0
- package/client/src/dashboard/SmartCardList/SmartCardList.tsx +291 -0
- package/client/src/dashboard/SmartCardList/SmartCardListHeaderControls.tsx +130 -0
- package/client/src/dashboard/SmartCardList/SmartCardListJoinedNewRecords.tsx +97 -0
- package/client/src/dashboard/SmartCardList/useSmartCardListState.ts +273 -0
- package/client/src/dashboard/SmartFilter/AddJoinFilter.tsx +97 -0
- package/client/src/dashboard/SmartFilter/MinimisedFilter.css +13 -0
- package/client/src/dashboard/SmartFilter/MinimisedFilter.tsx +208 -0
- package/client/src/dashboard/SmartFilter/SmartAddFilter.tsx +324 -0
- package/client/src/dashboard/SmartFilter/SmartFilter.tsx +182 -0
- package/client/src/dashboard/SmartFilter/SmartSearch/SmartSearch.css +4 -0
- package/client/src/dashboard/SmartFilter/SmartSearch/SmartSearch.tsx +230 -0
- package/client/src/dashboard/SmartFilter/SmartSearch/getSmartSearchRows.ts +277 -0
- package/client/src/dashboard/SmartFilter/SmartSearch/onSearchItems.tsx +146 -0
- package/client/src/dashboard/SmartFilter/SortByControl.tsx +81 -0
- package/client/src/dashboard/SmartFilter/smartFilterUtils.ts +97 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBar.tsx +178 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBarFilters.tsx +103 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBarRightActions.tsx +212 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBarSearch.tsx +115 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBarSort.tsx +108 -0
- package/client/src/dashboard/SmartFilterBar/useSmartFilterBarState.ts +100 -0
- package/client/src/dashboard/SmartForm/ChipArrayEditor.tsx +169 -0
- package/client/src/dashboard/SmartForm/InsertButton.tsx +89 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/JoinedRecords.tsx +155 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/JoinedRecordsAddRow.tsx +182 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/JoinedRecordsSection.tsx +168 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/getJoinFilter.ts +31 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/useJoinedRecordsSections.ts +246 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/useJoinedSectionFieldConfigs.tsx +120 -0
- package/client/src/dashboard/SmartForm/SmartForm.tsx +368 -0
- package/client/src/dashboard/SmartForm/SmartFormField/RenderValue/RenderJson.tsx +72 -0
- package/client/src/dashboard/SmartForm/SmartFormField/RenderValue.tsx +294 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormField.tsx +349 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldFileSection.tsx +51 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldForeignKey.tsx +253 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedData.tsx +207 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedDataInsert/SmartFormFieldLinkedDataInsert.tsx +165 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedDataInsert/useSmartFormFieldLinkedDataInsert.tsx +77 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedDataSearch.tsx +91 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldRightButtons.tsx +110 -0
- package/client/src/dashboard/SmartForm/SmartFormField/ViewMoreSmartCardList.tsx +86 -0
- package/client/src/dashboard/SmartForm/SmartFormField/fetchColumnValueSuggestions.ts +92 -0
- package/client/src/dashboard/SmartForm/SmartFormField/fetchForeignKeyOptions.tsx +348 -0
- package/client/src/dashboard/SmartForm/SmartFormField/fieldUtils.ts +228 -0
- package/client/src/dashboard/SmartForm/SmartFormField/useNestedInsertDefaultData.ts +28 -0
- package/client/src/dashboard/SmartForm/SmartFormField/useSmartFormFieldAsJSON.tsx +87 -0
- package/client/src/dashboard/SmartForm/SmartFormField/useSmartFormFieldOnChange.ts +65 -0
- package/client/src/dashboard/SmartForm/SmartFormFieldList.tsx +190 -0
- package/client/src/dashboard/SmartForm/SmartFormFileSection.tsx +110 -0
- package/client/src/dashboard/SmartForm/SmartFormFooter/SmartFormFooterButtons.tsx +133 -0
- package/client/src/dashboard/SmartForm/SmartFormFooter/useSmartFormActions.ts +265 -0
- package/client/src/dashboard/SmartForm/SmartFormNewRowDataHandler.ts +168 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/SmartFormPopupWrapper.tsx +92 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/SmartFormPrevNext.tsx +33 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/SmartFormViewAsMarkdown.tsx +83 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/useSmartFormPrevNext.ts +20 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/useSmartFormSubTitle.ts +44 -0
- package/client/src/dashboard/SmartForm/SmartFormUpperFooter/SmartFormUpperFooter.tsx +198 -0
- package/client/src/dashboard/SmartForm/SmartFormUpperFooter/useActiveJoinedRecordsTab.ts +65 -0
- package/client/src/dashboard/SmartForm/constants.ts +1 -0
- package/client/src/dashboard/SmartForm/useNewRowDataHandler.ts +386 -0
- package/client/src/dashboard/SmartForm/useSmartForm.ts +67 -0
- package/client/src/dashboard/SmartForm/useSmartFormColumns.ts +127 -0
- package/client/src/dashboard/SmartForm/useSmartFormMode.ts +243 -0
- package/client/src/dashboard/SmartSelect.tsx +228 -0
- package/client/src/dashboard/SmartTable.tsx +383 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitor.tsx +41 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorBlockedByPid.tsx +35 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorConnections.tsx +127 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorInfoHeader/StatusMonitorInfoHeader.tsx +122 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorInfoHeader/StatusMonitorInfoHeaderCpu.tsx +122 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorInfoHeader/StatusMonitorInfoHeaderMemory.tsx +21 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorProcList.tsx +292 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorProcListControlsHeader.tsx +85 -0
- package/client/src/dashboard/TableConfig/ProcessLogs.tsx +65 -0
- package/client/src/dashboard/TableConfig/TableConfig.tsx +88 -0
- package/client/src/dashboard/TimeSeries.tsx +29 -0
- package/client/src/dashboard/UserManager.tsx +54 -0
- package/client/src/dashboard/W_Barchart/W_Barchart.tsx +104 -0
- package/client/src/dashboard/W_Barchart/fetchSQLBarchartData.ts +7 -0
- package/client/src/dashboard/W_Barchart/useBarchartData.ts +176 -0
- package/client/src/dashboard/W_Map/OSM/OverpassQuery.tsx +21 -0
- package/client/src/dashboard/W_Map/OSM/fetchOSMCountryBoundary.ts +73 -0
- package/client/src/dashboard/W_Map/OSM/getOSMData.ts +240 -0
- package/client/src/dashboard/W_Map/OSM/osmToGeoJSON.ts +198 -0
- package/client/src/dashboard/W_Map/OSM/osmTypes.ts +1856 -0
- package/client/src/dashboard/W_Map/W_Map.tsx +747 -0
- package/client/src/dashboard/W_Map/W_MapMenu.tsx +188 -0
- package/client/src/dashboard/W_Map/controls/MapBasemapOptions.tsx +268 -0
- package/client/src/dashboard/W_Map/controls/MapInfoSection.tsx +95 -0
- package/client/src/dashboard/W_Map/controls/MapOSMQuery.tsx +174 -0
- package/client/src/dashboard/W_Map/controls/MapOpacityMenu.tsx +60 -0
- package/client/src/dashboard/W_Map/fetchData/fetchMapLayerData.ts +401 -0
- package/client/src/dashboard/W_Map/fetchData/getMapData.ts +161 -0
- package/client/src/dashboard/W_Map/fetchData/getMapDataExtent.ts +86 -0
- package/client/src/dashboard/W_Map/fetchData/getMapLayerQueries.ts +232 -0
- package/client/src/dashboard/W_Map/getMapFeatureStyle.ts +160 -0
- package/client/src/dashboard/W_Map/onMapHover.ts +118 -0
- package/client/src/dashboard/W_Method/FunctionLabel.tsx +24 -0
- package/client/src/dashboard/W_Method/NewMethod.tsx +108 -0
- package/client/src/dashboard/W_Method/PublishedMethods.tsx +218 -0
- package/client/src/dashboard/W_Method/W_Method.tsx +48 -0
- package/client/src/dashboard/W_Method/W_MethodControls.tsx +338 -0
- package/client/src/dashboard/W_Method/W_MethodMenu.tsx +162 -0
- package/client/src/dashboard/W_QuickMenu.tsx +228 -0
- package/client/src/dashboard/W_SQL/CSVRender.tsx +18 -0
- package/client/src/dashboard/W_SQL/CopyResultBtn.tsx +246 -0
- package/client/src/dashboard/W_SQL/MonacoLanguageRegister.ts +701 -0
- package/client/src/dashboard/W_SQL/SQLHotkeys.tsx +23 -0
- package/client/src/dashboard/W_SQL/TestSQL.ts +52 -0
- package/client/src/dashboard/W_SQL/W_SQL.tsx +679 -0
- package/client/src/dashboard/W_SQL/W_SQLBottomBar/W_SQLBottomBar.tsx +484 -0
- package/client/src/dashboard/W_SQL/W_SQLBottomBar/W_SQLBottomBarProcStats.tsx +67 -0
- package/client/src/dashboard/W_SQL/W_SQLMenu.tsx +403 -0
- package/client/src/dashboard/W_SQL/W_SQLResults.tsx +161 -0
- package/client/src/dashboard/W_SQL/customRenderers.tsx +126 -0
- package/client/src/dashboard/W_SQL/demoScripts/createTables.ts +262 -0
- package/client/src/dashboard/W_SQL/demoScripts/mainTestScripts.ts +269 -0
- package/client/src/dashboard/W_SQL/demoScripts/testBugs.ts +596 -0
- package/client/src/dashboard/W_SQL/demoScripts/testMiscAndBugs.ts +61 -0
- package/client/src/dashboard/W_SQL/demoScripts/testSqlCharts.ts +117 -0
- package/client/src/dashboard/W_SQL/getChartableSQL.ts +169 -0
- package/client/src/dashboard/W_SQL/getDemoUtils.ts +260 -0
- package/client/src/dashboard/W_SQL/getSQLResultTableColumns.ts +56 -0
- package/client/src/dashboard/W_SQL/monacoEditorTypes.ts +13 -0
- package/client/src/dashboard/W_SQL/parseExplainResult.ts +99 -0
- package/client/src/dashboard/W_SQL/parseSQLError.ts +55 -0
- package/client/src/dashboard/W_SQL/parseSqlResultCols.ts +96 -0
- package/client/src/dashboard/W_SQL/runSQL/getQueryTotalRowCount.ts +38 -0
- package/client/src/dashboard/W_SQL/runSQL/runSQL.ts +432 -0
- package/client/src/dashboard/W_SQL/runSQLErrorHints.ts +150 -0
- package/client/src/dashboard/W_Table/CardView/CardItem/CardItemBody.tsx +151 -0
- package/client/src/dashboard/W_Table/CardView/CardItem/CardItemHeader.tsx +150 -0
- package/client/src/dashboard/W_Table/CardView/CardItem/CardViewRow.tsx +160 -0
- package/client/src/dashboard/W_Table/CardView/CardView.tsx +87 -0
- package/client/src/dashboard/W_Table/CardView/CardViewColumn.tsx +82 -0
- package/client/src/dashboard/W_Table/CardView/CardViewKanban.tsx +87 -0
- package/client/src/dashboard/W_Table/CardView/DragHeader.tsx +46 -0
- package/client/src/dashboard/W_Table/CardView/constants.ts +1 -0
- package/client/src/dashboard/W_Table/CardView/useCardViewState.ts +50 -0
- package/client/src/dashboard/W_Table/CardView/useDragHeader.ts +280 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddColumnMenu.tsx +193 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/AddComputedColMenu.tsx +650 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/FunctionColumnList.tsx +75 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/QuickAddComputedColumn.tsx +129 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/useAddComputedColumn.ts +175 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/AlterColumn.tsx +421 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/AlterColumnFileOptions.tsx +84 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/ColumnEditor.tsx +229 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/CreateColumn.tsx +150 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/ReferenceEditor.tsx +243 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/alterColumnUtilts.ts +53 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColorPicker.tsx +251 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ChipStylePalette.tsx +127 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ColumnDisplayFormat.tsx +116 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ConditionalCellIconStyleControls.tsx +140 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ConditionalCellStyleControls.tsx +235 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/NestedColumnRender.tsx +172 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/columnFormatUtils.tsx +330 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnList.tsx +291 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnMenu.tsx +537 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnQuickStats/ColumnQuickStats.tsx +176 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnQuickStats/useColumnQuickStats.ts +169 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnSelect/ColumnSelect.tsx +54 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnSelect/getColumnListItem.tsx +97 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnSortMenu.tsx +146 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnStyleControls/ColumnStyleControls.tsx +258 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnStyleControls/getValueColors.ts +101 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnsMenu.tsx +178 -0
- package/client/src/dashboard/W_Table/ColumnMenu/FunctionSelector/FunctionExtraArguments.tsx +140 -0
- package/client/src/dashboard/W_Table/ColumnMenu/FunctionSelector/FunctionSelector.tsx +89 -0
- package/client/src/dashboard/W_Table/ColumnMenu/FunctionSelector/functions.ts +438 -0
- package/client/src/dashboard/W_Table/ColumnMenu/JoinPathSelectorV2.tsx +212 -0
- package/client/src/dashboard/W_Table/ColumnMenu/LinkedColumn/LinkedColumn.tsx +295 -0
- package/client/src/dashboard/W_Table/ColumnMenu/LinkedColumn/LinkedColumnFooter.tsx +94 -0
- package/client/src/dashboard/W_Table/ColumnMenu/LinkedColumn/LinkedColumnSelect.tsx +160 -0
- package/client/src/dashboard/W_Table/ColumnMenu/NestedTimechartControls.tsx +167 -0
- package/client/src/dashboard/W_Table/ColumnMenu/SummariseColumns.tsx +126 -0
- package/client/src/dashboard/W_Table/ColumnMenu/UpdateColumnGlobalConfig.tsx +69 -0
- package/client/src/dashboard/W_Table/ColumnMenu/getNestedColumnTable.ts +83 -0
- package/client/src/dashboard/W_Table/ColumnMenu/rgba2hex.ts +36 -0
- package/client/src/dashboard/W_Table/JoinPathSelector/JoinPathItem.tsx +133 -0
- package/client/src/dashboard/W_Table/JoinPathSelector/JoinPathSelector.tsx +100 -0
- package/client/src/dashboard/W_Table/JoinPathSelector/getJoinTree.ts +79 -0
- package/client/src/dashboard/W_Table/NodeCountChecker.tsx +58 -0
- package/client/src/dashboard/W_Table/ProstglesTable.css +64 -0
- package/client/src/dashboard/W_Table/QuickFilterGroupsControl.tsx +86 -0
- package/client/src/dashboard/W_Table/RowCard.tsx +102 -0
- package/client/src/dashboard/W_Table/TableMenu/AddChartMenu.tsx +288 -0
- package/client/src/dashboard/W_Table/TableMenu/AutoRefreshMenu.tsx +118 -0
- package/client/src/dashboard/W_Table/TableMenu/TableDisplayOptionsJSON.tsx +71 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu.tsx +365 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_AccessRules.tsx +127 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Constraints.tsx +140 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_CurrentQuery.tsx +82 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_DisplayOptions.tsx +266 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Indexes.tsx +179 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Policies.tsx +197 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_TableInfo.tsx +184 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Triggers.tsx +199 -0
- package/client/src/dashboard/W_Table/TableMenu/getAndFixWColumnsConfig.tsx +116 -0
- package/client/src/dashboard/W_Table/TableMenu/getChartCols.ts +153 -0
- package/client/src/dashboard/W_Table/TableMenu/getTableMeta.ts +205 -0
- package/client/src/dashboard/W_Table/TooManyColumnsWarning.tsx +72 -0
- package/client/src/dashboard/W_Table/W_Table.tsx +772 -0
- package/client/src/dashboard/W_Table/W_Table_Content.tsx +51 -0
- package/client/src/dashboard/W_Table/colorBlend.ts +75 -0
- package/client/src/dashboard/W_Table/getTableData/getTableData.ts +291 -0
- package/client/src/dashboard/W_Table/getTableData/getTableFilter.ts +66 -0
- package/client/src/dashboard/W_Table/tableUtils/StyledTableColumn.tsx +322 -0
- package/client/src/dashboard/W_Table/tableUtils/getColWInfo.ts +48 -0
- package/client/src/dashboard/W_Table/tableUtils/getColWidth.ts +160 -0
- package/client/src/dashboard/W_Table/tableUtils/getEditColumn.tsx +143 -0
- package/client/src/dashboard/W_Table/tableUtils/getFullColumnConfig.ts +43 -0
- package/client/src/dashboard/W_Table/tableUtils/getJoinPaths.ts +89 -0
- package/client/src/dashboard/W_Table/tableUtils/getRowFilter.ts +114 -0
- package/client/src/dashboard/W_Table/tableUtils/getTableCols.tsx +258 -0
- package/client/src/dashboard/W_Table/tableUtils/getTableDataRequestSignature.ts +32 -0
- package/client/src/dashboard/W_Table/tableUtils/getTableSelect.ts +235 -0
- package/client/src/dashboard/W_Table/tableUtils/kFormatter.ts +12 -0
- package/client/src/dashboard/W_Table/tableUtils/onRenderColumn.tsx +107 -0
- package/client/src/dashboard/W_Table/tableUtils/prepareColsForRender.ts +69 -0
- package/client/src/dashboard/W_Table/tableUtils/tableUtils.ts +298 -0
- package/client/src/dashboard/W_TimeChart/AddTimeChartFilter.tsx +347 -0
- package/client/src/dashboard/W_TimeChart/W_TimeChart.tsx +405 -0
- package/client/src/dashboard/W_TimeChart/W_TimeChartHeaderControls.tsx +140 -0
- package/client/src/dashboard/W_TimeChart/W_TimeChartLayerLegend.tsx +99 -0
- package/client/src/dashboard/W_TimeChart/W_TimeChartMenu.tsx +228 -0
- package/client/src/dashboard/W_TimeChart/fetchData/constants.ts +5 -0
- package/client/src/dashboard/W_TimeChart/fetchData/fetchAndSetTimechartLayerData.ts +141 -0
- package/client/src/dashboard/W_TimeChart/fetchData/fetchTimechartLayer.ts +291 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartData.ts +163 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartLayers.ts +137 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartLayersWithBins.ts +296 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartSelectParams.ts +41 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeLayerDataSignature.ts +22 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimechartExtentFilter.ts +48 -0
- package/client/src/dashboard/Window/ChildWindowLayout.tsx +149 -0
- package/client/src/dashboard/Window/Window.tsx +322 -0
- package/client/src/dashboard/WindowControls/AddChartLayer.tsx +142 -0
- package/client/src/dashboard/WindowControls/ColorByLegend/ColorByLegend.tsx +256 -0
- package/client/src/dashboard/WindowControls/ColorByLegend/getGroupByValueColor.ts +50 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/DataLayer.tsx +182 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/DataLayerDataSource.tsx +243 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/DataLayerManager.tsx +157 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/LayerColorPicker.tsx +56 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/MapLayerStyling.tsx +192 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/useSortedLayerQueries.ts +34 -0
- package/client/src/dashboard/WindowControls/OSMLayerOptions.tsx +62 -0
- package/client/src/dashboard/WindowControls/SQLChartLayerEditor.tsx +38 -0
- package/client/src/dashboard/WindowControls/TimeChartLayerOptions.tsx +336 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceAddBtn.tsx +104 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceDeleteBtn.tsx +87 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceMenu.css +13 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceMenu.tsx +124 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceMenuDropDown.tsx +178 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceSettings.tsx +99 -0
- package/client/src/dashboard/WorkspaceMenu/useWorkspaces.ts +78 -0
- package/client/src/dashboard/getCrossFilters.ts +251 -0
- package/client/src/dashboard/localSettings.ts +94 -0
- package/client/src/dashboard/setPan.ts +358 -0
- package/client/src/dashboard/shortestPath.ts +137 -0
- package/client/src/demo/AppVideoDemo.tsx +132 -0
- package/client/src/demo/MousePointer.tsx +39 -0
- package/client/src/demo/demoUtils.ts +214 -0
- package/client/src/demo/recordDemoUtils.ts +87 -0
- package/client/src/demo/scripts/AIAssistantDemo.ts +60 -0
- package/client/src/demo/scripts/accessControlDemo.ts +44 -0
- package/client/src/demo/scripts/backupDemo.ts +50 -0
- package/client/src/demo/scripts/dashboardDemo.ts +215 -0
- package/client/src/demo/scripts/fileDemo.ts +24 -0
- package/client/src/demo/scripts/schemaDiagramDemo.ts +13 -0
- package/client/src/demo/scripts/sqlVideoDemo.ts +539 -0
- package/client/src/demo/scripts/videoDemoAccessControlScripts.ts +245 -0
- package/client/src/exports.ts +15 -0
- package/client/src/hooks/createStore.ts +24 -0
- package/client/src/hooks/useDebouncedCallback.ts +27 -0
- package/client/src/hooks/useThrottledCallback.ts +41 -0
- package/client/src/hooks/useTypedSearchParams.ts +81 -0
- package/client/src/i18n/LanguageSelector.tsx +33 -0
- package/client/src/i18n/i18nUtils.ts +187 -0
- package/client/src/i18n/translations/de.json +453 -0
- package/client/src/i18n/translations/es.json +425 -0
- package/client/src/i18n/translations/fr.json +425 -0
- package/client/src/i18n/translations/hi.json +431 -0
- package/client/src/i18n/translations/ru.json +431 -0
- package/client/src/i18n/translations/translations.ts +477 -0
- package/client/src/i18n/translations/zh.json +423 -0
- package/client/src/index.css +57 -0
- package/client/src/index.html.ejs +37 -0
- package/client/src/index.tsx +17 -0
- package/client/src/pages/Account/Account.tsx +150 -0
- package/client/src/pages/Account/ChangePassword.tsx +96 -0
- package/client/src/pages/Account/Sessions.tsx +248 -0
- package/client/src/pages/Account/Setup2FA.tsx +244 -0
- package/client/src/pages/AccountMenu.tsx +146 -0
- package/client/src/pages/Alerts.tsx +182 -0
- package/client/src/pages/AppContextProvider.tsx +26 -0
- package/client/src/pages/ComponentList.tsx +108 -0
- package/client/src/pages/ElectronSetup/ElectronSetup.tsx +122 -0
- package/client/src/pages/ElectronSetup/ElectronSetupStateDB.tsx +141 -0
- package/client/src/pages/ElectronSetup/useElectronSetup.ts +147 -0
- package/client/src/pages/Login/AuthNotifPopup.tsx +37 -0
- package/client/src/pages/Login/Login.tsx +133 -0
- package/client/src/pages/Login/LoginTotpForm.tsx +72 -0
- package/client/src/pages/Login/LoginWithProviders.tsx +62 -0
- package/client/src/pages/Login/SocialIcons.css +4 -0
- package/client/src/pages/Login/SocialIcons.tsx +85 -0
- package/client/src/pages/NewConnection/NewConnectionForm.tsx +572 -0
- package/client/src/pages/NewConnection/NewConnectionFormFields.tsx +314 -0
- package/client/src/pages/NewConnection/NewConnectionFormOptions.tsx +194 -0
- package/client/src/pages/NewConnection/SchemaFilter.tsx +87 -0
- package/client/src/pages/NewConnection/newConnectionUtils.ts +50 -0
- package/client/src/pages/NonHTTPSWarning.tsx +51 -0
- package/client/src/pages/NotFound.tsx +22 -0
- package/client/src/pages/ProjectConnection/PrglContextProvider.tsx +47 -0
- package/client/src/pages/ProjectConnection/ProjectConnection.tsx +110 -0
- package/client/src/pages/ProjectConnection/ProjectConnectionError.tsx +76 -0
- package/client/src/pages/ProjectConnection/useProjectDb.ts +253 -0
- package/client/src/pages/ProjectLogs.tsx +227 -0
- package/client/src/pages/ServerSettings/AuthProvidersSetup/AuthProvidersSetup.tsx +199 -0
- package/client/src/pages/ServerSettings/AuthProvidersSetup/useProviderProps.ts +39 -0
- package/client/src/pages/ServerSettings/EmailAuthSetup.tsx +209 -0
- package/client/src/pages/ServerSettings/EmailAuthSetupIngredients/EmailSMTPAndTemplateSetup.tsx +158 -0
- package/client/src/pages/ServerSettings/EmailAuthSetupIngredients/EmailSMTPSetup.tsx +128 -0
- package/client/src/pages/ServerSettings/EmailAuthSetupIngredients/EmailTemplateSetup.tsx +111 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfig.tsx +41 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigActions.tsx +187 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigAuthorizeUrlBtn.tsx +55 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigCredentials.tsx +81 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigTopControls.tsx +120 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/WebMcpConfig.tsx +162 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/useMcpServerOAuthConfigState.ts +132 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/MCPServerConfigButton.tsx +121 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/MCPServerConfigEditor.tsx +206 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/MCPServerConfigProvider.tsx +67 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/useMCPServerConfigState.tsx +107 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/useMCPServerEnable.ts +131 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerFooterActions/MCPServerFooterActions.tsx +108 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerFooterActions/MCPServerLogs.tsx +46 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerFooterActions/MCPServersInstall.tsx +81 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerHeaderCheckbox.tsx +120 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/MCPServerTools.tsx +95 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/MCPServerToolsGroupToggle.tsx +96 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/useMcpServerIcons.ts +87 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/useMcpToolsSelectOptions.tsx +33 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServers.tsx +140 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServersHeader.tsx +47 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServersToolbar/AddMCPServer.tsx +196 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServersToolbar/MCPServersToolbar.tsx +77 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServersToolbar/useAddMCPServer.ts +253 -0
- package/client/src/pages/ServerSettings/MCPServers/useMCPChatAllowedTools.ts +25 -0
- package/client/src/pages/ServerSettings/MCPServers/useMCPServersListProps.tsx +118 -0
- package/client/src/pages/ServerSettings/OAuthProviderSetup.tsx +258 -0
- package/client/src/pages/ServerSettings/SecuritySettings.tsx +154 -0
- package/client/src/pages/ServerSettings/ServerSettings.tsx +151 -0
- package/client/src/pages/ServerSettings/Services.tsx +231 -0
- package/client/src/pages/ServerSettings/useEditableData.ts +55 -0
- package/client/src/pages/TopControls.tsx +182 -0
- package/client/src/pages/projectUtils.ts +0 -0
- package/client/src/theme/ThemeSelector.tsx +36 -0
- package/client/src/theme/useAppTheme.ts +47 -0
- package/client/src/theme/useSystemTheme.ts +23 -0
- package/client/src/useAppState/PrglCoreContextProvider.tsx +76 -0
- package/client/src/useAppState/useAppState.ts +92 -0
- package/client/src/useAppState/useDBSClient.ts +104 -0
- package/client/src/useAppState/useServerState.ts +62 -0
- package/client/src/useAppState/useUserData.ts +1 -0
- package/client/src/utils/colorUtils.ts +48 -0
- package/client/src/utils/hashCode.ts +52 -0
- package/client/src/utils/utils.ts +207 -0
- package/client/static/favicon-32x32.png +0 -0
- package/client/static/logos/anthropic.svg +3 -0
- package/client/static/logos/google.svg +25 -0
- package/client/static/logos/ollama.svg +7 -0
- package/client/static/logos/openai.svg +2 -0
- package/client/static/logos/openrouter.svg +1 -0
- package/client/static/mcp-oauth-close.js +5 -0
- package/client/static/prostgles-logo.svg +39 -0
- package/client/static/util.css +2024 -0
- package/client/static/v2.svg +25 -0
- package/client/tsconfig.eslint.json +5 -0
- package/client/tsconfig.json +40 -0
- package/client/tslint.json +5 -0
- package/common/DBGeneratedSchema.ts +953 -0
- package/common/DashboardTypes.ts +533 -0
- package/common/KeyObjMap.ts +100 -0
- package/common/OAuthUtils.ts +285 -0
- package/common/authTypesAndConstants.ts +1 -0
- package/common/columnDisplayFormat.schema.ts +211 -0
- package/common/electronInitTypes.ts +56 -0
- package/common/filterUtils.ts +491 -0
- package/common/getJsonSchemaAsTs.ts +335 -0
- package/common/llmUtils.ts +133 -0
- package/common/managedTableSchema.ts +38 -0
- package/common/mcp/databaseAccessSchema.ts +70 -0
- package/common/mcp/db.mcp.schema.ts +280 -0
- package/common/mcp/documents.mcp.schema.ts +45 -0
- package/common/mcp/documentsServiceInputSchema.ts +129 -0
- package/common/mcp/runCodeInSandboxSchema.ts +85 -0
- package/common/mcp/startAgenticWorkflowSchema.ts +180 -0
- package/common/mcp/tableOptionsJsonbSchema.ts +151 -0
- package/common/mcp/tablePermissionsSchema.ts +101 -0
- package/common/mcp/ui.mcp.schema.ts +496 -0
- package/common/mcp/userInputSchema.ts +87 -0
- package/common/mcp/web.mcp.schema.ts +245 -0
- package/common/mcp/webdev.mcp.schema.ts +138 -0
- package/common/mcpUtils.ts +75 -0
- package/common/prostglesApiTypes.ts +551 -0
- package/common/prostglesMcp.ts +35 -0
- package/common/psql_queries.json +657 -0
- package/common/publishUtils.ts +600 -0
- package/common/tsconfig.json +22 -0
- package/common/utils.ts +525 -0
- package/docker-compose.yml +99 -0
- package/docs/01_Overview.md +25 -0
- package/docs/02_Installation_(Docker).md +37 -0
- package/docs/03_Installation_(Desktop_Version).md +27 -0
- package/docs/04_Navigation_bar.md +37 -0
- package/docs/05_Connections.md +108 -0
- package/docs/06_Connection_dashboard.md +58 -0
- package/docs/07_Import_file.md +15 -0
- package/docs/08_Agentic_workflows.md +27 -0
- package/docs/09_Schema_diagram.md +63 -0
- package/docs/10_SQL_editor.md +69 -0
- package/docs/11_Table_view.md +188 -0
- package/docs/12_Map_view.md +56 -0
- package/docs/13_Timechart_view.md +49 -0
- package/docs/14_AI_Assistant.md +64 -0
- package/docs/15_Connection_configuration.md +20 -0
- package/docs/16_Access_control.md +12 -0
- package/docs/17_File_storage.md +8 -0
- package/docs/18_Backup_and_Restore.md +22 -0
- package/docs/19_API.md +20 -0
- package/docs/20_Server_Settings.md +28 -0
- package/docs/21_Account.md +21 -0
- package/docs/22_Command_Palette.md +10 -0
- package/docs/screenshots/table_timechart.dark.svgif.svg +375 -0
- package/docs/screenshots/table_timechart.svgif.svg +1102 -0
- package/docs/screenshots/timechart.dark.svgif.svg +221 -0
- package/docs/screenshots/timechart.svgif.svg +846 -0
- package/e2e/icon512.png +0 -0
- package/e2e/package-lock.json +401 -0
- package/e2e/package.json +31 -0
- package/e2e/playwright.config.js +65 -0
- package/e2e/playwright.config.ts +32 -0
- package/e2e/test-local.sh +5 -0
- package/e2e/tests/Testing.ts +724 -0
- package/e2e/tests/command_palette.spec.ts +114 -0
- package/e2e/tests/configTest/.env.example +10 -0
- package/e2e/tests/configTest/constants.ts +13 -0
- package/e2e/tests/configTest/functions.ts +14 -0
- package/e2e/tests/configTest/index.ts +84 -0
- package/e2e/tests/configTest/package.json +17 -0
- package/e2e/tests/configTest/tsconfig.json +13 -0
- package/e2e/tests/config_deploy.spec.ts +386 -0
- package/e2e/tests/create_docs.spec.ts +231 -0
- package/e2e/tests/create_load_test_users.spec.ts +47 -0
- package/e2e/tests/demo_video.spec.ts +139 -0
- package/e2e/tests/demo_video_setup.spec.ts +118 -0
- package/e2e/tests/fileBrowserGoToPath.ts +53 -0
- package/e2e/tests/load_test.spec.ts +53 -0
- package/e2e/tests/main.spec.ts +3820 -0
- package/e2e/tests/mockSMTPServer.ts +81 -0
- package/e2e/tests/saveDocs.ts +55 -0
- package/e2e/tests/svgScreenshots/SVG_SCREENSHOT_DETAILS.ts +132 -0
- package/e2e/tests/svgScreenshots/account.svgif.ts +14 -0
- package/e2e/tests/svgScreenshots/aiAssistant.svgif.ts +235 -0
- package/e2e/tests/svgScreenshots/aiAssistantAgenticWorkflow.svgif.ts +339 -0
- package/e2e/tests/svgScreenshots/aiAssistantAgenticWorkflowGovApi.svgif.ts +116 -0
- package/e2e/tests/svgScreenshots/backupAndRestore.svgif.ts +143 -0
- package/e2e/tests/svgScreenshots/commandPalette.svgif.ts +69 -0
- package/e2e/tests/svgScreenshots/dashboard.svgif.ts +271 -0
- package/e2e/tests/svgScreenshots/electronSetup.svgif.ts +32 -0
- package/e2e/tests/svgScreenshots/fileImporter.svgif.ts +39 -0
- package/e2e/tests/svgScreenshots/getOverviewSvgifSpecs.svgif.ts +288 -0
- package/e2e/tests/svgScreenshots/map.svgif.ts +50 -0
- package/e2e/tests/svgScreenshots/navbar.svgif.ts +22 -0
- package/e2e/tests/svgScreenshots/newConnection.svgif.ts +26 -0
- package/e2e/tests/svgScreenshots/schemaDiagram.svgif.ts +82 -0
- package/e2e/tests/svgScreenshots/sqlEditor.svgif.ts +348 -0
- package/e2e/tests/svgScreenshots/table.svgif.ts +167 -0
- package/e2e/tests/svgScreenshots/tableTimechart.svgif.ts +507 -0
- package/e2e/tests/svgScreenshots/timechart.svgif.ts +138 -0
- package/e2e/tests/svgScreenshots/utils/constants.ts +23 -0
- package/e2e/tests/svgScreenshots/utils/dedent.ts +9 -0
- package/e2e/tests/svgScreenshots/utils/getFilesFromDir.ts +30 -0
- package/e2e/tests/svgScreenshots/utils/getSceneUtils.ts +200 -0
- package/e2e/tests/svgScreenshots/utils/removeOtherElements.ts +26 -0
- package/e2e/tests/svgScreenshots/utils/saveSVGScreenshot.ts +67 -0
- package/e2e/tests/svgScreenshots/utils/saveSVGifs.ts +74 -0
- package/e2e/tests/svgScreenshots/utils/saveSVGs.ts +61 -0
- package/e2e/tests/svgScreenshots/utils/startScreencast.ts +118 -0
- package/e2e/tests/svgScreenshots/utils/svgScreenshotsCompleteReferenced.ts +98 -0
- package/e2e/tests/svgScreenshots/utils/svgifToWebm.ts +196 -0
- package/e2e/tests/svgScreenshots/utils/typeSendAddScenes.ts +86 -0
- package/e2e/tests/testAskLLM/agenticWorkflowToolUses.ts +294 -0
- package/e2e/tests/testAskLLM/createComponentToolUse.ts +49 -0
- package/e2e/tests/testAskLLM/createReceipts.ts +183 -0
- package/e2e/tests/testAskLLM/getAskUserToolUse.ts +36 -0
- package/e2e/tests/testAskLLM/hello.mp3 +0 -0
- package/e2e/tests/testAskLLM/mcpSandboxToolUse.ts +64 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/Dockerfile +32 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/package-lock.json +2120 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/package.json +20 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/server.ts +144 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/start-mock-mcp.sh +93 -0
- package/e2e/tests/testAskLLM/sample.pdf +35 -0
- package/e2e/tests/testAskLLM/sampleToolUseData.ts +1413 -0
- package/e2e/tests/testAskLLM/scenarios/geoQuestion.scenario.ts +110 -0
- package/e2e/tests/testAskLLM/scenarios/hygieneRatingsApi.scenario.ts +62 -0
- package/e2e/tests/testAskLLM/scenarios/receiptImport/receiptImport.scenario.ts +53 -0
- package/e2e/tests/testAskLLM/speechToTextTest.ts +101 -0
- package/e2e/tests/testAskLLM/stringify.ts +1 -0
- package/e2e/tests/testAskLLM/testAskLLM.ts +558 -0
- package/e2e/tests/testAskLLM/utils.ts +34 -0
- package/e2e/tests/tsconfig.json +16 -0
- package/e2e/tests/utils/constants.ts +22 -0
- package/e2e/tests/utils/goTo.ts +87 -0
- package/e2e/tests/utils/isPortFree.ts +19 -0
- package/e2e/tests/utils/utils.ts +1319 -0
- package/e2e/tsconfig.json +5 -0
- package/electron/README.md +34 -0
- package/electron/build.sh +74 -0
- package/electron/e2e-electron/electron.spec.tsx +214 -0
- package/electron/e2e-electron/tsconfig.json +10 -0
- package/electron/forge.config.js +26 -0
- package/electron/getProtocolHandler.ts +41 -0
- package/electron/handleErrors.ts +25 -0
- package/electron/icon512.png +0 -0
- package/electron/image.ico +0 -0
- package/electron/images/generate_from_svg.sh +13 -0
- package/electron/images/icon.ico +0 -0
- package/electron/images/icon512.png +0 -0
- package/electron/images/icon512notpadded.png +0 -0
- package/electron/images/loading-effect.css +43 -0
- package/electron/images/prostgles-logo-rounded.svg +46 -0
- package/electron/images/prostgles-logo.svg +39 -0
- package/electron/images/rounded/256x256.png +0 -0
- package/electron/images/rounded/512.png +0 -0
- package/electron/images/rounded/512x512.png +0 -0
- package/electron/images/rounded/64x64.png +0 -0
- package/electron/images/rounded/icon512.png +0 -0
- package/electron/loadingHTML.ts +70 -0
- package/electron/main.ts +125 -0
- package/electron/mainWindow.ts +155 -0
- package/electron/package-lock.json +3916 -0
- package/electron/package.json +111 -0
- package/electron/playwright.config.ts +17 -0
- package/electron/screenCapture.bat +275 -0
- package/electron/scripts/patch-builder.mjs +25 -0
- package/electron/setContextMenu.ts +56 -0
- package/electron/start.sh +10 -0
- package/electron/test-linux-macos.sh +1 -0
- package/electron/test-linux.sh +2 -0
- package/electron/test-setup.js +8 -0
- package/electron/test-w-debug.sh +1 -0
- package/electron/test.sh +1 -0
- package/electron/tsconfig.json +22 -0
- package/electron/win-inno-setup.ts +100 -0
- package/electron/win.js +3 -0
- package/package.json +33 -0
- package/releases/v1.0.0.md +5 -0
- package/releases/v2.0.0.md +25 -0
- package/releases/v2.2.2.md +13 -0
- package/releases/v2.2.3.md +1 -0
- package/releases/v2.2.4.md +1 -0
- package/releases/v2.2.5.md +1 -0
- package/releases/v2.3.1.md +5 -0
- package/releases/v2.3.5.md +7 -0
- package/scripts/check_release_ready.sh +53 -0
- package/scripts/demo/record-local.sh +13 -0
- package/scripts/demo/split-video.sh +6 -0
- package/scripts/get_version.sh +11 -0
- package/scripts/npm_publish_dev.sh +6 -0
- package/scripts/release.sh +35 -0
- package/scripts/start-dev-electron.sh +14 -0
- package/scripts/start-dev.sh +18 -0
- package/scripts/start-prod.sh +5 -0
- package/scripts/test.sh +62 -0
- package/scripts/update_docker_image_versions.sh +28 -0
- package/server/.vscode/settings.json +3 -0
- package/server/eslint.config.mjs +83 -0
- package/server/licenses.json +3821 -0
- package/server/package-lock.json +7252 -0
- package/server/package.json +84 -0
- package/server/sample_schemas/_crypto.sql +95 -0
- package/server/sample_schemas/cleaning.sql +49 -0
- package/server/sample_schemas/cloud_computing.sql +63 -0
- package/server/sample_schemas/countries.sql +29 -0
- package/server/sample_schemas/crypto/index.ts +3 -0
- package/server/sample_schemas/crypto/onMount.ts +802 -0
- package/server/sample_schemas/crypto/package.json +7 -0
- package/server/sample_schemas/crypto/tableConfig.ts +80 -0
- package/server/sample_schemas/crypto/tsconfig.json +12 -0
- package/server/sample_schemas/crypto/workspaceConfig.ts +261 -0
- package/server/sample_schemas/financial.sql +49 -0
- package/server/sample_schemas/food_delivery/connection.ts +1007 -0
- package/server/sample_schemas/food_delivery/databaseConfig.ts +116 -0
- package/server/sample_schemas/food_delivery/index.ts +8 -0
- package/server/sample_schemas/food_delivery/onInit.sql +1507 -0
- package/server/sample_schemas/food_delivery/onMount.ts +149 -0
- package/server/sample_schemas/food_delivery/package.json +4 -0
- package/server/sample_schemas/food_delivery/tsconfig.json +16 -0
- package/server/sample_schemas/food_delivery/workspaceConfig.ts +53 -0
- package/server/sample_schemas/lodging.sql +48 -0
- package/server/sample_schemas/maps.sql +73 -0
- package/server/sample_schemas/property_management/index.ts +2 -0
- package/server/sample_schemas/property_management/onMount.ts +55 -0
- package/server/sample_schemas/property_management/package.json +4 -0
- package/server/sample_schemas/property_management/tsconfig.json +16 -0
- package/server/sample_schemas/property_management/workspaceConfig.ts +92 -0
- package/server/sample_schemas/sales.sql +51 -0
- package/server/sample_schemas/sample.sql +72 -0
- package/server/sample_schemas/testschema.ts +21 -0
- package/server/sample_schemas/weather/index.ts +1 -0
- package/server/sample_schemas/weather/onMount.ts +284 -0
- package/server/sample_schemas/weather/package.json +4 -0
- package/server/sample_schemas/weather/tsconfig.json +16 -0
- package/server/scripts/preparePackage.mjs +18 -0
- package/server/src/BackupManager/BackupManager.ts +297 -0
- package/server/src/BackupManager/checkAutomaticBackup.ts +143 -0
- package/server/src/BackupManager/getInstalledPrograms.ts +203 -0
- package/server/src/BackupManager/pgDump.ts +242 -0
- package/server/src/BackupManager/pgRestore.ts +238 -0
- package/server/src/BackupManager/pipeFromCommand.ts +94 -0
- package/server/src/BackupManager/pipeToCommand.ts +66 -0
- package/server/src/BackupManager/utils.ts +124 -0
- package/server/src/ConnectionManager/ConnectionManager.ts +613 -0
- package/server/src/ConnectionManager/applyStartupSchemaConfig.ts +95 -0
- package/server/src/ConnectionManager/connectionManagerUtils.ts +164 -0
- package/server/src/ConnectionManager/connectionOnReady.ts +76 -0
- package/server/src/ConnectionManager/dbsConnectionOptions.ts +109 -0
- package/server/src/ConnectionManager/getConnectionAuth.ts +37 -0
- package/server/src/ConnectionManager/getConnectionHttpServer.ts +112 -0
- package/server/src/ConnectionManager/getConnectionPublish.ts +119 -0
- package/server/src/ConnectionManager/getConnectionServerFunctions.ts +108 -0
- package/server/src/ConnectionManager/getConnectionSocketPath.ts +12 -0
- package/server/src/ConnectionManager/getHotReloadConfigs.ts +161 -0
- package/server/src/ConnectionManager/getInitiatedPostgresqlPIDs.ts +84 -0
- package/server/src/ConnectionManager/getSchemaConfig.ts +84 -0
- package/server/src/ConnectionManager/initConnectionManager.ts +147 -0
- package/server/src/ConnectionManager/modifyClientSchema.ts +146 -0
- package/server/src/ConnectionManager/parseTableConfig.ts +231 -0
- package/server/src/ConnectionManager/saveCertificates.ts +68 -0
- package/server/src/ConnectionManager/startConnection.ts +353 -0
- package/server/src/ConnectionManager/startConnectionOnRequestHandler.ts +63 -0
- package/server/src/ConnectionManager/syncSchemaConfig.ts +98 -0
- package/server/src/Logger.ts +150 -0
- package/server/src/McpHub/AnthropicMcpHub/McpHub.ts +144 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/authenticateMcpServer.ts +98 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/connectToRemoteMCPServer.ts +176 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/createMcpOAuthProvider.ts +257 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/getMcpOAuthMetadata.ts +112 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/getRemoteMcpServerParameters.ts +82 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/saveServerInfo.ts +76 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/updateRemoteMcpAuthorizationCode.ts +100 -0
- package/server/src/McpHub/AnthropicMcpHub/McpTypes.ts +189 -0
- package/server/src/McpHub/AnthropicMcpHub/connectToMCPServer.ts +132 -0
- package/server/src/McpHub/AnthropicMcpHub/createMcpServerHandlers.ts +116 -0
- package/server/src/McpHub/AnthropicMcpHub/installMCPServer.ts +195 -0
- package/server/src/McpHub/AnthropicMcpHub/runShellCommand.ts +53 -0
- package/server/src/McpHub/AnthropicMcpHub/startMcpHub.ts +111 -0
- package/server/src/McpHub/DefaultMCPServers/DefaultMCPServers.ts +153 -0
- package/server/src/McpHub/DefaultMCPServers/mcpGithub.ts +968 -0
- package/server/src/McpHub/DockerSandbox/createBridgeInternalDockerNetwork.ts +35 -0
- package/server/src/McpHub/DockerSandbox/createContainer.spec.ts +195 -0
- package/server/src/McpHub/DockerSandbox/createContainer.ts +125 -0
- package/server/src/McpHub/DockerSandbox/dockerMCPServerProxy/dockerContainerAuthRegistry.ts +150 -0
- package/server/src/McpHub/DockerSandbox/dockerMCPServerProxy/dockerMCPServerProxy.ts +395 -0
- package/server/src/McpHub/DockerSandbox/dockerMCPServerProxy/getDockerGatewayIP.ts +27 -0
- package/server/src/McpHub/DockerSandbox/executeDockerCommand.ts +152 -0
- package/server/src/McpHub/DockerSandbox/getContainerLogs.ts +17 -0
- package/server/src/McpHub/DockerSandbox/getDockerRunArgs.ts +114 -0
- package/server/src/McpHub/DockerSandbox/runContainerWithProxyAccess.ts +99 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServerTypes.ts +143 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Db.mcp.ts +281 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Documents.mcp.ts +89 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/createAgenticWorkflow.ts +247 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/assertTablesExistInFutureSchema.ts +14 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/getValidatedMcpServerToolsAllowed.ts +155 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/parseDDLStatements.ts +84 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/quoteIdent.ts +139 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateAgenticWorkflowDefinitions.ts +102 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateDatabaseAccessDefinitions.ts +212 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateUserInput.ts +159 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateUserInputDefinitions.ts +36 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/execution/getVolumesFromUserInput.ts +134 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/execution/startAgenticWorkflowContainer.ts +341 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/proxyHandlers/createWorkflowExecutionHandlers.ts +155 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/proxyHandlers/getAgentConfigWithDefaults.ts +96 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/proxyHandlers/setupOrchestrationToolPermissions.ts +64 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/addInstrumentationToTsLogic.ts +350 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/callWorkflowProxy.ts +99 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflow.spec.ts +110 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflow.ts +576 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflowHandlers.ts +127 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflowHandlers.types.ts +72 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/definitionHandler.ts +104 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/ensureWorkflowIsExecuted.ts +53 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/getTsLogicSummary.ts +639 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/orchestrationToolHandlers.ts +55 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/tableHandlers.ts +108 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getAgenticWorkflowDockerCoreFiles.spec.ts +26 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getAgenticWorkflowDockerCoreFiles.ts +225 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getDefineAgenticWorkflowTsWithDbAndMcpTypes.ts +187 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getOrchestrationContainerFiles.ts +31 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getToolTypescriptSchemas.ts +84 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/startAgenticWorkflow.ts +181 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/fetchTools.ts +48 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/runCodeInSandboxContainer.ts +133 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/getAgenticToolSchemas.ts +55 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/getContainerToolProxyAccessInstructions.ts +22 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/getContainerToolSchemas.ts +46 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/prostglesUiToolSchemas.ts +23 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/suggestDashboardsToolSchema.ts +26 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/startAgent.ts +166 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/validateCreateDashboards.ts +249 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Ui.mcp.ts +343 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/Web.mcp.ts +265 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/checkConfigAccess.spec.ts +112 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/checkConfigAccess.ts +263 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/getDocumentText.ts +34 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/WebDev.mcp.ts +114 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/createComponent.ts +94 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/createComponentQuickFeedbackPreview.ts +53 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/getWebDevChatAndConnection.ts +12 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/searchWebDevFiles.spec.ts +82 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/searchWebDevFiles.ts +118 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/utils.ts +30 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/getClientDBHandlersForChat.ts +46 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/getExistingTablesSchema.ts +230 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers.ts +30 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMcpHub.ts +244 -0
- package/server/src/McpHub/callMCPServerTool.ts +148 -0
- package/server/src/McpHub/getMcpServerParameters.ts +204 -0
- package/server/src/McpHub/insertMcpServerList.ts +49 -0
- package/server/src/McpHub/reloadMcpServerTools.ts +123 -0
- package/server/src/McpHub/testMCPServerConfig.ts +29 -0
- package/server/src/McpHub/utils.ts +1 -0
- package/server/src/ServiceManager/ServiceManager.spec.ts +27 -0
- package/server/src/ServiceManager/ServiceManager.ts +162 -0
- package/server/src/ServiceManager/ServiceManagerTypes.ts +136 -0
- package/server/src/ServiceManager/buildService.ts +138 -0
- package/server/src/ServiceManager/dockerInspect.ts +33 -0
- package/server/src/ServiceManager/enableService.ts +41 -0
- package/server/src/ServiceManager/getDockerBuildHash.ts +57 -0
- package/server/src/ServiceManager/getSelectedConfigEnvs.ts +47 -0
- package/server/src/ServiceManager/getServiceEndpoints.ts +122 -0
- package/server/src/ServiceManager/initialiseServices.ts +56 -0
- package/server/src/ServiceManager/resolveBinary.ts +41 -0
- package/server/src/ServiceManager/services/documents/documents.service.ts +178 -0
- package/server/src/ServiceManager/services/documents/documents.service.types.ts +43 -0
- package/server/src/ServiceManager/services/documents/src/Dockerfile +29 -0
- package/server/src/ServiceManager/services/documents/src/layout_postprocessor.py +707 -0
- package/server/src/ServiceManager/services/documents/src/requirements.txt +3 -0
- package/server/src/ServiceManager/services/frontendDev/frontendDev.service.ts +19 -0
- package/server/src/ServiceManager/services/frontendDev/src/.prettierrc +3 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/.env.development +1 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/Dockerfile +5 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/README.md +6 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/eslint.config.js +27 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/index.html +13 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/package.json +32 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/public/vite.svg +1 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/App.css +42 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/App.tsx +19 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/api/DBGeneratedSchema.d.ts +33 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/api/ProstglesProvider.tsx +61 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/assets/react.svg +1 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/components/SampleComponent/SampleComponent.tsx +11 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/index.css +68 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/main.tsx +23 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/pages/ComponentPreview.tsx +31 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/pages/Home.tsx +36 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/tsconfig.app.json +28 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/tsconfig.json +7 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/tsconfig.node.json +26 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/vite.config.ts +17 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/package.json +24 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/playwright.config.ts +36 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/tests/coverage.ts +67 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/tests/main.spec.ts +21 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/tests/tsconfig.json +13 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/tsconfig.json +13 -0
- package/server/src/ServiceManager/services/frontendDev/src/package.json +15 -0
- package/server/src/ServiceManager/services/frontendDev/src/tsconfig.base.json +32 -0
- package/server/src/ServiceManager/services/speechToText/TRANSCRIBE_OUTPUT_SCHEMA.ts +53 -0
- package/server/src/ServiceManager/services/speechToText/speechToText.service.ts +125 -0
- package/server/src/ServiceManager/services/speechToText/src/Dockerfile +31 -0
- package/server/src/ServiceManager/services/speechToText/src/app.py +115 -0
- package/server/src/ServiceManager/services/speechToText/src/requirements.txt +3 -0
- package/server/src/ServiceManager/services/webSearchSearxng/src/Dockerfile +12 -0
- package/server/src/ServiceManager/services/webSearchSearxng/src/limiter.toml +0 -0
- package/server/src/ServiceManager/services/webSearchSearxng/src/settings.yml +11 -0
- package/server/src/ServiceManager/services/webSearchSearxng/webSearchSearxng.service.ts +36 -0
- package/server/src/ServiceManager/startService.ts +196 -0
- package/server/src/ServiceManager/stopService.ts +23 -0
- package/server/src/ServiceManager/withRetries.ts +19 -0
- package/server/src/authConfig/OAuthProviders/getOAuthLoginProviders.ts +67 -0
- package/server/src/authConfig/OAuthProviders/loginWithProvider.ts +94 -0
- package/server/src/authConfig/authUtils.ts +19 -0
- package/server/src/authConfig/createPasswordlessAdminSessionIfNeeded.ts +86 -0
- package/server/src/authConfig/createPublicUserSessionIfAllowed.ts +48 -0
- package/server/src/authConfig/emailProvider/getEmailAuthProvider.ts +44 -0
- package/server/src/authConfig/emailProvider/getEmailSenderWithMockTest.ts +96 -0
- package/server/src/authConfig/emailProvider/onEmailRegistration.ts +116 -0
- package/server/src/authConfig/getActiveSession.ts +76 -0
- package/server/src/authConfig/getAuth.ts +171 -0
- package/server/src/authConfig/getLogin.ts +206 -0
- package/server/src/authConfig/getUser.ts +108 -0
- package/server/src/authConfig/onMagicLinkOrOTP.ts +171 -0
- package/server/src/authConfig/onUseOrSocketConnected.ts +43 -0
- package/server/src/authConfig/sessionUtils.ts +120 -0
- package/server/src/authConfig/startRateLimitedLoginAttempt.ts +201 -0
- package/server/src/authConfig/subscribeToAuthSetupChanges.ts +144 -0
- package/server/src/authConfig/upsertSession.ts +48 -0
- package/server/src/cli/cli.ts +217 -0
- package/server/src/cli/cliUtils.ts +50 -0
- package/server/src/cloudClients/cloudClients.ts +116 -0
- package/server/src/connectionUtils/getConnectionDetails.ts +76 -0
- package/server/src/connectionUtils/testDBConnection.ts +167 -0
- package/server/src/connectionUtils/validateConnection.ts +114 -0
- package/server/src/createHttpAndIOServers/createHttpServer.ts +147 -0
- package/server/src/createHttpAndIOServers/createIOWebsocketServer.ts +31 -0
- package/server/src/createHttpAndIOServers/getCorsOptions.ts +58 -0
- package/server/src/createHttpAndIOServers/setHttpAppSecurity.ts +124 -0
- package/server/src/electronConfig.ts +223 -0
- package/server/src/envVars.ts +45 -0
- package/server/src/getPSQLQueries.ts +123 -0
- package/server/src/index.ts +273 -0
- package/server/src/init/CSP_DEFAULTS.ts +41 -0
- package/server/src/init/addDevImageProxyRoute.ts +74 -0
- package/server/src/init/cleanupTestDatabases.ts +51 -0
- package/server/src/init/initExpressAndIOServers.ts +127 -0
- package/server/src/init/initUsers.ts +113 -0
- package/server/src/init/insertStateDatabase.ts +72 -0
- package/server/src/init/isRetryableError.ts +50 -0
- package/server/src/init/logOutgoingHttpRequests.ts +15 -0
- package/server/src/init/prostglesOnReady.ts +147 -0
- package/server/src/init/saveTypescriptFilesForProduction.ts +113 -0
- package/server/src/init/setDBSRoutesForElectron.ts +206 -0
- package/server/src/init/startDevHotReloadNotifier.ts +39 -0
- package/server/src/init/startProstgles.ts +220 -0
- package/server/src/init/tryStartProstgles.ts +177 -0
- package/server/src/init/utils.ts +44 -0
- package/server/src/init.sql +1 -0
- package/server/src/methods/getPidStats.ts +336 -0
- package/server/src/methods/getPidStatsFromProc.ts +125 -0
- package/server/src/methods/statusMonitorUtils.ts +148 -0
- package/server/src/publish/getPublishLLM.ts +246 -0
- package/server/src/publish/getPublishLlmChats.ts +73 -0
- package/server/src/publish/publish.ts +398 -0
- package/server/src/schemaConfig.ts +97 -0
- package/server/src/serverFunctions/adminServerFunctions/getAdminServerFunctions.ts +477 -0
- package/server/src/serverFunctions/adminServerFunctions/getAgenticWorkflowFunctions.ts +186 -0
- package/server/src/serverFunctions/adminServerFunctions/getBackupServerFunctions.ts +178 -0
- package/server/src/serverFunctions/adminServerFunctions/getDefineAdminFunction.ts +11 -0
- package/server/src/serverFunctions/adminServerFunctions/getMcpServerFunctions.ts +283 -0
- package/server/src/serverFunctions/adminServerFunctions/getWebAppServerFunctions.ts +228 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/buildWebApp.ts +38 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getReactComponents copy.ts +188 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getReactComponents.ts +287 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getReactRenderTree.ts +180 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getTemplatedWebAppConnection.ts +23 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getValidatedWebAppPath.spec.ts +77 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getValidatedWebAppPath.ts +22 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/readWebAppFiles.ts +45 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/runDockerForWebApp.ts +56 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/testWebApp.ts +30 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/writeWebAppFiles.ts +91 -0
- package/server/src/serverFunctions/applySampleSchema.ts +96 -0
- package/server/src/serverFunctions/askLLM/LLMResponseTypes.ts +315 -0
- package/server/src/serverFunctions/askLLM/agentConstants.ts +42 -0
- package/server/src/serverFunctions/askLLM/askLLM.ts +540 -0
- package/server/src/serverFunctions/askLLM/checkLLMLimit.ts +59 -0
- package/server/src/serverFunctions/askLLM/checkMaxCostLimitForChat.ts +51 -0
- package/server/src/serverFunctions/askLLM/defaultPrompts/base.prompt.ts +26 -0
- package/server/src/serverFunctions/askLLM/defaultPrompts/createAgenticWorkflow.prompt.ts +53 -0
- package/server/src/serverFunctions/askLLM/defaultPrompts/createDashboards.prompt.ts +15 -0
- package/server/src/serverFunctions/askLLM/fetchLLMResponse.ts +105 -0
- package/server/src/serverFunctions/askLLM/getCompactedMessages.ts +101 -0
- package/server/src/serverFunctions/askLLM/getFullPrompt.ts +86 -0
- package/server/src/serverFunctions/askLLM/getLLMRequestBody.ts +368 -0
- package/server/src/serverFunctions/askLLM/getLLMToolsAllowedInThisChat.ts +179 -0
- package/server/src/serverFunctions/askLLM/getLLMUsageCost.ts +91 -0
- package/server/src/serverFunctions/askLLM/getPastMessages.ts +9 -0
- package/server/src/serverFunctions/askLLM/getUserMessageCost.ts +21 -0
- package/server/src/serverFunctions/askLLM/getValidatedAskLLMChatOptions.ts +59 -0
- package/server/src/serverFunctions/askLLM/handleToolUseResultConfirmation.ts +87 -0
- package/server/src/serverFunctions/askLLM/parseLLMResponseObject.ts +206 -0
- package/server/src/serverFunctions/askLLM/prostglesLLMTools/getDbConnectionWithPermissions.ts +94 -0
- package/server/src/serverFunctions/askLLM/prostglesLLMTools/getMCPServerTools.ts +28 -0
- package/server/src/serverFunctions/askLLM/prostglesLLMTools/getMcpToolsWithDynamicDescription.ts +77 -0
- package/server/src/serverFunctions/askLLM/prostglesLLMTools/getTemplateUserConnection.ts +182 -0
- package/server/src/serverFunctions/askLLM/readFetchStream.ts +69 -0
- package/server/src/serverFunctions/askLLM/refreshModels.ts +223 -0
- package/server/src/serverFunctions/askLLM/runApprovedTools/getMostSimilar.ts +55 -0
- package/server/src/serverFunctions/askLLM/runApprovedTools/runAgentGoalTool.ts +116 -0
- package/server/src/serverFunctions/askLLM/runApprovedTools/runApprovedTools.ts +348 -0
- package/server/src/serverFunctions/askLLM/runApprovedTools/validateLastMessageToolUseRequests.ts +33 -0
- package/server/src/serverFunctions/askLLM/setupLLM.ts +176 -0
- package/server/src/serverFunctions/askLLM/setupLLMProviders.ts +186 -0
- package/server/src/serverFunctions/deleteConnection.ts +111 -0
- package/server/src/serverFunctions/getConnectionAndDatabaseConfig.ts +27 -0
- package/server/src/serverFunctions/getNodeTypes.spec.ts +80 -0
- package/server/src/serverFunctions/getNodeTypes.ts +306 -0
- package/server/src/serverFunctions/getServerFunctions.ts +163 -0
- package/server/src/serverFunctions/getServerFunctionsContext.ts +29 -0
- package/server/src/serverFunctions/prostglesSignup.ts +28 -0
- package/server/src/serverFunctions/setFileStorage.ts +107 -0
- package/server/src/serverFunctions/userServerFunctions/approveToolUse.ts +146 -0
- package/server/src/serverFunctions/userServerFunctions/getLLMAccessParams.ts +21 -0
- package/server/src/serverFunctions/userServerFunctions/getUserServerFunctions.ts +260 -0
- package/server/src/tableConfig/tableConfig.ts +374 -0
- package/server/src/tableConfig/tableConfigAccessControl.ts +212 -0
- package/server/src/tableConfig/tableConfigAgenticWorkflow.ts +174 -0
- package/server/src/tableConfig/tableConfigBackups.ts +160 -0
- package/server/src/tableConfig/tableConfigConnections.ts +182 -0
- package/server/src/tableConfig/tableConfigDatabaseConfig.ts +714 -0
- package/server/src/tableConfig/tableConfigGlobalSettings.ts +40 -0
- package/server/src/tableConfig/tableConfigLinks.ts +273 -0
- package/server/src/tableConfig/tableConfigLlm/tableConfigLlm.ts +347 -0
- package/server/src/tableConfig/tableConfigLlm/tableConfigLlmChats.ts +361 -0
- package/server/src/tableConfig/tableConfigLlm/tableConfigLlmExtraRequestData.ts +50 -0
- package/server/src/tableConfig/tableConfigMCPServers.ts +676 -0
- package/server/src/tableConfig/tableConfigMigrations.ts +26 -0
- package/server/src/tableConfig/tableConfigPublishedMethods.ts +120 -0
- package/server/src/tableConfig/tableConfigServices.ts +61 -0
- package/server/src/tableConfig/tableConfigUsers.ts +227 -0
- package/server/src/tableConfig/tableConfigWebApp.ts +17 -0
- package/server/src/tableConfig/tableConfigWindows.ts +164 -0
- package/server/src/tableConfig/tableConfigWorkspaces.ts +100 -0
- package/server/src/tableConfig/tablePermissionsSchema.ts +66 -0
- package/server/src/testElectron.ts +33 -0
- package/server/src/upsertConnection.ts +73 -0
- package/server/src/utils/assertIconExists.ts +24 -0
- package/server/src/utils/isPortFree.ts +40 -0
- package/server/src/utils/tout.ts +7 -0
- package/server/test-runner.mjs +28 -0
- package/server/tsconfig.json +45 -0
- package/server/tslint.json +8 -0
|
@@ -0,0 +1,3821 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@aws-crypto/crc32@2.0.0": {
|
|
3
|
+
"licenses": "Apache-2.0",
|
|
4
|
+
"repository": "https://github.com/aws/aws-sdk-js-crypto-helpers",
|
|
5
|
+
"publisher": "AWS Crypto Tools Team",
|
|
6
|
+
"email": "aws-cryptools@amazon.com",
|
|
7
|
+
"url": "https://docs.aws.amazon.com/aws-crypto-tools/index.html?id=docs_gateway#lang/en_us",
|
|
8
|
+
"path": "/home/uiprgl/server/node_modules/@aws-crypto/crc32",
|
|
9
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-crypto/crc32/LICENSE"
|
|
10
|
+
},
|
|
11
|
+
"@aws-crypto/ie11-detection@2.0.0": {
|
|
12
|
+
"licenses": "Apache-2.0",
|
|
13
|
+
"repository": "https://github.com/aws/aws-sdk-js-crypto-helpers",
|
|
14
|
+
"publisher": "AWS Crypto Tools Team",
|
|
15
|
+
"email": "aws-cryptools@amazon.com",
|
|
16
|
+
"url": "https://docs.aws.amazon.com/aws-crypto-tools/index.html?id=docs_gateway#lang/en_us",
|
|
17
|
+
"path": "/home/uiprgl/server/node_modules/@aws-crypto/ie11-detection",
|
|
18
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-crypto/ie11-detection/LICENSE"
|
|
19
|
+
},
|
|
20
|
+
"@aws-crypto/sha256-browser@2.0.0": {
|
|
21
|
+
"licenses": "Apache-2.0",
|
|
22
|
+
"repository": "https://github.com/aws/aws-sdk-js-crypto-helpers",
|
|
23
|
+
"publisher": "AWS Crypto Tools Team",
|
|
24
|
+
"email": "aws-cryptools@amazon.com",
|
|
25
|
+
"url": "https://docs.aws.amazon.com/aws-crypto-tools/index.html?id=docs_gateway#lang/en_us",
|
|
26
|
+
"path": "/home/uiprgl/server/node_modules/@aws-crypto/sha256-browser",
|
|
27
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-crypto/sha256-browser/LICENSE"
|
|
28
|
+
},
|
|
29
|
+
"@aws-crypto/sha256-js@2.0.0": {
|
|
30
|
+
"licenses": "Apache-2.0",
|
|
31
|
+
"repository": "https://github.com/aws/aws-sdk-js-crypto-helpers",
|
|
32
|
+
"publisher": "AWS Crypto Tools Team",
|
|
33
|
+
"email": "aws-cryptools@amazon.com",
|
|
34
|
+
"url": "https://docs.aws.amazon.com/aws-crypto-tools/index.html?id=docs_gateway#lang/en_us",
|
|
35
|
+
"path": "/home/uiprgl/server/node_modules/@aws-crypto/sha256-js",
|
|
36
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-crypto/sha256-js/LICENSE"
|
|
37
|
+
},
|
|
38
|
+
"@aws-crypto/supports-web-crypto@2.0.0": {
|
|
39
|
+
"licenses": "Apache-2.0",
|
|
40
|
+
"repository": "https://github.com/aws/aws-sdk-js-crypto-helpers",
|
|
41
|
+
"publisher": "AWS Crypto Tools Team",
|
|
42
|
+
"email": "aws-cryptools@amazon.com",
|
|
43
|
+
"url": "https://docs.aws.amazon.com/aws-crypto-tools/index.html?id=docs_gateway#lang/en_us",
|
|
44
|
+
"path": "/home/uiprgl/server/node_modules/@aws-crypto/supports-web-crypto",
|
|
45
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-crypto/supports-web-crypto/LICENSE"
|
|
46
|
+
},
|
|
47
|
+
"@aws-crypto/util@2.0.0": {
|
|
48
|
+
"licenses": "Apache-2.0",
|
|
49
|
+
"repository": "https://github.com/aws/aws-sdk-js-crypto-helpers",
|
|
50
|
+
"publisher": "AWS Crypto Tools Team",
|
|
51
|
+
"email": "aws-cryptools@amazon.com",
|
|
52
|
+
"url": "https://docs.aws.amazon.com/aws-crypto-tools/index.html?id=docs_gateway#lang/en_us",
|
|
53
|
+
"path": "/home/uiprgl/server/node_modules/@aws-crypto/util",
|
|
54
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-crypto/util/LICENSE"
|
|
55
|
+
},
|
|
56
|
+
"@aws-sdk/abort-controller@3.40.0": {
|
|
57
|
+
"licenses": "Apache-2.0",
|
|
58
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
59
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
60
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
61
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/abort-controller",
|
|
62
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/abort-controller/LICENSE"
|
|
63
|
+
},
|
|
64
|
+
"@aws-sdk/chunked-blob-reader-native@3.37.0": {
|
|
65
|
+
"licenses": "Apache-2.0",
|
|
66
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
67
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
68
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
69
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/chunked-blob-reader-native",
|
|
70
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/chunked-blob-reader-native/LICENSE"
|
|
71
|
+
},
|
|
72
|
+
"@aws-sdk/chunked-blob-reader@3.37.0": {
|
|
73
|
+
"licenses": "Apache-2.0",
|
|
74
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
75
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
76
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
77
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/chunked-blob-reader",
|
|
78
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/chunked-blob-reader/LICENSE"
|
|
79
|
+
},
|
|
80
|
+
"@aws-sdk/client-s3@3.42.0": {
|
|
81
|
+
"licenses": "Apache-2.0",
|
|
82
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
83
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
84
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
85
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/client-s3",
|
|
86
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/client-s3/LICENSE"
|
|
87
|
+
},
|
|
88
|
+
"@aws-sdk/client-sso@3.41.0": {
|
|
89
|
+
"licenses": "Apache-2.0",
|
|
90
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
91
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
92
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
93
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/client-sso",
|
|
94
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/client-sso/LICENSE"
|
|
95
|
+
},
|
|
96
|
+
"@aws-sdk/client-sts@3.42.0": {
|
|
97
|
+
"licenses": "Apache-2.0",
|
|
98
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
99
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
100
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
101
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/client-sts",
|
|
102
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/client-sts/LICENSE"
|
|
103
|
+
},
|
|
104
|
+
"@aws-sdk/config-resolver@3.40.0": {
|
|
105
|
+
"licenses": "Apache-2.0",
|
|
106
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
107
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
108
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
109
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/config-resolver",
|
|
110
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/config-resolver/LICENSE"
|
|
111
|
+
},
|
|
112
|
+
"@aws-sdk/credential-provider-env@3.40.0": {
|
|
113
|
+
"licenses": "Apache-2.0",
|
|
114
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
115
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
116
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
117
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/credential-provider-env",
|
|
118
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/credential-provider-env/LICENSE"
|
|
119
|
+
},
|
|
120
|
+
"@aws-sdk/credential-provider-imds@3.40.0": {
|
|
121
|
+
"licenses": "Apache-2.0",
|
|
122
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
123
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
124
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
125
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/credential-provider-imds",
|
|
126
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/credential-provider-imds/LICENSE"
|
|
127
|
+
},
|
|
128
|
+
"@aws-sdk/credential-provider-ini@3.41.0": {
|
|
129
|
+
"licenses": "Apache-2.0",
|
|
130
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
131
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
132
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
133
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/credential-provider-ini",
|
|
134
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/credential-provider-ini/LICENSE"
|
|
135
|
+
},
|
|
136
|
+
"@aws-sdk/credential-provider-node@3.41.0": {
|
|
137
|
+
"licenses": "Apache-2.0",
|
|
138
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
139
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
140
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
141
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/credential-provider-node",
|
|
142
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/credential-provider-node/LICENSE"
|
|
143
|
+
},
|
|
144
|
+
"@aws-sdk/credential-provider-process@3.40.0": {
|
|
145
|
+
"licenses": "Apache-2.0",
|
|
146
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
147
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
148
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
149
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/credential-provider-process",
|
|
150
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/credential-provider-process/LICENSE"
|
|
151
|
+
},
|
|
152
|
+
"@aws-sdk/credential-provider-sso@3.41.0": {
|
|
153
|
+
"licenses": "Apache-2.0",
|
|
154
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
155
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
156
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
157
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/credential-provider-sso",
|
|
158
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/credential-provider-sso/LICENSE"
|
|
159
|
+
},
|
|
160
|
+
"@aws-sdk/credential-provider-web-identity@3.41.0": {
|
|
161
|
+
"licenses": "Apache-2.0",
|
|
162
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
163
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
164
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
165
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/credential-provider-web-identity",
|
|
166
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE"
|
|
167
|
+
},
|
|
168
|
+
"@aws-sdk/eventstream-marshaller@3.40.0": {
|
|
169
|
+
"licenses": "Apache-2.0",
|
|
170
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
171
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
172
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
173
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/eventstream-marshaller",
|
|
174
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/eventstream-marshaller/LICENSE"
|
|
175
|
+
},
|
|
176
|
+
"@aws-sdk/eventstream-serde-browser@3.40.0": {
|
|
177
|
+
"licenses": "Apache-2.0",
|
|
178
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
179
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
180
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
181
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/eventstream-serde-browser",
|
|
182
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/eventstream-serde-browser/LICENSE"
|
|
183
|
+
},
|
|
184
|
+
"@aws-sdk/eventstream-serde-config-resolver@3.40.0": {
|
|
185
|
+
"licenses": "Apache-2.0",
|
|
186
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
187
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
188
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
189
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/eventstream-serde-config-resolver",
|
|
190
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/eventstream-serde-config-resolver/LICENSE"
|
|
191
|
+
},
|
|
192
|
+
"@aws-sdk/eventstream-serde-node@3.40.0": {
|
|
193
|
+
"licenses": "Apache-2.0",
|
|
194
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
195
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
196
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
197
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/eventstream-serde-node",
|
|
198
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/eventstream-serde-node/LICENSE"
|
|
199
|
+
},
|
|
200
|
+
"@aws-sdk/eventstream-serde-universal@3.40.0": {
|
|
201
|
+
"licenses": "Apache-2.0",
|
|
202
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
203
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
204
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
205
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/eventstream-serde-universal",
|
|
206
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/eventstream-serde-universal/LICENSE"
|
|
207
|
+
},
|
|
208
|
+
"@aws-sdk/fetch-http-handler@3.40.0": {
|
|
209
|
+
"licenses": "Apache-2.0",
|
|
210
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
211
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
212
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
213
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/fetch-http-handler",
|
|
214
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/fetch-http-handler/LICENSE"
|
|
215
|
+
},
|
|
216
|
+
"@aws-sdk/hash-blob-browser@3.40.0": {
|
|
217
|
+
"licenses": "Apache-2.0",
|
|
218
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
219
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
220
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
221
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/hash-blob-browser",
|
|
222
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/hash-blob-browser/LICENSE"
|
|
223
|
+
},
|
|
224
|
+
"@aws-sdk/hash-node@3.40.0": {
|
|
225
|
+
"licenses": "Apache-2.0",
|
|
226
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
227
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
228
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
229
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/hash-node",
|
|
230
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/hash-node/LICENSE"
|
|
231
|
+
},
|
|
232
|
+
"@aws-sdk/hash-stream-node@3.40.0": {
|
|
233
|
+
"licenses": "Apache-2.0",
|
|
234
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
235
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
236
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
237
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/hash-stream-node",
|
|
238
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/hash-stream-node/LICENSE"
|
|
239
|
+
},
|
|
240
|
+
"@aws-sdk/invalid-dependency@3.40.0": {
|
|
241
|
+
"licenses": "Apache-2.0",
|
|
242
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
243
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
244
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
245
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/invalid-dependency",
|
|
246
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/invalid-dependency/LICENSE"
|
|
247
|
+
},
|
|
248
|
+
"@aws-sdk/is-array-buffer@3.37.0": {
|
|
249
|
+
"licenses": "Apache-2.0",
|
|
250
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
251
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
252
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
253
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/is-array-buffer",
|
|
254
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/is-array-buffer/LICENSE"
|
|
255
|
+
},
|
|
256
|
+
"@aws-sdk/md5-js@3.40.0": {
|
|
257
|
+
"licenses": "Apache-2.0",
|
|
258
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
259
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
260
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
261
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/md5-js",
|
|
262
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/md5-js/LICENSE"
|
|
263
|
+
},
|
|
264
|
+
"@aws-sdk/middleware-apply-body-checksum@3.40.0": {
|
|
265
|
+
"licenses": "Apache-2.0",
|
|
266
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
267
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
268
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
269
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-apply-body-checksum",
|
|
270
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-apply-body-checksum/LICENSE"
|
|
271
|
+
},
|
|
272
|
+
"@aws-sdk/middleware-bucket-endpoint@3.41.0": {
|
|
273
|
+
"licenses": "Apache-2.0",
|
|
274
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
275
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
276
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
277
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-bucket-endpoint",
|
|
278
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-bucket-endpoint/LICENSE"
|
|
279
|
+
},
|
|
280
|
+
"@aws-sdk/middleware-content-length@3.40.0": {
|
|
281
|
+
"licenses": "Apache-2.0",
|
|
282
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
283
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
284
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
285
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-content-length",
|
|
286
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-content-length/LICENSE"
|
|
287
|
+
},
|
|
288
|
+
"@aws-sdk/middleware-expect-continue@3.40.0": {
|
|
289
|
+
"licenses": "Apache-2.0",
|
|
290
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
291
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
292
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
293
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-expect-continue",
|
|
294
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-expect-continue/LICENSE"
|
|
295
|
+
},
|
|
296
|
+
"@aws-sdk/middleware-header-default@3.40.0": {
|
|
297
|
+
"licenses": "Apache-2.0",
|
|
298
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
299
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
300
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
301
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-header-default",
|
|
302
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-header-default/LICENSE"
|
|
303
|
+
},
|
|
304
|
+
"@aws-sdk/middleware-host-header@3.40.0": {
|
|
305
|
+
"licenses": "Apache-2.0",
|
|
306
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
307
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
308
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
309
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-host-header",
|
|
310
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-host-header/LICENSE"
|
|
311
|
+
},
|
|
312
|
+
"@aws-sdk/middleware-location-constraint@3.40.0": {
|
|
313
|
+
"licenses": "Apache-2.0",
|
|
314
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
315
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
316
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
317
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-location-constraint",
|
|
318
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-location-constraint/LICENSE"
|
|
319
|
+
},
|
|
320
|
+
"@aws-sdk/middleware-logger@3.40.0": {
|
|
321
|
+
"licenses": "Apache-2.0",
|
|
322
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
323
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
324
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
325
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-logger",
|
|
326
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-logger/LICENSE"
|
|
327
|
+
},
|
|
328
|
+
"@aws-sdk/middleware-retry@3.40.0": {
|
|
329
|
+
"licenses": "Apache-2.0",
|
|
330
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
331
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
332
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
333
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-retry",
|
|
334
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-retry/LICENSE"
|
|
335
|
+
},
|
|
336
|
+
"@aws-sdk/middleware-sdk-s3@3.41.0": {
|
|
337
|
+
"licenses": "Apache-2.0",
|
|
338
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
339
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
340
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
341
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-sdk-s3",
|
|
342
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-sdk-s3/LICENSE"
|
|
343
|
+
},
|
|
344
|
+
"@aws-sdk/middleware-sdk-sts@3.40.0": {
|
|
345
|
+
"licenses": "Apache-2.0",
|
|
346
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
347
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
348
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
349
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-sdk-sts",
|
|
350
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-sdk-sts/LICENSE"
|
|
351
|
+
},
|
|
352
|
+
"@aws-sdk/middleware-serde@3.40.0": {
|
|
353
|
+
"licenses": "Apache-2.0",
|
|
354
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
355
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
356
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
357
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-serde",
|
|
358
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-serde/LICENSE"
|
|
359
|
+
},
|
|
360
|
+
"@aws-sdk/middleware-signing@3.40.0": {
|
|
361
|
+
"licenses": "Apache-2.0",
|
|
362
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
363
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
364
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
365
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-signing",
|
|
366
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-signing/LICENSE"
|
|
367
|
+
},
|
|
368
|
+
"@aws-sdk/middleware-ssec@3.40.0": {
|
|
369
|
+
"licenses": "Apache-2.0",
|
|
370
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
371
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
372
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
373
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-ssec",
|
|
374
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-ssec/LICENSE"
|
|
375
|
+
},
|
|
376
|
+
"@aws-sdk/middleware-stack@3.40.0": {
|
|
377
|
+
"licenses": "Apache-2.0",
|
|
378
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
379
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
380
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
381
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-stack",
|
|
382
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-stack/LICENSE"
|
|
383
|
+
},
|
|
384
|
+
"@aws-sdk/middleware-user-agent@3.40.0": {
|
|
385
|
+
"licenses": "Apache-2.0",
|
|
386
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
387
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
388
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
389
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-user-agent",
|
|
390
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/middleware-user-agent/LICENSE"
|
|
391
|
+
},
|
|
392
|
+
"@aws-sdk/node-config-provider@3.40.0": {
|
|
393
|
+
"licenses": "Apache-2.0",
|
|
394
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
395
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
396
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
397
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/node-config-provider",
|
|
398
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/node-config-provider/LICENSE"
|
|
399
|
+
},
|
|
400
|
+
"@aws-sdk/node-http-handler@3.40.0": {
|
|
401
|
+
"licenses": "Apache-2.0",
|
|
402
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
403
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
404
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
405
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/node-http-handler",
|
|
406
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/node-http-handler/LICENSE"
|
|
407
|
+
},
|
|
408
|
+
"@aws-sdk/property-provider@3.40.0": {
|
|
409
|
+
"licenses": "Apache-2.0",
|
|
410
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
411
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
412
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
413
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/property-provider",
|
|
414
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/property-provider/LICENSE"
|
|
415
|
+
},
|
|
416
|
+
"@aws-sdk/protocol-http@3.40.0": {
|
|
417
|
+
"licenses": "Apache-2.0",
|
|
418
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
419
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
420
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
421
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/protocol-http",
|
|
422
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/protocol-http/LICENSE"
|
|
423
|
+
},
|
|
424
|
+
"@aws-sdk/querystring-builder@3.40.0": {
|
|
425
|
+
"licenses": "Apache-2.0",
|
|
426
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
427
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
428
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
429
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/querystring-builder",
|
|
430
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/querystring-builder/LICENSE"
|
|
431
|
+
},
|
|
432
|
+
"@aws-sdk/querystring-parser@3.40.0": {
|
|
433
|
+
"licenses": "Apache-2.0",
|
|
434
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
435
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
436
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
437
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/querystring-parser",
|
|
438
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/querystring-parser/LICENSE"
|
|
439
|
+
},
|
|
440
|
+
"@aws-sdk/service-error-classification@3.40.0": {
|
|
441
|
+
"licenses": "Apache-2.0",
|
|
442
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
443
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
444
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
445
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/service-error-classification",
|
|
446
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/service-error-classification/LICENSE"
|
|
447
|
+
},
|
|
448
|
+
"@aws-sdk/shared-ini-file-loader@3.37.0": {
|
|
449
|
+
"licenses": "Apache-2.0",
|
|
450
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
451
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
452
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
453
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/shared-ini-file-loader",
|
|
454
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/shared-ini-file-loader/LICENSE"
|
|
455
|
+
},
|
|
456
|
+
"@aws-sdk/signature-v4@3.40.0": {
|
|
457
|
+
"licenses": "Apache-2.0",
|
|
458
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
459
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
460
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
461
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/signature-v4",
|
|
462
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/signature-v4/LICENSE"
|
|
463
|
+
},
|
|
464
|
+
"@aws-sdk/smithy-client@3.41.0": {
|
|
465
|
+
"licenses": "Apache-2.0",
|
|
466
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
467
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
468
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
469
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/smithy-client",
|
|
470
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/smithy-client/LICENSE"
|
|
471
|
+
},
|
|
472
|
+
"@aws-sdk/types@3.40.0": {
|
|
473
|
+
"licenses": "Apache-2.0",
|
|
474
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
475
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
476
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
477
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/types",
|
|
478
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/types/LICENSE"
|
|
479
|
+
},
|
|
480
|
+
"@aws-sdk/url-parser@3.40.0": {
|
|
481
|
+
"licenses": "Apache-2.0",
|
|
482
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
483
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
484
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
485
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/url-parser",
|
|
486
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/url-parser/LICENSE"
|
|
487
|
+
},
|
|
488
|
+
"@aws-sdk/util-arn-parser@3.37.0": {
|
|
489
|
+
"licenses": "Apache-2.0",
|
|
490
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
491
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
492
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
493
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-arn-parser",
|
|
494
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-arn-parser/LICENSE"
|
|
495
|
+
},
|
|
496
|
+
"@aws-sdk/util-base64-browser@3.37.0": {
|
|
497
|
+
"licenses": "Apache-2.0",
|
|
498
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
499
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
500
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
501
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-base64-browser",
|
|
502
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-base64-browser/LICENSE"
|
|
503
|
+
},
|
|
504
|
+
"@aws-sdk/util-base64-node@3.37.0": {
|
|
505
|
+
"licenses": "Apache-2.0",
|
|
506
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
507
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
508
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
509
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-base64-node",
|
|
510
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-base64-node/LICENSE"
|
|
511
|
+
},
|
|
512
|
+
"@aws-sdk/util-body-length-browser@3.37.0": {
|
|
513
|
+
"licenses": "Apache-2.0",
|
|
514
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
515
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
516
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
517
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-body-length-browser",
|
|
518
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-body-length-browser/LICENSE"
|
|
519
|
+
},
|
|
520
|
+
"@aws-sdk/util-body-length-node@3.37.0": {
|
|
521
|
+
"licenses": "Apache-2.0",
|
|
522
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
523
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
524
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
525
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-body-length-node",
|
|
526
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-body-length-node/LICENSE"
|
|
527
|
+
},
|
|
528
|
+
"@aws-sdk/util-buffer-from@3.37.0": {
|
|
529
|
+
"licenses": "Apache-2.0",
|
|
530
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
531
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
532
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
533
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-buffer-from",
|
|
534
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-buffer-from/LICENSE"
|
|
535
|
+
},
|
|
536
|
+
"@aws-sdk/util-config-provider@3.40.0": {
|
|
537
|
+
"licenses": "Apache-2.0",
|
|
538
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
539
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
540
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
541
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-config-provider",
|
|
542
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-config-provider/LICENSE"
|
|
543
|
+
},
|
|
544
|
+
"@aws-sdk/util-credentials@3.37.0": {
|
|
545
|
+
"licenses": "Apache-2.0",
|
|
546
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
547
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
548
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
549
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-credentials",
|
|
550
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-credentials/LICENSE"
|
|
551
|
+
},
|
|
552
|
+
"@aws-sdk/util-hex-encoding@3.37.0": {
|
|
553
|
+
"licenses": "Apache-2.0",
|
|
554
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
555
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
556
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
557
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-hex-encoding",
|
|
558
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-hex-encoding/LICENSE"
|
|
559
|
+
},
|
|
560
|
+
"@aws-sdk/util-locate-window@3.37.0": {
|
|
561
|
+
"licenses": "Apache-2.0",
|
|
562
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
563
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
564
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
565
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-locate-window",
|
|
566
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-locate-window/LICENSE"
|
|
567
|
+
},
|
|
568
|
+
"@aws-sdk/util-uri-escape@3.37.0": {
|
|
569
|
+
"licenses": "Apache-2.0",
|
|
570
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
571
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
572
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
573
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-uri-escape",
|
|
574
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-uri-escape/LICENSE"
|
|
575
|
+
},
|
|
576
|
+
"@aws-sdk/util-user-agent-browser@3.40.0": {
|
|
577
|
+
"licenses": "Apache-2.0",
|
|
578
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
579
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
580
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
581
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-user-agent-browser",
|
|
582
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-user-agent-browser/LICENSE"
|
|
583
|
+
},
|
|
584
|
+
"@aws-sdk/util-user-agent-node@3.40.0": {
|
|
585
|
+
"licenses": "Apache-2.0",
|
|
586
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
587
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
588
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
589
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-user-agent-node",
|
|
590
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-user-agent-node/LICENSE"
|
|
591
|
+
},
|
|
592
|
+
"@aws-sdk/util-utf8-browser@3.37.0": {
|
|
593
|
+
"licenses": "Apache-2.0",
|
|
594
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
595
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
596
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
597
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-utf8-browser",
|
|
598
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-utf8-browser/LICENSE"
|
|
599
|
+
},
|
|
600
|
+
"@aws-sdk/util-utf8-node@3.37.0": {
|
|
601
|
+
"licenses": "Apache-2.0",
|
|
602
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
603
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
604
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
605
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-utf8-node",
|
|
606
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-utf8-node/LICENSE"
|
|
607
|
+
},
|
|
608
|
+
"@aws-sdk/util-waiter@3.40.0": {
|
|
609
|
+
"licenses": "Apache-2.0",
|
|
610
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
611
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
612
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
613
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/util-waiter",
|
|
614
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/util-waiter/LICENSE"
|
|
615
|
+
},
|
|
616
|
+
"@aws-sdk/xml-builder@3.37.0": {
|
|
617
|
+
"licenses": "Apache-2.0",
|
|
618
|
+
"repository": "https://github.com/aws/aws-sdk-js-v3",
|
|
619
|
+
"publisher": "AWS SDK for JavaScript Team",
|
|
620
|
+
"url": "https://aws.amazon.com/javascript/",
|
|
621
|
+
"path": "/home/uiprgl/server/node_modules/@aws-sdk/xml-builder",
|
|
622
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-sdk/xml-builder/LICENSE"
|
|
623
|
+
},
|
|
624
|
+
"@gar/promisify@1.1.2": {
|
|
625
|
+
"licenses": "MIT",
|
|
626
|
+
"repository": "https://github.com/wraithgar/gar-promisify",
|
|
627
|
+
"publisher": "Gar",
|
|
628
|
+
"email": "gar+npm@danger.computer",
|
|
629
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@gar/promisify"
|
|
630
|
+
},
|
|
631
|
+
"@isaacs/string-locale-compare@1.1.0": {
|
|
632
|
+
"licenses": "ISC",
|
|
633
|
+
"repository": "https://github.com/isaacs/string-locale-compare",
|
|
634
|
+
"publisher": "Isaac Z. Schlueter",
|
|
635
|
+
"email": "i@izs.me",
|
|
636
|
+
"url": "https://izs.me",
|
|
637
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@isaacs/string-locale-compare",
|
|
638
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@isaacs/string-locale-compare/LICENSE"
|
|
639
|
+
},
|
|
640
|
+
"@npmcli/arborist@4.0.5": {
|
|
641
|
+
"licenses": "ISC",
|
|
642
|
+
"repository": "https://github.com/npm/arborist",
|
|
643
|
+
"publisher": "GitHub Inc.",
|
|
644
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/arborist",
|
|
645
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/arborist/LICENSE.md"
|
|
646
|
+
},
|
|
647
|
+
"@npmcli/ci-detect@1.4.0": {
|
|
648
|
+
"licenses": "ISC",
|
|
649
|
+
"repository": "https://github.com/npm/ci-detect",
|
|
650
|
+
"publisher": "Isaac Z. Schlueter",
|
|
651
|
+
"email": "i@izs.me",
|
|
652
|
+
"url": "https://izs.me",
|
|
653
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/ci-detect",
|
|
654
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/ci-detect/LICENSE"
|
|
655
|
+
},
|
|
656
|
+
"@npmcli/config@2.3.1": {
|
|
657
|
+
"licenses": "ISC",
|
|
658
|
+
"repository": "https://github.com/npm/config",
|
|
659
|
+
"publisher": "Isaac Z. Schlueter",
|
|
660
|
+
"email": "i@izs.me",
|
|
661
|
+
"url": "https://izs.me",
|
|
662
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/config",
|
|
663
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/config/LICENSE"
|
|
664
|
+
},
|
|
665
|
+
"@npmcli/disparity-colors@1.0.1": {
|
|
666
|
+
"licenses": "ISC",
|
|
667
|
+
"repository": "https://github.com/npm/disparity-colors",
|
|
668
|
+
"publisher": "npm Inc.",
|
|
669
|
+
"email": "support@npmjs.com",
|
|
670
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/disparity-colors",
|
|
671
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/disparity-colors/LICENSE"
|
|
672
|
+
},
|
|
673
|
+
"@npmcli/fs@1.0.0": {
|
|
674
|
+
"licenses": "ISC",
|
|
675
|
+
"publisher": "GitHub Inc.",
|
|
676
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/fs",
|
|
677
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/fs/LICENSE.md"
|
|
678
|
+
},
|
|
679
|
+
"@npmcli/git@2.1.0": {
|
|
680
|
+
"licenses": "ISC",
|
|
681
|
+
"repository": "https://github.com/npm/git",
|
|
682
|
+
"publisher": "Isaac Z. Schlueter",
|
|
683
|
+
"email": "i@izs.me",
|
|
684
|
+
"url": "https://izs.me",
|
|
685
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/git",
|
|
686
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/git/LICENSE"
|
|
687
|
+
},
|
|
688
|
+
"@npmcli/installed-package-contents@1.0.7": {
|
|
689
|
+
"licenses": "ISC",
|
|
690
|
+
"repository": "https://github.com/npm/installed-package-contents",
|
|
691
|
+
"publisher": "Isaac Z. Schlueter",
|
|
692
|
+
"email": "i@izs.me",
|
|
693
|
+
"url": "https://izs.me",
|
|
694
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/installed-package-contents",
|
|
695
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/installed-package-contents/LICENSE"
|
|
696
|
+
},
|
|
697
|
+
"@npmcli/map-workspaces@2.0.0": {
|
|
698
|
+
"licenses": "ISC",
|
|
699
|
+
"repository": "https://github.com/npm/map-workspaces",
|
|
700
|
+
"publisher": "GitHub Inc.",
|
|
701
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/map-workspaces",
|
|
702
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/map-workspaces/LICENSE.md"
|
|
703
|
+
},
|
|
704
|
+
"@npmcli/metavuln-calculator@2.0.0": {
|
|
705
|
+
"licenses": "ISC",
|
|
706
|
+
"repository": "https://github.com/npm/metavuln-calculator",
|
|
707
|
+
"publisher": "Isaac Z. Schlueter",
|
|
708
|
+
"email": "i@izs.me",
|
|
709
|
+
"url": "https://izs.me",
|
|
710
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/metavuln-calculator",
|
|
711
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/metavuln-calculator/LICENSE"
|
|
712
|
+
},
|
|
713
|
+
"@npmcli/move-file@1.1.2": {
|
|
714
|
+
"licenses": "MIT",
|
|
715
|
+
"repository": "https://github.com/npm/move-file",
|
|
716
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/move-file",
|
|
717
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/move-file/LICENSE.md"
|
|
718
|
+
},
|
|
719
|
+
"@npmcli/name-from-folder@1.0.1": {
|
|
720
|
+
"licenses": "ISC",
|
|
721
|
+
"repository": "https://github.com/npm/name-from-folder",
|
|
722
|
+
"publisher": "Isaac Z. Schlueter",
|
|
723
|
+
"email": "i@izs.me",
|
|
724
|
+
"url": "https://izs.me",
|
|
725
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/name-from-folder",
|
|
726
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/name-from-folder/LICENSE"
|
|
727
|
+
},
|
|
728
|
+
"@npmcli/node-gyp@1.0.3": {
|
|
729
|
+
"licenses": "ISC",
|
|
730
|
+
"repository": "https://github.com/npm/node-gyp",
|
|
731
|
+
"publisher": "Brian Jenkins",
|
|
732
|
+
"email": "bonkydog@bonkydog.com",
|
|
733
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/node-gyp"
|
|
734
|
+
},
|
|
735
|
+
"@npmcli/package-json@1.0.1": {
|
|
736
|
+
"licenses": "ISC",
|
|
737
|
+
"publisher": "GitHub Inc.",
|
|
738
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/package-json",
|
|
739
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/package-json/LICENSE"
|
|
740
|
+
},
|
|
741
|
+
"@npmcli/promise-spawn@1.3.2": {
|
|
742
|
+
"licenses": "ISC",
|
|
743
|
+
"repository": "https://github.com/npm/promise-spawn",
|
|
744
|
+
"publisher": "Isaac Z. Schlueter",
|
|
745
|
+
"email": "i@izs.me",
|
|
746
|
+
"url": "https://izs.me",
|
|
747
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/promise-spawn",
|
|
748
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/promise-spawn/LICENSE"
|
|
749
|
+
},
|
|
750
|
+
"@npmcli/run-script@2.0.0": {
|
|
751
|
+
"licenses": "ISC",
|
|
752
|
+
"repository": "https://github.com/npm/run-script",
|
|
753
|
+
"publisher": "Isaac Z. Schlueter",
|
|
754
|
+
"email": "i@izs.me",
|
|
755
|
+
"url": "https://izs.me",
|
|
756
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/run-script",
|
|
757
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/@npmcli/run-script/LICENSE"
|
|
758
|
+
},
|
|
759
|
+
"@tokenizer/token@0.3.0": {
|
|
760
|
+
"licenses": "MIT",
|
|
761
|
+
"repository": "https://github.com/Borewit/tokenizer-token",
|
|
762
|
+
"publisher": "Borewit",
|
|
763
|
+
"url": "https://github.com/Borewit",
|
|
764
|
+
"path": "/home/uiprgl/server/node_modules/@tokenizer/token",
|
|
765
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@tokenizer/token/README.md"
|
|
766
|
+
},
|
|
767
|
+
"@tootallnate/once@1.1.2": {
|
|
768
|
+
"licenses": "MIT",
|
|
769
|
+
"repository": "https://github.com/TooTallNate/once",
|
|
770
|
+
"publisher": "Nathan Rajlich",
|
|
771
|
+
"email": "nathan@tootallnate.net",
|
|
772
|
+
"url": "http://n8.io/",
|
|
773
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/@tootallnate/once"
|
|
774
|
+
},
|
|
775
|
+
"@types/body-parser@1.19.0": {
|
|
776
|
+
"licenses": "MIT",
|
|
777
|
+
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
|
|
778
|
+
"path": "/home/uiprgl/server/node_modules/@types/body-parser",
|
|
779
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@types/body-parser/LICENSE"
|
|
780
|
+
},
|
|
781
|
+
"@types/component-emitter@1.2.10": {
|
|
782
|
+
"licenses": "MIT",
|
|
783
|
+
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
|
|
784
|
+
"path": "/home/uiprgl/server/node_modules/@types/component-emitter",
|
|
785
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@types/component-emitter/LICENSE"
|
|
786
|
+
},
|
|
787
|
+
"@types/connect@3.4.34": {
|
|
788
|
+
"licenses": "MIT",
|
|
789
|
+
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
|
|
790
|
+
"path": "/home/uiprgl/server/node_modules/@types/connect",
|
|
791
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@types/connect/LICENSE"
|
|
792
|
+
},
|
|
793
|
+
"@types/cookie-parser@1.4.2": {
|
|
794
|
+
"licenses": "MIT",
|
|
795
|
+
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
|
|
796
|
+
"path": "/home/uiprgl/server/node_modules/@types/cookie-parser",
|
|
797
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@types/cookie-parser/LICENSE"
|
|
798
|
+
},
|
|
799
|
+
"@types/cookie@0.4.0": {
|
|
800
|
+
"licenses": "MIT",
|
|
801
|
+
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
|
|
802
|
+
"path": "/home/uiprgl/server/node_modules/@types/cookie",
|
|
803
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@types/cookie/LICENSE"
|
|
804
|
+
},
|
|
805
|
+
"@types/cors@2.8.10": {
|
|
806
|
+
"licenses": "MIT",
|
|
807
|
+
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
|
|
808
|
+
"path": "/home/uiprgl/server/node_modules/@types/cors",
|
|
809
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@types/cors/LICENSE"
|
|
810
|
+
},
|
|
811
|
+
"@types/express-serve-static-core@4.17.19": {
|
|
812
|
+
"licenses": "MIT",
|
|
813
|
+
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
|
|
814
|
+
"path": "/home/uiprgl/server/node_modules/@types/express-serve-static-core",
|
|
815
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@types/express-serve-static-core/LICENSE"
|
|
816
|
+
},
|
|
817
|
+
"@types/express@4.17.11": {
|
|
818
|
+
"licenses": "MIT",
|
|
819
|
+
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
|
|
820
|
+
"path": "/home/uiprgl/server/node_modules/@types/express",
|
|
821
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@types/express/LICENSE"
|
|
822
|
+
},
|
|
823
|
+
"@types/mime@1.3.2": {
|
|
824
|
+
"licenses": "MIT",
|
|
825
|
+
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
|
|
826
|
+
"path": "/home/uiprgl/server/node_modules/@types/mime",
|
|
827
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@types/mime/LICENSE"
|
|
828
|
+
},
|
|
829
|
+
"@types/node@14.14.41": {
|
|
830
|
+
"licenses": "MIT",
|
|
831
|
+
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
|
|
832
|
+
"path": "/home/uiprgl/server/node_modules/@types/node",
|
|
833
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@types/node/LICENSE"
|
|
834
|
+
},
|
|
835
|
+
"@types/qs@6.9.6": {
|
|
836
|
+
"licenses": "MIT",
|
|
837
|
+
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
|
|
838
|
+
"path": "/home/uiprgl/server/node_modules/@types/qs",
|
|
839
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@types/qs/LICENSE"
|
|
840
|
+
},
|
|
841
|
+
"@types/range-parser@1.2.3": {
|
|
842
|
+
"licenses": "MIT",
|
|
843
|
+
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
|
|
844
|
+
"path": "/home/uiprgl/server/node_modules/@types/range-parser",
|
|
845
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@types/range-parser/LICENSE"
|
|
846
|
+
},
|
|
847
|
+
"@types/serve-static@1.13.9": {
|
|
848
|
+
"licenses": "MIT",
|
|
849
|
+
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
|
|
850
|
+
"path": "/home/uiprgl/server/node_modules/@types/serve-static",
|
|
851
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@types/serve-static/LICENSE"
|
|
852
|
+
},
|
|
853
|
+
"@types/socket.io@3.0.2": {
|
|
854
|
+
"licenses": "MIT",
|
|
855
|
+
"path": "/home/uiprgl/server/node_modules/@types/socket.io",
|
|
856
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@types/socket.io/LICENSE"
|
|
857
|
+
},
|
|
858
|
+
"abbrev@1.1.1": {
|
|
859
|
+
"licenses": "ISC",
|
|
860
|
+
"repository": "https://github.com/isaacs/abbrev-js",
|
|
861
|
+
"publisher": "Isaac Z. Schlueter",
|
|
862
|
+
"email": "i@izs.me",
|
|
863
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/abbrev",
|
|
864
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/abbrev/LICENSE"
|
|
865
|
+
},
|
|
866
|
+
"accepts@1.3.7": {
|
|
867
|
+
"licenses": "MIT",
|
|
868
|
+
"repository": "https://github.com/jshttp/accepts",
|
|
869
|
+
"path": "/home/uiprgl/server/node_modules/accepts",
|
|
870
|
+
"licenseFile": "/home/uiprgl/server/node_modules/accepts/LICENSE"
|
|
871
|
+
},
|
|
872
|
+
"agent-base@6.0.2": {
|
|
873
|
+
"licenses": "MIT",
|
|
874
|
+
"repository": "https://github.com/TooTallNate/node-agent-base",
|
|
875
|
+
"publisher": "Nathan Rajlich",
|
|
876
|
+
"email": "nathan@tootallnate.net",
|
|
877
|
+
"url": "http://n8.io/",
|
|
878
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/agent-base"
|
|
879
|
+
},
|
|
880
|
+
"agentkeepalive@4.1.4": {
|
|
881
|
+
"licenses": "MIT",
|
|
882
|
+
"repository": "https://github.com/node-modules/agentkeepalive",
|
|
883
|
+
"publisher": "fengmk2",
|
|
884
|
+
"email": "fengmk2@gmail.com",
|
|
885
|
+
"url": "https://fengmk2.com",
|
|
886
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/agentkeepalive",
|
|
887
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/agentkeepalive/LICENSE"
|
|
888
|
+
},
|
|
889
|
+
"aggregate-error@3.1.0": {
|
|
890
|
+
"licenses": "MIT",
|
|
891
|
+
"repository": "https://github.com/sindresorhus/aggregate-error",
|
|
892
|
+
"publisher": "Sindre Sorhus",
|
|
893
|
+
"email": "sindresorhus@gmail.com",
|
|
894
|
+
"url": "sindresorhus.com",
|
|
895
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/aggregate-error",
|
|
896
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/aggregate-error/license"
|
|
897
|
+
},
|
|
898
|
+
"ansi-regex@2.1.1": {
|
|
899
|
+
"licenses": "MIT",
|
|
900
|
+
"repository": "https://github.com/chalk/ansi-regex",
|
|
901
|
+
"publisher": "Sindre Sorhus",
|
|
902
|
+
"email": "sindresorhus@gmail.com",
|
|
903
|
+
"url": "sindresorhus.com",
|
|
904
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/ansi-regex",
|
|
905
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/ansi-regex/license"
|
|
906
|
+
},
|
|
907
|
+
"ansi-regex@3.0.0": {
|
|
908
|
+
"licenses": "MIT",
|
|
909
|
+
"repository": "https://github.com/chalk/ansi-regex",
|
|
910
|
+
"publisher": "Sindre Sorhus",
|
|
911
|
+
"email": "sindresorhus@gmail.com",
|
|
912
|
+
"url": "sindresorhus.com",
|
|
913
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/string-width/node_modules/ansi-regex",
|
|
914
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/license"
|
|
915
|
+
},
|
|
916
|
+
"ansi-regex@5.0.0": {
|
|
917
|
+
"licenses": "MIT",
|
|
918
|
+
"repository": "https://github.com/chalk/ansi-regex",
|
|
919
|
+
"publisher": "Sindre Sorhus",
|
|
920
|
+
"email": "sindresorhus@gmail.com",
|
|
921
|
+
"url": "sindresorhus.com",
|
|
922
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/cli-table3/node_modules/ansi-regex",
|
|
923
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/cli-table3/node_modules/ansi-regex/license"
|
|
924
|
+
},
|
|
925
|
+
"ansi-regex@5.0.1": {
|
|
926
|
+
"licenses": "MIT",
|
|
927
|
+
"repository": "https://github.com/chalk/ansi-regex",
|
|
928
|
+
"publisher": "Sindre Sorhus",
|
|
929
|
+
"email": "sindresorhus@gmail.com",
|
|
930
|
+
"url": "sindresorhus.com",
|
|
931
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex",
|
|
932
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/license"
|
|
933
|
+
},
|
|
934
|
+
"ansi-styles@4.3.0": {
|
|
935
|
+
"licenses": "MIT",
|
|
936
|
+
"repository": "https://github.com/chalk/ansi-styles",
|
|
937
|
+
"publisher": "Sindre Sorhus",
|
|
938
|
+
"email": "sindresorhus@gmail.com",
|
|
939
|
+
"url": "sindresorhus.com",
|
|
940
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/ansi-styles",
|
|
941
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/ansi-styles/license"
|
|
942
|
+
},
|
|
943
|
+
"ansicolors@0.3.2": {
|
|
944
|
+
"licenses": "MIT",
|
|
945
|
+
"repository": "https://github.com/thlorenz/ansicolors",
|
|
946
|
+
"publisher": "Thorsten Lorenz",
|
|
947
|
+
"email": "thlorenz@gmx.de",
|
|
948
|
+
"url": "thlorenz.com",
|
|
949
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/ansicolors",
|
|
950
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/ansicolors/LICENSE"
|
|
951
|
+
},
|
|
952
|
+
"ansistyles@0.1.3": {
|
|
953
|
+
"licenses": "MIT",
|
|
954
|
+
"repository": "https://github.com/thlorenz/ansistyles",
|
|
955
|
+
"publisher": "Thorsten Lorenz",
|
|
956
|
+
"email": "thlorenz@gmx.de",
|
|
957
|
+
"url": "thlorenz.com",
|
|
958
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/ansistyles",
|
|
959
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/ansistyles/LICENSE"
|
|
960
|
+
},
|
|
961
|
+
"aproba@1.2.0": {
|
|
962
|
+
"licenses": "ISC",
|
|
963
|
+
"repository": "https://github.com/iarna/aproba",
|
|
964
|
+
"publisher": "Rebecca Turner",
|
|
965
|
+
"email": "me@re-becca.org",
|
|
966
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/node-gyp/node_modules/aproba",
|
|
967
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/node-gyp/node_modules/aproba/LICENSE"
|
|
968
|
+
},
|
|
969
|
+
"aproba@2.0.0": {
|
|
970
|
+
"licenses": "ISC",
|
|
971
|
+
"repository": "https://github.com/iarna/aproba",
|
|
972
|
+
"publisher": "Rebecca Turner",
|
|
973
|
+
"email": "me@re-becca.org",
|
|
974
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/aproba",
|
|
975
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/aproba/LICENSE"
|
|
976
|
+
},
|
|
977
|
+
"archy@1.0.0": {
|
|
978
|
+
"licenses": "MIT",
|
|
979
|
+
"repository": "https://github.com/substack/node-archy",
|
|
980
|
+
"publisher": "James Halliday",
|
|
981
|
+
"email": "mail@substack.net",
|
|
982
|
+
"url": "http://substack.net",
|
|
983
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/archy",
|
|
984
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/archy/LICENSE"
|
|
985
|
+
},
|
|
986
|
+
"are-we-there-yet@1.1.6": {
|
|
987
|
+
"licenses": "ISC",
|
|
988
|
+
"repository": "https://github.com/npm/are-we-there-yet",
|
|
989
|
+
"publisher": "GitHub Inc.",
|
|
990
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/are-we-there-yet",
|
|
991
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/are-we-there-yet/LICENSE.md"
|
|
992
|
+
},
|
|
993
|
+
"are-we-there-yet@1.1.7": {
|
|
994
|
+
"licenses": "ISC",
|
|
995
|
+
"repository": "https://github.com/iarna/are-we-there-yet",
|
|
996
|
+
"publisher": "Rebecca Turner",
|
|
997
|
+
"url": "http://re-becca.org",
|
|
998
|
+
"path": "/home/uiprgl/server/node_modules/are-we-there-yet",
|
|
999
|
+
"licenseFile": "/home/uiprgl/server/node_modules/are-we-there-yet/LICENSE"
|
|
1000
|
+
},
|
|
1001
|
+
"are-we-there-yet@2.0.0": {
|
|
1002
|
+
"licenses": "ISC",
|
|
1003
|
+
"repository": "https://github.com/npm/are-we-there-yet",
|
|
1004
|
+
"publisher": "GitHub Inc.",
|
|
1005
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet",
|
|
1006
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet/LICENSE.md"
|
|
1007
|
+
},
|
|
1008
|
+
"array-flatten@1.1.1": {
|
|
1009
|
+
"licenses": "MIT",
|
|
1010
|
+
"repository": "https://github.com/blakeembrey/array-flatten",
|
|
1011
|
+
"publisher": "Blake Embrey",
|
|
1012
|
+
"email": "hello@blakeembrey.com",
|
|
1013
|
+
"url": "http://blakeembrey.me",
|
|
1014
|
+
"path": "/home/uiprgl/server/node_modules/array-flatten",
|
|
1015
|
+
"licenseFile": "/home/uiprgl/server/node_modules/array-flatten/LICENSE"
|
|
1016
|
+
},
|
|
1017
|
+
"asap@2.0.6": {
|
|
1018
|
+
"licenses": "MIT",
|
|
1019
|
+
"repository": "https://github.com/kriskowal/asap",
|
|
1020
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/asap",
|
|
1021
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/asap/LICENSE.md"
|
|
1022
|
+
},
|
|
1023
|
+
"assert-options@0.7.0": {
|
|
1024
|
+
"licenses": "MIT",
|
|
1025
|
+
"repository": "https://github.com/vitaly-t/assert-options",
|
|
1026
|
+
"publisher": "Vitaly Tomilov",
|
|
1027
|
+
"email": "vitaly.tomilov@gmail.com",
|
|
1028
|
+
"path": "/home/uiprgl/server/node_modules/assert-options",
|
|
1029
|
+
"licenseFile": "/home/uiprgl/server/node_modules/assert-options/README.md"
|
|
1030
|
+
},
|
|
1031
|
+
"aws-sdk@2.1035.0": {
|
|
1032
|
+
"licenses": "Apache-2.0",
|
|
1033
|
+
"repository": "https://github.com/aws/aws-sdk-js",
|
|
1034
|
+
"publisher": "Amazon Web Services",
|
|
1035
|
+
"url": "https://aws.amazon.com/",
|
|
1036
|
+
"path": "/home/uiprgl/server/node_modules/aws-sdk",
|
|
1037
|
+
"licenseFile": "/home/uiprgl/server/node_modules/aws-sdk/LICENSE.txt",
|
|
1038
|
+
"noticeFile": "/home/uiprgl/server/node_modules/aws-sdk/NOTICE.txt"
|
|
1039
|
+
},
|
|
1040
|
+
"balanced-match@1.0.2": {
|
|
1041
|
+
"licenses": "MIT",
|
|
1042
|
+
"repository": "https://github.com/juliangruber/balanced-match",
|
|
1043
|
+
"publisher": "Julian Gruber",
|
|
1044
|
+
"email": "mail@juliangruber.com",
|
|
1045
|
+
"url": "http://juliangruber.com",
|
|
1046
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/balanced-match",
|
|
1047
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/balanced-match/LICENSE.md"
|
|
1048
|
+
},
|
|
1049
|
+
"base64-arraybuffer@0.1.4": {
|
|
1050
|
+
"licenses": "MIT",
|
|
1051
|
+
"repository": "https://github.com/niklasvh/base64-arraybuffer",
|
|
1052
|
+
"publisher": "Niklas von Hertzen",
|
|
1053
|
+
"email": "niklasvh@gmail.com",
|
|
1054
|
+
"url": "http://hertzen.com",
|
|
1055
|
+
"path": "/home/uiprgl/server/node_modules/base64-arraybuffer",
|
|
1056
|
+
"licenseFile": "/home/uiprgl/server/node_modules/base64-arraybuffer/LICENSE-MIT"
|
|
1057
|
+
},
|
|
1058
|
+
"base64-js@1.5.1": {
|
|
1059
|
+
"licenses": "MIT",
|
|
1060
|
+
"repository": "https://github.com/beatgammit/base64-js",
|
|
1061
|
+
"publisher": "T. Jameson Little",
|
|
1062
|
+
"email": "t.jameson.little@gmail.com",
|
|
1063
|
+
"path": "/home/uiprgl/server/node_modules/base64-js",
|
|
1064
|
+
"licenseFile": "/home/uiprgl/server/node_modules/base64-js/LICENSE"
|
|
1065
|
+
},
|
|
1066
|
+
"base64id@2.0.0": {
|
|
1067
|
+
"licenses": "MIT",
|
|
1068
|
+
"repository": "https://github.com/faeldt/base64id",
|
|
1069
|
+
"publisher": "Kristian Faeldt",
|
|
1070
|
+
"email": "faeldt_kristian@cyberagent.co.jp",
|
|
1071
|
+
"path": "/home/uiprgl/server/node_modules/base64id",
|
|
1072
|
+
"licenseFile": "/home/uiprgl/server/node_modules/base64id/LICENSE"
|
|
1073
|
+
},
|
|
1074
|
+
"bin-links@2.3.0": {
|
|
1075
|
+
"licenses": "ISC",
|
|
1076
|
+
"repository": "https://github.com/npm/bin-links",
|
|
1077
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/bin-links",
|
|
1078
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/bin-links/LICENSE"
|
|
1079
|
+
},
|
|
1080
|
+
"binary-extensions@2.2.0": {
|
|
1081
|
+
"licenses": "MIT",
|
|
1082
|
+
"repository": "https://github.com/sindresorhus/binary-extensions",
|
|
1083
|
+
"publisher": "Sindre Sorhus",
|
|
1084
|
+
"email": "sindresorhus@gmail.com",
|
|
1085
|
+
"url": "sindresorhus.com",
|
|
1086
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/binary-extensions",
|
|
1087
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/binary-extensions/license"
|
|
1088
|
+
},
|
|
1089
|
+
"bl@4.1.0": {
|
|
1090
|
+
"licenses": "MIT",
|
|
1091
|
+
"repository": "https://github.com/rvagg/bl",
|
|
1092
|
+
"path": "/home/uiprgl/server/node_modules/bl",
|
|
1093
|
+
"licenseFile": "/home/uiprgl/server/node_modules/bl/LICENSE.md"
|
|
1094
|
+
},
|
|
1095
|
+
"bluebird@3.7.2": {
|
|
1096
|
+
"licenses": "MIT",
|
|
1097
|
+
"repository": "https://github.com/petkaantonov/bluebird",
|
|
1098
|
+
"publisher": "Petka Antonov",
|
|
1099
|
+
"email": "petka_antonov@hotmail.com",
|
|
1100
|
+
"url": "http://github.com/petkaantonov/",
|
|
1101
|
+
"path": "/home/uiprgl/server/node_modules/bluebird",
|
|
1102
|
+
"licenseFile": "/home/uiprgl/server/node_modules/bluebird/LICENSE"
|
|
1103
|
+
},
|
|
1104
|
+
"body-parser@1.19.0": {
|
|
1105
|
+
"licenses": "MIT",
|
|
1106
|
+
"repository": "https://github.com/expressjs/body-parser",
|
|
1107
|
+
"path": "/home/uiprgl/server/node_modules/body-parser",
|
|
1108
|
+
"licenseFile": "/home/uiprgl/server/node_modules/body-parser/LICENSE"
|
|
1109
|
+
},
|
|
1110
|
+
"bowser@2.11.0": {
|
|
1111
|
+
"licenses": "MIT",
|
|
1112
|
+
"repository": "https://github.com/lancedikson/bowser",
|
|
1113
|
+
"publisher": "Dustin Diaz",
|
|
1114
|
+
"email": "dustin@dustindiaz.com",
|
|
1115
|
+
"url": "http://dustindiaz.com",
|
|
1116
|
+
"path": "/home/uiprgl/server/node_modules/bowser",
|
|
1117
|
+
"licenseFile": "/home/uiprgl/server/node_modules/bowser/LICENSE"
|
|
1118
|
+
},
|
|
1119
|
+
"brace-expansion@1.1.11": {
|
|
1120
|
+
"licenses": "MIT",
|
|
1121
|
+
"repository": "https://github.com/juliangruber/brace-expansion",
|
|
1122
|
+
"publisher": "Julian Gruber",
|
|
1123
|
+
"email": "mail@juliangruber.com",
|
|
1124
|
+
"url": "http://juliangruber.com",
|
|
1125
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/brace-expansion",
|
|
1126
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/brace-expansion/LICENSE"
|
|
1127
|
+
},
|
|
1128
|
+
"buffer-writer@2.0.0": {
|
|
1129
|
+
"licenses": "MIT",
|
|
1130
|
+
"repository": "https://github.com/brianc/node-buffer-writer",
|
|
1131
|
+
"publisher": "Brian M. Carlson",
|
|
1132
|
+
"path": "/home/uiprgl/server/node_modules/buffer-writer",
|
|
1133
|
+
"licenseFile": "/home/uiprgl/server/node_modules/buffer-writer/LICENSE"
|
|
1134
|
+
},
|
|
1135
|
+
"buffer@4.9.2": {
|
|
1136
|
+
"licenses": "MIT",
|
|
1137
|
+
"repository": "https://github.com/feross/buffer",
|
|
1138
|
+
"publisher": "Feross Aboukhadijeh",
|
|
1139
|
+
"email": "feross@feross.org",
|
|
1140
|
+
"url": "http://feross.org",
|
|
1141
|
+
"path": "/home/uiprgl/server/node_modules/buffer",
|
|
1142
|
+
"licenseFile": "/home/uiprgl/server/node_modules/buffer/LICENSE"
|
|
1143
|
+
},
|
|
1144
|
+
"buffer@5.7.1": {
|
|
1145
|
+
"licenses": "MIT",
|
|
1146
|
+
"repository": "https://github.com/feross/buffer",
|
|
1147
|
+
"publisher": "Feross Aboukhadijeh",
|
|
1148
|
+
"email": "feross@feross.org",
|
|
1149
|
+
"url": "https://feross.org",
|
|
1150
|
+
"path": "/home/uiprgl/server/node_modules/bl/node_modules/buffer",
|
|
1151
|
+
"licenseFile": "/home/uiprgl/server/node_modules/bl/node_modules/buffer/LICENSE"
|
|
1152
|
+
},
|
|
1153
|
+
"builtins@1.0.3": {
|
|
1154
|
+
"licenses": "MIT",
|
|
1155
|
+
"repository": "https://github.com/juliangruber/builtins",
|
|
1156
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/builtins",
|
|
1157
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/builtins/License"
|
|
1158
|
+
},
|
|
1159
|
+
"bytes@3.1.0": {
|
|
1160
|
+
"licenses": "MIT",
|
|
1161
|
+
"repository": "https://github.com/visionmedia/bytes.js",
|
|
1162
|
+
"publisher": "TJ Holowaychuk",
|
|
1163
|
+
"email": "tj@vision-media.ca",
|
|
1164
|
+
"url": "http://tjholowaychuk.com",
|
|
1165
|
+
"path": "/home/uiprgl/server/node_modules/bytes",
|
|
1166
|
+
"licenseFile": "/home/uiprgl/server/node_modules/bytes/LICENSE"
|
|
1167
|
+
},
|
|
1168
|
+
"cacache@15.3.0": {
|
|
1169
|
+
"licenses": "ISC",
|
|
1170
|
+
"repository": "https://github.com/npm/cacache",
|
|
1171
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/cacache",
|
|
1172
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/cacache/LICENSE.md"
|
|
1173
|
+
},
|
|
1174
|
+
"chalk@4.1.2": {
|
|
1175
|
+
"licenses": "MIT",
|
|
1176
|
+
"repository": "https://github.com/chalk/chalk",
|
|
1177
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/chalk",
|
|
1178
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/chalk/license"
|
|
1179
|
+
},
|
|
1180
|
+
"chownr@1.1.4": {
|
|
1181
|
+
"licenses": "ISC",
|
|
1182
|
+
"repository": "https://github.com/isaacs/chownr",
|
|
1183
|
+
"publisher": "Isaac Z. Schlueter",
|
|
1184
|
+
"email": "i@izs.me",
|
|
1185
|
+
"url": "http://blog.izs.me/",
|
|
1186
|
+
"path": "/home/uiprgl/server/node_modules/chownr",
|
|
1187
|
+
"licenseFile": "/home/uiprgl/server/node_modules/chownr/LICENSE"
|
|
1188
|
+
},
|
|
1189
|
+
"chownr@2.0.0": {
|
|
1190
|
+
"licenses": "ISC",
|
|
1191
|
+
"repository": "https://github.com/isaacs/chownr",
|
|
1192
|
+
"publisher": "Isaac Z. Schlueter",
|
|
1193
|
+
"email": "i@izs.me",
|
|
1194
|
+
"url": "http://blog.izs.me/",
|
|
1195
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/chownr",
|
|
1196
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/chownr/LICENSE"
|
|
1197
|
+
},
|
|
1198
|
+
"cidr-regex@3.1.1": {
|
|
1199
|
+
"licenses": "BSD-2-Clause",
|
|
1200
|
+
"repository": "https://github.com/silverwind/cidr-regex",
|
|
1201
|
+
"publisher": "silverwind",
|
|
1202
|
+
"email": "me@silverwind.io",
|
|
1203
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/cidr-regex",
|
|
1204
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/cidr-regex/LICENSE"
|
|
1205
|
+
},
|
|
1206
|
+
"clean-stack@2.2.0": {
|
|
1207
|
+
"licenses": "MIT",
|
|
1208
|
+
"repository": "https://github.com/sindresorhus/clean-stack",
|
|
1209
|
+
"publisher": "Sindre Sorhus",
|
|
1210
|
+
"email": "sindresorhus@gmail.com",
|
|
1211
|
+
"url": "sindresorhus.com",
|
|
1212
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/clean-stack",
|
|
1213
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/clean-stack/license"
|
|
1214
|
+
},
|
|
1215
|
+
"cli-columns@4.0.0": {
|
|
1216
|
+
"licenses": "MIT",
|
|
1217
|
+
"repository": "https://github.com/shannonmoeller/cli-columns",
|
|
1218
|
+
"publisher": "Shannon Moeller",
|
|
1219
|
+
"email": "me@shannonmoeller",
|
|
1220
|
+
"url": "http://shannonmoeller.com",
|
|
1221
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/cli-columns",
|
|
1222
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/cli-columns/LICENSE"
|
|
1223
|
+
},
|
|
1224
|
+
"cli-table3@0.6.0": {
|
|
1225
|
+
"licenses": "MIT",
|
|
1226
|
+
"repository": "https://github.com/cli-table/cli-table3",
|
|
1227
|
+
"publisher": "James Talmage",
|
|
1228
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/cli-table3",
|
|
1229
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/cli-table3/LICENSE"
|
|
1230
|
+
},
|
|
1231
|
+
"clone@1.0.4": {
|
|
1232
|
+
"licenses": "MIT",
|
|
1233
|
+
"repository": "https://github.com/pvorb/node-clone",
|
|
1234
|
+
"publisher": "Paul Vorbach",
|
|
1235
|
+
"email": "paul@vorba.ch",
|
|
1236
|
+
"url": "http://paul.vorba.ch/",
|
|
1237
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/clone",
|
|
1238
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/clone/LICENSE"
|
|
1239
|
+
},
|
|
1240
|
+
"cmd-shim@4.1.0": {
|
|
1241
|
+
"licenses": "ISC",
|
|
1242
|
+
"repository": "https://github.com/npm/cmd-shim",
|
|
1243
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/cmd-shim",
|
|
1244
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/cmd-shim/LICENSE"
|
|
1245
|
+
},
|
|
1246
|
+
"code-point-at@1.1.0": {
|
|
1247
|
+
"licenses": "MIT",
|
|
1248
|
+
"repository": "https://github.com/sindresorhus/code-point-at",
|
|
1249
|
+
"publisher": "Sindre Sorhus",
|
|
1250
|
+
"email": "sindresorhus@gmail.com",
|
|
1251
|
+
"url": "sindresorhus.com",
|
|
1252
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/code-point-at",
|
|
1253
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/code-point-at/license"
|
|
1254
|
+
},
|
|
1255
|
+
"color-convert@2.0.1": {
|
|
1256
|
+
"licenses": "MIT",
|
|
1257
|
+
"repository": "https://github.com/Qix-/color-convert",
|
|
1258
|
+
"publisher": "Heather Arthur",
|
|
1259
|
+
"email": "fayearthur@gmail.com",
|
|
1260
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/color-convert",
|
|
1261
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/color-convert/LICENSE"
|
|
1262
|
+
},
|
|
1263
|
+
"color-name@1.1.4": {
|
|
1264
|
+
"licenses": "MIT",
|
|
1265
|
+
"repository": "https://github.com/colorjs/color-name",
|
|
1266
|
+
"publisher": "DY",
|
|
1267
|
+
"email": "dfcreative@gmail.com",
|
|
1268
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/color-name",
|
|
1269
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/color-name/LICENSE"
|
|
1270
|
+
},
|
|
1271
|
+
"color-string@1.6.0": {
|
|
1272
|
+
"licenses": "MIT",
|
|
1273
|
+
"repository": "https://github.com/Qix-/color-string",
|
|
1274
|
+
"publisher": "Heather Arthur",
|
|
1275
|
+
"email": "fayearthur@gmail.com",
|
|
1276
|
+
"path": "/home/uiprgl/server/node_modules/color-string",
|
|
1277
|
+
"licenseFile": "/home/uiprgl/server/node_modules/color-string/LICENSE"
|
|
1278
|
+
},
|
|
1279
|
+
"color-support@1.1.3": {
|
|
1280
|
+
"licenses": "ISC",
|
|
1281
|
+
"repository": "https://github.com/isaacs/color-support",
|
|
1282
|
+
"publisher": "Isaac Z. Schlueter",
|
|
1283
|
+
"email": "i@izs.me",
|
|
1284
|
+
"url": "http://blog.izs.me/",
|
|
1285
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/color-support",
|
|
1286
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/color-support/LICENSE"
|
|
1287
|
+
},
|
|
1288
|
+
"color@4.0.1": {
|
|
1289
|
+
"licenses": "MIT",
|
|
1290
|
+
"repository": "https://github.com/Qix-/color",
|
|
1291
|
+
"path": "/home/uiprgl/server/node_modules/color",
|
|
1292
|
+
"licenseFile": "/home/uiprgl/server/node_modules/color/LICENSE"
|
|
1293
|
+
},
|
|
1294
|
+
"colors@1.4.0": {
|
|
1295
|
+
"licenses": "MIT",
|
|
1296
|
+
"repository": "https://github.com/Marak/colors.js",
|
|
1297
|
+
"publisher": "Marak Squires",
|
|
1298
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/colors",
|
|
1299
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/colors/LICENSE"
|
|
1300
|
+
},
|
|
1301
|
+
"columnify@1.5.4": {
|
|
1302
|
+
"licenses": "MIT",
|
|
1303
|
+
"repository": "https://github.com/timoxley/columnify",
|
|
1304
|
+
"publisher": "Tim Oxley",
|
|
1305
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/columnify",
|
|
1306
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/columnify/LICENSE"
|
|
1307
|
+
},
|
|
1308
|
+
"common-ancestor-path@1.0.1": {
|
|
1309
|
+
"licenses": "ISC",
|
|
1310
|
+
"repository": "https://github.com/isaacs/common-ancestor-path",
|
|
1311
|
+
"publisher": "Isaac Z. Schlueter",
|
|
1312
|
+
"email": "i@izs.me",
|
|
1313
|
+
"url": "https://izs.me",
|
|
1314
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/common-ancestor-path",
|
|
1315
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/common-ancestor-path/LICENSE"
|
|
1316
|
+
},
|
|
1317
|
+
"component-emitter@1.3.0": {
|
|
1318
|
+
"licenses": "MIT",
|
|
1319
|
+
"repository": "https://github.com/component/emitter",
|
|
1320
|
+
"path": "/home/uiprgl/server/node_modules/component-emitter",
|
|
1321
|
+
"licenseFile": "/home/uiprgl/server/node_modules/component-emitter/LICENSE"
|
|
1322
|
+
},
|
|
1323
|
+
"concat-map@0.0.1": {
|
|
1324
|
+
"licenses": "MIT",
|
|
1325
|
+
"repository": "https://github.com/substack/node-concat-map",
|
|
1326
|
+
"publisher": "James Halliday",
|
|
1327
|
+
"email": "mail@substack.net",
|
|
1328
|
+
"url": "http://substack.net",
|
|
1329
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/concat-map",
|
|
1330
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/concat-map/LICENSE"
|
|
1331
|
+
},
|
|
1332
|
+
"console-control-strings@1.1.0": {
|
|
1333
|
+
"licenses": "ISC",
|
|
1334
|
+
"repository": "https://github.com/iarna/console-control-strings",
|
|
1335
|
+
"publisher": "Rebecca Turner",
|
|
1336
|
+
"email": "me@re-becca.org",
|
|
1337
|
+
"url": "http://re-becca.org/",
|
|
1338
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/console-control-strings",
|
|
1339
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/console-control-strings/LICENSE"
|
|
1340
|
+
},
|
|
1341
|
+
"content-disposition@0.5.3": {
|
|
1342
|
+
"licenses": "MIT",
|
|
1343
|
+
"repository": "https://github.com/jshttp/content-disposition",
|
|
1344
|
+
"publisher": "Douglas Christopher Wilson",
|
|
1345
|
+
"email": "doug@somethingdoug.com",
|
|
1346
|
+
"path": "/home/uiprgl/server/node_modules/content-disposition",
|
|
1347
|
+
"licenseFile": "/home/uiprgl/server/node_modules/content-disposition/LICENSE"
|
|
1348
|
+
},
|
|
1349
|
+
"content-type@1.0.4": {
|
|
1350
|
+
"licenses": "MIT",
|
|
1351
|
+
"repository": "https://github.com/jshttp/content-type",
|
|
1352
|
+
"publisher": "Douglas Christopher Wilson",
|
|
1353
|
+
"email": "doug@somethingdoug.com",
|
|
1354
|
+
"path": "/home/uiprgl/server/node_modules/content-type",
|
|
1355
|
+
"licenseFile": "/home/uiprgl/server/node_modules/content-type/LICENSE"
|
|
1356
|
+
},
|
|
1357
|
+
"cookie-parser@1.4.5": {
|
|
1358
|
+
"licenses": "MIT",
|
|
1359
|
+
"repository": "https://github.com/expressjs/cookie-parser",
|
|
1360
|
+
"publisher": "TJ Holowaychuk",
|
|
1361
|
+
"email": "tj@vision-media.ca",
|
|
1362
|
+
"url": "http://tjholowaychuk.com",
|
|
1363
|
+
"path": "/home/uiprgl/server/node_modules/cookie-parser",
|
|
1364
|
+
"licenseFile": "/home/uiprgl/server/node_modules/cookie-parser/LICENSE"
|
|
1365
|
+
},
|
|
1366
|
+
"cookie-signature@1.0.6": {
|
|
1367
|
+
"licenses": "MIT",
|
|
1368
|
+
"repository": "https://github.com/visionmedia/node-cookie-signature",
|
|
1369
|
+
"publisher": "TJ Holowaychuk",
|
|
1370
|
+
"email": "tj@learnboost.com",
|
|
1371
|
+
"path": "/home/uiprgl/server/node_modules/cookie-signature",
|
|
1372
|
+
"licenseFile": "/home/uiprgl/server/node_modules/cookie-signature/Readme.md"
|
|
1373
|
+
},
|
|
1374
|
+
"cookie@0.4.0": {
|
|
1375
|
+
"licenses": "MIT",
|
|
1376
|
+
"repository": "https://github.com/jshttp/cookie",
|
|
1377
|
+
"publisher": "Roman Shtylman",
|
|
1378
|
+
"email": "shtylman@gmail.com",
|
|
1379
|
+
"path": "/home/uiprgl/server/node_modules/cookie",
|
|
1380
|
+
"licenseFile": "/home/uiprgl/server/node_modules/cookie/LICENSE"
|
|
1381
|
+
},
|
|
1382
|
+
"cookie@0.4.1": {
|
|
1383
|
+
"licenses": "MIT",
|
|
1384
|
+
"repository": "https://github.com/jshttp/cookie",
|
|
1385
|
+
"publisher": "Roman Shtylman",
|
|
1386
|
+
"email": "shtylman@gmail.com",
|
|
1387
|
+
"path": "/home/uiprgl/server/node_modules/engine.io/node_modules/cookie",
|
|
1388
|
+
"licenseFile": "/home/uiprgl/server/node_modules/engine.io/node_modules/cookie/LICENSE"
|
|
1389
|
+
},
|
|
1390
|
+
"core-util-is@1.0.3": {
|
|
1391
|
+
"licenses": "MIT",
|
|
1392
|
+
"repository": "https://github.com/isaacs/core-util-is",
|
|
1393
|
+
"publisher": "Isaac Z. Schlueter",
|
|
1394
|
+
"email": "i@izs.me",
|
|
1395
|
+
"url": "http://blog.izs.me/",
|
|
1396
|
+
"path": "/home/uiprgl/server/node_modules/core-util-is",
|
|
1397
|
+
"licenseFile": "/home/uiprgl/server/node_modules/core-util-is/LICENSE"
|
|
1398
|
+
},
|
|
1399
|
+
"cors@2.8.5": {
|
|
1400
|
+
"licenses": "MIT",
|
|
1401
|
+
"repository": "https://github.com/expressjs/cors",
|
|
1402
|
+
"publisher": "Troy Goode",
|
|
1403
|
+
"email": "troygoode@gmail.com",
|
|
1404
|
+
"url": "https://github.com/troygoode/",
|
|
1405
|
+
"path": "/home/uiprgl/server/node_modules/cors",
|
|
1406
|
+
"licenseFile": "/home/uiprgl/server/node_modules/cors/LICENSE"
|
|
1407
|
+
},
|
|
1408
|
+
"cross-spawn@7.0.3": {
|
|
1409
|
+
"licenses": "MIT",
|
|
1410
|
+
"repository": "https://github.com/moxystudio/node-cross-spawn",
|
|
1411
|
+
"publisher": "André Cruz",
|
|
1412
|
+
"email": "andre@moxy.studio",
|
|
1413
|
+
"path": "/home/uiprgl/server/node_modules/cross-spawn",
|
|
1414
|
+
"licenseFile": "/home/uiprgl/server/node_modules/cross-spawn/LICENSE"
|
|
1415
|
+
},
|
|
1416
|
+
"csvtojson@2.0.10": {
|
|
1417
|
+
"licenses": "MIT",
|
|
1418
|
+
"repository": "https://github.com/Keyang/node-csvtojson",
|
|
1419
|
+
"publisher": "Keyang Xiang",
|
|
1420
|
+
"email": "keyang.xiang@gmail.com",
|
|
1421
|
+
"path": "/home/uiprgl/server/node_modules/csvtojson",
|
|
1422
|
+
"licenseFile": "/home/uiprgl/server/node_modules/csvtojson/LICENSE"
|
|
1423
|
+
},
|
|
1424
|
+
"debug@2.6.9": {
|
|
1425
|
+
"licenses": "MIT",
|
|
1426
|
+
"repository": "https://github.com/visionmedia/debug",
|
|
1427
|
+
"publisher": "TJ Holowaychuk",
|
|
1428
|
+
"email": "tj@vision-media.ca",
|
|
1429
|
+
"path": "/home/uiprgl/server/node_modules/debug",
|
|
1430
|
+
"licenseFile": "/home/uiprgl/server/node_modules/debug/LICENSE"
|
|
1431
|
+
},
|
|
1432
|
+
"debug@4.3.1": {
|
|
1433
|
+
"licenses": "MIT",
|
|
1434
|
+
"repository": "https://github.com/visionmedia/debug",
|
|
1435
|
+
"publisher": "TJ Holowaychuk",
|
|
1436
|
+
"email": "tj@vision-media.ca",
|
|
1437
|
+
"path": "/home/uiprgl/server/node_modules/socket.io/node_modules/debug",
|
|
1438
|
+
"licenseFile": "/home/uiprgl/server/node_modules/socket.io/node_modules/debug/LICENSE"
|
|
1439
|
+
},
|
|
1440
|
+
"debug@4.3.2": {
|
|
1441
|
+
"licenses": "MIT",
|
|
1442
|
+
"repository": "https://github.com/visionmedia/debug",
|
|
1443
|
+
"publisher": "TJ Holowaychuk",
|
|
1444
|
+
"email": "tj@vision-media.ca",
|
|
1445
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/debug",
|
|
1446
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/debug/LICENSE"
|
|
1447
|
+
},
|
|
1448
|
+
"debuglog@1.0.1": {
|
|
1449
|
+
"licenses": "MIT",
|
|
1450
|
+
"repository": "https://github.com/sam-github/node-debuglog",
|
|
1451
|
+
"publisher": "Sam Roberts",
|
|
1452
|
+
"email": "sam@strongloop.com",
|
|
1453
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/debuglog",
|
|
1454
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/debuglog/LICENSE"
|
|
1455
|
+
},
|
|
1456
|
+
"decompress-response@6.0.0": {
|
|
1457
|
+
"licenses": "MIT",
|
|
1458
|
+
"repository": "https://github.com/sindresorhus/decompress-response",
|
|
1459
|
+
"publisher": "Sindre Sorhus",
|
|
1460
|
+
"email": "sindresorhus@gmail.com",
|
|
1461
|
+
"url": "https://sindresorhus.com",
|
|
1462
|
+
"path": "/home/uiprgl/server/node_modules/decompress-response",
|
|
1463
|
+
"licenseFile": "/home/uiprgl/server/node_modules/decompress-response/license"
|
|
1464
|
+
},
|
|
1465
|
+
"deep-extend@0.6.0": {
|
|
1466
|
+
"licenses": "MIT",
|
|
1467
|
+
"repository": "https://github.com/unclechu/node-deep-extend",
|
|
1468
|
+
"publisher": "Viacheslav Lotsmanov",
|
|
1469
|
+
"email": "lotsmanov89@gmail.com",
|
|
1470
|
+
"path": "/home/uiprgl/server/node_modules/deep-extend",
|
|
1471
|
+
"licenseFile": "/home/uiprgl/server/node_modules/deep-extend/LICENSE"
|
|
1472
|
+
},
|
|
1473
|
+
"defaults@1.0.3": {
|
|
1474
|
+
"licenses": "MIT",
|
|
1475
|
+
"repository": "https://github.com/tmpvar/defaults",
|
|
1476
|
+
"publisher": "Elijah Insua",
|
|
1477
|
+
"email": "tmpvar@gmail.com",
|
|
1478
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/defaults",
|
|
1479
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/defaults/LICENSE"
|
|
1480
|
+
},
|
|
1481
|
+
"delegates@1.0.0": {
|
|
1482
|
+
"licenses": "MIT",
|
|
1483
|
+
"repository": "https://github.com/visionmedia/node-delegates",
|
|
1484
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/delegates",
|
|
1485
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/delegates/License"
|
|
1486
|
+
},
|
|
1487
|
+
"depd@1.1.2": {
|
|
1488
|
+
"licenses": "MIT",
|
|
1489
|
+
"repository": "https://github.com/dougwilson/nodejs-depd",
|
|
1490
|
+
"publisher": "Douglas Christopher Wilson",
|
|
1491
|
+
"email": "doug@somethingdoug.com",
|
|
1492
|
+
"path": "/home/uiprgl/server/node_modules/depd",
|
|
1493
|
+
"licenseFile": "/home/uiprgl/server/node_modules/depd/LICENSE"
|
|
1494
|
+
},
|
|
1495
|
+
"destroy@1.0.4": {
|
|
1496
|
+
"licenses": "MIT",
|
|
1497
|
+
"repository": "https://github.com/stream-utils/destroy",
|
|
1498
|
+
"publisher": "Jonathan Ong",
|
|
1499
|
+
"email": "me@jongleberry.com",
|
|
1500
|
+
"url": "http://jongleberry.com",
|
|
1501
|
+
"path": "/home/uiprgl/server/node_modules/destroy",
|
|
1502
|
+
"licenseFile": "/home/uiprgl/server/node_modules/destroy/LICENSE"
|
|
1503
|
+
},
|
|
1504
|
+
"detect-libc@1.0.3": {
|
|
1505
|
+
"licenses": "Apache-2.0",
|
|
1506
|
+
"repository": "https://github.com/lovell/detect-libc",
|
|
1507
|
+
"publisher": "Lovell Fuller",
|
|
1508
|
+
"email": "npm@lovell.info",
|
|
1509
|
+
"path": "/home/uiprgl/server/node_modules/detect-libc",
|
|
1510
|
+
"licenseFile": "/home/uiprgl/server/node_modules/detect-libc/LICENSE"
|
|
1511
|
+
},
|
|
1512
|
+
"dezalgo@1.0.3": {
|
|
1513
|
+
"licenses": "ISC",
|
|
1514
|
+
"repository": "https://github.com/npm/dezalgo",
|
|
1515
|
+
"publisher": "Isaac Z. Schlueter",
|
|
1516
|
+
"email": "i@izs.me",
|
|
1517
|
+
"url": "http://blog.izs.me/",
|
|
1518
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/dezalgo",
|
|
1519
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/dezalgo/LICENSE"
|
|
1520
|
+
},
|
|
1521
|
+
"diff@5.0.0": {
|
|
1522
|
+
"licenses": "BSD-3-Clause",
|
|
1523
|
+
"repository": "https://github.com/kpdecker/jsdiff",
|
|
1524
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/diff",
|
|
1525
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/diff/LICENSE"
|
|
1526
|
+
},
|
|
1527
|
+
"dotenv@10.0.0": {
|
|
1528
|
+
"licenses": "BSD-2-Clause",
|
|
1529
|
+
"repository": "https://github.com/motdotla/dotenv",
|
|
1530
|
+
"path": "/home/uiprgl/server/node_modules/dotenv",
|
|
1531
|
+
"licenseFile": "/home/uiprgl/server/node_modules/dotenv/LICENSE"
|
|
1532
|
+
},
|
|
1533
|
+
"duplexer@0.1.2": {
|
|
1534
|
+
"licenses": "MIT",
|
|
1535
|
+
"repository": "https://github.com/Raynos/duplexer",
|
|
1536
|
+
"publisher": "Raynos",
|
|
1537
|
+
"email": "raynos2@gmail.com",
|
|
1538
|
+
"path": "/home/uiprgl/server/node_modules/duplexer",
|
|
1539
|
+
"licenseFile": "/home/uiprgl/server/node_modules/duplexer/LICENCE"
|
|
1540
|
+
},
|
|
1541
|
+
"ee-first@1.1.1": {
|
|
1542
|
+
"licenses": "MIT",
|
|
1543
|
+
"repository": "https://github.com/jonathanong/ee-first",
|
|
1544
|
+
"publisher": "Jonathan Ong",
|
|
1545
|
+
"email": "me@jongleberry.com",
|
|
1546
|
+
"url": "http://jongleberry.com",
|
|
1547
|
+
"path": "/home/uiprgl/server/node_modules/ee-first",
|
|
1548
|
+
"licenseFile": "/home/uiprgl/server/node_modules/ee-first/LICENSE"
|
|
1549
|
+
},
|
|
1550
|
+
"emoji-regex@8.0.0": {
|
|
1551
|
+
"licenses": "MIT",
|
|
1552
|
+
"repository": "https://github.com/mathiasbynens/emoji-regex",
|
|
1553
|
+
"publisher": "Mathias Bynens",
|
|
1554
|
+
"url": "https://mathiasbynens.be/",
|
|
1555
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/emoji-regex",
|
|
1556
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/emoji-regex/LICENSE-MIT.txt"
|
|
1557
|
+
},
|
|
1558
|
+
"encodeurl@1.0.2": {
|
|
1559
|
+
"licenses": "MIT",
|
|
1560
|
+
"repository": "https://github.com/pillarjs/encodeurl",
|
|
1561
|
+
"path": "/home/uiprgl/server/node_modules/encodeurl",
|
|
1562
|
+
"licenseFile": "/home/uiprgl/server/node_modules/encodeurl/LICENSE"
|
|
1563
|
+
},
|
|
1564
|
+
"encoding@0.1.13": {
|
|
1565
|
+
"licenses": "MIT",
|
|
1566
|
+
"repository": "https://github.com/andris9/encoding",
|
|
1567
|
+
"publisher": "Andris Reinman",
|
|
1568
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/encoding",
|
|
1569
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/encoding/LICENSE"
|
|
1570
|
+
},
|
|
1571
|
+
"end-of-stream@1.4.4": {
|
|
1572
|
+
"licenses": "MIT",
|
|
1573
|
+
"repository": "https://github.com/mafintosh/end-of-stream",
|
|
1574
|
+
"publisher": "Mathias Buus",
|
|
1575
|
+
"email": "mathiasbuus@gmail.com",
|
|
1576
|
+
"path": "/home/uiprgl/server/node_modules/end-of-stream",
|
|
1577
|
+
"licenseFile": "/home/uiprgl/server/node_modules/end-of-stream/LICENSE"
|
|
1578
|
+
},
|
|
1579
|
+
"engine.io-parser@4.0.2": {
|
|
1580
|
+
"licenses": "MIT",
|
|
1581
|
+
"repository": "https://github.com/socketio/engine.io-parser",
|
|
1582
|
+
"path": "/home/uiprgl/server/node_modules/engine.io-parser",
|
|
1583
|
+
"licenseFile": "/home/uiprgl/server/node_modules/engine.io-parser/LICENSE"
|
|
1584
|
+
},
|
|
1585
|
+
"engine.io@4.1.1": {
|
|
1586
|
+
"licenses": "MIT",
|
|
1587
|
+
"repository": "https://github.com/socketio/engine.io",
|
|
1588
|
+
"publisher": "Guillermo Rauch",
|
|
1589
|
+
"email": "guillermo@learnboost.com",
|
|
1590
|
+
"path": "/home/uiprgl/server/node_modules/engine.io",
|
|
1591
|
+
"licenseFile": "/home/uiprgl/server/node_modules/engine.io/LICENSE"
|
|
1592
|
+
},
|
|
1593
|
+
"entities@2.2.0": {
|
|
1594
|
+
"licenses": "BSD-2-Clause",
|
|
1595
|
+
"repository": "https://github.com/fb55/entities",
|
|
1596
|
+
"publisher": "Felix Boehm",
|
|
1597
|
+
"email": "me@feedic.com",
|
|
1598
|
+
"path": "/home/uiprgl/server/node_modules/entities",
|
|
1599
|
+
"licenseFile": "/home/uiprgl/server/node_modules/entities/LICENSE"
|
|
1600
|
+
},
|
|
1601
|
+
"env-paths@2.2.1": {
|
|
1602
|
+
"licenses": "MIT",
|
|
1603
|
+
"repository": "https://github.com/sindresorhus/env-paths",
|
|
1604
|
+
"publisher": "Sindre Sorhus",
|
|
1605
|
+
"email": "sindresorhus@gmail.com",
|
|
1606
|
+
"url": "sindresorhus.com",
|
|
1607
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/env-paths",
|
|
1608
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/env-paths/license"
|
|
1609
|
+
},
|
|
1610
|
+
"err-code@2.0.3": {
|
|
1611
|
+
"licenses": "MIT",
|
|
1612
|
+
"repository": "https://github.com/IndigoUnited/js-err-code",
|
|
1613
|
+
"publisher": "IndigoUnited",
|
|
1614
|
+
"email": "hello@indigounited.com",
|
|
1615
|
+
"url": "http://indigounited.com",
|
|
1616
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/err-code"
|
|
1617
|
+
},
|
|
1618
|
+
"escape-html@1.0.3": {
|
|
1619
|
+
"licenses": "MIT",
|
|
1620
|
+
"repository": "https://github.com/component/escape-html",
|
|
1621
|
+
"path": "/home/uiprgl/server/node_modules/escape-html",
|
|
1622
|
+
"licenseFile": "/home/uiprgl/server/node_modules/escape-html/LICENSE"
|
|
1623
|
+
},
|
|
1624
|
+
"etag@1.8.1": {
|
|
1625
|
+
"licenses": "MIT",
|
|
1626
|
+
"repository": "https://github.com/jshttp/etag",
|
|
1627
|
+
"path": "/home/uiprgl/server/node_modules/etag",
|
|
1628
|
+
"licenseFile": "/home/uiprgl/server/node_modules/etag/LICENSE"
|
|
1629
|
+
},
|
|
1630
|
+
"event-stream@3.3.4": {
|
|
1631
|
+
"licenses": "MIT",
|
|
1632
|
+
"repository": "https://github.com/dominictarr/event-stream",
|
|
1633
|
+
"publisher": "Dominic Tarr",
|
|
1634
|
+
"email": "dominic.tarr@gmail.com",
|
|
1635
|
+
"url": "http://bit.ly/dominictarr",
|
|
1636
|
+
"path": "/home/uiprgl/server/node_modules/event-stream",
|
|
1637
|
+
"licenseFile": "/home/uiprgl/server/node_modules/event-stream/LICENCE"
|
|
1638
|
+
},
|
|
1639
|
+
"events@1.1.1": {
|
|
1640
|
+
"licenses": "MIT",
|
|
1641
|
+
"repository": "https://github.com/Gozala/events",
|
|
1642
|
+
"publisher": "Irakli Gozalishvili",
|
|
1643
|
+
"email": "rfobic@gmail.com",
|
|
1644
|
+
"url": "http://jeditoolkit.com",
|
|
1645
|
+
"path": "/home/uiprgl/server/node_modules/events",
|
|
1646
|
+
"licenseFile": "/home/uiprgl/server/node_modules/events/LICENSE"
|
|
1647
|
+
},
|
|
1648
|
+
"expand-template@2.0.3": {
|
|
1649
|
+
"licenses": "(MIT OR WTFPL)",
|
|
1650
|
+
"repository": "https://github.com/ralphtheninja/expand-template",
|
|
1651
|
+
"publisher": "LM",
|
|
1652
|
+
"email": "ralphtheninja@riseup.net",
|
|
1653
|
+
"path": "/home/uiprgl/server/node_modules/expand-template",
|
|
1654
|
+
"licenseFile": "/home/uiprgl/server/node_modules/expand-template/LICENSE"
|
|
1655
|
+
},
|
|
1656
|
+
"express@4.17.1": {
|
|
1657
|
+
"licenses": "MIT",
|
|
1658
|
+
"repository": "https://github.com/expressjs/express",
|
|
1659
|
+
"publisher": "TJ Holowaychuk",
|
|
1660
|
+
"email": "tj@vision-media.ca",
|
|
1661
|
+
"path": "/home/uiprgl/server/node_modules/express",
|
|
1662
|
+
"licenseFile": "/home/uiprgl/server/node_modules/express/LICENSE"
|
|
1663
|
+
},
|
|
1664
|
+
"fast-xml-parser@3.19.0": {
|
|
1665
|
+
"licenses": "MIT",
|
|
1666
|
+
"repository": "https://github.com/NaturalIntelligence/fast-xml-parser",
|
|
1667
|
+
"publisher": "Amit Gupta",
|
|
1668
|
+
"url": "https://amitkumargupta.work/",
|
|
1669
|
+
"path": "/home/uiprgl/server/node_modules/fast-xml-parser",
|
|
1670
|
+
"licenseFile": "/home/uiprgl/server/node_modules/fast-xml-parser/LICENSE"
|
|
1671
|
+
},
|
|
1672
|
+
"fastest-levenshtein@1.0.12": {
|
|
1673
|
+
"licenses": "MIT",
|
|
1674
|
+
"repository": "https://github.com/ka-weihe/fastest-levenshtein",
|
|
1675
|
+
"publisher": "Kasper U. Weihe",
|
|
1676
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/fastest-levenshtein",
|
|
1677
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/fastest-levenshtein/LICENSE.md"
|
|
1678
|
+
},
|
|
1679
|
+
"file-type@16.5.3": {
|
|
1680
|
+
"licenses": "MIT",
|
|
1681
|
+
"repository": "https://github.com/sindresorhus/file-type",
|
|
1682
|
+
"publisher": "Sindre Sorhus",
|
|
1683
|
+
"email": "sindresorhus@gmail.com",
|
|
1684
|
+
"url": "https://sindresorhus.com",
|
|
1685
|
+
"path": "/home/uiprgl/server/node_modules/file-type",
|
|
1686
|
+
"licenseFile": "/home/uiprgl/server/node_modules/file-type/license"
|
|
1687
|
+
},
|
|
1688
|
+
"finalhandler@1.1.2": {
|
|
1689
|
+
"licenses": "MIT",
|
|
1690
|
+
"repository": "https://github.com/pillarjs/finalhandler",
|
|
1691
|
+
"publisher": "Douglas Christopher Wilson",
|
|
1692
|
+
"email": "doug@somethingdoug.com",
|
|
1693
|
+
"path": "/home/uiprgl/server/node_modules/finalhandler",
|
|
1694
|
+
"licenseFile": "/home/uiprgl/server/node_modules/finalhandler/LICENSE"
|
|
1695
|
+
},
|
|
1696
|
+
"forwarded@0.1.2": {
|
|
1697
|
+
"licenses": "MIT",
|
|
1698
|
+
"repository": "https://github.com/jshttp/forwarded",
|
|
1699
|
+
"path": "/home/uiprgl/server/node_modules/forwarded",
|
|
1700
|
+
"licenseFile": "/home/uiprgl/server/node_modules/forwarded/LICENSE"
|
|
1701
|
+
},
|
|
1702
|
+
"fresh@0.5.2": {
|
|
1703
|
+
"licenses": "MIT",
|
|
1704
|
+
"repository": "https://github.com/jshttp/fresh",
|
|
1705
|
+
"publisher": "TJ Holowaychuk",
|
|
1706
|
+
"email": "tj@vision-media.ca",
|
|
1707
|
+
"url": "http://tjholowaychuk.com",
|
|
1708
|
+
"path": "/home/uiprgl/server/node_modules/fresh",
|
|
1709
|
+
"licenseFile": "/home/uiprgl/server/node_modules/fresh/LICENSE"
|
|
1710
|
+
},
|
|
1711
|
+
"from@0.1.7": {
|
|
1712
|
+
"licenses": "MIT",
|
|
1713
|
+
"repository": "https://github.com/dominictarr/from",
|
|
1714
|
+
"publisher": "Dominic Tarr",
|
|
1715
|
+
"email": "dominic.tarr@gmail.com",
|
|
1716
|
+
"url": "dominictarr.com",
|
|
1717
|
+
"path": "/home/uiprgl/server/node_modules/from",
|
|
1718
|
+
"licenseFile": "/home/uiprgl/server/node_modules/from/LICENSE.APACHE2"
|
|
1719
|
+
},
|
|
1720
|
+
"fs-constants@1.0.0": {
|
|
1721
|
+
"licenses": "MIT",
|
|
1722
|
+
"repository": "https://github.com/mafintosh/fs-constants",
|
|
1723
|
+
"publisher": "Mathias Buus",
|
|
1724
|
+
"url": "@mafintosh",
|
|
1725
|
+
"path": "/home/uiprgl/server/node_modules/fs-constants",
|
|
1726
|
+
"licenseFile": "/home/uiprgl/server/node_modules/fs-constants/LICENSE"
|
|
1727
|
+
},
|
|
1728
|
+
"fs-minipass@2.1.0": {
|
|
1729
|
+
"licenses": "ISC",
|
|
1730
|
+
"repository": "https://github.com/npm/fs-minipass",
|
|
1731
|
+
"publisher": "Isaac Z. Schlueter",
|
|
1732
|
+
"email": "i@izs.me",
|
|
1733
|
+
"url": "http://blog.izs.me/",
|
|
1734
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/fs-minipass",
|
|
1735
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/fs-minipass/LICENSE"
|
|
1736
|
+
},
|
|
1737
|
+
"fs.realpath@1.0.0": {
|
|
1738
|
+
"licenses": "ISC",
|
|
1739
|
+
"repository": "https://github.com/isaacs/fs.realpath",
|
|
1740
|
+
"publisher": "Isaac Z. Schlueter",
|
|
1741
|
+
"email": "i@izs.me",
|
|
1742
|
+
"url": "http://blog.izs.me/",
|
|
1743
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/fs.realpath",
|
|
1744
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/fs.realpath/LICENSE"
|
|
1745
|
+
},
|
|
1746
|
+
"function-bind@1.1.1": {
|
|
1747
|
+
"licenses": "MIT",
|
|
1748
|
+
"repository": "https://github.com/Raynos/function-bind",
|
|
1749
|
+
"publisher": "Raynos",
|
|
1750
|
+
"email": "raynos2@gmail.com",
|
|
1751
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/function-bind",
|
|
1752
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/function-bind/LICENSE"
|
|
1753
|
+
},
|
|
1754
|
+
"gauge@2.7.4": {
|
|
1755
|
+
"licenses": "ISC",
|
|
1756
|
+
"repository": "https://github.com/iarna/gauge",
|
|
1757
|
+
"publisher": "Rebecca Turner",
|
|
1758
|
+
"email": "me@re-becca.org",
|
|
1759
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/node-gyp/node_modules/gauge",
|
|
1760
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/node-gyp/node_modules/gauge/LICENSE"
|
|
1761
|
+
},
|
|
1762
|
+
"gauge@4.0.0": {
|
|
1763
|
+
"licenses": "ISC",
|
|
1764
|
+
"repository": "https://github.com/npm/gauge",
|
|
1765
|
+
"publisher": "GitHub Inc.",
|
|
1766
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/gauge",
|
|
1767
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/gauge/LICENSE.md"
|
|
1768
|
+
},
|
|
1769
|
+
"github-from-package@0.0.0": {
|
|
1770
|
+
"licenses": "MIT",
|
|
1771
|
+
"repository": "https://github.com/substack/github-from-package",
|
|
1772
|
+
"publisher": "James Halliday",
|
|
1773
|
+
"email": "mail@substack.net",
|
|
1774
|
+
"url": "http://substack.net",
|
|
1775
|
+
"path": "/home/uiprgl/server/node_modules/github-from-package",
|
|
1776
|
+
"licenseFile": "/home/uiprgl/server/node_modules/github-from-package/LICENSE"
|
|
1777
|
+
},
|
|
1778
|
+
"glob@7.2.0": {
|
|
1779
|
+
"licenses": "ISC",
|
|
1780
|
+
"repository": "https://github.com/isaacs/node-glob",
|
|
1781
|
+
"publisher": "Isaac Z. Schlueter",
|
|
1782
|
+
"email": "i@izs.me",
|
|
1783
|
+
"url": "http://blog.izs.me/",
|
|
1784
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/glob",
|
|
1785
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/glob/LICENSE"
|
|
1786
|
+
},
|
|
1787
|
+
"graceful-fs@4.2.8": {
|
|
1788
|
+
"licenses": "ISC",
|
|
1789
|
+
"repository": "https://github.com/isaacs/node-graceful-fs",
|
|
1790
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/graceful-fs",
|
|
1791
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/graceful-fs/LICENSE"
|
|
1792
|
+
},
|
|
1793
|
+
"has-flag@4.0.0": {
|
|
1794
|
+
"licenses": "MIT",
|
|
1795
|
+
"repository": "https://github.com/sindresorhus/has-flag",
|
|
1796
|
+
"publisher": "Sindre Sorhus",
|
|
1797
|
+
"email": "sindresorhus@gmail.com",
|
|
1798
|
+
"url": "sindresorhus.com",
|
|
1799
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/has-flag",
|
|
1800
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/has-flag/license"
|
|
1801
|
+
},
|
|
1802
|
+
"has-unicode@2.0.1": {
|
|
1803
|
+
"licenses": "ISC",
|
|
1804
|
+
"repository": "https://github.com/iarna/has-unicode",
|
|
1805
|
+
"publisher": "Rebecca Turner",
|
|
1806
|
+
"email": "me@re-becca.org",
|
|
1807
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/has-unicode",
|
|
1808
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/has-unicode/LICENSE"
|
|
1809
|
+
},
|
|
1810
|
+
"has@1.0.3": {
|
|
1811
|
+
"licenses": "MIT",
|
|
1812
|
+
"repository": "https://github.com/tarruda/has",
|
|
1813
|
+
"publisher": "Thiago de Arruda",
|
|
1814
|
+
"email": "tpadilha84@gmail.com",
|
|
1815
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/has",
|
|
1816
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/has/LICENSE-MIT"
|
|
1817
|
+
},
|
|
1818
|
+
"hosted-git-info@4.0.2": {
|
|
1819
|
+
"licenses": "ISC",
|
|
1820
|
+
"repository": "https://github.com/npm/hosted-git-info",
|
|
1821
|
+
"publisher": "Rebecca Turner",
|
|
1822
|
+
"email": "me@re-becca.org",
|
|
1823
|
+
"url": "http://re-becca.org",
|
|
1824
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/hosted-git-info",
|
|
1825
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/hosted-git-info/LICENSE"
|
|
1826
|
+
},
|
|
1827
|
+
"http-cache-semantics@4.1.0": {
|
|
1828
|
+
"licenses": "BSD-2-Clause",
|
|
1829
|
+
"repository": "https://github.com/kornelski/http-cache-semantics",
|
|
1830
|
+
"publisher": "Kornel Lesiński",
|
|
1831
|
+
"email": "kornel@geekhood.net",
|
|
1832
|
+
"url": "https://kornel.ski/",
|
|
1833
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/http-cache-semantics",
|
|
1834
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/http-cache-semantics/LICENSE"
|
|
1835
|
+
},
|
|
1836
|
+
"http-errors@1.7.2": {
|
|
1837
|
+
"licenses": "MIT",
|
|
1838
|
+
"repository": "https://github.com/jshttp/http-errors",
|
|
1839
|
+
"publisher": "Jonathan Ong",
|
|
1840
|
+
"email": "me@jongleberry.com",
|
|
1841
|
+
"url": "http://jongleberry.com",
|
|
1842
|
+
"path": "/home/uiprgl/server/node_modules/http-errors",
|
|
1843
|
+
"licenseFile": "/home/uiprgl/server/node_modules/http-errors/LICENSE"
|
|
1844
|
+
},
|
|
1845
|
+
"http-proxy-agent@4.0.1": {
|
|
1846
|
+
"licenses": "MIT",
|
|
1847
|
+
"repository": "https://github.com/TooTallNate/node-http-proxy-agent",
|
|
1848
|
+
"publisher": "Nathan Rajlich",
|
|
1849
|
+
"email": "nathan@tootallnate.net",
|
|
1850
|
+
"url": "http://n8.io/",
|
|
1851
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/http-proxy-agent"
|
|
1852
|
+
},
|
|
1853
|
+
"https-proxy-agent@5.0.0": {
|
|
1854
|
+
"licenses": "MIT",
|
|
1855
|
+
"repository": "https://github.com/TooTallNate/node-https-proxy-agent",
|
|
1856
|
+
"publisher": "Nathan Rajlich",
|
|
1857
|
+
"email": "nathan@tootallnate.net",
|
|
1858
|
+
"url": "http://n8.io/",
|
|
1859
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/https-proxy-agent"
|
|
1860
|
+
},
|
|
1861
|
+
"humanize-ms@1.2.1": {
|
|
1862
|
+
"licenses": "MIT",
|
|
1863
|
+
"repository": "https://github.com/node-modules/humanize-ms",
|
|
1864
|
+
"publisher": "dead-horse",
|
|
1865
|
+
"email": "dead_horse@qq.com",
|
|
1866
|
+
"url": "http://deadhorse.me",
|
|
1867
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/humanize-ms",
|
|
1868
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/humanize-ms/LICENSE"
|
|
1869
|
+
},
|
|
1870
|
+
"i@0.3.7": {
|
|
1871
|
+
"licenses": "MIT",
|
|
1872
|
+
"repository": "https://github.com/pksunkara/inflect",
|
|
1873
|
+
"publisher": "Pavan Kumar Sunkara",
|
|
1874
|
+
"email": "pavan.sss1991@gmail.com",
|
|
1875
|
+
"url": "pksunkara.github.com",
|
|
1876
|
+
"path": "/home/uiprgl/server/node_modules/i",
|
|
1877
|
+
"licenseFile": "/home/uiprgl/server/node_modules/i/LICENSE"
|
|
1878
|
+
},
|
|
1879
|
+
"iconv-lite@0.4.24": {
|
|
1880
|
+
"licenses": "MIT",
|
|
1881
|
+
"repository": "https://github.com/ashtuchkin/iconv-lite",
|
|
1882
|
+
"publisher": "Alexander Shtuchkin",
|
|
1883
|
+
"email": "ashtuchkin@gmail.com",
|
|
1884
|
+
"path": "/home/uiprgl/server/node_modules/iconv-lite",
|
|
1885
|
+
"licenseFile": "/home/uiprgl/server/node_modules/iconv-lite/LICENSE"
|
|
1886
|
+
},
|
|
1887
|
+
"iconv-lite@0.6.3": {
|
|
1888
|
+
"licenses": "MIT",
|
|
1889
|
+
"repository": "https://github.com/ashtuchkin/iconv-lite",
|
|
1890
|
+
"publisher": "Alexander Shtuchkin",
|
|
1891
|
+
"email": "ashtuchkin@gmail.com",
|
|
1892
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/iconv-lite",
|
|
1893
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/iconv-lite/LICENSE"
|
|
1894
|
+
},
|
|
1895
|
+
"ieee754@1.1.13": {
|
|
1896
|
+
"licenses": "BSD-3-Clause",
|
|
1897
|
+
"repository": "https://github.com/feross/ieee754",
|
|
1898
|
+
"publisher": "Feross Aboukhadijeh",
|
|
1899
|
+
"email": "feross@feross.org",
|
|
1900
|
+
"url": "http://feross.org",
|
|
1901
|
+
"path": "/home/uiprgl/server/node_modules/ieee754",
|
|
1902
|
+
"licenseFile": "/home/uiprgl/server/node_modules/ieee754/LICENSE"
|
|
1903
|
+
},
|
|
1904
|
+
"ieee754@1.2.1": {
|
|
1905
|
+
"licenses": "BSD-3-Clause",
|
|
1906
|
+
"repository": "https://github.com/feross/ieee754",
|
|
1907
|
+
"publisher": "Feross Aboukhadijeh",
|
|
1908
|
+
"email": "feross@feross.org",
|
|
1909
|
+
"url": "https://feross.org",
|
|
1910
|
+
"path": "/home/uiprgl/server/node_modules/token-types/node_modules/ieee754",
|
|
1911
|
+
"licenseFile": "/home/uiprgl/server/node_modules/token-types/node_modules/ieee754/LICENSE"
|
|
1912
|
+
},
|
|
1913
|
+
"ignore-walk@4.0.1": {
|
|
1914
|
+
"licenses": "ISC",
|
|
1915
|
+
"repository": "https://github.com/isaacs/ignore-walk",
|
|
1916
|
+
"publisher": "Isaac Z. Schlueter",
|
|
1917
|
+
"email": "i@izs.me",
|
|
1918
|
+
"url": "http://blog.izs.me/",
|
|
1919
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/ignore-walk",
|
|
1920
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/ignore-walk/LICENSE"
|
|
1921
|
+
},
|
|
1922
|
+
"imurmurhash@0.1.4": {
|
|
1923
|
+
"licenses": "MIT",
|
|
1924
|
+
"repository": "https://github.com/jensyt/imurmurhash-js",
|
|
1925
|
+
"publisher": "Jens Taylor",
|
|
1926
|
+
"email": "jensyt@gmail.com",
|
|
1927
|
+
"url": "https://github.com/homebrewing",
|
|
1928
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/imurmurhash"
|
|
1929
|
+
},
|
|
1930
|
+
"indent-string@4.0.0": {
|
|
1931
|
+
"licenses": "MIT",
|
|
1932
|
+
"repository": "https://github.com/sindresorhus/indent-string",
|
|
1933
|
+
"publisher": "Sindre Sorhus",
|
|
1934
|
+
"email": "sindresorhus@gmail.com",
|
|
1935
|
+
"url": "sindresorhus.com",
|
|
1936
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/indent-string",
|
|
1937
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/indent-string/license"
|
|
1938
|
+
},
|
|
1939
|
+
"infer-owner@1.0.4": {
|
|
1940
|
+
"licenses": "ISC",
|
|
1941
|
+
"repository": "https://github.com/npm/infer-owner",
|
|
1942
|
+
"publisher": "Isaac Z. Schlueter",
|
|
1943
|
+
"email": "i@izs.me",
|
|
1944
|
+
"url": "https://izs.me",
|
|
1945
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/infer-owner",
|
|
1946
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/infer-owner/LICENSE"
|
|
1947
|
+
},
|
|
1948
|
+
"inflight@1.0.6": {
|
|
1949
|
+
"licenses": "ISC",
|
|
1950
|
+
"repository": "https://github.com/npm/inflight",
|
|
1951
|
+
"publisher": "Isaac Z. Schlueter",
|
|
1952
|
+
"email": "i@izs.me",
|
|
1953
|
+
"url": "http://blog.izs.me/",
|
|
1954
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/inflight",
|
|
1955
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/inflight/LICENSE"
|
|
1956
|
+
},
|
|
1957
|
+
"inherits@2.0.3": {
|
|
1958
|
+
"licenses": "ISC",
|
|
1959
|
+
"repository": "https://github.com/isaacs/inherits",
|
|
1960
|
+
"path": "/home/uiprgl/server/node_modules/inherits",
|
|
1961
|
+
"licenseFile": "/home/uiprgl/server/node_modules/inherits/LICENSE"
|
|
1962
|
+
},
|
|
1963
|
+
"inherits@2.0.4": {
|
|
1964
|
+
"licenses": "ISC",
|
|
1965
|
+
"repository": "https://github.com/isaacs/inherits",
|
|
1966
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/inherits",
|
|
1967
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/inherits/LICENSE"
|
|
1968
|
+
},
|
|
1969
|
+
"ini@1.3.8": {
|
|
1970
|
+
"licenses": "ISC",
|
|
1971
|
+
"repository": "https://github.com/isaacs/ini",
|
|
1972
|
+
"publisher": "Isaac Z. Schlueter",
|
|
1973
|
+
"email": "i@izs.me",
|
|
1974
|
+
"url": "http://blog.izs.me/",
|
|
1975
|
+
"path": "/home/uiprgl/server/node_modules/ini",
|
|
1976
|
+
"licenseFile": "/home/uiprgl/server/node_modules/ini/LICENSE"
|
|
1977
|
+
},
|
|
1978
|
+
"ini@2.0.0": {
|
|
1979
|
+
"licenses": "ISC",
|
|
1980
|
+
"repository": "https://github.com/isaacs/ini",
|
|
1981
|
+
"publisher": "Isaac Z. Schlueter",
|
|
1982
|
+
"email": "i@izs.me",
|
|
1983
|
+
"url": "http://blog.izs.me/",
|
|
1984
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/ini",
|
|
1985
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/ini/LICENSE"
|
|
1986
|
+
},
|
|
1987
|
+
"init-package-json@2.0.5": {
|
|
1988
|
+
"licenses": "ISC",
|
|
1989
|
+
"repository": "https://github.com/npm/init-package-json",
|
|
1990
|
+
"publisher": "GitHub Inc.",
|
|
1991
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/init-package-json",
|
|
1992
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/init-package-json/LICENSE.md"
|
|
1993
|
+
},
|
|
1994
|
+
"ip-regex@4.3.0": {
|
|
1995
|
+
"licenses": "MIT",
|
|
1996
|
+
"repository": "https://github.com/sindresorhus/ip-regex",
|
|
1997
|
+
"publisher": "Sindre Sorhus",
|
|
1998
|
+
"email": "sindresorhus@gmail.com",
|
|
1999
|
+
"url": "sindresorhus.com",
|
|
2000
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/ip-regex",
|
|
2001
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/ip-regex/license"
|
|
2002
|
+
},
|
|
2003
|
+
"ip@1.1.5": {
|
|
2004
|
+
"licenses": "MIT",
|
|
2005
|
+
"repository": "https://github.com/indutny/node-ip",
|
|
2006
|
+
"publisher": "Fedor Indutny",
|
|
2007
|
+
"email": "fedor@indutny.com",
|
|
2008
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/ip"
|
|
2009
|
+
},
|
|
2010
|
+
"ipaddr.js@1.9.1": {
|
|
2011
|
+
"licenses": "MIT",
|
|
2012
|
+
"repository": "https://github.com/whitequark/ipaddr.js",
|
|
2013
|
+
"publisher": "whitequark",
|
|
2014
|
+
"email": "whitequark@whitequark.org",
|
|
2015
|
+
"path": "/home/uiprgl/server/node_modules/ipaddr.js",
|
|
2016
|
+
"licenseFile": "/home/uiprgl/server/node_modules/ipaddr.js/LICENSE"
|
|
2017
|
+
},
|
|
2018
|
+
"is-arrayish@0.3.2": {
|
|
2019
|
+
"licenses": "MIT",
|
|
2020
|
+
"repository": "https://github.com/qix-/node-is-arrayish",
|
|
2021
|
+
"publisher": "Qix",
|
|
2022
|
+
"url": "http://github.com/qix-",
|
|
2023
|
+
"path": "/home/uiprgl/server/node_modules/is-arrayish",
|
|
2024
|
+
"licenseFile": "/home/uiprgl/server/node_modules/is-arrayish/LICENSE"
|
|
2025
|
+
},
|
|
2026
|
+
"is-cidr@4.0.2": {
|
|
2027
|
+
"licenses": "BSD-2-Clause",
|
|
2028
|
+
"repository": "https://github.com/silverwind/is-cidr",
|
|
2029
|
+
"publisher": "silverwind",
|
|
2030
|
+
"email": "me@silverwind.io",
|
|
2031
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/is-cidr",
|
|
2032
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/is-cidr/LICENSE"
|
|
2033
|
+
},
|
|
2034
|
+
"is-core-module@2.7.0": {
|
|
2035
|
+
"licenses": "MIT",
|
|
2036
|
+
"repository": "https://github.com/inspect-js/is-core-module",
|
|
2037
|
+
"publisher": "Jordan Harband",
|
|
2038
|
+
"email": "ljharb@gmail.com",
|
|
2039
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/is-core-module",
|
|
2040
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/is-core-module/LICENSE"
|
|
2041
|
+
},
|
|
2042
|
+
"is-fullwidth-code-point@1.0.0": {
|
|
2043
|
+
"licenses": "MIT",
|
|
2044
|
+
"repository": "https://github.com/sindresorhus/is-fullwidth-code-point",
|
|
2045
|
+
"publisher": "Sindre Sorhus",
|
|
2046
|
+
"email": "sindresorhus@gmail.com",
|
|
2047
|
+
"url": "sindresorhus.com",
|
|
2048
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/node-gyp/node_modules/is-fullwidth-code-point",
|
|
2049
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/node-gyp/node_modules/is-fullwidth-code-point/license"
|
|
2050
|
+
},
|
|
2051
|
+
"is-fullwidth-code-point@2.0.0": {
|
|
2052
|
+
"licenses": "MIT",
|
|
2053
|
+
"repository": "https://github.com/sindresorhus/is-fullwidth-code-point",
|
|
2054
|
+
"publisher": "Sindre Sorhus",
|
|
2055
|
+
"email": "sindresorhus@gmail.com",
|
|
2056
|
+
"url": "sindresorhus.com",
|
|
2057
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/is-fullwidth-code-point",
|
|
2058
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/is-fullwidth-code-point/license"
|
|
2059
|
+
},
|
|
2060
|
+
"is-fullwidth-code-point@3.0.0": {
|
|
2061
|
+
"licenses": "MIT",
|
|
2062
|
+
"repository": "https://github.com/sindresorhus/is-fullwidth-code-point",
|
|
2063
|
+
"publisher": "Sindre Sorhus",
|
|
2064
|
+
"email": "sindresorhus@gmail.com",
|
|
2065
|
+
"url": "sindresorhus.com",
|
|
2066
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/cli-columns/node_modules/is-fullwidth-code-point",
|
|
2067
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/cli-columns/node_modules/is-fullwidth-code-point/license"
|
|
2068
|
+
},
|
|
2069
|
+
"is-lambda@1.0.1": {
|
|
2070
|
+
"licenses": "MIT",
|
|
2071
|
+
"repository": "https://github.com/watson/is-lambda",
|
|
2072
|
+
"publisher": "Thomas Watson Steen",
|
|
2073
|
+
"email": "w@tson.dk",
|
|
2074
|
+
"url": "https://twitter.com/wa7son",
|
|
2075
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/is-lambda",
|
|
2076
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/is-lambda/LICENSE"
|
|
2077
|
+
},
|
|
2078
|
+
"is-typedarray@1.0.0": {
|
|
2079
|
+
"licenses": "MIT",
|
|
2080
|
+
"repository": "https://github.com/hughsk/is-typedarray",
|
|
2081
|
+
"publisher": "Hugh Kennedy",
|
|
2082
|
+
"email": "hughskennedy@gmail.com",
|
|
2083
|
+
"url": "http://hughsk.io/",
|
|
2084
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/is-typedarray",
|
|
2085
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/is-typedarray/LICENSE.md"
|
|
2086
|
+
},
|
|
2087
|
+
"is-utf8@0.2.1": {
|
|
2088
|
+
"licenses": "MIT",
|
|
2089
|
+
"repository": "https://github.com/wayfind/is-utf8",
|
|
2090
|
+
"publisher": "wayfind",
|
|
2091
|
+
"path": "/home/uiprgl/server/node_modules/is-utf8",
|
|
2092
|
+
"licenseFile": "/home/uiprgl/server/node_modules/is-utf8/LICENSE"
|
|
2093
|
+
},
|
|
2094
|
+
"isarray@1.0.0": {
|
|
2095
|
+
"licenses": "MIT",
|
|
2096
|
+
"repository": "https://github.com/juliangruber/isarray",
|
|
2097
|
+
"publisher": "Julian Gruber",
|
|
2098
|
+
"email": "mail@juliangruber.com",
|
|
2099
|
+
"url": "http://juliangruber.com",
|
|
2100
|
+
"path": "/home/uiprgl/server/node_modules/isarray",
|
|
2101
|
+
"licenseFile": "/home/uiprgl/server/node_modules/isarray/README.md"
|
|
2102
|
+
},
|
|
2103
|
+
"isexe@2.0.0": {
|
|
2104
|
+
"licenses": "ISC",
|
|
2105
|
+
"repository": "https://github.com/isaacs/isexe",
|
|
2106
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2107
|
+
"email": "i@izs.me",
|
|
2108
|
+
"url": "http://blog.izs.me/",
|
|
2109
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/isexe",
|
|
2110
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/isexe/LICENSE"
|
|
2111
|
+
},
|
|
2112
|
+
"jmespath@0.15.0": {
|
|
2113
|
+
"licenses": "Apache 2.0",
|
|
2114
|
+
"repository": "https://github.com/jmespath/jmespath.js",
|
|
2115
|
+
"publisher": "James Saryerwinnie",
|
|
2116
|
+
"email": "js@jamesls.com",
|
|
2117
|
+
"url": "http://jamesls.com/",
|
|
2118
|
+
"path": "/home/uiprgl/server/node_modules/jmespath",
|
|
2119
|
+
"licenseFile": "/home/uiprgl/server/node_modules/jmespath/LICENSE"
|
|
2120
|
+
},
|
|
2121
|
+
"json-parse-even-better-errors@2.3.1": {
|
|
2122
|
+
"licenses": "MIT",
|
|
2123
|
+
"repository": "https://github.com/npm/json-parse-even-better-errors",
|
|
2124
|
+
"publisher": "Kat Marchán",
|
|
2125
|
+
"email": "kzm@zkat.tech",
|
|
2126
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/json-parse-even-better-errors",
|
|
2127
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/json-parse-even-better-errors/LICENSE.md"
|
|
2128
|
+
},
|
|
2129
|
+
"json-stringify-nice@1.1.4": {
|
|
2130
|
+
"licenses": "ISC",
|
|
2131
|
+
"repository": "https://github.com/isaacs/json-stringify-nice",
|
|
2132
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2133
|
+
"email": "i@izs.me",
|
|
2134
|
+
"url": "https://izs.me",
|
|
2135
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/json-stringify-nice",
|
|
2136
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/json-stringify-nice/LICENSE"
|
|
2137
|
+
},
|
|
2138
|
+
"jsonparse@1.3.1": {
|
|
2139
|
+
"licenses": "MIT",
|
|
2140
|
+
"repository": "https://github.com/creationix/jsonparse",
|
|
2141
|
+
"publisher": "Tim Caswell",
|
|
2142
|
+
"email": "tim@creationix.com",
|
|
2143
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/jsonparse",
|
|
2144
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/jsonparse/LICENSE"
|
|
2145
|
+
},
|
|
2146
|
+
"just-diff-apply@3.0.0": {
|
|
2147
|
+
"licenses": "MIT",
|
|
2148
|
+
"repository": "https://github.com/angus-c/just",
|
|
2149
|
+
"publisher": "Angus Croll",
|
|
2150
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/just-diff-apply",
|
|
2151
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/just-diff-apply/LICENSE"
|
|
2152
|
+
},
|
|
2153
|
+
"just-diff@3.1.1": {
|
|
2154
|
+
"licenses": "MIT",
|
|
2155
|
+
"repository": "https://github.com/angus-c/just",
|
|
2156
|
+
"publisher": "Angus Croll",
|
|
2157
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/just-diff",
|
|
2158
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/just-diff/LICENSE"
|
|
2159
|
+
},
|
|
2160
|
+
"libnpmaccess@4.0.3": {
|
|
2161
|
+
"licenses": "ISC",
|
|
2162
|
+
"repository": "https://github.com/npm/libnpmaccess",
|
|
2163
|
+
"publisher": "Kat Marchán",
|
|
2164
|
+
"email": "kzm@sykosomatic.org",
|
|
2165
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmaccess",
|
|
2166
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmaccess/LICENSE"
|
|
2167
|
+
},
|
|
2168
|
+
"libnpmdiff@2.0.4": {
|
|
2169
|
+
"licenses": "ISC",
|
|
2170
|
+
"repository": "https://github.com/npm/libnpmdiff",
|
|
2171
|
+
"publisher": "GitHub Inc.",
|
|
2172
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmdiff",
|
|
2173
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmdiff/LICENSE"
|
|
2174
|
+
},
|
|
2175
|
+
"libnpmexec@3.0.1": {
|
|
2176
|
+
"licenses": "ISC",
|
|
2177
|
+
"repository": "https://github.com/npm/libnpmexec",
|
|
2178
|
+
"publisher": "GitHub Inc.",
|
|
2179
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmexec",
|
|
2180
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmexec/LICENSE"
|
|
2181
|
+
},
|
|
2182
|
+
"libnpmfund@2.0.1": {
|
|
2183
|
+
"licenses": "ISC",
|
|
2184
|
+
"repository": "https://github.com/npm/libnpmfund",
|
|
2185
|
+
"publisher": "npm Inc.",
|
|
2186
|
+
"email": "support@npmjs.com",
|
|
2187
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmfund",
|
|
2188
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmfund/LICENSE"
|
|
2189
|
+
},
|
|
2190
|
+
"libnpmhook@6.0.3": {
|
|
2191
|
+
"licenses": "ISC",
|
|
2192
|
+
"repository": "https://github.com/npm/libnpmhook",
|
|
2193
|
+
"publisher": "Kat Marchán",
|
|
2194
|
+
"email": "kzm@sykosomatic.org",
|
|
2195
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmhook",
|
|
2196
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmhook/LICENSE.md"
|
|
2197
|
+
},
|
|
2198
|
+
"libnpmorg@2.0.3": {
|
|
2199
|
+
"licenses": "ISC",
|
|
2200
|
+
"repository": "https://github.com/npm/libnpmorg",
|
|
2201
|
+
"publisher": "Kat Marchán",
|
|
2202
|
+
"email": "kzm@sykosomatic.org",
|
|
2203
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmorg",
|
|
2204
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmorg/LICENSE"
|
|
2205
|
+
},
|
|
2206
|
+
"libnpmpack@3.0.0": {
|
|
2207
|
+
"licenses": "ISC",
|
|
2208
|
+
"repository": "https://github.com/npm/libnpmpack",
|
|
2209
|
+
"publisher": "npm Inc.",
|
|
2210
|
+
"email": "support@npmjs.com",
|
|
2211
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmpack",
|
|
2212
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmpack/LICENSE"
|
|
2213
|
+
},
|
|
2214
|
+
"libnpmpublish@4.0.2": {
|
|
2215
|
+
"licenses": "ISC",
|
|
2216
|
+
"repository": "https://github.com/npm/libnpmpublish",
|
|
2217
|
+
"publisher": "npm Inc.",
|
|
2218
|
+
"email": "support@npmjs.com",
|
|
2219
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmpublish",
|
|
2220
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmpublish/LICENSE"
|
|
2221
|
+
},
|
|
2222
|
+
"libnpmsearch@3.1.2": {
|
|
2223
|
+
"licenses": "ISC",
|
|
2224
|
+
"repository": "https://github.com/npm/libnpmsearch",
|
|
2225
|
+
"publisher": "Kat Marchán",
|
|
2226
|
+
"email": "kzm@sykosomatic.org",
|
|
2227
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmsearch",
|
|
2228
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmsearch/LICENSE"
|
|
2229
|
+
},
|
|
2230
|
+
"libnpmteam@2.0.4": {
|
|
2231
|
+
"licenses": "ISC",
|
|
2232
|
+
"repository": "https://github.com/npm/libnpmteam",
|
|
2233
|
+
"publisher": "Kat Marchán",
|
|
2234
|
+
"email": "kzm@zkat.tech",
|
|
2235
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmteam",
|
|
2236
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmteam/LICENSE"
|
|
2237
|
+
},
|
|
2238
|
+
"libnpmversion@2.0.1": {
|
|
2239
|
+
"licenses": "ISC",
|
|
2240
|
+
"repository": "https://github.com/npm/libnpmversion",
|
|
2241
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2242
|
+
"email": "i@izs.me",
|
|
2243
|
+
"url": "https://izs.me",
|
|
2244
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmversion",
|
|
2245
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/libnpmversion/LICENSE"
|
|
2246
|
+
},
|
|
2247
|
+
"lodash@4.17.21": {
|
|
2248
|
+
"licenses": "MIT",
|
|
2249
|
+
"repository": "https://github.com/lodash/lodash",
|
|
2250
|
+
"publisher": "John-David Dalton",
|
|
2251
|
+
"email": "john.david.dalton@gmail.com",
|
|
2252
|
+
"path": "/home/uiprgl/server/node_modules/lodash",
|
|
2253
|
+
"licenseFile": "/home/uiprgl/server/node_modules/lodash/LICENSE"
|
|
2254
|
+
},
|
|
2255
|
+
"lru-cache@6.0.0": {
|
|
2256
|
+
"licenses": "ISC",
|
|
2257
|
+
"repository": "https://github.com/isaacs/node-lru-cache",
|
|
2258
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2259
|
+
"email": "i@izs.me",
|
|
2260
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/lru-cache",
|
|
2261
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/lru-cache/LICENSE"
|
|
2262
|
+
},
|
|
2263
|
+
"make-fetch-happen@9.1.0": {
|
|
2264
|
+
"licenses": "ISC",
|
|
2265
|
+
"repository": "https://github.com/npm/make-fetch-happen",
|
|
2266
|
+
"publisher": "Kat Marchán",
|
|
2267
|
+
"email": "kzm@zkat.tech",
|
|
2268
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/make-fetch-happen",
|
|
2269
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/make-fetch-happen/LICENSE"
|
|
2270
|
+
},
|
|
2271
|
+
"map-stream@0.1.0": {
|
|
2272
|
+
"licenses": "Custom: https://github.com/dominictarr/event-stream",
|
|
2273
|
+
"repository": "https://github.com/dominictarr/map-stream",
|
|
2274
|
+
"publisher": "Dominic Tarr",
|
|
2275
|
+
"email": "dominic.tarr@gmail.com",
|
|
2276
|
+
"url": "http://dominictarr.com",
|
|
2277
|
+
"path": "/home/uiprgl/server/node_modules/map-stream",
|
|
2278
|
+
"licenseFile": "/home/uiprgl/server/node_modules/map-stream/LICENCE"
|
|
2279
|
+
},
|
|
2280
|
+
"media-typer@0.3.0": {
|
|
2281
|
+
"licenses": "MIT",
|
|
2282
|
+
"repository": "https://github.com/jshttp/media-typer",
|
|
2283
|
+
"publisher": "Douglas Christopher Wilson",
|
|
2284
|
+
"email": "doug@somethingdoug.com",
|
|
2285
|
+
"path": "/home/uiprgl/server/node_modules/media-typer",
|
|
2286
|
+
"licenseFile": "/home/uiprgl/server/node_modules/media-typer/LICENSE"
|
|
2287
|
+
},
|
|
2288
|
+
"merge-descriptors@1.0.1": {
|
|
2289
|
+
"licenses": "MIT",
|
|
2290
|
+
"repository": "https://github.com/component/merge-descriptors",
|
|
2291
|
+
"publisher": "Jonathan Ong",
|
|
2292
|
+
"email": "me@jongleberry.com",
|
|
2293
|
+
"url": "http://jongleberry.com",
|
|
2294
|
+
"path": "/home/uiprgl/server/node_modules/merge-descriptors",
|
|
2295
|
+
"licenseFile": "/home/uiprgl/server/node_modules/merge-descriptors/LICENSE"
|
|
2296
|
+
},
|
|
2297
|
+
"methods@1.1.2": {
|
|
2298
|
+
"licenses": "MIT",
|
|
2299
|
+
"repository": "https://github.com/jshttp/methods",
|
|
2300
|
+
"path": "/home/uiprgl/server/node_modules/methods",
|
|
2301
|
+
"licenseFile": "/home/uiprgl/server/node_modules/methods/LICENSE"
|
|
2302
|
+
},
|
|
2303
|
+
"mime-db@1.47.0": {
|
|
2304
|
+
"licenses": "MIT",
|
|
2305
|
+
"repository": "https://github.com/jshttp/mime-db",
|
|
2306
|
+
"path": "/home/uiprgl/server/node_modules/mime-db",
|
|
2307
|
+
"licenseFile": "/home/uiprgl/server/node_modules/mime-db/LICENSE"
|
|
2308
|
+
},
|
|
2309
|
+
"mime-types@2.1.30": {
|
|
2310
|
+
"licenses": "MIT",
|
|
2311
|
+
"repository": "https://github.com/jshttp/mime-types",
|
|
2312
|
+
"path": "/home/uiprgl/server/node_modules/mime-types",
|
|
2313
|
+
"licenseFile": "/home/uiprgl/server/node_modules/mime-types/LICENSE"
|
|
2314
|
+
},
|
|
2315
|
+
"mime@1.6.0": {
|
|
2316
|
+
"licenses": "MIT",
|
|
2317
|
+
"repository": "https://github.com/broofa/node-mime",
|
|
2318
|
+
"publisher": "Robert Kieffer",
|
|
2319
|
+
"email": "robert@broofa.com",
|
|
2320
|
+
"url": "http://github.com/broofa",
|
|
2321
|
+
"path": "/home/uiprgl/server/node_modules/mime",
|
|
2322
|
+
"licenseFile": "/home/uiprgl/server/node_modules/mime/LICENSE"
|
|
2323
|
+
},
|
|
2324
|
+
"mimic-response@3.1.0": {
|
|
2325
|
+
"licenses": "MIT",
|
|
2326
|
+
"repository": "https://github.com/sindresorhus/mimic-response",
|
|
2327
|
+
"publisher": "Sindre Sorhus",
|
|
2328
|
+
"email": "sindresorhus@gmail.com",
|
|
2329
|
+
"url": "https://sindresorhus.com",
|
|
2330
|
+
"path": "/home/uiprgl/server/node_modules/mimic-response",
|
|
2331
|
+
"licenseFile": "/home/uiprgl/server/node_modules/mimic-response/license"
|
|
2332
|
+
},
|
|
2333
|
+
"minimatch@3.0.4": {
|
|
2334
|
+
"licenses": "ISC",
|
|
2335
|
+
"repository": "https://github.com/isaacs/minimatch",
|
|
2336
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2337
|
+
"email": "i@izs.me",
|
|
2338
|
+
"url": "http://blog.izs.me",
|
|
2339
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/minimatch",
|
|
2340
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/minimatch/LICENSE"
|
|
2341
|
+
},
|
|
2342
|
+
"minimist@1.2.5": {
|
|
2343
|
+
"licenses": "MIT",
|
|
2344
|
+
"repository": "https://github.com/substack/minimist",
|
|
2345
|
+
"publisher": "James Halliday",
|
|
2346
|
+
"email": "mail@substack.net",
|
|
2347
|
+
"url": "http://substack.net",
|
|
2348
|
+
"path": "/home/uiprgl/server/node_modules/minimist",
|
|
2349
|
+
"licenseFile": "/home/uiprgl/server/node_modules/minimist/LICENSE"
|
|
2350
|
+
},
|
|
2351
|
+
"minipass-collect@1.0.2": {
|
|
2352
|
+
"licenses": "ISC",
|
|
2353
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2354
|
+
"email": "i@izs.me",
|
|
2355
|
+
"url": "https://izs.me",
|
|
2356
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/minipass-collect",
|
|
2357
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/minipass-collect/LICENSE"
|
|
2358
|
+
},
|
|
2359
|
+
"minipass-fetch@1.4.1": {
|
|
2360
|
+
"licenses": "MIT",
|
|
2361
|
+
"repository": "https://github.com/npm/minipass-fetch",
|
|
2362
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/minipass-fetch",
|
|
2363
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/minipass-fetch/LICENSE"
|
|
2364
|
+
},
|
|
2365
|
+
"minipass-flush@1.0.5": {
|
|
2366
|
+
"licenses": "ISC",
|
|
2367
|
+
"repository": "https://github.com/isaacs/minipass-flush",
|
|
2368
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2369
|
+
"email": "i@izs.me",
|
|
2370
|
+
"url": "https://izs.me",
|
|
2371
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/minipass-flush",
|
|
2372
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/minipass-flush/LICENSE"
|
|
2373
|
+
},
|
|
2374
|
+
"minipass-json-stream@1.0.1": {
|
|
2375
|
+
"licenses": "MIT",
|
|
2376
|
+
"repository": "https://github.com/npm/minipass-json-stream",
|
|
2377
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2378
|
+
"email": "i@izs.me",
|
|
2379
|
+
"url": "https://izs.me",
|
|
2380
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/minipass-json-stream",
|
|
2381
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/minipass-json-stream/LICENSE"
|
|
2382
|
+
},
|
|
2383
|
+
"minipass-pipeline@1.2.4": {
|
|
2384
|
+
"licenses": "ISC",
|
|
2385
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2386
|
+
"email": "i@izs.me",
|
|
2387
|
+
"url": "https://izs.me",
|
|
2388
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/minipass-pipeline",
|
|
2389
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/minipass-pipeline/LICENSE"
|
|
2390
|
+
},
|
|
2391
|
+
"minipass-sized@1.0.3": {
|
|
2392
|
+
"licenses": "ISC",
|
|
2393
|
+
"repository": "https://github.com/isaacs/minipass-sized",
|
|
2394
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2395
|
+
"email": "i@izs.me",
|
|
2396
|
+
"url": "https://izs.me",
|
|
2397
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/minipass-sized",
|
|
2398
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/minipass-sized/LICENSE"
|
|
2399
|
+
},
|
|
2400
|
+
"minipass@3.1.5": {
|
|
2401
|
+
"licenses": "ISC",
|
|
2402
|
+
"repository": "https://github.com/isaacs/minipass",
|
|
2403
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2404
|
+
"email": "i@izs.me",
|
|
2405
|
+
"url": "http://blog.izs.me/",
|
|
2406
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/minipass",
|
|
2407
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/minipass/LICENSE"
|
|
2408
|
+
},
|
|
2409
|
+
"minizlib@2.1.2": {
|
|
2410
|
+
"licenses": "MIT",
|
|
2411
|
+
"repository": "https://github.com/isaacs/minizlib",
|
|
2412
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2413
|
+
"email": "i@izs.me",
|
|
2414
|
+
"url": "http://blog.izs.me/",
|
|
2415
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/minizlib",
|
|
2416
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/minizlib/LICENSE"
|
|
2417
|
+
},
|
|
2418
|
+
"mkdirp-classic@0.5.3": {
|
|
2419
|
+
"licenses": "MIT",
|
|
2420
|
+
"repository": "https://github.com/mafintosh/mkdirp-classic",
|
|
2421
|
+
"publisher": "Mathias Buus",
|
|
2422
|
+
"url": "@mafintosh",
|
|
2423
|
+
"path": "/home/uiprgl/server/node_modules/mkdirp-classic",
|
|
2424
|
+
"licenseFile": "/home/uiprgl/server/node_modules/mkdirp-classic/LICENSE"
|
|
2425
|
+
},
|
|
2426
|
+
"mkdirp-infer-owner@2.0.0": {
|
|
2427
|
+
"licenses": "ISC",
|
|
2428
|
+
"repository": "https://github.com/isaacs/mkdirp-infer-owner",
|
|
2429
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2430
|
+
"email": "i@izs.me",
|
|
2431
|
+
"url": "https://izs.me",
|
|
2432
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/mkdirp-infer-owner",
|
|
2433
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/mkdirp-infer-owner/LICENSE"
|
|
2434
|
+
},
|
|
2435
|
+
"mkdirp@1.0.4": {
|
|
2436
|
+
"licenses": "MIT",
|
|
2437
|
+
"repository": "https://github.com/isaacs/node-mkdirp",
|
|
2438
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/mkdirp",
|
|
2439
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/mkdirp/LICENSE"
|
|
2440
|
+
},
|
|
2441
|
+
"monaco-editor@0.29.1": {
|
|
2442
|
+
"licenses": "MIT",
|
|
2443
|
+
"repository": "https://github.com/microsoft/monaco-editor",
|
|
2444
|
+
"publisher": "Microsoft Corporation",
|
|
2445
|
+
"path": "/home/uiprgl/server/node_modules/monaco-editor",
|
|
2446
|
+
"licenseFile": "/home/uiprgl/server/node_modules/monaco-editor/LICENSE"
|
|
2447
|
+
},
|
|
2448
|
+
"ms@2.0.0": {
|
|
2449
|
+
"licenses": "MIT",
|
|
2450
|
+
"repository": "https://github.com/zeit/ms",
|
|
2451
|
+
"path": "/home/uiprgl/server/node_modules/ms",
|
|
2452
|
+
"licenseFile": "/home/uiprgl/server/node_modules/ms/license.md"
|
|
2453
|
+
},
|
|
2454
|
+
"ms@2.1.1": {
|
|
2455
|
+
"licenses": "MIT",
|
|
2456
|
+
"repository": "https://github.com/zeit/ms",
|
|
2457
|
+
"path": "/home/uiprgl/server/node_modules/send/node_modules/ms",
|
|
2458
|
+
"licenseFile": "/home/uiprgl/server/node_modules/send/node_modules/ms/license.md"
|
|
2459
|
+
},
|
|
2460
|
+
"ms@2.1.2": {
|
|
2461
|
+
"licenses": "MIT",
|
|
2462
|
+
"repository": "https://github.com/zeit/ms",
|
|
2463
|
+
"path": "/home/uiprgl/server/node_modules/socket.io/node_modules/ms",
|
|
2464
|
+
"licenseFile": "/home/uiprgl/server/node_modules/socket.io/node_modules/ms/license.md"
|
|
2465
|
+
},
|
|
2466
|
+
"ms@2.1.3": {
|
|
2467
|
+
"licenses": "MIT",
|
|
2468
|
+
"repository": "https://github.com/vercel/ms",
|
|
2469
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/ms",
|
|
2470
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/ms/license.md"
|
|
2471
|
+
},
|
|
2472
|
+
"mute-stream@0.0.8": {
|
|
2473
|
+
"licenses": "ISC",
|
|
2474
|
+
"repository": "https://github.com/isaacs/mute-stream",
|
|
2475
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2476
|
+
"email": "i@izs.me",
|
|
2477
|
+
"url": "http://blog.izs.me/",
|
|
2478
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/mute-stream",
|
|
2479
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/mute-stream/LICENSE"
|
|
2480
|
+
},
|
|
2481
|
+
"napi-build-utils@1.0.2": {
|
|
2482
|
+
"licenses": "MIT",
|
|
2483
|
+
"repository": "https://github.com/inspiredware/napi-build-utils",
|
|
2484
|
+
"publisher": "Jim Schlight",
|
|
2485
|
+
"path": "/home/uiprgl/server/node_modules/napi-build-utils",
|
|
2486
|
+
"licenseFile": "/home/uiprgl/server/node_modules/napi-build-utils/LICENSE"
|
|
2487
|
+
},
|
|
2488
|
+
"negotiator@0.6.2": {
|
|
2489
|
+
"licenses": "MIT",
|
|
2490
|
+
"repository": "https://github.com/jshttp/negotiator",
|
|
2491
|
+
"path": "/home/uiprgl/server/node_modules/negotiator",
|
|
2492
|
+
"licenseFile": "/home/uiprgl/server/node_modules/negotiator/LICENSE"
|
|
2493
|
+
},
|
|
2494
|
+
"node-abi@3.5.0": {
|
|
2495
|
+
"licenses": "MIT",
|
|
2496
|
+
"repository": "https://github.com/lgeiger/node-abi",
|
|
2497
|
+
"publisher": "Lukas Geiger",
|
|
2498
|
+
"path": "/home/uiprgl/server/node_modules/node-abi",
|
|
2499
|
+
"licenseFile": "/home/uiprgl/server/node_modules/node-abi/LICENSE"
|
|
2500
|
+
},
|
|
2501
|
+
"node-addon-api@4.2.0": {
|
|
2502
|
+
"licenses": "MIT",
|
|
2503
|
+
"repository": "https://github.com/nodejs/node-addon-api",
|
|
2504
|
+
"path": "/home/uiprgl/server/node_modules/node-addon-api",
|
|
2505
|
+
"licenseFile": "/home/uiprgl/server/node_modules/node-addon-api/LICENSE.md"
|
|
2506
|
+
},
|
|
2507
|
+
"node-cleanup@2.1.2": {
|
|
2508
|
+
"licenses": "MIT",
|
|
2509
|
+
"repository": "https://github.com/jtlapp/node-cleanup",
|
|
2510
|
+
"path": "/home/uiprgl/server/node_modules/node-cleanup",
|
|
2511
|
+
"licenseFile": "/home/uiprgl/server/node_modules/node-cleanup/LICENSE"
|
|
2512
|
+
},
|
|
2513
|
+
"node-gyp@8.4.0": {
|
|
2514
|
+
"licenses": "MIT",
|
|
2515
|
+
"repository": "https://github.com/nodejs/node-gyp",
|
|
2516
|
+
"publisher": "Nathan Rajlich",
|
|
2517
|
+
"email": "nathan@tootallnate.net",
|
|
2518
|
+
"url": "http://tootallnate.net",
|
|
2519
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/node-gyp",
|
|
2520
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/node-gyp/LICENSE"
|
|
2521
|
+
},
|
|
2522
|
+
"nopt@5.0.0": {
|
|
2523
|
+
"licenses": "ISC",
|
|
2524
|
+
"repository": "https://github.com/npm/nopt",
|
|
2525
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2526
|
+
"email": "i@izs.me",
|
|
2527
|
+
"url": "http://blog.izs.me/",
|
|
2528
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/nopt",
|
|
2529
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/nopt/LICENSE"
|
|
2530
|
+
},
|
|
2531
|
+
"normalize-package-data@3.0.3": {
|
|
2532
|
+
"licenses": "BSD-2-Clause",
|
|
2533
|
+
"repository": "https://github.com/npm/normalize-package-data",
|
|
2534
|
+
"publisher": "Meryn Stol",
|
|
2535
|
+
"email": "merynstol@gmail.com",
|
|
2536
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/normalize-package-data",
|
|
2537
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/normalize-package-data/LICENSE"
|
|
2538
|
+
},
|
|
2539
|
+
"npm-audit-report@2.1.5": {
|
|
2540
|
+
"licenses": "ISC",
|
|
2541
|
+
"repository": "https://github.com/npm/npm-audit-report",
|
|
2542
|
+
"publisher": "Adam Baldwin",
|
|
2543
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/npm-audit-report",
|
|
2544
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/npm-audit-report/LICENSE"
|
|
2545
|
+
},
|
|
2546
|
+
"npm-bundled@1.1.2": {
|
|
2547
|
+
"licenses": "ISC",
|
|
2548
|
+
"repository": "https://github.com/npm/npm-bundled",
|
|
2549
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2550
|
+
"email": "i@izs.me",
|
|
2551
|
+
"url": "http://blog.izs.me/",
|
|
2552
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/npm-bundled",
|
|
2553
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/npm-bundled/LICENSE"
|
|
2554
|
+
},
|
|
2555
|
+
"npm-install-checks@4.0.0": {
|
|
2556
|
+
"licenses": "BSD-2-Clause",
|
|
2557
|
+
"repository": "https://github.com/npm/npm-install-checks",
|
|
2558
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/npm-install-checks",
|
|
2559
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/npm-install-checks/LICENSE"
|
|
2560
|
+
},
|
|
2561
|
+
"npm-normalize-package-bin@1.0.1": {
|
|
2562
|
+
"licenses": "ISC",
|
|
2563
|
+
"repository": "https://github.com/npm/npm-normalize-package-bin",
|
|
2564
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2565
|
+
"email": "i@izs.me",
|
|
2566
|
+
"url": "https://izs.me",
|
|
2567
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/npm-normalize-package-bin",
|
|
2568
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/npm-normalize-package-bin/LICENSE"
|
|
2569
|
+
},
|
|
2570
|
+
"npm-package-arg@8.1.5": {
|
|
2571
|
+
"licenses": "ISC",
|
|
2572
|
+
"repository": "https://github.com/npm/npm-package-arg",
|
|
2573
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2574
|
+
"email": "i@izs.me",
|
|
2575
|
+
"url": "http://blog.izs.me/",
|
|
2576
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/npm-package-arg",
|
|
2577
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/npm-package-arg/LICENSE"
|
|
2578
|
+
},
|
|
2579
|
+
"npm-packlist@3.0.0": {
|
|
2580
|
+
"licenses": "ISC",
|
|
2581
|
+
"repository": "https://github.com/npm/npm-packlist",
|
|
2582
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2583
|
+
"email": "i@izs.me",
|
|
2584
|
+
"url": "http://blog.izs.me/",
|
|
2585
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/npm-packlist",
|
|
2586
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/npm-packlist/LICENSE"
|
|
2587
|
+
},
|
|
2588
|
+
"npm-pick-manifest@6.1.1": {
|
|
2589
|
+
"licenses": "ISC",
|
|
2590
|
+
"repository": "https://github.com/npm/npm-pick-manifest",
|
|
2591
|
+
"publisher": "Kat Marchán",
|
|
2592
|
+
"email": "kzm@sykosomatic.org",
|
|
2593
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/npm-pick-manifest",
|
|
2594
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/npm-pick-manifest/LICENSE.md"
|
|
2595
|
+
},
|
|
2596
|
+
"npm-profile@5.0.4": {
|
|
2597
|
+
"licenses": "ISC",
|
|
2598
|
+
"repository": "https://github.com/npm/npm-profile",
|
|
2599
|
+
"publisher": "Rebecca Turner",
|
|
2600
|
+
"email": "me@re-becca.org",
|
|
2601
|
+
"url": "http://re-becca.org/",
|
|
2602
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/npm-profile",
|
|
2603
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/npm-profile/LICENSE"
|
|
2604
|
+
},
|
|
2605
|
+
"npm-registry-fetch@11.0.0": {
|
|
2606
|
+
"licenses": "ISC",
|
|
2607
|
+
"repository": "https://github.com/npm/npm-registry-fetch",
|
|
2608
|
+
"publisher": "Kat Marchán",
|
|
2609
|
+
"email": "kzm@sykosomatic.org",
|
|
2610
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/npm-registry-fetch",
|
|
2611
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/npm-registry-fetch/LICENSE.md"
|
|
2612
|
+
},
|
|
2613
|
+
"npm-user-validate@1.0.1": {
|
|
2614
|
+
"licenses": "BSD-2-Clause",
|
|
2615
|
+
"repository": "https://github.com/npm/npm-user-validate",
|
|
2616
|
+
"publisher": "Robert Kowalski",
|
|
2617
|
+
"email": "rok@kowalski.gd",
|
|
2618
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/npm-user-validate",
|
|
2619
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/npm-user-validate/LICENSE"
|
|
2620
|
+
},
|
|
2621
|
+
"npm@8.1.4": {
|
|
2622
|
+
"licenses": "Artistic-2.0",
|
|
2623
|
+
"repository": "https://github.com/npm/cli",
|
|
2624
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2625
|
+
"email": "i@izs.me",
|
|
2626
|
+
"url": "http://blog.izs.me",
|
|
2627
|
+
"path": "/home/uiprgl/server/node_modules/npm",
|
|
2628
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/LICENSE"
|
|
2629
|
+
},
|
|
2630
|
+
"npmlog@4.1.2": {
|
|
2631
|
+
"licenses": "ISC",
|
|
2632
|
+
"repository": "https://github.com/npm/npmlog",
|
|
2633
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2634
|
+
"email": "i@izs.me",
|
|
2635
|
+
"url": "http://blog.izs.me/",
|
|
2636
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/node-gyp/node_modules/npmlog",
|
|
2637
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/node-gyp/node_modules/npmlog/LICENSE"
|
|
2638
|
+
},
|
|
2639
|
+
"npmlog@6.0.0": {
|
|
2640
|
+
"licenses": "ISC",
|
|
2641
|
+
"repository": "https://github.com/npm/npmlog",
|
|
2642
|
+
"publisher": "GitHub Inc.",
|
|
2643
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/npmlog",
|
|
2644
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/npmlog/LICENSE.md"
|
|
2645
|
+
},
|
|
2646
|
+
"number-is-nan@1.0.1": {
|
|
2647
|
+
"licenses": "MIT",
|
|
2648
|
+
"repository": "https://github.com/sindresorhus/number-is-nan",
|
|
2649
|
+
"publisher": "Sindre Sorhus",
|
|
2650
|
+
"email": "sindresorhus@gmail.com",
|
|
2651
|
+
"url": "sindresorhus.com",
|
|
2652
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/number-is-nan",
|
|
2653
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/number-is-nan/license"
|
|
2654
|
+
},
|
|
2655
|
+
"object-assign@4.1.1": {
|
|
2656
|
+
"licenses": "MIT",
|
|
2657
|
+
"repository": "https://github.com/sindresorhus/object-assign",
|
|
2658
|
+
"publisher": "Sindre Sorhus",
|
|
2659
|
+
"email": "sindresorhus@gmail.com",
|
|
2660
|
+
"url": "sindresorhus.com",
|
|
2661
|
+
"path": "/home/uiprgl/server/node_modules/object-assign",
|
|
2662
|
+
"licenseFile": "/home/uiprgl/server/node_modules/object-assign/license"
|
|
2663
|
+
},
|
|
2664
|
+
"on-finished@2.3.0": {
|
|
2665
|
+
"licenses": "MIT",
|
|
2666
|
+
"repository": "https://github.com/jshttp/on-finished",
|
|
2667
|
+
"path": "/home/uiprgl/server/node_modules/on-finished",
|
|
2668
|
+
"licenseFile": "/home/uiprgl/server/node_modules/on-finished/LICENSE"
|
|
2669
|
+
},
|
|
2670
|
+
"once@1.4.0": {
|
|
2671
|
+
"licenses": "ISC",
|
|
2672
|
+
"repository": "https://github.com/isaacs/once",
|
|
2673
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2674
|
+
"email": "i@izs.me",
|
|
2675
|
+
"url": "http://blog.izs.me/",
|
|
2676
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/once",
|
|
2677
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/once/LICENSE"
|
|
2678
|
+
},
|
|
2679
|
+
"opener@1.5.2": {
|
|
2680
|
+
"licenses": "(WTFPL OR MIT)",
|
|
2681
|
+
"repository": "https://github.com/domenic/opener",
|
|
2682
|
+
"publisher": "Domenic Denicola",
|
|
2683
|
+
"email": "d@domenic.me",
|
|
2684
|
+
"url": "https://domenic.me/",
|
|
2685
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/opener",
|
|
2686
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/opener/LICENSE.txt"
|
|
2687
|
+
},
|
|
2688
|
+
"p-map@4.0.0": {
|
|
2689
|
+
"licenses": "MIT",
|
|
2690
|
+
"repository": "https://github.com/sindresorhus/p-map",
|
|
2691
|
+
"publisher": "Sindre Sorhus",
|
|
2692
|
+
"email": "sindresorhus@gmail.com",
|
|
2693
|
+
"url": "https://sindresorhus.com",
|
|
2694
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/p-map",
|
|
2695
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/p-map/license"
|
|
2696
|
+
},
|
|
2697
|
+
"packet-reader@1.0.0": {
|
|
2698
|
+
"licenses": "MIT",
|
|
2699
|
+
"repository": "https://github.com/brianc/node-packet-reader",
|
|
2700
|
+
"publisher": "Brian M. Carlson",
|
|
2701
|
+
"path": "/home/uiprgl/server/node_modules/packet-reader",
|
|
2702
|
+
"licenseFile": "/home/uiprgl/server/node_modules/packet-reader/README.md"
|
|
2703
|
+
},
|
|
2704
|
+
"pacote@12.0.2": {
|
|
2705
|
+
"licenses": "ISC",
|
|
2706
|
+
"repository": "https://github.com/npm/pacote",
|
|
2707
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2708
|
+
"email": "i@izs.me",
|
|
2709
|
+
"url": "https://izs.me",
|
|
2710
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/pacote",
|
|
2711
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/pacote/LICENSE"
|
|
2712
|
+
},
|
|
2713
|
+
"parse-conflict-json@1.1.1": {
|
|
2714
|
+
"licenses": "ISC",
|
|
2715
|
+
"repository": "https://github.com/npm/parse-conflict-json",
|
|
2716
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2717
|
+
"email": "i@izs.me",
|
|
2718
|
+
"url": "https://izs.me",
|
|
2719
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/parse-conflict-json",
|
|
2720
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/parse-conflict-json/LICENSE"
|
|
2721
|
+
},
|
|
2722
|
+
"parseurl@1.3.3": {
|
|
2723
|
+
"licenses": "MIT",
|
|
2724
|
+
"repository": "https://github.com/pillarjs/parseurl",
|
|
2725
|
+
"path": "/home/uiprgl/server/node_modules/parseurl",
|
|
2726
|
+
"licenseFile": "/home/uiprgl/server/node_modules/parseurl/LICENSE"
|
|
2727
|
+
},
|
|
2728
|
+
"path-is-absolute@1.0.1": {
|
|
2729
|
+
"licenses": "MIT",
|
|
2730
|
+
"repository": "https://github.com/sindresorhus/path-is-absolute",
|
|
2731
|
+
"publisher": "Sindre Sorhus",
|
|
2732
|
+
"email": "sindresorhus@gmail.com",
|
|
2733
|
+
"url": "sindresorhus.com",
|
|
2734
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/path-is-absolute",
|
|
2735
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/path-is-absolute/license"
|
|
2736
|
+
},
|
|
2737
|
+
"path-key@3.1.1": {
|
|
2738
|
+
"licenses": "MIT",
|
|
2739
|
+
"repository": "https://github.com/sindresorhus/path-key",
|
|
2740
|
+
"publisher": "Sindre Sorhus",
|
|
2741
|
+
"email": "sindresorhus@gmail.com",
|
|
2742
|
+
"url": "sindresorhus.com",
|
|
2743
|
+
"path": "/home/uiprgl/server/node_modules/path-key",
|
|
2744
|
+
"licenseFile": "/home/uiprgl/server/node_modules/path-key/license"
|
|
2745
|
+
},
|
|
2746
|
+
"path-to-regexp@0.1.7": {
|
|
2747
|
+
"licenses": "MIT",
|
|
2748
|
+
"repository": "https://github.com/component/path-to-regexp",
|
|
2749
|
+
"path": "/home/uiprgl/server/node_modules/path-to-regexp",
|
|
2750
|
+
"licenseFile": "/home/uiprgl/server/node_modules/path-to-regexp/LICENSE"
|
|
2751
|
+
},
|
|
2752
|
+
"pause-stream@0.0.11": {
|
|
2753
|
+
"licenses": ["MIT", "Apache2"],
|
|
2754
|
+
"repository": "https://github.com/dominictarr/pause-stream",
|
|
2755
|
+
"publisher": "Dominic Tarr",
|
|
2756
|
+
"email": "dominic.tarr@gmail.com",
|
|
2757
|
+
"url": "dominictarr.com",
|
|
2758
|
+
"path": "/home/uiprgl/server/node_modules/pause-stream",
|
|
2759
|
+
"licenseFile": "/home/uiprgl/server/node_modules/pause-stream/LICENSE"
|
|
2760
|
+
},
|
|
2761
|
+
"peek-readable@4.0.1": {
|
|
2762
|
+
"licenses": "MIT",
|
|
2763
|
+
"repository": "https://github.com/Borewit/peek-readable",
|
|
2764
|
+
"publisher": "Borewit",
|
|
2765
|
+
"url": "https://github.com/Borewit",
|
|
2766
|
+
"path": "/home/uiprgl/server/node_modules/peek-readable",
|
|
2767
|
+
"licenseFile": "/home/uiprgl/server/node_modules/peek-readable/LICENSE"
|
|
2768
|
+
},
|
|
2769
|
+
"pg-connection-string@2.5.0": {
|
|
2770
|
+
"licenses": "MIT",
|
|
2771
|
+
"repository": "https://github.com/brianc/node-postgres",
|
|
2772
|
+
"publisher": "Blaine Bublitz",
|
|
2773
|
+
"email": "blaine@iceddev.com",
|
|
2774
|
+
"url": "http://iceddev.com/",
|
|
2775
|
+
"path": "/home/uiprgl/server/node_modules/pg-connection-string",
|
|
2776
|
+
"licenseFile": "/home/uiprgl/server/node_modules/pg-connection-string/LICENSE"
|
|
2777
|
+
},
|
|
2778
|
+
"pg-int8@1.0.1": {
|
|
2779
|
+
"licenses": "ISC",
|
|
2780
|
+
"repository": "https://github.com/charmander/pg-int8",
|
|
2781
|
+
"path": "/home/uiprgl/server/node_modules/pg-int8",
|
|
2782
|
+
"licenseFile": "/home/uiprgl/server/node_modules/pg-int8/LICENSE"
|
|
2783
|
+
},
|
|
2784
|
+
"pg-minify@1.6.2": {
|
|
2785
|
+
"licenses": "MIT",
|
|
2786
|
+
"repository": "https://github.com/vitaly-t/pg-minify",
|
|
2787
|
+
"publisher": "Vitaly Tomilov",
|
|
2788
|
+
"email": "vitaly.tomilov@gmail.com",
|
|
2789
|
+
"path": "/home/uiprgl/server/node_modules/pg-minify",
|
|
2790
|
+
"licenseFile": "/home/uiprgl/server/node_modules/pg-minify/README.md"
|
|
2791
|
+
},
|
|
2792
|
+
"pg-pool@3.4.1": {
|
|
2793
|
+
"licenses": "MIT",
|
|
2794
|
+
"repository": "https://github.com/brianc/node-postgres",
|
|
2795
|
+
"publisher": "Brian M. Carlson",
|
|
2796
|
+
"path": "/home/uiprgl/server/node_modules/pg-pool",
|
|
2797
|
+
"licenseFile": "/home/uiprgl/server/node_modules/pg-pool/LICENSE"
|
|
2798
|
+
},
|
|
2799
|
+
"pg-promise@10.11.0": {
|
|
2800
|
+
"licenses": "MIT",
|
|
2801
|
+
"repository": "https://github.com/vitaly-t/pg-promise",
|
|
2802
|
+
"publisher": "Vitaly Tomilov",
|
|
2803
|
+
"email": "vitaly.tomilov@gmail.com",
|
|
2804
|
+
"path": "/home/uiprgl/server/node_modules/pg-promise",
|
|
2805
|
+
"licenseFile": "/home/uiprgl/server/node_modules/pg-promise/LICENSE"
|
|
2806
|
+
},
|
|
2807
|
+
"pg-protocol@1.5.0": {
|
|
2808
|
+
"licenses": "MIT",
|
|
2809
|
+
"repository": "https://github.com/brianc/node-postgres",
|
|
2810
|
+
"path": "/home/uiprgl/server/node_modules/pg-protocol",
|
|
2811
|
+
"licenseFile": "/home/uiprgl/server/node_modules/pg-protocol/LICENSE"
|
|
2812
|
+
},
|
|
2813
|
+
"pg-types@2.2.0": {
|
|
2814
|
+
"licenses": "MIT",
|
|
2815
|
+
"repository": "https://github.com/brianc/node-pg-types",
|
|
2816
|
+
"publisher": "Brian M. Carlson",
|
|
2817
|
+
"path": "/home/uiprgl/server/node_modules/pg-types",
|
|
2818
|
+
"licenseFile": "/home/uiprgl/server/node_modules/pg-types/README.md"
|
|
2819
|
+
},
|
|
2820
|
+
"pg@8.7.1": {
|
|
2821
|
+
"licenses": "MIT",
|
|
2822
|
+
"repository": "https://github.com/brianc/node-postgres",
|
|
2823
|
+
"publisher": "Brian Carlson",
|
|
2824
|
+
"email": "brian.m.carlson@gmail.com",
|
|
2825
|
+
"path": "/home/uiprgl/server/node_modules/pg",
|
|
2826
|
+
"licenseFile": "/home/uiprgl/server/node_modules/pg/LICENSE"
|
|
2827
|
+
},
|
|
2828
|
+
"pgpass@1.0.4": {
|
|
2829
|
+
"licenses": "MIT",
|
|
2830
|
+
"repository": "https://github.com/hoegaarden/pgpass",
|
|
2831
|
+
"publisher": "Hannes Hörl",
|
|
2832
|
+
"email": "hannes.hoerl+pgpass@snowreporter.com",
|
|
2833
|
+
"path": "/home/uiprgl/server/node_modules/pgpass",
|
|
2834
|
+
"licenseFile": "/home/uiprgl/server/node_modules/pgpass/README.md"
|
|
2835
|
+
},
|
|
2836
|
+
"postgres-array@2.0.0": {
|
|
2837
|
+
"licenses": "MIT",
|
|
2838
|
+
"repository": "https://github.com/bendrucker/postgres-array",
|
|
2839
|
+
"publisher": "Ben Drucker",
|
|
2840
|
+
"email": "bvdrucker@gmail.com",
|
|
2841
|
+
"url": "bendrucker.me",
|
|
2842
|
+
"path": "/home/uiprgl/server/node_modules/postgres-array",
|
|
2843
|
+
"licenseFile": "/home/uiprgl/server/node_modules/postgres-array/license"
|
|
2844
|
+
},
|
|
2845
|
+
"postgres-bytea@1.0.0": {
|
|
2846
|
+
"licenses": "MIT",
|
|
2847
|
+
"repository": "https://github.com/bendrucker/postgres-bytea",
|
|
2848
|
+
"publisher": "Ben Drucker",
|
|
2849
|
+
"email": "bvdrucker@gmail.com",
|
|
2850
|
+
"url": "bendrucker.me",
|
|
2851
|
+
"path": "/home/uiprgl/server/node_modules/postgres-bytea",
|
|
2852
|
+
"licenseFile": "/home/uiprgl/server/node_modules/postgres-bytea/license"
|
|
2853
|
+
},
|
|
2854
|
+
"postgres-date@1.0.7": {
|
|
2855
|
+
"licenses": "MIT",
|
|
2856
|
+
"repository": "https://github.com/bendrucker/postgres-date",
|
|
2857
|
+
"publisher": "Ben Drucker",
|
|
2858
|
+
"email": "bvdrucker@gmail.com",
|
|
2859
|
+
"url": "bendrucker.me",
|
|
2860
|
+
"path": "/home/uiprgl/server/node_modules/postgres-date",
|
|
2861
|
+
"licenseFile": "/home/uiprgl/server/node_modules/postgres-date/license"
|
|
2862
|
+
},
|
|
2863
|
+
"postgres-interval@1.2.0": {
|
|
2864
|
+
"licenses": "MIT",
|
|
2865
|
+
"repository": "https://github.com/bendrucker/postgres-interval",
|
|
2866
|
+
"publisher": "Ben Drucker",
|
|
2867
|
+
"email": "bvdrucker@gmail.com",
|
|
2868
|
+
"url": "bendrucker.me",
|
|
2869
|
+
"path": "/home/uiprgl/server/node_modules/postgres-interval",
|
|
2870
|
+
"licenseFile": "/home/uiprgl/server/node_modules/postgres-interval/license"
|
|
2871
|
+
},
|
|
2872
|
+
"prebuild-install@7.0.0": {
|
|
2873
|
+
"licenses": "MIT",
|
|
2874
|
+
"repository": "https://github.com/prebuild/prebuild-install",
|
|
2875
|
+
"publisher": "Mathias Buus",
|
|
2876
|
+
"url": "@mafintosh",
|
|
2877
|
+
"path": "/home/uiprgl/server/node_modules/prebuild-install",
|
|
2878
|
+
"licenseFile": "/home/uiprgl/server/node_modules/prebuild-install/LICENSE"
|
|
2879
|
+
},
|
|
2880
|
+
"prgl_docker@1.0.0": {
|
|
2881
|
+
"licenses": "ISC",
|
|
2882
|
+
"path": "/home/uiprgl/server"
|
|
2883
|
+
},
|
|
2884
|
+
"proc-log@1.0.0": {
|
|
2885
|
+
"licenses": "ISC",
|
|
2886
|
+
"repository": "https://github.com/npm/proc-log",
|
|
2887
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2888
|
+
"email": "i@izs.me",
|
|
2889
|
+
"url": "https://izs.me",
|
|
2890
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/proc-log",
|
|
2891
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/proc-log/LICENSE"
|
|
2892
|
+
},
|
|
2893
|
+
"process-nextick-args@2.0.1": {
|
|
2894
|
+
"licenses": "MIT",
|
|
2895
|
+
"repository": "https://github.com/calvinmetcalf/process-nextick-args",
|
|
2896
|
+
"path": "/home/uiprgl/server/node_modules/process-nextick-args",
|
|
2897
|
+
"licenseFile": "/home/uiprgl/server/node_modules/process-nextick-args/license.md"
|
|
2898
|
+
},
|
|
2899
|
+
"promise-all-reject-late@1.0.1": {
|
|
2900
|
+
"licenses": "ISC",
|
|
2901
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2902
|
+
"email": "i@izs.me",
|
|
2903
|
+
"url": "https://izs.me",
|
|
2904
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/promise-all-reject-late",
|
|
2905
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/promise-all-reject-late/LICENSE"
|
|
2906
|
+
},
|
|
2907
|
+
"promise-call-limit@1.0.1": {
|
|
2908
|
+
"licenses": "ISC",
|
|
2909
|
+
"repository": "https://github.com/isaacs/promise-call-limit",
|
|
2910
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2911
|
+
"email": "i@izs.me",
|
|
2912
|
+
"url": "https://izs.me",
|
|
2913
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/promise-call-limit",
|
|
2914
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/promise-call-limit/LICENSE"
|
|
2915
|
+
},
|
|
2916
|
+
"promise-inflight@1.0.1": {
|
|
2917
|
+
"licenses": "ISC",
|
|
2918
|
+
"repository": "https://github.com/iarna/promise-inflight",
|
|
2919
|
+
"publisher": "Rebecca Turner",
|
|
2920
|
+
"email": "me@re-becca.org",
|
|
2921
|
+
"url": "http://re-becca.org/",
|
|
2922
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/promise-inflight",
|
|
2923
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/promise-inflight/LICENSE"
|
|
2924
|
+
},
|
|
2925
|
+
"promise-retry@2.0.1": {
|
|
2926
|
+
"licenses": "MIT",
|
|
2927
|
+
"repository": "https://github.com/IndigoUnited/node-promise-retry",
|
|
2928
|
+
"publisher": "IndigoUnited",
|
|
2929
|
+
"email": "hello@indigounited.com",
|
|
2930
|
+
"url": "http://indigounited.com",
|
|
2931
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/promise-retry",
|
|
2932
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/promise-retry/LICENSE"
|
|
2933
|
+
},
|
|
2934
|
+
"promzard@0.3.0": {
|
|
2935
|
+
"licenses": "ISC",
|
|
2936
|
+
"repository": "https://github.com/isaacs/promzard",
|
|
2937
|
+
"publisher": "Isaac Z. Schlueter",
|
|
2938
|
+
"email": "i@izs.me",
|
|
2939
|
+
"url": "http://blog.izs.me/",
|
|
2940
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/promzard",
|
|
2941
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/promzard/LICENSE"
|
|
2942
|
+
},
|
|
2943
|
+
"prostgles-server@2.0.106": {
|
|
2944
|
+
"licenses": "MIT",
|
|
2945
|
+
"repository": "https://github.com/prostgles/prostgles-server-js",
|
|
2946
|
+
"publisher": "Stefan L",
|
|
2947
|
+
"path": "/home/uiprgl/server/node_modules/prostgles-server",
|
|
2948
|
+
"licenseFile": "/home/uiprgl/server/node_modules/prostgles-server/LICENSE"
|
|
2949
|
+
},
|
|
2950
|
+
"prostgles-types@1.5.120": {
|
|
2951
|
+
"licenses": "MIT",
|
|
2952
|
+
"repository": "https://github.com/prostgles/prostgles-types",
|
|
2953
|
+
"publisher": "Stefan L",
|
|
2954
|
+
"path": "/home/uiprgl/server/node_modules/prostgles-types",
|
|
2955
|
+
"licenseFile": "/home/uiprgl/server/node_modules/prostgles-types/LICENSE"
|
|
2956
|
+
},
|
|
2957
|
+
"proxy-addr@2.0.6": {
|
|
2958
|
+
"licenses": "MIT",
|
|
2959
|
+
"repository": "https://github.com/jshttp/proxy-addr",
|
|
2960
|
+
"publisher": "Douglas Christopher Wilson",
|
|
2961
|
+
"email": "doug@somethingdoug.com",
|
|
2962
|
+
"path": "/home/uiprgl/server/node_modules/proxy-addr",
|
|
2963
|
+
"licenseFile": "/home/uiprgl/server/node_modules/proxy-addr/LICENSE"
|
|
2964
|
+
},
|
|
2965
|
+
"ps-tree@1.2.0": {
|
|
2966
|
+
"licenses": "MIT",
|
|
2967
|
+
"repository": "https://github.com/indexzero/ps-tree",
|
|
2968
|
+
"publisher": "Charlie Robbins",
|
|
2969
|
+
"email": "charlie.robbins@gmail.com",
|
|
2970
|
+
"path": "/home/uiprgl/server/node_modules/ps-tree",
|
|
2971
|
+
"licenseFile": "/home/uiprgl/server/node_modules/ps-tree/LICENSE"
|
|
2972
|
+
},
|
|
2973
|
+
"pump@3.0.0": {
|
|
2974
|
+
"licenses": "MIT",
|
|
2975
|
+
"repository": "https://github.com/mafintosh/pump",
|
|
2976
|
+
"publisher": "Mathias Buus Madsen",
|
|
2977
|
+
"email": "mathiasbuus@gmail.com",
|
|
2978
|
+
"path": "/home/uiprgl/server/node_modules/pump",
|
|
2979
|
+
"licenseFile": "/home/uiprgl/server/node_modules/pump/LICENSE"
|
|
2980
|
+
},
|
|
2981
|
+
"punycode@1.3.2": {
|
|
2982
|
+
"licenses": "MIT",
|
|
2983
|
+
"repository": "https://github.com/bestiejs/punycode.js",
|
|
2984
|
+
"publisher": "Mathias Bynens",
|
|
2985
|
+
"url": "https://mathiasbynens.be/",
|
|
2986
|
+
"path": "/home/uiprgl/server/node_modules/punycode",
|
|
2987
|
+
"licenseFile": "/home/uiprgl/server/node_modules/punycode/LICENSE-MIT.txt"
|
|
2988
|
+
},
|
|
2989
|
+
"qrcode-terminal@0.12.0": {
|
|
2990
|
+
"licenses": "Apache 2.0",
|
|
2991
|
+
"repository": "https://github.com/gtanner/qrcode-terminal",
|
|
2992
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/qrcode-terminal",
|
|
2993
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/qrcode-terminal/LICENSE"
|
|
2994
|
+
},
|
|
2995
|
+
"qs@6.7.0": {
|
|
2996
|
+
"licenses": "BSD-3-Clause",
|
|
2997
|
+
"repository": "https://github.com/ljharb/qs",
|
|
2998
|
+
"path": "/home/uiprgl/server/node_modules/qs",
|
|
2999
|
+
"licenseFile": "/home/uiprgl/server/node_modules/qs/LICENSE"
|
|
3000
|
+
},
|
|
3001
|
+
"querystring@0.2.0": {
|
|
3002
|
+
"licenses": "MIT",
|
|
3003
|
+
"repository": "https://github.com/Gozala/querystring",
|
|
3004
|
+
"publisher": "Irakli Gozalishvili",
|
|
3005
|
+
"email": "rfobic@gmail.com",
|
|
3006
|
+
"path": "/home/uiprgl/server/node_modules/querystring",
|
|
3007
|
+
"licenseFile": "/home/uiprgl/server/node_modules/querystring/License.md"
|
|
3008
|
+
},
|
|
3009
|
+
"range-parser@1.2.1": {
|
|
3010
|
+
"licenses": "MIT",
|
|
3011
|
+
"repository": "https://github.com/jshttp/range-parser",
|
|
3012
|
+
"publisher": "TJ Holowaychuk",
|
|
3013
|
+
"email": "tj@vision-media.ca",
|
|
3014
|
+
"url": "http://tjholowaychuk.com",
|
|
3015
|
+
"path": "/home/uiprgl/server/node_modules/range-parser",
|
|
3016
|
+
"licenseFile": "/home/uiprgl/server/node_modules/range-parser/LICENSE"
|
|
3017
|
+
},
|
|
3018
|
+
"raw-body@2.4.0": {
|
|
3019
|
+
"licenses": "MIT",
|
|
3020
|
+
"repository": "https://github.com/stream-utils/raw-body",
|
|
3021
|
+
"publisher": "Jonathan Ong",
|
|
3022
|
+
"email": "me@jongleberry.com",
|
|
3023
|
+
"url": "http://jongleberry.com",
|
|
3024
|
+
"path": "/home/uiprgl/server/node_modules/raw-body",
|
|
3025
|
+
"licenseFile": "/home/uiprgl/server/node_modules/raw-body/LICENSE"
|
|
3026
|
+
},
|
|
3027
|
+
"rc@1.2.8": {
|
|
3028
|
+
"licenses": "(BSD-2-Clause OR MIT OR Apache-2.0)",
|
|
3029
|
+
"repository": "https://github.com/dominictarr/rc",
|
|
3030
|
+
"publisher": "Dominic Tarr",
|
|
3031
|
+
"email": "dominic.tarr@gmail.com",
|
|
3032
|
+
"url": "dominictarr.com",
|
|
3033
|
+
"path": "/home/uiprgl/server/node_modules/rc",
|
|
3034
|
+
"licenseFile": "/home/uiprgl/server/node_modules/rc/LICENSE.APACHE2"
|
|
3035
|
+
},
|
|
3036
|
+
"read-cmd-shim@2.0.0": {
|
|
3037
|
+
"licenses": "ISC",
|
|
3038
|
+
"repository": "https://github.com/npm/read-cmd-shim",
|
|
3039
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/read-cmd-shim",
|
|
3040
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/read-cmd-shim/LICENSE"
|
|
3041
|
+
},
|
|
3042
|
+
"read-package-json-fast@2.0.3": {
|
|
3043
|
+
"licenses": "ISC",
|
|
3044
|
+
"repository": "https://github.com/npm/read-package-json-fast",
|
|
3045
|
+
"publisher": "Isaac Z. Schlueter",
|
|
3046
|
+
"email": "i@izs.me",
|
|
3047
|
+
"url": "https://izs.me",
|
|
3048
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/read-package-json-fast",
|
|
3049
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/read-package-json-fast/LICENSE"
|
|
3050
|
+
},
|
|
3051
|
+
"read-package-json@4.1.1": {
|
|
3052
|
+
"licenses": "ISC",
|
|
3053
|
+
"repository": "https://github.com/npm/read-package-json",
|
|
3054
|
+
"publisher": "Isaac Z. Schlueter",
|
|
3055
|
+
"email": "i@izs.me",
|
|
3056
|
+
"url": "http://blog.izs.me/",
|
|
3057
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/read-package-json",
|
|
3058
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/read-package-json/LICENSE"
|
|
3059
|
+
},
|
|
3060
|
+
"read@1.0.7": {
|
|
3061
|
+
"licenses": "ISC",
|
|
3062
|
+
"repository": "https://github.com/isaacs/read",
|
|
3063
|
+
"publisher": "Isaac Z. Schlueter",
|
|
3064
|
+
"email": "i@izs.me",
|
|
3065
|
+
"url": "http://blog.izs.me/",
|
|
3066
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/read",
|
|
3067
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/read/LICENSE"
|
|
3068
|
+
},
|
|
3069
|
+
"readable-stream@2.3.7": {
|
|
3070
|
+
"licenses": "MIT",
|
|
3071
|
+
"repository": "https://github.com/nodejs/readable-stream",
|
|
3072
|
+
"path": "/home/uiprgl/server/node_modules/are-we-there-yet/node_modules/readable-stream",
|
|
3073
|
+
"licenseFile": "/home/uiprgl/server/node_modules/are-we-there-yet/node_modules/readable-stream/LICENSE"
|
|
3074
|
+
},
|
|
3075
|
+
"readable-stream@3.6.0": {
|
|
3076
|
+
"licenses": "MIT",
|
|
3077
|
+
"repository": "https://github.com/nodejs/readable-stream",
|
|
3078
|
+
"path": "/home/uiprgl/server/node_modules/readable-stream",
|
|
3079
|
+
"licenseFile": "/home/uiprgl/server/node_modules/readable-stream/LICENSE"
|
|
3080
|
+
},
|
|
3081
|
+
"readable-web-to-node-stream@3.0.2": {
|
|
3082
|
+
"licenses": "MIT",
|
|
3083
|
+
"repository": "https://github.com/Borewit/readable-web-to-node-stream",
|
|
3084
|
+
"publisher": "Borewit",
|
|
3085
|
+
"url": "https://github.com/Borewit",
|
|
3086
|
+
"path": "/home/uiprgl/server/node_modules/readable-web-to-node-stream",
|
|
3087
|
+
"licenseFile": "/home/uiprgl/server/node_modules/readable-web-to-node-stream/README.md"
|
|
3088
|
+
},
|
|
3089
|
+
"readdir-scoped-modules@1.1.0": {
|
|
3090
|
+
"licenses": "ISC",
|
|
3091
|
+
"repository": "https://github.com/npm/readdir-scoped-modules",
|
|
3092
|
+
"publisher": "Isaac Z. Schlueter",
|
|
3093
|
+
"email": "i@izs.me",
|
|
3094
|
+
"url": "http://blog.izs.me/",
|
|
3095
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/readdir-scoped-modules",
|
|
3096
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/readdir-scoped-modules/LICENSE"
|
|
3097
|
+
},
|
|
3098
|
+
"retry@0.12.0": {
|
|
3099
|
+
"licenses": "MIT",
|
|
3100
|
+
"repository": "https://github.com/tim-kos/node-retry",
|
|
3101
|
+
"publisher": "Tim Koschützki",
|
|
3102
|
+
"email": "tim@debuggable.com",
|
|
3103
|
+
"url": "http://debuggable.com/",
|
|
3104
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/retry",
|
|
3105
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/retry/License"
|
|
3106
|
+
},
|
|
3107
|
+
"rimraf@3.0.2": {
|
|
3108
|
+
"licenses": "ISC",
|
|
3109
|
+
"repository": "https://github.com/isaacs/rimraf",
|
|
3110
|
+
"publisher": "Isaac Z. Schlueter",
|
|
3111
|
+
"email": "i@izs.me",
|
|
3112
|
+
"url": "http://blog.izs.me/",
|
|
3113
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/rimraf",
|
|
3114
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/rimraf/LICENSE"
|
|
3115
|
+
},
|
|
3116
|
+
"safe-buffer@5.1.2": {
|
|
3117
|
+
"licenses": "MIT",
|
|
3118
|
+
"repository": "https://github.com/feross/safe-buffer",
|
|
3119
|
+
"publisher": "Feross Aboukhadijeh",
|
|
3120
|
+
"email": "feross@feross.org",
|
|
3121
|
+
"url": "http://feross.org",
|
|
3122
|
+
"path": "/home/uiprgl/server/node_modules/safe-buffer",
|
|
3123
|
+
"licenseFile": "/home/uiprgl/server/node_modules/safe-buffer/LICENSE"
|
|
3124
|
+
},
|
|
3125
|
+
"safe-buffer@5.2.1": {
|
|
3126
|
+
"licenses": "MIT",
|
|
3127
|
+
"repository": "https://github.com/feross/safe-buffer",
|
|
3128
|
+
"publisher": "Feross Aboukhadijeh",
|
|
3129
|
+
"email": "feross@feross.org",
|
|
3130
|
+
"url": "https://feross.org",
|
|
3131
|
+
"path": "/home/uiprgl/server/node_modules/string_decoder/node_modules/safe-buffer",
|
|
3132
|
+
"licenseFile": "/home/uiprgl/server/node_modules/string_decoder/node_modules/safe-buffer/LICENSE"
|
|
3133
|
+
},
|
|
3134
|
+
"safer-buffer@2.1.2": {
|
|
3135
|
+
"licenses": "MIT",
|
|
3136
|
+
"repository": "https://github.com/ChALkeR/safer-buffer",
|
|
3137
|
+
"publisher": "Nikita Skovoroda",
|
|
3138
|
+
"email": "chalkerx@gmail.com",
|
|
3139
|
+
"url": "https://github.com/ChALkeR",
|
|
3140
|
+
"path": "/home/uiprgl/server/node_modules/safer-buffer",
|
|
3141
|
+
"licenseFile": "/home/uiprgl/server/node_modules/safer-buffer/LICENSE"
|
|
3142
|
+
},
|
|
3143
|
+
"sax@1.2.1": {
|
|
3144
|
+
"licenses": "ISC",
|
|
3145
|
+
"repository": "https://github.com/isaacs/sax-js",
|
|
3146
|
+
"publisher": "Isaac Z. Schlueter",
|
|
3147
|
+
"email": "i@izs.me",
|
|
3148
|
+
"url": "http://blog.izs.me/",
|
|
3149
|
+
"path": "/home/uiprgl/server/node_modules/sax",
|
|
3150
|
+
"licenseFile": "/home/uiprgl/server/node_modules/sax/LICENSE"
|
|
3151
|
+
},
|
|
3152
|
+
"semver@7.3.5": {
|
|
3153
|
+
"licenses": "ISC",
|
|
3154
|
+
"repository": "https://github.com/npm/node-semver",
|
|
3155
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/semver",
|
|
3156
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/semver/LICENSE"
|
|
3157
|
+
},
|
|
3158
|
+
"send@0.17.1": {
|
|
3159
|
+
"licenses": "MIT",
|
|
3160
|
+
"repository": "https://github.com/pillarjs/send",
|
|
3161
|
+
"publisher": "TJ Holowaychuk",
|
|
3162
|
+
"email": "tj@vision-media.ca",
|
|
3163
|
+
"path": "/home/uiprgl/server/node_modules/send",
|
|
3164
|
+
"licenseFile": "/home/uiprgl/server/node_modules/send/LICENSE"
|
|
3165
|
+
},
|
|
3166
|
+
"serve-static@1.14.1": {
|
|
3167
|
+
"licenses": "MIT",
|
|
3168
|
+
"repository": "https://github.com/expressjs/serve-static",
|
|
3169
|
+
"publisher": "Douglas Christopher Wilson",
|
|
3170
|
+
"email": "doug@somethingdoug.com",
|
|
3171
|
+
"path": "/home/uiprgl/server/node_modules/serve-static",
|
|
3172
|
+
"licenseFile": "/home/uiprgl/server/node_modules/serve-static/LICENSE"
|
|
3173
|
+
},
|
|
3174
|
+
"set-blocking@2.0.0": {
|
|
3175
|
+
"licenses": "ISC",
|
|
3176
|
+
"repository": "https://github.com/yargs/set-blocking",
|
|
3177
|
+
"publisher": "Ben Coe",
|
|
3178
|
+
"email": "ben@npmjs.com",
|
|
3179
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/set-blocking",
|
|
3180
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/set-blocking/LICENSE.txt"
|
|
3181
|
+
},
|
|
3182
|
+
"setprototypeof@1.1.1": {
|
|
3183
|
+
"licenses": "ISC",
|
|
3184
|
+
"repository": "https://github.com/wesleytodd/setprototypeof",
|
|
3185
|
+
"publisher": "Wes Todd",
|
|
3186
|
+
"path": "/home/uiprgl/server/node_modules/setprototypeof",
|
|
3187
|
+
"licenseFile": "/home/uiprgl/server/node_modules/setprototypeof/LICENSE"
|
|
3188
|
+
},
|
|
3189
|
+
"sharp@0.29.3": {
|
|
3190
|
+
"licenses": "Apache-2.0",
|
|
3191
|
+
"repository": "https://github.com/lovell/sharp",
|
|
3192
|
+
"publisher": "Lovell Fuller",
|
|
3193
|
+
"email": "npm@lovell.info",
|
|
3194
|
+
"path": "/home/uiprgl/server/node_modules/sharp",
|
|
3195
|
+
"licenseFile": "/home/uiprgl/server/node_modules/sharp/LICENSE"
|
|
3196
|
+
},
|
|
3197
|
+
"shebang-command@2.0.0": {
|
|
3198
|
+
"licenses": "MIT",
|
|
3199
|
+
"repository": "https://github.com/kevva/shebang-command",
|
|
3200
|
+
"publisher": "Kevin Mårtensson",
|
|
3201
|
+
"email": "kevinmartensson@gmail.com",
|
|
3202
|
+
"url": "github.com/kevva",
|
|
3203
|
+
"path": "/home/uiprgl/server/node_modules/shebang-command",
|
|
3204
|
+
"licenseFile": "/home/uiprgl/server/node_modules/shebang-command/license"
|
|
3205
|
+
},
|
|
3206
|
+
"shebang-regex@3.0.0": {
|
|
3207
|
+
"licenses": "MIT",
|
|
3208
|
+
"repository": "https://github.com/sindresorhus/shebang-regex",
|
|
3209
|
+
"publisher": "Sindre Sorhus",
|
|
3210
|
+
"email": "sindresorhus@gmail.com",
|
|
3211
|
+
"url": "sindresorhus.com",
|
|
3212
|
+
"path": "/home/uiprgl/server/node_modules/shebang-regex",
|
|
3213
|
+
"licenseFile": "/home/uiprgl/server/node_modules/shebang-regex/license"
|
|
3214
|
+
},
|
|
3215
|
+
"signal-exit@3.0.6": {
|
|
3216
|
+
"licenses": "ISC",
|
|
3217
|
+
"repository": "https://github.com/tapjs/signal-exit",
|
|
3218
|
+
"publisher": "Ben Coe",
|
|
3219
|
+
"email": "ben@npmjs.com",
|
|
3220
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/signal-exit",
|
|
3221
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/signal-exit/LICENSE.txt"
|
|
3222
|
+
},
|
|
3223
|
+
"simple-concat@1.0.1": {
|
|
3224
|
+
"licenses": "MIT",
|
|
3225
|
+
"repository": "https://github.com/feross/simple-concat",
|
|
3226
|
+
"publisher": "Feross Aboukhadijeh",
|
|
3227
|
+
"email": "feross@feross.org",
|
|
3228
|
+
"url": "https://feross.org",
|
|
3229
|
+
"path": "/home/uiprgl/server/node_modules/simple-concat",
|
|
3230
|
+
"licenseFile": "/home/uiprgl/server/node_modules/simple-concat/LICENSE"
|
|
3231
|
+
},
|
|
3232
|
+
"simple-get@4.0.0": {
|
|
3233
|
+
"licenses": "MIT",
|
|
3234
|
+
"repository": "https://github.com/feross/simple-get",
|
|
3235
|
+
"publisher": "Feross Aboukhadijeh",
|
|
3236
|
+
"email": "feross@feross.org",
|
|
3237
|
+
"url": "https://feross.org",
|
|
3238
|
+
"path": "/home/uiprgl/server/node_modules/simple-get",
|
|
3239
|
+
"licenseFile": "/home/uiprgl/server/node_modules/simple-get/LICENSE"
|
|
3240
|
+
},
|
|
3241
|
+
"simple-swizzle@0.2.2": {
|
|
3242
|
+
"licenses": "MIT",
|
|
3243
|
+
"repository": "https://github.com/qix-/node-simple-swizzle",
|
|
3244
|
+
"publisher": "Qix",
|
|
3245
|
+
"url": "http://github.com/qix-",
|
|
3246
|
+
"path": "/home/uiprgl/server/node_modules/simple-swizzle",
|
|
3247
|
+
"licenseFile": "/home/uiprgl/server/node_modules/simple-swizzle/LICENSE"
|
|
3248
|
+
},
|
|
3249
|
+
"smart-buffer@4.2.0": {
|
|
3250
|
+
"licenses": "MIT",
|
|
3251
|
+
"repository": "https://github.com/JoshGlazebrook/smart-buffer",
|
|
3252
|
+
"publisher": "Josh Glazebrook",
|
|
3253
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/smart-buffer",
|
|
3254
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/smart-buffer/LICENSE"
|
|
3255
|
+
},
|
|
3256
|
+
"socket.io-adapter@2.1.0": {
|
|
3257
|
+
"licenses": "MIT",
|
|
3258
|
+
"repository": "https://github.com/socketio/socket.io-adapter",
|
|
3259
|
+
"path": "/home/uiprgl/server/node_modules/socket.io-adapter",
|
|
3260
|
+
"licenseFile": "/home/uiprgl/server/node_modules/socket.io-adapter/LICENSE"
|
|
3261
|
+
},
|
|
3262
|
+
"socket.io-parser@4.0.4": {
|
|
3263
|
+
"licenses": "MIT",
|
|
3264
|
+
"repository": "https://github.com/socketio/socket.io-parser",
|
|
3265
|
+
"path": "/home/uiprgl/server/node_modules/socket.io-parser",
|
|
3266
|
+
"licenseFile": "/home/uiprgl/server/node_modules/socket.io-parser/LICENSE"
|
|
3267
|
+
},
|
|
3268
|
+
"socket.io@3.1.2": {
|
|
3269
|
+
"licenses": "MIT",
|
|
3270
|
+
"repository": "https://github.com/socketio/socket.io",
|
|
3271
|
+
"path": "/home/uiprgl/server/node_modules/socket.io",
|
|
3272
|
+
"licenseFile": "/home/uiprgl/server/node_modules/socket.io/LICENSE"
|
|
3273
|
+
},
|
|
3274
|
+
"socks-proxy-agent@6.1.0": {
|
|
3275
|
+
"licenses": "MIT",
|
|
3276
|
+
"repository": "https://github.com/TooTallNate/node-socks-proxy-agent",
|
|
3277
|
+
"publisher": "Nathan Rajlich",
|
|
3278
|
+
"email": "nathan@tootallnate.net",
|
|
3279
|
+
"url": "http://n8.io/",
|
|
3280
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/socks-proxy-agent"
|
|
3281
|
+
},
|
|
3282
|
+
"socks@2.6.1": {
|
|
3283
|
+
"licenses": "MIT",
|
|
3284
|
+
"repository": "https://github.com/JoshGlazebrook/socks",
|
|
3285
|
+
"publisher": "Josh Glazebrook",
|
|
3286
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/socks",
|
|
3287
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/socks/LICENSE"
|
|
3288
|
+
},
|
|
3289
|
+
"spdx-correct@3.1.1": {
|
|
3290
|
+
"licenses": "Apache-2.0",
|
|
3291
|
+
"repository": "https://github.com/jslicense/spdx-correct.js",
|
|
3292
|
+
"publisher": "Kyle E. Mitchell",
|
|
3293
|
+
"email": "kyle@kemitchell.com",
|
|
3294
|
+
"url": "https://kemitchell.com",
|
|
3295
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/spdx-correct",
|
|
3296
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/spdx-correct/LICENSE"
|
|
3297
|
+
},
|
|
3298
|
+
"spdx-exceptions@2.3.0": {
|
|
3299
|
+
"licenses": "CC-BY-3.0",
|
|
3300
|
+
"repository": "https://github.com/kemitchell/spdx-exceptions.json",
|
|
3301
|
+
"publisher": "The Linux Foundation",
|
|
3302
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/spdx-exceptions"
|
|
3303
|
+
},
|
|
3304
|
+
"spdx-expression-parse@3.0.1": {
|
|
3305
|
+
"licenses": "MIT",
|
|
3306
|
+
"repository": "https://github.com/jslicense/spdx-expression-parse.js",
|
|
3307
|
+
"publisher": "Kyle E. Mitchell",
|
|
3308
|
+
"email": "kyle@kemitchell.com",
|
|
3309
|
+
"url": "https://kemitchell.com",
|
|
3310
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/spdx-expression-parse",
|
|
3311
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/spdx-expression-parse/LICENSE"
|
|
3312
|
+
},
|
|
3313
|
+
"spdx-license-ids@3.0.10": {
|
|
3314
|
+
"licenses": "CC0-1.0",
|
|
3315
|
+
"repository": "https://github.com/jslicense/spdx-license-ids",
|
|
3316
|
+
"publisher": "Shinnosuke Watanabe",
|
|
3317
|
+
"url": "https://github.com/shinnn",
|
|
3318
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/spdx-license-ids"
|
|
3319
|
+
},
|
|
3320
|
+
"spex@3.2.0": {
|
|
3321
|
+
"licenses": "MIT",
|
|
3322
|
+
"repository": "https://github.com/vitaly-t/spex",
|
|
3323
|
+
"publisher": "Vitaly Tomilov",
|
|
3324
|
+
"email": "vitaly.tomilov@gmail.com",
|
|
3325
|
+
"path": "/home/uiprgl/server/node_modules/spex",
|
|
3326
|
+
"licenseFile": "/home/uiprgl/server/node_modules/spex/README.md"
|
|
3327
|
+
},
|
|
3328
|
+
"split2@3.2.2": {
|
|
3329
|
+
"licenses": "ISC",
|
|
3330
|
+
"repository": "https://github.com/mcollina/split2",
|
|
3331
|
+
"publisher": "Matteo Collina",
|
|
3332
|
+
"email": "hello@matteocollina.com",
|
|
3333
|
+
"path": "/home/uiprgl/server/node_modules/split2",
|
|
3334
|
+
"licenseFile": "/home/uiprgl/server/node_modules/split2/LICENSE"
|
|
3335
|
+
},
|
|
3336
|
+
"split@0.3.3": {
|
|
3337
|
+
"licenses": "MIT",
|
|
3338
|
+
"repository": "https://github.com/dominictarr/split",
|
|
3339
|
+
"publisher": "Dominic Tarr",
|
|
3340
|
+
"email": "dominic.tarr@gmail.com",
|
|
3341
|
+
"url": "http://bit.ly/dominictarr",
|
|
3342
|
+
"path": "/home/uiprgl/server/node_modules/split",
|
|
3343
|
+
"licenseFile": "/home/uiprgl/server/node_modules/split/LICENCE"
|
|
3344
|
+
},
|
|
3345
|
+
"ssri@8.0.1": {
|
|
3346
|
+
"licenses": "ISC",
|
|
3347
|
+
"repository": "https://github.com/npm/ssri",
|
|
3348
|
+
"publisher": "Kat Marchán",
|
|
3349
|
+
"email": "kzm@sykosomatic.org",
|
|
3350
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/ssri",
|
|
3351
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/ssri/LICENSE.md"
|
|
3352
|
+
},
|
|
3353
|
+
"statuses@1.5.0": {
|
|
3354
|
+
"licenses": "MIT",
|
|
3355
|
+
"repository": "https://github.com/jshttp/statuses",
|
|
3356
|
+
"path": "/home/uiprgl/server/node_modules/statuses",
|
|
3357
|
+
"licenseFile": "/home/uiprgl/server/node_modules/statuses/LICENSE"
|
|
3358
|
+
},
|
|
3359
|
+
"stream-combiner@0.0.4": {
|
|
3360
|
+
"licenses": "MIT",
|
|
3361
|
+
"repository": "https://github.com/dominictarr/stream-combiner",
|
|
3362
|
+
"publisher": "'Dominic Tarr'",
|
|
3363
|
+
"email": "dominic.tarr@gmail.com",
|
|
3364
|
+
"url": "http://dominictarr.com",
|
|
3365
|
+
"path": "/home/uiprgl/server/node_modules/stream-combiner",
|
|
3366
|
+
"licenseFile": "/home/uiprgl/server/node_modules/stream-combiner/LICENSE"
|
|
3367
|
+
},
|
|
3368
|
+
"string-argv@0.1.2": {
|
|
3369
|
+
"licenses": "MIT",
|
|
3370
|
+
"repository": "https://github.com/mccormicka/string-argv",
|
|
3371
|
+
"publisher": "Anthony McCormick",
|
|
3372
|
+
"email": "anthony.mccormick@gmail.com",
|
|
3373
|
+
"path": "/home/uiprgl/server/node_modules/string-argv",
|
|
3374
|
+
"licenseFile": "/home/uiprgl/server/node_modules/string-argv/LICENSE"
|
|
3375
|
+
},
|
|
3376
|
+
"string-width@1.0.2": {
|
|
3377
|
+
"licenses": "MIT",
|
|
3378
|
+
"repository": "https://github.com/sindresorhus/string-width",
|
|
3379
|
+
"publisher": "Sindre Sorhus",
|
|
3380
|
+
"email": "sindresorhus@gmail.com",
|
|
3381
|
+
"url": "sindresorhus.com",
|
|
3382
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/node-gyp/node_modules/string-width",
|
|
3383
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/node-gyp/node_modules/string-width/license"
|
|
3384
|
+
},
|
|
3385
|
+
"string-width@2.1.1": {
|
|
3386
|
+
"licenses": "MIT",
|
|
3387
|
+
"repository": "https://github.com/sindresorhus/string-width",
|
|
3388
|
+
"publisher": "Sindre Sorhus",
|
|
3389
|
+
"email": "sindresorhus@gmail.com",
|
|
3390
|
+
"url": "sindresorhus.com",
|
|
3391
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/string-width",
|
|
3392
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/string-width/license"
|
|
3393
|
+
},
|
|
3394
|
+
"string-width@4.2.2": {
|
|
3395
|
+
"licenses": "MIT",
|
|
3396
|
+
"repository": "https://github.com/sindresorhus/string-width",
|
|
3397
|
+
"publisher": "Sindre Sorhus",
|
|
3398
|
+
"email": "sindresorhus@gmail.com",
|
|
3399
|
+
"url": "sindresorhus.com",
|
|
3400
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/cli-table3/node_modules/string-width",
|
|
3401
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/cli-table3/node_modules/string-width/license"
|
|
3402
|
+
},
|
|
3403
|
+
"string-width@4.2.3": {
|
|
3404
|
+
"licenses": "MIT",
|
|
3405
|
+
"repository": "https://github.com/sindresorhus/string-width",
|
|
3406
|
+
"publisher": "Sindre Sorhus",
|
|
3407
|
+
"email": "sindresorhus@gmail.com",
|
|
3408
|
+
"url": "sindresorhus.com",
|
|
3409
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/cli-columns/node_modules/string-width",
|
|
3410
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/cli-columns/node_modules/string-width/license"
|
|
3411
|
+
},
|
|
3412
|
+
"string_decoder@1.1.1": {
|
|
3413
|
+
"licenses": "MIT",
|
|
3414
|
+
"repository": "https://github.com/nodejs/string_decoder",
|
|
3415
|
+
"path": "/home/uiprgl/server/node_modules/are-we-there-yet/node_modules/string_decoder",
|
|
3416
|
+
"licenseFile": "/home/uiprgl/server/node_modules/are-we-there-yet/node_modules/string_decoder/LICENSE"
|
|
3417
|
+
},
|
|
3418
|
+
"string_decoder@1.3.0": {
|
|
3419
|
+
"licenses": "MIT",
|
|
3420
|
+
"repository": "https://github.com/nodejs/string_decoder",
|
|
3421
|
+
"path": "/home/uiprgl/server/node_modules/string_decoder",
|
|
3422
|
+
"licenseFile": "/home/uiprgl/server/node_modules/string_decoder/LICENSE"
|
|
3423
|
+
},
|
|
3424
|
+
"stringify-package@1.0.1": {
|
|
3425
|
+
"licenses": "ISC",
|
|
3426
|
+
"repository": "https://github.com/npm/stringify-package",
|
|
3427
|
+
"publisher": "Kat Marchán",
|
|
3428
|
+
"email": "kzm@zkat.tech",
|
|
3429
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/stringify-package",
|
|
3430
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/stringify-package/LICENSE"
|
|
3431
|
+
},
|
|
3432
|
+
"strip-ansi@3.0.1": {
|
|
3433
|
+
"licenses": "MIT",
|
|
3434
|
+
"repository": "https://github.com/chalk/strip-ansi",
|
|
3435
|
+
"publisher": "Sindre Sorhus",
|
|
3436
|
+
"email": "sindresorhus@gmail.com",
|
|
3437
|
+
"url": "sindresorhus.com",
|
|
3438
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/strip-ansi",
|
|
3439
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/strip-ansi/license"
|
|
3440
|
+
},
|
|
3441
|
+
"strip-ansi@4.0.0": {
|
|
3442
|
+
"licenses": "MIT",
|
|
3443
|
+
"repository": "https://github.com/chalk/strip-ansi",
|
|
3444
|
+
"publisher": "Sindre Sorhus",
|
|
3445
|
+
"email": "sindresorhus@gmail.com",
|
|
3446
|
+
"url": "sindresorhus.com",
|
|
3447
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/string-width/node_modules/strip-ansi",
|
|
3448
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/license"
|
|
3449
|
+
},
|
|
3450
|
+
"strip-ansi@6.0.0": {
|
|
3451
|
+
"licenses": "MIT",
|
|
3452
|
+
"repository": "https://github.com/chalk/strip-ansi",
|
|
3453
|
+
"publisher": "Sindre Sorhus",
|
|
3454
|
+
"email": "sindresorhus@gmail.com",
|
|
3455
|
+
"url": "sindresorhus.com",
|
|
3456
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/cli-table3/node_modules/strip-ansi",
|
|
3457
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/cli-table3/node_modules/strip-ansi/license"
|
|
3458
|
+
},
|
|
3459
|
+
"strip-ansi@6.0.1": {
|
|
3460
|
+
"licenses": "MIT",
|
|
3461
|
+
"repository": "https://github.com/chalk/strip-ansi",
|
|
3462
|
+
"publisher": "Sindre Sorhus",
|
|
3463
|
+
"email": "sindresorhus@gmail.com",
|
|
3464
|
+
"url": "sindresorhus.com",
|
|
3465
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi",
|
|
3466
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/license"
|
|
3467
|
+
},
|
|
3468
|
+
"strip-bom@2.0.0": {
|
|
3469
|
+
"licenses": "MIT",
|
|
3470
|
+
"repository": "https://github.com/sindresorhus/strip-bom",
|
|
3471
|
+
"publisher": "Sindre Sorhus",
|
|
3472
|
+
"email": "sindresorhus@gmail.com",
|
|
3473
|
+
"url": "sindresorhus.com",
|
|
3474
|
+
"path": "/home/uiprgl/server/node_modules/strip-bom",
|
|
3475
|
+
"licenseFile": "/home/uiprgl/server/node_modules/strip-bom/license"
|
|
3476
|
+
},
|
|
3477
|
+
"strip-json-comments@2.0.1": {
|
|
3478
|
+
"licenses": "MIT",
|
|
3479
|
+
"repository": "https://github.com/sindresorhus/strip-json-comments",
|
|
3480
|
+
"publisher": "Sindre Sorhus",
|
|
3481
|
+
"email": "sindresorhus@gmail.com",
|
|
3482
|
+
"url": "sindresorhus.com",
|
|
3483
|
+
"path": "/home/uiprgl/server/node_modules/strip-json-comments",
|
|
3484
|
+
"licenseFile": "/home/uiprgl/server/node_modules/strip-json-comments/license"
|
|
3485
|
+
},
|
|
3486
|
+
"strtok3@6.2.4": {
|
|
3487
|
+
"licenses": "MIT",
|
|
3488
|
+
"repository": "https://github.com/Borewit/strtok3",
|
|
3489
|
+
"publisher": "Borewit",
|
|
3490
|
+
"url": "https://github.com/Borewit",
|
|
3491
|
+
"path": "/home/uiprgl/server/node_modules/strtok3",
|
|
3492
|
+
"licenseFile": "/home/uiprgl/server/node_modules/strtok3/LICENSE"
|
|
3493
|
+
},
|
|
3494
|
+
"supports-color@7.2.0": {
|
|
3495
|
+
"licenses": "MIT",
|
|
3496
|
+
"repository": "https://github.com/chalk/supports-color",
|
|
3497
|
+
"publisher": "Sindre Sorhus",
|
|
3498
|
+
"email": "sindresorhus@gmail.com",
|
|
3499
|
+
"url": "sindresorhus.com",
|
|
3500
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/supports-color",
|
|
3501
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/supports-color/license"
|
|
3502
|
+
},
|
|
3503
|
+
"tar-fs@2.1.1": {
|
|
3504
|
+
"licenses": "MIT",
|
|
3505
|
+
"repository": "https://github.com/mafintosh/tar-fs",
|
|
3506
|
+
"publisher": "Mathias Buus",
|
|
3507
|
+
"path": "/home/uiprgl/server/node_modules/tar-fs",
|
|
3508
|
+
"licenseFile": "/home/uiprgl/server/node_modules/tar-fs/LICENSE"
|
|
3509
|
+
},
|
|
3510
|
+
"tar-stream@2.2.0": {
|
|
3511
|
+
"licenses": "MIT",
|
|
3512
|
+
"repository": "https://github.com/mafintosh/tar-stream",
|
|
3513
|
+
"publisher": "Mathias Buus",
|
|
3514
|
+
"email": "mathiasbuus@gmail.com",
|
|
3515
|
+
"path": "/home/uiprgl/server/node_modules/tar-stream",
|
|
3516
|
+
"licenseFile": "/home/uiprgl/server/node_modules/tar-stream/LICENSE"
|
|
3517
|
+
},
|
|
3518
|
+
"tar@6.1.11": {
|
|
3519
|
+
"licenses": "ISC",
|
|
3520
|
+
"repository": "https://github.com/npm/node-tar",
|
|
3521
|
+
"publisher": "Isaac Z. Schlueter",
|
|
3522
|
+
"email": "i@izs.me",
|
|
3523
|
+
"url": "http://blog.izs.me/",
|
|
3524
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/tar",
|
|
3525
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/tar/LICENSE"
|
|
3526
|
+
},
|
|
3527
|
+
"text-table@0.2.0": {
|
|
3528
|
+
"licenses": "MIT",
|
|
3529
|
+
"repository": "https://github.com/substack/text-table",
|
|
3530
|
+
"publisher": "James Halliday",
|
|
3531
|
+
"email": "mail@substack.net",
|
|
3532
|
+
"url": "http://substack.net",
|
|
3533
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/text-table",
|
|
3534
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/text-table/LICENSE"
|
|
3535
|
+
},
|
|
3536
|
+
"through@2.3.8": {
|
|
3537
|
+
"licenses": "MIT",
|
|
3538
|
+
"repository": "https://github.com/dominictarr/through",
|
|
3539
|
+
"publisher": "Dominic Tarr",
|
|
3540
|
+
"email": "dominic.tarr@gmail.com",
|
|
3541
|
+
"url": "dominictarr.com",
|
|
3542
|
+
"path": "/home/uiprgl/server/node_modules/through",
|
|
3543
|
+
"licenseFile": "/home/uiprgl/server/node_modules/through/LICENSE.APACHE2"
|
|
3544
|
+
},
|
|
3545
|
+
"tiny-relative-date@1.3.0": {
|
|
3546
|
+
"licenses": "MIT",
|
|
3547
|
+
"repository": "https://github.com/wildlyinaccurate/relative-date",
|
|
3548
|
+
"publisher": "Joseph Wynn",
|
|
3549
|
+
"email": "joseph@wildlyinaccurate.com",
|
|
3550
|
+
"url": "https://wildlyinaccurate.com/",
|
|
3551
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/tiny-relative-date",
|
|
3552
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/tiny-relative-date/LICENSE.md"
|
|
3553
|
+
},
|
|
3554
|
+
"toidentifier@1.0.0": {
|
|
3555
|
+
"licenses": "MIT",
|
|
3556
|
+
"repository": "https://github.com/component/toidentifier",
|
|
3557
|
+
"publisher": "Douglas Christopher Wilson",
|
|
3558
|
+
"email": "doug@somethingdoug.com",
|
|
3559
|
+
"path": "/home/uiprgl/server/node_modules/toidentifier",
|
|
3560
|
+
"licenseFile": "/home/uiprgl/server/node_modules/toidentifier/LICENSE"
|
|
3561
|
+
},
|
|
3562
|
+
"token-types@4.1.1": {
|
|
3563
|
+
"licenses": "MIT",
|
|
3564
|
+
"repository": "https://github.com/Borewit/token-types",
|
|
3565
|
+
"publisher": "Borewit",
|
|
3566
|
+
"url": "https://github.com/Borewit",
|
|
3567
|
+
"path": "/home/uiprgl/server/node_modules/token-types",
|
|
3568
|
+
"licenseFile": "/home/uiprgl/server/node_modules/token-types/LICENSE"
|
|
3569
|
+
},
|
|
3570
|
+
"treeverse@1.0.4": {
|
|
3571
|
+
"licenses": "ISC",
|
|
3572
|
+
"repository": "https://github.com/npm/treeverse",
|
|
3573
|
+
"publisher": "Isaac Z. Schlueter",
|
|
3574
|
+
"email": "i@izs.me",
|
|
3575
|
+
"url": "https://izs.me",
|
|
3576
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/treeverse",
|
|
3577
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/treeverse/LICENSE"
|
|
3578
|
+
},
|
|
3579
|
+
"tsc-watch@4.2.9": {
|
|
3580
|
+
"licenses": "MIT",
|
|
3581
|
+
"repository": "https://github.com/gilamran/tsc-watch",
|
|
3582
|
+
"publisher": "Gil Amran",
|
|
3583
|
+
"path": "/home/uiprgl/server/node_modules/tsc-watch",
|
|
3584
|
+
"licenseFile": "/home/uiprgl/server/node_modules/tsc-watch/LICENSE"
|
|
3585
|
+
},
|
|
3586
|
+
"tslib@1.14.1": {
|
|
3587
|
+
"licenses": "0BSD",
|
|
3588
|
+
"repository": "https://github.com/Microsoft/tslib",
|
|
3589
|
+
"publisher": "Microsoft Corp.",
|
|
3590
|
+
"path": "/home/uiprgl/server/node_modules/@aws-crypto/ie11-detection/node_modules/tslib",
|
|
3591
|
+
"licenseFile": "/home/uiprgl/server/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/LICENSE.txt"
|
|
3592
|
+
},
|
|
3593
|
+
"tslib@2.3.1": {
|
|
3594
|
+
"licenses": "0BSD",
|
|
3595
|
+
"repository": "https://github.com/Microsoft/tslib",
|
|
3596
|
+
"publisher": "Microsoft Corp.",
|
|
3597
|
+
"path": "/home/uiprgl/server/node_modules/tslib",
|
|
3598
|
+
"licenseFile": "/home/uiprgl/server/node_modules/tslib/LICENSE.txt"
|
|
3599
|
+
},
|
|
3600
|
+
"tunnel-agent@0.6.0": {
|
|
3601
|
+
"licenses": "Apache-2.0",
|
|
3602
|
+
"repository": "https://github.com/mikeal/tunnel-agent",
|
|
3603
|
+
"publisher": "Mikeal Rogers",
|
|
3604
|
+
"email": "mikeal.rogers@gmail.com",
|
|
3605
|
+
"url": "http://www.futurealoof.com",
|
|
3606
|
+
"path": "/home/uiprgl/server/node_modules/tunnel-agent",
|
|
3607
|
+
"licenseFile": "/home/uiprgl/server/node_modules/tunnel-agent/LICENSE"
|
|
3608
|
+
},
|
|
3609
|
+
"type-is@1.6.18": {
|
|
3610
|
+
"licenses": "MIT",
|
|
3611
|
+
"repository": "https://github.com/jshttp/type-is",
|
|
3612
|
+
"path": "/home/uiprgl/server/node_modules/type-is",
|
|
3613
|
+
"licenseFile": "/home/uiprgl/server/node_modules/type-is/LICENSE"
|
|
3614
|
+
},
|
|
3615
|
+
"typedarray-to-buffer@3.1.5": {
|
|
3616
|
+
"licenses": "MIT",
|
|
3617
|
+
"repository": "https://github.com/feross/typedarray-to-buffer",
|
|
3618
|
+
"publisher": "Feross Aboukhadijeh",
|
|
3619
|
+
"email": "feross@feross.org",
|
|
3620
|
+
"url": "http://feross.org/",
|
|
3621
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/typedarray-to-buffer",
|
|
3622
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/typedarray-to-buffer/LICENSE"
|
|
3623
|
+
},
|
|
3624
|
+
"typescript@4.2.4": {
|
|
3625
|
+
"licenses": "Apache-2.0",
|
|
3626
|
+
"repository": "https://github.com/Microsoft/TypeScript",
|
|
3627
|
+
"publisher": "Microsoft Corp.",
|
|
3628
|
+
"path": "/home/uiprgl/server/node_modules/typescript",
|
|
3629
|
+
"licenseFile": "/home/uiprgl/server/node_modules/typescript/LICENSE.txt"
|
|
3630
|
+
},
|
|
3631
|
+
"unique-filename@1.1.1": {
|
|
3632
|
+
"licenses": "ISC",
|
|
3633
|
+
"repository": "https://github.com/iarna/unique-filename",
|
|
3634
|
+
"publisher": "Rebecca Turner",
|
|
3635
|
+
"email": "me@re-becca.org",
|
|
3636
|
+
"url": "http://re-becca.org/",
|
|
3637
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/unique-filename",
|
|
3638
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/unique-filename/LICENSE"
|
|
3639
|
+
},
|
|
3640
|
+
"unique-slug@2.0.2": {
|
|
3641
|
+
"licenses": "ISC",
|
|
3642
|
+
"repository": "https://github.com/iarna/unique-slug",
|
|
3643
|
+
"publisher": "Rebecca Turner",
|
|
3644
|
+
"email": "me@re-becca.org",
|
|
3645
|
+
"url": "http://re-becca.org",
|
|
3646
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/unique-slug",
|
|
3647
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/unique-slug/LICENSE"
|
|
3648
|
+
},
|
|
3649
|
+
"unpipe@1.0.0": {
|
|
3650
|
+
"licenses": "MIT",
|
|
3651
|
+
"repository": "https://github.com/stream-utils/unpipe",
|
|
3652
|
+
"publisher": "Douglas Christopher Wilson",
|
|
3653
|
+
"email": "doug@somethingdoug.com",
|
|
3654
|
+
"path": "/home/uiprgl/server/node_modules/unpipe",
|
|
3655
|
+
"licenseFile": "/home/uiprgl/server/node_modules/unpipe/LICENSE"
|
|
3656
|
+
},
|
|
3657
|
+
"url@0.10.3": {
|
|
3658
|
+
"licenses": "MIT",
|
|
3659
|
+
"repository": "https://github.com/defunctzombie/node-url",
|
|
3660
|
+
"path": "/home/uiprgl/server/node_modules/url",
|
|
3661
|
+
"licenseFile": "/home/uiprgl/server/node_modules/url/LICENSE"
|
|
3662
|
+
},
|
|
3663
|
+
"util-deprecate@1.0.2": {
|
|
3664
|
+
"licenses": "MIT",
|
|
3665
|
+
"repository": "https://github.com/TooTallNate/util-deprecate",
|
|
3666
|
+
"publisher": "Nathan Rajlich",
|
|
3667
|
+
"email": "nathan@tootallnate.net",
|
|
3668
|
+
"url": "http://n8.io/",
|
|
3669
|
+
"path": "/home/uiprgl/server/node_modules/util-deprecate",
|
|
3670
|
+
"licenseFile": "/home/uiprgl/server/node_modules/util-deprecate/LICENSE"
|
|
3671
|
+
},
|
|
3672
|
+
"utils-merge@1.0.1": {
|
|
3673
|
+
"licenses": "MIT",
|
|
3674
|
+
"repository": "https://github.com/jaredhanson/utils-merge",
|
|
3675
|
+
"publisher": "Jared Hanson",
|
|
3676
|
+
"email": "jaredhanson@gmail.com",
|
|
3677
|
+
"url": "http://www.jaredhanson.net/",
|
|
3678
|
+
"path": "/home/uiprgl/server/node_modules/utils-merge",
|
|
3679
|
+
"licenseFile": "/home/uiprgl/server/node_modules/utils-merge/LICENSE"
|
|
3680
|
+
},
|
|
3681
|
+
"uuid@3.3.2": {
|
|
3682
|
+
"licenses": "MIT",
|
|
3683
|
+
"repository": "https://github.com/kelektiv/node-uuid",
|
|
3684
|
+
"path": "/home/uiprgl/server/node_modules/aws-sdk/node_modules/uuid",
|
|
3685
|
+
"licenseFile": "/home/uiprgl/server/node_modules/aws-sdk/node_modules/uuid/LICENSE.md"
|
|
3686
|
+
},
|
|
3687
|
+
"uuid@8.3.2": {
|
|
3688
|
+
"licenses": "MIT",
|
|
3689
|
+
"repository": "https://github.com/uuidjs/uuid",
|
|
3690
|
+
"path": "/home/uiprgl/server/node_modules/uuid",
|
|
3691
|
+
"licenseFile": "/home/uiprgl/server/node_modules/uuid/LICENSE.md"
|
|
3692
|
+
},
|
|
3693
|
+
"validate-npm-package-license@3.0.4": {
|
|
3694
|
+
"licenses": "Apache-2.0",
|
|
3695
|
+
"repository": "https://github.com/kemitchell/validate-npm-package-license.js",
|
|
3696
|
+
"publisher": "Kyle E. Mitchell",
|
|
3697
|
+
"email": "kyle@kemitchell.com",
|
|
3698
|
+
"url": "https://kemitchell.com",
|
|
3699
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/validate-npm-package-license",
|
|
3700
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/validate-npm-package-license/LICENSE"
|
|
3701
|
+
},
|
|
3702
|
+
"validate-npm-package-name@3.0.0": {
|
|
3703
|
+
"licenses": "ISC",
|
|
3704
|
+
"repository": "https://github.com/npm/validate-npm-package-name",
|
|
3705
|
+
"publisher": "zeke",
|
|
3706
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/validate-npm-package-name",
|
|
3707
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/validate-npm-package-name/LICENSE"
|
|
3708
|
+
},
|
|
3709
|
+
"vary@1.1.2": {
|
|
3710
|
+
"licenses": "MIT",
|
|
3711
|
+
"repository": "https://github.com/jshttp/vary",
|
|
3712
|
+
"publisher": "Douglas Christopher Wilson",
|
|
3713
|
+
"email": "doug@somethingdoug.com",
|
|
3714
|
+
"path": "/home/uiprgl/server/node_modules/vary",
|
|
3715
|
+
"licenseFile": "/home/uiprgl/server/node_modules/vary/LICENSE"
|
|
3716
|
+
},
|
|
3717
|
+
"walk-up-path@1.0.0": {
|
|
3718
|
+
"licenses": "ISC",
|
|
3719
|
+
"repository": "https://github.com/isaacs/walk-up-path",
|
|
3720
|
+
"publisher": "Isaac Z. Schlueter",
|
|
3721
|
+
"email": "i@izs.me",
|
|
3722
|
+
"url": "https://izs.me",
|
|
3723
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/walk-up-path",
|
|
3724
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/walk-up-path/LICENSE"
|
|
3725
|
+
},
|
|
3726
|
+
"wcwidth@1.0.1": {
|
|
3727
|
+
"licenses": "MIT",
|
|
3728
|
+
"repository": "https://github.com/timoxley/wcwidth",
|
|
3729
|
+
"publisher": "Tim Oxley",
|
|
3730
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/wcwidth",
|
|
3731
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/wcwidth/LICENSE"
|
|
3732
|
+
},
|
|
3733
|
+
"which@2.0.2": {
|
|
3734
|
+
"licenses": "ISC",
|
|
3735
|
+
"repository": "https://github.com/isaacs/node-which",
|
|
3736
|
+
"publisher": "Isaac Z. Schlueter",
|
|
3737
|
+
"email": "i@izs.me",
|
|
3738
|
+
"url": "http://blog.izs.me",
|
|
3739
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/which",
|
|
3740
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/which/LICENSE"
|
|
3741
|
+
},
|
|
3742
|
+
"wide-align@1.1.3": {
|
|
3743
|
+
"licenses": "ISC",
|
|
3744
|
+
"repository": "https://github.com/iarna/wide-align",
|
|
3745
|
+
"publisher": "Rebecca Turner",
|
|
3746
|
+
"email": "me@re-becca.org",
|
|
3747
|
+
"url": "http://re-becca.org/",
|
|
3748
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/wide-align",
|
|
3749
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/wide-align/LICENSE"
|
|
3750
|
+
},
|
|
3751
|
+
"wide-align@1.1.5": {
|
|
3752
|
+
"licenses": "ISC",
|
|
3753
|
+
"repository": "https://github.com/iarna/wide-align",
|
|
3754
|
+
"publisher": "Rebecca Turner",
|
|
3755
|
+
"email": "me@re-becca.org",
|
|
3756
|
+
"url": "http://re-becca.org/",
|
|
3757
|
+
"path": "/home/uiprgl/server/node_modules/wide-align",
|
|
3758
|
+
"licenseFile": "/home/uiprgl/server/node_modules/wide-align/LICENSE"
|
|
3759
|
+
},
|
|
3760
|
+
"wrappy@1.0.2": {
|
|
3761
|
+
"licenses": "ISC",
|
|
3762
|
+
"repository": "https://github.com/npm/wrappy",
|
|
3763
|
+
"publisher": "Isaac Z. Schlueter",
|
|
3764
|
+
"email": "i@izs.me",
|
|
3765
|
+
"url": "http://blog.izs.me/",
|
|
3766
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/wrappy",
|
|
3767
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/wrappy/LICENSE"
|
|
3768
|
+
},
|
|
3769
|
+
"write-file-atomic@3.0.3": {
|
|
3770
|
+
"licenses": "ISC",
|
|
3771
|
+
"repository": "https://github.com/npm/write-file-atomic",
|
|
3772
|
+
"publisher": "Rebecca Turner",
|
|
3773
|
+
"email": "me@re-becca.org",
|
|
3774
|
+
"url": "http://re-becca.org",
|
|
3775
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/write-file-atomic",
|
|
3776
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/write-file-atomic/LICENSE"
|
|
3777
|
+
},
|
|
3778
|
+
"ws@7.4.6": {
|
|
3779
|
+
"licenses": "MIT",
|
|
3780
|
+
"repository": "https://github.com/websockets/ws",
|
|
3781
|
+
"publisher": "Einar Otto Stangvik",
|
|
3782
|
+
"email": "einaros@gmail.com",
|
|
3783
|
+
"url": "http://2x.io",
|
|
3784
|
+
"path": "/home/uiprgl/server/node_modules/ws",
|
|
3785
|
+
"licenseFile": "/home/uiprgl/server/node_modules/ws/LICENSE"
|
|
3786
|
+
},
|
|
3787
|
+
"xml2js@0.4.19": {
|
|
3788
|
+
"licenses": "MIT",
|
|
3789
|
+
"repository": "https://github.com/Leonidas-from-XIV/node-xml2js",
|
|
3790
|
+
"publisher": "Marek Kubica",
|
|
3791
|
+
"email": "marek@xivilization.net",
|
|
3792
|
+
"url": "https://xivilization.net",
|
|
3793
|
+
"path": "/home/uiprgl/server/node_modules/xml2js",
|
|
3794
|
+
"licenseFile": "/home/uiprgl/server/node_modules/xml2js/LICENSE"
|
|
3795
|
+
},
|
|
3796
|
+
"xmlbuilder@9.0.7": {
|
|
3797
|
+
"licenses": "MIT",
|
|
3798
|
+
"repository": "https://github.com/oozcitak/xmlbuilder-js",
|
|
3799
|
+
"publisher": "Ozgur Ozcitak",
|
|
3800
|
+
"email": "oozcitak@gmail.com",
|
|
3801
|
+
"path": "/home/uiprgl/server/node_modules/xmlbuilder",
|
|
3802
|
+
"licenseFile": "/home/uiprgl/server/node_modules/xmlbuilder/LICENSE"
|
|
3803
|
+
},
|
|
3804
|
+
"xtend@4.0.2": {
|
|
3805
|
+
"licenses": "MIT",
|
|
3806
|
+
"repository": "https://github.com/Raynos/xtend",
|
|
3807
|
+
"publisher": "Raynos",
|
|
3808
|
+
"email": "raynos2@gmail.com",
|
|
3809
|
+
"path": "/home/uiprgl/server/node_modules/xtend",
|
|
3810
|
+
"licenseFile": "/home/uiprgl/server/node_modules/xtend/LICENSE"
|
|
3811
|
+
},
|
|
3812
|
+
"yallist@4.0.0": {
|
|
3813
|
+
"licenses": "ISC",
|
|
3814
|
+
"repository": "https://github.com/isaacs/yallist",
|
|
3815
|
+
"publisher": "Isaac Z. Schlueter",
|
|
3816
|
+
"email": "i@izs.me",
|
|
3817
|
+
"url": "http://blog.izs.me/",
|
|
3818
|
+
"path": "/home/uiprgl/server/node_modules/npm/node_modules/yallist",
|
|
3819
|
+
"licenseFile": "/home/uiprgl/server/node_modules/npm/node_modules/yallist/LICENSE"
|
|
3820
|
+
}
|
|
3821
|
+
}
|