Weiter zum Inhalt
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Hell
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dunkel
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. Probleme bei Update auf Node.js 16.15.1 unter Windows

NEWS

  • Neuer ioBroker-Blog online: Monatsrückblick März/April 2026
    BluefoxB
    Bluefox
    8
    1
    1.6k

  • Verwendung von KI bitte immer deutlich kennzeichnen
    HomoranH
    Homoran
    10
    1
    671

  • Monatsrückblick Januar/Februar 2026 ist online!
    BluefoxB
    Bluefox
    18
    1
    1.2k

Probleme bei Update auf Node.js 16.15.1 unter Windows

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
100 Beiträge 10 Kommentatoren 11.6k Aufrufe 10 Beobachtet
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • GaspodeG Gaspode

    @nik82 said in Probleme bei Update auf Node.js 16.15.1 unter Windows:

    Wie bist du genau vorgegangen?

    Das hängt davon ab, wie du ioBroker installiert hast. Hier geht es ja um den "alten Installer" von Stabilostick.

    Wenn du den verwendet hast, dann darfst du node.js NICHT per Installer installieren, sonder noed.js als ZIP File herunterladen.

    Ich habe hier einiges dazu beschrieben: ioBroker unter Windows - Eine Anleitung und ein Rückblick

    Da ist allerdings die komplette Neuinstallation beschrieben, ich habe dir mal die Schritte für das reine Nofe.js Update zusammengefasst:

    Ich habe mich bemüht, die manuellen Schritte möglichst einfach mit wenig Potential für Missverständnisse zu beschreiben. Deshalb nutze ich bevorzugt Kommandos, die in der ioBroker Kommandozeile einzutippen sind.

    In diesem Beispiel ist ioBroker im Verzeichnis F:\iobroker\SmartHome mit dem Namen SmartHome installiert.

    Diese Anleitung geht davon aus, dass ein aktuelles Windows 10 System verwendet wird. Bei (sehr viel) älteren Windows 10 Versionen oder gar Windows 7 werden die unten verwendeten Tools tar und curl nicht funktionieren. Diese Schritte müsstet ihr dann "per Hand" ausführen. Aber wie gesagt, auf einem aktuellen System ist alles an Bord, was man für diese Anleitung braucht.

    Im Startmenü gibt es einen neuen Eintrag im Ordner ioBroker mit dem Namen "ioBroker(<Name der Instanz>) Kommandozeile". In meinem Fall heißt der Eintrag also "ioBroker (SmartHome) Kommandozeile".
    Diesen Startmenü-Eintrag starten wir jetzt, es erscheint ein Cmd Fenster (evtl. müssen wir zunächst das Administrator Passwort des PCs eingeben, da die ioBroker Kommandozeile als Administrator ausgeführt wird).

    **********************************************************
    ***               Welcome to ioBroker.                 ***
    ***                                                    ***
    ***   Type 'iobroker help' for list of instructions.   ***
    ***                For more help see                   ***
    ***     https://github.com/ioBroker/ioBroker.docs      ***
    **********************************************************
    
    Your environment has been set up for using Node.js 10.17.0 (x64) and npm.
    
    F:\iobroker\SmartHome>
    

    Zunächst stoppen wir ioBroker:

    iob stop
    

    Da sich seit Node.js 18.0 etwas in den Berechtigungen geändert hat, müssen wir dem Windows Dienst jetzt einmalig LocalSystem als Konto zuweisen, das machen wir mit

    sc config iobroker(<Name der Instanz >) obj=LocalSystem
    

    In meinem Beispiel also mit

    F:\iobroker\SmartHome>sc config iobroker(SmartHome) obj=LocalSystem
    [SC] ChangeServiceConfig ERFOLG 
    

    Wichtig ist die Erfolgsmeldung, ansonsten habt ihr euch wahrscheinlich vertippt.
    Jetzt aktualisieren wir Node.js, dazu benennen wir zunächst die alte Version um

    rename nodejs nodejs_org
    

    Und laden die aktuell empfohlene Node.js Version herunter (derzeit 16.19.0, Stand 21.02.2023)
    Für 64 Bit Systeme (und das sollten die allermeisten sein) geht das mit

    curl --output .\nodejs.zip --url https://nodejs.org/dist/v16.19.0/node-v16.19.0-win-x64.zip
    

    Für 32 Bit Systeme die URL https://nodejs.org/dist/v16.19.0/node-v16.19.0-win-x86.zip verwenden.

    Jetzt packen wir das Zip File aus und benennen den nodejs Ordner passend um (Bei Verwendung der 32 Bit Variante bitte den Pfad im rename Kommando selbst anpassen):

    tar xf nodejs.zip
    rename node-v16.19.0-win-x64 nodejs
    

    Und schließlich müssen wir noch die angepasste Datei nodevars.bat übernehmen:

    copy /Y nodejs_org\nodevars.bat nodejs\nodevars.bat
    

    Anschließend starten wir ioBroker wieder mit

    iob start
    
    nik82N Offline
    nik82N Offline
    nik82
    Most Active
    schrieb am zuletzt editiert von nik82
    #41

    @gaspode
    Hi,
    so wie besprochen habe ich das jetzt so wie du gesagt hast getestet.
    Und es stimmt, der Iobroker startet tätsächlich!

    ABER: Mein Problem (siehe Startpost) ist dadurch nicht erledigt:

    npm -v bring immer noch einen Fehler:

    db4a484a-63f1-4781-9c23-7ab9ee10ef21-image.png

    C:\iobroker\SmartHome>npm -v
    C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\socks-proxy-agent\dist\index.js:110
    class SocksProxyAgent extends agent_base_1.Agent {
                                               ^
    
    TypeError: Class extends value undefined is not a constructor or null
        at Object.<anonymous> (C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\socks-proxy-agent\dist\index.js:110:44)
        at Module._compile (node:internal/modules/cjs/loader:1165:14)
        at Object.Module._extensions..js (node:internal/modules/cjs/loader:1219:10)
        at Module.load (node:internal/modules/cjs/loader:1043:32)
        at Function.Module._load (node:internal/modules/cjs/loader:878:12)
        at Module.require (node:internal/modules/cjs/loader:1067:19)
        at require (node:internal/modules/cjs/helpers:103:18)
        at Object.<anonymous> (C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\make-fetch-happen\lib\agent.js:174:29)
        at Module._compile (node:internal/modules/cjs/loader:1165:14)
        at Object.Module._extensions..js (node:internal/modules/cjs/loader:1219:10)
        at Module.load (node:internal/modules/cjs/loader:1043:32)
        at Function.Module._load (node:internal/modules/cjs/loader:878:12)
        at Module.require (node:internal/modules/cjs/loader:1067:19)
        at require (node:internal/modules/cjs/helpers:103:18)
        at Object.<anonymous> (C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\make-fetch-happen\lib\remote.js:7:18)
        at Module._compile (node:internal/modules/cjs/loader:1165:14)
    C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\socks-proxy-agent\dist\index.js:110
    class SocksProxyAgent extends agent_base_1.Agent {
                                               ^
    
    TypeError: Class extends value undefined is not a constructor or null
        at Object.<anonymous> (C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\socks-proxy-agent\dist\index.js:110:44)
        at Module._compile (node:internal/modules/cjs/loader:1165:14)
        at Object.Module._extensions..js (node:internal/modules/cjs/loader:1219:10)
        at Module.load (node:internal/modules/cjs/loader:1043:32)
        at Function.Module._load (node:internal/modules/cjs/loader:878:12)
        at Module.require (node:internal/modules/cjs/loader:1067:19)
        at require (node:internal/modules/cjs/helpers:103:18)
        at Object.<anonymous> (C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\make-fetch-happen\lib\agent.js:174:29)
        at Module._compile (node:internal/modules/cjs/loader:1165:14)
        at Object.Module._extensions..js (node:internal/modules/cjs/loader:1219:10)
        at Module.load (node:internal/modules/cjs/loader:1043:32)
        at Function.Module._load (node:internal/modules/cjs/loader:878:12)
        at Module.require (node:internal/modules/cjs/loader:1067:19)
        at require (node:internal/modules/cjs/helpers:103:18)
        at Object.<anonymous> (C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\make-fetch-happen\lib\remote.js:7:18)
        at Module._compile (node:internal/modules/cjs/loader:1165:14)
    
    C:\iobroker\SmartHome>
    

    Nun weiß ich aber gar nicht wie sich das auswirkt, da der Iobroker läuft, ich muss jetzt mal schauen was nicht läuft, aber ich denke, dass kann nicht in Ordnung sein und wird mir Probleme bereiten.

    Hat hier jemand noch eine Idee?

    Danke im Voraus.

    nik82N 1 Antwort Letzte Antwort
    0
    • nik82N nik82

      @gaspode
      Hi,
      so wie besprochen habe ich das jetzt so wie du gesagt hast getestet.
      Und es stimmt, der Iobroker startet tätsächlich!

      ABER: Mein Problem (siehe Startpost) ist dadurch nicht erledigt:

      npm -v bring immer noch einen Fehler:

      db4a484a-63f1-4781-9c23-7ab9ee10ef21-image.png

      C:\iobroker\SmartHome>npm -v
      C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\socks-proxy-agent\dist\index.js:110
      class SocksProxyAgent extends agent_base_1.Agent {
                                                 ^
      
      TypeError: Class extends value undefined is not a constructor or null
          at Object.<anonymous> (C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\socks-proxy-agent\dist\index.js:110:44)
          at Module._compile (node:internal/modules/cjs/loader:1165:14)
          at Object.Module._extensions..js (node:internal/modules/cjs/loader:1219:10)
          at Module.load (node:internal/modules/cjs/loader:1043:32)
          at Function.Module._load (node:internal/modules/cjs/loader:878:12)
          at Module.require (node:internal/modules/cjs/loader:1067:19)
          at require (node:internal/modules/cjs/helpers:103:18)
          at Object.<anonymous> (C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\make-fetch-happen\lib\agent.js:174:29)
          at Module._compile (node:internal/modules/cjs/loader:1165:14)
          at Object.Module._extensions..js (node:internal/modules/cjs/loader:1219:10)
          at Module.load (node:internal/modules/cjs/loader:1043:32)
          at Function.Module._load (node:internal/modules/cjs/loader:878:12)
          at Module.require (node:internal/modules/cjs/loader:1067:19)
          at require (node:internal/modules/cjs/helpers:103:18)
          at Object.<anonymous> (C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\make-fetch-happen\lib\remote.js:7:18)
          at Module._compile (node:internal/modules/cjs/loader:1165:14)
      C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\socks-proxy-agent\dist\index.js:110
      class SocksProxyAgent extends agent_base_1.Agent {
                                                 ^
      
      TypeError: Class extends value undefined is not a constructor or null
          at Object.<anonymous> (C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\socks-proxy-agent\dist\index.js:110:44)
          at Module._compile (node:internal/modules/cjs/loader:1165:14)
          at Object.Module._extensions..js (node:internal/modules/cjs/loader:1219:10)
          at Module.load (node:internal/modules/cjs/loader:1043:32)
          at Function.Module._load (node:internal/modules/cjs/loader:878:12)
          at Module.require (node:internal/modules/cjs/loader:1067:19)
          at require (node:internal/modules/cjs/helpers:103:18)
          at Object.<anonymous> (C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\make-fetch-happen\lib\agent.js:174:29)
          at Module._compile (node:internal/modules/cjs/loader:1165:14)
          at Object.Module._extensions..js (node:internal/modules/cjs/loader:1219:10)
          at Module.load (node:internal/modules/cjs/loader:1043:32)
          at Function.Module._load (node:internal/modules/cjs/loader:878:12)
          at Module.require (node:internal/modules/cjs/loader:1067:19)
          at require (node:internal/modules/cjs/helpers:103:18)
          at Object.<anonymous> (C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\make-fetch-happen\lib\remote.js:7:18)
          at Module._compile (node:internal/modules/cjs/loader:1165:14)
      
      C:\iobroker\SmartHome>
      

      Nun weiß ich aber gar nicht wie sich das auswirkt, da der Iobroker läuft, ich muss jetzt mal schauen was nicht läuft, aber ich denke, dass kann nicht in Ordnung sein und wird mir Probleme bereiten.

      Hat hier jemand noch eine Idee?

      Danke im Voraus.

      nik82N Offline
      nik82N Offline
      nik82
      Most Active
      schrieb am zuletzt editiert von
      #42

      Fängt schon an, keine Updates möglich:

      $ iobroker upgrade daswetter@3.1.4 --debug
      
      host.IOBROKER(SmartHome) Adapter "system.adapter.daswetter.0" is stopped.
      
      Aborting install because the npm version could not be checked!Please check that npm is installed correctly.Use "npm install -g npm@4" or "npm install -g npm@latest" to install a supported version.You need to make sure to repeat this step after installing an update to NodeJS and/or npm!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
      
      ERROR: Process exited with code 30
      
      GaspodeG 1 Antwort Letzte Antwort
      0
      • nik82N nik82

        Fängt schon an, keine Updates möglich:

        $ iobroker upgrade daswetter@3.1.4 --debug
        
        host.IOBROKER(SmartHome) Adapter "system.adapter.daswetter.0" is stopped.
        
        Aborting install because the npm version could not be checked!Please check that npm is installed correctly.Use "npm install -g npm@4" or "npm install -g npm@latest" to install a supported version.You need to make sure to repeat this step after installing an update to NodeJS and/or npm!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
        
        ERROR: Process exited with code 30
        
        GaspodeG Online
        GaspodeG Online
        Gaspode
        schrieb am zuletzt editiert von
        #43

        @nik82
        Hmm, sorry. Bin erst in der Mitte des Threads eingestiegen, als es darum ging, dass Node.js 16.17.1 funktioniert, neuere Versionen aber nicht. Du hast ja zusätzlich noch ein anderes Problem.

        Offensichtlich hast du ein Problem mit dem Paket "socks-proxy-agent".

        Was sagt denn

        npm ls
        
        1 Antwort Letzte Antwort
        1
        • nik82N Offline
          nik82N Offline
          nik82
          Most Active
          schrieb am zuletzt editiert von
          #44

          @gaspode
          Also ich habe noch Node.js v14 im Einsatz und will jetzt auf Node.js 16.
          Egal ob ich Node.js 16.15, 16.17 oder 16.19 installiere, immer der gleiche Fehler.
          Aber bin jetzt ein Stück weitergekommen und zwar habe ich wie schon oben beschrieben es nochmal so versucht:

          Bin so vorgegangen (mein Iobroker liegt auf C:\iobroker\SmartHome):

          1. C:\iobroker\SmartHome\nodejs\nodevars.bat wegkopiert
          2. Verzeichnisinhalt von "C:\iobroker\SmartHome\nodejs" komplett gelöscht
          3. Download der MSI Datei 64-bit: https://nodejs.org/download/release/v16.19.0/node-v16.19.0-x64.msi
          4. Installation ins vorhandene leere Verzeichnis: "C:\iobroker\SmartHome\nodejs"
            (zusätzlich noch Tools mitinstalliert)
          5. Iobroker Dienst auf "Lokales Systemkonto" gestellt
          6. node -v und npm -v bring alles korrekt:

          e46758fd-f483-4ba9-b859-9a296867b3de-image.png

          1. Iobroker gestartet

          ABER: Er bringt mit immer noch Fehler wenn ich einen Adapter updaten will:

          $ iobroker upgrade daswetter@3.1.4 --debug
          
          Update daswetter from @3.1.2 to @3.1.4
          
          NPM version: 8.19.3
          
          Installing iobroker.daswetter@3.1.4... (System call)
          
          npm WARN old lockfile so supplemental metadata must be fetched from the registry. npm WARN old lockfile npm WARN old lockfile This is a one-time fix-up, please be patient... npm WARN old lockfile
          
          npm WARN tarball tarball data for kodi-ws@https://github.com/iobroker-community-adapters/kodi-ws/tarball/master/ (sha512-MwuS5kn4j+/olDHH5/F+mO2fU0i2U2hsXsgK8zdj+kt6h8/Rf7iMxHLKcMyYkg1RRJFKY05/3v+GJbx28tetyQ==) seems to be corrupted. Trying again. 
          
          GaspodeG 1 Antwort Letzte Antwort
          0
          • nik82N nik82

            @gaspode
            Also ich habe noch Node.js v14 im Einsatz und will jetzt auf Node.js 16.
            Egal ob ich Node.js 16.15, 16.17 oder 16.19 installiere, immer der gleiche Fehler.
            Aber bin jetzt ein Stück weitergekommen und zwar habe ich wie schon oben beschrieben es nochmal so versucht:

            Bin so vorgegangen (mein Iobroker liegt auf C:\iobroker\SmartHome):

            1. C:\iobroker\SmartHome\nodejs\nodevars.bat wegkopiert
            2. Verzeichnisinhalt von "C:\iobroker\SmartHome\nodejs" komplett gelöscht
            3. Download der MSI Datei 64-bit: https://nodejs.org/download/release/v16.19.0/node-v16.19.0-x64.msi
            4. Installation ins vorhandene leere Verzeichnis: "C:\iobroker\SmartHome\nodejs"
              (zusätzlich noch Tools mitinstalliert)
            5. Iobroker Dienst auf "Lokales Systemkonto" gestellt
            6. node -v und npm -v bring alles korrekt:

            e46758fd-f483-4ba9-b859-9a296867b3de-image.png

            1. Iobroker gestartet

            ABER: Er bringt mit immer noch Fehler wenn ich einen Adapter updaten will:

            $ iobroker upgrade daswetter@3.1.4 --debug
            
            Update daswetter from @3.1.2 to @3.1.4
            
            NPM version: 8.19.3
            
            Installing iobroker.daswetter@3.1.4... (System call)
            
            npm WARN old lockfile so supplemental metadata must be fetched from the registry. npm WARN old lockfile npm WARN old lockfile This is a one-time fix-up, please be patient... npm WARN old lockfile
            
            npm WARN tarball tarball data for kodi-ws@https://github.com/iobroker-community-adapters/kodi-ws/tarball/master/ (sha512-MwuS5kn4j+/olDHH5/F+mO2fU0i2U2hsXsgK8zdj+kt6h8/Rf7iMxHLKcMyYkg1RRJFKY05/3v+GJbx28tetyQ==) seems to be corrupted. Trying again. 
            
            GaspodeG Online
            GaspodeG Online
            Gaspode
            schrieb am zuletzt editiert von
            #45

            @nik82

            Überlesen? Was sagt denn:

            npm ls
            
            nik82N 1 Antwort Letzte Antwort
            0
            • GaspodeG Gaspode

              @nik82

              Überlesen? Was sagt denn:

              npm ls
              
              nik82N Offline
              nik82N Offline
              nik82
              Most Active
              schrieb am zuletzt editiert von
              #46

              @gaspode sagte in Probleme bei Update auf Node.js 16.15.1 unter Windows:

              npm ls

              Oh sorry, hier der Auszug:

              C:\iobroker\SmartHome>npm ls
              iobroker.inst@2.0.3 C:\iobroker\SmartHome
              +-- colors@1.4.0
              +-- fs-extra@7.0.1
              +-- iobroker.admin@6.3.5
              +-- iobroker.alexa2@3.11.2
              +-- iobroker.backitup@2.4.9
              +-- iobroker.cloud@4.1.1
              +-- iobroker.daswetter@3.1.2
              +-- iobroker.device-watcher@2.5.0 (git+ssh://git@github.com/ciddi89/ioBroker.device-watcher.git#c2a2c8e70219770dd1e455fc3706cbaca8efa486)
              +-- iobroker.discovery@3.0.5
              +-- iobroker.email@1.1.3
              +-- iobroker.feiertage@1.1.0
              +-- iobroker.flot@1.10.7
              +-- iobroker.fronius@1.1.6 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.fronius.git#c644a95d480403a1ef277e822df6232ffc66daf5)
              +-- iobroker.go-e@1.0.25 (git+ssh://git@github.com/MK-2001/ioBroker.go-e.git#9dc5bf0217da59ff189d496682808d77f978850e)
              +-- iobroker.google-sharedlocations@2.1.4 (git+ssh://git@github.com/Garfonso/ioBroker.google-sharedlocations.git#018220f3aa3abacc7cf51608006f92a7f10f6442)
              +-- iobroker.harmony@1.2.2
              +-- iobroker.history@1.11.1
              +-- iobroker.hm-rega@3.0.40
              +-- iobroker.hm-rpc@1.15.12
              +-- iobroker.homeconnect@1.1.0
              +-- iobroker.ical@1.13.1 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.ical.git#a2b6a7c9cb7ccc9fa8b9b377bdbf9825e6e4f5f5)
              +-- iobroker.icons-mfd-svg@1.1.0
              +-- iobroker.info@1.9.19
              +-- iobroker.javascript@5.7.0
              +-- iobroker.js-controller@4.0.23
              +-- iobroker.kodi@2.0.8
              +-- iobroker.landroid@1.0.3
              +-- iobroker.logparser@1.1.0
              +-- iobroker.milight-smart-light@1.2.2
              +-- iobroker.mobile@1.0.1
              +-- iobroker.ping@1.5.3
              +-- iobroker.socketio@4.2.0
              +-- iobroker.sourceanalytix@0.4.14 (git+ssh://git@github.com/DrozmotiX/ioBroker.sourceanalytix.git#9c4635239c7b9321601dcf0fcdd8677a55a8b13f)
              +-- iobroker.stiebel-isg@1.7.5
              +-- iobroker.telegram@1.13.0
              +-- iobroker.tr-064@4.2.17
              +-- iobroker.unifi@0.5.10
              +-- iobroker.vis-colorpicker@1.2.0
              +-- iobroker.vis-fancyswitch@1.1.0
              +-- iobroker.vis-hqwidgets@1.2.0
              +-- iobroker.vis-jqui-mfd@1.0.12
              +-- iobroker.vis-justgage@1.0.2
              +-- iobroker.vis-map@1.0.4
              +-- iobroker.vis-materialdesign@0.5.86 (git+ssh://git@github.com/Scrounger/ioBroker.vis-materialdesign.git#cf7fc5b85debcda156a3ec7feb761cff217fa855)
              +-- iobroker.vis-timeandweather@1.1.7
              +-- iobroker.vis@1.4.15
              +-- iobroker.vw-connect@0.0.56 (git+ssh://git@github.com/ta2k/ioBroker.vw-connect.git#5258d16f58c3a4ed39b309a757353f792fd9fd8e)
              +-- iobroker.web@4.3.0
              +-- iobroker.wifilight@1.1.3
              +-- iobroker.worx@1.6.6 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.worx.git#f74920c46c5918a74bb1987a2e5e841fa1011dca)
              +-- iobroker.ws@1.3.0
              +-- semver@5.7.1
              +-- utile@ extraneous
              `-- yargs@7.1.0
              
              
              C:\iobroker\SmartHome>
              
              GaspodeG 1 Antwort Letzte Antwort
              0
              • nik82N nik82

                @gaspode sagte in Probleme bei Update auf Node.js 16.15.1 unter Windows:

                npm ls

                Oh sorry, hier der Auszug:

                C:\iobroker\SmartHome>npm ls
                iobroker.inst@2.0.3 C:\iobroker\SmartHome
                +-- colors@1.4.0
                +-- fs-extra@7.0.1
                +-- iobroker.admin@6.3.5
                +-- iobroker.alexa2@3.11.2
                +-- iobroker.backitup@2.4.9
                +-- iobroker.cloud@4.1.1
                +-- iobroker.daswetter@3.1.2
                +-- iobroker.device-watcher@2.5.0 (git+ssh://git@github.com/ciddi89/ioBroker.device-watcher.git#c2a2c8e70219770dd1e455fc3706cbaca8efa486)
                +-- iobroker.discovery@3.0.5
                +-- iobroker.email@1.1.3
                +-- iobroker.feiertage@1.1.0
                +-- iobroker.flot@1.10.7
                +-- iobroker.fronius@1.1.6 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.fronius.git#c644a95d480403a1ef277e822df6232ffc66daf5)
                +-- iobroker.go-e@1.0.25 (git+ssh://git@github.com/MK-2001/ioBroker.go-e.git#9dc5bf0217da59ff189d496682808d77f978850e)
                +-- iobroker.google-sharedlocations@2.1.4 (git+ssh://git@github.com/Garfonso/ioBroker.google-sharedlocations.git#018220f3aa3abacc7cf51608006f92a7f10f6442)
                +-- iobroker.harmony@1.2.2
                +-- iobroker.history@1.11.1
                +-- iobroker.hm-rega@3.0.40
                +-- iobroker.hm-rpc@1.15.12
                +-- iobroker.homeconnect@1.1.0
                +-- iobroker.ical@1.13.1 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.ical.git#a2b6a7c9cb7ccc9fa8b9b377bdbf9825e6e4f5f5)
                +-- iobroker.icons-mfd-svg@1.1.0
                +-- iobroker.info@1.9.19
                +-- iobroker.javascript@5.7.0
                +-- iobroker.js-controller@4.0.23
                +-- iobroker.kodi@2.0.8
                +-- iobroker.landroid@1.0.3
                +-- iobroker.logparser@1.1.0
                +-- iobroker.milight-smart-light@1.2.2
                +-- iobroker.mobile@1.0.1
                +-- iobroker.ping@1.5.3
                +-- iobroker.socketio@4.2.0
                +-- iobroker.sourceanalytix@0.4.14 (git+ssh://git@github.com/DrozmotiX/ioBroker.sourceanalytix.git#9c4635239c7b9321601dcf0fcdd8677a55a8b13f)
                +-- iobroker.stiebel-isg@1.7.5
                +-- iobroker.telegram@1.13.0
                +-- iobroker.tr-064@4.2.17
                +-- iobroker.unifi@0.5.10
                +-- iobroker.vis-colorpicker@1.2.0
                +-- iobroker.vis-fancyswitch@1.1.0
                +-- iobroker.vis-hqwidgets@1.2.0
                +-- iobroker.vis-jqui-mfd@1.0.12
                +-- iobroker.vis-justgage@1.0.2
                +-- iobroker.vis-map@1.0.4
                +-- iobroker.vis-materialdesign@0.5.86 (git+ssh://git@github.com/Scrounger/ioBroker.vis-materialdesign.git#cf7fc5b85debcda156a3ec7feb761cff217fa855)
                +-- iobroker.vis-timeandweather@1.1.7
                +-- iobroker.vis@1.4.15
                +-- iobroker.vw-connect@0.0.56 (git+ssh://git@github.com/ta2k/ioBroker.vw-connect.git#5258d16f58c3a4ed39b309a757353f792fd9fd8e)
                +-- iobroker.web@4.3.0
                +-- iobroker.wifilight@1.1.3
                +-- iobroker.worx@1.6.6 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.worx.git#f74920c46c5918a74bb1987a2e5e841fa1011dca)
                +-- iobroker.ws@1.3.0
                +-- semver@5.7.1
                +-- utile@ extraneous
                `-- yargs@7.1.0
                
                
                C:\iobroker\SmartHome>
                
                GaspodeG Online
                GaspodeG Online
                Gaspode
                schrieb am zuletzt editiert von Gaspode
                #47

                @nik82
                Seltsam. Laut npm ist socks-proxy-agent gar nicht installiert. Evtl. ist das das Problem? die Datei

                C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\socks-proxy-agent\dist\index.js
                

                Dürfte es nach meinem Verständnis also gar nicht geben.

                Du hättest jetzt zwei Möglichkeiten, beide sind aber nicht ganz risikolos. Ich selbst würde versuchen, die Flucht nach vorn anzutreten und das Paket einfach mal in der aktuellen Version installieren, das geht mit

                npm i socks-proxy-agent@latest
                

                Oder du löschst den Ordner

                C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\socks-proxy-agent
                

                einfach mal bzw. schiebst ihn irgendwo außerhalb des ioBroker Installationsordners hin. Dann kannst du ihn wieder zurück schieben, falls es nichts gebracht hat.

                Auf jeden Fall immer alles in der ioBroker Cmd Box ausführen, aber das weißt du ja.

                nik82N 1 Antwort Letzte Antwort
                1
                • GaspodeG Gaspode

                  @nik82
                  Seltsam. Laut npm ist socks-proxy-agent gar nicht installiert. Evtl. ist das das Problem? die Datei

                  C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\socks-proxy-agent\dist\index.js
                  

                  Dürfte es nach meinem Verständnis also gar nicht geben.

                  Du hättest jetzt zwei Möglichkeiten, beide sind aber nicht ganz risikolos. Ich selbst würde versuchen, die Flucht nach vorn anzutreten und das Paket einfach mal in der aktuellen Version installieren, das geht mit

                  npm i socks-proxy-agent@latest
                  

                  Oder du löschst den Ordner

                  C:\iobroker\SmartHome\nodejs\node_modules\npm\node_modules\socks-proxy-agent
                  

                  einfach mal bzw. schiebst ihn irgendwo außerhalb des ioBroker Installationsordners hin. Dann kannst du ihn wieder zurück schieben, falls es nichts gebracht hat.

                  Auf jeden Fall immer alles in der ioBroker Cmd Box ausführen, aber das weißt du ja.

                  nik82N Offline
                  nik82N Offline
                  nik82
                  Most Active
                  schrieb am zuletzt editiert von
                  #48

                  @gaspode
                  Also wir können alles probieren, hab eine Sicherung und sogar ein ganzes Image vom PC vorsichtshalber gemacht :-)

                  Also die Datei ist da:

                  6da16b66-e634-49d9-8835-20686b1649ff-image.png

                  Hab jetzt mal "npm i socks-proxy-agent@latest" ausgeführt:

                  C:\iobroker\SmartHome>npm i socks-proxy-agent@latest
                  npm WARN old lockfile
                  npm WARN old lockfile The package-lock.json file was created with an old version of npm,
                  npm WARN old lockfile so supplemental metadata must be fetched from the registry.
                  npm WARN old lockfile
                  npm WARN old lockfile This is a one-time fix-up, please be patient...
                  npm WARN old lockfile
                  npm WARN tarball tarball data for kodi-ws@https://github.com/iobroker-community-adapters/kodi-ws/tarball/master/ (sha512-MwuS5kn4j+/olDHH5/F+mO2fU0i2U2hsXsgK8zdj+kt6h8/Rf7iMxHLKcMyYkg1RRJFKY05/3v+GJbx28tetyQ==) seems to be corrupted. Trying again.
                  npm ERR! code EINTEGRITY
                  npm ERR! sha512-MwuS5kn4j+/olDHH5/F+mO2fU0i2U2hsXsgK8zdj+kt6h8/Rf7iMxHLKcMyYkg1RRJFKY05/3v+GJbx28tetyQ== integrity checksum failed when using sha512: wanted sha512-MwuS5kn4j+/olDHH5/F+mO2fU0i2U2hsXsgK8zdj+kt6h8/Rf7iMxHLKcMyYkg1RRJFKY05/3v+GJbx28tetyQ== but got sha512-1QUPuHZJ29WQOk873i769CVq1BcWxgUlC4lwHLU8xv8xMhcD+m+4OkB0hI2NIOKIjtJKBDnFmFot65W01lR0oQ==. (5811 bytes)
                  
                  npm ERR! A complete log of this run can be found in:
                  npm ERR!     C:\Users\User\AppData\Local\npm-cache\_logs\2023-02-11T09_32_23_010Z-debug-0.log
                  
                  C:\iobroker\SmartHome>
                  

                  Was mir komisch vorkommt ist diese tarball Fehlermeldung vom Kodi, ich brauch den Adapter gar nicht mehr, aber er lässt sich auch nicht mehr deinstallieren:

                  $ iobroker del kodi --custom --debug
                  
                  Delete adapter "kodi"
                  
                  host.IOBROKER(SmartHome) object kodi deleted
                  
                  host.IOBROKER(SmartHome) object kodi.admin deleted
                  
                  Error deleting adapter kodi from disk: host.IOBROKER(SmartHome): Cannot uninstall iobroker.kodi: 1
                  
                  You might have to delete it yourself!
                  
                  Process exited with code 0
                  
                  GaspodeG 1 Antwort Letzte Antwort
                  0
                  • nik82N nik82

                    @gaspode
                    Also wir können alles probieren, hab eine Sicherung und sogar ein ganzes Image vom PC vorsichtshalber gemacht :-)

                    Also die Datei ist da:

                    6da16b66-e634-49d9-8835-20686b1649ff-image.png

                    Hab jetzt mal "npm i socks-proxy-agent@latest" ausgeführt:

                    C:\iobroker\SmartHome>npm i socks-proxy-agent@latest
                    npm WARN old lockfile
                    npm WARN old lockfile The package-lock.json file was created with an old version of npm,
                    npm WARN old lockfile so supplemental metadata must be fetched from the registry.
                    npm WARN old lockfile
                    npm WARN old lockfile This is a one-time fix-up, please be patient...
                    npm WARN old lockfile
                    npm WARN tarball tarball data for kodi-ws@https://github.com/iobroker-community-adapters/kodi-ws/tarball/master/ (sha512-MwuS5kn4j+/olDHH5/F+mO2fU0i2U2hsXsgK8zdj+kt6h8/Rf7iMxHLKcMyYkg1RRJFKY05/3v+GJbx28tetyQ==) seems to be corrupted. Trying again.
                    npm ERR! code EINTEGRITY
                    npm ERR! sha512-MwuS5kn4j+/olDHH5/F+mO2fU0i2U2hsXsgK8zdj+kt6h8/Rf7iMxHLKcMyYkg1RRJFKY05/3v+GJbx28tetyQ== integrity checksum failed when using sha512: wanted sha512-MwuS5kn4j+/olDHH5/F+mO2fU0i2U2hsXsgK8zdj+kt6h8/Rf7iMxHLKcMyYkg1RRJFKY05/3v+GJbx28tetyQ== but got sha512-1QUPuHZJ29WQOk873i769CVq1BcWxgUlC4lwHLU8xv8xMhcD+m+4OkB0hI2NIOKIjtJKBDnFmFot65W01lR0oQ==. (5811 bytes)
                    
                    npm ERR! A complete log of this run can be found in:
                    npm ERR!     C:\Users\User\AppData\Local\npm-cache\_logs\2023-02-11T09_32_23_010Z-debug-0.log
                    
                    C:\iobroker\SmartHome>
                    

                    Was mir komisch vorkommt ist diese tarball Fehlermeldung vom Kodi, ich brauch den Adapter gar nicht mehr, aber er lässt sich auch nicht mehr deinstallieren:

                    $ iobroker del kodi --custom --debug
                    
                    Delete adapter "kodi"
                    
                    host.IOBROKER(SmartHome) object kodi deleted
                    
                    host.IOBROKER(SmartHome) object kodi.admin deleted
                    
                    Error deleting adapter kodi from disk: host.IOBROKER(SmartHome): Cannot uninstall iobroker.kodi: 1
                    
                    You might have to delete it yourself!
                    
                    Process exited with code 0
                    
                    GaspodeG Online
                    GaspodeG Online
                    Gaspode
                    schrieb am zuletzt editiert von
                    #49

                    @nik82

                    Das war auch schon unter node 14 so?

                    Ich würde die Meldung so interpretieren, dass du den Codi Ordner selbst löschen sollst.

                    Der müsste hier liegen:

                    C:\iobroker\SmartHome\node_modules\iobroker.js-controller\node_modules\iobroker.codi
                    
                    nik82N 1 Antwort Letzte Antwort
                    0
                    • GaspodeG Gaspode

                      @nik82

                      Das war auch schon unter node 14 so?

                      Ich würde die Meldung so interpretieren, dass du den Codi Ordner selbst löschen sollst.

                      Der müsste hier liegen:

                      C:\iobroker\SmartHome\node_modules\iobroker.js-controller\node_modules\iobroker.codi
                      
                      nik82N Offline
                      nik82N Offline
                      nik82
                      Most Active
                      schrieb am zuletzt editiert von nik82
                      #50

                      @gaspode
                      Ne das ist leider nichts drin:

                      fc141fbb-2a79-4f5e-b2da-ee3a91b30df4-image.png

                      Aber hier wäre er drin: C:\iobroker\SmartHome\node_modules\iobroker.kodi

                      Nur wenn ich ihn hier rauslösche, dann kommt mit "npm ls" eine fette Fehlermeldung:

                      C:\iobroker\SmartHome>npm ls
                      iobroker.inst@2.0.3 C:\iobroker\SmartHome
                      +-- colors@1.4.0
                      +-- fs-extra@7.0.1
                      +-- get-value@3.0.1 extraneous
                      +-- has-value@2.0.2 extraneous
                      +-- has-values@2.0.1 extraneous
                      +-- iobroker.admin@6.3.5
                      +-- iobroker.alexa2@3.11.2
                      +-- iobroker.backitup@2.4.9
                      +-- iobroker.cloud@4.1.1
                      +-- iobroker.daswetter@3.1.2
                      +-- iobroker.device-watcher@2.5.0 (git+ssh://git@github.com/ciddi89/ioBroker.device-watcher.git#c2a2c8e70219770dd1e455fc3706cbaca8efa486)
                      +-- iobroker.discovery@3.0.5
                      +-- iobroker.email@1.1.3
                      +-- iobroker.feiertage@1.1.0
                      +-- iobroker.flot@1.10.7
                      +-- iobroker.fronius@1.1.6 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.fronius.git#c644a95d480403a1ef277e822df6232ffc66daf5)
                      +-- iobroker.go-e@1.0.25 (git+ssh://git@github.com/MK-2001/ioBroker.go-e.git#9dc5bf0217da59ff189d496682808d77f978850e)
                      +-- iobroker.google-sharedlocations@2.1.4 (git+ssh://git@github.com/Garfonso/ioBroker.google-sharedlocations.git#018220f3aa3abacc7cf51608006f92a7f10f6442)
                      +-- iobroker.harmony@1.2.2
                      +-- iobroker.history@1.11.1
                      +-- iobroker.hm-rega@3.0.40
                      +-- iobroker.hm-rpc@1.15.12
                      +-- iobroker.homeconnect@1.1.0
                      +-- iobroker.ical@1.13.1 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.ical.git#a2b6a7c9cb7ccc9fa8b9b377bdbf9825e6e4f5f5)
                      +-- iobroker.icons-mfd-svg@1.1.0
                      +-- iobroker.info@1.9.19
                      +-- iobroker.javascript@5.7.0
                      +-- iobroker.js-controller@4.0.23
                      +-- UNMET DEPENDENCY iobroker.kodi@2.0.8
                      +-- iobroker.landroid@1.0.3
                      +-- iobroker.logparser@1.1.0
                      +-- iobroker.milight-smart-light@1.2.2
                      +-- iobroker.mobile@1.0.1
                      +-- iobroker.ping@1.5.3
                      +-- iobroker.socketio@4.2.0
                      +-- iobroker.sourceanalytix@0.4.14 (git+ssh://git@github.com/DrozmotiX/ioBroker.sourceanalytix.git#9c4635239c7b9321601dcf0fcdd8677a55a8b13f)
                      +-- iobroker.stiebel-isg@1.7.5
                      +-- iobroker.telegram@1.13.0
                      +-- iobroker.tr-064@4.2.17
                      +-- iobroker.unifi@0.5.10
                      +-- iobroker.vis-colorpicker@1.2.0
                      +-- iobroker.vis-fancyswitch@1.1.0
                      +-- iobroker.vis-hqwidgets@1.2.0
                      +-- iobroker.vis-jqui-mfd@1.0.12
                      +-- iobroker.vis-justgage@1.0.2
                      +-- iobroker.vis-map@1.0.4
                      +-- iobroker.vis-materialdesign@0.5.86 (git+ssh://git@github.com/Scrounger/ioBroker.vis-materialdesign.git#cf7fc5b85debcda156a3ec7feb761cff217fa855)
                      +-- iobroker.vis-timeandweather@1.1.7
                      +-- iobroker.vis@1.4.15
                      +-- iobroker.vw-connect@0.0.56 (git+ssh://git@github.com/ta2k/ioBroker.vw-connect.git#5258d16f58c3a4ed39b309a757353f792fd9fd8e)
                      +-- iobroker.web@4.3.0
                      +-- iobroker.wifilight@1.1.3
                      +-- iobroker.worx@1.6.6 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.worx.git#f74920c46c5918a74bb1987a2e5e841fa1011dca)
                      +-- iobroker.ws@1.3.0
                      +-- is-plain-object@2.0.4 extraneous
                      +-- is-primitive@3.0.1 extraneous
                      +-- isobject@3.0.1 extraneous
                      +-- jrpc-schema@2.1.0 extraneous
                      +-- kodi-ws@2.4.0 extraneous
                      +-- semver@5.7.1
                      +-- skeemas-json-pointer@1.0.0 extraneous
                      +-- skeemas-json-refs@1.0.1 extraneous
                      +-- skeemas@1.2.5 extraneous
                      +-- utile@ extraneous
                      `-- yargs@7.1.0
                      
                      npm ERR! code ELSPROBLEMS
                      npm ERR! extraneous: get-value@3.0.1 C:\iobroker\SmartHome\node_modules\get-value
                      npm ERR! extraneous: has-value@2.0.2 C:\iobroker\SmartHome\node_modules\has-value
                      npm ERR! extraneous: has-values@2.0.1 C:\iobroker\SmartHome\node_modules\has-values
                      npm ERR! missing: iobroker.kodi@2.0.8, required by iobroker.inst@2.0.3
                      npm ERR! extraneous: is-plain-object@2.0.4 C:\iobroker\SmartHome\node_modules\is-plain-object
                      npm ERR! extraneous: is-primitive@3.0.1 C:\iobroker\SmartHome\node_modules\is-primitive
                      npm ERR! extraneous: isobject@3.0.1 C:\iobroker\SmartHome\node_modules\isobject
                      npm ERR! extraneous: jrpc-schema@2.1.0 C:\iobroker\SmartHome\node_modules\jrpc-schema
                      npm ERR! extraneous: kodi-ws@2.4.0 C:\iobroker\SmartHome\node_modules\kodi-ws
                      npm ERR! extraneous: skeemas-json-pointer@1.0.0 C:\iobroker\SmartHome\node_modules\skeemas-json-pointer
                      npm ERR! extraneous: skeemas-json-refs@1.0.1 C:\iobroker\SmartHome\node_modules\skeemas-json-refs
                      npm ERR! extraneous: skeemas@1.2.5 C:\iobroker\SmartHome\node_modules\skeemas
                      npm ERR! extraneous: utile@ C:\iobroker\SmartHome\node_modules\utile
                      
                      npm ERR! A complete log of this run can be found in:
                      npm ERR!     C:\Users\User\AppData\Local\npm-cache\_logs\2023-02-11T09_46_21_365Z-debug-0.log
                      
                      C:\iobroker\SmartHome>
                      
                      GaspodeG 1 Antwort Letzte Antwort
                      0
                      • nik82N nik82

                        @gaspode
                        Ne das ist leider nichts drin:

                        fc141fbb-2a79-4f5e-b2da-ee3a91b30df4-image.png

                        Aber hier wäre er drin: C:\iobroker\SmartHome\node_modules\iobroker.kodi

                        Nur wenn ich ihn hier rauslösche, dann kommt mit "npm ls" eine fette Fehlermeldung:

                        C:\iobroker\SmartHome>npm ls
                        iobroker.inst@2.0.3 C:\iobroker\SmartHome
                        +-- colors@1.4.0
                        +-- fs-extra@7.0.1
                        +-- get-value@3.0.1 extraneous
                        +-- has-value@2.0.2 extraneous
                        +-- has-values@2.0.1 extraneous
                        +-- iobroker.admin@6.3.5
                        +-- iobroker.alexa2@3.11.2
                        +-- iobroker.backitup@2.4.9
                        +-- iobroker.cloud@4.1.1
                        +-- iobroker.daswetter@3.1.2
                        +-- iobroker.device-watcher@2.5.0 (git+ssh://git@github.com/ciddi89/ioBroker.device-watcher.git#c2a2c8e70219770dd1e455fc3706cbaca8efa486)
                        +-- iobroker.discovery@3.0.5
                        +-- iobroker.email@1.1.3
                        +-- iobroker.feiertage@1.1.0
                        +-- iobroker.flot@1.10.7
                        +-- iobroker.fronius@1.1.6 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.fronius.git#c644a95d480403a1ef277e822df6232ffc66daf5)
                        +-- iobroker.go-e@1.0.25 (git+ssh://git@github.com/MK-2001/ioBroker.go-e.git#9dc5bf0217da59ff189d496682808d77f978850e)
                        +-- iobroker.google-sharedlocations@2.1.4 (git+ssh://git@github.com/Garfonso/ioBroker.google-sharedlocations.git#018220f3aa3abacc7cf51608006f92a7f10f6442)
                        +-- iobroker.harmony@1.2.2
                        +-- iobroker.history@1.11.1
                        +-- iobroker.hm-rega@3.0.40
                        +-- iobroker.hm-rpc@1.15.12
                        +-- iobroker.homeconnect@1.1.0
                        +-- iobroker.ical@1.13.1 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.ical.git#a2b6a7c9cb7ccc9fa8b9b377bdbf9825e6e4f5f5)
                        +-- iobroker.icons-mfd-svg@1.1.0
                        +-- iobroker.info@1.9.19
                        +-- iobroker.javascript@5.7.0
                        +-- iobroker.js-controller@4.0.23
                        +-- UNMET DEPENDENCY iobroker.kodi@2.0.8
                        +-- iobroker.landroid@1.0.3
                        +-- iobroker.logparser@1.1.0
                        +-- iobroker.milight-smart-light@1.2.2
                        +-- iobroker.mobile@1.0.1
                        +-- iobroker.ping@1.5.3
                        +-- iobroker.socketio@4.2.0
                        +-- iobroker.sourceanalytix@0.4.14 (git+ssh://git@github.com/DrozmotiX/ioBroker.sourceanalytix.git#9c4635239c7b9321601dcf0fcdd8677a55a8b13f)
                        +-- iobroker.stiebel-isg@1.7.5
                        +-- iobroker.telegram@1.13.0
                        +-- iobroker.tr-064@4.2.17
                        +-- iobroker.unifi@0.5.10
                        +-- iobroker.vis-colorpicker@1.2.0
                        +-- iobroker.vis-fancyswitch@1.1.0
                        +-- iobroker.vis-hqwidgets@1.2.0
                        +-- iobroker.vis-jqui-mfd@1.0.12
                        +-- iobroker.vis-justgage@1.0.2
                        +-- iobroker.vis-map@1.0.4
                        +-- iobroker.vis-materialdesign@0.5.86 (git+ssh://git@github.com/Scrounger/ioBroker.vis-materialdesign.git#cf7fc5b85debcda156a3ec7feb761cff217fa855)
                        +-- iobroker.vis-timeandweather@1.1.7
                        +-- iobroker.vis@1.4.15
                        +-- iobroker.vw-connect@0.0.56 (git+ssh://git@github.com/ta2k/ioBroker.vw-connect.git#5258d16f58c3a4ed39b309a757353f792fd9fd8e)
                        +-- iobroker.web@4.3.0
                        +-- iobroker.wifilight@1.1.3
                        +-- iobroker.worx@1.6.6 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.worx.git#f74920c46c5918a74bb1987a2e5e841fa1011dca)
                        +-- iobroker.ws@1.3.0
                        +-- is-plain-object@2.0.4 extraneous
                        +-- is-primitive@3.0.1 extraneous
                        +-- isobject@3.0.1 extraneous
                        +-- jrpc-schema@2.1.0 extraneous
                        +-- kodi-ws@2.4.0 extraneous
                        +-- semver@5.7.1
                        +-- skeemas-json-pointer@1.0.0 extraneous
                        +-- skeemas-json-refs@1.0.1 extraneous
                        +-- skeemas@1.2.5 extraneous
                        +-- utile@ extraneous
                        `-- yargs@7.1.0
                        
                        npm ERR! code ELSPROBLEMS
                        npm ERR! extraneous: get-value@3.0.1 C:\iobroker\SmartHome\node_modules\get-value
                        npm ERR! extraneous: has-value@2.0.2 C:\iobroker\SmartHome\node_modules\has-value
                        npm ERR! extraneous: has-values@2.0.1 C:\iobroker\SmartHome\node_modules\has-values
                        npm ERR! missing: iobroker.kodi@2.0.8, required by iobroker.inst@2.0.3
                        npm ERR! extraneous: is-plain-object@2.0.4 C:\iobroker\SmartHome\node_modules\is-plain-object
                        npm ERR! extraneous: is-primitive@3.0.1 C:\iobroker\SmartHome\node_modules\is-primitive
                        npm ERR! extraneous: isobject@3.0.1 C:\iobroker\SmartHome\node_modules\isobject
                        npm ERR! extraneous: jrpc-schema@2.1.0 C:\iobroker\SmartHome\node_modules\jrpc-schema
                        npm ERR! extraneous: kodi-ws@2.4.0 C:\iobroker\SmartHome\node_modules\kodi-ws
                        npm ERR! extraneous: skeemas-json-pointer@1.0.0 C:\iobroker\SmartHome\node_modules\skeemas-json-pointer
                        npm ERR! extraneous: skeemas-json-refs@1.0.1 C:\iobroker\SmartHome\node_modules\skeemas-json-refs
                        npm ERR! extraneous: skeemas@1.2.5 C:\iobroker\SmartHome\node_modules\skeemas
                        npm ERR! extraneous: utile@ C:\iobroker\SmartHome\node_modules\utile
                        
                        npm ERR! A complete log of this run can be found in:
                        npm ERR!     C:\Users\User\AppData\Local\npm-cache\_logs\2023-02-11T09_46_21_365Z-debug-0.log
                        
                        C:\iobroker\SmartHome>
                        
                        GaspodeG Online
                        GaspodeG Online
                        Gaspode
                        schrieb am zuletzt editiert von
                        #51

                        @nik82
                        Irgendwas ist da ganz schön verbogen. Versuch mal, den Ordner wieder herzustellen und per npm zu deinstallieren:

                        npm uninstall iobroker.codi
                        

                        Wenn das nicht geht, was sagt

                        npm ls -a
                        

                        Das wird aber sehhhhr lang bei dir.

                        nik82N 1 Antwort Letzte Antwort
                        0
                        • GaspodeG Gaspode

                          @nik82
                          Irgendwas ist da ganz schön verbogen. Versuch mal, den Ordner wieder herzustellen und per npm zu deinstallieren:

                          npm uninstall iobroker.codi
                          

                          Wenn das nicht geht, was sagt

                          npm ls -a
                          

                          Das wird aber sehhhhr lang bei dir.

                          nik82N Offline
                          nik82N Offline
                          nik82
                          Most Active
                          schrieb am zuletzt editiert von
                          #52

                          @gaspode

                          Du schreibst codi mit "c", der adapter heißt aber "kodi".

                          npm uninstall iobroker.codi:

                          C:\iobroker\SmartHome>npm uninstall iobroker.codi
                          npm WARN old lockfile
                          npm WARN old lockfile The package-lock.json file was created with an old version of npm,
                          npm WARN old lockfile so supplemental metadata must be fetched from the registry.
                          npm WARN old lockfile
                          npm WARN old lockfile This is a one-time fix-up, please be patient...
                          npm WARN old lockfile
                          npm WARN tarball tarball data for kodi-ws@https://github.com/iobroker-community-adapters/kodi-ws/tarball/master/ (sha512-MwuS5kn4j+/olDHH5/F+mO2fU0i2U2hsXsgK8zdj+kt6h8/Rf7iMxHLKcMyYkg1RRJFKY05/3v+GJbx28tetyQ==) seems to be corrupted. Trying again.
                          npm ERR! code EINTEGRITY
                          npm ERR! sha512-MwuS5kn4j+/olDHH5/F+mO2fU0i2U2hsXsgK8zdj+kt6h8/Rf7iMxHLKcMyYkg1RRJFKY05/3v+GJbx28tetyQ== integrity checksum failed when using sha512: wanted sha512-MwuS5kn4j+/olDHH5/F+mO2fU0i2U2hsXsgK8zdj+kt6h8/Rf7iMxHLKcMyYkg1RRJFKY05/3v+GJbx28tetyQ== but got sha512-1QUPuHZJ29WQOk873i769CVq1BcWxgUlC4lwHLU8xv8xMhcD+m+4OkB0hI2NIOKIjtJKBDnFmFot65W01lR0oQ==. (5811 bytes)
                          
                          npm ERR! A complete log of this run can be found in:
                          npm ERR!     C:\Users\User\AppData\Local\npm-cache\_logs\2023-02-11T09_54_54_878Z-debug-0.log
                          
                          C:\iobroker\SmartHome>
                          

                          npm uninstall iobroker.kodi:

                          C:\iobroker\SmartHome>npm uninstall iobroker.kodi
                          npm WARN old lockfile
                          npm WARN old lockfile The package-lock.json file was created with an old version of npm,
                          npm WARN old lockfile so supplemental metadata must be fetched from the registry.
                          npm WARN old lockfile
                          npm WARN old lockfile This is a one-time fix-up, please be patient...
                          npm WARN old lockfile
                          npm WARN tarball tarball data for kodi-ws@https://github.com/iobroker-community-adapters/kodi-ws/tarball/master/ (sha512-MwuS5kn4j+/olDHH5/F+mO2fU0i2U2hsXsgK8zdj+kt6h8/Rf7iMxHLKcMyYkg1RRJFKY05/3v+GJbx28tetyQ==) seems to be corrupted. Trying again.
                          npm ERR! code EINTEGRITY
                          npm ERR! sha512-MwuS5kn4j+/olDHH5/F+mO2fU0i2U2hsXsgK8zdj+kt6h8/Rf7iMxHLKcMyYkg1RRJFKY05/3v+GJbx28tetyQ== integrity checksum failed when using sha512: wanted sha512-MwuS5kn4j+/olDHH5/F+mO2fU0i2U2hsXsgK8zdj+kt6h8/Rf7iMxHLKcMyYkg1RRJFKY05/3v+GJbx28tetyQ== but got sha512-1QUPuHZJ29WQOk873i769CVq1BcWxgUlC4lwHLU8xv8xMhcD+m+4OkB0hI2NIOKIjtJKBDnFmFot65W01lR0oQ==. (5811 bytes)
                          
                          npm ERR! A complete log of this run can be found in:
                          npm ERR!     C:\Users\User\AppData\Local\npm-cache\_logs\2023-02-11T09_56_15_574Z-debug-0.log
                          
                          C:\iobroker\SmartHome>
                          

                          npm ls -a:

                          C:\iobroker\SmartHome>npm ls -a
                          iobroker.inst@2.0.3 C:\iobroker\SmartHome
                          +-- colors@1.4.0
                          +-- fs-extra@7.0.1
                          | +-- graceful-fs@4.2.3
                          | +-- jsonfile@4.0.0
                          | | `-- graceful-fs@4.2.3 deduped
                          | `-- universalify@0.1.2
                          +-- iobroker.admin@6.3.5
                          | +-- @iobroker/adapter-core@2.6.7
                          | | `-- @types/iobroker@4.0.5
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- @iobroker/socket-classes@1.0.2
                          | | +-- @iobroker/adapter-core@2.6.7
                          | | | `-- @types/iobroker@4.0.5
                          | | |   `-- @types/node@12.12.12 deduped
                          | | +-- axios@0.27.2
                          | | | +-- follow-redirects@1.15.1 deduped
                          | | | `-- form-data@4.0.0
                          | | |   +-- asynckit@0.4.0 deduped
                          | | |   +-- combined-stream@1.0.8 deduped
                          | | |   `-- mime-types@2.1.25 deduped
                          | | +-- cookie-parser@1.4.6 deduped
                          | | `-- passport@0.6.0
                          | |   +-- passport-strategy@1.0.0 deduped
                          | |   +-- pause@0.0.1 deduped
                          | |   `-- utils-merge@1.0.1 deduped
                          | +-- @iobroker/ws-server@2.1.0
                          | | `-- ws@8.8.0 deduped
                          | +-- axios@0.27.2
                          | | +-- follow-redirects@1.15.1
                          | | `-- form-data@4.0.0
                          | |   +-- asynckit@0.4.0
                          | |   +-- combined-stream@1.0.8 deduped
                          | |   `-- mime-types@2.1.25 deduped
                          | +-- body-parser@1.20.1
                          | | +-- bytes@3.1.2
                          | | +-- content-type@1.0.4
                          | | +-- debug@2.6.9
                          | | | `-- ms@2.0.0
                          | | +-- depd@2.0.0
                          | | +-- destroy@1.2.0
                          | | +-- http-errors@2.0.0
                          | | | +-- depd@2.0.0 deduped
                          | | | +-- inherits@2.0.4
                          | | | +-- setprototypeof@1.2.0 deduped
                          | | | +-- statuses@2.0.1 deduped
                          | | | `-- toidentifier@1.0.1
                          | | +-- iconv-lite@0.4.24
                          | | | `-- safer-buffer@2.1.2 deduped
                          | | +-- on-finished@2.4.1
                          | | | `-- ee-first@1.1.1
                          | | +-- qs@6.11.0
                          | | | `-- side-channel@1.0.4 deduped
                          | | +-- raw-body@2.5.1
                          | | | +-- bytes@3.1.2 deduped
                          | | | +-- http-errors@2.0.0 deduped
                          | | | +-- iconv-lite@0.4.24 deduped
                          | | | `-- unpipe@1.0.0 deduped
                          | | +-- type-is@1.6.18
                          | | | +-- media-typer@0.3.0
                          | | | `-- mime-types@2.1.25 deduped
                          | | `-- unpipe@1.0.0
                          | +-- compression@1.7.4
                          | | +-- accepts@1.3.8
                          | | | +-- mime-types@2.1.35
                          | | | | `-- mime-db@1.52.0
                          | | | `-- negotiator@0.6.3
                          | | +-- bytes@3.0.0
                          | | +-- compressible@2.0.18
                          | | | `-- mime-db@1.52.0
                          | | +-- debug@2.6.9 deduped
                          | | +-- on-headers@1.0.2
                          | | +-- safe-buffer@5.1.2
                          | | `-- vary@1.1.2
                          | +-- connect-flash@0.1.1
                          | +-- cookie-parser@1.4.6
                          | | +-- cookie-signature@1.0.6
                          | | `-- cookie@0.4.1
                          | +-- express-fileupload@1.4.0
                          | | `-- busboy@1.6.0
                          | |   `-- streamsearch@1.1.0
                          | +-- express-session@1.17.3
                          | | +-- cookie-signature@1.0.6 deduped
                          | | +-- cookie@0.4.2
                          | | +-- debug@2.6.9 deduped
                          | | +-- depd@2.0.0 deduped
                          | | +-- on-headers@1.0.2 deduped
                          | | +-- parseurl@1.3.3
                          | | +-- safe-buffer@5.2.1
                          | | `-- uid-safe@2.1.5
                          | |   `-- random-bytes@1.0.0
                          | +-- express@4.18.2
                          | | +-- accepts@1.3.8 deduped
                          | | +-- array-flatten@1.1.1
                          | | +-- body-parser@1.20.1 deduped
                          | | +-- content-disposition@0.5.4
                          | | | `-- safe-buffer@5.2.1
                          | | +-- content-type@1.0.4 deduped
                          | | +-- cookie-signature@1.0.6 deduped
                          | | +-- cookie@0.5.0
                          | | +-- debug@2.6.9 deduped
                          | | +-- depd@2.0.0 deduped
                          | | +-- encodeurl@1.0.2
                          | | +-- escape-html@1.0.3
                          | | +-- etag@1.8.1
                          | | +-- finalhandler@1.2.0
                          | | | +-- debug@2.6.9 deduped
                          | | | +-- encodeurl@1.0.2 deduped
                          | | | +-- escape-html@1.0.3 deduped
                          | | | +-- on-finished@2.4.1 deduped
                          | | | +-- parseurl@1.3.3 deduped
                          | | | +-- statuses@2.0.1 deduped
                          | | | `-- unpipe@1.0.0 deduped
                          | | +-- fresh@0.5.2
                          | | +-- http-errors@2.0.0 deduped
                          | | +-- merge-descriptors@1.0.1
                          | | +-- methods@1.1.2
                          | | +-- on-finished@2.4.1 deduped
                          | | +-- parseurl@1.3.3 deduped
                          | | +-- path-to-regexp@0.1.7
                          | | +-- proxy-addr@2.0.7
                          | | | +-- forwarded@0.2.0
                          | | | `-- ipaddr.js@1.9.1
                          | | +-- qs@6.11.0 deduped
                          | | +-- range-parser@1.2.1
                          | | +-- safe-buffer@5.2.1
                          | | +-- send@0.18.0
                          | | | +-- debug@2.6.9 deduped
                          | | | +-- depd@2.0.0 deduped
                          | | | +-- destroy@1.2.0 deduped
                          | | | +-- encodeurl@1.0.2 deduped
                          | | | +-- escape-html@1.0.3 deduped
                          | | | +-- etag@1.8.1 deduped
                          | | | +-- fresh@0.5.2 deduped
                          | | | +-- http-errors@2.0.0 deduped
                          | | | +-- mime@1.6.0 deduped
                          | | | +-- ms@2.1.3
                          | | | +-- on-finished@2.4.1 deduped
                          | | | +-- range-parser@1.2.1 deduped
                          | | | `-- statuses@2.0.1 deduped
                          | | +-- serve-static@1.15.0
                          | | | +-- encodeurl@1.0.2 deduped
                          | | | +-- escape-html@1.0.3 deduped
                          | | | +-- parseurl@1.3.3 deduped
                          | | | `-- send@0.18.0 deduped
                          | | +-- setprototypeof@1.2.0
                          | | +-- statuses@2.0.1
                          | | +-- type-is@1.6.18 deduped
                          | | +-- utils-merge@1.0.1
                          | | `-- vary@1.1.2 deduped
                          | +-- mime@3.0.0
                          | +-- passport-local@1.0.0
                          | | `-- passport-strategy@1.0.0
                          | +-- passport@0.6.0
                          | | +-- passport-strategy@1.0.0 deduped
                          | | +-- pause@0.0.1
                          | | `-- utils-merge@1.0.1 deduped
                          | +-- semver@7.3.8
                          | | `-- lru-cache@6.0.0
                          | |   `-- yallist@4.0.0 deduped
                          | `-- ws@8.12.0
                          |   +-- UNMET OPTIONAL DEPENDENCY bufferutil@^4.0.1
                          |   `-- UNMET OPTIONAL DEPENDENCY utf-8-validate@>=5.0.2
                          +-- iobroker.alexa2@3.11.2
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- @sentry/integrations@6.19.7
                          | | +-- @sentry/types@6.19.7
                          | | +-- @sentry/utils@6.19.7
                          | | | +-- @sentry/types@6.19.7 deduped
                          | | | `-- tslib@1.14.1 deduped
                          | | +-- localforage@1.10.0
                          | | | `-- lie@3.1.1
                          | | |   `-- immediate@3.0.6 deduped
                          | | `-- tslib@1.14.1
                          | +-- @sentry/node@6.19.7
                          | | +-- @sentry/core@6.19.7
                          | | | +-- @sentry/hub@6.19.7 deduped
                          | | | +-- @sentry/minimal@6.19.7 deduped
                          | | | +-- @sentry/types@6.19.7 deduped
                          | | | +-- @sentry/utils@6.19.7 deduped
                          | | | `-- tslib@1.14.1 deduped
                          | | +-- @sentry/hub@6.19.7
                          | | | +-- @sentry/types@6.19.7 deduped
                          | | | +-- @sentry/utils@6.19.7 deduped
                          | | | `-- tslib@1.14.1 deduped
                          | | +-- @sentry/types@6.19.7 deduped
                          | | +-- @sentry/utils@6.19.7 deduped
                          | | +-- cookie@0.4.2
                          | | +-- https-proxy-agent@5.0.1
                          | | | +-- agent-base@6.0.2 deduped
                          | | | `-- debug@4.3.4
                          | | |   `-- ms@2.1.2
                          | | +-- lru_map@0.3.3
                          | | `-- tslib@1.14.1 deduped
                          | +-- alexa-remote2@4.1.2
                          | | +-- alexa-cookie2@4.0.3
                          | | | +-- cookie@0.5.0
                          | | | +-- express@4.18.1 deduped
                          | | | +-- http-proxy-middleware@2.0.6
                          | | | | +-- UNMET OPTIONAL DEPENDENCY @types/express@^4.17.13
                          | | | | +-- @types/http-proxy@1.17.9
                          | | | | | `-- @types/node@12.12.12 deduped
                          | | | | +-- http-proxy@1.18.1
                          | | | | | +-- eventemitter3@4.0.7
                          | | | | | +-- follow-redirects@1.15.1 deduped
                          | | | | | `-- requires-port@1.0.0 deduped
                          | | | | +-- is-glob@4.0.3 deduped
                          | | | | +-- is-plain-obj@3.0.0
                          | | | | `-- micromatch@4.0.5
                          | | | |   +-- braces@3.0.2 deduped
                          | | | |   `-- picomatch@2.3.1 deduped
                          | | | +-- http-proxy-response-rewrite@0.0.1
                          | | | | +-- bufferhelper@0.2.1
                          | | | | `-- concat-stream@1.6.2
                          | | | |   +-- buffer-from@1.1.2 deduped
                          | | | |   +-- inherits@2.0.3 deduped
                          | | | |   +-- readable-stream@2.3.6 deduped
                          | | | |   `-- typedarray@0.0.6 deduped
                          | | | +-- https@1.0.0 deduped
                          | | | `-- querystring@0.2.1 deduped
                          | | +-- extend@3.0.2
                          | | +-- https@1.0.0 deduped
                          | | +-- querystring@0.2.1
                          | | +-- uuid@8.3.2
                          | | `-- ws@8.8.0 deduped
                          | +-- https@1.0.0
                          | +-- nearest-color@0.4.4
                          | `-- source-map-support@0.5.21
                          |   +-- buffer-from@1.1.2
                          |   `-- source-map@0.6.1
                          +-- iobroker.backitup@2.4.9
                          | +-- @googleapis/drive@2.4.0
                          | | `-- googleapis-common@5.1.0
                          | |   +-- extend@3.0.2 deduped
                          | |   +-- gaxios@4.3.3
                          | |   | +-- abort-controller@3.0.0 deduped
                          | |   | +-- extend@3.0.2 deduped
                          | |   | +-- https-proxy-agent@5.0.1 deduped
                          | |   | +-- is-stream@2.0.1 deduped
                          | |   | `-- node-fetch@2.6.7 deduped
                          | |   +-- google-auth-library@7.14.1
                          | |   | +-- arrify@2.0.1 deduped
                          | |   | +-- base64-js@1.5.1 deduped
                          | |   | +-- ecdsa-sig-formatter@1.0.11 deduped
                          | |   | +-- fast-text-encoding@1.0.4 deduped
                          | |   | +-- gaxios@4.3.3 deduped
                          | |   | +-- gcp-metadata@4.3.1
                          | |   | | +-- gaxios@4.3.3 deduped
                          | |   | | `-- json-bigint@1.0.0 deduped
                          | |   | +-- gtoken@5.3.2
                          | |   | | +-- gaxios@4.3.3 deduped
                          | |   | | +-- google-p12-pem@3.1.4
                          | |   | | | `-- node-forge@1.3.1 deduped
                          | |   | | `-- jws@4.0.0
                          | |   | |   +-- jwa@2.0.0
                          | |   | |   | +-- buffer-equal-constant-time@1.0.1 deduped
                          | |   | |   | +-- ecdsa-sig-formatter@1.0.11 deduped
                          | |   | |   | `-- safe-buffer@5.1.2 deduped
                          | |   | |   `-- safe-buffer@5.1.2 deduped
                          | |   | +-- jws@4.0.0
                          | |   | | +-- jwa@2.0.0
                          | |   | | | +-- buffer-equal-constant-time@1.0.1 deduped
                          | |   | | | +-- ecdsa-sig-formatter@1.0.11 deduped
                          | |   | | | `-- safe-buffer@5.1.2 deduped
                          | |   | | `-- safe-buffer@5.1.2 deduped
                          | |   | `-- lru-cache@6.0.0 deduped
                          | |   +-- qs@6.10.3 deduped
                          | |   +-- url-template@2.0.8
                          | |   `-- uuid@8.3.2
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- axios@0.27.2
                          | | +-- follow-redirects@1.15.1
                          | | `-- form-data@4.0.0
                          | |   +-- asynckit@0.4.0 deduped
                          | |   +-- combined-stream@1.0.8 deduped
                          | |   `-- mime-types@2.1.25 deduped
                          | +-- dropbox-v2-api@2.5.3
                          | | `-- request@2.88.2
                          | |   +-- aws-sign2@0.7.0 deduped
                          | |   +-- aws4@1.8.0 deduped
                          | |   +-- caseless@0.12.0 deduped
                          | |   +-- combined-stream@1.0.8 deduped
                          | |   +-- extend@3.0.2 deduped
                          | |   +-- forever-agent@0.6.1 deduped
                          | |   +-- form-data@2.3.3 deduped
                          | |   +-- har-validator@5.1.3 deduped
                          | |   +-- http-signature@1.2.0 deduped
                          | |   +-- is-typedarray@1.0.0 deduped
                          | |   +-- isstream@0.1.2 deduped
                          | |   +-- json-stringify-safe@5.0.1 deduped
                          | |   +-- mime-types@2.1.25 deduped
                          | |   +-- oauth-sign@0.9.0 deduped
                          | |   +-- performance-now@2.1.0 deduped
                          | |   +-- qs@6.5.3
                          | |   +-- safe-buffer@5.1.2 deduped
                          | |   +-- tough-cookie@2.5.0
                          | |   | +-- psl@1.4.0 deduped
                          | |   | `-- punycode@2.1.1 deduped
                          | |   +-- tunnel-agent@0.6.0 deduped
                          | |   `-- uuid@3.3.3 deduped
                          | +-- express@4.18.1
                          | | +-- accepts@1.3.8 deduped
                          | | +-- array-flatten@1.1.1 deduped
                          | | +-- body-parser@1.20.0 deduped
                          | | +-- content-disposition@0.5.4 deduped
                          | | +-- content-type@1.0.4 deduped
                          | | +-- cookie-signature@1.0.6 deduped
                          | | +-- cookie@0.5.0
                          | | +-- debug@2.6.9 deduped
                          | | +-- depd@2.0.0 deduped
                          | | +-- encodeurl@1.0.2 deduped
                          | | +-- escape-html@1.0.3 deduped
                          | | +-- etag@1.8.1 deduped
                          | | +-- finalhandler@1.2.0 deduped
                          | | +-- fresh@0.5.2 deduped
                          | | +-- http-errors@2.0.0 deduped
                          | | +-- merge-descriptors@1.0.1 deduped
                          | | +-- methods@1.1.2 deduped
                          | | +-- on-finished@2.4.1 deduped
                          | | +-- parseurl@1.3.3 deduped
                          | | +-- path-to-regexp@0.1.7 deduped
                          | | +-- proxy-addr@2.0.7 deduped
                          | | +-- qs@6.10.3
                          | | | `-- side-channel@1.0.4 deduped
                          | | +-- range-parser@1.2.1 deduped
                          | | +-- safe-buffer@5.2.1
                          | | +-- send@0.18.0 deduped
                          | | +-- serve-static@1.15.0 deduped
                          | | +-- setprototypeof@1.2.0 deduped
                          | | +-- statuses@2.0.1 deduped
                          | | +-- type-is@1.6.18 deduped
                          | | +-- utils-merge@1.0.1 deduped
                          | | `-- vary@1.1.2 deduped
                          | +-- fs-extra@10.1.0
                          | | +-- graceful-fs@4.2.3 deduped
                          | | +-- jsonfile@6.1.0
                          | | | +-- graceful-fs@4.2.3 deduped
                          | | | `-- universalify@2.0.0 deduped
                          | | `-- universalify@2.0.0
                          | +-- ftp@0.3.10
                          | | +-- readable-stream@1.1.14
                          | | | +-- core-util-is@1.0.2
                          | | | +-- inherits@2.0.3 deduped
                          | | | +-- isarray@0.0.1
                          | | | `-- string_decoder@0.10.31
                          | | `-- xregexp@2.0.0
                          | +-- google-auth-library@8.1.0
                          | | +-- arrify@2.0.1
                          | | +-- base64-js@1.5.1
                          | | +-- ecdsa-sig-formatter@1.0.11
                          | | | `-- safe-buffer@5.1.2 deduped
                          | | +-- fast-text-encoding@1.0.4
                          | | +-- gaxios@5.0.0
                          | | | +-- abort-controller@3.0.0
                          | | | | `-- event-target-shim@5.0.1
                          | | | +-- extend@3.0.2 deduped
                          | | | +-- https-proxy-agent@5.0.1 deduped
                          | | | +-- is-stream@2.0.1
                          | | | `-- node-fetch@2.6.7
                          | | |   +-- UNMET OPTIONAL DEPENDENCY encoding@^0.1.0
                          | | |   `-- whatwg-url@5.0.0
                          | | |     +-- tr46@0.0.3
                          | | |     `-- webidl-conversions@3.0.1
                          | | +-- gcp-metadata@5.0.0
                          | | | +-- gaxios@5.0.0 deduped
                          | | | `-- json-bigint@1.0.0
                          | | |   `-- bignumber.js@9.0.2
                          | | +-- gtoken@6.1.0
                          | | | +-- gaxios@4.3.3
                          | | | | +-- abort-controller@3.0.0 deduped
                          | | | | +-- extend@3.0.2 deduped
                          | | | | +-- https-proxy-agent@5.0.1 deduped
                          | | | | +-- is-stream@2.0.1 deduped
                          | | | | `-- node-fetch@2.6.7 deduped
                          | | | +-- google-p12-pem@4.0.0
                          | | | | `-- node-forge@1.3.1 deduped
                          | | | `-- jws@4.0.0 deduped
                          | | +-- jws@4.0.0
                          | | | +-- jwa@2.0.0
                          | | | | +-- buffer-equal-constant-time@1.0.1
                          | | | | +-- ecdsa-sig-formatter@1.0.11 deduped
                          | | | | `-- safe-buffer@5.1.2 deduped
                          | | | `-- safe-buffer@5.1.2 deduped
                          | | `-- lru-cache@6.0.0 deduped
                          | +-- node-schedule@2.1.0
                          | | +-- cron-parser@3.5.0
                          | | | +-- is-nan@1.3.2
                          | | | | +-- call-bind@1.0.2 deduped
                          | | | | `-- define-properties@1.1.4 deduped
                          | | | `-- luxon@1.28.0 deduped
                          | | +-- long-timeout@0.1.1
                          | | `-- sorted-array-functions@1.3.0
                          | +-- node-wol@0.1.1
                          | +-- request@2.88.2
                          | | +-- aws-sign2@0.7.0
                          | | +-- aws4@1.8.0
                          | | +-- caseless@0.12.0
                          | | +-- combined-stream@1.0.8
                          | | | `-- delayed-stream@1.0.0
                          | | +-- extend@3.0.2 deduped
                          | | +-- forever-agent@0.6.1
                          | | +-- form-data@2.3.3
                          | | | +-- asynckit@0.4.0 deduped
                          | | | +-- combined-stream@1.0.8 deduped
                          | | | `-- mime-types@2.1.25 deduped
                          | | +-- har-validator@5.1.3
                          | | | +-- ajv@6.10.2
                          | | | | +-- fast-deep-equal@2.0.1
                          | | | | +-- fast-json-stable-stringify@2.0.0
                          | | | | +-- json-schema-traverse@0.4.1
                          | | | | `-- uri-js@4.2.2
                          | | | |   `-- punycode@2.1.1 deduped
                          | | | `-- har-schema@2.0.0
                          | | +-- http-signature@1.2.0
                          | | | +-- assert-plus@1.0.0
                          | | | +-- jsprim@1.4.1
                          | | | | +-- assert-plus@1.0.0 deduped
                          | | | | +-- extsprintf@1.3.0
                          | | | | +-- json-schema@0.2.3
                          | | | | `-- verror@1.10.0
                          | | | |   +-- assert-plus@1.0.0 deduped
                          | | | |   +-- core-util-is@1.0.2 deduped
                          | | | |   `-- extsprintf@1.3.0 deduped
                          | | | `-- sshpk@1.16.1
                          | | |   +-- asn1@0.2.4
                          | | |   | `-- safer-buffer@2.1.2 deduped
                          | | |   +-- assert-plus@1.0.0 deduped
                          | | |   +-- bcrypt-pbkdf@1.0.2
                          | | |   | `-- tweetnacl@0.14.5 deduped
                          | | |   +-- dashdash@1.14.1
                          | | |   | `-- assert-plus@1.0.0 deduped
                          | | |   +-- ecc-jsbn@0.1.2
                          | | |   | +-- jsbn@0.1.1 deduped
                          | | |   | `-- safer-buffer@2.1.2 deduped
                          | | |   +-- getpass@0.1.7
                          | | |   | `-- assert-plus@1.0.0 deduped
                          | | |   +-- jsbn@0.1.1
                          | | |   +-- safer-buffer@2.1.2 deduped
                          | | |   `-- tweetnacl@0.14.5
                          | | +-- is-typedarray@1.0.0
                          | | +-- isstream@0.1.2
                          | | +-- json-stringify-safe@5.0.1
                          | | +-- mime-types@2.1.25
                          | | | `-- mime-db@1.42.0
                          | | +-- oauth-sign@0.9.0
                          | | +-- performance-now@2.1.0
                          | | +-- qs@6.5.3
                          | | +-- safe-buffer@5.1.2 deduped
                          | | +-- tough-cookie@2.5.0
                          | | | +-- psl@1.4.0 deduped
                          | | | `-- punycode@2.1.1 deduped
                          | | +-- tunnel-agent@0.6.0
                          | | | `-- safe-buffer@5.1.2 deduped
                          | | `-- uuid@3.3.3
                          | +-- tar-fs@2.1.1
                          | | +-- chownr@1.1.3
                          | | +-- mkdirp-classic@0.5.3
                          | | +-- pump@3.0.0
                          | | | +-- end-of-stream@1.4.4
                          | | | | `-- once@1.4.0 deduped
                          | | | `-- once@1.4.0
                          | | |   `-- wrappy@1.0.2
                          | | `-- tar-stream@2.2.0
                          | |   +-- bl@4.1.0
                          | |   | +-- buffer@5.7.1
                          | |   | | +-- base64-js@1.5.1 deduped
                          | |   | | `-- ieee754@1.2.1
                          | |   | +-- inherits@2.0.4
                          | |   | `-- readable-stream@3.6.0 deduped
                          | |   +-- end-of-stream@1.4.4 deduped
                          | |   +-- fs-constants@1.0.0
                          | |   +-- inherits@2.0.3 deduped
                          | |   `-- readable-stream@3.6.0
                          | |     +-- inherits@2.0.3 deduped
                          | |     +-- string_decoder@1.1.1 deduped
                          | |     `-- util-deprecate@1.0.2 deduped
                          | `-- webdav@4.10.0
                          |   +-- axios@0.27.2
                          |   | +-- follow-redirects@1.15.1
                          |   | `-- form-data@4.0.0
                          |   |   +-- asynckit@0.4.0 deduped
                          |   |   +-- combined-stream@1.0.8 deduped
                          |   |   `-- mime-types@2.1.25 deduped
                          |   +-- base-64@1.0.0
                          |   +-- byte-length@1.0.2
                          |   +-- fast-xml-parser@3.21.1
                          |   | `-- strnum@1.0.5
                          |   +-- he@1.2.0
                          |   +-- hot-patcher@0.5.0
                          |   +-- layerr@0.1.2
                          |   +-- md5@2.3.0
                          |   | +-- charenc@0.0.2
                          |   | +-- crypt@0.0.2
                          |   | `-- is-buffer@1.1.6
                          |   +-- minimatch@5.1.0
                          |   | `-- brace-expansion@2.0.1
                          |   |   `-- balanced-match@1.0.2
                          |   +-- nested-property@4.0.0
                          |   +-- path-posix@1.0.0
                          |   +-- url-join@4.0.1
                          |   `-- url-parse@1.5.10
                          |     +-- querystringify@2.2.0
                          |     `-- requires-port@1.0.0
                          +-- iobroker.cloud@4.1.1
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- cookie-parser@1.4.6 deduped
                          | +-- request@2.88.2
                          | | +-- aws-sign2@0.7.0 deduped
                          | | +-- aws4@1.8.0 deduped
                          | | +-- caseless@0.12.0 deduped
                          | | +-- combined-stream@1.0.8 deduped
                          | | +-- extend@3.0.2 deduped
                          | | +-- forever-agent@0.6.1 deduped
                          | | +-- form-data@2.3.3
                          | | | +-- asynckit@0.4.0 deduped
                          | | | +-- combined-stream@1.0.8 deduped
                          | | | `-- mime-types@2.1.25 deduped
                          | | +-- har-validator@5.1.3 deduped
                          | | +-- http-signature@1.2.0 deduped
                          | | +-- is-typedarray@1.0.0 deduped
                          | | +-- isstream@0.1.2 deduped
                          | | +-- json-stringify-safe@5.0.1 deduped
                          | | +-- mime-types@2.1.25 deduped
                          | | +-- oauth-sign@0.9.0 deduped
                          | | +-- performance-now@2.1.0 deduped
                          | | +-- qs@6.5.3
                          | | +-- safe-buffer@5.1.2 deduped
                          | | +-- tough-cookie@2.5.0
                          | | | +-- psl@1.4.0 deduped
                          | | | `-- punycode@2.1.1 deduped
                          | | +-- tunnel-agent@0.6.0 deduped
                          | | `-- uuid@3.3.3 deduped
                          | +-- socket.io-client@1.7.4
                          | | +-- backo2@1.0.2
                          | | +-- component-bind@1.0.0
                          | | +-- component-emitter@1.2.1
                          | | +-- debug@2.3.3
                          | | | `-- ms@0.7.2
                          | | +-- engine.io-client@1.8.6
                          | | | +-- component-emitter@1.2.1
                          | | | +-- component-inherit@0.0.3
                          | | | +-- debug@2.3.3 deduped
                          | | | +-- engine.io-parser@1.3.2
                          | | | | +-- after@0.8.2
                          | | | | +-- arraybuffer.slice@0.0.6
                          | | | | +-- base64-arraybuffer@0.1.5
                          | | | | +-- blob@0.0.4
                          | | | | +-- has-binary@0.1.7 deduped
                          | | | | `-- wtf-8@1.0.0
                          | | | +-- has-cors@1.1.0
                          | | | +-- indexof@0.0.1 deduped
                          | | | +-- parsejson@0.0.3
                          | | | | `-- better-assert@1.0.2 deduped
                          | | | +-- parseqs@0.0.5
                          | | | | `-- better-assert@1.0.2 deduped
                          | | | +-- parseuri@0.0.5 deduped
                          | | | +-- ws@1.1.5
                          | | | | +-- options@0.0.6
                          | | | | `-- ultron@1.0.2
                          | | | +-- xmlhttprequest-ssl@1.6.3
                          | | | `-- yeast@0.1.2
                          | | +-- has-binary@0.1.7
                          | | | `-- isarray@0.0.1
                          | | +-- indexof@0.0.1
                          | | +-- object-component@0.0.3
                          | | +-- parseuri@0.0.5
                          | | | `-- better-assert@1.0.2
                          | | |   `-- callsite@1.0.0 deduped
                          | | +-- socket.io-parser@2.3.1
                          | | | +-- component-emitter@1.1.2
                          | | | +-- debug@2.2.0
                          | | | | `-- ms@0.7.1
                          | | | +-- isarray@0.0.1
                          | | | `-- json3@3.3.2
                          | | `-- to-array@0.1.4
                          | +-- socket.io@1.7.4
                          | | +-- debug@2.3.3 deduped
                          | | +-- engine.io@1.8.5
                          | | | +-- accepts@1.3.3
                          | | | | +-- mime-types@2.1.25 deduped
                          | | | | `-- negotiator@0.6.1
                          | | | +-- base64id@1.0.0
                          | | | +-- cookie@0.3.1
                          | | | +-- debug@2.3.3 deduped
                          | | | +-- engine.io-parser@1.3.2 deduped
                          | | | `-- ws@1.1.5
                          | | |   +-- options@0.0.6 deduped
                          | | |   `-- ultron@1.0.2 deduped
                          | | +-- has-binary@0.1.7 deduped
                          | | +-- object-assign@4.1.0
                          | | +-- socket.io-adapter@0.5.0
                          | | | +-- debug@2.3.3 deduped
                          | | | `-- socket.io-parser@2.3.1 deduped
                          | | +-- socket.io-client@1.7.4 deduped
                          | | `-- socket.io-parser@2.3.1 deduped
                          | `-- ws@8.8.0
                          |   +-- UNMET OPTIONAL DEPENDENCY bufferutil@^4.0.1
                          |   `-- UNMET OPTIONAL DEPENDENCY utf-8-validate@^5.0.2
                          +-- iobroker.daswetter@3.1.2
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- @sentry/node@6.18.2
                          | | +-- @sentry/core@6.18.2
                          | | | +-- @sentry/hub@6.18.2 deduped
                          | | | +-- @sentry/minimal@6.18.2
                          | | | | +-- @sentry/hub@6.18.2 deduped
                          | | | | +-- @sentry/types@6.18.2 deduped
                          | | | | `-- tslib@1.14.1 deduped
                          | | | +-- @sentry/types@6.18.2 deduped
                          | | | +-- @sentry/utils@6.18.2 deduped
                          | | | `-- tslib@1.14.1 deduped
                          | | +-- @sentry/hub@6.18.2
                          | | | +-- @sentry/types@6.18.2 deduped
                          | | | +-- @sentry/utils@6.18.2 deduped
                          | | | `-- tslib@1.14.1 deduped
                          | | +-- @sentry/types@6.18.2
                          | | +-- @sentry/utils@6.18.2
                          | | | +-- @sentry/types@6.18.2 deduped
                          | | | `-- tslib@1.14.1 deduped
                          | | +-- cookie@0.4.1 deduped
                          | | +-- https-proxy-agent@5.0.1 deduped
                          | | +-- lru_map@0.3.3 deduped
                          | | `-- tslib@1.14.1 deduped
                          | +-- axios@0.26.1
                          | | `-- follow-redirects@1.15.1
                          | `-- xml2json-light@1.0.6
                          +-- iobroker.device-watcher@2.5.0 (git+ssh://git@github.com/ciddi89/ioBroker.device-watcher.git#c2a2c8e70219770dd1e455fc3706cbaca8efa486)
                          | `-- @iobroker/adapter-core@2.6.7
                          |   `-- @types/iobroker@4.0.5
                          |     `-- @types/node@12.12.12 deduped
                          +-- iobroker.discovery@3.0.5
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- mdns-discovery@0.2.6
                          | | +-- debug@2.2.0
                          | | | `-- ms@0.7.1
                          | | +-- dgram@1.0.1
                          | | `-- dns-packet@1.3.1
                          | |   +-- ip@1.1.5 deduped
                          | |   `-- safe-buffer@5.1.2 deduped
                          | +-- netmask@2.0.2
                          | +-- node-mndp@0.0.3
                          | +-- node-ssdp@4.0.1
                          | | +-- async@2.6.3
                          | | | `-- lodash@4.17.15
                          | | +-- bluebird@3.7.1
                          | | +-- debug@3.2.7
                          | | | `-- ms@2.1.3
                          | | +-- extend@3.0.2 deduped
                          | | `-- ip@1.1.5
                          | `-- serialport@10.4.0
                          |   +-- @serialport/binding-mock@10.2.2
                          |   | +-- @serialport/bindings-interface@1.2.2
                          |   | `-- debug@4.3.4
                          |   |   `-- ms@2.1.2
                          |   +-- @serialport/bindings-cpp@10.7.0
                          |   | +-- @serialport/bindings-interface@1.2.1
                          |   | +-- @serialport/parser-readline@10.3.0 deduped
                          |   | +-- debug@4.3.4
                          |   | | `-- ms@2.1.2
                          |   | +-- node-addon-api@4.3.0
                          |   | `-- node-gyp-build@4.5.0
                          |   +-- @serialport/parser-byte-length@10.3.0
                          |   +-- @serialport/parser-cctalk@10.3.0
                          |   +-- @serialport/parser-delimiter@10.3.0
                          |   +-- @serialport/parser-inter-byte-timeout@10.3.0
                          |   +-- @serialport/parser-packet-length@10.3.0
                          |   +-- @serialport/parser-readline@10.3.0
                          |   | `-- @serialport/parser-delimiter@10.3.0 deduped
                          |   +-- @serialport/parser-ready@10.3.0
                          |   +-- @serialport/parser-regex@10.3.0
                          |   +-- @serialport/parser-slip-encoder@10.3.0
                          |   +-- @serialport/parser-spacepacket@10.3.0
                          |   +-- @serialport/stream@10.3.0
                          |   | +-- @serialport/bindings-interface@1.2.1
                          |   | `-- debug@4.3.4
                          |   |   `-- ms@2.1.2
                          |   `-- debug@4.3.4
                          |     `-- ms@2.1.2
                          +-- iobroker.email@1.1.3
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | `-- nodemailer@6.7.6
                          +-- iobroker.feiertage@1.1.0
                          | `-- @iobroker/adapter-core@2.6.0
                          |   `-- @types/iobroker@4.0.4
                          |     `-- @types/node@12.12.12 deduped
                          +-- iobroker.flot@1.10.7
                          | `-- @iobroker/adapter-core@2.6.0
                          |   `-- @types/iobroker@4.0.4
                          |     `-- @types/node@12.12.12 deduped
                          +-- iobroker.fronius@1.1.6 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.fronius.git#c644a95d480403a1ef277e822df6232ffc66daf5)
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | `-- request@2.88.2
                          |   +-- aws-sign2@0.7.0 deduped
                          |   +-- aws4@1.8.0 deduped
                          |   +-- caseless@0.12.0 deduped
                          |   +-- combined-stream@1.0.8 deduped
                          |   +-- extend@3.0.2 deduped
                          |   +-- forever-agent@0.6.1 deduped
                          |   +-- form-data@2.3.3 deduped
                          |   +-- har-validator@5.1.3 deduped
                          |   +-- http-signature@1.2.0 deduped
                          |   +-- is-typedarray@1.0.0 deduped
                          |   +-- isstream@0.1.2 deduped
                          |   +-- json-stringify-safe@5.0.1 deduped
                          |   +-- mime-types@2.1.25 deduped
                          |   +-- oauth-sign@0.9.0 deduped
                          |   +-- performance-now@2.1.0 deduped
                          |   +-- qs@6.5.3
                          |   +-- safe-buffer@5.1.2 deduped
                          |   +-- tough-cookie@2.5.0
                          |   | +-- psl@1.4.0 deduped
                          |   | `-- punycode@2.1.1 deduped
                          |   +-- tunnel-agent@0.6.0 deduped
                          |   `-- uuid@3.3.3 deduped
                          +-- iobroker.go-e@1.0.25 (git+ssh://git@github.com/MK-2001/ioBroker.go-e.git#9dc5bf0217da59ff189d496682808d77f978850e)
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- @sentry/node@6.19.7 deduped
                          | +-- @sentry/tracing@6.19.7
                          | | +-- @sentry/hub@6.19.7 deduped
                          | | +-- @sentry/minimal@6.19.7
                          | | | +-- @sentry/hub@6.19.7 deduped
                          | | | +-- @sentry/types@6.19.7 deduped
                          | | | `-- tslib@1.14.1 deduped
                          | | +-- @sentry/types@6.19.7 deduped
                          | | +-- @sentry/utils@6.19.7 deduped
                          | | `-- tslib@1.14.1 deduped
                          | +-- axios@0.26.1
                          | | `-- follow-redirects@1.15.1
                          | +-- joi@17.6.0
                          | | +-- @hapi/hoek@9.3.0
                          | | +-- @hapi/topo@5.1.0
                          | | | `-- @hapi/hoek@9.3.0 deduped
                          | | +-- @sideway/address@4.1.4
                          | | | `-- @hapi/hoek@9.3.0 deduped
                          | | +-- @sideway/formula@3.0.0
                          | | `-- @sideway/pinpoint@2.0.0
                          | `-- p-queue@6.6.2
                          |   +-- eventemitter3@4.0.7
                          |   `-- p-timeout@3.2.0
                          |     `-- p-finally@1.0.0
                          +-- iobroker.google-sharedlocations@2.1.4 (git+ssh://git@github.com/Garfonso/ioBroker.google-sharedlocations.git#018220f3aa3abacc7cf51608006f92a7f10f6442)
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | `-- axios@0.21.4
                          |   `-- follow-redirects@1.15.1
                          +-- iobroker.harmony@1.2.2
                          | +-- @harmonyhub/discover@1.0.9
                          | | +-- autobind-decorator@2.4.0
                          | | `-- debug@4.3.4
                          | |   `-- ms@2.1.2
                          | +-- @iobroker/adapter-core@1.0.3
                          | | `-- @types/iobroker@1.4.13
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- harmonyhubws@1.0.6
                          | | +-- request-promise-native@1.0.9
                          | | | +-- request-promise-core@1.1.4 deduped
                          | | | +-- request@2.88.0 deduped
                          | | | +-- stealthy-require@1.1.1 deduped
                          | | | `-- tough-cookie@2.4.3 deduped invalid: "^4.0.0" from node_modules/http-cookie-agent
                          | | +-- request@2.88.0
                          | | | +-- aws-sign2@0.7.0 deduped
                          | | | +-- aws4@1.8.0 deduped
                          | | | +-- caseless@0.12.0 deduped
                          | | | +-- combined-stream@1.0.8 deduped
                          | | | +-- extend@3.0.2 deduped
                          | | | +-- forever-agent@0.6.1 deduped
                          | | | +-- form-data@2.3.3 deduped
                          | | | +-- har-validator@5.1.3 deduped
                          | | | +-- http-signature@1.2.0 deduped
                          | | | +-- is-typedarray@1.0.0 deduped
                          | | | +-- isstream@0.1.2 deduped
                          | | | +-- json-stringify-safe@5.0.1 deduped
                          | | | +-- mime-types@2.1.25 deduped
                          | | | +-- oauth-sign@0.9.0 deduped
                          | | | +-- performance-now@2.1.0 deduped
                          | | | +-- qs@6.5.2
                          | | | +-- safe-buffer@5.1.2 deduped
                          | | | +-- tough-cookie@2.4.3 deduped invalid: "^4.0.0" from node_modules/http-cookie-agent
                          | | | +-- tunnel-agent@0.6.0 deduped
                          | | | `-- uuid@3.3.3 deduped
                          | | +-- semver@5.7.1 deduped
                          | | `-- ws@6.2.2
                          | |   `-- async-limiter@1.0.1
                          | `-- semaphore@1.0.5
                          +-- iobroker.history@1.11.1
                          | `-- @iobroker/adapter-core@2.6.0
                          |   `-- @types/iobroker@4.0.4
                          |     `-- @types/node@12.12.12 deduped
                          +-- iobroker.hm-rega@3.0.40
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- iconv-lite@0.6.3
                          | | `-- safer-buffer@2.1.2
                          | +-- request@2.88.2
                          | | +-- aws-sign2@0.7.0 deduped
                          | | +-- aws4@1.8.0 deduped
                          | | +-- caseless@0.12.0 deduped
                          | | +-- combined-stream@1.0.8 deduped
                          | | +-- extend@3.0.2 deduped
                          | | +-- forever-agent@0.6.1 deduped
                          | | +-- form-data@2.3.3 deduped
                          | | +-- har-validator@5.1.3 deduped
                          | | +-- http-signature@1.2.0 deduped
                          | | +-- is-typedarray@1.0.0 deduped
                          | | +-- isstream@0.1.2 deduped
                          | | +-- json-stringify-safe@5.0.1 deduped
                          | | +-- mime-types@2.1.25 deduped
                          | | +-- oauth-sign@0.9.0 deduped
                          | | +-- performance-now@2.1.0 deduped
                          | | +-- qs@6.5.3
                          | | +-- safe-buffer@5.1.2 deduped
                          | | +-- tough-cookie@2.5.0
                          | | | +-- psl@1.4.0 deduped
                          | | | `-- punycode@2.1.1 deduped
                          | | +-- tunnel-agent@0.6.0 deduped
                          | | `-- uuid@3.3.3 deduped
                          | `-- xml2js@0.4.23
                          |   +-- sax@1.2.4
                          |   `-- xmlbuilder@11.0.1
                          +-- iobroker.hm-rpc@1.15.12
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- binrpc@3.3.1
                          | | +-- binary@0.3.0
                          | | | +-- buffers@0.1.1
                          | | | `-- chainsaw@0.1.0
                          | | |   `-- traverse@0.3.9
                          | | `-- put@0.0.6
                          | `-- homematic-xmlrpc@1.0.2
                          |   +-- sax@0.4.3
                          |   `-- xmlbuilder@0.4.2
                          +-- iobroker.homeconnect@1.1.0
                          | +-- @iobroker/adapter-core@2.6.7
                          | | `-- @types/iobroker@4.0.5
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- axios-rate-limit@1.3.0
                          | | `-- axios@0.26.1 deduped
                          | +-- axios@0.27.2
                          | | +-- follow-redirects@1.15.1 deduped
                          | | `-- form-data@4.0.0
                          | |   +-- asynckit@0.4.0 deduped
                          | |   +-- combined-stream@1.0.8 deduped
                          | |   `-- mime-types@2.1.25 deduped
                          | +-- eventsource@2.0.2
                          | +-- http-cookie-agent@4.0.2
                          | | +-- agent-base@6.0.2
                          | | | `-- debug@4.3.4
                          | | |   `-- ms@2.1.2
                          | | +-- UNMET OPTIONAL DEPENDENCY deasync@^0.1.26
                          | | +-- tough-cookie@2.4.3 invalid: "^4.0.0" from node_modules/http-cookie-agent
                          | | | +-- psl@1.4.0 deduped
                          | | | `-- punycode@1.4.1
                          | | `-- UNMET OPTIONAL DEPENDENCY undici@^5.1.1
                          | +-- qs@6.11.0
                          | | `-- side-channel@1.0.4
                          | |   +-- call-bind@1.0.2
                          | |   | +-- function-bind@1.1.1
                          | |   | `-- get-intrinsic@1.1.2 deduped
                          | |   +-- get-intrinsic@1.1.2
                          | |   | +-- function-bind@1.1.1 deduped
                          | |   | +-- has-symbols@1.0.3
                          | |   | `-- has@1.0.3 deduped
                          | |   `-- object-inspect@1.12.2
                          | `-- tough-cookie@4.1.2
                          |   +-- psl@1.4.0
                          |   +-- punycode@2.1.1
                          |   +-- universalify@0.2.0
                          |   `-- url-parse@1.5.10 deduped
                          +-- iobroker.ical@1.13.1 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.ical.git#a2b6a7c9cb7ccc9fa8b9b377bdbf9825e6e4f5f5)
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- axios@0.27.2
                          | | +-- follow-redirects@1.15.1 deduped
                          | | `-- form-data@4.0.0
                          | |   +-- asynckit@0.4.0 deduped
                          | |   +-- combined-stream@1.0.8 deduped
                          | |   `-- mime-types@2.1.25 deduped
                          | +-- cloneextend@0.0.3
                          | +-- json-schema@0.4.0
                          | +-- node-ical@0.15.1
                          | | +-- axios@0.26.1 deduped
                          | | +-- moment-timezone@0.5.34
                          | | | `-- moment@2.29.3
                          | | +-- rrule@2.6.4
                          | | | +-- luxon@1.28.0 deduped
                          | | | `-- tslib@1.14.1 deduped
                          | | `-- uuid@8.3.2
                          | `-- rrule@2.6.9
                          |   +-- luxon@1.28.0
                          |   `-- tslib@1.14.1 deduped
                          +-- iobroker.icons-mfd-svg@1.1.0
                          | `-- @iobroker/adapter-core@2.6.0
                          |   `-- @types/iobroker@4.0.4
                          |     `-- @types/node@12.12.12 deduped
                          +-- iobroker.info@1.9.19
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- axios@0.26.1
                          | | `-- follow-redirects@1.15.1
                          | +-- jshashes@1.0.8
                          | +-- osx-temperature-sensor@1.0.7
                          | +-- semver@7.3.7
                          | | `-- lru-cache@6.0.0 deduped
                          | `-- systeminformation@5.11.22
                          +-- iobroker.javascript@5.7.0
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@14.18.21 deduped
                          | +-- @types/node@14.18.21
                          | +-- @types/request@2.48.8
                          | | +-- @types/caseless@0.12.2
                          | | +-- @types/node@12.12.12
                          | | +-- @types/tough-cookie@4.0.2
                          | | `-- form-data@2.5.1
                          | |   +-- asynckit@0.4.0 deduped
                          | |   +-- combined-stream@1.0.8 deduped
                          | |   `-- mime-types@2.1.25 deduped
                          | +-- coffee-compiler@0.3.2
                          | | `-- coffee-script@1.12.7 deduped
                          | +-- coffee-script@1.12.7
                          | +-- jsonata@1.8.6
                          | +-- jszip@3.10.0
                          | | +-- lie@3.3.0
                          | | | `-- immediate@3.0.6
                          | | +-- pako@1.0.11
                          | | +-- readable-stream@2.3.6
                          | | | +-- core-util-is@1.0.2 deduped
                          | | | +-- inherits@2.0.3 deduped
                          | | | +-- isarray@1.0.0
                          | | | +-- process-nextick-args@2.0.1
                          | | | +-- safe-buffer@5.1.2 deduped
                          | | | +-- string_decoder@1.1.1
                          | | | | `-- safe-buffer@5.1.2 deduped
                          | | | `-- util-deprecate@1.0.2
                          | | `-- setimmediate@1.0.5
                          | +-- node-inspect@2.0.0
                          | +-- node-schedule@2.1.0 deduped
                          | +-- request@2.88.2
                          | | +-- aws-sign2@0.7.0 deduped
                          | | +-- aws4@1.8.0 deduped
                          | | +-- caseless@0.12.0 deduped
                          | | +-- combined-stream@1.0.8 deduped
                          | | +-- extend@3.0.2 deduped
                          | | +-- forever-agent@0.6.1 deduped
                          | | +-- form-data@2.3.3 deduped
                          | | +-- har-validator@5.1.3 deduped
                          | | +-- http-signature@1.2.0 deduped
                          | | +-- is-typedarray@1.0.0 deduped
                          | | +-- isstream@0.1.2 deduped
                          | | +-- json-stringify-safe@5.0.1 deduped
                          | | +-- mime-types@2.1.25 deduped
                          | | +-- oauth-sign@0.9.0 deduped
                          | | +-- performance-now@2.1.0 deduped
                          | | +-- qs@6.5.3
                          | | +-- safe-buffer@5.1.2 deduped
                          | | +-- tough-cookie@2.5.0
                          | | | +-- psl@1.4.0 deduped
                          | | | `-- punycode@2.1.1 deduped
                          | | +-- tunnel-agent@0.6.0 deduped
                          | | `-- uuid@3.3.3 deduped
                          | +-- semver@7.3.7
                          | | `-- lru-cache@6.0.0 deduped
                          | +-- suncalc2@1.8.1
                          | +-- typescript@4.7.4
                          | +-- virtual-tsc@0.6.2
                          | | +-- @types/node@12.12.12 deduped
                          | | +-- debug@4.3.4
                          | | | `-- ms@2.1.2
                          | | +-- picocolors@1.0.0
                          | | `-- typescript@4.7.4 deduped
                          | +-- vm2@3.9.9
                          | | +-- acorn-walk@8.2.0
                          | | `-- acorn@8.7.1
                          | `-- wake_on_lan@1.0.0
                          |   `-- minimist@1.2.0
                          +-- iobroker.js-controller@4.0.23
                          | +-- @alcalzone/esbuild-register@2.5.1-1
                          | | +-- esbuild@0.11.23
                          | | `-- jsonc-parser@3.0.0
                          | +-- @iobroker/db-objects-file@4.0.23
                          | | +-- @iobroker/db-base@4.0.23
                          | | | +-- @iobroker/js-controller-common@4.0.23 deduped
                          | | | +-- deep-clone@3.0.3 deduped
                          | | | +-- fs-extra@10.1.0
                          | | | | +-- graceful-fs@4.2.3 deduped
                          | | | | +-- jsonfile@6.1.0
                          | | | | | +-- graceful-fs@4.2.3 deduped
                          | | | | | `-- universalify@2.0.0 deduped
                          | | | | `-- universalify@2.0.0
                          | | | `-- respjs@4.2.0
                          | | +-- @iobroker/db-objects-redis@4.0.23 deduped
                          | | +-- deep-clone@3.0.3 deduped
                          | | `-- fs-extra@10.1.0
                          | |   +-- graceful-fs@4.2.3 deduped
                          | |   +-- jsonfile@6.1.0
                          | |   | +-- graceful-fs@4.2.3 deduped
                          | |   | `-- universalify@2.0.0 deduped
                          | |   `-- universalify@2.0.0
                          | +-- @iobroker/db-objects-jsonl@4.0.23
                          | | +-- @alcalzone/jsonl-db@2.5.2
                          | | | +-- alcalzone-shared@4.0.1
                          | | | | `-- debug@4.3.4
                          | | | |   `-- ms@2.1.2
                          | | | +-- fs-extra@10.1.0
                          | | | | +-- graceful-fs@4.2.3 deduped
                          | | | | +-- jsonfile@6.1.0
                          | | | | | +-- graceful-fs@4.2.3 deduped
                          | | | | | `-- universalify@2.0.0 deduped
                          | | | | `-- universalify@2.0.0
                          | | | `-- proper-lockfile@4.1.2
                          | | |   +-- graceful-fs@4.2.10
                          | | |   +-- retry@0.12.0
                          | | |   `-- signal-exit@3.0.2
                          | | +-- @iobroker/db-base@4.0.23 deduped
                          | | +-- @iobroker/db-objects-file@4.0.23 deduped
                          | | +-- @iobroker/db-objects-redis@4.0.23 deduped
                          | | +-- deep-clone@3.0.3 deduped
                          | | `-- fs-extra@10.1.0
                          | |   +-- graceful-fs@4.2.3 deduped
                          | |   +-- jsonfile@6.1.0
                          | |   | +-- graceful-fs@4.2.3 deduped
                          | |   | `-- universalify@2.0.0 deduped
                          | |   `-- universalify@2.0.0
                          | +-- @iobroker/db-objects-redis@4.0.23
                          | | +-- @iobroker/db-base@4.0.23 deduped
                          | | +-- deep-clone@3.0.3 deduped
                          | | +-- ioredis@4.28.5
                          | | | +-- cluster-key-slot@1.1.0
                          | | | +-- debug@4.3.4
                          | | | | `-- ms@2.1.2
                          | | | +-- denque@1.5.1
                          | | | +-- lodash.defaults@4.2.0
                          | | | +-- lodash.flatten@4.4.0
                          | | | +-- lodash.isarguments@3.1.0
                          | | | +-- p-map@2.1.0
                          | | | +-- redis-commands@1.7.0
                          | | | +-- redis-errors@1.2.0
                          | | | +-- redis-parser@3.0.0
                          | | | | `-- redis-errors@1.2.0 deduped
                          | | | `-- standard-as-callback@2.1.0
                          | | +-- node.extend@2.0.2
                          | | | +-- has@1.0.3
                          | | | | `-- function-bind@1.1.1 deduped
                          | | | `-- is@3.3.0
                          | | `-- semver@7.3.7
                          | |   `-- lru-cache@6.0.0 deduped
                          | +-- @iobroker/db-states-file@4.0.23
                          | | +-- @iobroker/db-base@4.0.23 deduped
                          | | `-- @iobroker/db-states-redis@4.0.23 deduped
                          | +-- @iobroker/db-states-jsonl@4.0.23
                          | | +-- @alcalzone/jsonl-db@2.5.2 deduped
                          | | +-- @iobroker/db-base@4.0.23 deduped
                          | | +-- @iobroker/db-states-file@4.0.23 deduped
                          | | `-- @iobroker/db-states-redis@4.0.23 deduped
                          | +-- @iobroker/db-states-redis@4.0.23
                          | | +-- @iobroker/db-base@4.0.23 deduped
                          | | `-- ioredis@4.28.5 deduped
                          | +-- @iobroker/js-controller-adapter@4.0.23
                          | | +-- @alcalzone/pak@0.7.0
                          | | | +-- axios@0.21.4
                          | | | | `-- follow-redirects@1.15.1
                          | | | +-- execa@5.1.1
                          | | | | +-- cross-spawn@7.0.3
                          | | | | | +-- path-key@3.1.1
                          | | | | | +-- shebang-command@2.0.0
                          | | | | | | `-- shebang-regex@3.0.0
                          | | | | | `-- which@2.0.2
                          | | | | |   `-- isexe@2.0.0
                          | | | | +-- get-stream@6.0.1
                          | | | | +-- human-signals@2.1.0
                          | | | | +-- is-stream@2.0.1 deduped
                          | | | | +-- merge-stream@2.0.0
                          | | | | +-- npm-run-path@4.0.1
                          | | | | | `-- path-key@3.1.1 deduped
                          | | | | +-- onetime@5.1.2
                          | | | | | `-- mimic-fn@2.1.0
                          | | | | +-- signal-exit@3.0.7
                          | | | | `-- strip-final-newline@2.0.0
                          | | | `-- fs-extra@9.1.0
                          | | |   +-- at-least-node@1.0.0
                          | | |   +-- graceful-fs@4.2.3 deduped
                          | | |   +-- jsonfile@6.1.0
                          | | |   | +-- graceful-fs@4.2.3 deduped
                          | | |   | `-- universalify@2.0.0 deduped
                          | | |   `-- universalify@2.0.0
                          | | +-- @iobroker/db-objects-file@4.0.23 deduped
                          | | +-- @iobroker/db-objects-jsonl@4.0.23 deduped
                          | | +-- @iobroker/db-objects-redis@4.0.23 deduped
                          | | +-- @iobroker/db-states-file@4.0.23 deduped
                          | | +-- @iobroker/db-states-jsonl@4.0.23 deduped
                          | | +-- @iobroker/db-states-redis@4.0.23 deduped
                          | | +-- @iobroker/js-controller-common@4.0.23 deduped
                          | | +-- @iobroker/plugin-base@1.2.1 deduped
                          | | +-- @iobroker/plugin-sentry@1.2.0 deduped
                          | | +-- deep-clone@3.0.3 deduped
                          | | +-- fs-extra@10.1.0
                          | | | +-- graceful-fs@4.2.3 deduped
                          | | | +-- jsonfile@6.1.0
                          | | | | +-- graceful-fs@4.2.3 deduped
                          | | | | `-- universalify@2.0.0 deduped
                          | | | `-- universalify@2.0.0
                          | | +-- jsonwebtoken@8.5.1 deduped
                          | | +-- node-schedule@2.1.0 deduped
                          | | +-- node.extend@2.0.2 deduped
                          | | +-- pidusage@3.0.0 deduped
                          | | +-- readline@1.3.0
                          | | `-- semver@7.3.7
                          | |   `-- lru-cache@6.0.0 deduped
                          | +-- @iobroker/js-controller-cli@4.0.23
                          | | +-- @iobroker/js-controller-common-db@4.0.23 deduped
                          | | +-- @iobroker/js-controller-common@4.0.23 deduped
                          | | +-- chokidar@3.5.3
                          | | | +-- anymatch@3.1.2
                          | | | | +-- normalize-path@3.0.0 deduped
                          | | | | `-- picomatch@2.3.1
                          | | | +-- braces@3.0.2
                          | | | | `-- fill-range@7.0.1
                          | | | |   `-- to-regex-range@5.0.1
                          | | | |     `-- is-number@7.0.0
                          | | | +-- fsevents@2.3.2
                          | | | +-- glob-parent@5.1.2
                          | | | | `-- is-glob@4.0.3 deduped
                          | | | +-- is-binary-path@2.1.0
                          | | | | `-- binary-extensions@2.2.0
                          | | | +-- is-glob@4.0.3
                          | | | | `-- is-extglob@2.1.1
                          | | | +-- normalize-path@3.0.0
                          | | | `-- readdirp@3.6.0
                          | | |   `-- picomatch@2.3.1 deduped
                          | | +-- daemonize2@0.4.2 deduped
                          | | +-- debug@4.3.4
                          | | | `-- ms@2.1.2
                          | | +-- deep-clone@3.0.3 deduped
                          | | +-- event-stream@4.0.1
                          | | | +-- duplexer@0.1.2
                          | | | +-- from@0.1.7
                          | | | +-- map-stream@0.0.7
                          | | | +-- pause-stream@0.0.11
                          | | | | `-- through@2.3.8 deduped
                          | | | +-- split@1.0.1
                          | | | | `-- through@2.3.8 deduped
                          | | | +-- stream-combiner@0.2.2
                          | | | | +-- duplexer@0.1.2 deduped
                          | | | | `-- through@2.3.8 deduped
                          | | | `-- through@2.3.8
                          | | +-- fs-extra@10.1.0
                          | | | +-- graceful-fs@4.2.3 deduped
                          | | | +-- jsonfile@6.1.0
                          | | | | +-- graceful-fs@4.2.3 deduped
                          | | | | `-- universalify@2.0.0 deduped
                          | | | `-- universalify@2.0.0
                          | | `-- readline-sync@1.4.10 deduped
                          | +-- @iobroker/js-controller-common-db@4.0.23
                          | | +-- @iobroker/db-objects-file@4.0.23 deduped
                          | | +-- @iobroker/db-objects-jsonl@4.0.23 deduped
                          | | +-- @iobroker/db-objects-redis@4.0.23 deduped
                          | | +-- @iobroker/db-states-file@4.0.23 deduped
                          | | +-- @iobroker/db-states-jsonl@4.0.23 deduped
                          | | +-- @iobroker/db-states-redis@4.0.23 deduped
                          | | +-- @iobroker/js-controller-common@4.0.23 deduped
                          | | +-- fs-extra@10.1.0
                          | | | +-- graceful-fs@4.2.3 deduped
                          | | | +-- jsonfile@6.1.0
                          | | | | +-- graceful-fs@4.2.3 deduped
                          | | | | `-- universalify@2.0.0 deduped
                          | | | `-- universalify@2.0.0
                          | | +-- winston-seq-updated@1.0.4
                          | | | +-- seq-logging@0.4.6
                          | | | `-- winston-transport@4.5.0
                          | | |   +-- logform@2.4.1 deduped
                          | | |   +-- readable-stream@3.6.0
                          | | |   | +-- inherits@2.0.3 deduped
                          | | |   | +-- string_decoder@1.1.1 deduped
                          | | |   | `-- util-deprecate@1.0.2 deduped
                          | | |   `-- triple-beam@1.3.0 deduped
                          | | `-- winston-syslog@2.6.0
                          | |   +-- glossy@0.1.7
                          | |   +-- unix-dgram@2.0.4
                          | |   | +-- bindings@1.3.0
                          | |   | `-- nan@2.14.0 deduped
                          | |   `-- winston@3.8.1 deduped
                          | +-- @iobroker/js-controller-common@4.0.23
                          | | +-- @alcalzone/pak@0.7.0 deduped
                          | | +-- @datalust/winston-seq@1.0.2
                          | | | +-- seq-logging@1.1.1
                          | | | +-- winston-transport@4.5.0 deduped
                          | | | `-- winston@3.8.1 deduped
                          | | +-- axios@0.26.1
                          | | | `-- follow-redirects@1.15.1
                          | | +-- ci-info@3.3.2
                          | | +-- deep-clone@3.0.3 deduped
                          | | +-- event-stream@4.0.1 deduped
                          | | +-- fs-extra@10.1.0
                          | | | +-- graceful-fs@4.2.3 deduped
                          | | | +-- jsonfile@6.1.0
                          | | | | +-- graceful-fs@4.2.3 deduped
                          | | | | `-- universalify@2.0.0 deduped
                          | | | `-- universalify@2.0.0
                          | | +-- jsonwebtoken@8.5.1 deduped
                          | | +-- node-forge@1.3.1
                          | | +-- node.extend@2.0.2 deduped
                          | | +-- promisify-child-process@4.1.1 deduped
                          | | +-- readline@1.3.0 deduped
                          | | +-- request@2.88.2
                          | | | +-- aws-sign2@0.7.0 deduped
                          | | | +-- aws4@1.8.0 deduped
                          | | | +-- caseless@0.12.0 deduped
                          | | | +-- combined-stream@1.0.8 deduped
                          | | | +-- extend@3.0.2 deduped
                          | | | +-- forever-agent@0.6.1 deduped
                          | | | +-- form-data@2.3.3 deduped
                          | | | +-- har-validator@5.1.3 deduped
                          | | | +-- http-signature@1.2.0 deduped
                          | | | +-- is-typedarray@1.0.0 deduped
                          | | | +-- isstream@0.1.2 deduped
                          | | | +-- json-stringify-safe@5.0.1 deduped
                          | | | +-- mime-types@2.1.25 deduped
                          | | | +-- oauth-sign@0.9.0 deduped
                          | | | +-- performance-now@2.1.0 deduped
                          | | | +-- qs@6.5.3
                          | | | +-- safe-buffer@5.1.2 deduped
                          | | | +-- tough-cookie@2.5.0
                          | | | | +-- psl@1.4.0 deduped
                          | | | | `-- punycode@2.1.1 deduped
                          | | | +-- tunnel-agent@0.6.0 deduped
                          | | | `-- uuid@3.3.3 deduped
                          | | +-- semver@7.3.7
                          | | | `-- lru-cache@6.0.0 deduped
                          | | +-- winston-daily-rotate-file@4.7.1
                          | | | +-- file-stream-rotator@0.6.1
                          | | | | `-- moment@2.29.3 deduped
                          | | | +-- object-hash@2.2.0
                          | | | +-- triple-beam@1.3.0
                          | | | +-- winston-transport@4.5.0 deduped
                          | | | `-- winston@3.8.1 deduped
                          | | +-- winston-syslog@2.6.0 deduped
                          | | `-- winston@3.8.1
                          | |   +-- @dabh/diagnostics@2.0.3
                          | |   | +-- colorspace@1.1.4
                          | |   | | +-- color@3.2.1
                          | |   | | | +-- color-convert@1.9.3
                          | |   | | | | `-- color-name@1.1.3
                          | |   | | | `-- color-string@1.9.1
                          | |   | | |   +-- color-name@1.1.3 deduped
                          | |   | | |   `-- simple-swizzle@0.2.2
                          | |   | | |     `-- is-arrayish@0.3.2
                          | |   | | `-- text-hex@1.0.0
                          | |   | +-- enabled@2.0.0
                          | |   | `-- kuler@2.0.0
                          | |   +-- async@3.2.4
                          | |   +-- is-stream@2.0.1 deduped
                          | |   +-- logform@2.4.1
                          | |   | +-- @colors/colors@1.5.0 deduped
                          | |   | +-- fecha@4.2.3
                          | |   | +-- ms@2.1.3
                          | |   | +-- safe-stable-stringify@2.3.1 deduped
                          | |   | `-- triple-beam@1.3.0 deduped
                          | |   +-- one-time@1.0.0
                          | |   | `-- fn.name@1.1.0
                          | |   +-- readable-stream@3.6.0
                          | |   | +-- inherits@2.0.3 deduped
                          | |   | +-- string_decoder@1.1.1 deduped
                          | |   | `-- util-deprecate@1.0.2 deduped
                          | |   +-- safe-stable-stringify@2.3.1
                          | |   +-- stack-trace@0.0.10
                          | |   +-- triple-beam@1.3.0 deduped
                          | |   `-- winston-transport@4.5.0 deduped
                          | +-- @iobroker/plugin-base@1.2.1
                          | +-- @iobroker/plugin-sentry@1.2.0
                          | | +-- @iobroker/plugin-base@1.2.1 deduped
                          | | +-- @sentry/integrations@6.19.7 deduped
                          | | +-- @sentry/node@6.19.7 deduped
                          | | `-- source-map-support@0.5.21 deduped
                          | +-- axios@0.24.0
                          | | `-- follow-redirects@1.15.1
                          | +-- daemonize2@0.4.2
                          | +-- debug@4.3.4
                          | | `-- ms@2.1.2
                          | +-- decache@4.6.1
                          | | `-- callsite@1.0.0
                          | +-- deep-clone@3.0.3
                          | +-- diskusage@1.1.3
                          | | +-- es6-promise@4.2.8
                          | | `-- nan@2.14.0
                          | +-- fs-extra@10.1.0
                          | | +-- graceful-fs@4.2.3 deduped
                          | | +-- jsonfile@6.1.0
                          | | | +-- graceful-fs@4.2.3 deduped
                          | | | `-- universalify@2.0.0 deduped
                          | | `-- universalify@2.0.0
                          | +-- greenlock-express@4.0.3
                          | | +-- @root/greenlock-express@4.0.4
                          | | | +-- @root/greenlock@4.0.5 deduped
                          | | | `-- redirect-https@1.3.1 deduped
                          | | +-- @root/greenlock@4.0.5
                          | | | +-- @greenlock/manager@3.1.0 deduped
                          | | | +-- @root/acme@3.1.0 deduped
                          | | | +-- @root/csr@0.8.1 deduped
                          | | | +-- @root/keypairs@0.10.3
                          | | | | +-- @root/encoding@1.0.1 deduped
                          | | | | +-- @root/pem@1.0.4 deduped
                          | | | | `-- @root/x509@0.7.2 deduped
                          | | | +-- @root/mkdirp@1.0.0 deduped
                          | | | +-- @root/request@1.8.2 deduped
                          | | | +-- acme-http-01-standalone@3.0.5 deduped
                          | | | +-- cert-info@1.5.1 deduped
                          | | | +-- greenlock-store-fs@3.2.2 deduped
                          | | | `-- safe-replace@1.1.0 deduped
                          | | `-- redirect-https@1.3.1
                          | |   `-- escape-html@1.0.3 deduped
                          | +-- greenlock@4.0.4
                          | | +-- @greenlock/manager@3.1.0
                          | | | `-- greenlock-manager-fs@3.1.1
                          | | |   +-- @root/mkdirp@1.0.0 deduped
                          | | |   `-- safe-replace@1.1.0 deduped
                          | | +-- @root/acme@3.1.0
                          | | | +-- @root/csr@0.8.1 deduped
                          | | | +-- @root/encoding@1.0.1
                          | | | +-- @root/keypairs@0.10.3
                          | | | | +-- @root/encoding@1.0.1 deduped
                          | | | | +-- @root/pem@1.0.4 deduped
                          | | | | `-- @root/x509@0.7.2 deduped
                          | | | +-- @root/pem@1.0.4
                          | | | +-- @root/request@1.8.2 deduped
                          | | | `-- @root/x509@0.7.2
                          | | |   +-- @root/asn1@1.0.0 deduped
                          | | |   `-- @root/encoding@1.0.1 deduped
                          | | +-- @root/csr@0.8.1
                          | | | +-- @root/asn1@1.0.0
                          | | | | `-- @root/encoding@1.0.1 deduped
                          | | | +-- @root/pem@1.0.4 deduped
                          | | | `-- @root/x509@0.7.2 deduped
                          | | +-- @root/greenlock@4.0.5 deduped
                          | | +-- @root/keypairs@0.9.0
                          | | | +-- @root/encoding@1.0.1 deduped
                          | | | +-- @root/pem@1.0.4 deduped
                          | | | `-- @root/x509@0.7.2 deduped
                          | | +-- @root/mkdirp@1.0.0
                          | | +-- @root/request@1.8.2
                          | | +-- acme-http-01-standalone@3.0.5
                          | | +-- cert-info@1.5.1
                          | | +-- greenlock-store-fs@3.2.2
                          | | | +-- @root/mkdirp@1.0.0 deduped
                          | | | `-- safe-replace@1.1.0 deduped
                          | | `-- safe-replace@1.1.0
                          | +-- jsonwebtoken@8.5.1
                          | | +-- jws@3.2.2
                          | | | +-- jwa@1.4.1
                          | | | | +-- buffer-equal-constant-time@1.0.1 deduped
                          | | | | +-- ecdsa-sig-formatter@1.0.11 deduped
                          | | | | `-- safe-buffer@5.1.2 deduped
                          | | | `-- safe-buffer@5.1.2 deduped
                          | | +-- lodash.includes@4.3.0
                          | | +-- lodash.isboolean@3.0.3
                          | | +-- lodash.isinteger@4.0.4
                          | | +-- lodash.isnumber@3.0.3
                          | | +-- lodash.isplainobject@4.0.6
                          | | +-- lodash.isstring@4.0.1
                          | | +-- lodash.once@4.1.1
                          | | +-- ms@2.1.3
                          | | `-- semver@5.7.1 deduped
                          | +-- jszip@3.10.0 deduped
                          | +-- le-acme-core@2.1.4
                          | | +-- request@2.88.0 deduped
                          | | `-- rsa-compat@1.9.4
                          | |   +-- keypairs@1.2.14
                          | |   | +-- eckles@1.4.1
                          | |   | `-- rasha@1.2.5
                          | |   +-- node-forge@0.7.6
                          | |   `-- ursa-optional@0.9.10
                          | |     +-- bindings@1.3.0 deduped
                          | |     `-- nan@2.14.0 deduped
                          | +-- le-challenge-fs@2.0.9
                          | | `-- @root/mkdirp@1.0.0 deduped
                          | +-- le-sni-auto@2.1.9
                          | +-- loadavg-windows@1.1.1
                          | | `-- weak-daemon@1.0.3
                          | +-- mime@3.0.0
                          | +-- node-schedule@2.1.0 deduped
                          | +-- pidusage@3.0.0
                          | | `-- safe-buffer@5.2.1
                          | +-- promisify-child-process@4.1.1
                          | +-- prompt@1.3.0
                          | | +-- @colors/colors@1.5.0
                          | | +-- async@3.2.3
                          | | +-- read@1.0.7
                          | | | `-- mute-stream@0.0.7
                          | | +-- revalidator@0.1.8
                          | | `-- winston@2.4.6
                          | |   +-- async@3.2.3 deduped
                          | |   +-- colors@1.0.3
                          | |   +-- cycle@1.0.3
                          | |   +-- eyes@0.1.8 deduped
                          | |   +-- isstream@0.1.2 deduped
                          | |   `-- stack-trace@0.0.10 deduped
                          | +-- readline-sync@1.4.10
                          | +-- request@2.88.2
                          | | +-- aws-sign2@0.7.0 deduped
                          | | +-- aws4@1.8.0 deduped
                          | | +-- caseless@0.12.0 deduped
                          | | +-- combined-stream@1.0.8 deduped
                          | | +-- extend@3.0.2 deduped
                          | | +-- forever-agent@0.6.1 deduped
                          | | +-- form-data@2.3.3 deduped
                          | | +-- har-validator@5.1.3 deduped
                          | | +-- http-signature@1.2.0 deduped
                          | | +-- is-typedarray@1.0.0 deduped
                          | | +-- isstream@0.1.2 deduped
                          | | +-- json-stringify-safe@5.0.1 deduped
                          | | +-- mime-types@2.1.25 deduped
                          | | +-- oauth-sign@0.9.0 deduped
                          | | +-- performance-now@2.1.0 deduped
                          | | +-- qs@6.5.3
                          | | +-- safe-buffer@5.1.2 deduped
                          | | +-- tough-cookie@2.5.0
                          | | | +-- psl@1.4.0 deduped
                          | | | `-- punycode@2.1.1 deduped
                          | | +-- tunnel-agent@0.6.0 deduped
                          | | `-- uuid@3.3.3 deduped
                          | +-- semver@7.3.7
                          | | `-- lru-cache@6.0.0 deduped
                          | +-- tar@6.1.11
                          | | +-- chownr@2.0.0
                          | | +-- fs-minipass@2.1.0
                          | | | `-- minipass@3.3.4 deduped
                          | | +-- minipass@3.3.4
                          | | | `-- yallist@4.0.0 deduped
                          | | +-- minizlib@2.1.2
                          | | | +-- minipass@3.3.4 deduped
                          | | | `-- yallist@4.0.0 deduped
                          | | +-- mkdirp@1.0.4
                          | | `-- yallist@4.0.0
                          | `-- yargs@17.5.1
                          |   +-- cliui@7.0.4
                          |   | +-- string-width@4.2.3 deduped
                          |   | +-- strip-ansi@6.0.1
                          |   | | `-- ansi-regex@5.0.1
                          |   | `-- wrap-ansi@7.0.0
                          |   |   +-- ansi-styles@4.3.0
                          |   |   | `-- color-convert@2.0.1
                          |   |   |   `-- color-name@1.1.4
                          |   |   +-- string-width@4.2.3 deduped
                          |   |   `-- strip-ansi@6.0.1 deduped
                          |   +-- escalade@3.1.1
                          |   +-- get-caller-file@2.0.5
                          |   +-- require-directory@2.1.1 deduped
                          |   +-- string-width@4.2.3
                          |   | +-- emoji-regex@8.0.0
                          |   | +-- is-fullwidth-code-point@3.0.0
                          |   | `-- strip-ansi@6.0.1 deduped
                          |   +-- y18n@5.0.8
                          |   `-- yargs-parser@21.0.1
                          +-- iobroker.kodi@2.0.8
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | `-- kodi-ws@2.4.0
                          |   +-- has-value@2.0.2
                          |   | +-- get-value@3.0.1
                          |   | | `-- isobject@3.0.1
                          |   | `-- has-values@2.0.1
                          |   |   `-- kind-of@6.0.3
                          |   +-- jrpc-schema@2.1.0
                          |   | `-- skeemas@1.2.5
                          |   |   +-- skeemas-json-pointer@1.0.0
                          |   |   `-- skeemas-json-refs@1.0.1
                          |   |     `-- skeemas-json-pointer@1.0.0 deduped
                          |   +-- set-value@4.1.0
                          |   | +-- is-plain-object@2.0.4
                          |   | | `-- isobject@3.0.1 deduped
                          |   | `-- is-primitive@3.0.1
                          |   `-- ws@7.5.8
                          |     +-- UNMET OPTIONAL DEPENDENCY bufferutil@^4.0.1
                          |     `-- UNMET OPTIONAL DEPENDENCY utf-8-validate@^5.0.2
                          +-- iobroker.landroid@1.0.3
                          | `-- rss-parser@3.12.0
                          |   +-- entities@2.2.0
                          |   `-- xml2js@0.4.23 deduped
                          +-- iobroker.logparser@1.1.0
                          | `-- @iobroker/adapter-core@2.6.0
                          |   `-- @types/iobroker@4.0.4
                          |     `-- @types/node@12.12.12 deduped
                          +-- iobroker.milight-smart-light@1.2.2
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- @quasar/extras@1.14.2
                          | +-- core-js@3.23.3
                          | +-- express@4.18.1 deduped
                          | +-- lodash@4.17.21
                          | +-- nanoid@3.3.4
                          | +-- node-milight-promise@0.3.2 (git+ssh://git@github.com/Steiger04/node-milight-promise.git#f1089feac9b7990727adf2016891029436729d33)
                          | | +-- bluebird@3.7.2
                          | | `-- promise-retryer@0.0.1
                          | |   `-- promise-object@0.1.7
                          | +-- quasar@1.19.3
                          | +-- tcp-port-used@1.0.2
                          | | +-- debug@4.3.1
                          | | | `-- ms@2.1.2
                          | | `-- is2@2.0.7
                          | |   +-- deep-is@0.1.4
                          | |   +-- ip-regex@4.3.0
                          | |   `-- is-url@1.2.4
                          | +-- tinycolor2@1.4.2
                          | +-- vue-i18n@8.27.2
                          | +-- vuelidate-messages@0.1.2
                          | | `-- vuelidate@0.7.7 deduped
                          | +-- vuelidate@0.7.7
                          | `-- vuex-map-fields@1.4.1
                          +-- iobroker.mobile@1.0.1
                          | `-- @iobroker/adapter-core@2.6.0
                          |   `-- @types/iobroker@4.0.4
                          |     `-- @types/node@12.12.12 deduped
                          +-- iobroker.ping@1.5.3
                          | `-- @iobroker/adapter-core@2.6.0
                          |   `-- @types/iobroker@4.0.4
                          |     `-- @types/node@12.12.12 deduped
                          +-- iobroker.socketio@4.2.0
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- axios@0.26.1 deduped
                          | +-- cookie-parser@1.4.6 deduped
                          | +-- express-session@1.17.3 deduped
                          | +-- passport@0.5.3
                          | | +-- passport-strategy@1.0.0 deduped
                          | | `-- pause@0.0.1 deduped
                          | `-- socket.io@2.5.0
                          |   +-- debug@4.1.1
                          |   | `-- ms@2.1.3
                          |   +-- engine.io@3.6.0
                          |   | +-- accepts@1.3.8 deduped
                          |   | +-- base64id@2.0.0
                          |   | +-- cookie@0.4.1 deduped
                          |   | +-- debug@4.1.1
                          |   | | `-- ms@2.1.3
                          |   | +-- engine.io-parser@2.2.1
                          |   | | +-- after@0.8.2 deduped
                          |   | | +-- arraybuffer.slice@0.0.7
                          |   | | +-- base64-arraybuffer@0.1.4
                          |   | | +-- blob@0.0.5
                          |   | | `-- has-binary2@1.0.3 deduped
                          |   | `-- ws@7.4.6
                          |   |   +-- UNMET OPTIONAL DEPENDENCY bufferutil@^4.0.1
                          |   |   `-- UNMET OPTIONAL DEPENDENCY utf-8-validate@^5.0.2
                          |   +-- has-binary2@1.0.3
                          |   | `-- isarray@2.0.1
                          |   +-- socket.io-adapter@1.1.2
                          |   +-- socket.io-client@2.5.0
                          |   | +-- backo2@1.0.2 deduped
                          |   | +-- component-bind@1.0.0 deduped
                          |   | +-- component-emitter@1.3.0
                          |   | +-- debug@3.1.0
                          |   | | `-- ms@2.0.0 deduped
                          |   | +-- engine.io-client@3.5.2
                          |   | | +-- component-emitter@1.3.0 deduped
                          |   | | +-- component-inherit@0.0.3 deduped
                          |   | | +-- debug@3.1.0
                          |   | | | `-- ms@2.0.0 deduped
                          |   | | +-- engine.io-parser@2.2.1 deduped
                          |   | | +-- has-cors@1.1.0 deduped
                          |   | | +-- indexof@0.0.1 deduped
                          |   | | +-- parseqs@0.0.6 deduped
                          |   | | +-- parseuri@0.0.6 deduped
                          |   | | +-- ws@7.4.6
                          |   | | | +-- UNMET OPTIONAL DEPENDENCY bufferutil@^4.0.1
                          |   | | | `-- UNMET OPTIONAL DEPENDENCY utf-8-validate@^5.0.2
                          |   | | +-- xmlhttprequest-ssl@1.6.3 deduped
                          |   | | `-- yeast@0.1.2 deduped
                          |   | +-- has-binary2@1.0.3 deduped
                          |   | +-- indexof@0.0.1 deduped
                          |   | +-- parseqs@0.0.6
                          |   | +-- parseuri@0.0.6
                          |   | +-- socket.io-parser@3.3.2
                          |   | | +-- component-emitter@1.3.0 deduped
                          |   | | +-- debug@3.1.0 deduped
                          |   | | `-- isarray@2.0.1 deduped
                          |   | `-- to-array@0.1.4 deduped
                          |   `-- socket.io-parser@3.4.1
                          |     +-- component-emitter@1.2.1
                          |     +-- debug@4.1.1
                          |     | `-- ms@2.1.3
                          |     `-- isarray@2.0.1 deduped
                          +-- iobroker.sourceanalytix@0.4.14 (git+ssh://git@github.com/DrozmotiX/ioBroker.sourceanalytix.git#9c4635239c7b9321601dcf0fcdd8677a55a8b13f)
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- @sentry/node@5.30.0
                          | | +-- @sentry/core@5.30.0
                          | | | +-- @sentry/hub@5.30.0 deduped
                          | | | +-- @sentry/minimal@5.30.0
                          | | | | +-- @sentry/hub@5.30.0 deduped
                          | | | | +-- @sentry/types@5.30.0 deduped
                          | | | | `-- tslib@1.14.1 deduped
                          | | | +-- @sentry/types@5.30.0 deduped
                          | | | +-- @sentry/utils@5.30.0 deduped
                          | | | `-- tslib@1.14.1 deduped
                          | | +-- @sentry/hub@5.30.0
                          | | | +-- @sentry/types@5.30.0 deduped
                          | | | +-- @sentry/utils@5.30.0 deduped
                          | | | `-- tslib@1.14.1 deduped
                          | | +-- @sentry/tracing@5.30.0
                          | | | +-- @sentry/hub@5.30.0 deduped
                          | | | +-- @sentry/minimal@5.30.0 deduped
                          | | | +-- @sentry/types@5.30.0 deduped
                          | | | +-- @sentry/utils@5.30.0 deduped
                          | | | `-- tslib@1.14.1 deduped
                          | | +-- @sentry/types@5.30.0
                          | | +-- @sentry/utils@5.30.0
                          | | | +-- @sentry/types@5.30.0 deduped
                          | | | `-- tslib@1.14.1 deduped
                          | | +-- cookie@0.4.1 deduped
                          | | +-- https-proxy-agent@5.0.1 deduped
                          | | +-- lru_map@0.3.3 deduped
                          | | `-- tslib@1.14.1 deduped
                          | +-- cron@1.8.2
                          | | `-- moment-timezone@0.5.34 deduped
                          | +-- iobroker-adapter-helpers@0.0.8
                          | `-- node-schedule@1.3.3
                          |   +-- cron-parser@2.18.0
                          |   | +-- is-nan@1.3.2 deduped
                          |   | `-- moment-timezone@0.5.34 deduped
                          |   +-- long-timeout@0.1.1 deduped
                          |   `-- sorted-array-functions@1.3.0 deduped
                          +-- iobroker.stiebel-isg@1.7.5
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- cheerio@1.0.0-rc.12
                          | | +-- cheerio-select@2.1.0
                          | | | +-- boolbase@1.0.0
                          | | | +-- css-select@5.1.0
                          | | | | +-- boolbase@1.0.0 deduped
                          | | | | +-- css-what@6.1.0 deduped
                          | | | | +-- domhandler@5.0.3 deduped
                          | | | | +-- domutils@3.0.1 deduped
                          | | | | `-- nth-check@2.1.1
                          | | | |   `-- boolbase@1.0.0 deduped
                          | | | +-- css-what@6.1.0
                          | | | +-- domelementtype@2.3.0
                          | | | +-- domhandler@5.0.3 deduped
                          | | | `-- domutils@3.0.1 deduped
                          | | +-- dom-serializer@2.0.0
                          | | | +-- domelementtype@2.3.0 deduped
                          | | | +-- domhandler@5.0.3 deduped
                          | | | `-- entities@4.3.1
                          | | +-- domhandler@5.0.3
                          | | | `-- domelementtype@2.3.0 deduped
                          | | +-- domutils@3.0.1
                          | | | +-- dom-serializer@2.0.0 deduped
                          | | | +-- domelementtype@2.3.0 deduped
                          | | | `-- domhandler@5.0.3 deduped
                          | | +-- htmlparser2@8.0.1
                          | | | +-- domelementtype@2.3.0 deduped
                          | | | +-- domhandler@5.0.3 deduped
                          | | | +-- domutils@3.0.1 deduped
                          | | | `-- entities@4.3.1 deduped
                          | | +-- parse5-htmlparser2-tree-adapter@7.0.0
                          | | | +-- domhandler@5.0.3 deduped
                          | | | `-- parse5@7.0.0 deduped
                          | | `-- parse5@7.0.0
                          | |   `-- entities@4.3.1 deduped
                          | +-- request@2.88.2
                          | | +-- aws-sign2@0.7.0 deduped
                          | | +-- aws4@1.8.0 deduped
                          | | +-- caseless@0.12.0 deduped
                          | | +-- combined-stream@1.0.8 deduped
                          | | +-- extend@3.0.2 deduped
                          | | +-- forever-agent@0.6.1 deduped
                          | | +-- form-data@2.3.3 deduped
                          | | +-- har-validator@5.1.3 deduped
                          | | +-- http-signature@1.2.0 deduped
                          | | +-- is-typedarray@1.0.0 deduped
                          | | +-- isstream@0.1.2 deduped
                          | | +-- json-stringify-safe@5.0.1 deduped
                          | | +-- mime-types@2.1.25 deduped
                          | | +-- oauth-sign@0.9.0 deduped
                          | | +-- performance-now@2.1.0 deduped
                          | | +-- qs@6.5.3
                          | | +-- safe-buffer@5.1.2 deduped
                          | | +-- tough-cookie@2.5.0
                          | | | +-- psl@1.4.0 deduped
                          | | | `-- punycode@2.1.1 deduped
                          | | +-- tunnel-agent@0.6.0 deduped
                          | | `-- uuid@3.3.3 deduped
                          | `-- tough-cookie@4.0.0
                          |   +-- psl@1.4.0 deduped
                          |   +-- punycode@2.1.1 deduped
                          |   `-- universalify@0.1.2 deduped
                          +-- iobroker.telegram@1.13.0
                          | +-- @iobroker/adapter-core@2.6.7
                          | | `-- @types/iobroker@4.0.5
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- axios@0.27.2
                          | | +-- follow-redirects@1.15.1 deduped
                          | | `-- form-data@4.0.0
                          | |   +-- asynckit@0.4.0 deduped
                          | |   +-- combined-stream@1.0.8 deduped
                          | |   `-- mime-types@2.1.25 deduped
                          | +-- node-telegram-bot-api@0.57.0
                          | | +-- array.prototype.findindex@2.2.1
                          | | | +-- call-bind@1.0.2 deduped
                          | | | +-- define-properties@1.1.4
                          | | | | +-- has-property-descriptors@1.0.0
                          | | | | | `-- get-intrinsic@1.1.2 deduped
                          | | | | `-- object-keys@1.1.1
                          | | | +-- es-abstract@1.20.4
                          | | | | +-- call-bind@1.0.2 deduped
                          | | | | +-- es-to-primitive@1.2.1
                          | | | | | +-- is-callable@1.2.7 deduped
                          | | | | | +-- is-date-object@1.0.5
                          | | | | | | `-- has-tostringtag@1.0.0 deduped
                          | | | | | `-- is-symbol@1.0.4
                          | | | | |   `-- has-symbols@1.0.3 deduped
                          | | | | +-- function-bind@1.1.1 deduped
                          | | | | +-- function.prototype.name@1.1.5
                          | | | | | +-- call-bind@1.0.2 deduped
                          | | | | | +-- define-properties@1.1.4 deduped
                          | | | | | +-- es-abstract@1.20.4 deduped
                          | | | | | `-- functions-have-names@1.2.3
                          | | | | +-- get-intrinsic@1.1.3
                          | | | | | +-- function-bind@1.1.1 deduped
                          | | | | | +-- has-symbols@1.0.3 deduped
                          | | | | | `-- has@1.0.3 deduped
                          | | | | +-- get-symbol-description@1.0.0
                          | | | | | +-- call-bind@1.0.2 deduped
                          | | | | | `-- get-intrinsic@1.1.2 deduped
                          | | | | +-- has-property-descriptors@1.0.0 deduped
                          | | | | +-- has-symbols@1.0.3 deduped
                          | | | | +-- has@1.0.3 deduped
                          | | | | +-- internal-slot@1.0.3
                          | | | | | +-- get-intrinsic@1.1.2 deduped
                          | | | | | +-- has@1.0.3 deduped
                          | | | | | `-- side-channel@1.0.4 deduped
                          | | | | +-- is-callable@1.2.7
                          | | | | +-- is-negative-zero@2.0.2
                          | | | | +-- is-regex@1.1.4
                          | | | | | +-- call-bind@1.0.2 deduped
                          | | | | | `-- has-tostringtag@1.0.0
                          | | | | |   `-- has-symbols@1.0.3 deduped
                          | | | | +-- is-shared-array-buffer@1.0.2
                          | | | | | `-- call-bind@1.0.2 deduped
                          | | | | +-- is-string@1.0.7
                          | | | | | `-- has-tostringtag@1.0.0 deduped
                          | | | | +-- is-weakref@1.0.2
                          | | | | | `-- call-bind@1.0.2 deduped
                          | | | | +-- object-inspect@1.12.2 deduped
                          | | | | +-- object-keys@1.1.1 deduped
                          | | | | +-- object.assign@4.1.4
                          | | | | | +-- call-bind@1.0.2 deduped
                          | | | | | +-- define-properties@1.1.4 deduped
                          | | | | | +-- has-symbols@1.0.3 deduped
                          | | | | | `-- object-keys@1.1.1 deduped
                          | | | | +-- regexp.prototype.flags@1.4.3
                          | | | | | +-- call-bind@1.0.2 deduped
                          | | | | | +-- define-properties@1.1.4 deduped
                          | | | | | `-- functions-have-names@1.2.3 deduped
                          | | | | +-- safe-regex-test@1.0.0
                          | | | | | +-- call-bind@1.0.2 deduped
                          | | | | | +-- get-intrinsic@1.1.3
                          | | | | | | +-- function-bind@1.1.1 deduped
                          | | | | | | +-- has-symbols@1.0.3 deduped
                          | | | | | | `-- has@1.0.3 deduped
                          | | | | | `-- is-regex@1.1.4 deduped
                          | | | | +-- string.prototype.trimend@1.0.6
                          | | | | | +-- call-bind@1.0.2 deduped
                          | | | | | +-- define-properties@1.1.4 deduped
                          | | | | | `-- es-abstract@1.20.4 deduped
                          | | | | +-- string.prototype.trimstart@1.0.6
                          | | | | | +-- call-bind@1.0.2 deduped
                          | | | | | +-- define-properties@1.1.4 deduped
                          | | | | | `-- es-abstract@1.20.4 deduped
                          | | | | `-- unbox-primitive@1.0.2
                          | | | |   +-- call-bind@1.0.2 deduped
                          | | | |   +-- has-bigints@1.0.2
                          | | | |   +-- has-symbols@1.0.3 deduped
                          | | | |   `-- which-boxed-primitive@1.0.2
                          | | | |     +-- is-bigint@1.0.4
                          | | | |     | `-- has-bigints@1.0.2 deduped
                          | | | |     +-- is-boolean-object@1.1.2
                          | | | |     | +-- call-bind@1.0.2 deduped
                          | | | |     | `-- has-tostringtag@1.0.0 deduped
                          | | | |     +-- is-number-object@1.0.7
                          | | | |     | `-- has-tostringtag@1.0.0 deduped
                          | | | |     +-- is-string@1.0.7 deduped
                          | | | |     `-- is-symbol@1.0.4 deduped
                          | | | `-- es-shim-unscopables@1.0.0
                          | | |   `-- has@1.0.3 deduped
                          | | +-- bl@1.2.3
                          | | | +-- readable-stream@2.3.6 deduped
                          | | | `-- safe-buffer@5.1.2 deduped
                          | | +-- bluebird@3.7.1 deduped
                          | | +-- debug@3.2.7
                          | | | `-- ms@2.1.3
                          | | +-- depd@1.1.2
                          | | +-- eventemitter3@3.1.2
                          | | +-- file-type@3.9.0
                          | | +-- mime@1.6.0
                          | | +-- pump@2.0.1
                          | | | +-- end-of-stream@1.4.4 deduped
                          | | | `-- once@1.4.0 deduped
                          | | +-- request-promise@4.2.6 deduped
                          | | `-- request@2.88.0 deduped
                          | `-- socksv5@0.0.6
                          |   `-- ipv6@3.1.1
                          |     +-- cli@0.4.5
                          |     | `-- glob@8.0.3
                          |     |   +-- fs.realpath@1.0.0 deduped
                          |     |   +-- inflight@1.0.6 deduped
                          |     |   +-- inherits@2.0.3 deduped
                          |     |   +-- minimatch@5.1.0 deduped
                          |     |   `-- once@1.4.0 deduped
                          |     +-- cliff@0.1.10
                          |     | +-- colors@1.0.3
                          |     | +-- eyes@0.1.8 deduped
                          |     | `-- winston@0.8.3
                          |     |   +-- async@0.2.10
                          |     |   +-- colors@0.6.2
                          |     |   +-- cycle@1.0.3 deduped
                          |     |   +-- eyes@0.1.8 deduped
                          |     |   +-- isstream@0.1.2 deduped
                          |     |   +-- pkginfo@0.3.1
                          |     |   `-- stack-trace@0.0.10 deduped
                          |     `-- sprintf@0.1.3
                          +-- iobroker.tr-064@4.2.17
                          | +-- @iobroker/adapter-core@2.6.7
                          | | `-- @types/iobroker@4.0.5
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- mdns-discovery@0.2.6 deduped
                          | +-- tr-O64@0.2.4
                          | | +-- async@2.6.3 deduped
                          | | +-- eyes@0.1.8
                          | | +-- request@2.88.0 deduped
                          | | `-- xml2js@0.4.23 deduped
                          | `-- xml2js@0.4.23 deduped
                          +-- iobroker.unifi@0.5.10
                          | +-- @iobroker/adapter-core@2.6.7
                          | | `-- @types/iobroker@4.0.5
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- axios@0.21.4
                          | | `-- follow-redirects@1.15.1 deduped
                          | +-- dateformat@4.6.3
                          | +-- json-logic-js@2.0.2
                          | `-- node-unifi@1.4.3
                          |   +-- async@3.2.4
                          |   `-- request@2.88.2
                          |     +-- aws-sign2@0.7.0 deduped
                          |     +-- aws4@1.8.0 deduped
                          |     +-- caseless@0.12.0 deduped
                          |     +-- combined-stream@1.0.8 deduped
                          |     +-- extend@3.0.2 deduped
                          |     +-- forever-agent@0.6.1 deduped
                          |     +-- form-data@2.3.3 deduped
                          |     +-- har-validator@5.1.3 deduped
                          |     +-- http-signature@1.2.0 deduped
                          |     +-- is-typedarray@1.0.0 deduped
                          |     +-- isstream@0.1.2 deduped
                          |     +-- json-stringify-safe@5.0.1 deduped
                          |     +-- mime-types@2.1.25 deduped
                          |     +-- oauth-sign@0.9.0 deduped
                          |     +-- performance-now@2.1.0 deduped
                          |     +-- qs@6.5.3
                          |     +-- safe-buffer@5.1.2 deduped
                          |     +-- tough-cookie@2.5.0
                          |     | +-- psl@1.4.0 deduped
                          |     | `-- punycode@2.1.1 deduped
                          |     +-- tunnel-agent@0.6.0 deduped
                          |     `-- uuid@3.3.3 deduped
                          +-- iobroker.vis-colorpicker@1.2.0
                          | `-- @iobroker/adapter-core@2.6.0
                          |   `-- @types/iobroker@4.0.4
                          |     `-- @types/node@12.12.12 deduped
                          +-- iobroker.vis-fancyswitch@1.1.0
                          +-- iobroker.vis-hqwidgets@1.2.0
                          +-- iobroker.vis-jqui-mfd@1.0.12
                          +-- iobroker.vis-justgage@1.0.2
                          | `-- @iobroker/adapter-core@1.0.3 deduped
                          +-- iobroker.vis-map@1.0.4
                          +-- iobroker.vis-materialdesign@0.5.86 (git+ssh://git@github.com/Scrounger/ioBroker.vis-materialdesign.git#cf7fc5b85debcda156a3ec7feb761cff217fa855)
                          +-- iobroker.vis-timeandweather@1.1.7
                          +-- iobroker.vis@1.4.15
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- axios@0.26.1
                          | | `-- follow-redirects@1.15.1
                          | `-- jsonwebtoken@8.5.1 deduped
                          +-- iobroker.vw-connect@0.0.56 (git+ssh://git@github.com/ta2k/ioBroker.vw-connect.git#5258d16f58c3a4ed39b309a757353f792fd9fd8e)
                          | +-- @iobroker/adapter-core@2.6.7
                          | | `-- @types/iobroker@4.0.5
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- @peculiar/webcrypto@1.4.1
                          | | +-- @peculiar/asn1-schema@2.3.3
                          | | | +-- asn1js@3.0.5
                          | | | | +-- pvtsutils@1.3.2 deduped
                          | | | | +-- pvutils@1.1.3
                          | | | | `-- tslib@2.4.1
                          | | | +-- pvtsutils@1.3.2 deduped
                          | | | `-- tslib@2.4.1
                          | | +-- @peculiar/json-schema@1.1.12
                          | | | `-- tslib@2.4.1
                          | | +-- pvtsutils@1.3.2
                          | | | `-- tslib@2.4.1
                          | | +-- tslib@2.4.1
                          | | `-- webcrypto-core@1.7.5
                          | |   +-- @peculiar/asn1-schema@2.3.3 deduped
                          | |   +-- @peculiar/json-schema@1.1.12 deduped
                          | |   +-- asn1js@3.0.5 deduped
                          | |   +-- pvtsutils@1.3.2 deduped
                          | |   `-- tslib@2.4.1
                          | +-- axios@0.27.2
                          | | +-- follow-redirects@1.15.1 deduped
                          | | `-- form-data@4.0.0
                          | |   +-- asynckit@0.4.0 deduped
                          | |   +-- combined-stream@1.0.8 deduped
                          | |   `-- mime-types@2.1.25 deduped
                          | +-- ngeohash@0.6.3
                          | +-- qs@6.11.0
                          | | `-- side-channel@1.0.4 deduped
                          | +-- request@2.88.2
                          | | +-- aws-sign2@0.7.0 deduped
                          | | +-- aws4@1.8.0 deduped
                          | | +-- caseless@0.12.0 deduped
                          | | +-- combined-stream@1.0.8 deduped
                          | | +-- extend@3.0.2 deduped
                          | | +-- forever-agent@0.6.1 deduped
                          | | +-- form-data@2.3.3
                          | | | +-- asynckit@0.4.0 deduped
                          | | | +-- combined-stream@1.0.8 deduped
                          | | | `-- mime-types@2.1.25 deduped
                          | | +-- har-validator@5.1.3 deduped
                          | | +-- http-signature@1.2.0 deduped
                          | | +-- is-typedarray@1.0.0 deduped
                          | | +-- isstream@0.1.2 deduped
                          | | +-- json-stringify-safe@5.0.1 deduped
                          | | +-- mime-types@2.1.25 deduped
                          | | +-- oauth-sign@0.9.0 deduped
                          | | +-- performance-now@2.1.0 deduped
                          | | +-- qs@6.5.3
                          | | +-- safe-buffer@5.1.2 deduped
                          | | +-- tough-cookie@2.5.0
                          | | | +-- psl@1.4.0 deduped
                          | | | `-- punycode@2.1.1 deduped
                          | | +-- tunnel-agent@0.6.0 deduped
                          | | `-- uuid@3.4.0
                          | +-- traverse@0.6.7
                          | `-- uuid@9.0.0
                          +-- iobroker.web@4.3.0
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- body-parser@1.20.0
                          | | +-- bytes@3.1.2 deduped
                          | | +-- content-type@1.0.4 deduped
                          | | +-- debug@2.6.9 deduped
                          | | +-- depd@2.0.0 deduped
                          | | +-- destroy@1.2.0 deduped
                          | | +-- http-errors@2.0.0 deduped
                          | | +-- iconv-lite@0.4.24 deduped
                          | | +-- on-finished@2.4.1 deduped
                          | | +-- qs@6.10.3 deduped
                          | | +-- raw-body@2.5.1 deduped
                          | | +-- type-is@1.6.18 deduped
                          | | `-- unpipe@1.0.0 deduped
                          | +-- compression@1.7.4 deduped
                          | +-- connect-flash@0.1.1 deduped
                          | +-- cookie-parser@1.4.6 deduped
                          | +-- express-session@1.17.3 deduped
                          | +-- express@4.18.1 deduped
                          | +-- iobroker.simple-api@2.7.0
                          | | `-- @iobroker/adapter-core@2.6.0
                          | |   `-- @types/iobroker@4.0.4
                          | |     `-- @types/node@12.12.12 deduped
                          | +-- iobroker.socketio@4.2.0 deduped
                          | +-- iobroker.ws@1.3.0 deduped
                          | +-- mime-types@2.1.35
                          | | `-- mime-db@1.52.0
                          | +-- passport-local@1.0.0 deduped
                          | +-- passport@0.5.3 deduped
                          | `-- xtend@4.0.2
                          +-- iobroker.wifilight@1.1.3
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- array-ext@0.1.5
                          | +-- mdns-discovery@0.2.6 deduped
                          | +-- netmask@2.0.2
                          | `-- sprintf-js@1.1.2
                          +-- iobroker.worx@1.6.6 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.worx.git#f74920c46c5918a74bb1987a2e5e841fa1011dca)
                          | +-- @iobroker/adapter-core@2.6.6
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- axios@0.27.2
                          | | +-- follow-redirects@1.15.1 deduped
                          | | `-- form-data@4.0.0
                          | |   +-- asynckit@0.4.0 deduped
                          | |   +-- combined-stream@1.0.8 deduped
                          | |   `-- mime-types@2.1.25 deduped
                          | +-- circular-json@0.5.9
                          | +-- http-cookie-agent@4.0.2 deduped
                          | +-- mqtt@4.3.7
                          | | +-- commist@1.1.0
                          | | | +-- leven@2.1.0
                          | | | `-- minimist@1.2.0 deduped
                          | | +-- concat-stream@2.0.0
                          | | | +-- buffer-from@1.1.2 deduped
                          | | | +-- inherits@2.0.3 deduped
                          | | | +-- readable-stream@3.6.0 deduped
                          | | | `-- typedarray@0.0.6
                          | | +-- debug@4.3.4
                          | | | `-- ms@2.1.2
                          | | +-- duplexify@4.1.2
                          | | | +-- end-of-stream@1.4.4 deduped
                          | | | +-- inherits@2.0.3 deduped
                          | | | +-- readable-stream@3.6.0
                          | | | | +-- inherits@2.0.3 deduped
                          | | | | +-- string_decoder@1.1.1 deduped
                          | | | | `-- util-deprecate@1.0.2 deduped
                          | | | `-- stream-shift@1.0.1
                          | | +-- help-me@3.0.0
                          | | | +-- glob@7.2.3
                          | | | | +-- fs.realpath@1.0.0
                          | | | | +-- inflight@1.0.6
                          | | | | | +-- once@1.4.0 deduped
                          | | | | | `-- wrappy@1.0.2 deduped
                          | | | | +-- inherits@2.0.3 deduped
                          | | | | +-- minimatch@3.1.2
                          | | | | | `-- brace-expansion@1.1.11
                          | | | | |   +-- balanced-match@1.0.2 deduped
                          | | | | |   `-- concat-map@0.0.1
                          | | | | +-- once@1.4.0 deduped
                          | | | | `-- path-is-absolute@1.0.1
                          | | | `-- readable-stream@3.6.0
                          | | |   +-- inherits@2.0.3 deduped
                          | | |   +-- string_decoder@1.1.1 deduped
                          | | |   `-- util-deprecate@1.0.2 deduped
                          | | +-- inherits@2.0.3
                          | | +-- lru-cache@6.0.0 deduped
                          | | +-- minimist@1.2.6
                          | | +-- mqtt-packet@6.10.0
                          | | | +-- bl@4.1.0
                          | | | | +-- buffer@5.7.1 deduped
                          | | | | +-- inherits@2.0.4
                          | | | | `-- readable-stream@3.6.0
                          | | | |   +-- inherits@2.0.4 deduped
                          | | | |   +-- string_decoder@1.1.1 deduped
                          | | | |   `-- util-deprecate@1.0.2 deduped
                          | | | +-- debug@4.3.4
                          | | | | `-- ms@2.1.2
                          | | | `-- process-nextick-args@2.0.1 deduped
                          | | +-- number-allocator@1.0.12
                          | | | +-- debug@4.3.4
                          | | | | `-- ms@2.1.2
                          | | | `-- js-sdsl@4.1.4
                          | | +-- pump@3.0.0
                          | | | +-- end-of-stream@1.4.4 deduped
                          | | | `-- once@1.4.0 deduped
                          | | +-- readable-stream@3.6.0
                          | | | +-- inherits@2.0.3 deduped
                          | | | +-- string_decoder@1.1.1 deduped
                          | | | `-- util-deprecate@1.0.2 deduped
                          | | +-- reinterval@1.1.0
                          | | +-- rfdc@1.3.0
                          | | +-- split2@3.2.2
                          | | | `-- readable-stream@3.6.0
                          | | |   +-- inherits@2.0.3 deduped
                          | | |   +-- string_decoder@1.1.1 deduped
                          | | |   `-- util-deprecate@1.0.2 deduped
                          | | +-- ws@7.5.9
                          | | | +-- UNMET OPTIONAL DEPENDENCY bufferutil@^4.0.1
                          | | | `-- UNMET OPTIONAL DEPENDENCY utf-8-validate@^5.0.2
                          | | `-- xtend@4.0.2 deduped
                          | +-- qs@6.11.0
                          | | `-- side-channel@1.0.4 deduped
                          | +-- request-promise@4.2.6
                          | | +-- bluebird@3.7.1 deduped
                          | | +-- request-promise-core@1.1.4
                          | | | +-- lodash@4.17.21
                          | | | `-- request@2.88.0 deduped
                          | | +-- request@2.88.0 deduped
                          | | +-- stealthy-require@1.1.1
                          | | `-- tough-cookie@2.4.3 deduped invalid: "^4.0.0" from node_modules/http-cookie-agent
                          | +-- request@2.88.2
                          | | +-- aws-sign2@0.7.0 deduped
                          | | +-- aws4@1.8.0 deduped
                          | | +-- caseless@0.12.0 deduped
                          | | +-- combined-stream@1.0.8 deduped
                          | | +-- extend@3.0.2 deduped
                          | | +-- forever-agent@0.6.1 deduped
                          | | +-- form-data@2.3.3
                          | | | +-- asynckit@0.4.0 deduped
                          | | | +-- combined-stream@1.0.8 deduped
                          | | | `-- mime-types@2.1.25 deduped
                          | | +-- har-validator@5.1.3 deduped
                          | | +-- http-signature@1.2.0 deduped
                          | | +-- is-typedarray@1.0.0 deduped
                          | | +-- isstream@0.1.2 deduped
                          | | +-- json-stringify-safe@5.0.1 deduped
                          | | +-- mime-types@2.1.25 deduped
                          | | +-- oauth-sign@0.9.0 deduped
                          | | +-- performance-now@2.1.0 deduped
                          | | +-- qs@6.5.3
                          | | +-- safe-buffer@5.1.2 deduped
                          | | +-- tough-cookie@2.5.0
                          | | | +-- psl@1.4.0 deduped
                          | | | `-- punycode@2.1.1 deduped
                          | | +-- tunnel-agent@0.6.0 deduped
                          | | `-- uuid@3.4.0
                          | +-- tough-cookie@4.1.2
                          | | +-- psl@1.4.0 deduped
                          | | +-- punycode@2.1.1 deduped
                          | | +-- universalify@0.2.0
                          | | `-- url-parse@1.5.10 deduped
                          | `-- uuid@9.0.0
                          +-- iobroker.ws@1.3.0
                          | +-- @iobroker/adapter-core@2.6.0
                          | | `-- @types/iobroker@4.0.4
                          | |   `-- @types/node@12.12.12 deduped
                          | +-- axios@0.26.1 deduped
                          | +-- cookie-parser@1.4.6 deduped
                          | +-- express-session@1.17.3 deduped
                          | +-- iobroker.ws.server@1.0.1
                          | | `-- ws@8.8.0 deduped
                          | `-- passport@0.5.3 deduped
                          +-- semver@5.7.1
                          +-- utile@ extraneous
                          `-- yargs@7.1.0
                            +-- camelcase@3.0.0
                            +-- cliui@3.2.0
                            | +-- string-width@1.0.2 deduped
                            | +-- strip-ansi@3.0.1
                            | | `-- ansi-regex@2.1.1
                            | `-- wrap-ansi@2.1.0
                            |   +-- string-width@1.0.2 deduped
                            |   `-- strip-ansi@3.0.1 deduped
                            +-- decamelize@1.2.0
                            +-- get-caller-file@1.0.3
                            +-- os-locale@1.4.0
                            | `-- lcid@1.0.0
                            |   `-- invert-kv@1.0.0
                            +-- read-pkg-up@1.0.1
                            | +-- find-up@1.1.2
                            | | +-- path-exists@2.1.0
                            | | | `-- pinkie-promise@2.0.1 deduped
                            | | `-- pinkie-promise@2.0.1
                            | |   `-- pinkie@2.0.4
                            | `-- read-pkg@1.1.0
                            |   +-- load-json-file@1.1.0
                            |   | +-- graceful-fs@4.2.3 deduped
                            |   | +-- parse-json@2.2.0
                            |   | | `-- error-ex@1.3.2
                            |   | |   `-- is-arrayish@0.2.1
                            |   | +-- pify@2.3.0
                            |   | +-- pinkie-promise@2.0.1 deduped
                            |   | `-- strip-bom@2.0.0
                            |   |   `-- is-utf8@0.2.1
                            |   +-- normalize-package-data@2.5.0
                            |   | +-- hosted-git-info@2.8.5
                            |   | +-- resolve@1.12.2
                            |   | | `-- path-parse@1.0.6
                            |   | +-- semver@5.7.1 deduped
                            |   | `-- validate-npm-package-license@3.0.4
                            |   |   +-- spdx-correct@3.1.0
                            |   |   | +-- spdx-expression-parse@3.0.0 deduped
                            |   |   | `-- spdx-license-ids@3.0.5
                            |   |   `-- spdx-expression-parse@3.0.0
                            |   |     +-- spdx-exceptions@2.2.0
                            |   |     `-- spdx-license-ids@3.0.5 deduped
                            |   `-- path-type@1.1.0
                            |     +-- graceful-fs@4.2.3 deduped
                            |     +-- pify@2.3.0 deduped
                            |     `-- pinkie-promise@2.0.1 deduped
                            +-- require-directory@2.1.1
                            +-- require-main-filename@1.0.1
                            +-- set-blocking@2.0.0
                            +-- string-width@1.0.2
                            | +-- code-point-at@1.1.0
                            | +-- is-fullwidth-code-point@1.0.0
                            | | `-- number-is-nan@1.0.1
                            | `-- strip-ansi@3.0.1 deduped
                            +-- which-module@1.0.0
                            +-- y18n@3.2.1
                            `-- yargs-parser@5.0.0
                              `-- camelcase@3.0.0 deduped
                          
                          npm ERR! code ELSPROBLEMS
                          npm ERR! extraneous: utile@ C:\iobroker\SmartHome\node_modules\utile
                          npm ERR! invalid: tough-cookie@2.4.3 C:\iobroker\SmartHome\node_modules\tough-cookie
                          
                          npm ERR! A complete log of this run can be found in:
                          npm ERR!     C:\Users\User\AppData\Local\npm-cache\_logs\2023-02-11T09_56_37_263Z-debug-0.log
                          
                          C:\iobroker\SmartHome>
                          
                          1 Antwort Letzte Antwort
                          0
                          • Thomas BraunT Online
                            Thomas BraunT Online
                            Thomas Braun
                            Most Active
                            schrieb am zuletzt editiert von
                            #53

                            @nik82

                            npm Cache löschen, kodi ggf. nochmal sauber installieren, dann bei Nichtbedarf sauber deinstallieren.

                            Linux-Werkzeugkasten:
                            https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                            NodeJS Fixer Skript:
                            https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                            iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                            1 Antwort Letzte Antwort
                            0
                            • GaspodeG Online
                              GaspodeG Online
                              Gaspode
                              schrieb am zuletzt editiert von
                              #54

                              @nik82 said in Probleme bei Update auf Node.js 16.15.1 unter Windows:

                              Du schreibst codi mit "c", der adapter heißt aber "kodi".

                              Sorry, vertippt. Man soll halt doch nicht mehrere Sachen gleichzeitig machen. :)

                              Mit @Thomas-Braun ist jetzt ja ein Node-Installations-Experte eingestiegen. Das ist gut, denn Windows-spezifisch sind deine Probleme wohl eher nicht.

                              Du scheinst ja noch mindestens ein weiteres Problem mit einem ungültigen Paket zu haben: tough-cookie

                              Das nach dem cache Löschen ggfs. auch mal aktualisieren oder evtl. besser neu installieren:

                              Also zusammengefasst:

                              npm cache clean -f
                              npm i tough-cookie@latest
                              npm uninstall iobroker.kodi
                              
                              Thomas BraunT 1 Antwort Letzte Antwort
                              0
                              • GaspodeG Gaspode

                                @nik82 said in Probleme bei Update auf Node.js 16.15.1 unter Windows:

                                Du schreibst codi mit "c", der adapter heißt aber "kodi".

                                Sorry, vertippt. Man soll halt doch nicht mehrere Sachen gleichzeitig machen. :)

                                Mit @Thomas-Braun ist jetzt ja ein Node-Installations-Experte eingestiegen. Das ist gut, denn Windows-spezifisch sind deine Probleme wohl eher nicht.

                                Du scheinst ja noch mindestens ein weiteres Problem mit einem ungültigen Paket zu haben: tough-cookie

                                Das nach dem cache Löschen ggfs. auch mal aktualisieren oder evtl. besser neu installieren:

                                Also zusammengefasst:

                                npm cache clean -f
                                npm i tough-cookie@latest
                                npm uninstall iobroker.kodi
                                
                                Thomas BraunT Online
                                Thomas BraunT Online
                                Thomas Braun
                                Most Active
                                schrieb am zuletzt editiert von
                                #55

                                @gaspode

                                Mit dem Modul utile klemmt es ebenfalls. Keine Ahnung was da alles schief ist.

                                Linux-Werkzeugkasten:
                                https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                                NodeJS Fixer Skript:
                                https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                                iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                                GaspodeG 1 Antwort Letzte Antwort
                                0
                                • Thomas BraunT Thomas Braun

                                  @gaspode

                                  Mit dem Modul utile klemmt es ebenfalls. Keine Ahnung was da alles schief ist.

                                  GaspodeG Online
                                  GaspodeG Online
                                  Gaspode
                                  schrieb am zuletzt editiert von Gaspode
                                  #56

                                  @thomas-braun said in Probleme bei Update auf Node.js 16.15.1 unter Windows:

                                  Mit dem Modul utile klemmt es ebenfalls. Keine Ahnung was da alles schief ist.

                                  Stimmt, übersehen.

                                  @nik82
                                  Dann wird aus der Anweisungsliste

                                  npm cache clean -f
                                  npm i tough-cookie@latest
                                  npm i utile@latest
                                  npm uninstall iobroker.kodi
                                  
                                  1 Antwort Letzte Antwort
                                  1
                                  • nik82N Offline
                                    nik82N Offline
                                    nik82
                                    Most Active
                                    schrieb am zuletzt editiert von
                                    #57

                                    Also mit Node 14 klappt komplett alles, das Problem liegt rein jetzt seit der Installation von Node 16.
                                    Das nur nochmal zur Info.

                                    Bin jetzt zurück auf Node 14 und habe dort Kodi gelöscht, das ging:

                                    C:\iobroker\SmartHome>node -v
                                    v14.19.3
                                    
                                    C:\iobroker\SmartHome>npm -v
                                    6.14.17
                                    
                                    C:\iobroker\SmartHome>iobroker del kodi
                                    Delete adapter "kodi"
                                    host.IOBROKER(SmartHome) object kodi deleted
                                    host.IOBROKER(SmartHome) object kodi.admin deleted
                                    removed 18 packages and audited 1150 packages in 4.778s
                                    
                                    89 packages are looking for funding
                                      run `npm fund` for details
                                    
                                    found 117 vulnerabilities (13 low, 55 moderate, 31 high, 18 critical)
                                      run `npm audit fix` to fix them, or `npm audit` for details
                                    Adapter "system.adapter.vis.0" restarted.
                                    

                                    Habe dann wieder upgedatet auf Node 16.19..
                                    Habe dann nochmal "npm i socks-proxy-agent@latest" ausgeführt, jetzt schaut es anders aus:

                                    C:\iobroker\SmartHome>npm i socks-proxy-agent@latest
                                    npm WARN old lockfile
                                    npm WARN old lockfile The package-lock.json file was created with an old version of npm,
                                    npm WARN old lockfile so supplemental metadata must be fetched from the registry.
                                    npm WARN old lockfile
                                    npm WARN old lockfile This is a one-time fix-up, please be patient...
                                    npm WARN old lockfile
                                    
                                    added 6 packages, removed 1 package, and audited 1147 packages in 22s
                                    
                                    90 packages are looking for funding
                                      run `npm fund` for details
                                    
                                    41 vulnerabilities (9 low, 20 moderate, 11 high, 1 critical)
                                    
                                    To address issues that do not require attention, run:
                                      npm audit fix
                                    
                                    To address all issues possible (including breaking changes), run:
                                      npm audit fix --force
                                    
                                    Some issues need review, and may require choosing
                                    a different dependency.
                                    
                                    Run `npm audit` for details.
                                    
                                    

                                    npm cache clean -f kann ich nicht ausführen, da kommt eine protection meldung:

                                    C:\iobroker\SmartHome>npm cache clean -f
                                    npm WARN using --force Recommended protections disabled.
                                    

                                    npm i tough-cookie@latest:

                                    C:\iobroker\SmartHome>npm i tough-cookie@latest
                                    
                                    added 5 packages, removed 6 packages, changed 2 packages, and audited 1146 packages in 7s
                                    
                                    90 packages are looking for funding
                                      run `npm fund` for details
                                    
                                    41 vulnerabilities (9 low, 20 moderate, 11 high, 1 critical)
                                    
                                    To address issues that do not require attention, run:
                                      npm audit fix
                                    
                                    To address all issues possible (including breaking changes), run:
                                      npm audit fix --force
                                    
                                    Some issues need review, and may require choosing
                                    a different dependency.
                                    
                                    Run `npm audit` for details.
                                    
                                    GaspodeG Thomas BraunT 2 Antworten Letzte Antwort
                                    0
                                    • nik82N nik82

                                      Also mit Node 14 klappt komplett alles, das Problem liegt rein jetzt seit der Installation von Node 16.
                                      Das nur nochmal zur Info.

                                      Bin jetzt zurück auf Node 14 und habe dort Kodi gelöscht, das ging:

                                      C:\iobroker\SmartHome>node -v
                                      v14.19.3
                                      
                                      C:\iobroker\SmartHome>npm -v
                                      6.14.17
                                      
                                      C:\iobroker\SmartHome>iobroker del kodi
                                      Delete adapter "kodi"
                                      host.IOBROKER(SmartHome) object kodi deleted
                                      host.IOBROKER(SmartHome) object kodi.admin deleted
                                      removed 18 packages and audited 1150 packages in 4.778s
                                      
                                      89 packages are looking for funding
                                        run `npm fund` for details
                                      
                                      found 117 vulnerabilities (13 low, 55 moderate, 31 high, 18 critical)
                                        run `npm audit fix` to fix them, or `npm audit` for details
                                      Adapter "system.adapter.vis.0" restarted.
                                      

                                      Habe dann wieder upgedatet auf Node 16.19..
                                      Habe dann nochmal "npm i socks-proxy-agent@latest" ausgeführt, jetzt schaut es anders aus:

                                      C:\iobroker\SmartHome>npm i socks-proxy-agent@latest
                                      npm WARN old lockfile
                                      npm WARN old lockfile The package-lock.json file was created with an old version of npm,
                                      npm WARN old lockfile so supplemental metadata must be fetched from the registry.
                                      npm WARN old lockfile
                                      npm WARN old lockfile This is a one-time fix-up, please be patient...
                                      npm WARN old lockfile
                                      
                                      added 6 packages, removed 1 package, and audited 1147 packages in 22s
                                      
                                      90 packages are looking for funding
                                        run `npm fund` for details
                                      
                                      41 vulnerabilities (9 low, 20 moderate, 11 high, 1 critical)
                                      
                                      To address issues that do not require attention, run:
                                        npm audit fix
                                      
                                      To address all issues possible (including breaking changes), run:
                                        npm audit fix --force
                                      
                                      Some issues need review, and may require choosing
                                      a different dependency.
                                      
                                      Run `npm audit` for details.
                                      
                                      

                                      npm cache clean -f kann ich nicht ausführen, da kommt eine protection meldung:

                                      C:\iobroker\SmartHome>npm cache clean -f
                                      npm WARN using --force Recommended protections disabled.
                                      

                                      npm i tough-cookie@latest:

                                      C:\iobroker\SmartHome>npm i tough-cookie@latest
                                      
                                      added 5 packages, removed 6 packages, changed 2 packages, and audited 1146 packages in 7s
                                      
                                      90 packages are looking for funding
                                        run `npm fund` for details
                                      
                                      41 vulnerabilities (9 low, 20 moderate, 11 high, 1 critical)
                                      
                                      To address issues that do not require attention, run:
                                        npm audit fix
                                      
                                      To address all issues possible (including breaking changes), run:
                                        npm audit fix --force
                                      
                                      Some issues need review, and may require choosing
                                      a different dependency.
                                      
                                      Run `npm audit` for details.
                                      
                                      GaspodeG Online
                                      GaspodeG Online
                                      Gaspode
                                      schrieb am zuletzt editiert von Gaspode
                                      #58

                                      @nik82
                                      Das sieht doch erst mal gut aus. Sind die Probleme trotzdem noch da?

                                      Wie gesagt, Paket utile besser auch noch neu installieren, s.o.

                                      @nik82 said in Probleme bei Update auf Node.js 16.15.1 unter Windows:

                                      npm cache clean -f kann ich nicht ausführen, da kommt eine protection meldung:

                                      Ist ja "nur" eine Warning, normalerweise wird der cache trotzdem gelöscht.
                                      Kannst du überprüfen mit

                                      npm cache verify
                                      
                                      nik82N 1 Antwort Letzte Antwort
                                      1
                                      • nik82N nik82

                                        Also mit Node 14 klappt komplett alles, das Problem liegt rein jetzt seit der Installation von Node 16.
                                        Das nur nochmal zur Info.

                                        Bin jetzt zurück auf Node 14 und habe dort Kodi gelöscht, das ging:

                                        C:\iobroker\SmartHome>node -v
                                        v14.19.3
                                        
                                        C:\iobroker\SmartHome>npm -v
                                        6.14.17
                                        
                                        C:\iobroker\SmartHome>iobroker del kodi
                                        Delete adapter "kodi"
                                        host.IOBROKER(SmartHome) object kodi deleted
                                        host.IOBROKER(SmartHome) object kodi.admin deleted
                                        removed 18 packages and audited 1150 packages in 4.778s
                                        
                                        89 packages are looking for funding
                                          run `npm fund` for details
                                        
                                        found 117 vulnerabilities (13 low, 55 moderate, 31 high, 18 critical)
                                          run `npm audit fix` to fix them, or `npm audit` for details
                                        Adapter "system.adapter.vis.0" restarted.
                                        

                                        Habe dann wieder upgedatet auf Node 16.19..
                                        Habe dann nochmal "npm i socks-proxy-agent@latest" ausgeführt, jetzt schaut es anders aus:

                                        C:\iobroker\SmartHome>npm i socks-proxy-agent@latest
                                        npm WARN old lockfile
                                        npm WARN old lockfile The package-lock.json file was created with an old version of npm,
                                        npm WARN old lockfile so supplemental metadata must be fetched from the registry.
                                        npm WARN old lockfile
                                        npm WARN old lockfile This is a one-time fix-up, please be patient...
                                        npm WARN old lockfile
                                        
                                        added 6 packages, removed 1 package, and audited 1147 packages in 22s
                                        
                                        90 packages are looking for funding
                                          run `npm fund` for details
                                        
                                        41 vulnerabilities (9 low, 20 moderate, 11 high, 1 critical)
                                        
                                        To address issues that do not require attention, run:
                                          npm audit fix
                                        
                                        To address all issues possible (including breaking changes), run:
                                          npm audit fix --force
                                        
                                        Some issues need review, and may require choosing
                                        a different dependency.
                                        
                                        Run `npm audit` for details.
                                        
                                        

                                        npm cache clean -f kann ich nicht ausführen, da kommt eine protection meldung:

                                        C:\iobroker\SmartHome>npm cache clean -f
                                        npm WARN using --force Recommended protections disabled.
                                        

                                        npm i tough-cookie@latest:

                                        C:\iobroker\SmartHome>npm i tough-cookie@latest
                                        
                                        added 5 packages, removed 6 packages, changed 2 packages, and audited 1146 packages in 7s
                                        
                                        90 packages are looking for funding
                                          run `npm fund` for details
                                        
                                        41 vulnerabilities (9 low, 20 moderate, 11 high, 1 critical)
                                        
                                        To address issues that do not require attention, run:
                                          npm audit fix
                                        
                                        To address all issues possible (including breaking changes), run:
                                          npm audit fix --force
                                        
                                        Some issues need review, and may require choosing
                                        a different dependency.
                                        
                                        Run `npm audit` for details.
                                        
                                        Thomas BraunT Online
                                        Thomas BraunT Online
                                        Thomas Braun
                                        Most Active
                                        schrieb am zuletzt editiert von
                                        #59

                                        @nik82

                                        Wird npm bei dem Fenster-OS nicht separat installiert?
                                        Welche Version ist da am Start?

                                        Linux-Werkzeugkasten:
                                        https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                                        NodeJS Fixer Skript:
                                        https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                                        iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                                        GaspodeG nik82N 2 Antworten Letzte Antwort
                                        0
                                        • GaspodeG Gaspode

                                          @nik82
                                          Das sieht doch erst mal gut aus. Sind die Probleme trotzdem noch da?

                                          Wie gesagt, Paket utile besser auch noch neu installieren, s.o.

                                          @nik82 said in Probleme bei Update auf Node.js 16.15.1 unter Windows:

                                          npm cache clean -f kann ich nicht ausführen, da kommt eine protection meldung:

                                          Ist ja "nur" eine Warning, normalerweise wird der cache trotzdem gelöscht.
                                          Kannst du überprüfen mit

                                          npm cache verify
                                          
                                          nik82N Offline
                                          nik82N Offline
                                          nik82
                                          Most Active
                                          schrieb am zuletzt editiert von
                                          #60

                                          @gaspode
                                          Ich glaube jetzt schaut es schon sehr gut aus, ich kann meine Adapter wieder updaten.

                                          Wie kann ich jetzt schauen ob noch etwas nicht passt?

                                          npm ls -a:
                                          Da kommt unten noch ein Fehler:

                                          
                                          C:\iobroker\SmartHome>npm ls -a
                                          iobroker.inst@2.0.3 C:\iobroker\SmartHome
                                          +-- colors@1.4.0
                                          +-- fs-extra@7.0.1
                                          | +-- graceful-fs@4.2.3
                                          | +-- jsonfile@4.0.0
                                          | | `-- graceful-fs@4.2.3 deduped
                                          | `-- universalify@0.1.2
                                          +-- iobroker.admin@6.3.5
                                          | +-- @iobroker/adapter-core@2.6.7
                                          | | `-- @types/iobroker@4.0.5
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- @iobroker/socket-classes@1.0.2
                                          | | +-- @iobroker/adapter-core@2.6.7
                                          | | | `-- @types/iobroker@4.0.5
                                          | | |   `-- @types/node@12.20.55 deduped
                                          | | +-- axios@0.27.2
                                          | | | +-- follow-redirects@1.15.1 deduped
                                          | | | `-- form-data@4.0.0
                                          | | |   +-- asynckit@0.4.0 deduped
                                          | | |   +-- combined-stream@1.0.8 deduped
                                          | | |   `-- mime-types@2.1.25 deduped
                                          | | +-- cookie-parser@1.4.6 deduped
                                          | | `-- passport@0.6.0
                                          | |   +-- passport-strategy@1.0.0 deduped
                                          | |   +-- pause@0.0.1 deduped
                                          | |   `-- utils-merge@1.0.1 deduped
                                          | +-- @iobroker/ws-server@2.1.0
                                          | | `-- ws@8.8.0
                                          | |   +-- UNMET OPTIONAL DEPENDENCY bufferutil@^4.0.1
                                          | |   `-- UNMET OPTIONAL DEPENDENCY utf-8-validate@^5.0.2
                                          | +-- axios@0.27.2
                                          | | +-- follow-redirects@1.15.1
                                          | | `-- form-data@4.0.0
                                          | |   +-- asynckit@0.4.0
                                          | |   +-- combined-stream@1.0.8 deduped
                                          | |   `-- mime-types@2.1.25 deduped
                                          | +-- body-parser@1.20.1
                                          | | +-- bytes@3.1.2
                                          | | +-- content-type@1.0.4
                                          | | +-- debug@2.6.9
                                          | | | `-- ms@2.0.0
                                          | | +-- depd@2.0.0
                                          | | +-- destroy@1.2.0
                                          | | +-- http-errors@2.0.0
                                          | | | +-- depd@2.0.0 deduped
                                          | | | +-- inherits@2.0.4
                                          | | | +-- setprototypeof@1.2.0 deduped
                                          | | | +-- statuses@2.0.1 deduped
                                          | | | `-- toidentifier@1.0.1
                                          | | +-- iconv-lite@0.4.24
                                          | | | `-- safer-buffer@2.1.2 deduped
                                          | | +-- on-finished@2.4.1
                                          | | | `-- ee-first@1.1.1
                                          | | +-- qs@6.11.0
                                          | | | `-- side-channel@1.0.4 deduped
                                          | | +-- raw-body@2.5.1
                                          | | | +-- bytes@3.1.2 deduped
                                          | | | +-- http-errors@2.0.0 deduped
                                          | | | +-- iconv-lite@0.4.24 deduped
                                          | | | `-- unpipe@1.0.0 deduped
                                          | | +-- type-is@1.6.18
                                          | | | +-- media-typer@0.3.0
                                          | | | `-- mime-types@2.1.25 deduped
                                          | | `-- unpipe@1.0.0
                                          | +-- compression@1.7.4
                                          | | +-- accepts@1.3.8
                                          | | | +-- mime-types@2.1.35
                                          | | | | `-- mime-db@1.52.0
                                          | | | `-- negotiator@0.6.3
                                          | | +-- bytes@3.0.0
                                          | | +-- compressible@2.0.18
                                          | | | `-- mime-db@1.52.0
                                          | | +-- debug@2.6.9 deduped
                                          | | +-- on-headers@1.0.2
                                          | | +-- safe-buffer@5.1.2
                                          | | `-- vary@1.1.2
                                          | +-- connect-flash@0.1.1
                                          | +-- cookie-parser@1.4.6
                                          | | +-- cookie-signature@1.0.6
                                          | | `-- cookie@0.4.1
                                          | +-- express-fileupload@1.4.0
                                          | | `-- busboy@1.6.0
                                          | |   `-- streamsearch@1.1.0
                                          | +-- express-session@1.17.3
                                          | | +-- cookie-signature@1.0.6 deduped
                                          | | +-- cookie@0.4.2
                                          | | +-- debug@2.6.9 deduped
                                          | | +-- depd@2.0.0 deduped
                                          | | +-- on-headers@1.0.2 deduped
                                          | | +-- parseurl@1.3.3
                                          | | +-- safe-buffer@5.2.1
                                          | | `-- uid-safe@2.1.5
                                          | |   `-- random-bytes@1.0.0
                                          | +-- express@4.18.2
                                          | | +-- accepts@1.3.8 deduped
                                          | | +-- array-flatten@1.1.1
                                          | | +-- body-parser@1.20.1 deduped
                                          | | +-- content-disposition@0.5.4
                                          | | | `-- safe-buffer@5.2.1
                                          | | +-- content-type@1.0.4 deduped
                                          | | +-- cookie-signature@1.0.6 deduped
                                          | | +-- cookie@0.5.0
                                          | | +-- debug@2.6.9 deduped
                                          | | +-- depd@2.0.0 deduped
                                          | | +-- encodeurl@1.0.2
                                          | | +-- escape-html@1.0.3
                                          | | +-- etag@1.8.1
                                          | | +-- finalhandler@1.2.0
                                          | | | +-- debug@2.6.9 deduped
                                          | | | +-- encodeurl@1.0.2 deduped
                                          | | | +-- escape-html@1.0.3 deduped
                                          | | | +-- on-finished@2.4.1 deduped
                                          | | | +-- parseurl@1.3.3 deduped
                                          | | | +-- statuses@2.0.1 deduped
                                          | | | `-- unpipe@1.0.0 deduped
                                          | | +-- fresh@0.5.2
                                          | | +-- http-errors@2.0.0 deduped
                                          | | +-- merge-descriptors@1.0.1
                                          | | +-- methods@1.1.2
                                          | | +-- on-finished@2.4.1 deduped
                                          | | +-- parseurl@1.3.3 deduped
                                          | | +-- path-to-regexp@0.1.7
                                          | | +-- proxy-addr@2.0.7
                                          | | | +-- forwarded@0.2.0
                                          | | | `-- ipaddr.js@1.9.1
                                          | | +-- qs@6.11.0 deduped
                                          | | +-- range-parser@1.2.1
                                          | | +-- safe-buffer@5.2.1
                                          | | +-- send@0.18.0
                                          | | | +-- debug@2.6.9 deduped
                                          | | | +-- depd@2.0.0 deduped
                                          | | | +-- destroy@1.2.0 deduped
                                          | | | +-- encodeurl@1.0.2 deduped
                                          | | | +-- escape-html@1.0.3 deduped
                                          | | | +-- etag@1.8.1 deduped
                                          | | | +-- fresh@0.5.2 deduped
                                          | | | +-- http-errors@2.0.0 deduped
                                          | | | +-- mime@1.6.0 deduped
                                          | | | +-- ms@2.1.3
                                          | | | +-- on-finished@2.4.1 deduped
                                          | | | +-- range-parser@1.2.1 deduped
                                          | | | `-- statuses@2.0.1 deduped
                                          | | +-- serve-static@1.15.0
                                          | | | +-- encodeurl@1.0.2 deduped
                                          | | | +-- escape-html@1.0.3 deduped
                                          | | | +-- parseurl@1.3.3 deduped
                                          | | | `-- send@0.18.0 deduped
                                          | | +-- setprototypeof@1.2.0
                                          | | +-- statuses@2.0.1
                                          | | +-- type-is@1.6.18 deduped
                                          | | +-- utils-merge@1.0.1
                                          | | `-- vary@1.1.2 deduped
                                          | +-- mime@3.0.0
                                          | +-- passport-local@1.0.0
                                          | | `-- passport-strategy@1.0.0
                                          | +-- passport@0.6.0
                                          | | +-- passport-strategy@1.0.0 deduped
                                          | | +-- pause@0.0.1
                                          | | `-- utils-merge@1.0.1 deduped
                                          | +-- semver@7.3.8
                                          | | `-- lru-cache@6.0.0
                                          | |   `-- yallist@4.0.0 deduped
                                          | `-- ws@8.12.0
                                          |   +-- UNMET OPTIONAL DEPENDENCY bufferutil@^4.0.1
                                          |   `-- UNMET OPTIONAL DEPENDENCY utf-8-validate@>=5.0.2
                                          +-- iobroker.alexa2@3.11.2
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- @sentry/integrations@6.19.7
                                          | | +-- @sentry/types@6.19.7
                                          | | +-- @sentry/utils@6.19.7
                                          | | | +-- @sentry/types@6.19.7 deduped
                                          | | | `-- tslib@1.14.1 deduped
                                          | | +-- localforage@1.10.0
                                          | | | `-- lie@3.1.1
                                          | | |   `-- immediate@3.0.6 deduped
                                          | | `-- tslib@1.14.1
                                          | +-- @sentry/node@6.19.7
                                          | | +-- @sentry/core@6.19.7
                                          | | | +-- @sentry/hub@6.19.7 deduped
                                          | | | +-- @sentry/minimal@6.19.7 deduped
                                          | | | +-- @sentry/types@6.19.7 deduped
                                          | | | +-- @sentry/utils@6.19.7 deduped
                                          | | | `-- tslib@1.14.1 deduped
                                          | | +-- @sentry/hub@6.19.7
                                          | | | +-- @sentry/types@6.19.7 deduped
                                          | | | +-- @sentry/utils@6.19.7 deduped
                                          | | | `-- tslib@1.14.1 deduped
                                          | | +-- @sentry/types@6.19.7 deduped
                                          | | +-- @sentry/utils@6.19.7 deduped
                                          | | +-- cookie@0.4.2
                                          | | +-- https-proxy-agent@5.0.1
                                          | | | +-- agent-base@6.0.2 deduped
                                          | | | `-- debug@4.3.4
                                          | | |   `-- ms@2.1.2
                                          | | +-- lru_map@0.3.3
                                          | | `-- tslib@1.14.1 deduped
                                          | +-- alexa-remote2@4.1.2
                                          | | +-- alexa-cookie2@4.0.3
                                          | | | +-- cookie@0.5.0
                                          | | | +-- express@4.18.1 deduped
                                          | | | +-- http-proxy-middleware@2.0.6
                                          | | | | +-- UNMET OPTIONAL DEPENDENCY @types/express@^4.17.13
                                          | | | | +-- @types/http-proxy@1.17.9
                                          | | | | | `-- @types/node@12.20.55 deduped
                                          | | | | +-- http-proxy@1.18.1
                                          | | | | | +-- eventemitter3@4.0.7
                                          | | | | | +-- follow-redirects@1.15.1 deduped
                                          | | | | | `-- requires-port@1.0.0 deduped
                                          | | | | +-- is-glob@4.0.3 deduped
                                          | | | | +-- is-plain-obj@3.0.0
                                          | | | | `-- micromatch@4.0.5
                                          | | | |   +-- braces@3.0.2 deduped
                                          | | | |   `-- picomatch@2.3.1 deduped
                                          | | | +-- http-proxy-response-rewrite@0.0.1
                                          | | | | +-- bufferhelper@0.2.1
                                          | | | | `-- concat-stream@1.6.2
                                          | | | |   +-- buffer-from@1.1.2 deduped
                                          | | | |   +-- inherits@2.0.3 deduped
                                          | | | |   +-- readable-stream@2.3.6 deduped
                                          | | | |   `-- typedarray@0.0.6 deduped
                                          | | | +-- https@1.0.0 deduped
                                          | | | `-- querystring@0.2.1 deduped
                                          | | +-- extend@3.0.2
                                          | | +-- https@1.0.0 deduped
                                          | | +-- querystring@0.2.1
                                          | | +-- uuid@8.3.2
                                          | | `-- ws@8.8.0 deduped
                                          | +-- https@1.0.0
                                          | +-- nearest-color@0.4.4
                                          | `-- source-map-support@0.5.21
                                          |   +-- buffer-from@1.1.2
                                          |   `-- source-map@0.6.1
                                          +-- iobroker.backitup@2.4.9
                                          | +-- @googleapis/drive@2.4.0
                                          | | `-- googleapis-common@5.1.0
                                          | |   +-- extend@3.0.2 deduped
                                          | |   +-- gaxios@4.3.3
                                          | |   | +-- abort-controller@3.0.0 deduped
                                          | |   | +-- extend@3.0.2 deduped
                                          | |   | +-- https-proxy-agent@5.0.1 deduped
                                          | |   | +-- is-stream@2.0.1 deduped
                                          | |   | `-- node-fetch@2.6.7 deduped
                                          | |   +-- google-auth-library@7.14.1
                                          | |   | +-- arrify@2.0.1 deduped
                                          | |   | +-- base64-js@1.5.1 deduped
                                          | |   | +-- ecdsa-sig-formatter@1.0.11 deduped
                                          | |   | +-- fast-text-encoding@1.0.4 deduped
                                          | |   | +-- gaxios@4.3.3 deduped
                                          | |   | +-- gcp-metadata@4.3.1
                                          | |   | | +-- gaxios@4.3.3 deduped
                                          | |   | | `-- json-bigint@1.0.0 deduped
                                          | |   | +-- gtoken@5.3.2
                                          | |   | | +-- gaxios@4.3.3 deduped
                                          | |   | | +-- google-p12-pem@3.1.4
                                          | |   | | | `-- node-forge@1.3.1 deduped
                                          | |   | | `-- jws@4.0.0
                                          | |   | |   +-- jwa@2.0.0
                                          | |   | |   | +-- buffer-equal-constant-time@1.0.1 deduped
                                          | |   | |   | +-- ecdsa-sig-formatter@1.0.11 deduped
                                          | |   | |   | `-- safe-buffer@5.1.2 deduped
                                          | |   | |   `-- safe-buffer@5.1.2 deduped
                                          | |   | +-- jws@4.0.0
                                          | |   | | +-- jwa@2.0.0
                                          | |   | | | +-- buffer-equal-constant-time@1.0.1 deduped
                                          | |   | | | +-- ecdsa-sig-formatter@1.0.11 deduped
                                          | |   | | | `-- safe-buffer@5.1.2 deduped
                                          | |   | | `-- safe-buffer@5.1.2 deduped
                                          | |   | `-- lru-cache@6.0.0 deduped
                                          | |   +-- qs@6.10.3 deduped
                                          | |   +-- url-template@2.0.8
                                          | |   `-- uuid@8.3.2
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- axios@0.27.2
                                          | | +-- follow-redirects@1.15.1 deduped
                                          | | `-- form-data@4.0.0
                                          | |   +-- asynckit@0.4.0 deduped
                                          | |   +-- combined-stream@1.0.8 deduped
                                          | |   `-- mime-types@2.1.25 deduped
                                          | +-- dropbox-v2-api@2.5.3
                                          | | `-- request@2.88.2
                                          | |   +-- aws-sign2@0.7.0 deduped
                                          | |   +-- aws4@1.8.0 deduped
                                          | |   +-- caseless@0.12.0 deduped
                                          | |   +-- combined-stream@1.0.8 deduped
                                          | |   +-- extend@3.0.2 deduped
                                          | |   +-- forever-agent@0.6.1 deduped
                                          | |   +-- form-data@2.3.3 deduped
                                          | |   +-- har-validator@5.1.3 deduped
                                          | |   +-- http-signature@1.2.0 deduped
                                          | |   +-- is-typedarray@1.0.0 deduped
                                          | |   +-- isstream@0.1.2 deduped
                                          | |   +-- json-stringify-safe@5.0.1 deduped
                                          | |   +-- mime-types@2.1.25 deduped
                                          | |   +-- oauth-sign@0.9.0 deduped
                                          | |   +-- performance-now@2.1.0 deduped
                                          | |   +-- qs@6.5.3
                                          | |   +-- safe-buffer@5.1.2 deduped
                                          | |   +-- tough-cookie@2.5.0
                                          | |   | +-- psl@1.4.0 deduped
                                          | |   | `-- punycode@2.1.1 deduped
                                          | |   +-- tunnel-agent@0.6.0 deduped
                                          | |   `-- uuid@3.3.3 deduped
                                          | +-- express@4.18.1
                                          | | +-- accepts@1.3.8 deduped
                                          | | +-- array-flatten@1.1.1 deduped
                                          | | +-- body-parser@1.20.0 deduped
                                          | | +-- content-disposition@0.5.4 deduped
                                          | | +-- content-type@1.0.4 deduped
                                          | | +-- cookie-signature@1.0.6 deduped
                                          | | +-- cookie@0.5.0
                                          | | +-- debug@2.6.9 deduped
                                          | | +-- depd@2.0.0 deduped
                                          | | +-- encodeurl@1.0.2 deduped
                                          | | +-- escape-html@1.0.3 deduped
                                          | | +-- etag@1.8.1 deduped
                                          | | +-- finalhandler@1.2.0 deduped
                                          | | +-- fresh@0.5.2 deduped
                                          | | +-- http-errors@2.0.0 deduped
                                          | | +-- merge-descriptors@1.0.1 deduped
                                          | | +-- methods@1.1.2 deduped
                                          | | +-- on-finished@2.4.1 deduped
                                          | | +-- parseurl@1.3.3 deduped
                                          | | +-- path-to-regexp@0.1.7 deduped
                                          | | +-- proxy-addr@2.0.7 deduped
                                          | | +-- qs@6.10.3
                                          | | | `-- side-channel@1.0.4 deduped
                                          | | +-- range-parser@1.2.1 deduped
                                          | | +-- safe-buffer@5.2.1
                                          | | +-- send@0.18.0 deduped
                                          | | +-- serve-static@1.15.0 deduped
                                          | | +-- setprototypeof@1.2.0 deduped
                                          | | +-- statuses@2.0.1 deduped
                                          | | +-- type-is@1.6.18 deduped
                                          | | +-- utils-merge@1.0.1 deduped
                                          | | `-- vary@1.1.2 deduped
                                          | +-- fs-extra@10.1.0
                                          | | +-- graceful-fs@4.2.3 deduped
                                          | | +-- jsonfile@6.1.0
                                          | | | +-- graceful-fs@4.2.3 deduped
                                          | | | `-- universalify@2.0.0 deduped
                                          | | `-- universalify@2.0.0
                                          | +-- ftp@0.3.10
                                          | | +-- readable-stream@1.1.14
                                          | | | +-- core-util-is@1.0.2
                                          | | | +-- inherits@2.0.3 deduped
                                          | | | +-- isarray@0.0.1
                                          | | | `-- string_decoder@0.10.31
                                          | | `-- xregexp@2.0.0
                                          | +-- google-auth-library@8.1.0
                                          | | +-- arrify@2.0.1
                                          | | +-- base64-js@1.5.1
                                          | | +-- ecdsa-sig-formatter@1.0.11
                                          | | | `-- safe-buffer@5.1.2 deduped
                                          | | +-- fast-text-encoding@1.0.4
                                          | | +-- gaxios@5.0.0
                                          | | | +-- abort-controller@3.0.0
                                          | | | | `-- event-target-shim@5.0.1
                                          | | | +-- extend@3.0.2 deduped
                                          | | | +-- https-proxy-agent@5.0.1 deduped
                                          | | | +-- is-stream@2.0.1
                                          | | | `-- node-fetch@2.6.7
                                          | | |   +-- UNMET OPTIONAL DEPENDENCY encoding@^0.1.0
                                          | | |   `-- whatwg-url@5.0.0
                                          | | |     +-- tr46@0.0.3
                                          | | |     `-- webidl-conversions@3.0.1
                                          | | +-- gcp-metadata@5.0.0
                                          | | | +-- gaxios@5.0.0 deduped
                                          | | | `-- json-bigint@1.0.0
                                          | | |   `-- bignumber.js@9.0.2
                                          | | +-- gtoken@6.1.0
                                          | | | +-- gaxios@4.3.3
                                          | | | | +-- abort-controller@3.0.0 deduped
                                          | | | | +-- extend@3.0.2 deduped
                                          | | | | +-- https-proxy-agent@5.0.1 deduped
                                          | | | | +-- is-stream@2.0.1 deduped
                                          | | | | `-- node-fetch@2.6.7 deduped
                                          | | | +-- google-p12-pem@4.0.0
                                          | | | | `-- node-forge@1.3.1 deduped
                                          | | | `-- jws@4.0.0 deduped
                                          | | +-- jws@4.0.0
                                          | | | +-- jwa@2.0.0
                                          | | | | +-- buffer-equal-constant-time@1.0.1
                                          | | | | +-- ecdsa-sig-formatter@1.0.11 deduped
                                          | | | | `-- safe-buffer@5.1.2 deduped
                                          | | | `-- safe-buffer@5.1.2 deduped
                                          | | `-- lru-cache@6.0.0 deduped
                                          | +-- node-schedule@2.1.0
                                          | | +-- cron-parser@3.5.0
                                          | | | +-- is-nan@1.3.2
                                          | | | | +-- call-bind@1.0.2 deduped
                                          | | | | `-- define-properties@1.1.4 deduped
                                          | | | `-- luxon@1.28.1 deduped
                                          | | +-- long-timeout@0.1.1
                                          | | `-- sorted-array-functions@1.3.0
                                          | +-- node-wol@0.1.1
                                          | +-- request@2.88.2
                                          | | +-- aws-sign2@0.7.0
                                          | | +-- aws4@1.8.0
                                          | | +-- caseless@0.12.0
                                          | | +-- combined-stream@1.0.8
                                          | | | `-- delayed-stream@1.0.0
                                          | | +-- extend@3.0.2 deduped
                                          | | +-- forever-agent@0.6.1
                                          | | +-- form-data@2.3.3
                                          | | | +-- asynckit@0.4.0 deduped
                                          | | | +-- combined-stream@1.0.8 deduped
                                          | | | `-- mime-types@2.1.25 deduped
                                          | | +-- har-validator@5.1.3
                                          | | | +-- ajv@6.10.2
                                          | | | | +-- fast-deep-equal@2.0.1
                                          | | | | +-- fast-json-stable-stringify@2.0.0
                                          | | | | +-- json-schema-traverse@0.4.1
                                          | | | | `-- uri-js@4.2.2
                                          | | | |   `-- punycode@2.1.1 deduped
                                          | | | `-- har-schema@2.0.0
                                          | | +-- http-signature@1.2.0
                                          | | | +-- assert-plus@1.0.0
                                          | | | +-- jsprim@1.4.2
                                          | | | | +-- assert-plus@1.0.0 deduped
                                          | | | | +-- extsprintf@1.3.0
                                          | | | | +-- json-schema@0.4.0
                                          | | | | `-- verror@1.10.0
                                          | | | |   +-- assert-plus@1.0.0 deduped
                                          | | | |   +-- core-util-is@1.0.2 deduped
                                          | | | |   `-- extsprintf@1.3.0 deduped
                                          | | | `-- sshpk@1.16.1
                                          | | |   +-- asn1@0.2.4
                                          | | |   | `-- safer-buffer@2.1.2 deduped
                                          | | |   +-- assert-plus@1.0.0 deduped
                                          | | |   +-- bcrypt-pbkdf@1.0.2
                                          | | |   | `-- tweetnacl@0.14.5 deduped
                                          | | |   +-- dashdash@1.14.1
                                          | | |   | `-- assert-plus@1.0.0 deduped
                                          | | |   +-- ecc-jsbn@0.1.2
                                          | | |   | +-- jsbn@0.1.1 deduped
                                          | | |   | `-- safer-buffer@2.1.2 deduped
                                          | | |   +-- getpass@0.1.7
                                          | | |   | `-- assert-plus@1.0.0 deduped
                                          | | |   +-- jsbn@0.1.1
                                          | | |   +-- safer-buffer@2.1.2 deduped
                                          | | |   `-- tweetnacl@0.14.5
                                          | | +-- is-typedarray@1.0.0
                                          | | +-- isstream@0.1.2
                                          | | +-- json-stringify-safe@5.0.1
                                          | | +-- mime-types@2.1.25
                                          | | | `-- mime-db@1.42.0
                                          | | +-- oauth-sign@0.9.0
                                          | | +-- performance-now@2.1.0
                                          | | +-- qs@6.5.3
                                          | | +-- safe-buffer@5.1.2 deduped
                                          | | +-- tough-cookie@2.5.0
                                          | | | +-- psl@1.4.0 deduped
                                          | | | `-- punycode@2.1.1 deduped
                                          | | +-- tunnel-agent@0.6.0
                                          | | | `-- safe-buffer@5.1.2 deduped
                                          | | `-- uuid@3.3.3
                                          | +-- tar-fs@2.1.1
                                          | | +-- chownr@1.1.3
                                          | | +-- mkdirp-classic@0.5.3
                                          | | +-- pump@3.0.0
                                          | | | +-- end-of-stream@1.4.4
                                          | | | | `-- once@1.4.0 deduped
                                          | | | `-- once@1.4.0
                                          | | |   `-- wrappy@1.0.2
                                          | | `-- tar-stream@2.2.0
                                          | |   +-- bl@4.1.0
                                          | |   | +-- buffer@5.7.1
                                          | |   | | +-- base64-js@1.5.1 deduped
                                          | |   | | `-- ieee754@1.2.1
                                          | |   | +-- inherits@2.0.4
                                          | |   | `-- readable-stream@3.6.0
                                          | |   |   +-- inherits@2.0.4 deduped
                                          | |   |   +-- string_decoder@1.1.1 deduped
                                          | |   |   `-- util-deprecate@1.0.2 deduped
                                          | |   +-- end-of-stream@1.4.4 deduped
                                          | |   +-- fs-constants@1.0.0
                                          | |   +-- inherits@2.0.3 deduped
                                          | |   `-- readable-stream@3.6.0
                                          | |     +-- inherits@2.0.3 deduped
                                          | |     +-- string_decoder@1.1.1 deduped
                                          | |     `-- util-deprecate@1.0.2 deduped
                                          | `-- webdav@4.10.0
                                          |   +-- axios@0.27.2
                                          |   | +-- follow-redirects@1.15.1 deduped
                                          |   | `-- form-data@4.0.0
                                          |   |   +-- asynckit@0.4.0 deduped
                                          |   |   +-- combined-stream@1.0.8 deduped
                                          |   |   `-- mime-types@2.1.25 deduped
                                          |   +-- base-64@1.0.0
                                          |   +-- byte-length@1.0.2
                                          |   +-- fast-xml-parser@3.21.1
                                          |   | `-- strnum@1.0.5
                                          |   +-- he@1.2.0
                                          |   +-- hot-patcher@0.5.0
                                          |   +-- layerr@0.1.2
                                          |   +-- md5@2.3.0
                                          |   | +-- charenc@0.0.2
                                          |   | +-- crypt@0.0.2
                                          |   | `-- is-buffer@1.1.6
                                          |   +-- minimatch@5.1.0
                                          |   | `-- brace-expansion@2.0.1
                                          |   |   `-- balanced-match@1.0.2
                                          |   +-- nested-property@4.0.0
                                          |   +-- path-posix@1.0.0
                                          |   +-- url-join@4.0.1
                                          |   `-- url-parse@1.5.10 deduped
                                          +-- iobroker.cloud@4.3.1
                                          | +-- @iobroker/adapter-core@2.6.7
                                          | | `-- @types/iobroker@4.0.5
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- @iobroker/socket-classes@1.1.1
                                          | | +-- @iobroker/adapter-core@2.6.7 deduped
                                          | | +-- axios@0.27.2 deduped
                                          | | +-- cookie-parser@1.4.6 deduped
                                          | | `-- passport@0.6.0
                                          | |   +-- passport-strategy@1.0.0 deduped
                                          | |   +-- pause@0.0.1 deduped
                                          | |   `-- utils-merge@1.0.1 deduped
                                          | +-- axios@0.27.2
                                          | | +-- follow-redirects@1.15.1 deduped
                                          | | `-- form-data@4.0.0
                                          | |   +-- asynckit@0.4.0 deduped
                                          | |   +-- combined-stream@1.0.8 deduped
                                          | |   `-- mime-types@2.1.25 deduped
                                          | +-- cookie-parser@1.4.6 deduped
                                          | +-- socket.io-client@1.7.4
                                          | | +-- backo2@1.0.2
                                          | | +-- component-bind@1.0.0
                                          | | +-- component-emitter@1.2.1
                                          | | +-- debug@2.3.3
                                          | | | `-- ms@0.7.2
                                          | | +-- engine.io-client@1.8.6
                                          | | | +-- component-emitter@1.2.1 deduped
                                          | | | +-- component-inherit@0.0.3
                                          | | | +-- debug@2.3.3 deduped
                                          | | | +-- engine.io-parser@1.3.2
                                          | | | | +-- after@0.8.2
                                          | | | | +-- arraybuffer.slice@0.0.6
                                          | | | | +-- base64-arraybuffer@0.1.5
                                          | | | | +-- blob@0.0.4
                                          | | | | +-- has-binary@0.1.7 deduped
                                          | | | | `-- wtf-8@1.0.0
                                          | | | +-- has-cors@1.1.0
                                          | | | +-- indexof@0.0.1 deduped
                                          | | | +-- parsejson@0.0.3
                                          | | | | `-- better-assert@1.0.2 deduped
                                          | | | +-- parseqs@0.0.5
                                          | | | | `-- better-assert@1.0.2 deduped
                                          | | | +-- parseuri@0.0.5 deduped
                                          | | | +-- ws@1.1.5
                                          | | | | +-- options@0.0.6
                                          | | | | `-- ultron@1.0.2
                                          | | | +-- xmlhttprequest-ssl@1.6.3
                                          | | | `-- yeast@0.1.2
                                          | | +-- has-binary@0.1.7
                                          | | | `-- isarray@0.0.1
                                          | | +-- indexof@0.0.1
                                          | | +-- object-component@0.0.3
                                          | | +-- parseuri@0.0.5
                                          | | | `-- better-assert@1.0.2
                                          | | |   `-- callsite@1.0.0 deduped
                                          | | +-- socket.io-parser@2.3.1
                                          | | | +-- component-emitter@1.1.2
                                          | | | +-- debug@2.2.0
                                          | | | | `-- ms@0.7.1
                                          | | | +-- isarray@0.0.1
                                          | | | `-- json3@3.3.2
                                          | | `-- to-array@0.1.4
                                          | `-- ws@8.12.0
                                          |   +-- UNMET OPTIONAL DEPENDENCY bufferutil@^4.0.1
                                          |   `-- UNMET OPTIONAL DEPENDENCY utf-8-validate@>=5.0.2
                                          +-- iobroker.daswetter@3.1.4
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- axios@0.27.2
                                          | | +-- follow-redirects@1.15.1 deduped
                                          | | `-- form-data@4.0.0
                                          | |   +-- asynckit@0.4.0 deduped
                                          | |   +-- combined-stream@1.0.8 deduped
                                          | |   `-- mime-types@2.1.25 deduped
                                          | `-- xml2json-light@1.0.6
                                          +-- iobroker.device-watcher@2.5.0 (git+ssh://git@github.com/ciddi89/ioBroker.device-watcher.git#c2a2c8e70219770dd1e455fc3706cbaca8efa486)
                                          | `-- @iobroker/adapter-core@2.6.7
                                          |   `-- @types/iobroker@4.0.5
                                          |     `-- @types/node@12.20.55 deduped
                                          +-- iobroker.discovery@3.0.5
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- mdns-discovery@0.2.6
                                          | | +-- debug@2.2.0
                                          | | | `-- ms@0.7.1
                                          | | +-- dgram@1.0.1
                                          | | `-- dns-packet@1.3.4
                                          | |   +-- ip@1.1.5 deduped
                                          | |   `-- safe-buffer@5.1.2 deduped
                                          | +-- netmask@2.0.2
                                          | +-- node-mndp@0.0.3
                                          | +-- node-ssdp@4.0.1
                                          | | +-- async@2.6.4
                                          | | | `-- lodash@4.17.21 deduped
                                          | | +-- bluebird@3.7.1
                                          | | +-- debug@3.2.7
                                          | | | `-- ms@2.1.3
                                          | | +-- extend@3.0.2 deduped
                                          | | `-- ip@1.1.5
                                          | `-- serialport@10.4.0
                                          |   +-- @serialport/binding-mock@10.2.2
                                          |   | +-- @serialport/bindings-interface@1.2.2
                                          |   | `-- debug@4.3.4
                                          |   |   `-- ms@2.1.2
                                          |   +-- @serialport/bindings-cpp@10.7.0
                                          |   | +-- @serialport/bindings-interface@1.2.1
                                          |   | +-- @serialport/parser-readline@10.3.0 deduped
                                          |   | +-- debug@4.3.4
                                          |   | | `-- ms@2.1.2
                                          |   | +-- node-addon-api@4.3.0
                                          |   | `-- node-gyp-build@4.5.0
                                          |   +-- @serialport/parser-byte-length@10.3.0
                                          |   +-- @serialport/parser-cctalk@10.3.0
                                          |   +-- @serialport/parser-delimiter@10.3.0
                                          |   +-- @serialport/parser-inter-byte-timeout@10.3.0
                                          |   +-- @serialport/parser-packet-length@10.3.0
                                          |   +-- @serialport/parser-readline@10.3.0
                                          |   | `-- @serialport/parser-delimiter@10.3.0 deduped
                                          |   +-- @serialport/parser-ready@10.3.0
                                          |   +-- @serialport/parser-regex@10.3.0
                                          |   +-- @serialport/parser-slip-encoder@10.3.0
                                          |   +-- @serialport/parser-spacepacket@10.3.0
                                          |   +-- @serialport/stream@10.3.0
                                          |   | +-- @serialport/bindings-interface@1.2.1
                                          |   | `-- debug@4.3.4
                                          |   |   `-- ms@2.1.2
                                          |   `-- debug@4.3.4
                                          |     `-- ms@2.1.2
                                          +-- iobroker.email@1.1.3
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | `-- nodemailer@6.7.6
                                          +-- iobroker.feiertage@1.1.0
                                          | `-- @iobroker/adapter-core@2.6.0
                                          |   `-- @types/iobroker@4.0.4
                                          |     `-- @types/node@12.20.55 deduped
                                          +-- iobroker.flot@1.10.7
                                          | `-- @iobroker/adapter-core@2.6.0
                                          |   `-- @types/iobroker@4.0.4
                                          |     `-- @types/node@12.20.55 deduped
                                          +-- iobroker.fronius@1.1.6 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.fronius.git#c644a95d480403a1ef277e822df6232ffc66daf5)
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | `-- request@2.88.2
                                          |   +-- aws-sign2@0.7.0 deduped
                                          |   +-- aws4@1.8.0 deduped
                                          |   +-- caseless@0.12.0 deduped
                                          |   +-- combined-stream@1.0.8 deduped
                                          |   +-- extend@3.0.2 deduped
                                          |   +-- forever-agent@0.6.1 deduped
                                          |   +-- form-data@2.3.3
                                          |   | +-- asynckit@0.4.0 deduped
                                          |   | +-- combined-stream@1.0.8 deduped
                                          |   | `-- mime-types@2.1.25 deduped
                                          |   +-- har-validator@5.1.3 deduped
                                          |   +-- http-signature@1.2.0 deduped
                                          |   +-- is-typedarray@1.0.0 deduped
                                          |   +-- isstream@0.1.2 deduped
                                          |   +-- json-stringify-safe@5.0.1 deduped
                                          |   +-- mime-types@2.1.25 deduped
                                          |   +-- oauth-sign@0.9.0 deduped
                                          |   +-- performance-now@2.1.0 deduped
                                          |   +-- qs@6.5.3
                                          |   +-- safe-buffer@5.1.2 deduped
                                          |   +-- tough-cookie@2.5.0
                                          |   | +-- psl@1.4.0 deduped
                                          |   | `-- punycode@2.1.1 deduped
                                          |   +-- tunnel-agent@0.6.0 deduped
                                          |   `-- uuid@3.3.3 deduped
                                          +-- iobroker.go-e@1.0.25 (git+ssh://git@github.com/MK-2001/ioBroker.go-e.git#9dc5bf0217da59ff189d496682808d77f978850e)
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- @sentry/node@6.19.7 deduped
                                          | +-- @sentry/tracing@6.19.7
                                          | | +-- @sentry/hub@6.19.7 deduped
                                          | | +-- @sentry/minimal@6.19.7
                                          | | | +-- @sentry/hub@6.19.7 deduped
                                          | | | +-- @sentry/types@6.19.7 deduped
                                          | | | `-- tslib@1.14.1 deduped
                                          | | +-- @sentry/types@6.19.7 deduped
                                          | | +-- @sentry/utils@6.19.7 deduped
                                          | | `-- tslib@1.14.1 deduped
                                          | +-- axios@0.26.1
                                          | | `-- follow-redirects@1.15.1 deduped
                                          | +-- joi@17.6.0
                                          | | +-- @hapi/hoek@9.3.0
                                          | | +-- @hapi/topo@5.1.0
                                          | | | `-- @hapi/hoek@9.3.0 deduped
                                          | | +-- @sideway/address@4.1.4
                                          | | | `-- @hapi/hoek@9.3.0 deduped
                                          | | +-- @sideway/formula@3.0.1
                                          | | `-- @sideway/pinpoint@2.0.0
                                          | `-- p-queue@6.6.2
                                          |   +-- eventemitter3@4.0.7
                                          |   `-- p-timeout@3.2.0
                                          |     `-- p-finally@1.0.0
                                          +-- iobroker.google-sharedlocations@2.1.4 (git+ssh://git@github.com/Garfonso/ioBroker.google-sharedlocations.git#018220f3aa3abacc7cf51608006f92a7f10f6442)
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | `-- axios@0.21.4
                                          |   `-- follow-redirects@1.15.1 deduped
                                          +-- iobroker.harmony@1.2.2
                                          | +-- @harmonyhub/discover@1.0.9
                                          | | +-- autobind-decorator@2.4.0
                                          | | `-- debug@4.3.4
                                          | |   `-- ms@2.1.2
                                          | +-- @iobroker/adapter-core@1.0.3
                                          | | `-- @types/iobroker@1.4.13
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- harmonyhubws@1.0.6
                                          | | +-- request-promise-native@1.0.9
                                          | | | +-- request-promise-core@1.1.4 deduped
                                          | | | +-- request@2.88.0 deduped
                                          | | | +-- stealthy-require@1.1.1 deduped
                                          | | | `-- tough-cookie@2.5.0
                                          | | |   +-- psl@1.4.0 deduped
                                          | | |   `-- punycode@2.1.1 deduped
                                          | | +-- request@2.88.0
                                          | | | +-- aws-sign2@0.7.0 deduped
                                          | | | +-- aws4@1.8.0 deduped
                                          | | | +-- caseless@0.12.0 deduped
                                          | | | +-- combined-stream@1.0.8 deduped
                                          | | | +-- extend@3.0.2 deduped
                                          | | | +-- forever-agent@0.6.1 deduped
                                          | | | +-- form-data@2.3.3 deduped
                                          | | | +-- har-validator@5.1.3 deduped
                                          | | | +-- http-signature@1.2.0 deduped
                                          | | | +-- is-typedarray@1.0.0 deduped
                                          | | | +-- isstream@0.1.2 deduped
                                          | | | +-- json-stringify-safe@5.0.1 deduped
                                          | | | +-- mime-types@2.1.25 deduped
                                          | | | +-- oauth-sign@0.9.0 deduped
                                          | | | +-- performance-now@2.1.0 deduped
                                          | | | +-- qs@6.5.2
                                          | | | +-- safe-buffer@5.1.2 deduped
                                          | | | +-- tough-cookie@2.4.3
                                          | | | | +-- psl@1.4.0 deduped
                                          | | | | `-- punycode@1.4.1
                                          | | | +-- tunnel-agent@0.6.0 deduped
                                          | | | `-- uuid@3.3.3 deduped
                                          | | +-- semver@5.7.1 deduped
                                          | | `-- ws@6.2.2
                                          | |   `-- async-limiter@1.0.1
                                          | `-- semaphore@1.0.5
                                          +-- iobroker.history@1.11.1
                                          | `-- @iobroker/adapter-core@2.6.0
                                          |   `-- @types/iobroker@4.0.4
                                          |     `-- @types/node@12.20.55 deduped
                                          +-- iobroker.hm-rega@3.0.40
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- iconv-lite@0.6.3
                                          | | `-- safer-buffer@2.1.2
                                          | +-- request@2.88.2
                                          | | +-- aws-sign2@0.7.0 deduped
                                          | | +-- aws4@1.8.0 deduped
                                          | | +-- caseless@0.12.0 deduped
                                          | | +-- combined-stream@1.0.8 deduped
                                          | | +-- extend@3.0.2 deduped
                                          | | +-- forever-agent@0.6.1 deduped
                                          | | +-- form-data@2.3.3 deduped
                                          | | +-- har-validator@5.1.3 deduped
                                          | | +-- http-signature@1.2.0 deduped
                                          | | +-- is-typedarray@1.0.0 deduped
                                          | | +-- isstream@0.1.2 deduped
                                          | | +-- json-stringify-safe@5.0.1 deduped
                                          | | +-- mime-types@2.1.25 deduped
                                          | | +-- oauth-sign@0.9.0 deduped
                                          | | +-- performance-now@2.1.0 deduped
                                          | | +-- qs@6.5.3
                                          | | +-- safe-buffer@5.1.2 deduped
                                          | | +-- tough-cookie@2.5.0
                                          | | | +-- psl@1.4.0 deduped
                                          | | | `-- punycode@2.1.1 deduped
                                          | | +-- tunnel-agent@0.6.0 deduped
                                          | | `-- uuid@3.3.3 deduped
                                          | `-- xml2js@0.4.23
                                          |   +-- sax@1.2.4
                                          |   `-- xmlbuilder@11.0.1
                                          +-- iobroker.hm-rpc@1.15.12
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- binrpc@3.3.1
                                          | | +-- binary@0.3.0
                                          | | | +-- buffers@0.1.1
                                          | | | `-- chainsaw@0.1.0
                                          | | |   `-- traverse@0.3.9
                                          | | `-- put@0.0.6
                                          | `-- homematic-xmlrpc@1.0.2
                                          |   +-- sax@0.4.3
                                          |   `-- xmlbuilder@0.4.2
                                          +-- iobroker.homeconnect@1.1.0
                                          | +-- @iobroker/adapter-core@2.6.7
                                          | | `-- @types/iobroker@4.0.5
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- axios-rate-limit@1.3.0
                                          | | `-- axios@0.26.1 deduped
                                          | +-- axios@0.27.2
                                          | | +-- follow-redirects@1.15.1 deduped
                                          | | `-- form-data@4.0.0
                                          | |   +-- asynckit@0.4.0 deduped
                                          | |   +-- combined-stream@1.0.8 deduped
                                          | |   `-- mime-types@2.1.25 deduped
                                          | +-- eventsource@2.0.2
                                          | +-- http-cookie-agent@4.0.2
                                          | | +-- agent-base@6.0.2 deduped
                                          | | +-- UNMET OPTIONAL DEPENDENCY deasync@^0.1.26
                                          | | +-- tough-cookie@4.1.2 deduped
                                          | | `-- UNMET OPTIONAL DEPENDENCY undici@^5.1.1
                                          | +-- qs@6.11.0
                                          | | `-- side-channel@1.0.4
                                          | |   +-- call-bind@1.0.2
                                          | |   | +-- function-bind@1.1.1
                                          | |   | `-- get-intrinsic@1.1.2 deduped
                                          | |   +-- get-intrinsic@1.1.2
                                          | |   | +-- function-bind@1.1.1 deduped
                                          | |   | +-- has-symbols@1.0.3 deduped
                                          | |   | `-- has@1.0.3 deduped
                                          | |   `-- object-inspect@1.12.2
                                          | `-- tough-cookie@4.1.2 deduped
                                          +-- iobroker.ical@1.13.1 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.ical.git#a2b6a7c9cb7ccc9fa8b9b377bdbf9825e6e4f5f5)
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- axios@0.27.2
                                          | | +-- follow-redirects@1.15.1 deduped
                                          | | `-- form-data@4.0.0
                                          | |   +-- asynckit@0.4.0 deduped
                                          | |   +-- combined-stream@1.0.8 deduped
                                          | |   `-- mime-types@2.1.25 deduped
                                          | +-- cloneextend@0.0.3
                                          | +-- json-schema@0.4.0
                                          | +-- node-ical@0.15.1
                                          | | +-- axios@0.26.1 deduped
                                          | | +-- moment-timezone@0.5.40
                                          | | | `-- moment@2.29.4
                                          | | +-- rrule@2.6.4
                                          | | | +-- luxon@1.28.1 deduped
                                          | | | `-- tslib@1.14.1 deduped
                                          | | `-- uuid@8.3.2
                                          | `-- rrule@2.6.9
                                          |   +-- luxon@1.28.1
                                          |   `-- tslib@1.14.1 deduped
                                          +-- iobroker.icons-mfd-svg@1.1.0
                                          | `-- @iobroker/adapter-core@2.6.0
                                          |   `-- @types/iobroker@4.0.4
                                          |     `-- @types/node@12.20.55 deduped
                                          +-- iobroker.info@1.9.19
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- axios@0.26.1 deduped
                                          | +-- jshashes@1.0.8
                                          | +-- osx-temperature-sensor@1.0.7
                                          | +-- semver@7.3.7
                                          | | `-- lru-cache@6.0.0 deduped
                                          | `-- systeminformation@5.11.22
                                          +-- iobroker.javascript@5.7.0
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@14.18.21 deduped invalid: "^12.20.50" from node_modules/iobroker.javascript
                                          | +-- @types/node@14.18.21 invalid: "^12.20.50" from node_modules/iobroker.javascript
                                          | +-- @types/request@2.48.8
                                          | | +-- @types/caseless@0.12.2
                                          | | +-- @types/node@12.20.55
                                          | | +-- @types/tough-cookie@4.0.2
                                          | | `-- form-data@2.5.1
                                          | |   +-- asynckit@0.4.0 deduped
                                          | |   +-- combined-stream@1.0.8 deduped
                                          | |   `-- mime-types@2.1.25 deduped
                                          | +-- coffee-compiler@0.3.2
                                          | | `-- coffee-script@1.12.7 deduped
                                          | +-- coffee-script@1.12.7
                                          | +-- jsonata@1.8.6
                                          | +-- jszip@3.10.0
                                          | | +-- lie@3.3.0
                                          | | | `-- immediate@3.0.6
                                          | | +-- pako@1.0.11
                                          | | +-- readable-stream@2.3.6
                                          | | | +-- core-util-is@1.0.2 deduped
                                          | | | +-- inherits@2.0.3 deduped
                                          | | | +-- isarray@1.0.0
                                          | | | +-- process-nextick-args@2.0.1
                                          | | | +-- safe-buffer@5.1.2 deduped
                                          | | | +-- string_decoder@1.1.1
                                          | | | | `-- safe-buffer@5.1.2 deduped
                                          | | | `-- util-deprecate@1.0.2
                                          | | `-- setimmediate@1.0.5
                                          | +-- node-inspect@2.0.0
                                          | +-- node-schedule@2.1.0 deduped
                                          | +-- request@2.88.2
                                          | | +-- aws-sign2@0.7.0 deduped
                                          | | +-- aws4@1.8.0 deduped
                                          | | +-- caseless@0.12.0 deduped
                                          | | +-- combined-stream@1.0.8 deduped
                                          | | +-- extend@3.0.2 deduped
                                          | | +-- forever-agent@0.6.1 deduped
                                          | | +-- form-data@2.3.3 deduped
                                          | | +-- har-validator@5.1.3 deduped
                                          | | +-- http-signature@1.2.0 deduped
                                          | | +-- is-typedarray@1.0.0 deduped
                                          | | +-- isstream@0.1.2 deduped
                                          | | +-- json-stringify-safe@5.0.1 deduped
                                          | | +-- mime-types@2.1.25 deduped
                                          | | +-- oauth-sign@0.9.0 deduped
                                          | | +-- performance-now@2.1.0 deduped
                                          | | +-- qs@6.5.3
                                          | | +-- safe-buffer@5.1.2 deduped
                                          | | +-- tough-cookie@2.5.0
                                          | | | +-- psl@1.4.0 deduped
                                          | | | `-- punycode@2.1.1 deduped
                                          | | +-- tunnel-agent@0.6.0 deduped
                                          | | `-- uuid@3.3.3 deduped
                                          | +-- semver@7.3.7
                                          | | `-- lru-cache@6.0.0 deduped
                                          | +-- suncalc2@1.8.1
                                          | +-- typescript@4.7.4
                                          | +-- virtual-tsc@0.6.2
                                          | | +-- @types/node@12.20.55 deduped
                                          | | +-- debug@4.3.4
                                          | | | `-- ms@2.1.2
                                          | | +-- picocolors@1.0.0
                                          | | `-- typescript@4.7.4 deduped
                                          | +-- vm2@3.9.14
                                          | | +-- acorn-walk@8.2.0
                                          | | `-- acorn@8.7.1
                                          | `-- wake_on_lan@1.0.0
                                          |   `-- minimist@1.2.8
                                          +-- iobroker.js-controller@4.0.23
                                          | +-- @alcalzone/esbuild-register@2.5.1-1
                                          | | +-- esbuild@0.11.23
                                          | | `-- jsonc-parser@3.0.0
                                          | +-- @iobroker/db-objects-file@4.0.23
                                          | | +-- @iobroker/db-base@4.0.23
                                          | | | +-- @iobroker/js-controller-common@4.0.23 deduped
                                          | | | +-- deep-clone@3.0.3 deduped
                                          | | | +-- fs-extra@10.1.0
                                          | | | | +-- graceful-fs@4.2.3 deduped
                                          | | | | +-- jsonfile@6.1.0
                                          | | | | | +-- graceful-fs@4.2.3 deduped
                                          | | | | | `-- universalify@2.0.0 deduped
                                          | | | | `-- universalify@2.0.0
                                          | | | `-- respjs@4.2.0
                                          | | +-- @iobroker/db-objects-redis@4.0.23 deduped
                                          | | +-- deep-clone@3.0.3 deduped
                                          | | `-- fs-extra@10.1.0
                                          | |   +-- graceful-fs@4.2.3 deduped
                                          | |   +-- jsonfile@6.1.0
                                          | |   | +-- graceful-fs@4.2.3 deduped
                                          | |   | `-- universalify@2.0.0 deduped
                                          | |   `-- universalify@2.0.0
                                          | +-- @iobroker/db-objects-jsonl@4.0.23
                                          | | +-- @alcalzone/jsonl-db@2.5.2
                                          | | | +-- alcalzone-shared@4.0.1
                                          | | | | `-- debug@4.3.4
                                          | | | |   `-- ms@2.1.2
                                          | | | +-- fs-extra@10.1.0
                                          | | | | +-- graceful-fs@4.2.3 deduped
                                          | | | | +-- jsonfile@6.1.0
                                          | | | | | +-- graceful-fs@4.2.3 deduped
                                          | | | | | `-- universalify@2.0.0 deduped
                                          | | | | `-- universalify@2.0.0
                                          | | | `-- proper-lockfile@4.1.2
                                          | | |   +-- graceful-fs@4.2.10
                                          | | |   +-- retry@0.12.0
                                          | | |   `-- signal-exit@3.0.2
                                          | | +-- @iobroker/db-base@4.0.23 deduped
                                          | | +-- @iobroker/db-objects-file@4.0.23 deduped
                                          | | +-- @iobroker/db-objects-redis@4.0.23 deduped
                                          | | +-- deep-clone@3.0.3 deduped
                                          | | `-- fs-extra@10.1.0
                                          | |   +-- graceful-fs@4.2.3 deduped
                                          | |   +-- jsonfile@6.1.0
                                          | |   | +-- graceful-fs@4.2.3 deduped
                                          | |   | `-- universalify@2.0.0 deduped
                                          | |   `-- universalify@2.0.0
                                          | +-- @iobroker/db-objects-redis@4.0.23
                                          | | +-- @iobroker/db-base@4.0.23 deduped
                                          | | +-- deep-clone@3.0.3 deduped
                                          | | +-- ioredis@4.28.5
                                          | | | +-- cluster-key-slot@1.1.0
                                          | | | +-- debug@4.3.4
                                          | | | | `-- ms@2.1.2
                                          | | | +-- denque@1.5.1
                                          | | | +-- lodash.defaults@4.2.0
                                          | | | +-- lodash.flatten@4.4.0
                                          | | | +-- lodash.isarguments@3.1.0
                                          | | | +-- p-map@2.1.0
                                          | | | +-- redis-commands@1.7.0
                                          | | | +-- redis-errors@1.2.0
                                          | | | +-- redis-parser@3.0.0
                                          | | | | `-- redis-errors@1.2.0 deduped
                                          | | | `-- standard-as-callback@2.1.0
                                          | | +-- node.extend@2.0.2
                                          | | | +-- has@1.0.3
                                          | | | | `-- function-bind@1.1.1 deduped
                                          | | | `-- is@3.3.0
                                          | | `-- semver@7.3.7
                                          | |   `-- lru-cache@6.0.0 deduped
                                          | +-- @iobroker/db-states-file@4.0.23
                                          | | +-- @iobroker/db-base@4.0.23 deduped
                                          | | `-- @iobroker/db-states-redis@4.0.23 deduped
                                          | +-- @iobroker/db-states-jsonl@4.0.23
                                          | | +-- @alcalzone/jsonl-db@2.5.2 deduped
                                          | | +-- @iobroker/db-base@4.0.23 deduped
                                          | | +-- @iobroker/db-states-file@4.0.23 deduped
                                          | | `-- @iobroker/db-states-redis@4.0.23 deduped
                                          | +-- @iobroker/db-states-redis@4.0.23
                                          | | +-- @iobroker/db-base@4.0.23 deduped
                                          | | `-- ioredis@4.28.5 deduped
                                          | +-- @iobroker/js-controller-adapter@4.0.23
                                          | | +-- @alcalzone/pak@0.7.0
                                          | | | +-- axios@0.21.4
                                          | | | | `-- follow-redirects@1.15.1 deduped
                                          | | | +-- execa@5.1.1
                                          | | | | +-- cross-spawn@7.0.3
                                          | | | | | +-- path-key@3.1.1
                                          | | | | | +-- shebang-command@2.0.0
                                          | | | | | | `-- shebang-regex@3.0.0
                                          | | | | | `-- which@2.0.2
                                          | | | | |   `-- isexe@2.0.0
                                          | | | | +-- get-stream@6.0.1
                                          | | | | +-- human-signals@2.1.0
                                          | | | | +-- is-stream@2.0.1 deduped
                                          | | | | +-- merge-stream@2.0.0
                                          | | | | +-- npm-run-path@4.0.1
                                          | | | | | `-- path-key@3.1.1 deduped
                                          | | | | +-- onetime@5.1.2
                                          | | | | | `-- mimic-fn@2.1.0
                                          | | | | +-- signal-exit@3.0.7
                                          | | | | `-- strip-final-newline@2.0.0
                                          | | | `-- fs-extra@9.1.0
                                          | | |   +-- at-least-node@1.0.0
                                          | | |   +-- graceful-fs@4.2.3 deduped
                                          | | |   +-- jsonfile@6.1.0
                                          | | |   | +-- graceful-fs@4.2.3 deduped
                                          | | |   | `-- universalify@2.0.0 deduped
                                          | | |   `-- universalify@2.0.0
                                          | | +-- @iobroker/db-objects-file@4.0.23 deduped
                                          | | +-- @iobroker/db-objects-jsonl@4.0.23 deduped
                                          | | +-- @iobroker/db-objects-redis@4.0.23 deduped
                                          | | +-- @iobroker/db-states-file@4.0.23 deduped
                                          | | +-- @iobroker/db-states-jsonl@4.0.23 deduped
                                          | | +-- @iobroker/db-states-redis@4.0.23 deduped
                                          | | +-- @iobroker/js-controller-common@4.0.23 deduped
                                          | | +-- @iobroker/plugin-base@1.2.1 deduped
                                          | | +-- @iobroker/plugin-sentry@1.2.0 deduped
                                          | | +-- deep-clone@3.0.3 deduped
                                          | | +-- fs-extra@10.1.0
                                          | | | +-- graceful-fs@4.2.3 deduped
                                          | | | +-- jsonfile@6.1.0
                                          | | | | +-- graceful-fs@4.2.3 deduped
                                          | | | | `-- universalify@2.0.0 deduped
                                          | | | `-- universalify@2.0.0
                                          | | +-- jsonwebtoken@8.5.1 deduped
                                          | | +-- node-schedule@2.1.0 deduped
                                          | | +-- node.extend@2.0.2 deduped
                                          | | +-- pidusage@3.0.0 deduped
                                          | | +-- readline@1.3.0
                                          | | `-- semver@7.3.7
                                          | |   `-- lru-cache@6.0.0 deduped
                                          | +-- @iobroker/js-controller-cli@4.0.23
                                          | | +-- @iobroker/js-controller-common-db@4.0.23 deduped
                                          | | +-- @iobroker/js-controller-common@4.0.23 deduped
                                          | | +-- chokidar@3.5.3
                                          | | | +-- anymatch@3.1.2
                                          | | | | +-- normalize-path@3.0.0 deduped
                                          | | | | `-- picomatch@2.3.1
                                          | | | +-- braces@3.0.2
                                          | | | | `-- fill-range@7.0.1
                                          | | | |   `-- to-regex-range@5.0.1
                                          | | | |     `-- is-number@7.0.0
                                          | | | +-- fsevents@2.3.2
                                          | | | +-- glob-parent@5.1.2
                                          | | | | `-- is-glob@4.0.3 deduped
                                          | | | +-- is-binary-path@2.1.0
                                          | | | | `-- binary-extensions@2.2.0
                                          | | | +-- is-glob@4.0.3
                                          | | | | `-- is-extglob@2.1.1
                                          | | | +-- normalize-path@3.0.0
                                          | | | `-- readdirp@3.6.0
                                          | | |   `-- picomatch@2.3.1 deduped
                                          | | +-- daemonize2@0.4.2 deduped
                                          | | +-- debug@4.3.4
                                          | | | `-- ms@2.1.2
                                          | | +-- deep-clone@3.0.3 deduped
                                          | | +-- event-stream@4.0.1
                                          | | | +-- duplexer@0.1.2
                                          | | | +-- from@0.1.7
                                          | | | +-- map-stream@0.0.7
                                          | | | +-- pause-stream@0.0.11
                                          | | | | `-- through@2.3.8 deduped
                                          | | | +-- split@1.0.1
                                          | | | | `-- through@2.3.8 deduped
                                          | | | +-- stream-combiner@0.2.2
                                          | | | | +-- duplexer@0.1.2 deduped
                                          | | | | `-- through@2.3.8 deduped
                                          | | | `-- through@2.3.8
                                          | | +-- fs-extra@10.1.0
                                          | | | +-- graceful-fs@4.2.3 deduped
                                          | | | +-- jsonfile@6.1.0
                                          | | | | +-- graceful-fs@4.2.3 deduped
                                          | | | | `-- universalify@2.0.0 deduped
                                          | | | `-- universalify@2.0.0
                                          | | `-- readline-sync@1.4.10 deduped
                                          | +-- @iobroker/js-controller-common-db@4.0.23
                                          | | +-- @iobroker/db-objects-file@4.0.23 deduped
                                          | | +-- @iobroker/db-objects-jsonl@4.0.23 deduped
                                          | | +-- @iobroker/db-objects-redis@4.0.23 deduped
                                          | | +-- @iobroker/db-states-file@4.0.23 deduped
                                          | | +-- @iobroker/db-states-jsonl@4.0.23 deduped
                                          | | +-- @iobroker/db-states-redis@4.0.23 deduped
                                          | | +-- @iobroker/js-controller-common@4.0.23 deduped
                                          | | +-- fs-extra@10.1.0
                                          | | | +-- graceful-fs@4.2.3 deduped
                                          | | | +-- jsonfile@6.1.0
                                          | | | | +-- graceful-fs@4.2.3 deduped
                                          | | | | `-- universalify@2.0.0 deduped
                                          | | | `-- universalify@2.0.0
                                          | | +-- winston-seq-updated@1.0.4
                                          | | | +-- seq-logging@0.4.6
                                          | | | `-- winston-transport@4.5.0
                                          | | |   +-- logform@2.4.1 deduped
                                          | | |   +-- readable-stream@3.6.0
                                          | | |   | +-- inherits@2.0.3 deduped
                                          | | |   | +-- string_decoder@1.1.1 deduped
                                          | | |   | `-- util-deprecate@1.0.2 deduped
                                          | | |   `-- triple-beam@1.3.0 deduped
                                          | | `-- winston-syslog@2.6.0
                                          | |   +-- glossy@0.1.7
                                          | |   +-- unix-dgram@2.0.4
                                          | |   | +-- bindings@1.3.0
                                          | |   | `-- nan@2.14.0 deduped
                                          | |   `-- winston@3.8.1 deduped
                                          | +-- @iobroker/js-controller-common@4.0.23
                                          | | +-- @alcalzone/pak@0.7.0 deduped
                                          | | +-- @datalust/winston-seq@1.0.2
                                          | | | +-- seq-logging@1.1.1
                                          | | | +-- winston-transport@4.5.0 deduped
                                          | | | `-- winston@3.8.1 deduped
                                          | | +-- axios@0.26.1 deduped
                                          | | +-- ci-info@3.3.2
                                          | | +-- deep-clone@3.0.3 deduped
                                          | | +-- event-stream@4.0.1 deduped
                                          | | +-- fs-extra@10.1.0
                                          | | | +-- graceful-fs@4.2.3 deduped
                                          | | | +-- jsonfile@6.1.0
                                          | | | | +-- graceful-fs@4.2.3 deduped
                                          | | | | `-- universalify@2.0.0 deduped
                                          | | | `-- universalify@2.0.0
                                          | | +-- jsonwebtoken@8.5.1 deduped
                                          | | +-- node-forge@1.3.1
                                          | | +-- node.extend@2.0.2 deduped
                                          | | +-- promisify-child-process@4.1.1 deduped
                                          | | +-- readline@1.3.0 deduped
                                          | | +-- request@2.88.2
                                          | | | +-- aws-sign2@0.7.0 deduped
                                          | | | +-- aws4@1.8.0 deduped
                                          | | | +-- caseless@0.12.0 deduped
                                          | | | +-- combined-stream@1.0.8 deduped
                                          | | | +-- extend@3.0.2 deduped
                                          | | | +-- forever-agent@0.6.1 deduped
                                          | | | +-- form-data@2.3.3 deduped
                                          | | | +-- har-validator@5.1.3 deduped
                                          | | | +-- http-signature@1.2.0 deduped
                                          | | | +-- is-typedarray@1.0.0 deduped
                                          | | | +-- isstream@0.1.2 deduped
                                          | | | +-- json-stringify-safe@5.0.1 deduped
                                          | | | +-- mime-types@2.1.25 deduped
                                          | | | +-- oauth-sign@0.9.0 deduped
                                          | | | +-- performance-now@2.1.0 deduped
                                          | | | +-- qs@6.5.3
                                          | | | +-- safe-buffer@5.1.2 deduped
                                          | | | +-- tough-cookie@2.5.0
                                          | | | | +-- psl@1.4.0 deduped
                                          | | | | `-- punycode@2.1.1 deduped
                                          | | | +-- tunnel-agent@0.6.0 deduped
                                          | | | `-- uuid@3.3.3 deduped
                                          | | +-- semver@7.3.7
                                          | | | `-- lru-cache@6.0.0 deduped
                                          | | +-- winston-daily-rotate-file@4.7.1
                                          | | | +-- file-stream-rotator@0.6.1
                                          | | | | `-- moment@2.29.4 deduped
                                          | | | +-- object-hash@2.2.0
                                          | | | +-- triple-beam@1.3.0
                                          | | | +-- winston-transport@4.5.0 deduped
                                          | | | `-- winston@3.8.1 deduped
                                          | | +-- winston-syslog@2.6.0 deduped
                                          | | `-- winston@3.8.1
                                          | |   +-- @dabh/diagnostics@2.0.3
                                          | |   | +-- colorspace@1.1.4
                                          | |   | | +-- color@3.2.1
                                          | |   | | | +-- color-convert@1.9.3
                                          | |   | | | | `-- color-name@1.1.3
                                          | |   | | | `-- color-string@1.9.1
                                          | |   | | |   +-- color-name@1.1.3 deduped
                                          | |   | | |   `-- simple-swizzle@0.2.2
                                          | |   | | |     `-- is-arrayish@0.3.2
                                          | |   | | `-- text-hex@1.0.0
                                          | |   | +-- enabled@2.0.0
                                          | |   | `-- kuler@2.0.0
                                          | |   +-- async@3.2.4
                                          | |   +-- is-stream@2.0.1 deduped
                                          | |   +-- logform@2.4.1
                                          | |   | +-- @colors/colors@1.5.0 deduped
                                          | |   | +-- fecha@4.2.3
                                          | |   | +-- ms@2.1.3
                                          | |   | +-- safe-stable-stringify@2.3.1 deduped
                                          | |   | `-- triple-beam@1.3.0 deduped
                                          | |   +-- one-time@1.0.0
                                          | |   | `-- fn.name@1.1.0
                                          | |   +-- readable-stream@3.6.0
                                          | |   | +-- inherits@2.0.3 deduped
                                          | |   | +-- string_decoder@1.1.1 deduped
                                          | |   | `-- util-deprecate@1.0.2 deduped
                                          | |   +-- safe-stable-stringify@2.3.1
                                          | |   +-- stack-trace@0.0.10
                                          | |   +-- triple-beam@1.3.0 deduped
                                          | |   `-- winston-transport@4.5.0 deduped
                                          | +-- @iobroker/plugin-base@1.2.1
                                          | +-- @iobroker/plugin-sentry@1.2.0
                                          | | +-- @iobroker/plugin-base@1.2.1 deduped
                                          | | +-- @sentry/integrations@6.19.7 deduped
                                          | | +-- @sentry/node@6.19.7 deduped
                                          | | `-- source-map-support@0.5.21 deduped
                                          | +-- axios@0.24.0
                                          | | `-- follow-redirects@1.15.1 deduped
                                          | +-- daemonize2@0.4.2
                                          | +-- debug@4.3.4
                                          | | `-- ms@2.1.2
                                          | +-- decache@4.6.1
                                          | | `-- callsite@1.0.0
                                          | +-- deep-clone@3.0.3
                                          | +-- diskusage@1.1.3
                                          | | +-- es6-promise@4.2.8
                                          | | `-- nan@2.14.0
                                          | +-- fs-extra@10.1.0
                                          | | +-- graceful-fs@4.2.3 deduped
                                          | | +-- jsonfile@6.1.0
                                          | | | +-- graceful-fs@4.2.3 deduped
                                          | | | `-- universalify@2.0.0 deduped
                                          | | `-- universalify@2.0.0
                                          | +-- greenlock-express@4.0.3
                                          | | +-- @root/greenlock-express@4.0.4
                                          | | | +-- @root/greenlock@4.0.5 deduped
                                          | | | `-- redirect-https@1.3.1 deduped
                                          | | +-- @root/greenlock@4.0.5
                                          | | | +-- @greenlock/manager@3.1.0 deduped
                                          | | | +-- @root/acme@3.1.0 deduped
                                          | | | +-- @root/csr@0.8.1 deduped
                                          | | | +-- @root/keypairs@0.10.3
                                          | | | | +-- @root/encoding@1.0.1 deduped
                                          | | | | +-- @root/pem@1.0.4 deduped
                                          | | | | `-- @root/x509@0.7.2 deduped
                                          | | | +-- @root/mkdirp@1.0.0 deduped
                                          | | | +-- @root/request@1.8.2 deduped
                                          | | | +-- acme-http-01-standalone@3.0.5 deduped
                                          | | | +-- cert-info@1.5.1 deduped
                                          | | | +-- greenlock-store-fs@3.2.2 deduped
                                          | | | `-- safe-replace@1.1.0 deduped
                                          | | `-- redirect-https@1.3.1
                                          | |   `-- escape-html@1.0.3 deduped
                                          | +-- greenlock@4.0.4
                                          | | +-- @greenlock/manager@3.1.0
                                          | | | `-- greenlock-manager-fs@3.1.1
                                          | | |   +-- @root/mkdirp@1.0.0 deduped
                                          | | |   `-- safe-replace@1.1.0 deduped
                                          | | +-- @root/acme@3.1.0
                                          | | | +-- @root/csr@0.8.1 deduped
                                          | | | +-- @root/encoding@1.0.1
                                          | | | +-- @root/keypairs@0.10.3
                                          | | | | +-- @root/encoding@1.0.1 deduped
                                          | | | | +-- @root/pem@1.0.4 deduped
                                          | | | | `-- @root/x509@0.7.2 deduped
                                          | | | +-- @root/pem@1.0.4
                                          | | | +-- @root/request@1.8.2 deduped
                                          | | | `-- @root/x509@0.7.2
                                          | | |   +-- @root/asn1@1.0.0 deduped
                                          | | |   `-- @root/encoding@1.0.1 deduped
                                          | | +-- @root/csr@0.8.1
                                          | | | +-- @root/asn1@1.0.0
                                          | | | | `-- @root/encoding@1.0.1 deduped
                                          | | | +-- @root/pem@1.0.4 deduped
                                          | | | `-- @root/x509@0.7.2 deduped
                                          | | +-- @root/greenlock@4.0.5 deduped
                                          | | +-- @root/keypairs@0.9.0
                                          | | | +-- @root/encoding@1.0.1 deduped
                                          | | | +-- @root/pem@1.0.4 deduped
                                          | | | `-- @root/x509@0.7.2 deduped
                                          | | +-- @root/mkdirp@1.0.0
                                          | | +-- @root/request@1.8.2
                                          | | +-- acme-http-01-standalone@3.0.5
                                          | | +-- cert-info@1.5.1
                                          | | +-- greenlock-store-fs@3.2.2
                                          | | | +-- @root/mkdirp@1.0.0 deduped
                                          | | | `-- safe-replace@1.1.0 deduped
                                          | | `-- safe-replace@1.1.0
                                          | +-- jsonwebtoken@8.5.1
                                          | | +-- jws@3.2.2
                                          | | | +-- jwa@1.4.1
                                          | | | | +-- buffer-equal-constant-time@1.0.1 deduped
                                          | | | | +-- ecdsa-sig-formatter@1.0.11 deduped
                                          | | | | `-- safe-buffer@5.1.2 deduped
                                          | | | `-- safe-buffer@5.1.2 deduped
                                          | | +-- lodash.includes@4.3.0
                                          | | +-- lodash.isboolean@3.0.3
                                          | | +-- lodash.isinteger@4.0.4
                                          | | +-- lodash.isnumber@3.0.3
                                          | | +-- lodash.isplainobject@4.0.6
                                          | | +-- lodash.isstring@4.0.1
                                          | | +-- lodash.once@4.1.1
                                          | | +-- ms@2.1.3
                                          | | `-- semver@5.7.1 deduped
                                          | +-- jszip@3.10.0 deduped
                                          | +-- le-acme-core@2.1.4
                                          | | +-- request@2.88.0 deduped
                                          | | `-- rsa-compat@1.9.4
                                          | |   +-- keypairs@1.2.14
                                          | |   | +-- eckles@1.4.1
                                          | |   | `-- rasha@1.2.5
                                          | |   +-- node-forge@0.7.6
                                          | |   `-- ursa-optional@0.9.10
                                          | |     +-- bindings@1.3.0 deduped
                                          | |     `-- nan@2.14.0 deduped
                                          | +-- le-challenge-fs@2.0.9
                                          | | `-- @root/mkdirp@1.0.0 deduped
                                          | +-- le-sni-auto@2.1.9
                                          | +-- loadavg-windows@1.1.1
                                          | | `-- weak-daemon@1.0.3
                                          | +-- mime@3.0.0
                                          | +-- node-schedule@2.1.0 deduped
                                          | +-- pidusage@3.0.0
                                          | | `-- safe-buffer@5.2.1
                                          | +-- promisify-child-process@4.1.1
                                          | +-- prompt@1.3.0
                                          | | +-- @colors/colors@1.5.0
                                          | | +-- async@3.2.3
                                          | | +-- read@1.0.7
                                          | | | `-- mute-stream@0.0.7
                                          | | +-- revalidator@0.1.8
                                          | | `-- winston@2.4.6
                                          | |   +-- async@3.2.3 deduped
                                          | |   +-- colors@1.0.3
                                          | |   +-- cycle@1.0.3
                                          | |   +-- eyes@0.1.8 deduped
                                          | |   +-- isstream@0.1.2 deduped
                                          | |   `-- stack-trace@0.0.10 deduped
                                          | +-- readline-sync@1.4.10
                                          | +-- request@2.88.2
                                          | | +-- aws-sign2@0.7.0 deduped
                                          | | +-- aws4@1.8.0 deduped
                                          | | +-- caseless@0.12.0 deduped
                                          | | +-- combined-stream@1.0.8 deduped
                                          | | +-- extend@3.0.2 deduped
                                          | | +-- forever-agent@0.6.1 deduped
                                          | | +-- form-data@2.3.3 deduped
                                          | | +-- har-validator@5.1.3 deduped
                                          | | +-- http-signature@1.2.0 deduped
                                          | | +-- is-typedarray@1.0.0 deduped
                                          | | +-- isstream@0.1.2 deduped
                                          | | +-- json-stringify-safe@5.0.1 deduped
                                          | | +-- mime-types@2.1.25 deduped
                                          | | +-- oauth-sign@0.9.0 deduped
                                          | | +-- performance-now@2.1.0 deduped
                                          | | +-- qs@6.5.3
                                          | | +-- safe-buffer@5.1.2 deduped
                                          | | +-- tough-cookie@2.5.0
                                          | | | +-- psl@1.4.0 deduped
                                          | | | `-- punycode@2.1.1 deduped
                                          | | +-- tunnel-agent@0.6.0 deduped
                                          | | `-- uuid@3.3.3 deduped
                                          | +-- semver@7.3.7
                                          | | `-- lru-cache@6.0.0 deduped
                                          | +-- tar@6.1.11
                                          | | +-- chownr@2.0.0
                                          | | +-- fs-minipass@2.1.0
                                          | | | `-- minipass@3.3.4 deduped
                                          | | +-- minipass@3.3.4
                                          | | | `-- yallist@4.0.0 deduped
                                          | | +-- minizlib@2.1.2
                                          | | | +-- minipass@3.3.4 deduped
                                          | | | `-- yallist@4.0.0 deduped
                                          | | +-- mkdirp@1.0.4
                                          | | `-- yallist@4.0.0
                                          | `-- yargs@17.5.1
                                          |   +-- cliui@7.0.4
                                          |   | +-- string-width@4.2.3 deduped
                                          |   | +-- strip-ansi@6.0.1
                                          |   | | `-- ansi-regex@5.0.1
                                          |   | `-- wrap-ansi@7.0.0
                                          |   |   +-- ansi-styles@4.3.0
                                          |   |   | `-- color-convert@2.0.1
                                          |   |   |   `-- color-name@1.1.4
                                          |   |   +-- string-width@4.2.3 deduped
                                          |   |   `-- strip-ansi@6.0.1 deduped
                                          |   +-- escalade@3.1.1
                                          |   +-- get-caller-file@2.0.5
                                          |   +-- require-directory@2.1.1 deduped
                                          |   +-- string-width@4.2.3
                                          |   | +-- emoji-regex@8.0.0
                                          |   | +-- is-fullwidth-code-point@3.0.0
                                          |   | `-- strip-ansi@6.0.1 deduped
                                          |   +-- y18n@5.0.8
                                          |   `-- yargs-parser@21.0.1
                                          +-- iobroker.landroid@1.0.3
                                          | `-- rss-parser@3.12.0
                                          |   +-- entities@2.2.0
                                          |   `-- xml2js@0.4.23 deduped
                                          +-- iobroker.logparser@1.1.0
                                          | `-- @iobroker/adapter-core@2.6.0
                                          |   `-- @types/iobroker@4.0.4
                                          |     `-- @types/node@12.20.55 deduped
                                          +-- iobroker.milight-smart-light@1.2.2
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- @quasar/extras@1.14.2
                                          | +-- core-js@3.23.3
                                          | +-- express@4.18.1 deduped
                                          | +-- lodash@4.17.21
                                          | +-- nanoid@3.3.4
                                          | +-- node-milight-promise@0.3.2 (git+ssh://git@github.com/Steiger04/node-milight-promise.git#f1089feac9b7990727adf2016891029436729d33)
                                          | | +-- bluebird@3.7.2
                                          | | `-- promise-retryer@0.0.1
                                          | |   `-- promise-object@0.1.7
                                          | +-- quasar@1.19.3
                                          | +-- tcp-port-used@1.0.2
                                          | | +-- debug@4.3.1
                                          | | | `-- ms@2.1.2
                                          | | `-- is2@2.0.7
                                          | |   +-- deep-is@0.1.4
                                          | |   +-- ip-regex@4.3.0
                                          | |   `-- is-url@1.2.4
                                          | +-- tinycolor2@1.4.2
                                          | +-- vue-i18n@8.27.2
                                          | +-- vuelidate-messages@0.1.2
                                          | | `-- vuelidate@0.7.7 deduped
                                          | +-- vuelidate@0.7.7
                                          | `-- vuex-map-fields@1.4.1
                                          +-- iobroker.mobile@1.0.1
                                          | `-- @iobroker/adapter-core@2.6.0
                                          |   `-- @types/iobroker@4.0.4
                                          |     `-- @types/node@12.20.55 deduped
                                          +-- iobroker.ping@1.5.3
                                          | `-- @iobroker/adapter-core@2.6.0
                                          |   `-- @types/iobroker@4.0.4
                                          |     `-- @types/node@12.20.55 deduped
                                          +-- iobroker.socketio@4.2.0
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- axios@0.26.1 deduped
                                          | +-- cookie-parser@1.4.6 deduped
                                          | +-- express-session@1.17.3 deduped
                                          | +-- passport@0.5.3
                                          | | +-- passport-strategy@1.0.0 deduped
                                          | | `-- pause@0.0.1 deduped
                                          | `-- socket.io@2.5.0
                                          |   +-- debug@4.1.1
                                          |   | `-- ms@2.1.3
                                          |   +-- engine.io@3.6.1
                                          |   | +-- accepts@1.3.8 deduped
                                          |   | +-- base64id@2.0.0
                                          |   | +-- cookie@0.4.1 deduped
                                          |   | +-- debug@4.1.1
                                          |   | | `-- ms@2.1.3
                                          |   | +-- engine.io-parser@2.2.1
                                          |   | | +-- after@0.8.2 deduped
                                          |   | | +-- arraybuffer.slice@0.0.7
                                          |   | | +-- base64-arraybuffer@0.1.4
                                          |   | | +-- blob@0.0.5
                                          |   | | `-- has-binary2@1.0.3 deduped
                                          |   | `-- ws@7.4.6
                                          |   |   +-- UNMET OPTIONAL DEPENDENCY bufferutil@^4.0.1
                                          |   |   `-- UNMET OPTIONAL DEPENDENCY utf-8-validate@^5.0.2
                                          |   +-- has-binary2@1.0.3
                                          |   | `-- isarray@2.0.1
                                          |   +-- socket.io-adapter@1.1.2
                                          |   +-- socket.io-client@2.5.0
                                          |   | +-- backo2@1.0.2 deduped
                                          |   | +-- component-bind@1.0.0 deduped
                                          |   | +-- component-emitter@1.3.0
                                          |   | +-- debug@3.1.0
                                          |   | | `-- ms@2.0.0 deduped
                                          |   | +-- engine.io-client@3.5.2
                                          |   | | +-- component-emitter@1.3.0 deduped
                                          |   | | +-- component-inherit@0.0.3 deduped
                                          |   | | +-- debug@3.1.0
                                          |   | | | `-- ms@2.0.0 deduped
                                          |   | | +-- engine.io-parser@2.2.1 deduped
                                          |   | | +-- has-cors@1.1.0 deduped
                                          |   | | +-- indexof@0.0.1 deduped
                                          |   | | +-- parseqs@0.0.6 deduped
                                          |   | | +-- parseuri@0.0.6 deduped
                                          |   | | +-- ws@7.4.6
                                          |   | | | +-- UNMET OPTIONAL DEPENDENCY bufferutil@^4.0.1
                                          |   | | | `-- UNMET OPTIONAL DEPENDENCY utf-8-validate@^5.0.2
                                          |   | | +-- xmlhttprequest-ssl@1.6.3 deduped
                                          |   | | `-- yeast@0.1.2 deduped
                                          |   | +-- has-binary2@1.0.3 deduped
                                          |   | +-- indexof@0.0.1 deduped
                                          |   | +-- parseqs@0.0.6
                                          |   | +-- parseuri@0.0.6
                                          |   | +-- socket.io-parser@3.3.2
                                          |   | | +-- component-emitter@1.3.0 deduped
                                          |   | | +-- debug@3.1.0 deduped
                                          |   | | `-- isarray@2.0.1 deduped
                                          |   | `-- to-array@0.1.4 deduped
                                          |   `-- socket.io-parser@3.4.2
                                          |     +-- component-emitter@1.2.1
                                          |     +-- debug@4.1.1
                                          |     | `-- ms@2.1.3
                                          |     `-- isarray@2.0.1 deduped
                                          +-- iobroker.sourceanalytix@0.4.14 (git+ssh://git@github.com/DrozmotiX/ioBroker.sourceanalytix.git#9c4635239c7b9321601dcf0fcdd8677a55a8b13f)
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- @sentry/node@5.30.0
                                          | | +-- @sentry/core@5.30.0
                                          | | | +-- @sentry/hub@5.30.0 deduped
                                          | | | +-- @sentry/minimal@5.30.0
                                          | | | | +-- @sentry/hub@5.30.0 deduped
                                          | | | | +-- @sentry/types@5.30.0 deduped
                                          | | | | `-- tslib@1.14.1 deduped
                                          | | | +-- @sentry/types@5.30.0 deduped
                                          | | | +-- @sentry/utils@5.30.0 deduped
                                          | | | `-- tslib@1.14.1 deduped
                                          | | +-- @sentry/hub@5.30.0
                                          | | | +-- @sentry/types@5.30.0 deduped
                                          | | | +-- @sentry/utils@5.30.0 deduped
                                          | | | `-- tslib@1.14.1 deduped
                                          | | +-- @sentry/tracing@5.30.0
                                          | | | +-- @sentry/hub@5.30.0 deduped
                                          | | | +-- @sentry/minimal@5.30.0 deduped
                                          | | | +-- @sentry/types@5.30.0 deduped
                                          | | | +-- @sentry/utils@5.30.0 deduped
                                          | | | `-- tslib@1.14.1 deduped
                                          | | +-- @sentry/types@5.30.0
                                          | | +-- @sentry/utils@5.30.0
                                          | | | +-- @sentry/types@5.30.0 deduped
                                          | | | `-- tslib@1.14.1 deduped
                                          | | +-- cookie@0.4.1 deduped
                                          | | +-- https-proxy-agent@5.0.1 deduped
                                          | | +-- lru_map@0.3.3 deduped
                                          | | `-- tslib@1.14.1 deduped
                                          | +-- cron@1.8.2
                                          | | `-- moment-timezone@0.5.40 deduped
                                          | +-- iobroker-adapter-helpers@0.0.8
                                          | `-- node-schedule@1.3.3
                                          |   +-- cron-parser@2.18.0
                                          |   | +-- is-nan@1.3.2 deduped
                                          |   | `-- moment-timezone@0.5.40 deduped
                                          |   +-- long-timeout@0.1.1 deduped
                                          |   `-- sorted-array-functions@1.3.0 deduped
                                          +-- iobroker.stiebel-isg@1.7.5
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- cheerio@1.0.0-rc.12
                                          | | +-- cheerio-select@2.1.0
                                          | | | +-- boolbase@1.0.0
                                          | | | +-- css-select@5.1.0
                                          | | | | +-- boolbase@1.0.0 deduped
                                          | | | | +-- css-what@6.1.0 deduped
                                          | | | | +-- domhandler@5.0.3 deduped
                                          | | | | +-- domutils@3.0.1 deduped
                                          | | | | `-- nth-check@2.1.1
                                          | | | |   `-- boolbase@1.0.0 deduped
                                          | | | +-- css-what@6.1.0
                                          | | | +-- domelementtype@2.3.0
                                          | | | +-- domhandler@5.0.3 deduped
                                          | | | `-- domutils@3.0.1 deduped
                                          | | +-- dom-serializer@2.0.0
                                          | | | +-- domelementtype@2.3.0 deduped
                                          | | | +-- domhandler@5.0.3 deduped
                                          | | | `-- entities@4.3.1
                                          | | +-- domhandler@5.0.3
                                          | | | `-- domelementtype@2.3.0 deduped
                                          | | +-- domutils@3.0.1
                                          | | | +-- dom-serializer@2.0.0 deduped
                                          | | | +-- domelementtype@2.3.0 deduped
                                          | | | `-- domhandler@5.0.3 deduped
                                          | | +-- htmlparser2@8.0.1
                                          | | | +-- domelementtype@2.3.0 deduped
                                          | | | +-- domhandler@5.0.3 deduped
                                          | | | +-- domutils@3.0.1 deduped
                                          | | | `-- entities@4.3.1 deduped
                                          | | +-- parse5-htmlparser2-tree-adapter@7.0.0
                                          | | | +-- domhandler@5.0.3 deduped
                                          | | | `-- parse5@7.0.0 deduped
                                          | | `-- parse5@7.0.0
                                          | |   `-- entities@4.3.1 deduped
                                          | +-- request@2.88.2
                                          | | +-- aws-sign2@0.7.0 deduped
                                          | | +-- aws4@1.8.0 deduped
                                          | | +-- caseless@0.12.0 deduped
                                          | | +-- combined-stream@1.0.8 deduped
                                          | | +-- extend@3.0.2 deduped
                                          | | +-- forever-agent@0.6.1 deduped
                                          | | +-- form-data@2.3.3 deduped
                                          | | +-- har-validator@5.1.3 deduped
                                          | | +-- http-signature@1.2.0 deduped
                                          | | +-- is-typedarray@1.0.0 deduped
                                          | | +-- isstream@0.1.2 deduped
                                          | | +-- json-stringify-safe@5.0.1 deduped
                                          | | +-- mime-types@2.1.25 deduped
                                          | | +-- oauth-sign@0.9.0 deduped
                                          | | +-- performance-now@2.1.0 deduped
                                          | | +-- qs@6.5.3
                                          | | +-- safe-buffer@5.1.2 deduped
                                          | | +-- tough-cookie@2.5.0
                                          | | | +-- psl@1.4.0 deduped
                                          | | | `-- punycode@2.1.1 deduped
                                          | | +-- tunnel-agent@0.6.0 deduped
                                          | | `-- uuid@3.3.3 deduped
                                          | `-- tough-cookie@4.1.2 deduped
                                          +-- iobroker.telegram@1.13.0
                                          | +-- @iobroker/adapter-core@2.6.7
                                          | | `-- @types/iobroker@4.0.5
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- axios@0.27.2
                                          | | +-- follow-redirects@1.15.1 deduped
                                          | | `-- form-data@4.0.0
                                          | |   +-- asynckit@0.4.0 deduped
                                          | |   +-- combined-stream@1.0.8 deduped
                                          | |   `-- mime-types@2.1.25 deduped
                                          | +-- node-telegram-bot-api@0.57.0
                                          | | +-- array.prototype.findindex@2.2.1
                                          | | | +-- call-bind@1.0.2 deduped
                                          | | | +-- define-properties@1.1.4
                                          | | | | +-- has-property-descriptors@1.0.0
                                          | | | | | `-- get-intrinsic@1.1.2 deduped
                                          | | | | `-- object-keys@1.1.1 deduped
                                          | | | +-- es-abstract@1.20.4
                                          | | | | +-- call-bind@1.0.2 deduped
                                          | | | | +-- es-to-primitive@1.2.1
                                          | | | | | +-- is-callable@1.2.7 deduped
                                          | | | | | +-- is-date-object@1.0.5
                                          | | | | | | `-- has-tostringtag@1.0.0 deduped
                                          | | | | | `-- is-symbol@1.0.4
                                          | | | | |   `-- has-symbols@1.0.3 deduped
                                          | | | | +-- function-bind@1.1.1 deduped
                                          | | | | +-- function.prototype.name@1.1.5
                                          | | | | | +-- call-bind@1.0.2 deduped
                                          | | | | | +-- define-properties@1.1.4 deduped
                                          | | | | | +-- es-abstract@1.20.4 deduped
                                          | | | | | `-- functions-have-names@1.2.3
                                          | | | | +-- get-intrinsic@1.1.3
                                          | | | | | +-- function-bind@1.1.1 deduped
                                          | | | | | +-- has-symbols@1.0.3 deduped
                                          | | | | | `-- has@1.0.3 deduped
                                          | | | | +-- get-symbol-description@1.0.0
                                          | | | | | +-- call-bind@1.0.2 deduped
                                          | | | | | `-- get-intrinsic@1.1.2 deduped
                                          | | | | +-- has-property-descriptors@1.0.0 deduped
                                          | | | | +-- has-symbols@1.0.3 deduped
                                          | | | | +-- has@1.0.3 deduped
                                          | | | | +-- internal-slot@1.0.3
                                          | | | | | +-- get-intrinsic@1.1.2 deduped
                                          | | | | | +-- has@1.0.3 deduped
                                          | | | | | `-- side-channel@1.0.4 deduped
                                          | | | | +-- is-callable@1.2.7
                                          | | | | +-- is-negative-zero@2.0.2
                                          | | | | +-- is-regex@1.1.4
                                          | | | | | +-- call-bind@1.0.2 deduped
                                          | | | | | `-- has-tostringtag@1.0.0
                                          | | | | |   `-- has-symbols@1.0.3 deduped
                                          | | | | +-- is-shared-array-buffer@1.0.2
                                          | | | | | `-- call-bind@1.0.2 deduped
                                          | | | | +-- is-string@1.0.7
                                          | | | | | `-- has-tostringtag@1.0.0 deduped
                                          | | | | +-- is-weakref@1.0.2
                                          | | | | | `-- call-bind@1.0.2 deduped
                                          | | | | +-- object-inspect@1.12.2 deduped
                                          | | | | +-- object-keys@1.1.1 deduped
                                          | | | | +-- object.assign@4.1.4 deduped
                                          | | | | +-- regexp.prototype.flags@1.4.3
                                          | | | | | +-- call-bind@1.0.2 deduped
                                          | | | | | +-- define-properties@1.1.4 deduped
                                          | | | | | `-- functions-have-names@1.2.3 deduped
                                          | | | | +-- safe-regex-test@1.0.0
                                          | | | | | +-- call-bind@1.0.2 deduped
                                          | | | | | +-- get-intrinsic@1.1.3
                                          | | | | | | +-- function-bind@1.1.1 deduped
                                          | | | | | | +-- has-symbols@1.0.3 deduped
                                          | | | | | | `-- has@1.0.3 deduped
                                          | | | | | `-- is-regex@1.1.4 deduped
                                          | | | | +-- string.prototype.trimend@1.0.6
                                          | | | | | +-- call-bind@1.0.2 deduped
                                          | | | | | +-- define-properties@1.1.4 deduped
                                          | | | | | `-- es-abstract@1.20.4 deduped
                                          | | | | +-- string.prototype.trimstart@1.0.6
                                          | | | | | +-- call-bind@1.0.2 deduped
                                          | | | | | +-- define-properties@1.1.4 deduped
                                          | | | | | `-- es-abstract@1.20.4 deduped
                                          | | | | `-- unbox-primitive@1.0.2
                                          | | | |   +-- call-bind@1.0.2 deduped
                                          | | | |   +-- has-bigints@1.0.2
                                          | | | |   +-- has-symbols@1.0.3 deduped
                                          | | | |   `-- which-boxed-primitive@1.0.2
                                          | | | |     +-- is-bigint@1.0.4
                                          | | | |     | `-- has-bigints@1.0.2 deduped
                                          | | | |     +-- is-boolean-object@1.1.2
                                          | | | |     | +-- call-bind@1.0.2 deduped
                                          | | | |     | `-- has-tostringtag@1.0.0 deduped
                                          | | | |     +-- is-number-object@1.0.7
                                          | | | |     | `-- has-tostringtag@1.0.0 deduped
                                          | | | |     +-- is-string@1.0.7 deduped
                                          | | | |     `-- is-symbol@1.0.4 deduped
                                          | | | `-- es-shim-unscopables@1.0.0
                                          | | |   `-- has@1.0.3 deduped
                                          | | +-- bl@1.2.3
                                          | | | +-- readable-stream@2.3.6 deduped
                                          | | | `-- safe-buffer@5.1.2 deduped
                                          | | +-- bluebird@3.7.1 deduped
                                          | | +-- debug@3.2.7
                                          | | | `-- ms@2.1.3
                                          | | +-- depd@1.1.2
                                          | | +-- eventemitter3@3.1.2
                                          | | +-- file-type@3.9.0
                                          | | +-- mime@1.6.0
                                          | | +-- pump@2.0.1
                                          | | | +-- end-of-stream@1.4.4 deduped
                                          | | | `-- once@1.4.0 deduped
                                          | | +-- request-promise@4.2.6 deduped
                                          | | `-- request@2.88.0 deduped
                                          | `-- socksv5@0.0.6
                                          |   `-- ipv6@3.1.1
                                          |     +-- cli@0.4.5
                                          |     | `-- glob@8.0.3
                                          |     |   +-- fs.realpath@1.0.0 deduped
                                          |     |   +-- inflight@1.0.6 deduped
                                          |     |   +-- inherits@2.0.3 deduped
                                          |     |   +-- minimatch@5.1.0 deduped
                                          |     |   `-- once@1.4.0 deduped
                                          |     +-- cliff@0.1.10
                                          |     | +-- colors@1.0.3
                                          |     | +-- eyes@0.1.8 deduped
                                          |     | `-- winston@0.8.3
                                          |     |   +-- async@0.2.10
                                          |     |   +-- colors@0.6.2
                                          |     |   +-- cycle@1.0.3 deduped
                                          |     |   +-- eyes@0.1.8 deduped
                                          |     |   +-- isstream@0.1.2 deduped
                                          |     |   +-- pkginfo@0.3.1
                                          |     |   `-- stack-trace@0.0.10 deduped
                                          |     `-- sprintf@0.1.3
                                          +-- iobroker.tr-064@4.2.17
                                          | +-- @iobroker/adapter-core@2.6.7
                                          | | `-- @types/iobroker@4.0.5
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- mdns-discovery@0.2.6 deduped
                                          | +-- tr-O64@0.2.4
                                          | | +-- async@2.6.4 deduped
                                          | | +-- eyes@0.1.8
                                          | | +-- request@2.88.0 deduped
                                          | | `-- xml2js@0.4.23 deduped
                                          | `-- xml2js@0.4.23 deduped
                                          +-- iobroker.unifi@0.5.10
                                          | +-- @iobroker/adapter-core@2.6.7
                                          | | `-- @types/iobroker@4.0.5
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- axios@0.21.4
                                          | | `-- follow-redirects@1.15.1 deduped
                                          | +-- dateformat@4.6.3
                                          | +-- json-logic-js@2.0.2
                                          | `-- node-unifi@1.4.3
                                          |   +-- async@3.2.4
                                          |   `-- request@2.88.2
                                          |     +-- aws-sign2@0.7.0 deduped
                                          |     +-- aws4@1.8.0 deduped
                                          |     +-- caseless@0.12.0 deduped
                                          |     +-- combined-stream@1.0.8 deduped
                                          |     +-- extend@3.0.2 deduped
                                          |     +-- forever-agent@0.6.1 deduped
                                          |     +-- form-data@2.3.3 deduped
                                          |     +-- har-validator@5.1.3 deduped
                                          |     +-- http-signature@1.2.0 deduped
                                          |     +-- is-typedarray@1.0.0 deduped
                                          |     +-- isstream@0.1.2 deduped
                                          |     +-- json-stringify-safe@5.0.1 deduped
                                          |     +-- mime-types@2.1.25 deduped
                                          |     +-- oauth-sign@0.9.0 deduped
                                          |     +-- performance-now@2.1.0 deduped
                                          |     +-- qs@6.5.3
                                          |     +-- safe-buffer@5.1.2 deduped
                                          |     +-- tough-cookie@2.5.0
                                          |     | +-- psl@1.4.0 deduped
                                          |     | `-- punycode@2.1.1 deduped
                                          |     +-- tunnel-agent@0.6.0 deduped
                                          |     `-- uuid@3.3.3 deduped
                                          +-- iobroker.vis-colorpicker@1.2.0
                                          | `-- @iobroker/adapter-core@2.6.0
                                          |   `-- @types/iobroker@4.0.4
                                          |     `-- @types/node@12.20.55 deduped
                                          +-- iobroker.vis-fancyswitch@1.1.0
                                          +-- iobroker.vis-hqwidgets@1.2.0
                                          +-- iobroker.vis-jqui-mfd@1.0.12
                                          +-- iobroker.vis-justgage@1.0.2
                                          | `-- @iobroker/adapter-core@1.0.3 deduped
                                          +-- iobroker.vis-map@1.0.4
                                          +-- iobroker.vis-materialdesign@0.5.86 (git+ssh://git@github.com/Scrounger/ioBroker.vis-materialdesign.git#cf7fc5b85debcda156a3ec7feb761cff217fa855)
                                          +-- iobroker.vis-timeandweather@1.1.7
                                          +-- iobroker.vis@1.4.15
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- axios@0.26.1 deduped
                                          | `-- jsonwebtoken@8.5.1 deduped
                                          +-- iobroker.vw-connect@0.0.56 (git+ssh://git@github.com/ta2k/ioBroker.vw-connect.git#5258d16f58c3a4ed39b309a757353f792fd9fd8e)
                                          | +-- @iobroker/adapter-core@2.6.7
                                          | | `-- @types/iobroker@4.0.5
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- @peculiar/webcrypto@1.4.1
                                          | | +-- @peculiar/asn1-schema@2.3.3
                                          | | | +-- asn1js@3.0.5
                                          | | | | +-- pvtsutils@1.3.2 deduped
                                          | | | | +-- pvutils@1.1.3
                                          | | | | `-- tslib@2.4.1
                                          | | | +-- pvtsutils@1.3.2 deduped
                                          | | | `-- tslib@2.4.1
                                          | | +-- @peculiar/json-schema@1.1.12
                                          | | | `-- tslib@2.4.1
                                          | | +-- pvtsutils@1.3.2
                                          | | | `-- tslib@2.4.1
                                          | | +-- tslib@2.4.1
                                          | | `-- webcrypto-core@1.7.5
                                          | |   +-- @peculiar/asn1-schema@2.3.3 deduped
                                          | |   +-- @peculiar/json-schema@1.1.12 deduped
                                          | |   +-- asn1js@3.0.5 deduped
                                          | |   +-- pvtsutils@1.3.2 deduped
                                          | |   `-- tslib@2.4.1
                                          | +-- axios@0.27.2
                                          | | +-- follow-redirects@1.15.1 deduped
                                          | | `-- form-data@4.0.0
                                          | |   +-- asynckit@0.4.0 deduped
                                          | |   +-- combined-stream@1.0.8 deduped
                                          | |   `-- mime-types@2.1.25 deduped
                                          | +-- ngeohash@0.6.3
                                          | +-- qs@6.11.0
                                          | | `-- side-channel@1.0.4 deduped
                                          | +-- request@2.88.2
                                          | | +-- aws-sign2@0.7.0 deduped
                                          | | +-- aws4@1.8.0 deduped
                                          | | +-- caseless@0.12.0 deduped
                                          | | +-- combined-stream@1.0.8 deduped
                                          | | +-- extend@3.0.2 deduped
                                          | | +-- forever-agent@0.6.1 deduped
                                          | | +-- form-data@2.3.3
                                          | | | +-- asynckit@0.4.0 deduped
                                          | | | +-- combined-stream@1.0.8 deduped
                                          | | | `-- mime-types@2.1.25 deduped
                                          | | +-- har-validator@5.1.3 deduped
                                          | | +-- http-signature@1.2.0 deduped
                                          | | +-- is-typedarray@1.0.0 deduped
                                          | | +-- isstream@0.1.2 deduped
                                          | | +-- json-stringify-safe@5.0.1 deduped
                                          | | +-- mime-types@2.1.25 deduped
                                          | | +-- oauth-sign@0.9.0 deduped
                                          | | +-- performance-now@2.1.0 deduped
                                          | | +-- qs@6.5.3
                                          | | +-- safe-buffer@5.1.2 deduped
                                          | | +-- tough-cookie@2.5.0
                                          | | | +-- psl@1.4.0 deduped
                                          | | | `-- punycode@2.1.1 deduped
                                          | | +-- tunnel-agent@0.6.0 deduped
                                          | | `-- uuid@3.4.0
                                          | +-- traverse@0.6.7
                                          | `-- uuid@9.0.0
                                          +-- iobroker.web@4.3.0
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- body-parser@1.20.0
                                          | | +-- bytes@3.1.2 deduped
                                          | | +-- content-type@1.0.4 deduped
                                          | | +-- debug@2.6.9 deduped
                                          | | +-- depd@2.0.0 deduped
                                          | | +-- destroy@1.2.0 deduped
                                          | | +-- http-errors@2.0.0 deduped
                                          | | +-- iconv-lite@0.4.24 deduped
                                          | | +-- on-finished@2.4.1 deduped
                                          | | +-- qs@6.10.3 deduped
                                          | | +-- raw-body@2.5.1 deduped
                                          | | +-- type-is@1.6.18 deduped
                                          | | `-- unpipe@1.0.0 deduped
                                          | +-- compression@1.7.4 deduped
                                          | +-- connect-flash@0.1.1 deduped
                                          | +-- cookie-parser@1.4.6 deduped
                                          | +-- express-session@1.17.3 deduped
                                          | +-- express@4.18.1 deduped
                                          | +-- iobroker.simple-api@2.7.0
                                          | | `-- @iobroker/adapter-core@2.6.0
                                          | |   `-- @types/iobroker@4.0.4
                                          | |     `-- @types/node@12.20.55 deduped
                                          | +-- iobroker.socketio@4.2.0 deduped
                                          | +-- iobroker.ws@1.3.0 deduped
                                          | +-- mime-types@2.1.35
                                          | | `-- mime-db@1.52.0
                                          | +-- passport-local@1.0.0 deduped
                                          | +-- passport@0.5.3 deduped
                                          | `-- xtend@4.0.2
                                          +-- iobroker.wifilight@1.1.3
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- array-ext@0.1.5
                                          | +-- mdns-discovery@0.2.6 deduped
                                          | +-- netmask@2.0.2 deduped
                                          | `-- sprintf-js@1.1.2
                                          +-- iobroker.worx@1.6.6 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.worx.git#f74920c46c5918a74bb1987a2e5e841fa1011dca)
                                          | +-- @iobroker/adapter-core@2.6.6
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- axios@0.27.2
                                          | | +-- follow-redirects@1.15.1 deduped
                                          | | `-- form-data@4.0.0
                                          | |   +-- asynckit@0.4.0 deduped
                                          | |   +-- combined-stream@1.0.8 deduped
                                          | |   `-- mime-types@2.1.25 deduped
                                          | +-- circular-json@0.5.9
                                          | +-- http-cookie-agent@4.0.2 deduped
                                          | +-- mqtt@4.3.7
                                          | | +-- commist@1.1.0
                                          | | | +-- leven@2.1.0
                                          | | | `-- minimist@1.2.8 deduped
                                          | | +-- concat-stream@2.0.0
                                          | | | +-- buffer-from@1.1.2 deduped
                                          | | | +-- inherits@2.0.3 deduped
                                          | | | +-- readable-stream@3.6.0 deduped
                                          | | | `-- typedarray@0.0.6
                                          | | +-- debug@4.3.4
                                          | | | `-- ms@2.1.2
                                          | | +-- duplexify@4.1.2
                                          | | | +-- end-of-stream@1.4.4 deduped
                                          | | | +-- inherits@2.0.3 deduped
                                          | | | +-- readable-stream@3.6.0
                                          | | | | +-- inherits@2.0.3 deduped
                                          | | | | +-- string_decoder@1.1.1 deduped
                                          | | | | `-- util-deprecate@1.0.2 deduped
                                          | | | `-- stream-shift@1.0.1
                                          | | +-- help-me@3.0.0
                                          | | | +-- glob@7.2.3
                                          | | | | +-- fs.realpath@1.0.0 deduped
                                          | | | | +-- inflight@1.0.6 deduped
                                          | | | | +-- inherits@2.0.3 deduped
                                          | | | | +-- minimatch@3.1.2
                                          | | | | | `-- brace-expansion@1.1.11
                                          | | | | |   +-- balanced-match@1.0.2 deduped
                                          | | | | |   `-- concat-map@0.0.1 deduped
                                          | | | | +-- once@1.4.0 deduped
                                          | | | | `-- path-is-absolute@1.0.1 deduped
                                          | | | `-- readable-stream@3.6.0
                                          | | |   +-- inherits@2.0.3 deduped
                                          | | |   +-- string_decoder@1.1.1 deduped
                                          | | |   `-- util-deprecate@1.0.2 deduped
                                          | | +-- inherits@2.0.3
                                          | | +-- lru-cache@6.0.0 deduped
                                          | | +-- minimist@1.2.8 deduped
                                          | | +-- mqtt-packet@6.10.0
                                          | | | +-- bl@4.1.0 deduped
                                          | | | +-- debug@4.3.4
                                          | | | | `-- ms@2.1.2
                                          | | | `-- process-nextick-args@2.0.1 deduped
                                          | | +-- number-allocator@1.0.12
                                          | | | +-- debug@4.3.4
                                          | | | | `-- ms@2.1.2
                                          | | | `-- js-sdsl@4.1.4
                                          | | +-- pump@3.0.0
                                          | | | +-- end-of-stream@1.4.4 deduped
                                          | | | `-- once@1.4.0 deduped
                                          | | +-- readable-stream@3.6.0
                                          | | | +-- inherits@2.0.3 deduped
                                          | | | +-- string_decoder@1.1.1 deduped
                                          | | | `-- util-deprecate@1.0.2 deduped
                                          | | +-- reinterval@1.1.0
                                          | | +-- rfdc@1.3.0
                                          | | +-- split2@3.2.2
                                          | | | `-- readable-stream@3.6.0
                                          | | |   +-- inherits@2.0.3 deduped
                                          | | |   +-- string_decoder@1.1.1 deduped
                                          | | |   `-- util-deprecate@1.0.2 deduped
                                          | | +-- ws@7.5.9
                                          | | | +-- UNMET OPTIONAL DEPENDENCY bufferutil@^4.0.1
                                          | | | `-- UNMET OPTIONAL DEPENDENCY utf-8-validate@^5.0.2
                                          | | `-- xtend@4.0.2 deduped
                                          | +-- qs@6.11.0
                                          | | `-- side-channel@1.0.4 deduped
                                          | +-- request-promise@4.2.6
                                          | | +-- bluebird@3.7.1 deduped
                                          | | +-- request-promise-core@1.1.4
                                          | | | +-- lodash@4.17.21 deduped
                                          | | | `-- request@2.88.0 deduped
                                          | | +-- request@2.88.0 deduped
                                          | | +-- stealthy-require@1.1.1
                                          | | `-- tough-cookie@2.5.0
                                          | |   +-- psl@1.4.0 deduped
                                          | |   `-- punycode@2.1.1 deduped
                                          | +-- request@2.88.2
                                          | | +-- aws-sign2@0.7.0 deduped
                                          | | +-- aws4@1.8.0 deduped
                                          | | +-- caseless@0.12.0 deduped
                                          | | +-- combined-stream@1.0.8 deduped
                                          | | +-- extend@3.0.2 deduped
                                          | | +-- forever-agent@0.6.1 deduped
                                          | | +-- form-data@2.3.3
                                          | | | +-- asynckit@0.4.0 deduped
                                          | | | +-- combined-stream@1.0.8 deduped
                                          | | | `-- mime-types@2.1.25 deduped
                                          | | +-- har-validator@5.1.3 deduped
                                          | | +-- http-signature@1.2.0 deduped
                                          | | +-- is-typedarray@1.0.0 deduped
                                          | | +-- isstream@0.1.2 deduped
                                          | | +-- json-stringify-safe@5.0.1 deduped
                                          | | +-- mime-types@2.1.25 deduped
                                          | | +-- oauth-sign@0.9.0 deduped
                                          | | +-- performance-now@2.1.0 deduped
                                          | | +-- qs@6.5.3
                                          | | +-- safe-buffer@5.1.2 deduped
                                          | | +-- tough-cookie@2.5.0
                                          | | | +-- psl@1.4.0 deduped
                                          | | | `-- punycode@2.1.1 deduped
                                          | | +-- tunnel-agent@0.6.0 deduped
                                          | | `-- uuid@3.4.0
                                          | +-- tough-cookie@4.1.2 deduped
                                          | `-- uuid@9.0.0
                                          +-- iobroker.ws@1.3.0
                                          | +-- @iobroker/adapter-core@2.6.0
                                          | | `-- @types/iobroker@4.0.4
                                          | |   `-- @types/node@12.20.55 deduped
                                          | +-- axios@0.26.1 deduped
                                          | +-- cookie-parser@1.4.6 deduped
                                          | +-- express-session@1.17.3 deduped
                                          | +-- iobroker.ws.server@1.0.1
                                          | | `-- ws@8.8.0 deduped
                                          | `-- passport@0.5.3 deduped
                                          +-- semver@5.7.1
                                          +-- socks-proxy-agent@7.0.0
                                          | +-- agent-base@6.0.2
                                          | | `-- debug@4.3.4
                                          | |   `-- ms@2.1.2
                                          | +-- debug@4.3.4
                                          | | `-- ms@2.1.2
                                          | `-- socks@2.7.1
                                          |   +-- ip@2.0.0
                                          |   `-- smart-buffer@4.2.0
                                          +-- tough-cookie@4.1.2
                                          | +-- psl@1.4.0
                                          | +-- punycode@2.1.1
                                          | +-- universalify@0.2.0
                                          | `-- url-parse@1.5.10
                                          |   +-- querystringify@2.2.0
                                          |   `-- requires-port@1.0.0
                                          +-- utile@0.3.0
                                          | +-- async@0.9.2
                                          | +-- deep-equal@0.2.2
                                          | +-- i@0.3.7
                                          | +-- mkdirp@0.5.6
                                          | | `-- minimist@1.2.8 deduped
                                          | +-- ncp@1.0.1
                                          | `-- rimraf@2.7.1
                                          |   `-- glob@7.2.3
                                          |     +-- fs.realpath@1.0.0
                                          |     +-- inflight@1.0.6
                                          |     | +-- once@1.4.0 deduped
                                          |     | `-- wrappy@1.0.2 deduped
                                          |     +-- inherits@2.0.3 deduped
                                          |     +-- minimatch@3.1.2
                                          |     | `-- brace-expansion@1.1.11
                                          |     |   +-- balanced-match@1.0.2 deduped
                                          |     |   `-- concat-map@0.0.1
                                          |     +-- once@1.4.0 deduped
                                          |     `-- path-is-absolute@1.0.1
                                          `-- yargs@7.1.0
                                            +-- camelcase@3.0.0
                                            +-- cliui@3.2.0
                                            | +-- string-width@1.0.2 deduped
                                            | +-- strip-ansi@3.0.1
                                            | | `-- ansi-regex@2.1.1
                                            | `-- wrap-ansi@2.1.0
                                            |   +-- string-width@1.0.2 deduped
                                            |   `-- strip-ansi@3.0.1 deduped
                                            +-- decamelize@1.2.0
                                            +-- get-caller-file@1.0.3
                                            +-- os-locale@1.4.0
                                            | `-- lcid@1.0.0
                                            |   `-- invert-kv@1.0.0
                                            +-- read-pkg-up@1.0.1
                                            | +-- find-up@1.1.2
                                            | | +-- path-exists@2.1.0
                                            | | | `-- pinkie-promise@2.0.1 deduped
                                            | | `-- pinkie-promise@2.0.1
                                            | |   `-- pinkie@2.0.4
                                            | `-- read-pkg@1.1.0
                                            |   +-- load-json-file@1.1.0
                                            |   | +-- graceful-fs@4.2.3 deduped
                                            |   | +-- parse-json@2.2.0
                                            |   | | `-- error-ex@1.3.2
                                            |   | |   `-- is-arrayish@0.2.1
                                            |   | +-- pify@2.3.0
                                            |   | +-- pinkie-promise@2.0.1 deduped
                                            |   | `-- strip-bom@2.0.0
                                            |   |   `-- is-utf8@0.2.1
                                            |   +-- normalize-package-data@2.5.0
                                            |   | +-- hosted-git-info@2.8.9
                                            |   | +-- resolve@1.12.2
                                            |   | | `-- path-parse@1.0.7
                                            |   | +-- semver@5.7.1 deduped
                                            |   | `-- validate-npm-package-license@3.0.4
                                            |   |   +-- spdx-correct@3.1.0
                                            |   |   | +-- spdx-expression-parse@3.0.0 deduped
                                            |   |   | `-- spdx-license-ids@3.0.5
                                            |   |   `-- spdx-expression-parse@3.0.0
                                            |   |     +-- spdx-exceptions@2.2.0
                                            |   |     `-- spdx-license-ids@3.0.5 deduped
                                            |   `-- path-type@1.1.0
                                            |     +-- graceful-fs@4.2.3 deduped
                                            |     +-- pify@2.3.0 deduped
                                            |     `-- pinkie-promise@2.0.1 deduped
                                            +-- require-directory@2.1.1
                                            +-- require-main-filename@1.0.1
                                            +-- set-blocking@2.0.0
                                            +-- string-width@1.0.2
                                            | +-- code-point-at@1.1.0
                                            | +-- is-fullwidth-code-point@1.0.0
                                            | | `-- number-is-nan@1.0.1
                                            | `-- strip-ansi@3.0.1 deduped
                                            +-- which-module@1.0.0
                                            +-- y18n@3.2.2
                                            `-- yargs-parser@5.0.1
                                              +-- camelcase@3.0.0 deduped
                                              `-- object.assign@4.1.4
                                                +-- call-bind@1.0.2 deduped
                                                +-- define-properties@1.1.4 deduped
                                                +-- has-symbols@1.0.3
                                                `-- object-keys@1.1.1
                                          
                                          npm ERR! code ELSPROBLEMS
                                          npm ERR! invalid: @types/node@14.18.21 C:\iobroker\SmartHome\node_modules\iobroker.javascript\node_modules\@types\node
                                          
                                          npm ERR! A complete log of this run can be found in:
                                          npm ERR!     C:\Users\User\AppData\Local\npm-cache\_logs\2023-02-11T10_22_49_142Z-debug-0.log
                                          
                                          C:\iobroker\SmartHome>
                                          
                                          GaspodeG 1 Antwort Letzte Antwort
                                          0

                                          Hey! Du scheinst an dieser Unterhaltung interessiert zu sein, hast aber noch kein Konto.

                                          Hast du es satt, bei jedem Besuch durch die gleichen Beiträge zu scrollen? Wenn du dich für ein Konto anmeldest, kommst du immer genau dorthin zurück, wo du zuvor warst, und kannst dich über neue Antworten benachrichtigen lassen (entweder per E-Mail oder Push-Benachrichtigung). Du kannst auch Lesezeichen speichern und Beiträge positiv bewerten, um anderen Community-Mitgliedern deine Wertschätzung zu zeigen.

                                          Mit deinem Input könnte dieser Beitrag noch besser werden 💗

                                          Registrieren Anmelden
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate
                                          FAQ Cloud / IOT
                                          HowTo: Node.js-Update
                                          HowTo: Backup/Restore
                                          Downloads
                                          BLOG

                                          581

                                          Online

                                          32.9k

                                          Benutzer

                                          83.0k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Home
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe