homebridge-config-ui-x 5.0.0-beta.10 → 5.0.0-beta.100

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.
Files changed (317) hide show
  1. package/CHANGELOG.md +438 -31
  2. package/CONTRIBUTING.md +5 -4
  3. package/LICENSE +1 -1
  4. package/config.schema.json +55 -252
  5. package/dist/bin/hb-service.d.ts +2 -2
  6. package/dist/bin/hb-service.js +52 -51
  7. package/dist/bin/hb-service.js.map +1 -1
  8. package/dist/bin/platforms/darwin.js +3 -10
  9. package/dist/bin/platforms/darwin.js.map +1 -1
  10. package/dist/bin/platforms/win32.js +4 -2
  11. package/dist/bin/platforms/win32.js.map +1 -1
  12. package/dist/bin/standalone.js +1 -0
  13. package/dist/bin/standalone.js.map +1 -1
  14. package/dist/core/auth/auth.controller.d.ts +31 -3
  15. package/dist/core/auth/auth.controller.js.map +1 -1
  16. package/dist/core/auth/auth.module.js +1 -1
  17. package/dist/core/auth/auth.module.js.map +1 -1
  18. package/dist/core/auth/auth.service.js +10 -10
  19. package/dist/core/auth/auth.service.js.map +1 -1
  20. package/dist/core/auth/jwt.strategy.d.ts +3 -1
  21. package/dist/core/config/config.service.d.ts +46 -11
  22. package/dist/core/config/config.service.js +57 -20
  23. package/dist/core/config/config.service.js.map +1 -1
  24. package/dist/core/config/config.startup.js +2 -2
  25. package/dist/core/config/config.startup.js.map +1 -1
  26. package/dist/core/homebridge-ipc/homebridge-ipc.service.js +3 -3
  27. package/dist/core/homebridge-ipc/homebridge-ipc.service.js.map +1 -1
  28. package/dist/index.js +6 -77
  29. package/dist/index.js.map +1 -1
  30. package/dist/main.js +2 -1
  31. package/dist/main.js.map +1 -1
  32. package/dist/modules/accessories/accessories.controller.js +5 -5
  33. package/dist/modules/accessories/accessories.controller.js.map +1 -1
  34. package/dist/modules/accessories/accessories.service.js +8 -7
  35. package/dist/modules/accessories/accessories.service.js.map +1 -1
  36. package/dist/modules/backup/backup.controller.js +7 -7
  37. package/dist/modules/backup/backup.controller.js.map +1 -1
  38. package/dist/modules/backup/backup.service.js +19 -79
  39. package/dist/modules/backup/backup.service.js.map +1 -1
  40. package/dist/modules/child-bridges/child-bridges.service.js +0 -7
  41. package/dist/modules/child-bridges/child-bridges.service.js.map +1 -1
  42. package/dist/modules/config-editor/config-editor.controller.d.ts +7 -1
  43. package/dist/modules/config-editor/config-editor.controller.js +36 -8
  44. package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
  45. package/dist/modules/config-editor/config-editor.service.d.ts +5 -1
  46. package/dist/modules/config-editor/config-editor.service.js +132 -69
  47. package/dist/modules/config-editor/config-editor.service.js.map +1 -1
  48. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.d.ts +1 -1
  49. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +13 -11
  50. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
  51. package/dist/modules/log/log.gateway.d.ts +2 -1
  52. package/dist/modules/log/log.gateway.js.map +1 -1
  53. package/dist/modules/log/log.service.js +3 -3
  54. package/dist/modules/log/log.service.js.map +1 -1
  55. package/dist/modules/platform-tools/docker/docker.controller.js +3 -3
  56. package/dist/modules/platform-tools/docker/docker.controller.js.map +1 -1
  57. package/dist/modules/platform-tools/docker/docker.service.js +1 -1
  58. package/dist/modules/platform-tools/docker/docker.service.js.map +1 -1
  59. package/dist/modules/platform-tools/hb-service/hb-service.controller.js +3 -3
  60. package/dist/modules/platform-tools/hb-service/hb-service.controller.js.map +1 -1
  61. package/dist/modules/platform-tools/hb-service/hb-service.service.js +6 -6
  62. package/dist/modules/platform-tools/hb-service/hb-service.service.js.map +1 -1
  63. package/dist/modules/platform-tools/linux/linux.controller.js +2 -2
  64. package/dist/modules/platform-tools/linux/linux.controller.js.map +1 -1
  65. package/dist/modules/platform-tools/linux/linux.service.js +2 -2
  66. package/dist/modules/platform-tools/linux/linux.service.js.map +1 -1
  67. package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +2 -1
  68. package/dist/modules/platform-tools/terminal/terminal.gateway.js.map +1 -1
  69. package/dist/modules/platform-tools/terminal/terminal.service.js +2 -2
  70. package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
  71. package/dist/modules/plugins/plugins.controller.js +4 -4
  72. package/dist/modules/plugins/plugins.controller.js.map +1 -1
  73. package/dist/modules/plugins/plugins.service.d.ts +7 -1
  74. package/dist/modules/plugins/plugins.service.js +215 -127
  75. package/dist/modules/plugins/plugins.service.js.map +1 -1
  76. package/dist/modules/server/server.controller.d.ts +33 -3
  77. package/dist/modules/server/server.controller.js +162 -20
  78. package/dist/modules/server/server.controller.js.map +1 -1
  79. package/dist/modules/server/server.service.d.ts +35 -6
  80. package/dist/modules/server/server.service.js +265 -66
  81. package/dist/modules/server/server.service.js.map +1 -1
  82. package/dist/modules/status/status.controller.d.ts +0 -1
  83. package/dist/modules/status/status.controller.js +3 -4
  84. package/dist/modules/status/status.controller.js.map +1 -1
  85. package/dist/modules/status/status.gateway.d.ts +1 -1
  86. package/dist/modules/status/status.service.d.ts +1 -1
  87. package/dist/modules/status/status.service.js +25 -41
  88. package/dist/modules/status/status.service.js.map +1 -1
  89. package/dist/modules/users/users.controller.js +7 -7
  90. package/dist/modules/users/users.controller.js.map +1 -1
  91. package/dist/self-check.js +6 -6
  92. package/dist/self-check.js.map +1 -1
  93. package/package.json +50 -43
  94. package/public/3rdpartylicenses.txt +218 -108
  95. package/public/assets/hap-icons/airpurifier.svg +49 -16
  96. package/public/assets/hap-icons/airquality.svg +24 -13
  97. package/public/assets/hap-icons/co-sensor.svg +72 -0
  98. package/public/assets/hap-icons/co2-sensor.svg +72 -0
  99. package/public/assets/hap-icons/contactsensor-closed.svg +35 -2
  100. package/public/assets/hap-icons/contactsensor-open.svg +80 -2
  101. package/public/assets/hap-icons/door-closed.svg +32 -2
  102. package/public/assets/hap-icons/door-open.svg +48 -2
  103. package/public/assets/hap-icons/fan-off.svg +24 -13
  104. package/public/assets/hap-icons/fan-on.svg +24 -13
  105. package/public/assets/hap-icons/garagedoor.svg +24 -13
  106. package/public/assets/hap-icons/humidity.svg +24 -13
  107. package/public/assets/hap-icons/irrigation-system.svg +47 -18
  108. package/public/assets/hap-icons/leaksensor.svg +52 -2
  109. package/public/assets/hap-icons/light.svg +47 -28
  110. package/public/assets/hap-icons/lightbulb.svg +24 -13
  111. package/public/assets/hap-icons/lock-locked.svg +24 -13
  112. package/public/assets/hap-icons/lock-unlocked.svg +24 -13
  113. package/public/assets/hap-icons/motionsensor.svg +100 -2
  114. package/public/assets/hap-icons/occupancysensor.svg +97 -2
  115. package/public/assets/hap-icons/outlet.svg +24 -13
  116. package/public/assets/hap-icons/securitysystem-active.svg +102 -2
  117. package/public/assets/hap-icons/securitysystem-off.svg +68 -2
  118. package/public/assets/hap-icons/smokesensor.svg +42 -9
  119. package/public/assets/hap-icons/speaker.svg +29 -13
  120. package/public/assets/hap-icons/statelessprogrammableswitch.svg +51 -2
  121. package/public/assets/hap-icons/switch.svg +24 -13
  122. package/public/assets/hap-icons/television.svg +15 -4
  123. package/public/assets/hap-icons/temperature.svg +24 -13
  124. package/public/assets/hap-icons/unknown.svg +24 -13
  125. package/public/assets/hap-icons/valve-generic.svg +27 -16
  126. package/public/assets/hap-icons/valve-irrigation.svg +37 -21
  127. package/public/assets/hap-icons/valve-showerhead.svg +52 -0
  128. package/public/assets/hap-icons/valve-waterfaucet.svg +21 -0
  129. package/public/assets/hap-icons/window-closed.svg +85 -2
  130. package/public/assets/hap-icons/window-open.svg +136 -2
  131. package/public/assets/hap-icons/windowcovering-closed.svg +45 -49
  132. package/public/assets/hap-icons/windowcovering-open.svg +40 -44
  133. package/public/assets/homebridge-color-round.svg +36 -1
  134. package/public/assets/homebridge-logo.svg +11 -1
  135. package/public/assets/mask-icon.svg +5 -1
  136. package/public/assets/plugin-ui-utils/ui.js +3 -0
  137. package/public/assets/plugin-ui-utils/ui.js.map +1 -1
  138. package/public/chunk-2E6EOZUJ.js +1 -0
  139. package/public/chunk-2EEZAGZA.js +1 -0
  140. package/public/chunk-2G7GNBIF.js +1 -0
  141. package/public/chunk-3GEFBFMQ.js +1 -0
  142. package/public/chunk-3VYIHHCL.js +1 -0
  143. package/public/chunk-45NQ4GBG.js +1 -0
  144. package/public/chunk-4G7RRMI2.js +1 -0
  145. package/public/chunk-4L2H4MMG.js +29 -0
  146. package/public/chunk-4LX4LX6P.js +1 -0
  147. package/public/chunk-4SLRCK6B.js +2 -0
  148. package/public/chunk-53ILAFUX.js +1 -0
  149. package/public/chunk-5FYL3TBQ.js +1 -0
  150. package/public/chunk-5PN6UJOB.js +1 -0
  151. package/public/chunk-6IOCCVAH.js +1 -0
  152. package/public/chunk-7REMZHOO.js +1 -0
  153. package/public/{chunk-6FLZSYP2.js → chunk-AH6LOD34.js} +1 -1
  154. package/public/chunk-ALG7CIS3.js +5 -0
  155. package/public/chunk-AQNNOWXC.js +1 -0
  156. package/public/chunk-B4X7IOGK.js +1 -0
  157. package/public/chunk-BALPGJEG.js +1 -0
  158. package/public/chunk-BIRWL4X3.js +1 -0
  159. package/public/chunk-BMCQHGMB.js +1 -0
  160. package/public/chunk-BNYXD34L.js +1 -0
  161. package/public/{chunk-EA5J2VEJ.js → chunk-BRW7C4BZ.js} +1 -1
  162. package/public/chunk-C6HQUAQJ.js +1 -0
  163. package/public/chunk-C6LXQBT3.js +1 -0
  164. package/public/chunk-CG7LPZUJ.js +1 -0
  165. package/public/chunk-CMZBGXBL.js +1 -0
  166. package/public/chunk-CRIZPUI6.js +8 -0
  167. package/public/chunk-DDFZVHUO.js +1 -0
  168. package/public/chunk-DQUBVCJE.js +1 -0
  169. package/public/{chunk-Q5NJBBHF.js → chunk-EULZTUQA.js} +1 -1
  170. package/public/chunk-F6PRUGSN.js +1 -0
  171. package/public/chunk-FD3D3FMF.js +1 -0
  172. package/public/chunk-FJJNRLA7.js +1 -0
  173. package/public/chunk-FSQ4KA4X.js +1 -0
  174. package/public/chunk-FXS7MG4Z.js +1 -0
  175. package/public/chunk-GMY5QOXR.js +7 -0
  176. package/public/chunk-HE2YZMXJ.js +1 -0
  177. package/public/chunk-HOGBMPOF.js +1 -0
  178. package/public/chunk-HOI6GB6V.js +1 -0
  179. package/public/{chunk-7EUQWCP5.js → chunk-IOWBVW62.js} +2 -2
  180. package/public/chunk-LCYRJQ4W.js +1 -0
  181. package/public/chunk-M2U64RPA.js +1 -0
  182. package/public/chunk-MAXJEMB2.js +1 -0
  183. package/public/chunk-MGEQZI52.js +1 -0
  184. package/public/chunk-MTSNBCD6.js +1 -0
  185. package/public/chunk-O752QW52.js +8 -0
  186. package/public/chunk-OHSRCO5R.js +1 -0
  187. package/public/chunk-OTJCSRHZ.js +1 -0
  188. package/public/chunk-PAQIQJ5I.js +1 -0
  189. package/public/chunk-PODF4FUD.js +1 -0
  190. package/public/chunk-PYWNQR2G.js +1 -0
  191. package/public/chunk-Q5OGHYTC.js +1 -0
  192. package/public/chunk-QIH36FRX.js +1 -0
  193. package/public/chunk-QMB5XE4Y.js +1 -0
  194. package/public/chunk-R3VPSO5X.js +7 -0
  195. package/public/chunk-RGUTUTJY.js +20 -0
  196. package/public/{chunk-TIVE3PVO.js → chunk-RJAFS3B2.js} +1 -1
  197. package/public/{chunk-QE7DO6J3.js → chunk-RNHMRKPJ.js} +2 -2
  198. package/public/chunk-SHP2ASKV.js +5 -0
  199. package/public/chunk-SMR5XBWZ.js +1 -0
  200. package/public/chunk-T5VLECCH.js +23 -0
  201. package/public/chunk-TFSUXAYX.js +1 -0
  202. package/public/chunk-UCO62FWN.js +1 -0
  203. package/public/{chunk-PIAD3JIG.js → chunk-UTAVUGTT.js} +11 -11
  204. package/public/{chunk-JZZQRLNW.js → chunk-UVOJ3BF7.js} +1 -1
  205. package/public/chunk-UVQC4EUO.js +6 -0
  206. package/public/chunk-VECPBVSQ.js +1 -0
  207. package/public/{chunk-CCUID66K.js → chunk-VHTQTL2S.js} +1 -1
  208. package/public/chunk-VJEUBTTK.js +1 -0
  209. package/public/chunk-VLX322GM.js +1 -0
  210. package/public/chunk-VUYAK52W.js +2 -0
  211. package/public/{chunk-WNWWUCCZ.js → chunk-WAA5KWIN.js} +3 -3
  212. package/public/chunk-WGYMALW2.js +1 -0
  213. package/public/chunk-WU2EPT6Y.js +1 -0
  214. package/public/chunk-WUMR3VEV.js +1 -0
  215. package/public/{chunk-BSD4FVOE.js → chunk-WZZWFCHX.js} +2 -2
  216. package/public/chunk-XB7KM2X2.js +1 -0
  217. package/public/chunk-YJ2ZKKJQ.js +1 -0
  218. package/public/index.html +2 -2
  219. package/public/main-BQGRDRA6.js +1 -0
  220. package/public/media/fa-brands-400-Q3XCMWHQ.woff2 +0 -0
  221. package/public/media/{fa-brands-400-KOKGDU7E.ttf → fa-brands-400-R2XQZCET.ttf} +0 -0
  222. package/public/media/fa-regular-400-QSNYFYRT.woff2 +0 -0
  223. package/public/media/{fa-regular-400-IPMAEX5Y.ttf → fa-regular-400-XUOPSR7E.ttf} +0 -0
  224. package/public/media/fa-solid-900-5ZUYHGA7.woff2 +0 -0
  225. package/public/media/{fa-solid-900-SRFFQLRM.ttf → fa-solid-900-PJNKLK6W.ttf} +0 -0
  226. package/public/polyfills-GCAZ7JAV.js +2 -0
  227. package/public/styles-PKR3EGHP.css +1 -0
  228. package/scripts/upgrade-install-plugin.sh +1 -1
  229. package/public/chunk-26EWO6RG.js +0 -1
  230. package/public/chunk-3IX3CLER.js +0 -1
  231. package/public/chunk-3ZJBUXFZ.js +0 -20
  232. package/public/chunk-4DDKOVAZ.js +0 -1
  233. package/public/chunk-4IGKXTSE.js +0 -6
  234. package/public/chunk-4PAHKWW6.js +0 -1
  235. package/public/chunk-4SMDEHVB.js +0 -1
  236. package/public/chunk-4X4WE4X3.js +0 -1
  237. package/public/chunk-57O4WFHV.js +0 -1
  238. package/public/chunk-5LGVFGMP.js +0 -1
  239. package/public/chunk-6HVQYFKM.js +0 -1
  240. package/public/chunk-6I5NOTAK.js +0 -5
  241. package/public/chunk-6TCHCTXZ.js +0 -1
  242. package/public/chunk-7RD3ANA6.js +0 -1
  243. package/public/chunk-AEZNVJNA.js +0 -1
  244. package/public/chunk-BKUGARB4.js +0 -7
  245. package/public/chunk-BPMSJ2VF.js +0 -1
  246. package/public/chunk-C3OLDXDF.js +0 -1
  247. package/public/chunk-CKJ7WSCY.js +0 -1
  248. package/public/chunk-DW3VS3AJ.js +0 -1
  249. package/public/chunk-FBHAKNKK.js +0 -1
  250. package/public/chunk-FTBDA6VV.js +0 -1
  251. package/public/chunk-FX2G7EKQ.js +0 -1
  252. package/public/chunk-GLXDWUP7.js +0 -1
  253. package/public/chunk-GW3B2BTG.js +0 -1
  254. package/public/chunk-GZS6TFES.js +0 -1
  255. package/public/chunk-HFUBGIQF.js +0 -8
  256. package/public/chunk-HJMBSNDE.js +0 -1
  257. package/public/chunk-HSJSWZHD.js +0 -1
  258. package/public/chunk-J2ACJ2SJ.js +0 -1
  259. package/public/chunk-J2GVB2HH.js +0 -1
  260. package/public/chunk-JGA3UJQJ.js +0 -1
  261. package/public/chunk-JLZHU54T.js +0 -23
  262. package/public/chunk-JTBW4DGJ.js +0 -1
  263. package/public/chunk-K2S5XQH3.js +0 -1
  264. package/public/chunk-KQJ7ONUG.js +0 -1
  265. package/public/chunk-L376ASVB.js +0 -1
  266. package/public/chunk-MR5BBXDA.js +0 -1
  267. package/public/chunk-NW6AFAD7.js +0 -1
  268. package/public/chunk-NZNNTHFQ.js +0 -1
  269. package/public/chunk-ORPWYWCL.js +0 -5
  270. package/public/chunk-P7LFHZOY.js +0 -1
  271. package/public/chunk-PLAUCLPN.js +0 -1
  272. package/public/chunk-Q3KYLUJV.js +0 -1
  273. package/public/chunk-Q63MEYUW.js +0 -1
  274. package/public/chunk-QHPDGSZ6.js +0 -1
  275. package/public/chunk-RVIWX6PZ.js +0 -1
  276. package/public/chunk-S522GW34.js +0 -1
  277. package/public/chunk-SCN3MDZ7.js +0 -1
  278. package/public/chunk-SQXGCWUT.js +0 -1
  279. package/public/chunk-TCSXGQNF.js +0 -1
  280. package/public/chunk-TGK4ZIKS.js +0 -1
  281. package/public/chunk-TR6DJBRN.js +0 -1
  282. package/public/chunk-TXOB7R5K.js +0 -7
  283. package/public/chunk-UEDIA63L.js +0 -1
  284. package/public/chunk-UG5DK2RQ.js +0 -2
  285. package/public/chunk-VHDU5NZU.js +0 -1
  286. package/public/chunk-VHO4CUXG.js +0 -1
  287. package/public/chunk-VWTJUCNR.js +0 -1
  288. package/public/chunk-WALRIIUN.js +0 -1
  289. package/public/chunk-WBI25HR2.js +0 -1
  290. package/public/chunk-WHJOLAED.js +0 -1
  291. package/public/chunk-WHJSVGC7.js +0 -1
  292. package/public/chunk-WJD5UZP6.js +0 -32
  293. package/public/chunk-WZ5X6FKY.js +0 -1
  294. package/public/chunk-Y6JL2J5G.js +0 -1
  295. package/public/chunk-YPX7RY6A.js +0 -1
  296. package/public/chunk-YZUUWSDB.js +0 -1
  297. package/public/chunk-YZVODNRC.js +0 -1
  298. package/public/chunk-ZT23DWNL.js +0 -1
  299. package/public/main-T37JUFDS.js +0 -1
  300. package/public/media/01-RQ3S2L53.png +0 -0
  301. package/public/media/02-VNCG2I2A.png +0 -0
  302. package/public/media/03-HI42L4ZG.png +0 -0
  303. package/public/media/04-FJLL55LZ.png +0 -0
  304. package/public/media/05-V3EO6SPT.png +0 -0
  305. package/public/media/06-EOJZCQZN.png +0 -0
  306. package/public/media/07-KMKB5PBD.png +0 -0
  307. package/public/media/08-UQJRF6B2.png +0 -0
  308. package/public/media/09-2DJQFRHH.png +0 -0
  309. package/public/media/arrow_left-CQT7FZM7.svg +0 -4
  310. package/public/media/arrow_right-SBUDRR2G.svg +0 -4
  311. package/public/media/fa-brands-400-6PJPV6JM.woff2 +0 -0
  312. package/public/media/fa-regular-400-OHB6J4OK.woff2 +0 -0
  313. package/public/media/fa-solid-900-ABTK6BNK.woff2 +0 -0
  314. package/public/polyfills-C6JHVXJJ.js +0 -2
  315. package/public/scripts-6GVLYD7F.js +0 -62
  316. package/public/styles-EG5MFQEM.css +0 -1
  317. /package/public/assets/{bootstrap-4 → bootstrap-5}/cssframework/assets.json +0 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "homebridge-config-ui-x",
