appium-uiautomator2-driver 2.29.11 → 2.30.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.
Files changed (135) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/build/index.d.ts +4 -0
  3. package/build/index.d.ts.map +1 -0
  4. package/build/index.js +8 -15
  5. package/build/index.js.map +1 -0
  6. package/build/lib/commands/actions.d.ts +2 -0
  7. package/build/lib/commands/actions.d.ts.map +1 -0
  8. package/build/lib/commands/actions.js +67 -62
  9. package/build/lib/commands/actions.js.map +1 -1
  10. package/build/lib/commands/alert.d.ts +2 -0
  11. package/build/lib/commands/alert.d.ts.map +1 -0
  12. package/build/lib/commands/alert.js +28 -26
  13. package/build/lib/commands/alert.js.map +1 -1
  14. package/build/lib/commands/app-strings.d.ts +3 -0
  15. package/build/lib/commands/app-strings.d.ts.map +1 -0
  16. package/build/lib/commands/app-strings.js +86 -57
  17. package/build/lib/commands/app-strings.js.map +1 -1
  18. package/build/lib/commands/battery.d.ts +2 -0
  19. package/build/lib/commands/battery.d.ts.map +1 -0
  20. package/build/lib/commands/battery.js +26 -16
  21. package/build/lib/commands/battery.js.map +1 -1
  22. package/build/lib/commands/element.d.ts +2 -0
  23. package/build/lib/commands/element.d.ts.map +1 -0
  24. package/build/lib/commands/element.js +140 -159
  25. package/build/lib/commands/element.js.map +1 -1
  26. package/build/lib/commands/find.d.ts +2 -0
  27. package/build/lib/commands/find.d.ts.map +1 -0
  28. package/build/lib/commands/find.js +39 -25
  29. package/build/lib/commands/find.js.map +1 -1
  30. package/build/lib/commands/general.d.ts +4 -0
  31. package/build/lib/commands/general.d.ts.map +1 -0
  32. package/build/lib/commands/general.js +217 -215
  33. package/build/lib/commands/general.js.map +1 -1
  34. package/build/lib/commands/gestures.d.ts +2 -0
  35. package/build/lib/commands/gestures.d.ts.map +1 -0
  36. package/build/lib/commands/gestures.js +206 -193
  37. package/build/lib/commands/gestures.js.map +1 -1
  38. package/build/lib/commands/index.d.ts +2 -0
  39. package/build/lib/commands/index.d.ts.map +1 -0
  40. package/build/lib/commands/index.js +13 -22
  41. package/build/lib/commands/index.js.map +1 -1
  42. package/build/lib/commands/mixins.d.ts +84 -0
  43. package/build/lib/commands/mixins.d.ts.map +1 -0
  44. package/build/lib/commands/mixins.js +23 -0
  45. package/build/lib/commands/mixins.js.map +1 -0
  46. package/build/lib/commands/screenshot.d.ts +2 -0
  47. package/build/lib/commands/screenshot.d.ts.map +1 -0
  48. package/build/lib/commands/screenshot.js +77 -62
  49. package/build/lib/commands/screenshot.js.map +1 -1
  50. package/build/lib/commands/touch.d.ts +2 -0
  51. package/build/lib/commands/touch.d.ts.map +1 -0
  52. package/build/lib/commands/touch.js +48 -38
  53. package/build/lib/commands/touch.js.map +1 -1
  54. package/build/lib/commands/types.d.ts +452 -0
  55. package/build/lib/commands/types.d.ts.map +1 -0
  56. package/build/lib/commands/types.js +3 -0
  57. package/build/lib/commands/types.js.map +1 -0
  58. package/build/lib/commands/viewport.d.ts +2 -0
  59. package/build/lib/commands/viewport.d.ts.map +1 -0
  60. package/build/lib/commands/viewport.js +37 -35
  61. package/build/lib/commands/viewport.js.map +1 -1
  62. package/build/lib/constraints.d.ts +334 -0
  63. package/build/lib/constraints.d.ts.map +1 -0
  64. package/build/lib/constraints.js +51 -0
  65. package/build/lib/constraints.js.map +1 -0
  66. package/build/lib/css-converter.d.ts +45 -0
  67. package/build/lib/css-converter.d.ts.map +1 -0
  68. package/build/lib/css-converter.js +272 -175
  69. package/build/lib/css-converter.js.map +1 -1
  70. package/build/lib/driver.d.ts +912 -0
  71. package/build/lib/driver.d.ts.map +1 -0
  72. package/build/lib/driver.js +738 -482
  73. package/build/lib/driver.js.map +1 -1
  74. package/build/lib/execute-method-map.d.ts +477 -0
  75. package/build/lib/execute-method-map.d.ts.map +1 -0
  76. package/build/lib/execute-method-map.js +542 -0
  77. package/build/lib/execute-method-map.js.map +1 -0
  78. package/build/lib/extensions.d.ts +3 -0
  79. package/build/lib/extensions.d.ts.map +1 -0
  80. package/build/lib/extensions.js +7 -9
  81. package/build/lib/extensions.js.map +1 -1
  82. package/build/lib/helpers.d.ts +7 -0
  83. package/build/lib/helpers.d.ts.map +1 -0
  84. package/build/lib/helpers.js +36 -29
  85. package/build/lib/helpers.js.map +1 -1
  86. package/build/lib/logger.d.ts +3 -0
  87. package/build/lib/logger.d.ts.map +1 -0
  88. package/build/lib/logger.js +5 -10
  89. package/build/lib/logger.js.map +1 -1
  90. package/build/lib/method-map.d.ts +389 -0
  91. package/build/lib/method-map.d.ts.map +1 -0
  92. package/build/lib/method-map.js +11 -17
  93. package/build/lib/method-map.js.map +1 -1
  94. package/build/lib/types.d.ts +45 -0
  95. package/build/lib/types.d.ts.map +1 -0
  96. package/build/lib/types.js +3 -0
  97. package/build/lib/types.js.map +1 -0
  98. package/build/lib/uiautomator2.d.ts +45 -0
  99. package/build/lib/uiautomator2.d.ts.map +1 -0
  100. package/build/lib/uiautomator2.js +340 -299
  101. package/build/lib/uiautomator2.js.map +1 -1
  102. package/build/lib/utils.d.ts +10 -0
  103. package/build/lib/utils.d.ts.map +1 -0
  104. package/build/lib/utils.js +23 -16
  105. package/build/lib/utils.js.map +1 -1
  106. package/build/tsconfig.tsbuildinfo +1 -0
  107. package/index.js +5 -3
  108. package/lib/commands/actions.js +115 -101
  109. package/lib/commands/alert.js +36 -44
  110. package/lib/commands/app-strings.js +79 -58
  111. package/lib/commands/battery.js +27 -28
  112. package/lib/commands/element.js +231 -134
  113. package/lib/commands/find.js +40 -21
  114. package/lib/commands/general.js +271 -336
  115. package/lib/commands/gestures.js +252 -366
  116. package/lib/commands/index.js +11 -31
  117. package/lib/commands/mixins.ts +167 -0
  118. package/lib/commands/screenshot.js +80 -76
  119. package/lib/commands/touch.js +64 -31
  120. package/lib/commands/types.ts +473 -0
  121. package/lib/commands/viewport.js +43 -31
  122. package/lib/constraints.ts +53 -0
  123. package/lib/css-converter.js +9 -1
  124. package/lib/{driver.js → driver.ts} +383 -225
  125. package/lib/execute-method-map.ts +573 -0
  126. package/lib/method-map.ts +11 -0
  127. package/lib/types.ts +59 -0
  128. package/lib/uiautomator2.js +21 -2
  129. package/lib/utils.js +2 -2
  130. package/npm-shrinkwrap.json +363 -492
  131. package/package.json +95 -69
  132. package/build/lib/desired-caps.js +0 -71
  133. package/build/lib/desired-caps.js.map +0 -1
  134. package/lib/desired-caps.js +0 -70
  135. package/lib/method-map.js +0 -11
