appium-mac2-driver 1.11.3 → 1.13.0

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 CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.13.0](https://github.com/appium/appium-mac2-driver/compare/v1.12.0...v1.13.0) (2024-04-18)
2
+
3
+
4
+ ### Features
5
+
6
+ * Use public API to run application using the path to it ([#294](https://github.com/appium/appium-mac2-driver/issues/294)) ([b8b0ce0](https://github.com/appium/appium-mac2-driver/commit/b8b0ce09ae899ad1a36651754560ec804befd7d8))
7
+
8
+ ## [1.12.0](https://github.com/appium/appium-mac2-driver/compare/v1.11.3...v1.12.0) (2024-03-19)
9
+
10
+
11
+ ### Features
12
+
13
+ * Make native screen recording and screenshots configurable ([#291](https://github.com/appium/appium-mac2-driver/issues/291)) ([9f594c4](https://github.com/appium/appium-mac2-driver/commit/9f594c4ac494f9020e937d209eba0ea7c3f95c59))
14
+
1
15
  ## [1.11.3](https://github.com/appium/appium-mac2-driver/compare/v1.11.2...v1.11.3) (2024-03-07)
2
16
 
3
17
 
package/README.md CHANGED
@@ -52,7 +52,7 @@ appium:skipAppKill | Whether to skip the termination of the application under te
52
52
  appium:prerun | An object containing either `script` or `command` key. The value of each key must be a valid AppleScript script or command to be executed prior to the Mac2Driver session startup. See [AppleScript commands execution](#applescript-commands-execution) for more details. Example: `{command: 'do shell script "echo hello"'}`
53
53
  appium:postrun | An object containing either `script` or `command` key. The value of each key must be a valid AppleScript script or command to be executed after Mac2Driver session is stopped. See [AppleScript commands execution](#applescript-commands-execution) for more details.
54
54
  appium:noReset | Whether to restart the app whose bundle identifier was passed to capabilities as `bundleId` value if it was already running on the session startup (`false`, the default value) or just pick it up without changing the app state (`true`). Note that neither of `arguments` or `environment` capabilities will take effect if the app did not restart.
55
- appium:appPath | The path to the application to automate, for example `/Applications/MyAppName.app`. This is an optional capability, but it requires `bundleId` to be present. If `bundleId` is empty, `appPath` will be ignored. If the path is invalid or application is damaged/incomplete then an error will be thrown on session startup. This capability could be useful when you have multiple builds of the same application with the same bundleId on your machine (for example one production build in /Applications/ and several dev builds). If you provide bundleId only, the operating system could open any of these builds. By providing `appPath` you have a guarantee that the specified .app will be launched, rather than a random one.
55
+ appium:appPath | The path to the application to automate, for example `/Applications/MyAppName.app`. This is an optional capability, but it requires `bundleId` to be present until mac2 driver v1.13.0. In earlier versions if `bundleId` is empty, `appPath` would be ignored. If the path is invalid or application is damaged/incomplete then an error will be thrown on session startup. This capability could be useful when you have multiple builds of the same application with the same bundleId on your machine (for example one production build in /Applications/ and several dev builds). If you provide bundleId only, the operating system could open any of these builds. By providing `appPath` you have a guarantee that the specified .app will be launched, rather than a random one.
56
56
  appium:appLocale | A dictionary with the following possible entries: `locale` (application locale name, for example `uk_UA`), `language` (application language name, for example `de`), `useMetricUnits` (whether to use metric units for the app, if `false` then imperial units are used), `measurementUnits` (the name of measurement units to use in the app, for example `Inches`). This capability only changes the locale for the app under test, it does not modify the system locale. You can achieve the same effect by providing custom values to reserved app command line arguments like `-AppleLanguages` or `-AppleLocale` using the `appium:arguments` capability. Example: use `appLocale = {locale: "de", language: "de_DE"}` to start the app in German language (if no German resources are defined in the destination app bundle then the app is started with the default locale, usually en_US).
57
57
 
58
58
 
@@ -767,6 +767,22 @@ def test_sending_custom_keys(driver):
767
767
 
768
768
  Parallel execution of multiple Mac2 driver instances is highly discouraged. Only one UI test must be running at the same time, since the access to accessibility layer is single-threaded. Also HID devices, like the mouse or the keyboard, must be acquired exclusively.
769
769
 
770
+ ## Environment Variables
771
+
772
+ The server part of the driver recognizes the following environment variables:
773
+
774
+ - `ENABLE_AUTOMATIC_SCREENSHOTS`: enables automatic XCTest screenshots.
775
+ These screenshots are stored in the same folder where WDA test logs are located and are taken automatically.
776
+ This feature is disabled by default. Only enable it if you know what you are doing otherwise these
777
+ screenshots may quickly fill up the free disk space.
778
+ - `ENABLE_AUTOMATIC_SCREEN_RECORDINGS`: enables automatic XCTest screen recordings.
779
+ These screen recordings are stored in the same folder where WDA test logs are located and are taken automatically. This feature is disabled by default.
780
+ Only enable it if you know what you are doing otherwise these videos may quickly fill up the free disk space.
781
+ The native screen recording feature only works on Xcode 15+.
782
+ - `USE_PORT`. If enabled then the server listens on the given port. Otherwise, a random free port from the
783
+ 10100..10200 range is selected. By default, the port is selected by the driver (see the `appium:systemPort`
784
+ capability description).
785
+ - `VERBOSE_LOGGING`. If enabled then server logs should include various verbose details. Disabled by default.
770
786
 
771
787
  ## Development & Testing
772
788
 
@@ -17,7 +17,6 @@
17
17
  #import "FBRouteRequest.h"
18
18
  #import "FBSession.h"
19
19
  #import "FBRuntimeUtils.h"
20
- #import "XCUIApplication.h"
21
20
  #import "XCUIApplication+AMHelpers.h"
22
21
  #import "XCUIApplication+AMUIInterruptions.h"
23
22
 
@@ -83,15 +82,15 @@ const static NSString *CAPABILITIES_KEY = @"capabilities";
83
82
  }
84
83
 
85
84
  NSString *bundleID = requirements[AM_BUNDLE_ID_CAPABILITY];
85
+ NSString *appPath = requirements[AM_APP_PATH_CAPABILITY];
86
86
  BOOL noReset = [requirements[AM_NO_RESET_CAPABILITY] boolValue];
87
87
  FBSession *session;
88
- if (nil == bundleID) {
88
+ if (nil == bundleID && nil == appPath) {
89
89
  session = [FBSession initWithApplication:nil];
90
90
  } else {
91
- NSString *appPath = requirements[AM_APP_PATH_CAPABILITY];
92
- XCUIApplication *app = appPath == nil ?
93
- [[XCUIApplication alloc] initWithBundleIdentifier:bundleID] :
94
- [[XCUIApplication alloc] initPrivateWithPath:appPath bundleID:bundleID];
91
+ XCUIApplication *app = nil != appPath
92
+ ? [[XCUIApplication alloc] initWithURL:[NSURL fileURLWithPath:appPath]]
93
+ : [[XCUIApplication alloc] initWithBundleIdentifier:bundleID];
95
94
  session = [FBSession initWithApplication:app];
96
95
  if (noReset && app.state > XCUIApplicationStateNotRunning) {
97
96
  [app activate];
@@ -107,7 +106,16 @@ const static NSString *CAPABILITIES_KEY = @"capabilities";
107
106
  app.launchEnvironment = (NSDictionary <NSString *, NSString *> *)requirements[AM_APP_ENVIRONMENT_CAPABILITY] ?: @{};
108
107
  [app launch];
109
108
  if (app.state <= XCUIApplicationStateNotRunning) {
110
- NSString *message = [NSString stringWithFormat:@"Failed to launch '%@' application", bundleID];
109
+ NSString *message = [NSString stringWithFormat:@"Failed to launch '%@' application", appPath ?: bundleID];
110
+ return FBResponseWithStatus([FBCommandStatus sessionNotCreatedError:message
111
+ traceback:nil]);
112
+ }
113
+ }
114
+ if (nil != bundleID && nil != appPath) {
115
+ NSString *realBundleID = app.am_bundleID;
116
+ if (![realBundleID isEqualToString:bundleID]) {
117
+ NSString *message = [NSString stringWithFormat:@"The bundle identifier %@ of the '%@' does not match to the one provided in capabilities: %@",
118
+ realBundleID, appPath, bundleID];
111
119
  return FBResponseWithStatus([FBCommandStatus sessionNotCreatedError:message
112
120
  traceback:nil]);
113
121
  }
@@ -27,6 +27,9 @@ NS_ASSUME_NONNULL_BEGIN
27
27
  /*! Enables XCTest automated screenshots taking */
28
28
  @property BOOL automaticScreenshots;
29
29
 
30
+ /*! Enables XCTest automated screen recordings taking in Xcode 15+ */
31
+ @property BOOL automaticScreenRecordings;
32
+
30
33
  /**
31
34
  The range of ports that the HTTP Server should attempt to bind on launch
32
35
  */
@@ -63,6 +63,18 @@ static FBConfiguration *instance;
63
63
  forKey:@"DisableScreenshots"];
64
64
  }
65
65
 
66
+ - (BOOL)automaticScreenRecordings
67
+ {
68
+ id value = [NSUserDefaults.standardUserDefaults objectForKey:@"DisableDiagnosticScreenRecordings"];
69
+ return nil == value ? YES : ![value boolValue];
70
+ }
71
+
72
+ - (void)setAutomaticScreenRecordings:(BOOL)automaticScreenRecordings
73
+ {
74
+ [[NSUserDefaults standardUserDefaults] setBool:!automaticScreenRecordings
75
+ forKey:@"DisableDiagnosticScreenRecordings"];
76
+ }
77
+
66
78
  - (NSRange)bindingPortRange
67
79
  {
68
80
  // 'WebDriverAgent --port 8080' can be passed via the arguments to the process
@@ -190,7 +190,6 @@
190
190
  71B8B68126726369009CE50C /* AMSwipeHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 71B8B67F26726369009CE50C /* AMSwipeHelpers.h */; };
191
191
  71B8B68226726369009CE50C /* AMSwipeHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 71B8B68026726369009CE50C /* AMSwipeHelpers.m */; };
192
192
  71B8B684267265D7009CE50C /* AMVariousElementTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 71B8B683267265D7009CE50C /* AMVariousElementTests.m */; };
193
- C68B934B2AA892CF009F00F2 /* XCUIApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = C68B934A2AA892CF009F00F2 /* XCUIApplication.h */; };
194
193
  /* End PBXBuildFile section */
195
194
 
196
195
  /* Begin PBXContainerItemProxy section */
@@ -425,7 +424,6 @@
425
424
  71B8B67F26726369009CE50C /* AMSwipeHelpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMSwipeHelpers.h; sourceTree = "<group>"; };
426
425
  71B8B68026726369009CE50C /* AMSwipeHelpers.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMSwipeHelpers.m; sourceTree = "<group>"; };
427
426
  71B8B683267265D7009CE50C /* AMVariousElementTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMVariousElementTests.m; sourceTree = "<group>"; };
428
- C68B934A2AA892CF009F00F2 /* XCUIApplication.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XCUIApplication.h; sourceTree = "<group>"; };
429
427
  /* End PBXFileReference section */
430
428
 
431
429
  /* Begin PBXFrameworksBuildPhase section */
@@ -768,7 +766,6 @@
768
766
  7180C1E6257A94F3008FA870 /* XCPointerEventPath.h */,
769
767
  7180C1EC257A95C2008FA870 /* XCSynthesizedEventRecord.h */,
770
768
  7180C1F6257A9896008FA870 /* XCUIEventSynthesizing-Protocol.h */,
771
- C68B934A2AA892CF009F00F2 /* XCUIApplication.h */,
772
769
  );
773
770
  path = XCTest;
774
771
  sourceTree = "<group>";
@@ -878,7 +875,6 @@
878
875
  7109C0532565B5EA006BFD13 /* HTTPErrorResponse.h in Headers */,
879
876
  7180C1E9257A94F4008FA870 /* XCPointerEvent.h in Headers */,
880
877
  712FA091288BD68100976DA8 /* AMWindowCommands.h in Headers */,
881
- C68B934B2AA892CF009F00F2 /* XCUIApplication.h in Headers */,
882
878
  7180C1ED257A95C2008FA870 /* XCSynthesizedEventRecord.h in Headers */,
883
879
  718D2C322567FED3005F533B /* AMSessionCapabilities.h in Headers */,
884
880
  7109BFE02565B536006BFD13 /* FBCommandHandler.h in Headers */,
@@ -26,7 +26,10 @@
26
26
  + (void)setUp
27
27
  {
28
28
  FBConfiguration.sharedConfiguration.attributeKeyPathAnalysis = NO;
29
- FBConfiguration.sharedConfiguration.automaticScreenshots = NO;
29
+ FBConfiguration.sharedConfiguration.automaticScreenshots =
30
+ [NSProcessInfo.processInfo.environment[@"ENABLE_AUTOMATIC_SCREENSHOTS"] boolValue];
31
+ FBConfiguration.sharedConfiguration.automaticScreenRecordings =
32
+ [NSProcessInfo.processInfo.environment[@"ENABLE_AUTOMATIC_SCREEN_RECORDINGS"] boolValue];
30
33
  [super setUp];
31
34
  }
32
35
 
@@ -1 +1 @@
1
- {"version":3,"file":"driver.d.ts","sourceRoot":"","sources":["../../lib/driver.js"],"names":[],"mappings":";;AAoBA;IAOE;;;;;;;;;;;;;;;;;MAAmC;IAEnC,uBAyBC;IAjCD,sBAAsB;IACtB,eADW,OAAO,CACJ;IAEd,8EAA8E;IAC9E,8BADmB;QAAC,OAAO,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAC,KAAK,QAAQ,MAAM,CAAC,CACrD;IAOnB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAkD;IAiBlD,6BAAwE;IAO1E,yDAIC;IAED,mBAKC;IAJC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAAe;IACf,iBAAuB;IAEvB,qBAA2B;IAI7B,qCAEC;IAGD,0EAEC;IAED,oBAEC;IAED,mEAEC;IAGD,8BAEC;IAGD,kCAEC;IAGD,6FAwBC;IAED,+BAwBC;CACF;;2BApJ0C,eAAe;+BAAf,eAAe"}
1
+ {"version":3,"file":"driver.d.ts","sourceRoot":"","sources":["../../lib/driver.js"],"names":[],"mappings":";;AAoBA;IAOE;;;;;;;;;;;;;;;;;MAAmC;IAEnC,uBAyBC;IAjCD,sBAAsB;IACtB,eADW,OAAO,CACJ;IAEd,8EAA8E;IAC9E,sBADW,CAAC,KAAK,EAAE;QAAC,OAAO,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAC,KAAK,QAAQ,MAAM,CAAC,CACrD;IAOnB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAkD;IAiBlD,6BAAwE;IAO1E,yDAIC;IAED,mBAKC;IAJC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAAe;IACf,iBAAuB;IAEvB,qBAA2B;IAI7B,qCAEC;IAGD,0EAEC;IAED,oBAEC;IAED,mEAEC;IAGD,8BAEC;IAGD,kCAEC;IAGD,6FAwBC;IAED,+BAwBC;CACF;;2BApJ0C,eAAe;+BAAf,eAAe"}
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "appium-mac2-driver",
3
- "version": "1.11.3",
3
+ "version": "1.13.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "appium-mac2-driver",
9
- "version": "1.11.3",
9
+ "version": "1.13.0",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@appium/strongbox": "^0.x",
@@ -36,8 +36,6 @@
36
36
  "@types/sinon": "^17.0.0",
37
37
  "@types/sinon-chai": "^3.2.9",
38
38
  "@types/teen_process": "^2.0.2",
39
- "@typescript-eslint/eslint-plugin": "^6.9.0",
40
- "@typescript-eslint/parser": "^6.9.0",
41
39
  "chai": "^4.1.2",
42
40
  "chai-as-promised": "^7.1.1",
43
41
  "conventional-changelog-conventionalcommits": "^7.0.1",
@@ -49,7 +47,6 @@
49
47
  "eslint-plugin-promise": "^6.1.1",
50
48
  "lint-staged": "^15.0.2",
51
49
  "mocha": "^10.0.0",
52
- "pre-commit": "^1.1.3",
53
50
  "semantic-release": "^23.0.0",
54
51
  "sinon": "^17.0.0",
55
52
  "ts-node": "^10.9.1",
@@ -92,12 +89,12 @@
92
89
  }
93
90
  },
94
91
  "node_modules/@appium/support": {
95
- "version": "4.2.2",
96
- "resolved": "https://registry.npmjs.org/@appium/support/-/support-4.2.2.tgz",
97
- "integrity": "sha512-sBaBoGCBbW8l7ZMoVL6KkLLqQxxTRzA06iYLUSP77UI4BSIAgT+ZomLNaZisoHw9ioljQyOSJp2QX3OWqxPPIA==",
92
+ "version": "4.2.4",
93
+ "resolved": "https://registry.npmjs.org/@appium/support/-/support-4.2.4.tgz",
94
+ "integrity": "sha512-TfZ+sIm295EQzL89ympDwwWfuzRHnkiZv5SPDMBcrCJHXcJVcL7BhuQhkiPkHaZvNgKvyvcEb9kGNC+L2UtN+g==",
98
95
  "dependencies": {
99
- "@appium/tsconfig": "^0.x",
100
- "@appium/types": "^0.16.1",
96
+ "@appium/tsconfig": "^0.3.3",
97
+ "@appium/types": "^0.16.2",
101
98
  "@colors/colors": "1.6.0",
102
99
  "@types/archiver": "6.0.2",
103
100
  "@types/base64-stream": "1.0.5",
@@ -109,21 +106,21 @@
109
106
  "@types/ncp": "2.0.8",
110
107
  "@types/npmlog": "7.0.0",
111
108
  "@types/pluralize": "0.0.33",
112
- "@types/semver": "7.5.7",
109
+ "@types/semver": "7.5.8",
113
110
  "@types/shell-quote": "1.7.5",
114
111
  "@types/supports-color": "8.1.3",
115
112
  "@types/teen_process": "2.0.4",
116
113
  "@types/uuid": "9.0.8",
117
114
  "@types/which": "3.0.3",
118
- "archiver": "6.0.1",
119
- "axios": "1.6.7",
115
+ "archiver": "7.0.1",
116
+ "axios": "1.6.8",
120
117
  "base64-stream": "1.0.0",
121
118
  "bluebird": "3.7.2",
122
119
  "bplist-creator": "0.1.1",
123
120
  "bplist-parser": "0.3.2",
124
121
  "form-data": "4.0.0",
125
122
  "get-stream": "6.0.1",
126
- "glob": "10.3.10",
123
+ "glob": "10.3.12",
127
124
  "jsftp": "2.1.3",
128
125
  "klaw": "4.1.0",
129
126
  "lockfile": "1.0.4",
@@ -148,27 +145,22 @@
148
145
  "type-fest": "4.10.1",
149
146
  "uuid": "9.0.1",
150
147
  "which": "4.0.0",
151
- "yauzl": "2.10.0"
148
+ "yauzl": "3.1.2"
152
149
  },
153
150
  "engines": {
154
151
  "node": "^14.17.0 || ^16.13.0 || >=18.0.0",
155
152
  "npm": ">=8"
156
153
  },
157
154
  "optionalDependencies": {
158
- "sharp": "0.33.2"
155
+ "sharp": "0.33.3"
159
156
  }
160
157
  },
161
- "node_modules/@appium/support/node_modules/@types/semver": {
162
- "version": "7.5.7",
163
- "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.7.tgz",
164
- "integrity": "sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg=="
165
- },
166
158
  "node_modules/@appium/tsconfig": {
167
- "version": "0.3.2",
168
- "resolved": "https://registry.npmjs.org/@appium/tsconfig/-/tsconfig-0.3.2.tgz",
169
- "integrity": "sha512-GPJKATPBHbOC1lRX3+mq4wPRHzilEsBDh64TFBa156BtBRPhKi2DoLv38I93gNAWPJ+StwqZ5YMndriuu/8jKQ==",
159
+ "version": "0.3.3",
160
+ "resolved": "https://registry.npmjs.org/@appium/tsconfig/-/tsconfig-0.3.3.tgz",
161
+ "integrity": "sha512-Lk2M2NWVY2M8SIE1PTDVvj1NEuV4lze8yzPDSmklhkJSPDPrOCx7PkDziyjIycQBXy0ficd5CNwNDvdOD1Ym2w==",
170
162
  "dependencies": {
171
- "@tsconfig/node14": "14.1.0"
163
+ "@tsconfig/node14": "14.1.2"
172
164
  },
173
165
  "engines": {
174
166
  "node": "^14.17.0 || ^16.13.0 || >=18.0.0",
@@ -176,12 +168,12 @@
176
168
  }
177
169
  },
178
170
  "node_modules/@appium/types": {
179
- "version": "0.16.1",
180
- "resolved": "https://registry.npmjs.org/@appium/types/-/types-0.16.1.tgz",
181
- "integrity": "sha512-fEQDDIJzJj5ppQBfMExweZKjW6OEonAmcZQh6teH2ykDRo2MJl1jazqxt9LYUbXdH4qChjsh2nYPcgpD6m4usw==",
171
+ "version": "0.16.2",
172
+ "resolved": "https://registry.npmjs.org/@appium/types/-/types-0.16.2.tgz",
173
+ "integrity": "sha512-4LpzS26hfTuK5rAXogotydMFjA0UdWKpQscpsIJKJQ3KGNYNNSQL0fpVcJ6hHHXA2/ySI6DtQeK9+ayUBCUqYg==",
182
174
  "dependencies": {
183
175
  "@appium/schema": "^0.5.0",
184
- "@appium/tsconfig": "^0.x",
176
+ "@appium/tsconfig": "^0.3.3",
185
177
  "@types/express": "4.17.21",
186
178
  "@types/npmlog": "7.0.0",
187
179
  "@types/ws": "8.5.10",
@@ -193,81 +185,17 @@
193
185
  }
194
186
  },
195
187
  "node_modules/@babel/code-frame": {
196
- "version": "7.23.5",
197
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz",
198
- "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==",
188
+ "version": "7.24.2",
189
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz",
190
+ "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==",
199
191
  "dependencies": {
200
- "@babel/highlight": "^7.23.4",
201
- "chalk": "^2.4.2"
192
+ "@babel/highlight": "^7.24.2",
193
+ "picocolors": "^1.0.0"
202
194
  },
203
195
  "engines": {
204
196
  "node": ">=6.9.0"
205
197
  }
206
198
  },
207
- "node_modules/@babel/code-frame/node_modules/ansi-styles": {
208
- "version": "3.2.1",
209
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
210
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
211
- "dependencies": {
212
- "color-convert": "^1.9.0"
213
- },
214
- "engines": {
215
- "node": ">=4"
216
- }
217
- },
218
- "node_modules/@babel/code-frame/node_modules/chalk": {
219
- "version": "2.4.2",
220
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
221
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
222
- "dependencies": {
223
- "ansi-styles": "^3.2.1",
224
- "escape-string-regexp": "^1.0.5",
225
- "supports-color": "^5.3.0"
226
- },
227
- "engines": {
228
- "node": ">=4"
229
- }
230
- },
231
- "node_modules/@babel/code-frame/node_modules/color-convert": {
232
- "version": "1.9.3",
233
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
234
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
235
- "dependencies": {
236
- "color-name": "1.1.3"
237
- }
238
- },
239
- "node_modules/@babel/code-frame/node_modules/color-name": {
240
- "version": "1.1.3",
241
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
242
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
243
- },
244
- "node_modules/@babel/code-frame/node_modules/escape-string-regexp": {
245
- "version": "1.0.5",
246
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
247
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
248
- "engines": {
249
- "node": ">=0.8.0"
250
- }
251
- },
252
- "node_modules/@babel/code-frame/node_modules/has-flag": {
253
- "version": "3.0.0",
254
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
255
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
256
- "engines": {
257
- "node": ">=4"
258
- }
259
- },
260
- "node_modules/@babel/code-frame/node_modules/supports-color": {
261
- "version": "5.5.0",
262
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
263
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
264
- "dependencies": {
265
- "has-flag": "^3.0.0"
266
- },
267
- "engines": {
268
- "node": ">=4"
269
- }
270
- },
271
199
  "node_modules/@babel/helper-validator-identifier": {
272
200
  "version": "7.22.20",
273
201
  "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
@@ -277,13 +205,14 @@
277
205
  }
278
206
  },