3
3
  "displayName": "Homebridge UI",
4
- "version": "5.0.0-beta.10",
4
+ "version": "5.0.0-beta.100",
5
5
  "description": "A web based management, configuration and control platform for Homebridge.",
6
6
  "author": "oznu <dev@oz.nu>",
7
7
  "license": "MIT",
@@ -56,7 +56,7 @@
56
56
  "hb-service": "dist/bin/hb-service.js"
57
57
  },
58
58
  "engines": {
59
- "node": "^18 || ^20 || ^22",
59
+ "node": "^20 || ^22 || ^24",
60
60
  "homebridge": "^1.8.0 || ^2.0.0-beta.0"
61
61
  },
62
62
  "scripts": {
@@ -79,29 +79,28 @@
79
79
  "watch:ui": "npm run start --prefix ui"
80
80
  },
81
81
  "dependencies": {
82
- "@fastify/helmet": "11.1.1",
83
- "@fastify/multipart": "8.3.0",
84
- "@fastify/static": "7.0.4",
85
- "@homebridge/hap-client": "2.0.5-beta.0",
86
- "@homebridge/node-pty-prebuilt-multiarch": "0.12.0-beta.2",
87
- "@nestjs/axios": "3.1.2",
88
- "@nestjs/common": "10.4.8",
89
- "@nestjs/core": "10.4.8",
90
- "@nestjs/jwt": "10.2.0",
91
- "@nestjs/passport": "10.0.3",
92
- "@nestjs/platform-fastify": "10.4.8",
93
- "@nestjs/platform-socket.io": "10.4.8",
94
- "@nestjs/swagger": "8.0.7",
95
- "@nestjs/websockets": "10.4.8",
96
- "axios": "1.7.7",
82
+ "@fastify/helmet": "13.0.1",
83
+ "@fastify/multipart": "9.0.3",
84
+ "@fastify/static": "8.2.0",
85
+ "@homebridge/hap-client": "3.1.0",
86
+ "@homebridge/node-pty-prebuilt-multiarch": "0.13.0-beta.4",
87
+ "@nestjs/axios": "4.0.0",
88
+ "@nestjs/common": "11.1.3",
89
+ "@nestjs/core": "11.1.3",
90
+ "@nestjs/jwt": "11.0.0",
91
+ "@nestjs/passport": "11.0.5",
92
+ "@nestjs/platform-fastify": "11.1.3",
93
+ "@nestjs/platform-socket.io": "11.1.3",
94
+ "@nestjs/swagger": "11.2.0",
95
+ "@nestjs/websockets": "11.1.3",
96
+ "axios": "1.10.0",
97
97
  "bash-color": "0.0.4",
98
- "buffer-shims": "1.0.0",
99
98
  "class-transformer": "0.5.1",
100
- "class-validator": "0.14.1",
101
- "commander": "12.1.0",
99
+ "class-validator": "0.14.2",
100
+ "commander": "14.0.0",
102
101
  "dayjs": "1.11.13",
103
- "fastify": "4.28.1",
104
- "fs-extra": "11.2.0",
102
+ "fastify": "5.4.0",
103
+ "fs-extra": "11.3.0",
105
104
  "jsonwebtoken": "9.0.2",
106
105
  "lodash": "4.17.21",
107
106
  "node-cache": "5.1.2",
@@ -112,39 +111,44 @@
112
111
  "passport": "0.7.0",
113
112
  "passport-jwt": "4.0.1",
114
113
  "reflect-metadata": "0.2.2",
115
- "rxjs": "7.8.1",
116
- "semver": "7.6.3",
117
- "systeminformation": "5.23.5",
114
+ "rxjs": "7.8.2",
115
+ "semver": "7.7.2",
116
+ "systeminformation": "5.27.5",
118
117
  "tail": "2.2.6",
119
- "tar": "6.2.1",
118
+ "tar": "7.4.3",
120
119
  "tcp-port-used": "1.0.2",
121
120
  "unzipper": "0.12.3"
122
121
  },
