appium-mac2-driver 1.12.0 → 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 +7 -0
- package/README.md +1 -1
- package/WebDriverAgentMac/WebDriverAgentLib/Commands/FBSessionCommands.m +15 -7
- package/WebDriverAgentMac/WebDriverAgentMac.xcodeproj/project.pbxproj +0 -4
- package/build/lib/driver.d.ts.map +1 -1
- package/npm-shrinkwrap.json +242 -302
- package/package.json +1 -10
- package/WebDriverAgentMac/WebDriverAgentLib/PrivateHeaders/XCTest/XCUIApplication.h +0 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
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
|
+
|
|
1
8
|
## [1.12.0](https://github.com/appium/appium-mac2-driver/compare/v1.11.3...v1.12.0) (2024-03-19)
|
|
2
9
|
|
|
3
10
|
|
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.
|
|
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
|
|
|
@@ -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
|
-
|
|
92
|
-
|
|
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
|
}
|
|
@@ -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 */,
|
|
@@ -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,
|
|
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"}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-mac2-driver",
|
|
3
|
-
"version": "1.
|
|
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.
|
|
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.
|
|
96
|
-
"resolved": "https://registry.npmjs.org/@appium/support/-/support-4.2.
|
|
97
|
-
"integrity": "sha512-
|
|
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.
|
|
100
|
-
"@appium/types": "^0.16.
|
|
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.
|
|
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": "
|
|
119
|
-
"axios": "1.6.
|
|
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.
|
|
123
|
+
"glob": "10.3.12",
|
|
127
124
|
"jsftp": "2.1.3",
|
|
128
125
|
"klaw": "4.1.0",
|
|
129
126
|
"lockfile": "1.0.4",
|
|
@@ -148,37 +145,22 @@
|
|
|
148
145
|
"type-fest": "4.10.1",
|
|
149
146
|
"uuid": "9.0.1",
|
|
150
147
|
"which": "4.0.0",
|
|
151
|
-
"yauzl": "
|
|
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.
|
|
159
|
-
}
|
|
160
|
-
},
|
|
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
|
-
"node_modules/@appium/support/node_modules/axios": {
|
|
167
|
-
"version": "1.6.7",
|
|
168
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz",
|
|
169
|
-
"integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==",
|
|
170
|
-
"dependencies": {
|
|
171
|
-
"follow-redirects": "^1.15.4",
|
|
172
|
-
"form-data": "^4.0.0",
|
|
173
|
-
"proxy-from-env": "^1.1.0"
|
|
155
|
+
"sharp": "0.33.3"
|
|
174
156
|
}
|
|
175
157
|
},
|
|
176
158
|
"node_modules/@appium/tsconfig": {
|
|
177
|
-
"version": "0.3.
|
|
178
|
-
"resolved": "https://registry.npmjs.org/@appium/tsconfig/-/tsconfig-0.3.
|
|
179
|
-
"integrity": "sha512-
|
|
159
|
+
"version": "0.3.3",
|
|
160
|
+
"resolved": "https://registry.npmjs.org/@appium/tsconfig/-/tsconfig-0.3.3.tgz",
|
|
161
|
+
"integrity": "sha512-Lk2M2NWVY2M8SIE1PTDVvj1NEuV4lze8yzPDSmklhkJSPDPrOCx7PkDziyjIycQBXy0ficd5CNwNDvdOD1Ym2w==",
|
|
180
162
|
"dependencies": {
|
|
181
|
-
"@tsconfig/node14": "14.1.
|
|
163
|
+
"@tsconfig/node14": "14.1.2"
|
|
182
164
|
},
|
|
183
165
|
"engines": {
|
|
184
166
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
|
|
@@ -186,12 +168,12 @@
|
|
|
186
168
|
}
|
|
187
169
|
},
|
|
188
170
|
"node_modules/@appium/types": {
|
|
189
|
-
"version": "0.16.
|
|
190
|
-
"resolved": "https://registry.npmjs.org/@appium/types/-/types-0.16.
|
|
191
|
-
"integrity": "sha512-
|
|
171
|
+
"version": "0.16.2",
|
|
172
|
+
"resolved": "https://registry.npmjs.org/@appium/types/-/types-0.16.2.tgz",
|
|
173
|
+
"integrity": "sha512-4LpzS26hfTuK5rAXogotydMFjA0UdWKpQscpsIJKJQ3KGNYNNSQL0fpVcJ6hHHXA2/ySI6DtQeK9+ayUBCUqYg==",
|
|
192
174
|
"dependencies": {
|
|
193
175
|
"@appium/schema": "^0.5.0",
|
|
194
|
-
"@appium/tsconfig": "^0.
|
|
176
|
+
"@appium/tsconfig": "^0.3.3",
|
|
195
177
|
"@types/express": "4.17.21",
|
|
196
178
|
"@types/npmlog": "7.0.0",
|
|
197
179
|
"@types/ws": "8.5.10",
|
|
@@ -203,81 +185,17 @@
|
|
|
203
185
|
}
|
|
204
186
|
},
|
|
205
187
|
"node_modules/@babel/code-frame": {
|
|
206
|
-
"version": "7.
|
|
207
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.
|
|
208
|
-
"integrity": "sha512-
|
|
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==",
|
|
209
191
|
"dependencies": {
|
|
210
|
-
"@babel/highlight": "^7.
|
|
211
|
-
"
|
|
192
|
+
"@babel/highlight": "^7.24.2",
|
|
193
|
+
"picocolors": "^1.0.0"
|
|
212
194
|
},
|
|
213
195
|
"engines": {
|
|
214
196
|
"node": ">=6.9.0"
|
|
215
197
|
}
|
|
216
198
|
},
|
|
217
|
-
"node_modules/@babel/code-frame/node_modules/ansi-styles": {
|
|
218
|
-
"version": "3.2.1",
|
|
219
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
|
|
220
|
-
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
|
|
221
|
-
"dependencies": {
|
|
222
|
-
"color-convert": "^1.9.0"
|
|
223
|
-
},
|
|
224
|
-
"engines": {
|
|
225
|
-
"node": ">=4"
|
|
226
|
-
}
|
|
227
|
-
},
|
|
228
|
-
"node_modules/@babel/code-frame/node_modules/chalk": {
|
|
229
|
-
"version": "2.4.2",
|
|
230
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
|
231
|
-
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
|
232
|
-
"dependencies": {
|
|
233
|
-
"ansi-styles": "^3.2.1",
|
|
234
|
-
"escape-string-regexp": "^1.0.5",
|
|
235
|
-
"supports-color": "^5.3.0"
|
|
236
|
-
},
|
|
237
|
-
"engines": {
|
|
238
|
-
"node": ">=4"
|
|
239
|
-
}
|
|
240
|
-
},
|
|
241
|
-
"node_modules/@babel/code-frame/node_modules/color-convert": {
|
|
242
|
-
"version": "1.9.3",
|
|
243
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
|
|
244
|
-
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
|
|
245
|
-
"dependencies": {
|
|
246
|
-
"color-name": "1.1.3"
|
|
247
|
-
}
|
|
248
|
-
},
|
|
249
|
-
"node_modules/@babel/code-frame/node_modules/color-name": {
|
|
250
|
-
"version": "1.1.3",
|
|
251
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
|
|
252
|
-
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
|
|
253
|
-
},
|
|
254
|
-
"node_modules/@babel/code-frame/node_modules/escape-string-regexp": {
|
|
255
|
-
"version": "1.0.5",
|
|
256
|
-
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
|
257
|
-
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
|
|
258
|
-
"engines": {
|
|
259
|
-
"node": ">=0.8.0"
|
|
260
|
-
}
|
|
261
|
-
},
|
|
262
|
-
"node_modules/@babel/code-frame/node_modules/has-flag": {
|
|
263
|
-
"version": "3.0.0",
|
|
264
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
|
|
265
|
-
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
|
|
266
|
-
"engines": {
|
|
267
|
-
"node": ">=4"
|
|
268
|
-
}
|
|
269
|
-
},
|
|
270
|
-
"node_modules/@babel/code-frame/node_modules/supports-color": {
|
|
271
|
-
"version": "5.5.0",
|
|
272
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
|
|
273
|
-
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
|
|
274
|
-
"dependencies": {
|
|
275
|
-
"has-flag": "^3.0.0"
|
|
276
|
-
},
|
|
277
|
-
"engines": {
|
|
278
|
-
"node": ">=4"
|
|
279
|
-
}
|
|
280
|
-
},
|
|
281
199
|
"node_modules/@babel/helper-validator-identifier": {
|
|
282
200
|
"version": "7.22.20",
|
|
283
201
|
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
|
|
@@ -287,13 +205,14 @@
|
|
|
287
205
|
}
|
|
288
206
|
},
|
|
289
207
|
"node_modules/@babel/highlight": {
|
|
290
|
-
"version": "7.
|
|
291
|
-
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.
|
|
292
|
-
"integrity": "sha512-
|
|
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==",
|
|
293
211
|
"dependencies": {
|
|
294
212
|
"@babel/helper-validator-identifier": "^7.22.20",
|
|
295
213
|
"chalk": "^2.4.2",
|
|
296
|
-
"js-tokens": "^4.0.0"
|
|
214
|
+
"js-tokens": "^4.0.0",
|
|
215
|
+
"picocolors": "^1.0.0"
|
|
297
216
|
},
|
|
298
217
|
"engines": {
|
|
299
218
|
"node": ">=6.9.0"
|
|
@@ -372,9 +291,9 @@
|
|
|
372
291
|
}
|
|
373
292
|
},
|
|
374
293
|
"node_modules/@img/sharp-darwin-x64": {
|
|
375
|
-
"version": "0.33.
|
|
376
|
-
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.
|
|
377
|
-
"integrity": "sha512
|
|
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==",
|
|
378
297
|
"cpu": [
|
|
379
298
|
"x64"
|
|
380
299
|
],
|
|
@@ -393,13 +312,13 @@
|
|
|
393
312
|
"url": "https://opencollective.com/libvips"
|
|
394
313
|
},
|
|
395
314
|
"optionalDependencies": {
|
|
396
|
-
"@img/sharp-libvips-darwin-x64": "1.0.
|
|
315
|
+
"@img/sharp-libvips-darwin-x64": "1.0.2"
|
|
397
316
|
}
|
|
398
317
|
},
|
|
399
318
|
"node_modules/@img/sharp-libvips-darwin-x64": {
|
|
400
|
-
"version": "1.0.
|
|
401
|
-
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.
|
|
402
|
-
"integrity": "sha512-
|
|
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==",
|
|
403
322
|
"cpu": [
|
|
404
323
|
"x64"
|
|
405
324
|
],
|
|
@@ -495,9 +414,9 @@
|
|
|
495
414
|
}
|
|
496
415
|
},
|
|
497
416
|
"node_modules/@tsconfig/node14": {
|
|
498
|
-
"version": "14.1.
|
|
499
|
-
"resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-14.1.
|
|
500
|
-
"integrity": "sha512-
|
|
417
|
+
"version": "14.1.2",
|
|
418
|
+
"resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-14.1.2.tgz",
|
|
419
|
+
"integrity": "sha512-1vncsbfCZ3TBLPxesRYz02Rn7SNJfbLoDVkcZ7F/ixOV6nwxwgdhD1mdPcc5YQ413qBJ8CvMxXMFfJ7oawjo7Q=="
|
|
501
420
|
},
|
|
502
421
|
"node_modules/@types/archiver": {
|
|
503
422
|
"version": "6.0.2",
|
|
@@ -549,9 +468,9 @@
|
|
|
549
468
|
}
|
|
550
469
|
},
|
|
551
470
|
"node_modules/@types/express-serve-static-core": {
|
|
552
|
-
"version": "4.
|
|
553
|
-
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.
|
|
554
|
-
"integrity": "sha512-
|
|
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==",
|
|
555
474
|
"dependencies": {
|
|
556
475
|
"@types/node": "*",
|
|
557
476
|
"@types/qs": "*",
|
|
@@ -619,9 +538,9 @@
|
|
|
619
538
|
}
|
|
620
539
|
},
|
|
621
540
|
"node_modules/@types/node": {
|
|
622
|
-
"version": "20.
|
|
623
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.
|
|
624
|
-
"integrity": "sha512-
|
|
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==",
|
|
625
544
|
"dependencies": {
|
|
626
545
|
"undici-types": "~5.26.4"
|
|
627
546
|
}
|
|
@@ -645,9 +564,9 @@
|
|
|
645
564
|
"integrity": "sha512-JOqsl+ZoCpP4e8TDke9W79FDcSgPAR0l6pixx2JHkhnRjvShyYiAYw2LVsnA7K08Y6DeOnaU6ujmENO4os/cYg=="
|
|
646
565
|
},
|
|
647
566
|
"node_modules/@types/qs": {
|
|
648
|
-
"version": "6.9.
|
|
649
|
-
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.
|
|
650
|
-
"integrity": "sha512-
|
|
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=="
|
|
651
570
|
},
|
|
652
571
|
"node_modules/@types/range-parser": {
|
|
653
572
|
"version": "1.2.7",
|
|
@@ -662,6 +581,11 @@
|
|
|
662
581
|
"@types/node": "*"
|
|
663
582
|
}
|
|
664
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
|
+
},
|
|
665
589
|
"node_modules/@types/send": {
|
|
666
590
|
"version": "0.17.4",
|
|
667
591
|
"resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz",
|
|
@@ -672,13 +596,13 @@
|
|
|
672
596
|
}
|
|
673
597
|
},
|
|
674
598
|
"node_modules/@types/serve-static": {
|
|
675
|
-
"version": "1.15.
|
|
676
|
-
"resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.
|
|
677
|
-
"integrity": "sha512-
|
|
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==",
|
|
678
602
|
"dependencies": {
|
|
679
603
|
"@types/http-errors": "*",
|
|
680
|
-
"@types/
|
|
681
|
-
"@types/
|
|
604
|
+
"@types/node": "*",
|
|
605
|
+
"@types/send": "*"
|
|
682
606
|
}
|
|
683
607
|
},
|
|
684
608
|
"node_modules/@types/shell-quote": {
|
|
@@ -725,6 +649,17 @@
|
|
|
725
649
|
"node": ">=10.0.0"
|
|
726
650
|
}
|
|
727
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
|
+
},
|
|
728
663
|
"node_modules/ansi-regex": {
|
|
729
664
|
"version": "5.0.1",
|
|
730
665
|
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
@@ -748,9 +683,9 @@
|
|
|
748
683
|
}
|
|
749
684
|
},
|
|
750
685
|
"node_modules/appium-xcode": {
|
|
751
|
-
"version": "5.2.
|
|
752
|
-
"resolved": "https://registry.npmjs.org/appium-xcode/-/appium-xcode-5.2.
|
|
753
|
-
"integrity": "sha512-
|
|
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==",
|
|
754
689
|
"dependencies": {
|
|
755
690
|
"@appium/support": "^4.0.0",
|
|
756
691
|
"@types/lodash": "^4.14.192",
|
|
@@ -774,65 +709,37 @@
|
|
|
774
709
|
"integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="
|
|
775
710
|
},
|
|
776
711
|
"node_modules/archiver": {
|
|
777
|
-
"version": "
|
|
778
|
-
"resolved": "https://registry.npmjs.org/archiver/-/archiver-
|
|
779
|
-
"integrity": "sha512-
|
|
712
|
+
"version": "7.0.1",
|
|
713
|
+
"resolved": "https://registry.npmjs.org/archiver/-/archiver-7.0.1.tgz",
|
|
714
|
+
"integrity": "sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==",
|
|
780
715
|
"dependencies": {
|
|
781
|
-
"archiver-utils": "^
|
|
716
|
+
"archiver-utils": "^5.0.2",
|
|
782
717
|
"async": "^3.2.4",
|
|
783
|
-
"buffer-crc32": "^0.
|
|
784
|
-
"readable-stream": "^
|
|
718
|
+
"buffer-crc32": "^1.0.0",
|
|
719
|
+
"readable-stream": "^4.0.0",
|
|
785
720
|
"readdir-glob": "^1.1.2",
|
|
786
721
|
"tar-stream": "^3.0.0",
|
|
787
|
-
"zip-stream": "^
|
|
722
|
+
"zip-stream": "^6.0.1"
|
|
788
723
|
},
|
|
789
724
|
"engines": {
|
|
790
|
-
"node": ">=
|
|
725
|
+
"node": ">= 14"
|
|
791
726
|
}
|
|
792
727
|
},
|
|
793
728
|
"node_modules/archiver-utils": {
|
|
794
|
-
"version": "
|
|
795
|
-
"resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-
|
|
796
|
-
"integrity": "sha512-
|
|
729
|
+
"version": "5.0.2",
|
|
730
|
+
"resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-5.0.2.tgz",
|
|
731
|
+
"integrity": "sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==",
|
|
797
732
|
"dependencies": {
|
|
798
|
-
"glob": "^
|
|
733
|
+
"glob": "^10.0.0",
|
|
799
734
|
"graceful-fs": "^4.2.0",
|
|
735
|
+
"is-stream": "^2.0.1",
|
|
800
736
|
"lazystream": "^1.0.0",
|
|
801
737
|
"lodash": "^4.17.15",
|
|
802
738
|
"normalize-path": "^3.0.0",
|
|
803
|
-
"readable-stream": "^
|
|
804
|
-
},
|
|
805
|
-
"engines": {
|
|
806
|
-
"node": ">= 12.0.0"
|
|
807
|
-
}
|
|
808
|
-
},
|
|
809
|
-
"node_modules/archiver-utils/node_modules/glob": {
|
|
810
|
-
"version": "8.1.0",
|
|
811
|
-
"resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz",
|
|
812
|
-
"integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==",
|
|
813
|
-
"dependencies": {
|
|
814
|
-
"fs.realpath": "^1.0.0",
|
|
815
|
-
"inflight": "^1.0.4",
|
|
816
|
-
"inherits": "2",
|
|
817
|
-
"minimatch": "^5.0.1",
|
|
818
|
-
"once": "^1.3.0"
|
|
819
|
-
},
|
|
820
|
-
"engines": {
|
|
821
|
-
"node": ">=12"
|
|
822
|
-
},
|
|
823
|
-
"funding": {
|
|
824
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
825
|
-
}
|
|
826
|
-
},
|
|
827
|
-
"node_modules/archiver-utils/node_modules/minimatch": {
|
|
828
|
-
"version": "5.1.6",
|
|
829
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
|
|
830
|
-
"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
|
|
831
|
-
"dependencies": {
|
|
832
|
-
"brace-expansion": "^2.0.1"
|
|
739
|
+
"readable-stream": "^4.0.0"
|
|
833
740
|
},
|
|
834
741
|
"engines": {
|
|
835
|
-
"node": ">=
|
|
742
|
+
"node": ">= 14"
|
|
836
743
|
}
|
|
837
744
|
},
|
|
838
745
|
"node_modules/are-we-there-yet": {
|
|
@@ -899,9 +806,9 @@
|
|
|
899
806
|
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
|
|
900
807
|
},
|
|
901
808
|
"node_modules/bare-events": {
|
|
902
|
-
"version": "2.2.
|
|
903
|
-
"resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.2.
|
|
904
|
-
"integrity": "sha512-
|
|
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==",
|
|
905
812
|
"optional": true
|
|
906
813
|
},
|
|
907
814
|
"node_modules/base64-js": {
|
|
@@ -993,11 +900,11 @@
|
|
|
993
900
|
}
|
|
994
901
|
},
|
|
995
902
|
"node_modules/buffer-crc32": {
|
|
996
|
-
"version": "0.
|
|
997
|
-
"resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.
|
|
998
|
-
"integrity": "sha512-
|
|
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==",
|
|
999
906
|
"engines": {
|
|
1000
|
-
"node": "
|
|
907
|
+
"node": ">=8.0.0"
|
|
1001
908
|
}
|
|
1002
909
|
},
|
|
1003
910
|
"node_modules/buffer-from": {
|
|
@@ -1151,17 +1058,18 @@
|
|
|
1151
1058
|
}
|
|
1152
1059
|
},
|
|
1153
1060
|
"node_modules/compress-commons": {
|
|
1154
|
-
"version": "
|
|
1155
|
-
"resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-
|
|
1156
|
-
"integrity": "sha512
|
|
1061
|
+
"version": "6.0.2",
|
|
1062
|
+
"resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-6.0.2.tgz",
|
|
1063
|
+
"integrity": "sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==",
|
|
1157
1064
|
"dependencies": {
|
|
1158
1065
|
"crc-32": "^1.2.0",
|
|
1159
|
-
"crc32-stream": "^
|
|
1066
|
+
"crc32-stream": "^6.0.0",
|
|
1067
|
+
"is-stream": "^2.0.1",
|
|
1160
1068
|
"normalize-path": "^3.0.0",
|
|
1161
|
-
"readable-stream": "^
|
|
1069
|
+
"readable-stream": "^4.0.0"
|
|
1162
1070
|
},
|
|
1163
1071
|
"engines": {
|
|
1164
|
-
"node": ">=
|
|
1072
|
+
"node": ">= 14"
|
|
1165
1073
|
}
|
|
1166
1074
|
},
|
|
1167
1075
|
"node_modules/concat-map": {
|
|
@@ -1191,15 +1099,15 @@
|
|
|
1191
1099
|
}
|
|
1192
1100
|
},
|
|
1193
1101
|
"node_modules/crc32-stream": {
|
|
1194
|
-
"version": "
|
|
1195
|
-
"resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-
|
|
1196
|
-
"integrity": "sha512-
|
|
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==",
|
|
1197
1105
|
"dependencies": {
|
|
1198
1106
|
"crc-32": "^1.2.0",
|
|
1199
|
-
"readable-stream": "^
|
|
1107
|
+
"readable-stream": "^4.0.0"
|
|
1200
1108
|
},
|
|
1201
1109
|
"engines": {
|
|
1202
|
-
"node": ">=
|
|
1110
|
+
"node": ">= 14"
|
|
1203
1111
|
}
|
|
1204
1112
|
},
|
|
1205
1113
|
"node_modules/create-require": {
|
|
@@ -1283,9 +1191,9 @@
|
|
|
1283
1191
|
}
|
|
1284
1192
|
},
|
|
1285
1193
|
"node_modules/detect-libc": {
|
|
1286
|
-
"version": "2.0.
|
|
1287
|
-
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.
|
|
1288
|
-
"integrity": "sha512-
|
|
1194
|
+
"version": "2.0.3",
|
|
1195
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
|
|
1196
|
+
"integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
|
|
1289
1197
|
"optional": true,
|
|
1290
1198
|
"engines": {
|
|
1291
1199
|
"node": ">=8"
|
|
@@ -1361,6 +1269,22 @@
|
|
|
1361
1269
|
"node": ">=6"
|
|
1362
1270
|
}
|
|
1363
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
|
+
},
|
|
1364
1288
|
"node_modules/fast-deep-equal": {
|
|
1365
1289
|
"version": "3.1.3",
|
|
1366
1290
|
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
@@ -1372,14 +1296,6 @@
|
|
|
1372
1296
|
"resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz",
|
|
1373
1297
|
"integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ=="
|
|
1374
1298
|
},
|
|
1375
|
-
"node_modules/fd-slicer": {
|
|
1376
|
-
"version": "1.1.0",
|
|
1377
|
-
"resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
|
|
1378
|
-
"integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
|
|
1379
|
-
"dependencies": {
|
|
1380
|
-
"pend": "~1.2.0"
|
|
1381
|
-
}
|
|
1382
|
-
},
|
|
1383
1299
|
"node_modules/find-up": {
|
|
1384
1300
|
"version": "5.0.0",
|
|
1385
1301
|
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
|
|
@@ -1453,11 +1369,6 @@
|
|
|
1453
1369
|
"node": ">= 6"
|
|
1454
1370
|
}
|
|
1455
1371
|
},
|
|
1456
|
-
"node_modules/fs.realpath": {
|
|
1457
|
-
"version": "1.0.0",
|
|
1458
|
-
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
|
1459
|
-
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
|
|
1460
|
-
},
|
|
1461
1372
|
"node_modules/ftp-response-parser": {
|
|
1462
1373
|
"version": "1.0.1",
|
|
1463
1374
|
"resolved": "https://registry.npmjs.org/ftp-response-parser/-/ftp-response-parser-1.0.1.tgz",
|
|
@@ -1593,15 +1504,15 @@
|
|
|
1593
1504
|
}
|
|
1594
1505
|
},
|
|
1595
1506
|
"node_modules/glob": {
|
|
1596
|
-
"version": "10.3.
|
|
1597
|
-
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.
|
|
1598
|
-
"integrity": "sha512-
|
|
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==",
|
|
1599
1510
|
"dependencies": {
|
|
1600
1511
|
"foreground-child": "^3.1.0",
|
|
1601
|
-
"jackspeak": "^2.3.
|
|
1512
|
+
"jackspeak": "^2.3.6",
|
|
1602
1513
|
"minimatch": "^9.0.1",
|
|
1603
|
-
"minipass": "^
|
|
1604
|
-
"path-scurry": "^1.10.
|
|
1514
|
+
"minipass": "^7.0.4",
|
|
1515
|
+
"path-scurry": "^1.10.2"
|
|
1605
1516
|
},
|
|
1606
1517
|
"bin": {
|
|
1607
1518
|
"glob": "dist/esm/bin.mjs"
|
|
@@ -1699,7 +1610,6 @@
|
|
|
1699
1610
|
"version": "1.2.1",
|
|
1700
1611
|
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
|
1701
1612
|
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
|
1702
|
-
"extraneous": true,
|
|
1703
1613
|
"funding": [
|
|
1704
1614
|
{
|
|
1705
1615
|
"type": "github",
|
|
@@ -1757,7 +1667,6 @@
|
|
|
1757
1667
|
"version": "2.0.1",
|
|
1758
1668
|
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
|
|
1759
1669
|
"integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
|
|
1760
|
-
"extraneous": true,
|
|
1761
1670
|
"engines": {
|
|
1762
1671
|
"node": ">=8"
|
|
1763
1672
|
},
|
|
@@ -1891,15 +1800,6 @@
|
|
|
1891
1800
|
"safe-buffer": "~5.1.0"
|
|
1892
1801
|
}
|
|
1893
1802
|
},
|
|
1894
|
-
"node_modules/lilconfig": {
|
|
1895
|
-
"version": "3.0.0",
|
|
1896
|
-
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz",
|
|
1897
|
-
"integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==",
|
|
1898
|
-
"extraneous": true,
|
|
1899
|
-
"engines": {
|
|
1900
|
-
"node": ">=14"
|
|
1901
|
-
}
|
|
1902
|
-
},
|
|
1903
1803
|
"node_modules/lines-and-columns": {
|
|
1904
1804
|
"version": "1.2.4",
|
|
1905
1805
|
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
|
|
@@ -2001,9 +1901,9 @@
|
|
|
2001
1901
|
}
|
|
2002
1902
|
},
|
|
2003
1903
|
"node_modules/minimatch": {
|
|
2004
|
-
"version": "9.0.
|
|
2005
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.
|
|
2006
|
-
"integrity": "sha512-
|
|
1904
|
+
"version": "9.0.4",
|
|
1905
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
|
|
1906
|
+
"integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
|
|
2007
1907
|
"dependencies": {
|
|
2008
1908
|
"brace-expansion": "^2.0.1"
|
|
2009
1909
|
},
|
|
@@ -2282,11 +2182,11 @@
|
|
|
2282
2182
|
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
|
|
2283
2183
|
},
|
|
2284
2184
|
"node_modules/path-scurry": {
|
|
2285
|
-
"version": "1.10.
|
|
2286
|
-
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.
|
|
2287
|
-
"integrity": "sha512-
|
|
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==",
|
|
2288
2188
|
"dependencies": {
|
|
2289
|
-
"lru-cache": "^
|
|
2189
|
+
"lru-cache": "^10.2.0",
|
|
2290
2190
|
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
|
|
2291
2191
|
},
|
|
2292
2192
|
"engines": {
|
|
@@ -2297,9 +2197,9 @@
|
|
|
2297
2197
|
}
|
|
2298
2198
|
},
|
|
2299
2199
|
"node_modules/path-to-regexp": {
|
|
2300
|
-
"version": "6.2.
|
|
2301
|
-
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.
|
|
2302
|
-
"integrity": "sha512-
|
|
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==",
|
|
2303
2203
|
"extraneous": true
|
|
2304
2204
|
},
|
|
2305
2205
|
"node_modules/pend": {
|
|
@@ -2307,6 +2207,11 @@
|
|
|
2307
2207
|
"resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
|
|
2308
2208
|
"integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg=="
|
|
2309
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
|
+
},
|
|
2310
2215
|
"node_modules/pkg-dir": {
|
|
2311
2216
|
"version": "5.0.0",
|
|
2312
2217
|
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz",
|
|
@@ -2360,6 +2265,14 @@
|
|
|
2360
2265
|
"lodash": "^4.17.14"
|
|
2361
2266
|
}
|
|
2362
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
|
+
},
|
|
2363
2276
|
"node_modules/process-nextick-args": {
|
|
2364
2277
|
"version": "2.0.1",
|
|
2365
2278
|
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
|
|
@@ -2407,16 +2320,41 @@
|
|
|
2407
2320
|
}
|
|
2408
2321
|
},
|
|
2409
2322
|
"node_modules/readable-stream": {
|
|
2410
|
-
"version": "
|
|
2411
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-
|
|
2412
|
-
"integrity": "sha512-
|
|
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==",
|
|
2413
2326
|
"dependencies": {
|
|
2414
|
-
"
|
|
2415
|
-
"
|
|
2416
|
-
"
|
|
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"
|
|
2417
2332
|
},
|
|
2418
2333
|
"engines": {
|
|
2419
|
-
"node": ">=
|
|
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"
|
|
2420
2358
|
}
|
|
2421
2359
|
},
|
|
2422
2360
|
"node_modules/readdir-glob": {
|
|
@@ -2523,11 +2461,6 @@
|
|
|
2523
2461
|
"node": ">=10"
|
|
2524
2462
|
}
|
|
2525
2463
|
},
|
|
2526
|
-
"node_modules/semver/node_modules/yallist": {
|
|
2527
|
-
"version": "4.0.0",
|
|
2528
|
-
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
|
2529
|
-
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
|
2530
|
-
},
|
|
2531
2464
|
"node_modules/set-blocking": {
|
|
2532
2465
|
"version": "2.0.0",
|
|
2533
2466
|
"resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
|
|
@@ -2551,43 +2484,43 @@
|
|
|
2551
2484
|
}
|
|
2552
2485
|
},
|
|
2553
2486
|
"node_modules/sharp": {
|
|
2554
|
-
"version": "0.33.
|
|
2555
|
-
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.
|
|
2556
|
-
"integrity": "sha512-
|
|
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==",
|
|
2557
2490
|
"hasInstallScript": true,
|
|
2558
2491
|
"optional": true,
|
|
2559
2492
|
"dependencies": {
|
|
2560
2493
|
"color": "^4.2.3",
|
|
2561
|
-
"detect-libc": "^2.0.
|
|
2562
|
-
"semver": "^7.
|
|
2494
|
+
"detect-libc": "^2.0.3",
|
|
2495
|
+
"semver": "^7.6.0"
|
|
2563
2496
|
},
|
|
2564
2497
|
"engines": {
|
|
2565
|
-
"libvips": ">=8.15.
|
|
2498
|
+
"libvips": ">=8.15.2",
|
|
2566
2499
|
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2567
2500
|
},
|
|
2568
2501
|
"funding": {
|
|
2569
2502
|
"url": "https://opencollective.com/libvips"
|
|
2570
2503
|
},
|
|
2571
2504
|
"optionalDependencies": {
|
|
2572
|
-
"@img/sharp-darwin-arm64": "0.33.
|
|
2573
|
-
"@img/sharp-darwin-x64": "0.33.
|
|
2574
|
-
"@img/sharp-libvips-darwin-arm64": "1.0.
|
|
2575
|
-
"@img/sharp-libvips-darwin-x64": "1.0.
|
|
2576
|
-
"@img/sharp-libvips-linux-arm": "1.0.
|
|
2577
|
-
"@img/sharp-libvips-linux-arm64": "1.0.
|
|
2578
|
-
"@img/sharp-libvips-linux-s390x": "1.0.
|
|
2579
|
-
"@img/sharp-libvips-linux-x64": "1.0.
|
|
2580
|
-
"@img/sharp-libvips-linuxmusl-arm64": "1.0.
|
|
2581
|
-
"@img/sharp-libvips-linuxmusl-x64": "1.0.
|
|
2582
|
-
"@img/sharp-linux-arm": "0.33.
|
|
2583
|
-
"@img/sharp-linux-arm64": "0.33.
|
|
2584
|
-
"@img/sharp-linux-s390x": "0.33.
|
|
2585
|
-
"@img/sharp-linux-x64": "0.33.
|
|
2586
|
-
"@img/sharp-linuxmusl-arm64": "0.33.
|
|
2587
|
-
"@img/sharp-linuxmusl-x64": "0.33.
|
|
2588
|
-
"@img/sharp-wasm32": "0.33.
|
|
2589
|
-
"@img/sharp-win32-ia32": "0.33.
|
|
2590
|
-
"@img/sharp-win32-x64": "0.33.
|
|
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"
|
|
2591
2524
|
}
|
|
2592
2525
|
},
|
|
2593
2526
|
"node_modules/shebang-command": {
|
|
@@ -2915,9 +2848,9 @@
|
|
|
2915
2848
|
}
|
|
2916
2849
|
},
|
|
2917
2850
|
"node_modules/typescript": {
|
|
2918
|
-
"version": "5.4.
|
|
2919
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.
|
|
2920
|
-
"integrity": "sha512
|
|
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==",
|
|
2921
2854
|
"bin": {
|
|
2922
2855
|
"tsc": "bin/tsc",
|
|
2923
2856
|
"tsserver": "bin/tsserver"
|
|
@@ -3159,14 +3092,10 @@
|
|
|
3159
3092
|
"node": ">=10"
|
|
3160
3093
|
}
|
|
3161
3094
|
},
|
|
3162
|
-
"node_modules/
|
|
3163
|
-
"version": "
|
|
3164
|
-
"resolved": "https://registry.npmjs.org/
|
|
3165
|
-
"integrity": "sha512-
|
|
3166
|
-
"extraneous": true,
|
|
3167
|
-
"engines": {
|
|
3168
|
-
"node": ">= 14"
|
|
3169
|
-
}
|
|
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=="
|
|
3170
3099
|
},
|
|
3171
3100
|
"node_modules/yargs": {
|
|
3172
3101
|
"version": "17.7.2",
|
|
@@ -3225,12 +3154,23 @@
|
|
|
3225
3154
|
}
|
|
3226
3155
|
},
|
|
3227
3156
|
"node_modules/yauzl": {
|
|
3228
|
-
"version": "
|
|
3229
|
-
"resolved": "https://registry.npmjs.org/yauzl/-/yauzl-
|
|
3230
|
-
"integrity": "sha512-
|
|
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==",
|
|
3231
3160
|
"dependencies": {
|
|
3232
3161
|
"buffer-crc32": "~0.2.3",
|
|
3233
|
-
"
|
|
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": "*"
|
|
3234
3174
|
}
|
|
3235
3175
|
},
|
|
3236
3176
|
"node_modules/yn": {
|
|
@@ -3254,16 +3194,16 @@
|
|
|
3254
3194
|
}
|
|
3255
3195
|
},
|
|
3256
3196
|
"node_modules/zip-stream": {
|
|
3257
|
-
"version": "
|
|
3258
|
-
"resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-
|
|
3259
|
-
"integrity": "sha512-
|
|
3197
|
+
"version": "6.0.1",
|
|
3198
|
+
"resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-6.0.1.tgz",
|
|
3199
|
+
"integrity": "sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==",
|
|
3260
3200
|
"dependencies": {
|
|
3261
|
-
"archiver-utils": "^
|
|
3262
|
-
"compress-commons": "^
|
|
3263
|
-
"readable-stream": "^
|
|
3201
|
+
"archiver-utils": "^5.0.0",
|
|
3202
|
+
"compress-commons": "^6.0.2",
|
|
3203
|
+
"readable-stream": "^4.0.0"
|
|
3264
3204
|
},
|
|
3265
3205
|
"engines": {
|
|
3266
|
-
"node": ">=
|
|
3206
|
+
"node": ">= 14"
|
|
3267
3207
|
}
|
|
3268
3208
|
}
|
|
3269
3209
|
}
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"mac",
|
|
7
7
|
"XCTest"
|
|
8
8
|
],
|
|
9
|
-
"version": "1.
|
|
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",
|