279
207
  "node_modules/@babel/highlight": {
280
- "version": "7.23.4",
281
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz",
282
- "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==",
208
+ "version": "7.24.2",
209
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz",
210
+ "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==",
283
211
  "dependencies": {
284
212
  "@babel/helper-validator-identifier": "^7.22.20",
285
213
  "chalk": "^2.4.2",
286
- "js-tokens": "^4.0.0"
214
+ "js-tokens": "^4.0.0",
215
+ "picocolors": "^1.0.0"
287
216
  },
288
217
  "engines": {
289
218
  "node": ">=6.9.0"
@@ -362,9 +291,9 @@
362
291
  }
363
292
  },
364
293
  "node_modules/@img/sharp-darwin-x64": {
365
- "version": "0.33.2",
366
- "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.2.tgz",
367
- "integrity": "sha512-/rK/69Rrp9x5kaWBjVN07KixZanRr+W1OiyKdXcbjQD6KbW+obaTeBBtLUAtbBsnlTTmWthw99xqoOS7SsySDg==",
294
+ "version": "0.33.3",
295
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.3.tgz",
296
+ "integrity": "sha512-2QeSl7QDK9ru//YBT4sQkoq7L0EAJZA3rtV+v9p8xTKl4U1bUqTIaCnoC7Ctx2kCjQgwFXDasOtPTCT8eCTXvw==",
368
297
  "cpu": [
369
298
  "x64"
370
299
  ],
@@ -383,13 +312,13 @@
383
312
  "url": "https://opencollective.com/libvips"
384
313
  },
