pushwoosh-cordova-plugin 8.3.55 → 8.3.57
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/README.md +2 -2
- package/example_voip/LICENSE +21 -0
- package/example_voip/README.md +156 -0
- package/example_voip/Screenshots/Android.png +0 -0
- package/example_voip/Screenshots/iOS.png +0 -0
- package/example_voip/Screenshots/xcode_appgroups.png +0 -0
- package/example_voip/demovoip/README.md +181 -0
- package/example_voip/demovoip/config.xml +22 -0
- package/example_voip/demovoip/google-services.json +86 -0
- package/example_voip/demovoip/hooks/after_platform_add/010_install_plugin.js +46 -0
- package/example_voip/demovoip/hooks/after_prepare/010_setup_gradle_wrapper.js +34 -0
- package/example_voip/demovoip/hooks/after_prepare/015_fix_agp_version.js +36 -0
- package/example_voip/demovoip/hooks/after_prepare/020_copy_google_services.js +23 -0
- package/example_voip/demovoip/hooks/after_prepare/025_add_voip_pod.js +43 -0
- package/example_voip/demovoip/hooks/after_prepare.js +28 -0
- package/example_voip/demovoip/package-lock.json +1104 -0
- package/example_voip/demovoip/package.json +34 -0
- package/example_voip/demovoip/www/css/index.css +605 -0
- package/example_voip/demovoip/www/img/logo.png +0 -0
- package/example_voip/demovoip/www/index.html +175 -0
- package/example_voip/demovoip/www/js/index.js +419 -0
- package/package.json +1 -1
- package/plugin.xml +12 -9
- package/src/android/add-android-voip.gradle +1 -1
- package/src/android/src/com/pushwoosh/plugin/pushnotifications/CallsAdapter.java +0 -1
- package/src/android/src/com/pushwoosh/plugin/pushnotifications/NoopCallsAdapter.java +0 -5
- package/src/android/src/com/pushwoosh/plugin/pushnotifications/PushNotifications.java +123 -42
- package/src/android/src/com/pushwoosh/plugin/pushnotifications/VoIPEventStorage.java +130 -0
- package/src/android/src/com/pushwoosh/plugin/pushnotifications/calls/PWCordovaCallEventListener.java +61 -34
- package/src/android/src/com/pushwoosh/plugin/pushnotifications/calls/PushwooshCallsAdapter.java +18 -13
- package/src/ios/PushNotification.m +0 -5
- package/types/PushNotification.d.ts +0 -1
- package/www/PushNotification.js +0 -4
|
@@ -0,0 +1,1104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "com.pushwoosh.demovoip",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "com.pushwoosh.demovoip",
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"license": "Apache-2.0",
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"cordova-android": "^14.0.1",
|
|
13
|
+
"cordova-ios": "^7.1.1",
|
|
14
|
+
"pushwoosh-cordova-plugin": "file:../.."
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"../..": {
|
|
18
|
+
"name": "pushwoosh-cordova-plugin",
|
|
19
|
+
"version": "8.3.56",
|
|
20
|
+
"dev": true,
|
|
21
|
+
"license": "MIT"
|
|
22
|
+
},
|
|
23
|
+
"node_modules/@netflix/nerror": {
|
|
24
|
+
"version": "1.1.3",
|
|
25
|
+
"dev": true,
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"assert-plus": "^1.0.0",
|
|
29
|
+
"extsprintf": "^1.4.0",
|
|
30
|
+
"lodash": "^4.17.15"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"node_modules/@nodelib/fs.scandir": {
|
|
34
|
+
"version": "2.1.5",
|
|
35
|
+
"dev": true,
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@nodelib/fs.stat": "2.0.5",
|
|
39
|
+
"run-parallel": "^1.1.9"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">= 8"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"node_modules/@nodelib/fs.stat": {
|
|
46
|
+
"version": "2.0.5",
|
|
47
|
+
"dev": true,
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">= 8"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"node_modules/@nodelib/fs.walk": {
|
|
54
|
+
"version": "1.2.8",
|
|
55
|
+
"dev": true,
|
|
56
|
+
"license": "MIT",
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@nodelib/fs.scandir": "2.1.5",
|
|
59
|
+
"fastq": "^1.6.0"
|
|
60
|
+
},
|
|
61
|
+
"engines": {
|
|
62
|
+
"node": ">= 8"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"node_modules/@xmldom/xmldom": {
|
|
66
|
+
"version": "0.8.11",
|
|
67
|
+
"dev": true,
|
|
68
|
+
"license": "MIT",
|
|
69
|
+
"engines": {
|
|
70
|
+
"node": ">=10.0.0"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"node_modules/abbrev": {
|
|
74
|
+
"version": "3.0.1",
|
|
75
|
+
"dev": true,
|
|
76
|
+
"license": "ISC",
|
|
77
|
+
"engines": {
|
|
78
|
+
"node": "^18.17.0 || >=20.5.0"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"node_modules/android-versions": {
|
|
82
|
+
"version": "2.1.0",
|
|
83
|
+
"dev": true,
|
|
84
|
+
"license": "MIT",
|
|
85
|
+
"dependencies": {
|
|
86
|
+
"semver": "^7.5.2"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"node_modules/ansi": {
|
|
90
|
+
"version": "0.3.1",
|
|
91
|
+
"dev": true,
|
|
92
|
+
"license": "MIT"
|
|
93
|
+
},
|
|
94
|
+
"node_modules/assert-plus": {
|
|
95
|
+
"version": "1.0.0",
|
|
96
|
+
"dev": true,
|
|
97
|
+
"license": "MIT",
|
|
98
|
+
"engines": {
|
|
99
|
+
"node": ">=0.8"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"node_modules/balanced-match": {
|
|
103
|
+
"version": "1.0.2",
|
|
104
|
+
"dev": true,
|
|
105
|
+
"license": "MIT"
|
|
106
|
+
},
|
|
107
|
+
"node_modules/base64-js": {
|
|
108
|
+
"version": "1.5.1",
|
|
109
|
+
"dev": true,
|
|
110
|
+
"funding": [
|
|
111
|
+
{
|
|
112
|
+
"type": "github",
|
|
113
|
+
"url": "https://github.com/sponsors/feross"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"type": "patreon",
|
|
117
|
+
"url": "https://www.patreon.com/feross"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"type": "consulting",
|
|
121
|
+
"url": "https://feross.org/support"
|
|
122
|
+
}
|
|
123
|
+
],
|
|
124
|
+
"license": "MIT"
|
|
125
|
+
},
|
|
126
|
+
"node_modules/big-integer": {
|
|
127
|
+
"version": "1.6.52",
|
|
128
|
+
"dev": true,
|
|
129
|
+
"license": "Unlicense",
|
|
130
|
+
"engines": {
|
|
131
|
+
"node": ">=0.6"
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"node_modules/bplist-creator": {
|
|
135
|
+
"version": "0.1.0",
|
|
136
|
+
"dev": true,
|
|
137
|
+
"license": "MIT",
|
|
138
|
+
"dependencies": {
|
|
139
|
+
"stream-buffers": "2.2.x"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"node_modules/bplist-parser": {
|
|
143
|
+
"version": "0.3.2",
|
|
144
|
+
"dev": true,
|
|
145
|
+
"license": "MIT",
|
|
146
|
+
"dependencies": {
|
|
147
|
+
"big-integer": "1.6.x"
|
|
148
|
+
},
|
|
149
|
+
"engines": {
|
|
150
|
+
"node": ">= 5.10.0"
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"node_modules/brace-expansion": {
|
|
154
|
+
"version": "1.1.12",
|
|
155
|
+
"dev": true,
|
|
156
|
+
"license": "MIT",
|
|
157
|
+
"dependencies": {
|
|
158
|
+
"balanced-match": "^1.0.0",
|
|
159
|
+
"concat-map": "0.0.1"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"node_modules/braces": {
|
|
163
|
+
"version": "3.0.3",
|
|
164
|
+
"dev": true,
|
|
165
|
+
"license": "MIT",
|
|
166
|
+
"dependencies": {
|
|
167
|
+
"fill-range": "^7.1.1"
|
|
168
|
+
},
|
|
169
|
+
"engines": {
|
|
170
|
+
"node": ">=8"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"node_modules/concat-map": {
|
|
174
|
+
"version": "0.0.1",
|
|
175
|
+
"dev": true,
|
|
176
|
+
"license": "MIT"
|
|
177
|
+
},
|
|
178
|
+
"node_modules/cordova-android": {
|
|
179
|
+
"version": "14.0.1",
|
|
180
|
+
"dev": true,
|
|
181
|
+
"license": "Apache-2.0",
|
|
182
|
+
"dependencies": {
|
|
183
|
+
"android-versions": "^2.1.0",
|
|
184
|
+
"cordova-common": "^5.0.1",
|
|
185
|
+
"dedent": "^1.5.3",
|
|
186
|
+
"execa": "^5.1.1",
|
|
187
|
+
"fast-glob": "^3.3.3",
|
|
188
|
+
"is-path-inside": "^3.0.3",
|
|
189
|
+
"nopt": "^8.1.0",
|
|
190
|
+
"properties-parser": "^0.6.0",
|
|
191
|
+
"semver": "^7.7.1",
|
|
192
|
+
"string-argv": "^0.3.1",
|
|
193
|
+
"untildify": "^4.0.0",
|
|
194
|
+
"which": "^5.0.0"
|
|
195
|
+
},
|
|
196
|
+
"engines": {
|
|
197
|
+
"node": ">=20.5.0"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"node_modules/cordova-common": {
|
|
201
|
+
"version": "5.0.1",
|
|
202
|
+
"dev": true,
|
|
203
|
+
"license": "Apache-2.0",
|
|
204
|
+
"dependencies": {
|
|
205
|
+
"@netflix/nerror": "^1.1.3",
|
|
206
|
+
"ansi": "^0.3.1",
|
|
207
|
+
"bplist-parser": "^0.3.2",
|
|
208
|
+
"cross-spawn": "^7.0.6",
|
|
209
|
+
"elementtree": "^0.1.7",
|
|
210
|
+
"endent": "^2.1.0",
|
|
211
|
+
"fast-glob": "^3.3.3",
|
|
212
|
+
"lodash.zip": "^4.2.0",
|
|
213
|
+
"plist": "^3.1.0",
|
|
214
|
+
"q": "^1.5.1",
|
|
215
|
+
"read-chunk": "^3.2.0",
|
|
216
|
+
"strip-bom": "^4.0.0"
|
|
217
|
+
},
|
|
218
|
+
"engines": {
|
|
219
|
+
"node": ">=16.0.0"
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"node_modules/cordova-ios": {
|
|
223
|
+
"version": "7.1.1",
|
|
224
|
+
"dev": true,
|
|
225
|
+
"license": "Apache-2.0",
|
|
226
|
+
"dependencies": {
|
|
227
|
+
"cordova-common": "^5.0.0",
|
|
228
|
+
"elementtree": "^0.1.7",
|
|
229
|
+
"execa": "^5.1.1",
|
|
230
|
+
"ios-sim": "^8.0.2",
|
|
231
|
+
"plist": "^3.0.6",
|
|
232
|
+
"semver": "^7.4.0",
|
|
233
|
+
"which": "^4.0.0",
|
|
234
|
+
"xcode": "^3.0.1",
|
|
235
|
+
"xml-escape": "^1.1.0"
|
|
236
|
+
},
|
|
237
|
+
"engines": {
|
|
238
|
+
"node": ">=16.13.0"
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
"node_modules/cordova-ios/node_modules/which": {
|
|
242
|
+
"version": "4.0.0",
|
|
243
|
+
"dev": true,
|
|
244
|
+
"license": "ISC",
|
|
245
|
+
"dependencies": {
|
|
246
|
+
"isexe": "^3.1.1"
|
|
247
|
+
},
|
|
248
|
+
"bin": {
|
|
249
|
+
"node-which": "bin/which.js"
|
|
250
|
+
},
|
|
251
|
+
"engines": {
|
|
252
|
+
"node": "^16.13.0 || >=18.0.0"
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
"node_modules/cross-spawn": {
|
|
256
|
+
"version": "7.0.6",
|
|
257
|
+
"dev": true,
|
|
258
|
+
"license": "MIT",
|
|
259
|
+
"dependencies": {
|
|
260
|
+
"path-key": "^3.1.0",
|
|
261
|
+
"shebang-command": "^2.0.0",
|
|
262
|
+
"which": "^2.0.1"
|
|
263
|
+
},
|
|
264
|
+
"engines": {
|
|
265
|
+
"node": ">= 8"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"node_modules/cross-spawn/node_modules/isexe": {
|
|
269
|
+
"version": "2.0.0",
|
|
270
|
+
"dev": true,
|
|
271
|
+
"license": "ISC"
|
|
272
|
+
},
|
|
273
|
+
"node_modules/cross-spawn/node_modules/which": {
|
|
274
|
+
"version": "2.0.2",
|
|
275
|
+
"dev": true,
|
|
276
|
+
"license": "ISC",
|
|
277
|
+
"dependencies": {
|
|
278
|
+
"isexe": "^2.0.0"
|
|
279
|
+
},
|
|
280
|
+
"bin": {
|
|
281
|
+
"node-which": "bin/node-which"
|
|
282
|
+
},
|
|
283
|
+
"engines": {
|
|
284
|
+
"node": ">= 8"
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
"node_modules/dedent": {
|
|
288
|
+
"version": "1.7.0",
|
|
289
|
+
"dev": true,
|
|
290
|
+
"license": "MIT",
|
|
291
|
+
"peerDependencies": {
|
|
292
|
+
"babel-plugin-macros": "^3.1.0"
|
|
293
|
+
},
|
|
294
|
+
"peerDependenciesMeta": {
|
|
295
|
+
"babel-plugin-macros": {
|
|
296
|
+
"optional": true
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
"node_modules/elementtree": {
|
|
301
|
+
"version": "0.1.7",
|
|
302
|
+
"dev": true,
|
|
303
|
+
"license": "Apache-2.0",
|
|
304
|
+
"dependencies": {
|
|
305
|
+
"sax": "1.1.4"
|
|
306
|
+
},
|
|
307
|
+
"engines": {
|
|
308
|
+
"node": ">= 0.4.0"
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"node_modules/endent": {
|
|
312
|
+
"version": "2.1.0",
|
|
313
|
+
"dev": true,
|
|
314
|
+
"license": "MIT",
|
|
315
|
+
"dependencies": {
|
|
316
|
+
"dedent": "^0.7.0",
|
|
317
|
+
"fast-json-parse": "^1.0.3",
|
|
318
|
+
"objectorarray": "^1.0.5"
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
"node_modules/endent/node_modules/dedent": {
|
|
322
|
+
"version": "0.7.0",
|
|
323
|
+
"dev": true,
|
|
324
|
+
"license": "MIT"
|
|
325
|
+
},
|
|
326
|
+
"node_modules/execa": {
|
|
327
|
+
"version": "5.1.1",
|
|
328
|
+
"dev": true,
|
|
329
|
+
"license": "MIT",
|
|
330
|
+
"dependencies": {
|
|
331
|
+
"cross-spawn": "^7.0.3",
|
|
332
|
+
"get-stream": "^6.0.0",
|
|
333
|
+
"human-signals": "^2.1.0",
|
|
334
|
+
"is-stream": "^2.0.0",
|
|
335
|
+
"merge-stream": "^2.0.0",
|
|
336
|
+
"npm-run-path": "^4.0.1",
|
|
337
|
+
"onetime": "^5.1.2",
|
|
338
|
+
"signal-exit": "^3.0.3",
|
|
339
|
+
"strip-final-newline": "^2.0.0"
|
|
340
|
+
},
|
|
341
|
+
"engines": {
|
|
342
|
+
"node": ">=10"
|
|
343
|
+
},
|
|
344
|
+
"funding": {
|
|
345
|
+
"url": "https://github.com/sindresorhus/execa?sponsor=1"
|
|
346
|
+
}
|
|
347
|
+
},
|
|
348
|
+
"node_modules/extsprintf": {
|
|
349
|
+
"version": "1.4.1",
|
|
350
|
+
"dev": true,
|
|
351
|
+
"engines": [
|
|
352
|
+
"node >=0.6.0"
|
|
353
|
+
],
|
|
354
|
+
"license": "MIT"
|
|
355
|
+
},
|
|
356
|
+
"node_modules/fast-glob": {
|
|
357
|
+
"version": "3.3.3",
|
|
358
|
+
"dev": true,
|
|
359
|
+
"license": "MIT",
|
|
360
|
+
"dependencies": {
|
|
361
|
+
"@nodelib/fs.stat": "^2.0.2",
|
|
362
|
+
"@nodelib/fs.walk": "^1.2.3",
|
|
363
|
+
"glob-parent": "^5.1.2",
|
|
364
|
+
"merge2": "^1.3.0",
|
|
365
|
+
"micromatch": "^4.0.8"
|
|
366
|
+
},
|
|
367
|
+
"engines": {
|
|
368
|
+
"node": ">=8.6.0"
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
"node_modules/fast-json-parse": {
|
|
372
|
+
"version": "1.0.3",
|
|
373
|
+
"dev": true,
|
|
374
|
+
"license": "MIT"
|
|
375
|
+
},
|
|
376
|
+
"node_modules/fastq": {
|
|
377
|
+
"version": "1.19.1",
|
|
378
|
+
"dev": true,
|
|
379
|
+
"license": "ISC",
|
|
380
|
+
"dependencies": {
|
|
381
|
+
"reusify": "^1.0.4"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"node_modules/fill-range": {
|
|
385
|
+
"version": "7.1.1",
|
|
386
|
+
"dev": true,
|
|
387
|
+
"license": "MIT",
|
|
388
|
+
"dependencies": {
|
|
389
|
+
"to-regex-range": "^5.0.1"
|
|
390
|
+
},
|
|
391
|
+
"engines": {
|
|
392
|
+
"node": ">=8"
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
"node_modules/fs.realpath": {
|
|
396
|
+
"version": "1.0.0",
|
|
397
|
+
"dev": true,
|
|
398
|
+
"license": "ISC"
|
|
399
|
+
},
|
|
400
|
+
"node_modules/function-bind": {
|
|
401
|
+
"version": "1.1.2",
|
|
402
|
+
"dev": true,
|
|
403
|
+
"license": "MIT",
|
|
404
|
+
"funding": {
|
|
405
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
406
|
+
}
|
|
407
|
+
},
|
|
408
|
+
"node_modules/get-stream": {
|
|
409
|
+
"version": "6.0.1",
|
|
410
|
+
"dev": true,
|
|
411
|
+
"license": "MIT",
|
|
412
|
+
"engines": {
|
|
413
|
+
"node": ">=10"
|
|
414
|
+
},
|
|
415
|
+
"funding": {
|
|
416
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
"node_modules/glob": {
|
|
420
|
+
"version": "7.2.3",
|
|
421
|
+
"dev": true,
|
|
422
|
+
"license": "ISC",
|
|
423
|
+
"dependencies": {
|
|
424
|
+
"fs.realpath": "^1.0.0",
|
|
425
|
+
"inflight": "^1.0.4",
|
|
426
|
+
"inherits": "2",
|
|
427
|
+
"minimatch": "^3.1.1",
|
|
428
|
+
"once": "^1.3.0",
|
|
429
|
+
"path-is-absolute": "^1.0.0"
|
|
430
|
+
},
|
|
431
|
+
"engines": {
|
|
432
|
+
"node": "*"
|
|
433
|
+
},
|
|
434
|
+
"funding": {
|
|
435
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
436
|
+
}
|
|
437
|
+
},
|
|
438
|
+
"node_modules/glob-parent": {
|
|
439
|
+
"version": "5.1.2",
|
|
440
|
+
"dev": true,
|
|
441
|
+
"license": "ISC",
|
|
442
|
+
"dependencies": {
|
|
443
|
+
"is-glob": "^4.0.1"
|
|
444
|
+
},
|
|
445
|
+
"engines": {
|
|
446
|
+
"node": ">= 6"
|
|
447
|
+
}
|
|
448
|
+
},
|
|
449
|
+
"node_modules/hasown": {
|
|
450
|
+
"version": "2.0.2",
|
|
451
|
+
"dev": true,
|
|
452
|
+
"license": "MIT",
|
|
453
|
+
"dependencies": {
|
|
454
|
+
"function-bind": "^1.1.2"
|
|
455
|
+
},
|
|
456
|
+
"engines": {
|
|
457
|
+
"node": ">= 0.4"
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
"node_modules/human-signals": {
|
|
461
|
+
"version": "2.1.0",
|
|
462
|
+
"dev": true,
|
|
463
|
+
"license": "Apache-2.0",
|
|
464
|
+
"engines": {
|
|
465
|
+
"node": ">=10.17.0"
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
"node_modules/inflight": {
|
|
469
|
+
"version": "1.0.6",
|
|
470
|
+
"dev": true,
|
|
471
|
+
"license": "ISC",
|
|
472
|
+
"dependencies": {
|
|
473
|
+
"once": "^1.3.0",
|
|
474
|
+
"wrappy": "1"
|
|
475
|
+
}
|
|
476
|
+
},
|
|
477
|
+
"node_modules/inherits": {
|
|
478
|
+
"version": "2.0.4",
|
|
479
|
+
"dev": true,
|
|
480
|
+
"license": "ISC"
|
|
481
|
+
},
|
|
482
|
+
"node_modules/interpret": {
|
|
483
|
+
"version": "1.4.0",
|
|
484
|
+
"dev": true,
|
|
485
|
+
"license": "MIT",
|
|
486
|
+
"engines": {
|
|
487
|
+
"node": ">= 0.10"
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
"node_modules/ios-sim": {
|
|
491
|
+
"version": "8.0.2",
|
|
492
|
+
"dev": true,
|
|
493
|
+
"license": "MIT",
|
|
494
|
+
"dependencies": {
|
|
495
|
+
"bplist-parser": "^0.0.6",
|
|
496
|
+
"nopt": "1.0.9",
|
|
497
|
+
"plist": "^3.0.1",
|
|
498
|
+
"simctl": "^2"
|
|
499
|
+
},
|
|
500
|
+
"bin": {
|
|
501
|
+
"ios-sim": "bin/ios-sim"
|
|
502
|
+
},
|
|
503
|
+
"engines": {
|
|
504
|
+
"node": ">=6"
|
|
505
|
+
}
|
|
506
|
+
},
|
|
507
|
+
"node_modules/ios-sim/node_modules/abbrev": {
|
|
508
|
+
"version": "1.1.1",
|
|
509
|
+
"dev": true,
|
|
510
|
+
"license": "ISC"
|
|
511
|
+
},
|
|
512
|
+
"node_modules/ios-sim/node_modules/bplist-parser": {
|
|
513
|
+
"version": "0.0.6",
|
|
514
|
+
"dev": true,
|
|
515
|
+
"license": "MIT"
|
|
516
|
+
},
|
|
517
|
+
"node_modules/ios-sim/node_modules/nopt": {
|
|
518
|
+
"version": "1.0.9",
|
|
519
|
+
"dev": true,
|
|
520
|
+
"license": "MIT",
|
|
521
|
+
"dependencies": {
|
|
522
|
+
"abbrev": "1"
|
|
523
|
+
},
|
|
524
|
+
"bin": {
|
|
525
|
+
"nopt": "bin/nopt.js"
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
"node_modules/is-core-module": {
|
|
529
|
+
"version": "2.16.1",
|
|
530
|
+
"dev": true,
|
|
531
|
+
"license": "MIT",
|
|
532
|
+
"dependencies": {
|
|
533
|
+
"hasown": "^2.0.2"
|
|
534
|
+
},
|
|
535
|
+
"engines": {
|
|
536
|
+
"node": ">= 0.4"
|
|
537
|
+
},
|
|
538
|
+
"funding": {
|
|
539
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
540
|
+
}
|
|
541
|
+
},
|
|
542
|
+
"node_modules/is-extglob": {
|
|
543
|
+
"version": "2.1.1",
|
|
544
|
+
"dev": true,
|
|
545
|
+
"license": "MIT",
|
|
546
|
+
"engines": {
|
|
547
|
+
"node": ">=0.10.0"
|
|
548
|
+
}
|
|
549
|
+
},
|
|
550
|
+
"node_modules/is-glob": {
|
|
551
|
+
"version": "4.0.3",
|
|
552
|
+
"dev": true,
|
|
553
|
+
"license": "MIT",
|
|
554
|
+
"dependencies": {
|
|
555
|
+
"is-extglob": "^2.1.1"
|
|
556
|
+
},
|
|
557
|
+
"engines": {
|
|
558
|
+
"node": ">=0.10.0"
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
"node_modules/is-number": {
|
|
562
|
+
"version": "7.0.0",
|
|
563
|
+
"dev": true,
|
|
564
|
+
"license": "MIT",
|
|
565
|
+
"engines": {
|
|
566
|
+
"node": ">=0.12.0"
|
|
567
|
+
}
|
|
568
|
+
},
|
|
569
|
+
"node_modules/is-path-inside": {
|
|
570
|
+
"version": "3.0.3",
|
|
571
|
+
"dev": true,
|
|
572
|
+
"license": "MIT",
|
|
573
|
+
"engines": {
|
|
574
|
+
"node": ">=8"
|
|
575
|
+
}
|
|
576
|
+
},
|
|
577
|
+
"node_modules/is-stream": {
|
|
578
|
+
"version": "2.0.1",
|
|
579
|
+
"dev": true,
|
|
580
|
+
"license": "MIT",
|
|
581
|
+
"engines": {
|
|
582
|
+
"node": ">=8"
|
|
583
|
+
},
|
|
584
|
+
"funding": {
|
|
585
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
586
|
+
}
|
|
587
|
+
},
|
|
588
|
+
"node_modules/isexe": {
|
|
589
|
+
"version": "3.1.1",
|
|
590
|
+
"dev": true,
|
|
591
|
+
"license": "ISC",
|
|
592
|
+
"engines": {
|
|
593
|
+
"node": ">=16"
|
|
594
|
+
}
|
|
595
|
+
},
|
|
596
|
+
"node_modules/lodash": {
|
|
597
|
+
"version": "4.17.21",
|
|
598
|
+
"dev": true,
|
|
599
|
+
"license": "MIT"
|
|
600
|
+
},
|
|
601
|
+
"node_modules/lodash.zip": {
|
|
602
|
+
"version": "4.2.0",
|
|
603
|
+
"dev": true,
|
|
604
|
+
"license": "MIT"
|
|
605
|
+
},
|
|
606
|
+
"node_modules/merge-stream": {
|
|
607
|
+
"version": "2.0.0",
|
|
608
|
+
"dev": true,
|
|
609
|
+
"license": "MIT"
|
|
610
|
+
},
|
|
611
|
+
"node_modules/merge2": {
|
|
612
|
+
"version": "1.4.1",
|
|
613
|
+
"dev": true,
|
|
614
|
+
"license": "MIT",
|
|
615
|
+
"engines": {
|
|
616
|
+
"node": ">= 8"
|
|
617
|
+
}
|
|
618
|
+
},
|
|
619
|
+
"node_modules/micromatch": {
|
|
620
|
+
"version": "4.0.8",
|
|
621
|
+
"dev": true,
|
|
622
|
+
"license": "MIT",
|
|
623
|
+
"dependencies": {
|
|
624
|
+
"braces": "^3.0.3",
|
|
625
|
+
"picomatch": "^2.3.1"
|
|
626
|
+
},
|
|
627
|
+
"engines": {
|
|
628
|
+
"node": ">=8.6"
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
"node_modules/mimic-fn": {
|
|
632
|
+
"version": "2.1.0",
|
|
633
|
+
"dev": true,
|
|
634
|
+
"license": "MIT",
|
|
635
|
+
"engines": {
|
|
636
|
+
"node": ">=6"
|
|
637
|
+
}
|
|
638
|
+
},
|
|
639
|
+
"node_modules/minimatch": {
|
|
640
|
+
"version": "3.1.2",
|
|
641
|
+
"dev": true,
|
|
642
|
+
"license": "ISC",
|
|
643
|
+
"dependencies": {
|
|
644
|
+
"brace-expansion": "^1.1.7"
|
|
645
|
+
},
|
|
646
|
+
"engines": {
|
|
647
|
+
"node": "*"
|
|
648
|
+
}
|
|
649
|
+
},
|
|
650
|
+
"node_modules/nopt": {
|
|
651
|
+
"version": "8.1.0",
|
|
652
|
+
"dev": true,
|
|
653
|
+
"license": "ISC",
|
|
654
|
+
"dependencies": {
|
|
655
|
+
"abbrev": "^3.0.0"
|
|
656
|
+
},
|
|
657
|
+
"bin": {
|
|
658
|
+
"nopt": "bin/nopt.js"
|
|
659
|
+
},
|
|
660
|
+
"engines": {
|
|
661
|
+
"node": "^18.17.0 || >=20.5.0"
|
|
662
|
+
}
|
|
663
|
+
},
|
|
664
|
+
"node_modules/npm-run-path": {
|
|
665
|
+
"version": "4.0.1",
|
|
666
|
+
"dev": true,
|
|
667
|
+
"license": "MIT",
|
|
668
|
+
"dependencies": {
|
|
669
|
+
"path-key": "^3.0.0"
|
|
670
|
+
},
|
|
671
|
+
"engines": {
|
|
672
|
+
"node": ">=8"
|
|
673
|
+
}
|
|
674
|
+
},
|
|
675
|
+
"node_modules/objectorarray": {
|
|
676
|
+
"version": "1.0.5",
|
|
677
|
+
"dev": true,
|
|
678
|
+
"license": "ISC"
|
|
679
|
+
},
|
|
680
|
+
"node_modules/once": {
|
|
681
|
+
"version": "1.4.0",
|
|
682
|
+
"dev": true,
|
|
683
|
+
"license": "ISC",
|
|
684
|
+
"dependencies": {
|
|
685
|
+
"wrappy": "1"
|
|
686
|
+
}
|
|
687
|
+
},
|
|
688
|
+
"node_modules/onetime": {
|
|
689
|
+
"version": "5.1.2",
|
|
690
|
+
"dev": true,
|
|
691
|
+
"license": "MIT",
|
|
692
|
+
"dependencies": {
|
|
693
|
+
"mimic-fn": "^2.1.0"
|
|
694
|
+
},
|
|
695
|
+
"engines": {
|
|
696
|
+
"node": ">=6"
|
|
697
|
+
},
|
|
698
|
+
"funding": {
|
|
699
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
700
|
+
}
|
|
701
|
+
},
|
|
702
|
+
"node_modules/p-finally": {
|
|
703
|
+
"version": "1.0.0",
|
|
704
|
+
"dev": true,
|
|
705
|
+
"license": "MIT",
|
|
706
|
+
"engines": {
|
|
707
|
+
"node": ">=4"
|
|
708
|
+
}
|
|
709
|
+
},
|
|
710
|
+
"node_modules/p-try": {
|
|
711
|
+
"version": "2.2.0",
|
|
712
|
+
"dev": true,
|
|
713
|
+
"license": "MIT",
|
|
714
|
+
"engines": {
|
|
715
|
+
"node": ">=6"
|
|
716
|
+
}
|
|
717
|
+
},
|
|
718
|
+
"node_modules/path-is-absolute": {
|
|
719
|
+
"version": "1.0.1",
|
|
720
|
+
"dev": true,
|
|
721
|
+
"license": "MIT",
|
|
722
|
+
"engines": {
|
|
723
|
+
"node": ">=0.10.0"
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
"node_modules/path-key": {
|
|
727
|
+
"version": "3.1.1",
|
|
728
|
+
"dev": true,
|
|
729
|
+
"license": "MIT",
|
|
730
|
+
"engines": {
|
|
731
|
+
"node": ">=8"
|
|
732
|
+
}
|
|
733
|
+
},
|
|
734
|
+
"node_modules/path-parse": {
|
|
735
|
+
"version": "1.0.7",
|
|
736
|
+
"dev": true,
|
|
737
|
+
"license": "MIT"
|
|
738
|
+
},
|
|
739
|
+
"node_modules/picomatch": {
|
|
740
|
+
"version": "2.3.1",
|
|
741
|
+
"dev": true,
|
|
742
|
+
"license": "MIT",
|
|
743
|
+
"engines": {
|
|
744
|
+
"node": ">=8.6"
|
|
745
|
+
},
|
|
746
|
+
"funding": {
|
|
747
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
748
|
+
}
|
|
749
|
+
},
|
|
750
|
+
"node_modules/pify": {
|
|
751
|
+
"version": "4.0.1",
|
|
752
|
+
"dev": true,
|
|
753
|
+
"license": "MIT",
|
|
754
|
+
"engines": {
|
|
755
|
+
"node": ">=6"
|
|
756
|
+
}
|
|
757
|
+
},
|
|
758
|
+
"node_modules/plist": {
|
|
759
|
+
"version": "3.1.0",
|
|
760
|
+
"dev": true,
|
|
761
|
+
"license": "MIT",
|
|
762
|
+
"dependencies": {
|
|
763
|
+
"@xmldom/xmldom": "^0.8.8",
|
|
764
|
+
"base64-js": "^1.5.1",
|
|
765
|
+
"xmlbuilder": "^15.1.1"
|
|
766
|
+
},
|
|
767
|
+
"engines": {
|
|
768
|
+
"node": ">=10.4.0"
|
|
769
|
+
}
|
|
770
|
+
},
|
|
771
|
+
"node_modules/properties-parser": {
|
|
772
|
+
"version": "0.6.0",
|
|
773
|
+
"dev": true,
|
|
774
|
+
"license": "MIT",
|
|
775
|
+
"engines": {
|
|
776
|
+
"node": ">= 0.3.1"
|
|
777
|
+
}
|
|
778
|
+
},
|
|
779
|
+
"node_modules/pushwoosh-cordova-plugin": {
|
|
780
|
+
"resolved": "../..",
|
|
781
|
+
"link": true
|
|
782
|
+
},
|
|
783
|
+
"node_modules/q": {
|
|
784
|
+
"version": "1.5.1",
|
|
785
|
+
"dev": true,
|
|
786
|
+
"license": "MIT",
|
|
787
|
+
"engines": {
|
|
788
|
+
"node": ">=0.6.0",
|
|
789
|
+
"teleport": ">=0.2.0"
|
|
790
|
+
}
|
|
791
|
+
},
|
|
792
|
+
"node_modules/queue-microtask": {
|
|
793
|
+
"version": "1.2.3",
|
|
794
|
+
"dev": true,
|
|
795
|
+
"funding": [
|
|
796
|
+
{
|
|
797
|
+
"type": "github",
|
|
798
|
+
"url": "https://github.com/sponsors/feross"
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"type": "patreon",
|
|
802
|
+
"url": "https://www.patreon.com/feross"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"type": "consulting",
|
|
806
|
+
"url": "https://feross.org/support"
|
|
807
|
+
}
|
|
808
|
+
],
|
|
809
|
+
"license": "MIT"
|
|
810
|
+
},
|
|
811
|
+
"node_modules/read-chunk": {
|
|
812
|
+
"version": "3.2.0",
|
|
813
|
+
"dev": true,
|
|
814
|
+
"license": "MIT",
|
|
815
|
+
"dependencies": {
|
|
816
|
+
"pify": "^4.0.1",
|
|
817
|
+
"with-open-file": "^0.1.6"
|
|
818
|
+
},
|
|
819
|
+
"engines": {
|
|
820
|
+
"node": ">=6"
|
|
821
|
+
}
|
|
822
|
+
},
|
|
823
|
+
"node_modules/rechoir": {
|
|
824
|
+
"version": "0.6.2",
|
|
825
|
+
"dev": true,
|
|
826
|
+
"dependencies": {
|
|
827
|
+
"resolve": "^1.1.6"
|
|
828
|
+
},
|
|
829
|
+
"engines": {
|
|
830
|
+
"node": ">= 0.10"
|
|
831
|
+
}
|
|
832
|
+
},
|
|
833
|
+
"node_modules/resolve": {
|
|
834
|
+
"version": "1.22.11",
|
|
835
|
+
"dev": true,
|
|
836
|
+
"license": "MIT",
|
|
837
|
+
"dependencies": {
|
|
838
|
+
"is-core-module": "^2.16.1",
|
|
839
|
+
"path-parse": "^1.0.7",
|
|
840
|
+
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
841
|
+
},
|
|
842
|
+
"bin": {
|
|
843
|
+
"resolve": "bin/resolve"
|
|
844
|
+
},
|
|
845
|
+
"engines": {
|
|
846
|
+
"node": ">= 0.4"
|
|
847
|
+
},
|
|
848
|
+
"funding": {
|
|
849
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
850
|
+
}
|
|
851
|
+
},
|
|
852
|
+
"node_modules/reusify": {
|
|
853
|
+
"version": "1.1.0",
|
|
854
|
+
"dev": true,
|
|
855
|
+
"license": "MIT",
|
|
856
|
+
"engines": {
|
|
857
|
+
"iojs": ">=1.0.0",
|
|
858
|
+
"node": ">=0.10.0"
|
|
859
|
+
}
|
|
860
|
+
},
|
|
861
|
+
"node_modules/run-parallel": {
|
|
862
|
+
"version": "1.2.0",
|
|
863
|
+
"dev": true,
|
|
864
|
+
"funding": [
|
|
865
|
+
{
|
|
866
|
+
"type": "github",
|
|
867
|
+
"url": "https://github.com/sponsors/feross"
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"type": "patreon",
|
|
871
|
+
"url": "https://www.patreon.com/feross"
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"type": "consulting",
|
|
875
|
+
"url": "https://feross.org/support"
|
|
876
|
+
}
|
|
877
|
+
],
|
|
878
|
+
"license": "MIT",
|
|
879
|
+
"dependencies": {
|
|
880
|
+
"queue-microtask": "^1.2.2"
|
|
881
|
+
}
|
|
882
|
+
},
|
|
883
|
+
"node_modules/sax": {
|
|
884
|
+
"version": "1.1.4",
|
|
885
|
+
"dev": true,
|
|
886
|
+
"license": "ISC"
|
|
887
|
+
},
|
|
888
|
+
"node_modules/semver": {
|
|
889
|
+
"version": "7.7.3",
|
|
890
|
+
"dev": true,
|
|
891
|
+
"license": "ISC",
|
|
892
|
+
"bin": {
|
|
893
|
+
"semver": "bin/semver.js"
|
|
894
|
+
},
|
|
895
|
+
"engines": {
|
|
896
|
+
"node": ">=10"
|
|
897
|
+
}
|
|
898
|
+
},
|
|
899
|
+
"node_modules/shebang-command": {
|
|
900
|
+
"version": "2.0.0",
|
|
901
|
+
"dev": true,
|
|
902
|
+
"license": "MIT",
|
|
903
|
+
"dependencies": {
|
|
904
|
+
"shebang-regex": "^3.0.0"
|
|
905
|
+
},
|
|
906
|
+
"engines": {
|
|
907
|
+
"node": ">=8"
|
|
908
|
+
}
|
|
909
|
+
},
|
|
910
|
+
"node_modules/shebang-regex": {
|
|
911
|
+
"version": "3.0.0",
|
|
912
|
+
"dev": true,
|
|
913
|
+
"license": "MIT",
|
|
914
|
+
"engines": {
|
|
915
|
+
"node": ">=8"
|
|
916
|
+
}
|
|
917
|
+
},
|
|
918
|
+
"node_modules/shelljs": {
|
|
919
|
+
"version": "0.8.5",
|
|
920
|
+
"dev": true,
|
|
921
|
+
"license": "BSD-3-Clause",
|
|
922
|
+
"dependencies": {
|
|
923
|
+
"glob": "^7.0.0",
|
|
924
|
+
"interpret": "^1.0.0",
|
|
925
|
+
"rechoir": "^0.6.2"
|
|
926
|
+
},
|
|
927
|
+
"bin": {
|
|
928
|
+
"shjs": "bin/shjs"
|
|
929
|
+
},
|
|
930
|
+
"engines": {
|
|
931
|
+
"node": ">=4"
|
|
932
|
+
}
|
|
933
|
+
},
|
|
934
|
+
"node_modules/signal-exit": {
|
|
935
|
+
"version": "3.0.7",
|
|
936
|
+
"dev": true,
|
|
937
|
+
"license": "ISC"
|
|
938
|
+
},
|
|
939
|
+
"node_modules/simctl": {
|
|
940
|
+
"version": "2.0.3",
|
|
941
|
+
"dev": true,
|
|
942
|
+
"license": "MIT",
|
|
943
|
+
"dependencies": {
|
|
944
|
+
"shelljs": "^0.8.5",
|
|
945
|
+
"tail": "^0.4.0"
|
|
946
|
+
}
|
|
947
|
+
},
|
|
948
|
+
"node_modules/simple-plist": {
|
|
949
|
+
"version": "1.3.1",
|
|
950
|
+
"dev": true,
|
|
951
|
+
"license": "MIT",
|
|
952
|
+
"dependencies": {
|
|
953
|
+
"bplist-creator": "0.1.0",
|
|
954
|
+
"bplist-parser": "0.3.1",
|
|
955
|
+
"plist": "^3.0.5"
|
|
956
|
+
}
|
|
957
|
+
},
|
|
958
|
+
"node_modules/simple-plist/node_modules/bplist-parser": {
|
|
959
|
+
"version": "0.3.1",
|
|
960
|
+
"dev": true,
|
|
961
|
+
"license": "MIT",
|
|
962
|
+
"dependencies": {
|
|
963
|
+
"big-integer": "1.6.x"
|
|
964
|
+
},
|
|
965
|
+
"engines": {
|
|
966
|
+
"node": ">= 5.10.0"
|
|
967
|
+
}
|
|
968
|
+
},
|
|
969
|
+
"node_modules/stream-buffers": {
|
|
970
|
+
"version": "2.2.0",
|
|
971
|
+
"dev": true,
|
|
972
|
+
"license": "Unlicense",
|
|
973
|
+
"engines": {
|
|
974
|
+
"node": ">= 0.10.0"
|
|
975
|
+
}
|
|
976
|
+
},
|
|
977
|
+
"node_modules/string-argv": {
|
|
978
|
+
"version": "0.3.2",
|
|
979
|
+
"dev": true,
|
|
980
|
+
"license": "MIT",
|
|
981
|
+
"engines": {
|
|
982
|
+
"node": ">=0.6.19"
|
|
983
|
+
}
|
|
984
|
+
},
|
|
985
|
+
"node_modules/strip-bom": {
|
|
986
|
+
"version": "4.0.0",
|
|
987
|
+
"dev": true,
|
|
988
|
+
"license": "MIT",
|
|
989
|
+
"engines": {
|
|
990
|
+
"node": ">=8"
|
|
991
|
+
}
|
|
992
|
+
},
|
|
993
|
+
"node_modules/strip-final-newline": {
|
|
994
|
+
"version": "2.0.0",
|
|
995
|
+
"dev": true,
|
|
996
|
+
"license": "MIT",
|
|
997
|
+
"engines": {
|
|
998
|
+
"node": ">=6"
|
|
999
|
+
}
|
|
1000
|
+
},
|
|
1001
|
+
"node_modules/supports-preserve-symlinks-flag": {
|
|
1002
|
+
"version": "1.0.0",
|
|
1003
|
+
"dev": true,
|
|
1004
|
+
"license": "MIT",
|
|
1005
|
+
"engines": {
|
|
1006
|
+
"node": ">= 0.4"
|
|
1007
|
+
},
|
|
1008
|
+
"funding": {
|
|
1009
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1010
|
+
}
|
|
1011
|
+
},
|
|
1012
|
+
"node_modules/tail": {
|
|
1013
|
+
"version": "0.4.0",
|
|
1014
|
+
"dev": true,
|
|
1015
|
+
"engines": {
|
|
1016
|
+
"node": ">= 0.4.0"
|
|
1017
|
+
}
|
|
1018
|
+
},
|
|
1019
|
+
"node_modules/to-regex-range": {
|
|
1020
|
+
"version": "5.0.1",
|
|
1021
|
+
"dev": true,
|
|
1022
|
+
"license": "MIT",
|
|
1023
|
+
"dependencies": {
|
|
1024
|
+
"is-number": "^7.0.0"
|
|
1025
|
+
},
|
|
1026
|
+
"engines": {
|
|
1027
|
+
"node": ">=8.0"
|
|
1028
|
+
}
|
|
1029
|
+
},
|
|
1030
|
+
"node_modules/untildify": {
|
|
1031
|
+
"version": "4.0.0",
|
|
1032
|
+
"dev": true,
|
|
1033
|
+
"license": "MIT",
|
|
1034
|
+
"engines": {
|
|
1035
|
+
"node": ">=8"
|
|
1036
|
+
}
|
|
1037
|
+
},
|
|
1038
|
+
"node_modules/uuid": {
|
|
1039
|
+
"version": "7.0.3",
|
|
1040
|
+
"dev": true,
|
|
1041
|
+
"license": "MIT",
|
|
1042
|
+
"bin": {
|
|
1043
|
+
"uuid": "dist/bin/uuid"
|
|
1044
|
+
}
|
|
1045
|
+
},
|
|
1046
|
+
"node_modules/which": {
|
|
1047
|
+
"version": "5.0.0",
|
|
1048
|
+
"dev": true,
|
|
1049
|
+
"license": "ISC",
|
|
1050
|
+
"dependencies": {
|
|
1051
|
+
"isexe": "^3.1.1"
|
|
1052
|
+
},
|
|
1053
|
+
"bin": {
|
|
1054
|
+
"node-which": "bin/which.js"
|
|
1055
|
+
},
|
|
1056
|
+
"engines": {
|
|
1057
|
+
"node": "^18.17.0 || >=20.5.0"
|
|
1058
|
+
}
|
|
1059
|
+
},
|
|
1060
|
+
"node_modules/with-open-file": {
|
|
1061
|
+
"version": "0.1.7",
|
|
1062
|
+
"dev": true,
|
|
1063
|
+
"license": "MIT",
|
|
1064
|
+
"dependencies": {
|
|
1065
|
+
"p-finally": "^1.0.0",
|
|
1066
|
+
"p-try": "^2.1.0",
|
|
1067
|
+
"pify": "^4.0.1"
|
|
1068
|
+
},
|
|
1069
|
+
"engines": {
|
|
1070
|
+
"node": ">=6"
|
|
1071
|
+
}
|
|
1072
|
+
},
|
|
1073
|
+
"node_modules/wrappy": {
|
|
1074
|
+
"version": "1.0.2",
|
|
1075
|
+
"dev": true,
|
|
1076
|
+
"license": "ISC"
|
|
1077
|
+
},
|
|
1078
|
+
"node_modules/xcode": {
|
|
1079
|
+
"version": "3.0.1",
|
|
1080
|
+
"dev": true,
|
|
1081
|
+
"license": "Apache-2.0",
|
|
1082
|
+
"dependencies": {
|
|
1083
|
+
"simple-plist": "^1.1.0",
|
|
1084
|
+
"uuid": "^7.0.3"
|
|
1085
|
+
},
|
|
1086
|
+
"engines": {
|
|
1087
|
+
"node": ">=10.0.0"
|
|
1088
|
+
}
|
|
1089
|
+
},
|
|
1090
|
+
"node_modules/xml-escape": {
|
|
1091
|
+
"version": "1.1.0",
|
|
1092
|
+
"dev": true,
|
|
1093
|
+
"license": "MIT License"
|
|
1094
|
+
},
|
|
1095
|
+
"node_modules/xmlbuilder": {
|
|
1096
|
+
"version": "15.1.1",
|
|
1097
|
+
"dev": true,
|
|
1098
|
+
"license": "MIT",
|
|
1099
|
+
"engines": {
|
|
1100
|
+
"node": ">=8.0"
|
|
1101
|
+
}
|
|
1102
|
+
}
|
|
1103
|
+
}
|
|
1104
|
+
}
|