@@ -1,17 +1,16 @@
1
1
  {
2
2
  "name": "appium-uiautomator2-driver",
3
- "version": "2.29.11",
3
+ "version": "2.30.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "appium-uiautomator2-driver",
9
- "version": "2.29.11",
9
+ "version": "2.30.0",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
- "@babel/runtime": "^7.0.0",
13
12
  "appium-adb": "^9.14.12",
14
- "appium-android-driver": "^5.14.10",
13
+ "appium-android-driver": "^6.0.0",
15
14
  "appium-chromedriver": "^5.6.5",
16
15
  "appium-uiautomator2-server": "^5.12.2",
17
16
  "asyncbox": "^2.3.1",
@@ -21,34 +20,60 @@
21
20
  "lodash": "^4.17.4",
22
21
  "portscanner": "^2.2.0",
23
22
  "source-map-support": "^0.x",
24
- "teen_process": "^2.0.0"
23
+ "teen_process": "^2.0.0",
24
+ "type-fest": "^3.12.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@appium/eslint-config-appium": "^8.0.0",
27
+ "@appium/docutils": "^0.4.4",
28
+ "@appium/eslint-config-appium": "^8.0.3",
29
+ "@appium/eslint-config-appium-ts": "^0.3.1",
30
+ "@appium/support": "^4.0.1",
28
31
  "@appium/test-support": "^3.0.0",
29
- "@babel/cli": "^7.18.10",
30
- "@babel/core": "^7.18.10",
31
- "@babel/eslint-parser": "^7.18.9",
32
- "@babel/plugin-transform-runtime": "^7.18.10",
33
- "@babel/preset-env": "^7.18.10",
34
- "@babel/register": "^7.18.9",
32
+ "@appium/tsconfig": "^0.3.0",
33
+ "@appium/types": "^0.13.0",
34
+ "@commitlint/cli": "^17.6.3",
35
+ "@commitlint/config-conventional": "^17.6.3",
35
36
  "@semantic-release/changelog": "^6.0.1",
36
37
  "@semantic-release/git": "^10.0.1",
38
+ "@types/bluebird": "^3.5.38",
39
+ "@types/chai": "^4.3.5",
40
+ "@types/chai-as-promised": "^7.1.5",
41
+ "@types/lodash": "^4.14.194",
42
+ "@types/mocha": "^10.0.1",
43
+ "@types/node": "^20.2.3",
44
+ "@types/portscanner": "^2.1.1",
45
+ "@types/semver": "^7.5.0",
46
+ "@types/sinon": "^10.0.15",
47
+ "@types/sinon-chai": "^3.2.9",
48
+ "@types/source-map-support": "^0.5.6",
49
+ "@types/teen_process": "^2.0.0",
50
+ "@types/ws": "^8.5.4",
51
+ "@typescript-eslint/eslint-plugin": "^5.59.5",
52
+ "@typescript-eslint/parser": "^5.59.5",
37
53
  "@xmldom/xmldom": "^0.x",
38
54
  "android-apidemos": "^4.1.1",
39
- "babel-plugin-source-map-support": "^2.2.0",
40
- "chai": "^4.1.0",
55
+ "appium": "^2.0.0-rc.3",
56
+ "chai": "^4.1.2",
41
57
  "chai-as-promised": "^7.1.1",
42
58
  "conventional-changelog-conventionalcommits": "^7.0.1",
43
- "eslint-config-prettier": "^8.5.0",
59
+ "eslint": "^8.40.0",
60
+ "eslint-config-prettier": "^8.8.0",
61
+ "eslint-import-resolver-typescript": "^3.5.5",
62
+ "eslint-plugin-import": "^2.27.5",
63
+ "eslint-plugin-mocha": "^10.1.0",
64
+ "eslint-plugin-promise": "^6.1.1",
44
65
  "fancy-log": "^2.0.0",
66
+ "husky": "^8.0.3",
45
67
  "lint-staged": "^14.0.0",
46
68
  "mocha": "^10.0.0",
47
- "pre-commit": "^1.2.2",
69
+ "prettier": "^2.8.8",
48
70
  "rimraf": "^5.0.0",
49
71
  "semantic-release": "^21.1.0",
50
72
  "sharp": "^0.x",
51
73
  "sinon": "^15.0.0",
74
+ "sinon-chai": "^3.7.0",
75
+ "ts-node": "^10.9.1",
76
+ "typescript": "~5.0",
52
77
  "unzipper": "^0.x",
53
78
  "webdriverio": "^8.0.5",
54
79
  "xpath": "^0.x"
@@ -58,7 +83,7 @@
58
83
  "npm": ">=8"
59
84
  },
60
85
  "peerDependencies": {
61
- "appium": "^2.0.0-beta.40"
86
+ "appium": "^2.0.0"
62
87
  }
63
88
  },
64
89
  "node_modules/@appium/base-driver": {
@@ -96,6 +121,14 @@
96
121
  "npm": ">=8"
97
122
  }
98
123
  },
124
+ "node_modules/@appium/base-driver/node_modules/@types/bluebird": {
125
+ "version": "3.5.38",
126
+ "license": "MIT"
127
+ },
128
+ "node_modules/@appium/base-driver/node_modules/@types/lodash": {
129
+ "version": "4.14.197",
130
+ "license": "MIT"
131
+ },
99
132
  "node_modules/@appium/base-driver/node_modules/axios": {
100
133
  "version": "1.4.0",
101
134
  "license": "MIT",
@@ -105,13 +138,6 @@
105
138
  "proxy-from-env": "^1.1.0"
106
139
  }
107
140
  },
108
- "node_modules/@appium/base-driver/node_modules/lru-cache": {
109
- "version": "7.18.3",
110
- "license": "ISC",
111
- "engines": {
112
- "node": ">=12"
113
- }
114
- },
115
141
  "node_modules/@appium/base-plugin": {
116
142
  "version": "2.2.20",
117
143
  "extraneous": true,
@@ -127,7 +153,7 @@
127
153
  },
128
154
  "node_modules/@appium/docutils": {
129
155
  "version": "0.4.9",
130
- "extraneous": true,
156
+ "dev": true,
131
157
  "license": "Apache-2.0",
132
158
  "dependencies": {
133
159
  "@appium/support": "^4.1.6",
@@ -166,65 +192,9 @@
166
192
  "npm": ">=8"
167
193
  }
168
194
  },
169
- "node_modules/@appium/docutils/node_modules/ansi-styles": {
170
- "version": "4.3.0",
171
- "extraneous": true,
172
- "license": "MIT",
173
- "dependencies": {
174
- "color-convert": "^2.0.1"
175
- },
176
- "engines": {
177
- "node": ">=8"
178
- },
179
- "funding": {
180
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
181
- }
182
- },
183
- "node_modules/@appium/docutils/node_modules/chalk": {
184
- "version": "4.1.2",
185
- "extraneous": true,
186
- "license": "MIT",
187
- "dependencies": {
188
- "ansi-styles": "^4.1.0",
189
- "supports-color": "^7.1.0"
190
- },
191
- "engines": {
192
- "node": ">=10"
193
- },
194
- "funding": {
195
- "url": "https://github.com/chalk/chalk?sponsor=1"
196
- }
197
- },
198
- "node_modules/@appium/docutils/node_modules/color-convert": {
199
- "version": "2.0.1",
200
- "extraneous": true,
201
- "license": "MIT",
202
- "dependencies": {
203
- "color-name": "~1.1.4"
204
- },
205
- "engines": {
206
- "node": ">=7.0.0"
207
- }
208
- },
209
- "node_modules/@appium/docutils/node_modules/color-name": {
210
- "version": "1.1.4",
211
- "extraneous": true,
212
- "license": "MIT"
213
- },
214
- "node_modules/@appium/docutils/node_modules/supports-color": {
215
- "version": "7.2.0",
216
- "extraneous": true,
217
- "license": "MIT",
218
- "dependencies": {
219
- "has-flag": "^4.0.0"
220
- },
221
- "engines": {
222
- "node": ">=8"
223
- }
224
- },
225
195
  "node_modules/@appium/docutils/node_modules/teen_process": {
226
196
  "version": "2.0.4",
227
- "extraneous": true,
197
+ "dev": true,
228
198
  "license": "Apache-2.0",
229
199
  "dependencies": {
230
200
  "bluebird": "3.7.2",
@@ -316,6 +286,17 @@
316
286
  "sharp": "0.32.5"
317
287
  }
318
288
  },