385
314
  "optionalDependencies": {
386
- "@img/sharp-libvips-darwin-x64": "1.0.1"
315
+ "@img/sharp-libvips-darwin-x64": "1.0.2"
387
316
  }
388
317
  },
389
318
  "node_modules/@img/sharp-libvips-darwin-x64": {
390
- "version": "1.0.1",
391
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.1.tgz",
392
- "integrity": "sha512-eVU/JYLPVjhhrd8Tk6gosl5pVlvsqiFlt50wotCvdkFGf+mDNBJxMh+bvav+Wt3EBnNZWq8Sp2I7XfSjm8siog==",
319
+ "version": "1.0.2",
320
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.2.tgz",
321
+ "integrity": "sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==",
393
322
  "cpu": [
394
323
  "x64"
395
324
  ],
@@ -485,9 +414,9 @@
485
414
  }
486
415
  },
487
416
  "node_modules/@tsconfig/node14": {
488
- "version": "14.1.0",
489
- "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-14.1.0.tgz",
490
- "integrity": "sha512-VmsCG04YR58ciHBeJKBDNMWWfYbyP8FekWVuTlpstaUPlat1D0x/tXzkWP7yCMU0eSz9V4OZU0LBWTFJ3xZf6w=="
417
+ "version": "14.1.2",
418
+ "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-14.1.2.tgz",
419
+ "integrity": "sha512-1vncsbfCZ3TBLPxesRYz02Rn7SNJfbLoDVkcZ7F/ixOV6nwxwgdhD1mdPcc5YQ413qBJ8CvMxXMFfJ7oawjo7Q=="
491
420
  },
