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.
- package/CHANGELOG.md +438 -31
- package/CONTRIBUTING.md +5 -4
- package/LICENSE +1 -1
- package/config.schema.json +55 -252
- package/dist/bin/hb-service.d.ts +2 -2
- package/dist/bin/hb-service.js +52 -51
- package/dist/bin/hb-service.js.map +1 -1
- package/dist/bin/platforms/darwin.js +3 -10
- package/dist/bin/platforms/darwin.js.map +1 -1
- package/dist/bin/platforms/win32.js +4 -2
- package/dist/bin/platforms/win32.js.map +1 -1
- package/dist/bin/standalone.js +1 -0
- package/dist/bin/standalone.js.map +1 -1
- package/dist/core/auth/auth.controller.d.ts +31 -3
- package/dist/core/auth/auth.controller.js.map +1 -1
- package/dist/core/auth/auth.module.js +1 -1
- package/dist/core/auth/auth.module.js.map +1 -1
- package/dist/core/auth/auth.service.js +10 -10
- package/dist/core/auth/auth.service.js.map +1 -1
- package/dist/core/auth/jwt.strategy.d.ts +3 -1
- package/dist/core/config/config.service.d.ts +46 -11
- package/dist/core/config/config.service.js +57 -20
- package/dist/core/config/config.service.js.map +1 -1
- package/dist/core/config/config.startup.js +2 -2
- package/dist/core/config/config.startup.js.map +1 -1
- package/dist/core/homebridge-ipc/homebridge-ipc.service.js +3 -3
- package/dist/core/homebridge-ipc/homebridge-ipc.service.js.map +1 -1
- package/dist/index.js +6 -77
- package/dist/index.js.map +1 -1
- package/dist/main.js +2 -1
- package/dist/main.js.map +1 -1
- package/dist/modules/accessories/accessories.controller.js +5 -5
- package/dist/modules/accessories/accessories.controller.js.map +1 -1
- package/dist/modules/accessories/accessories.service.js +8 -7
- package/dist/modules/accessories/accessories.service.js.map +1 -1
- package/dist/modules/backup/backup.controller.js +7 -7
- package/dist/modules/backup/backup.controller.js.map +1 -1
- package/dist/modules/backup/backup.service.js +19 -79
- package/dist/modules/backup/backup.service.js.map +1 -1
- package/dist/modules/child-bridges/child-bridges.service.js +0 -7
- package/dist/modules/child-bridges/child-bridges.service.js.map +1 -1
- package/dist/modules/config-editor/config-editor.controller.d.ts +7 -1
- package/dist/modules/config-editor/config-editor.controller.js +36 -8
- package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
- package/dist/modules/config-editor/config-editor.service.d.ts +5 -1
- package/dist/modules/config-editor/config-editor.service.js +132 -69
- package/dist/modules/config-editor/config-editor.service.js.map +1 -1
- package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.d.ts +1 -1
- package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +13 -11
- package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
- package/dist/modules/log/log.gateway.d.ts +2 -1
- package/dist/modules/log/log.gateway.js.map +1 -1
- package/dist/modules/log/log.service.js +3 -3
- package/dist/modules/log/log.service.js.map +1 -1
- package/dist/modules/platform-tools/docker/docker.controller.js +3 -3
- package/dist/modules/platform-tools/docker/docker.controller.js.map +1 -1
- package/dist/modules/platform-tools/docker/docker.service.js +1 -1
- package/dist/modules/platform-tools/docker/docker.service.js.map +1 -1
- package/dist/modules/platform-tools/hb-service/hb-service.controller.js +3 -3
- package/dist/modules/platform-tools/hb-service/hb-service.controller.js.map +1 -1
- package/dist/modules/platform-tools/hb-service/hb-service.service.js +6 -6
- package/dist/modules/platform-tools/hb-service/hb-service.service.js.map +1 -1
- package/dist/modules/platform-tools/linux/linux.controller.js +2 -2
- package/dist/modules/platform-tools/linux/linux.controller.js.map +1 -1
- package/dist/modules/platform-tools/linux/linux.service.js +2 -2
- package/dist/modules/platform-tools/linux/linux.service.js.map +1 -1
- package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +2 -1
- package/dist/modules/platform-tools/terminal/terminal.gateway.js.map +1 -1
- package/dist/modules/platform-tools/terminal/terminal.service.js +2 -2
- package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
- package/dist/modules/plugins/plugins.controller.js +4 -4
- package/dist/modules/plugins/plugins.controller.js.map +1 -1
- package/dist/modules/plugins/plugins.service.d.ts +7 -1
- package/dist/modules/plugins/plugins.service.js +215 -127
- package/dist/modules/plugins/plugins.service.js.map +1 -1
- package/dist/modules/server/server.controller.d.ts +33 -3
- package/dist/modules/server/server.controller.js +162 -20
- package/dist/modules/server/server.controller.js.map +1 -1
- package/dist/modules/server/server.service.d.ts +35 -6
- package/dist/modules/server/server.service.js +265 -66
- package/dist/modules/server/server.service.js.map +1 -1
- package/dist/modules/status/status.controller.d.ts +0 -1
- package/dist/modules/status/status.controller.js +3 -4
- package/dist/modules/status/status.controller.js.map +1 -1
- package/dist/modules/status/status.gateway.d.ts +1 -1
- package/dist/modules/status/status.service.d.ts +1 -1
- package/dist/modules/status/status.service.js +25 -41
- package/dist/modules/status/status.service.js.map +1 -1
- package/dist/modules/users/users.controller.js +7 -7
- package/dist/modules/users/users.controller.js.map +1 -1
- package/dist/self-check.js +6 -6
- package/dist/self-check.js.map +1 -1
- package/package.json +50 -43
- package/public/3rdpartylicenses.txt +218 -108
- package/public/assets/hap-icons/airpurifier.svg +49 -16
- package/public/assets/hap-icons/airquality.svg +24 -13
- package/public/assets/hap-icons/co-sensor.svg +72 -0
- package/public/assets/hap-icons/co2-sensor.svg +72 -0
- package/public/assets/hap-icons/contactsensor-closed.svg +35 -2
- package/public/assets/hap-icons/contactsensor-open.svg +80 -2
- package/public/assets/hap-icons/door-closed.svg +32 -2
- package/public/assets/hap-icons/door-open.svg +48 -2
- package/public/assets/hap-icons/fan-off.svg +24 -13
- package/public/assets/hap-icons/fan-on.svg +24 -13
- package/public/assets/hap-icons/garagedoor.svg +24 -13
- package/public/assets/hap-icons/humidity.svg +24 -13
- package/public/assets/hap-icons/irrigation-system.svg +47 -18
- package/public/assets/hap-icons/leaksensor.svg +52 -2
- package/public/assets/hap-icons/light.svg +47 -28
- package/public/assets/hap-icons/lightbulb.svg +24 -13
- package/public/assets/hap-icons/lock-locked.svg +24 -13
- package/public/assets/hap-icons/lock-unlocked.svg +24 -13
- package/public/assets/hap-icons/motionsensor.svg +100 -2
- package/public/assets/hap-icons/occupancysensor.svg +97 -2
- package/public/assets/hap-icons/outlet.svg +24 -13
- package/public/assets/hap-icons/securitysystem-active.svg +102 -2
- package/public/assets/hap-icons/securitysystem-off.svg +68 -2
- package/public/assets/hap-icons/smokesensor.svg +42 -9
- package/public/assets/hap-icons/speaker.svg +29 -13
- package/public/assets/hap-icons/statelessprogrammableswitch.svg +51 -2
- package/public/assets/hap-icons/switch.svg +24 -13
- package/public/assets/hap-icons/television.svg +15 -4
- package/public/assets/hap-icons/temperature.svg +24 -13
- package/public/assets/hap-icons/unknown.svg +24 -13
- package/public/assets/hap-icons/valve-generic.svg +27 -16
- package/public/assets/hap-icons/valve-irrigation.svg +37 -21
- package/public/assets/hap-icons/valve-showerhead.svg +52 -0
- package/public/assets/hap-icons/valve-waterfaucet.svg +21 -0
- package/public/assets/hap-icons/window-closed.svg +85 -2
- package/public/assets/hap-icons/window-open.svg +136 -2
- package/public/assets/hap-icons/windowcovering-closed.svg +45 -49
- package/public/assets/hap-icons/windowcovering-open.svg +40 -44
- package/public/assets/homebridge-color-round.svg +36 -1
- package/public/assets/homebridge-logo.svg +11 -1
- package/public/assets/mask-icon.svg +5 -1
- package/public/assets/plugin-ui-utils/ui.js +3 -0
- package/public/assets/plugin-ui-utils/ui.js.map +1 -1
- package/public/chunk-2E6EOZUJ.js +1 -0
- package/public/chunk-2EEZAGZA.js +1 -0
- package/public/chunk-2G7GNBIF.js +1 -0
- package/public/chunk-3GEFBFMQ.js +1 -0
- package/public/chunk-3VYIHHCL.js +1 -0
- package/public/chunk-45NQ4GBG.js +1 -0
- package/public/chunk-4G7RRMI2.js +1 -0
- package/public/chunk-4L2H4MMG.js +29 -0
- package/public/chunk-4LX4LX6P.js +1 -0
- package/public/chunk-4SLRCK6B.js +2 -0
- package/public/chunk-53ILAFUX.js +1 -0
- package/public/chunk-5FYL3TBQ.js +1 -0
- package/public/chunk-5PN6UJOB.js +1 -0
- package/public/chunk-6IOCCVAH.js +1 -0
- package/public/chunk-7REMZHOO.js +1 -0
- package/public/{chunk-6FLZSYP2.js → chunk-AH6LOD34.js} +1 -1
- package/public/chunk-ALG7CIS3.js +5 -0
- package/public/chunk-AQNNOWXC.js +1 -0
- package/public/chunk-B4X7IOGK.js +1 -0
- package/public/chunk-BALPGJEG.js +1 -0
- package/public/chunk-BIRWL4X3.js +1 -0
- package/public/chunk-BMCQHGMB.js +1 -0
- package/public/chunk-BNYXD34L.js +1 -0
- package/public/{chunk-EA5J2VEJ.js → chunk-BRW7C4BZ.js} +1 -1
- package/public/chunk-C6HQUAQJ.js +1 -0
- package/public/chunk-C6LXQBT3.js +1 -0
- package/public/chunk-CG7LPZUJ.js +1 -0
- package/public/chunk-CMZBGXBL.js +1 -0
- package/public/chunk-CRIZPUI6.js +8 -0
- package/public/chunk-DDFZVHUO.js +1 -0
- package/public/chunk-DQUBVCJE.js +1 -0
- package/public/{chunk-Q5NJBBHF.js → chunk-EULZTUQA.js} +1 -1
- package/public/chunk-F6PRUGSN.js +1 -0
- package/public/chunk-FD3D3FMF.js +1 -0
- package/public/chunk-FJJNRLA7.js +1 -0
- package/public/chunk-FSQ4KA4X.js +1 -0
- package/public/chunk-FXS7MG4Z.js +1 -0
- package/public/chunk-GMY5QOXR.js +7 -0
- package/public/chunk-HE2YZMXJ.js +1 -0
- package/public/chunk-HOGBMPOF.js +1 -0
- package/public/chunk-HOI6GB6V.js +1 -0
- package/public/{chunk-7EUQWCP5.js → chunk-IOWBVW62.js} +2 -2
- package/public/chunk-LCYRJQ4W.js +1 -0
- package/public/chunk-M2U64RPA.js +1 -0
- package/public/chunk-MAXJEMB2.js +1 -0
- package/public/chunk-MGEQZI52.js +1 -0
- package/public/chunk-MTSNBCD6.js +1 -0
- package/public/chunk-O752QW52.js +8 -0
- package/public/chunk-OHSRCO5R.js +1 -0
- package/public/chunk-OTJCSRHZ.js +1 -0
- package/public/chunk-PAQIQJ5I.js +1 -0
- package/public/chunk-PODF4FUD.js +1 -0
- package/public/chunk-PYWNQR2G.js +1 -0
- package/public/chunk-Q5OGHYTC.js +1 -0
- package/public/chunk-QIH36FRX.js +1 -0
- package/public/chunk-QMB5XE4Y.js +1 -0
- package/public/chunk-R3VPSO5X.js +7 -0
- package/public/chunk-RGUTUTJY.js +20 -0
- package/public/{chunk-TIVE3PVO.js → chunk-RJAFS3B2.js} +1 -1
- package/public/{chunk-QE7DO6J3.js → chunk-RNHMRKPJ.js} +2 -2
- package/public/chunk-SHP2ASKV.js +5 -0
- package/public/chunk-SMR5XBWZ.js +1 -0
- package/public/chunk-T5VLECCH.js +23 -0
- package/public/chunk-TFSUXAYX.js +1 -0
- package/public/chunk-UCO62FWN.js +1 -0
- package/public/{chunk-PIAD3JIG.js → chunk-UTAVUGTT.js} +11 -11
- package/public/{chunk-JZZQRLNW.js → chunk-UVOJ3BF7.js} +1 -1
- package/public/chunk-UVQC4EUO.js +6 -0
- package/public/chunk-VECPBVSQ.js +1 -0
- package/public/{chunk-CCUID66K.js → chunk-VHTQTL2S.js} +1 -1
- package/public/chunk-VJEUBTTK.js +1 -0
- package/public/chunk-VLX322GM.js +1 -0
- package/public/chunk-VUYAK52W.js +2 -0
- package/public/{chunk-WNWWUCCZ.js → chunk-WAA5KWIN.js} +3 -3
- package/public/chunk-WGYMALW2.js +1 -0
- package/public/chunk-WU2EPT6Y.js +1 -0
- package/public/chunk-WUMR3VEV.js +1 -0
- package/public/{chunk-BSD4FVOE.js → chunk-WZZWFCHX.js} +2 -2
- package/public/chunk-XB7KM2X2.js +1 -0
- package/public/chunk-YJ2ZKKJQ.js +1 -0
- package/public/index.html +2 -2
- package/public/main-BQGRDRA6.js +1 -0
- package/public/media/fa-brands-400-Q3XCMWHQ.woff2 +0 -0
- package/public/media/{fa-brands-400-KOKGDU7E.ttf → fa-brands-400-R2XQZCET.ttf} +0 -0
- package/public/media/fa-regular-400-QSNYFYRT.woff2 +0 -0
- package/public/media/{fa-regular-400-IPMAEX5Y.ttf → fa-regular-400-XUOPSR7E.ttf} +0 -0
- package/public/media/fa-solid-900-5ZUYHGA7.woff2 +0 -0
- package/public/media/{fa-solid-900-SRFFQLRM.ttf → fa-solid-900-PJNKLK6W.ttf} +0 -0
- package/public/polyfills-GCAZ7JAV.js +2 -0
- package/public/styles-PKR3EGHP.css +1 -0
- package/scripts/upgrade-install-plugin.sh +1 -1
- package/public/chunk-26EWO6RG.js +0 -1
- package/public/chunk-3IX3CLER.js +0 -1
- package/public/chunk-3ZJBUXFZ.js +0 -20
- package/public/chunk-4DDKOVAZ.js +0 -1
- package/public/chunk-4IGKXTSE.js +0 -6
- package/public/chunk-4PAHKWW6.js +0 -1
- package/public/chunk-4SMDEHVB.js +0 -1
- package/public/chunk-4X4WE4X3.js +0 -1
- package/public/chunk-57O4WFHV.js +0 -1
- package/public/chunk-5LGVFGMP.js +0 -1
- package/public/chunk-6HVQYFKM.js +0 -1
- package/public/chunk-6I5NOTAK.js +0 -5
- package/public/chunk-6TCHCTXZ.js +0 -1
- package/public/chunk-7RD3ANA6.js +0 -1
- package/public/chunk-AEZNVJNA.js +0 -1
- package/public/chunk-BKUGARB4.js +0 -7
- package/public/chunk-BPMSJ2VF.js +0 -1
- package/public/chunk-C3OLDXDF.js +0 -1
- package/public/chunk-CKJ7WSCY.js +0 -1
- package/public/chunk-DW3VS3AJ.js +0 -1
- package/public/chunk-FBHAKNKK.js +0 -1
- package/public/chunk-FTBDA6VV.js +0 -1
- package/public/chunk-FX2G7EKQ.js +0 -1
- package/public/chunk-GLXDWUP7.js +0 -1
- package/public/chunk-GW3B2BTG.js +0 -1
- package/public/chunk-GZS6TFES.js +0 -1
- package/public/chunk-HFUBGIQF.js +0 -8
- package/public/chunk-HJMBSNDE.js +0 -1
- package/public/chunk-HSJSWZHD.js +0 -1
- package/public/chunk-J2ACJ2SJ.js +0 -1
- package/public/chunk-J2GVB2HH.js +0 -1
- package/public/chunk-JGA3UJQJ.js +0 -1
- package/public/chunk-JLZHU54T.js +0 -23
- package/public/chunk-JTBW4DGJ.js +0 -1
- package/public/chunk-K2S5XQH3.js +0 -1
- package/public/chunk-KQJ7ONUG.js +0 -1
- package/public/chunk-L376ASVB.js +0 -1
- package/public/chunk-MR5BBXDA.js +0 -1
- package/public/chunk-NW6AFAD7.js +0 -1
- package/public/chunk-NZNNTHFQ.js +0 -1
- package/public/chunk-ORPWYWCL.js +0 -5
- package/public/chunk-P7LFHZOY.js +0 -1
- package/public/chunk-PLAUCLPN.js +0 -1
- package/public/chunk-Q3KYLUJV.js +0 -1
- package/public/chunk-Q63MEYUW.js +0 -1
- package/public/chunk-QHPDGSZ6.js +0 -1
- package/public/chunk-RVIWX6PZ.js +0 -1
- package/public/chunk-S522GW34.js +0 -1
- package/public/chunk-SCN3MDZ7.js +0 -1
- package/public/chunk-SQXGCWUT.js +0 -1
- package/public/chunk-TCSXGQNF.js +0 -1
- package/public/chunk-TGK4ZIKS.js +0 -1
- package/public/chunk-TR6DJBRN.js +0 -1
- package/public/chunk-TXOB7R5K.js +0 -7
- package/public/chunk-UEDIA63L.js +0 -1
- package/public/chunk-UG5DK2RQ.js +0 -2
- package/public/chunk-VHDU5NZU.js +0 -1
- package/public/chunk-VHO4CUXG.js +0 -1
- package/public/chunk-VWTJUCNR.js +0 -1
- package/public/chunk-WALRIIUN.js +0 -1
- package/public/chunk-WBI25HR2.js +0 -1
- package/public/chunk-WHJOLAED.js +0 -1
- package/public/chunk-WHJSVGC7.js +0 -1
- package/public/chunk-WJD5UZP6.js +0 -32
- package/public/chunk-WZ5X6FKY.js +0 -1
- package/public/chunk-Y6JL2J5G.js +0 -1
- package/public/chunk-YPX7RY6A.js +0 -1
- package/public/chunk-YZUUWSDB.js +0 -1
- package/public/chunk-YZVODNRC.js +0 -1
- package/public/chunk-ZT23DWNL.js +0 -1
- package/public/main-T37JUFDS.js +0 -1
- package/public/media/01-RQ3S2L53.png +0 -0
- package/public/media/02-VNCG2I2A.png +0 -0
- package/public/media/03-HI42L4ZG.png +0 -0
- package/public/media/04-FJLL55LZ.png +0 -0
- package/public/media/05-V3EO6SPT.png +0 -0
- package/public/media/06-EOJZCQZN.png +0 -0
- package/public/media/07-KMKB5PBD.png +0 -0
- package/public/media/08-UQJRF6B2.png +0 -0
- package/public/media/09-2DJQFRHH.png +0 -0
- package/public/media/arrow_left-CQT7FZM7.svg +0 -4
- package/public/media/arrow_right-SBUDRR2G.svg +0 -4
- package/public/media/fa-brands-400-6PJPV6JM.woff2 +0 -0
- package/public/media/fa-regular-400-OHB6J4OK.woff2 +0 -0
- package/public/media/fa-solid-900-ABTK6BNK.woff2 +0 -0
- package/public/polyfills-C6JHVXJJ.js +0 -2
- package/public/scripts-6GVLYD7F.js +0 -62
- package/public/styles-EG5MFQEM.css +0 -1
- /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.
|
|
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": "^
|
|
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": "
|
|
83
|
-
"@fastify/multipart": "
|
|
84
|
-
"@fastify/static": "
|
|
85
|
-
"@homebridge/hap-client": "
|
|
86
|
-
"@homebridge/node-pty-prebuilt-multiarch": "0.
|
|
87
|
-
"@nestjs/axios": "
|
|
88
|
-
"@nestjs/common": "
|
|
89
|
-
"@nestjs/core": "
|
|
90
|
-
"@nestjs/jwt": "
|
|
91
|
-
"@nestjs/passport": "
|
|
92
|
-
"@nestjs/platform-fastify": "
|
|
93
|
-
"@nestjs/platform-socket.io": "
|
|
94
|
-
"@nestjs/swagger": "
|
|
95
|
-
"@nestjs/websockets": "
|
|
96
|
-
"axios": "1.
|
|
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.
|
|
101
|
-
"commander": "
|
|
99
|
+
"class-validator": "0.14.2",
|
|
100
|
+
"commander": "14.0.0",
|
|
102
101
|
"dayjs": "1.11.13",
|
|
103
|
-
"fastify": "4.
|
|
104
|
-
"fs-extra": "11.
|
|
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.
|
|
116
|
-
"semver": "7.
|
|
117
|
-
"systeminformation": "5.
|
|
114
|
+
"rxjs": "7.8.2",
|
|
115
|
+
"semver": "7.7.2",
|
|
116
|
+
"systeminformation": "5.27.5",
|
|
118
117
|
"tail": "2.2.6",
|
|
119
|
-
"tar": "
|
|
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": "^
|
|
125
|
-
"@nestjs/testing": "^
|
|
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.
|
|
128
|
-
"@types/node": "^
|
|
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.
|
|
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.
|
|
136
|
-
"@vitest/coverage-v8": "^2.
|
|
137
|
-
"concurrently": "^9.1.
|
|
138
|
-
"eslint-plugin-format": "^0.1
|
|
139
|
-
"form-data": "^4.0.
|
|
140
|
-
"nodemon": "^3.1.
|
|
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.
|
|
141
|
+
"ts-loader": "^9.5.2",
|
|
143
142
|
"ts-node": "^10.9.2",
|
|
144
143
|
"tsconfig-paths": "^4.2.0",
|
|
145
|
-
"typescript": "^5.
|
|
146
|
-
"unplugin-swc": "^1.5.
|
|
147
|
-
"vitest": "^2.
|
|
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/
|
|
3
|
+
Package: @angular/animations
|
|
4
4
|
License: "MIT"
|
|
5
5
|
|
|
6
6
|
The MIT License
|
|
7
7
|
|
|
8
|
-
Copyright (c) 2010-
|
|
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/
|
|
29
|
+
Package: @angular/platform-browser
|
|
30
30
|
License: "MIT"
|
|
31
31
|
|
|
32
32
|
The MIT License
|
|
33
33
|
|
|
34
|
-
Copyright (c) 2010-
|
|
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/
|
|
55
|
+
Package: @angular/common
|
|
56
56
|
License: "MIT"
|
|
57
57
|
|
|
58
58
|
The MIT License
|
|
59
59
|
|
|
60
|
-
Copyright (c) 2010-
|
|
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/
|
|
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)
|
|
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:
|
|
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)
|
|
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-
|
|
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)
|
|
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:
|
|
466
|
+
Package: ng2-nouislider
|
|
414
467
|
License: "MIT"
|
|
415
468
|
|
|
416
|
-
|
|
469
|
+
MIT License
|
|
417
470
|
|
|
418
|
-
Copyright (c)
|
|
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
|
-
|
|
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
|
-
|
|
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:
|
|
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
|
-
|
|
903
|
+
Copyright (c) 2013 Heinrich Goebl
|
|
798
904
|
|
|
799
|
-
|
|
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
|
-
|
|
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:
|
|
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
|
-
|
|
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
|
-
|
|
956
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
844
957
|
|
|
845
|
-
|
|
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
|
-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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
|