testdriverai 5.0.7 → 5.0.8
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/agent.js +8 -0
- package/lib/system.js +11 -5
- package/package-lock.json +339 -475
- package/package.json +4 -3
package/agent.js
CHANGED
|
@@ -740,6 +740,14 @@ const firstPrompt = async () => {
|
|
|
740
740
|
analytics.track("input", { input });
|
|
741
741
|
|
|
742
742
|
logger.info(""); // adds a nice break between submissions
|
|
743
|
+
|
|
744
|
+
let interpolationVars = JSON.parse(process.env["TD_INTERPOLATION_VARS"] || '{}');
|
|
745
|
+
|
|
746
|
+
// Inject environment variables into any ${VAR} strings
|
|
747
|
+
input = parser.interpolate(input, process.env);
|
|
748
|
+
|
|
749
|
+
// Inject any vars from the TD_INTERPOLATION_VARS variable (typically from the action)
|
|
750
|
+
input = parser.interpolate(input, interpolationVars);
|
|
743
751
|
|
|
744
752
|
let commands = input
|
|
745
753
|
.split(" ")
|
package/lib/system.js
CHANGED
|
@@ -35,13 +35,19 @@ let primaryDisplay = null;
|
|
|
35
35
|
// this is the only display we ever target, because fuck it
|
|
36
36
|
// the vm only has one and most people only have one
|
|
37
37
|
const getPrimaryDisplay = async () => {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
38
|
+
|
|
39
|
+
if (!primaryDisplay) {
|
|
40
|
+
|
|
41
|
+
// calculate scaling resolution
|
|
42
|
+
let graphics = await si.graphics();
|
|
43
|
+
primaryDisplay = graphics.displays.find(
|
|
44
|
+
(display) => display.main == true,
|
|
45
|
+
);
|
|
43
46
|
|
|
47
|
+
}
|
|
48
|
+
|
|
44
49
|
return primaryDisplay;
|
|
50
|
+
|
|
45
51
|
};
|
|
46
52
|
|
|
47
53
|
const getSystemInformationOsInfo = async () => {
|
package/package-lock.json
CHANGED
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@img/sharp-libvips-win32-x64": "^1.0.2",
|
|
61
61
|
"@img/sharp-win32-x64": "^0.33.4",
|
|
62
62
|
"get-windows": "^9.2.0",
|
|
63
|
-
"robotjs": "
|
|
63
|
+
"robotjs": "npm:@hurdlegroup/robotjs@^0.12.3",
|
|
64
64
|
"screenshot-desktop": "^1.15.0"
|
|
65
65
|
}
|
|
66
66
|
},
|
|
@@ -169,6 +169,16 @@
|
|
|
169
169
|
"semver": "bin/semver.js"
|
|
170
170
|
}
|
|
171
171
|
},
|
|
172
|
+
"node_modules/@emnapi/runtime": {
|
|
173
|
+
"version": "1.3.1",
|
|
174
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz",
|
|
175
|
+
"integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==",
|
|
176
|
+
"license": "MIT",
|
|
177
|
+
"optional": true,
|
|
178
|
+
"dependencies": {
|
|
179
|
+
"tslib": "^2.4.0"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
172
182
|
"node_modules/@esbuild/aix-ppc64": {
|
|
173
183
|
"version": "0.20.2",
|
|
174
184
|
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz",
|
|
@@ -798,6 +808,28 @@
|
|
|
798
808
|
"@img/sharp-libvips-darwin-arm64": "1.0.4"
|
|
799
809
|
}
|
|
800
810
|
},
|
|
811
|
+
"node_modules/@img/sharp-darwin-x64": {
|
|
812
|
+
"version": "0.33.5",
|
|
813
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz",
|
|
814
|
+
"integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==",
|
|
815
|
+
"cpu": [
|
|
816
|
+
"x64"
|
|
817
|
+
],
|
|
818
|
+
"license": "Apache-2.0",
|
|
819
|
+
"optional": true,
|
|
820
|
+
"os": [
|
|
821
|
+
"darwin"
|
|
822
|
+
],
|
|
823
|
+
"engines": {
|
|
824
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
825
|
+
},
|
|
826
|
+
"funding": {
|
|
827
|
+
"url": "https://opencollective.com/libvips"
|
|
828
|
+
},
|
|
829
|
+
"optionalDependencies": {
|
|
830
|
+
"@img/sharp-libvips-darwin-x64": "1.0.4"
|
|
831
|
+
}
|
|
832
|
+
},
|
|
801
833
|
"node_modules/@img/sharp-libvips-darwin-arm64": {
|
|
802
834
|
"version": "1.0.4",
|
|
803
835
|
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz",
|
|
@@ -814,6 +846,118 @@
|
|
|
814
846
|
"url": "https://opencollective.com/libvips"
|
|
815
847
|
}
|
|
816
848
|
},
|
|
849
|
+
"node_modules/@img/sharp-libvips-darwin-x64": {
|
|
850
|
+
"version": "1.0.4",
|
|
851
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz",
|
|
852
|
+
"integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==",
|
|
853
|
+
"cpu": [
|
|
854
|
+
"x64"
|
|
855
|
+
],
|
|
856
|
+
"license": "LGPL-3.0-or-later",
|
|
857
|
+
"optional": true,
|
|
858
|
+
"os": [
|
|
859
|
+
"darwin"
|
|
860
|
+
],
|
|
861
|
+
"funding": {
|
|
862
|
+
"url": "https://opencollective.com/libvips"
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
"node_modules/@img/sharp-libvips-linux-arm": {
|
|
866
|
+
"version": "1.0.5",
|
|
867
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz",
|
|
868
|
+
"integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==",
|
|
869
|
+
"cpu": [
|
|
870
|
+
"arm"
|
|
871
|
+
],
|
|
872
|
+
"license": "LGPL-3.0-or-later",
|
|
873
|
+
"optional": true,
|
|
874
|
+
"os": [
|
|
875
|
+
"linux"
|
|
876
|
+
],
|
|
877
|
+
"funding": {
|
|
878
|
+
"url": "https://opencollective.com/libvips"
|
|
879
|
+
}
|
|
880
|
+
},
|
|
881
|
+
"node_modules/@img/sharp-libvips-linux-arm64": {
|
|
882
|
+
"version": "1.0.4",
|
|
883
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz",
|
|
884
|
+
"integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==",
|
|
885
|
+
"cpu": [
|
|
886
|
+
"arm64"
|
|
887
|
+
],
|
|
888
|
+
"license": "LGPL-3.0-or-later",
|
|
889
|
+
"optional": true,
|
|
890
|
+
"os": [
|
|
891
|
+
"linux"
|
|
892
|
+
],
|
|
893
|
+
"funding": {
|
|
894
|
+
"url": "https://opencollective.com/libvips"
|
|
895
|
+
}
|
|
896
|
+
},
|
|
897
|
+
"node_modules/@img/sharp-libvips-linux-s390x": {
|
|
898
|
+
"version": "1.0.4",
|
|
899
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz",
|
|
900
|
+
"integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==",
|
|
901
|
+
"cpu": [
|
|
902
|
+
"s390x"
|
|
903
|
+
],
|
|
904
|
+
"license": "LGPL-3.0-or-later",
|
|
905
|
+
"optional": true,
|
|
906
|
+
"os": [
|
|
907
|
+
"linux"
|
|
908
|
+
],
|
|
909
|
+
"funding": {
|
|
910
|
+
"url": "https://opencollective.com/libvips"
|
|
911
|
+
}
|
|
912
|
+
},
|
|
913
|
+
"node_modules/@img/sharp-libvips-linux-x64": {
|
|
914
|
+
"version": "1.0.4",
|
|
915
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz",
|
|
916
|
+
"integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==",
|
|
917
|
+
"cpu": [
|
|
918
|
+
"x64"
|
|
919
|
+
],
|
|
920
|
+
"license": "LGPL-3.0-or-later",
|
|
921
|
+
"optional": true,
|
|
922
|
+
"os": [
|
|
923
|
+
"linux"
|
|
924
|
+
],
|
|
925
|
+
"funding": {
|
|
926
|
+
"url": "https://opencollective.com/libvips"
|
|
927
|
+
}
|
|
928
|
+
},
|
|
929
|
+
"node_modules/@img/sharp-libvips-linuxmusl-arm64": {
|
|
930
|
+
"version": "1.0.4",
|
|
931
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz",
|
|
932
|
+
"integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==",
|
|
933
|
+
"cpu": [
|
|
934
|
+
"arm64"
|
|
935
|
+
],
|
|
936
|
+
"license": "LGPL-3.0-or-later",
|
|
937
|
+
"optional": true,
|
|
938
|
+
"os": [
|
|
939
|
+
"linux"
|
|
940
|
+
],
|
|
941
|
+
"funding": {
|
|
942
|
+
"url": "https://opencollective.com/libvips"
|
|
943
|
+
}
|
|
944
|
+
},
|
|
945
|
+
"node_modules/@img/sharp-libvips-linuxmusl-x64": {
|
|
946
|
+
"version": "1.0.4",
|
|
947
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz",
|
|
948
|
+
"integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==",
|
|
949
|
+
"cpu": [
|
|
950
|
+
"x64"
|
|
951
|
+
],
|
|
952
|
+
"license": "LGPL-3.0-or-later",
|
|
953
|
+
"optional": true,
|
|
954
|
+
"os": [
|
|
955
|
+
"linux"
|
|
956
|
+
],
|
|
957
|
+
"funding": {
|
|
958
|
+
"url": "https://opencollective.com/libvips"
|
|
959
|
+
}
|
|
960
|
+
},
|
|
817
961
|
"node_modules/@img/sharp-libvips-win32-x64": {
|
|
818
962
|
"version": "1.0.6",
|
|
819
963
|
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-win32-x64/-/sharp-libvips-win32-x64-1.0.6.tgz",
|
|
@@ -824,6 +968,176 @@
|
|
|
824
968
|
"url": "https://opencollective.com/libvips"
|
|
825
969
|
}
|
|
826
970
|
},
|
|
971
|
+
"node_modules/@img/sharp-linux-arm": {
|
|
972
|
+
"version": "0.33.5",
|
|
973
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz",
|
|
974
|
+
"integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==",
|
|
975
|
+
"cpu": [
|
|
976
|
+
"arm"
|
|
977
|
+
],
|
|
978
|
+
"license": "Apache-2.0",
|
|
979
|
+
"optional": true,
|
|
980
|
+
"os": [
|
|
981
|
+
"linux"
|
|
982
|
+
],
|
|
983
|
+
"engines": {
|
|
984
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
985
|
+
},
|
|
986
|
+
"funding": {
|
|
987
|
+
"url": "https://opencollective.com/libvips"
|
|
988
|
+
},
|
|
989
|
+
"optionalDependencies": {
|
|
990
|
+
"@img/sharp-libvips-linux-arm": "1.0.5"
|
|
991
|
+
}
|
|
992
|
+
},
|
|
993
|
+
"node_modules/@img/sharp-linux-arm64": {
|
|
994
|
+
"version": "0.33.5",
|
|
995
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz",
|
|
996
|
+
"integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==",
|
|
997
|
+
"cpu": [
|
|
998
|
+
"arm64"
|
|
999
|
+
],
|
|
1000
|
+
"license": "Apache-2.0",
|
|
1001
|
+
"optional": true,
|
|
1002
|
+
"os": [
|
|
1003
|
+
"linux"
|
|
1004
|
+
],
|
|
1005
|
+
"engines": {
|
|
1006
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
1007
|
+
},
|
|
1008
|
+
"funding": {
|
|
1009
|
+
"url": "https://opencollective.com/libvips"
|
|
1010
|
+
},
|
|
1011
|
+
"optionalDependencies": {
|
|
1012
|
+
"@img/sharp-libvips-linux-arm64": "1.0.4"
|
|
1013
|
+
}
|
|
1014
|
+
},
|
|
1015
|
+
"node_modules/@img/sharp-linux-s390x": {
|
|
1016
|
+
"version": "0.33.5",
|
|
1017
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz",
|
|
1018
|
+
"integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==",
|
|
1019
|
+
"cpu": [
|
|
1020
|
+
"s390x"
|
|
1021
|
+
],
|
|
1022
|
+
"license": "Apache-2.0",
|
|
1023
|
+
"optional": true,
|
|
1024
|
+
"os": [
|
|
1025
|
+
"linux"
|
|
1026
|
+
],
|
|
1027
|
+
"engines": {
|
|
1028
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
1029
|
+
},
|
|
1030
|
+
"funding": {
|
|
1031
|
+
"url": "https://opencollective.com/libvips"
|
|
1032
|
+
},
|
|
1033
|
+
"optionalDependencies": {
|
|
1034
|
+
"@img/sharp-libvips-linux-s390x": "1.0.4"
|
|
1035
|
+
}
|
|
1036
|
+
},
|
|
1037
|
+
"node_modules/@img/sharp-linux-x64": {
|
|
1038
|
+
"version": "0.33.5",
|
|
1039
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz",
|
|
1040
|
+
"integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==",
|
|
1041
|
+
"cpu": [
|
|
1042
|
+
"x64"
|
|
1043
|
+
],
|
|
1044
|
+
"license": "Apache-2.0",
|
|
1045
|
+
"optional": true,
|
|
1046
|
+
"os": [
|
|
1047
|
+
"linux"
|
|
1048
|
+
],
|
|
1049
|
+
"engines": {
|
|
1050
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
1051
|
+
},
|
|
1052
|
+
"funding": {
|
|
1053
|
+
"url": "https://opencollective.com/libvips"
|
|
1054
|
+
},
|
|
1055
|
+
"optionalDependencies": {
|
|
1056
|
+
"@img/sharp-libvips-linux-x64": "1.0.4"
|
|
1057
|
+
}
|
|
1058
|
+
},
|
|
1059
|
+
"node_modules/@img/sharp-linuxmusl-arm64": {
|
|
1060
|
+
"version": "0.33.5",
|
|
1061
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz",
|
|
1062
|
+
"integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==",
|
|
1063
|
+
"cpu": [
|
|
1064
|
+
"arm64"
|
|
1065
|
+
],
|
|
1066
|
+
"license": "Apache-2.0",
|
|
1067
|
+
"optional": true,
|
|
1068
|
+
"os": [
|
|
1069
|
+
"linux"
|
|
1070
|
+
],
|
|
1071
|
+
"engines": {
|
|
1072
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
1073
|
+
},
|
|
1074
|
+
"funding": {
|
|
1075
|
+
"url": "https://opencollective.com/libvips"
|
|
1076
|
+
},
|
|
1077
|
+
"optionalDependencies": {
|
|
1078
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.0.4"
|
|
1079
|
+
}
|
|
1080
|
+
},
|
|
1081
|
+
"node_modules/@img/sharp-linuxmusl-x64": {
|
|
1082
|
+
"version": "0.33.5",
|
|
1083
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz",
|
|
1084
|
+
"integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==",
|
|
1085
|
+
"cpu": [
|
|
1086
|
+
"x64"
|
|
1087
|
+
],
|
|
1088
|
+
"license": "Apache-2.0",
|
|
1089
|
+
"optional": true,
|
|
1090
|
+
"os": [
|
|
1091
|
+
"linux"
|
|
1092
|
+
],
|
|
1093
|
+
"engines": {
|
|
1094
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
1095
|
+
},
|
|
1096
|
+
"funding": {
|
|
1097
|
+
"url": "https://opencollective.com/libvips"
|
|
1098
|
+
},
|
|
1099
|
+
"optionalDependencies": {
|
|
1100
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.0.4"
|
|
1101
|
+
}
|
|
1102
|
+
},
|
|
1103
|
+
"node_modules/@img/sharp-wasm32": {
|
|
1104
|
+
"version": "0.33.5",
|
|
1105
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz",
|
|
1106
|
+
"integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==",
|
|
1107
|
+
"cpu": [
|
|
1108
|
+
"wasm32"
|
|
1109
|
+
],
|
|
1110
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
|
|
1111
|
+
"optional": true,
|
|
1112
|
+
"dependencies": {
|
|
1113
|
+
"@emnapi/runtime": "^1.2.0"
|
|
1114
|
+
},
|
|
1115
|
+
"engines": {
|
|
1116
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
1117
|
+
},
|
|
1118
|
+
"funding": {
|
|
1119
|
+
"url": "https://opencollective.com/libvips"
|
|
1120
|
+
}
|
|
1121
|
+
},
|
|
1122
|
+
"node_modules/@img/sharp-win32-ia32": {
|
|
1123
|
+
"version": "0.33.5",
|
|
1124
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz",
|
|
1125
|
+
"integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==",
|
|
1126
|
+
"cpu": [
|
|
1127
|
+
"ia32"
|
|
1128
|
+
],
|
|
1129
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
1130
|
+
"optional": true,
|
|
1131
|
+
"os": [
|
|
1132
|
+
"win32"
|
|
1133
|
+
],
|
|
1134
|
+
"engines": {
|
|
1135
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
1136
|
+
},
|
|
1137
|
+
"funding": {
|
|
1138
|
+
"url": "https://opencollective.com/libvips"
|
|
1139
|
+
}
|
|
1140
|
+
},
|
|
827
1141
|
"node_modules/@img/sharp-win32-x64": {
|
|
828
1142
|
"version": "0.33.5",
|
|
829
1143
|
"resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz",
|
|
@@ -2364,16 +2678,6 @@
|
|
|
2364
2678
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
2365
2679
|
}
|
|
2366
2680
|
},
|
|
2367
|
-
"node_modules/code-point-at": {
|
|
2368
|
-
"version": "1.1.0",
|
|
2369
|
-
"resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
|
|
2370
|
-
"integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==",
|
|
2371
|
-
"license": "MIT",
|
|
2372
|
-
"optional": true,
|
|
2373
|
-
"engines": {
|
|
2374
|
-
"node": ">=0.10.0"
|
|
2375
|
-
}
|
|
2376
|
-
},
|
|
2377
2681
|
"node_modules/color": {
|
|
2378
2682
|
"version": "4.2.3",
|
|
2379
2683
|
"resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
|
|
@@ -2723,16 +3027,6 @@
|
|
|
2723
3027
|
"node": ">=6"
|
|
2724
3028
|
}
|
|
2725
3029
|
},
|
|
2726
|
-
"node_modules/deep-extend": {
|
|
2727
|
-
"version": "0.6.0",
|
|
2728
|
-
"resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
|
|
2729
|
-
"integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
|
|
2730
|
-
"license": "MIT",
|
|
2731
|
-
"optional": true,
|
|
2732
|
-
"engines": {
|
|
2733
|
-
"node": ">=4.0.0"
|
|
2734
|
-
}
|
|
2735
|
-
},
|
|
2736
3030
|
"node_modules/deep-is": {
|
|
2737
3031
|
"version": "0.1.4",
|
|
2738
3032
|
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
|
|
@@ -3440,16 +3734,6 @@
|
|
|
3440
3734
|
"resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz",
|
|
3441
3735
|
"integrity": "sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw=="
|
|
3442
3736
|
},
|
|
3443
|
-
"node_modules/expand-template": {
|
|
3444
|
-
"version": "2.0.3",
|
|
3445
|
-
"resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz",
|
|
3446
|
-
"integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
|
|
3447
|
-
"license": "(MIT OR WTFPL)",
|
|
3448
|
-
"optional": true,
|
|
3449
|
-
"engines": {
|
|
3450
|
-
"node": ">=6"
|
|
3451
|
-
}
|
|
3452
|
-
},
|
|
3453
3737
|
"node_modules/exponential-backoff": {
|
|
3454
3738
|
"version": "3.1.2",
|
|
3455
3739
|
"resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.2.tgz",
|
|
@@ -3884,13 +4168,6 @@
|
|
|
3884
4168
|
"omggif": "^1.0.10"
|
|
3885
4169
|
}
|
|
3886
4170
|
},
|
|
3887
|
-
"node_modules/github-from-package": {
|
|
3888
|
-
"version": "0.0.0",
|
|
3889
|
-
"resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
|
|
3890
|
-
"integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==",
|
|
3891
|
-
"license": "MIT",
|
|
3892
|
-
"optional": true
|
|
3893
|
-
},
|
|
3894
4171
|
"node_modules/glob": {
|
|
3895
4172
|
"version": "11.0.1",
|
|
3896
4173
|
"resolved": "https://registry.npmjs.org/glob/-/glob-11.0.1.tgz",
|
|
@@ -4312,13 +4589,6 @@
|
|
|
4312
4589
|
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
4313
4590
|
"license": "ISC"
|
|
4314
4591
|
},
|
|
4315
|
-
"node_modules/ini": {
|
|
4316
|
-
"version": "1.3.8",
|
|
4317
|
-
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
|
|
4318
|
-
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
|
|
4319
|
-
"license": "ISC",
|
|
4320
|
-
"optional": true
|
|
4321
|
-
},
|
|
4322
4592
|
"node_modules/ip-address": {
|
|
4323
4593
|
"version": "9.0.5",
|
|
4324
4594
|
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz",
|
|
@@ -5643,13 +5913,6 @@
|
|
|
5643
5913
|
"node": ">=10"
|
|
5644
5914
|
}
|
|
5645
5915
|
},
|
|
5646
|
-
"node_modules/mkdirp-classic": {
|
|
5647
|
-
"version": "0.5.3",
|
|
5648
|
-
"resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
|
|
5649
|
-
"integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
|
|
5650
|
-
"license": "MIT",
|
|
5651
|
-
"optional": true
|
|
5652
|
-
},
|
|
5653
5916
|
"node_modules/mocha": {
|
|
5654
5917
|
"version": "10.8.2",
|
|
5655
5918
|
"resolved": "https://registry.npmjs.org/mocha/-/mocha-10.8.2.tgz",
|
|
@@ -5742,20 +6005,6 @@
|
|
|
5742
6005
|
"thenify-all": "^1.0.0"
|
|
5743
6006
|
}
|
|
5744
6007
|
},
|
|
5745
|
-
"node_modules/nan": {
|
|
5746
|
-
"version": "2.22.2",
|
|
5747
|
-
"resolved": "https://registry.npmjs.org/nan/-/nan-2.22.2.tgz",
|
|
5748
|
-
"integrity": "sha512-DANghxFkS1plDdRsX0X9pm0Z6SJNN6gBdtXfanwoZ8hooC5gosGFSBGRYHUVPz1asKA/kMRqDRdHrluZ61SpBQ==",
|
|
5749
|
-
"license": "MIT",
|
|
5750
|
-
"optional": true
|
|
5751
|
-
},
|
|
5752
|
-
"node_modules/napi-build-utils": {
|
|
5753
|
-
"version": "1.0.2",
|
|
5754
|
-
"resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz",
|
|
5755
|
-
"integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==",
|
|
5756
|
-
"license": "MIT",
|
|
5757
|
-
"optional": true
|
|
5758
|
-
},
|
|
5759
6008
|
"node_modules/natural-compare": {
|
|
5760
6009
|
"version": "1.4.0",
|
|
5761
6010
|
"resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
|
|
@@ -5782,26 +6031,6 @@
|
|
|
5782
6031
|
"node": ">=10"
|
|
5783
6032
|
}
|
|
5784
6033
|
},
|
|
5785
|
-
"node_modules/node-abi": {
|
|
5786
|
-
"version": "2.30.1",
|
|
5787
|
-
"resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.30.1.tgz",
|
|
5788
|
-
"integrity": "sha512-/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w==",
|
|
5789
|
-
"license": "MIT",
|
|
5790
|
-
"optional": true,
|
|
5791
|
-
"dependencies": {
|
|
5792
|
-
"semver": "^5.4.1"
|
|
5793
|
-
}
|
|
5794
|
-
},
|
|
5795
|
-
"node_modules/node-abi/node_modules/semver": {
|
|
5796
|
-
"version": "5.7.2",
|
|
5797
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
|
|
5798
|
-
"integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
|
|
5799
|
-
"license": "ISC",
|
|
5800
|
-
"optional": true,
|
|
5801
|
-
"bin": {
|
|
5802
|
-
"semver": "bin/semver"
|
|
5803
|
-
}
|
|
5804
|
-
},
|
|
5805
6034
|
"node_modules/node-addon-api": {
|
|
5806
6035
|
"version": "8.3.1",
|
|
5807
6036
|
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.3.1.tgz",
|
|
@@ -5872,6 +6101,18 @@
|
|
|
5872
6101
|
"node": "^16.14.0 || >=18.0.0"
|
|
5873
6102
|
}
|
|
5874
6103
|
},
|
|
6104
|
+
"node_modules/node-gyp-build": {
|
|
6105
|
+
"version": "4.8.4",
|
|
6106
|
+
"resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz",
|
|
6107
|
+
"integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==",
|
|
6108
|
+
"license": "MIT",
|
|
6109
|
+
"optional": true,
|
|
6110
|
+
"bin": {
|
|
6111
|
+
"node-gyp-build": "bin.js",
|
|
6112
|
+
"node-gyp-build-optional": "optional.js",
|
|
6113
|
+
"node-gyp-build-test": "build-test.js"
|
|
6114
|
+
}
|
|
6115
|
+
},
|
|
5875
6116
|
"node_modules/node-gyp/node_modules/abbrev": {
|
|
5876
6117
|
"version": "2.0.0",
|
|
5877
6118
|
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz",
|
|
@@ -6020,13 +6261,6 @@
|
|
|
6020
6261
|
"readable-stream": "~1.0.31"
|
|
6021
6262
|
}
|
|
6022
6263
|
},
|
|
6023
|
-
"node_modules/noop-logger": {
|
|
6024
|
-
"version": "0.1.1",
|
|
6025
|
-
"resolved": "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz",
|
|
6026
|
-
"integrity": "sha512-6kM8CLXvuW5crTxsAtva2YLrRrDaiTIkIePWs9moLHqbFWT94WpNFjwS/5dfLfECg5i/lkmw3aoqVidxt23TEQ==",
|
|
6027
|
-
"license": "MIT",
|
|
6028
|
-
"optional": true
|
|
6029
|
-
},
|
|
6030
6264
|
"node_modules/nopt": {
|
|
6031
6265
|
"version": "5.0.0",
|
|
6032
6266
|
"resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
|
|
@@ -6091,16 +6325,6 @@
|
|
|
6091
6325
|
"set-blocking": "^2.0.0"
|
|
6092
6326
|
}
|
|
6093
6327
|
},
|
|
6094
|
-
"node_modules/number-is-nan": {
|
|
6095
|
-
"version": "1.0.1",
|
|
6096
|
-
"resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
|
|
6097
|
-
"integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==",
|
|
6098
|
-
"license": "MIT",
|
|
6099
|
-
"optional": true,
|
|
6100
|
-
"engines": {
|
|
6101
|
-
"node": ">=0.10.0"
|
|
6102
|
-
}
|
|
6103
|
-
},
|
|
6104
6328
|
"node_modules/object-assign": {
|
|
6105
6329
|
"version": "4.1.1",
|
|
6106
6330
|
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
@@ -6494,191 +6718,6 @@
|
|
|
6494
6718
|
"node": ">=12.13.0"
|
|
6495
6719
|
}
|
|
6496
6720
|
},
|
|
6497
|
-
"node_modules/prebuild-install": {
|
|
6498
|
-
"version": "5.3.6",
|
|
6499
|
-
"resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-5.3.6.tgz",
|
|
6500
|
-
"integrity": "sha512-s8Aai8++QQGi4sSbs/M1Qku62PFK49Jm1CbgXklGz4nmHveDq0wzJkg7Na5QbnO1uNH8K7iqx2EQ/mV0MZEmOg==",
|
|
6501
|
-
"license": "MIT",
|
|
6502
|
-
"optional": true,
|
|
6503
|
-
"dependencies": {
|
|
6504
|
-
"detect-libc": "^1.0.3",
|
|
6505
|
-
"expand-template": "^2.0.3",
|
|
6506
|
-
"github-from-package": "0.0.0",
|
|
6507
|
-
"minimist": "^1.2.3",
|
|
6508
|
-
"mkdirp-classic": "^0.5.3",
|
|
6509
|
-
"napi-build-utils": "^1.0.1",
|
|
6510
|
-
"node-abi": "^2.7.0",
|
|
6511
|
-
"noop-logger": "^0.1.1",
|
|
6512
|
-
"npmlog": "^4.0.1",
|
|
6513
|
-
"pump": "^3.0.0",
|
|
6514
|
-
"rc": "^1.2.7",
|
|
6515
|
-
"simple-get": "^3.0.3",
|
|
6516
|
-
"tar-fs": "^2.0.0",
|
|
6517
|
-
"tunnel-agent": "^0.6.0",
|
|
6518
|
-
"which-pm-runs": "^1.0.0"
|
|
6519
|
-
},
|
|
6520
|
-
"bin": {
|
|
6521
|
-
"prebuild-install": "bin.js"
|
|
6522
|
-
},
|
|
6523
|
-
"engines": {
|
|
6524
|
-
"node": ">=6"
|
|
6525
|
-
}
|
|
6526
|
-
},
|
|
6527
|
-
"node_modules/prebuild-install/node_modules/ansi-regex": {
|
|
6528
|
-
"version": "2.1.1",
|
|
6529
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
|
|
6530
|
-
"integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==",
|
|
6531
|
-
"license": "MIT",
|
|
6532
|
-
"optional": true,
|
|
6533
|
-
"engines": {
|
|
6534
|
-
"node": ">=0.10.0"
|
|
6535
|
-
}
|
|
6536
|
-
},
|
|
6537
|
-
"node_modules/prebuild-install/node_modules/aproba": {
|
|
6538
|
-
"version": "1.2.0",
|
|
6539
|
-
"resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
|
|
6540
|
-
"integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",
|
|
6541
|
-
"license": "ISC",
|
|
6542
|
-
"optional": true
|
|
6543
|
-
},
|
|
6544
|
-
"node_modules/prebuild-install/node_modules/are-we-there-yet": {
|
|
6545
|
-
"version": "1.1.7",
|
|
6546
|
-
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz",
|
|
6547
|
-
"integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==",
|
|
6548
|
-
"deprecated": "This package is no longer supported.",
|
|
6549
|
-
"license": "ISC",
|
|
6550
|
-
"optional": true,
|
|
6551
|
-
"dependencies": {
|
|
6552
|
-
"delegates": "^1.0.0",
|
|
6553
|
-
"readable-stream": "^2.0.6"
|
|
6554
|
-
}
|
|
6555
|
-
},
|
|
6556
|
-
"node_modules/prebuild-install/node_modules/detect-libc": {
|
|
6557
|
-
"version": "1.0.3",
|
|
6558
|
-
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
|
|
6559
|
-
"integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
|
|
6560
|
-
"license": "Apache-2.0",
|
|
6561
|
-
"optional": true,
|
|
6562
|
-
"bin": {
|
|
6563
|
-
"detect-libc": "bin/detect-libc.js"
|
|
6564
|
-
},
|
|
6565
|
-
"engines": {
|
|
6566
|
-
"node": ">=0.10"
|
|
6567
|
-
}
|
|
6568
|
-
},
|
|
6569
|
-
"node_modules/prebuild-install/node_modules/gauge": {
|
|
6570
|
-
"version": "2.7.4",
|
|
6571
|
-
"resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz",
|
|
6572
|
-
"integrity": "sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==",
|
|
6573
|
-
"deprecated": "This package is no longer supported.",
|
|
6574
|
-
"license": "ISC",
|
|
6575
|
-
"optional": true,
|
|
6576
|
-
"dependencies": {
|
|
6577
|
-
"aproba": "^1.0.3",
|
|
6578
|
-
"console-control-strings": "^1.0.0",
|
|
6579
|
-
"has-unicode": "^2.0.0",
|
|
6580
|
-
"object-assign": "^4.1.0",
|
|
6581
|
-
"signal-exit": "^3.0.0",
|
|
6582
|
-
"string-width": "^1.0.1",
|
|
6583
|
-
"strip-ansi": "^3.0.1",
|
|
6584
|
-
"wide-align": "^1.1.0"
|
|
6585
|
-
}
|
|
6586
|
-
},
|
|
6587
|
-
"node_modules/prebuild-install/node_modules/is-fullwidth-code-point": {
|
|
6588
|
-
"version": "1.0.0",
|
|
6589
|
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
|
|
6590
|
-
"integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==",
|
|
6591
|
-
"license": "MIT",
|
|
6592
|
-
"optional": true,
|
|
6593
|
-
"dependencies": {
|
|
6594
|
-
"number-is-nan": "^1.0.0"
|
|
6595
|
-
},
|
|
6596
|
-
"engines": {
|
|
6597
|
-
"node": ">=0.10.0"
|
|
6598
|
-
}
|
|
6599
|
-
},
|
|
6600
|
-
"node_modules/prebuild-install/node_modules/isarray": {
|
|
6601
|
-
"version": "1.0.0",
|
|
6602
|
-
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
|
6603
|
-
"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
|
|
6604
|
-
"license": "MIT",
|
|
6605
|
-
"optional": true
|
|
6606
|
-
},
|
|
6607
|
-
"node_modules/prebuild-install/node_modules/npmlog": {
|
|
6608
|
-
"version": "4.1.2",
|
|
6609
|
-
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz",
|
|
6610
|
-
"integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==",
|
|
6611
|
-
"deprecated": "This package is no longer supported.",
|
|
6612
|
-
"license": "ISC",
|
|
6613
|
-
"optional": true,
|
|
6614
|
-
"dependencies": {
|
|
6615
|
-
"are-we-there-yet": "~1.1.2",
|
|
6616
|
-
"console-control-strings": "~1.1.0",
|
|
6617
|
-
"gauge": "~2.7.3",
|
|
6618
|
-
"set-blocking": "~2.0.0"
|
|
6619
|
-
}
|
|
6620
|
-
},
|
|
6621
|
-
"node_modules/prebuild-install/node_modules/readable-stream": {
|
|
6622
|
-
"version": "2.3.8",
|
|
6623
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
|
|
6624
|
-
"integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
|
|
6625
|
-
"license": "MIT",
|
|
6626
|
-
"optional": true,
|
|
6627
|
-
"dependencies": {
|
|
6628
|
-
"core-util-is": "~1.0.0",
|
|
6629
|
-
"inherits": "~2.0.3",
|
|
6630
|
-
"isarray": "~1.0.0",
|
|
6631
|
-
"process-nextick-args": "~2.0.0",
|
|
6632
|
-
"safe-buffer": "~5.1.1",
|
|
6633
|
-
"string_decoder": "~1.1.1",
|
|
6634
|
-
"util-deprecate": "~1.0.1"
|
|
6635
|
-
}
|
|
6636
|
-
},
|
|
6637
|
-
"node_modules/prebuild-install/node_modules/safe-buffer": {
|
|
6638
|
-
"version": "5.1.2",
|
|
6639
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
6640
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
6641
|
-
"license": "MIT",
|
|
6642
|
-
"optional": true
|
|
6643
|
-
},
|
|
6644
|
-
"node_modules/prebuild-install/node_modules/string_decoder": {
|
|
6645
|
-
"version": "1.1.1",
|
|
6646
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
6647
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
6648
|
-
"license": "MIT",
|
|
6649
|
-
"optional": true,
|
|
6650
|
-
"dependencies": {
|
|
6651
|
-
"safe-buffer": "~5.1.0"
|
|
6652
|
-
}
|
|
6653
|
-
},
|
|
6654
|
-
"node_modules/prebuild-install/node_modules/string-width": {
|
|
6655
|
-
"version": "1.0.2",
|
|
6656
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
|
|
6657
|
-
"integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==",
|
|
6658
|
-
"license": "MIT",
|
|
6659
|
-
"optional": true,
|
|
6660
|
-
"dependencies": {
|
|
6661
|
-
"code-point-at": "^1.0.0",
|
|
6662
|
-
"is-fullwidth-code-point": "^1.0.0",
|
|
6663
|
-
"strip-ansi": "^3.0.0"
|
|
6664
|
-
},
|
|
6665
|
-
"engines": {
|
|
6666
|
-
"node": ">=0.10.0"
|
|
6667
|
-
}
|
|
6668
|
-
},
|
|
6669
|
-
"node_modules/prebuild-install/node_modules/strip-ansi": {
|
|
6670
|
-
"version": "3.0.1",
|
|
6671
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
|
|
6672
|
-
"integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==",
|
|
6673
|
-
"license": "MIT",
|
|
6674
|
-
"optional": true,
|
|
6675
|
-
"dependencies": {
|
|
6676
|
-
"ansi-regex": "^2.0.0"
|
|
6677
|
-
},
|
|
6678
|
-
"engines": {
|
|
6679
|
-
"node": ">=0.10.0"
|
|
6680
|
-
}
|
|
6681
|
-
},
|
|
6682
6721
|
"node_modules/prelude-ls": {
|
|
6683
6722
|
"version": "1.2.1",
|
|
6684
6723
|
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
|
|
@@ -6814,32 +6853,6 @@
|
|
|
6814
6853
|
"safe-buffer": "^5.1.0"
|
|
6815
6854
|
}
|
|
6816
6855
|
},
|
|
6817
|
-
"node_modules/rc": {
|
|
6818
|
-
"version": "1.2.8",
|
|
6819
|
-
"resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
|
|
6820
|
-
"integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
|
|
6821
|
-
"license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
|
|
6822
|
-
"optional": true,
|
|
6823
|
-
"dependencies": {
|
|
6824
|
-
"deep-extend": "^0.6.0",
|
|
6825
|
-
"ini": "~1.3.0",
|
|
6826
|
-
"minimist": "^1.2.0",
|
|
6827
|
-
"strip-json-comments": "~2.0.1"
|
|
6828
|
-
},
|
|
6829
|
-
"bin": {
|
|
6830
|
-
"rc": "cli.js"
|
|
6831
|
-
}
|
|
6832
|
-
},
|
|
6833
|
-
"node_modules/rc/node_modules/strip-json-comments": {
|
|
6834
|
-
"version": "2.0.1",
|
|
6835
|
-
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
|
|
6836
|
-
"integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
|
|
6837
|
-
"license": "MIT",
|
|
6838
|
-
"optional": true,
|
|
6839
|
-
"engines": {
|
|
6840
|
-
"node": ">=0.10.0"
|
|
6841
|
-
}
|
|
6842
|
-
},
|
|
6843
6856
|
"node_modules/readable-stream": {
|
|
6844
6857
|
"version": "1.0.34",
|
|
6845
6858
|
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
|
|
@@ -7034,16 +7047,16 @@
|
|
|
7034
7047
|
}
|
|
7035
7048
|
},
|
|
7036
7049
|
"node_modules/robotjs": {
|
|
7037
|
-
"
|
|
7038
|
-
"
|
|
7039
|
-
"
|
|
7050
|
+
"name": "@hurdlegroup/robotjs",
|
|
7051
|
+
"version": "0.12.3",
|
|
7052
|
+
"resolved": "https://registry.npmjs.org/@hurdlegroup/robotjs/-/robotjs-0.12.3.tgz",
|
|
7053
|
+
"integrity": "sha512-1+oMJrWxHdEKGDQDn1sSb7s7JZbbcx3Ue83vHOnuH8KeqknPw993+YyeziKB37aqepHZ384DdNHEvdLvfDLK3g==",
|
|
7040
7054
|
"hasInstallScript": true,
|
|
7041
7055
|
"license": "MIT",
|
|
7042
7056
|
"optional": true,
|
|
7043
7057
|
"dependencies": {
|
|
7044
|
-
"
|
|
7045
|
-
"node-
|
|
7046
|
-
"prebuild-install": "^5.3.3"
|
|
7058
|
+
"node-addon-api": "*",
|
|
7059
|
+
"node-gyp-build": "^4.8.1"
|
|
7047
7060
|
}
|
|
7048
7061
|
},
|
|
7049
7062
|
"node_modules/safe-buffer": {
|
|
@@ -7262,65 +7275,6 @@
|
|
|
7262
7275
|
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
|
|
7263
7276
|
"license": "ISC"
|
|
7264
7277
|
},
|
|
7265
|
-
"node_modules/simple-concat": {
|
|
7266
|
-
"version": "1.0.1",
|
|
7267
|
-
"resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
|
|
7268
|
-
"integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
|
|
7269
|
-
"funding": [
|
|
7270
|
-
{
|
|
7271
|
-
"type": "github",
|
|
7272
|
-
"url": "https://github.com/sponsors/feross"
|
|
7273
|
-
},
|
|
7274
|
-
{
|
|
7275
|
-
"type": "patreon",
|
|
7276
|
-
"url": "https://www.patreon.com/feross"
|
|
7277
|
-
},
|
|
7278
|
-
{
|
|
7279
|
-
"type": "consulting",
|
|
7280
|
-
"url": "https://feross.org/support"
|
|
7281
|
-
}
|
|
7282
|
-
],
|
|
7283
|
-
"license": "MIT",
|
|
7284
|
-
"optional": true
|
|
7285
|
-
},
|
|
7286
|
-
"node_modules/simple-get": {
|
|
7287
|
-
"version": "3.1.1",
|
|
7288
|
-
"resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.1.tgz",
|
|
7289
|
-
"integrity": "sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==",
|
|
7290
|
-
"license": "MIT",
|
|
7291
|
-
"optional": true,
|
|
7292
|
-
"dependencies": {
|
|
7293
|
-
"decompress-response": "^4.2.0",
|
|
7294
|
-
"once": "^1.3.1",
|
|
7295
|
-
"simple-concat": "^1.0.0"
|
|
7296
|
-
}
|
|
7297
|
-
},
|
|
7298
|
-
"node_modules/simple-get/node_modules/decompress-response": {
|
|
7299
|
-
"version": "4.2.1",
|
|
7300
|
-
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz",
|
|
7301
|
-
"integrity": "sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==",
|
|
7302
|
-
"license": "MIT",
|
|
7303
|
-
"optional": true,
|
|
7304
|
-
"dependencies": {
|
|
7305
|
-
"mimic-response": "^2.0.0"
|
|
7306
|
-
},
|
|
7307
|
-
"engines": {
|
|
7308
|
-
"node": ">=8"
|
|
7309
|
-
}
|
|
7310
|
-
},
|
|
7311
|
-
"node_modules/simple-get/node_modules/mimic-response": {
|
|
7312
|
-
"version": "2.1.0",
|
|
7313
|
-
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz",
|
|
7314
|
-
"integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==",
|
|
7315
|
-
"license": "MIT",
|
|
7316
|
-
"optional": true,
|
|
7317
|
-
"engines": {
|
|
7318
|
-
"node": ">=8"
|
|
7319
|
-
},
|
|
7320
|
-
"funding": {
|
|
7321
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
7322
|
-
}
|
|
7323
|
-
},
|
|
7324
7278
|
"node_modules/simple-swizzle": {
|
|
7325
7279
|
"version": "0.2.2",
|
|
7326
7280
|
"resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
|
|
@@ -7683,80 +7637,6 @@
|
|
|
7683
7637
|
"node": ">=10"
|
|
7684
7638
|
}
|
|
7685
7639
|
},
|
|
7686
|
-
"node_modules/tar-fs": {
|
|
7687
|
-
"version": "2.1.2",
|
|
7688
|
-
"resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.2.tgz",
|
|
7689
|
-
"integrity": "sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==",
|
|
7690
|
-
"license": "MIT",
|
|
7691
|
-
"optional": true,
|
|
7692
|
-
"dependencies": {
|
|
7693
|
-
"chownr": "^1.1.1",
|
|
7694
|
-
"mkdirp-classic": "^0.5.2",
|
|
7695
|
-
"pump": "^3.0.0",
|
|
7696
|
-
"tar-stream": "^2.1.4"
|
|
7697
|
-
}
|
|
7698
|
-
},
|
|
7699
|
-
"node_modules/tar-fs/node_modules/bl": {
|
|
7700
|
-
"version": "4.1.0",
|
|
7701
|
-
"resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
|
|
7702
|
-
"integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
|
|
7703
|
-
"license": "MIT",
|
|
7704
|
-
"optional": true,
|
|
7705
|
-
"dependencies": {
|
|
7706
|
-
"buffer": "^5.5.0",
|
|
7707
|
-
"inherits": "^2.0.4",
|
|
7708
|
-
"readable-stream": "^3.4.0"
|
|
7709
|
-
}
|
|
7710
|
-
},
|
|
7711
|
-
"node_modules/tar-fs/node_modules/chownr": {
|
|
7712
|
-
"version": "1.1.4",
|
|
7713
|
-
"resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
|
|
7714
|
-
"integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
|
|
7715
|
-
"license": "ISC",
|
|
7716
|
-
"optional": true
|
|
7717
|
-
},
|
|
7718
|
-
"node_modules/tar-fs/node_modules/readable-stream": {
|
|
7719
|
-
"version": "3.6.2",
|
|
7720
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
|
|
7721
|
-
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
|
7722
|
-
"license": "MIT",
|
|
7723
|
-
"optional": true,
|
|
7724
|
-
"dependencies": {
|
|
7725
|
-
"inherits": "^2.0.3",
|
|
7726
|
-
"string_decoder": "^1.1.1",
|
|
7727
|
-
"util-deprecate": "^1.0.1"
|
|
7728
|
-
},
|
|
7729
|
-
"engines": {
|
|
7730
|
-
"node": ">= 6"
|
|
7731
|
-
}
|
|
7732
|
-
},
|
|
7733
|
-
"node_modules/tar-fs/node_modules/string_decoder": {
|
|
7734
|
-
"version": "1.3.0",
|
|
7735
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
|
7736
|
-
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
|
7737
|
-
"license": "MIT",
|
|
7738
|
-
"optional": true,
|
|
7739
|
-
"dependencies": {
|
|
7740
|
-
"safe-buffer": "~5.2.0"
|
|
7741
|
-
}
|
|
7742
|
-
},
|
|
7743
|
-
"node_modules/tar-fs/node_modules/tar-stream": {
|
|
7744
|
-
"version": "2.2.0",
|
|
7745
|
-
"resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
|
|
7746
|
-
"integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
|
|
7747
|
-
"license": "MIT",
|
|
7748
|
-
"optional": true,
|
|
7749
|
-
"dependencies": {
|
|
7750
|
-
"bl": "^4.0.3",
|
|
7751
|
-
"end-of-stream": "^1.4.1",
|
|
7752
|
-
"fs-constants": "^1.0.0",
|
|
7753
|
-
"inherits": "^2.0.3",
|
|
7754
|
-
"readable-stream": "^3.1.1"
|
|
7755
|
-
},
|
|
7756
|
-
"engines": {
|
|
7757
|
-
"node": ">=6"
|
|
7758
|
-
}
|
|
7759
|
-
},
|
|
7760
7640
|
"node_modules/tar-stream": {
|
|
7761
7641
|
"version": "1.6.2",
|
|
7762
7642
|
"resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz",
|
|
@@ -8044,18 +7924,12 @@
|
|
|
8044
7924
|
"utf8-byte-length": "^1.0.1"
|
|
8045
7925
|
}
|
|
8046
7926
|
},
|
|
8047
|
-
"node_modules/
|
|
8048
|
-
"version": "
|
|
8049
|
-
"resolved": "https://registry.npmjs.org/
|
|
8050
|
-
"integrity": "sha512-
|
|
8051
|
-
"license": "
|
|
8052
|
-
"optional": true
|
|
8053
|
-
"dependencies": {
|
|
8054
|
-
"safe-buffer": "^5.0.1"
|
|
8055
|
-
},
|
|
8056
|
-
"engines": {
|
|
8057
|
-
"node": "*"
|
|
8058
|
-
}
|
|
7927
|
+
"node_modules/tslib": {
|
|
7928
|
+
"version": "2.8.1",
|
|
7929
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
7930
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
7931
|
+
"license": "0BSD",
|
|
7932
|
+
"optional": true
|
|
8059
7933
|
},
|
|
8060
7934
|
"node_modules/type-check": {
|
|
8061
7935
|
"version": "0.4.0",
|
|
@@ -8293,16 +8167,6 @@
|
|
|
8293
8167
|
"node": ">= 8"
|
|
8294
8168
|
}
|
|
8295
8169
|
},
|
|
8296
|
-
"node_modules/which-pm-runs": {
|
|
8297
|
-
"version": "1.1.0",
|
|
8298
|
-
"resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.1.0.tgz",
|
|
8299
|
-
"integrity": "sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==",
|
|
8300
|
-
"license": "MIT",
|
|
8301
|
-
"optional": true,
|
|
8302
|
-
"engines": {
|
|
8303
|
-
"node": ">=4"
|
|
8304
|
-
}
|
|
8305
|
-
},
|
|
8306
8170
|
"node_modules/wide-align": {
|
|
8307
8171
|
"version": "1.1.5",
|
|
8308
8172
|
"resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "testdriverai",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.8",
|
|
4
4
|
"description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -50,7 +50,8 @@
|
|
|
50
50
|
},
|
|
51
51
|
"overrides": {
|
|
52
52
|
"glob": "^11.0.1",
|
|
53
|
-
"rimraf": "^5.0.10"
|
|
53
|
+
"rimraf": "^5.0.10",
|
|
54
|
+
"robotjs": "npm:@hurdlegroup/robotjs@^0.12.3"
|
|
54
55
|
},
|
|
55
56
|
"devDependencies": {
|
|
56
57
|
"@eslint/js": "^9.10.0",
|
|
@@ -68,7 +69,7 @@
|
|
|
68
69
|
"@img/sharp-libvips-win32-x64": "^1.0.2",
|
|
69
70
|
"@img/sharp-win32-x64": "^0.33.4",
|
|
70
71
|
"get-windows": "^9.2.0",
|
|
71
|
-
"robotjs": "
|
|
72
|
+
"robotjs": "npm:@hurdlegroup/robotjs@^0.12.3",
|
|
72
73
|
"screenshot-desktop": "^1.15.0"
|
|
73
74
|
}
|
|
74
75
|
}
|