289
+ "node_modules/@appium/support/node_modules/@types/semver": {
290
+ "version": "7.5.0",
291
+ "license": "MIT"
292
+ },
293
+ "node_modules/@appium/support/node_modules/@types/teen_process": {
294
+ "version": "2.0.0",
295
+ "license": "MIT",
296
+ "dependencies": {
297
+ "@types/node": "*"
298
+ }
299
+ },
319
300
  "node_modules/@appium/support/node_modules/axios": {
320
301
  "version": "1.4.0",
321
302
  "license": "MIT",
@@ -374,7 +355,7 @@
374
355
  },
375
356
  "node_modules/@appium/typedoc-plugin-appium": {
376
357
  "version": "0.6.6",
377
- "extraneous": true,
358
+ "dev": true,
378
359
  "license": "Apache-2.0",
379
360
  "dependencies": {
380
361
  "handlebars": "4.7.8",
@@ -410,6 +391,13 @@
410
391
  "npm": ">=8"
411
392
  }
412
393
  },
394
+ "node_modules/@appium/types/node_modules/@types/ws": {
395
+ "version": "8.5.5",
396
+ "license": "MIT",
397
+ "dependencies": {
398
+ "@types/node": "*"
399
+ }
400
+ },
413
401
  "node_modules/@babel/code-frame": {
414
402
  "version": "7.22.13",
415
403
  "license": "MIT",
@@ -421,6 +409,63 @@
421
409
  "node": ">=6.9.0"
422
410
  }
423
411
  },
412
+ "node_modules/@babel/code-frame/node_modules/ansi-styles": {
413
+ "version": "3.2.1",
414
+ "license": "MIT",
415
+ "dependencies": {
416
+ "color-convert": "^1.9.0"
417
+ },
418
+ "engines": {
419
+ "node": ">=4"
420
+ }
421
+ },
422
+ "node_modules/@babel/code-frame/node_modules/chalk": {
423
+ "version": "2.4.2",
424
+ "license": "MIT",
425
+ "dependencies": {
426
+ "ansi-styles": "^3.2.1",
427
+ "escape-string-regexp": "^1.0.5",
428
+ "supports-color": "^5.3.0"
429
+ },
430
+ "engines": {
431
+ "node": ">=4"
432
+ }
433
+ },
434
+ "node_modules/@babel/code-frame/node_modules/color-convert": {
435
+ "version": "1.9.3",
436
+ "license": "MIT",
437
+ "dependencies": {
438
+ "color-name": "1.1.3"
439
+ }
440
+ },
441
+ "node_modules/@babel/code-frame/node_modules/color-name": {
442
+ "version": "1.1.3",
443
+ "license": "MIT"
444
+ },
445
+ "node_modules/@babel/code-frame/node_modules/escape-string-regexp": {
446
+ "version": "1.0.5",
447
+ "license": "MIT",
448
+ "engines": {
449
+ "node": ">=0.8.0"
450
+ }
451
+ },
452
+ "node_modules/@babel/code-frame/node_modules/has-flag": {
453
+ "version": "3.0.0",
454
+ "license": "MIT",
455
+ "engines": {
456
+ "node": ">=4"
457
+ }
458
+ },
459
+ "node_modules/@babel/code-frame/node_modules/supports-color": {
460
+ "version": "5.5.0",
461
+ "license": "MIT",
462
+ "dependencies": {
463
+ "has-flag": "^3.0.0"
464
+ },
465
+ "engines": {
466
+ "node": ">=4"
467
+ }
468
+ },
424
469
  "node_modules/@babel/helper-validator-identifier": {
425
470
  "version": "7.22.20",
426
471
  "license": "MIT",
@@ -440,8 +485,65 @@
440
485
  "node": ">=6.9.0"
441
486
  }
442
487
  },
488
+ "node_modules/@babel/highlight/node_modules/ansi-styles": {
489
+ "version": "3.2.1",
490
+ "license": "MIT",
491
+ "dependencies": {
492
+ "color-convert": "^1.9.0"
493
+ },
494
+ "engines": {
495
+ "node": ">=4"
496
+ }
497
+ },
498
+ "node_modules/@babel/highlight/node_modules/chalk": {
499
+ "version": "2.4.2",
500
+ "license": "MIT",
501
+ "dependencies": {
502
+ "ansi-styles": "^3.2.1",
503
+ "escape-string-regexp": "^1.0.5",
504
+ "supports-color": "^5.3.0"
505
+ },
506
+ "engines": {
507
+ "node": ">=4"
508
+ }
509
+ },
510
+ "node_modules/@babel/highlight/node_modules/color-convert": {
511
+ "version": "1.9.3",
512
+ "license": "MIT",
513
+ "dependencies": {
514
+ "color-name": "1.1.3"
515
+ }
516
+ },
517
+ "node_modules/@babel/highlight/node_modules/color-name": {
518
+ "version": "1.1.3",
519
+ "license": "MIT"
520
+ },
521
+ "node_modules/@babel/highlight/node_modules/escape-string-regexp": {
522
+ "version": "1.0.5",
523
+ "license": "MIT",
524
+ "engines": {
525
+ "node": ">=0.8.0"
526
+ }
527
+ },
528
+ "node_modules/@babel/highlight/node_modules/has-flag": {
529
+ "version": "3.0.0",
530
+ "license": "MIT",
531
+ "engines": {
532
+ "node": ">=4"
533
+ }
534
+ },
535
+ "node_modules/@babel/highlight/node_modules/supports-color": {
536
+ "version": "5.5.0",
537
+ "license": "MIT",
538
+ "dependencies": {
539
+ "has-flag": "^3.0.0"
540
+ },
541
+ "engines": {
542
+ "node": ">=4"
543
+ }
544
+ },
443
545
  "node_modules/@babel/runtime": {
444
- "version": "7.23.1",
546
+ "version": "7.23.2",
445
547
  "license": "MIT",
446
548
  "dependencies": {
447
549
  "regenerator-runtime": "^0.14.0"
@@ -553,77 +655,54 @@
553
655
  "ajv": "4.11.8 - 8"
554
656
  }
555
657
  },