492
421
  "node_modules/@types/archiver": {
493
422
  "version": "6.0.2",
@@ -539,9 +468,9 @@
539
468
  }
540
469
  },
541
470
  "node_modules/@types/express-serve-static-core": {
542
- "version": "4.17.43",
543
- "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.43.tgz",
544
- "integrity": "sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==",
471
+ "version": "4.19.0",
472
+ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.0.tgz",
473
+ "integrity": "sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==",
545
474
  "dependencies": {
546
475
  "@types/node": "*",
547
476
  "@types/qs": "*",
@@ -586,9 +515,9 @@
586
515
  "integrity": "sha512-Q8oFIHJHr+htLrTXN2FuZfg+WXVHQRwU/hC2GpUu+Q8e3FUM9EDkS2pE3R2AO1ZGu56f479ybdMCNF1DAu8cAQ=="
587
516
  },
588
517
  "node_modules/@types/lodash": {
589
- "version": "4.14.202",
590
- "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz",
591
- "integrity": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ=="
518
+ "version": "4.17.0",
519
+ "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.0.tgz",
520
+ "integrity": "sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA=="
592
521
  },
593
522
  "node_modules/@types/mime": {
594
523
  "version": "1.3.5",
@@ -609,9 +538,9 @@
609
538
  }
610
539
  },
611
540
  "node_modules/@types/node": {
612
- "version": "20.11.25",
613
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.25.tgz",
614
- "integrity": "sha512-TBHyJxk2b7HceLVGFcpAUjsa5zIdsPWlR6XHfyGzd0SFu+/NFgQgMAl96MSDZgQDvJAvV6BKsFOrt6zIL09JDw==",
541
+ "version": "20.12.7",
542
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz",
543
+ "integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==",
615
544
  "dependencies": {
616
545
  "undici-types": "~5.26.4"
617
546
  }
@@ -635,9 +564,9 @@
635
564
  "integrity": "sha512-JOqsl+ZoCpP4e8TDke9W79FDcSgPAR0l6pixx2JHkhnRjvShyYiAYw2LVsnA7K08Y6DeOnaU6ujmENO4os/cYg=="
636
565
  },
637
566
  "node_modules/@types/qs": {
638
- "version": "6.9.12",
639
- "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.12.tgz",
640
- "integrity": "sha512-bZcOkJ6uWrL0Qb2NAWKa7TBU+mJHPzhx9jjLL1KHF+XpzEcR7EXHvjbHlGtR/IsP1vyPrehuS6XqkmaePy//mg=="
567
+ "version": "6.9.15",
568
+ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz",
569
+ "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg=="
641
570
  },
