@walkhi/code-relax 0.1.0-beta.1
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/README.md +83 -0
- package/dist/bin/codex-remote.mjs +262 -0
- package/dist/bin/self-relay-demo.mjs +33 -0
- package/dist/bin/self-relay-server.mjs +50 -0
- package/dist/get-lan-networks.ps1 +40 -0
- package/dist/get-shared-service-url.ps1 +6 -0
- package/dist/shared/app-server-events.cjs +266 -0
- package/dist/shared/p2p-diagnostics.cjs +28 -0
- package/dist/shared/server-requests.cjs +67 -0
- package/dist/shared/timeline-sync.cjs +67 -0
- package/dist/skills/code-relax/SKILL.md +17 -0
- package/dist/src/app-server-client.mjs +468 -0
- package/dist/src/app-server-tasks.mjs +355 -0
- package/dist/src/background-process.mjs +18 -0
- package/dist/src/debug-ui.mjs +131 -0
- package/dist/src/desktop-launcher.mjs +51 -0
- package/dist/src/execution-health.mjs +26 -0
- package/dist/src/lan-socket-server.mjs +103 -0
- package/dist/src/managed-app-server.mjs +207 -0
- package/dist/src/message-images.mjs +27 -0
- package/dist/src/onboarding.mjs +31 -0
- package/dist/src/platform/README.md +12 -0
- package/dist/src/platform/linux/README.md +3 -0
- package/dist/src/platform/macos/README.md +3 -0
- package/dist/src/platform/windows/IsolatedProcess.cs +75 -0
- package/dist/src/platform/windows/background-process.mjs +25 -0
- package/dist/src/platform/windows/credential-store.mjs +27 -0
- package/dist/src/platform/windows/credential-store.ps1 +49 -0
- package/dist/src/platform/windows/desktop-host.mjs +38 -0
- package/dist/src/platform/windows/desktop-info.ps1 +16 -0
- package/dist/src/platform/windows/desktop-monitor.mjs +34 -0
- package/dist/src/platform/windows/desktop-shortcut-run.ps1 +5 -0
- package/dist/src/platform/windows/desktop-shortcuts.ps1 +28 -0
- package/dist/src/platform/windows/desktop-tools.mjs +48 -0
- package/dist/src/platform/windows/launch-worker.ps1 +13 -0
- package/dist/src/platform/windows/network-info.mjs +34 -0
- package/dist/src/platform/windows/resident-start.ps1 +7 -0
- package/dist/src/platform/windows/resident-startup.ps1 +27 -0
- package/dist/src/platform/windows/resolve-state-root.ps1 +14 -0
- package/dist/src/platform/windows/runtime-paths.mjs +20 -0
- package/dist/src/platform/windows/service-host.mjs +43 -0
- package/dist/src/platform/windows/start-hidden-console.ps1 +39 -0
- package/dist/src/platform/windows/stop-desktop.ps1 +19 -0
- package/dist/src/platform/windows/user-environment.mjs +50 -0
- package/dist/src/platform/windows/user-environment.ps1 +41 -0
- package/dist/src/self-relay/client.mjs +59 -0
- package/dist/src/self-relay/connector.mjs +147 -0
- package/dist/src/self-relay/debug-allowlist.mjs +33 -0
- package/dist/src/self-relay/demo.mjs +38 -0
- package/dist/src/self-relay/device-store.mjs +84 -0
- package/dist/src/self-relay/lan-authorizations.mjs +29 -0
- package/dist/src/self-relay/lifecycle.mjs +281 -0
- package/dist/src/self-relay/p2p-probe.mjs +83 -0
- package/dist/src/self-relay/server.mjs +340 -0
- package/dist/src/self-relay/windows-route-helper.mjs +75 -0
- package/dist/src/self-relay/wire.mjs +36 -0
- package/dist/src/server.mjs +2086 -0
- package/dist/src/service-control.mjs +72 -0
- package/dist/src/service-doctor.mjs +63 -0
- package/dist/src/service-health.mjs +33 -0
- package/dist/src/service-install.mjs +91 -0
- package/dist/src/service-lifecycle.mjs +130 -0
- package/dist/src/service-restart.mjs +48 -0
- package/dist/src/shared-app-server.mjs +356 -0
- package/dist/src/shared-catalog.mjs +60 -0
- package/dist/src/shared-recovery.mjs +142 -0
- package/dist/src/shared-thread-stream.mjs +80 -0
- package/dist/src/skill-install.mjs +64 -0
- package/dist/src/thread-catalog.mjs +42 -0
- package/dist/src/thread-title-generation.mjs +150 -0
- package/dist/tools/find-desktop-pipe.mjs +10 -0
- package/dist/tools/rtc-route-helper.ps1 +99 -0
- package/dist/tools/start-rtc-route-helper.ps1 +15 -0
- package/dist/web/approval-ui.js +188 -0
- package/dist/web/capabilities.js +57 -0
- package/dist/web/chat-transport.js +196 -0
- package/dist/web/chat.css +736 -0
- package/dist/web/chat.js +5149 -0
- package/dist/web/client-platform.js +11 -0
- package/dist/web/harmony-platform.js +51 -0
- package/dist/web/highlight-powershell.min.js +39 -0
- package/dist/web/highlight.min.js +1262 -0
- package/dist/web/history-cache.js +146 -0
- package/dist/web/index.html +222 -0
- package/dist/web/lan-session.js +122 -0
- package/dist/web/p2p-diagnostics.js +28 -0
- package/dist/web/p2p-probe.js +83 -0
- package/dist/web/resources.json +1 -0
- package/dist/web/self-relay-session.js +119 -0
- package/dist/web/server-requests.js +67 -0
- package/dist/web/timeline-sync.js +67 -0
- package/dist/web/vendor/README.md +14 -0
- package/dist/web/vendor/highlight-powershell.min.js +39 -0
- package/dist/web/vendor/highlight.LICENSE.txt +29 -0
- package/dist/web/vendor/highlight.min.js +1262 -0
- package/dist/web/vendor/markdown-it.LICENSE.txt +22 -0
- package/dist/web/vendor/markdown-it.umd.min.js +14 -0
- package/node_modules/@img/colour/LICENSE.md +82 -0
- package/node_modules/@img/colour/README.md +15 -0
- package/node_modules/@img/colour/color.cjs +1596 -0
- package/node_modules/@img/colour/index.cjs +1 -0
- package/node_modules/@img/colour/index.d.ts +929 -0
- package/node_modules/@img/colour/package.json +58 -0
- package/node_modules/@img/sharp-win32-x64/LICENSE +191 -0
- package/node_modules/@img/sharp-win32-x64/README.md +59 -0
- package/node_modules/@img/sharp-win32-x64/index.cjs +1 -0
- package/node_modules/@img/sharp-win32-x64/lib/libvips-42.dll +0 -0
- package/node_modules/@img/sharp-win32-x64/lib/libvips-cpp-8.18.6.dll +0 -0
- package/node_modules/@img/sharp-win32-x64/lib/sharp-win32-x64-0.35.4.node +0 -0
- package/node_modules/@img/sharp-win32-x64/package.json +40 -0
- package/node_modules/@img/sharp-win32-x64/versions.json +30 -0
- package/node_modules/@node-datachannel/win32-x64-msvc/node_datachannel.node +0 -0
- package/node_modules/@node-datachannel/win32-x64-msvc/package.json +20 -0
- package/node_modules/ansi-regex/index.d.ts +37 -0
- package/node_modules/ansi-regex/index.js +10 -0
- package/node_modules/ansi-regex/license +9 -0
- package/node_modules/ansi-regex/package.json +55 -0
- package/node_modules/ansi-regex/readme.md +78 -0
- package/node_modules/ansi-styles/index.d.ts +345 -0
- package/node_modules/ansi-styles/index.js +163 -0
- package/node_modules/ansi-styles/license +9 -0
- package/node_modules/ansi-styles/package.json +56 -0
- package/node_modules/ansi-styles/readme.md +152 -0
- package/node_modules/camelcase/index.d.ts +63 -0
- package/node_modules/camelcase/index.js +76 -0
- package/node_modules/camelcase/license +9 -0
- package/node_modules/camelcase/package.json +43 -0
- package/node_modules/camelcase/readme.md +99 -0
- package/node_modules/cliui/CHANGELOG.md +76 -0
- package/node_modules/cliui/LICENSE.txt +14 -0
- package/node_modules/cliui/README.md +115 -0
- package/node_modules/cliui/index.js +354 -0
- package/node_modules/cliui/package.json +65 -0
- package/node_modules/color-convert/CHANGELOG.md +54 -0
- package/node_modules/color-convert/LICENSE +21 -0
- package/node_modules/color-convert/README.md +68 -0
- package/node_modules/color-convert/conversions.js +839 -0
- package/node_modules/color-convert/index.js +81 -0
- package/node_modules/color-convert/package.json +48 -0
- package/node_modules/color-convert/route.js +97 -0
- package/node_modules/color-name/LICENSE +8 -0
- package/node_modules/color-name/README.md +11 -0
- package/node_modules/color-name/index.js +152 -0
- package/node_modules/color-name/package.json +28 -0
- package/node_modules/decamelize/index.js +13 -0
- package/node_modules/decamelize/license +21 -0
- package/node_modules/decamelize/package.json +38 -0
- package/node_modules/decamelize/readme.md +48 -0
- package/node_modules/detect-libc/LICENSE +201 -0
- package/node_modules/detect-libc/README.md +163 -0
- package/node_modules/detect-libc/index.d.ts +14 -0
- package/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/node_modules/detect-libc/lib/elf.js +39 -0
- package/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/node_modules/detect-libc/lib/process.js +24 -0
- package/node_modules/detect-libc/package.json +44 -0
- package/node_modules/dijkstrajs/.travis.yml +4 -0
- package/node_modules/dijkstrajs/CONTRIBUTING.md +8 -0
- package/node_modules/dijkstrajs/LICENSE.md +19 -0
- package/node_modules/dijkstrajs/README.md +18 -0
- package/node_modules/dijkstrajs/dijkstra.js +165 -0
- package/node_modules/dijkstrajs/package.json +60 -0
- package/node_modules/dijkstrajs/test/dijkstra.test.js +96 -0
- package/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/node_modules/emoji-regex/README.md +73 -0
- package/node_modules/emoji-regex/es2015/index.js +6 -0
- package/node_modules/emoji-regex/es2015/text.js +6 -0
- package/node_modules/emoji-regex/index.d.ts +23 -0
- package/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/emoji-regex/package.json +50 -0
- package/node_modules/emoji-regex/text.js +6 -0
- package/node_modules/find-up/index.d.ts +137 -0
- package/node_modules/find-up/index.js +89 -0
- package/node_modules/find-up/license +9 -0
- package/node_modules/find-up/package.json +53 -0
- package/node_modules/find-up/readme.md +156 -0
- package/node_modules/get-caller-file/LICENSE.md +6 -0
- package/node_modules/get-caller-file/README.md +41 -0
- package/node_modules/get-caller-file/index.d.ts +2 -0
- package/node_modules/get-caller-file/index.js +22 -0
- package/node_modules/get-caller-file/index.js.map +1 -0
- package/node_modules/get-caller-file/package.json +42 -0
- package/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/node_modules/is-fullwidth-code-point/license +9 -0
- package/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/locate-path/index.d.ts +83 -0
- package/node_modules/locate-path/index.js +65 -0
- package/node_modules/locate-path/license +9 -0
- package/node_modules/locate-path/package.json +45 -0
- package/node_modules/locate-path/readme.md +122 -0
- package/node_modules/node-datachannel/.clang-format +17 -0
- package/node_modules/node-datachannel/.editorconfig +12 -0
- package/node_modules/node-datachannel/.eslintignore +8 -0
- package/node_modules/node-datachannel/.eslintrc.json +27 -0
- package/node_modules/node-datachannel/.gitmodules +3 -0
- package/node_modules/node-datachannel/.prettierignore +7 -0
- package/node_modules/node-datachannel/.prettierrc +13 -0
- package/node_modules/node-datachannel/API.md +247 -0
- package/node_modules/node-datachannel/BULDING.md +26 -0
- package/node_modules/node-datachannel/CMakeLists.txt +153 -0
- package/node_modules/node-datachannel/LICENSE +373 -0
- package/node_modules/node-datachannel/README.md +129 -0
- package/node_modules/node-datachannel/dist/cjs/index.cjs +11 -0
- package/node_modules/node-datachannel/dist/cjs/index.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/lib/datachannel-stream.cjs +101 -0
- package/node_modules/node-datachannel/dist/cjs/lib/datachannel-stream.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/lib/index.cjs +91 -0
- package/node_modules/node-datachannel/dist/cjs/lib/index.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/lib/node-datachannel.cjs +94 -0
- package/node_modules/node-datachannel/dist/cjs/lib/node-datachannel.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/lib/websocket-server.cjs +45 -0
- package/node_modules/node-datachannel/dist/cjs/lib/websocket-server.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/lib/websocket.cjs +8 -0
- package/node_modules/node-datachannel/dist/cjs/lib/websocket.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/Events.cjs +86 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/Events.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/Exception.cjs +34 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/Exception.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCCertificate.cjs +34 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCCertificate.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCDataChannel.cjs +214 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCDataChannel.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCDtlsTransport.cjs +53 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCDtlsTransport.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCError.cjs +83 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCError.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCIceCandidate.cjs +132 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCIceCandidate.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCIceTransport.cjs +94 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCIceTransport.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCPeerConnection.cjs +434 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCPeerConnection.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCSctpTransport.cjs +59 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCSctpTransport.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCSessionDescription.cjs +45 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCSessionDescription.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/index.cjs +42 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/index.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/index.mjs +8 -0
- package/node_modules/node-datachannel/dist/esm/index.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/lib/datachannel-stream.mjs +78 -0
- package/node_modules/node-datachannel/dist/esm/lib/datachannel-stream.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/lib/index.mjs +64 -0
- package/node_modules/node-datachannel/dist/esm/lib/index.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/lib/node-datachannel.mjs +78 -0
- package/node_modules/node-datachannel/dist/esm/lib/node-datachannel.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/lib/websocket-server.mjs +43 -0
- package/node_modules/node-datachannel/dist/esm/lib/websocket-server.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/lib/websocket.mjs +6 -0
- package/node_modules/node-datachannel/dist/esm/lib/websocket.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/Events.mjs +82 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/Events.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/Exception.mjs +28 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/Exception.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCCertificate.mjs +30 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCCertificate.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCDataChannel.mjs +210 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCDataChannel.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCDtlsTransport.mjs +49 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCDtlsTransport.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCError.mjs +79 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCError.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCIceCandidate.mjs +128 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCIceCandidate.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCIceTransport.mjs +89 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCIceTransport.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCPeerConnection.mjs +430 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCPeerConnection.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCSctpTransport.mjs +55 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCSctpTransport.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCSessionDescription.mjs +41 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCSessionDescription.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/index.mjs +27 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/index.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/types/lib/datachannel-stream.d.ts +24 -0
- package/node_modules/node-datachannel/dist/types/lib/index.d.ts +241 -0
- package/node_modules/node-datachannel/dist/types/lib/types.d.ts +119 -0
- package/node_modules/node-datachannel/dist/types/lib/websocket-server.d.ts +13 -0
- package/node_modules/node-datachannel/dist/types/lib/websocket.d.ts +25 -0
- package/node_modules/node-datachannel/dist/types/polyfill/Events.d.ts +15 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCCertificate.d.ts +9 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCDataChannel.d.ts +29 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCDtlsTransport.d.ts +15 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCError.d.ts +17 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCIceCandidate.d.ts +21 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCIceTransport.d.ts +30 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCPeerConnection.d.ts +64 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCSctpTransport.d.ts +15 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCSessionDescription.d.ts +10 -0
- package/node_modules/node-datachannel/dist/types/polyfill/index.d.ts +26 -0
- package/node_modules/node-datachannel/jest.config.ts +14 -0
- package/node_modules/node-datachannel/package.json +133 -0
- package/node_modules/node-datachannel/rollup.config.mjs +67 -0
- package/node_modules/node-datachannel/src/cpp/data-channel-wrapper.cpp +530 -0
- package/node_modules/node-datachannel/src/cpp/data-channel-wrapper.h +63 -0
- package/node_modules/node-datachannel/src/cpp/ice-udp-mux-listener-wrapper.cpp +172 -0
- package/node_modules/node-datachannel/src/cpp/ice-udp-mux-listener-wrapper.h +43 -0
- package/node_modules/node-datachannel/src/cpp/main.cpp +58 -0
- package/node_modules/node-datachannel/src/cpp/media-audio-wrapper.cpp +457 -0
- package/node_modules/node-datachannel/src/cpp/media-audio-wrapper.h +52 -0
- package/node_modules/node-datachannel/src/cpp/media-av1packetization.cpp +24 -0
- package/node_modules/node-datachannel/src/cpp/media-av1packetization.h +11 -0
- package/node_modules/node-datachannel/src/cpp/media-av1rtppacketizer-wrapper.cpp +126 -0
- package/node_modules/node-datachannel/src/cpp/media-av1rtppacketizer-wrapper.h +29 -0
- package/node_modules/node-datachannel/src/cpp/media-direction.cpp +43 -0
- package/node_modules/node-datachannel/src/cpp/media-direction.h +10 -0
- package/node_modules/node-datachannel/src/cpp/media-h264rtppacketizer-wrapper.cpp +126 -0
- package/node_modules/node-datachannel/src/cpp/media-h264rtppacketizer-wrapper.h +30 -0
- package/node_modules/node-datachannel/src/cpp/media-h265rtppacketizer-wrapper.cpp +126 -0
- package/node_modules/node-datachannel/src/cpp/media-h265rtppacketizer-wrapper.h +30 -0
- package/node_modules/node-datachannel/src/cpp/media-h26xseparator.cpp +32 -0
- package/node_modules/node-datachannel/src/cpp/media-h26xseparator.h +11 -0
- package/node_modules/node-datachannel/src/cpp/media-mediahandler-helper.cpp +31 -0
- package/node_modules/node-datachannel/src/cpp/media-mediahandler-helper.h +11 -0
- package/node_modules/node-datachannel/src/cpp/media-pacinghandler-wrapper.cpp +79 -0
- package/node_modules/node-datachannel/src/cpp/media-pacinghandler-wrapper.h +28 -0
- package/node_modules/node-datachannel/src/cpp/media-rtcpnackresponder-wrapper.cpp +68 -0
- package/node_modules/node-datachannel/src/cpp/media-rtcpnackresponder-wrapper.h +28 -0
- package/node_modules/node-datachannel/src/cpp/media-rtcpreceivingsession-wrapper.cpp +57 -0
- package/node_modules/node-datachannel/src/cpp/media-rtcpreceivingsession-wrapper.h +28 -0
- package/node_modules/node-datachannel/src/cpp/media-rtcpsrreporter-wrapper.cpp +93 -0
- package/node_modules/node-datachannel/src/cpp/media-rtcpsrreporter-wrapper.h +30 -0
- package/node_modules/node-datachannel/src/cpp/media-rtppacketizationconfig-wrapper.cpp +167 -0
- package/node_modules/node-datachannel/src/cpp/media-rtppacketizationconfig-wrapper.h +35 -0
- package/node_modules/node-datachannel/src/cpp/media-rtppacketizer-wrapper.cpp +95 -0
- package/node_modules/node-datachannel/src/cpp/media-rtppacketizer-wrapper.h +30 -0
- package/node_modules/node-datachannel/src/cpp/media-track-wrapper.cpp +458 -0
- package/node_modules/node-datachannel/src/cpp/media-track-wrapper.h +61 -0
- package/node_modules/node-datachannel/src/cpp/media-video-wrapper.cpp +526 -0
- package/node_modules/node-datachannel/src/cpp/media-video-wrapper.h +56 -0
- package/node_modules/node-datachannel/src/cpp/peer-connection-wrapper.cpp +1298 -0
- package/node_modules/node-datachannel/src/cpp/peer-connection-wrapper.h +89 -0
- package/node_modules/node-datachannel/src/cpp/rtc-wrapper.cpp +205 -0
- package/node_modules/node-datachannel/src/cpp/rtc-wrapper.h +24 -0
- package/node_modules/node-datachannel/src/cpp/thread-safe-callback.cpp +57 -0
- package/node_modules/node-datachannel/src/cpp/thread-safe-callback.h +47 -0
- package/node_modules/node-datachannel/src/cpp/web-socket-server-wrapper.cpp +275 -0
- package/node_modules/node-datachannel/src/cpp/web-socket-server-wrapper.h +41 -0
- package/node_modules/node-datachannel/src/cpp/web-socket-wrapper.cpp +796 -0
- package/node_modules/node-datachannel/src/cpp/web-socket-wrapper.h +63 -0
- package/node_modules/node-datachannel/src/index.ts +9 -0
- package/node_modules/node-datachannel/src/lib/datachannel-stream.ts +100 -0
- package/node_modules/node-datachannel/src/lib/index.ts +290 -0
- package/node_modules/node-datachannel/src/lib/node-datachannel.ts +84 -0
- package/node_modules/node-datachannel/src/lib/types.ts +169 -0
- package/node_modules/node-datachannel/src/lib/websocket-server.ts +37 -0
- package/node_modules/node-datachannel/src/lib/websocket.ts +26 -0
- package/node_modules/node-datachannel/src/polyfill/Events.ts +82 -0
- package/node_modules/node-datachannel/src/polyfill/Exception.ts +37 -0
- package/node_modules/node-datachannel/src/polyfill/README.md +41 -0
- package/node_modules/node-datachannel/src/polyfill/RTCCertificate.ts +21 -0
- package/node_modules/node-datachannel/src/polyfill/RTCDataChannel.ts +225 -0
- package/node_modules/node-datachannel/src/polyfill/RTCDtlsTransport.ts +46 -0
- package/node_modules/node-datachannel/src/polyfill/RTCError.ts +78 -0
- package/node_modules/node-datachannel/src/polyfill/RTCIceCandidate.ts +128 -0
- package/node_modules/node-datachannel/src/polyfill/RTCIceTransport.ts +90 -0
- package/node_modules/node-datachannel/src/polyfill/RTCPeerConnection.ts +527 -0
- package/node_modules/node-datachannel/src/polyfill/RTCSctpTransport.ts +51 -0
- package/node_modules/node-datachannel/src/polyfill/RTCSessionDescription.ts +41 -0
- package/node_modules/node-datachannel/src/polyfill/index.ts +38 -0
- package/node_modules/node-datachannel/tsconfig.json +21 -0
- package/node_modules/p-limit/index.d.ts +38 -0
- package/node_modules/p-limit/index.js +57 -0
- package/node_modules/p-limit/license +9 -0
- package/node_modules/p-limit/package.json +52 -0
- package/node_modules/p-limit/readme.md +101 -0
- package/node_modules/p-locate/index.d.ts +64 -0
- package/node_modules/p-locate/index.js +52 -0
- package/node_modules/p-locate/license +9 -0
- package/node_modules/p-locate/package.json +53 -0
- package/node_modules/p-locate/readme.md +90 -0
- package/node_modules/p-try/index.d.ts +39 -0
- package/node_modules/p-try/index.js +9 -0
- package/node_modules/p-try/license +9 -0
- package/node_modules/p-try/package.json +42 -0
- package/node_modules/p-try/readme.md +58 -0
- package/node_modules/path-exists/index.d.ts +28 -0
- package/node_modules/path-exists/index.js +23 -0
- package/node_modules/path-exists/license +9 -0
- package/node_modules/path-exists/package.json +39 -0
- package/node_modules/path-exists/readme.md +52 -0
- package/node_modules/pngjs/.eslintignore +2 -0
- package/node_modules/pngjs/.eslintrc.json +19 -0
- package/node_modules/pngjs/.prettierignore +3 -0
- package/node_modules/pngjs/LICENSE +20 -0
- package/node_modules/pngjs/README.md +429 -0
- package/node_modules/pngjs/browser.js +16096 -0
- package/node_modules/pngjs/coverage/lcov-report/base.css +354 -0
- package/node_modules/pngjs/coverage/lcov-report/bitmapper.js.html +881 -0
- package/node_modules/pngjs/coverage/lcov-report/bitpacker.js.html +554 -0
- package/node_modules/pngjs/coverage/lcov-report/block-navigation.js +77 -0
- package/node_modules/pngjs/coverage/lcov-report/chunkstream.js.html +647 -0
- package/node_modules/pngjs/coverage/lcov-report/constants.js.html +176 -0
- package/node_modules/pngjs/coverage/lcov-report/crc.js.html +200 -0
- package/node_modules/pngjs/coverage/lcov-report/favicon.png +0 -0
- package/node_modules/pngjs/coverage/lcov-report/filter-pack.js.html +593 -0
- package/node_modules/pngjs/coverage/lcov-report/filter-parse-async.js.html +152 -0
- package/node_modules/pngjs/coverage/lcov-report/filter-parse-sync.js.html +143 -0
- package/node_modules/pngjs/coverage/lcov-report/filter-parse.js.html +611 -0
- package/node_modules/pngjs/coverage/lcov-report/format-normaliser.js.html +359 -0
- package/node_modules/pngjs/coverage/lcov-report/index.html +426 -0
- package/node_modules/pngjs/coverage/lcov-report/interlace.js.html +365 -0
- package/node_modules/pngjs/coverage/lcov-report/packer-async.js.html +230 -0
- package/node_modules/pngjs/coverage/lcov-report/packer-sync.js.html +248 -0
- package/node_modules/pngjs/coverage/lcov-report/packer.js.html +467 -0
- package/node_modules/pngjs/coverage/lcov-report/paeth-predictor.js.html +128 -0
- package/node_modules/pngjs/coverage/lcov-report/parser-async.js.html +575 -0
- package/node_modules/pngjs/coverage/lcov-report/parser-sync.js.html +404 -0
- package/node_modules/pngjs/coverage/lcov-report/parser.js.html +950 -0
- package/node_modules/pngjs/coverage/lcov-report/png-sync.js.html +116 -0
- package/node_modules/pngjs/coverage/lcov-report/png.js.html +662 -0
- package/node_modules/pngjs/coverage/lcov-report/prettify.css +101 -0
- package/node_modules/pngjs/coverage/lcov-report/prettify.js +1007 -0
- package/node_modules/pngjs/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/node_modules/pngjs/coverage/lcov-report/sorter.js +169 -0
- package/node_modules/pngjs/coverage/lcov-report/sync-inflate.js.html +584 -0
- package/node_modules/pngjs/coverage/lcov-report/sync-reader.js.html +215 -0
- package/node_modules/pngjs/coverage/lcov.info +2177 -0
- package/node_modules/pngjs/lib/bitmapper.js +267 -0
- package/node_modules/pngjs/lib/bitpacker.js +158 -0
- package/node_modules/pngjs/lib/chunkstream.js +189 -0
- package/node_modules/pngjs/lib/constants.js +32 -0
- package/node_modules/pngjs/lib/crc.js +40 -0
- package/node_modules/pngjs/lib/filter-pack.js +171 -0
- package/node_modules/pngjs/lib/filter-parse-async.js +24 -0
- package/node_modules/pngjs/lib/filter-parse-sync.js +21 -0
- package/node_modules/pngjs/lib/filter-parse.js +177 -0
- package/node_modules/pngjs/lib/format-normaliser.js +93 -0
- package/node_modules/pngjs/lib/interlace.js +95 -0
- package/node_modules/pngjs/lib/packer-async.js +50 -0
- package/node_modules/pngjs/lib/packer-sync.js +56 -0
- package/node_modules/pngjs/lib/packer.js +129 -0
- package/node_modules/pngjs/lib/paeth-predictor.js +16 -0
- package/node_modules/pngjs/lib/parser-async.js +165 -0
- package/node_modules/pngjs/lib/parser-sync.js +108 -0
- package/node_modules/pngjs/lib/parser.js +290 -0
- package/node_modules/pngjs/lib/png-sync.js +12 -0
- package/node_modules/pngjs/lib/png.js +194 -0
- package/node_modules/pngjs/lib/sync-inflate.js +168 -0
- package/node_modules/pngjs/lib/sync-reader.js +45 -0
- package/node_modules/pngjs/package.json +73 -0
- package/node_modules/qrcode/README.md +770 -0
- package/node_modules/qrcode/bin/qrcode +159 -0
- package/node_modules/qrcode/helper/to-sjis-browser.js +2 -0
- package/node_modules/qrcode/helper/to-sjis.js +105 -0
- package/node_modules/qrcode/lib/browser.js +76 -0
- package/node_modules/qrcode/lib/can-promise.js +7 -0
- package/node_modules/qrcode/lib/core/alignment-pattern.js +83 -0
- package/node_modules/qrcode/lib/core/alphanumeric-data.js +59 -0
- package/node_modules/qrcode/lib/core/bit-buffer.js +37 -0
- package/node_modules/qrcode/lib/core/bit-matrix.js +65 -0
- package/node_modules/qrcode/lib/core/byte-data.js +30 -0
- package/node_modules/qrcode/lib/core/error-correction-code.js +135 -0
- package/node_modules/qrcode/lib/core/error-correction-level.js +50 -0
- package/node_modules/qrcode/lib/core/finder-pattern.js +22 -0
- package/node_modules/qrcode/lib/core/format-info.js +29 -0
- package/node_modules/qrcode/lib/core/galois-field.js +69 -0
- package/node_modules/qrcode/lib/core/kanji-data.js +54 -0
- package/node_modules/qrcode/lib/core/mask-pattern.js +234 -0
- package/node_modules/qrcode/lib/core/mode.js +167 -0
- package/node_modules/qrcode/lib/core/numeric-data.js +43 -0
- package/node_modules/qrcode/lib/core/polynomial.js +62 -0
- package/node_modules/qrcode/lib/core/qrcode.js +495 -0
- package/node_modules/qrcode/lib/core/reed-solomon-encoder.js +56 -0
- package/node_modules/qrcode/lib/core/regex.js +31 -0
- package/node_modules/qrcode/lib/core/segments.js +330 -0
- package/node_modules/qrcode/lib/core/utils.js +63 -0
- package/node_modules/qrcode/lib/core/version-check.js +9 -0
- package/node_modules/qrcode/lib/core/version.js +163 -0
- package/node_modules/qrcode/lib/index.js +12 -0
- package/node_modules/qrcode/lib/renderer/canvas.js +63 -0
- package/node_modules/qrcode/lib/renderer/png.js +78 -0
- package/node_modules/qrcode/lib/renderer/svg-tag.js +81 -0
- package/node_modules/qrcode/lib/renderer/svg.js +19 -0
- package/node_modules/qrcode/lib/renderer/terminal/terminal-small.js +85 -0
- package/node_modules/qrcode/lib/renderer/terminal/terminal.js +49 -0
- package/node_modules/qrcode/lib/renderer/terminal.js +9 -0
- package/node_modules/qrcode/lib/renderer/utf8.js +71 -0
- package/node_modules/qrcode/lib/renderer/utils.js +99 -0
- package/node_modules/qrcode/lib/server.js +138 -0
- package/node_modules/qrcode/license +10 -0
- package/node_modules/qrcode/package.json +77 -0
- package/node_modules/require-directory/.jshintrc +67 -0
- package/node_modules/require-directory/.npmignore +1 -0
- package/node_modules/require-directory/.travis.yml +3 -0
- package/node_modules/require-directory/LICENSE +22 -0
- package/node_modules/require-directory/README.markdown +184 -0
- package/node_modules/require-directory/index.js +86 -0
- package/node_modules/require-directory/package.json +40 -0
- package/node_modules/require-main-filename/CHANGELOG.md +26 -0
- package/node_modules/require-main-filename/LICENSE.txt +14 -0
- package/node_modules/require-main-filename/README.md +26 -0
- package/node_modules/require-main-filename/index.js +18 -0
- package/node_modules/require-main-filename/package.json +35 -0
- package/node_modules/semver/LICENSE +15 -0
- package/node_modules/semver/README.md +680 -0
- package/node_modules/semver/bin/semver.js +195 -0
- package/node_modules/semver/classes/comparator.js +143 -0
- package/node_modules/semver/classes/index.js +7 -0
- package/node_modules/semver/classes/range.js +577 -0
- package/node_modules/semver/classes/semver.js +350 -0
- package/node_modules/semver/functions/clean.js +8 -0
- package/node_modules/semver/functions/cmp.js +54 -0
- package/node_modules/semver/functions/coerce.js +62 -0
- package/node_modules/semver/functions/compare-build.js +9 -0
- package/node_modules/semver/functions/compare-loose.js +5 -0
- package/node_modules/semver/functions/compare.js +7 -0
- package/node_modules/semver/functions/diff.js +60 -0
- package/node_modules/semver/functions/eq.js +5 -0
- package/node_modules/semver/functions/gt.js +5 -0
- package/node_modules/semver/functions/gte.js +5 -0
- package/node_modules/semver/functions/inc.js +21 -0
- package/node_modules/semver/functions/lt.js +5 -0
- package/node_modules/semver/functions/lte.js +5 -0
- package/node_modules/semver/functions/major.js +5 -0
- package/node_modules/semver/functions/minor.js +5 -0
- package/node_modules/semver/functions/neq.js +5 -0
- package/node_modules/semver/functions/parse.js +18 -0
- package/node_modules/semver/functions/patch.js +5 -0
- package/node_modules/semver/functions/prerelease.js +8 -0
- package/node_modules/semver/functions/rcompare.js +5 -0
- package/node_modules/semver/functions/rsort.js +5 -0
- package/node_modules/semver/functions/satisfies.js +12 -0
- package/node_modules/semver/functions/sort.js +5 -0
- package/node_modules/semver/functions/truncate.js +48 -0
- package/node_modules/semver/functions/valid.js +8 -0
- package/node_modules/semver/index.js +93 -0
- package/node_modules/semver/internal/constants.js +37 -0
- package/node_modules/semver/internal/debug.js +11 -0
- package/node_modules/semver/internal/identifiers.js +29 -0
- package/node_modules/semver/internal/lrucache.js +42 -0
- package/node_modules/semver/internal/parse-options.js +17 -0
- package/node_modules/semver/internal/re.js +223 -0
- package/node_modules/semver/package.json +78 -0
- package/node_modules/semver/preload.js +4 -0
- package/node_modules/semver/range.bnf +17 -0
- package/node_modules/semver/ranges/gtr.js +6 -0
- package/node_modules/semver/ranges/intersects.js +9 -0
- package/node_modules/semver/ranges/ltr.js +6 -0
- package/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/node_modules/semver/ranges/min-version.js +63 -0
- package/node_modules/semver/ranges/outside.js +82 -0
- package/node_modules/semver/ranges/simplify.js +49 -0
- package/node_modules/semver/ranges/subset.js +249 -0
- package/node_modules/semver/ranges/to-comparators.js +10 -0
- package/node_modules/semver/ranges/valid.js +13 -0
- package/node_modules/set-blocking/CHANGELOG.md +26 -0
- package/node_modules/set-blocking/LICENSE.txt +14 -0
- package/node_modules/set-blocking/README.md +31 -0
- package/node_modules/set-blocking/index.js +7 -0
- package/node_modules/set-blocking/package.json +42 -0
- package/node_modules/sharp/LICENSE +191 -0
- package/node_modules/sharp/README.md +112 -0
- package/node_modules/sharp/dist/channel.cjs +177 -0
- package/node_modules/sharp/dist/channel.mjs +177 -0
- package/node_modules/sharp/dist/colour.cjs +199 -0
- package/node_modules/sharp/dist/colour.mjs +199 -0
- package/node_modules/sharp/dist/composite.cjs +213 -0
- package/node_modules/sharp/dist/composite.mjs +213 -0
- package/node_modules/sharp/dist/constructor.cjs +511 -0
- package/node_modules/sharp/dist/constructor.mjs +511 -0
- package/node_modules/sharp/dist/index.cjs +25 -0
- package/node_modules/sharp/dist/index.d.cts +1999 -0
- package/node_modules/sharp/dist/index.d.mts +2046 -0
- package/node_modules/sharp/dist/index.mjs +25 -0
- package/node_modules/sharp/dist/input.cjs +819 -0
- package/node_modules/sharp/dist/input.mjs +819 -0
- package/node_modules/sharp/dist/is.cjs +143 -0
- package/node_modules/sharp/dist/is.mjs +143 -0
- package/node_modules/sharp/dist/libvips.cjs +212 -0
- package/node_modules/sharp/dist/libvips.mjs +212 -0
- package/node_modules/sharp/dist/operation.cjs +1002 -0
- package/node_modules/sharp/dist/operation.mjs +1002 -0
- package/node_modules/sharp/dist/output.cjs +1785 -0
- package/node_modules/sharp/dist/output.mjs +1785 -0
- package/node_modules/sharp/dist/resize.cjs +617 -0
- package/node_modules/sharp/dist/resize.mjs +617 -0
- package/node_modules/sharp/dist/sharp.cjs +174 -0
- package/node_modules/sharp/dist/sharp.mjs +174 -0
- package/node_modules/sharp/dist/utility.cjs +301 -0
- package/node_modules/sharp/dist/utility.mjs +301 -0
- package/node_modules/sharp/install/build.js +38 -0
- package/node_modules/sharp/lib/index.d.ts +1999 -0
- package/node_modules/sharp/package.json +227 -0
- package/node_modules/sharp/src/binding.gyp +303 -0
- package/node_modules/sharp/src/common.cc +1186 -0
- package/node_modules/sharp/src/common.h +421 -0
- package/node_modules/sharp/src/metadata.cc +404 -0
- package/node_modules/sharp/src/metadata.h +95 -0
- package/node_modules/sharp/src/operations.cc +516 -0
- package/node_modules/sharp/src/operations.h +137 -0
- package/node_modules/sharp/src/pipeline.cc +1948 -0
- package/node_modules/sharp/src/pipeline.h +422 -0
- package/node_modules/sharp/src/sharp.cc +43 -0
- package/node_modules/sharp/src/stats.cc +186 -0
- package/node_modules/sharp/src/stats.h +62 -0
- package/node_modules/sharp/src/utilities.cc +289 -0
- package/node_modules/sharp/src/utilities.h +22 -0
- package/node_modules/string-width/index.d.ts +29 -0
- package/node_modules/string-width/index.js +47 -0
- package/node_modules/string-width/license +9 -0
- package/node_modules/string-width/package.json +56 -0
- package/node_modules/string-width/readme.md +50 -0
- package/node_modules/strip-ansi/index.d.ts +17 -0
- package/node_modules/strip-ansi/index.js +4 -0
- package/node_modules/strip-ansi/license +9 -0
- package/node_modules/strip-ansi/package.json +54 -0
- package/node_modules/strip-ansi/readme.md +46 -0
- package/node_modules/which-module/LICENSE +13 -0
- package/node_modules/which-module/README.md +58 -0
- package/node_modules/which-module/index.js +9 -0
- package/node_modules/which-module/package.json +41 -0
- package/node_modules/wrap-ansi/index.js +186 -0
- package/node_modules/wrap-ansi/license +9 -0
- package/node_modules/wrap-ansi/package.json +61 -0
- package/node_modules/wrap-ansi/readme.md +97 -0
- package/node_modules/ws/LICENSE +20 -0
- package/node_modules/ws/README.md +548 -0
- package/node_modules/ws/browser.js +8 -0
- package/node_modules/ws/index.js +22 -0
- package/node_modules/ws/lib/buffer-util.js +131 -0
- package/node_modules/ws/lib/constants.js +19 -0
- package/node_modules/ws/lib/event-target.js +292 -0
- package/node_modules/ws/lib/extension.js +203 -0
- package/node_modules/ws/lib/limiter.js +55 -0
- package/node_modules/ws/lib/permessage-deflate.js +530 -0
- package/node_modules/ws/lib/receiver.js +743 -0
- package/node_modules/ws/lib/sender.js +607 -0
- package/node_modules/ws/lib/stream.js +161 -0
- package/node_modules/ws/lib/subprotocol.js +62 -0
- package/node_modules/ws/lib/validation.js +152 -0
- package/node_modules/ws/lib/websocket-server.js +562 -0
- package/node_modules/ws/lib/websocket.js +1407 -0
- package/node_modules/ws/package.json +74 -0
- package/node_modules/ws/wrapper.mjs +21 -0
- package/node_modules/y18n/CHANGELOG.md +35 -0
- package/node_modules/y18n/LICENSE +13 -0
- package/node_modules/y18n/README.md +109 -0
- package/node_modules/y18n/index.js +188 -0
- package/node_modules/y18n/package.json +39 -0
- package/node_modules/yargs/CHANGELOG.md +420 -0
- package/node_modules/yargs/LICENSE +21 -0
- package/node_modules/yargs/README.md +140 -0
- package/node_modules/yargs/build/lib/apply-extends.d.ts +2 -0
- package/node_modules/yargs/build/lib/apply-extends.js +65 -0
- package/node_modules/yargs/build/lib/argsert.d.ts +2 -0
- package/node_modules/yargs/build/lib/argsert.js +65 -0
- package/node_modules/yargs/build/lib/command.d.ts +64 -0
- package/node_modules/yargs/build/lib/command.js +416 -0
- package/node_modules/yargs/build/lib/common-types.d.ts +36 -0
- package/node_modules/yargs/build/lib/common-types.js +25 -0
- package/node_modules/yargs/build/lib/completion-templates.d.ts +2 -0
- package/node_modules/yargs/build/lib/completion-templates.js +50 -0
- package/node_modules/yargs/build/lib/completion.d.ts +21 -0
- package/node_modules/yargs/build/lib/completion.js +135 -0
- package/node_modules/yargs/build/lib/is-promise.d.ts +1 -0
- package/node_modules/yargs/build/lib/is-promise.js +9 -0
- package/node_modules/yargs/build/lib/levenshtein.d.ts +1 -0
- package/node_modules/yargs/build/lib/levenshtein.js +58 -0
- package/node_modules/yargs/build/lib/middleware.d.ts +10 -0
- package/node_modules/yargs/build/lib/middleware.js +57 -0
- package/node_modules/yargs/build/lib/obj-filter.d.ts +1 -0
- package/node_modules/yargs/build/lib/obj-filter.js +14 -0
- package/node_modules/yargs/build/lib/parse-command.d.ts +11 -0
- package/node_modules/yargs/build/lib/parse-command.js +36 -0
- package/node_modules/yargs/build/lib/process-argv.d.ts +2 -0
- package/node_modules/yargs/build/lib/process-argv.js +31 -0
- package/node_modules/yargs/build/lib/usage.d.ts +49 -0
- package/node_modules/yargs/build/lib/usage.js +540 -0
- package/node_modules/yargs/build/lib/validation.d.ts +34 -0
- package/node_modules/yargs/build/lib/validation.js +330 -0
- package/node_modules/yargs/build/lib/yargs.d.ts +274 -0
- package/node_modules/yargs/build/lib/yargs.js +1190 -0
- package/node_modules/yargs/build/lib/yerror.d.ts +4 -0
- package/node_modules/yargs/build/lib/yerror.js +11 -0
- package/node_modules/yargs/index.js +40 -0
- package/node_modules/yargs/locales/be.json +46 -0
- package/node_modules/yargs/locales/de.json +46 -0
- package/node_modules/yargs/locales/en.json +51 -0
- package/node_modules/yargs/locales/es.json +46 -0
- package/node_modules/yargs/locales/fi.json +49 -0
- package/node_modules/yargs/locales/fr.json +53 -0
- package/node_modules/yargs/locales/hi.json +49 -0
- package/node_modules/yargs/locales/hu.json +46 -0
- package/node_modules/yargs/locales/id.json +50 -0
- package/node_modules/yargs/locales/it.json +46 -0
- package/node_modules/yargs/locales/ja.json +51 -0
- package/node_modules/yargs/locales/ko.json +49 -0
- package/node_modules/yargs/locales/nb.json +44 -0
- package/node_modules/yargs/locales/nl.json +49 -0
- package/node_modules/yargs/locales/nn.json +44 -0
- package/node_modules/yargs/locales/pirate.json +13 -0
- package/node_modules/yargs/locales/pl.json +49 -0
- package/node_modules/yargs/locales/pt.json +45 -0
- package/node_modules/yargs/locales/pt_BR.json +48 -0
- package/node_modules/yargs/locales/ru.json +46 -0
- package/node_modules/yargs/locales/th.json +46 -0
- package/node_modules/yargs/locales/tr.json +48 -0
- package/node_modules/yargs/locales/zh_CN.json +48 -0
- package/node_modules/yargs/locales/zh_TW.json +47 -0
- package/node_modules/yargs/package.json +92 -0
- package/node_modules/yargs/yargs.js +14 -0
- package/node_modules/yargs-parser/CHANGELOG.md +601 -0
- package/node_modules/yargs-parser/LICENSE.txt +14 -0
- package/node_modules/yargs-parser/README.md +449 -0
- package/node_modules/yargs-parser/index.js +1032 -0
- package/node_modules/yargs-parser/lib/tokenize-arg-string.js +40 -0
- package/node_modules/yargs-parser/package.json +46 -0
- package/package.json +50 -0
- package/tools/postinstall.mjs +9 -0
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.argsert = void 0;
|
|
4
|
+
const yerror_1 = require("./yerror");
|
|
5
|
+
const parse_command_1 = require("./parse-command");
|
|
6
|
+
const positionName = ['first', 'second', 'third', 'fourth', 'fifth', 'sixth'];
|
|
7
|
+
function argsert(arg1, arg2, arg3) {
|
|
8
|
+
function parseArgs() {
|
|
9
|
+
return typeof arg1 === 'object'
|
|
10
|
+
? [{ demanded: [], optional: [] }, arg1, arg2]
|
|
11
|
+
: [parse_command_1.parseCommand(`cmd ${arg1}`), arg2, arg3];
|
|
12
|
+
}
|
|
13
|
+
// TODO: should this eventually raise an exception.
|
|
14
|
+
try {
|
|
15
|
+
// preface the argument description with "cmd", so
|
|
16
|
+
// that we can run it through yargs' command parser.
|
|
17
|
+
let position = 0;
|
|
18
|
+
let [parsed, callerArguments, length] = parseArgs();
|
|
19
|
+
const args = [].slice.call(callerArguments);
|
|
20
|
+
while (args.length && args[args.length - 1] === undefined)
|
|
21
|
+
args.pop();
|
|
22
|
+
length = length || args.length;
|
|
23
|
+
if (length < parsed.demanded.length) {
|
|
24
|
+
throw new yerror_1.YError(`Not enough arguments provided. Expected ${parsed.demanded.length} but received ${args.length}.`);
|
|
25
|
+
}
|
|
26
|
+
const totalCommands = parsed.demanded.length + parsed.optional.length;
|
|
27
|
+
if (length > totalCommands) {
|
|
28
|
+
throw new yerror_1.YError(`Too many arguments provided. Expected max ${totalCommands} but received ${length}.`);
|
|
29
|
+
}
|
|
30
|
+
parsed.demanded.forEach((demanded) => {
|
|
31
|
+
const arg = args.shift();
|
|
32
|
+
const observedType = guessType(arg);
|
|
33
|
+
const matchingTypes = demanded.cmd.filter(type => type === observedType || type === '*');
|
|
34
|
+
if (matchingTypes.length === 0)
|
|
35
|
+
argumentTypeError(observedType, demanded.cmd, position);
|
|
36
|
+
position += 1;
|
|
37
|
+
});
|
|
38
|
+
parsed.optional.forEach((optional) => {
|
|
39
|
+
if (args.length === 0)
|
|
40
|
+
return;
|
|
41
|
+
const arg = args.shift();
|
|
42
|
+
const observedType = guessType(arg);
|
|
43
|
+
const matchingTypes = optional.cmd.filter(type => type === observedType || type === '*');
|
|
44
|
+
if (matchingTypes.length === 0)
|
|
45
|
+
argumentTypeError(observedType, optional.cmd, position);
|
|
46
|
+
position += 1;
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
catch (err) {
|
|
50
|
+
console.warn(err.stack);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
exports.argsert = argsert;
|
|
54
|
+
function guessType(arg) {
|
|
55
|
+
if (Array.isArray(arg)) {
|
|
56
|
+
return 'array';
|
|
57
|
+
}
|
|
58
|
+
else if (arg === null) {
|
|
59
|
+
return 'null';
|
|
60
|
+
}
|
|
61
|
+
return typeof arg;
|
|
62
|
+
}
|
|
63
|
+
function argumentTypeError(observedType, allowedTypes, position) {
|
|
64
|
+
throw new yerror_1.YError(`Invalid ${positionName[position] || 'manyith'} argument. Expected ${allowedTypes.join(' or ')} but received ${observedType}.`);
|
|
65
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { Dictionary } from './common-types';
|
|
3
|
+
import { Middleware } from './middleware';
|
|
4
|
+
import { Positional } from './parse-command';
|
|
5
|
+
import { RequireDirectoryOptions } from 'require-directory';
|
|
6
|
+
import { UsageInstance } from './usage';
|
|
7
|
+
import { ValidationInstance } from './validation';
|
|
8
|
+
import { YargsInstance, Options, OptionDefinition, Context, Arguments, DetailedArguments } from './yargs';
|
|
9
|
+
export declare function command(yargs: YargsInstance, usage: UsageInstance, validation: ValidationInstance, globalMiddleware?: Middleware[]): CommandInstance;
|
|
10
|
+
/** Instance of the command module. */
|
|
11
|
+
export interface CommandInstance {
|
|
12
|
+
addDirectory(dir: string, context: Context, req: NodeRequireFunction, callerFile: string, opts?: RequireDirectoryOptions<any>): void;
|
|
13
|
+
addHandler(handler: CommandHandlerDefinition): void;
|
|
14
|
+
addHandler(cmd: string | string[], description: CommandHandler['description'], builder?: CommandBuilderDefinition | CommandBuilder, handler?: CommandHandlerCallback, commandMiddleware?: Middleware[], deprecated?: boolean): void;
|
|
15
|
+
cmdToParseOptions(cmdString: string): Positionals;
|
|
16
|
+
freeze(): void;
|
|
17
|
+
getCommandHandlers(): Dictionary<CommandHandler>;
|
|
18
|
+
getCommands(): string[];
|
|
19
|
+
hasDefaultCommand(): boolean;
|
|
20
|
+
reset(): CommandInstance;
|
|
21
|
+
runCommand(command: string | null, yargs: YargsInstance, parsed: DetailedArguments, commandIndex?: number): Arguments | Promise<Arguments>;
|
|
22
|
+
runDefaultBuilderOn(yargs: YargsInstance): void;
|
|
23
|
+
unfreeze(): void;
|
|
24
|
+
}
|
|
25
|
+
export interface CommandHandlerDefinition extends Partial<Pick<CommandHandler, 'deprecated' | 'description' | 'handler' | 'middlewares'>> {
|
|
26
|
+
aliases?: string[];
|
|
27
|
+
builder?: CommandBuilder | CommandBuilderDefinition;
|
|
28
|
+
command?: string | string[];
|
|
29
|
+
desc?: CommandHandler['description'];
|
|
30
|
+
describe?: CommandHandler['description'];
|
|
31
|
+
}
|
|
32
|
+
export declare function isCommandHandlerDefinition(cmd: string | string[] | CommandHandlerDefinition): cmd is CommandHandlerDefinition;
|
|
33
|
+
export interface CommandBuilderDefinition {
|
|
34
|
+
builder?: CommandBuilder;
|
|
35
|
+
deprecated?: boolean;
|
|
36
|
+
handler: CommandHandlerCallback;
|
|
37
|
+
middlewares?: Middleware[];
|
|
38
|
+
}
|
|
39
|
+
export declare function isCommandBuilderDefinition(builder?: CommandBuilder | CommandBuilderDefinition): builder is CommandBuilderDefinition;
|
|
40
|
+
export interface CommandHandlerCallback {
|
|
41
|
+
(argv: Arguments): any;
|
|
42
|
+
}
|
|
43
|
+
export interface CommandHandler {
|
|
44
|
+
builder: CommandBuilder;
|
|
45
|
+
demanded: Positional[];
|
|
46
|
+
deprecated?: boolean;
|
|
47
|
+
description?: string | false;
|
|
48
|
+
handler: CommandHandlerCallback;
|
|
49
|
+
middlewares: Middleware[];
|
|
50
|
+
optional: Positional[];
|
|
51
|
+
original: string;
|
|
52
|
+
}
|
|
53
|
+
export declare type CommandBuilder = CommandBuilderCallback | Dictionary<OptionDefinition>;
|
|
54
|
+
interface CommandBuilderCallback {
|
|
55
|
+
(y: YargsInstance): YargsInstance | void;
|
|
56
|
+
}
|
|
57
|
+
export declare function isCommandBuilderCallback(builder: CommandBuilder): builder is CommandBuilderCallback;
|
|
58
|
+
interface Positionals extends Pick<Options, 'alias' | 'array' | 'default'> {
|
|
59
|
+
demand: Dictionary<boolean>;
|
|
60
|
+
}
|
|
61
|
+
export interface FinishCommandHandler {
|
|
62
|
+
(handlerResult: any): any;
|
|
63
|
+
}
|
|
64
|
+
export {};
|
|
@@ -0,0 +1,416 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isCommandBuilderCallback = exports.isCommandBuilderDefinition = exports.isCommandHandlerDefinition = exports.command = void 0;
|
|
4
|
+
const common_types_1 = require("./common-types");
|
|
5
|
+
const is_promise_1 = require("./is-promise");
|
|
6
|
+
const middleware_1 = require("./middleware");
|
|
7
|
+
const parse_command_1 = require("./parse-command");
|
|
8
|
+
const path = require("path");
|
|
9
|
+
const util_1 = require("util");
|
|
10
|
+
const yargs_1 = require("./yargs");
|
|
11
|
+
const requireDirectory = require("require-directory");
|
|
12
|
+
const whichModule = require("which-module");
|
|
13
|
+
const Parser = require("yargs-parser");
|
|
14
|
+
const DEFAULT_MARKER = /(^\*)|(^\$0)/;
|
|
15
|
+
// handles parsing positional arguments,
|
|
16
|
+
// and populating argv with said positional
|
|
17
|
+
// arguments.
|
|
18
|
+
function command(yargs, usage, validation, globalMiddleware = []) {
|
|
19
|
+
const self = {};
|
|
20
|
+
let handlers = {};
|
|
21
|
+
let aliasMap = {};
|
|
22
|
+
let defaultCommand;
|
|
23
|
+
self.addHandler = function addHandler(cmd, description, builder, handler, commandMiddleware, deprecated) {
|
|
24
|
+
let aliases = [];
|
|
25
|
+
const middlewares = middleware_1.commandMiddlewareFactory(commandMiddleware);
|
|
26
|
+
handler = handler || (() => { });
|
|
27
|
+
if (Array.isArray(cmd)) {
|
|
28
|
+
aliases = cmd.slice(1);
|
|
29
|
+
cmd = cmd[0];
|
|
30
|
+
}
|
|
31
|
+
else if (isCommandHandlerDefinition(cmd)) {
|
|
32
|
+
let command = (Array.isArray(cmd.command) || typeof cmd.command === 'string') ? cmd.command : moduleName(cmd);
|
|
33
|
+
if (cmd.aliases)
|
|
34
|
+
command = [].concat(command).concat(cmd.aliases);
|
|
35
|
+
self.addHandler(command, extractDesc(cmd), cmd.builder, cmd.handler, cmd.middlewares, cmd.deprecated);
|
|
36
|
+
return;
|
|
37
|
+
}
|
|
38
|
+
// allow a module to be provided instead of separate builder and handler
|
|
39
|
+
if (isCommandBuilderDefinition(builder)) {
|
|
40
|
+
self.addHandler([cmd].concat(aliases), description, builder.builder, builder.handler, builder.middlewares, builder.deprecated);
|
|
41
|
+
return;
|
|
42
|
+
}
|
|
43
|
+
// parse positionals out of cmd string
|
|
44
|
+
const parsedCommand = parse_command_1.parseCommand(cmd);
|
|
45
|
+
// remove positional args from aliases only
|
|
46
|
+
aliases = aliases.map(alias => parse_command_1.parseCommand(alias).cmd);
|
|
47
|
+
// check for default and filter out '*''
|
|
48
|
+
let isDefault = false;
|
|
49
|
+
const parsedAliases = [parsedCommand.cmd].concat(aliases).filter((c) => {
|
|
50
|
+
if (DEFAULT_MARKER.test(c)) {
|
|
51
|
+
isDefault = true;
|
|
52
|
+
return false;
|
|
53
|
+
}
|
|
54
|
+
return true;
|
|
55
|
+
});
|
|
56
|
+
// standardize on $0 for default command.
|
|
57
|
+
if (parsedAliases.length === 0 && isDefault)
|
|
58
|
+
parsedAliases.push('$0');
|
|
59
|
+
// shift cmd and aliases after filtering out '*'
|
|
60
|
+
if (isDefault) {
|
|
61
|
+
parsedCommand.cmd = parsedAliases[0];
|
|
62
|
+
aliases = parsedAliases.slice(1);
|
|
63
|
+
cmd = cmd.replace(DEFAULT_MARKER, parsedCommand.cmd);
|
|
64
|
+
}
|
|
65
|
+
// populate aliasMap
|
|
66
|
+
aliases.forEach((alias) => {
|
|
67
|
+
aliasMap[alias] = parsedCommand.cmd;
|
|
68
|
+
});
|
|
69
|
+
if (description !== false) {
|
|
70
|
+
usage.command(cmd, description, isDefault, aliases, deprecated);
|
|
71
|
+
}
|
|
72
|
+
handlers[parsedCommand.cmd] = {
|
|
73
|
+
original: cmd,
|
|
74
|
+
description,
|
|
75
|
+
handler,
|
|
76
|
+
builder: builder || {},
|
|
77
|
+
middlewares,
|
|
78
|
+
deprecated,
|
|
79
|
+
demanded: parsedCommand.demanded,
|
|
80
|
+
optional: parsedCommand.optional
|
|
81
|
+
};
|
|
82
|
+
if (isDefault)
|
|
83
|
+
defaultCommand = handlers[parsedCommand.cmd];
|
|
84
|
+
};
|
|
85
|
+
self.addDirectory = function addDirectory(dir, context, req, callerFile, opts) {
|
|
86
|
+
opts = opts || {};
|
|
87
|
+
// disable recursion to support nested directories of subcommands
|
|
88
|
+
if (typeof opts.recurse !== 'boolean')
|
|
89
|
+
opts.recurse = false;
|
|
90
|
+
// exclude 'json', 'coffee' from require-directory defaults
|
|
91
|
+
if (!Array.isArray(opts.extensions))
|
|
92
|
+
opts.extensions = ['js'];
|
|
93
|
+
// allow consumer to define their own visitor function
|
|
94
|
+
const parentVisit = typeof opts.visit === 'function' ? opts.visit : (o) => o;
|
|
95
|
+
// call addHandler via visitor function
|
|
96
|
+
opts.visit = function visit(obj, joined, filename) {
|
|
97
|
+
const visited = parentVisit(obj, joined, filename);
|
|
98
|
+
// allow consumer to skip modules with their own visitor
|
|
99
|
+
if (visited) {
|
|
100
|
+
// check for cyclic reference
|
|
101
|
+
// each command file path should only be seen once per execution
|
|
102
|
+
if (~context.files.indexOf(joined))
|
|
103
|
+
return visited;
|
|
104
|
+
// keep track of visited files in context.files
|
|
105
|
+
context.files.push(joined);
|
|
106
|
+
self.addHandler(visited);
|
|
107
|
+
}
|
|
108
|
+
return visited;
|
|
109
|
+
};
|
|
110
|
+
requireDirectory({ require: req, filename: callerFile }, dir, opts);
|
|
111
|
+
};
|
|
112
|
+
// lookup module object from require()d command and derive name
|
|
113
|
+
// if module was not require()d and no name given, throw error
|
|
114
|
+
function moduleName(obj) {
|
|
115
|
+
const mod = whichModule(obj);
|
|
116
|
+
if (!mod)
|
|
117
|
+
throw new Error(`No command name given for module: ${util_1.inspect(obj)}`);
|
|
118
|
+
return commandFromFilename(mod.filename);
|
|
119
|
+
}
|
|
120
|
+
// derive command name from filename
|
|
121
|
+
function commandFromFilename(filename) {
|
|
122
|
+
return path.basename(filename, path.extname(filename));
|
|
123
|
+
}
|
|
124
|
+
function extractDesc({ describe, description, desc }) {
|
|
125
|
+
for (const test of [describe, description, desc]) {
|
|
126
|
+
if (typeof test === 'string' || test === false)
|
|
127
|
+
return test;
|
|
128
|
+
common_types_1.assertNotStrictEqual(test, true);
|
|
129
|
+
}
|
|
130
|
+
return false;
|
|
131
|
+
}
|
|
132
|
+
self.getCommands = () => Object.keys(handlers).concat(Object.keys(aliasMap));
|
|
133
|
+
self.getCommandHandlers = () => handlers;
|
|
134
|
+
self.hasDefaultCommand = () => !!defaultCommand;
|
|
135
|
+
self.runCommand = function runCommand(command, yargs, parsed, commandIndex) {
|
|
136
|
+
let aliases = parsed.aliases;
|
|
137
|
+
const commandHandler = handlers[command] || handlers[aliasMap[command]] || defaultCommand;
|
|
138
|
+
const currentContext = yargs.getContext();
|
|
139
|
+
let numFiles = currentContext.files.length;
|
|
140
|
+
const parentCommands = currentContext.commands.slice();
|
|
141
|
+
// what does yargs look like after the builder is run?
|
|
142
|
+
let innerArgv = parsed.argv;
|
|
143
|
+
let positionalMap = {};
|
|
144
|
+
if (command) {
|
|
145
|
+
currentContext.commands.push(command);
|
|
146
|
+
currentContext.fullCommands.push(commandHandler.original);
|
|
147
|
+
}
|
|
148
|
+
const builder = commandHandler.builder;
|
|
149
|
+
if (isCommandBuilderCallback(builder)) {
|
|
150
|
+
// a function can be provided, which builds
|
|
151
|
+
// up a yargs chain and possibly returns it.
|
|
152
|
+
const builderOutput = builder(yargs.reset(parsed.aliases));
|
|
153
|
+
const innerYargs = yargs_1.isYargsInstance(builderOutput) ? builderOutput : yargs;
|
|
154
|
+
if (shouldUpdateUsage(innerYargs)) {
|
|
155
|
+
innerYargs.getUsageInstance().usage(usageFromParentCommandsCommandHandler(parentCommands, commandHandler), commandHandler.description);
|
|
156
|
+
}
|
|
157
|
+
innerArgv = innerYargs._parseArgs(null, null, true, commandIndex);
|
|
158
|
+
aliases = innerYargs.parsed.aliases;
|
|
159
|
+
}
|
|
160
|
+
else if (isCommandBuilderOptionDefinitions(builder)) {
|
|
161
|
+
// as a short hand, an object can instead be provided, specifying
|
|
162
|
+
// the options that a command takes.
|
|
163
|
+
const innerYargs = yargs.reset(parsed.aliases);
|
|
164
|
+
if (shouldUpdateUsage(innerYargs)) {
|
|
165
|
+
innerYargs.getUsageInstance().usage(usageFromParentCommandsCommandHandler(parentCommands, commandHandler), commandHandler.description);
|
|
166
|
+
}
|
|
167
|
+
Object.keys(commandHandler.builder).forEach((key) => {
|
|
168
|
+
innerYargs.option(key, builder[key]);
|
|
169
|
+
});
|
|
170
|
+
innerArgv = innerYargs._parseArgs(null, null, true, commandIndex);
|
|
171
|
+
aliases = innerYargs.parsed.aliases;
|
|
172
|
+
}
|
|
173
|
+
if (!yargs._hasOutput()) {
|
|
174
|
+
positionalMap = populatePositionals(commandHandler, innerArgv, currentContext);
|
|
175
|
+
}
|
|
176
|
+
const middlewares = globalMiddleware.slice(0).concat(commandHandler.middlewares);
|
|
177
|
+
middleware_1.applyMiddleware(innerArgv, yargs, middlewares, true);
|
|
178
|
+
// we apply validation post-hoc, so that custom
|
|
179
|
+
// checks get passed populated positional arguments.
|
|
180
|
+
if (!yargs._hasOutput()) {
|
|
181
|
+
yargs._runValidation(innerArgv, aliases, positionalMap, yargs.parsed.error, !command);
|
|
182
|
+
}
|
|
183
|
+
if (commandHandler.handler && !yargs._hasOutput()) {
|
|
184
|
+
yargs._setHasOutput();
|
|
185
|
+
// to simplify the parsing of positionals in commands,
|
|
186
|
+
// we temporarily populate '--' rather than _, with arguments
|
|
187
|
+
const populateDoubleDash = !!yargs.getOptions().configuration['populate--'];
|
|
188
|
+
if (!populateDoubleDash)
|
|
189
|
+
yargs._copyDoubleDash(innerArgv);
|
|
190
|
+
innerArgv = middleware_1.applyMiddleware(innerArgv, yargs, middlewares, false);
|
|
191
|
+
let handlerResult;
|
|
192
|
+
if (is_promise_1.isPromise(innerArgv)) {
|
|
193
|
+
handlerResult = innerArgv.then(argv => commandHandler.handler(argv));
|
|
194
|
+
}
|
|
195
|
+
else {
|
|
196
|
+
handlerResult = commandHandler.handler(innerArgv);
|
|
197
|
+
}
|
|
198
|
+
const handlerFinishCommand = yargs.getHandlerFinishCommand();
|
|
199
|
+
if (is_promise_1.isPromise(handlerResult)) {
|
|
200
|
+
yargs.getUsageInstance().cacheHelpMessage();
|
|
201
|
+
handlerResult
|
|
202
|
+
.then(value => {
|
|
203
|
+
if (handlerFinishCommand) {
|
|
204
|
+
handlerFinishCommand(value);
|
|
205
|
+
}
|
|
206
|
+
})
|
|
207
|
+
.catch(error => {
|
|
208
|
+
try {
|
|
209
|
+
yargs.getUsageInstance().fail(null, error);
|
|
210
|
+
}
|
|
211
|
+
catch (err) {
|
|
212
|
+
// fail's throwing would cause an unhandled rejection.
|
|
213
|
+
}
|
|
214
|
+
})
|
|
215
|
+
.then(() => {
|
|
216
|
+
yargs.getUsageInstance().clearCachedHelpMessage();
|
|
217
|
+
});
|
|
218
|
+
}
|
|
219
|
+
else {
|
|
220
|
+
if (handlerFinishCommand) {
|
|
221
|
+
handlerFinishCommand(handlerResult);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
if (command) {
|
|
226
|
+
currentContext.commands.pop();
|
|
227
|
+
currentContext.fullCommands.pop();
|
|
228
|
+
}
|
|
229
|
+
numFiles = currentContext.files.length - numFiles;
|
|
230
|
+
if (numFiles > 0)
|
|
231
|
+
currentContext.files.splice(numFiles * -1, numFiles);
|
|
232
|
+
return innerArgv;
|
|
233
|
+
};
|
|
234
|
+
function shouldUpdateUsage(yargs) {
|
|
235
|
+
return !yargs.getUsageInstance().getUsageDisabled() &&
|
|
236
|
+
yargs.getUsageInstance().getUsage().length === 0;
|
|
237
|
+
}
|
|
238
|
+
function usageFromParentCommandsCommandHandler(parentCommands, commandHandler) {
|
|
239
|
+
const c = DEFAULT_MARKER.test(commandHandler.original) ? commandHandler.original.replace(DEFAULT_MARKER, '').trim() : commandHandler.original;
|
|
240
|
+
const pc = parentCommands.filter((c) => { return !DEFAULT_MARKER.test(c); });
|
|
241
|
+
pc.push(c);
|
|
242
|
+
return `$0 ${pc.join(' ')}`;
|
|
243
|
+
}
|
|
244
|
+
self.runDefaultBuilderOn = function (yargs) {
|
|
245
|
+
common_types_1.assertNotStrictEqual(defaultCommand, undefined);
|
|
246
|
+
if (shouldUpdateUsage(yargs)) {
|
|
247
|
+
// build the root-level command string from the default string.
|
|
248
|
+
const commandString = DEFAULT_MARKER.test(defaultCommand.original)
|
|
249
|
+
? defaultCommand.original : defaultCommand.original.replace(/^[^[\]<>]*/, '$0 ');
|
|
250
|
+
yargs.getUsageInstance().usage(commandString, defaultCommand.description);
|
|
251
|
+
}
|
|
252
|
+
const builder = defaultCommand.builder;
|
|
253
|
+
if (isCommandBuilderCallback(builder)) {
|
|
254
|
+
builder(yargs);
|
|
255
|
+
}
|
|
256
|
+
else {
|
|
257
|
+
Object.keys(builder).forEach((key) => {
|
|
258
|
+
yargs.option(key, builder[key]);
|
|
259
|
+
});
|
|
260
|
+
}
|
|
261
|
+
};
|
|
262
|
+
// transcribe all positional arguments "command <foo> <bar> [apple]"
|
|
263
|
+
// onto argv.
|
|
264
|
+
function populatePositionals(commandHandler, argv, context) {
|
|
265
|
+
argv._ = argv._.slice(context.commands.length); // nuke the current commands
|
|
266
|
+
const demanded = commandHandler.demanded.slice(0);
|
|
267
|
+
const optional = commandHandler.optional.slice(0);
|
|
268
|
+
const positionalMap = {};
|
|
269
|
+
validation.positionalCount(demanded.length, argv._.length);
|
|
270
|
+
while (demanded.length) {
|
|
271
|
+
const demand = demanded.shift();
|
|
272
|
+
populatePositional(demand, argv, positionalMap);
|
|
273
|
+
}
|
|
274
|
+
while (optional.length) {
|
|
275
|
+
const maybe = optional.shift();
|
|
276
|
+
populatePositional(maybe, argv, positionalMap);
|
|
277
|
+
}
|
|
278
|
+
argv._ = context.commands.concat(argv._);
|
|
279
|
+
postProcessPositionals(argv, positionalMap, self.cmdToParseOptions(commandHandler.original));
|
|
280
|
+
return positionalMap;
|
|
281
|
+
}
|
|
282
|
+
function populatePositional(positional, argv, positionalMap) {
|
|
283
|
+
const cmd = positional.cmd[0];
|
|
284
|
+
if (positional.variadic) {
|
|
285
|
+
positionalMap[cmd] = argv._.splice(0).map(String);
|
|
286
|
+
}
|
|
287
|
+
else {
|
|
288
|
+
if (argv._.length)
|
|
289
|
+
positionalMap[cmd] = [String(argv._.shift())];
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
// we run yargs-parser against the positional arguments
|
|
293
|
+
// applying the same parsing logic used for flags.
|
|
294
|
+
function postProcessPositionals(argv, positionalMap, parseOptions) {
|
|
295
|
+
// combine the parsing hints we've inferred from the command
|
|
296
|
+
// string with explicitly configured parsing hints.
|
|
297
|
+
const options = Object.assign({}, yargs.getOptions());
|
|
298
|
+
options.default = Object.assign(parseOptions.default, options.default);
|
|
299
|
+
for (const key of Object.keys(parseOptions.alias)) {
|
|
300
|
+
options.alias[key] = (options.alias[key] || []).concat(parseOptions.alias[key]);
|
|
301
|
+
}
|
|
302
|
+
options.array = options.array.concat(parseOptions.array);
|
|
303
|
+
delete options.config; // don't load config when processing positionals.
|
|
304
|
+
const unparsed = [];
|
|
305
|
+
Object.keys(positionalMap).forEach((key) => {
|
|
306
|
+
positionalMap[key].map((value) => {
|
|
307
|
+
if (options.configuration['unknown-options-as-args'])
|
|
308
|
+
options.key[key] = true;
|
|
309
|
+
unparsed.push(`--${key}`);
|
|
310
|
+
unparsed.push(value);
|
|
311
|
+
});
|
|
312
|
+
});
|
|
313
|
+
// short-circuit parse.
|
|
314
|
+
if (!unparsed.length)
|
|
315
|
+
return;
|
|
316
|
+
const config = Object.assign({}, options.configuration, {
|
|
317
|
+
'populate--': true
|
|
318
|
+
});
|
|
319
|
+
const parsed = Parser.detailed(unparsed, Object.assign({}, options, {
|
|
320
|
+
configuration: config
|
|
321
|
+
}));
|
|
322
|
+
if (parsed.error) {
|
|
323
|
+
yargs.getUsageInstance().fail(parsed.error.message, parsed.error);
|
|
324
|
+
}
|
|
325
|
+
else {
|
|
326
|
+
// only copy over positional keys (don't overwrite
|
|
327
|
+
// flag arguments that were already parsed).
|
|
328
|
+
const positionalKeys = Object.keys(positionalMap);
|
|
329
|
+
Object.keys(positionalMap).forEach((key) => {
|
|
330
|
+
positionalKeys.push(...parsed.aliases[key]);
|
|
331
|
+
});
|
|
332
|
+
Object.keys(parsed.argv).forEach((key) => {
|
|
333
|
+
if (positionalKeys.indexOf(key) !== -1) {
|
|
334
|
+
// any new aliases need to be placed in positionalMap, which
|
|
335
|
+
// is used for validation.
|
|
336
|
+
if (!positionalMap[key])
|
|
337
|
+
positionalMap[key] = parsed.argv[key];
|
|
338
|
+
argv[key] = parsed.argv[key];
|
|
339
|
+
}
|
|
340
|
+
});
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
self.cmdToParseOptions = function (cmdString) {
|
|
344
|
+
const parseOptions = {
|
|
345
|
+
array: [],
|
|
346
|
+
default: {},
|
|
347
|
+
alias: {},
|
|
348
|
+
demand: {}
|
|
349
|
+
};
|
|
350
|
+
const parsed = parse_command_1.parseCommand(cmdString);
|
|
351
|
+
parsed.demanded.forEach((d) => {
|
|
352
|
+
const [cmd, ...aliases] = d.cmd;
|
|
353
|
+
if (d.variadic) {
|
|
354
|
+
parseOptions.array.push(cmd);
|
|
355
|
+
parseOptions.default[cmd] = [];
|
|
356
|
+
}
|
|
357
|
+
parseOptions.alias[cmd] = aliases;
|
|
358
|
+
parseOptions.demand[cmd] = true;
|
|
359
|
+
});
|
|
360
|
+
parsed.optional.forEach((o) => {
|
|
361
|
+
const [cmd, ...aliases] = o.cmd;
|
|
362
|
+
if (o.variadic) {
|
|
363
|
+
parseOptions.array.push(cmd);
|
|
364
|
+
parseOptions.default[cmd] = [];
|
|
365
|
+
}
|
|
366
|
+
parseOptions.alias[cmd] = aliases;
|
|
367
|
+
});
|
|
368
|
+
return parseOptions;
|
|
369
|
+
};
|
|
370
|
+
self.reset = () => {
|
|
371
|
+
handlers = {};
|
|
372
|
+
aliasMap = {};
|
|
373
|
+
defaultCommand = undefined;
|
|
374
|
+
return self;
|
|
375
|
+
};
|
|
376
|
+
// used by yargs.parse() to freeze
|
|
377
|
+
// the state of commands such that
|
|
378
|
+
// we can apply .parse() multiple times
|
|
379
|
+
// with the same yargs instance.
|
|
380
|
+
const frozens = [];
|
|
381
|
+
self.freeze = () => {
|
|
382
|
+
frozens.push({
|
|
383
|
+
handlers,
|
|
384
|
+
aliasMap,
|
|
385
|
+
defaultCommand
|
|
386
|
+
});
|
|
387
|
+
};
|
|
388
|
+
self.unfreeze = () => {
|
|
389
|
+
const frozen = frozens.pop();
|
|
390
|
+
common_types_1.assertNotStrictEqual(frozen, undefined);
|
|
391
|
+
({
|
|
392
|
+
handlers,
|
|
393
|
+
aliasMap,
|
|
394
|
+
defaultCommand
|
|
395
|
+
} = frozen);
|
|
396
|
+
};
|
|
397
|
+
return self;
|
|
398
|
+
}
|
|
399
|
+
exports.command = command;
|
|
400
|
+
function isCommandHandlerDefinition(cmd) {
|
|
401
|
+
return typeof cmd === 'object';
|
|
402
|
+
}
|
|
403
|
+
exports.isCommandHandlerDefinition = isCommandHandlerDefinition;
|
|
404
|
+
function isCommandBuilderDefinition(builder) {
|
|
405
|
+
return typeof builder === 'object' &&
|
|
406
|
+
!!builder.builder &&
|
|
407
|
+
typeof builder.handler === 'function';
|
|
408
|
+
}
|
|
409
|
+
exports.isCommandBuilderDefinition = isCommandBuilderDefinition;
|
|
410
|
+
function isCommandBuilderCallback(builder) {
|
|
411
|
+
return typeof builder === 'function';
|
|
412
|
+
}
|
|
413
|
+
exports.isCommandBuilderCallback = isCommandBuilderCallback;
|
|
414
|
+
function isCommandBuilderOptionDefinitions(builder) {
|
|
415
|
+
return typeof builder === 'object';
|
|
416
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* An object whose all properties have the same type.
|
|
3
|
+
*/
|
|
4
|
+
export declare type Dictionary<T = any> = {
|
|
5
|
+
[key: string]: T;
|
|
6
|
+
};
|
|
7
|
+
/**
|
|
8
|
+
* Returns the keys of T that match Dictionary<U> and are not arrays.
|
|
9
|
+
*/
|
|
10
|
+
export declare type DictionaryKeyof<T, U = any> = Exclude<KeyOf<T, Dictionary<U>>, KeyOf<T, any[]>>;
|
|
11
|
+
/**
|
|
12
|
+
* Returns the keys of T that match U.
|
|
13
|
+
*/
|
|
14
|
+
export declare type KeyOf<T, U> = Exclude<{
|
|
15
|
+
[K in keyof T]: T[K] extends U ? K : never;
|
|
16
|
+
}[keyof T], undefined>;
|
|
17
|
+
/**
|
|
18
|
+
* An array whose first element is not undefined.
|
|
19
|
+
*/
|
|
20
|
+
export declare type NotEmptyArray<T = any> = [T, ...T[]];
|
|
21
|
+
/**
|
|
22
|
+
* Returns the type of a Dictionary or array values.
|
|
23
|
+
*/
|
|
24
|
+
export declare type ValueOf<T> = T extends (infer U)[] ? U : T[keyof T];
|
|
25
|
+
/**
|
|
26
|
+
* Typing wrapper around assert.notStrictEqual()
|
|
27
|
+
*/
|
|
28
|
+
export declare function assertNotStrictEqual<N, T>(actual: T | N, expected: N, message?: string | Error): asserts actual is Exclude<T, N>;
|
|
29
|
+
/**
|
|
30
|
+
* Asserts actual is a single key, not a key array or a key map.
|
|
31
|
+
*/
|
|
32
|
+
export declare function assertSingleKey(actual: string | string[] | Dictionary): asserts actual is string;
|
|
33
|
+
/**
|
|
34
|
+
* Typing wrapper around Object.keys()
|
|
35
|
+
*/
|
|
36
|
+
export declare function objectKeys<T>(object: T): (keyof T)[];
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.objectKeys = exports.assertSingleKey = exports.assertNotStrictEqual = void 0;
|
|
4
|
+
const assert_1 = require("assert");
|
|
5
|
+
/**
|
|
6
|
+
* Typing wrapper around assert.notStrictEqual()
|
|
7
|
+
*/
|
|
8
|
+
function assertNotStrictEqual(actual, expected, message) {
|
|
9
|
+
assert_1.notStrictEqual(actual, expected, message);
|
|
10
|
+
}
|
|
11
|
+
exports.assertNotStrictEqual = assertNotStrictEqual;
|
|
12
|
+
/**
|
|
13
|
+
* Asserts actual is a single key, not a key array or a key map.
|
|
14
|
+
*/
|
|
15
|
+
function assertSingleKey(actual) {
|
|
16
|
+
assert_1.strictEqual(typeof actual, 'string');
|
|
17
|
+
}
|
|
18
|
+
exports.assertSingleKey = assertSingleKey;
|
|
19
|
+
/**
|
|
20
|
+
* Typing wrapper around Object.keys()
|
|
21
|
+
*/
|
|
22
|
+
function objectKeys(object) {
|
|
23
|
+
return Object.keys(object);
|
|
24
|
+
}
|
|
25
|
+
exports.objectKeys = objectKeys;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const completionShTemplate = "###-begin-{{app_name}}-completions-###\n#\n# yargs command completion script\n#\n# Installation: {{app_path}} {{completion_command}} >> ~/.bashrc\n# or {{app_path}} {{completion_command}} >> ~/.bash_profile on OSX.\n#\n_yargs_completions()\n{\n local cur_word args type_list\n\n cur_word=\"${COMP_WORDS[COMP_CWORD]}\"\n args=(\"${COMP_WORDS[@]}\")\n\n # ask yargs to generate completions.\n type_list=$({{app_path}} --get-yargs-completions \"${args[@]}\")\n\n COMPREPLY=( $(compgen -W \"${type_list}\" -- ${cur_word}) )\n\n # if no match was found, fall back to filename completion\n if [ ${#COMPREPLY[@]} -eq 0 ]; then\n COMPREPLY=()\n fi\n\n return 0\n}\ncomplete -o default -F _yargs_completions {{app_name}}\n###-end-{{app_name}}-completions-###\n";
|
|
2
|
+
export declare const completionZshTemplate = "###-begin-{{app_name}}-completions-###\n#\n# yargs command completion script\n#\n# Installation: {{app_path}} {{completion_command}} >> ~/.zshrc\n# or {{app_path}} {{completion_command}} >> ~/.zsh_profile on OSX.\n#\n_{{app_name}}_yargs_completions()\n{\n local reply\n local si=$IFS\n IFS=$'\n' reply=($(COMP_CWORD=\"$((CURRENT-1))\" COMP_LINE=\"$BUFFER\" COMP_POINT=\"$CURSOR\" {{app_path}} --get-yargs-completions \"${words[@]}\"))\n IFS=$si\n _describe 'values' reply\n}\ncompdef _{{app_name}}_yargs_completions {{app_name}}\n###-end-{{app_name}}-completions-###\n";
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.completionZshTemplate = exports.completionShTemplate = void 0;
|
|
4
|
+
exports.completionShTemplate = `###-begin-{{app_name}}-completions-###
|
|
5
|
+
#
|
|
6
|
+
# yargs command completion script
|
|
7
|
+
#
|
|
8
|
+
# Installation: {{app_path}} {{completion_command}} >> ~/.bashrc
|
|
9
|
+
# or {{app_path}} {{completion_command}} >> ~/.bash_profile on OSX.
|
|
10
|
+
#
|
|
11
|
+
_yargs_completions()
|
|
12
|
+
{
|
|
13
|
+
local cur_word args type_list
|
|
14
|
+
|
|
15
|
+
cur_word="\${COMP_WORDS[COMP_CWORD]}"
|
|
16
|
+
args=("\${COMP_WORDS[@]}")
|
|
17
|
+
|
|
18
|
+
# ask yargs to generate completions.
|
|
19
|
+
type_list=$({{app_path}} --get-yargs-completions "\${args[@]}")
|
|
20
|
+
|
|
21
|
+
COMPREPLY=( $(compgen -W "\${type_list}" -- \${cur_word}) )
|
|
22
|
+
|
|
23
|
+
# if no match was found, fall back to filename completion
|
|
24
|
+
if [ \${#COMPREPLY[@]} -eq 0 ]; then
|
|
25
|
+
COMPREPLY=()
|
|
26
|
+
fi
|
|
27
|
+
|
|
28
|
+
return 0
|
|
29
|
+
}
|
|
30
|
+
complete -o default -F _yargs_completions {{app_name}}
|
|
31
|
+
###-end-{{app_name}}-completions-###
|
|
32
|
+
`;
|
|
33
|
+
exports.completionZshTemplate = `###-begin-{{app_name}}-completions-###
|
|
34
|
+
#
|
|
35
|
+
# yargs command completion script
|
|
36
|
+
#
|
|
37
|
+
# Installation: {{app_path}} {{completion_command}} >> ~/.zshrc
|
|
38
|
+
# or {{app_path}} {{completion_command}} >> ~/.zsh_profile on OSX.
|
|
39
|
+
#
|
|
40
|
+
_{{app_name}}_yargs_completions()
|
|
41
|
+
{
|
|
42
|
+
local reply
|
|
43
|
+
local si=$IFS
|
|
44
|
+
IFS=$'\n' reply=($(COMP_CWORD="$((CURRENT-1))" COMP_LINE="$BUFFER" COMP_POINT="$CURSOR" {{app_path}} --get-yargs-completions "\${words[@]}"))
|
|
45
|
+
IFS=$si
|
|
46
|
+
_describe 'values' reply
|
|
47
|
+
}
|
|
48
|
+
compdef _{{app_name}}_yargs_completions {{app_name}}
|
|
49
|
+
###-end-{{app_name}}-completions-###
|
|
50
|
+
`;
|