iobroker.al-ko 0.2.13 → 0.2.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -0
- package/admin/jsonConfig.json +41 -44
- package/io-package.json +27 -27
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -54,6 +54,42 @@ Es handelt sich um ein Community-Projekt, und AL-KO bietet **keinen Support** da
|
|
|
54
54
|
|
|
55
55
|
## Changelog
|
|
56
56
|
|
|
57
|
+
### 0.2.15 (2025-11-02)
|
|
58
|
+
|
|
59
|
+
**Deutsch:**
|
|
60
|
+
- Admin-Konfiguration für den Adapter-Check bereinigt:
|
|
61
|
+
- `$schema` aus `admin/jsonConfig.json` entfernt
|
|
62
|
+
- Tabs/Panel-Struktur korrigiert
|
|
63
|
+
- Fehlende `size`-Attribute ergänzt
|
|
64
|
+
- `.commitinfo` zu `.gitignore` hinzugefügt
|
|
65
|
+
- Keine funktionalen Änderungen
|
|
66
|
+
|
|
67
|
+
**English:**
|
|
68
|
+
- Admin config cleanup for adapter-check:
|
|
69
|
+
- Removed `$schema` from `admin/jsonConfig.json`
|
|
70
|
+
- Corrected tabs/panel structure
|
|
71
|
+
- Added missing `size` attributes
|
|
72
|
+
- Added `.commitinfo` to `.gitignore`
|
|
73
|
+
- No functional changes
|
|
74
|
+
|
|
75
|
+
### 0.2.14 (2025-11-01)
|
|
76
|
+
|
|
77
|
+
**Deutsch:**
|
|
78
|
+
- Entwicklungs-Tooling aktualisiert:
|
|
79
|
+
- `@alcalzone/release-script` auf ^5.0.0 (Releases nur vom Default-Branch; Node.js ≥ 18 erforderlich)
|
|
80
|
+
- `@alcalzone/release-script-plugin-iobroker` auf ^4.0.0 (ESM, Node.js ≥ 18)
|
|
81
|
+
- `@alcalzone/release-script-plugin-license` auf ^4.0.0 (ESM, Node.js ≥ 18)
|
|
82
|
+
- ESLint 9, TypeScript auf ^5.9.3, Prettier 3
|
|
83
|
+
- Keine funktionalen Änderungen am Adaptercode
|
|
84
|
+
|
|
85
|
+
**English:**
|
|
86
|
+
- Development tooling updated:
|
|
87
|
+
- `@alcalzone/release-script` to ^5.0.0 (releases only from default branch; requires Node.js ≥ 18)
|
|
88
|
+
- `@alcalzone/release-script-plugin-iobroker` to ^4.0.0 (ESM, Node.js ≥ 18)
|
|
89
|
+
- `@alcalzone/release-script-plugin-license` to ^4.0.0 (ESM, Node.js ≥ 18)
|
|
90
|
+
- ESLint 9, TypeScript bumped to ^5.9.3, Prettier 3
|
|
91
|
+
- No functional changes to adapter code
|
|
92
|
+
|
|
57
93
|
### 0.2.13 (2025-10-29)
|
|
58
94
|
|
|
59
95
|
**Deutsch:**
|
package/admin/jsonConfig.json
CHANGED
|
@@ -1,51 +1,48 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"type": "panel",
|
|
3
|
+
"label": {
|
|
4
|
+
"en": "General",
|
|
5
|
+
"de": "Allgemein",
|
|
6
|
+
"ru": "Общие",
|
|
7
|
+
"pt": "Geral",
|
|
8
|
+
"nl": "Algemeen",
|
|
9
|
+
"fr": "Général",
|
|
10
|
+
"it": "Generale",
|
|
11
|
+
"es": "General",
|
|
12
|
+
"pl": "Ogólne",
|
|
13
|
+
"uk": "Загальні",
|
|
14
|
+
"zh-cn": "常规"
|
|
15
|
+
},
|
|
4
16
|
"items": {
|
|
5
|
-
"
|
|
6
|
-
"type": "
|
|
17
|
+
"username": {
|
|
18
|
+
"type": "text",
|
|
19
|
+
"label": { "en": "Username", "de": "Benutzername" },
|
|
20
|
+
"placeholder": "Enter your AL-KO account username",
|
|
21
|
+
"size": { "xs": 12, "sm": 6, "md": 6, "lg": 4, "xl": 4 }
|
|
22
|
+
},
|
|
23
|
+
"password": {
|
|
24
|
+
"type": "password",
|
|
25
|
+
"label": { "en": "Password", "de": "Passwort" },
|
|
26
|
+
"size": { "xs": 12, "sm": 6, "md": 6, "lg": 4, "xl": 4 }
|
|
27
|
+
},
|
|
28
|
+
"clientId": {
|
|
29
|
+
"type": "text",
|
|
30
|
+
"label": { "en": "Client ID", "de": "Client-ID" },
|
|
31
|
+
"size": { "xs": 12, "sm": 6, "md": 6, "lg": 4, "xl": 4 }
|
|
32
|
+
},
|
|
33
|
+
"clientSecret": {
|
|
34
|
+
"type": "password",
|
|
35
|
+
"label": { "en": "Client Secret", "de": "Client-Secret" },
|
|
36
|
+
"size": { "xs": 12, "sm": 6, "md": 6, "lg": 4, "xl": 4 }
|
|
37
|
+
},
|
|
38
|
+
"wsDebug": {
|
|
39
|
+
"type": "checkbox",
|
|
7
40
|
"label": {
|
|
8
|
-
"en": "
|
|
9
|
-
"de": "
|
|
10
|
-
"ru": "Общие",
|
|
11
|
-
"pt": "Geral",
|
|
12
|
-
"nl": "Algemeen",
|
|
13
|
-
"fr": "Général",
|
|
14
|
-
"it": "Generale",
|
|
15
|
-
"es": "General",
|
|
16
|
-
"pl": "Ogólne",
|
|
17
|
-
"uk": "Загальні",
|
|
18
|
-
"zh-cn": "常规"
|
|
41
|
+
"en": "Enable WebSocket message logging",
|
|
42
|
+
"de": "WebSocket-Nachrichten protokollieren"
|
|
19
43
|
},
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
"type": "text",
|
|
23
|
-
"label": { "en": "Username", "de": "Benutzername" },
|
|
24
|
-
"placeholder": "Enter your AL-KO account username",
|
|
25
|
-
"size": { "xs": 12, "sm": 6, "md": 6, "lg": 4, "xl": 4 }
|
|
26
|
-
},
|
|
27
|
-
"password": {
|
|
28
|
-
"type": "password",
|
|
29
|
-
"label": { "en": "Password", "de": "Passwort" },
|
|
30
|
-
"size": { "xs": 12, "sm": 6, "md": 6, "lg": 4, "xl": 4 }
|
|
31
|
-
},
|
|
32
|
-
"clientId": {
|
|
33
|
-
"type": "text",
|
|
34
|
-
"label": { "en": "Client ID", "de": "Client-ID" },
|
|
35
|
-
"size": { "xs": 12, "sm": 6, "md": 6, "lg": 4, "xl": 4 }
|
|
36
|
-
},
|
|
37
|
-
"clientSecret": {
|
|
38
|
-
"type": "password",
|
|
39
|
-
"label": { "en": "Client Secret", "de": "Client-Secret" },
|
|
40
|
-
"size": { "xs": 12, "sm": 6, "md": 6, "lg": 4, "xl": 4 }
|
|
41
|
-
},
|
|
42
|
-
"wsDebug": {
|
|
43
|
-
"type": "checkbox",
|
|
44
|
-
"label": { "en": "Enable WebSocket message logging", "de": "WebSocket-Nachrichten protokollieren" },
|
|
45
|
-
"default": false,
|
|
46
|
-
"size": { "xs": 12, "sm": 6, "md": 6, "lg": 4, "xl": 4 }
|
|
47
|
-
}
|
|
48
|
-
}
|
|
44
|
+
"default": false,
|
|
45
|
+
"size": { "xs": 12, "sm": 6, "md": 6, "lg": 4, "xl": 4 }
|
|
49
46
|
}
|
|
50
47
|
}
|
|
51
48
|
}
|
package/io-package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "al-ko",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.15",
|
|
5
5
|
"tier": 3,
|
|
6
6
|
"titleLang": {
|
|
7
7
|
"en": "AL-KO",
|
|
@@ -33,6 +33,32 @@
|
|
|
33
33
|
"Hubert Zechner <hubertiob@posteo.at>"
|
|
34
34
|
],
|
|
35
35
|
"news": {
|
|
36
|
+
"0.2.15": {
|
|
37
|
+
"en": "Admin config cleanup for adapter-check: removed $schema from jsonConfig, corrected tabs/panel structure and added all required size attributes. Also added .commitinfo to .gitignore. No functional changes.",
|
|
38
|
+
"de": "Admin-Konfiguration für den Adapter-Check bereinigt: $schema aus jsonConfig entfernt, Tabs/Panel-Struktur korrigiert und alle benötigten size-Attribute ergänzt. Zudem .commitinfo zur .gitignore hinzugefügt. Keine funktionalen Änderungen.",
|
|
39
|
+
"ru": "Очистка конфигурации Admin для adapter-check: удалён $schema из jsonConfig, исправлена структура вкладок/панелей и добавлены все необходимые атрибуты size. Также .commitinfo добавлен в .gitignore. Без функциональных изменений.",
|
|
40
|
+
"pt": "Limpeza da configuração do Admin para o adapter-check: removido $schema do jsonConfig, corrigida a estrutura de abas/painel e adicionados todos os atributos de size necessários. Também adicionado .commitinfo ao .gitignore. Sem alterações funcionais.",
|
|
41
|
+
"nl": "Admin-config opgeschoond voor adapter-check: $schema uit jsonConfig verwijderd, tabs/panel-structuur gecorrigeerd en alle vereiste size-attributen toegevoegd. Ook .commitinfo aan .gitignore toegevoegd. Geen functionele wijzigingen.",
|
|
42
|
+
"fr": "Nettoyage de la configuration Admin pour l’adapter-check : suppression de $schema dans jsonConfig, correction de la structure onglets/panneau et ajout de tous les attributs size requis. Ajout également de .commitinfo au .gitignore. Aucun changement fonctionnel.",
|
|
43
|
+
"it": "Pulizia della config Admin per l’adapter-check: rimosso $schema da jsonConfig, corretta la struttura tab/pannello e aggiunti tutti gli attributi size richiesti. Aggiunto anche .commitinfo a .gitignore. Nessuna modifica funzionale.",
|
|
44
|
+
"es": "Limpieza de la configuración de Admin para el adapter-check: se quitó $schema de jsonConfig, se corrigió la estructura de pestañas/panel y se añadieron todos los atributos size necesarios. También se añadió .commitinfo a .gitignore. Sin cambios funcionales.",
|
|
45
|
+
"pl": "Porządki w konfiguracji Admin pod adapter-check: usunięto $schema z jsonConfig, poprawiono strukturę zakładek/panelu i dodano wszystkie wymagane atrybuty size. Dodano też .commitinfo do .gitignore. Brak zmian funkcjonalnych.",
|
|
46
|
+
"uk": "Очищено конфігурацію Admin для adapter-check: видалено $schema з jsonConfig, виправлено структуру вкладок/панелі та додано всі потрібні атрибути size. Також додано .commitinfo до .gitignore. Без функціональних змін.",
|
|
47
|
+
"zh-cn": "为通过适配器检查清理了管理配置:从 jsonConfig 中移除 $schema,修正选项卡/面板结构并补齐所需的 size 属性。同时将 .commitinfo 加入 .gitignore。无功能性变化。"
|
|
48
|
+
},
|
|
49
|
+
"0.2.14": {
|
|
50
|
+
"en": "Development tooling updates only: release-script to ^5.0.0 (releases from default branch; Node.js ≥ 18), iobroker and license plugins to ^4.0.0 (ESM, Node.js ≥ 18), ESLint 9, TypeScript ^5.9.3, Prettier 3. No functional changes.",
|
|
51
|
+
"de": "Nur Entwicklungs-Tooling aktualisiert: release-script auf ^5.0.0 (Releases vom Default-Branch; Node.js ≥ 18), iobroker- und license-Plugins auf ^4.0.0 (ESM, Node.js ≥ 18), ESLint 9, TypeScript ^5.9.3, Prettier 3. Keine funktionalen Änderungen.",
|
|
52
|
+
"ru": "Обновлено только окружение разработки: release-script до ^5.0.0 (релизы из ветки по умолчанию; требуется Node.js ≥ 18), плагины iobroker и license до ^4.0.0 (ESM, Node.js ≥ 18), ESLint 9, TypeScript ^5.9.3, Prettier 3. Без функциональных изменений.",
|
|
53
|
+
"pt": "Apenas atualizações de ferramentas de desenvolvimento: release-script para ^5.0.0 (releases a partir da branch padrão; Node.js ≥ 18), plugins iobroker e license para ^4.0.0 (ESM, Node.js ≥ 18), ESLint 9, TypeScript ^5.9.3, Prettier 3. Sem alterações funcionais.",
|
|
54
|
+
"nl": "Alleen updates aan development tooling: release-script naar ^5.0.0 (releases vanaf standaardbranch; Node.js ≥ 18), iobroker- en license-plugins naar ^4.0.0 (ESM, Node.js ≥ 18), ESLint 9, TypeScript ^5.9.3, Prettier 3. Geen functionele wijzigingen.",
|
|
55
|
+
"fr": "Mises à jour des outils de développement uniquement : release-script vers ^5.0.0 (publications depuis la branche par défaut ; Node.js ≥ 18), plugins iobroker et license vers ^4.0.0 (ESM, Node.js ≥ 18), ESLint 9, TypeScript ^5.9.3, Prettier 3. Aucune modification fonctionnelle.",
|
|
56
|
+
"it": "Aggiornati solo gli strumenti di sviluppo: release-script a ^5.0.0 (rilasci dal branch predefinito; Node.js ≥ 18), plugin iobroker e license a ^4.0.0 (ESM, Node.js ≥ 18), ESLint 9, TypeScript ^5.9.3, Prettier 3. Nessuna modifica funzionale.",
|
|
57
|
+
"es": "Solo actualizaciones de herramientas de desarrollo: release-script a ^5.0.0 (lanzamientos desde la rama predeterminada; Node.js ≥ 18), plugins iobroker y license a ^4.0.0 (ESM, Node.js ≥ 18), ESLint 9, TypeScript ^5.9.3, Prettier 3. Sin cambios funcionales.",
|
|
58
|
+
"pl": "Tylko aktualizacje narzędzi deweloperskich: release-script do ^5.0.0 (wydania z gałęzi domyślnej; Node.js ≥ 18), wtyczki iobroker i license do ^4.0.0 (ESM, Node.js ≥ 18), ESLint 9, TypeScript ^5.9.3, Prettier 3. Brak zmian funkcjonalnych.",
|
|
59
|
+
"uk": "Оновлено лише інструменти розробки: release-script до ^5.0.0 (релізи з гілки за замовчуванням; Node.js ≥ 18), плагіни iobroker і license до ^4.0.0 (ESM, Node.js ≥ 18), ESLint 9, TypeScript ^5.9.3, Prettier 3. Без функціональних змін.",
|
|
60
|
+
"zh-cn": "仅更新开发工具:release-script 升级至 ^5.0.0(仅允许从默认分支发布;需要 Node.js ≥ 18),iobroker 和 license 插件至 ^4.0.0(ESM,Node.js ≥ 18),ESLint 9,TypeScript ^5.9.3,Prettier 3。无功能性变更。"
|
|
61
|
+
},
|
|
36
62
|
"0.2.13": {
|
|
37
63
|
"en": "Fixed a JSON syntax error in io-package.json that broke adapter-check parsing (and caused 'adminUI' follow-up errors). Updated the JSON schema hint in VS Code and re-validated jsonConfig sizes. No functional changes.",
|
|
38
64
|
"de": "Einen JSON-Syntaxfehler in der io-package.json behoben, der das Parsing im Adapter-Check (und Folgefehler bei 'adminUI') verhindert hat. JSON-Schema-Hinweis in VS Code aktualisiert und jsonConfig-Sizes erneut validiert. Keine funktionalen Änderungen.",
|
|
@@ -71,32 +97,6 @@
|
|
|
71
97
|
"pl": "Drobne poprawki i optymalizacje kodu. Brak zmian funkcjonalnych – poprawiona stabilność i łatwość utrzymania.",
|
|
72
98
|
"uk": "Невеликі виправлення та оптимізації коду. Без функціональних змін – покращено стабільність і підтримуваність.",
|
|
73
99
|
"zh-cn": "进行了小的代码修正和优化。无功能性更改——提高了稳定性和可维护性。"
|
|
74
|
-
},
|
|
75
|
-
"0.2.10": {
|
|
76
|
-
"en": "Adapter category updated: changed type from 'hardware' to 'garden' for correct classification in ioBroker Admin and repositories. No functional changes.",
|
|
77
|
-
"de": "Adapter-Kategorie aktualisiert: Typ von 'hardware' auf 'garden' geändert, um die korrekte Einordnung in ioBroker Admin und den Repositories sicherzustellen. Keine funktionalen Änderungen.",
|
|
78
|
-
"ru": "Обновлена категория адаптера: тип изменён с 'hardware' на 'garden' для правильной классификации в ioBroker Admin и репозиториях. Без функциональных изменений.",
|
|
79
|
-
"pt": "Categoria do adaptador atualizada: tipo alterado de 'hardware' para 'garden' para classificação correta no ioBroker Admin e repositórios. Sem alterações funcionais.",
|
|
80
|
-
"nl": "Adaptercategorie bijgewerkt: type gewijzigd van 'hardware' naar 'garden' voor correcte classificatie in ioBroker Admin en repositories. Geen functionele wijzigingen.",
|
|
81
|
-
"fr": "Catégorie d’adaptateur mise à jour : type modifié de 'hardware' à 'garden' pour une classification correcte dans ioBroker Admin et les dépôts. Aucune modification fonctionnelle.",
|
|
82
|
-
"it": "Categoria dell’adattatore aggiornata: tipo modificato da 'hardware' a 'garden' per una corretta classificazione in ioBroker Admin e nei repository. Nessuna modifica funzionale.",
|
|
83
|
-
"es": "Categoría del adaptador actualizada: tipo cambiado de 'hardware' a 'garden' para una clasificación correcta en ioBroker Admin y los repositorios. Sin cambios funcionales.",
|
|
84
|
-
"pl": "Zaktualizowano kategorię adaptera: zmieniono typ z 'hardware' na 'garden' w celu poprawnej klasyfikacji w ioBroker Admin i repozytoriach. Bez zmian funkcjonalnych.",
|
|
85
|
-
"uk": "Оновлено категорію адаптера: тип змінено з 'hardware' на 'garden' для правильного відображення в ioBroker Admin і репозиторіях. Без функціональних змін.",
|
|
86
|
-
"zh-cn": "更新适配器类别:将类型从“hardware”更改为“garden”,以便在 ioBroker Admin 和存储库中正确分类。无功能更改。"
|
|
87
|
-
},
|
|
88
|
-
"0.2.9": {
|
|
89
|
-
"en": "Maintenance update: resolved npm dependency conflicts (`sinon-chai` vs `chai`), updated ESLint configuration to version 9 with @iobroker/eslint-config v2.2.0 for full compatibility. Improved CI stability on GitHub Actions. No functional changes.",
|
|
90
|
-
"de": "Wartungsupdate: npm-Abhängigkeitskonflikte (`sinon-chai` vs. `chai`) behoben, ESLint-Konfiguration auf Version 9 mit @iobroker/eslint-config v2.2.0 aktualisiert. Verbesserte CI-Stabilität auf GitHub Actions. Keine funktionalen Änderungen.",
|
|
91
|
-
"ru": "Обновление обслуживания: устранены конфликты зависимостей npm (`sinon-chai` против `chai`), обновлена конфигурация ESLint до версии 9 с @iobroker/eslint-config v2.2.0. Улучшена стабильность CI в GitHub Actions. Без функциональных изменений.",
|
|
92
|
-
"pt": "Atualização de manutenção: resolvidos conflitos de dependência npm (`sinon-chai` vs `chai`), configuração do ESLint atualizada para a versão 9 com @iobroker/eslint-config v2.2.0. Estabilidade do CI aprimorada no GitHub Actions. Sem alterações funcionais.",
|
|
93
|
-
"nl": "Onderhoudsupdate: npm-afhankelijkheidsconflicten (`sinon-chai` vs `chai`) opgelost, ESLint-configuratie bijgewerkt naar versie 9 met @iobroker/eslint-config v2.2.0. Verbeterde CI-stabiliteit op GitHub Actions. Geen functionele wijzigingen.",
|
|
94
|
-
"fr": "Mise à jour de maintenance : résolution des conflits de dépendances npm (`sinon-chai` vs `chai`), configuration ESLint mise à jour vers la version 9 avec @iobroker/eslint-config v2.2.0. Stabilité CI améliorée sur GitHub Actions. Aucune modification fonctionnelle.",
|
|
95
|
-
"it": "Aggiornamento di manutenzione: risolti i conflitti di dipendenza npm (`sinon-chai` vs `chai`), aggiornata la configurazione ESLint alla versione 9 con @iobroker/eslint-config v2.2.0. Migliorata la stabilità del CI su GitHub Actions. Nessuna modifica funzionale.",
|
|
96
|
-
"es": "Actualización de mantenimiento: resueltos los conflictos de dependencias npm (`sinon-chai` vs `chai`), configuración de ESLint actualizada a la versión 9 con @iobroker/eslint-config v2.2.0. Estabilidad de CI mejorada en GitHub Actions. Sin cambios funcionales.",
|
|
97
|
-
"pl": "Aktualizacja konserwacyjna: rozwiązano konflikty zależności npm (`sinon-chai` vs `chai`), zaktualizowano konfigurację ESLint do wersji 9 z @iobroker/eslint-config v2.2.0. Poprawiono stabilność CI w GitHub Actions. Brak zmian funkcjonalnych.",
|
|
98
|
-
"uk": "Технічне оновлення: усунуто конфлікти залежностей npm (`sinon-chai` проти `chai`), оновлено конфігурацію ESLint до версії 9 із @iobroker/eslint-config v2.2.0. Покращено стабільність CI у GitHub Actions. Без функціональних змін.",
|
|
99
|
-
"zh-cn": "维护更新:解决 npm 依赖冲突(`sinon-chai` 与 `chai`),将 ESLint 配置更新到版本 9 并使用 @iobroker/eslint-config v2.2.0。改进了 GitHub Actions 上的 CI 稳定性。无功能更改。"
|
|
100
100
|
}
|
|
101
101
|
},
|
|
102
102
|
"keywords": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iobroker.al-ko",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.15",
|
|
4
4
|
"description": "Adapter for communication with Al-Ko garden tools",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Hubert Zechner",
|
|
@@ -60,9 +60,9 @@
|
|
|
60
60
|
"ws": "^8.18.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@alcalzone/release-script": "^
|
|
64
|
-
"@alcalzone/release-script-plugin-iobroker": "^
|
|
65
|
-
"@alcalzone/release-script-plugin-license": "^
|
|
63
|
+
"@alcalzone/release-script": "^5.0.0",
|
|
64
|
+
"@alcalzone/release-script-plugin-iobroker": "^4.0.0",
|
|
65
|
+
"@alcalzone/release-script-plugin-license": "^4.0.0",
|
|
66
66
|
"@alcalzone/release-script-plugin-manual-review": "^3.7.0",
|
|
67
67
|
"@eslint/js": "^9.14.0",
|
|
68
68
|
"@iobroker/adapter-dev": "^1.5.0",
|
|
@@ -71,10 +71,10 @@
|
|
|
71
71
|
"@tsconfig/node20": "^20.1.6",
|
|
72
72
|
"@types/node": "^24.6.1",
|
|
73
73
|
"@types/proxyquire": "^1.3.31",
|
|
74
|
-
"eslint": "^9.
|
|
74
|
+
"eslint": "^9.39.0",
|
|
75
75
|
"prettier": "^3.3.3",
|
|
76
76
|
"proxyquire": "^2.1.3",
|
|
77
|
-
"typescript": "
|
|
77
|
+
"typescript": "^5.9.3",
|
|
78
78
|
"typescript-eslint": "^8.8.1"
|
|
79
79
|
},
|
|
80
80
|
"readmeFilename": "README.md"
|