642
571
  "node_modules/@types/range-parser": {
643
572
  "version": "1.2.7",
@@ -652,6 +581,11 @@
652
581
  "@types/node": "*"
653
582
  }
654
583
  },
584
+ "node_modules/@types/semver": {
585
+ "version": "7.5.8",
586
+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz",
587
+ "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ=="
588
+ },
655
589
  "node_modules/@types/send": {
656
590
  "version": "0.17.4",
657
591
  "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz",
@@ -662,13 +596,13 @@
662
596
  }
663
597
  },
664
598
  "node_modules/@types/serve-static": {
665
- "version": "1.15.5",
666
- "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz",
667
- "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==",
599
+ "version": "1.15.7",
600
+ "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz",
601
+ "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==",
668
602
  "dependencies": {
669
603
  "@types/http-errors": "*",
670
- "@types/mime": "*",
671
- "@types/node": "*"
604
+ "@types/node": "*",
605
+ "@types/send": "*"
672
606
  }
673
607
  },
674
608
  "node_modules/@types/shell-quote": {
@@ -715,6 +649,17 @@
715
649
  "node": ">=10.0.0"
716
650
  }
717
651
  },
652
+ "node_modules/abort-controller": {
653
+ "version": "3.0.0",
654
+ "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
655
+ "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
656
+ "dependencies": {
657
+ "event-target-shim": "^5.0.0"
658
+ },
659
+ "engines": {
660
+ "node": ">=6.5"
661
+ }
662
+ },
718
663
  "node_modules/ansi-regex": {
719
664
  "version": "5.0.1",
720
665
  "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
@@ -738,9 +683,9 @@
738
683
  }
739
684
  },
740
685
  "node_modules/appium-xcode": {
741
- "version": "5.2.10",
742
- "resolved": "https://registry.npmjs.org/appium-xcode/-/appium-xcode-5.2.10.tgz",
743
- "integrity": "sha512-flWz4v/yYrZo2vwM5Ytgn7Q+G5za4Mhav0rTqvQI7WnxQpr6xh7Yq3pbKx7n3QO9fQRZgkEKVWUhm1M0pZHk/A==",
686
+ "version": "5.2.12",
687
+ "resolved": "https://registry.npmjs.org/appium-xcode/-/appium-xcode-5.2.12.tgz",
688
+ "integrity": "sha512-5A0G0zPC5G6/07fbmCVnMWJMRAMqT4oVK75nAVlmccmtwl+YrMP/BsCCCCEPoRCo3kPhGKMXom8VO+aJRNyCLw==",
744
689
  "dependencies": {
745
690
  "@appium/support": "^4.0.0",
746
691
  "@types/lodash": "^4.14.192",
@@ -764,65 +709,37 @@
764
709
  "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="
765
710
  },
766
711
  "node_modules/archiver": {
767
- "version": "6.0.1",
768
- "resolved": "https://registry.npmjs.org/archiver/-/archiver-6.0.1.tgz",
769
- "integrity": "sha512-CXGy4poOLBKptiZH//VlWdFuUC1RESbdZjGjILwBuZ73P7WkAUN0htfSfBq/7k6FRFlpu7bg4JOkj1vU9G6jcQ==",
712
+ "version": "7.0.1",
713
+ "resolved": "https://registry.npmjs.org/archiver/-/archiver-7.0.1.tgz",
714
+ "integrity": "sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==",
770
715
  "dependencies": {
771
- "archiver-utils": "^4.0.1",
716
+ "archiver-utils": "^5.0.2",
772
717
  "async": "^3.2.4",
773
- "buffer-crc32": "^0.2.1",
774
- "readable-stream": "^3.6.0",
718
+ "buffer-crc32": "^1.0.0",
719
+ "readable-stream": "^4.0.0",
775
720
  "readdir-glob": "^1.1.2",
776
721
  "tar-stream": "^3.0.0",
777
- "zip-stream": "^5.0.1"
722
+ "zip-stream": "^6.0.1"
778
723
  },
779
724
  "engines": {
780
- "node": ">= 12.0.0"
725
+ "node": ">= 14"
781
726
  }
782
727
  },
783
728
  "node_modules/archiver-utils": {
784
- "version": "4.0.1",
785
- "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-4.0.1.tgz",
786
- "integrity": "sha512-Q4Q99idbvzmgCTEAAhi32BkOyq8iVI5EwdO0PmBDSGIzzjYNdcFn7Q7k3OzbLy4kLUPXfJtG6fO2RjftXbobBg==",
729
+ "version": "5.0.2",
730
+ "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-5.0.2.tgz",
731
+ "integrity": "sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==",
787
732
  "dependencies": {
788
- "glob": "^8.0.0",
733
+ "glob": "^10.0.0",
789
734
  "graceful-fs": "^4.2.0",
735
+ "is-stream": "^2.0.1",
790
736
  "lazystream": "^1.0.0",
791
737
  "lodash": "^4.17.15",
792
738
  "normalize-path": "^3.0.0",
793
- "readable-stream": "^3.6.0"
794
- },
795
- "engines": {
796
- "node": ">= 12.0.0"
797
- }
798
- },
799
- "node_modules/archiver-utils/node_modules/glob": {
800
- "version": "8.1.0",
801
- "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz",
802
- "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==",
803
- "dependencies": {
804
- "fs.realpath": "^1.0.0",
805
- "inflight": "^1.0.4",
806
- "inherits": "2",
807
- "minimatch": "^5.0.1",
808
- "once": "^1.3.0"
809
- },
810
- "engines": {
811
- "node": ">=12"
812
- },
813
- "funding": {
814
- "url": "https://github.com/sponsors/isaacs"
815
- }
816
- },
817
- "node_modules/archiver-utils/node_modules/minimatch": {
818
- "version": "5.1.6",
819
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
820
- "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
821
- "dependencies": {
822
- "brace-expansion": "^2.0.1"
739
+ "readable-stream": "^4.0.0"
823
740
  },
824
741
  "engines": {
825
- "node": ">=10"
742
+ "node": ">= 14"
826
743
  }
827
744
  },
828
745
  "node_modules/are-we-there-yet": {
@@ -869,11 +786,11 @@
869
786
  "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
870
787
  },
871
788
  "node_modules/axios": {
872
- "version": "1.6.7",
873
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz",
874
- "integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==",
789
+ "version": "1.6.8",
790
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.8.tgz",
791
+ "integrity": "sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==",
875
792
  "dependencies": {
876
- "follow-redirects": "^1.15.4",
793
+ "follow-redirects": "^1.15.6",
877
794
  "form-data": "^4.0.0",
878
795
  "proxy-from-env": "^1.1.0"
879
796
  }
@@ -889,9 +806,9 @@
889
806
  "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
890
807
  },
891
808
  "node_modules/bare-events": {
892
- "version": "2.2.1",
893
- "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.2.1.tgz",
894
- "integrity": "sha512-9GYPpsPFvrWBkelIhOhTWtkeZxVxZOdb3VnFTCzlOo3OjvmTvzLoZFUT8kNFACx0vJej6QPney1Cf9BvzCNE/A==",
809
+ "version": "2.2.2",
810
+ "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.2.2.tgz",
811
+ "integrity": "sha512-h7z00dWdG0PYOQEvChhOSWvOfkIKsdZGkWr083FgN/HyoQuebSew/cgirYqh9SCuy/hRvxc5Vy6Fw8xAmYHLkQ==",
895
812
  "optional": true
896
813
  },
897
814
  "node_modules/base64-js": {
@@ -983,11 +900,11 @@
983
900
  }
984
901
  },