123
122
  "devDependencies": {
124
- "@antfu/eslint-config": "^3.9.2",
125
- "@nestjs/testing": "^10.4.8",
123
+ "@antfu/eslint-config": "^4.15.0",
124
+ "@nestjs/testing": "^11.1.3",
125
+ "@prettier/plugin-xml": "^3.4.1",
126
126
  "@types/fs-extra": "^11.0.4",
127
- "@types/lodash": "^4.17.13",
128
- "@types/node": "^22.9.3",
127
+ "@types/lodash": "^4.17.18",
128
+ "@types/node": "^24.0.3",
129
129
  "@types/node-schedule": "^2.1.7",
130
130
  "@types/passport-jwt": "^4.0.1",
131
- "@types/semver": "^7.5.8",
131
+ "@types/semver": "^7.7.0",
132
132
  "@types/tail": "^2.2.3",
133
- "@types/tar": "^6.1.13",
134
133
  "@types/tcp-port-used": "^1.0.4",
135
- "@types/unzipper": "^0.10.10",
136
- "@vitest/coverage-v8": "^2.1.5",
137
- "concurrently": "^9.1.0",
138
- "eslint-plugin-format": "^0.1.2",
139
- "form-data": "^4.0.1",
140
- "nodemon": "^3.1.7",
134
+ "@types/unzipper": "^0.10.11",
135
+ "@vitest/coverage-v8": "^3.2.4",
136
+ "concurrently": "^9.1.2",
137
+ "eslint-plugin-format": "^1.0.1",
138
+ "form-data": "^4.0.3",
139
+ "nodemon": "^3.1.10",
141
140
  "rimraf": "^6.0.1",
142
- "ts-loader": "^9.5.1",
141
+ "ts-loader": "^9.5.2",
143
142
  "ts-node": "^10.9.2",
144
143
  "tsconfig-paths": "^4.2.0",
145
- "typescript": "^5.7.2",
146
- "unplugin-swc": "^1.5.1",
147
- "vitest": "^2.1.5"
144
+ "typescript": "^5.8.3",
145
+ "unplugin-swc": "^1.5.5",
146
+ "vitest": "^3.2.4"
147
+ },
148
+ "overrides": {
149
+ "@nestjs/platform-fastify": {
150
+ "fastify": "5.4.0"
151
+ }
148
152
  },
