@quantiya/codevibe-codex-plugin 2.0.4 → 2.0.5
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/node_modules/@quantiya/codevibe-core/dist/index.js +198 -196
- package/node_modules/@quantiya/codevibe-core/dist/local-model/manager.d.ts +18 -6
- package/node_modules/@quantiya/codevibe-core/dist/local-model/ollama.d.ts +38 -1
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-types.d.ts +9 -4
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/mobile-user-prompt-return.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/runOrchestrationShell-session-retire.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +1155 -824
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/InputBar.d.ts +67 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/emit-shell-event.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +119 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/ink-runtime.d.ts +11 -1
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mode-selection.d.ts +5 -9
- package/node_modules/@quantiya/codevibe-core/dist/types/session.d.ts +2 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/LICENSE +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/README.md +278 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js +57 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/consts.d.ts +17 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/consts.js +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/consts.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/diff.js +26 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/diff.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/reduce.js +37 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/reduce.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/tokenize.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js +194 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/package.json +55 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-boxes/index.d.ts +122 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-boxes/index.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-boxes/package.json +49 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-boxes/readme.md +103 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/index.d.ts +118 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/index.js +194 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/package.json +52 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/readme.md +153 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ansi-tokenizer.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ansi-tokenizer.js +316 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ansi-tokenizer.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AccessibilityContext.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AccessibilityContext.js +5 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AccessibilityContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AnimationContext.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AnimationContext.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AnimationContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/App.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/App.js +554 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/App.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AppContext.d.ts +80 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AppContext.js +25 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AppContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/BackgroundContext.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/BackgroundContext.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/BackgroundContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Box.d.ts +130 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Box.js +34 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Box.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/CursorContext.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/CursorContext.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/CursorContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorBoundary.d.ts +18 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorBoundary.js +23 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorBoundary.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorOverview.js +90 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorOverview.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Newline.d.ts +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Newline.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Newline.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Spacer.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Spacer.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Spacer.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Static.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Static.js +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Static.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StderrContext.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StderrContext.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StderrContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdinContext.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdinContext.js +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdinContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdoutContext.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdoutContext.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdoutContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Text.d.ts +55 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Text.js +50 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Text.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Transform.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Transform.js +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Transform.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/cursor-helpers.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/cursor-helpers.js +56 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/cursor-helpers.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools-window-polyfill.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools-window-polyfill.js +68 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools-window-polyfill.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools.js +36 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/dom.d.ts +62 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/dom.js +143 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/dom.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-animation.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-animation.js +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-animation.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-app.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-app.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-app.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-box-metrics.d.ts +59 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-box-metrics.js +81 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-box-metrics.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-cursor.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-cursor.js +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-cursor.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus-manager.d.ts +43 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus-manager.js +18 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus-manager.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus.d.ts +30 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus.js +43 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-input.d.ts +132 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-input.js +126 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-input.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-is-screen-reader-enabled.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-is-screen-reader-enabled.js +12 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-is-screen-reader-enabled.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-paste.d.ts +35 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-paste.js +62 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-paste.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stderr.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stderr.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stderr.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdin.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdin.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdin.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdout.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdout.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdout.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-window-size.d.ts +18 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-window-size.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-window-size.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/index.d.ts +42 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/index.js +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/index.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ink.d.ts +146 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ink.js +950 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ink.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/input-parser.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/input-parser.js +194 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/input-parser.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/kitty-keyboard.d.ts +23 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/kitty-keyboard.js +32 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/kitty-keyboard.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/log-update.d.ts +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/log-update.js +254 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/log-update.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-element.d.ts +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-element.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-element.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-text.js +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-text.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/output.d.ts +35 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/output.js +208 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/output.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/parse-keypress.d.ts +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/parse-keypress.js +495 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/parse-keypress.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/reconciler.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/reconciler.js +306 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/reconciler.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-background.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-background.js +25 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-background.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-border.js +84 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-border.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-node-to-output.d.ts +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-node-to-output.js +147 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-node-to-output.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-to-string.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-to-string.js +116 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-to-string.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render.d.ts +176 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render.js +62 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/renderer.d.ts +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/renderer.js +55 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/renderer.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/sanitize-ansi.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/sanitize-ansi.js +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/sanitize-ansi.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/squash-text-nodes.js +36 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/squash-text-nodes.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/styles.d.ts +302 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/styles.js +303 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/styles.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/utils.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/utils.js +19 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/utils.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/wrap-text.js +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/wrap-text.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/write-synchronized.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/write-synchronized.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/write-synchronized.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/license +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/package.json +137 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/readme.md +3192 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/is-in-ci/index.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/is-in-ci/package.json +49 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/is-in-ci/readme.md +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/LICENSE +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/README.md +37 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.development.js +338 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +370 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.development.js +352 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +370 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.development.js +1284 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.production.js +542 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.react-server.development.js +848 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.react-server.production.js +423 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/compiler-runtime.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/index.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/jsx-dev-runtime.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/jsx-runtime.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/jsx-runtime.react-server.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/package.json +51 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/react.react-server.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/README.md +152 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/backend.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/backend.js +18302 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/backend.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/importFile.worker.worker.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/importFile.worker.worker.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/parseHookNames.chunk.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/parseHookNames.chunk.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/parseSourceAndMetadata.worker.worker.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/parseSourceAndMetadata.worker.worker.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/standalone.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/standalone.js.LICENSE.txt +41 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/standalone.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/LICENSE +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/README.md +495 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/browser.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/index.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/buffer-util.js +129 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/constants.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/event-target.js +184 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/extension.js +223 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/limiter.js +55 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/permessage-deflate.js +518 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/receiver.js +664 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/sender.js +409 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/stream.js +180 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/validation.js +104 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/websocket-server.js +461 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/websocket.js +1215 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/package.json +56 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/package.json +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/standalone.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/LICENSE +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/README.md +353 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler-constants.development.js +19 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler-constants.production.js +18 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler-reflection.development.js +394 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler-reflection.production.js +382 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler.development.js +19736 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler.production.js +11594 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler.profiling.js +13427 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/constants.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/index.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/package.json +34 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/reflection.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/LICENSE +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +414 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler-unstable_mock.production.js +406 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +150 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.js +140 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler.development.js +364 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler.native.development.js +350 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler.native.production.js +330 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler.production.js +340 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/index.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/index.native.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/package.json +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/unstable_mock.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/unstable_post_task.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/index.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/index.js +317 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/package.json +59 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/readme.md +55 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/tokenize-ansi.js +752 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/string-width/index.js +203 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/string-width/package.json +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/string-width/readme.md +66 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/index.d.ts +227 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/package.json +75 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/readme.md +1085 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/absolute.d.ts +52 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/all-extend.d.ts +121 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/all-union-fields.d.ts +91 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/and-all.d.ts +76 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/and.d.ts +82 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-element.d.ts +46 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-indices.d.ts +25 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-length.d.ts +36 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-reverse.d.ts +85 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-slice.d.ts +132 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-splice.d.ts +104 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-tail.d.ts +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-values.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/arrayable.d.ts +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/async-return-type.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/asyncify.d.ts +25 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/basic.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/camel-case.d.ts +125 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/camel-cased-properties-deep.d.ts +106 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/camel-cased-properties.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/characters.d.ts +67 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-except.d.ts +47 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-keys.d.ts +63 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-pick-deep.d.ts +122 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-pick.d.ts +48 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-simplify-deep.d.ts +73 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-simplify.d.ts +50 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/delimiter-case.d.ts +79 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts +115 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/delimiter-cased-properties.d.ts +52 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/distributed-omit.d.ts +96 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/distributed-pick.d.ts +92 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/empty-object.d.ts +51 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/entries.d.ts +64 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/entry.d.ts +67 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exact.d.ts +73 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/except.d.ts +112 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exclude-exactly.d.ts +57 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exclude-rest-element.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exclude-strict.d.ts +51 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exclusify-union.d.ts +147 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/extends-strict.d.ts +151 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/extract-exactly.d.ts +56 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/extract-rest-element.d.ts +30 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/extract-strict.d.ts +51 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/find-global-type.d.ts +68 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/fixed-length-array.d.ts +97 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/get.d.ts +227 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/global-this.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/globals/index.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/globals/observable-like.d.ts +78 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/greater-than-or-equal.d.ts +63 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/greater-than.d.ts +92 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/has-optional-keys.d.ts +23 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/has-readonly-keys.d.ts +23 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/has-required-keys.d.ts +61 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/has-writable-keys.d.ts +23 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-any.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-empty-object.d.ts +30 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-never.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-null.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-unknown.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if.d.ts +102 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/includes.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/int-closed-range.d.ts +45 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/int-range.d.ts +67 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/array.d.ts +144 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/characters.d.ts +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/enforce-optional.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/index.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/keys.d.ts +100 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/numeric.d.ts +143 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/object.d.ts +301 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/string.d.ts +127 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/tuple.d.ts +79 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/type.d.ts +171 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/invariant-of.d.ts +85 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-any.d.ts +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-equal.d.ts +41 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-float.d.ts +43 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-integer.d.ts +60 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-literal.d.ts +317 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-lowercase.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-never.d.ts +56 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-null.d.ts +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-nullable.d.ts +30 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-optional-key-of.d.ts +51 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-optional.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-readonly-key-of.d.ts +55 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-required-key-of.d.ts +51 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-tuple.d.ts +92 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-undefined.d.ts +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-union.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-unknown.d.ts +43 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-uppercase.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-writable-key-of.d.ts +51 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/iterable-element.d.ts +66 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/join.d.ts +79 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/json-value.d.ts +33 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/jsonifiable.d.ts +37 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/jsonify.d.ts +127 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/kebab-case.d.ts +47 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/kebab-cased-properties.d.ts +46 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/key-as-string.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/keys-of-union.d.ts +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/last-array-element.d.ts +89 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/less-than-or-equal.d.ts +60 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/less-than.d.ts +60 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/literal-to-primitive-deep.d.ts +71 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/literal-to-primitive.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/literal-union.d.ts +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/merge-deep.d.ts +495 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/merge-exclusive.d.ts +45 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/merge.d.ts +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/multidimensional-array.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/multidimensional-readonly-array.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/non-empty-object.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/non-empty-string.d.ts +32 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/non-empty-tuple.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/non-nullable-deep.d.ts +102 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/numeric.d.ts +226 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/object-merge.d.ts +199 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/omit-deep.d.ts +153 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/omit-index-signature.d.ts +98 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/opaque.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/optional-keys-of.d.ts +46 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/optional.d.ts +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/or-all.d.ts +73 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/or.d.ts +82 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/override-properties.d.ts +43 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/package-json.d.ts +710 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/partial-deep.d.ts +157 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/partial-on-undefined-deep.d.ts +81 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pascal-case.d.ts +52 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts +79 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pascal-cased-properties.d.ts +46 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/paths.d.ts +241 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pick-deep.d.ts +139 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pick-index-signature.d.ts +52 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/primitive.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/promisable.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/readonly-deep.d.ts +118 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/readonly-keys-of.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/readonly-tuple.d.ts +34 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/remove-prefix.d.ts +114 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/remove-suffix.d.ts +114 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/replace.d.ts +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/require-all-or-none.d.ts +54 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/require-at-least-one.d.ts +48 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/require-exactly-one.d.ts +48 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/require-one-or-none.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/required-deep.d.ts +78 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/required-keys-of.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/schema.d.ts +127 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/screaming-snake-case.d.ts +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-field-type.d.ts +67 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-non-nullable-deep.d.ts +89 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-non-nullable.d.ts +34 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-optional.d.ts +42 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-parameter-type.d.ts +125 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-readonly.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-required-deep.d.ts +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-required.d.ts +75 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-return-type.d.ts +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/shared-union-fields-deep.d.ts +180 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/shared-union-fields.d.ts +79 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/simplify-deep.d.ts +117 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/simplify.d.ts +61 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/single-key-object.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/snake-case.d.ts +48 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/snake-cased-properties-deep.d.ts +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/snake-cased-properties.d.ts +46 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/some-extend.d.ts +115 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/split-on-rest-element.d.ts +108 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/split.d.ts +90 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/spread.d.ts +78 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-length.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-repeat.d.ts +76 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-slice.d.ts +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-to-array.d.ts +97 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-to-number.d.ts +67 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/stringified.d.ts +25 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/structured-cloneable.d.ts +89 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/subtract.d.ts +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/sum.d.ts +82 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tagged-union.d.ts +53 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tagged.d.ts +261 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/trim.d.ts +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tsconfig-json.d.ts +1356 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tuple-of.d.ts +114 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tuple-to-object.d.ts +47 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tuple-to-union.d.ts +54 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/typed-array.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/undefined-on-partial-deep.d.ts +83 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/union-length.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/union-member.d.ts +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/union-to-intersection.d.ts +35 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/union-to-tuple.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unknown-array.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unknown-map.d.ts +26 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unknown-record.d.ts +33 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unknown-set.d.ts +26 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unwrap-partial.d.ts +33 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unwrap-required.d.ts +37 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/value-of.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/words.d.ts +148 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/writable-deep.d.ts +84 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/writable-keys-of.d.ts +34 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/writable.d.ts +68 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/xor.d.ts +83 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/widest-line/package.json +60 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/index.d.ts +41 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/index.js +468 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/package.json +69 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/readme.md +77 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/LICENSE +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/README.md +548 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/browser.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/index.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/buffer-util.js +131 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/constants.js +19 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/event-target.js +292 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/extension.js +203 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/limiter.js +55 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/permessage-deflate.js +528 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/receiver.js +760 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/sender.js +607 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/stream.js +161 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/subprotocol.js +62 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/validation.js +152 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/websocket-server.js +562 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/websocket.js +1407 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/package.json +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/wrapper.mjs +21 -0
- package/node_modules/@quantiya/codevibe-core/package.json +5 -4
- package/node_modules/shell-quote/.github/FUNDING.yml +12 -0
- package/node_modules/shell-quote/.nycrc +14 -0
- package/node_modules/shell-quote/LICENSE +24 -0
- package/node_modules/shell-quote/README.md +168 -0
- package/node_modules/shell-quote/eslint.config.mjs +29 -0
- package/node_modules/shell-quote/index.d.ts +28 -0
- package/node_modules/shell-quote/index.js +4 -0
- package/node_modules/shell-quote/package.json +76 -0
- package/node_modules/shell-quote/parse.d.ts +46 -0
- package/node_modules/shell-quote/parse.js +261 -0
- package/node_modules/shell-quote/quote.d.ts +15 -0
- package/node_modules/shell-quote/quote.js +65 -0
- package/node_modules/shell-quote/security.md +11 -0
- package/node_modules/shell-quote/test/comment.js +16 -0
- package/node_modules/shell-quote/test/env.js +52 -0
- package/node_modules/shell-quote/test/env_fn.js +21 -0
- package/node_modules/shell-quote/test/op.js +102 -0
- package/node_modules/shell-quote/test/parse.js +67 -0
- package/node_modules/shell-quote/test/quote.js +128 -0
- package/node_modules/shell-quote/test/set.js +31 -0
- package/node_modules/shell-quote/tsconfig.json +10 -0
- package/node_modules/tagged-tag/index.d.ts +3 -0
- package/node_modules/tagged-tag/package.json +36 -0
- package/node_modules/tagged-tag/readme.md +5 -0
- package/node_modules/terminal-size/index.d.ts +17 -0
- package/node_modules/terminal-size/index.js +139 -0
- package/node_modules/terminal-size/package.json +49 -0
- package/node_modules/terminal-size/readme.md +32 -0
- package/package.json +13 -3
- package/node_modules/@alcalzone/ansi-tokenize/README.md +0 -248
- package/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.d.ts +0 -11
- package/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js +0 -41
- package/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js.map +0 -1
- package/node_modules/@alcalzone/ansi-tokenize/build/diff.js +0 -17
- package/node_modules/@alcalzone/ansi-tokenize/build/diff.js.map +0 -1
- package/node_modules/@alcalzone/ansi-tokenize/build/reduce.js +0 -27
- package/node_modules/@alcalzone/ansi-tokenize/build/reduce.js.map +0 -1
- package/node_modules/@alcalzone/ansi-tokenize/build/tokenize.d.ts +0 -12
- package/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js +0 -70
- package/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js.map +0 -1
- package/node_modules/@alcalzone/ansi-tokenize/node_modules/is-fullwidth-code-point/index.js +0 -40
- package/node_modules/@alcalzone/ansi-tokenize/node_modules/is-fullwidth-code-point/package.json +0 -45
- package/node_modules/@alcalzone/ansi-tokenize/node_modules/is-fullwidth-code-point/readme.md +0 -43
- package/node_modules/@alcalzone/ansi-tokenize/package.json +0 -63
- package/node_modules/cli-boxes/index.d.ts +0 -127
- package/node_modules/cli-boxes/index.js +0 -6
- package/node_modules/cli-boxes/package.json +0 -42
- package/node_modules/cli-boxes/readme.md +0 -115
- package/node_modules/cli-truncate/index.d.ts +0 -116
- package/node_modules/cli-truncate/index.js +0 -99
- package/node_modules/cli-truncate/node_modules/ansi-styles/index.d.ts +0 -236
- package/node_modules/cli-truncate/node_modules/ansi-styles/package.json +0 -54
- package/node_modules/cli-truncate/node_modules/ansi-styles/readme.md +0 -173
- package/node_modules/cli-truncate/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
- package/node_modules/cli-truncate/node_modules/emoji-regex/README.md +0 -107
- package/node_modules/cli-truncate/node_modules/emoji-regex/index.d.ts +0 -3
- package/node_modules/cli-truncate/node_modules/emoji-regex/index.js +0 -4
- package/node_modules/cli-truncate/node_modules/emoji-regex/index.mjs +0 -4
- package/node_modules/cli-truncate/node_modules/emoji-regex/package.json +0 -45
- package/node_modules/cli-truncate/node_modules/is-fullwidth-code-point/index.d.ts +0 -17
- package/node_modules/cli-truncate/node_modules/is-fullwidth-code-point/index.js +0 -40
- package/node_modules/cli-truncate/node_modules/is-fullwidth-code-point/package.json +0 -45
- package/node_modules/cli-truncate/node_modules/is-fullwidth-code-point/readme.md +0 -43
- package/node_modules/cli-truncate/node_modules/slice-ansi/index.js +0 -105
- package/node_modules/cli-truncate/node_modules/slice-ansi/package.json +0 -53
- package/node_modules/cli-truncate/node_modules/slice-ansi/readme.md +0 -66
- package/node_modules/cli-truncate/node_modules/string-width/index.js +0 -82
- package/node_modules/cli-truncate/node_modules/string-width/package.json +0 -64
- package/node_modules/cli-truncate/node_modules/string-width/readme.md +0 -66
- package/node_modules/cli-truncate/package.json +0 -51
- package/node_modules/cli-truncate/readme.md +0 -150
- package/node_modules/ink/build/apply-styles.js +0 -175
- package/node_modules/ink/build/build-layout.js +0 -77
- package/node_modules/ink/build/calculate-wrapped-text.js +0 -53
- package/node_modules/ink/build/components/App.d.ts +0 -59
- package/node_modules/ink/build/components/App.js +0 -286
- package/node_modules/ink/build/components/App.js.map +0 -1
- package/node_modules/ink/build/components/AppContext.d.ts +0 -11
- package/node_modules/ink/build/components/AppContext.js +0 -11
- package/node_modules/ink/build/components/AppContext.js.map +0 -1
- package/node_modules/ink/build/components/Box.d.ts +0 -62
- package/node_modules/ink/build/components/Box.js +0 -20
- package/node_modules/ink/build/components/Box.js.map +0 -1
- package/node_modules/ink/build/components/Color.js +0 -62
- package/node_modules/ink/build/components/ErrorOverview.js +0 -79
- package/node_modules/ink/build/components/ErrorOverview.js.map +0 -1
- package/node_modules/ink/build/components/Newline.d.ts +0 -13
- package/node_modules/ink/build/components/Newline.js +0 -8
- package/node_modules/ink/build/components/Newline.js.map +0 -1
- package/node_modules/ink/build/components/Spacer.d.ts +0 -6
- package/node_modules/ink/build/components/Spacer.js +0 -10
- package/node_modules/ink/build/components/Spacer.js.map +0 -1
- package/node_modules/ink/build/components/Static.d.ts +0 -31
- package/node_modules/ink/build/components/Static.js +0 -33
- package/node_modules/ink/build/components/Static.js.map +0 -1
- package/node_modules/ink/build/components/StderrContext.d.ts +0 -17
- package/node_modules/ink/build/components/StderrContext.js +0 -13
- package/node_modules/ink/build/components/StderrContext.js.map +0 -1
- package/node_modules/ink/build/components/StdinContext.d.ts +0 -23
- package/node_modules/ink/build/components/StdinContext.js +0 -19
- package/node_modules/ink/build/components/StdinContext.js.map +0 -1
- package/node_modules/ink/build/components/StdoutContext.d.ts +0 -17
- package/node_modules/ink/build/components/StdoutContext.js +0 -13
- package/node_modules/ink/build/components/StdoutContext.js.map +0 -1
- package/node_modules/ink/build/components/Text.d.ts +0 -49
- package/node_modules/ink/build/components/Text.js +0 -40
- package/node_modules/ink/build/components/Text.js.map +0 -1
- package/node_modules/ink/build/components/Transform.d.ts +0 -15
- package/node_modules/ink/build/components/Transform.js +0 -14
- package/node_modules/ink/build/components/Transform.js.map +0 -1
- package/node_modules/ink/build/devtools-window-polyfill.js +0 -64
- package/node_modules/ink/build/devtools-window-polyfill.js.map +0 -1
- package/node_modules/ink/build/devtools.js +0 -9
- package/node_modules/ink/build/devtools.js.map +0 -1
- package/node_modules/ink/build/dom.d.ts +0 -42
- package/node_modules/ink/build/dom.js +0 -117
- package/node_modules/ink/build/dom.js.map +0 -1
- package/node_modules/ink/build/experimental/apply-style.js +0 -140
- package/node_modules/ink/build/experimental/dom.js +0 -123
- package/node_modules/ink/build/experimental/output.js +0 -91
- package/node_modules/ink/build/experimental/reconciler.js +0 -141
- package/node_modules/ink/build/experimental/renderer.js +0 -81
- package/node_modules/ink/build/hooks/use-app.d.ts +0 -5
- package/node_modules/ink/build/hooks/use-app.js +0 -8
- package/node_modules/ink/build/hooks/use-app.js.map +0 -1
- package/node_modules/ink/build/hooks/use-focus-manager.d.ts +0 -34
- package/node_modules/ink/build/hooks/use-focus-manager.js +0 -18
- package/node_modules/ink/build/hooks/use-focus-manager.js.map +0 -1
- package/node_modules/ink/build/hooks/use-focus.d.ts +0 -34
- package/node_modules/ink/build/hooks/use-focus.js +0 -47
- package/node_modules/ink/build/hooks/use-focus.js.map +0 -1
- package/node_modules/ink/build/hooks/use-input.d.ts +0 -97
- package/node_modules/ink/build/hooks/use-input.js +0 -96
- package/node_modules/ink/build/hooks/use-input.js.map +0 -1
- package/node_modules/ink/build/hooks/use-stderr.d.ts +0 -5
- package/node_modules/ink/build/hooks/use-stderr.js +0 -8
- package/node_modules/ink/build/hooks/use-stderr.js.map +0 -1
- package/node_modules/ink/build/hooks/use-stdin.d.ts +0 -5
- package/node_modules/ink/build/hooks/use-stdin.js +0 -8
- package/node_modules/ink/build/hooks/use-stdin.js.map +0 -1
- package/node_modules/ink/build/hooks/use-stdout.d.ts +0 -5
- package/node_modules/ink/build/hooks/use-stdout.js +0 -8
- package/node_modules/ink/build/hooks/use-stdout.js.map +0 -1
- package/node_modules/ink/build/hooks/useInput.js +0 -38
- package/node_modules/ink/build/index.d.ts +0 -27
- package/node_modules/ink/build/index.js +0 -16
- package/node_modules/ink/build/index.js.map +0 -1
- package/node_modules/ink/build/ink.d.ts +0 -37
- package/node_modules/ink/build/ink.js +0 -235
- package/node_modules/ink/build/ink.js.map +0 -1
- package/node_modules/ink/build/instance.js +0 -205
- package/node_modules/ink/build/log-update.d.ts +0 -12
- package/node_modules/ink/build/log-update.js +0 -37
- package/node_modules/ink/build/log-update.js.map +0 -1
- package/node_modules/ink/build/measure-element.d.ts +0 -16
- package/node_modules/ink/build/measure-element.js +0 -9
- package/node_modules/ink/build/measure-element.js.map +0 -1
- package/node_modules/ink/build/measure-text.js +0 -20
- package/node_modules/ink/build/measure-text.js.map +0 -1
- package/node_modules/ink/build/output.d.ts +0 -35
- package/node_modules/ink/build/output.js +0 -148
- package/node_modules/ink/build/output.js.map +0 -1
- package/node_modules/ink/build/parse-keypress.d.ts +0 -14
- package/node_modules/ink/build/parse-keypress.js +0 -225
- package/node_modules/ink/build/parse-keypress.js.map +0 -1
- package/node_modules/ink/build/reconciler.d.ts +0 -4
- package/node_modules/ink/build/reconciler.js +0 -219
- package/node_modules/ink/build/reconciler.js.map +0 -1
- package/node_modules/ink/build/render-border.js +0 -73
- package/node_modules/ink/build/render-border.js.map +0 -1
- package/node_modules/ink/build/render-node-to-output.d.ts +0 -10
- package/node_modules/ink/build/render-node-to-output.js +0 -99
- package/node_modules/ink/build/render-node-to-output.js.map +0 -1
- package/node_modules/ink/build/render.d.ts +0 -63
- package/node_modules/ink/build/render.js +0 -48
- package/node_modules/ink/build/render.js.map +0 -1
- package/node_modules/ink/build/renderer.d.ts +0 -8
- package/node_modules/ink/build/renderer.js +0 -36
- package/node_modules/ink/build/renderer.js.map +0 -1
- package/node_modules/ink/build/squash-text-nodes.js +0 -35
- package/node_modules/ink/build/squash-text-nodes.js.map +0 -1
- package/node_modules/ink/build/styles.d.ts +0 -243
- package/node_modules/ink/build/styles.js +0 -232
- package/node_modules/ink/build/styles.js.map +0 -1
- package/node_modules/ink/build/wrap-text.js +0 -31
- package/node_modules/ink/build/wrap-text.js.map +0 -1
- package/node_modules/ink/license +0 -9
- package/node_modules/ink/node_modules/ansi-styles/index.d.ts +0 -236
- package/node_modules/ink/node_modules/ansi-styles/index.js +0 -223
- package/node_modules/ink/node_modules/ansi-styles/package.json +0 -54
- package/node_modules/ink/node_modules/ansi-styles/readme.md +0 -173
- package/node_modules/ink/node_modules/chalk/source/vendor/ansi-styles/index.js +0 -223
- package/node_modules/ink/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
- package/node_modules/ink/node_modules/emoji-regex/README.md +0 -107
- package/node_modules/ink/node_modules/emoji-regex/index.d.ts +0 -3
- package/node_modules/ink/node_modules/emoji-regex/index.js +0 -4
- package/node_modules/ink/node_modules/emoji-regex/index.mjs +0 -4
- package/node_modules/ink/node_modules/emoji-regex/package.json +0 -45
- package/node_modules/ink/node_modules/string-width/index.d.ts +0 -39
- package/node_modules/ink/node_modules/string-width/index.js +0 -82
- package/node_modules/ink/node_modules/string-width/package.json +0 -64
- package/node_modules/ink/node_modules/string-width/readme.md +0 -66
- package/node_modules/ink/node_modules/type-fest/index.d.ts +0 -178
- package/node_modules/ink/node_modules/type-fest/package.json +0 -91
- package/node_modules/ink/node_modules/type-fest/readme.md +0 -1060
- package/node_modules/ink/node_modules/type-fest/source/all-union-fields.d.ts +0 -88
- package/node_modules/ink/node_modules/type-fest/source/and.d.ts +0 -25
- package/node_modules/ink/node_modules/type-fest/source/array-indices.d.ts +0 -23
- package/node_modules/ink/node_modules/type-fest/source/array-slice.d.ts +0 -109
- package/node_modules/ink/node_modules/type-fest/source/array-splice.d.ts +0 -99
- package/node_modules/ink/node_modules/type-fest/source/array-tail.d.ts +0 -76
- package/node_modules/ink/node_modules/type-fest/source/array-values.d.ts +0 -22
- package/node_modules/ink/node_modules/type-fest/source/arrayable.d.ts +0 -29
- package/node_modules/ink/node_modules/type-fest/source/async-return-type.d.ts +0 -23
- package/node_modules/ink/node_modules/type-fest/source/asyncify.d.ts +0 -32
- package/node_modules/ink/node_modules/type-fest/source/basic.d.ts +0 -68
- package/node_modules/ink/node_modules/type-fest/source/camel-case.d.ts +0 -89
- package/node_modules/ink/node_modules/type-fest/source/camel-cased-properties-deep.d.ts +0 -97
- package/node_modules/ink/node_modules/type-fest/source/camel-cased-properties.d.ts +0 -43
- package/node_modules/ink/node_modules/type-fest/source/conditional-except.d.ts +0 -45
- package/node_modules/ink/node_modules/type-fest/source/conditional-keys.d.ts +0 -47
- package/node_modules/ink/node_modules/type-fest/source/conditional-pick-deep.d.ts +0 -118
- package/node_modules/ink/node_modules/type-fest/source/conditional-pick.d.ts +0 -44
- package/node_modules/ink/node_modules/type-fest/source/conditional-simplify.d.ts +0 -32
- package/node_modules/ink/node_modules/type-fest/source/delimiter-case.d.ts +0 -78
- package/node_modules/ink/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts +0 -106
- package/node_modules/ink/node_modules/type-fest/source/delimiter-cased-properties.d.ts +0 -46
- package/node_modules/ink/node_modules/type-fest/source/distributed-omit.d.ts +0 -89
- package/node_modules/ink/node_modules/type-fest/source/distributed-pick.d.ts +0 -85
- package/node_modules/ink/node_modules/type-fest/source/empty-object.d.ts +0 -46
- package/node_modules/ink/node_modules/type-fest/source/enforce-optional.d.ts +0 -47
- package/node_modules/ink/node_modules/type-fest/source/entries.d.ts +0 -62
- package/node_modules/ink/node_modules/type-fest/source/entry.d.ts +0 -65
- package/node_modules/ink/node_modules/type-fest/source/exact.d.ts +0 -68
- package/node_modules/ink/node_modules/type-fest/source/except.d.ts +0 -108
- package/node_modules/ink/node_modules/type-fest/source/find-global-type.d.ts +0 -64
- package/node_modules/ink/node_modules/type-fest/source/fixed-length-array.d.ts +0 -43
- package/node_modules/ink/node_modules/type-fest/source/get.d.ts +0 -219
- package/node_modules/ink/node_modules/type-fest/source/global-this.d.ts +0 -21
- package/node_modules/ink/node_modules/type-fest/source/greater-than-or-equal.d.ts +0 -22
- package/node_modules/ink/node_modules/type-fest/source/greater-than.d.ts +0 -56
- package/node_modules/ink/node_modules/type-fest/source/has-optional-keys.d.ts +0 -21
- package/node_modules/ink/node_modules/type-fest/source/has-readonly-keys.d.ts +0 -21
- package/node_modules/ink/node_modules/type-fest/source/has-required-keys.d.ts +0 -59
- package/node_modules/ink/node_modules/type-fest/source/has-writable-keys.d.ts +0 -21
- package/node_modules/ink/node_modules/type-fest/source/if-any.d.ts +0 -24
- package/node_modules/ink/node_modules/type-fest/source/if-empty-object.d.ts +0 -26
- package/node_modules/ink/node_modules/type-fest/source/if-never.d.ts +0 -24
- package/node_modules/ink/node_modules/type-fest/source/if-null.d.ts +0 -24
- package/node_modules/ink/node_modules/type-fest/source/if-unknown.d.ts +0 -24
- package/node_modules/ink/node_modules/type-fest/source/includes.d.ts +0 -22
- package/node_modules/ink/node_modules/type-fest/source/int-closed-range.d.ts +0 -35
- package/node_modules/ink/node_modules/type-fest/source/int-range.d.ts +0 -55
- package/node_modules/ink/node_modules/type-fest/source/internal/array.d.ts +0 -126
- package/node_modules/ink/node_modules/type-fest/source/internal/characters.d.ts +0 -67
- package/node_modules/ink/node_modules/type-fest/source/internal/index.d.ts +0 -8
- package/node_modules/ink/node_modules/type-fest/source/internal/keys.d.ts +0 -97
- package/node_modules/ink/node_modules/type-fest/source/internal/numeric.d.ts +0 -118
- package/node_modules/ink/node_modules/type-fest/source/internal/object.d.ts +0 -236
- package/node_modules/ink/node_modules/type-fest/source/internal/string.d.ts +0 -210
- package/node_modules/ink/node_modules/type-fest/source/internal/tuple.d.ts +0 -90
- package/node_modules/ink/node_modules/type-fest/source/internal/type.d.ts +0 -139
- package/node_modules/ink/node_modules/type-fest/source/invariant-of.d.ts +0 -76
- package/node_modules/ink/node_modules/type-fest/source/is-any.d.ts +0 -33
- package/node_modules/ink/node_modules/type-fest/source/is-equal.d.ts +0 -31
- package/node_modules/ink/node_modules/type-fest/source/is-float.d.ts +0 -41
- package/node_modules/ink/node_modules/type-fest/source/is-integer.d.ts +0 -58
- package/node_modules/ink/node_modules/type-fest/source/is-literal.d.ts +0 -296
- package/node_modules/ink/node_modules/type-fest/source/is-never.d.ts +0 -42
- package/node_modules/ink/node_modules/type-fest/source/is-null.d.ts +0 -20
- package/node_modules/ink/node_modules/type-fest/source/is-tuple.d.ts +0 -89
- package/node_modules/ink/node_modules/type-fest/source/is-unknown.d.ts +0 -52
- package/node_modules/ink/node_modules/type-fest/source/iterable-element.d.ts +0 -64
- package/node_modules/ink/node_modules/type-fest/source/join.d.ts +0 -68
- package/node_modules/ink/node_modules/type-fest/source/jsonifiable.d.ts +0 -37
- package/node_modules/ink/node_modules/type-fest/source/jsonify.d.ts +0 -122
- package/node_modules/ink/node_modules/type-fest/source/kebab-case.d.ts +0 -44
- package/node_modules/ink/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts +0 -63
- package/node_modules/ink/node_modules/type-fest/source/kebab-cased-properties.d.ts +0 -40
- package/node_modules/ink/node_modules/type-fest/source/keys-of-union.d.ts +0 -42
- package/node_modules/ink/node_modules/type-fest/source/last-array-element.d.ts +0 -38
- package/node_modules/ink/node_modules/type-fest/source/less-than-or-equal.d.ts +0 -22
- package/node_modules/ink/node_modules/type-fest/source/less-than.d.ts +0 -26
- package/node_modules/ink/node_modules/type-fest/source/literal-to-primitive-deep.d.ts +0 -36
- package/node_modules/ink/node_modules/type-fest/source/literal-to-primitive.d.ts +0 -36
- package/node_modules/ink/node_modules/type-fest/source/literal-union.d.ts +0 -37
- package/node_modules/ink/node_modules/type-fest/source/merge-deep.d.ts +0 -486
- package/node_modules/ink/node_modules/type-fest/source/merge-exclusive.d.ts +0 -41
- package/node_modules/ink/node_modules/type-fest/source/merge.d.ts +0 -48
- package/node_modules/ink/node_modules/type-fest/source/multidimensional-array.d.ts +0 -44
- package/node_modules/ink/node_modules/type-fest/source/multidimensional-readonly-array.d.ts +0 -48
- package/node_modules/ink/node_modules/type-fest/source/non-empty-object.d.ts +0 -35
- package/node_modules/ink/node_modules/type-fest/source/non-empty-string.d.ts +0 -28
- package/node_modules/ink/node_modules/type-fest/source/non-empty-tuple.d.ts +0 -21
- package/node_modules/ink/node_modules/type-fest/source/numeric.d.ts +0 -222
- package/node_modules/ink/node_modules/type-fest/source/observable-like.d.ts +0 -63
- package/node_modules/ink/node_modules/type-fest/source/omit-deep.d.ts +0 -167
- package/node_modules/ink/node_modules/type-fest/source/omit-index-signature.d.ts +0 -95
- package/node_modules/ink/node_modules/type-fest/source/opaque.d.ts +0 -1
- package/node_modules/ink/node_modules/type-fest/source/optional-keys-of.d.ts +0 -39
- package/node_modules/ink/node_modules/type-fest/source/or.d.ts +0 -25
- package/node_modules/ink/node_modules/type-fest/source/override-properties.d.ts +0 -36
- package/node_modules/ink/node_modules/type-fest/source/package-json.d.ts +0 -676
- package/node_modules/ink/node_modules/type-fest/source/partial-deep.d.ts +0 -151
- package/node_modules/ink/node_modules/type-fest/source/partial-on-undefined-deep.d.ts +0 -78
- package/node_modules/ink/node_modules/type-fest/source/pascal-case.d.ts +0 -42
- package/node_modules/ink/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts +0 -62
- package/node_modules/ink/node_modules/type-fest/source/pascal-cased-properties.d.ts +0 -36
- package/node_modules/ink/node_modules/type-fest/source/paths.d.ts +0 -262
- package/node_modules/ink/node_modules/type-fest/source/pick-deep.d.ts +0 -149
- package/node_modules/ink/node_modules/type-fest/source/pick-index-signature.d.ts +0 -50
- package/node_modules/ink/node_modules/type-fest/source/primitive.d.ts +0 -13
- package/node_modules/ink/node_modules/type-fest/source/promisable.d.ts +0 -25
- package/node_modules/ink/node_modules/type-fest/source/readonly-deep.d.ts +0 -81
- package/node_modules/ink/node_modules/type-fest/source/readonly-keys-of.d.ts +0 -30
- package/node_modules/ink/node_modules/type-fest/source/readonly-tuple.d.ts +0 -41
- package/node_modules/ink/node_modules/type-fest/source/replace.d.ts +0 -85
- package/node_modules/ink/node_modules/type-fest/source/require-all-or-none.d.ts +0 -51
- package/node_modules/ink/node_modules/type-fest/source/require-at-least-one.d.ts +0 -47
- package/node_modules/ink/node_modules/type-fest/source/require-exactly-one.d.ts +0 -45
- package/node_modules/ink/node_modules/type-fest/source/require-one-or-none.d.ts +0 -46
- package/node_modules/ink/node_modules/type-fest/source/required-deep.d.ts +0 -78
- package/node_modules/ink/node_modules/type-fest/source/required-keys-of.d.ts +0 -30
- package/node_modules/ink/node_modules/type-fest/source/schema.d.ts +0 -114
- package/node_modules/ink/node_modules/type-fest/source/screaming-snake-case.d.ts +0 -28
- package/node_modules/ink/node_modules/type-fest/source/set-field-type.d.ts +0 -65
- package/node_modules/ink/node_modules/type-fest/source/set-non-nullable-deep.d.ts +0 -83
- package/node_modules/ink/node_modules/type-fest/source/set-non-nullable.d.ts +0 -39
- package/node_modules/ink/node_modules/type-fest/source/set-optional.d.ts +0 -38
- package/node_modules/ink/node_modules/type-fest/source/set-parameter-type.d.ts +0 -117
- package/node_modules/ink/node_modules/type-fest/source/set-readonly.d.ts +0 -39
- package/node_modules/ink/node_modules/type-fest/source/set-required-deep.d.ts +0 -68
- package/node_modules/ink/node_modules/type-fest/source/set-required.d.ts +0 -70
- package/node_modules/ink/node_modules/type-fest/source/set-return-type.d.ts +0 -29
- package/node_modules/ink/node_modules/type-fest/source/shared-union-fields-deep.d.ts +0 -178
- package/node_modules/ink/node_modules/type-fest/source/shared-union-fields.d.ts +0 -76
- package/node_modules/ink/node_modules/type-fest/source/simplify-deep.d.ts +0 -115
- package/node_modules/ink/node_modules/type-fest/source/simplify.d.ts +0 -58
- package/node_modules/ink/node_modules/type-fest/source/single-key-object.d.ts +0 -29
- package/node_modules/ink/node_modules/type-fest/source/snake-case.d.ts +0 -45
- package/node_modules/ink/node_modules/type-fest/source/snake-cased-properties-deep.d.ts +0 -63
- package/node_modules/ink/node_modules/type-fest/source/snake-cased-properties.d.ts +0 -40
- package/node_modules/ink/node_modules/type-fest/source/split.d.ts +0 -88
- package/node_modules/ink/node_modules/type-fest/source/spread.d.ts +0 -84
- package/node_modules/ink/node_modules/type-fest/source/string-key-of.d.ts +0 -25
- package/node_modules/ink/node_modules/type-fest/source/string-repeat.d.ts +0 -47
- package/node_modules/ink/node_modules/type-fest/source/string-slice.d.ts +0 -37
- package/node_modules/ink/node_modules/type-fest/source/stringified.d.ts +0 -23
- package/node_modules/ink/node_modules/type-fest/source/structured-cloneable.d.ts +0 -92
- package/node_modules/ink/node_modules/type-fest/source/subtract.d.ts +0 -83
- package/node_modules/ink/node_modules/type-fest/source/sum.d.ts +0 -78
- package/node_modules/ink/node_modules/type-fest/source/tagged-union.d.ts +0 -51
- package/node_modules/ink/node_modules/type-fest/source/tagged.d.ts +0 -256
- package/node_modules/ink/node_modules/type-fest/source/trim.d.ts +0 -27
- package/node_modules/ink/node_modules/type-fest/source/tsconfig-json.d.ts +0 -1294
- package/node_modules/ink/node_modules/type-fest/source/tuple-to-object.d.ts +0 -42
- package/node_modules/ink/node_modules/type-fest/source/tuple-to-union.d.ts +0 -51
- package/node_modules/ink/node_modules/type-fest/source/typed-array.d.ts +0 -17
- package/node_modules/ink/node_modules/type-fest/source/undefined-on-partial-deep.d.ts +0 -80
- package/node_modules/ink/node_modules/type-fest/source/union-to-intersection.d.ts +0 -61
- package/node_modules/ink/node_modules/type-fest/source/union-to-tuple.d.ts +0 -56
- package/node_modules/ink/node_modules/type-fest/source/unknown-array.d.ts +0 -25
- package/node_modules/ink/node_modules/type-fest/source/unknown-map.d.ts +0 -24
- package/node_modules/ink/node_modules/type-fest/source/unknown-record.d.ts +0 -31
- package/node_modules/ink/node_modules/type-fest/source/unknown-set.d.ts +0 -24
- package/node_modules/ink/node_modules/type-fest/source/value-of.d.ts +0 -42
- package/node_modules/ink/node_modules/type-fest/source/words.d.ts +0 -118
- package/node_modules/ink/node_modules/type-fest/source/writable-deep.d.ts +0 -83
- package/node_modules/ink/node_modules/type-fest/source/writable-keys-of.d.ts +0 -33
- package/node_modules/ink/node_modules/type-fest/source/writable.d.ts +0 -68
- package/node_modules/ink/node_modules/wrap-ansi/index.d.ts +0 -41
- package/node_modules/ink/node_modules/wrap-ansi/index.js +0 -222
- package/node_modules/ink/node_modules/wrap-ansi/package.json +0 -69
- package/node_modules/ink/node_modules/wrap-ansi/readme.md +0 -75
- package/node_modules/ink/package.json +0 -196
- package/node_modules/ink/readme.md +0 -2162
- package/node_modules/is-in-ci/index.js +0 -11
- package/node_modules/is-in-ci/license +0 -9
- package/node_modules/is-in-ci/package.json +0 -49
- package/node_modules/is-in-ci/readme.md +0 -44
- package/node_modules/js-tokens/CHANGELOG.md +0 -151
- package/node_modules/js-tokens/LICENSE +0 -21
- package/node_modules/js-tokens/README.md +0 -240
- package/node_modules/js-tokens/index.js +0 -23
- package/node_modules/js-tokens/package.json +0 -30
- package/node_modules/loose-envify/LICENSE +0 -21
- package/node_modules/loose-envify/README.md +0 -45
- package/node_modules/loose-envify/cli.js +0 -16
- package/node_modules/loose-envify/custom.js +0 -4
- package/node_modules/loose-envify/index.js +0 -3
- package/node_modules/loose-envify/loose-envify.js +0 -36
- package/node_modules/loose-envify/package.json +0 -36
- package/node_modules/loose-envify/replace.js +0 -65
- package/node_modules/react/LICENSE +0 -21
- package/node_modules/react/README.md +0 -37
- package/node_modules/react/cjs/react-jsx-dev-runtime.development.js +0 -1315
- package/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +0 -10
- package/node_modules/react/cjs/react-jsx-dev-runtime.profiling.min.js +0 -10
- package/node_modules/react/cjs/react-jsx-runtime.development.js +0 -1333
- package/node_modules/react/cjs/react-jsx-runtime.production.min.js +0 -11
- package/node_modules/react/cjs/react-jsx-runtime.profiling.min.js +0 -11
- package/node_modules/react/cjs/react.development.js +0 -2740
- package/node_modules/react/cjs/react.production.min.js +0 -26
- package/node_modules/react/cjs/react.shared-subset.development.js +0 -20
- package/node_modules/react/cjs/react.shared-subset.production.min.js +0 -10
- package/node_modules/react/index.js +0 -7
- package/node_modules/react/jsx-dev-runtime.js +0 -7
- package/node_modules/react/jsx-runtime.js +0 -7
- package/node_modules/react/package.json +0 -47
- package/node_modules/react/react.shared-subset.js +0 -7
- package/node_modules/react/umd/react.development.js +0 -3343
- package/node_modules/react/umd/react.production.min.js +0 -31
- package/node_modules/react/umd/react.profiling.min.js +0 -31
- package/node_modules/react-reconciler/LICENSE +0 -21
- package/node_modules/react-reconciler/README.md +0 -337
- package/node_modules/react-reconciler/cjs/react-reconciler-constants.development.js +0 -45
- package/node_modules/react-reconciler/cjs/react-reconciler-constants.production.min.js +0 -10
- package/node_modules/react-reconciler/cjs/react-reconciler-reflection.development.js +0 -660
- package/node_modules/react-reconciler/cjs/react-reconciler-reflection.production.min.js +0 -15
- package/node_modules/react-reconciler/cjs/react-reconciler.development.js +0 -21531
- package/node_modules/react-reconciler/cjs/react-reconciler.production.min.js +0 -234
- package/node_modules/react-reconciler/cjs/react-reconciler.profiling.min.js +0 -255
- package/node_modules/react-reconciler/constants.js +0 -7
- package/node_modules/react-reconciler/index.js +0 -7
- package/node_modules/react-reconciler/package.json +0 -40
- package/node_modules/react-reconciler/reflection.js +0 -7
- package/node_modules/scheduler/LICENSE +0 -21
- package/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +0 -700
- package/node_modules/scheduler/cjs/scheduler-unstable_mock.production.min.js +0 -20
- package/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +0 -207
- package/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.min.js +0 -14
- package/node_modules/scheduler/cjs/scheduler.development.js +0 -634
- package/node_modules/scheduler/cjs/scheduler.production.min.js +0 -19
- package/node_modules/scheduler/index.js +0 -7
- package/node_modules/scheduler/package.json +0 -36
- package/node_modules/scheduler/umd/scheduler-unstable_mock.development.js +0 -699
- package/node_modules/scheduler/umd/scheduler-unstable_mock.production.min.js +0 -19
- package/node_modules/scheduler/umd/scheduler.development.js +0 -152
- package/node_modules/scheduler/umd/scheduler.production.min.js +0 -146
- package/node_modules/scheduler/umd/scheduler.profiling.min.js +0 -146
- package/node_modules/scheduler/unstable_mock.js +0 -7
- package/node_modules/scheduler/unstable_post_task.js +0 -7
- package/node_modules/slice-ansi/index.d.ts +0 -19
- package/node_modules/slice-ansi/index.js +0 -169
- package/node_modules/slice-ansi/license +0 -10
- package/node_modules/slice-ansi/node_modules/ansi-styles/index.d.ts +0 -236
- package/node_modules/slice-ansi/node_modules/ansi-styles/index.js +0 -223
- package/node_modules/slice-ansi/node_modules/ansi-styles/license +0 -9
- package/node_modules/slice-ansi/node_modules/ansi-styles/package.json +0 -54
- package/node_modules/slice-ansi/node_modules/ansi-styles/readme.md +0 -173
- package/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/index.d.ts +0 -17
- package/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/license +0 -9
- package/node_modules/slice-ansi/package.json +0 -58
- package/node_modules/slice-ansi/readme.md +0 -54
- package/node_modules/widest-line/license +0 -9
- package/node_modules/widest-line/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
- package/node_modules/widest-line/node_modules/emoji-regex/README.md +0 -107
- package/node_modules/widest-line/node_modules/emoji-regex/index.d.ts +0 -3
- package/node_modules/widest-line/node_modules/emoji-regex/index.js +0 -4
- package/node_modules/widest-line/node_modules/emoji-regex/index.mjs +0 -4
- package/node_modules/widest-line/node_modules/emoji-regex/package.json +0 -45
- package/node_modules/widest-line/node_modules/string-width/index.d.ts +0 -39
- package/node_modules/widest-line/node_modules/string-width/index.js +0 -82
- package/node_modules/widest-line/node_modules/string-width/license +0 -9
- package/node_modules/widest-line/node_modules/string-width/package.json +0 -64
- package/node_modules/widest-line/node_modules/string-width/readme.md +0 -66
- package/node_modules/widest-line/package.json +0 -60
- /package/node_modules/{ink/build/devtools-window-polyfill.d.ts → @quantiya/codevibe-core/dist/orchestration-shell/__tests__/companion-turn-mirror.test.d.ts} +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/diff.d.ts +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/index.d.ts +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/index.js +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/index.js.map +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/reduce.d.ts +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/styledChars.d.ts +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/styledChars.js +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/styledChars.js.map +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/undo.d.ts +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/undo.js +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/undo.js.map +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/base.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/base.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/index.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/index.js +0 -0
- /package/node_modules/{@alcalzone/ansi-tokenize/node_modules/ansi-styles → @quantiya/codevibe-core/node_modules/ansi-escapes}/license +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/package.json +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/readme.md +0 -0
- /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/ansi-styles/index.d.ts +0 -0
- /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/ansi-styles/index.js +0 -0
- /package/node_modules/{@alcalzone/ansi-tokenize/node_modules/is-fullwidth-code-point → @quantiya/codevibe-core/node_modules/ansi-styles}/license +0 -0
- /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/ansi-styles/package.json +0 -0
- /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/ansi-styles/readme.md +0 -0
- /package/node_modules/{cli-boxes → @quantiya/codevibe-core/node_modules/chalk}/license +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/package.json +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/readme.md +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/index.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/index.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/utilities.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +0 -0
- /package/node_modules/{cli-truncate/node_modules → @quantiya/codevibe-core/node_modules/chalk/source/vendor}/ansi-styles/index.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/supports-color/browser.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/supports-color/browser.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/supports-color/index.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/supports-color/index.js +0 -0
- /package/node_modules/{cli-boxes → @quantiya/codevibe-core/node_modules/cli-boxes}/boxes.json +0 -0
- /package/node_modules/{cli-truncate → @quantiya/codevibe-core/node_modules/cli-boxes}/license +0 -0
- /package/node_modules/{cli-truncate/node_modules/ansi-styles → @quantiya/codevibe-core/node_modules/cli-truncate}/license +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/colorize.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/colorize.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/colorize.js.map +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/components/ErrorOverview.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/components/FocusContext.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/components/FocusContext.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/components/FocusContext.js.map +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/devtools.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/get-max-width.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/get-max-width.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/get-max-width.js.map +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/instances.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/instances.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/instances.js.map +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/measure-text.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/render-border.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/squash-text-nodes.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/wrap-text.d.ts +0 -0
- /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/index.d.ts +0 -0
- /package/node_modules/{slice-ansi → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/index.js +0 -0
- /package/node_modules/{cli-truncate → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/license +0 -0
- /package/node_modules/{slice-ansi → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/package.json +0 -0
- /package/node_modules/{slice-ansi → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/readme.md +0 -0
- /package/node_modules/{is-in-ci → @quantiya/codevibe-core/node_modules/is-in-ci}/cli.js +0 -0
- /package/node_modules/{is-in-ci → @quantiya/codevibe-core/node_modules/is-in-ci}/index.d.ts +0 -0
- /package/node_modules/{cli-truncate/node_modules/string-width → @quantiya/codevibe-core/node_modules/is-in-ci}/license +0 -0
- /package/node_modules/{scheduler → @quantiya/codevibe-core/node_modules/scheduler}/README.md +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/LICENSE.txt +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/README.md +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/index.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/package.json +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/signals.js +0 -0
- /package/node_modules/{cli-truncate → @quantiya/codevibe-core}/node_modules/slice-ansi/license +0 -0
- /package/node_modules/{cli-truncate → @quantiya/codevibe-core}/node_modules/string-width/index.d.ts +0 -0
- /package/node_modules/{ink/node_modules/ansi-escapes → @quantiya/codevibe-core/node_modules/string-width}/license +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/type-fest/license-cc0 +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/type-fest/license-mit +0 -0
- /package/node_modules/{widest-line → @quantiya/codevibe-core/node_modules/widest-line}/index.d.ts +0 -0
- /package/node_modules/{widest-line → @quantiya/codevibe-core/node_modules/widest-line}/index.js +0 -0
- /package/node_modules/{ink/node_modules/ansi-styles → @quantiya/codevibe-core/node_modules/widest-line}/license +0 -0
- /package/node_modules/{widest-line → @quantiya/codevibe-core/node_modules/widest-line}/readme.md +0 -0
- /package/node_modules/{ink/node_modules/chalk → @quantiya/codevibe-core/node_modules/wrap-ansi}/license +0 -0
- /package/node_modules/{ink/node_modules/string-width → tagged-tag}/license +0 -0
- /package/node_modules/{ink/node_modules/wrap-ansi → terminal-size}/license +0 -0
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import type {IsNull} from './is-null';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
Returns a boolean for whether the given type is `unknown`.
|
|
5
|
-
|
|
6
|
-
@link https://github.com/dsherret/conditional-type-checks/pull/16
|
|
7
|
-
|
|
8
|
-
Useful in type utilities, such as when dealing with unknown data from API calls.
|
|
9
|
-
|
|
10
|
-
@example
|
|
11
|
-
```
|
|
12
|
-
import type {IsUnknown} from 'type-fest';
|
|
13
|
-
|
|
14
|
-
// https://github.com/pajecawav/tiny-global-store/blob/master/src/index.ts
|
|
15
|
-
type Action<TState, TPayload = void> =
|
|
16
|
-
IsUnknown<TPayload> extends true
|
|
17
|
-
? (state: TState) => TState,
|
|
18
|
-
: (state: TState, payload: TPayload) => TState;
|
|
19
|
-
|
|
20
|
-
class Store<TState> {
|
|
21
|
-
constructor(private state: TState) {}
|
|
22
|
-
|
|
23
|
-
execute<TPayload = void>(action: Action<TState, TPayload>, payload?: TPayload): TState {
|
|
24
|
-
this.state = action(this.state, payload);
|
|
25
|
-
return this.state;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// ... other methods
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
const store = new Store({value: 1});
|
|
32
|
-
declare const someExternalData: unknown;
|
|
33
|
-
|
|
34
|
-
store.execute(state => ({value: state.value + 1}));
|
|
35
|
-
//=> `TPayload` is `void`
|
|
36
|
-
|
|
37
|
-
store.execute((state, payload) => ({value: state.value + payload}), 5);
|
|
38
|
-
//=> `TPayload` is `5`
|
|
39
|
-
|
|
40
|
-
store.execute((state, payload) => ({value: state.value + payload}), someExternalData);
|
|
41
|
-
//=> Errors: `action` is `(state: TState) => TState`
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
@category Utilities
|
|
45
|
-
*/
|
|
46
|
-
export type IsUnknown<T> = (
|
|
47
|
-
unknown extends T // `T` can be `unknown` or `any`
|
|
48
|
-
? IsNull<T> extends false // `any` can be `null`, but `unknown` can't be
|
|
49
|
-
? true
|
|
50
|
-
: false
|
|
51
|
-
: false
|
|
52
|
-
);
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
Get the element type of an `Iterable`/`AsyncIterable`. For example, `Array`, `Set`, `Map`, generator, stream, etc.
|
|
3
|
-
|
|
4
|
-
This can be useful, for example, if you want to get the type that is yielded in a generator function. Often the return type of those functions are not specified.
|
|
5
|
-
|
|
6
|
-
This type works with both `Iterable`s and `AsyncIterable`s, so it can be use with synchronous and asynchronous generators.
|
|
7
|
-
|
|
8
|
-
Here is an example of `IterableElement` in action with a generator function:
|
|
9
|
-
|
|
10
|
-
@example
|
|
11
|
-
```
|
|
12
|
-
import type {IterableElement} from 'type-fest';
|
|
13
|
-
|
|
14
|
-
function * iAmGenerator() {
|
|
15
|
-
yield 1;
|
|
16
|
-
yield 2;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
type MeNumber = IterableElement<ReturnType<typeof iAmGenerator>>
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
And here is an example with an async generator:
|
|
23
|
-
|
|
24
|
-
@example
|
|
25
|
-
```
|
|
26
|
-
import type {IterableElement} from 'type-fest';
|
|
27
|
-
|
|
28
|
-
async function * iAmGeneratorAsync() {
|
|
29
|
-
yield 'hi';
|
|
30
|
-
yield true;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
type MeStringOrBoolean = IterableElement<ReturnType<typeof iAmGeneratorAsync>>
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
Many types in JavaScript/TypeScript are iterables. This type works on all types that implement those interfaces.
|
|
37
|
-
|
|
38
|
-
An example with an array of strings:
|
|
39
|
-
|
|
40
|
-
@example
|
|
41
|
-
```
|
|
42
|
-
import type {IterableElement} from 'type-fest';
|
|
43
|
-
|
|
44
|
-
type MeString = IterableElement<string[]>
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
@example
|
|
48
|
-
```
|
|
49
|
-
import type {IterableElement} from 'type-fest';
|
|
50
|
-
|
|
51
|
-
const fruits = new Set(['🍎', '🍌', '🍉'] as const);
|
|
52
|
-
|
|
53
|
-
type Fruit = IterableElement<typeof fruits>;
|
|
54
|
-
//=> '🍎' | '🍌' | '🍉'
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
@category Iterable
|
|
58
|
-
*/
|
|
59
|
-
export type IterableElement<TargetIterable> =
|
|
60
|
-
TargetIterable extends Iterable<infer ElementType> ?
|
|
61
|
-
ElementType :
|
|
62
|
-
TargetIterable extends AsyncIterable<infer ElementType> ?
|
|
63
|
-
ElementType :
|
|
64
|
-
never;
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
// The builtin `join` method supports all these natively in the same way that typescript handles them so we can safely accept all of them.
|
|
2
|
-
type JoinableItem = string | number | bigint | boolean | undefined | null;
|
|
3
|
-
|
|
4
|
-
// `null` and `undefined` are treated uniquely in the built-in join method, in a way that differs from the default `toString` that would result in the type `${undefined}`. That's why we need to handle it specifically with this helper.
|
|
5
|
-
// @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/join#description
|
|
6
|
-
type NullishCoalesce<
|
|
7
|
-
Value extends JoinableItem,
|
|
8
|
-
Fallback extends string,
|
|
9
|
-
> = Value extends undefined | null ? NonNullable<Value> | Fallback : Value;
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
Join an array of strings and/or numbers using the given string as a delimiter.
|
|
13
|
-
|
|
14
|
-
Use-case: Defining key paths in a nested object. For example, for dot-notation fields in MongoDB queries.
|
|
15
|
-
|
|
16
|
-
@example
|
|
17
|
-
```
|
|
18
|
-
import type {Join} from 'type-fest';
|
|
19
|
-
|
|
20
|
-
// Mixed (strings & numbers) items; result is: 'foo.0.baz'
|
|
21
|
-
const path: Join<['foo', 0, 'baz'], '.'> = ['foo', 0, 'baz'].join('.');
|
|
22
|
-
|
|
23
|
-
// Only string items; result is: 'foo.bar.baz'
|
|
24
|
-
const path: Join<['foo', 'bar', 'baz'], '.'> = ['foo', 'bar', 'baz'].join('.');
|
|
25
|
-
|
|
26
|
-
// Only number items; result is: '1.2.3'
|
|
27
|
-
const path: Join<[1, 2, 3], '.'> = [1, 2, 3].join('.');
|
|
28
|
-
|
|
29
|
-
// Only bigint items; result is '1.2.3'
|
|
30
|
-
const path: Join<[1n, 2n, 3n], '.'> = [1n, 2n, 3n].join('.');
|
|
31
|
-
|
|
32
|
-
// Only boolean items; result is: 'true.false.true'
|
|
33
|
-
const path: Join<[true, false, true], '.'> = [true, false, true].join('.');
|
|
34
|
-
|
|
35
|
-
// Contains nullish items; result is: 'foo..baz..xyz'
|
|
36
|
-
const path: Join<['foo', undefined, 'baz', null, 'xyz'], '.'> = ['foo', undefined, 'baz', null, 'xyz'].join('.');
|
|
37
|
-
|
|
38
|
-
// Partial tuple shapes (rest param last); result is: `prefix.${string}`
|
|
39
|
-
const path: Join<['prefix', ...string[]], '.'> = ['prefix'].join('.');
|
|
40
|
-
|
|
41
|
-
// Partial tuple shapes (rest param first); result is: `${string}.suffix`
|
|
42
|
-
const path: Join<[...string[], 'suffix'], '.'> = ['suffix'].join('.');
|
|
43
|
-
|
|
44
|
-
// Tuples items with nullish unions; result is '.' | 'hello.' | '.world' | 'hello.world'
|
|
45
|
-
const path: Join<['hello' | undefined, 'world' | null], '.'> = ['hello', 'world'].join('.');
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
@category Array
|
|
49
|
-
@category Template literal
|
|
50
|
-
*/
|
|
51
|
-
export type Join<
|
|
52
|
-
Items extends readonly JoinableItem[],
|
|
53
|
-
Delimiter extends string,
|
|
54
|
-
> = Items extends readonly []
|
|
55
|
-
? ''
|
|
56
|
-
: Items extends readonly [JoinableItem?]
|
|
57
|
-
? `${NullishCoalesce<Items[0], ''>}`
|
|
58
|
-
: Items extends readonly [
|
|
59
|
-
infer First extends JoinableItem,
|
|
60
|
-
...infer Tail extends readonly JoinableItem[],
|
|
61
|
-
]
|
|
62
|
-
? `${NullishCoalesce<First, ''>}${Delimiter}${Join<Tail, Delimiter>}`
|
|
63
|
-
: Items extends readonly [
|
|
64
|
-
...infer Head extends readonly JoinableItem[],
|
|
65
|
-
infer Last extends JoinableItem,
|
|
66
|
-
]
|
|
67
|
-
? `${Join<Head, Delimiter>}${Delimiter}${NullishCoalesce<Last, ''>}`
|
|
68
|
-
: string;
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import type {JsonPrimitive} from './basic';
|
|
2
|
-
|
|
3
|
-
type JsonifiableObject = {[Key in string]?: Jsonifiable} | {toJSON: () => Jsonifiable};
|
|
4
|
-
type JsonifiableArray = readonly Jsonifiable[];
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
Matches a value that can be losslessly converted to JSON.
|
|
8
|
-
|
|
9
|
-
Can be used to type values that you expect to pass to `JSON.stringify`.
|
|
10
|
-
|
|
11
|
-
`undefined` is allowed in object fields (for example, `{a?: number}`) as a special case even though `JSON.stringify({a: undefined})` is `{}` because it makes this class more widely useful and checking for undefined-but-present values is likely an anti-pattern.
|
|
12
|
-
|
|
13
|
-
@example
|
|
14
|
-
```
|
|
15
|
-
import type {Jsonifiable} from 'type-fest';
|
|
16
|
-
|
|
17
|
-
// @ts-expect-error
|
|
18
|
-
const error: Jsonifiable = {
|
|
19
|
-
map: new Map([['a', 1]]),
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
JSON.stringify(error);
|
|
23
|
-
//=> {"map": {}}
|
|
24
|
-
|
|
25
|
-
const good: Jsonifiable = {
|
|
26
|
-
number: 3,
|
|
27
|
-
date: new Date(),
|
|
28
|
-
missing: undefined,
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
JSON.stringify(good);
|
|
32
|
-
//=> {"number": 3, "date": "2022-10-17T22:22:35.920Z"}
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
@category JSON
|
|
36
|
-
*/
|
|
37
|
-
export type Jsonifiable = JsonPrimitive | JsonifiableObject | JsonifiableArray;
|
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
import type {JsonPrimitive, JsonValue} from './basic';
|
|
2
|
-
import type {EmptyObject} from './empty-object';
|
|
3
|
-
import type {UndefinedToOptional} from './internal';
|
|
4
|
-
import type {IsAny} from './is-any';
|
|
5
|
-
import type {IsNever} from './is-never';
|
|
6
|
-
import type {IsUnknown} from './is-unknown';
|
|
7
|
-
import type {NegativeInfinity, PositiveInfinity} from './numeric';
|
|
8
|
-
import type {TypedArray} from './typed-array';
|
|
9
|
-
import type {UnknownArray} from './unknown-array';
|
|
10
|
-
|
|
11
|
-
// Note: The return value has to be `any` and not `unknown` so it can match `void`.
|
|
12
|
-
type NotJsonable = ((...arguments_: any[]) => any) | undefined | symbol;
|
|
13
|
-
|
|
14
|
-
type NeverToNull<T> = IsNever<T> extends true ? null : T;
|
|
15
|
-
type UndefinedToNull<T> = T extends undefined ? null : T;
|
|
16
|
-
|
|
17
|
-
// Handles tuples and arrays
|
|
18
|
-
type JsonifyList<T extends UnknownArray> = T extends readonly []
|
|
19
|
-
? []
|
|
20
|
-
: T extends readonly [infer F, ...infer R]
|
|
21
|
-
? [NeverToNull<Jsonify<F>>, ...JsonifyList<R>]
|
|
22
|
-
: IsUnknown<T[number]> extends true
|
|
23
|
-
? []
|
|
24
|
-
: Array<T[number] extends NotJsonable ? null : Jsonify<UndefinedToNull<T[number]>>>;
|
|
25
|
-
|
|
26
|
-
type FilterJsonableKeys<T extends object> = {
|
|
27
|
-
[Key in keyof T]: T[Key] extends NotJsonable ? never : Key;
|
|
28
|
-
}[keyof T];
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
JSON serialize objects (not including arrays) and classes.
|
|
32
|
-
*/
|
|
33
|
-
type JsonifyObject<T extends object> = {
|
|
34
|
-
[Key in keyof Pick<T, FilterJsonableKeys<T>>]: Jsonify<T[Key]>;
|
|
35
|
-
};
|
|
36
|
-
|
|
37
|
-
/**
|
|
38
|
-
Transform a type to one that is assignable to the `JsonValue` type.
|
|
39
|
-
|
|
40
|
-
This includes:
|
|
41
|
-
1. Transforming JSON `interface` to a `type` that is assignable to `JsonValue`.
|
|
42
|
-
2. Transforming non-JSON value that is *jsonable* to a type that is assignable to `JsonValue`, where *jsonable* means the non-JSON value implements the `.toJSON()` method that returns a value that is assignable to `JsonValue`.
|
|
43
|
-
|
|
44
|
-
@remarks
|
|
45
|
-
|
|
46
|
-
An interface cannot be structurally compared to `JsonValue` because an interface can be re-opened to add properties that may not be satisfy `JsonValue`.
|
|
47
|
-
|
|
48
|
-
@example
|
|
49
|
-
```
|
|
50
|
-
import type {Jsonify, JsonValue} from 'type-fest';
|
|
51
|
-
|
|
52
|
-
interface Geometry {
|
|
53
|
-
type: 'Point' | 'Polygon';
|
|
54
|
-
coordinates: [number, number];
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
const point: Geometry = {
|
|
58
|
-
type: 'Point',
|
|
59
|
-
coordinates: [1, 1]
|
|
60
|
-
};
|
|
61
|
-
|
|
62
|
-
const problemFn = (data: JsonValue) => {
|
|
63
|
-
// Does something with data
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
problemFn(point); // Error: type Geometry is not assignable to parameter of type JsonValue because it is an interface
|
|
67
|
-
|
|
68
|
-
const fixedFn = <T>(data: Jsonify<T>) => {
|
|
69
|
-
// Does something with data
|
|
70
|
-
};
|
|
71
|
-
|
|
72
|
-
fixedFn(point); // Good: point is assignable. Jsonify<T> transforms Geometry into value assignable to JsonValue
|
|
73
|
-
fixedFn(new Date()); // Error: As expected, Date is not assignable. Jsonify<T> cannot transforms Date into value assignable to JsonValue
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
Non-JSON values such as `Date` implement `.toJSON()`, so they can be transformed to a value assignable to `JsonValue`:
|
|
77
|
-
|
|
78
|
-
@example
|
|
79
|
-
```
|
|
80
|
-
import type {Jsonify} from 'type-fest';
|
|
81
|
-
|
|
82
|
-
const time = {
|
|
83
|
-
timeValue: new Date()
|
|
84
|
-
};
|
|
85
|
-
|
|
86
|
-
// `Jsonify<typeof time>` is equivalent to `{timeValue: string}`
|
|
87
|
-
const timeJson = JSON.parse(JSON.stringify(time)) as Jsonify<typeof time>;
|
|
88
|
-
```
|
|
89
|
-
|
|
90
|
-
@link https://github.com/Microsoft/TypeScript/issues/1897#issuecomment-710744173
|
|
91
|
-
|
|
92
|
-
@category JSON
|
|
93
|
-
*/
|
|
94
|
-
export type Jsonify<T> = IsAny<T> extends true
|
|
95
|
-
? any
|
|
96
|
-
: T extends PositiveInfinity | NegativeInfinity
|
|
97
|
-
? null
|
|
98
|
-
: T extends JsonPrimitive
|
|
99
|
-
? T
|
|
100
|
-
: // Any object with toJSON is special case
|
|
101
|
-
T extends {toJSON(): infer J}
|
|
102
|
-
? (() => J) extends () => JsonValue // Is J assignable to JsonValue?
|
|
103
|
-
? J // Then T is Jsonable and its Jsonable value is J
|
|
104
|
-
: Jsonify<J> // Maybe if we look a level deeper we'll find a JsonValue
|
|
105
|
-
: // Instanced primitives are objects
|
|
106
|
-
T extends Number
|
|
107
|
-
? number
|
|
108
|
-
: T extends String
|
|
109
|
-
? string
|
|
110
|
-
: T extends Boolean
|
|
111
|
-
? boolean
|
|
112
|
-
: T extends Map<any, any> | Set<any>
|
|
113
|
-
? EmptyObject
|
|
114
|
-
: T extends TypedArray
|
|
115
|
-
? Record<string, number>
|
|
116
|
-
: T extends NotJsonable
|
|
117
|
-
? never // Non-JSONable type union was found not empty
|
|
118
|
-
: T extends UnknownArray
|
|
119
|
-
? JsonifyList<T>
|
|
120
|
-
: T extends object
|
|
121
|
-
? JsonifyObject<UndefinedToOptional<T>> // JsonifyObject recursive call for its children
|
|
122
|
-
: never; // Otherwise any other non-object is removed
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import type {DefaultDelimiterCaseOptions, DelimiterCase} from './delimiter-case';
|
|
2
|
-
import type {ApplyDefaultOptions} from './internal';
|
|
3
|
-
import type {WordsOptions} from './words';
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
Convert a string literal to kebab-case.
|
|
7
|
-
|
|
8
|
-
This can be useful when, for example, converting a camel-cased object property to a kebab-cased CSS class name or a command-line flag.
|
|
9
|
-
|
|
10
|
-
@example
|
|
11
|
-
```
|
|
12
|
-
import type {KebabCase} from 'type-fest';
|
|
13
|
-
|
|
14
|
-
// Simple
|
|
15
|
-
|
|
16
|
-
const someVariable: KebabCase<'fooBar'> = 'foo-bar';
|
|
17
|
-
const someVariableNoSplitOnNumbers: KebabCase<'p2pNetwork', {splitOnNumbers: false}> = 'p2p-network';
|
|
18
|
-
|
|
19
|
-
// Advanced
|
|
20
|
-
|
|
21
|
-
type KebabCasedProperties<T> = {
|
|
22
|
-
[K in keyof T as KebabCase<K>]: T[K]
|
|
23
|
-
};
|
|
24
|
-
|
|
25
|
-
interface CliOptions {
|
|
26
|
-
dryRun: boolean;
|
|
27
|
-
includeFile: string;
|
|
28
|
-
foo: number;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
const rawCliOptions: KebabCasedProperties<CliOptions> = {
|
|
32
|
-
'dry-run': true,
|
|
33
|
-
'include-file': 'bar.js',
|
|
34
|
-
foo: 123
|
|
35
|
-
};
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
@category Change case
|
|
39
|
-
@category Template literal
|
|
40
|
-
*/
|
|
41
|
-
export type KebabCase<
|
|
42
|
-
Value,
|
|
43
|
-
Options extends WordsOptions = {},
|
|
44
|
-
> = DelimiterCase<Value, '-', ApplyDefaultOptions<WordsOptions, DefaultDelimiterCaseOptions, Options>>;
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import type {DefaultDelimiterCaseOptions} from './delimiter-case';
|
|
2
|
-
import type {DelimiterCasedPropertiesDeep} from './delimiter-cased-properties-deep';
|
|
3
|
-
import type {ApplyDefaultOptions} from './internal';
|
|
4
|
-
import type {WordsOptions} from './words';
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
Convert object properties to kebab case recursively.
|
|
8
|
-
|
|
9
|
-
This can be useful when, for example, converting some API types from a different style.
|
|
10
|
-
|
|
11
|
-
@see KebabCase
|
|
12
|
-
@see KebabCasedProperties
|
|
13
|
-
|
|
14
|
-
@example
|
|
15
|
-
```
|
|
16
|
-
import type [KebabCasedPropertiesDeep] from 'type-fest';
|
|
17
|
-
|
|
18
|
-
interface User {
|
|
19
|
-
userId: number;
|
|
20
|
-
userName: string;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
interface UserWithFriends {
|
|
24
|
-
userInfo: User;
|
|
25
|
-
userFriends: User[];
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
const result: KebabCasedPropertiesDeep<UserWithFriends> = {
|
|
29
|
-
'user-info': {
|
|
30
|
-
'user-id': 1,
|
|
31
|
-
'user-name': 'Tom',
|
|
32
|
-
},
|
|
33
|
-
'user-friends': [
|
|
34
|
-
{
|
|
35
|
-
'user-id': 2,
|
|
36
|
-
'user-name': 'Jerry',
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
'user-id': 3,
|
|
40
|
-
'user-name': 'Spike',
|
|
41
|
-
},
|
|
42
|
-
],
|
|
43
|
-
};
|
|
44
|
-
|
|
45
|
-
const splitOnNumbers: KebabCasedPropertiesDeep<{line1: { line2: [{ line3: string }] }}, {splitOnNumbers: true}> = {
|
|
46
|
-
'line-1': {
|
|
47
|
-
'line-2': [
|
|
48
|
-
{
|
|
49
|
-
'line-3': 'string',
|
|
50
|
-
},
|
|
51
|
-
],
|
|
52
|
-
},
|
|
53
|
-
};
|
|
54
|
-
```
|
|
55
|
-
|
|
56
|
-
@category Change case
|
|
57
|
-
@category Template literal
|
|
58
|
-
@category Object
|
|
59
|
-
*/
|
|
60
|
-
export type KebabCasedPropertiesDeep<
|
|
61
|
-
Value,
|
|
62
|
-
Options extends WordsOptions = {},
|
|
63
|
-
> = DelimiterCasedPropertiesDeep<Value, '-', ApplyDefaultOptions<WordsOptions, DefaultDelimiterCaseOptions, Options>>;
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import type {DefaultDelimiterCaseOptions} from './delimiter-case';
|
|
2
|
-
import type {DelimiterCasedProperties} from './delimiter-cased-properties';
|
|
3
|
-
import type {ApplyDefaultOptions} from './internal';
|
|
4
|
-
import type {WordsOptions} from './words';
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
Convert object properties to kebab case but not recursively.
|
|
8
|
-
|
|
9
|
-
This can be useful when, for example, converting some API types from a different style.
|
|
10
|
-
|
|
11
|
-
@see KebabCase
|
|
12
|
-
@see KebabCasedPropertiesDeep
|
|
13
|
-
|
|
14
|
-
@example
|
|
15
|
-
```
|
|
16
|
-
import type {KebabCasedProperties} from 'type-fest';
|
|
17
|
-
|
|
18
|
-
interface User {
|
|
19
|
-
userId: number;
|
|
20
|
-
userName: string;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
const result: KebabCasedProperties<User> = {
|
|
24
|
-
'user-id': 1,
|
|
25
|
-
'user-name': 'Tom',
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
const splitOnNumbers: KebabCasedProperties<{line1: string}, {splitOnNumbers: true}> = {
|
|
29
|
-
'line-1': 'string',
|
|
30
|
-
};
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
@category Change case
|
|
34
|
-
@category Template literal
|
|
35
|
-
@category Object
|
|
36
|
-
*/
|
|
37
|
-
export type KebabCasedProperties<
|
|
38
|
-
Value,
|
|
39
|
-
Options extends WordsOptions = {},
|
|
40
|
-
> = DelimiterCasedProperties<Value, '-', ApplyDefaultOptions<WordsOptions, DefaultDelimiterCaseOptions, Options>>;
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import type {UnionToIntersection} from './union-to-intersection';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
Create a union of all keys from a given type, even those exclusive to specific union members.
|
|
5
|
-
|
|
6
|
-
Unlike the native `keyof` keyword, which returns keys present in **all** union members, this type returns keys from **any** member.
|
|
7
|
-
|
|
8
|
-
@link https://stackoverflow.com/a/49402091
|
|
9
|
-
|
|
10
|
-
@example
|
|
11
|
-
```
|
|
12
|
-
import type {KeysOfUnion} from 'type-fest';
|
|
13
|
-
|
|
14
|
-
type A = {
|
|
15
|
-
common: string;
|
|
16
|
-
a: number;
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
type B = {
|
|
20
|
-
common: string;
|
|
21
|
-
b: string;
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
type C = {
|
|
25
|
-
common: string;
|
|
26
|
-
c: boolean;
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
type Union = A | B | C;
|
|
30
|
-
|
|
31
|
-
type CommonKeys = keyof Union;
|
|
32
|
-
//=> 'common'
|
|
33
|
-
|
|
34
|
-
type AllKeys = KeysOfUnion<Union>;
|
|
35
|
-
//=> 'common' | 'a' | 'b' | 'c'
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
@category Object
|
|
39
|
-
*/
|
|
40
|
-
export type KeysOfUnion<ObjectType> =
|
|
41
|
-
// Hack to fix https://github.com/sindresorhus/type-fest/issues/1008
|
|
42
|
-
keyof UnionToIntersection<ObjectType extends unknown ? Record<keyof ObjectType, never> : never>;
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
Extracts the type of the last element of an array.
|
|
3
|
-
|
|
4
|
-
Use-case: Defining the return type of functions that extract the last element of an array, for example [`lodash.last`](https://lodash.com/docs/4.17.15#last).
|
|
5
|
-
|
|
6
|
-
@example
|
|
7
|
-
```
|
|
8
|
-
import type {LastArrayElement} from 'type-fest';
|
|
9
|
-
|
|
10
|
-
declare function lastOf<V extends readonly any[]>(array: V): LastArrayElement<V>;
|
|
11
|
-
|
|
12
|
-
const array = ['foo', 2];
|
|
13
|
-
|
|
14
|
-
typeof lastOf(array);
|
|
15
|
-
//=> number
|
|
16
|
-
|
|
17
|
-
const array = ['foo', 2] as const;
|
|
18
|
-
|
|
19
|
-
typeof lastOf(array);
|
|
20
|
-
//=> 2
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
@category Array
|
|
24
|
-
@category Template literal
|
|
25
|
-
*/
|
|
26
|
-
export type LastArrayElement<Elements extends readonly unknown[], ElementBeforeTailingSpreadElement = never> =
|
|
27
|
-
// If the last element of an array is a spread element, the `LastArrayElement` result should be `'the type of the element before the spread element' | 'the type of the spread element'`.
|
|
28
|
-
Elements extends readonly []
|
|
29
|
-
? ElementBeforeTailingSpreadElement
|
|
30
|
-
: Elements extends readonly [...infer U, infer V]
|
|
31
|
-
? V
|
|
32
|
-
: Elements extends readonly [infer U, ...infer V]
|
|
33
|
-
// If we return `V[number] | U` directly, it would be wrong for `[[string, boolean, object, ...number[]]`.
|
|
34
|
-
// So we need to recurse type `V` and carry over the type of the element before the spread element.
|
|
35
|
-
? LastArrayElement<V, U>
|
|
36
|
-
: Elements extends ReadonlyArray<infer U>
|
|
37
|
-
? U | ElementBeforeTailingSpreadElement
|
|
38
|
-
: never;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import type {GreaterThan} from './greater-than';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
Returns a boolean for whether a given number is less than or equal to another number.
|
|
5
|
-
|
|
6
|
-
@example
|
|
7
|
-
```
|
|
8
|
-
import type {LessThanOrEqual} from 'type-fest';
|
|
9
|
-
|
|
10
|
-
LessThanOrEqual<1, -5>;
|
|
11
|
-
//=> false
|
|
12
|
-
|
|
13
|
-
LessThanOrEqual<1, 1>;
|
|
14
|
-
//=> true
|
|
15
|
-
|
|
16
|
-
LessThanOrEqual<1, 5>;
|
|
17
|
-
//=> true
|
|
18
|
-
```
|
|
19
|
-
*/
|
|
20
|
-
export type LessThanOrEqual<A extends number, B extends number> = number extends A | B
|
|
21
|
-
? never
|
|
22
|
-
: GreaterThan<A, B> extends true ? false : true;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import type {GreaterThanOrEqual} from './greater-than-or-equal';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
Returns a boolean for whether a given number is less than another number.
|
|
5
|
-
|
|
6
|
-
@example
|
|
7
|
-
```
|
|
8
|
-
import type {LessThan} from 'type-fest';
|
|
9
|
-
|
|
10
|
-
LessThan<1, -5>;
|
|
11
|
-
//=> false
|
|
12
|
-
|
|
13
|
-
LessThan<1, 1>;
|
|
14
|
-
//=> false
|
|
15
|
-
|
|
16
|
-
LessThan<1, 5>;
|
|
17
|
-
//=> true
|
|
18
|
-
```
|
|
19
|
-
*/
|
|
20
|
-
export type LessThan<A extends number, B extends number> = number extends A | B
|
|
21
|
-
? never
|
|
22
|
-
: GreaterThanOrEqual<A, B> extends infer Result
|
|
23
|
-
? Result extends true
|
|
24
|
-
? false
|
|
25
|
-
: true
|
|
26
|
-
: never; // Should never happen
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import type {LiteralToPrimitive} from './literal-to-primitive';
|
|
2
|
-
import type {OmitIndexSignature} from './omit-index-signature';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
Like `LiteralToPrimitive` except it converts literal types inside an object or array deeply.
|
|
6
|
-
|
|
7
|
-
For example, given a constant object, it returns a new object type with the same keys but with all the values converted to primitives.
|
|
8
|
-
|
|
9
|
-
@see LiteralToPrimitive
|
|
10
|
-
|
|
11
|
-
Use-case: Deal with data that is imported from a JSON file.
|
|
12
|
-
|
|
13
|
-
@example
|
|
14
|
-
```
|
|
15
|
-
import type {LiteralToPrimitiveDeep, TsConfigJson} from 'type-fest';
|
|
16
|
-
import tsconfig from 'path/to/tsconfig.json';
|
|
17
|
-
|
|
18
|
-
function doSomethingWithTSConfig(config: LiteralToPrimitiveDeep<TsConfigJson>) { ... }
|
|
19
|
-
|
|
20
|
-
// No casting is needed to pass the type check
|
|
21
|
-
doSomethingWithTSConfig(tsconfig);
|
|
22
|
-
|
|
23
|
-
// If LiteralToPrimitiveDeep is not used, you need to cast the imported data like this:
|
|
24
|
-
doSomethingWithTSConfig(tsconfig as TsConfigJson);
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
@category Type
|
|
28
|
-
@category Object
|
|
29
|
-
*/
|
|
30
|
-
export type LiteralToPrimitiveDeep<T> = T extends object
|
|
31
|
-
? T extends Array<infer U>
|
|
32
|
-
? Array<LiteralToPrimitiveDeep<U>>
|
|
33
|
-
: {
|
|
34
|
-
[K in keyof OmitIndexSignature<T>]: LiteralToPrimitiveDeep<T[K]>;
|
|
35
|
-
}
|
|
36
|
-
: LiteralToPrimitive<T>;
|