985
902
  "node_modules/buffer-crc32": {
986
- "version": "0.2.13",
987
- "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
988
- "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
903
+ "version": "1.0.0",
904
+ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-1.0.0.tgz",
905
+ "integrity": "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==",
989
906
  "engines": {
990
- "node": "*"
907
+ "node": ">=8.0.0"
991
908
  }
992
909
  },
993
910
  "node_modules/buffer-from": {
@@ -1141,17 +1058,18 @@
1141
1058
  }
1142
1059
  },
1143
1060
  "node_modules/compress-commons": {
1144
- "version": "5.0.3",
1145
- "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-5.0.3.tgz",
1146
- "integrity": "sha512-/UIcLWvwAQyVibgpQDPtfNM3SvqN7G9elAPAV7GM0L53EbNWwWiCsWtK8Fwed/APEbptPHXs5PuW+y8Bq8lFTA==",
1061
+ "version": "6.0.2",
1062
+ "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-6.0.2.tgz",
1063
+ "integrity": "sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==",
1147
1064
  "dependencies": {
1148
1065
  "crc-32": "^1.2.0",
1149
- "crc32-stream": "^5.0.0",
1066
+ "crc32-stream": "^6.0.0",
1067
+ "is-stream": "^2.0.1",
1150
1068
  "normalize-path": "^3.0.0",
1151
- "readable-stream": "^3.6.0"
1069
+ "readable-stream": "^4.0.0"
1152
1070
  },
1153
1071
  "engines": {
1154
- "node": ">= 12.0.0"
1072
+ "node": ">= 14"
1155
1073
  }
1156
1074
  },
1157
1075
  "node_modules/concat-map": {
@@ -1181,15 +1099,15 @@
1181
1099
  }
1182
1100
  },
1183
1101
  "node_modules/crc32-stream": {
1184
- "version": "5.0.1",
1185
- "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-5.0.1.tgz",
1186
- "integrity": "sha512-lO1dFui+CEUh/ztYIpgpKItKW9Bb4NWakCRJrnqAbFIYD+OZAwb2VfD5T5eXMw2FNcsDHkQcNl/Wh3iVXYwU6g==",
1102
+ "version": "6.0.0",
1103
+ "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-6.0.0.tgz",
1104
+ "integrity": "sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==",
1187
1105
  "dependencies": {
1188
1106
  "crc-32": "^1.2.0",
1189
- "readable-stream": "^3.4.0"
1107
+ "readable-stream": "^4.0.0"
1190
1108
  },
1191
1109
  "engines": {
1192
- "node": ">= 12.0.0"
1110
+ "node": ">= 14"
1193
1111
  }
1194
1112
  },
1195
1113
  "node_modules/create-require": {
@@ -1273,9 +1191,9 @@
1273
1191
  }
1274
1192
  },
1275
1193
  "node_modules/detect-libc": {
1276
- "version": "2.0.2",
1277
- "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz",
1278
- "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==",
1194
+ "version": "2.0.3",
1195
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
1196
+ "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
1279
1197
  "optional": true,
1280
1198
  "engines": {
1281
1199
  "node": ">=8"
@@ -1351,6 +1269,22 @@
1351
1269
  "node": ">=6"
1352
1270
  }
1353
1271
  },
1272
+ "node_modules/event-target-shim": {
1273
+ "version": "5.0.1",
1274
+ "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
1275
+ "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
1276
+ "engines": {
1277
+ "node": ">=6"
1278
+ }
1279
+ },
1280
+ "node_modules/events": {
1281
+ "version": "3.3.0",
1282
+ "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
1283
+ "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
1284
+ "engines": {
1285
+ "node": ">=0.8.x"
1286
+ }
1287
+ },
1354
1288
  "node_modules/fast-deep-equal": {
1355
1289
  "version": "3.1.3",
1356
1290
  "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
@@ -1362,14 +1296,6 @@
1362
1296
  "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz",
1363
1297
  "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ=="
1364
1298
  },
1365
- "node_modules/fd-slicer": {
1366
- "version": "1.1.0",
1367
- "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
1368
- "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
1369
- "dependencies": {
1370
- "pend": "~1.2.0"
1371
- }
1372
- },
1373
1299
  "node_modules/find-up": {
1374
1300
  "version": "5.0.0",
1375
1301
  "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
@@ -1386,9 +1312,9 @@
1386
1312
  }
1387
1313
  },
1388
1314
  "node_modules/follow-redirects": {
1389
- "version": "1.15.5",
1390
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz",
1391
- "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==",
1315
+ "version": "1.15.6",
1316
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
1317
+ "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==",
1392
1318
  "funding": [
1393
1319
  {
1394
1320
  "type": "individual",
@@ -1443,11 +1369,6 @@
1443
1369
  "node": ">= 6"
1444
1370
  }
1445
1371
  },
1446
- "node_modules/fs.realpath": {
1447
- "version": "1.0.0",
1448
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
1449
- "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
1450
- },
1451
1372
  "node_modules/ftp-response-parser": {
1452
1373
  "version": "1.0.1",
1453
1374
  "resolved": "https://registry.npmjs.org/ftp-response-parser/-/ftp-response-parser-1.0.1.tgz",
@@ -1583,15 +1504,15 @@
1583
1504
  }
1584
1505
  },
1585
1506
  "node_modules/glob": {
1586
- "version": "10.3.10",
1587
- "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz",
1588
- "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==",
1507
+ "version": "10.3.12",
1508
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz",
1509
+ "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==",
1589
1510
  "dependencies": {
1590
1511
  "foreground-child": "^3.1.0",
1591
- "jackspeak": "^2.3.5",
1512
+ "jackspeak": "^2.3.6",
1592
1513
  "minimatch": "^9.0.1",
1593
- "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0",
1594
- "path-scurry": "^1.10.1"
1514
+ "minipass": "^7.0.4",
1515
+ "path-scurry": "^1.10.2"
1595
1516
  },
1596
1517
  "bin": {
1597
1518
  "glob": "dist/esm/bin.mjs"
@@ -1670,9 +1591,9 @@
1670
1591
  "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ=="
1671
1592
  },
1672
1593
  "node_modules/hasown": {
1673
- "version": "2.0.1",
1674
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz",
1675
- "integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==",
1594
+ "version": "2.0.2",
1595
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
1596
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
1676
1597
  "dependencies": {
1677
1598
  "function-bind": "^1.1.2"
1678
1599
  },
@@ -1689,7 +1610,6 @@
1689
1610
  "version": "1.2.1",
1690
1611
  "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
1691
1612
  "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
1692
- "extraneous": true,
1693
1613
  "funding": [
1694
1614
  {
1695
1615
  "type": "github",
@@ -1747,7 +1667,6 @@
1747
1667
  "version": "2.0.1",
1748
1668
  "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
1749
1669
  "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
1750
- "extraneous": true,
1751
1670
  "engines": {
1752
1671
  "node": ">=8"
1753
1672
  },
@@ -1881,15 +1800,6 @@
1881
1800
  "safe-buffer": "~5.1.0"
1882
1801
  }
1883
1802
  },
1884
- "node_modules/lilconfig": {
1885
- "version": "3.0.0",
1886
- "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz",
1887
- "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==",
1888
- "extraneous": true,
1889
- "engines": {
1890
- "node": ">=14"
1891
- }
1892
- },
1893
1803
  "node_modules/lines-and-columns": {
1894
1804
  "version": "1.2.4",
1895
1805
  "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
@@ -1991,9 +1901,9 @@
1991
1901
  }
1992
1902
  },
1993
1903
  "node_modules/minimatch": {
1994
- "version": "9.0.3",
1995
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
1996
- "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
1904
+ "version": "9.0.4",
1905
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
1906
+ "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
1997
1907
  "dependencies": {
1998
1908
  "brace-expansion": "^2.0.1"
1999
1909
  },
@@ -2272,11 +2182,11 @@
2272
2182
  "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
2273
2183
  },
2274
2184
  "node_modules/path-scurry": {
2275
- "version": "1.10.1",
2276
- "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz",
2277
- "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==",
2185
+ "version": "1.10.2",
2186
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz",
2187
+ "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==",
2278
2188
  "dependencies": {
2279
- "lru-cache": "^9.1.1 || ^10.0.0",
2189
+ "lru-cache": "^10.2.0",
2280
2190
  "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
2281
2191
  },
2282
2192
  "engines": {
@@ -2287,9 +2197,9 @@
2287
2197
  }
2288
2198
  },
2289
2199
  "node_modules/path-to-regexp": {
2290
- "version": "6.2.1",
2291
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz",
2292
- "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==",
2200
+ "version": "6.2.2",
2201
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.2.tgz",
2202
+ "integrity": "sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==",
2293
2203
  "extraneous": true
2294
2204
  },
2295
2205
  "node_modules/pend": {
@@ -2297,6 +2207,11 @@
2297
2207
  "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
2298
2208
  "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg=="
2299
2209
  },
2210
+ "node_modules/picocolors": {
2211
+ "version": "1.0.0",
2212
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
2213
+ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
2214
+ },
2300
2215
  "node_modules/pkg-dir": {
2301
2216
  "version": "5.0.0",
2302
2217
  "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz",
@@ -2350,6 +2265,14 @@
2350
2265
  "lodash": "^4.17.14"
2351
2266
  }
2352
2267
  },