149
153
  "maintainers": [
150
154
  {
@@ -183,5 +187,8 @@
183
187
  "email": "nfarina@gmail.com",
184
188
  "name": "nfarina"
185
189
  }
186
- ]
190
+ ],
191
+ "scarfSettings": {
192
+ "enabled": false
193
+ }
187
194
  }
@@ -1,11 +1,11 @@
1
1
 
2
2
  --------------------------------------------------------------------------------
3
- Package: @angular/common
3
+ Package: @angular/animations
4
4
  License: "MIT"
5
5
 
6
6
  The MIT License
7
7
 
8
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
8
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
9
9
 
10
10
  Permission is hereby granted, free of charge, to any person obtaining a copy
11
11
  of this software and associated documentation files (the "Software"), to deal
@@ -26,12 +26,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
26
  THE SOFTWARE.
27
27
 
28
28
  --------------------------------------------------------------------------------
29
- Package: @angular/animations
29
+ Package: @angular/platform-browser
30
30
  License: "MIT"
31
31
 
32
32
  The MIT License
33
33
 
34
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
34
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
35
35
 
36
36
  Permission is hereby granted, free of charge, to any person obtaining a copy
37
37
  of this software and associated documentation files (the "Software"), to deal
@@ -52,12 +52,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
52
52
  THE SOFTWARE.
