@visulima/tui 1.0.0-alpha.9 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +648 -0
- package/LICENSE.md +2414 -187
- package/README.md +49 -4
- package/dist/components/accordion.d.ts +59 -0
- package/dist/components/accordion.js +1 -0
- package/dist/components/alert.d.ts +26 -0
- package/dist/components/alert.js +1 -0
- package/dist/components/animate-presence.d.ts +18 -0
- package/dist/components/animate-presence.js +1 -0
- package/dist/components/approval-prompt.d.ts +65 -0
- package/dist/components/approval-prompt.js +1 -0
- package/dist/components/area-chart.d.ts +66 -0
- package/dist/components/area-chart.js +1 -0
- package/dist/components/badge.d.ts +22 -0
- package/dist/components/badge.js +1 -0
- package/dist/components/bar-chart.d.ts +67 -0
- package/dist/components/bar-chart.js +1 -0
- package/dist/components/big-text.d.ts +81 -0
- package/dist/components/big-text.js +1 -0
- package/dist/components/blink-dot.d.ts +36 -0
- package/dist/components/blink-dot.js +1 -0
- package/dist/components/box.d.ts +62 -0
- package/dist/components/box.js +1 -0
- package/dist/components/breadcrumb.d.ts +33 -0
- package/dist/components/breadcrumb.js +1 -0
- package/dist/components/button.d.ts +45 -0
- package/dist/components/button.js +1 -0
- package/dist/components/calendar.d.ts +72 -0
- package/dist/components/calendar.js +1 -0
- package/dist/components/canvas.d.ts +44 -0
- package/dist/components/canvas.js +1 -0
- package/dist/components/card.d.ts +57 -0
- package/dist/components/card.js +1 -0
- package/dist/components/checkbox.d.ts +48 -0
- package/dist/components/checkbox.js +1 -0
- package/dist/components/code.d.ts +48 -0
- package/dist/components/code.js +2 -0
- package/dist/components/collapsible.d.ts +53 -0
- package/dist/components/collapsible.js +1 -0
- package/dist/components/command-block.d.ts +47 -0
- package/dist/components/command-block.js +4 -0
- package/dist/components/command-palette.d.ts +82 -0
- package/dist/components/command-palette.js +1 -0
- package/dist/components/confirm-dialog.d.ts +75 -0
- package/dist/components/confirm-dialog.js +1 -0
- package/dist/components/confirm-input.d.ts +38 -0
- package/dist/components/confirm-input.js +1 -0
- package/dist/components/console-overlay.d.ts +54 -0
- package/dist/components/console-overlay.js +1 -0
- package/dist/components/content-switcher.d.ts +57 -0
- package/dist/components/content-switcher.js +1 -0
- package/dist/components/controlled-scroll-view.d.ts +61 -0
- package/dist/components/controlled-scroll-view.js +1 -0
- package/dist/components/cursor.d.ts +62 -0
- package/dist/components/cursor.js +1 -0
- package/dist/components/date-picker.d.ts +65 -0
- package/dist/components/date-picker.js +1 -0
- package/dist/components/definition-list.d.ts +44 -0
- package/dist/components/definition-list.js +1 -0
- package/dist/components/dialog.d.ts +117 -0
- package/dist/components/dialog.js +1 -0
- package/dist/components/diff-view.d.ts +85 -0
- package/dist/components/diff-view.js +1 -0
- package/dist/components/divider.d.ts +49 -0
- package/dist/components/divider.js +1 -0
- package/dist/components/file-picker-entry.d.ts +104 -0
- package/dist/components/file-picker-entry.js +1 -0
- package/dist/components/form.d.ts +81 -0
- package/dist/components/form.js +1 -0
- package/dist/components/gauge.d.ts +87 -0
- package/dist/components/gauge.js +1 -0
- package/dist/components/gradient.d.ts +42 -0
- package/dist/components/gradient.js +1 -0
- package/dist/components/heading.d.ts +33 -0
- package/dist/components/heading.js +1 -0
- package/dist/components/heatmap.d.ts +62 -0
- package/dist/components/heatmap.js +1 -0
- package/dist/components/help.d.ts +52 -0
- package/dist/components/help.js +1 -0
- package/dist/components/histogram.d.ts +62 -0
- package/dist/components/histogram.js +1 -0
- package/dist/components/kbd.d.ts +31 -0
- package/dist/components/kbd.js +1 -0
- package/dist/components/line-chart.d.ts +109 -0
- package/dist/components/line-chart.js +1 -0
- package/dist/components/link.d.ts +38 -0
- package/dist/components/link.js +1 -0
- package/dist/components/loading-indicator.d.ts +29 -0
- package/dist/components/loading-indicator.js +1 -0
- package/dist/components/markdown.d.ts +40 -0
- package/dist/components/markdown.js +1 -0
- package/dist/components/masked-input.d.ts +50 -0
- package/dist/components/masked-input.js +1 -0
- package/dist/components/menu.d.ts +78 -0
- package/dist/components/menu.js +1 -0
- package/dist/components/message-bubble.d.ts +43 -0
- package/dist/components/message-bubble.js +1 -0
- package/dist/components/model-badge.d.ts +39 -0
- package/dist/components/model-badge.js +1 -0
- package/dist/components/multi-select.d.ts +65 -0
- package/dist/components/multi-select.js +1 -0
- package/dist/components/newline.d.ts +15 -0
- package/dist/components/newline.js +2 -0
- package/dist/components/operation-tree.d.ts +49 -0
- package/dist/components/operation-tree.js +1 -0
- package/dist/components/option-list.d.ts +47 -0
- package/dist/components/option-list.js +1 -0
- package/dist/components/ordered-list.d.ts +24 -0
- package/dist/components/ordered-list.js +1 -0
- package/dist/components/paginator.d.ts +69 -0
- package/dist/components/paginator.js +1 -0
- package/dist/components/paragraph.d.ts +38 -0
- package/dist/components/paragraph.js +1 -0
- package/dist/components/placeholder.d.ts +55 -0
- package/dist/components/placeholder.js +1 -0
- package/dist/components/progress-bar.d.ts +56 -0
- package/dist/components/progress-bar.js +1 -0
- package/dist/components/radio-group.d.ts +74 -0
- package/dist/components/radio-group.js +1 -0
- package/dist/components/scatter-plot.d.ts +35 -0
- package/dist/components/scatter-plot.js +1 -0
- package/dist/components/scroll-bar-box.d.ts +37 -0
- package/dist/components/scroll-bar-box.js +1 -0
- package/dist/components/scroll-bar.d.ts +25 -0
- package/dist/components/scroll-bar.js +1 -0
- package/dist/components/scroll-list.d.ts +20 -0
- package/dist/components/scroll-list.js +1 -0
- package/dist/components/scroll-view.d.ts +10 -0
- package/dist/components/scroll-view.js +1 -0
- package/dist/components/search-input.d.ts +55 -0
- package/dist/components/search-input.js +1 -0
- package/dist/components/select-input-indicator.d.ts +32 -0
- package/dist/components/select-input-indicator.js +1 -0
- package/dist/components/select-input-item.d.ts +41 -0
- package/dist/components/select-input-item.js +1 -0
- package/dist/components/select-input.d.ts +110 -0
- package/dist/components/select-input.js +1 -0
- package/dist/components/shimmer-text.d.ts +47 -0
- package/dist/components/shimmer-text.js +1 -0
- package/dist/components/slider.d.ts +103 -0
- package/dist/components/slider.js +1 -0
- package/dist/components/spacer.d.ts +8 -0
- package/dist/components/spacer.js +1 -0
- package/dist/components/sparkline.d.ts +35 -0
- package/dist/components/sparkline.js +1 -0
- package/dist/components/spinner.d.ts +17 -0
- package/dist/components/spinner.js +1 -0
- package/dist/components/static-render.d.ts +55 -0
- package/dist/components/static-render.js +1 -0
- package/dist/components/static.d.ts +29 -0
- package/dist/components/static.js +1 -0
- package/dist/components/status-line.d.ts +37 -0
- package/dist/components/status-line.js +1 -0
- package/dist/components/status-message.d.ts +21 -0
- package/dist/components/status-message.js +1 -0
- package/dist/components/stepper.d.ts +48 -0
- package/dist/components/stepper.js +1 -0
- package/dist/components/stopwatch.d.ts +49 -0
- package/dist/components/stopwatch.js +1 -0
- package/dist/components/streaming-text.d.ts +46 -0
- package/dist/components/streaming-text.js +1 -0
- package/dist/components/switch.d.ts +55 -0
- package/dist/components/switch.js +1 -0
- package/dist/components/tab.d.ts +19 -0
- package/dist/components/tab.js +1 -0
- package/dist/components/table.d.ts +119 -0
- package/dist/components/table.js +1 -0
- package/dist/components/tabs.d.ts +107 -0
- package/dist/components/tabs.js +1 -0
- package/dist/components/tag.d.ts +35 -0
- package/dist/components/tag.js +1 -0
- package/dist/components/text-input.d.ts +48 -0
- package/dist/components/text-input.js +1 -0
- package/dist/components/text.d.ts +79 -0
- package/dist/components/text.js +1 -0
- package/dist/components/textarea.d.ts +68 -0
- package/dist/components/textarea.js +2 -0
- package/dist/components/timer.d.ts +59 -0
- package/dist/components/timer.js +1 -0
- package/dist/components/toast.d.ts +49 -0
- package/dist/components/toast.js +1 -0
- package/dist/components/tooltip.d.ts +43 -0
- package/dist/components/tooltip.js +1 -0
- package/dist/components/transform.d.ts +21 -0
- package/dist/components/transform.js +1 -0
- package/dist/components/transition.d.ts +74 -0
- package/dist/components/transition.js +1 -0
- package/dist/components/tree-view-entry.d.ts +357 -0
- package/dist/components/tree-view-entry.js +1 -0
- package/dist/components/unordered-list.d.ts +30 -0
- package/dist/components/unordered-list.js +1 -0
- package/dist/core/index.d.ts +2 -2
- package/dist/core/index.js +1 -1
- package/dist/ink/hooks/use-animation.d.ts +41 -0
- package/dist/ink/hooks/use-animation.js +1 -0
- package/dist/ink/hooks/use-app.d.ts +38 -0
- package/dist/ink/hooks/use-app.js +1 -0
- package/dist/ink/hooks/use-box-metrics.d.ts +66 -0
- package/dist/ink/hooks/use-box-metrics.js +1 -0
- package/dist/ink/hooks/use-clipboard.d.ts +30 -0
- package/dist/ink/hooks/use-clipboard.js +1 -0
- package/dist/ink/hooks/use-color-blindness.d.ts +33 -0
- package/dist/ink/hooks/use-color-blindness.js +1 -0
- package/dist/ink/hooks/use-console-capture.d.ts +43 -0
- package/dist/ink/hooks/use-console-capture.js +1 -0
- package/dist/ink/hooks/use-cursor.d.ts +13 -0
- package/dist/ink/hooks/use-cursor.js +1 -0
- package/dist/ink/hooks/use-focus-manager.d.ts +57 -0
- package/dist/ink/hooks/use-focus-manager.js +1 -0
- package/dist/ink/hooks/use-focus.d.ts +34 -0
- package/dist/ink/hooks/use-focus.js +1 -0
- package/dist/ink/hooks/use-form.d.ts +68 -0
- package/dist/ink/hooks/use-form.js +1 -0
- package/dist/ink/hooks/use-hotkey.d.ts +37 -0
- package/dist/ink/hooks/use-hotkey.js +1 -0
- package/dist/ink/hooks/use-input.d.ts +149 -0
- package/dist/ink/hooks/use-input.js +2 -0
- package/dist/ink/hooks/use-interval.d.ts +25 -0
- package/dist/ink/hooks/use-interval.js +1 -0
- package/dist/ink/hooks/use-is-screen-reader-enabled.d.ts +6 -0
- package/dist/ink/hooks/use-is-screen-reader-enabled.js +1 -0
- package/dist/ink/hooks/use-key-bindings.d.ts +59 -0
- package/dist/ink/hooks/use-key-bindings.js +1 -0
- package/dist/ink/hooks/use-key-chord.d.ts +25 -0
- package/dist/ink/hooks/use-key-chord.js +1 -0
- package/dist/ink/hooks/use-linked-scroll.d.ts +49 -0
- package/dist/ink/hooks/use-linked-scroll.js +1 -0
- package/dist/ink/hooks/use-paste.d.ts +45 -0
- package/dist/ink/hooks/use-paste.js +1 -0
- package/dist/ink/hooks/use-persistent-state.d.ts +65 -0
- package/dist/ink/hooks/use-persistent-state.js +2 -0
- package/dist/ink/hooks/use-scroll-acceleration.d.ts +47 -0
- package/dist/ink/hooks/use-scroll-acceleration.js +1 -0
- package/dist/ink/hooks/use-scroll-input.d.ts +34 -0
- package/dist/ink/hooks/use-scroll-input.js +1 -0
- package/dist/ink/hooks/use-stderr.d.ts +16 -0
- package/dist/ink/hooks/use-stderr.js +1 -0
- package/dist/ink/hooks/use-stdin.d.ts +30 -0
- package/dist/ink/hooks/use-stdin.js +1 -0
- package/dist/ink/hooks/use-stdout.d.ts +16 -0
- package/dist/ink/hooks/use-stdout.js +1 -0
- package/dist/ink/hooks/use-stopwatch.d.ts +39 -0
- package/dist/ink/hooks/use-stopwatch.js +1 -0
- package/dist/ink/hooks/use-terminal-palette.d.ts +20 -0
- package/dist/ink/hooks/use-terminal-palette.js +1 -0
- package/dist/ink/hooks/use-text-buffer.d.ts +42 -0
- package/dist/ink/hooks/use-text-buffer.js +4 -0
- package/dist/ink/hooks/use-text-selection.d.ts +45 -0
- package/dist/ink/hooks/use-text-selection.js +1 -0
- package/dist/ink/hooks/use-timeout.d.ts +24 -0
- package/dist/ink/hooks/use-timeout.js +1 -0
- package/dist/ink/hooks/use-timer.d.ts +48 -0
- package/dist/ink/hooks/use-timer.js +1 -0
- package/dist/ink/hooks/use-window-size.d.ts +18 -0
- package/dist/ink/hooks/use-window-size.js +1 -0
- package/dist/ink/index.d.ts +30 -6251
- package/dist/ink/index.js +1 -1
- package/dist/ink/mouse/use-element-position.d.ts +31 -0
- package/dist/ink/mouse/use-element-position.js +1 -0
- package/dist/ink/mouse/use-mouse-action.d.ts +5 -0
- package/dist/ink/mouse/use-mouse-action.js +1 -0
- package/dist/ink/mouse/use-mouse-position.d.ts +5 -0
- package/dist/ink/mouse/use-mouse-position.js +1 -0
- package/dist/ink/mouse/use-mouse.d.ts +5 -0
- package/dist/ink/mouse/use-mouse.js +1 -0
- package/dist/ink/mouse/use-on-mouse-click.d.ts +16 -0
- package/dist/ink/mouse/use-on-mouse-click.js +1 -0
- package/dist/ink/mouse/use-on-mouse-hover.d.ts +10 -0
- package/dist/ink/mouse/use-on-mouse-hover.js +1 -0
- package/dist/ink/mouse/use-on-mouse-state.d.ts +13 -0
- package/dist/ink/mouse/use-on-mouse-state.js +1 -0
- package/dist/packem_chunks/devtools.js +1 -1
- package/dist/packem_shared/COLOR_BLINDNESS_COMPENSATION-Ilnoyeqc.js +1 -0
- package/dist/packem_shared/ControlledScrollView-Cn4byU2n.js +1 -0
- package/dist/packem_shared/DevTools-k6uiVzqv.js +1 -0
- package/dist/packem_shared/FilePicker-BLS9nOPz.js +1 -0
- package/dist/packem_shared/FocusContext-C2Sosxa4.js +1 -0
- package/dist/packem_shared/Fullscreen-BRhuBLBh.js +1 -0
- package/dist/packem_shared/IMECompositionBuffer-VhC9HRCv.js +1 -0
- package/dist/packem_shared/InputParser-CtwkCbrQ.js +2 -0
- package/dist/packem_shared/KEY-C--kOw41.js +1 -0
- package/dist/packem_shared/LayoutNode-LPYsuzBg.js +1 -0
- package/dist/packem_shared/MouseProvider-DUqQ3Eaa.js +1 -0
- package/dist/packem_shared/NAMED_COLORS-82DpREQV.js +1 -0
- package/dist/packem_shared/Range-BsVYNWtg.js +1 -0
- package/dist/packem_shared/Renderer-DsskdkUd.js +1 -0
- package/dist/packem_shared/ResizeObserver-BI9bDy-j.js +1 -0
- package/dist/packem_shared/ScrollBar-qa1IzDDv.js +1 -0
- package/dist/packem_shared/ScrollBarBox-DchESZWv.js +1 -0
- package/dist/packem_shared/ScrollList-BBAnRsrC.js +1 -0
- package/dist/packem_shared/ScrollView-CHAo7Epj.js +1 -0
- package/dist/packem_shared/Static-DSzsElz4.js +1 -0
- package/dist/packem_shared/TreeNodeMap-cJlYqckB.js +1 -0
- package/dist/packem_shared/TreeView-BsvLCsf0.js +1 -0
- package/dist/packem_shared/TuiApp-BPL8v1i1.js +1 -0
- package/dist/packem_shared/TuiContext-BNmP0lMY.js +3 -0
- package/dist/packem_shared/ansi-parser-DlgLtOYO.js +1 -0
- package/dist/packem_shared/ansi-tokenizer-BU67A126.js +1 -0
- package/dist/packem_shared/braille-ch3O5D7I.js +1 -0
- package/dist/packem_shared/buffer.d-EJkZr8uH.d.ts +39 -0
- package/dist/packem_shared/calculateScroll-D4Y_JR4H.js +1 -0
- package/dist/packem_shared/{measureElement-DA8WqFP_.js → calculateScrollbarLayout-Lf6i24c9.js} +1 -1
- package/dist/packem_shared/clearOsc52-BUpnQOav.js +1 -0
- package/dist/packem_shared/clearStringWidthCache-DKFjfJuB.js +1 -0
- package/dist/packem_shared/clipboard.d-D6lZTQ21.d.ts +23 -0
- package/dist/packem_shared/color-matrix.d-DSXLsB64.d.ts +50 -0
- package/dist/packem_shared/colorize-DU4YZkp3.js +1 -0
- package/dist/packem_shared/controlled-scroll-view-BVg7ywNW.js +1 -0
- package/dist/packem_shared/createInlineLoop-BT40Wpmx.js +2 -0
- package/dist/packem_shared/createScreen-DoYpyL0V.js +3 -0
- package/dist/packem_shared/cursor-helpers.d-BONB9tky.d.ts +12 -0
- package/dist/packem_shared/dom-rphpG0kf.js +1 -0
- package/dist/packem_shared/dom.d-B4kXbaVY.d.ts +449 -0
- package/dist/packem_shared/format-time-fjoQHMxD.js +1 -0
- package/dist/packem_shared/{getPathToRoot-B2tKmx3i.js → getPathToRoot-PDJeqiEH.js} +1 -1
- package/dist/packem_shared/input-utils-BSWCb4F_.js +1 -0
- package/dist/packem_shared/{input.d-Bfq7oc06.d.ts → input.d-CgxV2e8U.d.ts} +1 -1
- package/dist/packem_shared/isIntersecting-Bo2npvMR.js +1 -0
- package/dist/packem_shared/isTerminalPaletteQuerySupported-BYzmqq9-.js +1 -0
- package/dist/packem_shared/kittyFlags-g8ALyoCU.js +1 -0
- package/dist/packem_shared/line-chart-C7CUrvVs.js +1 -0
- package/dist/packem_shared/load-native-root-binding-DDikxNox.js +1 -0
- package/dist/packem_shared/measure-element-D4M9iSYp.js +1 -0
- package/dist/packem_shared/measure-text-B7juNq4Y.js +3 -0
- package/dist/packem_shared/mouse-context.d-BfL9xGk_.d.ts +30 -0
- package/dist/packem_shared/parseSgrMouse-bUrqPrh-.js +1 -0
- package/dist/packem_shared/processLayout-I83k6vXE.js +2 -0
- package/dist/packem_shared/reconciler-CFyBVf7l.js +1 -0
- package/dist/packem_shared/reconciler-ClpU7Y-V.js +1 -0
- package/dist/packem_shared/render-CuQecTAs.js +24 -0
- package/dist/packem_shared/render-DFZ8NHlG.js +1 -0
- package/dist/packem_shared/render.d-CBnYBDk2.d.ts +417 -0
- package/dist/packem_shared/renderToString-DwXFY8Qh.js +4 -0
- package/dist/packem_shared/renderToString-L_bpw4OQ.js +2 -0
- package/dist/packem_shared/renderTreeToBuffer-C8lS0lJ2.js +2 -0
- package/dist/packem_shared/renderer-k-xShm1P.js +17 -0
- package/dist/packem_shared/scroll-view.d-DtpsgHLg.d.ts +119 -0
- package/dist/packem_shared/selection.d-CI3_p8wg.d.ts +62 -0
- package/dist/packem_shared/squashTextNodesWithMap-BmUSBPfc.js +1 -0
- package/dist/packem_shared/stderr-context-Bvnik0hL.js +1 -0
- package/dist/packem_shared/stdin-context-88AhuztD.js +1 -0
- package/dist/packem_shared/styles.d-cMo36xQz.d.ts +396 -0
- package/dist/packem_shared/terminal-palette.d-D2SQjfn-.d.ts +19 -0
- package/dist/packem_shared/text-width-e49vlbQH.js +2 -0
- package/dist/packem_shared/token-to-elements-D6J6-P2A.js +1 -0
- package/dist/packem_shared/treeViewTheme-Dq3ekRAC.js +1 -0
- package/dist/packem_shared/useTreeView-D5ifGwG3.js +1 -0
- package/dist/packem_shared/useTreeViewState-BiTJakkh.js +1 -0
- package/dist/packem_shared/utils-Bup8lyK8.js +1 -0
- package/dist/packem_shared/variant-config.d-D5NnrrQK.d.ts +2 -0
- package/dist/packem_shared/waitFor-CTAki32d.js +4 -0
- package/dist/packem_shared/wrapOrTruncateStyledLine-46W8bTtv.js +3 -0
- package/dist/react/index.d.ts +2 -2
- package/dist/react/index.js +1 -1
- package/dist/testing/index.d.ts +5 -1
- package/dist/testing/index.js +1 -1
- package/index.js +550 -692
- package/package.json +585 -31
- package/dist/packem_shared/Accordion-BXsqchV-.js +0 -1
- package/dist/packem_shared/Alert-BhYVMHtR.js +0 -1
- package/dist/packem_shared/AnimatePresence-Eu7Z8KHc.js +0 -1
- package/dist/packem_shared/ApprovalPrompt-BSn0FT1g.js +0 -1
- package/dist/packem_shared/AreaChart-Chy-frI7.js +0 -1
- package/dist/packem_shared/Badge-B8WPyRsK.js +0 -1
- package/dist/packem_shared/BarChart-rpZtlMcF.js +0 -1
- package/dist/packem_shared/BigText-CRpwUzrt.js +0 -1
- package/dist/packem_shared/BlinkDot-BvnRuWP8.js +0 -1
- package/dist/packem_shared/Box-BwqSvWuq.js +0 -1
- package/dist/packem_shared/Breadcrumb-D0hClbRV.js +0 -1
- package/dist/packem_shared/Button-B89Yvbc6.js +0 -1
- package/dist/packem_shared/COLOR_BLINDNESS_SIMULATION-DqErf7XX.js +0 -1
- package/dist/packem_shared/Calendar-Dmflvm2S.js +0 -1
- package/dist/packem_shared/Canvas-CKg6WV47.js +0 -1
- package/dist/packem_shared/Card-B_9fXdtU.js +0 -1
- package/dist/packem_shared/Checkbox-BN71eCWU.js +0 -1
- package/dist/packem_shared/Code-HhevcyiH.js +0 -2
- package/dist/packem_shared/Collapsible-u6uf_FdV.js +0 -1
- package/dist/packem_shared/CommandBlock-B-nslpCv.js +0 -4
- package/dist/packem_shared/CommandPalette-CEFdaURo.js +0 -1
- package/dist/packem_shared/ConfirmDialog-5Jje_Xpu.js +0 -1
- package/dist/packem_shared/ConfirmInput-D44Mb9oo.js +0 -1
- package/dist/packem_shared/ConsoleOverlay-CM3APfgP.js +0 -1
- package/dist/packem_shared/ContentSwitcher-Dm5BkrCt.js +0 -1
- package/dist/packem_shared/ControlledScrollView-DI8KZOQB.js +0 -1
- package/dist/packem_shared/Cursor-BoLFIMol.js +0 -1
- package/dist/packem_shared/DatePicker-CnSrFFAE.js +0 -1
- package/dist/packem_shared/DefinitionList-v8RDuF_R.js +0 -1
- package/dist/packem_shared/DevTools-O8EbCfHa.js +0 -1
- package/dist/packem_shared/Dialog-CTaL8pn0.js +0 -1
- package/dist/packem_shared/DiffView-BUIFqUB0.js +0 -1
- package/dist/packem_shared/Divider-C47bKmqu.js +0 -1
- package/dist/packem_shared/FilePicker-CUo7R5Qb.js +0 -1
- package/dist/packem_shared/FocusContext-Xy0cwJpO.js +0 -1
- package/dist/packem_shared/FormField-af3aUpRL.js +0 -1
- package/dist/packem_shared/Fullscreen-CuJ8y0s0.js +0 -1
- package/dist/packem_shared/Gauge-Dz-usH__.js +0 -1
- package/dist/packem_shared/Gradient-DYNc0GZA.js +0 -1
- package/dist/packem_shared/Heading-mwEYza3Y.js +0 -1
- package/dist/packem_shared/Heatmap-ChL97U1-.js +0 -1
- package/dist/packem_shared/Help-Zcelyw_U.js +0 -1
- package/dist/packem_shared/Histogram-FIf2F83d.js +0 -1
- package/dist/packem_shared/IMECompositionBuffer-C89PhiOu.js +0 -1
- package/dist/packem_shared/InputParser-rZKjY_7Y.js +0 -2
- package/dist/packem_shared/KEY-Bk8B-3h_.js +0 -1
- package/dist/packem_shared/Kbd-DpkPp4jB.js +0 -1
- package/dist/packem_shared/LayoutNode-rxblE317.js +0 -1
- package/dist/packem_shared/LineChart-BXE_girm.js +0 -1
- package/dist/packem_shared/Link-i2o2EG4-.js +0 -1
- package/dist/packem_shared/LoadingIndicator-TC1Fjwyt.js +0 -1
- package/dist/packem_shared/Markdown-R1XqK63D.js +0 -1
- package/dist/packem_shared/MaskedInput-J01phOZs.js +0 -1
- package/dist/packem_shared/Menu-CfrH4ymk.js +0 -1
- package/dist/packem_shared/MessageBubble-BmBBU2Rm.js +0 -1
- package/dist/packem_shared/ModelBadge-D3wrXncu.js +0 -1
- package/dist/packem_shared/MouseProvider-pjza-lpc.js +0 -1
- package/dist/packem_shared/MultiSelect-Dqmn-bVo.js +0 -1
- package/dist/packem_shared/NAMED_COLORS-B9fJsYdg.js +0 -1
- package/dist/packem_shared/Newline-BSG4iUqp.js +0 -2
- package/dist/packem_shared/OperationTree-DksxjMIV.js +0 -1
- package/dist/packem_shared/OptionList-CNx7r9yN.js +0 -1
- package/dist/packem_shared/OrderedList-BeDy035w.js +0 -1
- package/dist/packem_shared/Paginator-B56s6bhS.js +0 -1
- package/dist/packem_shared/Paragraph-BqJlH0R-.js +0 -1
- package/dist/packem_shared/Placeholder-GMpHRGC8.js +0 -1
- package/dist/packem_shared/ProgressBar-Bj3fmORR.js +0 -1
- package/dist/packem_shared/RadioGroup-Br8BeEwS.js +0 -1
- package/dist/packem_shared/Renderer-DJXooAsp.js +0 -1
- package/dist/packem_shared/ResizeObserverEntry-Dq0dk8Kq.js +0 -1
- package/dist/packem_shared/ScatterPlot-OhfYco5l.js +0 -1
- package/dist/packem_shared/ScrollBar-Da5Y3z7N.js +0 -1
- package/dist/packem_shared/ScrollBarBox-Dz6F-Eat.js +0 -1
- package/dist/packem_shared/ScrollList-DiVGyEjv.js +0 -1
- package/dist/packem_shared/ScrollView-BojONotI.js +0 -1
- package/dist/packem_shared/SearchInput-BoPTRbhV.js +0 -1
- package/dist/packem_shared/SelectInput-CAJ7SCBq.js +0 -1
- package/dist/packem_shared/SelectInputIndicator-N1n8ULHs.js +0 -1
- package/dist/packem_shared/SelectInputItem-BEkbmobs.js +0 -1
- package/dist/packem_shared/ShimmerText-CuGQ2NDC.js +0 -1
- package/dist/packem_shared/Slider-Cg_tJpKa.js +0 -1
- package/dist/packem_shared/Spacer-eT3HOrXk.js +0 -1
- package/dist/packem_shared/Sparkline-T6_FPVET.js +0 -1
- package/dist/packem_shared/Spinner-B0-A50pu.js +0 -1
- package/dist/packem_shared/Static-DLynr5pn.js +0 -1
- package/dist/packem_shared/Static-jzLPaHJF.js +0 -1
- package/dist/packem_shared/StaticRender-BgD61E7x.js +0 -1
- package/dist/packem_shared/StatusLine-Ch4jjef1.js +0 -1
- package/dist/packem_shared/StatusMessage-B1qfKeMM.js +0 -1
- package/dist/packem_shared/Stepper-CNPAqxiU.js +0 -1
- package/dist/packem_shared/Stopwatch-CAx2EWwq.js +0 -1
- package/dist/packem_shared/StreamingText-BYOKSB2T.js +0 -1
- package/dist/packem_shared/Switch-DzSpKYu7.js +0 -1
- package/dist/packem_shared/Tab-BcXzSUdj.js +0 -1
- package/dist/packem_shared/Table-DJp1TLrR.js +0 -1
- package/dist/packem_shared/Tabs-D68z0SOt.js +0 -1
- package/dist/packem_shared/Tag-BvLHnYRn.js +0 -1
- package/dist/packem_shared/Text-mTAve9R2.js +0 -1
- package/dist/packem_shared/TextInput-C_gYQlnF.js +0 -1
- package/dist/packem_shared/Textarea-C2ET_oMb.js +0 -2
- package/dist/packem_shared/Timer-CI3aQX65.js +0 -1
- package/dist/packem_shared/Toast-Drvc8XfG.js +0 -1
- package/dist/packem_shared/Tooltip-C5UnQlLd.js +0 -1
- package/dist/packem_shared/Transform-fYmcdqRT.js +0 -1
- package/dist/packem_shared/Transition-CJDBKYUB.js +0 -1
- package/dist/packem_shared/TreeNodeMap-CspqSCpb.js +0 -1
- package/dist/packem_shared/TreeView-DjhacGJ5.js +0 -1
- package/dist/packem_shared/TuiApp-DrjI_i-R.js +0 -1
- package/dist/packem_shared/TuiContext-BoJvG3NN.js +0 -3
- package/dist/packem_shared/UnorderedList-BnfqexZs.js +0 -1
- package/dist/packem_shared/ansi-parser-B6uXaq65.js +0 -1
- package/dist/packem_shared/ansi-tokenizer-DqX9nJuk.js +0 -1
- package/dist/packem_shared/boxes-DyY_LXCi.js +0 -1
- package/dist/packem_shared/braille-BBjIoaN0.js +0 -1
- package/dist/packem_shared/colorize-DbTZMrJO.js +0 -1
- package/dist/packem_shared/comparePoints-C85EsmNz.js +0 -1
- package/dist/packem_shared/controlled-scroll-view-CmrAEvJk.js +0 -1
- package/dist/packem_shared/createInlineLoop-DRNZ7jqH.js +0 -2
- package/dist/packem_shared/createLinkedScrollGroup-BMTJ7rAj.js +0 -1
- package/dist/packem_shared/createMemoryStorage-QVZNXbWz.js +0 -2
- package/dist/packem_shared/createScreen-CrLrxA6t.js +0 -3
- package/dist/packem_shared/dom-4y__5fWB.js +0 -1
- package/dist/packem_shared/format-time-C7Q-hQZq.js +0 -1
- package/dist/packem_shared/getScrollHeight-BTEY8ewu.js +0 -1
- package/dist/packem_shared/input-utils-fAxzSlNh.js +0 -1
- package/dist/packem_shared/isIntersecting-B3KbKTmu.js +0 -1
- package/dist/packem_shared/isOsc52Supported-DKK7Uee6.js +0 -1
- package/dist/packem_shared/isTerminalPaletteQuerySupported-Dn2hFAZ_.js +0 -1
- package/dist/packem_shared/kittyFlags-C3rZLbcK.js +0 -1
- package/dist/packem_shared/line-chart-DrM8PwnI.js +0 -1
- package/dist/packem_shared/measure-element-DSp7YDus.js +0 -2
- package/dist/packem_shared/measure-text-DDjHT1jD.js +0 -3
- package/dist/packem_shared/parseSgrMouse-Ccj70ijb.js +0 -1
- package/dist/packem_shared/processLayout-DXDfFb_d.js +0 -1
- package/dist/packem_shared/reconciler-BuOP-TZ6.js +0 -1
- package/dist/packem_shared/reconciler-DSYCrIZs.js +0 -1
- package/dist/packem_shared/render-DDqtMAFN.js +0 -1
- package/dist/packem_shared/render-_r0K9K11.js +0 -28
- package/dist/packem_shared/render.d-CNIzVQTh.d.ts +0 -1257
- package/dist/packem_shared/renderToString-DeqOWRP8.js +0 -4
- package/dist/packem_shared/renderToString-IYYPyASm.js +0 -2
- package/dist/packem_shared/renderTreeToBuffer-DPkoCgP2.js +0 -2
- package/dist/packem_shared/renderer-D2p6av2X.js +0 -17
- package/dist/packem_shared/setEnableStyledLineCache-D2gZbwFM.js +0 -1
- package/dist/packem_shared/squashTextNodesWithMap-Cpqmc45i.js +0 -1
- package/dist/packem_shared/stderr-context-BzEaUICS.js +0 -1
- package/dist/packem_shared/stdin-context-BTaaFagk.js +0 -1
- package/dist/packem_shared/text-width-CZ9vPvM0.js +0 -2
- package/dist/packem_shared/token-to-elements-BYxT6J_Q.js +0 -1
- package/dist/packem_shared/treeViewTheme-1RIZyB4M.js +0 -1
- package/dist/packem_shared/useAnimation-B9we6ZzL.js +0 -1
- package/dist/packem_shared/useApp-B6fvM42d.js +0 -1
- package/dist/packem_shared/useBoxMetrics-D5pkIr6P.js +0 -1
- package/dist/packem_shared/useClipboard-CBxy0hT8.js +0 -1
- package/dist/packem_shared/useColorBlindness-BvWcu2Bb.js +0 -1
- package/dist/packem_shared/useConsoleCapture-BxiG8iLJ.js +0 -1
- package/dist/packem_shared/useCursor-CPu8T5Db.js +0 -1
- package/dist/packem_shared/useElementDimensions-qJ_WXFZ9.js +0 -1
- package/dist/packem_shared/useFocus-DSmziO_x.js +0 -1
- package/dist/packem_shared/useFocusManager-Uapn3LQo.js +0 -1
- package/dist/packem_shared/useForm-CzV-Oext.js +0 -1
- package/dist/packem_shared/useHotkey-D0dGey14.js +0 -1
- package/dist/packem_shared/useInput-D1_jG26Z.js +0 -2
- package/dist/packem_shared/useInterval-AobjZT3u.js +0 -1
- package/dist/packem_shared/useIsScreenReaderEnabled-DjWHh-II.js +0 -1
- package/dist/packem_shared/useKeyBindings-zabkEJQs.js +0 -1
- package/dist/packem_shared/useKeyChord-CICQIxXj.js +0 -1
- package/dist/packem_shared/useMouseAction-2dRfU1vE.js +0 -1
- package/dist/packem_shared/useMouseContext-C746G7kY.js +0 -1
- package/dist/packem_shared/useMousePosition-BTWfV4JK.js +0 -1
- package/dist/packem_shared/useOnMouseClick-nY8xLZmt.js +0 -1
- package/dist/packem_shared/useOnMouseHover-D3DczIol.js +0 -1
- package/dist/packem_shared/useOnMouseState-cRK8QvzD.js +0 -1
- package/dist/packem_shared/usePaste-CKKB9H-Z.js +0 -1
- package/dist/packem_shared/useScrollAcceleration-NrY1oVMs.js +0 -1
- package/dist/packem_shared/useScrollInput-Caghtn-Q.js +0 -1
- package/dist/packem_shared/useStderr-BDZb6InG.js +0 -1
- package/dist/packem_shared/useStdin-DKa4h35k.js +0 -1
- package/dist/packem_shared/useStdout-B-2lX4C5.js +0 -1
- package/dist/packem_shared/useStopwatch-DffK7iMh.js +0 -1
- package/dist/packem_shared/useTerminalPalette-Cv7tSduR.js +0 -1
- package/dist/packem_shared/useTextBuffer-DekkGLxI.js +0 -4
- package/dist/packem_shared/useTextSelection-CGT0GLDR.js +0 -1
- package/dist/packem_shared/useTimeout-7LEFYTnG.js +0 -1
- package/dist/packem_shared/useTimer-DyoqSyGi.js +0 -1
- package/dist/packem_shared/useTreeView-8UlTK6sW.js +0 -1
- package/dist/packem_shared/useTreeViewState-CRPCUWrb.js +0 -1
- package/dist/packem_shared/useWindowSize-yDZsXF8z.js +0 -1
- package/dist/packem_shared/utils-THUhYKG2.js +0 -1
- package/dist/packem_shared/waitFor-Dj5zfL5s.js +0 -4
- package/dist/packem_shared/wrapOrTruncateStyledLine-BZ00SM8i.js +0 -3
package/LICENSE.md
CHANGED
|
@@ -67,11 +67,14 @@ Licensed under the Apache License, Version 2.0
|
|
|
67
67
|
<!-- DEPENDENCIES -->
|
|
68
68
|
|
|
69
69
|
# Licenses of bundled dependencies
|
|
70
|
+
|
|
70
71
|
The published @visulima/tui artifact additionally contains code with the following licenses:
|
|
71
72
|
ISC, MIT
|
|
72
73
|
|
|
73
74
|
# Bundled dependencies:
|
|
74
|
-
|
|
75
|
+
|
|
76
|
+
## @visulima/ansi
|
|
77
|
+
|
|
75
78
|
License: MIT
|
|
76
79
|
By: Daniel Bannert
|
|
77
80
|
Repository: git+https://github.com/visulima/visulima.git
|
|
@@ -98,37 +101,72 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
98
101
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
99
102
|
> SOFTWARE.
|
|
100
103
|
>
|
|
104
|
+
> # Licenses of bundled dependencies
|
|
105
|
+
>
|
|
106
|
+
> The published @visulima/ansi artifact additionally contains code with the following licenses:
|
|
107
|
+
> ISC, MIT
|
|
108
|
+
>
|
|
109
|
+
> # Bundled dependencies:
|
|
110
|
+
>
|
|
111
|
+
> ## ansi-regex
|
|
112
|
+
>
|
|
113
|
+
> License: MIT
|
|
114
|
+
> By: Sindre Sorhus
|
|
115
|
+
> Repository: chalk/ansi-regex
|
|
116
|
+
>
|
|
117
|
+
> > MIT License
|
|
118
|
+
> >
|
|
119
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
120
|
+
> >
|
|
121
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
122
|
+
> >
|
|
123
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
124
|
+
> >
|
|
125
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
126
|
+
>
|
|
101
127
|
> ---
|
|
102
128
|
>
|
|
103
|
-
> ##
|
|
129
|
+
> ## mimic-function
|
|
104
130
|
>
|
|
105
|
-
>
|
|
131
|
+
> License: MIT
|
|
132
|
+
> By: Sindre Sorhus
|
|
133
|
+
> Repository: sindresorhus/mimic-function
|
|
106
134
|
>
|
|
107
|
-
>
|
|
135
|
+
> > MIT License
|
|
136
|
+
> >
|
|
137
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
138
|
+
> >
|
|
139
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
140
|
+
> >
|
|
141
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
142
|
+
> >
|
|
143
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
108
144
|
>
|
|
109
|
-
>
|
|
110
|
-
> - **Author:** vyfor
|
|
111
|
-
> - **License:** MIT
|
|
112
|
-
> - **Description:** A minimal terminal spinner library for Rust that inspired additional braille-based spinner animations.
|
|
145
|
+
> ---
|
|
113
146
|
>
|
|
114
|
-
>
|
|
147
|
+
> ## onetime
|
|
115
148
|
>
|
|
116
|
-
>
|
|
117
|
-
>
|
|
118
|
-
>
|
|
119
|
-
> - **Description:** Provides Unicode-based braille animations that were adapted for additional visual effects.
|
|
149
|
+
> License: MIT
|
|
150
|
+
> By: Sindre Sorhus
|
|
151
|
+
> Repository: sindresorhus/onetime
|
|
120
152
|
>
|
|
153
|
+
> > MIT License
|
|
154
|
+
> >
|
|
155
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
156
|
+
> >
|
|
157
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
158
|
+
> >
|
|
159
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
160
|
+
> >
|
|
161
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
121
162
|
>
|
|
163
|
+
> ---
|
|
122
164
|
>
|
|
123
|
-
>
|
|
124
|
-
> The published @visulima/spinner artifact additionally contains code with the following licenses:
|
|
125
|
-
> MIT
|
|
165
|
+
> ## restore-cursor
|
|
126
166
|
>
|
|
127
|
-
> # Bundled dependencies:
|
|
128
|
-
> ## cli-spinners
|
|
129
167
|
> License: MIT
|
|
130
168
|
> By: Sindre Sorhus
|
|
131
|
-
> Repository: sindresorhus/
|
|
169
|
+
> Repository: sindresorhus/restore-cursor
|
|
132
170
|
>
|
|
133
171
|
> > MIT License
|
|
134
172
|
> >
|
|
@@ -140,19 +178,43 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
140
178
|
> >
|
|
141
179
|
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
142
180
|
>
|
|
181
|
+
> ---
|
|
143
182
|
>
|
|
183
|
+
> ## signal-exit
|
|
144
184
|
>
|
|
185
|
+
> License: ISC
|
|
186
|
+
> By: Ben Coe
|
|
187
|
+
> Repository: https://github.com/tapjs/signal-exit.git
|
|
145
188
|
>
|
|
189
|
+
> > The ISC License
|
|
190
|
+
> >
|
|
191
|
+
> > Copyright (c) 2015-2023 Benjamin Coe, Isaac Z. Schlueter, and Contributors
|
|
192
|
+
> >
|
|
193
|
+
> > Permission to use, copy, modify, and/or distribute this software
|
|
194
|
+
> > for any purpose with or without fee is hereby granted, provided
|
|
195
|
+
> > that the above copyright notice and this permission notice
|
|
196
|
+
> > appear in all copies.
|
|
197
|
+
> >
|
|
198
|
+
> > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
199
|
+
> > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
200
|
+
> > OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
|
|
201
|
+
> > LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
|
|
202
|
+
> > OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
203
|
+
> > WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|
204
|
+
> > ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
146
205
|
>
|
|
147
206
|
> # Licenses of bundled types
|
|
148
|
-
>
|
|
207
|
+
>
|
|
208
|
+
> The published @visulima/ansi artifact additionally contains code with the following licenses:
|
|
149
209
|
> MIT
|
|
150
210
|
>
|
|
151
211
|
> # Bundled types:
|
|
152
|
-
>
|
|
212
|
+
>
|
|
213
|
+
> ## restore-cursor
|
|
214
|
+
>
|
|
153
215
|
> License: MIT
|
|
154
216
|
> By: Sindre Sorhus
|
|
155
|
-
> Repository: sindresorhus/
|
|
217
|
+
> Repository: sindresorhus/restore-cursor
|
|
156
218
|
>
|
|
157
219
|
> > MIT License
|
|
158
220
|
> >
|
|
@@ -164,33 +226,17 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
164
226
|
> >
|
|
165
227
|
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
166
228
|
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
## cli-boxes
|
|
170
|
-
License: MIT
|
|
171
|
-
By: Sindre Sorhus
|
|
172
|
-
Repository: sindresorhus/cli-boxes
|
|
173
|
-
|
|
174
|
-
> MIT License
|
|
175
|
-
>
|
|
176
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
177
|
-
>
|
|
178
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
179
|
-
>
|
|
180
|
-
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
181
|
-
>
|
|
182
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
229
|
+
---
|
|
183
230
|
|
|
184
|
-
|
|
231
|
+
## @visulima/colorize
|
|
185
232
|
|
|
186
|
-
## code-excerpt
|
|
187
233
|
License: MIT
|
|
188
|
-
By:
|
|
189
|
-
Repository:
|
|
234
|
+
By: Daniel Bannert
|
|
235
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
190
236
|
|
|
191
|
-
>
|
|
237
|
+
> MIT License
|
|
192
238
|
>
|
|
193
|
-
> Copyright (c)
|
|
239
|
+
> Copyright (c) 2026 visulima
|
|
194
240
|
>
|
|
195
241
|
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
196
242
|
> of this software and associated documentation files (the "Software"), to deal
|
|
@@ -199,59 +245,71 @@ Repository: vadimdemedes/code-excerpt
|
|
|
199
245
|
> copies of the Software, and to permit persons to whom the Software is
|
|
200
246
|
> furnished to do so, subject to the following conditions:
|
|
201
247
|
>
|
|
202
|
-
> The above copyright notice and this permission notice shall be included in
|
|
203
|
-
>
|
|
248
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
249
|
+
> copies or substantial portions of the Software.
|
|
204
250
|
>
|
|
205
251
|
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
206
252
|
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
207
253
|
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
208
254
|
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
209
255
|
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
210
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
211
|
-
>
|
|
212
|
-
|
|
213
|
-
---------------------------------------
|
|
214
|
-
|
|
215
|
-
## convert-to-spaces
|
|
216
|
-
License: MIT
|
|
217
|
-
By: Vadim Demedes
|
|
218
|
-
Repository: vadimdemedes/convert-to-spaces
|
|
219
|
-
|
|
220
|
-
> The MIT License (MIT)
|
|
256
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
257
|
+
> SOFTWARE.
|
|
221
258
|
>
|
|
222
|
-
>
|
|
259
|
+
> ---
|
|
223
260
|
>
|
|
224
|
-
>
|
|
225
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
226
|
-
> in the Software without restriction, including without limitation the rights
|
|
227
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
228
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
229
|
-
> furnished to do so, subject to the following conditions:
|
|
261
|
+
> Colorize is based on https://github.com/webdiscus/ansis
|
|
230
262
|
>
|
|
231
|
-
>
|
|
232
|
-
> all copies or substantial portions of the Software.
|
|
263
|
+
> ISC License
|
|
233
264
|
>
|
|
234
|
-
>
|
|
235
|
-
>
|
|
236
|
-
>
|
|
237
|
-
>
|
|
238
|
-
>
|
|
239
|
-
>
|
|
240
|
-
> THE SOFTWARE
|
|
265
|
+
> Copyright (c) 2023, webdiscus
|
|
266
|
+
>
|
|
267
|
+
> Permission to use, copy, modify, and/or distribute this software for any
|
|
268
|
+
> purpose with or without fee is hereby granted, provided that the above
|
|
269
|
+
> copyright notice and this permission notice appear in all copies.
|
|
270
|
+
>
|
|
271
|
+
> THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
272
|
+
> WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
273
|
+
> MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
274
|
+
> ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
275
|
+
> WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
276
|
+
> ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
277
|
+
> OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
278
|
+
>
|
|
279
|
+
> # Licenses of bundled dependencies
|
|
280
|
+
>
|
|
281
|
+
> The published @visulima/colorize artifact additionally contains code with the following licenses:
|
|
282
|
+
> MIT
|
|
283
|
+
>
|
|
284
|
+
> # Bundled dependencies:
|
|
285
|
+
>
|
|
286
|
+
> ## ansi-regex
|
|
287
|
+
>
|
|
288
|
+
> License: MIT
|
|
289
|
+
> By: Sindre Sorhus
|
|
290
|
+
> Repository: chalk/ansi-regex
|
|
291
|
+
>
|
|
292
|
+
> > MIT License
|
|
293
|
+
> >
|
|
294
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
295
|
+
> >
|
|
296
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
297
|
+
> >
|
|
298
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
299
|
+
> >
|
|
300
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
241
301
|
|
|
242
|
-
|
|
302
|
+
---
|
|
303
|
+
|
|
304
|
+
## @visulima/error
|
|
243
305
|
|
|
244
|
-
## es-toolkit
|
|
245
306
|
License: MIT
|
|
246
|
-
|
|
307
|
+
By: Daniel Bannert
|
|
308
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
247
309
|
|
|
248
310
|
> MIT License
|
|
249
311
|
>
|
|
250
|
-
> Copyright (c)
|
|
251
|
-
>
|
|
252
|
-
> Copyright OpenJS Foundation and other contributors
|
|
253
|
-
>
|
|
254
|
-
> Parts of the test suite and compatibility layer in `es-toolkit/compat` are derived from Lodash (https://github.com/lodash/lodash) by the OpenJS Foundation (https://openjsf.org/) and Underscore.js by Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors (http://underscorejs.org/)
|
|
312
|
+
> Copyright (c) 2026 visulima
|
|
255
313
|
>
|
|
256
314
|
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
257
315
|
> of this software and associated documentation files (the "Software"), to deal
|
|
@@ -270,75 +328,67 @@ Repository: https://github.com/toss/es-toolkit.git
|
|
|
270
328
|
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
271
329
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
272
330
|
> SOFTWARE.
|
|
273
|
-
|
|
274
|
-
---------------------------------------
|
|
275
|
-
|
|
276
|
-
## escape-string-regexp
|
|
277
|
-
License: MIT
|
|
278
|
-
By: Sindre Sorhus, Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com), Joshua Boy Nicolai Appelman <joshua@jbna.nl> (jbna.nl)
|
|
279
|
-
Repository: sindresorhus/escape-string-regexp
|
|
280
|
-
|
|
281
|
-
> MIT License
|
|
282
331
|
>
|
|
283
|
-
>
|
|
332
|
+
> # Licenses of bundled dependencies
|
|
284
333
|
>
|
|
285
|
-
>
|
|
334
|
+
> The published @visulima/error artifact additionally contains code with the following licenses:
|
|
335
|
+
> MIT
|
|
286
336
|
>
|
|
287
|
-
>
|
|
337
|
+
> # Bundled dependencies:
|
|
288
338
|
>
|
|
289
|
-
>
|
|
290
|
-
|
|
291
|
-
---------------------------------------
|
|
292
|
-
|
|
293
|
-
## is-in-ci
|
|
294
|
-
License: MIT
|
|
295
|
-
By: Sindre Sorhus
|
|
296
|
-
Repository: sindresorhus/is-in-ci
|
|
297
|
-
|
|
298
|
-
> MIT License
|
|
339
|
+
> ## is-plain-obj
|
|
299
340
|
>
|
|
300
|
-
>
|
|
341
|
+
> License: MIT
|
|
342
|
+
> By: Sindre Sorhus
|
|
343
|
+
> Repository: sindresorhus/is-plain-obj
|
|
301
344
|
>
|
|
302
|
-
>
|
|
345
|
+
> > MIT License
|
|
346
|
+
> >
|
|
347
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
348
|
+
> >
|
|
349
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
350
|
+
> >
|
|
351
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
352
|
+
> >
|
|
353
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
303
354
|
>
|
|
304
|
-
>
|
|
355
|
+
> # Licenses of bundled types
|
|
305
356
|
>
|
|
306
|
-
>
|
|
307
|
-
|
|
308
|
-
---------------------------------------
|
|
309
|
-
|
|
310
|
-
## signal-exit
|
|
311
|
-
License: ISC
|
|
312
|
-
By: Ben Coe
|
|
313
|
-
Repository: https://github.com/tapjs/signal-exit.git
|
|
314
|
-
|
|
315
|
-
> The ISC License
|
|
357
|
+
> The published @visulima/error artifact additionally contains code with the following licenses:
|
|
358
|
+
> Apache-2.0
|
|
316
359
|
>
|
|
317
|
-
>
|
|
360
|
+
> # Bundled types:
|
|
318
361
|
>
|
|
319
|
-
>
|
|
320
|
-
> for any purpose with or without fee is hereby granted, provided
|
|
321
|
-
> that the above copyright notice and this permission notice
|
|
322
|
-
> appear in all copies.
|
|
362
|
+
> ## ai
|
|
323
363
|
>
|
|
324
|
-
>
|
|
325
|
-
>
|
|
326
|
-
>
|
|
327
|
-
>
|
|
328
|
-
>
|
|
329
|
-
>
|
|
330
|
-
>
|
|
364
|
+
> License: Apache-2.0
|
|
365
|
+
> Repository: https://github.com/vercel/ai
|
|
366
|
+
>
|
|
367
|
+
> > Copyright 2023 Vercel, Inc.
|
|
368
|
+
> >
|
|
369
|
+
> > Licensed under the Apache License, Version 2.0 (the "License");
|
|
370
|
+
> > you may not use this file except in compliance with the License.
|
|
371
|
+
> > You may obtain a copy of the License at
|
|
372
|
+
> >
|
|
373
|
+
> > http://www.apache.org/licenses/LICENSE-2.0
|
|
374
|
+
> >
|
|
375
|
+
> > Unless required by applicable law or agreed to in writing, software
|
|
376
|
+
> > distributed under the License is distributed on an "AS IS" BASIS,
|
|
377
|
+
> > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
378
|
+
> > See the License for the specific language governing permissions and
|
|
379
|
+
> > limitations under the License.
|
|
380
|
+
|
|
381
|
+
---
|
|
331
382
|
|
|
332
|
-
|
|
383
|
+
## @visulima/is-ansi-color-supported
|
|
333
384
|
|
|
334
|
-
## stack-utils
|
|
335
385
|
License: MIT
|
|
336
|
-
By:
|
|
337
|
-
Repository:
|
|
386
|
+
By: Daniel Bannert
|
|
387
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
338
388
|
|
|
339
|
-
>
|
|
389
|
+
> MIT License
|
|
340
390
|
>
|
|
341
|
-
> Copyright (c)
|
|
391
|
+
> Copyright (c) 2026 visulima
|
|
342
392
|
>
|
|
343
393
|
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
344
394
|
> of this software and associated documentation files (the "Software"), to deal
|
|
@@ -347,58 +397,35 @@ Repository: tapjs/stack-utils
|
|
|
347
397
|
> copies of the Software, and to permit persons to whom the Software is
|
|
348
398
|
> furnished to do so, subject to the following conditions:
|
|
349
399
|
>
|
|
350
|
-
> The above copyright notice and this permission notice shall be included in
|
|
351
|
-
>
|
|
400
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
401
|
+
> copies or substantial portions of the Software.
|
|
352
402
|
>
|
|
353
403
|
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
354
404
|
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
355
405
|
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
356
406
|
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
357
407
|
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
358
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
359
|
-
>
|
|
408
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
409
|
+
> SOFTWARE.
|
|
360
410
|
|
|
361
|
-
|
|
411
|
+
---
|
|
412
|
+
|
|
413
|
+
## @visulima/spinner
|
|
362
414
|
|
|
363
|
-
## terminal-size
|
|
364
415
|
License: MIT
|
|
365
|
-
By:
|
|
366
|
-
Repository:
|
|
416
|
+
By: Daniel Bannert
|
|
417
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
367
418
|
|
|
368
419
|
> MIT License
|
|
369
420
|
>
|
|
370
|
-
> Copyright (c)
|
|
421
|
+
> Copyright (c) 2026 visulima
|
|
371
422
|
>
|
|
372
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
373
|
-
>
|
|
374
|
-
>
|
|
375
|
-
>
|
|
376
|
-
>
|
|
377
|
-
|
|
378
|
-
<!-- /DEPENDENCIES -->
|
|
379
|
-
|
|
380
|
-
<!-- TYPE_DEPENDENCIES -->
|
|
381
|
-
|
|
382
|
-
# Licenses of bundled types
|
|
383
|
-
The published @visulima/tui artifact additionally contains code with the following licenses:
|
|
384
|
-
MIT
|
|
385
|
-
|
|
386
|
-
# Bundled types:
|
|
387
|
-
## @visulima/spinner
|
|
388
|
-
License: MIT
|
|
389
|
-
By: Daniel Bannert
|
|
390
|
-
Repository: git+https://github.com/visulima/visulima.git
|
|
391
|
-
|
|
392
|
-
> MIT License
|
|
393
|
-
>
|
|
394
|
-
> Copyright (c) 2026 visulima
|
|
395
|
-
>
|
|
396
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
397
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
398
|
-
> in the Software without restriction, including without limitation the rights
|
|
399
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
400
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
401
|
-
> furnished to do so, subject to the following conditions:
|
|
423
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
424
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
425
|
+
> in the Software without restriction, including without limitation the rights
|
|
426
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
427
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
428
|
+
> furnished to do so, subject to the following conditions:
|
|
402
429
|
>
|
|
403
430
|
> The above copyright notice and this permission notice shall be included in all
|
|
404
431
|
> copies or substantial portions of the Software.
|
|
@@ -431,14 +458,15 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
431
458
|
> - **License:** MIT
|
|
432
459
|
> - **Description:** Provides Unicode-based braille animations that were adapted for additional visual effects.
|
|
433
460
|
>
|
|
434
|
-
> <!-- DEPENDENCIES -->
|
|
435
|
-
>
|
|
436
461
|
> # Licenses of bundled dependencies
|
|
462
|
+
>
|
|
437
463
|
> The published @visulima/spinner artifact additionally contains code with the following licenses:
|
|
438
464
|
> MIT
|
|
439
465
|
>
|
|
440
466
|
> # Bundled dependencies:
|
|
467
|
+
>
|
|
441
468
|
> ## cli-spinners
|
|
469
|
+
>
|
|
442
470
|
> License: MIT
|
|
443
471
|
> By: Sindre Sorhus
|
|
444
472
|
> Repository: sindresorhus/cli-spinners
|
|
@@ -453,16 +481,15 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
453
481
|
> >
|
|
454
482
|
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
455
483
|
>
|
|
456
|
-
> <!-- /DEPENDENCIES -->
|
|
457
|
-
>
|
|
458
|
-
>
|
|
459
|
-
>
|
|
460
484
|
> # Licenses of bundled types
|
|
485
|
+
>
|
|
461
486
|
> The published @visulima/spinner artifact additionally contains code with the following licenses:
|
|
462
487
|
> MIT
|
|
463
488
|
>
|
|
464
489
|
> # Bundled types:
|
|
490
|
+
>
|
|
465
491
|
> ## cli-spinners
|
|
492
|
+
>
|
|
466
493
|
> License: MIT
|
|
467
494
|
> By: Sindre Sorhus
|
|
468
495
|
> Repository: sindresorhus/cli-spinners
|
|
@@ -477,21 +504,2221 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
477
504
|
> >
|
|
478
505
|
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
479
506
|
|
|
480
|
-
|
|
507
|
+
---
|
|
508
|
+
|
|
509
|
+
## @visulima/string
|
|
481
510
|
|
|
482
|
-
## cli-boxes
|
|
483
511
|
License: MIT
|
|
484
|
-
By:
|
|
485
|
-
Repository:
|
|
512
|
+
By: Daniel Bannert
|
|
513
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
486
514
|
|
|
487
515
|
> MIT License
|
|
488
516
|
>
|
|
489
|
-
> Copyright (c)
|
|
517
|
+
> Copyright (c) 2026 visulima
|
|
490
518
|
>
|
|
491
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
519
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
520
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
521
|
+
> in the Software without restriction, including without limitation the rights
|
|
522
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
523
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
524
|
+
> furnished to do so, subject to the following conditions:
|
|
492
525
|
>
|
|
493
|
-
> The above copyright notice and this permission notice shall be included in all
|
|
526
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
527
|
+
> copies or substantial portions of the Software.
|
|
494
528
|
>
|
|
495
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
529
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
530
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
531
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
532
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
533
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
534
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
535
|
+
> SOFTWARE.
|
|
536
|
+
>
|
|
537
|
+
> # Licenses of bundled dependencies
|
|
538
|
+
>
|
|
539
|
+
> The published @visulima/string artifact additionally contains code with the following licenses:
|
|
540
|
+
> MIT
|
|
541
|
+
>
|
|
542
|
+
> # Bundled dependencies:
|
|
543
|
+
>
|
|
544
|
+
> ## codsen-utils
|
|
545
|
+
>
|
|
546
|
+
> License: MIT
|
|
547
|
+
> By: Roy Revelt
|
|
548
|
+
> Repository: git+https://github.com/codsen/codsen.git
|
|
549
|
+
>
|
|
550
|
+
> > MIT License
|
|
551
|
+
> >
|
|
552
|
+
> > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
553
|
+
> >
|
|
554
|
+
> > Permission is hereby granted, free of charge, to any person obtaining
|
|
555
|
+
> > a copy of this software and associated documentation files (the
|
|
556
|
+
> > "Software"), to deal in the Software without restriction, including
|
|
557
|
+
> > without limitation the rights to use, copy, modify, merge, publish,
|
|
558
|
+
> > distribute, sublicense, and/or sell copies of the Software, and to
|
|
559
|
+
> > permit persons to whom the Software is furnished to do so, subject to
|
|
560
|
+
> > the following conditions:
|
|
561
|
+
> >
|
|
562
|
+
> > The above copyright notice and this permission notice shall be
|
|
563
|
+
> > included in all copies or substantial portions of the Software.
|
|
564
|
+
> >
|
|
565
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
566
|
+
> > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
567
|
+
> > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
568
|
+
> > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
569
|
+
> > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
570
|
+
> > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
571
|
+
> > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
572
|
+
>
|
|
573
|
+
> ---
|
|
574
|
+
>
|
|
575
|
+
> ## emoji-regex-xs
|
|
576
|
+
>
|
|
577
|
+
> License: MIT
|
|
578
|
+
> By: Steven Levithan
|
|
579
|
+
> Repository: git+https://github.com/slevithan/emoji-regex-xs.git
|
|
580
|
+
>
|
|
581
|
+
> > MIT License
|
|
582
|
+
> >
|
|
583
|
+
> > Copyright (c) 2025 Steven Levithan
|
|
584
|
+
> >
|
|
585
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
586
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
587
|
+
> > in the Software without restriction, including without limitation the rights
|
|
588
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
589
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
590
|
+
> > furnished to do so, subject to the following conditions:
|
|
591
|
+
> >
|
|
592
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
593
|
+
> > copies or substantial portions of the Software.
|
|
594
|
+
> >
|
|
595
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
596
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
597
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
598
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
599
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
600
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
601
|
+
> > SOFTWARE.
|
|
602
|
+
>
|
|
603
|
+
> ---
|
|
604
|
+
>
|
|
605
|
+
> ## fastest-levenshtein
|
|
606
|
+
>
|
|
607
|
+
> License: MIT
|
|
608
|
+
> By: Kasper U. Weihe
|
|
609
|
+
> Repository: git+https://github.com/ka-weihe/fastest-levenshtein.git
|
|
610
|
+
>
|
|
611
|
+
> > MIT License
|
|
612
|
+
> >
|
|
613
|
+
> > Copyright (c) 2020 Kasper Unn Weihe
|
|
614
|
+
> >
|
|
615
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
616
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
617
|
+
> > in the Software without restriction, including without limitation the rights
|
|
618
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
619
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
620
|
+
> > furnished to do so, subject to the following conditions:
|
|
621
|
+
> >
|
|
622
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
623
|
+
> > copies or substantial portions of the Software.
|
|
624
|
+
> >
|
|
625
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
626
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
627
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
628
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
629
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
630
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
631
|
+
> > SOFTWARE.
|
|
632
|
+
>
|
|
633
|
+
> ---
|
|
634
|
+
>
|
|
635
|
+
> ## get-east-asian-width
|
|
636
|
+
>
|
|
637
|
+
> License: MIT
|
|
638
|
+
> By: Sindre Sorhus
|
|
639
|
+
> Repository: sindresorhus/get-east-asian-width
|
|
640
|
+
>
|
|
641
|
+
> > MIT License
|
|
642
|
+
> >
|
|
643
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
644
|
+
> >
|
|
645
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
646
|
+
> >
|
|
647
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
648
|
+
> >
|
|
649
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
650
|
+
>
|
|
651
|
+
> ---
|
|
652
|
+
>
|
|
653
|
+
> ## html-entities
|
|
654
|
+
>
|
|
655
|
+
> License: MIT
|
|
656
|
+
> By: Marat Dulin
|
|
657
|
+
> Repository: https://github.com/mdevils/html-entities.git
|
|
658
|
+
>
|
|
659
|
+
> > Copyright (c) 2021 Dulin Marat
|
|
660
|
+
> >
|
|
661
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
662
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
663
|
+
> > in the Software without restriction, including without limitation the rights
|
|
664
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
665
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
666
|
+
> > furnished to do so, subject to the following conditions:
|
|
667
|
+
> >
|
|
668
|
+
> > The above copyright notice and this permission notice shall be included in
|
|
669
|
+
> > all copies or substantial portions of the Software.
|
|
670
|
+
> >
|
|
671
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
672
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
673
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
674
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
675
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
676
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
677
|
+
> > THE SOFTWARE.
|
|
678
|
+
>
|
|
679
|
+
> ---
|
|
680
|
+
>
|
|
681
|
+
> ## indent-string
|
|
682
|
+
>
|
|
683
|
+
> License: MIT
|
|
684
|
+
> By: Sindre Sorhus
|
|
685
|
+
> Repository: sindresorhus/indent-string
|
|
686
|
+
>
|
|
687
|
+
> > MIT License
|
|
688
|
+
> >
|
|
689
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
690
|
+
> >
|
|
691
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
692
|
+
> >
|
|
693
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
694
|
+
> >
|
|
695
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
696
|
+
>
|
|
697
|
+
> ---
|
|
698
|
+
>
|
|
699
|
+
> ## lodash-es
|
|
700
|
+
>
|
|
701
|
+
> License: MIT
|
|
702
|
+
> By: John-David Dalton, Mathias Bynens
|
|
703
|
+
> Repository: lodash/lodash
|
|
704
|
+
>
|
|
705
|
+
> > Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
706
|
+
> >
|
|
707
|
+
> > Based on Underscore.js, copyright Jeremy Ashkenas,
|
|
708
|
+
> > DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
709
|
+
> >
|
|
710
|
+
> > This software consists of voluntary contributions made by many
|
|
711
|
+
> > individuals. For exact contribution history, see the revision history
|
|
712
|
+
> > available at https://github.com/lodash/lodash
|
|
713
|
+
> >
|
|
714
|
+
> > The following license applies to all parts of this software except as
|
|
715
|
+
> > documented below:
|
|
716
|
+
> >
|
|
717
|
+
> > ====
|
|
718
|
+
> >
|
|
719
|
+
> > Permission is hereby granted, free of charge, to any person obtaining
|
|
720
|
+
> > a copy of this software and associated documentation files (the
|
|
721
|
+
> > "Software"), to deal in the Software without restriction, including
|
|
722
|
+
> > without limitation the rights to use, copy, modify, merge, publish,
|
|
723
|
+
> > distribute, sublicense, and/or sell copies of the Software, and to
|
|
724
|
+
> > permit persons to whom the Software is furnished to do so, subject to
|
|
725
|
+
> > the following conditions:
|
|
726
|
+
> >
|
|
727
|
+
> > The above copyright notice and this permission notice shall be
|
|
728
|
+
> > included in all copies or substantial portions of the Software.
|
|
729
|
+
> >
|
|
730
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
731
|
+
> > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
732
|
+
> > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
733
|
+
> > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
734
|
+
> > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
735
|
+
> > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
736
|
+
> > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
737
|
+
> >
|
|
738
|
+
> > ====
|
|
739
|
+
> >
|
|
740
|
+
> > Copyright and related rights for sample code are waived via CC0. Sample
|
|
741
|
+
> > code is defined as all source code displayed within the prose of the
|
|
742
|
+
> > documentation.
|
|
743
|
+
> >
|
|
744
|
+
> > CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
|
745
|
+
> >
|
|
746
|
+
> > ====
|
|
747
|
+
> >
|
|
748
|
+
> > Files located in the node_modules and vendor directories are externally
|
|
749
|
+
> > maintained libraries used by this software which have their own
|
|
750
|
+
> > licenses; we recommend you read them, as their terms may differ from the
|
|
751
|
+
> > terms above.
|
|
752
|
+
>
|
|
753
|
+
> ---
|
|
754
|
+
>
|
|
755
|
+
> ## ranges-apply
|
|
756
|
+
>
|
|
757
|
+
> License: MIT
|
|
758
|
+
> By: Roy Revelt
|
|
759
|
+
> Repository: git+https://github.com/codsen/codsen.git
|
|
760
|
+
>
|
|
761
|
+
> > MIT License
|
|
762
|
+
> >
|
|
763
|
+
> > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
764
|
+
> >
|
|
765
|
+
> > Permission is hereby granted, free of charge, to any person obtaining
|
|
766
|
+
> > a copy of this software and associated documentation files (the
|
|
767
|
+
> > "Software"), to deal in the Software without restriction, including
|
|
768
|
+
> > without limitation the rights to use, copy, modify, merge, publish,
|
|
769
|
+
> > distribute, sublicense, and/or sell copies of the Software, and to
|
|
770
|
+
> > permit persons to whom the Software is furnished to do so, subject to
|
|
771
|
+
> > the following conditions:
|
|
772
|
+
> >
|
|
773
|
+
> > The above copyright notice and this permission notice shall be
|
|
774
|
+
> > included in all copies or substantial portions of the Software.
|
|
775
|
+
> >
|
|
776
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
777
|
+
> > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
778
|
+
> > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
779
|
+
> > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
780
|
+
> > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
781
|
+
> > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
782
|
+
> > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
783
|
+
>
|
|
784
|
+
> ---
|
|
785
|
+
>
|
|
786
|
+
> ## ranges-merge
|
|
787
|
+
>
|
|
788
|
+
> License: MIT
|
|
789
|
+
> By: Roy Revelt
|
|
790
|
+
> Repository: git+https://github.com/codsen/codsen.git
|
|
791
|
+
>
|
|
792
|
+
> > MIT License
|
|
793
|
+
> >
|
|
794
|
+
> > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
795
|
+
> >
|
|
796
|
+
> > Permission is hereby granted, free of charge, to any person obtaining
|
|
797
|
+
> > a copy of this software and associated documentation files (the
|
|
798
|
+
> > "Software"), to deal in the Software without restriction, including
|
|
799
|
+
> > without limitation the rights to use, copy, modify, merge, publish,
|
|
800
|
+
> > distribute, sublicense, and/or sell copies of the Software, and to
|
|
801
|
+
> > permit persons to whom the Software is furnished to do so, subject to
|
|
802
|
+
> > the following conditions:
|
|
803
|
+
> >
|
|
804
|
+
> > The above copyright notice and this permission notice shall be
|
|
805
|
+
> > included in all copies or substantial portions of the Software.
|
|
806
|
+
> >
|
|
807
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
808
|
+
> > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
809
|
+
> > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
810
|
+
> > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
811
|
+
> > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
812
|
+
> > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
813
|
+
> > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
814
|
+
>
|
|
815
|
+
> ---
|
|
816
|
+
>
|
|
817
|
+
> ## ranges-push
|
|
818
|
+
>
|
|
819
|
+
> License: MIT
|
|
820
|
+
> By: Roy Revelt
|
|
821
|
+
> Repository: git+https://github.com/codsen/codsen.git
|
|
822
|
+
>
|
|
823
|
+
> > MIT License
|
|
824
|
+
> >
|
|
825
|
+
> > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
826
|
+
> >
|
|
827
|
+
> > Permission is hereby granted, free of charge, to any person obtaining
|
|
828
|
+
> > a copy of this software and associated documentation files (the
|
|
829
|
+
> > "Software"), to deal in the Software without restriction, including
|
|
830
|
+
> > without limitation the rights to use, copy, modify, merge, publish,
|
|
831
|
+
> > distribute, sublicense, and/or sell copies of the Software, and to
|
|
832
|
+
> > permit persons to whom the Software is furnished to do so, subject to
|
|
833
|
+
> > the following conditions:
|
|
834
|
+
> >
|
|
835
|
+
> > The above copyright notice and this permission notice shall be
|
|
836
|
+
> > included in all copies or substantial portions of the Software.
|
|
837
|
+
> >
|
|
838
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
839
|
+
> > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
840
|
+
> > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
841
|
+
> > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
842
|
+
> > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
843
|
+
> > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
844
|
+
> > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
845
|
+
>
|
|
846
|
+
> ---
|
|
847
|
+
>
|
|
848
|
+
> ## ranges-sort
|
|
849
|
+
>
|
|
850
|
+
> License: MIT
|
|
851
|
+
> By: Roy Revelt
|
|
852
|
+
> Repository: git+https://github.com/codsen/codsen.git
|
|
853
|
+
>
|
|
854
|
+
> > MIT License
|
|
855
|
+
> >
|
|
856
|
+
> > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
857
|
+
> >
|
|
858
|
+
> > Permission is hereby granted, free of charge, to any person obtaining
|
|
859
|
+
> > a copy of this software and associated documentation files (the
|
|
860
|
+
> > "Software"), to deal in the Software without restriction, including
|
|
861
|
+
> > without limitation the rights to use, copy, modify, merge, publish,
|
|
862
|
+
> > distribute, sublicense, and/or sell copies of the Software, and to
|
|
863
|
+
> > permit persons to whom the Software is furnished to do so, subject to
|
|
864
|
+
> > the following conditions:
|
|
865
|
+
> >
|
|
866
|
+
> > The above copyright notice and this permission notice shall be
|
|
867
|
+
> > included in all copies or substantial portions of the Software.
|
|
868
|
+
> >
|
|
869
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
870
|
+
> > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
871
|
+
> > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
872
|
+
> > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
873
|
+
> > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
874
|
+
> > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
875
|
+
> > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
876
|
+
>
|
|
877
|
+
> ---
|
|
878
|
+
>
|
|
879
|
+
> ## redent
|
|
880
|
+
>
|
|
881
|
+
> License: MIT
|
|
882
|
+
> By: Sindre Sorhus
|
|
883
|
+
> Repository: sindresorhus/redent
|
|
884
|
+
>
|
|
885
|
+
> > MIT License
|
|
886
|
+
> >
|
|
887
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
888
|
+
> >
|
|
889
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
890
|
+
> >
|
|
891
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
892
|
+
> >
|
|
893
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
894
|
+
>
|
|
895
|
+
> ---
|
|
896
|
+
>
|
|
897
|
+
> ## rfdc
|
|
898
|
+
>
|
|
899
|
+
> License: MIT
|
|
900
|
+
> By: David Mark Clements
|
|
901
|
+
> Repository: git+https://github.com/davidmarkclements/rfdc.git
|
|
902
|
+
>
|
|
903
|
+
> > Copyright 2019 "David Mark Clements <david.mark.clements@gmail.com>"
|
|
904
|
+
> >
|
|
905
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
|
906
|
+
> > documentation files (the "Software"), to deal in the Software without restriction, including without limitation
|
|
907
|
+
> > the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
|
|
908
|
+
> > to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
909
|
+
> >
|
|
910
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions
|
|
911
|
+
> > of the Software.
|
|
912
|
+
> >
|
|
913
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
914
|
+
> > TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
915
|
+
> > THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
916
|
+
> > CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
917
|
+
> > IN THE SOFTWARE.
|
|
918
|
+
>
|
|
919
|
+
> ---
|
|
920
|
+
>
|
|
921
|
+
> ## string-collapse-leading-whitespace
|
|
922
|
+
>
|
|
923
|
+
> License: MIT
|
|
924
|
+
> By: Roy Revelt
|
|
925
|
+
> Repository: git+https://github.com/codsen/codsen.git
|
|
926
|
+
>
|
|
927
|
+
> > MIT License
|
|
928
|
+
> >
|
|
929
|
+
> > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
930
|
+
> >
|
|
931
|
+
> > Permission is hereby granted, free of charge, to any person obtaining
|
|
932
|
+
> > a copy of this software and associated documentation files (the
|
|
933
|
+
> > "Software"), to deal in the Software without restriction, including
|
|
934
|
+
> > without limitation the rights to use, copy, modify, merge, publish,
|
|
935
|
+
> > distribute, sublicense, and/or sell copies of the Software, and to
|
|
936
|
+
> > permit persons to whom the Software is furnished to do so, subject to
|
|
937
|
+
> > the following conditions:
|
|
938
|
+
> >
|
|
939
|
+
> > The above copyright notice and this permission notice shall be
|
|
940
|
+
> > included in all copies or substantial portions of the Software.
|
|
941
|
+
> >
|
|
942
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
943
|
+
> > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
944
|
+
> > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
945
|
+
> > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
946
|
+
> > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
947
|
+
> > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
948
|
+
> > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
949
|
+
>
|
|
950
|
+
> ---
|
|
951
|
+
>
|
|
952
|
+
> ## string-left-right
|
|
953
|
+
>
|
|
954
|
+
> License: MIT
|
|
955
|
+
> By: Roy Revelt
|
|
956
|
+
> Repository: git+https://github.com/codsen/codsen.git
|
|
957
|
+
>
|
|
958
|
+
> > MIT License
|
|
959
|
+
> >
|
|
960
|
+
> > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
961
|
+
> >
|
|
962
|
+
> > Permission is hereby granted, free of charge, to any person obtaining
|
|
963
|
+
> > a copy of this software and associated documentation files (the
|
|
964
|
+
> > "Software"), to deal in the Software without restriction, including
|
|
965
|
+
> > without limitation the rights to use, copy, modify, merge, publish,
|
|
966
|
+
> > distribute, sublicense, and/or sell copies of the Software, and to
|
|
967
|
+
> > permit persons to whom the Software is furnished to do so, subject to
|
|
968
|
+
> > the following conditions:
|
|
969
|
+
> >
|
|
970
|
+
> > The above copyright notice and this permission notice shall be
|
|
971
|
+
> > included in all copies or substantial portions of the Software.
|
|
972
|
+
> >
|
|
973
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
974
|
+
> > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
975
|
+
> > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
976
|
+
> > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
977
|
+
> > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
978
|
+
> > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
979
|
+
> > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
980
|
+
>
|
|
981
|
+
> ---
|
|
982
|
+
>
|
|
983
|
+
> ## string-strip-html
|
|
984
|
+
>
|
|
985
|
+
> License: MIT
|
|
986
|
+
> By: Roy Revelt
|
|
987
|
+
> Repository: git+https://github.com/codsen/codsen.git
|
|
988
|
+
>
|
|
989
|
+
> > MIT License
|
|
990
|
+
> >
|
|
991
|
+
> > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
992
|
+
> >
|
|
993
|
+
> > Permission is hereby granted, free of charge, to any person obtaining
|
|
994
|
+
> > a copy of this software and associated documentation files (the
|
|
995
|
+
> > "Software"), to deal in the Software without restriction, including
|
|
996
|
+
> > without limitation the rights to use, copy, modify, merge, publish,
|
|
997
|
+
> > distribute, sublicense, and/or sell copies of the Software, and to
|
|
998
|
+
> > permit persons to whom the Software is furnished to do so, subject to
|
|
999
|
+
> > the following conditions:
|
|
1000
|
+
> >
|
|
1001
|
+
> > The above copyright notice and this permission notice shall be
|
|
1002
|
+
> > included in all copies or substantial portions of the Software.
|
|
1003
|
+
> >
|
|
1004
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1005
|
+
> > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1006
|
+
> > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1007
|
+
> > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1008
|
+
> > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1009
|
+
> > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1010
|
+
> > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1011
|
+
>
|
|
1012
|
+
> ---
|
|
1013
|
+
>
|
|
1014
|
+
> ## strip-indent
|
|
1015
|
+
>
|
|
1016
|
+
> License: MIT
|
|
1017
|
+
> By: Sindre Sorhus
|
|
1018
|
+
> Repository: sindresorhus/strip-indent
|
|
1019
|
+
>
|
|
1020
|
+
> > MIT License
|
|
1021
|
+
> >
|
|
1022
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1023
|
+
> >
|
|
1024
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1025
|
+
> >
|
|
1026
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1027
|
+
> >
|
|
1028
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1029
|
+
>
|
|
1030
|
+
> ---
|
|
1031
|
+
>
|
|
1032
|
+
> ## tiny-invariant
|
|
1033
|
+
>
|
|
1034
|
+
> License: MIT
|
|
1035
|
+
> By: Alex Reardon
|
|
1036
|
+
> Repository: https://github.com/alexreardon/tiny-invariant.git
|
|
1037
|
+
>
|
|
1038
|
+
> > MIT License
|
|
1039
|
+
> >
|
|
1040
|
+
> > Copyright (c) 2019 Alexander Reardon
|
|
1041
|
+
> >
|
|
1042
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1043
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
1044
|
+
> > in the Software without restriction, including without limitation the rights
|
|
1045
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1046
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
1047
|
+
> > furnished to do so, subject to the following conditions:
|
|
1048
|
+
> >
|
|
1049
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
1050
|
+
> > copies or substantial portions of the Software.
|
|
1051
|
+
> >
|
|
1052
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1053
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1054
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1055
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1056
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1057
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1058
|
+
> > SOFTWARE.
|
|
1059
|
+
>
|
|
1060
|
+
> # Licenses of bundled types
|
|
1061
|
+
>
|
|
1062
|
+
> The published @visulima/string artifact additionally contains code with the following licenses:
|
|
1063
|
+
> MIT
|
|
1064
|
+
>
|
|
1065
|
+
> # Bundled types:
|
|
1066
|
+
>
|
|
1067
|
+
> ## fastest-levenshtein
|
|
1068
|
+
>
|
|
1069
|
+
> License: MIT
|
|
1070
|
+
> By: Kasper U. Weihe
|
|
1071
|
+
> Repository: git+https://github.com/ka-weihe/fastest-levenshtein.git
|
|
1072
|
+
>
|
|
1073
|
+
> > MIT License
|
|
1074
|
+
> >
|
|
1075
|
+
> > Copyright (c) 2020 Kasper Unn Weihe
|
|
1076
|
+
> >
|
|
1077
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1078
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
1079
|
+
> > in the Software without restriction, including without limitation the rights
|
|
1080
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1081
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
1082
|
+
> > furnished to do so, subject to the following conditions:
|
|
1083
|
+
> >
|
|
1084
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
1085
|
+
> > copies or substantial portions of the Software.
|
|
1086
|
+
> >
|
|
1087
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1088
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1089
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1090
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1091
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1092
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1093
|
+
> > SOFTWARE.
|
|
1094
|
+
>
|
|
1095
|
+
> ---
|
|
1096
|
+
>
|
|
1097
|
+
> ## get-east-asian-width
|
|
1098
|
+
>
|
|
1099
|
+
> License: MIT
|
|
1100
|
+
> By: Sindre Sorhus
|
|
1101
|
+
> Repository: sindresorhus/get-east-asian-width
|
|
1102
|
+
>
|
|
1103
|
+
> > MIT License
|
|
1104
|
+
> >
|
|
1105
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1106
|
+
> >
|
|
1107
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1108
|
+
> >
|
|
1109
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1110
|
+
> >
|
|
1111
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1112
|
+
>
|
|
1113
|
+
> ---
|
|
1114
|
+
>
|
|
1115
|
+
> ## indent-string
|
|
1116
|
+
>
|
|
1117
|
+
> License: MIT
|
|
1118
|
+
> By: Sindre Sorhus
|
|
1119
|
+
> Repository: sindresorhus/indent-string
|
|
1120
|
+
>
|
|
1121
|
+
> > MIT License
|
|
1122
|
+
> >
|
|
1123
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1124
|
+
> >
|
|
1125
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1126
|
+
> >
|
|
1127
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1128
|
+
> >
|
|
1129
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1130
|
+
>
|
|
1131
|
+
> ---
|
|
1132
|
+
>
|
|
1133
|
+
> ## redent
|
|
1134
|
+
>
|
|
1135
|
+
> License: MIT
|
|
1136
|
+
> By: Sindre Sorhus
|
|
1137
|
+
> Repository: sindresorhus/redent
|
|
1138
|
+
>
|
|
1139
|
+
> > MIT License
|
|
1140
|
+
> >
|
|
1141
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1142
|
+
> >
|
|
1143
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1144
|
+
> >
|
|
1145
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1146
|
+
> >
|
|
1147
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1148
|
+
>
|
|
1149
|
+
> ---
|
|
1150
|
+
>
|
|
1151
|
+
> ## strip-indent
|
|
1152
|
+
>
|
|
1153
|
+
> License: MIT
|
|
1154
|
+
> By: Sindre Sorhus
|
|
1155
|
+
> Repository: sindresorhus/strip-indent
|
|
1156
|
+
>
|
|
1157
|
+
> > MIT License
|
|
1158
|
+
> >
|
|
1159
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1160
|
+
> >
|
|
1161
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1162
|
+
> >
|
|
1163
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1164
|
+
> >
|
|
1165
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1166
|
+
|
|
1167
|
+
---
|
|
1168
|
+
|
|
1169
|
+
## cli-boxes
|
|
1170
|
+
|
|
1171
|
+
License: MIT
|
|
1172
|
+
By: Sindre Sorhus
|
|
1173
|
+
Repository: sindresorhus/cli-boxes
|
|
1174
|
+
|
|
1175
|
+
> MIT License
|
|
1176
|
+
>
|
|
1177
|
+
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1178
|
+
>
|
|
1179
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1180
|
+
>
|
|
1181
|
+
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1182
|
+
>
|
|
1183
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1184
|
+
|
|
1185
|
+
---
|
|
1186
|
+
|
|
1187
|
+
## code-excerpt
|
|
1188
|
+
|
|
1189
|
+
License: MIT
|
|
1190
|
+
By: vdemedes
|
|
1191
|
+
Repository: vadimdemedes/code-excerpt
|
|
1192
|
+
|
|
1193
|
+
> The MIT License (MIT)
|
|
1194
|
+
>
|
|
1195
|
+
> Copyright (c) Vadim Demedes <vdemedes@gmail.com> (github.com/vadimdemedes)
|
|
1196
|
+
>
|
|
1197
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1198
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
1199
|
+
> in the Software without restriction, including without limitation the rights
|
|
1200
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1201
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
1202
|
+
> furnished to do so, subject to the following conditions:
|
|
1203
|
+
>
|
|
1204
|
+
> The above copyright notice and this permission notice shall be included in
|
|
1205
|
+
> all copies or substantial portions of the Software.
|
|
1206
|
+
>
|
|
1207
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1208
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1209
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1210
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1211
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1212
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1213
|
+
> THE SOFTWARE.
|
|
1214
|
+
|
|
1215
|
+
---
|
|
1216
|
+
|
|
1217
|
+
## convert-to-spaces
|
|
1218
|
+
|
|
1219
|
+
License: MIT
|
|
1220
|
+
By: Vadim Demedes
|
|
1221
|
+
Repository: vadimdemedes/convert-to-spaces
|
|
1222
|
+
|
|
1223
|
+
> The MIT License (MIT)
|
|
1224
|
+
>
|
|
1225
|
+
> Copyright (c) Vadim Demedes <vdemedes@gmail.com> (https://vadimdemedes.com)
|
|
1226
|
+
>
|
|
1227
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1228
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
1229
|
+
> in the Software without restriction, including without limitation the rights
|
|
1230
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1231
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
1232
|
+
> furnished to do so, subject to the following conditions:
|
|
1233
|
+
>
|
|
1234
|
+
> The above copyright notice and this permission notice shall be included in
|
|
1235
|
+
> all copies or substantial portions of the Software.
|
|
1236
|
+
>
|
|
1237
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1238
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1239
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1240
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1241
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1242
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1243
|
+
> THE SOFTWARE.
|
|
1244
|
+
|
|
1245
|
+
---
|
|
1246
|
+
|
|
1247
|
+
## is-in-ci
|
|
1248
|
+
|
|
1249
|
+
License: MIT
|
|
1250
|
+
By: Sindre Sorhus
|
|
1251
|
+
Repository: sindresorhus/is-in-ci
|
|
1252
|
+
|
|
1253
|
+
> MIT License
|
|
1254
|
+
>
|
|
1255
|
+
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1256
|
+
>
|
|
1257
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1258
|
+
>
|
|
1259
|
+
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1260
|
+
>
|
|
1261
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1262
|
+
|
|
1263
|
+
---
|
|
1264
|
+
|
|
1265
|
+
## patch-console
|
|
1266
|
+
|
|
1267
|
+
License: MIT
|
|
1268
|
+
By: vdemedes
|
|
1269
|
+
Repository: vadimdemedes/patch-console
|
|
1270
|
+
|
|
1271
|
+
> MIT License
|
|
1272
|
+
>
|
|
1273
|
+
> Copyright (c) Vadim Demedes <vadimdemedes@hey.com> (https://vadimdemedes.com)
|
|
1274
|
+
>
|
|
1275
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1276
|
+
>
|
|
1277
|
+
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1278
|
+
>
|
|
1279
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1280
|
+
|
|
1281
|
+
---
|
|
1282
|
+
|
|
1283
|
+
## scheduler
|
|
1284
|
+
|
|
1285
|
+
License: MIT
|
|
1286
|
+
Repository: https://github.com/facebook/react.git
|
|
1287
|
+
|
|
1288
|
+
> MIT License
|
|
1289
|
+
>
|
|
1290
|
+
> Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
1291
|
+
>
|
|
1292
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1293
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
1294
|
+
> in the Software without restriction, including without limitation the rights
|
|
1295
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1296
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
1297
|
+
> furnished to do so, subject to the following conditions:
|
|
1298
|
+
>
|
|
1299
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
1300
|
+
> copies or substantial portions of the Software.
|
|
1301
|
+
>
|
|
1302
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1303
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1304
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1305
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1306
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1307
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1308
|
+
> SOFTWARE.
|
|
1309
|
+
|
|
1310
|
+
---
|
|
1311
|
+
|
|
1312
|
+
## signal-exit
|
|
1313
|
+
|
|
1314
|
+
License: ISC
|
|
1315
|
+
By: Ben Coe
|
|
1316
|
+
Repository: https://github.com/tapjs/signal-exit.git
|
|
1317
|
+
|
|
1318
|
+
> The ISC License
|
|
1319
|
+
>
|
|
1320
|
+
> Copyright (c) 2015-2023 Benjamin Coe, Isaac Z. Schlueter, and Contributors
|
|
1321
|
+
>
|
|
1322
|
+
> Permission to use, copy, modify, and/or distribute this software
|
|
1323
|
+
> for any purpose with or without fee is hereby granted, provided
|
|
1324
|
+
> that the above copyright notice and this permission notice
|
|
1325
|
+
> appear in all copies.
|
|
1326
|
+
>
|
|
1327
|
+
> THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
1328
|
+
> WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
1329
|
+
> OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
|
|
1330
|
+
> LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
|
|
1331
|
+
> OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
1332
|
+
> WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|
1333
|
+
> ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
1334
|
+
|
|
1335
|
+
---
|
|
1336
|
+
|
|
1337
|
+
## terminal-size
|
|
1338
|
+
|
|
1339
|
+
License: MIT
|
|
1340
|
+
By: Sindre Sorhus
|
|
1341
|
+
Repository: sindresorhus/terminal-size
|
|
1342
|
+
|
|
1343
|
+
> MIT License
|
|
1344
|
+
>
|
|
1345
|
+
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1346
|
+
>
|
|
1347
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1348
|
+
>
|
|
1349
|
+
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1350
|
+
>
|
|
1351
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1352
|
+
|
|
1353
|
+
---
|
|
1354
|
+
|
|
1355
|
+
## tseep
|
|
1356
|
+
|
|
1357
|
+
License: MIT
|
|
1358
|
+
By: morglod
|
|
1359
|
+
Repository: git+https://github.com/Morglod/tseep.git
|
|
1360
|
+
|
|
1361
|
+
> MIT License
|
|
1362
|
+
>
|
|
1363
|
+
> Copyright (c) 2018 Vladimir Kruzhkov @morglod
|
|
1364
|
+
>
|
|
1365
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1366
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
1367
|
+
> in the Software without restriction, including without limitation the rights
|
|
1368
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1369
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
1370
|
+
> furnished to do so, subject to the following conditions:
|
|
1371
|
+
>
|
|
1372
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
1373
|
+
> copies or substantial portions of the Software.
|
|
1374
|
+
>
|
|
1375
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1376
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1377
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1378
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1379
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1380
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1381
|
+
> SOFTWARE.
|
|
1382
|
+
|
|
1383
|
+
<!-- /DEPENDENCIES -->
|
|
1384
|
+
|
|
1385
|
+
<!-- TYPE_DEPENDENCIES -->
|
|
1386
|
+
|
|
1387
|
+
# Licenses of bundled types
|
|
1388
|
+
The published @visulima/tui artifact additionally contains code with the following licenses:
|
|
1389
|
+
MIT
|
|
1390
|
+
|
|
1391
|
+
# Bundled types:
|
|
1392
|
+
## @visulima/tabular
|
|
1393
|
+
License: MIT
|
|
1394
|
+
By: Daniel Bannert
|
|
1395
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
1396
|
+
|
|
1397
|
+
> MIT License
|
|
1398
|
+
>
|
|
1399
|
+
> Copyright (c) 2026 visulima
|
|
1400
|
+
>
|
|
1401
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1402
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
1403
|
+
> in the Software without restriction, including without limitation the rights
|
|
1404
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1405
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
1406
|
+
> furnished to do so, subject to the following conditions:
|
|
1407
|
+
>
|
|
1408
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
1409
|
+
> copies or substantial portions of the Software.
|
|
1410
|
+
>
|
|
1411
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1412
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1413
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1414
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1415
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1416
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1417
|
+
> SOFTWARE.
|
|
1418
|
+
>
|
|
1419
|
+
> <!-- DEPENDENCIES -->
|
|
1420
|
+
>
|
|
1421
|
+
> # Licenses of bundled dependencies
|
|
1422
|
+
> The published @visulima/tabular artifact additionally contains code with the following licenses:
|
|
1423
|
+
> MIT
|
|
1424
|
+
>
|
|
1425
|
+
> # Bundled dependencies:
|
|
1426
|
+
> ## @visulima/string
|
|
1427
|
+
> License: MIT
|
|
1428
|
+
> By: Daniel Bannert
|
|
1429
|
+
> Repository: git+https://github.com/visulima/visulima.git
|
|
1430
|
+
>
|
|
1431
|
+
> > MIT License
|
|
1432
|
+
> >
|
|
1433
|
+
> > Copyright (c) 2026 visulima
|
|
1434
|
+
> >
|
|
1435
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1436
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
1437
|
+
> > in the Software without restriction, including without limitation the rights
|
|
1438
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1439
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
1440
|
+
> > furnished to do so, subject to the following conditions:
|
|
1441
|
+
> >
|
|
1442
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
1443
|
+
> > copies or substantial portions of the Software.
|
|
1444
|
+
> >
|
|
1445
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1446
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1447
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1448
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1449
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1450
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1451
|
+
> > SOFTWARE.
|
|
1452
|
+
> >
|
|
1453
|
+
> >
|
|
1454
|
+
> >
|
|
1455
|
+
> > # Licenses of bundled dependencies
|
|
1456
|
+
> > The published @visulima/string artifact additionally contains code with the following licenses:
|
|
1457
|
+
> > MIT
|
|
1458
|
+
> >
|
|
1459
|
+
> > # Bundled dependencies:
|
|
1460
|
+
> > ## codsen-utils
|
|
1461
|
+
> > License: MIT
|
|
1462
|
+
> > By: Roy Revelt
|
|
1463
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
1464
|
+
> >
|
|
1465
|
+
> > > MIT License
|
|
1466
|
+
> > >
|
|
1467
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
1468
|
+
> > >
|
|
1469
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
1470
|
+
> > > a copy of this software and associated documentation files (the
|
|
1471
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
1472
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
1473
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
1474
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
1475
|
+
> > > the following conditions:
|
|
1476
|
+
> > >
|
|
1477
|
+
> > > The above copyright notice and this permission notice shall be
|
|
1478
|
+
> > > included in all copies or substantial portions of the Software.
|
|
1479
|
+
> > >
|
|
1480
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1481
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1482
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1483
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1484
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1485
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1486
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1487
|
+
> >
|
|
1488
|
+
> > ---------------------------------------
|
|
1489
|
+
> >
|
|
1490
|
+
> > ## emoji-regex-xs
|
|
1491
|
+
> > License: MIT
|
|
1492
|
+
> > By: Steven Levithan
|
|
1493
|
+
> > Repository: git+https://github.com/slevithan/emoji-regex-xs.git
|
|
1494
|
+
> >
|
|
1495
|
+
> > > MIT License
|
|
1496
|
+
> > >
|
|
1497
|
+
> > > Copyright (c) 2025 Steven Levithan
|
|
1498
|
+
> > >
|
|
1499
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1500
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
1501
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
1502
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1503
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
1504
|
+
> > > furnished to do so, subject to the following conditions:
|
|
1505
|
+
> > >
|
|
1506
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
1507
|
+
> > > copies or substantial portions of the Software.
|
|
1508
|
+
> > >
|
|
1509
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1510
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1511
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1512
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1513
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1514
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1515
|
+
> > > SOFTWARE.
|
|
1516
|
+
> >
|
|
1517
|
+
> > ---------------------------------------
|
|
1518
|
+
> >
|
|
1519
|
+
> > ## fastest-levenshtein
|
|
1520
|
+
> > License: MIT
|
|
1521
|
+
> > By: Kasper U. Weihe
|
|
1522
|
+
> > Repository: git+https://github.com/ka-weihe/fastest-levenshtein.git
|
|
1523
|
+
> >
|
|
1524
|
+
> > > MIT License
|
|
1525
|
+
> > >
|
|
1526
|
+
> > > Copyright (c) 2020 Kasper Unn Weihe
|
|
1527
|
+
> > >
|
|
1528
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1529
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
1530
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
1531
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1532
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
1533
|
+
> > > furnished to do so, subject to the following conditions:
|
|
1534
|
+
> > >
|
|
1535
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
1536
|
+
> > > copies or substantial portions of the Software.
|
|
1537
|
+
> > >
|
|
1538
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1539
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1540
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1541
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1542
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1543
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1544
|
+
> > > SOFTWARE.
|
|
1545
|
+
> >
|
|
1546
|
+
> > ---------------------------------------
|
|
1547
|
+
> >
|
|
1548
|
+
> > ## get-east-asian-width
|
|
1549
|
+
> > License: MIT
|
|
1550
|
+
> > By: Sindre Sorhus
|
|
1551
|
+
> > Repository: sindresorhus/get-east-asian-width
|
|
1552
|
+
> >
|
|
1553
|
+
> > > MIT License
|
|
1554
|
+
> > >
|
|
1555
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1556
|
+
> > >
|
|
1557
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1558
|
+
> > >
|
|
1559
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1560
|
+
> > >
|
|
1561
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1562
|
+
> >
|
|
1563
|
+
> > ---------------------------------------
|
|
1564
|
+
> >
|
|
1565
|
+
> > ## html-entities
|
|
1566
|
+
> > License: MIT
|
|
1567
|
+
> > By: Marat Dulin
|
|
1568
|
+
> > Repository: https://github.com/mdevils/html-entities.git
|
|
1569
|
+
> >
|
|
1570
|
+
> > > Copyright (c) 2021 Dulin Marat
|
|
1571
|
+
> > >
|
|
1572
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1573
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
1574
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
1575
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1576
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
1577
|
+
> > > furnished to do so, subject to the following conditions:
|
|
1578
|
+
> > >
|
|
1579
|
+
> > > The above copyright notice and this permission notice shall be included in
|
|
1580
|
+
> > > all copies or substantial portions of the Software.
|
|
1581
|
+
> > >
|
|
1582
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1583
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1584
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1585
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1586
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1587
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1588
|
+
> > > THE SOFTWARE.
|
|
1589
|
+
> >
|
|
1590
|
+
> > ---------------------------------------
|
|
1591
|
+
> >
|
|
1592
|
+
> > ## indent-string
|
|
1593
|
+
> > License: MIT
|
|
1594
|
+
> > By: Sindre Sorhus
|
|
1595
|
+
> > Repository: sindresorhus/indent-string
|
|
1596
|
+
> >
|
|
1597
|
+
> > > MIT License
|
|
1598
|
+
> > >
|
|
1599
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1600
|
+
> > >
|
|
1601
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1602
|
+
> > >
|
|
1603
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1604
|
+
> > >
|
|
1605
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1606
|
+
> >
|
|
1607
|
+
> > ---------------------------------------
|
|
1608
|
+
> >
|
|
1609
|
+
> > ## lodash-es
|
|
1610
|
+
> > License: MIT
|
|
1611
|
+
> > By: John-David Dalton, Mathias Bynens
|
|
1612
|
+
> > Repository: lodash/lodash
|
|
1613
|
+
> >
|
|
1614
|
+
> > > Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
1615
|
+
> > >
|
|
1616
|
+
> > > Based on Underscore.js, copyright Jeremy Ashkenas,
|
|
1617
|
+
> > > DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
1618
|
+
> > >
|
|
1619
|
+
> > > This software consists of voluntary contributions made by many
|
|
1620
|
+
> > > individuals. For exact contribution history, see the revision history
|
|
1621
|
+
> > > available at https://github.com/lodash/lodash
|
|
1622
|
+
> > >
|
|
1623
|
+
> > > The following license applies to all parts of this software except as
|
|
1624
|
+
> > > documented below:
|
|
1625
|
+
> > >
|
|
1626
|
+
> > > ====
|
|
1627
|
+
> > >
|
|
1628
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
1629
|
+
> > > a copy of this software and associated documentation files (the
|
|
1630
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
1631
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
1632
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
1633
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
1634
|
+
> > > the following conditions:
|
|
1635
|
+
> > >
|
|
1636
|
+
> > > The above copyright notice and this permission notice shall be
|
|
1637
|
+
> > > included in all copies or substantial portions of the Software.
|
|
1638
|
+
> > >
|
|
1639
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1640
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1641
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1642
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1643
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1644
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1645
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1646
|
+
> > >
|
|
1647
|
+
> > > ====
|
|
1648
|
+
> > >
|
|
1649
|
+
> > > Copyright and related rights for sample code are waived via CC0. Sample
|
|
1650
|
+
> > > code is defined as all source code displayed within the prose of the
|
|
1651
|
+
> > > documentation.
|
|
1652
|
+
> > >
|
|
1653
|
+
> > > CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
|
1654
|
+
> > >
|
|
1655
|
+
> > > ====
|
|
1656
|
+
> > >
|
|
1657
|
+
> > > Files located in the node_modules and vendor directories are externally
|
|
1658
|
+
> > > maintained libraries used by this software which have their own
|
|
1659
|
+
> > > licenses; we recommend you read them, as their terms may differ from the
|
|
1660
|
+
> > > terms above.
|
|
1661
|
+
> >
|
|
1662
|
+
> > ---------------------------------------
|
|
1663
|
+
> >
|
|
1664
|
+
> > ## ranges-apply
|
|
1665
|
+
> > License: MIT
|
|
1666
|
+
> > By: Roy Revelt
|
|
1667
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
1668
|
+
> >
|
|
1669
|
+
> > > MIT License
|
|
1670
|
+
> > >
|
|
1671
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
1672
|
+
> > >
|
|
1673
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
1674
|
+
> > > a copy of this software and associated documentation files (the
|
|
1675
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
1676
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
1677
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
1678
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
1679
|
+
> > > the following conditions:
|
|
1680
|
+
> > >
|
|
1681
|
+
> > > The above copyright notice and this permission notice shall be
|
|
1682
|
+
> > > included in all copies or substantial portions of the Software.
|
|
1683
|
+
> > >
|
|
1684
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1685
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1686
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1687
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1688
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1689
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1690
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1691
|
+
> >
|
|
1692
|
+
> > ---------------------------------------
|
|
1693
|
+
> >
|
|
1694
|
+
> > ## ranges-merge
|
|
1695
|
+
> > License: MIT
|
|
1696
|
+
> > By: Roy Revelt
|
|
1697
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
1698
|
+
> >
|
|
1699
|
+
> > > MIT License
|
|
1700
|
+
> > >
|
|
1701
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
1702
|
+
> > >
|
|
1703
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
1704
|
+
> > > a copy of this software and associated documentation files (the
|
|
1705
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
1706
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
1707
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
1708
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
1709
|
+
> > > the following conditions:
|
|
1710
|
+
> > >
|
|
1711
|
+
> > > The above copyright notice and this permission notice shall be
|
|
1712
|
+
> > > included in all copies or substantial portions of the Software.
|
|
1713
|
+
> > >
|
|
1714
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1715
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1716
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1717
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1718
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1719
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1720
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1721
|
+
> >
|
|
1722
|
+
> > ---------------------------------------
|
|
1723
|
+
> >
|
|
1724
|
+
> > ## ranges-push
|
|
1725
|
+
> > License: MIT
|
|
1726
|
+
> > By: Roy Revelt
|
|
1727
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
1728
|
+
> >
|
|
1729
|
+
> > > MIT License
|
|
1730
|
+
> > >
|
|
1731
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
1732
|
+
> > >
|
|
1733
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
1734
|
+
> > > a copy of this software and associated documentation files (the
|
|
1735
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
1736
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
1737
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
1738
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
1739
|
+
> > > the following conditions:
|
|
1740
|
+
> > >
|
|
1741
|
+
> > > The above copyright notice and this permission notice shall be
|
|
1742
|
+
> > > included in all copies or substantial portions of the Software.
|
|
1743
|
+
> > >
|
|
1744
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1745
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1746
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1747
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1748
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1749
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1750
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1751
|
+
> >
|
|
1752
|
+
> > ---------------------------------------
|
|
1753
|
+
> >
|
|
1754
|
+
> > ## ranges-sort
|
|
1755
|
+
> > License: MIT
|
|
1756
|
+
> > By: Roy Revelt
|
|
1757
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
1758
|
+
> >
|
|
1759
|
+
> > > MIT License
|
|
1760
|
+
> > >
|
|
1761
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
1762
|
+
> > >
|
|
1763
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
1764
|
+
> > > a copy of this software and associated documentation files (the
|
|
1765
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
1766
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
1767
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
1768
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
1769
|
+
> > > the following conditions:
|
|
1770
|
+
> > >
|
|
1771
|
+
> > > The above copyright notice and this permission notice shall be
|
|
1772
|
+
> > > included in all copies or substantial portions of the Software.
|
|
1773
|
+
> > >
|
|
1774
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1775
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1776
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1777
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1778
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1779
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1780
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1781
|
+
> >
|
|
1782
|
+
> > ---------------------------------------
|
|
1783
|
+
> >
|
|
1784
|
+
> > ## redent
|
|
1785
|
+
> > License: MIT
|
|
1786
|
+
> > By: Sindre Sorhus
|
|
1787
|
+
> > Repository: sindresorhus/redent
|
|
1788
|
+
> >
|
|
1789
|
+
> > > MIT License
|
|
1790
|
+
> > >
|
|
1791
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1792
|
+
> > >
|
|
1793
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1794
|
+
> > >
|
|
1795
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1796
|
+
> > >
|
|
1797
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1798
|
+
> >
|
|
1799
|
+
> > ---------------------------------------
|
|
1800
|
+
> >
|
|
1801
|
+
> > ## rfdc
|
|
1802
|
+
> > License: MIT
|
|
1803
|
+
> > By: David Mark Clements
|
|
1804
|
+
> > Repository: git+https://github.com/davidmarkclements/rfdc.git
|
|
1805
|
+
> >
|
|
1806
|
+
> > > Copyright 2019 "David Mark Clements <david.mark.clements@gmail.com>"
|
|
1807
|
+
> > >
|
|
1808
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
|
1809
|
+
> > > documentation files (the "Software"), to deal in the Software without restriction, including without limitation
|
|
1810
|
+
> > > the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
|
|
1811
|
+
> > > to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1812
|
+
> > >
|
|
1813
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions
|
|
1814
|
+
> > > of the Software.
|
|
1815
|
+
> > >
|
|
1816
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
1817
|
+
> > > TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
1818
|
+
> > > THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
1819
|
+
> > > CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1820
|
+
> > > IN THE SOFTWARE.
|
|
1821
|
+
> >
|
|
1822
|
+
> > ---------------------------------------
|
|
1823
|
+
> >
|
|
1824
|
+
> > ## string-collapse-leading-whitespace
|
|
1825
|
+
> > License: MIT
|
|
1826
|
+
> > By: Roy Revelt
|
|
1827
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
1828
|
+
> >
|
|
1829
|
+
> > > MIT License
|
|
1830
|
+
> > >
|
|
1831
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
1832
|
+
> > >
|
|
1833
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
1834
|
+
> > > a copy of this software and associated documentation files (the
|
|
1835
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
1836
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
1837
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
1838
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
1839
|
+
> > > the following conditions:
|
|
1840
|
+
> > >
|
|
1841
|
+
> > > The above copyright notice and this permission notice shall be
|
|
1842
|
+
> > > included in all copies or substantial portions of the Software.
|
|
1843
|
+
> > >
|
|
1844
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1845
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1846
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1847
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1848
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1849
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1850
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1851
|
+
> >
|
|
1852
|
+
> > ---------------------------------------
|
|
1853
|
+
> >
|
|
1854
|
+
> > ## string-left-right
|
|
1855
|
+
> > License: MIT
|
|
1856
|
+
> > By: Roy Revelt
|
|
1857
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
1858
|
+
> >
|
|
1859
|
+
> > > MIT License
|
|
1860
|
+
> > >
|
|
1861
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
1862
|
+
> > >
|
|
1863
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
1864
|
+
> > > a copy of this software and associated documentation files (the
|
|
1865
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
1866
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
1867
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
1868
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
1869
|
+
> > > the following conditions:
|
|
1870
|
+
> > >
|
|
1871
|
+
> > > The above copyright notice and this permission notice shall be
|
|
1872
|
+
> > > included in all copies or substantial portions of the Software.
|
|
1873
|
+
> > >
|
|
1874
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1875
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1876
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1877
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1878
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1879
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1880
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1881
|
+
> >
|
|
1882
|
+
> > ---------------------------------------
|
|
1883
|
+
> >
|
|
1884
|
+
> > ## string-strip-html
|
|
1885
|
+
> > License: MIT
|
|
1886
|
+
> > By: Roy Revelt
|
|
1887
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
1888
|
+
> >
|
|
1889
|
+
> > > MIT License
|
|
1890
|
+
> > >
|
|
1891
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
1892
|
+
> > >
|
|
1893
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
1894
|
+
> > > a copy of this software and associated documentation files (the
|
|
1895
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
1896
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
1897
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
1898
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
1899
|
+
> > > the following conditions:
|
|
1900
|
+
> > >
|
|
1901
|
+
> > > The above copyright notice and this permission notice shall be
|
|
1902
|
+
> > > included in all copies or substantial portions of the Software.
|
|
1903
|
+
> > >
|
|
1904
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1905
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1906
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1907
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1908
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1909
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1910
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1911
|
+
> >
|
|
1912
|
+
> > ---------------------------------------
|
|
1913
|
+
> >
|
|
1914
|
+
> > ## strip-indent
|
|
1915
|
+
> > License: MIT
|
|
1916
|
+
> > By: Sindre Sorhus
|
|
1917
|
+
> > Repository: sindresorhus/strip-indent
|
|
1918
|
+
> >
|
|
1919
|
+
> > > MIT License
|
|
1920
|
+
> > >
|
|
1921
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1922
|
+
> > >
|
|
1923
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1924
|
+
> > >
|
|
1925
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1926
|
+
> > >
|
|
1927
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1928
|
+
> >
|
|
1929
|
+
> > ---------------------------------------
|
|
1930
|
+
> >
|
|
1931
|
+
> > ## tiny-invariant
|
|
1932
|
+
> > License: MIT
|
|
1933
|
+
> > By: Alex Reardon
|
|
1934
|
+
> > Repository: https://github.com/alexreardon/tiny-invariant.git
|
|
1935
|
+
> >
|
|
1936
|
+
> > > MIT License
|
|
1937
|
+
> > >
|
|
1938
|
+
> > > Copyright (c) 2019 Alexander Reardon
|
|
1939
|
+
> > >
|
|
1940
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1941
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
1942
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
1943
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1944
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
1945
|
+
> > > furnished to do so, subject to the following conditions:
|
|
1946
|
+
> > >
|
|
1947
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
1948
|
+
> > > copies or substantial portions of the Software.
|
|
1949
|
+
> > >
|
|
1950
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1951
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1952
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1953
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1954
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1955
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1956
|
+
> > > SOFTWARE.
|
|
1957
|
+
> >
|
|
1958
|
+
> >
|
|
1959
|
+
> >
|
|
1960
|
+
> >
|
|
1961
|
+
> >
|
|
1962
|
+
> > # Licenses of bundled types
|
|
1963
|
+
> > The published @visulima/string artifact additionally contains code with the following licenses:
|
|
1964
|
+
> > MIT
|
|
1965
|
+
> >
|
|
1966
|
+
> > # Bundled types:
|
|
1967
|
+
> > ## fastest-levenshtein
|
|
1968
|
+
> > License: MIT
|
|
1969
|
+
> > By: Kasper U. Weihe
|
|
1970
|
+
> > Repository: git+https://github.com/ka-weihe/fastest-levenshtein.git
|
|
1971
|
+
> >
|
|
1972
|
+
> > > MIT License
|
|
1973
|
+
> > >
|
|
1974
|
+
> > > Copyright (c) 2020 Kasper Unn Weihe
|
|
1975
|
+
> > >
|
|
1976
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1977
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
1978
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
1979
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1980
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
1981
|
+
> > > furnished to do so, subject to the following conditions:
|
|
1982
|
+
> > >
|
|
1983
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
1984
|
+
> > > copies or substantial portions of the Software.
|
|
1985
|
+
> > >
|
|
1986
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1987
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1988
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1989
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1990
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1991
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1992
|
+
> > > SOFTWARE.
|
|
1993
|
+
> >
|
|
1994
|
+
> > ---------------------------------------
|
|
1995
|
+
> >
|
|
1996
|
+
> > ## get-east-asian-width
|
|
1997
|
+
> > License: MIT
|
|
1998
|
+
> > By: Sindre Sorhus
|
|
1999
|
+
> > Repository: sindresorhus/get-east-asian-width
|
|
2000
|
+
> >
|
|
2001
|
+
> > > MIT License
|
|
2002
|
+
> > >
|
|
2003
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2004
|
+
> > >
|
|
2005
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2006
|
+
> > >
|
|
2007
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2008
|
+
> > >
|
|
2009
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2010
|
+
> >
|
|
2011
|
+
> > ---------------------------------------
|
|
2012
|
+
> >
|
|
2013
|
+
> > ## indent-string
|
|
2014
|
+
> > License: MIT
|
|
2015
|
+
> > By: Sindre Sorhus
|
|
2016
|
+
> > Repository: sindresorhus/indent-string
|
|
2017
|
+
> >
|
|
2018
|
+
> > > MIT License
|
|
2019
|
+
> > >
|
|
2020
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2021
|
+
> > >
|
|
2022
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2023
|
+
> > >
|
|
2024
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2025
|
+
> > >
|
|
2026
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2027
|
+
> >
|
|
2028
|
+
> > ---------------------------------------
|
|
2029
|
+
> >
|
|
2030
|
+
> > ## redent
|
|
2031
|
+
> > License: MIT
|
|
2032
|
+
> > By: Sindre Sorhus
|
|
2033
|
+
> > Repository: sindresorhus/redent
|
|
2034
|
+
> >
|
|
2035
|
+
> > > MIT License
|
|
2036
|
+
> > >
|
|
2037
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2038
|
+
> > >
|
|
2039
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2040
|
+
> > >
|
|
2041
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2042
|
+
> > >
|
|
2043
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2044
|
+
> >
|
|
2045
|
+
> > ---------------------------------------
|
|
2046
|
+
> >
|
|
2047
|
+
> > ## strip-indent
|
|
2048
|
+
> > License: MIT
|
|
2049
|
+
> > By: Sindre Sorhus
|
|
2050
|
+
> > Repository: sindresorhus/strip-indent
|
|
2051
|
+
> >
|
|
2052
|
+
> > > MIT License
|
|
2053
|
+
> > >
|
|
2054
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2055
|
+
> > >
|
|
2056
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2057
|
+
> > >
|
|
2058
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2059
|
+
> > >
|
|
2060
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2061
|
+
>
|
|
2062
|
+
> ---------------------------------------
|
|
2063
|
+
>
|
|
2064
|
+
> ## terminal-size
|
|
2065
|
+
> License: MIT
|
|
2066
|
+
> By: Sindre Sorhus
|
|
2067
|
+
> Repository: sindresorhus/terminal-size
|
|
2068
|
+
>
|
|
2069
|
+
> > MIT License
|
|
2070
|
+
> >
|
|
2071
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2072
|
+
> >
|
|
2073
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2074
|
+
> >
|
|
2075
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2076
|
+
> >
|
|
2077
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2078
|
+
>
|
|
2079
|
+
> <!-- /DEPENDENCIES -->
|
|
2080
|
+
>
|
|
2081
|
+
>
|
|
2082
|
+
>
|
|
2083
|
+
> # Licenses of bundled types
|
|
2084
|
+
> The published @visulima/tabular artifact additionally contains code with the following licenses:
|
|
2085
|
+
> MIT
|
|
2086
|
+
>
|
|
2087
|
+
> # Bundled types:
|
|
2088
|
+
> ## @visulima/string
|
|
2089
|
+
> License: MIT
|
|
2090
|
+
> By: Daniel Bannert
|
|
2091
|
+
> Repository: git+https://github.com/visulima/visulima.git
|
|
2092
|
+
>
|
|
2093
|
+
> > MIT License
|
|
2094
|
+
> >
|
|
2095
|
+
> > Copyright (c) 2026 visulima
|
|
2096
|
+
> >
|
|
2097
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2098
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
2099
|
+
> > in the Software without restriction, including without limitation the rights
|
|
2100
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2101
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
2102
|
+
> > furnished to do so, subject to the following conditions:
|
|
2103
|
+
> >
|
|
2104
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
2105
|
+
> > copies or substantial portions of the Software.
|
|
2106
|
+
> >
|
|
2107
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2108
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2109
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2110
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2111
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2112
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2113
|
+
> > SOFTWARE.
|
|
2114
|
+
> >
|
|
2115
|
+
> > <!-- DEPENDENCIES -->
|
|
2116
|
+
> >
|
|
2117
|
+
> > # Licenses of bundled dependencies
|
|
2118
|
+
> > The published @visulima/string artifact additionally contains code with the following licenses:
|
|
2119
|
+
> > MIT
|
|
2120
|
+
> >
|
|
2121
|
+
> > # Bundled dependencies:
|
|
2122
|
+
> > ## codsen-utils
|
|
2123
|
+
> > License: MIT
|
|
2124
|
+
> > By: Roy Revelt
|
|
2125
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
2126
|
+
> >
|
|
2127
|
+
> > > MIT License
|
|
2128
|
+
> > >
|
|
2129
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
2130
|
+
> > >
|
|
2131
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
2132
|
+
> > > a copy of this software and associated documentation files (the
|
|
2133
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
2134
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
2135
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
2136
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
2137
|
+
> > > the following conditions:
|
|
2138
|
+
> > >
|
|
2139
|
+
> > > The above copyright notice and this permission notice shall be
|
|
2140
|
+
> > > included in all copies or substantial portions of the Software.
|
|
2141
|
+
> > >
|
|
2142
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
2143
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2144
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2145
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
2146
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
2147
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
2148
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2149
|
+
> >
|
|
2150
|
+
> > ---------------------------------------
|
|
2151
|
+
> >
|
|
2152
|
+
> > ## emoji-regex-xs
|
|
2153
|
+
> > License: MIT
|
|
2154
|
+
> > By: Steven Levithan
|
|
2155
|
+
> > Repository: git+https://github.com/slevithan/emoji-regex-xs.git
|
|
2156
|
+
> >
|
|
2157
|
+
> > > MIT License
|
|
2158
|
+
> > >
|
|
2159
|
+
> > > Copyright (c) 2025 Steven Levithan
|
|
2160
|
+
> > >
|
|
2161
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2162
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
2163
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
2164
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2165
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
2166
|
+
> > > furnished to do so, subject to the following conditions:
|
|
2167
|
+
> > >
|
|
2168
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
2169
|
+
> > > copies or substantial portions of the Software.
|
|
2170
|
+
> > >
|
|
2171
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2172
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2173
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2174
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2175
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2176
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2177
|
+
> > > SOFTWARE.
|
|
2178
|
+
> >
|
|
2179
|
+
> > ---------------------------------------
|
|
2180
|
+
> >
|
|
2181
|
+
> > ## fastest-levenshtein
|
|
2182
|
+
> > License: MIT
|
|
2183
|
+
> > By: Kasper U. Weihe
|
|
2184
|
+
> > Repository: git+https://github.com/ka-weihe/fastest-levenshtein.git
|
|
2185
|
+
> >
|
|
2186
|
+
> > > MIT License
|
|
2187
|
+
> > >
|
|
2188
|
+
> > > Copyright (c) 2020 Kasper Unn Weihe
|
|
2189
|
+
> > >
|
|
2190
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2191
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
2192
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
2193
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2194
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
2195
|
+
> > > furnished to do so, subject to the following conditions:
|
|
2196
|
+
> > >
|
|
2197
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
2198
|
+
> > > copies or substantial portions of the Software.
|
|
2199
|
+
> > >
|
|
2200
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2201
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2202
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2203
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2204
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2205
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2206
|
+
> > > SOFTWARE.
|
|
2207
|
+
> >
|
|
2208
|
+
> > ---------------------------------------
|
|
2209
|
+
> >
|
|
2210
|
+
> > ## get-east-asian-width
|
|
2211
|
+
> > License: MIT
|
|
2212
|
+
> > By: Sindre Sorhus
|
|
2213
|
+
> > Repository: sindresorhus/get-east-asian-width
|
|
2214
|
+
> >
|
|
2215
|
+
> > > MIT License
|
|
2216
|
+
> > >
|
|
2217
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2218
|
+
> > >
|
|
2219
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2220
|
+
> > >
|
|
2221
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2222
|
+
> > >
|
|
2223
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2224
|
+
> >
|
|
2225
|
+
> > ---------------------------------------
|
|
2226
|
+
> >
|
|
2227
|
+
> > ## html-entities
|
|
2228
|
+
> > License: MIT
|
|
2229
|
+
> > By: Marat Dulin
|
|
2230
|
+
> > Repository: https://github.com/mdevils/html-entities.git
|
|
2231
|
+
> >
|
|
2232
|
+
> > > Copyright (c) 2021 Dulin Marat
|
|
2233
|
+
> > >
|
|
2234
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2235
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
2236
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
2237
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2238
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
2239
|
+
> > > furnished to do so, subject to the following conditions:
|
|
2240
|
+
> > >
|
|
2241
|
+
> > > The above copyright notice and this permission notice shall be included in
|
|
2242
|
+
> > > all copies or substantial portions of the Software.
|
|
2243
|
+
> > >
|
|
2244
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2245
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2246
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2247
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2248
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2249
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2250
|
+
> > > THE SOFTWARE.
|
|
2251
|
+
> >
|
|
2252
|
+
> > ---------------------------------------
|
|
2253
|
+
> >
|
|
2254
|
+
> > ## indent-string
|
|
2255
|
+
> > License: MIT
|
|
2256
|
+
> > By: Sindre Sorhus
|
|
2257
|
+
> > Repository: sindresorhus/indent-string
|
|
2258
|
+
> >
|
|
2259
|
+
> > > MIT License
|
|
2260
|
+
> > >
|
|
2261
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2262
|
+
> > >
|
|
2263
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2264
|
+
> > >
|
|
2265
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2266
|
+
> > >
|
|
2267
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2268
|
+
> >
|
|
2269
|
+
> > ---------------------------------------
|
|
2270
|
+
> >
|
|
2271
|
+
> > ## lodash-es
|
|
2272
|
+
> > License: MIT
|
|
2273
|
+
> > By: John-David Dalton, Mathias Bynens
|
|
2274
|
+
> > Repository: lodash/lodash
|
|
2275
|
+
> >
|
|
2276
|
+
> > > Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
2277
|
+
> > >
|
|
2278
|
+
> > > Based on Underscore.js, copyright Jeremy Ashkenas,
|
|
2279
|
+
> > > DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
|
2280
|
+
> > >
|
|
2281
|
+
> > > This software consists of voluntary contributions made by many
|
|
2282
|
+
> > > individuals. For exact contribution history, see the revision history
|
|
2283
|
+
> > > available at https://github.com/lodash/lodash
|
|
2284
|
+
> > >
|
|
2285
|
+
> > > The following license applies to all parts of this software except as
|
|
2286
|
+
> > > documented below:
|
|
2287
|
+
> > >
|
|
2288
|
+
> > > ====
|
|
2289
|
+
> > >
|
|
2290
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
2291
|
+
> > > a copy of this software and associated documentation files (the
|
|
2292
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
2293
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
2294
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
2295
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
2296
|
+
> > > the following conditions:
|
|
2297
|
+
> > >
|
|
2298
|
+
> > > The above copyright notice and this permission notice shall be
|
|
2299
|
+
> > > included in all copies or substantial portions of the Software.
|
|
2300
|
+
> > >
|
|
2301
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
2302
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2303
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2304
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
2305
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
2306
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
2307
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2308
|
+
> > >
|
|
2309
|
+
> > > ====
|
|
2310
|
+
> > >
|
|
2311
|
+
> > > Copyright and related rights for sample code are waived via CC0. Sample
|
|
2312
|
+
> > > code is defined as all source code displayed within the prose of the
|
|
2313
|
+
> > > documentation.
|
|
2314
|
+
> > >
|
|
2315
|
+
> > > CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
|
2316
|
+
> > >
|
|
2317
|
+
> > > ====
|
|
2318
|
+
> > >
|
|
2319
|
+
> > > Files located in the node_modules and vendor directories are externally
|
|
2320
|
+
> > > maintained libraries used by this software which have their own
|
|
2321
|
+
> > > licenses; we recommend you read them, as their terms may differ from the
|
|
2322
|
+
> > > terms above.
|
|
2323
|
+
> >
|
|
2324
|
+
> > ---------------------------------------
|
|
2325
|
+
> >
|
|
2326
|
+
> > ## ranges-apply
|
|
2327
|
+
> > License: MIT
|
|
2328
|
+
> > By: Roy Revelt
|
|
2329
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
2330
|
+
> >
|
|
2331
|
+
> > > MIT License
|
|
2332
|
+
> > >
|
|
2333
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
2334
|
+
> > >
|
|
2335
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
2336
|
+
> > > a copy of this software and associated documentation files (the
|
|
2337
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
2338
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
2339
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
2340
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
2341
|
+
> > > the following conditions:
|
|
2342
|
+
> > >
|
|
2343
|
+
> > > The above copyright notice and this permission notice shall be
|
|
2344
|
+
> > > included in all copies or substantial portions of the Software.
|
|
2345
|
+
> > >
|
|
2346
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
2347
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2348
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2349
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
2350
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
2351
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
2352
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2353
|
+
> >
|
|
2354
|
+
> > ---------------------------------------
|
|
2355
|
+
> >
|
|
2356
|
+
> > ## ranges-merge
|
|
2357
|
+
> > License: MIT
|
|
2358
|
+
> > By: Roy Revelt
|
|
2359
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
2360
|
+
> >
|
|
2361
|
+
> > > MIT License
|
|
2362
|
+
> > >
|
|
2363
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
2364
|
+
> > >
|
|
2365
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
2366
|
+
> > > a copy of this software and associated documentation files (the
|
|
2367
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
2368
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
2369
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
2370
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
2371
|
+
> > > the following conditions:
|
|
2372
|
+
> > >
|
|
2373
|
+
> > > The above copyright notice and this permission notice shall be
|
|
2374
|
+
> > > included in all copies or substantial portions of the Software.
|
|
2375
|
+
> > >
|
|
2376
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
2377
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2378
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2379
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
2380
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
2381
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
2382
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2383
|
+
> >
|
|
2384
|
+
> > ---------------------------------------
|
|
2385
|
+
> >
|
|
2386
|
+
> > ## ranges-push
|
|
2387
|
+
> > License: MIT
|
|
2388
|
+
> > By: Roy Revelt
|
|
2389
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
2390
|
+
> >
|
|
2391
|
+
> > > MIT License
|
|
2392
|
+
> > >
|
|
2393
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
2394
|
+
> > >
|
|
2395
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
2396
|
+
> > > a copy of this software and associated documentation files (the
|
|
2397
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
2398
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
2399
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
2400
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
2401
|
+
> > > the following conditions:
|
|
2402
|
+
> > >
|
|
2403
|
+
> > > The above copyright notice and this permission notice shall be
|
|
2404
|
+
> > > included in all copies or substantial portions of the Software.
|
|
2405
|
+
> > >
|
|
2406
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
2407
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2408
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2409
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
2410
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
2411
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
2412
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2413
|
+
> >
|
|
2414
|
+
> > ---------------------------------------
|
|
2415
|
+
> >
|
|
2416
|
+
> > ## ranges-sort
|
|
2417
|
+
> > License: MIT
|
|
2418
|
+
> > By: Roy Revelt
|
|
2419
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
2420
|
+
> >
|
|
2421
|
+
> > > MIT License
|
|
2422
|
+
> > >
|
|
2423
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
2424
|
+
> > >
|
|
2425
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
2426
|
+
> > > a copy of this software and associated documentation files (the
|
|
2427
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
2428
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
2429
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
2430
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
2431
|
+
> > > the following conditions:
|
|
2432
|
+
> > >
|
|
2433
|
+
> > > The above copyright notice and this permission notice shall be
|
|
2434
|
+
> > > included in all copies or substantial portions of the Software.
|
|
2435
|
+
> > >
|
|
2436
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
2437
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2438
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2439
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
2440
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
2441
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
2442
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2443
|
+
> >
|
|
2444
|
+
> > ---------------------------------------
|
|
2445
|
+
> >
|
|
2446
|
+
> > ## redent
|
|
2447
|
+
> > License: MIT
|
|
2448
|
+
> > By: Sindre Sorhus
|
|
2449
|
+
> > Repository: sindresorhus/redent
|
|
2450
|
+
> >
|
|
2451
|
+
> > > MIT License
|
|
2452
|
+
> > >
|
|
2453
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2454
|
+
> > >
|
|
2455
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2456
|
+
> > >
|
|
2457
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2458
|
+
> > >
|
|
2459
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2460
|
+
> >
|
|
2461
|
+
> > ---------------------------------------
|
|
2462
|
+
> >
|
|
2463
|
+
> > ## rfdc
|
|
2464
|
+
> > License: MIT
|
|
2465
|
+
> > By: David Mark Clements
|
|
2466
|
+
> > Repository: git+https://github.com/davidmarkclements/rfdc.git
|
|
2467
|
+
> >
|
|
2468
|
+
> > > Copyright 2019 "David Mark Clements <david.mark.clements@gmail.com>"
|
|
2469
|
+
> > >
|
|
2470
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
|
2471
|
+
> > > documentation files (the "Software"), to deal in the Software without restriction, including without limitation
|
|
2472
|
+
> > > the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
|
|
2473
|
+
> > > to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2474
|
+
> > >
|
|
2475
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions
|
|
2476
|
+
> > > of the Software.
|
|
2477
|
+
> > >
|
|
2478
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
2479
|
+
> > > TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
2480
|
+
> > > THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
2481
|
+
> > > CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
2482
|
+
> > > IN THE SOFTWARE.
|
|
2483
|
+
> >
|
|
2484
|
+
> > ---------------------------------------
|
|
2485
|
+
> >
|
|
2486
|
+
> > ## string-collapse-leading-whitespace
|
|
2487
|
+
> > License: MIT
|
|
2488
|
+
> > By: Roy Revelt
|
|
2489
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
2490
|
+
> >
|
|
2491
|
+
> > > MIT License
|
|
2492
|
+
> > >
|
|
2493
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
2494
|
+
> > >
|
|
2495
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
2496
|
+
> > > a copy of this software and associated documentation files (the
|
|
2497
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
2498
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
2499
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
2500
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
2501
|
+
> > > the following conditions:
|
|
2502
|
+
> > >
|
|
2503
|
+
> > > The above copyright notice and this permission notice shall be
|
|
2504
|
+
> > > included in all copies or substantial portions of the Software.
|
|
2505
|
+
> > >
|
|
2506
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
2507
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2508
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2509
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
2510
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
2511
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
2512
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2513
|
+
> >
|
|
2514
|
+
> > ---------------------------------------
|
|
2515
|
+
> >
|
|
2516
|
+
> > ## string-left-right
|
|
2517
|
+
> > License: MIT
|
|
2518
|
+
> > By: Roy Revelt
|
|
2519
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
2520
|
+
> >
|
|
2521
|
+
> > > MIT License
|
|
2522
|
+
> > >
|
|
2523
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
2524
|
+
> > >
|
|
2525
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
2526
|
+
> > > a copy of this software and associated documentation files (the
|
|
2527
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
2528
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
2529
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
2530
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
2531
|
+
> > > the following conditions:
|
|
2532
|
+
> > >
|
|
2533
|
+
> > > The above copyright notice and this permission notice shall be
|
|
2534
|
+
> > > included in all copies or substantial portions of the Software.
|
|
2535
|
+
> > >
|
|
2536
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
2537
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2538
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2539
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
2540
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
2541
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
2542
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2543
|
+
> >
|
|
2544
|
+
> > ---------------------------------------
|
|
2545
|
+
> >
|
|
2546
|
+
> > ## string-strip-html
|
|
2547
|
+
> > License: MIT
|
|
2548
|
+
> > By: Roy Revelt
|
|
2549
|
+
> > Repository: git+https://github.com/codsen/codsen.git
|
|
2550
|
+
> >
|
|
2551
|
+
> > > MIT License
|
|
2552
|
+
> > >
|
|
2553
|
+
> > > Copyright © 2010-2025 Roy Revelt and other contributors
|
|
2554
|
+
> > >
|
|
2555
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining
|
|
2556
|
+
> > > a copy of this software and associated documentation files (the
|
|
2557
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
2558
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
2559
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to
|
|
2560
|
+
> > > permit persons to whom the Software is furnished to do so, subject to
|
|
2561
|
+
> > > the following conditions:
|
|
2562
|
+
> > >
|
|
2563
|
+
> > > The above copyright notice and this permission notice shall be
|
|
2564
|
+
> > > included in all copies or substantial portions of the Software.
|
|
2565
|
+
> > >
|
|
2566
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
2567
|
+
> > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2568
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2569
|
+
> > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
2570
|
+
> > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
2571
|
+
> > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
2572
|
+
> > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2573
|
+
> >
|
|
2574
|
+
> > ---------------------------------------
|
|
2575
|
+
> >
|
|
2576
|
+
> > ## strip-indent
|
|
2577
|
+
> > License: MIT
|
|
2578
|
+
> > By: Sindre Sorhus
|
|
2579
|
+
> > Repository: sindresorhus/strip-indent
|
|
2580
|
+
> >
|
|
2581
|
+
> > > MIT License
|
|
2582
|
+
> > >
|
|
2583
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2584
|
+
> > >
|
|
2585
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2586
|
+
> > >
|
|
2587
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2588
|
+
> > >
|
|
2589
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2590
|
+
> >
|
|
2591
|
+
> > ---------------------------------------
|
|
2592
|
+
> >
|
|
2593
|
+
> > ## tiny-invariant
|
|
2594
|
+
> > License: MIT
|
|
2595
|
+
> > By: Alex Reardon
|
|
2596
|
+
> > Repository: https://github.com/alexreardon/tiny-invariant.git
|
|
2597
|
+
> >
|
|
2598
|
+
> > > MIT License
|
|
2599
|
+
> > >
|
|
2600
|
+
> > > Copyright (c) 2019 Alexander Reardon
|
|
2601
|
+
> > >
|
|
2602
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2603
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
2604
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
2605
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2606
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
2607
|
+
> > > furnished to do so, subject to the following conditions:
|
|
2608
|
+
> > >
|
|
2609
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
2610
|
+
> > > copies or substantial portions of the Software.
|
|
2611
|
+
> > >
|
|
2612
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2613
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2614
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2615
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2616
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2617
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2618
|
+
> > > SOFTWARE.
|
|
2619
|
+
> >
|
|
2620
|
+
> > <!-- /DEPENDENCIES -->
|
|
2621
|
+
> >
|
|
2622
|
+
> >
|
|
2623
|
+
> >
|
|
2624
|
+
> > # Licenses of bundled types
|
|
2625
|
+
> > The published @visulima/string artifact additionally contains code with the following licenses:
|
|
2626
|
+
> > MIT
|
|
2627
|
+
> >
|
|
2628
|
+
> > # Bundled types:
|
|
2629
|
+
> > ## fastest-levenshtein
|
|
2630
|
+
> > License: MIT
|
|
2631
|
+
> > By: Kasper U. Weihe
|
|
2632
|
+
> > Repository: git+https://github.com/ka-weihe/fastest-levenshtein.git
|
|
2633
|
+
> >
|
|
2634
|
+
> > > MIT License
|
|
2635
|
+
> > >
|
|
2636
|
+
> > > Copyright (c) 2020 Kasper Unn Weihe
|
|
2637
|
+
> > >
|
|
2638
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2639
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
2640
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
2641
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2642
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
2643
|
+
> > > furnished to do so, subject to the following conditions:
|
|
2644
|
+
> > >
|
|
2645
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
2646
|
+
> > > copies or substantial portions of the Software.
|
|
2647
|
+
> > >
|
|
2648
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2649
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2650
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2651
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2652
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2653
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2654
|
+
> > > SOFTWARE.
|
|
2655
|
+
> >
|
|
2656
|
+
> > ---------------------------------------
|
|
2657
|
+
> >
|
|
2658
|
+
> > ## get-east-asian-width
|
|
2659
|
+
> > License: MIT
|
|
2660
|
+
> > By: Sindre Sorhus
|
|
2661
|
+
> > Repository: sindresorhus/get-east-asian-width
|
|
2662
|
+
> >
|
|
2663
|
+
> > > MIT License
|
|
2664
|
+
> > >
|
|
2665
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2666
|
+
> > >
|
|
2667
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2668
|
+
> > >
|
|
2669
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2670
|
+
> > >
|
|
2671
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2672
|
+
> >
|
|
2673
|
+
> > ---------------------------------------
|
|
2674
|
+
> >
|
|
2675
|
+
> > ## indent-string
|
|
2676
|
+
> > License: MIT
|
|
2677
|
+
> > By: Sindre Sorhus
|
|
2678
|
+
> > Repository: sindresorhus/indent-string
|
|
2679
|
+
> >
|
|
2680
|
+
> > > MIT License
|
|
2681
|
+
> > >
|
|
2682
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2683
|
+
> > >
|
|
2684
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2685
|
+
> > >
|
|
2686
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2687
|
+
> > >
|
|
2688
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2689
|
+
> >
|
|
2690
|
+
> > ---------------------------------------
|
|
2691
|
+
> >
|
|
2692
|
+
> > ## redent
|
|
2693
|
+
> > License: MIT
|
|
2694
|
+
> > By: Sindre Sorhus
|
|
2695
|
+
> > Repository: sindresorhus/redent
|
|
2696
|
+
> >
|
|
2697
|
+
> > > MIT License
|
|
2698
|
+
> > >
|
|
2699
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2700
|
+
> > >
|
|
2701
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2702
|
+
> > >
|
|
2703
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2704
|
+
> > >
|
|
2705
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2706
|
+
> >
|
|
2707
|
+
> > ---------------------------------------
|
|
2708
|
+
> >
|
|
2709
|
+
> > ## strip-indent
|
|
2710
|
+
> > License: MIT
|
|
2711
|
+
> > By: Sindre Sorhus
|
|
2712
|
+
> > Repository: sindresorhus/strip-indent
|
|
2713
|
+
> >
|
|
2714
|
+
> > > MIT License
|
|
2715
|
+
> > >
|
|
2716
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2717
|
+
> > >
|
|
2718
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2719
|
+
> > >
|
|
2720
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2721
|
+
> > >
|
|
2722
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
496
2723
|
|
|
497
2724
|
<!-- /TYPE_DEPENDENCIES -->
|