2268
+ "node_modules/process": {
2269
+ "version": "0.11.10",
2270
+ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
2271
+ "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
2272
+ "engines": {
2273
+ "node": ">= 0.6.0"
2274
+ }
2275
+ },
2353
2276
  "node_modules/process-nextick-args": {
2354
2277
  "version": "2.0.1",
2355
2278
  "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
@@ -2397,16 +2320,41 @@
2397
2320
  }
2398
2321
  },
2399
2322
  "node_modules/readable-stream": {
2400
- "version": "3.6.2",
2401
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
2402
- "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
2323
+ "version": "4.5.2",
2324
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz",
2325
+ "integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==",
2403
2326
  "dependencies": {
2404
- "inherits": "^2.0.3",
2405
- "string_decoder": "^1.1.1",
2406
- "util-deprecate": "^1.0.1"
2327
+ "abort-controller": "^3.0.0",
2328
+ "buffer": "^6.0.3",
2329
+ "events": "^3.3.0",
2330
+ "process": "^0.11.10",
2331
+ "string_decoder": "^1.3.0"
2407
2332
  },
2408
2333
  "engines": {
2409
- "node": ">= 6"
2334
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2335
+ }
2336
+ },
2337
+ "node_modules/readable-stream/node_modules/buffer": {
2338
+ "version": "6.0.3",
2339
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
2340
+ "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
2341
+ "funding": [
2342
+ {
2343
+ "type": "github",
2344
+ "url": "https://github.com/sponsors/feross"
2345
+ },
2346
+ {
2347
+ "type": "patreon",
2348
+ "url": "https://www.patreon.com/feross"
2349
+ },
2350
+ {
2351
+ "type": "consulting",
2352
+ "url": "https://feross.org/support"
2353
+ }
2354
+ ],
2355
+ "dependencies": {
2356
+ "base64-js": "^1.3.1",
2357
+ "ieee754": "^1.2.1"
2410
2358
  }
2411
2359
  },
2412
2360
  "node_modules/readdir-glob": {
@@ -2513,71 +2461,66 @@
2513
2461
  "node": ">=10"
2514
2462
  }
2515
2463
  },
2516
- "node_modules/semver/node_modules/yallist": {
2517
- "version": "4.0.0",
2518
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
2519
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
2520
- },
2521
2464
  "node_modules/set-blocking": {
2522
2465
  "version": "2.0.0",
2523
2466
  "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
2524
2467
  "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="
2525
2468
  },
2526
2469
  "node_modules/set-function-length": {
2527
- "version": "1.2.1",
2528
- "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz",
2529
- "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==",
2470
+ "version": "1.2.2",
2471
+ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
2472
+ "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
2530
2473
  "extraneous": true,
2531
2474
  "dependencies": {
2532
- "define-data-property": "^1.1.2",
2475
+ "define-data-property": "^1.1.4",
2533
2476
  "es-errors": "^1.3.0",
2534
2477
  "function-bind": "^1.1.2",
2535
- "get-intrinsic": "^1.2.3",
2478
+ "get-intrinsic": "^1.2.4",
2536
2479
  "gopd": "^1.0.1",
2537
- "has-property-descriptors": "^1.0.1"
2480
+ "has-property-descriptors": "^1.0.2"
2538
2481
  },
2539
2482
  "engines": {
2540
2483
  "node": ">= 0.4"
2541
2484
  }
2542
2485
  },
2543
2486
  "node_modules/sharp": {
2544
- "version": "0.33.2",
2545
- "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.2.tgz",
2546
- "integrity": "sha512-WlYOPyyPDiiM07j/UO+E720ju6gtNtHjEGg5vovUk1Lgxyjm2LFO+37Nt/UI3MMh2l6hxTWQWi7qk3cXJTutcQ==",
2487
+ "version": "0.33.3",
2488
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.3.tgz",
2489
+ "integrity": "sha512-vHUeXJU1UvlO/BNwTpT0x/r53WkLUVxrmb5JTgW92fdFCFk0ispLMAeu/jPO2vjkXM1fYUi3K7/qcLF47pwM1A==",
2547
2490
  "hasInstallScript": true,
2548
2491
  "optional": true,
2549
2492
  "dependencies": {
2550
2493
  "color": "^4.2.3",
2551
- "detect-libc": "^2.0.2",
2552
- "semver": "^7.5.4"
2494
+ "detect-libc": "^2.0.3",
2495
+ "semver": "^7.6.0"
2553
2496
  },
2554
2497
  "engines": {
2555
- "libvips": ">=8.15.1",
2498
+ "libvips": ">=8.15.2",
2556
2499
  "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
2557
2500
  },
2558
2501
  "funding": {
2559
2502
  "url": "https://opencollective.com/libvips"
2560
2503
  },
2561
2504
  "optionalDependencies": {
2562
- "@img/sharp-darwin-arm64": "0.33.2",
2563
- "@img/sharp-darwin-x64": "0.33.2",
2564
- "@img/sharp-libvips-darwin-arm64": "1.0.1",
2565
- "@img/sharp-libvips-darwin-x64": "1.0.1",
2566
- "@img/sharp-libvips-linux-arm": "1.0.1",
2567
- "@img/sharp-libvips-linux-arm64": "1.0.1",
2568
- "@img/sharp-libvips-linux-s390x": "1.0.1",
2569
- "@img/sharp-libvips-linux-x64": "1.0.1",
2570
- "@img/sharp-libvips-linuxmusl-arm64": "1.0.1",
2571
- "@img/sharp-libvips-linuxmusl-x64": "1.0.1",
2572
- "@img/sharp-linux-arm": "0.33.2",
2573
- "@img/sharp-linux-arm64": "0.33.2",
2574
- "@img/sharp-linux-s390x": "0.33.2",
2575
- "@img/sharp-linux-x64": "0.33.2",
2576
- "@img/sharp-linuxmusl-arm64": "0.33.2",
2577
- "@img/sharp-linuxmusl-x64": "0.33.2",
2578
- "@img/sharp-wasm32": "0.33.2",
2579
- "@img/sharp-win32-ia32": "0.33.2",
2580
- "@img/sharp-win32-x64": "0.33.2"
2505
+ "@img/sharp-darwin-arm64": "0.33.3",
2506
+ "@img/sharp-darwin-x64": "0.33.3",
2507
+ "@img/sharp-libvips-darwin-arm64": "1.0.2",
2508
+ "@img/sharp-libvips-darwin-x64": "1.0.2",
2509
+ "@img/sharp-libvips-linux-arm": "1.0.2",
2510
+ "@img/sharp-libvips-linux-arm64": "1.0.2",
2511
+ "@img/sharp-libvips-linux-s390x": "1.0.2",
2512
+ "@img/sharp-libvips-linux-x64": "1.0.2",
2513
+ "@img/sharp-libvips-linuxmusl-arm64": "1.0.2",
2514
+ "@img/sharp-libvips-linuxmusl-x64": "1.0.2",
2515
+ "@img/sharp-linux-arm": "0.33.3",
2516
+ "@img/sharp-linux-arm64": "0.33.3",
2517
+ "@img/sharp-linux-s390x": "0.33.3",
2518
+ "@img/sharp-linux-x64": "0.33.3",
2519
+ "@img/sharp-linuxmusl-arm64": "0.33.3",
2520
+ "@img/sharp-linuxmusl-x64": "0.33.3",
2521
+ "@img/sharp-wasm32": "0.33.3",
2522
+ "@img/sharp-win32-ia32": "0.33.3",
2523
+ "@img/sharp-win32-x64": "0.33.3"
2581
2524
  }
2582
2525
  },