53
53
 
54
54
  --------------------------------------------------------------------------------
55
- Package: @angular/platform-browser
55
+ Package: @angular/common
56
56
  License: "MIT"
57
57
 
58
58
  The MIT License
59
59
 
60
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
60
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
61
61
 
62
62
  Permission is hereby granted, free of charge, to any person obtaining a copy
63
63
  of this software and associated documentation files (the "Software"), to deal
@@ -156,7 +156,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
156
156
  SOFTWARE.
157
157
 
158
158
  --------------------------------------------------------------------------------
159
- Package: @ng-formworks/bootstrap4
159
+ Package: @ng-formworks/bootstrap5
160
160
  License: "MIT"
161
161
 
162
162
  MIT License
@@ -181,13 +181,39 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
181
181
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
182
182
  SOFTWARE.
183
183
 
184
+ --------------------------------------------------------------------------------
185
+ Package: is-standalone-pwa
186
+ License: "MIT"
187
+
188
+ MIT License
189
+
190
+ Copyright (c) 2024 Faisal Salman
191
+
192
+ Permission is hereby granted, free of charge, to any person obtaining a copy
193
+ of this software and associated documentation files (the "Software"), to deal
194
+ in the Software without restriction, including without limitation the rights
195
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
196
+ copies of the Software, and to permit persons to whom the Software is
197
+ furnished to do so, subject to the following conditions:
198
+
199
+ The above copyright notice and this permission notice shall be included in all
200
+ copies or substantial portions of the Software.
201
+
202
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
203
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
204
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
205
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
206
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
207
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
208
+ SOFTWARE.
209
+
184
210
  --------------------------------------------------------------------------------
