update dependencies, add electron fix in package.json (#4175)

The electron install problem is still not fixed upstream so I added 

```json
	"overrides": {
		"yauzl": "^3.3.1"
	},
```

to `package.json`. This should be reverted when fixed upstream.
This commit is contained in:
Karsten Hassel
2026-06-03 08:14:07 +02:00
committed by GitHub
parent 58c2a5e675
commit 4492a83fe9
3 changed files with 885 additions and 649 deletions

View File

@@ -39,7 +39,7 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
node-version: [22.x, 24.15.0, 26.0.0]
node-version: [22.x, 24.x, 26.x]
steps:
- name: Install electron dependencies and labwc
run: |

1499
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -86,11 +86,11 @@
"@fortawesome/fontawesome-free": "^7.2.0",
"animate.css": "^4.1.1",
"croner": "^10.0.1",
"eslint": "^10.4.0",
"eslint": "^10.4.1",
"express": "^5.2.1",
"feedme": "^2.0.2",
"globals": "^17.6.0",
"helmet": "^8.1.0",
"helmet": "^8.2.0",
"html-to-text": "^10.0.0",
"iconv-lite": "^0.7.2",
"ipaddr.js": "^2.4.0",
@@ -100,35 +100,38 @@
"nunjucks": "^3.2.4",
"socket.io": "^4.8.3",
"suncalc": "^1.9.0",
"systeminformation": "^5.31.6",
"systeminformation": "^5.31.7",
"undici": "^8.3.0",
"weathericons": "^2.1.0"
},
"devDependencies": {
"@eslint/css": "^1.2.0",
"@eslint/css": "^1.3.0",
"@eslint/js": "^10.0.1",
"@eslint/markdown": "^8.0.1",
"@eslint/markdown": "^8.0.2",
"@stylistic/eslint-plugin": "^5.10.0",
"@vitest/coverage-v8": "^4.1.6",
"@vitest/eslint-plugin": "^1.6.17",
"@vitest/ui": "^4.1.6",
"cspell": "^10.0.0",
"@vitest/coverage-v8": "^4.1.8",
"@vitest/eslint-plugin": "^1.6.19",
"@vitest/ui": "^4.1.8",
"cspell": "^10.0.1",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-package-json": "^0.91.2",
"eslint-plugin-playwright": "^2.10.2",
"eslint-plugin-jsdoc": "^63.0.1",
"eslint-plugin-package-json": "^1.3.0",
"eslint-plugin-playwright": "^2.10.4",
"express-basic-auth": "^1.2.1",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.5",
"lint-staged": "^17.0.7",
"msw": "^2.14.6",
"playwright": "^1.60.0",
"prettier": "^3.8.3",
"prettier-plugin-jinja-template": "^2.2.0",
"vitest": "^4.1.6"
"vitest": "^4.1.8"
},
"optionalDependencies": {
"electron": "^42.2.0"
"electron": "^42.3.2"
},
"overrides": {
"yauzl": "^3.3.1"
},
"engines": {
"node": ">=22.21.1 <23 || >=24"