2583
2526
  "node_modules/shebang-command": {
@@ -2905,9 +2848,9 @@
2905
2848
  }
2906
2849
  },
2907
2850
  "node_modules/typescript": {
2908
- "version": "5.4.2",
2909
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.2.tgz",
2910
- "integrity": "sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==",
2851
+ "version": "5.4.5",
2852
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz",
2853
+ "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==",
2911
2854
  "bin": {
2912
2855
  "tsc": "bin/tsc",
2913
2856
  "tsserver": "bin/tsserver"
@@ -3149,14 +3092,10 @@
3149
3092
  "node": ">=10"
3150
3093
  }
3151
3094
  },
3152
- "node_modules/yaml": {
3153
- "version": "2.3.4",
3154
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz",
3155
- "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==",
3156
- "extraneous": true,
3157
- "engines": {
3158
- "node": ">= 14"
3159
- }
3095
+ "node_modules/yallist": {
3096
+ "version": "4.0.0",
3097
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
3098
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
3160
3099
  },
3161
3100
  "node_modules/yargs": {
3162
3101
  "version": "17.7.2",
@@ -3215,12 +3154,23 @@
3215
3154
  }
3216
3155
  },
3217
3156
  "node_modules/yauzl": {
3218
- "version": "2.10.0",
3219
- "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
3220
- "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
3157
+ "version": "3.1.2",
3158
+ "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-3.1.2.tgz",
3159
+ "integrity": "sha512-621iCPgEG1wXViDZS/L3h9F8TgrdQV1eayJlJ8j5A2SZg8OdY/1DLf+VxNeD+q5QbMFEAbjjR8nITj7g4nKa0Q==",
3221
3160
  "dependencies": {
3222
3161
  "buffer-crc32": "~0.2.3",
3223
- "fd-slicer": "~1.1.0"
3162
+ "pend": "~1.2.0"
3163
+ },
3164
+ "engines": {
3165
+ "node": ">=12"
3166
+ }
3167
+ },
3168
+ "node_modules/yauzl/node_modules/buffer-crc32": {
3169
+ "version": "0.2.13",
3170
+ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
3171
+ "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
3172
+ "engines": {
3173
+ "node": "*"
3224
3174
  }
3225
3175
  },
3226
3176
  "node_modules/yn": {
@@ -3244,16 +3194,16 @@
3244
3194
  }
3245
3195
  },
3246
3196
  "node_modules/zip-stream": {
3247
- "version": "5.0.2",
3248
- "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-5.0.2.tgz",
3249
- "integrity": "sha512-LfOdrUvPB8ZoXtvOBz6DlNClfvi//b5d56mSWyJi7XbH/HfhOHfUhOqxhT/rUiR7yiktlunqRo+jY6y/cWC/5g==",
3197
+ "version": "6.0.1",
3198
+ "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-6.0.1.tgz",
3199
+ "integrity": "sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==",
3250
3200
  "dependencies": {
3251
- "archiver-utils": "^4.0.1",
3252
- "compress-commons": "^5.0.1",
3253
- "readable-stream": "^3.6.0"
3201
+ "archiver-utils": "^5.0.0",
3202
+ "compress-commons": "^6.0.2",
3203
+ "readable-stream": "^4.0.0"
3254
3204
  },
3255
3205
  "engines": {
3256
- "node": ">= 12.0.0"
3206
+ "node": ">= 14"
3257
3207
  }
3258
3208
  }
3259
3209
  }
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "mac",
7
7
  "XCTest"
8
8
  ],
9
- "version": "1.11.3",
9
+ "version": "1.13.0",
10
10
  "author": "Appium Contributors",
11
11
  "license": "Apache-2.0",
12
12
  "repository": {
@@ -65,16 +65,10 @@
65
65
  "dev": "npm run build -- --watch",
66
66
  "lint": "eslint .",
67
67
  "lint:fix": "npm run lint -- --fix",
68
- "precommit-msg": "echo 'Pre-commit checks...' && exit 0",
69
- "precommit-lint": "lint-staged",
70
68
  "prepare": "npm run rebuild",
71
69
  "test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.js\"",
72
70
  "e2e-test": "mocha --exit --timeout 10m \"./test/functional/**/*-specs.js\""
73
71
  },
74
- "pre-commit": [
75
- "precommit-msg",
76
- "precommit-lint"
77
- ],
78
72
  "peerDependencies": {
79
73
  "appium": "^2.4.1"
80
74
  },
@@ -94,8 +88,6 @@
94
88
  "@types/sinon": "^17.0.0",
95
89
  "@types/sinon-chai": "^3.2.9",
96
90
  "@types/teen_process": "^2.0.2",
97
- "@typescript-eslint/eslint-plugin": "^6.9.0",
98
- "@typescript-eslint/parser": "^6.9.0",
99
91
  "chai": "^4.1.2",
100
92
  "chai-as-promised": "^7.1.1",
101
93
  "conventional-changelog-conventionalcommits": "^7.0.1",
@@ -107,7 +99,6 @@
107
99
  "eslint-plugin-promise": "^6.1.1",
108
100
  "lint-staged": "^15.0.2",
109
101
  "mocha": "^10.0.0",
110
- "pre-commit": "^1.1.3",
111
102
  "semantic-release": "^23.0.0",
112
103
  "sinon": "^17.0.0",
113
104
  "ts-node": "^10.9.1",
@@ -1,12 +0,0 @@
1
-
2
- #import <XCTest/XCTest.h>
3
-
4
- NS_ASSUME_NONNULL_BEGIN
5
-
6
- @interface XCUIApplication (InitPrivateWithPath)
7
-
8
- - (id)initPrivateWithPath:(id)path bundleID:(id)bundleId;
9
-
10
- @end
11
-
12
- NS_ASSUME_NONNULL_END