185
211
  Package: angular-gridster2
186
212
  License: "MIT"
187
213
 
188
214
  MIT License
189
215
 
190
- Copyright (c) 2024 Tiberiu Zuld
216
+ Copyright (c) 2025 Tiberiu Zuld
191
217
 
192
218
  Permission is hereby granted, free of charge, to any person obtaining a copy
193
219
  of this software and associated documentation files (the "Software"), to deal
@@ -353,17 +379,13 @@ License: "MIT"
353
379
 
354
380
 
355
381
  --------------------------------------------------------------------------------
356
- Package: ng2-dragula
357
- License: "MIT"
358
-
359
-
360
- --------------------------------------------------------------------------------
361
- Package: nouislider
382
+ Package: @homebridge/hap-client
362
383
  License: "MIT"
363
384
 
364
385
  MIT License
365
386
 
366
- Copyright (c) 2019 Léon Gersen
387
+ Copyright (c) 2023-2025 Homebridge
388
+ Copyright (c) 2020-2023 oznu <dev@oz.nu>
367
389
 
368
390
  Permission is hereby granted, free of charge, to any person obtaining a copy
369
391
  of this software and associated documentation files (the "Software"), to deal
@@ -384,12 +406,43 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
384
406
  SOFTWARE.
385
407
 
386
408
  --------------------------------------------------------------------------------
387
- Package: ng2-nouislider
409
+ Package: ng2-dragula
410
+ License: "MIT"
411
+
412
+
413
+ --------------------------------------------------------------------------------
414
+ Package: ng-inline-svg-2
415
+ License: "MIT"
416
+
417
+ The MIT License (MIT)
418
+
419
+ Copyright (c) 2016 Eugene Cheung
420
+
421
+ Permission is hereby granted, free of charge, to any person obtaining a copy
422
+ of this software and associated documentation files (the "Software"), to deal
423
+ in the Software without restriction, including without limitation the rights
424
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
425
+ copies of the Software, and to permit persons to whom the Software is
426
+ furnished to do so, subject to the following conditions:
427
+
428
+ The above copyright notice and this permission notice shall be included in
429
+ all copies or substantial portions of the Software.
430
+
431
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
432
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
433
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
434
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
435
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
436
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
437
+ THE SOFTWARE.
438
+
439
+ --------------------------------------------------------------------------------
440
+ Package: nouislider
388
441
  License: "MIT"
