├── .gitignore ├── root ├── defaults │ ├── autostart │ └── startwm.sh └── etc │ ├── services.d │ ├── guacd │ │ └── run │ ├── web │ │ └── run │ └── autostart │ │ └── run │ └── cont-init.d │ ├── 55-autostart-config │ └── 99-deprecation ├── .github ├── FUNDING.yml ├── workflows │ ├── permissions.yml │ └── greetings.yml ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── issue.bug.yml │ └── issue.feature.yml ├── PULL_REQUEST_TEMPLATE.md └── CONTRIBUTING.md ├── .editorconfig ├── jenkins-vars.yml ├── readme-vars.yml ├── README.md ├── Dockerfile ├── Dockerfile.armhf ├── Dockerfile.aarch64 ├── LICENSE └── package_versions.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .jenkins-external 2 | -------------------------------------------------------------------------------- /root/defaults/autostart: -------------------------------------------------------------------------------- 1 | xterm 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: linuxserver 2 | open_collective: linuxserver 3 | -------------------------------------------------------------------------------- /root/etc/services.d/guacd/run: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | # Run guacd 4 | /usr/sbin/guacd -f -b 0.0.0.0 -l 4822 5 | -------------------------------------------------------------------------------- /root/defaults/startwm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | /usr/bin/pulseaudio --start 3 | /usr/bin/openbox-session > /dev/null 2>&1 4 | -------------------------------------------------------------------------------- /root/etc/services.d/web/run: -------------------------------------------------------------------------------- 1 | #!/usr/bin/with-contenv bash 2 | 3 | cd /gclient || exit 4 | HOME="/config" exec \ 5 | s6-setuidgid abc node app.js 6 | -------------------------------------------------------------------------------- /.github/workflows/permissions.yml: -------------------------------------------------------------------------------- 1 | name: Permission check 2 | on: 3 | pull_request_target: 4 | paths: 5 | - '**/run' 6 | - '**/finish' 7 | - '**/check' 8 | jobs: 9 | permission_check: 10 | uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1 11 | -------------------------------------------------------------------------------- /root/etc/cont-init.d/55-autostart-config: -------------------------------------------------------------------------------- 1 | #!/usr/bin/with-contenv bash 2 | 3 | # default file copies first run 4 | [[ ! -d /config/.config/openbox/autostart ]] && \ 5 | mkdir -p /config/.config/openbox && \ 6 | cp /defaults/autostart /config/.config/openbox/autostart && \ 7 | chown -R abc:abc /config/.config/openbox 8 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Discord chat support 4 | url: https://discord.gg/YWrKVTn 5 | about: Realtime support / chat with the community and the team. 6 | 7 | - name: Discourse discussion forum 8 | url: https://discourse.linuxserver.io 9 | about: Post on our community forum. 10 | 11 | - name: Documentation 12 | url: https://docs.linuxserver.io 13 | about: Documentation - information about all of our containers. 14 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.bug.yml: -------------------------------------------------------------------------------- 1 | # Based on the issue template 2 | name: Bug report 3 | description: Create a report to help us improve 4 | title: "[BUG] " 5 | labels: [Bug] 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | # DEPRECATION NOTICE 11 | 12 | This image is deprecated. We will not offer support for this image and it will not be updated. 13 | 14 | This base image has been replaced by: 15 | https://github.com/linuxserver/docker-baseimage-kasmvnc 16 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.feature.yml: -------------------------------------------------------------------------------- 1 | # Based on the issue template 2 | name: Feature request 3 | description: Suggest an idea for this project 4 | title: "[FEAT] <title>" 5 | labels: [enhancement] 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | # DEPRECATION NOTICE 11 | 12 | This image is deprecated. We will not offer support for this image and it will not be updated. 13 | 14 | This base image has been replaced by: 15 | https://github.com/linuxserver/docker-baseimage-kasmvnc 16 | -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- 1 | name: Greetings 2 | 3 | on: [pull_request_target, issues] 4 | 5 | jobs: 6 | greeting: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/first-interaction@v1 10 | with: 11 | issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.' 12 | pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-baseimage-rdesktop-web/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!' 13 | repo-token: ${{ secrets.GITHUB_TOKEN }} 14 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is globally distributed to all container image projects from 2 | # https://github.com/linuxserver/docker-jenkins-builder/blob/master/.editorconfig 3 | 4 | # top-most EditorConfig file 5 | root = true 6 | 7 | # Unix-style newlines with a newline ending every file 8 | [*] 9 | end_of_line = lf 10 | insert_final_newline = true 11 | # trim_trailing_whitespace may cause unintended issues and should not be globally set true 12 | trim_trailing_whitespace = false 13 | 14 | [{Dockerfile*,**.yml}] 15 | indent_style = space 16 | indent_size = 2 17 | 18 | [{**.sh,root/etc/s6-overlay/s6-rc.d/**,root/etc/cont-init.d/**,root/etc/services.d/**}] 19 | indent_style = space 20 | indent_size = 4 21 | -------------------------------------------------------------------------------- /root/etc/cont-init.d/99-deprecation: -------------------------------------------------------------------------------- 1 | #!/usr/bin/with-contenv bash 2 | # shellcheck shell=bash 3 | 4 | echo ' 5 | ╔════════════════════════════════════════════════════╗ 6 | ╠════════════════════════════════════════════════════╣ 7 | ║ ║ 8 | ║ This image is deprecated. ║ 9 | ║ We will not offer support for this image ║ 10 | ║ and it will not be updated. ║ 11 | ║ ║ 12 | ╠════════════════════════════════════════════════════╣ 13 | ╚════════════════════════════════════════════════════╝ 14 | 15 | This base image has been replaced by: 16 | https://github.com/linuxserver/docker-baseimage-kasmvnc 17 | 18 | 19 | ══════════════════════════════════════════════════════' 20 | -------------------------------------------------------------------------------- /jenkins-vars.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # jenkins variables 4 | project_name: docker-baseimage-rdesktop-web 5 | external_type: github_stable 6 | release_type: stable 7 | release_tag: focal 8 | ls_branch: master 9 | repo_vars: 10 | - EXT_GIT_BRANCH = 'master' 11 | - EXT_USER = 'linuxserver' 12 | - EXT_REPO = 'gclient' 13 | - BUILD_VERSION_ARG = 'XRDP_VERSION' 14 | - LS_USER = 'linuxserver' 15 | - LS_REPO = 'docker-baseimage-rdesktop-web' 16 | - CONTAINER_NAME = 'baseimage-rdesktop-web' 17 | - DOCKERHUB_IMAGE = 'lsiobase/rdesktop-web' 18 | - DEV_DOCKERHUB_IMAGE = 'lsiodev/rdesktop-web-base' 19 | - PR_DOCKERHUB_IMAGE = 'lspipepr/rdesktop-web-base' 20 | - DIST_IMAGE = 'ubuntu' 21 | - MULTIARCH='true' 22 | - CI='true' 23 | - CI_WEB='true' 24 | - CI_PORT='3000' 25 | - CI_SSL='false' 26 | - CI_DELAY='120' 27 | - CI_DOCKERENV='TZ=US/Pacific' 28 | - CI_AUTH='user:password' 29 | - CI_WEBPATH='/?login=true' 30 | -------------------------------------------------------------------------------- /root/etc/services.d/autostart/run: -------------------------------------------------------------------------------- 1 | #!/usr/bin/with-contenv bash 2 | 3 | # set SUBFOLDER to default if unset 4 | if [ -z ${SUBFOLDER+x} ]; then 5 | SUBFOLDER="/" 6 | fi 7 | 8 | # just sleep if autostart is not enabled 9 | if [ -z ${GUIAUTOSTART+x} ]; then 10 | echo "[guac-init] Auto start not set, application start on login" 11 | sleep infinity 12 | # start abc session by sending a token to guacamole via websockets 13 | else 14 | # make sure services are up 15 | until \ 16 | $(true &>/dev/null </dev/tcp/localhost/3350) && \ 17 | $(true &>/dev/null </dev/tcp/localhost/4822) && \ 18 | $(true &>/dev/null </dev/tcp/localhost/${CUSTOM_PORT:=3000}) && 19 | $(true &>/dev/null </dev/tcp/localhost/3389) 20 | do 21 | sleep .5 22 | done 23 | echo "[guac-init] Auto start set, starting application" 24 | sleep 1 25 | # generate a token based on env vars 26 | cd /gclient 27 | TOKEN=$(node maketoken.js) 28 | websocat -q -n ws://localhost:${CUSTOM_PORT:=3000}${SUBFOLDER}guaclite?token=${TOKEN} 29 | sleep infinity 30 | fi 31 | -------------------------------------------------------------------------------- /readme-vars.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # project information 4 | project_name: baseimage-rdesktop-web 5 | 6 | project_deprecation_status: true 7 | project_deprecation_message: | 8 | This base image has been replaced by: 9 | https://github.com/linuxserver/docker-baseimage-kasmvnc 10 | 11 | full_custom_readme: | 12 | {% raw -%} 13 | [linuxserverurl]: https://linuxserver.io 14 | [forumurl]: https://forum.linuxserver.io 15 | [ircurl]: https://www.linuxserver.io/irc/ 16 | 17 | [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png?v=4&s=4000)][linuxserverurl] 18 | 19 | ## Contact information:- 20 | 21 | | Type | Address/Details | 22 | | :---: | --- | 23 | | Discord | [Discord](https://discord.gg/YWrKVTn) | 24 | | IRC | freenode at `#linuxserver.io` more information at:- [IRC][ircurl] 25 | | Forum | [LinuxServer.io forum][forumurl] | 26 | 27 |   28 |   29 | 30 | [![](https://images.microbadger.com/badges/image/lsiobase/rdesktop-web.svg)](https://microbadger.com/images/lsiobase/rdesktop-web "Get your own image badge on microbadger.com") 31 | 32 | [![](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/Dockerfile-Link-green.png)](https://github.com/linuxserver/docker-baseimage-rdesktop-web/blob/master/Dockerfile) 33 | 34 | A custom base image built with [Ubuntu linux](https://www.ubuntu.com/) and [xrdp](http://xrdp.org/) 35 | 36 | The following line is only in this repo for loop testing: 37 | 38 | - { date: "01.01.50:", desc: "I am the release message for this internal repo." } 39 | {%- endraw %} 40 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | <!-- DO NOT EDIT THIS FILE MANUALLY --> 2 | <!-- Please read the https://github.com/linuxserver/docker-baseimage-rdesktop-web/blob/master/.github/CONTRIBUTING.md --> 3 | 4 | # DEPRECATION NOTICE 5 | 6 | This image is deprecated. We will not offer support for this image and it will not be updated. 7 | This base image has been replaced by: 8 | https://github.com/linuxserver/docker-baseimage-kasmvnc 9 | 10 | [linuxserverurl]: https://linuxserver.io 11 | [forumurl]: https://forum.linuxserver.io 12 | [ircurl]: https://www.linuxserver.io/irc/ 13 | 14 | [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png?v=4&s=4000)][linuxserverurl] 15 | 16 | ## Contact information:- 17 | 18 | | Type | Address/Details | 19 | | :---: | --- | 20 | | Discord | [Discord](https://discord.gg/YWrKVTn) | 21 | | IRC | freenode at `#linuxserver.io` more information at:- [IRC][ircurl] 22 | | Forum | [LinuxServer.io forum][forumurl] | 23 | 24 |   25 |   26 | 27 | [![](https://images.microbadger.com/badges/image/lsiobase/rdesktop-web.svg)](https://microbadger.com/images/lsiobase/rdesktop-web "Get your own image badge on microbadger.com") 28 | 29 | [![](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/Dockerfile-Link-green.png)](https://github.com/linuxserver/docker-baseimage-rdesktop-web/blob/master/Dockerfile) 30 | 31 | A custom base image built with [Ubuntu linux](https://www.ubuntu.com/) and [xrdp](http://xrdp.org/) 32 | 33 | The following line is only in this repo for loop testing: 34 | 35 | - { date: "01.01.50:", desc: "I am the release message for this internal repo." } 36 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # DEPRECATION NOTICE 2 | 3 | This image is deprecated. We will not offer support for this image and it will not be updated. 4 | This base image has been replaced by: 5 | https://github.com/linuxserver/docker-baseimage-kasmvnc 6 | 7 | <!--- Provide a general summary of your changes in the Title above --> 8 | 9 | [linuxserverurl]: https://linuxserver.io 10 | [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] 11 | 12 | 13 | <!--- Before submitting a pull request please check the following --> 14 | 15 | <!--- If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR --> 16 | <!--- Ask yourself if this modification is something the whole userbase will benefit from, if this is a specific change for corner case functionality or plugins please look at making a Docker Mod or local script https://blog.linuxserver.io/2019/09/14/customizing-our-containers/ --> 17 | <!--- That if the PR is addressing an existing issue include, closes #<issue number> , in the body of the PR commit message --> 18 | <!--- You have included links to any files / patches etc your PR may be using in the body of the PR commit message --> 19 | <!--- We maintain a changelog of major revisions to the container at the end of readme-vars.yml in the root of this repository, please add your changes there if appropriate --> 20 | 21 | 22 | <!--- Coding guidelines: --> 23 | <!--- 1. Installed packages in the Dockerfiles should be in alphabetical order --> 24 | <!--- 2. Changes to Dockerfile should be replicated in Dockerfile.armhf and Dockerfile.aarch64 if applicable --> 25 | <!--- 3. Indentation style (tabs vs 4 spaces vs 1 space) should match the rest of the document --> 26 | <!--- 4. Readme is auto generated from readme-vars.yml, make your changes there --> 27 | 28 | ------------------------------ 29 | 30 | - [ ] I have read the [contributing](https://github.com/linuxserver/docker-baseimage-rdesktop-web/blob/master/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications 31 | 32 | ------------------------------ 33 | 34 | <!--- We welcome all PR’s though this doesn’t guarantee it will be accepted. --> 35 | 36 | ## Description: 37 | <!--- Describe your changes in detail --> 38 | 39 | ## Benefits of this PR and context: 40 | <!--- Please explain why we should accept this PR. If this fixes an outstanding bug, please reference the issue # --> 41 | 42 | ## How Has This Been Tested? 43 | <!--- Please describe in detail how you tested your changes. --> 44 | <!--- Include details of your testing environment, and the tests you ran to --> 45 | <!--- see how your change affects other areas of the code, etc. --> 46 | 47 | 48 | ## Source / References: 49 | <!--- Please include any forum posts/github links relevant to the PR --> 50 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/linuxserver/baseimage-ubuntu:focal as builder 2 | 3 | ARG GUACD_VERSION=1.1.0 4 | 5 | COPY /buildroot / 6 | 7 | RUN \ 8 | echo "**** install build deps ****" && \ 9 | apt-get update && \ 10 | apt-get install -qy --no-install-recommends \ 11 | autoconf \ 12 | automake \ 13 | checkinstall \ 14 | freerdp2-dev \ 15 | g++ \ 16 | gcc \ 17 | git \ 18 | libavcodec-dev \ 19 | libavutil-dev \ 20 | libcairo2-dev \ 21 | libjpeg-turbo8-dev \ 22 | libogg-dev \ 23 | libossp-uuid-dev \ 24 | libpulse-dev \ 25 | libssl-dev \ 26 | libswscale-dev \ 27 | libtool \ 28 | libvorbis-dev \ 29 | libwebsockets-dev \ 30 | libwebp-dev \ 31 | make 32 | 33 | RUN \ 34 | echo "**** prep build ****" && \ 35 | mkdir /tmp/guacd && \ 36 | git clone https://github.com/apache/guacamole-server.git /tmp/guacd && \ 37 | echo "**** build guacd ****" && \ 38 | cd /tmp/guacd && \ 39 | git checkout ${GUACD_VERSION} && \ 40 | autoreconf -fi && \ 41 | ./configure --prefix=/usr && \ 42 | make -j 2 && \ 43 | mkdir -p /tmp/out && \ 44 | /usr/bin/list-dependencies.sh \ 45 | "/tmp/guacd/src/guacd/.libs/guacd" \ 46 | $(find /tmp/guacd | grep "so$") \ 47 | > /tmp/out/DEPENDENCIES && \ 48 | PREFIX=/usr checkinstall \ 49 | -y \ 50 | -D \ 51 | --nodoc \ 52 | --pkgname guacd \ 53 | --pkgversion "${GUACD_VERSION}" \ 54 | --pakdir /tmp \ 55 | --exclude "/usr/share/man","/usr/include","/etc" && \ 56 | mkdir -p /tmp/out && \ 57 | mv \ 58 | /tmp/guacd_${GUACD_VERSION}-*.deb \ 59 | /tmp/out/guacd_${GUACD_VERSION}.deb 60 | 61 | # nodejs builder 62 | FROM ghcr.io/linuxserver/baseimage-ubuntu:focal as nodebuilder 63 | ARG GCLIENT_RELEASE 64 | 65 | RUN \ 66 | echo "**** install build deps ****" && \ 67 | apt-get update && \ 68 | apt-get install -y \ 69 | gnupg && \ 70 | curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \ 71 | echo 'deb https://deb.nodesource.com/node_14.x focal main' \ 72 | > /etc/apt/sources.list.d/nodesource.list && \ 73 | apt-get update && \ 74 | apt-get install -y \ 75 | g++ \ 76 | gcc \ 77 | libpam0g-dev \ 78 | make \ 79 | nodejs 80 | 81 | RUN \ 82 | echo "**** grab source ****" && \ 83 | mkdir -p /gclient && \ 84 | curl -o \ 85 | /tmp/gclient.tar.gz -L \ 86 | "https://github.com/linuxserver/gclient/archive/1.1.2.tar.gz" && \ 87 | tar xf \ 88 | /tmp/gclient.tar.gz -C \ 89 | /gclient/ --strip-components=1 90 | 91 | RUN \ 92 | echo "**** install node modules ****" && \ 93 | cd /gclient && \ 94 | npm install 95 | 96 | # runtime stage 97 | FROM ghcr.io/linuxserver/baseimage-rdesktop:focal 98 | 99 | # set version label 100 | ARG BUILD_DATE 101 | ARG VERSION 102 | ARG GUACD_VERSION=1.1.0 103 | LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" 104 | LABEL maintainer="thelamer" 105 | 106 | # Copy build outputs 107 | COPY --from=builder /tmp/out /tmp/out 108 | COPY --from=nodebuilder /gclient /gclient 109 | 110 | RUN \ 111 | echo "**** install guacd ****" && \ 112 | dpkg --path-include=/usr/share/doc/${PKG_NAME}/* \ 113 | -i /tmp/out/guacd_${GUACD_VERSION}.deb && \ 114 | echo "**** install packages ****" && \ 115 | apt-get update && \ 116 | apt-get install -y \ 117 | gnupg && \ 118 | curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \ 119 | echo 'deb https://deb.nodesource.com/node_14.x focal main' \ 120 | > /etc/apt/sources.list.d/nodesource.list && \ 121 | apt-get update && \ 122 | DEBIAN_FRONTEND=noninteractive \ 123 | apt-get install --no-install-recommends -y \ 124 | ca-certificates \ 125 | libfreerdp2-2 \ 126 | libfreerdp-client2-2 \ 127 | libossp-uuid16 \ 128 | nodejs \ 129 | obconf \ 130 | openbox \ 131 | python \ 132 | xterm && \ 133 | apt-get install -qy --no-install-recommends \ 134 | $(cat /tmp/out/DEPENDENCIES) && \ 135 | echo "**** grab websocat ****" && \ 136 | WEBSOCAT_RELEASE=$(curl -sX GET "https://api.github.com/repos/vi/websocat/releases/latest" \ 137 | | awk '/tag_name/{print $4;exit}' FS='[""]'); \ 138 | curl -o \ 139 | /usr/bin/websocat -fL \ 140 | "https://github.com/vi/websocat/releases/download/${WEBSOCAT_RELEASE}/websocat.x86_64-unknown-linux-musl" && \ 141 | chmod +x /usr/bin/websocat && \ 142 | echo "**** cleanup ****" && \ 143 | apt-get autoclean && \ 144 | rm -rf \ 145 | /var/lib/apt/lists/* \ 146 | /var/tmp/* \ 147 | /tmp/* 148 | 149 | # add local files 150 | COPY /root / 151 | 152 | # ports and volumes 153 | EXPOSE 3000 154 | VOLUME /config 155 | -------------------------------------------------------------------------------- /Dockerfile.armhf: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-focal as builder 2 | 3 | ARG GUACD_VERSION=1.1.0 4 | 5 | COPY /buildroot / 6 | 7 | RUN \ 8 | echo "**** install build deps ****" && \ 9 | apt-get update && \ 10 | apt-get install -qy --no-install-recommends \ 11 | autoconf \ 12 | automake \ 13 | checkinstall \ 14 | freerdp2-dev \ 15 | g++ \ 16 | gcc \ 17 | git \ 18 | libavcodec-dev \ 19 | libavutil-dev \ 20 | libcairo2-dev \ 21 | libjpeg-turbo8-dev \ 22 | libogg-dev \ 23 | libossp-uuid-dev \ 24 | libpulse-dev \ 25 | libssl-dev \ 26 | libswscale-dev \ 27 | libtool \ 28 | libvorbis-dev \ 29 | libwebsockets-dev \ 30 | libwebp-dev \ 31 | make 32 | 33 | RUN \ 34 | echo "**** prep build ****" && \ 35 | mkdir /tmp/guacd && \ 36 | git clone https://github.com/apache/guacamole-server.git /tmp/guacd && \ 37 | echo "**** build guacd ****" && \ 38 | cd /tmp/guacd && \ 39 | git checkout ${GUACD_VERSION} && \ 40 | autoreconf -fi && \ 41 | ./configure --prefix=/usr && \ 42 | make -j 2 && \ 43 | mkdir -p /tmp/out && \ 44 | /usr/bin/list-dependencies.sh \ 45 | "/tmp/guacd/src/guacd/.libs/guacd" \ 46 | $(find /tmp/guacd | grep "so$") \ 47 | > /tmp/out/DEPENDENCIES && \ 48 | PREFIX=/usr checkinstall \ 49 | -y \ 50 | -D \ 51 | --nodoc \ 52 | --pkgname guacd \ 53 | --pkgversion "${GUACD_VERSION}" \ 54 | --pakdir /tmp \ 55 | --exclude "/usr/share/man","/usr/include","/etc" && \ 56 | mkdir -p /tmp/out && \ 57 | mv \ 58 | /tmp/guacd_${GUACD_VERSION}-*.deb \ 59 | /tmp/out/guacd_${GUACD_VERSION}.deb 60 | 61 | # nodejs builder 62 | FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-focal as nodebuilder 63 | ARG GCLIENT_RELEASE 64 | 65 | RUN \ 66 | echo "**** install build deps ****" && \ 67 | apt-get update && \ 68 | apt-get install -y \ 69 | gnupg && \ 70 | curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \ 71 | echo 'deb https://deb.nodesource.com/node_14.x focal main' \ 72 | > /etc/apt/sources.list.d/nodesource.list && \ 73 | apt-get update && \ 74 | apt-get install -y \ 75 | g++ \ 76 | gcc \ 77 | libpam0g-dev \ 78 | make \ 79 | nodejs 80 | 81 | RUN \ 82 | echo "**** grab source ****" && \ 83 | mkdir -p /gclient && \ 84 | curl -o \ 85 | /tmp/gclient.tar.gz -L \ 86 | "https://github.com/linuxserver/gclient/archive/1.1.2.tar.gz" && \ 87 | tar xf \ 88 | /tmp/gclient.tar.gz -C \ 89 | /gclient/ --strip-components=1 90 | 91 | RUN \ 92 | echo "**** install node modules ****" && \ 93 | cd /gclient && \ 94 | npm install 95 | 96 | # runtime stage 97 | FROM ghcr.io/linuxserver/baseimage-rdesktop:focal 98 | 99 | # set version label 100 | ARG BUILD_DATE 101 | ARG VERSION 102 | ARG GUACD_VERSION=1.1.0 103 | LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" 104 | LABEL maintainer="thelamer" 105 | 106 | # Copy build outputs 107 | COPY --from=builder /tmp/out /tmp/out 108 | COPY --from=nodebuilder /gclient /gclient 109 | 110 | RUN \ 111 | echo "**** install guacd ****" && \ 112 | dpkg --path-include=/usr/share/doc/${PKG_NAME}/* \ 113 | -i /tmp/out/guacd_${GUACD_VERSION}.deb && \ 114 | echo "**** install packages ****" && \ 115 | apt-get update && \ 116 | apt-get install -y \ 117 | gnupg && \ 118 | curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \ 119 | echo 'deb https://deb.nodesource.com/node_14.x focal main' \ 120 | > /etc/apt/sources.list.d/nodesource.list && \ 121 | apt-get update && \ 122 | DEBIAN_FRONTEND=noninteractive \ 123 | apt-get install --no-install-recommends -y \ 124 | ca-certificates \ 125 | libfreerdp2-2 \ 126 | libfreerdp-client2-2 \ 127 | libossp-uuid16 \ 128 | nodejs \ 129 | obconf \ 130 | openbox \ 131 | python \ 132 | xterm && \ 133 | apt-get install -qy --no-install-recommends \ 134 | $(cat /tmp/out/DEPENDENCIES) && \ 135 | echo "**** grab websocat ****" && \ 136 | WEBSOCAT_RELEASE=$(curl -sX GET "https://api.github.com/repos/vi/websocat/releases/latest" \ 137 | | awk '/tag_name/{print $4;exit}' FS='[""]'); \ 138 | curl -o \ 139 | /usr/bin/websocat -fL \ 140 | "https://github.com/vi/websocat/releases/download/${WEBSOCAT_RELEASE}/websocat.arm-unknown-linux-musleabi" && \ 141 | chmod +x /usr/bin/websocat && \ 142 | echo "**** cleanup ****" && \ 143 | apt-get autoclean && \ 144 | rm -rf \ 145 | /var/lib/apt/lists/* \ 146 | /var/tmp/* \ 147 | /tmp/* 148 | 149 | # add local files 150 | COPY /root / 151 | 152 | # ports and volumes 153 | EXPOSE 3000 154 | VOLUME /config 155 | -------------------------------------------------------------------------------- /Dockerfile.aarch64: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-focal as builder 2 | 3 | ARG GUACD_VERSION=1.1.0 4 | 5 | COPY /buildroot / 6 | 7 | RUN \ 8 | echo "**** install build deps ****" && \ 9 | apt-get update && \ 10 | apt-get install -qy --no-install-recommends \ 11 | autoconf \ 12 | automake \ 13 | checkinstall \ 14 | freerdp2-dev \ 15 | g++ \ 16 | gcc \ 17 | git \ 18 | libavcodec-dev \ 19 | libavutil-dev \ 20 | libcairo2-dev \ 21 | libjpeg-turbo8-dev \ 22 | libogg-dev \ 23 | libossp-uuid-dev \ 24 | libpulse-dev \ 25 | libssl-dev \ 26 | libswscale-dev \ 27 | libtool \ 28 | libvorbis-dev \ 29 | libwebsockets-dev \ 30 | libwebp-dev \ 31 | make 32 | 33 | RUN \ 34 | echo "**** prep build ****" && \ 35 | mkdir /tmp/guacd && \ 36 | git clone https://github.com/apache/guacamole-server.git /tmp/guacd && \ 37 | echo "**** build guacd ****" && \ 38 | cd /tmp/guacd && \ 39 | git checkout ${GUACD_VERSION} && \ 40 | autoreconf -fi && \ 41 | ./configure --prefix=/usr && \ 42 | make -j 2 && \ 43 | mkdir -p /tmp/out && \ 44 | /usr/bin/list-dependencies.sh \ 45 | "/tmp/guacd/src/guacd/.libs/guacd" \ 46 | $(find /tmp/guacd | grep "so$") \ 47 | > /tmp/out/DEPENDENCIES && \ 48 | PREFIX=/usr checkinstall \ 49 | -y \ 50 | -D \ 51 | --nodoc \ 52 | --pkgname guacd \ 53 | --pkgversion "${GUACD_VERSION}" \ 54 | --pakdir /tmp \ 55 | --exclude "/usr/share/man","/usr/include","/etc" && \ 56 | mkdir -p /tmp/out && \ 57 | mv \ 58 | /tmp/guacd_${GUACD_VERSION}-*.deb \ 59 | /tmp/out/guacd_${GUACD_VERSION}.deb 60 | 61 | # nodejs builder 62 | FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-focal as nodebuilder 63 | ARG GCLIENT_RELEASE 64 | 65 | RUN \ 66 | echo "**** install build deps ****" && \ 67 | apt-get update && \ 68 | apt-get install -y \ 69 | gnupg && \ 70 | curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \ 71 | echo 'deb https://deb.nodesource.com/node_14.x focal main' \ 72 | > /etc/apt/sources.list.d/nodesource.list && \ 73 | apt-get update && \ 74 | apt-get install -y \ 75 | g++ \ 76 | gcc \ 77 | libpam0g-dev \ 78 | make \ 79 | nodejs 80 | 81 | RUN \ 82 | echo "**** grab source ****" && \ 83 | mkdir -p /gclient && \ 84 | curl -o \ 85 | /tmp/gclient.tar.gz -L \ 86 | "https://github.com/linuxserver/gclient/archive/1.1.2.tar.gz" && \ 87 | tar xf \ 88 | /tmp/gclient.tar.gz -C \ 89 | /gclient/ --strip-components=1 90 | 91 | RUN \ 92 | echo "**** install node modules ****" && \ 93 | cd /gclient && \ 94 | npm install 95 | 96 | # runtime stage 97 | FROM ghcr.io/linuxserver/baseimage-rdesktop:arm64v8-focal 98 | 99 | # set version label 100 | ARG BUILD_DATE 101 | ARG VERSION 102 | ARG GUACD_VERSION=1.1.0 103 | LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" 104 | LABEL maintainer="thelamer" 105 | 106 | # Copy build outputs 107 | COPY --from=builder /tmp/out /tmp/out 108 | COPY --from=nodebuilder /gclient /gclient 109 | 110 | RUN \ 111 | echo "**** install guacd ****" && \ 112 | dpkg --path-include=/usr/share/doc/${PKG_NAME}/* \ 113 | -i /tmp/out/guacd_${GUACD_VERSION}.deb && \ 114 | echo "**** install packages ****" && \ 115 | apt-get update && \ 116 | apt-get install -y \ 117 | gnupg && \ 118 | curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \ 119 | echo 'deb https://deb.nodesource.com/node_14.x focal main' \ 120 | > /etc/apt/sources.list.d/nodesource.list && \ 121 | apt-get update && \ 122 | DEBIAN_FRONTEND=noninteractive \ 123 | apt-get install --no-install-recommends -y \ 124 | ca-certificates \ 125 | libfreerdp2-2 \ 126 | libfreerdp-client2-2 \ 127 | libossp-uuid16 \ 128 | nodejs \ 129 | obconf \ 130 | openbox \ 131 | python \ 132 | xterm && \ 133 | apt-get install -qy --no-install-recommends \ 134 | $(cat /tmp/out/DEPENDENCIES) && \ 135 | echo "**** grab websocat ****" && \ 136 | WEBSOCAT_RELEASE=$(curl -sX GET "https://api.github.com/repos/vi/websocat/releases/latest" \ 137 | | awk '/tag_name/{print $4;exit}' FS='[""]'); \ 138 | curl -o \ 139 | /usr/bin/websocat -fL \ 140 | "https://github.com/vi/websocat/releases/download/${WEBSOCAT_RELEASE}/websocat.aarch64-unknown-linux-musl" && \ 141 | chmod +x /usr/bin/websocat && \ 142 | echo "**** cleanup ****" && \ 143 | apt-get autoclean && \ 144 | rm -rf \ 145 | /var/lib/apt/lists/* \ 146 | /var/tmp/* \ 147 | /tmp/* 148 | 149 | # add local files 150 | COPY /root / 151 | 152 | # ports and volumes 153 | EXPOSE 3000 154 | VOLUME /config 155 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to baseimage-rdesktop-web 2 | 3 | ## Gotchas 4 | 5 | * While contributing make sure to make all your changes before creating a Pull Request, as our pipeline builds each commit after the PR is open. 6 | * Read, and fill the Pull Request template 7 | * If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR 8 | * If the PR is addressing an existing issue include, closes #\<issue number>, in the body of the PR commit message 9 | * If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://discord.gg/YWrKVTn) 10 | 11 | ## Common files 12 | 13 | | File | Use case | 14 | | :----: | --- | 15 | | `Dockerfile` | Dockerfile used to build amd64 images | 16 | | `Dockerfile.aarch64` | Dockerfile used to build 64bit ARM architectures | 17 | | `Dockerfile.armhf` | Dockerfile used to build 32bit ARM architectures | 18 | | `Jenkinsfile` | This file is a product of our builder and should not be edited directly. This is used to build the image | 19 | | `jenkins-vars.yml` | This file is used to generate the `Jenkinsfile` mentioned above, it only affects the build-process | 20 | | `package_versions.txt` | This file is generated as a part of the build-process and should not be edited directly. It lists all the installed packages and their versions | 21 | | `README.md` | This file is a product of our builder and should not be edited directly. This displays the readme for the repository and image registries | 22 | | `readme-vars.yml` | This file is used to generate the `README.md` | 23 | 24 | ## Readme 25 | 26 | If you would like to change our readme, please __**do not**__ directly edit the readme, as it is auto-generated on each commit. 27 | Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-baseimage-rdesktop-web/edit/master/readme-vars.yml). 28 | 29 | These variables are used in a template for our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) as part of an ansible play. 30 | Most of these variables are also carried over to [docs.linuxserver.io](https://docs.linuxserver.io) 31 | 32 | ### Fixing typos or clarify the text in the readme 33 | 34 | There are variables for multiple parts of the readme, the most common ones are: 35 | 36 | | Variable | Description | 37 | | :----: | --- | 38 | | `project_blurb` | This is the short excerpt shown above the project logo. | 39 | | `app_setup_block` | This is the text that shows up under "Application Setup" if enabled | 40 | 41 | ### Parameters 42 | 43 | The compose and run examples are also generated from these variables. 44 | 45 | We have a [reference file](https://github.com/linuxserver/docker-jenkins-builder/blob/master/vars/_container-vars-blank) in our Jenkins Builder. 46 | 47 | These are prefixed with `param_` for required parameters, or `opt_param` for optional parameters, except for `cap_add`. 48 | Remember to enable param, if currently disabled. This differs between parameters, and can be seen in the reference file. 49 | 50 | Devices, environment variables, ports and volumes expects its variables in a certain way. 51 | 52 | ### Devices 53 | 54 | ```yml 55 | param_devices: 56 | - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "For hardware transcoding" } 57 | opt_param_devices: 58 | - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "For hardware transcoding" } 59 | ``` 60 | 61 | ### Environment variables 62 | 63 | ```yml 64 | param_env_vars: 65 | - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." } 66 | opt_param_env_vars: 67 | - { env_var: "VERSION", env_value: "latest", desc: "Supported values are LATEST, PLEXPASS or a specific version number." } 68 | ``` 69 | 70 | ### Ports 71 | 72 | ```yml 73 | param_ports: 74 | - { external_port: "80", internal_port: "80", port_desc: "Application WebUI" } 75 | opt_param_ports: 76 | - { external_port: "80", internal_port: "80", port_desc: "Application WebUI" } 77 | ``` 78 | 79 | ### Volumes 80 | 81 | ```yml 82 | param_volumes: 83 | - { vol_path: "/config", vol_host_path: "</path/to/appdata/config>", desc: "Configuration files." } 84 | opt_param_volumes: 85 | - { vol_path: "/config", vol_host_path: "</path/to/appdata/config>", desc: "Configuration files." } 86 | ``` 87 | 88 | ### Testing template changes 89 | 90 | After you make any changes to the templates, you can use our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) to have the files updated from the modified templates. Please use the command found under `Running Locally` [on this page](https://github.com/linuxserver/docker-jenkins-builder/blob/master/README.md) to generate them prior to submitting a PR. 91 | 92 | ## Dockerfiles 93 | 94 | We use multiple Dockerfiles in our repos, this is because sometimes some CPU architectures needs different packages to work. 95 | If you are proposing additional packages to be added, ensure that you added the packages to all the Dockerfiles in alphabetical order. 96 | 97 | ### Testing your changes 98 | 99 | ```bash 100 | git clone https://github.com/linuxserver/docker-baseimage-rdesktop-web.git 101 | cd docker-baseimage-rdesktop-web 102 | docker build \ 103 | --no-cache \ 104 | --pull \ 105 | -t linuxserver/baseimage-rdesktop-web:latest . 106 | ``` 107 | 108 | The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` 109 | 110 | ```bash 111 | docker run --rm --privileged multiarch/qemu-user-static:register --reset 112 | ``` 113 | 114 | Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`. 115 | 116 | ## Update the changelog 117 | 118 | If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-baseimage-rdesktop-web/tree/master/root), add an entry to the changelog 119 | 120 | ```yml 121 | changelogs: 122 | - { date: "DD.MM.YY:", desc: "Added some love to templates" } 123 | ``` 124 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | <one line to give the program's name and a brief idea of what it does.> 635 | Copyright (C) <year> <name of author> 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see <https://www.gnu.org/licenses/>. 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | <program> Copyright (C) <year> <name of author> 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | <https://www.gnu.org/licenses/>. 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | <https://www.gnu.org/licenses/why-not-lgpl.html>. 675 | -------------------------------------------------------------------------------- /package_versions.txt: -------------------------------------------------------------------------------- 1 | NAME VERSION TYPE 2 | @iarna/cli 2.1.0 npm 3 | @mapbox/node-pre-gyp 1.0.5 npm 4 | @socket.io/component-emitter 3.1.0 npm 5 | @types/cookie 0.4.1 npm 6 | @types/cors 2.8.13 npm 7 | @types/node 18.16.0 npm 8 | GClient 1.1.2 npm 9 | JSONStream 1.3.5 npm 10 | PyGObject 3.36.0 python 11 | abbrev 1.1.1 npm 12 | accepts 1.3.8 npm 13 | adduser 3.118ubuntu2 deb 14 | adwaita-icon-theme 3.36.1-2ubuntu0.20.04.2 deb 15 | agent-base 4.2.1 npm 16 | agent-base 4.3.0 npm 17 | agent-base 6.0.2 npm 18 | agentkeepalive 3.5.2 npm 19 | ajv 6.12.6 npm 20 | ansi-align 2.0.0 npm 21 | ansi-regex 2.1.1 npm 22 | ansi-regex 3.0.0 npm 23 | ansi-regex 4.1.0 npm 24 | ansi-regex 4.1.1 npm 25 | ansi-regex 5.0.1 npm 26 | ansi-styles 3.2.1 npm 27 | ansi-styles 4.3.0 npm 28 | ansicolors 0.3.2 npm 29 | ansistyles 0.1.3 npm 30 | aproba 1.2.0 npm 31 | aproba 2.0.0 npm 32 | apt 2.0.9 deb 33 | apt-transport-https 2.0.9 deb 34 | apt-utils 2.0.9 deb 35 | archy 1.0.0 npm 36 | are-we-there-yet 1.1.4 npm 37 | are-we-there-yet 1.1.7 npm 38 | argparse 1.2.1 python 39 | array-flatten 1.1.1 npm 40 | asap 2.0.6 npm 41 | asn1 0.2.6 npm 42 | assert-plus 1.0.0 npm 43 | async 3.2.4 npm 44 | asynckit 0.4.0 npm 45 | aws-sign2 0.7.0 npm 46 | aws4 1.11.0 npm 47 | balanced-match 1.0.2 npm 48 | base-files 11ubuntu5.5 deb 49 | base-passwd 3.5.47 deb 50 | base64id 2.0.0 npm 51 | bash 5.0-6ubuntu1.1 deb 52 | bcrypt-pbkdf 1.0.2 npm 53 | bin-links 1.1.8 npm 54 | bindings 1.5.0 npm 55 | bluebird 3.7.2 npm 56 | body-parser 1.20.1 npm 57 | body-parser 1.20.2 npm 58 | boxen 1.3.0 npm 59 | brace-expansion 1.1.11 npm 60 | brace-expansion 2.0.1 npm 61 | bsdmainutils 11.1.2ubuntu3 deb 62 | bsdutils 1:2.34-0.1ubuntu9.3 deb 63 | buffer-from 1.0.0 npm 64 | builtins 1.0.3 npm 65 | byline 5.0.0 npm 66 | byte-size 5.0.1 npm 67 | bytes 3.1.2 npm 68 | bzip2 1.0.8-2 deb 69 | ca-certificates 20211016ubuntu0.20.04.1 deb 70 | cacache 12.0.4 npm 71 | call-bind 1.0.2 npm 72 | call-limit 1.1.1 npm 73 | camelcase 4.1.0 npm 74 | camelcase 5.3.1 npm 75 | capture-stack-trace 1.0.0 npm 76 | caseless 0.12.0 npm 77 | certifi 2019.11.28 python 78 | chalk 2.4.1 npm 79 | chalk 4.1.2 npm 80 | chardet 3.0.4 python 81 | chownr 1.1.4 npm 82 | chownr 2.0.0 npm 83 | ci-info 1.6.0 npm 84 | ci-info 2.0.0 npm 85 | cidr-regex 2.0.10 npm 86 | cli-boxes 1.0.0 npm 87 | cli-columns 3.1.2 npm 88 | cli-table3 0.5.1 npm 89 | cliui 5.0.0 npm 90 | cliui 6.0.0 npm 91 | clone 1.0.4 npm 92 | cmd-shim 3.0.3 npm 93 | code-point-at 1.1.0 npm 94 | color-convert 1.9.1 npm 95 | color-convert 2.0.1 npm 96 | color-name 1.1.3 npm 97 | color-name 1.1.4 npm 98 | colors 1.3.3 npm 99 | columnify 1.5.4 npm 100 | combined-stream 1.0.8 npm 101 | concat-map 0.0.1 npm 102 | concat-stream 1.6.2 npm 103 | config-chain 1.1.13 npm 104 | configstore 3.1.5 npm 105 | console-control-strings 1.1.0 npm 106 | content-disposition 0.5.4 npm 107 | content-type 1.0.5 npm 108 | cookie 0.4.2 npm 109 | cookie 0.5.0 npm 110 | cookie-signature 1.0.6 npm 111 | copy-concurrently 1.0.5 npm 112 | core-util-is 1.0.2 npm 113 | core-util-is 1.0.3 npm 114 | corepack 0.15.1 npm 115 | coreutils 8.30-3ubuntu2 deb 116 | cors 2.8.5 npm 117 | cpp 4:9.3.0-1ubuntu2 deb 118 | cpp-9 9.4.0-1ubuntu1~20.04.1 deb 119 | create-error-class 3.0.2 npm 120 | cross-spawn 5.1.0 npm 121 | crypto-random-string 1.0.0 npm 122 | curl 7.68.0-1ubuntu2.18 deb 123 | cyclist 0.2.2 npm 124 | dash 0.5.10.2-6 deb 125 | dashdash 1.14.1 npm 126 | dbus 1.12.16-2ubuntu2.3 deb 127 | dbus-python 1.2.16 python 128 | dbus-x11 1.12.16-2ubuntu2.3 deb 129 | dconf-gsettings-backend 0.36.0-1 deb 130 | dconf-service 0.36.0-1 deb 131 | debconf 1.5.73 deb 132 | debianutils 4.9.1 deb 133 | debug 2.6.9 npm 134 | debug 3.1.0 npm 135 | debug 4.3.4 npm 136 | debuglog 1.0.1 npm 137 | decamelize 1.2.0 npm 138 | decode-uri-component 0.2.2 npm 139 | deep-extend 0.4.2 npm 140 | deep-extend 0.6.0 npm 141 | defaults 1.0.3 npm 142 | define-properties 1.1.3 npm 143 | delayed-stream 1.0.0 npm 144 | delegates 1.0.0 npm 145 | depd 2.0.0 npm 146 | destroy 1.2.0 npm 147 | detect-indent 5.0.0 npm 148 | detect-libc 1.0.3 npm 149 | detect-newline 2.1.0 npm 150 | dezalgo 1.0.4 npm 151 | diffutils 1:3.7-3 deb 152 | dirmngr 2.2.19-3ubuntu2.2 deb 153 | distro-info-data 0.43ubuntu1.12 deb 154 | docker-ce-cli 5:23.0.4-1~ubuntu.18.04~bionic deb 155 | dot-prop 4.2.1 npm 156 | dotenv 5.0.1 npm 157 | dpkg 1.19.7ubuntu3 deb 158 | duplexer3 0.1.4 npm 159 | duplexify 3.6.0 npm 160 | e2fsprogs 1.45.5-2ubuntu1 deb 161 | ecc-jsbn 0.1.2 npm 162 | editor 1.0.0 npm 163 | ee-first 1.1.1 npm 164 | ejs 3.1.9 npm 165 | emoji-regex 7.0.3 npm 166 | emoji-regex 8.0.0 npm 167 | encodeurl 1.0.2 npm 168 | encoding 0.1.12 npm 169 | end-of-stream 1.4.1 npm 170 | engine.io 6.4.1 npm 171 | engine.io-parser 5.0.6 npm 172 | env-paths 2.2.1 npm 173 | err-code 1.1.2 npm 174 | errno 0.1.7 npm 175 | es-abstract 1.12.0 npm 176 | es-to-primitive 1.2.0 npm 177 | es6-promise 4.2.8 npm 178 | es6-promisify 5.0.0 npm 179 | escape-html 1.0.3 npm 180 | escape-string-regexp 1.0.5 npm 181 | etag 1.8.1 npm 182 | execa 0.7.0 npm 183 | express 4.18.2 npm 184 | extend 3.0.2 npm 185 | extsprintf 1.3.0 npm 186 | fast-deep-equal 3.1.3 npm 187 | fast-json-stable-stringify 2.0.0 npm 188 | fdisk 2.34-0.1ubuntu9.3 deb 189 | figgy-pudding 3.5.2 npm 190 | file-uri-to-path 1.0.0 npm 191 | filelist 1.0.4 npm 192 | filter-obj 1.1.0 npm 193 | finalhandler 1.2.0 npm 194 | find-npm-prefix 1.0.2 npm 195 | find-up 3.0.0 npm 196 | find-up 4.1.0 npm 197 | findutils 4.7.0-1ubuntu1 deb 198 | flush-write-stream 1.0.3 npm 199 | fontconfig 2.13.1-2ubuntu3 deb 200 | fontconfig-config 2.13.1-2ubuntu3 deb 201 | fonts-dejavu-core 2.37-1 deb 202 | forever-agent 0.6.1 npm 203 | form-data 2.3.3 npm 204 | forwarded 0.2.0 npm 205 | fresh 0.5.2 npm 206 | from2 1.3.0 npm 207 | from2 2.3.0 npm 208 | fs-minipass 1.2.7 npm 209 | fs-minipass 2.1.0 npm 210 | fs-vacuum 1.2.10 npm 211 | fs-write-stream-atomic 1.0.10 npm 212 | fs.realpath 1.0.0 npm 213 | function-bind 1.1.1 npm 214 | gauge 2.7.4 npm 215 | gawk 1:5.0.1+dfsg-1 deb 216 | gcc-10-base 10.3.0-1ubuntu1~20.04 deb 217 | gcc-9-base 9.4.0-1ubuntu1~20.04.1 deb 218 | genfun 5.0.0 npm 219 | gentle-fs 2.3.1 npm 220 | get-caller-file 2.0.5 npm 221 | get-intrinsic 1.2.0 npm 222 | get-stream 3.0.0 npm 223 | get-stream 4.1.0 npm 224 | getpass 0.1.7 npm 225 | gir1.2-glib-2.0 1.64.1-1~ubuntu20.04.1 deb 226 | gir1.2-packagekitglib-1.0 1.1.13-2ubuntu1.1 deb 227 | github.com/docker/cli/cmd/docker (devel) go-module 228 | glib-networking 2.64.2-1ubuntu0.1 deb 229 | glib-networking-common 2.64.2-1ubuntu0.1 deb 230 | glib-networking-services 2.64.2-1ubuntu0.1 deb 231 | glob 7.2.3 npm 232 | global-dirs 0.1.1 npm 233 | gnupg 2.2.19-3ubuntu2.2 deb 234 | gnupg-l10n 2.2.19-3ubuntu2.2 deb 235 | gnupg-utils 2.2.19-3ubuntu2.2 deb 236 | gnupg2 2.2.19-3ubuntu2.2 deb 237 | got 6.7.1 npm 238 | gpg 2.2.19-3ubuntu2.2 deb 239 | gpg-agent 2.2.19-3ubuntu2.2 deb 240 | gpg-wks-client 2.2.19-3ubuntu2.2 deb 241 | gpg-wks-server 2.2.19-3ubuntu2.2 deb 242 | gpgconf 2.2.19-3ubuntu2.2 deb 243 | gpgsm 2.2.19-3ubuntu2.2 deb 244 | gpgv 2.2.19-3ubuntu2.2 deb 245 | graceful-fs 4.2.10 npm 246 | grep 3.4-1 deb 247 | groff-base 1.22.4-4build1 deb 248 | gsettings-desktop-schemas 3.36.0-1ubuntu1 deb 249 | gtk-update-icon-cache 3.24.20-0ubuntu1.1 deb 250 | guacamole-lite 0.6.3 npm 251 | guacd 1.1.0-1 deb 252 | gzip 1.10-0ubuntu4 deb 253 | har-schema 2.0.0 npm 254 | har-validator 5.1.5 npm 255 | has 1.0.3 npm 256 | has-flag 3.0.0 npm 257 | has-flag 4.0.0 npm 258 | has-symbols 1.0.0 npm 259 | has-symbols 1.0.3 npm 260 | has-unicode 2.0.1 npm 261 | hicolor-icon-theme 0.17-2 deb 262 | hosted-git-info 2.8.9 npm 263 | hostname 3.23 deb 264 | http-cache-semantics 3.8.1 npm 265 | http-errors 2.0.0 npm 266 | http-proxy-agent 2.1.0 npm 267 | http-signature 1.2.0 npm 268 | https-proxy-agent 2.2.4 npm 269 | https-proxy-agent 5.0.1 npm 270 | humanity-icon-theme 0.6.15 deb 271 | humanize-ms 1.2.1 npm 272 | iconv-lite 0.4.23 npm 273 | iconv-lite 0.4.24 npm 274 | idna 2.8 python 275 | iferr 0.1.5 npm 276 | iferr 1.0.2 npm 277 | ignore-walk 3.0.3 npm 278 | import-lazy 2.1.0 npm 279 | imurmurhash 0.1.4 npm 280 | infer-owner 1.0.4 npm 281 | inflight 1.0.6 npm 282 | inherits 2.0.4 npm 283 | ini 1.3.8 npm 284 | init-package-json 1.10.3 npm 285 | init-system-helpers 1.57 deb 286 | ip 1.1.5 npm 287 | ip-regex 2.1.0 npm 288 | ipaddr.js 1.9.1 npm 289 | is-callable 1.1.4 npm 290 | is-ci 1.2.1 npm 291 | is-cidr 3.1.1 npm 292 | is-date-object 1.0.1 npm 293 | is-fullwidth-code-point 1.0.0 npm 294 | is-fullwidth-code-point 2.0.0 npm 295 | is-fullwidth-code-point 3.0.0 npm 296 | is-installed-globally 0.1.0 npm 297 | is-npm 1.0.0 npm 298 | is-obj 1.0.1 npm 299 | is-path-inside 1.0.1 npm 300 | is-redirect 1.0.0 npm 301 | is-regex 1.0.4 npm 302 | is-retry-allowed 1.2.0 npm 303 | is-stream 1.1.0 npm 304 | is-symbol 1.0.2 npm 305 | is-typedarray 1.0.0 npm 306 | isarray 0.0.1 npm 307 | isarray 1.0.0 npm 308 | isexe 2.0.0 npm 309 | iso-codes 4.4-1 deb 310 | isstream 0.1.2 npm 311 | jake 10.8.5 npm 312 | jq 1.6-1ubuntu0.20.04.1 deb 313 | jsbn 0.1.1 npm 314 | json-parse-better-errors 1.0.2 npm 315 | json-parse-even-better-errors 2.3.1 npm 316 | json-schema 0.4.0 npm 317 | json-schema-traverse 0.4.1 npm 318 | json-stringify-safe 5.0.1 npm 319 | jsonparse 1.3.1 npm 320 | jsprim 1.4.2 npm 321 | keyboard-configuration 1.194ubuntu3 deb 322 | krb5-locales 1.17-6ubuntu4.3 deb 323 | latest-version 3.1.0 npm 324 | lazy-property 1.0.0 npm 325 | libacl1 2.2.53-6 deb 326 | libapparmor1 2.13.3-7ubuntu5.2 deb 327 | libappstream4 0.12.10-2 deb 328 | libapt-pkg6.0 2.0.9 deb 329 | libargon2-1 0~20171227-0.2 deb 330 | libasn1-8-heimdal 7.7.0+dfsg-1ubuntu1.4 deb 331 | libasound2 1.2.2-2.1ubuntu2.5 deb 332 | libasound2-data 1.2.2-2.1ubuntu2.5 deb 333 | libasound2-plugins 1.2.2-1ubuntu1 deb 334 | libassuan0 2.5.3-7ubuntu2 deb 335 | libasyncns0 0.8-6 deb 336 | libatk-bridge2.0-0 2.34.2-0ubuntu2~20.04.1 deb 337 | libatk1.0-0 2.35.1-1ubuntu2 deb 338 | libatk1.0-data 2.35.1-1ubuntu2 deb 339 | libatspi2.0-0 2.36.0-2 deb 340 | libattr1 1:2.4.48-5 deb 341 | libaudit-common 1:2.8.5-2ubuntu6 deb 342 | libaudit1 1:2.8.5-2ubuntu6 deb 343 | libavahi-client3 0.7-4ubuntu7.1 deb 344 | libavahi-common-data 0.7-4ubuntu7.1 deb 345 | libavahi-common3 0.7-4ubuntu7.1 deb 346 | libblkid1 2.34-0.1ubuntu9.3 deb 347 | libbrotli1 1.0.7-6ubuntu0.1 deb 348 | libbsd0 0.10.0-1 deb 349 | libbz2-1.0 1.0.8-2 deb 350 | libc-bin 2.31-0ubuntu9.7 deb 351 | libc6 2.31-0ubuntu9.9 deb 352 | libcairo-gobject2 1.16.0-4ubuntu1 deb 353 | libcairo2 1.16.0-4ubuntu1 deb 354 | libcap-ng0 0.7.9-2.1build1 deb 355 | libcap2 1:2.32-1 deb 356 | libcap2-bin 1:2.32-1 deb 357 | libcbor0.6 0.6.0-0ubuntu1 deb 358 | libcipm 4.0.8 npm 359 | libcolord2 1.4.4-2 deb 360 | libcom-err2 1.45.5-2ubuntu1.1 deb 361 | libcrypt1 1:4.4.10-10ubuntu4 deb 362 | libcryptsetup12 2:2.2.2-3ubuntu2.4 deb 363 | libcups2 2.3.1-9ubuntu1.2 deb 364 | libcurl4 7.68.0-1ubuntu2.18 deb 365 | libdatrie1 0.2.12-3 deb 366 | libdb5.3 5.3.28+dfsg1-0.6ubuntu2 deb 367 | libdbus-1-3 1.12.16-2ubuntu2.3 deb 368 | libdconf1 0.36.0-1 deb 369 | libdebconfclient0 0.251ubuntu1 deb 370 | libdevmapper1.02.1 2:1.02.167-1ubuntu1 deb 371 | libdrm-amdgpu1 2.4.107-8ubuntu1~20.04.2 deb 372 | libdrm-common 2.4.107-8ubuntu1~20.04.2 deb 373 | libdrm-intel1 2.4.107-8ubuntu1~20.04.2 deb 374 | libdrm-nouveau2 2.4.107-8ubuntu1~20.04.2 deb 375 | libdrm-radeon1 2.4.107-8ubuntu1~20.04.2 deb 376 | libdrm2 2.4.107-8ubuntu1~20.04.2 deb 377 | libedit2 3.1-20191231-1 deb 378 | libegl-mesa0 21.2.6-0ubuntu0.1~20.04.2 deb 379 | libegl1 1.3.2-1~ubuntu0.20.04.2 deb 380 | libelf1 0.176-1.1build1 deb 381 | libepoxy0 1.5.4-1 deb 382 | libexpat1 2.2.9-1ubuntu0.6 deb 383 | libext2fs2 1.45.5-2ubuntu1 deb 384 | libfdisk1 2.34-0.1ubuntu9.3 deb 385 | libffi7 3.3-4 deb 386 | libfido2-1 1.3.1-1ubuntu2 deb 387 | libflac8 1.3.3-1ubuntu0.1 deb 388 | libfontconfig1 2.13.1-2ubuntu3 deb 389 | libfontenc1 1:1.1.4-0ubuntu1 deb 390 | libfreerdp-client2-2 2.2.0+dfsg1-0ubuntu0.20.04.4 deb 391 | libfreerdp2-2 2.2.0+dfsg1-0ubuntu0.20.04.4 deb 392 | libfreetype6 2.10.1-2ubuntu0.2 deb 393 | libfribidi0 1.0.8-2ubuntu0.1 deb 394 | libfuse2 2.9.9-3 deb 395 | libgbm1 21.2.6-0ubuntu0.1~20.04.2 deb 396 | libgcc-s1 10.3.0-1ubuntu1~20.04 deb 397 | libgcrypt20 1.8.5-5ubuntu1.1 deb 398 | libgdbm6 1.18.1-5 deb 399 | libgdk-pixbuf2.0-0 2.40.0+dfsg-3ubuntu0.4 deb 400 | libgdk-pixbuf2.0-common 2.40.0+dfsg-3ubuntu0.4 deb 401 | libgif7 5.1.9-1 deb 402 | libgirepository-1.0-1 1.64.1-1~ubuntu20.04.1 deb 403 | libgl1 1.3.2-1~ubuntu0.20.04.2 deb 404 | libgl1-mesa-dri 21.2.6-0ubuntu0.1~20.04.2 deb 405 | libglapi-mesa 21.2.6-0ubuntu0.1~20.04.2 deb 406 | libglib2.0-0 2.64.6-1~ubuntu20.04.4 deb 407 | libglib2.0-bin 2.64.6-1~ubuntu20.04.4 deb 408 | libglib2.0-data 2.64.6-1~ubuntu20.04.4 deb 409 | libglvnd0 1.3.2-1~ubuntu0.20.04.2 deb 410 | libglx-mesa0 21.2.6-0ubuntu0.1~20.04.2 deb 411 | libglx0 1.3.2-1~ubuntu0.20.04.2 deb 412 | libgmp10 2:6.2.0+dfsg-4 deb 413 | libgnutls30 3.6.13-2ubuntu1.6 deb 414 | libgomp1 10.3.0-1ubuntu1~20.04 deb 415 | libgpg-error0 1.37-1 deb 416 | libgraphite2-3 1.3.13-11build1 deb 417 | libgssapi-krb5-2 1.17-6ubuntu4.3 deb 418 | libgssapi3-heimdal 7.7.0+dfsg-1ubuntu1.4 deb 419 | libgstreamer-plugins-base1.0-0 1.16.3-0ubuntu1.1 deb 420 | libgstreamer1.0-0 1.16.3-0ubuntu1.1 deb 421 | libgtk-3-0 3.24.20-0ubuntu1.1 deb 422 | libgtk-3-common 3.24.20-0ubuntu1.1 deb 423 | libharfbuzz0b 2.6.4-1ubuntu4.2 deb 424 | libhcrypto4-heimdal 7.7.0+dfsg-1ubuntu1.4 deb 425 | libheimbase1-heimdal 7.7.0+dfsg-1ubuntu1.4 deb 426 | libheimntlm0-heimdal 7.7.0+dfsg-1ubuntu1.4 deb 427 | libhogweed5 3.5.1+really3.5.1-2ubuntu0.2 deb 428 | libhx509-5-heimdal 7.7.0+dfsg-1ubuntu1.4 deb 429 | libice6 2:1.0.10-0ubuntu1 deb 430 | libicu66 66.1-2ubuntu2.1 deb 431 | libid3tag0 0.15.1b-14 deb 432 | libidn2-0 2.2.0-2 deb 433 | libimlib2 1.6.1-1ubuntu0.1 deb 434 | libip4tc2 1.8.4-3ubuntu2 deb 435 | libisl22 0.22.1-1 deb 436 | libjack-jackd2-0 1.9.12~dfsg-2ubuntu2 deb 437 | libjbig0 2.1-3.1ubuntu0.20.04.1 deb 438 | libjpeg-turbo8 2.0.3-0ubuntu1.20.04.3 deb 439 | libjpeg8 8c-2ubuntu8 deb 440 | libjq1 1.6-1ubuntu0.20.04.1 deb 441 | libjson-c4 0.13.1+dfsg-7ubuntu0.3 deb 442 | libjson-glib-1.0-0 1.4.4-2ubuntu2 deb 443 | libjson-glib-1.0-common 1.4.4-2ubuntu2 deb 444 | libk5crypto3 1.17-6ubuntu4.3 deb 445 | libkeyutils1 1.6-6ubuntu1.1 deb 446 | libkmod2 27-1ubuntu2.1 deb 447 | libkrb5-26-heimdal 7.7.0+dfsg-1ubuntu1.4 deb 448 | libkrb5-3 1.17-6ubuntu4.3 deb 449 | libkrb5support0 1.17-6ubuntu4.3 deb 450 | libksba8 1.3.5-2ubuntu0.20.04.2 deb 451 | liblcms2-2 2.9-4 deb 452 | libldap-2.4-2 2.4.49+dfsg-2ubuntu1.9 deb 453 | libldap-common 2.4.49+dfsg-2ubuntu1.9 deb 454 | libllvm12 1:12.0.0-3ubuntu1~20.04.5 deb 455 | liblmdb0 0.9.24-1 deb 456 | liblocale-gettext-perl 1.07-4 deb 457 | libltdl7 2.4.6-14 deb 458 | liblz4-1 1.9.2-2ubuntu0.20.04.1 deb 459 | liblzma5 5.2.4-1ubuntu1.1 deb 460 | libmount1 2.34-0.1ubuntu9.3 deb 461 | libmpc3 1.1.0-1 deb 462 | libmpdec2 2.4.2-3 deb 463 | libmpfr6 4.0.2-1 deb 464 | libncurses6 6.2-0ubuntu2 deb 465 | libncursesw6 6.2-0ubuntu2 deb 466 | libnettle7 3.5.1+really3.5.1-2ubuntu0.2 deb 467 | libnghttp2-14 1.40.0-1build1 deb 468 | libnpm 3.0.1 npm 469 | libnpmaccess 3.0.2 npm 470 | libnpmconfig 1.2.1 npm 471 | libnpmhook 5.0.3 npm 472 | libnpmorg 1.0.1 npm 473 | libnpmpublish 1.1.2 npm 474 | libnpmsearch 2.0.2 npm 475 | libnpmteam 1.0.2 npm 476 | libnpth0 1.6-1 deb 477 | libnpx 10.2.4 npm 478 | libobrender32v5 3.6.1-9ubuntu0.20.04.1 deb 479 | libobt2v5 3.6.1-9ubuntu0.20.04.1 deb 480 | libogg0 1.3.4-0ubuntu1 deb 481 | libonig5 6.9.4-1 deb 482 | libopus0 1.3.1-0ubuntu1 deb 483 | liborc-0.4-0 1:0.4.31-1 deb 484 | libossp-uuid16 1.6.2-1.5build7 deb 485 | libp11-kit0 0.23.20-1ubuntu0.1 deb 486 | libpackagekit-glib2-18 1.1.13-2ubuntu1.1 deb 487 | libpam-modules 1.3.1-5ubuntu4.3 deb 488 | libpam-modules-bin 1.3.1-5ubuntu4.3 deb 489 | libpam-runtime 1.3.1-5ubuntu4.3 deb 490 | libpam-systemd 245.4-4ubuntu3.21 deb 491 | libpam0g 1.3.1-5ubuntu4.3 deb 492 | libpango-1.0-0 1.44.7-2ubuntu4 deb 493 | libpangocairo-1.0-0 1.44.7-2ubuntu4 deb 494 | libpangoft2-1.0-0 1.44.7-2ubuntu4 deb 495 | libpangoxft-1.0-0 1.44.7-2ubuntu4 deb 496 | libpciaccess0 0.16-0ubuntu1 deb 497 | libpcre2-8-0 10.34-7 deb 498 | libpcre3 2:8.39-12build1 deb 499 | libpipeline1 1.5.2-2build1 deb 500 | libpixman-1-0 0.38.4-0ubuntu2.1 deb 501 | libpng16-16 1.6.37-2 deb 502 | libpolkit-agent-1-0 0.105-26ubuntu1.3 deb 503 | libpolkit-gobject-1-0 0.105-26ubuntu1.3 deb 504 | libprocps8 2:3.3.16-1ubuntu2.3 deb 505 | libproxy1v5 0.4.15-10ubuntu1.2 deb 506 | libpsl5 0.21.0-1ubuntu1 deb 507 | libpthread-stubs0-dev 0.4-1 deb 508 | libpulse0 1:13.99.1-1ubuntu3.13 deb 509 | libpulsedsp 1:13.99.1-1ubuntu3.13 deb 510 | libpython2-stdlib 2.7.17-2ubuntu4 deb 511 | libpython2.7-minimal 2.7.18-1~20.04.3 deb 512 | libpython2.7-stdlib 2.7.18-1~20.04.3 deb 513 | libpython3-stdlib 3.8.2-0ubuntu2 deb 514 | libpython3.8-minimal 3.8.10-0ubuntu1~20.04.7 deb 515 | libpython3.8-stdlib 3.8.10-0ubuntu1~20.04.7 deb 516 | libreadline8 8.0-4 deb 517 | librest-0.7-0 0.8.1-1 deb 518 | libroken18-heimdal 7.7.0+dfsg-1ubuntu1.4 deb 519 | librsvg2-2 2.48.9-1ubuntu0.20.04.1 deb 520 | librsvg2-common 2.48.9-1ubuntu0.20.04.1 deb 521 | librtmp1 2.4+20151223.gitfa8646d.1-2build1 deb 522 | libsamplerate0 0.1.9-2 deb 523 | libsasl2-2 2.1.27+dfsg-2ubuntu0.1 deb 524 | libsasl2-modules 2.1.27+dfsg-2ubuntu0.1 deb 525 | libsasl2-modules-db 2.1.27+dfsg-2ubuntu0.1 deb 526 | libseccomp2 2.5.1-1ubuntu1~20.04.2 deb 527 | libselinux1 3.0-1build2 deb 528 | libsemanage-common 3.0-1build2 deb 529 | libsemanage1 3.0-1build2 deb 530 | libsensors-config 1:3.6.0-2ubuntu1.1 deb 531 | libsensors5 1:3.6.0-2ubuntu1.1 deb 532 | libsepol1 3.0-1 deb 533 | libsigsegv2 2.12-2 deb 534 | libsm6 2:1.2.3-1 deb 535 | libsmartcols1 2.34-0.1ubuntu9.3 deb 536 | libsnapd-glib1 1.58-0ubuntu0.20.04.0 deb 537 | libsndfile1 1.0.28-7ubuntu0.1 deb 538 | libsoup-gnome2.4-1 2.70.0-1 deb 539 | libsoup2.4-1 2.70.0-1 deb 540 | libsoxr0 0.1.3-2build1 deb 541 | libspeexdsp1 1.2~rc1.2-1.1ubuntu1.20.04.1 deb 542 | libsqlite3-0 3.31.1-4ubuntu0.5 deb 543 | libss2 1.45.5-2ubuntu1 deb 544 | libssh-4 0.9.3-2ubuntu2.2 deb 545 | libssl1.1 1.1.1f-1ubuntu2.17 deb 546 | libstartup-notification0 0.12-6 deb 547 | libstdc++6 10.3.0-1ubuntu1~20.04 deb 548 | libstemmer0d 0+svn585-2 deb 549 | libsystemd0 245.4-4ubuntu3.21 deb 550 | libtasn1-6 4.16.0-2 deb 551 | libtdb1 1.4.5-0ubuntu0.20.04.1 deb 552 | libthai-data 0.1.28-3 deb 553 | libthai0 0.1.28-3 deb 554 | libtiff5 4.1.0+git191117-2ubuntu0.20.04.8 deb 555 | libtinfo6 6.2-0ubuntu2 deb 556 | libuchardet0 0.0.6-3build1 deb 557 | libudev1 245.4-4ubuntu3.21 deb 558 | libunistring2 0.9.10-2 deb 559 | libunwind8 1.2.1-9ubuntu0.1 deb 560 | libusb-1.0-0 2:1.0.23-2build1 deb 561 | libutempter0 1.1.6-4 deb 562 | libuuid1 2.34-0.1ubuntu9.3 deb 563 | libvorbis0a 1.3.6-2ubuntu1 deb 564 | libvorbisenc2 1.3.6-2ubuntu1 deb 565 | libvulkan1 1.2.131.2-1 deb 566 | libwayland-client0 1.18.0-1ubuntu0.1 deb 567 | libwayland-cursor0 1.18.0-1ubuntu0.1 deb 568 | libwayland-egl1 1.18.0-1ubuntu0.1 deb 569 | libwayland-server0 1.18.0-1ubuntu0.1 deb 570 | libwebp6 0.6.1-2ubuntu0.20.04.1 deb 571 | libwebrtc-audio-processing1 0.3.1-0ubuntu3 deb 572 | libwind0-heimdal 7.7.0+dfsg-1ubuntu1.4 deb 573 | libwinpr2-2 2.2.0+dfsg1-0ubuntu0.20.04.4 deb 574 | libwrap0 7.6.q-30 deb 575 | libx11-6 2:1.6.9-2ubuntu1.2 deb 576 | libx11-data 2:1.6.9-2ubuntu1.2 deb 577 | libx11-dev 2:1.6.9-2ubuntu1.2 deb 578 | libx11-xcb1 2:1.6.9-2ubuntu1.2 deb 579 | libxau-dev 1:1.0.9-0ubuntu1 deb 580 | libxau6 1:1.0.9-0ubuntu1 deb 581 | libxaw7 2:1.0.13-1 deb 582 | libxcb-dri2-0 1.14-2 deb 583 | libxcb-dri3-0 1.14-2 deb 584 | libxcb-glx0 1.14-2 deb 585 | libxcb-present0 1.14-2 deb 586 | libxcb-render0 1.14-2 deb 587 | libxcb-shape0 1.14-2 deb 588 | libxcb-shm0 1.14-2 deb 589 | libxcb-sync1 1.14-2 deb 590 | libxcb-util1 0.4.0-0ubuntu3 deb 591 | libxcb-xfixes0 1.14-2 deb 592 | libxcb1 1.14-2 deb 593 | libxcb1-dev 1.14-2 deb 594 | libxcomposite1 1:0.4.5-1 deb 595 | libxcursor1 1:1.2.0-2 deb 596 | libxdamage1 1:1.1.5-2 deb 597 | libxdmcp-dev 1:1.1.3-0ubuntu1 deb 598 | libxdmcp6 1:1.1.3-0ubuntu1 deb 599 | libxext6 2:1.3.4-0ubuntu1 deb 600 | libxfixes3 1:5.0.3-2 deb 601 | libxfont2 1:2.0.3-1 deb 602 | libxft2 2.3.3-0ubuntu1 deb 603 | libxi6 2:1.7.10-0ubuntu1 deb 604 | libxinerama1 2:1.1.4-2 deb 605 | libxkbcommon0 0.10.0-1 deb 606 | libxkbfile1 1:1.1.0-1 deb 607 | libxml2 2.9.10+dfsg-5ubuntu0.20.04.6 deb 608 | libxmu6 2:1.1.3-0ubuntu1 deb 609 | libxmuu1 2:1.1.3-0ubuntu1 deb 610 | libxpm4 1:3.5.12-1ubuntu0.20.04.1 deb 611 | libxrandr2 2:1.5.2-0ubuntu1 deb 612 | libxrender1 1:0.9.10-1 deb 613 | libxshmfence1 1.3-1 deb 614 | libxss1 1:1.2.3-1 deb 615 | libxt6 1:1.1.5-1 deb 616 | libxtst6 2:1.2.3-1 deb 617 | libxv1 2:1.0.11-1 deb 618 | libxvmc1 2:1.0.12-2 deb 619 | libxxf86dga1 2:1.1.5-0ubuntu1 deb 620 | libxxf86vm1 1:1.1.4-1build1 deb 621 | libyaml-0-2 0.2.2-1 deb 622 | libzstd1 1.4.4+dfsg-3ubuntu0.1 deb 623 | locales 2.31-0ubuntu9.9 deb 624 | locate-path 3.0.0 npm 625 | locate-path 5.0.0 npm 626 | lock-verify 2.2.2 npm 627 | lockfile 1.0.4 npm 628 | lodash._baseindexof 3.1.0 npm 629 | lodash._baseuniq 4.6.0 npm 630 | lodash._bindcallback 3.0.1 npm 631 | lodash._cacheindexof 3.0.2 npm 632 | lodash._createcache 3.1.2 npm 633 | lodash._createset 4.0.3 npm 634 | lodash._getnative 3.9.1 npm 635 | lodash._root 3.0.1 npm 636 | lodash.clonedeep 4.5.0 npm 637 | lodash.restparam 3.6.1 npm 638 | lodash.union 4.6.0 npm 639 | lodash.uniq 4.5.0 npm 640 | lodash.without 4.4.0 npm 641 | login 1:4.8.1-1ubuntu5.20.04.1 deb 642 | logsave 1.45.5-2ubuntu1 deb 643 | lowercase-keys 1.0.1 npm 644 | lru-cache 4.1.5 npm 645 | lru-cache 5.1.1 npm 646 | lru-cache 6.0.0 npm 647 | lsb-base 11.1.0ubuntu2 deb 648 | lsb-release 11.1.0ubuntu2 deb 649 | make-dir 1.3.0 npm 650 | make-dir 3.1.0 npm 651 | make-fetch-happen 5.0.2 npm 652 | man-db 2.9.1-1 deb 653 | mawk 1.3.4.20200120-2 deb 654 | meant 1.0.3 npm 655 | media-typer 0.3.0 npm 656 | merge-descriptors 1.0.1 npm 657 | methods 1.1.2 npm 658 | mime 1.6.0 npm 659 | mime-db 1.35.0 npm 660 | mime-db 1.52.0 npm 661 | mime-support 3.64ubuntu1 deb 662 | mime-types 2.1.19 npm 663 | mime-types 2.1.35 npm 664 | minimatch 3.1.2 npm 665 | minimatch 5.1.6 npm 666 | minimist 1.2.6 npm 667 | minipass 2.9.0 npm 668 | minipass 3.3.6 npm 669 | minipass 4.2.8 npm 670 | minizlib 1.3.3 npm 671 | minizlib 2.1.2 npm 672 | mississippi 3.0.0 npm 673 | mkdirp 0.5.6 npm 674 | mkdirp 1.0.4 npm 675 | moment 2.29.4 npm 676 | mount 2.34-0.1ubuntu9.3 deb 677 | move-concurrently 1.0.1 npm 678 | ms 2.0.0 npm 679 | ms 2.1.1 npm 680 | ms 2.1.2 npm 681 | ms 2.1.3 npm 682 | mute-stream 0.0.7 npm 683 | ncurses-base 6.2-0ubuntu2 deb 684 | ncurses-bin 6.2-0ubuntu2 deb 685 | negotiator 0.6.3 npm 686 | netcat 1.206-1ubuntu1 deb 687 | netcat-openbsd 1.206-1ubuntu1 deb 688 | node 14.21.3 binary 689 | node-addon-api 3.1.0 npm 690 | node-fetch 2.6.9 npm 691 | node-fetch-npm 2.0.2 npm 692 | node-gyp 5.1.1 npm 693 | node-linux-pam 0.2.1 npm 694 | nodejs 14.21.3-deb-1nodesource1 deb 695 | nopt 4.0.3 npm 696 | nopt 5.0.0 npm 697 | normalize-package-data 2.5.0 npm 698 | npm 6.14.18 npm 699 | npm-audit-report 1.3.3 npm 700 | npm-bundled 1.1.1 npm 701 | npm-cache-filename 1.0.2 npm 702 | npm-init 0.0.0 npm 703 | npm-install-checks 3.0.2 npm 704 | npm-lifecycle 3.1.5 npm 705 | npm-logical-tree 1.2.1 npm 706 | npm-normalize-package-bin 1.0.1 npm 707 | npm-package-arg 6.1.1 npm 708 | npm-packlist 1.4.8 npm 709 | npm-pick-manifest 3.0.2 npm 710 | npm-profile 4.0.4 npm 711 | npm-registry-fetch 4.0.7 npm 712 | npm-run-path 2.0.2 npm 713 | npm-user-validate 1.0.1 npm 714 | npmlog 4.1.2 npm 715 | number-is-nan 1.0.1 npm 716 | nw-pre-gyp-module-test 0.0.1 npm 717 | oauth-sign 0.9.0 npm 718 | obconf 1:2.0.4+git20150213-2 deb 719 | object-assign 4.1.1 npm 720 | object-inspect 1.12.3 npm 721 | object-keys 1.0.12 npm 722 | object.getownpropertydescriptors 2.0.3 npm 723 | on-finished 2.4.1 npm 724 | once 1.4.0 npm 725 | openbox 3.6.1-9ubuntu0.20.04.1 deb 726 | opener 1.5.2 npm 727 | openssh-client 1:8.2p1-4ubuntu0.5 deb 728 | openssl 1.1.1f-1ubuntu2.17 deb 729 | options 0.0.6 npm 730 | os-homedir 1.0.2 npm 731 | os-tmpdir 1.0.2 npm 732 | osenv 0.1.5 npm 733 | p-finally 1.0.0 npm 734 | p-limit 2.2.0 npm 735 | p-limit 2.3.0 npm 736 | p-locate 3.0.0 npm 737 | p-locate 4.1.0 npm 738 | p-try 2.2.0 npm 739 | package-json 4.0.1 npm 740 | packagekit 1.1.13-2ubuntu1.1 deb 741 | pacote 9.5.12 npm 742 | parallel-transform 1.1.0 npm 743 | parseurl 1.3.3 npm 744 | passwd 1:4.8.1-1ubuntu5.20.04.1 deb 745 | path-exists 3.0.0 npm 746 | path-exists 4.0.0 npm 747 | path-is-absolute 1.0.1 npm 748 | path-is-inside 1.0.2 npm 749 | path-key 2.0.1 npm 750 | path-parse 1.0.7 npm 751 | path-to-regexp 0.1.7 npm 752 | performance-now 2.1.0 npm 753 | perl-base 5.30.0-9ubuntu0.2 deb 754 | pify 3.0.0 npm 755 | pinentry-curses 1.1.0-3build1 deb 756 | policykit-1 0.105-26ubuntu1.3 deb 757 | prepend-http 1.0.4 npm 758 | process-nextick-args 2.0.0 npm 759 | process-nextick-args 2.0.1 npm 760 | procps 2:3.3.16-1ubuntu2.3 deb 761 | promise-inflight 1.0.1 npm 762 | promise-retry 1.1.1 npm 763 | promzard 0.3.0 npm 764 | proto-list 1.2.4 npm 765 | protoduck 5.0.1 npm 766 | proxy-addr 2.0.7 npm 767 | prr 1.0.1 npm 768 | pseudomap 1.0.2 npm 769 | psl 1.9.0 npm 770 | publicsuffix 20200303.0012-1 deb 771 | pulseaudio 1:13.99.1-1ubuntu3.13 deb 772 | pulseaudio-utils 1:13.99.1-1ubuntu3.13 deb 773 | pump 2.0.1 npm 774 | pump 3.0.0 npm 775 | pumpify 1.5.1 npm 776 | punycode 2.1.1 npm 777 | python 2.7.18 binary 778 | python 3.8.10 binary 779 | python-apt 2.0.1+ubuntu0.20.4.1 python 780 | python-apt-common 2.0.1ubuntu0.20.04.1 deb 781 | python-is-python2 2.7.17-4 deb 782 | python2 2.7.17-2ubuntu4 deb 783 | python2-minimal 2.7.17-2ubuntu4 deb 784 | python2.7 2.7.18-1~20.04.3 deb 785 | python2.7-minimal 2.7.18-1~20.04.3 deb 786 | python3 3.8.2-0ubuntu2 deb 787 | python3-apt 2.0.1ubuntu0.20.04.1 deb 788 | python3-certifi 2019.11.28-1 deb 789 | python3-chardet 3.0.4-4build1 deb 790 | python3-dbus 1.2.16-1build1 deb 791 | python3-gi 3.36.0-1 deb 792 | python3-idna 2.8-1 deb 793 | python3-minimal 3.8.2-0ubuntu2 deb 794 | python3-pkg-resources 45.2.0-1ubuntu0.1 deb 795 | python3-requests 2.22.0-2ubuntu1 deb 796 | python3-requests-unixsocket 0.2.0-2 deb 797 | python3-six 1.14.0-2 deb 798 | python3-software-properties 0.99.9.11 deb 799 | python3-urllib3 1.25.8-2ubuntu0.2 deb 800 | python3.8 3.8.10-0ubuntu1~20.04.7 deb 801 | python3.8-minimal 3.8.10-0ubuntu1~20.04.7 deb 802 | qrcode-terminal 0.12.0 npm 803 | qs 6.11.0 npm 804 | qs 6.5.3 npm 805 | query-string 6.14.1 npm 806 | qw 1.0.2 npm 807 | range-parser 1.2.1 npm 808 | raw-body 2.5.1 npm 809 | raw-body 2.5.2 npm 810 | rc 1.2.8 npm 811 | read 1.0.7 npm 812 | read-cmd-shim 1.0.5 npm 813 | read-installed 4.0.3 npm 814 | read-package-json 2.1.2 npm 815 | read-package-tree 5.3.1 npm 816 | readable-stream 1.1.14 npm 817 | readable-stream 2.3.6 npm 818 | readable-stream 2.3.8 npm 819 | readable-stream 3.6.0 npm 820 | readdir-scoped-modules 1.1.0 npm 821 | readline-common 8.0-4 deb 822 | registry-auth-token 3.4.0 npm 823 | registry-url 3.1.0 npm 824 | request 2.88.2 npm 825 | requests 2.22.0 python 826 | requests-unixsocket 0.2.0 python 827 | require-directory 2.1.1 npm 828 | require-main-filename 2.0.0 npm 829 | resolve 1.10.0 npm 830 | resolve-from 4.0.0 npm 831 | retry 0.10.1 npm 832 | retry 0.12.0 npm 833 | rimraf 2.7.1 npm 834 | rimraf 3.0.2 npm 835 | run-queue 1.0.3 npm 836 | safe-buffer 5.1.2 npm 837 | safe-buffer 5.2.0 npm 838 | safe-buffer 5.2.1 npm 839 | safer-buffer 2.1.2 npm 840 | sed 4.7-1 deb 841 | semver 5.7.1 npm 842 | semver 6.3.0 npm 843 | semver 7.5.0 npm 844 | semver-diff 2.1.0 npm 845 | send 0.18.0 npm 846 | sensible-utils 0.0.12+nmu1 deb 847 | serve-static 1.15.0 npm 848 | set-blocking 2.0.0 npm 849 | setprototypeof 1.2.0 npm 850 | sha 3.0.0 npm 851 | shared-mime-info 1.15-1 deb 852 | shebang-command 1.2.0 npm 853 | shebang-regex 1.0.0 npm 854 | side-channel 1.0.4 npm 855 | signal-exit 3.0.2 npm 856 | signal-exit 3.0.7 npm 857 | six 1.14.0 python 858 | slide 1.1.6 npm 859 | smart-buffer 4.1.0 npm 860 | socket.io 4.6.1 npm 861 | socket.io-adapter 2.5.2 npm 862 | socket.io-parser 4.2.2 npm 863 | socks 2.3.3 npm 864 | socks-proxy-agent 4.0.2 npm 865 | software-properties-common 0.99.9.11 deb 866 | sorted-object 2.0.1 npm 867 | sorted-union-stream 2.1.3 npm 868 | spdx-correct 3.0.0 npm 869 | spdx-exceptions 2.1.0 npm 870 | spdx-expression-parse 3.0.0 npm 871 | spdx-license-ids 3.0.5 npm 872 | split-on-first 1.1.0 npm 873 | sshpk 1.17.0 npm 874 | ssl-cert 1.0.39 deb 875 | ssri 6.0.2 npm 876 | statuses 2.0.1 npm 877 | stream-each 1.2.2 npm 878 | stream-iterate 1.2.0 npm 879 | stream-shift 1.0.0 npm 880 | strict-uri-encode 2.0.0 npm 881 | string-template 1.0.0 npm 882 | string-width 1.0.2 npm 883 | string-width 2.1.1 npm 884 | string-width 3.1.0 npm 885 | string-width 4.2.3 npm 886 | string_decoder 0.10.31 npm 887 | string_decoder 1.1.1 npm 888 | string_decoder 1.3.0 npm 889 | stringify-package 1.0.1 npm 890 | strip-ansi 3.0.1 npm 891 | strip-ansi 4.0.0 npm 892 | strip-ansi 5.2.0 npm 893 | strip-ansi 6.0.1 npm 894 | strip-eof 1.0.0 npm 895 | strip-json-comments 2.0.1 npm 896 | sudo 1.8.31-1ubuntu1.5 deb 897 | supports-color 5.4.0 npm 898 | supports-color 7.2.0 npm 899 | systemd 245.4-4ubuntu3.21 deb 900 | systemd-sysv 245.4-4ubuntu3.21 deb 901 | systemd-timesyncd 245.4-4ubuntu3.21 deb 902 | sysvinit-utils 2.96-2.1ubuntu1 deb 903 | tar 1.30+dfsg-7ubuntu0.20.04.2 deb 904 | tar 4.4.19 npm 905 | tar 6.1.13 npm 906 | term-size 1.2.0 npm 907 | text-table 0.2.0 npm 908 | through 2.3.8 npm 909 | through2 2.0.3 npm 910 | timed-out 4.0.1 npm 911 | tiny-relative-date 1.3.0 npm 912 | toidentifier 1.0.1 npm 913 | tough-cookie 2.5.0 npm 914 | tr46 0.0.3 npm 915 | tunnel-agent 0.6.0 npm 916 | tweetnacl 0.14.5 npm 917 | type-is 1.6.18 npm 918 | typedarray 0.0.6 npm 919 | tzdata 2023c-0ubuntu0.20.04.0 deb 920 | ubuntu-keyring 2020.02.11.4 deb 921 | ubuntu-mono 19.04-0ubuntu3 deb 922 | ucf 3.0038+nmu1 deb 923 | udev 245.4-4ubuntu3.21 deb 924 | uid-number 0.0.6 npm 925 | ultron 1.0.2 npm 926 | umask 1.1.0 npm 927 | unique-filename 1.1.1 npm 928 | unique-slug 2.0.0 npm 929 | unique-string 1.0.0 npm 930 | unpipe 1.0.0 npm 931 | unzip-response 2.0.1 npm 932 | update-notifier 2.5.0 npm 933 | uri-js 4.4.1 npm 934 | url-parse-lax 1.0.0 npm 935 | urllib3 1.25.8 python 936 | util-deprecate 1.0.2 npm 937 | util-extend 1.0.3 npm 938 | util-linux 2.34-0.1ubuntu9.3 deb 939 | util-promisify 2.1.0 npm 940 | utils-merge 1.0.1 npm 941 | uuid 3.4.0 npm 942 | validate-npm-package-license 3.0.4 npm 943 | validate-npm-package-name 3.0.0 npm 944 | vary 1.1.2 npm 945 | verror 1.10.0 npm 946 | wcwidth 1.0.1 npm 947 | webidl-conversions 3.0.1 npm 948 | whatwg-url 5.0.0 npm 949 | which 1.3.1 npm 950 | which-module 2.0.0 npm 951 | which-module 2.0.1 npm 952 | wide-align 1.1.2 npm 953 | wide-align 1.1.5 npm 954 | widest-line 2.0.1 npm 955 | worker-farm 1.7.0 npm 956 | wrap-ansi 5.1.0 npm 957 | wrap-ansi 6.2.0 npm 958 | wrappy 1.0.2 npm 959 | write-file-atomic 2.4.3 npm 960 | ws 1.1.5 npm 961 | ws 8.11.0 npm 962 | wsgiref 0.1.2 python 963 | x11-apps 7.7+8 deb 964 | x11-common 1:7.7+19ubuntu14 deb 965 | x11-session-utils 7.7+4 deb 966 | x11-utils 7.7+5 deb 967 | x11-xkb-utils 7.7+5 deb 968 | x11-xserver-utils 7.7+8 deb 969 | x11proto-core-dev 2019.2-1ubuntu1 deb 970 | x11proto-dev 2019.2-1ubuntu1 deb 971 | xbitmaps 1.1.1-2 deb 972 | xdg-basedir 3.0.0 npm 973 | xfonts-base 1:1.0.5 deb 974 | xfonts-encodings 1:1.0.5-0ubuntu1 deb 975 | xfonts-utils 1:7.7+6 deb 976 | xkb-data 2.29-2 deb 977 | xorg-sgml-doctools 1:1.11-1 deb 978 | xorgxrdp 1:0.2.12-1 deb 979 | xrdp 0.9.12-1 deb 980 | xserver-common 2:1.20.13-1ubuntu1~20.04.8 deb 981 | xserver-xorg-core 2:1.20.13-1ubuntu1~20.04.8 deb 982 | xserver-xorg-video-amdgpu 19.1.0-1ubuntu0.1 deb 983 | xserver-xorg-video-ati 1:19.1.0-1 deb 984 | xserver-xorg-video-intel 2:2.99.917+git20200226-1 deb 985 | xserver-xorg-video-radeon 1:19.1.0-1 deb 986 | xtend 4.0.1 npm 987 | xterm 353-1ubuntu1.20.04.2 deb 988 | xtrans-dev 1.4.0-1 deb 989 | xutils 1:7.7+19ubuntu14 deb 990 | y18n 4.0.1 npm 991 | y18n 4.0.3 npm 992 | yallist 2.1.2 npm 993 | yallist 3.0.3 npm 994 | yallist 3.1.1 npm 995 | yallist 4.0.0 npm 996 | yargs 14.2.3 npm 997 | yargs 15.4.1 npm 998 | yargs-parser 15.0.1 npm 999 | yargs-parser 18.1.3 npm 1000 | zlib1g 1:1.2.11.dfsg-2ubuntu1.5 deb 1001 | --------------------------------------------------------------------------------