commit ddb6b4ecfb80c17ec5ed15931914d0f82b89d32e Author: Jalil Arfaoui Date: Wed Feb 11 17:40:13 2026 +0100 Extension GNOME Shell WiFi Signal Plus : affiche la génération WiFi (4/5/6/7) dans la barre avec infos détaillées au survol - Détection WiFi 4 (HT), 5 (VHT), 6 (HE), 7 (EHT) via parsing iw - Infos NetworkManager : SSID, signal, débit, sécurité, bande/canal - Popup avec sections : connexion, performance, signal/sécurité - Couleurs par génération dans la barre (gris/bleu/vert/violet) - 23 tests unitaires pour le parsing iw et la détection de génération - Environnement Nix avec flake.nix, TypeScript, ESLint, Vitest diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..3550a30 --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use flake diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3f7015c --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +# Dependencies +node_modules/ + +# Build output +dist/ + +# IDE +.idea/ +.vscode/ +*.swp +*.swo + +# Nix +.direnv/ +result + +# Test coverage +coverage/ + +# OS +.DS_Store +Thumbs.db diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..76c1561 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,8 @@ +{ + "semi": true, + "singleQuote": true, + "tabWidth": 4, + "trailingComma": "es5", + "printWidth": 100, + "arrowParens": "avoid" +} diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..ab8fc44 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,24 @@ +import eslint from '@eslint/js'; +import tseslint from 'typescript-eslint'; + +export default tseslint.config( + eslint.configs.recommended, + ...tseslint.configs.strict, + ...tseslint.configs.stylistic, + { + languageOptions: { + parserOptions: { + projectService: true, + tsconfigRootDir: import.meta.dirname, + }, + }, + rules: { + '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }], + '@typescript-eslint/explicit-function-return-type': 'off', + '@typescript-eslint/no-non-null-assertion': 'warn', + }, + }, + { + ignores: ['dist/', 'node_modules/', '*.config.js'], + } +); diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..6bae7c7 --- /dev/null +++ b/flake.lock @@ -0,0 +1,61 @@ +{ + "nodes": { + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1769461804, + "narHash": "sha256-msG8SU5WsBUfVVa/9RPLaymvi5bI8edTavbIq3vRlhI=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "bfc1b8a4574108ceef22f02bafcf6611380c100d", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..5c031f4 --- /dev/null +++ b/flake.nix @@ -0,0 +1,48 @@ +{ + description = "WiFi Signal Plus - GNOME Shell Extension"; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + flake-utils.url = "github:numtide/flake-utils"; + }; + + outputs = { self, nixpkgs, flake-utils }: + flake-utils.lib.eachDefaultSystem (system: + let + pkgs = nixpkgs.legacyPackages.${system}; + in + { + devShells.default = pkgs.mkShell { + buildInputs = with pkgs; [ + # Node.js + nodejs_22 + nodePackages.npm + + # Pour l'extension GNOME + glib + gobject-introspection + gnome-shell + + # Outils WiFi + iw + wirelesstools + + # Outils de développement + gnome-extensions-cli + ]; + + shellHook = '' + echo "🛜 WiFi Signal Plus - Dev Environment" + echo "" + echo "Commands:" + echo " npm install - Install dependencies" + echo " npm run build - Build extension" + echo " npm run install-extension - Install to GNOME" + echo " npm run lint - Run ESLint" + echo " npm run test - Run tests" + echo "" + ''; + }; + } + ); +} diff --git a/metadata.json b/metadata.json new file mode 100644 index 0000000..97f874b --- /dev/null +++ b/metadata.json @@ -0,0 +1,8 @@ +{ + "uuid": "wifi-signal-plus@music-music.music", + "name": "WiFi Signal Plus", + "description": "Displays WiFi generation (4/5/6/7) in the top bar with detailed connection info on hover", + "shell-version": ["45", "46", "47", "48", "49"], + "version": 1, + "url": "https://github.com/music-music/wifi-signal-plus" +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..28e31c4 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,3669 @@ +{ + "name": "wifi-signal-plus", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "wifi-signal-plus", + "version": "1.0.0", + "devDependencies": { + "@eslint/js": "^9.19.0", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gnome-shell": "^49.1.0", + "@girs/nm-1.0": "1.49.4-4.0.0-beta.38", + "eslint": "^9.19.0", + "prettier": "^3.4.2", + "typescript": "^5.7.3", + "typescript-eslint": "^8.22.0", + "vitest": "^3.0.4" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.2.tgz", + "integrity": "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.2.tgz", + "integrity": "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.2.tgz", + "integrity": "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.2.tgz", + "integrity": "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz", + "integrity": "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.2.tgz", + "integrity": "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.2.tgz", + "integrity": "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.2.tgz", + "integrity": "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.2.tgz", + "integrity": "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.2.tgz", + "integrity": "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.2.tgz", + "integrity": "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.2.tgz", + "integrity": "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.2.tgz", + "integrity": "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.2.tgz", + "integrity": "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.2.tgz", + "integrity": "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.2.tgz", + "integrity": "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.2.tgz", + "integrity": "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.2.tgz", + "integrity": "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.2.tgz", + "integrity": "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.2.tgz", + "integrity": "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.2.tgz", + "integrity": "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.2.tgz", + "integrity": "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.2.tgz", + "integrity": "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.2.tgz", + "integrity": "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.2.tgz", + "integrity": "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.2.tgz", + "integrity": "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz", + "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz", + "integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.2", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.2.tgz", + "integrity": "sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@girs/accountsservice-1.0": { + "version": "1.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/accountsservice-1.0/-/accountsservice-1.0-1.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-6QzytM5dztmMynF2bxN73EuNK9ArMFxkP2L8wUC7IH45zBeBOfYcqL85BFh2PmkGmqRk+Rli5EFR8dAkx3Ig5Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/adw-1": { + "version": "1.9.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/adw-1/-/adw-1-1.9.0-4.0.0-beta.38.tgz", + "integrity": "sha512-d9tPlKWLpI3gEz72s1G3tX57nNCQjLopOy6I3CNucOmqlF2PFC4f+Ubq8BOMrVFqbTOl/HkAu7vfGuRP+FjHNQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/cairo-1.0": "1.0.0-4.0.0-beta.38", + "@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gdk-4.0": "4.0.0-4.0.0-beta.38", + "@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/graphene-1.0": "1.0.0-4.0.0-beta.38", + "@girs/gsk-4.0": "4.0.0-4.0.0-beta.38", + "@girs/gtk-4.0": "4.20.1-4.0.0-beta.38", + "@girs/harfbuzz-0.0": "11.5.0-4.0.0-beta.38", + "@girs/pango-1.0": "1.57.0-4.0.0-beta.38", + "@girs/pangocairo-1.0": "1.0.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/atk-1.0": { + "version": "2.58.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/atk-1.0/-/atk-1.0-2.58.0-4.0.0-beta.38.tgz", + "integrity": "sha512-rfLlLlAecHE1uAqK81DHZT27E1nVwN/pAHtgbgDUcu70UdHoCYAsQymLjk/tuDcTX0Lwp6U9x6w+GHG1sbYlQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/cairo-1.0": { + "version": "1.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/cairo-1.0/-/cairo-1.0-1.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-VJa0vw9teZjCydDzWIcbNBwT37MSej52rqwBuQ/ir7+72+7dpzeudkNOOif1nDIulGu+RLAy4cgWbguQhsUH/Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/clutter-17": { + "version": "17.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/clutter-17/-/clutter-17-17.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-RMEuc08wCaqIc3UcGdJr183kcN7VD0Q2v5WLczK9/Hn2gfo7xcc+BWjPcsSu4SuBpJPwF248jc+2IBbdXBGbCA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/atk-1.0": "2.58.0-4.0.0-beta.38", + "@girs/cairo-1.0": "1.0.0-4.0.0-beta.38", + "@girs/cogl-17": "17.0.0-4.0.0-beta.38", + "@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/gl-1.0": "1.0.0-4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/graphene-1.0": "1.0.0-4.0.0-beta.38", + "@girs/harfbuzz-0.0": "11.5.0-4.0.0-beta.38", + "@girs/mtk-17": "17.0.0-4.0.0-beta.38", + "@girs/pango-1.0": "1.57.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/cogl-17": { + "version": "17.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/cogl-17/-/cogl-17-17.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-fj4lZ07ZfcOwXAE/orU6cfP3Tlf1LUhfEgVFE3CAQs6nfSOtWzPYDzcaWmg4fYd6CA7iP1NmXh3slCxhzcbuJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/gl-1.0": "1.0.0-4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/graphene-1.0": "1.0.0-4.0.0-beta.38", + "@girs/mtk-17": "17.0.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/cogl-2.0": { + "version": "2.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/cogl-2.0/-/cogl-2.0-2.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-CgCDd2htvMjLXkUaDrfpFhpw7XVBs9eEQpNVXhU6A8NXxN/FetLt7y9sPiwSWtlL3WYxLqO3Zn0hKR5j7CRAVA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/gl-1.0": "1.0.0-4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/freetype2-2.0": { + "version": "2.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/freetype2-2.0/-/freetype2-2.0-2.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-543dlQheKHSVWIatqHNBiLceIWYzIJDXvofR3PfgarKMMi0IRkn1TndzxUxsLC4Eu24KgOKGZYjU1YPUMVGbgg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gck-2": { + "version": "4.4.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gck-2/-/gck-2-4.4.0-4.0.0-beta.38.tgz", + "integrity": "sha512-yy8TDv4G4SsM1U7sfKf07A01YxD5DpUN4eHEQodj6NzgXogdaeS/vmM7clChedlw0LkOebn68JVIfTja3rJLJw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gcr-4": { + "version": "4.4.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gcr-4/-/gcr-4-4.4.0-4.0.0-beta.38.tgz", + "integrity": "sha512-dGEWwPhGWRBNgoI/TzX0whcGsKEbx9VXAcOWJdyHiB7HUefeECWxGHlcWK8NZD6mr0jhln+RjFiv/tB1QKUUDw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gck-2": "4.4.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gdesktopenums-3.0": { + "version": "3.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gdesktopenums-3.0/-/gdesktopenums-3.0-3.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-wOwzQ6Q2RQxuWY/oe4yiDqtNV2TrLosteu698asWum4R3BLRIks3oVOghpTMlgKeA54fkvqOQ165E1OOAoW8YQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gdk-4.0": { + "version": "4.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gdk-4.0/-/gdk-4.0-4.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-hk6SG4pCcezKp2VNxJc0TC1gkZe3C8shD8sRQ3bUGyWl/9581WM2/8UU+W6fOf3SwXA1hquN6d3SjKbqkFNRKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/cairo-1.0": "1.0.0-4.0.0-beta.38", + "@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/harfbuzz-0.0": "11.5.0-4.0.0-beta.38", + "@girs/pango-1.0": "1.57.0-4.0.0-beta.38", + "@girs/pangocairo-1.0": "1.0.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gdkpixbuf-2.0": { + "version": "2.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gdkpixbuf-2.0/-/gdkpixbuf-2.0-2.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-L8NE18rhj100lRGMnf7lNUdr6pHw2co1UtExxDnglba5lNee4NoyF/u8g4Mk3toPU0fAu+ug91HJ4o2mIJd7MQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gdm-1.0": { + "version": "1.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gdm-1.0/-/gdm-1.0-1.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-THhxqOlt75mv3PmmLMe0Y5wdXIf0XbIIKuBuScSFO+3Vp5sgHJz+UXfktVzwKKCTN4PkAU01zBlMW6gRsyLsQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gio-2.0": { + "version": "2.86.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gio-2.0/-/gio-2.0-2.86.0-4.0.0-beta.38.tgz", + "integrity": "sha512-hKCyDEqSIgqcZeFf63KNrUnrYtAuJ0yfIypbdLgNEMbJBPQ/e3ZiwzWa7i3OPCh52Cnl9qYRdj8MSbZndpyZiQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/giounix-2.0": { + "version": "2.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/giounix-2.0/-/giounix-2.0-2.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-dSEbx3f/qFQTJLDFYy8DK5YRMtNc3RnWTuTaaKVN8FMeTiJRLVED+uv5LLR1zvjGac0R1mg0wqpwRTybVhfUXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gjs": { + "version": "4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gjs/-/gjs-4.0.0-beta.38.tgz", + "integrity": "sha512-eI/9lfI1mQpXN8RsKiNRFWJso6LgQe9Eb+YxLAdKarD5fccvIRx3chsyIyhw5tYH7VvgaZkqm1c4GX7pDDokBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/cairo-1.0": "1.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gl-1.0": { + "version": "1.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gl-1.0/-/gl-1.0-1.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-ZcqPtWLEoaQraYgfhpk8tUAOCVp4aSOBdr+7XB/HhmTiG80hLktc11n1ETPFlTfeUhsnvBLhejZBax9diWLVcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/glib-2.0": { + "version": "2.86.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/glib-2.0/-/glib-2.0-2.86.0-4.0.0-beta.38.tgz", + "integrity": "sha512-TFbrh5+Y3pb61synbhi37VrRzh0e+JQaRCzfGbe7oewUq0v7Sb8eSi2Fmj98r5tCizaRYptqgt6bxG7G5cFzVg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gmodule-2.0": { + "version": "2.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gmodule-2.0/-/gmodule-2.0-2.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-BmspJtwdBSfCJRZQMxn3gx6H9FNcoqCebFXK2UKknq18DIo8U2q4iN/jQBWPoLh2siK9LhCdL2egoyXteTy1NA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gnome-shell": { + "version": "49.1.0", + "resolved": "https://registry.npmjs.org/@girs/gnome-shell/-/gnome-shell-49.1.0.tgz", + "integrity": "sha512-14Re6+DIrozWOErzW9fqvTAn0o9/1rMZuSDQ7BPIC+MYxmNmIlqzjo0kecbkXMN4ZY1zRpgfahbkiFwjJYZmfQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/accountsservice-1.0": "1.0.0-4.0.0-beta.38", + "@girs/adw-1": "^1.9.0-4.0.0-beta.38", + "@girs/atk-1.0": "^2.58.0-4.0.0-beta.38", + "@girs/clutter-17": "^17.0.0-4.0.0-beta.38", + "@girs/cogl-2.0": "^2.0.0-4.0.0-beta.38", + "@girs/gcr-4": "^4.4.0-4.0.0-beta.38", + "@girs/gdm-1.0": "^1.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "^2.86.0-4.0.0-beta.38", + "@girs/giounix-2.0": "^2.0.0-4.0.0-beta.38", + "@girs/gjs": "^4.0.0-beta.38", + "@girs/glib-2.0": "^2.86.0-4.0.0-beta.38", + "@girs/gnomebg-4.0": "^4.0.0-4.0.0-beta.38", + "@girs/gnomebluetooth-3.0": "^3.0.0-4.0.0-beta.38", + "@girs/gnomedesktop-4.0": "^4.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "^2.86.0-4.0.0-beta.38", + "@girs/gtk-4.0": "^4.20.1-4.0.0-beta.38", + "@girs/gvc-1.0": "^1.0.0-4.0.0-beta.38", + "@girs/meta-17": "^17.0.0-4.0.0-beta.38", + "@girs/mtk-17": "^17.0.0-4.0.0-beta.38", + "@girs/polkit-1.0": "^1.0.0-4.0.0-beta.38", + "@girs/shell-17": "^17.0.0-4.0.0-beta.38", + "@girs/shew-0": "^0.0.0-4.0.0-beta.38", + "@girs/st-17": "^17.0.0-4.0.0-beta.38", + "@girs/upowerglib-1.0": "^0.99.1-4.0.0-beta.38" + } + }, + "node_modules/@girs/gnomebg-4.0": { + "version": "4.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gnomebg-4.0/-/gnomebg-4.0-4.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-cTJIgX9ybCUIXJ0yDaBRICIAHoApqcjDdtSgbbYJQdRs7HCGPocblA9UP7Bmp155U/p4UIR2WMqpS+ttVbWBew==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/cairo-1.0": "1.0.0-4.0.0-beta.38", + "@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gdesktopenums-3.0": "3.0.0-4.0.0-beta.38", + "@girs/gdk-4.0": "4.0.0-4.0.0-beta.38", + "@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gnomedesktop-4.0": "4.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/harfbuzz-0.0": "11.5.0-4.0.0-beta.38", + "@girs/pango-1.0": "1.57.0-4.0.0-beta.38", + "@girs/pangocairo-1.0": "1.0.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gnomebluetooth-3.0": { + "version": "3.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gnomebluetooth-3.0/-/gnomebluetooth-3.0-3.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-39h4y38Rw2BvMWj190zJhDoT5Ehnh4XsX5vqt1Ix88oFOtZ7hdxVQWJ4Vxg0nYMwKN3SIqGA1KeaGcwfeOYVXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gnomedesktop-4.0": { + "version": "4.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gnomedesktop-4.0/-/gnomedesktop-4.0-4.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-dVeHh4R3HlWQ1Up9N1V09cMiOXst073WQFJ3pJfmJ45RkbJLLlNZrLjO5+e1GUyF9Bq1NzDgTBOUR4xCIIW6dw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gdesktopenums-3.0": "3.0.0-4.0.0-beta.38", + "@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gobject-2.0": { + "version": "2.86.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gobject-2.0/-/gobject-2.0-2.86.0-4.0.0-beta.38.tgz", + "integrity": "sha512-oYrm6Gb/tCQosMkN8Beu5jqGRkJ7LED4O1H1dKYOI4SnP1Ojb66A9ECy78yTO8piBtMopsbRODV81yKniVtKKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/graphene-1.0": { + "version": "1.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/graphene-1.0/-/graphene-1.0-1.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-zqCyLXFqsOJtCnwUR6lI6HBVdaJ6aKsA25y+6xK2dFO/NChOjH0hmBuVyTQiyLe+4jGW700o+uYIYlrpEXT/7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gsk-4.0": { + "version": "4.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gsk-4.0/-/gsk-4.0-4.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-BfYpVfmKjD7Tq58W5p9fcU6Mvg3QcNRjJ1oQn05d/Xk1rjQmsk6tkcTkK3i/KIOhA9eVadQsMlFFWuN0KBE5Dw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/cairo-1.0": "1.0.0-4.0.0-beta.38", + "@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gdk-4.0": "4.0.0-4.0.0-beta.38", + "@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/graphene-1.0": "1.0.0-4.0.0-beta.38", + "@girs/harfbuzz-0.0": "11.5.0-4.0.0-beta.38", + "@girs/pango-1.0": "1.57.0-4.0.0-beta.38", + "@girs/pangocairo-1.0": "1.0.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gtk-4.0": { + "version": "4.20.1-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gtk-4.0/-/gtk-4.0-4.20.1-4.0.0-beta.38.tgz", + "integrity": "sha512-lNujJDta1YK3/9Inp5HrtF/JOMN5EmD+3U7diRTyWNzc2KdaN2jO2mk90taaGK28xhoCC+VESkFkQAgFTwZXWw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/cairo-1.0": "1.0.0-4.0.0-beta.38", + "@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gdk-4.0": "4.0.0-4.0.0-beta.38", + "@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/graphene-1.0": "1.0.0-4.0.0-beta.38", + "@girs/gsk-4.0": "4.0.0-4.0.0-beta.38", + "@girs/harfbuzz-0.0": "11.5.0-4.0.0-beta.38", + "@girs/pango-1.0": "1.57.0-4.0.0-beta.38", + "@girs/pangocairo-1.0": "1.0.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/gvc-1.0": { + "version": "1.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/gvc-1.0/-/gvc-1.0-1.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-AUJ+6Aj7y9Q/3RYTCQJBtr1sckUodwJaE3ue1Ap7bCOy/ybiZdCGlucJqSfpT8B3VV5SUztqlxEcOhyGgpvtNQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/harfbuzz-0.0": { + "version": "11.5.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/harfbuzz-0.0/-/harfbuzz-0.0-11.5.0-4.0.0-beta.38.tgz", + "integrity": "sha512-XRf/neZYpEkinNZ8SCRKIao3RNVJzMeYcjuO1b1tbqVCrN7uVZ+MIaDW5NjWKi0K6IQSyZWdDgkzrtOrIN4CWQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/meta-17": { + "version": "17.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/meta-17/-/meta-17-17.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-mP2q0hcVSuEzdavw6Lp3X5dHnG5F5B37GN0JAKX8v3jnpJ28HlcrsadtW9SmCmX5EHDc5pVyslcnNoF3YD1fJQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/atk-1.0": "2.58.0-4.0.0-beta.38", + "@girs/cairo-1.0": "1.0.0-4.0.0-beta.38", + "@girs/clutter-17": "17.0.0-4.0.0-beta.38", + "@girs/cogl-17": "17.0.0-4.0.0-beta.38", + "@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gdesktopenums-3.0": "3.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/gl-1.0": "1.0.0-4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/graphene-1.0": "1.0.0-4.0.0-beta.38", + "@girs/harfbuzz-0.0": "11.5.0-4.0.0-beta.38", + "@girs/mtk-17": "17.0.0-4.0.0-beta.38", + "@girs/pango-1.0": "1.57.0-4.0.0-beta.38", + "@girs/xfixes-4.0": "4.0.0-4.0.0-beta.38", + "@girs/xlib-2.0": "2.0.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/mtk-17": { + "version": "17.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/mtk-17/-/mtk-17-17.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-1uTef46Q2rjjsSaUXJnKdN3vZC8dktn1xX1mpwaTDbSyZ85Og9DGa95N1ZJFSRqmXuR3roYh6m5WxhoF59E9zA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/graphene-1.0": "1.0.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/nm-1.0": { + "version": "1.49.4-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/nm-1.0/-/nm-1.0-1.49.4-4.0.0-beta.38.tgz", + "integrity": "sha512-m0+qaufIW4LLrz7yx2qLCryF1Oq6MTzvLXb28KGv1iA99WVr+74ytGgUbvxCAh3fbPErSb1UCpemLr/7SmwT4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/pango-1.0": { + "version": "1.57.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/pango-1.0/-/pango-1.0-1.57.0-4.0.0-beta.38.tgz", + "integrity": "sha512-fnTzVVhKb4XjGrnuqk9X++KDe2bk84Hg5472O2UrtIT1A6dzMS6gWhSvaw0ULZH/Ypj9WN12B0oceWynR6unLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/cairo-1.0": "1.0.0-4.0.0-beta.38", + "@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/harfbuzz-0.0": "11.5.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/pangocairo-1.0": { + "version": "1.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/pangocairo-1.0/-/pangocairo-1.0-1.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-BY4rEgQW0H1c/24v+FGBjSZgZ6rk2Y4+ka9/WldUs74N1ZOh6nS4lHKUyy0antylQ7x0Fnw5UHgN0PbpdjkGuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/cairo-1.0": "1.0.0-4.0.0-beta.38", + "@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/harfbuzz-0.0": "11.5.0-4.0.0-beta.38", + "@girs/pango-1.0": "1.57.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/polkit-1.0": { + "version": "1.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/polkit-1.0/-/polkit-1.0-1.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-jcz4/vUtchFQyM3OjSzpEAahsZ2/TGttgxcuxDeEGUMXrIjh7YC4w1oq2CLsRbTyVe843ZLNEkmR+dNGsAMfvQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/polkitagent-1.0": { + "version": "1.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/polkitagent-1.0/-/polkitagent-1.0-1.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-I4v8/4ID0nGm7z6muGr3KxdavMFTEZbCw5vTXfenRx6hptIjed3XspExY4komxO03ImGUQ9e+bsC0g2gSvMesg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/polkit-1.0": "1.0.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/shell-17": { + "version": "17.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/shell-17/-/shell-17-17.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-9NKUpq55Sp1XTnu8qAOr6mD0fpMS080BZIWaEpD7RplI38GL0UOmusME5DBkrCtPYoL08ZrQDnBy5w8FYhaWIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/atk-1.0": "2.58.0-4.0.0-beta.38", + "@girs/cairo-1.0": "1.0.0-4.0.0-beta.38", + "@girs/clutter-17": "17.0.0-4.0.0-beta.38", + "@girs/cogl-17": "17.0.0-4.0.0-beta.38", + "@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gck-2": "4.4.0-4.0.0-beta.38", + "@girs/gcr-4": "4.4.0-4.0.0-beta.38", + "@girs/gdesktopenums-3.0": "3.0.0-4.0.0-beta.38", + "@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/giounix-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/gl-1.0": "1.0.0-4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/graphene-1.0": "1.0.0-4.0.0-beta.38", + "@girs/gvc-1.0": "1.0.0-4.0.0-beta.38", + "@girs/harfbuzz-0.0": "11.5.0-4.0.0-beta.38", + "@girs/meta-17": "17.0.0-4.0.0-beta.38", + "@girs/mtk-17": "17.0.0-4.0.0-beta.38", + "@girs/nm-1.0": "1.49.4-4.0.0-beta.38", + "@girs/pango-1.0": "1.57.0-4.0.0-beta.38", + "@girs/polkit-1.0": "1.0.0-4.0.0-beta.38", + "@girs/polkitagent-1.0": "1.0.0-4.0.0-beta.38", + "@girs/st-17": "17.0.0-4.0.0-beta.38", + "@girs/xfixes-4.0": "4.0.0-4.0.0-beta.38", + "@girs/xlib-2.0": "2.0.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/shew-0": { + "version": "0.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/shew-0/-/shew-0-0.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-tNnIRXseBBrVXk2v5t5MkSM23sAcNvnUMrLLEJYyjn2iTmspImvIT/0s8obPkJk2rK+TwP3nlgPjJILkUDWnaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/cairo-1.0": "1.0.0-4.0.0-beta.38", + "@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gdk-4.0": "4.0.0-4.0.0-beta.38", + "@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/graphene-1.0": "1.0.0-4.0.0-beta.38", + "@girs/gsk-4.0": "4.0.0-4.0.0-beta.38", + "@girs/gtk-4.0": "4.20.1-4.0.0-beta.38", + "@girs/harfbuzz-0.0": "11.5.0-4.0.0-beta.38", + "@girs/pango-1.0": "1.57.0-4.0.0-beta.38", + "@girs/pangocairo-1.0": "1.0.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/st-17": { + "version": "17.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/st-17/-/st-17-17.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-AGW+9E2SRZl1fD1q7iiDSaeR8AWV8zxYnlMixjoSGDP+MYiG2tb15l5dERZiszDUoIe0s8COvVbzfLp1ocSSlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/atk-1.0": "2.58.0-4.0.0-beta.38", + "@girs/cairo-1.0": "1.0.0-4.0.0-beta.38", + "@girs/clutter-17": "17.0.0-4.0.0-beta.38", + "@girs/cogl-17": "17.0.0-4.0.0-beta.38", + "@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gdesktopenums-3.0": "3.0.0-4.0.0-beta.38", + "@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/gl-1.0": "1.0.0-4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38", + "@girs/graphene-1.0": "1.0.0-4.0.0-beta.38", + "@girs/harfbuzz-0.0": "11.5.0-4.0.0-beta.38", + "@girs/meta-17": "17.0.0-4.0.0-beta.38", + "@girs/mtk-17": "17.0.0-4.0.0-beta.38", + "@girs/pango-1.0": "1.57.0-4.0.0-beta.38", + "@girs/xfixes-4.0": "4.0.0-4.0.0-beta.38", + "@girs/xlib-2.0": "2.0.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/upowerglib-1.0": { + "version": "0.99.1-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/upowerglib-1.0/-/upowerglib-1.0-0.99.1-4.0.0-beta.38.tgz", + "integrity": "sha512-tZTnoX4S1HbmgwsZfSWrs3uD+KKPdNX+YkEiu9Zz92dt6dPopV0oHa+10auo06hPjZbwaUMgTlGZ9bofeQCw6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gjs": "4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/xfixes-4.0": { + "version": "4.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/xfixes-4.0/-/xfixes-4.0-4.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-wca07voYv60UdTCCr8gPJ9GARR+GZyLu6grZZs/GftZ0w00VP3NQK2kJedi28EGwK3Row2nQtsCtQHZGrXH/VA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@girs/xlib-2.0": { + "version": "2.0.0-4.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@girs/xlib-2.0/-/xlib-2.0-2.0.0-4.0.0-beta.38.tgz", + "integrity": "sha512-PK3s6NowmlY65E/Y9BqwR1lVKsZSWQJm/za1I47SvL1IVWcEHYWRZdDtYZjfmbUlUqqKkfoMt+bUCmhmQk/eYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.7", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.57.0.tgz", + "integrity": "sha512-tPgXB6cDTndIe1ah7u6amCI1T0SsnlOuKgg10Xh3uizJk4e5M1JGaUMk7J4ciuAUcFpbOiNhm2XIjP9ON0dUqA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.57.0.tgz", + "integrity": "sha512-sa4LyseLLXr1onr97StkU1Nb7fWcg6niokTwEVNOO7awaKaoRObQ54+V/hrF/BP1noMEaaAW6Fg2d/CfLiq3Mg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.57.0.tgz", + "integrity": "sha512-/NNIj9A7yLjKdmkx5dC2XQ9DmjIECpGpwHoGmA5E1AhU0fuICSqSWScPhN1yLCkEdkCwJIDu2xIeLPs60MNIVg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.57.0.tgz", + "integrity": "sha512-xoh8abqgPrPYPr7pTYipqnUi1V3em56JzE/HgDgitTqZBZ3yKCWI+7KUkceM6tNweyUKYru1UMi7FC060RyKwA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.57.0.tgz", + "integrity": "sha512-PCkMh7fNahWSbA0OTUQ2OpYHpjZZr0hPr8lId8twD7a7SeWrvT3xJVyza+dQwXSSq4yEQTMoXgNOfMCsn8584g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.57.0.tgz", + "integrity": "sha512-1j3stGx+qbhXql4OCDZhnK7b01s6rBKNybfsX+TNrEe9JNq4DLi1yGiR1xW+nL+FNVvI4D02PUnl6gJ/2y6WJA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.57.0.tgz", + "integrity": "sha512-eyrr5W08Ms9uM0mLcKfM/Uzx7hjhz2bcjv8P2uynfj0yU8GGPdz8iYrBPhiLOZqahoAMB8ZiolRZPbbU2MAi6Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.57.0.tgz", + "integrity": "sha512-Xds90ITXJCNyX9pDhqf85MKWUI4lqjiPAipJ8OLp8xqI2Ehk+TCVhF9rvOoN8xTbcafow3QOThkNnrM33uCFQA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.57.0.tgz", + "integrity": "sha512-Xws2KA4CLvZmXjy46SQaXSejuKPhwVdaNinldoYfqruZBaJHqVo6hnRa8SDo9z7PBW5x84SH64+izmldCgbezw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.57.0.tgz", + "integrity": "sha512-hrKXKbX5FdaRJj7lTMusmvKbhMJSGWJ+w++4KmjiDhpTgNlhYobMvKfDoIWecy4O60K6yA4SnztGuNTQF+Lplw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.57.0.tgz", + "integrity": "sha512-6A+nccfSDGKsPm00d3xKcrsBcbqzCTAukjwWK6rbuAnB2bHaL3r9720HBVZ/no7+FhZLz/U3GwwZZEh6tOSI8Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.57.0.tgz", + "integrity": "sha512-4P1VyYUe6XAJtQH1Hh99THxr0GKMMwIXsRNOceLrJnaHTDgk1FTcTimDgneRJPvB3LqDQxUmroBclQ1S0cIJwQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.57.0.tgz", + "integrity": "sha512-8Vv6pLuIZCMcgXre6c3nOPhE0gjz1+nZP6T+hwWjr7sVH8k0jRkH+XnfjjOTglyMBdSKBPPz54/y1gToSKwrSQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.57.0.tgz", + "integrity": "sha512-r1te1M0Sm2TBVD/RxBPC6RZVwNqUTwJTA7w+C/IW5v9Ssu6xmxWEi+iJQlpBhtUiT1raJ5b48pI8tBvEjEFnFA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.57.0.tgz", + "integrity": "sha512-say0uMU/RaPm3CDQLxUUTF2oNWL8ysvHkAjcCzV2znxBr23kFfaxocS9qJm+NdkRhF8wtdEEAJuYcLPhSPbjuQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.57.0.tgz", + "integrity": "sha512-/MU7/HizQGsnBREtRpcSbSV1zfkoxSTR7wLsRmBPQ8FwUj5sykrP1MyJTvsxP5KBq9SyE6kH8UQQQwa0ASeoQQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.57.0.tgz", + "integrity": "sha512-Q9eh+gUGILIHEaJf66aF6a414jQbDnn29zeu0eX3dHMuysnhTvsUvZTCAyZ6tJhUjnvzBKE4FtuaYxutxRZpOg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.57.0.tgz", + "integrity": "sha512-OR5p5yG5OKSxHReWmwvM0P+VTPMwoBS45PXTMYaskKQqybkS3Kmugq1W+YbNWArF8/s7jQScgzXUhArzEQ7x0A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.57.0.tgz", + "integrity": "sha512-XeatKzo4lHDsVEbm1XDHZlhYZZSQYym6dg2X/Ko0kSFgio+KXLsxwJQprnR48GvdIKDOpqWqssC3iBCjoMcMpw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.57.0.tgz", + "integrity": "sha512-Lu71y78F5qOfYmubYLHPcJm74GZLU6UJ4THkf/a1K7Tz2ycwC2VUbsqbJAXaR6Bx70SRdlVrt2+n5l7F0agTUw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.57.0.tgz", + "integrity": "sha512-v5xwKDWcu7qhAEcsUubiav7r+48Uk/ENWdr82MBZZRIm7zThSxCIVDfb3ZeRRq9yqk+oIzMdDo6fCcA5DHfMyA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.57.0.tgz", + "integrity": "sha512-XnaaaSMGSI6Wk8F4KK3QP7GfuuhjGchElsVerCplUuxRIzdvZ7hRBpLR0omCmw+kI2RFJB80nenhOoGXlJ5TfQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.57.0.tgz", + "integrity": "sha512-3K1lP+3BXY4t4VihLw5MEg6IZD3ojSYzqzBG571W3kNQe4G4CcFpSUQVgurYgib5d+YaCjeFow8QivWp8vuSvA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.57.0.tgz", + "integrity": "sha512-MDk610P/vJGc5L5ImE4k5s+GZT3en0KoK1MKPXCRgzmksAMk79j4h3k1IerxTNqwDLxsGxStEZVBqG0gIqZqoA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.57.0.tgz", + "integrity": "sha512-Zv7v6q6aV+VslnpwzqKAmrk5JdVkLUzok2208ZXGipjb+msxBr/fJPZyeEXiFgH7k62Ak0SLIfxQRZQvTuf7rQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/chai": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz", + "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/deep-eql": "*", + "assertion-error": "^2.0.1" + } + }, + "node_modules/@types/deep-eql": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz", + "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.54.0.tgz", + "integrity": "sha512-hAAP5io/7csFStuOmR782YmTthKBJ9ND3WVL60hcOjvtGFb+HJxH4O5huAcmcZ9v9G8P+JETiZ/G1B8MALnWZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.12.2", + "@typescript-eslint/scope-manager": "8.54.0", + "@typescript-eslint/type-utils": "8.54.0", + "@typescript-eslint/utils": "8.54.0", + "@typescript-eslint/visitor-keys": "8.54.0", + "ignore": "^7.0.5", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.54.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.54.0.tgz", + "integrity": "sha512-BtE0k6cjwjLZoZixN0t5AKP0kSzlGu7FctRXYuPAm//aaiZhmfq1JwdYpYr1brzEspYyFeF+8XF5j2VK6oalrA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.54.0", + "@typescript-eslint/types": "8.54.0", + "@typescript-eslint/typescript-estree": "8.54.0", + "@typescript-eslint/visitor-keys": "8.54.0", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.54.0.tgz", + "integrity": "sha512-YPf+rvJ1s7MyiWM4uTRhE4DvBXrEV+d8oC3P9Y2eT7S+HBS0clybdMIPnhiATi9vZOYDc7OQ1L/i6ga6NFYK/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.54.0", + "@typescript-eslint/types": "^8.54.0", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.54.0.tgz", + "integrity": "sha512-27rYVQku26j/PbHYcVfRPonmOlVI6gihHtXFbTdB5sb6qA0wdAQAbyXFVarQ5t4HRojIz64IV90YtsjQSSGlQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.54.0", + "@typescript-eslint/visitor-keys": "8.54.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.54.0.tgz", + "integrity": "sha512-dRgOyT2hPk/JwxNMZDsIXDgyl9axdJI3ogZ2XWhBPsnZUv+hPesa5iuhdYt2gzwA9t8RE5ytOJ6xB0moV0Ujvw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.54.0.tgz", + "integrity": "sha512-hiLguxJWHjjwL6xMBwD903ciAwd7DmK30Y9Axs/etOkftC3ZNN9K44IuRD/EB08amu+Zw6W37x9RecLkOo3pMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.54.0", + "@typescript-eslint/typescript-estree": "8.54.0", + "@typescript-eslint/utils": "8.54.0", + "debug": "^4.4.3", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.54.0.tgz", + "integrity": "sha512-PDUI9R1BVjqu7AUDsRBbKMtwmjWcn4J3le+5LpcFgWULN3LvHC5rkc9gCVxbrsrGmO1jfPybN5s6h4Jy+OnkAA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.54.0.tgz", + "integrity": "sha512-BUwcskRaPvTk6fzVWgDPdUndLjB87KYDrN5EYGetnktoeAvPtO4ONHlAZDnj5VFnUANg0Sjm7j4usBlnoVMHwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.54.0", + "@typescript-eslint/tsconfig-utils": "8.54.0", + "@typescript-eslint/types": "8.54.0", + "@typescript-eslint/visitor-keys": "8.54.0", + "debug": "^4.4.3", + "minimatch": "^9.0.5", + "semver": "^7.7.3", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.54.0.tgz", + "integrity": "sha512-9Cnda8GS57AQakvRyG0PTejJNlA2xhvyNtEVIMlDWOOeEyBkYWhGPnfrIAnqxLMTSTo6q8g12XVjjev5l1NvMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.9.1", + "@typescript-eslint/scope-manager": "8.54.0", + "@typescript-eslint/types": "8.54.0", + "@typescript-eslint/typescript-estree": "8.54.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.54.0.tgz", + "integrity": "sha512-VFlhGSl4opC0bprJiItPQ1RfUhGDIBokcPwaFH4yiBCaNPeld/9VeXbiPO1cLyorQi1G1vL+ecBk1x8o1axORA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.54.0", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vitest/expect": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.2.4.tgz", + "integrity": "sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/chai": "^5.2.2", + "@vitest/spy": "3.2.4", + "@vitest/utils": "3.2.4", + "chai": "^5.2.0", + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/mocker": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-3.2.4.tgz", + "integrity": "sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "3.2.4", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.17" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "node_modules/@vitest/pretty-format": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.2.4.tgz", + "integrity": "sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/runner": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-3.2.4.tgz", + "integrity": "sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "3.2.4", + "pathe": "^2.0.3", + "strip-literal": "^3.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/snapshot": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-3.2.4.tgz", + "integrity": "sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "3.2.4", + "magic-string": "^0.30.17", + "pathe": "^2.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/spy": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.2.4.tgz", + "integrity": "sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyspy": "^4.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/utils": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.2.4.tgz", + "integrity": "sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "3.2.4", + "loupe": "^3.1.4", + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/chai": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.3.3.tgz", + "integrity": "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/check-error": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.3.tgz", + "integrity": "sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-eql": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/es-module-lexer": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", + "dev": true, + "license": "MIT" + }, + "node_modules/esbuild": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.2.tgz", + "integrity": "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.2", + "@esbuild/android-arm": "0.27.2", + "@esbuild/android-arm64": "0.27.2", + "@esbuild/android-x64": "0.27.2", + "@esbuild/darwin-arm64": "0.27.2", + "@esbuild/darwin-x64": "0.27.2", + "@esbuild/freebsd-arm64": "0.27.2", + "@esbuild/freebsd-x64": "0.27.2", + "@esbuild/linux-arm": "0.27.2", + "@esbuild/linux-arm64": "0.27.2", + "@esbuild/linux-ia32": "0.27.2", + "@esbuild/linux-loong64": "0.27.2", + "@esbuild/linux-mips64el": "0.27.2", + "@esbuild/linux-ppc64": "0.27.2", + "@esbuild/linux-riscv64": "0.27.2", + "@esbuild/linux-s390x": "0.27.2", + "@esbuild/linux-x64": "0.27.2", + "@esbuild/netbsd-arm64": "0.27.2", + "@esbuild/netbsd-x64": "0.27.2", + "@esbuild/openbsd-arm64": "0.27.2", + "@esbuild/openbsd-x64": "0.27.2", + "@esbuild/openharmony-arm64": "0.27.2", + "@esbuild/sunos-x64": "0.27.2", + "@esbuild/win32-arm64": "0.27.2", + "@esbuild/win32-ia32": "0.27.2", + "@esbuild/win32-x64": "0.27.2" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.39.2", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.2.tgz", + "integrity": "sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.1", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.39.2", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", + "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expect-type": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.3.0.tgz", + "integrity": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/js-tokens": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.1.tgz", + "integrity": "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/loupe": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz", + "integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true, + "license": "MIT" + }, + "node_modules/pathval": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz", + "integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.1.tgz", + "integrity": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/rollup": { + "version": "4.57.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.57.0.tgz", + "integrity": "sha512-e5lPJi/aui4TO1LpAXIRLySmwXSE8k3b9zoGfd42p67wzxog4WHjiZF3M2uheQih4DGyc25QEV4yRBbpueNiUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.57.0", + "@rollup/rollup-android-arm64": "4.57.0", + "@rollup/rollup-darwin-arm64": "4.57.0", + "@rollup/rollup-darwin-x64": "4.57.0", + "@rollup/rollup-freebsd-arm64": "4.57.0", + "@rollup/rollup-freebsd-x64": "4.57.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.57.0", + "@rollup/rollup-linux-arm-musleabihf": "4.57.0", + "@rollup/rollup-linux-arm64-gnu": "4.57.0", + "@rollup/rollup-linux-arm64-musl": "4.57.0", + "@rollup/rollup-linux-loong64-gnu": "4.57.0", + "@rollup/rollup-linux-loong64-musl": "4.57.0", + "@rollup/rollup-linux-ppc64-gnu": "4.57.0", + "@rollup/rollup-linux-ppc64-musl": "4.57.0", + "@rollup/rollup-linux-riscv64-gnu": "4.57.0", + "@rollup/rollup-linux-riscv64-musl": "4.57.0", + "@rollup/rollup-linux-s390x-gnu": "4.57.0", + "@rollup/rollup-linux-x64-gnu": "4.57.0", + "@rollup/rollup-linux-x64-musl": "4.57.0", + "@rollup/rollup-openbsd-x64": "4.57.0", + "@rollup/rollup-openharmony-arm64": "4.57.0", + "@rollup/rollup-win32-arm64-msvc": "4.57.0", + "@rollup/rollup-win32-ia32-msvc": "4.57.0", + "@rollup/rollup-win32-x64-gnu": "4.57.0", + "@rollup/rollup-win32-x64-msvc": "4.57.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/siginfo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "dev": true, + "license": "ISC" + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stackback": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "dev": true, + "license": "MIT" + }, + "node_modules/std-env": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz", + "integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==", + "dev": true, + "license": "MIT" + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-literal": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-3.1.0.tgz", + "integrity": "sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "js-tokens": "^9.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tinybench": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyexec": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", + "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinypool": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz", + "integrity": "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "node_modules/tinyrainbow": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-2.0.0.tgz", + "integrity": "sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tinyspy": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-4.0.4.tgz", + "integrity": "sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/ts-api-utils": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.4.0.tgz", + "integrity": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.54.0.tgz", + "integrity": "sha512-CKsJ+g53QpsNPqbzUsfKVgd3Lny4yKZ1pP4qN3jdMOg/sisIDLGyDMezycquXLE5JsEU0wp3dGNdzig0/fmSVQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.54.0", + "@typescript-eslint/parser": "8.54.0", + "@typescript-eslint/typescript-estree": "8.54.0", + "@typescript-eslint/utils": "8.54.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/vite": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz", + "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.27.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite-node": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.2.4.tgz", + "integrity": "sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.4.1", + "es-module-lexer": "^1.7.0", + "pathe": "^2.0.3", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/vitest": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-3.2.4.tgz", + "integrity": "sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/chai": "^5.2.2", + "@vitest/expect": "3.2.4", + "@vitest/mocker": "3.2.4", + "@vitest/pretty-format": "^3.2.4", + "@vitest/runner": "3.2.4", + "@vitest/snapshot": "3.2.4", + "@vitest/spy": "3.2.4", + "@vitest/utils": "3.2.4", + "chai": "^5.2.0", + "debug": "^4.4.1", + "expect-type": "^1.2.1", + "magic-string": "^0.30.17", + "pathe": "^2.0.3", + "picomatch": "^4.0.2", + "std-env": "^3.9.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.2", + "tinyglobby": "^0.2.14", + "tinypool": "^1.1.1", + "tinyrainbow": "^2.0.0", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0", + "vite-node": "3.2.4", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@types/debug": "^4.1.12", + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "@vitest/browser": "3.2.4", + "@vitest/ui": "3.2.4", + "happy-dom": "*", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@types/debug": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + } + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/why-is-node-running": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", + "dev": true, + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..86ef91b --- /dev/null +++ b/package.json @@ -0,0 +1,34 @@ +{ + "name": "wifi-signal-plus", + "version": "1.0.0", + "description": "GNOME Shell extension displaying WiFi generation (4/5/6/7) with detailed info", + "type": "module", + "scripts": { + "build": "tsc && npm run copy-assets", + "copy-assets": "cp metadata.json stylesheet.css dist/", + "install-extension": "npm run build && rm -rf ~/.local/share/gnome-shell/extensions/wifi-signal-plus@music-music.music && cp -r dist ~/.local/share/gnome-shell/extensions/wifi-signal-plus@music-music.music", + "nested": "npm run install-extension && MUTTER_DEBUG_DUMMY_MODE_SPECS=1920x1080 dbus-run-session gnome-shell --devkit --wayland", + "watch": "tsc --watch", + "clean": "rm -rf dist", + "lint": "eslint src/", + "lint:fix": "eslint src/ --fix", + "format": "prettier --write \"src/**/*.ts\"", + "format:check": "prettier --check \"src/**/*.ts\"", + "test": "vitest run", + "test:watch": "vitest", + "test:coverage": "vitest run --coverage" + }, + "devDependencies": { + "@girs/gjs": "4.0.0-beta.38", + "@girs/gnome-shell": "^49.1.0", + "@girs/nm-1.0": "1.49.4-4.0.0-beta.38", + "@girs/glib-2.0": "2.86.0-4.0.0-beta.38", + "@girs/gio-2.0": "2.86.0-4.0.0-beta.38", + "typescript": "^5.7.3", + "eslint": "^9.19.0", + "@eslint/js": "^9.19.0", + "typescript-eslint": "^8.22.0", + "prettier": "^3.4.2", + "vitest": "^3.0.4" + } +} diff --git a/src/ambient.d.ts b/src/ambient.d.ts new file mode 100644 index 0000000..719fc89 --- /dev/null +++ b/src/ambient.d.ts @@ -0,0 +1,4 @@ +/// +/// +/// +/// diff --git a/src/extension.ts b/src/extension.ts new file mode 100644 index 0000000..e7cb481 --- /dev/null +++ b/src/extension.ts @@ -0,0 +1,269 @@ +/** + * WiFi Signal Plus - GNOME Shell Extension + * + * Displays WiFi generation (4/5/6/7) in the top bar with detailed info on hover. + */ + +import Clutter from 'gi://Clutter'; +import GLib from 'gi://GLib'; +import St from 'gi://St'; +import { Extension } from 'resource:///org/gnome/shell/extensions/extension.js'; +import * as Main from 'resource:///org/gnome/shell/ui/main.js'; +import * as PanelMenu from 'resource:///org/gnome/shell/ui/panelMenu.js'; +import * as PopupMenu from 'resource:///org/gnome/shell/ui/popupMenu.js'; + +import { + WifiInfoService, + getSignalQuality, + isConnected, + type WifiConnectionInfo, + type ConnectedInfo, +} from './wifiInfo.js'; +import { + WIFI_GENERATIONS, + GENERATION_CSS_CLASSES, + getGenerationLabel, + getGenerationDescription, +} from './wifiGeneration.js'; +import type { GenerationCssClass, ChannelWidthMHz, SignalDbm } from './types.js'; + +const REFRESH_INTERVAL_SECONDS = 5; +const PLACEHOLDER = '--' as const; + +type MenuItemId = + | 'ssid' + | 'generation' + | 'band' + | 'bitrate' + | 'channelWidth' + | 'mcs' + | 'signal' + | 'security' + | 'bssid'; + +interface MenuItemConfig { + readonly id: MenuItemId; + readonly label: string; +} + +const MENU_STRUCTURE: readonly MenuItemConfig[][] = [ + // Section: Connection + [ + { id: 'ssid', label: 'Network' }, + { id: 'generation', label: 'Generation' }, + { id: 'band', label: 'Band' }, + ], + // Section: Performance + [ + { id: 'bitrate', label: 'Speed' }, + { id: 'channelWidth', label: 'Width' }, + { id: 'mcs', label: 'Modulation' }, + ], + // Section: Signal & Security + [ + { id: 'signal', label: 'Signal' }, + { id: 'security', label: 'Security' }, + { id: 'bssid', label: 'BSSID' }, + ], +] as const; + +export default class WifiSignalPlusExtension extends Extension { + private indicator: PanelMenu.Button | null = null; + private label: St.Label | null = null; + private wifiService: WifiInfoService | null = null; + private refreshTimeout: number | null = null; + private readonly menuItems = new Map(); + + enable(): void { + this.wifiService = new WifiInfoService(); + this.wifiService + .init() + .then(() => { + this.createIndicator(); + this.refresh(); + this.startRefreshTimer(); + }) + .catch(e => { + console.error('[WiFi Signal Plus] Failed to initialize:', e); + }); + } + + disable(): void { + this.stopRefreshTimer(); + this.indicator?.destroy(); + this.wifiService?.destroy(); + + this.indicator = null; + this.wifiService = null; + this.label = null; + this.menuItems.clear(); + } + + private createIndicator(): void { + this.indicator = new PanelMenu.Button(0.0, this.metadata.name, false); + this.indicator.add_style_class_name('wifi-signal-plus-indicator'); + + this.label = new St.Label({ + text: 'WiFi', + y_align: Clutter.ActorAlign.CENTER, + style_class: 'wifi-signal-plus-label', + }); + + this.indicator.add_child(this.label); + this.buildMenu(); + + Main.panel.addToStatusArea(this.uuid, this.indicator); + } + + private buildMenu(): void { + if (!this.indicator) return; + + const menu = this.indicator.menu as PopupMenu.PopupMenu; + menu.box.add_style_class_name('wifi-signal-plus-popup'); + + MENU_STRUCTURE.forEach((section, index) => { + for (const { id, label } of section) { + this.addMenuItem(menu, id, label); + } + + // Add separator between sections (not after last) + if (index < MENU_STRUCTURE.length - 1) { + menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem()); + } + }); + } + + private addMenuItem(menu: PopupMenu.PopupMenu, id: MenuItemId, label: string): void { + const item = new PopupMenu.PopupMenuItem(`${label}: ${PLACEHOLDER}`, { reactive: false }); + menu.addMenuItem(item); + this.menuItems.set(id, item); + } + + private updateMenuItem(id: MenuItemId, label: string, value: string): void { + const item = this.menuItems.get(id); + item?.label.set_text(`${label}: ${value}`); + } + + private refresh(): void { + if (!this.wifiService || !this.label) return; + + const info = this.wifiService.getConnectionInfo(); + this.updateIndicatorLabel(info); + this.updateMenuContent(info); + } + + private updateIndicatorLabel(info: WifiConnectionInfo): void { + if (!this.label) return; + + this.clearGenerationStyles(); + + if (!isConnected(info)) { + this.label.set_text('WiFi --'); + this.label.add_style_class_name(GENERATION_CSS_CLASSES[WIFI_GENERATIONS.UNKNOWN]); + return; + } + + this.label.set_text(getGenerationLabel(info.generation)); + this.label.add_style_class_name(GENERATION_CSS_CLASSES[info.generation]); + } + + private clearGenerationStyles(): void { + if (!this.label) return; + + const cssClasses = Object.values(GENERATION_CSS_CLASSES) as GenerationCssClass[]; + for (const cssClass of cssClasses) { + this.label.remove_style_class_name(cssClass); + } + } + + private updateMenuContent(info: WifiConnectionInfo): void { + if (!isConnected(info)) { + this.showDisconnectedState(); + return; + } + + this.showConnectedState(info); + } + + private showDisconnectedState(): void { + for (const section of MENU_STRUCTURE) { + for (const { id, label } of section) { + const value = id === 'ssid' ? 'Not connected' : PLACEHOLDER; + this.updateMenuItem(id, label, value); + } + } + } + + private showConnectedState(info: ConnectedInfo): void { + this.updateMenuItem('ssid', 'Network', info.ssid); + this.updateMenuItem('generation', 'Generation', getGenerationDescription(info.generation)); + this.updateMenuItem('band', 'Band', this.formatBand(info)); + this.updateMenuItem('bitrate', 'Speed', this.formatBitrate(info)); + this.updateMenuItem('channelWidth', 'Width', this.formatChannelWidth(info.channelWidth)); + this.updateMenuItem('mcs', 'Modulation', this.formatModulation(info)); + this.updateMenuItem('signal', 'Signal', this.formatSignal(info.signalStrength)); + this.updateMenuItem('security', 'Security', info.security); + this.updateMenuItem('bssid', 'BSSID', info.bssid); + } + + private formatBand(info: ConnectedInfo): string { + return `${info.band} · Ch ${info.channel}`; + } + + private formatBitrate(info: ConnectedInfo): string { + const { txBitrate, rxBitrate, bitrate } = info; + + if (txBitrate !== null && rxBitrate !== null) { + const tx = txBitrate as number; + const rx = rxBitrate as number; + return tx === rx ? `${tx} Mbit/s` : `↑${tx} ↓${rx} Mbit/s`; + } + + if (txBitrate !== null) return `↑${txBitrate} Mbit/s`; + if (rxBitrate !== null) return `↓${rxBitrate} Mbit/s`; + return `${bitrate} Mbit/s`; + } + + private formatChannelWidth(width: ChannelWidthMHz | null): string { + return width !== null ? `${width} MHz` : PLACEHOLDER; + } + + private formatModulation(info: ConnectedInfo): string { + const parts: string[] = []; + + if (info.mcs !== null) { + parts.push(`MCS ${info.mcs}`); + } + if (info.nss !== null) { + parts.push(`${info.nss}×${info.nss} MIMO`); + } + if (info.guardInterval !== null) { + parts.push(`GI ${info.guardInterval}µs`); + } + + return parts.length > 0 ? parts.join(' · ') : PLACEHOLDER; + } + + private formatSignal(signalStrength: SignalDbm): string { + const quality = getSignalQuality(signalStrength); + return `${signalStrength} dBm (${quality})`; + } + + private startRefreshTimer(): void { + this.refreshTimeout = GLib.timeout_add_seconds( + GLib.PRIORITY_DEFAULT, + REFRESH_INTERVAL_SECONDS, + () => { + this.refresh(); + return GLib.SOURCE_CONTINUE; + } + ); + } + + private stopRefreshTimer(): void { + if (this.refreshTimeout !== null) { + GLib.source_remove(this.refreshTimeout); + this.refreshTimeout = null; + } + } +} diff --git a/src/types.ts b/src/types.ts new file mode 100644 index 0000000..0e5f630 --- /dev/null +++ b/src/types.ts @@ -0,0 +1,173 @@ +/** + * Core type definitions for WiFi Signal Plus + */ + +declare const brand: unique symbol; +type Brand = T & { readonly [brand]: B }; + +export type FrequencyMHz = Brand; +export type SignalDbm = Brand; +export type SignalPercent = Brand; +export type BitrateMbps = Brand; +export type ChannelWidthMHz = Brand; +export type ChannelNumber = Brand; +export type McsIndex = Brand; +export type SpatialStreams = Brand; +export type GuardIntervalUs = Brand; + +export const WIFI_GENERATIONS = { + UNKNOWN: 0, + WIFI_4: 4, + WIFI_5: 5, + WIFI_6: 6, + WIFI_7: 7, +} as const; + +export type WifiGeneration = (typeof WIFI_GENERATIONS)[keyof typeof WIFI_GENERATIONS]; + +export function isKnownGeneration(gen: WifiGeneration): gen is 4 | 5 | 6 | 7 { + return gen >= WIFI_GENERATIONS.WIFI_4 && gen <= WIFI_GENERATIONS.WIFI_7; +} + +export const IEEE_STANDARDS = { + [WIFI_GENERATIONS.WIFI_4]: '802.11n', + [WIFI_GENERATIONS.WIFI_5]: '802.11ac', + [WIFI_GENERATIONS.WIFI_6]: '802.11ax', + [WIFI_GENERATIONS.WIFI_7]: '802.11be', + [WIFI_GENERATIONS.UNKNOWN]: 'Unknown', +} as const; + +export type IeeeStandard = (typeof IEEE_STANDARDS)[WifiGeneration]; + +export const FREQUENCY_BANDS = ['2.4 GHz', '5 GHz', '6 GHz', 'Unknown'] as const; +export type FrequencyBand = (typeof FREQUENCY_BANDS)[number]; + +export const SIGNAL_QUALITIES = ['Excellent', 'Good', 'Fair', 'Weak', 'Poor', 'Unknown'] as const; +export type SignalQuality = (typeof SIGNAL_QUALITIES)[number]; + +export const SIGNAL_THRESHOLDS = { + Excellent: -50, + Good: -60, + Fair: -70, + Weak: -80, +} as const satisfies Record, number>; + +export const SECURITY_PROTOCOLS = [ + 'WPA3', + 'WPA2-Enterprise', + 'WPA2', + 'WPA-Enterprise', + 'WPA', + 'Open', + 'Unknown', +] as const; + +export type SecurityProtocol = (typeof SECURITY_PROTOCOLS)[number]; + +export type GenerationCssClass = `wifi-gen-${4 | 5 | 6 | 7}` | 'wifi-disconnected'; +export type SignalCssClass = `wifi-signal-${Lowercase>}` | ''; + +export const GENERATION_CSS_CLASSES = { + [WIFI_GENERATIONS.WIFI_4]: 'wifi-gen-4', + [WIFI_GENERATIONS.WIFI_5]: 'wifi-gen-5', + [WIFI_GENERATIONS.WIFI_6]: 'wifi-gen-6', + [WIFI_GENERATIONS.WIFI_7]: 'wifi-gen-7', + [WIFI_GENERATIONS.UNKNOWN]: 'wifi-disconnected', +} as const satisfies Record; + +export const GUARD_INTERVALS = { + SHORT: 0.4 as GuardIntervalUs, + NORMAL: 0.8 as GuardIntervalUs, + LONG_1: 1.6 as GuardIntervalUs, + LONG_2: 3.2 as GuardIntervalUs, +} as const; + +export const HE_GI_INDEX_MAP = { + 0: GUARD_INTERVALS.NORMAL, + 1: GUARD_INTERVALS.LONG_1, + 2: GUARD_INTERVALS.LONG_2, +} as const satisfies Record<0 | 1 | 2, GuardIntervalUs>; + +export interface IwLinkInfo { + readonly generation: WifiGeneration; + readonly standard: IeeeStandard | null; + readonly mcs: McsIndex | null; + readonly nss: SpatialStreams | null; + readonly guardInterval: GuardIntervalUs | null; + readonly channelWidth: ChannelWidthMHz | null; + readonly txBitrate: BitrateMbps | null; + readonly rxBitrate: BitrateMbps | null; + readonly signal: SignalDbm | null; + readonly frequency: FrequencyMHz | null; + readonly ssid: string | null; + readonly bssid: string | null; +} + +interface BaseConnectionInfo { + readonly interfaceName: string | null; +} + +export interface DisconnectedInfo extends BaseConnectionInfo { + readonly connected: false; +} + +export interface ConnectedInfo extends BaseConnectionInfo { + readonly connected: true; + readonly ssid: string; + readonly bssid: string; + readonly frequency: FrequencyMHz; + readonly channel: ChannelNumber; + readonly band: FrequencyBand; + readonly signalStrength: SignalDbm; + readonly signalPercent: SignalPercent; + readonly bitrate: BitrateMbps; + readonly security: SecurityProtocol; + readonly generation: WifiGeneration; + readonly standard: IeeeStandard | null; + readonly mcs: McsIndex | null; + readonly nss: SpatialStreams | null; + readonly guardInterval: GuardIntervalUs | null; + readonly channelWidth: ChannelWidthMHz | null; + readonly txBitrate: BitrateMbps | null; + readonly rxBitrate: BitrateMbps | null; +} + +export type WifiConnectionInfo = DisconnectedInfo | ConnectedInfo; + +export function isConnected(info: WifiConnectionInfo): info is ConnectedInfo { + return info.connected; +} + +export const asFrequencyMHz = (value: number): FrequencyMHz => value as FrequencyMHz; +export const asSignalDbm = (value: number): SignalDbm => value as SignalDbm; +export const asSignalPercent = (value: number): SignalPercent => value as SignalPercent; +export const asBitrateMbps = (value: number): BitrateMbps => value as BitrateMbps; +export const asChannelWidthMHz = (value: number): ChannelWidthMHz => value as ChannelWidthMHz; +export const asChannelNumber = (value: number): ChannelNumber => value as ChannelNumber; +export const asMcsIndex = (value: number): McsIndex => value as McsIndex; +export const asSpatialStreams = (value: number): SpatialStreams => value as SpatialStreams; +export const asGuardIntervalUs = (value: number): GuardIntervalUs => value as GuardIntervalUs; + +export function createEmptyIwLinkInfo(): IwLinkInfo { + return Object.freeze({ + generation: WIFI_GENERATIONS.UNKNOWN, + standard: null, + mcs: null, + nss: null, + guardInterval: null, + channelWidth: null, + txBitrate: null, + rxBitrate: null, + signal: null, + frequency: null, + ssid: null, + bssid: null, + }); +} + +export function createDisconnectedInfo(interfaceName: string | null = null): DisconnectedInfo { + return Object.freeze({ + connected: false as const, + interfaceName, + }); +} diff --git a/src/wifiGeneration.test.ts b/src/wifiGeneration.test.ts new file mode 100644 index 0000000..393654f --- /dev/null +++ b/src/wifiGeneration.test.ts @@ -0,0 +1,283 @@ +import { describe, it, expect } from 'vitest'; +import { + parseIwLinkOutput, + createEmptyIwLinkInfo, + WIFI_GENERATIONS, + IEEE_STANDARDS, + GENERATION_CSS_CLASSES, + getGenerationLabel, + getGenerationDescription, + isKnownGeneration, +} from './wifiGeneration'; +import { GUARD_INTERVALS } from './types'; + +describe('createEmptyIwLinkInfo', () => { + it('should create an object with all null values and UNKNOWN generation', () => { + const info = createEmptyIwLinkInfo(); + + expect(info.generation).toBe(WIFI_GENERATIONS.UNKNOWN); + expect(info.standard).toBeNull(); + expect(info.mcs).toBeNull(); + expect(info.nss).toBeNull(); + expect(info.guardInterval).toBeNull(); + expect(info.channelWidth).toBeNull(); + expect(info.txBitrate).toBeNull(); + expect(info.rxBitrate).toBeNull(); + expect(info.signal).toBeNull(); + expect(info.frequency).toBeNull(); + expect(info.ssid).toBeNull(); + expect(info.bssid).toBeNull(); + }); + + it('should return a frozen object', () => { + const info = createEmptyIwLinkInfo(); + expect(Object.isFrozen(info)).toBe(true); + }); +}); + +describe('isKnownGeneration', () => { + it('should return true for known generations', () => { + expect(isKnownGeneration(WIFI_GENERATIONS.WIFI_4)).toBe(true); + expect(isKnownGeneration(WIFI_GENERATIONS.WIFI_5)).toBe(true); + expect(isKnownGeneration(WIFI_GENERATIONS.WIFI_6)).toBe(true); + expect(isKnownGeneration(WIFI_GENERATIONS.WIFI_7)).toBe(true); + }); + + it('should return false for UNKNOWN', () => { + expect(isKnownGeneration(WIFI_GENERATIONS.UNKNOWN)).toBe(false); + }); +}); + +describe('parseIwLinkOutput', () => { + it('should return empty info for empty input', () => { + const result = parseIwLinkOutput(''); + + expect(result.generation).toBe(WIFI_GENERATIONS.UNKNOWN); + expect(result.ssid).toBeNull(); + }); + + it('should return empty info for "Not connected"', () => { + const result = parseIwLinkOutput('Not connected.'); + + expect(result.generation).toBe(WIFI_GENERATIONS.UNKNOWN); + }); + + it('should return a frozen result', () => { + const result = parseIwLinkOutput('Connected to 00:00:00:00:00:00 (on wlan0)'); + expect(Object.isFrozen(result)).toBe(true); + }); + + describe('WiFi 6 (HE) detection', () => { + it('should detect WiFi 6 from real iw output', () => { + const iwOutput = `Connected to ae:8b:a9:51:30:23 (on wlp192s0) + SSID: LaccordeonCoworking + freq: 5220.0 + RX: 1533905496 bytes (1321800 packets) + TX: 220138288 bytes (525917 packets) + signal: -39 dBm + rx bitrate: 573.5 MBit/s 40MHz HE-MCS 11 HE-NSS 2 HE-GI 0 HE-DCM 0 + tx bitrate: 573.5 MBit/s 40MHz HE-MCS 11 HE-NSS 2 HE-GI 0 HE-DCM 0 + bss flags: short-slot-time + dtim period: 3 + beacon int: 100`; + + const result = parseIwLinkOutput(iwOutput); + + expect(result.generation).toBe(WIFI_GENERATIONS.WIFI_6); + expect(result.standard).toBe('802.11ax'); + expect(result.ssid).toBe('LaccordeonCoworking'); + expect(result.bssid).toBe('ae:8b:a9:51:30:23'); + expect(result.frequency).toBe(5220.0); + expect(result.signal).toBe(-39); + expect(result.mcs).toBe(11); + expect(result.nss).toBe(2); + expect(result.guardInterval).toBe(GUARD_INTERVALS.NORMAL); + expect(result.channelWidth).toBe(40); + expect(result.txBitrate).toBe(573.5); + expect(result.rxBitrate).toBe(573.5); + }); + + it('should parse all HE guard interval values correctly', () => { + const testCases = [ + { gi: '0', expected: GUARD_INTERVALS.NORMAL }, + { gi: '1', expected: GUARD_INTERVALS.LONG_1 }, + { gi: '2', expected: GUARD_INTERVALS.LONG_2 }, + ] as const; + + for (const { gi, expected } of testCases) { + const iwOutput = `Connected to 00:00:00:00:00:00 (on wlan0) + tx bitrate: 100 MBit/s HE-MCS 5 HE-NSS 1 HE-GI ${gi}`; + + const result = parseIwLinkOutput(iwOutput); + + expect(result.guardInterval).toBe(expected); + } + }); + }); + + describe('WiFi 5 (VHT) detection', () => { + it('should detect WiFi 5 connection', () => { + const iwOutput = `Connected to 00:11:22:33:44:55 (on wlan0) + SSID: MyNetwork + freq: 5180 + signal: -55 dBm + tx bitrate: 866.7 MBit/s VHT-MCS 9 80MHz VHT-NSS 2 + rx bitrate: 650.0 MBit/s VHT-MCS 7 80MHz short GI VHT-NSS 2`; + + const result = parseIwLinkOutput(iwOutput); + + expect(result.generation).toBe(WIFI_GENERATIONS.WIFI_5); + expect(result.standard).toBe('802.11ac'); + expect(result.mcs).toBe(9); + expect(result.nss).toBe(2); + expect(result.channelWidth).toBe(80); + }); + + it('should detect short GI for VHT', () => { + const iwOutput = `Connected to 00:00:00:00:00:00 (on wlan0) + tx bitrate: 100 MBit/s VHT-MCS 5 20MHz short GI VHT-NSS 1`; + + const result = parseIwLinkOutput(iwOutput); + + expect(result.guardInterval).toBe(GUARD_INTERVALS.SHORT); + }); + + it('should use normal GI when short GI not present', () => { + const iwOutput = `Connected to 00:00:00:00:00:00 (on wlan0) + tx bitrate: 100 MBit/s VHT-MCS 5 20MHz VHT-NSS 1`; + + const result = parseIwLinkOutput(iwOutput); + + expect(result.guardInterval).toBe(GUARD_INTERVALS.NORMAL); + }); + }); + + describe('WiFi 4 (HT) detection', () => { + it('should detect WiFi 4 connection', () => { + const iwOutput = `Connected to aa:bb:cc:dd:ee:ff (on wlan0) + SSID: OldRouter + freq: 2437 + signal: -65 dBm + tx bitrate: 72.2 MBit/s MCS 7 20MHz short GI + rx bitrate: 65.0 MBit/s MCS 6 20MHz`; + + const result = parseIwLinkOutput(iwOutput); + + expect(result.generation).toBe(WIFI_GENERATIONS.WIFI_4); + expect(result.standard).toBe('802.11n'); + expect(result.mcs).toBe(7); + expect(result.nss).toBe(1); + expect(result.channelWidth).toBe(20); + expect(result.guardInterval).toBe(GUARD_INTERVALS.SHORT); + }); + + it('should derive NSS from MCS index', () => { + const testCases = [ + { mcs: 0, expectedNss: 1 }, + { mcs: 7, expectedNss: 1 }, + { mcs: 8, expectedNss: 2 }, + { mcs: 15, expectedNss: 2 }, + { mcs: 16, expectedNss: 3 }, + { mcs: 23, expectedNss: 3 }, + ]; + + for (const { mcs, expectedNss } of testCases) { + const iwOutput = `Connected to 00:00:00:00:00:00 (on wlan0) + tx bitrate: 100 MBit/s MCS ${mcs} 20MHz`; + + const result = parseIwLinkOutput(iwOutput); + + expect(result.nss).toBe(expectedNss); + } + }); + }); + + describe('WiFi 7 (EHT) detection', () => { + it('should detect WiFi 7 connection', () => { + const iwOutput = `Connected to 11:22:33:44:55:66 (on wlan0) + SSID: WiFi7Network + freq: 6115 + signal: -45 dBm + tx bitrate: 2882.4 MBit/s 160MHz EHT-MCS 13 EHT-NSS 2 EHT-GI 0 + rx bitrate: 2882.4 MBit/s 160MHz EHT-MCS 13 EHT-NSS 2 EHT-GI 0`; + + const result = parseIwLinkOutput(iwOutput); + + expect(result.generation).toBe(WIFI_GENERATIONS.WIFI_7); + expect(result.standard).toBe('802.11be'); + expect(result.mcs).toBe(13); + expect(result.nss).toBe(2); + expect(result.channelWidth).toBe(160); + }); + }); + + describe('fallback to RX bitrate', () => { + it('should use RX bitrate when TX has no generation info', () => { + const iwOutput = `Connected to 00:00:00:00:00:00 (on wlan0) + tx bitrate: 100 MBit/s + rx bitrate: 200 MBit/s HE-MCS 9 HE-NSS 2 HE-GI 1 40MHz`; + + const result = parseIwLinkOutput(iwOutput); + + expect(result.generation).toBe(WIFI_GENERATIONS.WIFI_6); + expect(result.txBitrate).toBe(100); + expect(result.rxBitrate).toBe(200); + }); + }); +}); + +describe('getGenerationLabel', () => { + it('should return "WiFi X" for known generations', () => { + expect(getGenerationLabel(WIFI_GENERATIONS.WIFI_4)).toBe('WiFi 4'); + expect(getGenerationLabel(WIFI_GENERATIONS.WIFI_5)).toBe('WiFi 5'); + expect(getGenerationLabel(WIFI_GENERATIONS.WIFI_6)).toBe('WiFi 6'); + expect(getGenerationLabel(WIFI_GENERATIONS.WIFI_7)).toBe('WiFi 7'); + }); + + it('should return "WiFi" for UNKNOWN', () => { + expect(getGenerationLabel(WIFI_GENERATIONS.UNKNOWN)).toBe('WiFi'); + }); +}); + +describe('getGenerationDescription', () => { + it('should return full description with IEEE standard', () => { + expect(getGenerationDescription(WIFI_GENERATIONS.WIFI_4)).toBe('WiFi 4 (802.11n)'); + expect(getGenerationDescription(WIFI_GENERATIONS.WIFI_5)).toBe('WiFi 5 (802.11ac)'); + expect(getGenerationDescription(WIFI_GENERATIONS.WIFI_6)).toBe('WiFi 6 (802.11ax)'); + expect(getGenerationDescription(WIFI_GENERATIONS.WIFI_7)).toBe('WiFi 7 (802.11be)'); + }); + + it('should return "WiFi" for UNKNOWN', () => { + expect(getGenerationDescription(WIFI_GENERATIONS.UNKNOWN)).toBe('WiFi'); + }); +}); + +describe('IEEE_STANDARDS', () => { + it('should map all generations to their IEEE standards', () => { + expect(IEEE_STANDARDS[WIFI_GENERATIONS.WIFI_4]).toBe('802.11n'); + expect(IEEE_STANDARDS[WIFI_GENERATIONS.WIFI_5]).toBe('802.11ac'); + expect(IEEE_STANDARDS[WIFI_GENERATIONS.WIFI_6]).toBe('802.11ax'); + expect(IEEE_STANDARDS[WIFI_GENERATIONS.WIFI_7]).toBe('802.11be'); + expect(IEEE_STANDARDS[WIFI_GENERATIONS.UNKNOWN]).toBe('Unknown'); + }); +}); + +describe('GENERATION_CSS_CLASSES', () => { + it('should map all generations to CSS classes', () => { + expect(GENERATION_CSS_CLASSES[WIFI_GENERATIONS.WIFI_4]).toBe('wifi-gen-4'); + expect(GENERATION_CSS_CLASSES[WIFI_GENERATIONS.WIFI_5]).toBe('wifi-gen-5'); + expect(GENERATION_CSS_CLASSES[WIFI_GENERATIONS.WIFI_6]).toBe('wifi-gen-6'); + expect(GENERATION_CSS_CLASSES[WIFI_GENERATIONS.WIFI_7]).toBe('wifi-gen-7'); + expect(GENERATION_CSS_CLASSES[WIFI_GENERATIONS.UNKNOWN]).toBe('wifi-disconnected'); + }); + + it('should use template literal type pattern', () => { + // Type check: all values should match the GenerationCssClass type + const classes = Object.values(GENERATION_CSS_CLASSES); + expect(classes).toContain('wifi-gen-4'); + expect(classes).toContain('wifi-gen-5'); + expect(classes).toContain('wifi-gen-6'); + expect(classes).toContain('wifi-gen-7'); + expect(classes).toContain('wifi-disconnected'); + }); +}); diff --git a/src/wifiGeneration.ts b/src/wifiGeneration.ts new file mode 100644 index 0000000..7aa08e9 --- /dev/null +++ b/src/wifiGeneration.ts @@ -0,0 +1,287 @@ +/** + * WiFi Generation Detection + * + * Parses `iw dev link` output to detect WiFi 4/5/6/7. + */ + +import { + type IwLinkInfo, + type WifiGeneration, + type McsIndex, + type SpatialStreams, + type GuardIntervalUs, + type ChannelWidthMHz, + type BitrateMbps, + type SignalDbm, + type FrequencyMHz, + WIFI_GENERATIONS, + IEEE_STANDARDS, + GENERATION_CSS_CLASSES, + GUARD_INTERVALS, + HE_GI_INDEX_MAP, + createEmptyIwLinkInfo, + isKnownGeneration, + asMcsIndex, + asSpatialStreams, + asChannelWidthMHz, + asBitrateMbps, + asSignalDbm, + asFrequencyMHz, +} from './types.js'; + +export { + type IwLinkInfo, + type WifiGeneration, + WIFI_GENERATIONS, + IEEE_STANDARDS, + GENERATION_CSS_CLASSES, + createEmptyIwLinkInfo, + isKnownGeneration, +}; + +interface BitrateParseResult { + readonly bitrate: BitrateMbps | null; + readonly generation: WifiGeneration; + readonly mcs: McsIndex | null; + readonly nss: SpatialStreams | null; + readonly guardInterval: GuardIntervalUs | null; + readonly channelWidth: ChannelWidthMHz | null; +} + +interface MutableParseResult { + generation: WifiGeneration; + standard: (typeof IEEE_STANDARDS)[WifiGeneration] | null; + mcs: McsIndex | null; + nss: SpatialStreams | null; + guardInterval: GuardIntervalUs | null; + channelWidth: ChannelWidthMHz | null; + txBitrate: BitrateMbps | null; + rxBitrate: BitrateMbps | null; + signal: SignalDbm | null; + frequency: FrequencyMHz | null; + ssid: string | null; + bssid: string | null; +} + +interface GenerationDetectionResult { + readonly generation: WifiGeneration; + readonly mcs: McsIndex | null; + readonly nss: SpatialStreams | null; + readonly guardInterval: GuardIntervalUs | null; +} + +export function parseIwLinkOutput(iwOutput: string): IwLinkInfo { + if (!iwOutput || iwOutput.includes('Not connected')) { + return createEmptyIwLinkInfo(); + } + + const result = createMutableResult(); + + for (const line of iwOutput.split('\n')) { + parseLine(line.trim(), result); + } + + return freezeResult(result); +} + +function createMutableResult(): MutableParseResult { + return { + generation: WIFI_GENERATIONS.UNKNOWN, + standard: null, + mcs: null, + nss: null, + guardInterval: null, + channelWidth: null, + txBitrate: null, + rxBitrate: null, + signal: null, + frequency: null, + ssid: null, + bssid: null, + }; +} + +function freezeResult(result: MutableParseResult): IwLinkInfo { + if (isKnownGeneration(result.generation)) { + result.standard = IEEE_STANDARDS[result.generation]; + } + return Object.freeze(result) as IwLinkInfo; +} + +function parseLine(line: string, result: MutableParseResult): void { + parseConnectionInfo(line, result); + parseBitrateLines(line, result); +} + +function parseConnectionInfo(line: string, result: MutableParseResult): void { + if (line.startsWith('SSID:')) { + result.ssid = line.substring(5).trim(); + return; + } + + if (line.startsWith('Connected to')) { + const match = line.match(/Connected to ([0-9a-f:]+)/i); + if (match) { + result.bssid = match[1]; + } + return; + } + + if (line.startsWith('freq:')) { + const value = parseFloat(line.substring(5).trim()); + if (!Number.isNaN(value)) { + result.frequency = asFrequencyMHz(value); + } + return; + } + + if (line.startsWith('signal:')) { + const match = line.match(/signal:\s*(-?\d+)/); + if (match) { + result.signal = asSignalDbm(parseInt(match[1], 10)); + } + } +} + +function parseBitrateLines(line: string, result: MutableParseResult): void { + if (line.startsWith('tx bitrate:')) { + const bitrateInfo = parseBitrateLine(line); + result.txBitrate = bitrateInfo.bitrate; + applyBitrateInfoIfDetected(bitrateInfo, result); + return; + } + + if (line.startsWith('rx bitrate:')) { + const bitrateInfo = parseBitrateLine(line); + result.rxBitrate = bitrateInfo.bitrate; + if (result.generation === WIFI_GENERATIONS.UNKNOWN) { + applyBitrateInfoIfDetected(bitrateInfo, result); + } + } +} + +function applyBitrateInfoIfDetected( + bitrateInfo: BitrateParseResult, + result: MutableParseResult +): void { + if (bitrateInfo.generation === WIFI_GENERATIONS.UNKNOWN) { + return; + } + result.generation = bitrateInfo.generation; + result.mcs = bitrateInfo.mcs; + result.nss = bitrateInfo.nss; + result.guardInterval = bitrateInfo.guardInterval; + result.channelWidth = bitrateInfo.channelWidth; +} + +function parseBitrateLine(line: string): BitrateParseResult { + const bitrate = parseNumericValue(line, /(\d+\.?\d*)\s*MBit\/s/); + const channelWidth = parseNumericValue(line, /(\d+)MHz/); + const generationInfo = detectWifiGeneration(line); + + return { + bitrate: bitrate !== null ? asBitrateMbps(bitrate) : null, + generation: generationInfo.generation, + mcs: generationInfo.mcs, + nss: generationInfo.nss, + guardInterval: generationInfo.guardInterval, + channelWidth: channelWidth !== null ? asChannelWidthMHz(channelWidth) : null, + }; +} + +function parseNumericValue(line: string, pattern: RegExp): number | null { + const match = line.match(pattern); + if (!match) return null; + const value = parseFloat(match[1]); + return Number.isNaN(value) ? null : value; +} + +function detectWifiGeneration(line: string): GenerationDetectionResult { + return ( + tryParseEHT(line) ?? + tryParseHE(line) ?? + tryParseVHT(line) ?? + tryParseHT(line) ?? { + generation: WIFI_GENERATIONS.UNKNOWN, + mcs: null, + nss: null, + guardInterval: null, + } + ); +} + +function tryParseEHT(line: string): GenerationDetectionResult | null { + if (!line.includes('EHT-MCS')) return null; + + return { + generation: WIFI_GENERATIONS.WIFI_7, + mcs: parseMcs(line, /EHT-MCS\s+(\d+)/), + nss: parseNss(line, /EHT-NSS\s+(\d+)/), + guardInterval: parseHeGuardInterval(line, 'EHT-GI'), + }; +} + +function tryParseHE(line: string): GenerationDetectionResult | null { + if (!line.includes('HE-MCS')) return null; + + return { + generation: WIFI_GENERATIONS.WIFI_6, + mcs: parseMcs(line, /HE-MCS\s+(\d+)/), + nss: parseNss(line, /HE-NSS\s+(\d+)/), + guardInterval: parseHeGuardInterval(line, 'HE-GI'), + }; +} + +function tryParseVHT(line: string): GenerationDetectionResult | null { + if (!line.includes('VHT-MCS')) return null; + + return { + generation: WIFI_GENERATIONS.WIFI_5, + mcs: parseMcs(line, /VHT-MCS\s+(\d+)/), + nss: parseNss(line, /VHT-NSS\s+(\d+)/), + guardInterval: line.includes('short GI') ? GUARD_INTERVALS.SHORT : GUARD_INTERVALS.NORMAL, + }; +} + +function tryParseHT(line: string): GenerationDetectionResult | null { + if (!line.match(/\bMCS\s+\d+/) || line.includes('-MCS')) return null; + + const mcs = parseMcs(line, /\bMCS\s+(\d+)/); + + return { + generation: WIFI_GENERATIONS.WIFI_4, + mcs, + nss: mcs !== null ? asSpatialStreams(Math.floor(mcs / 8) + 1) : null, + guardInterval: line.includes('short GI') ? GUARD_INTERVALS.SHORT : GUARD_INTERVALS.NORMAL, + }; +} + +function parseMcs(line: string, pattern: RegExp): McsIndex | null { + const value = parseNumericValue(line, pattern); + return value !== null ? asMcsIndex(value) : null; +} + +function parseNss(line: string, pattern: RegExp): SpatialStreams | null { + const value = parseNumericValue(line, pattern); + return value !== null ? asSpatialStreams(value) : null; +} + +function parseHeGuardInterval(line: string, prefix: string): GuardIntervalUs { + const pattern = new RegExp(`${prefix}\\s+(\\d+)`); + const match = line.match(pattern); + + if (!match) return GUARD_INTERVALS.NORMAL; + + const giIndex = parseInt(match[1], 10) as 0 | 1 | 2; + return HE_GI_INDEX_MAP[giIndex] ?? GUARD_INTERVALS.NORMAL; +} + +export function getGenerationLabel(generation: WifiGeneration): string { + return isKnownGeneration(generation) ? `WiFi ${generation}` : 'WiFi'; +} + +export function getGenerationDescription(generation: WifiGeneration): string { + return isKnownGeneration(generation) + ? `WiFi ${generation} (${IEEE_STANDARDS[generation]})` + : 'WiFi'; +} diff --git a/src/wifiInfo.ts b/src/wifiInfo.ts new file mode 100644 index 0000000..93d102c --- /dev/null +++ b/src/wifiInfo.ts @@ -0,0 +1,271 @@ +/** + * WiFi Information Service + * + * Retrieves connection details from NetworkManager and `iw` command. + */ + +import GLib from 'gi://GLib'; +import NM from 'gi://NM'; + +import { parseIwLinkOutput, createEmptyIwLinkInfo } from './wifiGeneration.js'; +import { + type WifiConnectionInfo, + type ConnectedInfo, + type DisconnectedInfo, + type FrequencyMHz, + type FrequencyBand, + type ChannelNumber, + type SignalDbm, + type SignalQuality, + type SecurityProtocol, + type SignalCssClass, + SIGNAL_THRESHOLDS, + createDisconnectedInfo, + isConnected, + asFrequencyMHz, + asSignalDbm, + asSignalPercent, + asBitrateMbps, + asChannelNumber, +} from './types.js'; + +export { + type WifiConnectionInfo, + type ConnectedInfo, + type DisconnectedInfo, + type SignalQuality, + isConnected, +}; + +const PLACEHOLDER = '--' as const; + +export class WifiInfoService { + private client: NM.Client | null = null; + private initPromise: Promise | null = null; + + async init(): Promise { + if (this.client) return; + if (this.initPromise) return this.initPromise; + + this.initPromise = new Promise((resolve, reject) => { + NM.Client.new_async(null, (_obj, result) => { + try { + this.client = NM.Client.new_finish(result); + resolve(); + } catch (e) { + reject(e); + } + }); + }); + + return this.initPromise; + } + + destroy(): void { + this.client = null; + this.initPromise = null; + } + + getConnectionInfo(): WifiConnectionInfo { + if (!this.client) { + return createDisconnectedInfo(); + } + + const wifiDevice = this.findActiveWifiDevice(); + if (!wifiDevice) { + return createDisconnectedInfo(); + } + + const interfaceName = wifiDevice.get_iface(); + const activeAp = wifiDevice.get_active_access_point(); + + if (!activeAp) { + return createDisconnectedInfo(interfaceName); + } + + return this.buildConnectedInfo(wifiDevice, activeAp, interfaceName); + } + + private buildConnectedInfo( + device: NM.DeviceWifi, + ap: NM.AccessPoint, + interfaceName: string | null + ): ConnectedInfo { + const iwInfo = this.executeIwLink(interfaceName); + const frequency = asFrequencyMHz(ap.get_frequency()); + const strengthPercent = ap.get_strength(); + + return Object.freeze({ + connected: true as const, + interfaceName, + ssid: this.decodeSsid(ap.get_ssid()) ?? 'Unknown', + bssid: ap.get_bssid() ?? 'Unknown', + frequency, + channel: frequencyToChannel(frequency), + band: frequencyToBand(frequency), + signalStrength: iwInfo.signal ?? estimateSignalDbm(strengthPercent), + signalPercent: asSignalPercent(strengthPercent), + bitrate: asBitrateMbps(device.get_bitrate() / 1000), + security: getSecurityProtocol(ap), + generation: iwInfo.generation, + standard: iwInfo.standard, + mcs: iwInfo.mcs, + nss: iwInfo.nss, + guardInterval: iwInfo.guardInterval, + channelWidth: iwInfo.channelWidth, + txBitrate: iwInfo.txBitrate, + rxBitrate: iwInfo.rxBitrate, + }); + } + + private findActiveWifiDevice(): NM.DeviceWifi | null { + if (!this.client) return null; + + const devices = this.client.get_devices(); + + for (const device of devices) { + if (device instanceof NM.DeviceWifi && device.get_state() === NM.DeviceState.ACTIVATED) { + return device; + } + } + + for (const device of devices) { + if (device instanceof NM.DeviceWifi) { + return device; + } + } + + return null; + } + + private executeIwLink(interfaceName: string | null) { + if (!interfaceName) { + return createEmptyIwLinkInfo(); + } + + try { + const [success, stdout] = GLib.spawn_command_line_sync(`iw dev ${interfaceName} link`); + if (success && stdout) { + return parseIwLinkOutput(new TextDecoder().decode(stdout)); + } + } catch { + // iw not available - graceful degradation + } + + return createEmptyIwLinkInfo(); + } + + private decodeSsid(ssidBytes: GLib.Bytes | null): string | null { + if (!ssidBytes) return null; + const data = ssidBytes.get_data(); + return data ? new TextDecoder().decode(data) : null; + } +} + +function estimateSignalDbm(strengthPercent: number): SignalDbm { + const MIN_DBM = -90; + const MAX_DBM = -30; + return asSignalDbm(MIN_DBM + (strengthPercent / 100) * (MAX_DBM - MIN_DBM)); +} + +function frequencyToChannel(frequency: FrequencyMHz): ChannelNumber { + const freq = frequency as number; + + if (freq >= 2412 && freq <= 2484) { + if (freq === 2484) return asChannelNumber(14); + return asChannelNumber(Math.round((freq - 2412) / 5) + 1); + } + + if (freq >= 5170 && freq <= 5825) { + return asChannelNumber(Math.round((freq - 5000) / 5)); + } + + if (freq >= 5955 && freq <= 7115) { + return asChannelNumber(Math.round((freq - 5950) / 5)); + } + + return asChannelNumber(0); +} + +function frequencyToBand(frequency: FrequencyMHz): FrequencyBand { + const freq = frequency as number; + + if (freq >= 2400 && freq < 2500) return '2.4 GHz'; + if (freq >= 5150 && freq < 5900) return '5 GHz'; + if (freq >= 5925 && freq <= 7125) return '6 GHz'; + return 'Unknown'; +} + +const AP_SECURITY = { + NONE: 0x0, + KEY_MGMT_PSK: 0x100, + KEY_MGMT_802_1X: 0x200, + KEY_MGMT_SAE: 0x400, +} as const; + +function getSecurityProtocol(ap: NM.AccessPoint): SecurityProtocol { + const wpaFlags = ap.get_wpa_flags(); + const rsnFlags = ap.get_rsn_flags(); + + const protocols = detectSecurityProtocols(wpaFlags, rsnFlags); + + if (protocols.length === 0) { + const isOpen = wpaFlags === AP_SECURITY.NONE && rsnFlags === AP_SECURITY.NONE; + return isOpen ? 'Open' : 'Unknown'; + } + + return protocols[0]; +} + +function detectSecurityProtocols(wpaFlags: number, rsnFlags: number): SecurityProtocol[] { + const protocols: SecurityProtocol[] = []; + + if (rsnFlags & AP_SECURITY.KEY_MGMT_SAE) { + protocols.push('WPA3'); + } + + if (rsnFlags & AP_SECURITY.KEY_MGMT_802_1X) { + protocols.push('WPA2-Enterprise'); + } else if (rsnFlags & AP_SECURITY.KEY_MGMT_PSK) { + protocols.push('WPA2'); + } + + if (wpaFlags & AP_SECURITY.KEY_MGMT_802_1X && !protocols.includes('WPA2-Enterprise')) { + protocols.push('WPA-Enterprise'); + } else if (wpaFlags & AP_SECURITY.KEY_MGMT_PSK) { + protocols.push('WPA'); + } + + return protocols; +} + +export function getSignalQuality(signalStrength: SignalDbm | null): SignalQuality { + if (signalStrength === null) return 'Unknown'; + + const dbm = signalStrength as number; + if (dbm >= SIGNAL_THRESHOLDS.Excellent) return 'Excellent'; + if (dbm >= SIGNAL_THRESHOLDS.Good) return 'Good'; + if (dbm >= SIGNAL_THRESHOLDS.Fair) return 'Fair'; + if (dbm >= SIGNAL_THRESHOLDS.Weak) return 'Weak'; + return 'Poor'; +} + +export function getSignalCssClass(signalStrength: SignalDbm | null): SignalCssClass { + const quality = getSignalQuality(signalStrength); + + const cssClassMap: Record = { + Excellent: 'wifi-signal-excellent', + Good: 'wifi-signal-good', + Fair: 'wifi-signal-fair', + Weak: 'wifi-signal-weak', + Poor: 'wifi-signal-poor', + Unknown: '', + }; + + return cssClassMap[quality]; +} + +export function formatValue(value: T | null, formatter?: (v: T) => string): string { + if (value === null) return PLACEHOLDER; + return formatter ? formatter(value) : String(value); +} diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..5a25a12 --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,95 @@ +/* WiFi Signal Plus - Stylesheet */ + +/* Panel indicator */ +.wifi-signal-plus-indicator { + padding: 0 4px; +} + +.wifi-signal-plus-label { + font-weight: bold; +} + +/* Generation colors */ +.wifi-gen-4 { + color: #888888; +} + +.wifi-gen-5 { + color: #3584e4; +} + +.wifi-gen-6 { + color: #33d17a; +} + +.wifi-gen-7 { + color: #9141ac; +} + +.wifi-disconnected { + color: #c0bfbc; +} + +/* Tooltip popup */ +.wifi-signal-plus-popup { + padding: 12px; + min-width: 280px; +} + +.wifi-popup-section { + padding: 8px 0; +} + +.wifi-popup-section:not(:last-child) { + border-bottom: 1px solid rgba(255, 255, 255, 0.1); +} + +.wifi-popup-header { + font-size: 1.1em; + font-weight: bold; + margin-bottom: 4px; +} + +.wifi-popup-ssid { + font-size: 1.2em; + font-weight: bold; +} + +.wifi-popup-generation { + font-size: 0.9em; + opacity: 0.8; +} + +.wifi-popup-row { + padding: 2px 0; +} + +.wifi-popup-label { + opacity: 0.7; + margin-right: 8px; +} + +.wifi-popup-value { + font-weight: 500; +} + +/* Signal strength indicator */ +.wifi-signal-excellent { + color: #33d17a; +} + +.wifi-signal-good { + color: #8ff0a4; +} + +.wifi-signal-fair { + color: #f6d32d; +} + +.wifi-signal-weak { + color: #ff7800; +} + +.wifi-signal-poor { + color: #e01b24; +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..8c27776 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "ES2022", + "moduleResolution": "bundler", + "lib": ["ES2022"], + "outDir": "dist", + "rootDir": "src", + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "declaration": false, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "resolveJsonModule": true, + "verbatimModuleSyntax": false, + "paths": { + "gi://*": ["./node_modules/@girs/*"], + "resource://*": ["./node_modules/@girs/gnome-shell/src/*"] + } + }, + "include": ["src/**/*.ts"], + "exclude": ["node_modules", "dist"] +} diff --git a/vitest.config.ts b/vitest.config.ts new file mode 100644 index 0000000..27845cf --- /dev/null +++ b/vitest.config.ts @@ -0,0 +1,15 @@ +import { defineConfig } from 'vitest/config'; + +export default defineConfig({ + test: { + globals: true, + environment: 'node', + include: ['src/**/*.test.ts'], + coverage: { + provider: 'v8', + reporter: ['text', 'html'], + include: ['src/**/*.ts'], + exclude: ['src/**/*.test.ts', 'src/ambient.d.ts'], + }, + }, +});