389
442
 
390
443
  MIT License
391
444
 
392
- Copyright (c) 2017-2019 Tomasz Bak https://www.tomaszbak.com/
445
+ Copyright (c) 2019 Léon Gersen
393
446
 
394
447
  Permission is hereby granted, free of charge, to any person obtaining a copy
395
448
  of this software and associated documentation files (the "Software"), to deal
@@ -410,12 +463,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
410
463
  SOFTWARE.
411
464
 
412
465
  --------------------------------------------------------------------------------
413
- Package: ng-inline-svg-2
466
+ Package: ng2-nouislider
414
467
  License: "MIT"
415
468
 
416
- The MIT License (MIT)
469
+ MIT License
417
470
 
418
- Copyright (c) 2016 Eugene Cheung
471
+ Copyright (c) 2017-2019 Tomasz Bak https://www.tomaszbak.com/
419
472
 
420
473
  Permission is hereby granted, free of charge, to any person obtaining a copy
421
474
  of this software and associated documentation files (the "Software"), to deal
@@ -424,16 +477,16 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
424
477
  copies of the Software, and to permit persons to whom the Software is
425
478
  furnished to do so, subject to the following conditions:
426
479
 
427
- The above copyright notice and this permission notice shall be included in
428
- all copies or substantial portions of the Software.
480
+ The above copyright notice and this permission notice shall be included in all
481
+ copies or substantial portions of the Software.
429
482
 
430
483
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
431
484
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
432
485
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
433
486
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
434
487
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
435
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
436
- THE SOFTWARE.
488
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
489
+ SOFTWARE.
437
490
 
438
491
  --------------------------------------------------------------------------------
439
492
  Package: ajv
@@ -548,6 +601,32 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
548
601
 
549
602
  The complete list of contributors can be found at:
550
603
  - https://github.com/garycourt/uri-js/graphs/contributors
604
+ --------------------------------------------------------------------------------
605
+ Package: ajv-keywords
606
+ License: "MIT"
607
+
608
+ The MIT License (MIT)
609
+
610
+ Copyright (c) 2016 Evgeny Poberezkin
611
+
612
+ Permission is hereby granted, free of charge, to any person obtaining a copy
613
+ of this software and associated documentation files (the "Software"), to deal
614
+ in the Software without restriction, including without limitation the rights
615
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
616
+ copies of the Software, and to permit persons to whom the Software is
617
+ furnished to do so, subject to the following conditions:
618
+
619
+ The above copyright notice and this permission notice shall be included in all
620
+ copies or substantial portions of the Software.
621
+
622
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
623
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
624
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
625
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
626
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
627
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
628
+ SOFTWARE.
629
+
551
630
  --------------------------------------------------------------------------------
552
631
  Package: emoji-js
553
632
  License: "MIT"
@@ -600,6 +679,37 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
600
679
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
601
680
  SOFTWARE.
602
681
 
682
+ --------------------------------------------------------------------------------
683
+ Package: sortablejs
684
+ License: "MIT"
685
+
686
+ MIT License
687
+
688
+ Copyright (c) 2019 All contributors to Sortable
689
+
690
+ Permission is hereby granted, free of charge, to any person obtaining a copy
691
+ of this software and associated documentation files (the "Software"), to deal
692
+ in the Software without restriction, including without limitation the rights
693
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
694
+ copies of the Software, and to permit persons to whom the Software is
695
+ furnished to do so, subject to the following conditions:
696
+
697
+ The above copyright notice and this permission notice shall be included in all
698
+ copies or substantial portions of the Software.
699
+
700
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
701
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
702
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
703
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
704
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
705
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
706
+ SOFTWARE.
707
+
708
+ --------------------------------------------------------------------------------
709
+ Package: nxt-sortablejs
710
+ License: "MIT"
711
+
712
+
603
713
  --------------------------------------------------------------------------------
604
714
  Package: lodash-es
605
715
  License: "MIT"
@@ -785,21 +895,30 @@ License: "MIT"
785
895
 
786
896
 
787
897
  --------------------------------------------------------------------------------
788
- Package: file-saver
898
+ Package: mobile-detect
789
899
  License: "MIT"
790
900
 
791
- The MIT License
792
-
793
- Copyright © 2016 [Eli Grey][1].
794
-
795
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
901
+ The MIT License (MIT)
796
902
 
797
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
903
+ Copyright (c) 2013 Heinrich Goebl
798
904
 
799
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
905
+ Permission is hereby granted, free of charge, to any person obtaining a copy
906
+ of this software and associated documentation files (the "Software"), to deal
907
+ in the Software without restriction, including without limitation the rights
908
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
909
+ copies of the Software, and to permit persons to whom the Software is
910
+ furnished to do so, subject to the following conditions:
800
911
 
801
- [1]: http://eligrey.com
912
+ The above copyright notice and this permission notice shall be included in
913
+ all copies or substantial portions of the Software.
802
914
 
915
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
916
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
917
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
918
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
919
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
920
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
921
+ THE SOFTWARE.
803
922
  --------------------------------------------------------------------------------
804
923
  Package: xterm-addon-web-links
805
924
  License: "MIT"
@@ -825,33 +944,20 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
825
944
  THE SOFTWARE.
826
945
 
827
946
  --------------------------------------------------------------------------------
828
- Package: qrcode
947
+ Package: file-saver
829
948
  License: "MIT"
830
949
 
950
+ The MIT License
831
951
 
