gitextract_dh1xzp4m/ ├── .eslintrc.json ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── auto-merge.yml │ ├── copilot-instructions.md │ ├── dependabot.yml │ ├── stale.yml │ └── workflows/ │ ├── codeql.yml │ ├── dependabot-automerge.yml │ └── test-and-release.yml ├── .gitignore ├── .mocharc.json ├── .npmignore ├── .releaseconfig.json ├── LICENSE ├── README.md ├── admin/ │ ├── i18n/ │ │ ├── de/ │ │ │ └── translations.json │ │ ├── en/ │ │ │ └── translations.json │ │ ├── es/ │ │ │ └── translations.json │ │ ├── fr/ │ │ │ └── translations.json │ │ ├── hu/ │ │ │ └── translations.json │ │ ├── it/ │ │ │ └── translations.json │ │ ├── nl/ │ │ │ └── translations.json │ │ ├── pl/ │ │ │ └── translations.json │ │ ├── pt/ │ │ │ └── translations.json │ │ ├── ru/ │ │ │ └── translations.json │ │ ├── uk/ │ │ │ └── translations.json │ │ └── zh-cn/ │ │ └── translations.json │ ├── index_m.html │ └── words.js ├── io-package.json ├── lib/ │ ├── smarthomedevices.js │ └── tools.js ├── main.js ├── package.json └── test/ ├── lib/ │ └── setup.js ├── mocha.setup.js ├── testAdapter.js └── testPackageFiles.js