@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,78 @@
|
|
|
1
|
+
const fs = require('fs')
|
|
2
|
+
const PNG = require('pngjs').PNG
|
|
3
|
+
const Utils = require('./utils')
|
|
4
|
+
|
|
5
|
+
exports.render = function render (qrData, options) {
|
|
6
|
+
const opts = Utils.getOptions(options)
|
|
7
|
+
const pngOpts = opts.rendererOpts
|
|
8
|
+
const size = Utils.getImageWidth(qrData.modules.size, opts)
|
|
9
|
+
|
|
10
|
+
pngOpts.width = size
|
|
11
|
+
pngOpts.height = size
|
|
12
|
+
|
|
13
|
+
const pngImage = new PNG(pngOpts)
|
|
14
|
+
Utils.qrToImageData(pngImage.data, qrData, opts)
|
|
15
|
+
|
|
16
|
+
return pngImage
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
exports.renderToDataURL = function renderToDataURL (qrData, options, cb) {
|
|
20
|
+
if (typeof cb === 'undefined') {
|
|
21
|
+
cb = options
|
|
22
|
+
options = undefined
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
exports.renderToBuffer(qrData, options, function (err, output) {
|
|
26
|
+
if (err) cb(err)
|
|
27
|
+
let url = 'data:image/png;base64,'
|
|
28
|
+
url += output.toString('base64')
|
|
29
|
+
cb(null, url)
|
|
30
|
+
})
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
exports.renderToBuffer = function renderToBuffer (qrData, options, cb) {
|
|
34
|
+
if (typeof cb === 'undefined') {
|
|
35
|
+
cb = options
|
|
36
|
+
options = undefined
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
const png = exports.render(qrData, options)
|
|
40
|
+
const buffer = []
|
|
41
|
+
|
|
42
|
+
png.on('error', cb)
|
|
43
|
+
|
|
44
|
+
png.on('data', function (data) {
|
|
45
|
+
buffer.push(data)
|
|
46
|
+
})
|
|
47
|
+
|
|
48
|
+
png.on('end', function () {
|
|
49
|
+
cb(null, Buffer.concat(buffer))
|
|
50
|
+
})
|
|
51
|
+
|
|
52
|
+
png.pack()
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
exports.renderToFile = function renderToFile (path, qrData, options, cb) {
|
|
56
|
+
if (typeof cb === 'undefined') {
|
|
57
|
+
cb = options
|
|
58
|
+
options = undefined
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
let called = false
|
|
62
|
+
const done = (...args) => {
|
|
63
|
+
if (called) return
|
|
64
|
+
called = true
|
|
65
|
+
cb.apply(null, args)
|
|
66
|
+
}
|
|
67
|
+
const stream = fs.createWriteStream(path)
|
|
68
|
+
|
|
69
|
+
stream.on('error', done)
|
|
70
|
+
stream.on('close', done)
|
|
71
|
+
|
|
72
|
+
exports.renderToFileStream(stream, qrData, options)
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
exports.renderToFileStream = function renderToFileStream (stream, qrData, options) {
|
|
76
|
+
const png = exports.render(qrData, options)
|
|
77
|
+
png.pack().pipe(stream)
|
|
78
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
const Utils = require('./utils')
|
|
2
|
+
|
|
3
|
+
function getColorAttrib (color, attrib) {
|
|
4
|
+
const alpha = color.a / 255
|
|
5
|
+
const str = attrib + '="' + color.hex + '"'
|
|
6
|
+
|
|
7
|
+
return alpha < 1
|
|
8
|
+
? str + ' ' + attrib + '-opacity="' + alpha.toFixed(2).slice(1) + '"'
|
|
9
|
+
: str
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
function svgCmd (cmd, x, y) {
|
|
13
|
+
let str = cmd + x
|
|
14
|
+
if (typeof y !== 'undefined') str += ' ' + y
|
|
15
|
+
|
|
16
|
+
return str
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function qrToPath (data, size, margin) {
|
|
20
|
+
let path = ''
|
|
21
|
+
let moveBy = 0
|
|
22
|
+
let newRow = false
|
|
23
|
+
let lineLength = 0
|
|
24
|
+
|
|
25
|
+
for (let i = 0; i < data.length; i++) {
|
|
26
|
+
const col = Math.floor(i % size)
|
|
27
|
+
const row = Math.floor(i / size)
|
|
28
|
+
|
|
29
|
+
if (!col && !newRow) newRow = true
|
|
30
|
+
|
|
31
|
+
if (data[i]) {
|
|
32
|
+
lineLength++
|
|
33
|
+
|
|
34
|
+
if (!(i > 0 && col > 0 && data[i - 1])) {
|
|
35
|
+
path += newRow
|
|
36
|
+
? svgCmd('M', col + margin, 0.5 + row + margin)
|
|
37
|
+
: svgCmd('m', moveBy, 0)
|
|
38
|
+
|
|
39
|
+
moveBy = 0
|
|
40
|
+
newRow = false
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
if (!(col + 1 < size && data[i + 1])) {
|
|
44
|
+
path += svgCmd('h', lineLength)
|
|
45
|
+
lineLength = 0
|
|
46
|
+
}
|
|
47
|
+
} else {
|
|
48
|
+
moveBy++
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
return path
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
exports.render = function render (qrData, options, cb) {
|
|
56
|
+
const opts = Utils.getOptions(options)
|
|
57
|
+
const size = qrData.modules.size
|
|
58
|
+
const data = qrData.modules.data
|
|
59
|
+
const qrcodesize = size + opts.margin * 2
|
|
60
|
+
|
|
61
|
+
const bg = !opts.color.light.a
|
|
62
|
+
? ''
|
|
63
|
+
: '<path ' + getColorAttrib(opts.color.light, 'fill') +
|
|
64
|
+
' d="M0 0h' + qrcodesize + 'v' + qrcodesize + 'H0z"/>'
|
|
65
|
+
|
|
66
|
+
const path =
|
|
67
|
+
'<path ' + getColorAttrib(opts.color.dark, 'stroke') +
|
|
68
|
+
' d="' + qrToPath(data, size, opts.margin) + '"/>'
|
|
69
|
+
|
|
70
|
+
const viewBox = 'viewBox="' + '0 0 ' + qrcodesize + ' ' + qrcodesize + '"'
|
|
71
|
+
|
|
72
|
+
const width = !opts.width ? '' : 'width="' + opts.width + '" height="' + opts.width + '" '
|
|
73
|
+
|
|
74
|
+
const svgTag = '<svg xmlns="http://www.w3.org/2000/svg" ' + width + viewBox + ' shape-rendering="crispEdges">' + bg + path + '</svg>\n'
|
|
75
|
+
|
|
76
|
+
if (typeof cb === 'function') {
|
|
77
|
+
cb(null, svgTag)
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
return svgTag
|
|
81
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
const svgTagRenderer = require('./svg-tag')
|
|
2
|
+
|
|
3
|
+
exports.render = svgTagRenderer.render
|
|
4
|
+
|
|
5
|
+
exports.renderToFile = function renderToFile (path, qrData, options, cb) {
|
|
6
|
+
if (typeof cb === 'undefined') {
|
|
7
|
+
cb = options
|
|
8
|
+
options = undefined
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
const fs = require('fs')
|
|
12
|
+
const svgTag = exports.render(qrData, options)
|
|
13
|
+
|
|
14
|
+
const xmlStr = '<?xml version="1.0" encoding="utf-8"?>' +
|
|
15
|
+
'<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">' +
|
|
16
|
+
svgTag
|
|
17
|
+
|
|
18
|
+
fs.writeFile(path, xmlStr, cb)
|
|
19
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
const backgroundWhite = '\x1b[47m'
|
|
2
|
+
const backgroundBlack = '\x1b[40m'
|
|
3
|
+
const foregroundWhite = '\x1b[37m'
|
|
4
|
+
const foregroundBlack = '\x1b[30m'
|
|
5
|
+
const reset = '\x1b[0m'
|
|
6
|
+
const lineSetupNormal = backgroundWhite + foregroundBlack // setup colors
|
|
7
|
+
const lineSetupInverse = backgroundBlack + foregroundWhite // setup colors
|
|
8
|
+
|
|
9
|
+
const createPalette = function (lineSetup, foregroundWhite, foregroundBlack) {
|
|
10
|
+
return {
|
|
11
|
+
// 1 ... white, 2 ... black, 0 ... transparent (default)
|
|
12
|
+
|
|
13
|
+
'00': reset + ' ' + lineSetup,
|
|
14
|
+
'01': reset + foregroundWhite + '▄' + lineSetup,
|
|
15
|
+
'02': reset + foregroundBlack + '▄' + lineSetup,
|
|
16
|
+
10: reset + foregroundWhite + '▀' + lineSetup,
|
|
17
|
+
11: ' ',
|
|
18
|
+
12: '▄',
|
|
19
|
+
20: reset + foregroundBlack + '▀' + lineSetup,
|
|
20
|
+
21: '▀',
|
|
21
|
+
22: '█'
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Returns code for QR pixel
|
|
27
|
+
* @param {boolean[][]} modules
|
|
28
|
+
* @param {number} size
|
|
29
|
+
* @param {number} x
|
|
30
|
+
* @param {number} y
|
|
31
|
+
* @return {'0' | '1' | '2'}
|
|
32
|
+
*/
|
|
33
|
+
const mkCodePixel = function (modules, size, x, y) {
|
|
34
|
+
const sizePlus = size + 1
|
|
35
|
+
if ((x >= sizePlus) || (y >= sizePlus) || (y < -1) || (x < -1)) return '0'
|
|
36
|
+
if ((x >= size) || (y >= size) || (y < 0) || (x < 0)) return '1'
|
|
37
|
+
const idx = (y * size) + x
|
|
38
|
+
return modules[idx] ? '2' : '1'
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Returns code for four QR pixels. Suitable as key in palette.
|
|
43
|
+
* @param {boolean[][]} modules
|
|
44
|
+
* @param {number} size
|
|
45
|
+
* @param {number} x
|
|
46
|
+
* @param {number} y
|
|
47
|
+
* @return {keyof palette}
|
|
48
|
+
*/
|
|
49
|
+
const mkCode = function (modules, size, x, y) {
|
|
50
|
+
return (
|
|
51
|
+
mkCodePixel(modules, size, x, y) +
|
|
52
|
+
mkCodePixel(modules, size, x, y + 1)
|
|
53
|
+
)
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
exports.render = function (qrData, options, cb) {
|
|
57
|
+
const size = qrData.modules.size
|
|
58
|
+
const data = qrData.modules.data
|
|
59
|
+
|
|
60
|
+
const inverse = !!(options && options.inverse)
|
|
61
|
+
const lineSetup = options && options.inverse ? lineSetupInverse : lineSetupNormal
|
|
62
|
+
const white = inverse ? foregroundBlack : foregroundWhite
|
|
63
|
+
const black = inverse ? foregroundWhite : foregroundBlack
|
|
64
|
+
|
|
65
|
+
const palette = createPalette(lineSetup, white, black)
|
|
66
|
+
const newLine = reset + '\n' + lineSetup
|
|
67
|
+
|
|
68
|
+
let output = lineSetup // setup colors
|
|
69
|
+
|
|
70
|
+
for (let y = -1; y < size + 1; y += 2) {
|
|
71
|
+
for (let x = -1; x < size; x++) {
|
|
72
|
+
output += palette[mkCode(data, size, x, y)]
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
output += palette[mkCode(data, size, size, y)] + newLine
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
output += reset
|
|
79
|
+
|
|
80
|
+
if (typeof cb === 'function') {
|
|
81
|
+
cb(null, output)
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
return output
|
|
85
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
// let Utils = require('./utils')
|
|
2
|
+
|
|
3
|
+
exports.render = function (qrData, options, cb) {
|
|
4
|
+
const size = qrData.modules.size
|
|
5
|
+
const data = qrData.modules.data
|
|
6
|
+
|
|
7
|
+
// let opts = Utils.getOptions(options)
|
|
8
|
+
|
|
9
|
+
// use same scheme as https://github.com/gtanner/qrcode-terminal because it actually works! =)
|
|
10
|
+
const black = '\x1b[40m \x1b[0m'
|
|
11
|
+
const white = '\x1b[47m \x1b[0m'
|
|
12
|
+
|
|
13
|
+
let output = ''
|
|
14
|
+
const hMargin = Array(size + 3).join(white)
|
|
15
|
+
const vMargin = Array(2).join(white)
|
|
16
|
+
|
|
17
|
+
output += hMargin + '\n'
|
|
18
|
+
for (let i = 0; i < size; ++i) {
|
|
19
|
+
output += white
|
|
20
|
+
for (let j = 0; j < size; j++) {
|
|
21
|
+
// let topModule = data[i * size + j]
|
|
22
|
+
// let bottomModule = data[(i + 1) * size + j]
|
|
23
|
+
|
|
24
|
+
output += data[i * size + j] ? black : white// getBlockChar(topModule, bottomModule)
|
|
25
|
+
}
|
|
26
|
+
// output += white+'\n'
|
|
27
|
+
output += vMargin + '\n'
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
output += hMargin + '\n'
|
|
31
|
+
|
|
32
|
+
if (typeof cb === 'function') {
|
|
33
|
+
cb(null, output)
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
return output
|
|
37
|
+
}
|
|
38
|
+
/*
|
|
39
|
+
exports.renderToFile = function renderToFile (path, qrData, options, cb) {
|
|
40
|
+
if (typeof cb === 'undefined') {
|
|
41
|
+
cb = options
|
|
42
|
+
options = undefined
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
let fs = require('fs')
|
|
46
|
+
let utf8 = exports.render(qrData, options)
|
|
47
|
+
fs.writeFile(path, utf8, cb)
|
|
48
|
+
}
|
|
49
|
+
*/
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
const big = require('./terminal/terminal')
|
|
2
|
+
const small = require('./terminal/terminal-small')
|
|
3
|
+
|
|
4
|
+
exports.render = function (qrData, options, cb) {
|
|
5
|
+
if (options && options.small) {
|
|
6
|
+
return small.render(qrData, options, cb)
|
|
7
|
+
}
|
|
8
|
+
return big.render(qrData, options, cb)
|
|
9
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
const Utils = require('./utils')
|
|
2
|
+
|
|
3
|
+
const BLOCK_CHAR = {
|
|
4
|
+
WW: ' ',
|
|
5
|
+
WB: '▄',
|
|
6
|
+
BB: '█',
|
|
7
|
+
BW: '▀'
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const INVERTED_BLOCK_CHAR = {
|
|
11
|
+
BB: ' ',
|
|
12
|
+
BW: '▄',
|
|
13
|
+
WW: '█',
|
|
14
|
+
WB: '▀'
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function getBlockChar (top, bottom, blocks) {
|
|
18
|
+
if (top && bottom) return blocks.BB
|
|
19
|
+
if (top && !bottom) return blocks.BW
|
|
20
|
+
if (!top && bottom) return blocks.WB
|
|
21
|
+
return blocks.WW
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
exports.render = function (qrData, options, cb) {
|
|
25
|
+
const opts = Utils.getOptions(options)
|
|
26
|
+
let blocks = BLOCK_CHAR
|
|
27
|
+
if (opts.color.dark.hex === '#ffffff' || opts.color.light.hex === '#000000') {
|
|
28
|
+
blocks = INVERTED_BLOCK_CHAR
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
const size = qrData.modules.size
|
|
32
|
+
const data = qrData.modules.data
|
|
33
|
+
|
|
34
|
+
let output = ''
|
|
35
|
+
let hMargin = Array(size + (opts.margin * 2) + 1).join(blocks.WW)
|
|
36
|
+
hMargin = Array((opts.margin / 2) + 1).join(hMargin + '\n')
|
|
37
|
+
|
|
38
|
+
const vMargin = Array(opts.margin + 1).join(blocks.WW)
|
|
39
|
+
|
|
40
|
+
output += hMargin
|
|
41
|
+
for (let i = 0; i < size; i += 2) {
|
|
42
|
+
output += vMargin
|
|
43
|
+
for (let j = 0; j < size; j++) {
|
|
44
|
+
const topModule = data[i * size + j]
|
|
45
|
+
const bottomModule = data[(i + 1) * size + j]
|
|
46
|
+
|
|
47
|
+
output += getBlockChar(topModule, bottomModule, blocks)
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
output += vMargin + '\n'
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
output += hMargin.slice(0, -1)
|
|
54
|
+
|
|
55
|
+
if (typeof cb === 'function') {
|
|
56
|
+
cb(null, output)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
return output
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
exports.renderToFile = function renderToFile (path, qrData, options, cb) {
|
|
63
|
+
if (typeof cb === 'undefined') {
|
|
64
|
+
cb = options
|
|
65
|
+
options = undefined
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
const fs = require('fs')
|
|
69
|
+
const utf8 = exports.render(qrData, options)
|
|
70
|
+
fs.writeFile(path, utf8, cb)
|
|
71
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
function hex2rgba (hex) {
|
|
2
|
+
if (typeof hex === 'number') {
|
|
3
|
+
hex = hex.toString()
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
if (typeof hex !== 'string') {
|
|
7
|
+
throw new Error('Color should be defined as hex string')
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let hexCode = hex.slice().replace('#', '').split('')
|
|
11
|
+
if (hexCode.length < 3 || hexCode.length === 5 || hexCode.length > 8) {
|
|
12
|
+
throw new Error('Invalid hex color: ' + hex)
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
// Convert from short to long form (fff -> ffffff)
|
|
16
|
+
if (hexCode.length === 3 || hexCode.length === 4) {
|
|
17
|
+
hexCode = Array.prototype.concat.apply([], hexCode.map(function (c) {
|
|
18
|
+
return [c, c]
|
|
19
|
+
}))
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// Add default alpha value
|
|
23
|
+
if (hexCode.length === 6) hexCode.push('F', 'F')
|
|
24
|
+
|
|
25
|
+
const hexValue = parseInt(hexCode.join(''), 16)
|
|
26
|
+
|
|
27
|
+
return {
|
|
28
|
+
r: (hexValue >> 24) & 255,
|
|
29
|
+
g: (hexValue >> 16) & 255,
|
|
30
|
+
b: (hexValue >> 8) & 255,
|
|
31
|
+
a: hexValue & 255,
|
|
32
|
+
hex: '#' + hexCode.slice(0, 6).join('')
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
exports.getOptions = function getOptions (options) {
|
|
37
|
+
if (!options) options = {}
|
|
38
|
+
if (!options.color) options.color = {}
|
|
39
|
+
|
|
40
|
+
const margin = typeof options.margin === 'undefined' ||
|
|
41
|
+
options.margin === null ||
|
|
42
|
+
options.margin < 0
|
|
43
|
+
? 4
|
|
44
|
+
: options.margin
|
|
45
|
+
|
|
46
|
+
const width = options.width && options.width >= 21 ? options.width : undefined
|
|
47
|
+
const scale = options.scale || 4
|
|
48
|
+
|
|
49
|
+
return {
|
|
50
|
+
width: width,
|
|
51
|
+
scale: width ? 4 : scale,
|
|
52
|
+
margin: margin,
|
|
53
|
+
color: {
|
|
54
|
+
dark: hex2rgba(options.color.dark || '#000000ff'),
|
|
55
|
+
light: hex2rgba(options.color.light || '#ffffffff')
|
|
56
|
+
},
|
|
57
|
+
type: options.type,
|
|
58
|
+
rendererOpts: options.rendererOpts || {}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
exports.getScale = function getScale (qrSize, opts) {
|
|
63
|
+
return opts.width && opts.width >= qrSize + opts.margin * 2
|
|
64
|
+
? opts.width / (qrSize + opts.margin * 2)
|
|
65
|
+
: opts.scale
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
exports.getImageWidth = function getImageWidth (qrSize, opts) {
|
|
69
|
+
const scale = exports.getScale(qrSize, opts)
|
|
70
|
+
return Math.floor((qrSize + opts.margin * 2) * scale)
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
exports.qrToImageData = function qrToImageData (imgData, qr, opts) {
|
|
74
|
+
const size = qr.modules.size
|
|
75
|
+
const data = qr.modules.data
|
|
76
|
+
const scale = exports.getScale(size, opts)
|
|
77
|
+
const symbolSize = Math.floor((size + opts.margin * 2) * scale)
|
|
78
|
+
const scaledMargin = opts.margin * scale
|
|
79
|
+
const palette = [opts.color.light, opts.color.dark]
|
|
80
|
+
|
|
81
|
+
for (let i = 0; i < symbolSize; i++) {
|
|
82
|
+
for (let j = 0; j < symbolSize; j++) {
|
|
83
|
+
let posDst = (i * symbolSize + j) * 4
|
|
84
|
+
let pxColor = opts.color.light
|
|
85
|
+
|
|
86
|
+
if (i >= scaledMargin && j >= scaledMargin &&
|
|
87
|
+
i < symbolSize - scaledMargin && j < symbolSize - scaledMargin) {
|
|
88
|
+
const iSrc = Math.floor((i - scaledMargin) / scale)
|
|
89
|
+
const jSrc = Math.floor((j - scaledMargin) / scale)
|
|
90
|
+
pxColor = palette[data[iSrc * size + jSrc] ? 1 : 0]
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
imgData[posDst++] = pxColor.r
|
|
94
|
+
imgData[posDst++] = pxColor.g
|
|
95
|
+
imgData[posDst++] = pxColor.b
|
|
96
|
+
imgData[posDst] = pxColor.a
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
const canPromise = require('./can-promise')
|
|
2
|
+
const QRCode = require('./core/qrcode')
|
|
3
|
+
const PngRenderer = require('./renderer/png')
|
|
4
|
+
const Utf8Renderer = require('./renderer/utf8')
|
|
5
|
+
const TerminalRenderer = require('./renderer/terminal')
|
|
6
|
+
const SvgRenderer = require('./renderer/svg')
|
|
7
|
+
|
|
8
|
+
function checkParams (text, opts, cb) {
|
|
9
|
+
if (typeof text === 'undefined') {
|
|
10
|
+
throw new Error('String required as first argument')
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
if (typeof cb === 'undefined') {
|
|
14
|
+
cb = opts
|
|
15
|
+
opts = {}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
if (typeof cb !== 'function') {
|
|
19
|
+
if (!canPromise()) {
|
|
20
|
+
throw new Error('Callback required as last argument')
|
|
21
|
+
} else {
|
|
22
|
+
opts = cb || {}
|
|
23
|
+
cb = null
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
return {
|
|
28
|
+
opts: opts,
|
|
29
|
+
cb: cb
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
function getTypeFromFilename (path) {
|
|
34
|
+
return path.slice((path.lastIndexOf('.') - 1 >>> 0) + 2).toLowerCase()
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function getRendererFromType (type) {
|
|
38
|
+
switch (type) {
|
|
39
|
+
case 'svg':
|
|
40
|
+
return SvgRenderer
|
|
41
|
+
|
|
42
|
+
case 'txt':
|
|
43
|
+
case 'utf8':
|
|
44
|
+
return Utf8Renderer
|
|
45
|
+
|
|
46
|
+
case 'png':
|
|
47
|
+
case 'image/png':
|
|
48
|
+
default:
|
|
49
|
+
return PngRenderer
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
function getStringRendererFromType (type) {
|
|
54
|
+
switch (type) {
|
|
55
|
+
case 'svg':
|
|
56
|
+
return SvgRenderer
|
|
57
|
+
|
|
58
|
+
case 'terminal':
|
|
59
|
+
return TerminalRenderer
|
|
60
|
+
|
|
61
|
+
case 'utf8':
|
|
62
|
+
default:
|
|
63
|
+
return Utf8Renderer
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
function render (renderFunc, text, params) {
|
|
68
|
+
if (!params.cb) {
|
|
69
|
+
return new Promise(function (resolve, reject) {
|
|
70
|
+
try {
|
|
71
|
+
const data = QRCode.create(text, params.opts)
|
|
72
|
+
return renderFunc(data, params.opts, function (err, data) {
|
|
73
|
+
return err ? reject(err) : resolve(data)
|
|
74
|
+
})
|
|
75
|
+
} catch (e) {
|
|
76
|
+
reject(e)
|
|
77
|
+
}
|
|
78
|
+
})
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
try {
|
|
82
|
+
const data = QRCode.create(text, params.opts)
|
|
83
|
+
return renderFunc(data, params.opts, params.cb)
|
|
84
|
+
} catch (e) {
|
|
85
|
+
params.cb(e)
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
exports.create = QRCode.create
|
|
90
|
+
|
|
91
|
+
exports.toCanvas = require('./browser').toCanvas
|
|
92
|
+
|
|
93
|
+
exports.toString = function toString (text, opts, cb) {
|
|
94
|
+
const params = checkParams(text, opts, cb)
|
|
95
|
+
const type = params.opts ? params.opts.type : undefined
|
|
96
|
+
const renderer = getStringRendererFromType(type)
|
|
97
|
+
return render(renderer.render, text, params)
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
exports.toDataURL = function toDataURL (text, opts, cb) {
|
|
101
|
+
const params = checkParams(text, opts, cb)
|
|
102
|
+
const renderer = getRendererFromType(params.opts.type)
|
|
103
|
+
return render(renderer.renderToDataURL, text, params)
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
exports.toBuffer = function toBuffer (text, opts, cb) {
|
|
107
|
+
const params = checkParams(text, opts, cb)
|
|
108
|
+
const renderer = getRendererFromType(params.opts.type)
|
|
109
|
+
return render(renderer.renderToBuffer, text, params)
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
exports.toFile = function toFile (path, text, opts, cb) {
|
|
113
|
+
if (typeof path !== 'string' || !(typeof text === 'string' || typeof text === 'object')) {
|
|
114
|
+
throw new Error('Invalid argument')
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
if ((arguments.length < 3) && !canPromise()) {
|
|
118
|
+
throw new Error('Too few arguments provided')
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
const params = checkParams(text, opts, cb)
|
|
122
|
+
const type = params.opts.type || getTypeFromFilename(path)
|
|
123
|
+
const renderer = getRendererFromType(type)
|
|
124
|
+
const renderToFile = renderer.renderToFile.bind(null, path)
|
|
125
|
+
|
|
126
|
+
return render(renderToFile, text, params)
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
exports.toFileStream = function toFileStream (stream, text, opts) {
|
|
130
|
+
if (arguments.length < 2) {
|
|
131
|
+
throw new Error('Too few arguments provided')
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
const params = checkParams(text, opts, stream.emit.bind(stream, 'error'))
|
|
135
|
+
const renderer = getRendererFromType('png') // Only png support for now
|
|
136
|
+
const renderToFileStream = renderer.renderToFileStream.bind(null, stream)
|
|
137
|
+
render(renderToFileStream, text, params)
|
|
138
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2012 Ryan Day
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10
|
+
|