832
- --------------------------------------------------------------------------------
833
- Package: dijkstrajs
834
- License: "MIT"
835
-
836
- ```
837
- Dijkstra path-finding functions. Adapted from the Dijkstar Python project.
952
+ Copyright © 2016 [Eli Grey][1].
838
953
 
839
- Copyright (C) 2008
840
- Wyatt Baldwin <self@wyattbaldwin.com>
841
- All rights reserved
954
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
842
955
 
843
- Licensed under the MIT license.
956
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
844
957
 
845
- http://www.opensource.org/licenses/mit-license.php
958
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
846
959
 
847
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
848
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
849
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
850
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
851
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
852
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
853
- THE SOFTWARE.
854
- ```
960
+ [1]: http://eligrey.com
855
961
 
856
962
  --------------------------------------------------------------------------------
857
963
  Package: xterm
@@ -903,6 +1009,35 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
903
1009
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
904
1010
  THE SOFTWARE.
905
1011
 
1012
+ --------------------------------------------------------------------------------
1013
+ Package: qrcode
1014
+ License: "MIT"
1015
+
1016
+
1017
+ --------------------------------------------------------------------------------
1018
+ Package: dijkstrajs
1019
+ License: "MIT"
1020
+
1021
+ ```
1022
+ Dijkstra path-finding functions. Adapted from the Dijkstar Python project.
1023
+
1024
+ Copyright (C) 2008
1025
+ Wyatt Baldwin <self@wyattbaldwin.com>
1026
+ All rights reserved
1027
+
1028
+ Licensed under the MIT license.
1029
+
1030
+ http://www.opensource.org/licenses/mit-license.php
1031
+
1032
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1033
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1034
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1035
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1036
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1037
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1038
+ THE SOFTWARE.
1039
+ ```
1040
+
906
1041
  --------------------------------------------------------------------------------
907
1042
  Package: semver
908
1043
  License: "ISC"
@@ -923,38 +1058,13 @@ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
923
1058
  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
924
1059
  IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
925
1060
 
926
- --------------------------------------------------------------------------------
927
- Package: mobile-detect
928
- License: "MIT"
929
-
930
- The MIT License (MIT)
931
-
932
- Copyright (c) 2013 Heinrich Goebl
933
-
934
- Permission is hereby granted, free of charge, to any person obtaining a copy
935
- of this software and associated documentation files (the "Software"), to deal
936
- in the Software without restriction, including without limitation the rights
937
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
938
- copies of the Software, and to permit persons to whom the Software is
939
- furnished to do so, subject to the following conditions:
940
-
941
- The above copyright notice and this permission notice shall be included in
942
- all copies or substantial portions of the Software.
943
-
944
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
945
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
946
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
947
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
948
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
949
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
950
- THE SOFTWARE.
951
1061
  --------------------------------------------------------------------------------
952
1062
  Package: @angular/core
953
1063
  License: "MIT"
954
1064
 
955
1065
  The MIT License
956
1066
 
957
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
1067
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
958
1068
 
959
1069
  Permission is hereby granted, free of charge, to any person obtaining a copy
960
1070
  of this software and associated documentation files (the "Software"), to deal
@@ -1031,7 +1141,33 @@ License: "MIT"
1031
1141
 
1032
1142
  The MIT License
1033
1143
 
1034
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
1144
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
1145
+
1146
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1147
+ of this software and associated documentation files (the "Software"), to deal
1148
+ in the Software without restriction, including without limitation the rights
1149
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1150
+ copies of the Software, and to permit persons to whom the Software is
1151
+ furnished to do so, subject to the following conditions:
1152
+
1153
+ The above copyright notice and this permission notice shall be included in
1154
+ all copies or substantial portions of the Software.
1155
+
1156
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1157
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1158
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1159
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1160
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1161
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1162
+ THE SOFTWARE.
1163
+
1164
+ --------------------------------------------------------------------------------
1165
+ Package: @angular/router
1166
+ License: "MIT"
1167
+
1168
+ The MIT License
1169
+
1170
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
1035
1171
 
1036
1172
  Permission is hereby granted, free of charge, to any person obtaining a copy
1037
1173
  of this software and associated documentation files (the "Software"), to deal
@@ -1183,32 +1319,6 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1183
1319
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1184
1320
  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1185
1321
 
1186
- --------------------------------------------------------------------------------
1187
- Package: @angular/router
1188
- License: "MIT"
1189
-
1190
- The MIT License
1191
-
1192
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
1193
-
1194
- Permission is hereby granted, free of charge, to any person obtaining a copy
1195
- of this software and associated documentation files (the "Software"), to deal
1196
- in the Software without restriction, including without limitation the rights
1197
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1198
- copies of the Software, and to permit persons to whom the Software is
1199
- furnished to do so, subject to the following conditions:
1200
-
1201
- The above copyright notice and this permission notice shall be included in
1202
- all copies or substantial portions of the Software.
1203
-
1204
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1205
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1206
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1207
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1208
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1209
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1210
- THE SOFTWARE.
1211
-
1212
1322
  --------------------------------------------------------------------------------
1213
1323
  Package: @auth0/angular-jwt
1214
1324
  License: "MIT"
@@ -1529,7 +1639,7 @@ License: "MIT"
1529
1639
 
1530
1640
  The MIT License
1531
1641
 
1532
- Copyright (c) 2010-2024 Google LLC. https://angular.io/license
1642
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
1533
1643
 
1534
1644
  Permission is hereby granted, free of charge, to any person obtaining a copy
1535
1645
  of this software and associated documentation files (the "Software"), to deal
@@ -1555,7 +1665,7 @@ License: "MIT"
1555
1665
 
1556
1666
  The MIT License
1557
1667
 
1558
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
1668
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
1559
1669
 
1560
1670
  Permission is hereby granted, free of charge, to any person obtaining a copy
1561
1671
  of this software and associated documentation files (the "Software"), to deal