556
- "node_modules/@sidvind/better-ajv-errors/node_modules/ansi-styles": {
557
- "version": "4.3.0",
558
- "extraneous": true,
559
- "license": "MIT",
560
- "dependencies": {
561
- "color-convert": "^2.0.1"
562
- },
563
- "engines": {
564
- "node": ">=8"
565
- },
566
- "funding": {
567
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
568
- }
569
- },
570
- "node_modules/@sidvind/better-ajv-errors/node_modules/chalk": {
571
- "version": "4.1.2",
572
- "extraneous": true,
658
+ "node_modules/@sliphua/lilconfig-ts-loader": {
659
+ "version": "3.2.2",
660
+ "dev": true,
573
661
  "license": "MIT",
574
662
  "dependencies": {
575
- "ansi-styles": "^4.1.0",
576
- "supports-color": "^7.1.0"
663
+ "lodash.get": "^4",
664
+ "make-error": "^1",
665
+ "ts-node": "^9",
666
+ "tslib": "^2"
577
667
  },
578
668
  "engines": {
579
- "node": ">=10"
669
+ "node": ">=10.0.0"
580
670
  },
581
- "funding": {
582
- "url": "https://github.com/chalk/chalk?sponsor=1"
671
+ "peerDependencies": {
672
+ "lilconfig": ">=2"
583
673
  }
584
674
  },
585
- "node_modules/@sidvind/better-ajv-errors/node_modules/color-convert": {
586
- "version": "2.0.1",
587
- "extraneous": true,
588
- "license": "MIT",
589
- "dependencies": {
590
- "color-name": "~1.1.4"
591
- },
675
+ "node_modules/@sliphua/lilconfig-ts-loader/node_modules/diff": {
676
+ "version": "4.0.2",
677
+ "dev": true,
678
+ "license": "BSD-3-Clause",
592
679
  "engines": {
593
- "node": ">=7.0.0"
680
+ "node": ">=0.3.1"
594
681
  }
595
682
  },
596
- "node_modules/@sidvind/better-ajv-errors/node_modules/color-name": {
597
- "version": "1.1.4",
598
- "extraneous": true,
599
- "license": "MIT"
600
- },
601
- "node_modules/@sidvind/better-ajv-errors/node_modules/supports-color": {
602
- "version": "7.2.0",
603
- "extraneous": true,
683
+ "node_modules/@sliphua/lilconfig-ts-loader/node_modules/ts-node": {
684
+ "version": "9.1.1",
685
+ "dev": true,
604
686
  "license": "MIT",
605
687
  "dependencies": {
606
- "has-flag": "^4.0.0"
688
+ "arg": "^4.1.0",
689
+ "create-require": "^1.1.0",
690
+ "diff": "^4.0.1",
691
+ "make-error": "^1.1.1",
692
+ "source-map-support": "^0.5.17",
693
+ "yn": "3.1.1"
607
694
  },
608
- "engines": {
609
- "node": ">=8"
610
- }
611
- },
612
- "node_modules/@sliphua/lilconfig-ts-loader": {
613
- "version": "3.2.2",
614
- "extraneous": true,
615
- "license": "MIT",
616
- "dependencies": {
617
- "lodash.get": "^4",
618
- "make-error": "^1",
619
- "ts-node": "^9",
620
- "tslib": "^2"
695
+ "bin": {
696
+ "ts-node": "dist/bin.js",
697
+ "ts-node-script": "dist/bin-script.js",
698
+ "ts-node-transpile-only": "dist/bin-transpile.js",
699
+ "ts-script": "dist/bin-script-deprecated.js"
621
700
  },
622
701
  "engines": {
623
702
  "node": ">=10.0.0"
624
703
  },
625
704
  "peerDependencies": {
626
- "lilconfig": ">=2"
705
+ "typescript": ">=2.7"
627
706
  }
628
707
  },
629
708
  "node_modules/@tsconfig/node14": {
@@ -654,7 +733,7 @@
654
733
  }
655
734
  },
656
735
  "node_modules/@types/bluebird": {
657
- "version": "3.5.38",
736
+ "version": "3.5.40",
658
737
  "license": "MIT"
659
738
  },
660
739
  "node_modules/@types/body-parser": {
@@ -727,10 +806,6 @@
727
806
  "version": "1.0.2",
728
807
  "license": "MIT"
729
808
  },
730
- "node_modules/@types/lodash": {
731
- "version": "4.14.197",
732
- "license": "MIT"
733
- },
734
809
  "node_modules/@types/method-override": {
735
810
  "version": "0.0.32",
736
811
  "license": "MIT",
@@ -754,8 +829,11 @@
754
829
  }
755
830
  },
756
831
  "node_modules/@types/node": {
757
- "version": "20.8.3",
758
- "license": "MIT"
832
+ "version": "20.8.5",
833
+ "license": "MIT",
834
+ "dependencies": {
835
+ "undici-types": "~5.25.1"
836
+ }
759
837
  },
760
838
  "node_modules/@types/normalize-package-data": {
761
839
  "version": "2.4.2",
@@ -784,10 +862,6 @@
784
862
  "@types/node": "*"
785
863
  }
786
864
  },
787
- "node_modules/@types/semver": {
788
- "version": "7.5.0",
789
- "license": "MIT"
790
- },
791
865
  "node_modules/@types/send": {
792
866
  "version": "0.17.2",
793
867
  "license": "MIT",
@@ -820,13 +894,6 @@
820
894
  "version": "8.1.1",
821
895
  "license": "MIT"
822
896
  },
823
- "node_modules/@types/teen_process": {
824
- "version": "2.0.0",
825
- "license": "MIT",
826
- "dependencies": {
827
- "@types/node": "*"
828
- }
829
- },
830
897
  "node_modules/@types/triple-beam": {
831
898
  "version": "1.3.3",
832
899
  "extraneous": true,
@@ -845,13 +912,6 @@
845
912
  "extraneous": true,
846
913
  "license": "MIT"
847
914
  },
848
- "node_modules/@types/ws": {
849
- "version": "8.5.5",
850
- "license": "MIT",
851
- "dependencies": {
852
- "@types/node": "*"
853
- }
854
- },
855
915
  "node_modules/@xmldom/xmldom": {
856
916
  "version": "0.8.10",
857
917
  "license": "MIT",
@@ -939,17 +999,20 @@
939
999
  },
940
1000
  "node_modules/ansi-sequence-parser": {
941
1001
  "version": "1.1.1",
942
- "extraneous": true,
1002
+ "dev": true,
943
1003
  "license": "MIT"
944
1004
  },
945
1005
  "node_modules/ansi-styles": {
946
- "version": "3.2.1",
1006
+ "version": "4.3.0",
947
1007
  "license": "MIT",
948
1008
  "dependencies": {
949
- "color-convert": "^1.9.0"
1009
+ "color-convert": "^2.0.1"
950
1010
  },
951
1011
  "engines": {
952
- "node": ">=4"
1012
+ "node": ">=8"
1013
+ },
1014
+ "funding": {
1015
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
953
1016
  }
954
1017
  },
955
1018
  "node_modules/appium-adb": {
@@ -981,11 +1044,11 @@
981
1044
  }
982
1045
  },
983
1046
  "node_modules/appium-android-driver": {
984
- "version": "5.14.10",
1047
+ "version": "6.0.1",
985
1048
  "license": "Apache-2.0",
986
1049
  "dependencies": {
987
- "appium-adb": "^9.14.12",
988
- "appium-chromedriver": "^5.2.0",
1050
+ "appium-adb": "^9.12.0",
1051
+ "appium-chromedriver": "^5.5.1",
989
1052
  "asyncbox": "^2.8.0",
990
1053
  "axios": "^1.x",
991
1054
  "bluebird": "^3.4.7",
@@ -993,13 +1056,14 @@
993
1056
  "lodash": "^4.17.4",
994
1057
  "lru-cache": "^7.3.0",
995
1058
  "moment": "^2.24.0",
996
- "moment-timezone": "^0.x",
1059
+ "moment-timezone": "^0.5.26",
997
1060
  "portfinder": "^1.0.6",
998
1061
  "portscanner": "2.2.0",
999
1062
  "semver": "^7.0.0",
1000
1063
  "shared-preferences-builder": "^0.x",
1001
1064
  "source-map-support": "^0.x",
1002
1065
  "teen_process": "^2.0.0",
1066
+ "type-fest": "^3.11.1",
1003
1067
  "ws": "^8.0.0"
1004
1068
  },
1005
1069
  "engines": {
@@ -1010,15 +1074,8 @@
1010
1074
  "appium": "^2.0.0-beta.40"
1011
1075
  }
1012
1076
  },
1013
- "node_modules/appium-android-driver/node_modules/lru-cache": {
1014
- "version": "7.18.3",
1015
- "license": "ISC",
1016
- "engines": {
1017
- "node": ">=12"
1018
- }
1019
- },
1020
1077
  "node_modules/appium-chromedriver": {
1021
- "version": "5.6.12",
1078
+ "version": "5.6.13",
1022
1079
  "hasInstallScript": true,
1023
1080
  "license": "Apache-2.0",
1024
1081
  "dependencies": {
@@ -1184,7 +1241,7 @@
1184
1241
  },
1185
1242
  "node_modules/arg": {
1186
1243
  "version": "4.1.3",
1187
- "extraneous": true,
1244
+ "dev": true,
1188
1245
  "license": "MIT"
1189
1246
  },
1190
1247
  "node_modules/argparse": {
@@ -1406,32 +1463,27 @@
1406
1463
  }
1407
1464
  },
1408
1465
  "node_modules/chalk": {
1409
- "version": "2.4.2",
1466
+ "version": "4.1.2",
1410
1467
  "license": "MIT",
1411
1468
  "dependencies": {
1412
- "ansi-styles": "^3.2.1",
1413
- "escape-string-regexp": "^1.0.5",
1414
- "supports-color": "^5.3.0"
1469
+ "ansi-styles": "^4.1.0",
1470
+ "supports-color": "^7.1.0"
1415
1471
  },
1416
1472
  "engines": {
1417
- "node": ">=4"
1418
- }
1419
- },
1420
- "node_modules/chalk/node_modules/has-flag": {
1421
- "version": "3.0.0",
1422
- "license": "MIT",
1423
- "engines": {
1424
- "node": ">=4"
1473
+ "node": ">=10"
1474
+ },
1475
+ "funding": {
1476
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1425
1477
  }
1426
1478
  },
1427
1479
  "node_modules/chalk/node_modules/supports-color": {
1428
- "version": "5.5.0",
1480
+ "version": "7.2.0",
1429
1481
  "license": "MIT",
1430
1482
  "dependencies": {
1431
- "has-flag": "^3.0.0"
1483
+ "has-flag": "^4.0.0"
1432
1484
  },
1433
1485
  "engines": {
1434
- "node": ">=4"
1486
+ "node": ">=8"
1435
1487
  }
1436
1488
  },
1437
1489
  "node_modules/chownr": {
@@ -1452,7 +1504,7 @@
1452
1504
  },
1453
1505
  "node_modules/cliui": {
1454
1506
  "version": "8.0.1",
1455
- "extraneous": true,
1507
+ "dev": true,
1456
1508
  "license": "ISC",
1457
1509
  "dependencies": {
1458
1510
  "string-width": "^4.2.0",
@@ -1465,12 +1517,12 @@
1465
1517
  },
1466
1518
  "node_modules/cliui/node_modules/emoji-regex": {
1467
1519
  "version": "8.0.0",
1468
- "extraneous": true,
1520
+ "dev": true,
1469
1521
  "license": "MIT"
1470
1522
  },
1471
1523
  "node_modules/cliui/node_modules/is-fullwidth-code-point": {
1472
1524
  "version": "3.0.0",
1473
- "extraneous": true,
1525
+ "dev": true,
1474
1526
  "license": "MIT",
1475
1527
  "engines": {
1476
1528
  "node": ">=8"
@@ -1478,7 +1530,7 @@
1478
1530
  },
1479
1531
  "node_modules/cliui/node_modules/string-width": {
1480
1532
  "version": "4.2.3",
1481
- "extraneous": true,
1533
+ "dev": true,
1482
1534
  "license": "MIT",
1483
1535
  "dependencies": {
1484
1536
  "emoji-regex": "^8.0.0",
@@ -1510,14 +1562,17 @@
1510
1562
  }
1511
1563
  },
1512
1564
  "node_modules/color-convert": {
1513
- "version": "1.9.3",
1565
+ "version": "2.0.1",
1514
1566
  "license": "MIT",
1515
1567
  "dependencies": {
1516
- "color-name": "1.1.3"
1568
+ "color-name": "~1.1.4"
1569
+ },
1570
+ "engines": {
1571
+ "node": ">=7.0.0"
1517
1572
  }
1518
1573
  },
1519
1574
  "node_modules/color-name": {
1520
- "version": "1.1.3",
1575
+ "version": "1.1.4",
1521
1576
  "license": "MIT"
1522
1577
  },
1523
1578
  "node_modules/color-string": {
@@ -1536,22 +1591,6 @@
1536
1591
  "color-support": "bin.js"
1537
1592
  }
1538
1593
  },
1539
- "node_modules/color/node_modules/color-convert": {
1540
- "version": "2.0.1",
1541
- "license": "MIT",
1542
- "optional": true,
1543
- "dependencies": {
1544
- "color-name": "~1.1.4"
1545
- },
1546
- "engines": {
1547
- "node": ">=7.0.0"
1548
- }
1549
- },
1550
- "node_modules/color/node_modules/color-name": {
1551
- "version": "1.1.4",
1552
- "license": "MIT",
1553
- "optional": true
1554
- },
1555
1594
  "node_modules/colorspace": {
1556
1595
  "version": "1.1.4",
1557
1596
  "extraneous": true,
@@ -1570,6 +1609,19 @@
1570
1609
  "color-string": "^1.6.0"
1571
1610
  }
1572
1611
  },
1612
+ "node_modules/colorspace/node_modules/color-convert": {
1613
+ "version": "1.9.3",
1614
+ "extraneous": true,
1615
+ "license": "MIT",
1616
+ "dependencies": {
1617
+ "color-name": "1.1.3"
1618
+ }
1619
+ },
1620
+ "node_modules/colorspace/node_modules/color-name": {
1621
+ "version": "1.1.3",
1622
+ "extraneous": true,
1623
+ "license": "MIT"
1624
+ },
1573
1625
  "node_modules/combined-stream": {
1574
1626
  "version": "1.0.8",
1575
1627
  "license": "MIT",
@@ -1603,7 +1655,7 @@
1603
1655
  },
1604
1656
  "node_modules/consola": {
1605
1657
  "version": "2.15.3",
1606
- "extraneous": true,
1658
+ "dev": true,
1607
1659
  "license": "MIT"
1608
1660
  },
1609
1661
  "node_modules/console-control-strings": {
@@ -1665,7 +1717,7 @@
1665
1717
  },
1666
1718
  "node_modules/create-require": {
1667
1719
  "version": "1.1.1",
1668
- "extraneous": true,
1720
+ "dev": true,
1669
1721
  "license": "MIT"
1670
1722
  },
1671
1723
  "node_modules/cross-env": {
@@ -1793,7 +1845,7 @@
1793
1845
  },
1794
1846
  "node_modules/diff": {
1795
1847
  "version": "5.1.0",
1796
- "extraneous": true,
1848
+ "dev": true,
1797
1849
  "license": "BSD-3-Clause",
1798
1850
  "engines": {
1799
1851
  "node": ">=0.3.1"
@@ -1847,7 +1899,7 @@
1847
1899
  },
1848
1900
  "node_modules/escalade": {
1849
1901
  "version": "3.1.1",
1850
- "extraneous": true,
1902
+ "dev": true,
1851
1903
  "license": "MIT",
1852
1904
  "engines": {
1853
1905
  "node": ">=6"
@@ -1857,13 +1909,6 @@
1857
1909
  "version": "1.0.3",
1858
1910
  "license": "MIT"
1859
1911
  },
1860
- "node_modules/escape-string-regexp": {
1861
- "version": "1.0.5",
1862
- "license": "MIT",
1863
- "engines": {
1864
- "node": ">=0.8.0"
1865
- }
1866
- },
1867
1912
  "node_modules/etag": {
1868
1913
  "version": "1.8.1",
1869
1914
  "license": "MIT",
@@ -2013,7 +2058,7 @@
2013
2058
  },
2014
2059
  "node_modules/figures": {
2015
2060
  "version": "3.2.0",
2016
- "extraneous": true,
2061
+ "dev": true,
2017
2062
  "license": "MIT",
2018
2063
  "dependencies": {
2019
2064
  "escape-string-regexp": "^1.0.5"
@@ -2025,6 +2070,14 @@
2025
2070
  "url": "https://github.com/sponsors/sindresorhus"
2026
2071
  }
2027
2072
  },
2073
+ "node_modules/figures/node_modules/escape-string-regexp": {
2074
+ "version": "1.0.5",
2075
+ "dev": true,
2076
+ "license": "MIT",
2077
+ "engines": {
2078
+ "node": ">=0.8.0"
2079
+ }
2080
+ },
2028
2081
  "node_modules/finalhandler": {
2029
2082
  "version": "1.2.0",
2030
2083
  "license": "MIT",
@@ -2175,8 +2228,11 @@
2175
2228
  "license": "MIT"
2176
2229
  },
2177
2230
  "node_modules/function-bind": {
2178
- "version": "1.1.1",
2179
- "license": "MIT"
2231
+ "version": "1.1.2",
2232
+ "license": "MIT",
2233
+ "funding": {
2234
+ "url": "https://github.com/sponsors/ljharb"
2235
+ }
2180
2236
  },
2181
2237
  "node_modules/gauge": {
2182
2238
  "version": "5.0.1",
@@ -2230,7 +2286,7 @@
2230
2286
  },
2231
2287
  "node_modules/get-caller-file": {
2232
2288
  "version": "2.0.5",
2233
- "extraneous": true,
2289
+ "dev": true,
2234
2290
  "license": "ISC",
2235
2291
  "engines": {
2236
2292
  "node": "6.* || 8.* || >= 10.*"
@@ -2310,7 +2366,7 @@
2310
2366
  },
2311
2367
  "node_modules/handlebars": {
2312
2368
  "version": "4.7.8",
2313
- "extraneous": true,
2369
+ "dev": true,
2314
2370
  "license": "MIT",
2315
2371
  "dependencies": {
2316
2372
  "minimist": "^1.2.5",
@@ -2366,10 +2422,6 @@
2366
2422
  "version": "2.0.1",
2367
2423
  "license": "ISC"
2368
2424
  },
2369
- "node_modules/hosted-git-info": {
2370
- "version": "2.8.9",
2371
- "license": "ISC"
2372
- },
2373
2425
  "node_modules/http-errors": {
2374
2426
  "version": "2.0.0",
2375
2427
  "license": "MIT",
@@ -2561,7 +2613,7 @@
2561
2613
  },
2562
2614
  "node_modules/json5": {
2563
2615
  "version": "2.2.3",
2564
- "extraneous": true,
2616
+ "dev": true,
2565
2617
  "license": "MIT",
2566
2618
  "bin": {
2567
2619
  "json5": "lib/cli.js"
@@ -2572,7 +2624,7 @@
2572
2624
  },
2573
2625
  "node_modules/jsonc-parser": {
2574
2626
  "version": "3.2.0",
2575
- "extraneous": true,
2627
+ "dev": true,
2576
2628
  "license": "MIT"
2577
2629
  },
2578
2630
  "node_modules/klaw": {
@@ -2627,7 +2679,7 @@
2627
2679
  },
2628
2680
  "node_modules/lilconfig": {
2629
2681
  "version": "2.1.0",
2630
- "extraneous": true,
2682
+ "dev": true,
2631
2683
  "license": "MIT",
2632
2684
  "engines": {
2633
2685
  "node": ">=10"
@@ -2675,7 +2727,7 @@
2675
2727
  },
2676
2728
  "node_modules/lodash.get": {
2677
2729
  "version": "4.4.2",
2678
- "extraneous": true,
2730
+ "dev": true,
2679
2731
  "license": "MIT"
2680
2732
  },
2681
2733
  "node_modules/lodash.isfinite": {
@@ -2704,57 +2756,6 @@
2704
2756
  "url": "https://github.com/sponsors/sindresorhus"
2705
2757
  }
2706
2758
  },
2707
- "node_modules/log-symbols/node_modules/ansi-styles": {
2708
- "version": "4.3.0",
2709
- "license": "MIT",
2710
- "dependencies": {
2711
- "color-convert": "^2.0.1"
2712
- },
2713
- "engines": {
2714
- "node": ">=8"
2715
- },
2716
- "funding": {
2717
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2718
- }
2719
- },
2720
- "node_modules/log-symbols/node_modules/chalk": {
2721
- "version": "4.1.2",
2722
- "license": "MIT",
2723
- "dependencies": {
2724
- "ansi-styles": "^4.1.0",
2725
- "supports-color": "^7.1.0"
2726
- },
2727
- "engines": {
2728
- "node": ">=10"
2729
- },
2730
- "funding": {
2731
- "url": "https://github.com/chalk/chalk?sponsor=1"
2732
- }
2733
- },
2734
- "node_modules/log-symbols/node_modules/color-convert": {
2735
- "version": "2.0.1",
2736
- "license": "MIT",
2737
- "dependencies": {
2738
- "color-name": "~1.1.4"
2739
- },
2740
- "engines": {
2741
- "node": ">=7.0.0"
2742
- }
2743
- },
2744
- "node_modules/log-symbols/node_modules/color-name": {
2745
- "version": "1.1.4",
2746
- "license": "MIT"
2747
- },
2748
- "node_modules/log-symbols/node_modules/supports-color": {
2749
- "version": "7.2.0",
2750
- "license": "MIT",
2751
- "dependencies": {
2752
- "has-flag": "^4.0.0"
2753
- },
2754
- "engines": {
2755
- "node": ">=8"
2756
- }
2757
- },
2758
2759
  "node_modules/logform": {
2759
2760
  "version": "2.5.1",
2760
2761
  "extraneous": true,
@@ -2776,14 +2777,21 @@
2776
2777
  "node": ">=0.1.90"
2777
2778
  }
2778
2779
  },
2780
+ "node_modules/lru-cache": {
2781
+ "version": "7.18.3",
2782
+ "license": "ISC",
2783
+ "engines": {
2784
+ "node": ">=12"
2785
+ }
2786
+ },
2779
2787
  "node_modules/lunr": {
2780
2788
  "version": "2.3.9",
2781
- "extraneous": true,
2789
+ "dev": true,
2782
2790
  "license": "MIT"
2783
2791
  },
2784
2792
  "node_modules/make-error": {
2785
2793
  "version": "1.3.6",
2786
- "extraneous": true,
2794
+ "dev": true,
2787
2795
  "license": "ISC"
2788
2796
  },
2789
2797
  "node_modules/media-typer": {
@@ -3016,11 +3024,11 @@
3016
3024
  },
3017
3025
  "node_modules/neo-async": {
3018
3026
  "version": "2.6.2",
3019
- "extraneous": true,
3027
+ "dev": true,
3020
3028
  "license": "MIT"
3021
3029
  },
3022
3030
  "node_modules/node-abi": {
3023
- "version": "3.47.0",
3031
+ "version": "3.50.0",
3024
3032
  "license": "MIT",
3025
3033
  "optional": true,
3026
3034
  "dependencies": {
@@ -3035,23 +3043,6 @@
3035
3043
  "license": "MIT",
3036
3044
  "optional": true
3037
3045
  },
3038
- "node_modules/normalize-package-data": {
3039
- "version": "2.5.0",
3040
- "license": "BSD-2-Clause",
3041
- "dependencies": {
3042
- "hosted-git-info": "^2.1.4",
3043
- "resolve": "^1.10.0",
3044
- "semver": "2 || 3 || 4 || 5",
3045
- "validate-npm-package-license": "^3.0.1"
3046
- }
3047
- },
3048
- "node_modules/normalize-package-data/node_modules/semver": {
3049
- "version": "5.7.2",
3050
- "license": "ISC",
3051
- "bin": {
3052
- "semver": "bin/semver"
3053
- }
3054
- },
3055
3046
  "node_modules/normalize-path": {
3056
3047
  "version": "3.0.0",
3057
3048
  "license": "MIT",
@@ -3151,35 +3142,6 @@
3151
3142
  "url": "https://github.com/sponsors/sindresorhus"
3152
3143
  }
3153
3144
  },
3154
- "node_modules/ora/node_modules/ansi-styles": {
3155
- "version": "4.3.0",
3156
- "extraneous": true,
3157
- "license": "MIT",
3158
- "dependencies": {
3159
- "color-convert": "^2.0.1"
3160
- },
3161
- "engines": {
3162
- "node": ">=8"
3163
- },
3164
- "funding": {
3165
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
3166
- }
3167
- },
3168
- "node_modules/ora/node_modules/chalk": {
3169
- "version": "4.1.2",
3170
- "extraneous": true,
3171
- "license": "MIT",
3172
- "dependencies": {
3173
- "ansi-styles": "^4.1.0",
3174
- "supports-color": "^7.1.0"
3175
- },
3176
- "engines": {
3177
- "node": ">=10"
3178
- },
3179
- "funding": {
3180
- "url": "https://github.com/chalk/chalk?sponsor=1"
3181
- }
3182
- },
3183
3145
  "node_modules/ora/node_modules/cli-cursor": {
3184
3146
  "version": "3.1.0",
3185
3147
  "extraneous": true,
@@ -3191,22 +3153,6 @@
3191
3153
  "node": ">=8"
3192
3154
  }
3193
3155
  },
3194
- "node_modules/ora/node_modules/color-convert": {
3195
- "version": "2.0.1",
3196
- "extraneous": true,
3197
- "license": "MIT",
3198
- "dependencies": {
3199
- "color-name": "~1.1.4"
3200
- },
3201
- "engines": {
3202
- "node": ">=7.0.0"
3203
- }
3204
- },
3205
- "node_modules/ora/node_modules/color-name": {
3206
- "version": "1.1.4",
3207
- "extraneous": true,
3208
- "license": "MIT"
3209
- },
3210
3156
  "node_modules/ora/node_modules/restore-cursor": {
3211
3157
  "version": "3.1.0",
3212
3158
  "extraneous": true,
@@ -3219,17 +3165,6 @@
3219
3165
  "node": ">=8"
3220
3166
  }
3221
3167
  },
3222
- "node_modules/ora/node_modules/supports-color": {
3223
- "version": "7.2.0",
3224
- "extraneous": true,
3225
- "license": "MIT",
3226
- "dependencies": {
3227
- "has-flag": "^4.0.0"
3228
- },
3229
- "engines": {
3230
- "node": ">=8"
3231
- }
3232
- },
3233
3168
  "node_modules/p-limit": {
3234
3169
  "version": "3.1.0",
3235
3170
  "license": "MIT",
@@ -3589,6 +3524,27 @@
3589
3524
  "node": ">=8"
3590
3525
  }
3591
3526
  },
3527
+ "node_modules/read-pkg/node_modules/hosted-git-info": {
3528
+ "version": "2.8.9",
3529
+ "license": "ISC"
3530
+ },
3531
+ "node_modules/read-pkg/node_modules/normalize-package-data": {
3532
+ "version": "2.5.0",
3533
+ "license": "BSD-2-Clause",
3534
+ "dependencies": {
3535
+ "hosted-git-info": "^2.1.4",
3536
+ "resolve": "^1.10.0",
3537
+ "semver": "2 || 3 || 4 || 5",
3538
+ "validate-npm-package-license": "^3.0.1"
3539
+ }
3540
+ },
3541
+ "node_modules/read-pkg/node_modules/semver": {
3542
+ "version": "5.7.2",
3543
+ "license": "ISC",
3544
+ "bin": {
3545
+ "semver": "bin/semver"
3546
+ }
3547
+ },
3592
3548
  "node_modules/read-pkg/node_modules/type-fest": {
3593
3549
  "version": "0.6.0",
3594
3550
  "license": "(MIT OR CC0-1.0)",
@@ -3638,7 +3594,7 @@
3638
3594
  },
3639
3595
  "node_modules/require-directory": {
3640
3596
  "version": "2.1.1",
3641
- "extraneous": true,
3597
+ "dev": true,
3642
3598
  "license": "MIT",
3643
3599
  "engines": {
3644
3600
  "node": ">=0.10.0"
@@ -3653,7 +3609,7 @@
3653
3609
  }
3654
3610
  },
3655
3611
  "node_modules/resolve": {
3656
- "version": "1.22.6",
3612
+ "version": "1.22.8",
3657
3613
  "license": "MIT",
3658
3614
  "dependencies": {
3659
3615
  "is-core-module": "^2.13.0",
@@ -3734,10 +3690,6 @@
3734
3690
  "node": ">=10"
3735
3691
  }
3736
3692
  },
3737
- "node_modules/semver/node_modules/yallist": {
3738
- "version": "4.0.0",
3739
- "license": "ISC"
3740
- },
3741
3693
  "node_modules/send": {
3742
3694
  "version": "0.18.0",
3743
3695
  "license": "MIT",
@@ -3868,8 +3820,8 @@
3868
3820
  }
3869
3821
  },
3870
3822
  "node_modules/shiki": {
3871
- "version": "0.14.4",
3872
- "extraneous": true,
3823
+ "version": "0.14.5",
3824
+ "dev": true,
3873
3825
  "license": "MIT",
3874
3826
  "dependencies": {
3875
3827
  "ansi-sequence-parser": "^1.1.0",
@@ -4176,7 +4128,7 @@
4176
4128
  }
4177
4129
  },
4178
4130
  "node_modules/teen_process": {
4179
- "version": "2.0.45",
4131
+ "version": "2.0.50",
4180
4132
  "license": "Apache-2.0",
4181
4133
  "dependencies": {
4182
4134
  "bluebird": "3.7.2",
@@ -4220,42 +4172,9 @@
4220
4172
  "utf8-byte-length": "^1.0.1"
4221
4173
  }
4222
4174
  },
4223
- "node_modules/ts-node": {
4224
- "version": "9.1.1",
4225
- "extraneous": true,
4226
- "license": "MIT",
4227
- "dependencies": {
4228
- "arg": "^4.1.0",
4229
- "create-require": "^1.1.0",
4230
- "diff": "^4.0.1",
4231
- "make-error": "^1.1.1",
4232
- "source-map-support": "^0.5.17",
4233
- "yn": "3.1.1"
4234
- },
4235
- "bin": {
4236
- "ts-node": "dist/bin.js",
4237
- "ts-node-script": "dist/bin-script.js",
4238
- "ts-node-transpile-only": "dist/bin-transpile.js",
4239
- "ts-script": "dist/bin-script-deprecated.js"
4240
- },
4241
- "engines": {
4242
- "node": ">=10.0.0"
4243
- },
4244
- "peerDependencies": {
4245
- "typescript": ">=2.7"
4246
- }
4247
- },
4248
- "node_modules/ts-node/node_modules/diff": {
4249
- "version": "4.0.2",
4250
- "extraneous": true,
4251
- "license": "BSD-3-Clause",
4252
- "engines": {
4253
- "node": ">=0.3.1"
4254
- }
4255
- },
4256
4175
  "node_modules/tslib": {
4257
4176
  "version": "2.6.2",
4258
- "extraneous": true,
4177
+ "dev": true,
4259
4178
  "license": "0BSD"
4260
4179
  },
4261
4180
  "node_modules/tunnel-agent": {
@@ -4292,7 +4211,7 @@
4292
4211
  },
4293
4212
  "node_modules/typedoc": {
4294
4213
  "version": "0.23.28",
4295
- "extraneous": true,
4214
+ "dev": true,
4296
4215
  "license": "Apache-2.0",
4297
4216
  "dependencies": {
4298
4217
  "lunr": "^2.3.9",
@@ -4312,7 +4231,7 @@
4312
4231
  },
4313
4232
  "node_modules/typedoc-plugin-markdown": {
4314
4233
  "version": "3.14.0",
4315
- "extraneous": true,
4234
+ "dev": true,
4316
4235
  "license": "MIT",
4317
4236
  "dependencies": {
4318
4237
  "handlebars": "^4.7.7"
@@ -4323,7 +4242,7 @@
4323
4242
  },
4324
4243
  "node_modules/typedoc-plugin-resolve-crossmodule-references": {
4325
4244
  "version": "0.3.3",
4326
- "extraneous": true,
4245
+ "dev": true,
4327
4246
  "license": "Apache-2.0",
4328
4247
  "workspaces": [
4329
4248
  "test/packages/*"
@@ -4337,7 +4256,7 @@
4337
4256
  },
4338
4257
  "node_modules/typedoc/node_modules/brace-expansion": {
4339
4258
  "version": "2.0.1",
4340
- "extraneous": true,
4259
+ "dev": true,
4341
4260
  "license": "MIT",
4342
4261
  "dependencies": {
4343
4262
  "balanced-match": "^1.0.0"
@@ -4345,7 +4264,7 @@
4345
4264
  },
4346
4265
  "node_modules/typedoc/node_modules/marked": {
4347
4266
  "version": "4.3.0",
4348
- "extraneous": true,
4267
+ "dev": true,
4349
4268
  "license": "MIT",
4350
4269
  "bin": {
4351
4270
  "marked": "bin/marked.js"
@@ -4356,7 +4275,7 @@
4356
4275
  },
4357
4276
  "node_modules/typedoc/node_modules/minimatch": {
4358
4277
  "version": "7.4.6",
4359
- "extraneous": true,
4278
+ "dev": true,
4360
4279
  "license": "ISC",
4361
4280
  "dependencies": {
4362
4281
  "brace-expansion": "^2.0.1"
@@ -4370,7 +4289,7 @@
4370
4289
  },
4371
4290
  "node_modules/typescript": {
4372
4291
  "version": "5.0.4",
4373
- "extraneous": true,
4292
+ "dev": true,
4374
4293
  "license": "Apache-2.0",
4375
4294
  "bin": {
4376
4295
  "tsc": "bin/tsc",
@@ -4382,8 +4301,9 @@
4382
4301
  },
4383
4302
  "node_modules/uglify-js": {
4384
4303
  "version": "3.17.4",
4385
- "extraneous": true,
4304
+ "dev": true,
4386
4305
  "license": "BSD-2-Clause",
4306
+ "optional": true,
4387
4307
  "bin": {
4388
4308
  "uglifyjs": "bin/uglifyjs"
4389
4309
  },
@@ -4391,6 +4311,10 @@
4391
4311
  "node": ">=0.8.0"
4392
4312
  }
4393
4313
  },
4314
+ "node_modules/undici-types": {
4315
+ "version": "5.25.3",
4316
+ "license": "MIT"
4317
+ },
4394
4318
  "node_modules/unorm": {
4395
4319
  "version": "1.6.0",
4396
4320
  "license": "MIT or GPL-2.0",
@@ -4456,12 +4380,12 @@
4456
4380
  },
4457
4381
  "node_modules/vscode-oniguruma": {
4458
4382
  "version": "1.7.0",
4459
- "extraneous": true,
4383
+ "dev": true,
4460
4384
  "license": "MIT"
4461
4385
  },
4462
4386
  "node_modules/vscode-textmate": {
4463
4387
  "version": "8.0.0",
4464
- "extraneous": true,
4388
+ "dev": true,
4465
4389
  "license": "MIT"
4466
4390
  },
4467
4391
  "node_modules/wcwidth": {
@@ -4559,12 +4483,12 @@
4559
4483
  },
4560
4484
  "node_modules/wordwrap": {
4561
4485
  "version": "1.0.0",
4562
- "extraneous": true,
4486
+ "dev": true,
4563
4487
  "license": "MIT"
4564
4488
  },
4565
4489
  "node_modules/wrap-ansi": {
4566
4490
  "version": "7.0.0",
4567
- "extraneous": true,
4491
+ "dev": true,
4568
4492
  "license": "MIT",
4569
4493
  "dependencies": {
4570
4494
  "ansi-styles": "^4.0.0",
@@ -4594,33 +4518,6 @@
4594
4518
  "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
4595
4519
  }
4596
4520
  },
4597
- "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
4598
- "version": "4.3.0",
4599
- "license": "MIT",
4600
- "dependencies": {
4601
- "color-convert": "^2.0.1"
4602
- },
4603
- "engines": {
4604
- "node": ">=8"
4605
- },
4606
- "funding": {
4607
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
4608
- }
4609
- },
4610
- "node_modules/wrap-ansi-cjs/node_modules/color-convert": {
4611
- "version": "2.0.1",
4612
- "license": "MIT",
4613
- "dependencies": {
4614
- "color-name": "~1.1.4"
4615
- },
4616
- "engines": {
4617
- "node": ">=7.0.0"
4618
- }
4619
- },
4620
- "node_modules/wrap-ansi-cjs/node_modules/color-name": {
4621
- "version": "1.1.4",
4622
- "license": "MIT"
4623
- },
4624
4521
  "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
4625
4522
  "version": "8.0.0",
4626
4523
  "license": "MIT"
@@ -4644,44 +4541,14 @@
4644
4541
  "node": ">=8"
4645
4542
  }
4646
4543
  },
4647
- "node_modules/wrap-ansi/node_modules/ansi-styles": {
4648
- "version": "4.3.0",
4649
- "extraneous": true,
4650
- "license": "MIT",
4651
- "dependencies": {
4652
- "color-convert": "^2.0.1"
4653
- },
4654
- "engines": {
4655
- "node": ">=8"
4656
- },
4657
- "funding": {
4658
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
4659
- }
4660
- },
4661
- "node_modules/wrap-ansi/node_modules/color-convert": {
4662
- "version": "2.0.1",
4663
- "extraneous": true,
4664
- "license": "MIT",
4665
- "dependencies": {
4666
- "color-name": "~1.1.4"
4667
- },
4668
- "engines": {
4669
- "node": ">=7.0.0"
4670
- }
4671
- },
4672
- "node_modules/wrap-ansi/node_modules/color-name": {
4673
- "version": "1.1.4",
4674
- "extraneous": true,
4675
- "license": "MIT"
4676
- },
4677
4544
  "node_modules/wrap-ansi/node_modules/emoji-regex": {
4678
4545
  "version": "8.0.0",
4679
- "extraneous": true,
4546
+ "dev": true,
4680
4547
  "license": "MIT"
4681
4548
  },
4682
4549
  "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": {
4683
4550
  "version": "3.0.0",
4684
- "extraneous": true,
4551
+ "dev": true,
4685
4552
  "license": "MIT",
4686
4553
  "engines": {
4687
4554
  "node": ">=8"
@@ -4689,7 +4556,7 @@
4689
4556
  },
4690
4557
  "node_modules/wrap-ansi/node_modules/string-width": {
4691
4558
  "version": "4.2.3",
4692
- "extraneous": true,
4559
+ "dev": true,
4693
4560
  "license": "MIT",
4694
4561
  "dependencies": {
4695
4562
  "emoji-regex": "^8.0.0",
@@ -4739,15 +4606,19 @@
4739
4606
  },
4740
4607
  "node_modules/y18n": {
4741
4608
  "version": "5.0.8",
4742
- "extraneous": true,
4609
+ "dev": true,
4743
4610
  "license": "ISC",
4744
4611
  "engines": {
4745
4612
  "node": ">=10"
4746
4613
  }
4747
4614
  },
4615
+ "node_modules/yallist": {
4616
+ "version": "4.0.0",
4617
+ "license": "ISC"
4618
+ },
4748
4619
  "node_modules/yaml": {
4749
4620
  "version": "2.3.1",
4750
- "extraneous": true,
4621
+ "dev": true,
4751
4622
  "license": "ISC",
4752
4623
  "engines": {
4753
4624
  "node": ">= 14"
@@ -4755,7 +4626,7 @@
4755
4626
  },
4756
4627
  "node_modules/yargs": {
4757
4628
  "version": "17.7.2",
4758
- "extraneous": true,
4629
+ "dev": true,
4759
4630
  "license": "MIT",
4760
4631
  "dependencies": {
4761
4632
  "cliui": "^8.0.1",
@@ -4772,7 +4643,7 @@
4772
4643
  },
4773
4644
  "node_modules/yargs-parser": {
4774
4645
  "version": "21.1.1",
4775
- "extraneous": true,
4646
+ "dev": true,
4776
4647
  "license": "ISC",
4777
4648
  "engines": {
4778
4649
  "node": ">=12"
@@ -4780,12 +4651,12 @@
4780
4651
  },
4781
4652
  "node_modules/yargs/node_modules/emoji-regex": {
4782
4653
  "version": "8.0.0",
4783
- "extraneous": true,
4654
+ "dev": true,
4784
4655
  "license": "MIT"
4785
4656
  },
4786
4657
  "node_modules/yargs/node_modules/is-fullwidth-code-point": {
4787
4658
  "version": "3.0.0",
4788
- "extraneous": true,
4659
+ "dev": true,
4789
4660
  "license": "MIT",
4790
4661
  "engines": {
4791
4662
  "node": ">=8"
@@ -4793,7 +4664,7 @@
4793
4664
  },
4794
4665
  "node_modules/yargs/node_modules/string-width": {
4795
4666
  "version": "4.2.3",
4796
- "extraneous": true,
4667
+ "dev": true,
4797
4668
  "license": "MIT",
4798
4669
  "dependencies": {
4799
4670
  "emoji-regex": "^8.0.0",
@@ -4814,7 +4685,7 @@
4814
4685
  },
4815
4686
  "node_modules/yn": {
4816
4687
  "version": "3.1.1",
4817
- "extraneous": true,
4688
+ "dev": true,
4818
4689
  "license": "MIT",
4819
4690
  "engines": {
4820
4691
  "node": ">=6"